You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- The SDK uses `fetch` instead of Axios. This removes the Axios dependency. Axios relies on XMLHttpRequest which isn't supported in Cloudflare Workers, Deno, Bun, etc. By using `fetch`, the SDK is now more compatible on the forementioned runtimes.
6
+
7
+
### Fixed
8
+
- The SDK uses relative imports instead of using path aliases, to make the library transpilable with tsc for consumers. Fixes [#14](https://github.com/AssemblyAI/assemblyai-node-sdk/issues/14).
9
+
- Added `speaker` property to the `TranscriptUtterance` type, and removed `channel` property.
10
+
11
+
## [3.0.0] - 2023-10-24
12
+
### Changed
13
+
-`AssemblyAI.files.upload` accepts streams and buffers, in addition to a string (path to file).
14
+
15
+
### Removed
16
+
-**Breaking**: The module does not have a default export anymore, because of inconsistent functionality across module systems. Instead, use `AssemblyAI` as a named import like this: `import { AssemblyAI } from 'assemblyai'`.
17
+
18
+
## [2.0.2] - 2023-10-13
19
+
20
+
### Added
21
+
-`AssemblyAI.transcripts.wordSearch` searches for keywords in the transcript.
22
+
-`AssemblyAI.lemur.purgeRequestData` deletes data related to your LeMUR request.
23
+
-`RealtimeService.stream` creates a writable stream that you can write audio data to instead of using `RealtimeService.sendAudio``.
24
+
25
+
### Fixed
26
+
- The AssemblyAI class would be exported as default named export instead in certain module systems.
27
+
28
+
## [2.0.1] - 2023-10-10
29
+
30
+
Re-implement the Node SDK in TypeScript and add all AssemblyAI APIs.
Copy file name to clipboardExpand all lines: package.json
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "assemblyai",
3
-
"version": "3.0.0",
3
+
"version": "3.0.1",
4
4
"description": "The AssemblyAI Node.js SDK provides an easy-to-use interface for interacting with the AssemblyAI API, which supports async and real-time transcription, as well as the latest LeMUR models.",
0 commit comments