Skip to content

Commit 9827fec

Browse files
committed
0.6.4 release
1 parent 1f1345d commit 9827fec

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.6.4]
11+
1012
### Added
1113

1214
- `transcribe` method will now return transcription results for both urls or buffers.
@@ -15,4 +17,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1517

1618
---
1719

18-
[unreleased]: https://github.com/vonage/vscode/compare/edc07b4...HEAD
20+
[unreleased]: https://github.com/vonage/vscode/compare/0.6.4...HEAD
21+
[0.6.4]: https://github.com/vonage/vscode/compare/edc07b4...0.6.4

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Deepgram Node.js SDK
22

3-
![GitHub Workflow Status (branch)](https://img.shields.io/github/workflow/status/deepgram/node-sdk/CI/main) ![npm (scoped)](https://img.shields.io/npm/v/deepgram/node-sdk) [![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-v2.0%20adopted-ff69b4.svg?style=flat-rounded)](CODE_OF_CONDUCT.md)
3+
![GitHub Workflow Status (branch)](https://img.shields.io/github/workflow/status/deepgram/node-sdk/CI/main) ![npm (scoped)](https://img.shields.io/npm/v/@deepgram/sdk) [![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-v2.0%20adopted-ff69b4.svg?style=flat-rounded)](CODE_OF_CONDUCT.md)
44

55
Node.js official SDK for [Deepgram](https://www.deepgram.com/)'s automated
66
speech recognition APIs.
@@ -27,12 +27,12 @@ yarn add @deepgram/sdk
2727
## Constructor
2828

2929
```js
30-
const Deepgram = require("@deepgram/sdk");
30+
const { Deepgram } = require("@deepgram/sdk");
3131

3232
const deepgram = new Deepgram({
3333
apiKey: DEEPGRAM_API_KEY,
3434
apiSecret: DEEPGRAM_API_SECRET,
35-
apiUrl: CUSTOM_API_URL,
35+
apiUrl: CUSTOM_API_URL, // Optionally used for on-prem customers
3636
});
3737
```
3838

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@deepgram/sdk",
3-
"version": "0.6.3",
3+
"version": "0.6.4",
44
"description": "An SDK for the Deepgram automated speech recognition platform",
55
"main": "dist/index.js",
66
"scripts": {
@@ -51,4 +51,4 @@
5151
"typescript": "^4.2.4"
5252
},
5353
"dependencies": {}
54-
}
54+
}

0 commit comments

Comments
 (0)