├── .eslintrc.json ├── .github └── workflows │ ├── api-reference.yml │ ├── publish.yml │ └── test.yml ├── .gitignore ├── .npmignore ├── .prettierignore ├── .prettierrc.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── assemblyai.png ├── docs ├── compat.md └── reference-types-from-js.md ├── jest.config.rollup.ts ├── jest.integration.config.js ├── jest.unit.config.js ├── package.json ├── pnpm-lock.yaml ├── rollup.config.js ├── samples ├── .prettierrc.json ├── speaker-diarization.ts └── streaming-stt-from-mic │ ├── .env.sample │ ├── README.md │ ├── index.js │ ├── index.ts │ ├── package-lock.json │ ├── package.json │ ├── sox.js │ ├── sox.ts │ └── tsconfig.json ├── scripts └── generate-types.ts ├── src ├── exports │ ├── index.ts │ └── streaming.ts ├── index.ts ├── polyfills │ ├── fetch │ │ ├── default.ts │ │ └── workerd.ts │ ├── fs │ │ ├── bun.ts │ │ ├── deno.ts │ │ ├── index.ts │ │ └── node.ts │ ├── streams │ │ ├── index.ts │ │ └── node.ts │ └── websocket │ │ ├── browser.ts │ │ ├── default.ts │ │ └── index.ts ├── services │ ├── base.ts │ ├── files │ │ └── index.ts │ ├── index.ts │ ├── lemur │ │ └── index.ts │ ├── realtime │ │ ├── factory.ts │ │ ├── index.ts │ │ └── service.ts │ ├── streaming │ │ ├── factory.ts │ │ ├── index.ts │ │ └── service.ts │ └── transcripts │ │ └── index.ts ├── types │ ├── asyncapi.generated.ts │ ├── deprecated.ts │ ├── files │ │ └── index.ts │ ├── helpers │ │ └── index.ts │ ├── index.ts │ ├── openapi.generated.ts │ ├── realtime │ │ └── index.ts │ ├── services │ │ └── index.ts │ ├── streaming │ │ └── index.ts │ └── transcripts │ │ └── index.ts └── utils │ ├── conditions │ ├── browser.ts │ ├── bun.ts │ ├── conditions.ts │ ├── default.ts │ ├── deno.ts │ ├── node.ts │ ├── react-native.ts │ └── workerd.ts │ ├── errors │ ├── index.ts │ ├── realtime.ts │ └── streaming.ts │ ├── path.ts │ └── userAgent.ts ├── tests ├── integration │ ├── file.test.ts │ ├── lemur.test.ts │ ├── realtime.test.ts │ ├── streaming.test.ts │ └── transcript.test.ts ├── static │ ├── gore-short.wav │ ├── gore.mulaw.wav │ └── gore.wav └── unit │ ├── file.test.ts │ ├── language-detection-options.test.ts │ ├── lemur.test.ts │ ├── mocks │ └── ws.ts │ ├── realtime.test.ts │ ├── speaker-options.test.ts │ ├── streaming.test.ts │ ├── transcript.test.ts │ ├── utils.test.ts │ └── utils.ts ├── tsconfig.json ├── tsconfig.scripts.json ├── tsconfig.test.json ├── tslint.json └── typedoc.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/api-reference.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/.github/workflows/api-reference.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .git 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "semi": true 3 | } 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/README.md -------------------------------------------------------------------------------- /assemblyai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/assemblyai.png -------------------------------------------------------------------------------- /docs/compat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/docs/compat.md -------------------------------------------------------------------------------- /docs/reference-types-from-js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/docs/reference-types-from-js.md -------------------------------------------------------------------------------- /jest.config.rollup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/jest.config.rollup.ts -------------------------------------------------------------------------------- /jest.integration.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/jest.integration.config.js -------------------------------------------------------------------------------- /jest.unit.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/jest.unit.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/rollup.config.js -------------------------------------------------------------------------------- /samples/.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "semi": false 3 | } 4 | -------------------------------------------------------------------------------- /samples/speaker-diarization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/samples/speaker-diarization.ts -------------------------------------------------------------------------------- /samples/streaming-stt-from-mic/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/samples/streaming-stt-from-mic/.env.sample -------------------------------------------------------------------------------- /samples/streaming-stt-from-mic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/samples/streaming-stt-from-mic/README.md -------------------------------------------------------------------------------- /samples/streaming-stt-from-mic/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/samples/streaming-stt-from-mic/index.js -------------------------------------------------------------------------------- /samples/streaming-stt-from-mic/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/samples/streaming-stt-from-mic/index.ts -------------------------------------------------------------------------------- /samples/streaming-stt-from-mic/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/samples/streaming-stt-from-mic/package-lock.json -------------------------------------------------------------------------------- /samples/streaming-stt-from-mic/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/samples/streaming-stt-from-mic/package.json -------------------------------------------------------------------------------- /samples/streaming-stt-from-mic/sox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/samples/streaming-stt-from-mic/sox.js -------------------------------------------------------------------------------- /samples/streaming-stt-from-mic/sox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/samples/streaming-stt-from-mic/sox.ts -------------------------------------------------------------------------------- /samples/streaming-stt-from-mic/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/samples/streaming-stt-from-mic/tsconfig.json -------------------------------------------------------------------------------- /scripts/generate-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/scripts/generate-types.ts -------------------------------------------------------------------------------- /src/exports/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/src/exports/index.ts -------------------------------------------------------------------------------- /src/exports/streaming.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/src/exports/streaming.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/polyfills/fetch/default.ts: -------------------------------------------------------------------------------- 1 | export const DEFAULT_FETCH_INIT: Record = { 2 | cache: "no-store", 3 | }; 4 | -------------------------------------------------------------------------------- /src/polyfills/fetch/workerd.ts: -------------------------------------------------------------------------------- 1 | export const DEFAULT_FETCH_INIT: Record = {}; 2 | -------------------------------------------------------------------------------- /src/polyfills/fs/bun.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/src/polyfills/fs/bun.ts -------------------------------------------------------------------------------- /src/polyfills/fs/deno.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/src/polyfills/fs/deno.ts -------------------------------------------------------------------------------- /src/polyfills/fs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/src/polyfills/fs/index.ts -------------------------------------------------------------------------------- /src/polyfills/fs/node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/src/polyfills/fs/node.ts -------------------------------------------------------------------------------- /src/polyfills/streams/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/src/polyfills/streams/index.ts -------------------------------------------------------------------------------- /src/polyfills/streams/node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/src/polyfills/streams/node.ts -------------------------------------------------------------------------------- /src/polyfills/websocket/browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/src/polyfills/websocket/browser.ts -------------------------------------------------------------------------------- /src/polyfills/websocket/default.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/src/polyfills/websocket/default.ts -------------------------------------------------------------------------------- /src/polyfills/websocket/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/src/polyfills/websocket/index.ts -------------------------------------------------------------------------------- /src/services/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/src/services/base.ts -------------------------------------------------------------------------------- /src/services/files/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/src/services/files/index.ts -------------------------------------------------------------------------------- /src/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/src/services/index.ts -------------------------------------------------------------------------------- /src/services/lemur/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/src/services/lemur/index.ts -------------------------------------------------------------------------------- /src/services/realtime/factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/src/services/realtime/factory.ts -------------------------------------------------------------------------------- /src/services/realtime/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/src/services/realtime/index.ts -------------------------------------------------------------------------------- /src/services/realtime/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/src/services/realtime/service.ts -------------------------------------------------------------------------------- /src/services/streaming/factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/src/services/streaming/factory.ts -------------------------------------------------------------------------------- /src/services/streaming/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/src/services/streaming/index.ts -------------------------------------------------------------------------------- /src/services/streaming/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/src/services/streaming/service.ts -------------------------------------------------------------------------------- /src/services/transcripts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/src/services/transcripts/index.ts -------------------------------------------------------------------------------- /src/types/asyncapi.generated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/src/types/asyncapi.generated.ts -------------------------------------------------------------------------------- /src/types/deprecated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/src/types/deprecated.ts -------------------------------------------------------------------------------- /src/types/files/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/src/types/files/index.ts -------------------------------------------------------------------------------- /src/types/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/src/types/helpers/index.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/types/openapi.generated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/src/types/openapi.generated.ts -------------------------------------------------------------------------------- /src/types/realtime/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/src/types/realtime/index.ts -------------------------------------------------------------------------------- /src/types/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/src/types/services/index.ts -------------------------------------------------------------------------------- /src/types/streaming/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/src/types/streaming/index.ts -------------------------------------------------------------------------------- /src/types/transcripts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/src/types/transcripts/index.ts -------------------------------------------------------------------------------- /src/utils/conditions/browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/src/utils/conditions/browser.ts -------------------------------------------------------------------------------- /src/utils/conditions/bun.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/src/utils/conditions/bun.ts -------------------------------------------------------------------------------- /src/utils/conditions/conditions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/src/utils/conditions/conditions.ts -------------------------------------------------------------------------------- /src/utils/conditions/default.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/src/utils/conditions/default.ts -------------------------------------------------------------------------------- /src/utils/conditions/deno.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/src/utils/conditions/deno.ts -------------------------------------------------------------------------------- /src/utils/conditions/node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/src/utils/conditions/node.ts -------------------------------------------------------------------------------- /src/utils/conditions/react-native.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/src/utils/conditions/react-native.ts -------------------------------------------------------------------------------- /src/utils/conditions/workerd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/src/utils/conditions/workerd.ts -------------------------------------------------------------------------------- /src/utils/errors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/src/utils/errors/index.ts -------------------------------------------------------------------------------- /src/utils/errors/realtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/src/utils/errors/realtime.ts -------------------------------------------------------------------------------- /src/utils/errors/streaming.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/src/utils/errors/streaming.ts -------------------------------------------------------------------------------- /src/utils/path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/src/utils/path.ts -------------------------------------------------------------------------------- /src/utils/userAgent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/src/utils/userAgent.ts -------------------------------------------------------------------------------- /tests/integration/file.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/tests/integration/file.test.ts -------------------------------------------------------------------------------- /tests/integration/lemur.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/tests/integration/lemur.test.ts -------------------------------------------------------------------------------- /tests/integration/realtime.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/tests/integration/realtime.test.ts -------------------------------------------------------------------------------- /tests/integration/streaming.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/tests/integration/streaming.test.ts -------------------------------------------------------------------------------- /tests/integration/transcript.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/tests/integration/transcript.test.ts -------------------------------------------------------------------------------- /tests/static/gore-short.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/tests/static/gore-short.wav -------------------------------------------------------------------------------- /tests/static/gore.mulaw.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/tests/static/gore.mulaw.wav -------------------------------------------------------------------------------- /tests/static/gore.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/tests/static/gore.wav -------------------------------------------------------------------------------- /tests/unit/file.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/tests/unit/file.test.ts -------------------------------------------------------------------------------- /tests/unit/language-detection-options.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/tests/unit/language-detection-options.test.ts -------------------------------------------------------------------------------- /tests/unit/lemur.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/tests/unit/lemur.test.ts -------------------------------------------------------------------------------- /tests/unit/mocks/ws.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/tests/unit/mocks/ws.ts -------------------------------------------------------------------------------- /tests/unit/realtime.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/tests/unit/realtime.test.ts -------------------------------------------------------------------------------- /tests/unit/speaker-options.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/tests/unit/speaker-options.test.ts -------------------------------------------------------------------------------- /tests/unit/streaming.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/tests/unit/streaming.test.ts -------------------------------------------------------------------------------- /tests/unit/transcript.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/tests/unit/transcript.test.ts -------------------------------------------------------------------------------- /tests/unit/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/tests/unit/utils.test.ts -------------------------------------------------------------------------------- /tests/unit/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/tests/unit/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.scripts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/tsconfig.scripts.json -------------------------------------------------------------------------------- /tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/tsconfig.test.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/tslint.json -------------------------------------------------------------------------------- /typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AssemblyAI/assemblyai-node-sdk/HEAD/typedoc.json --------------------------------------------------------------------------------