Skip to content

Commit

Permalink
Version 1.0.0 release
Browse files Browse the repository at this point in the history
* Redesign for new console

* Updating custom-id to custom-string for custom models

* Updating based on API changes

* Fix ws close code

Normal closure is 1000 rather than 0 (https://developer.mozilla.org/en-US/docs/Web/API/CloseEvent)

* Updates to objects & README

* Improving comments & README

* Improving tests

* Updating endpoints to actual endpoints

* Removing project create/delete

* Finishing usage endpoints and README

* 1.0.1-alpha.0

* Alpha version

* Updating default options

* Updating for new API endpoint

* Updating transcription & usage types

* Updating references

Co-authored-by: Frums <[email protected]>
  • Loading branch information
michaeljolley and frumsdotxyz authored Jul 8, 2021
1 parent ae32f34 commit 3e307c1
Show file tree
Hide file tree
Showing 55 changed files with 1,800 additions and 445 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
node_modules
dist
out
.nyc_output
.nyc_output
api.http
*.tgz
4 changes: 4 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,7 @@ tests
sample
.github
.nyc_output
.eslintignore
.eslintrc.js
.prettierrc
tsconfig.json
37 changes: 35 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,39 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

---

## [1.0.0]

### Added

#### Live transcription

- `deepgram.transcription.live` now manages a websocket connection to Deepgram's API
for live transcription

#### Projects

- `deepgram.projects` allows listing projects or getting a specific project from
your Deepgram account

### Updated

#### Pre-recorded transcription

- `deepgram.batch` has been moved to `deepgram.transcription.preRecorded`
- Type of `source` parameter of pre-recorded transcriptions has changed. You can now
send one of two types of objects: `{ url: YOUR_FILES_URL }` or
`{ buffer: BUFFER_OF_YOUR_FILE, mimetype: FILES_MIME_TYPE }`

#### API Key management

- All `deepgram.keys` methods now require a `projectId`.
- `deepgram.keys.create` now requires an additional parameter `scopes`. This is a
string array specifying the scopes available to the newly created API key

## [0.6.5]

- Added notice to README to denote the library is in a very unstable state.

## [0.6.4]
Expand All @@ -21,5 +52,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

---

[unreleased]: https://github.com/vonage/vscode/compare/0.6.4...HEAD
[0.6.4]: https://github.com/vonage/vscode/compare/edc07b4...0.6.4
[unreleased]: https://github.com/deepgram/node-sdk/compare/1.0.0...HEAD
[1.0.0]: https://github.com/deepgram/node-sdk/compare/0.6.5...1.0.0
[0.6.5]: https://github.com/deepgram/node-sdk/compare/0.6.4...0.6.5
[0.6.4]: https://github.com/deepgram/node-sdk/compare/edc07b4...0.6.4
Loading

0 comments on commit 3e307c1

Please sign in to comment.