├── .fernignore ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .npmignore ├── .prettierrc.yml ├── README.md ├── jest.config.mjs ├── package.json ├── reference.md ├── scripts └── rename-to-esm-files.js ├── src ├── Client.ts ├── api │ ├── index.ts │ └── resources │ │ ├── apiStatus │ │ ├── client │ │ │ ├── Client.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── ApiInfo.ts │ │ │ └── index.ts │ │ ├── auth │ │ ├── client │ │ │ ├── Client.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── TokenGrant.ts │ │ │ ├── TokenRequest.ts │ │ │ ├── TokenResponse.ts │ │ │ └── index.ts │ │ ├── embedding │ │ ├── index.ts │ │ └── types │ │ │ ├── Embedding.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── infill │ │ ├── client │ │ │ ├── Client.ts │ │ │ ├── index.ts │ │ │ └── requests │ │ │ │ ├── InfillBytesRequest.ts │ │ │ │ └── index.ts │ │ └── index.ts │ │ ├── stt │ │ ├── client │ │ │ ├── Client.ts │ │ │ ├── index.ts │ │ │ └── requests │ │ │ │ ├── TranscriptionRequest.ts │ │ │ │ └── index.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── DoneMessage.ts │ │ │ ├── ErrorMessage.ts │ │ │ ├── FlushDoneMessage.ts │ │ │ ├── StreamingTranscriptionResponse.ts │ │ │ ├── SttEncoding.ts │ │ │ ├── TimestampGranularity.ts │ │ │ ├── TranscriptMessage.ts │ │ │ ├── TranscriptionResponse.ts │ │ │ ├── TranscriptionWord.ts │ │ │ └── index.ts │ │ ├── tts │ │ ├── client │ │ │ ├── Client.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── CancelContextRequest.ts │ │ │ ├── ContextId.ts │ │ │ ├── Controls.ts │ │ │ ├── Emotion.ts │ │ │ ├── EmotionDeprecated.ts │ │ │ ├── FlushId.ts │ │ │ ├── GenerationConfig.ts │ │ │ ├── GenerationRequest.ts │ │ │ ├── ModelSpeed.ts │ │ │ ├── Mp3OutputFormat.ts │ │ │ ├── NaturalSpecifier.ts │ │ │ ├── NumericalSpecifier.ts │ │ │ ├── OutputFormat.ts │ │ │ ├── PhonemeTimestamps.ts │ │ │ ├── RawEncoding.ts │ │ │ ├── RawOutputFormat.ts │ │ │ ├── Speed.ts │ │ │ ├── SseOutputFormat.ts │ │ │ ├── SupportedLanguage.ts │ │ │ ├── TtsRequest.ts │ │ │ ├── TtsRequestEmbeddingSpecifier.ts │ │ │ ├── TtsRequestIdSpecifier.ts │ │ │ ├── TtsRequestVoiceSpecifier.ts │ │ │ ├── TtssseRequest.ts │ │ │ ├── WavOutputFormat.ts │ │ │ ├── WebSocketBaseResponse.ts │ │ │ ├── WebSocketChunkResponse.ts │ │ │ ├── WebSocketDoneResponse.ts │ │ │ ├── WebSocketErrorResponse.ts │ │ │ ├── WebSocketFlushDoneResponse.ts │ │ │ ├── WebSocketPhonemeTimestampsResponse.ts │ │ │ ├── WebSocketRawOutputFormat.ts │ │ │ ├── WebSocketRequest.ts │ │ │ ├── WebSocketResponse.ts │ │ │ ├── WebSocketStreamOptions.ts │ │ │ ├── WebSocketTimestampsResponse.ts │ │ │ ├── WebSocketTtsOutput.ts │ │ │ ├── WebSocketTtsRequest.ts │ │ │ ├── WordTimestamps.ts │ │ │ └── index.ts │ │ ├── voiceChanger │ │ ├── client │ │ │ ├── Client.ts │ │ │ ├── index.ts │ │ │ └── requests │ │ │ │ ├── VoiceChangerBytesRequest.ts │ │ │ │ ├── VoiceChangerSseRequest.ts │ │ │ │ └── index.ts │ │ ├── index.ts │ │ └── types │ │ │ ├── OutputFormatContainer.ts │ │ │ ├── StreamingResponse.ts │ │ │ └── index.ts │ │ └── voices │ │ ├── client │ │ ├── Client.ts │ │ ├── index.ts │ │ └── requests │ │ │ ├── CloneVoiceRequest.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ └── types │ │ ├── BaseVoiceId.ts │ │ ├── CloneMode.ts │ │ ├── CreateVoiceRequest.ts │ │ ├── EmbeddingResponse.ts │ │ ├── EmbeddingSpecifier.ts │ │ ├── Gender.ts │ │ ├── IdSpecifier.ts │ │ ├── LocalizeDialect.ts │ │ ├── LocalizeEnglishDialect.ts │ │ ├── LocalizeFrenchDialect.ts │ │ ├── LocalizePortugueseDialect.ts │ │ ├── LocalizeSpanishDialect.ts │ │ ├── LocalizeTargetLanguage.ts │ │ ├── LocalizeVoiceRequest.ts │ │ ├── MixVoiceSpecifier.ts │ │ ├── MixVoicesRequest.ts │ │ ├── UpdateVoiceRequest.ts │ │ ├── Voice.ts │ │ ├── VoiceId.ts │ │ ├── VoiceMetadata.ts │ │ ├── Weight.ts │ │ └── index.ts ├── core │ ├── fetcher │ │ ├── APIResponse.ts │ │ ├── Fetcher.ts │ │ ├── Supplier.ts │ │ ├── createRequestUrl.ts │ │ ├── getFetchFn.ts │ │ ├── getHeader.ts │ │ ├── getRequestBody.ts │ │ ├── getResponseBody.ts │ │ ├── index.ts │ │ ├── makeRequest.ts │ │ ├── requestWithRetries.ts │ │ ├── signals.ts │ │ └── stream-wrappers │ │ │ ├── Node18UniversalStreamWrapper.ts │ │ │ ├── NodePre18StreamWrapper.ts │ │ │ ├── UndiciStreamWrapper.ts │ │ │ └── chooseStreamWrapper.ts │ ├── form-data-utils │ │ ├── FormDataWrapper.ts │ │ └── index.ts │ ├── index.ts │ ├── json.ts │ ├── runtime │ │ ├── index.ts │ │ └── runtime.ts │ ├── schemas │ │ ├── Schema.ts │ │ ├── builders │ │ │ ├── bigint │ │ │ │ ├── bigint.ts │ │ │ │ └── index.ts │ │ │ ├── date │ │ │ │ ├── date.ts │ │ │ │ └── index.ts │ │ │ ├── enum │ │ │ │ ├── enum.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── lazy │ │ │ │ ├── index.ts │ │ │ │ ├── lazy.ts │ │ │ │ └── lazyObject.ts │ │ │ ├── list │ │ │ │ ├── index.ts │ │ │ │ └── list.ts │ │ │ ├── literals │ │ │ │ ├── booleanLiteral.ts │ │ │ │ ├── index.ts │ │ │ │ └── stringLiteral.ts │ │ │ ├── object-like │ │ │ │ ├── getObjectLikeUtils.ts │ │ │ │ ├── index.ts │ │ │ │ └── types.ts │ │ │ ├── object │ │ │ │ ├── index.ts │ │ │ │ ├── object.ts │ │ │ │ ├── objectWithoutOptionalProperties.ts │ │ │ │ ├── property.ts │ │ │ │ └── types.ts │ │ │ ├── primitives │ │ │ │ ├── any.ts │ │ │ │ ├── boolean.ts │ │ │ │ ├── index.ts │ │ │ │ ├── number.ts │ │ │ │ ├── string.ts │ │ │ │ └── unknown.ts │ │ │ ├── record │ │ │ │ ├── index.ts │ │ │ │ ├── record.ts │ │ │ │ └── types.ts │ │ │ ├── schema-utils │ │ │ │ ├── JsonError.ts │ │ │ │ ├── ParseError.ts │ │ │ │ ├── getSchemaUtils.ts │ │ │ │ ├── index.ts │ │ │ │ └── stringifyValidationErrors.ts │ │ │ ├── set │ │ │ │ ├── index.ts │ │ │ │ └── set.ts │ │ │ ├── undiscriminated-union │ │ │ │ ├── index.ts │ │ │ │ ├── types.ts │ │ │ │ └── undiscriminatedUnion.ts │ │ │ └── union │ │ │ │ ├── discriminant.ts │ │ │ │ ├── index.ts │ │ │ │ ├── types.ts │ │ │ │ └── union.ts │ │ ├── index.ts │ │ └── utils │ │ │ ├── MaybePromise.ts │ │ │ ├── addQuestionMarksToNullableProperties.ts │ │ │ ├── createIdentitySchemaCreator.ts │ │ │ ├── entries.ts │ │ │ ├── filterObject.ts │ │ │ ├── getErrorMessageForIncorrectType.ts │ │ │ ├── isPlainObject.ts │ │ │ ├── keys.ts │ │ │ ├── maybeSkipValidation.ts │ │ │ └── partition.ts │ ├── streaming-fetcher │ │ ├── Stream.ts │ │ └── index.ts │ └── websocket │ │ ├── events.ts │ │ ├── index.ts │ │ └── ws.ts ├── environments.ts ├── errors │ ├── CartesiaError.ts │ ├── CartesiaTimeoutError.ts │ └── index.ts ├── index.ts ├── serialization │ ├── index.ts │ └── resources │ │ ├── apiStatus │ │ ├── index.ts │ │ └── types │ │ │ ├── ApiInfo.ts │ │ │ └── index.ts │ │ ├── auth │ │ ├── index.ts │ │ └── types │ │ │ ├── TokenGrant.ts │ │ │ ├── TokenRequest.ts │ │ │ ├── TokenResponse.ts │ │ │ └── index.ts │ │ ├── embedding │ │ ├── index.ts │ │ └── types │ │ │ ├── Embedding.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── stt │ │ ├── index.ts │ │ └── types │ │ │ ├── DoneMessage.ts │ │ │ ├── ErrorMessage.ts │ │ │ ├── FlushDoneMessage.ts │ │ │ ├── StreamingTranscriptionResponse.ts │ │ │ ├── SttEncoding.ts │ │ │ ├── TimestampGranularity.ts │ │ │ ├── TranscriptMessage.ts │ │ │ ├── TranscriptionResponse.ts │ │ │ ├── TranscriptionWord.ts │ │ │ └── index.ts │ │ ├── tts │ │ ├── index.ts │ │ └── types │ │ │ ├── CancelContextRequest.ts │ │ │ ├── ContextId.ts │ │ │ ├── Controls.ts │ │ │ ├── Emotion.ts │ │ │ ├── EmotionDeprecated.ts │ │ │ ├── FlushId.ts │ │ │ ├── GenerationConfig.ts │ │ │ ├── GenerationRequest.ts │ │ │ ├── ModelSpeed.ts │ │ │ ├── Mp3OutputFormat.ts │ │ │ ├── NaturalSpecifier.ts │ │ │ ├── NumericalSpecifier.ts │ │ │ ├── OutputFormat.ts │ │ │ ├── PhonemeTimestamps.ts │ │ │ ├── RawEncoding.ts │ │ │ ├── RawOutputFormat.ts │ │ │ ├── Speed.ts │ │ │ ├── SseOutputFormat.ts │ │ │ ├── SupportedLanguage.ts │ │ │ ├── TtsRequest.ts │ │ │ ├── TtsRequestEmbeddingSpecifier.ts │ │ │ ├── TtsRequestIdSpecifier.ts │ │ │ ├── TtsRequestVoiceSpecifier.ts │ │ │ ├── TtssseRequest.ts │ │ │ ├── WavOutputFormat.ts │ │ │ ├── WebSocketBaseResponse.ts │ │ │ ├── WebSocketChunkResponse.ts │ │ │ ├── WebSocketDoneResponse.ts │ │ │ ├── WebSocketErrorResponse.ts │ │ │ ├── WebSocketFlushDoneResponse.ts │ │ │ ├── WebSocketPhonemeTimestampsResponse.ts │ │ │ ├── WebSocketRawOutputFormat.ts │ │ │ ├── WebSocketRequest.ts │ │ │ ├── WebSocketResponse.ts │ │ │ ├── WebSocketStreamOptions.ts │ │ │ ├── WebSocketTimestampsResponse.ts │ │ │ ├── WebSocketTtsOutput.ts │ │ │ ├── WebSocketTtsRequest.ts │ │ │ ├── WordTimestamps.ts │ │ │ └── index.ts │ │ ├── voiceChanger │ │ ├── index.ts │ │ └── types │ │ │ ├── OutputFormatContainer.ts │ │ │ ├── StreamingResponse.ts │ │ │ └── index.ts │ │ └── voices │ │ ├── client │ │ ├── index.ts │ │ └── list.ts │ │ ├── index.ts │ │ └── types │ │ ├── BaseVoiceId.ts │ │ ├── CloneMode.ts │ │ ├── CreateVoiceRequest.ts │ │ ├── EmbeddingResponse.ts │ │ ├── EmbeddingSpecifier.ts │ │ ├── Gender.ts │ │ ├── IdSpecifier.ts │ │ ├── LocalizeDialect.ts │ │ ├── LocalizeEnglishDialect.ts │ │ ├── LocalizeFrenchDialect.ts │ │ ├── LocalizePortugueseDialect.ts │ │ ├── LocalizeSpanishDialect.ts │ │ ├── LocalizeTargetLanguage.ts │ │ ├── LocalizeVoiceRequest.ts │ │ ├── MixVoiceSpecifier.ts │ │ ├── MixVoicesRequest.ts │ │ ├── UpdateVoiceRequest.ts │ │ ├── Voice.ts │ │ ├── VoiceId.ts │ │ ├── VoiceMetadata.ts │ │ ├── Weight.ts │ │ └── index.ts ├── version.ts └── wrapper │ ├── Client.ts │ ├── StreamingSTTClient.ts │ ├── StreamingTTSClient.ts │ ├── SttWebsocket.ts │ ├── WebPlayer.ts │ ├── Websocket.ts │ ├── source.ts │ └── utils.ts ├── tests ├── custom.test.ts └── unit │ ├── fetcher │ ├── Fetcher.test.ts │ ├── createRequestUrl.test.ts │ ├── getFetchFn.test.ts │ ├── getRequestBody.test.ts │ ├── getResponseBody.test.ts │ ├── makeRequest.test.ts │ ├── requestWithRetries.test.ts │ ├── signals.test.ts │ ├── stream-wrappers │ │ ├── Node18UniversalStreamWrapper.test.ts │ │ ├── NodePre18StreamWrapper.test.ts │ │ ├── UndiciStreamWrapper.test.ts │ │ ├── chooseStreamWrapper.test.ts │ │ └── webpack.test.ts │ └── test-file.txt │ ├── form-data-utils │ └── formDataWrapper.test.ts │ └── zurg │ ├── bigint │ └── bigint.test.ts │ ├── date │ └── date.test.ts │ ├── enum │ └── enum.test.ts │ ├── lazy │ ├── lazy.test.ts │ ├── lazyObject.test.ts │ └── recursive │ │ ├── a.ts │ │ └── b.ts │ ├── list │ └── list.test.ts │ ├── literals │ └── stringLiteral.test.ts │ ├── object-like │ └── withParsedProperties.test.ts │ ├── object │ ├── extend.test.ts │ ├── object.test.ts │ ├── objectWithoutOptionalProperties.test.ts │ └── passthrough.test.ts │ ├── primitives │ ├── any.test.ts │ ├── boolean.test.ts │ ├── number.test.ts │ ├── string.test.ts │ └── unknown.test.ts │ ├── record │ └── record.test.ts │ ├── schema-utils │ └── getSchemaUtils.test.ts │ ├── schema.test.ts │ ├── set │ └── set.test.ts │ ├── skipValidation.test.ts │ ├── undiscriminated-union │ └── undiscriminatedUnion.test.ts │ ├── union │ └── union.test.ts │ └── utils │ ├── itSchema.ts │ └── itValidate.ts ├── tsconfig.json └── yarn.lock /.fernignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/.fernignore -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | /dist -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/.prettierrc.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/jest.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/package.json -------------------------------------------------------------------------------- /reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/reference.md -------------------------------------------------------------------------------- /scripts/rename-to-esm-files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/scripts/rename-to-esm-files.js -------------------------------------------------------------------------------- /src/Client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/Client.ts -------------------------------------------------------------------------------- /src/api/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./resources"; 2 | -------------------------------------------------------------------------------- /src/api/resources/apiStatus/client/Client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/apiStatus/client/Client.ts -------------------------------------------------------------------------------- /src/api/resources/apiStatus/client/index.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /src/api/resources/apiStatus/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/apiStatus/index.ts -------------------------------------------------------------------------------- /src/api/resources/apiStatus/types/ApiInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/apiStatus/types/ApiInfo.ts -------------------------------------------------------------------------------- /src/api/resources/apiStatus/types/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./ApiInfo"; 2 | -------------------------------------------------------------------------------- /src/api/resources/auth/client/Client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/auth/client/Client.ts -------------------------------------------------------------------------------- /src/api/resources/auth/client/index.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /src/api/resources/auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/auth/index.ts -------------------------------------------------------------------------------- /src/api/resources/auth/types/TokenGrant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/auth/types/TokenGrant.ts -------------------------------------------------------------------------------- /src/api/resources/auth/types/TokenRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/auth/types/TokenRequest.ts -------------------------------------------------------------------------------- /src/api/resources/auth/types/TokenResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/auth/types/TokenResponse.ts -------------------------------------------------------------------------------- /src/api/resources/auth/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/auth/types/index.ts -------------------------------------------------------------------------------- /src/api/resources/embedding/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./types"; 2 | -------------------------------------------------------------------------------- /src/api/resources/embedding/types/Embedding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/embedding/types/Embedding.ts -------------------------------------------------------------------------------- /src/api/resources/embedding/types/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Embedding"; 2 | -------------------------------------------------------------------------------- /src/api/resources/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/index.ts -------------------------------------------------------------------------------- /src/api/resources/infill/client/Client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/infill/client/Client.ts -------------------------------------------------------------------------------- /src/api/resources/infill/client/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./requests"; 2 | -------------------------------------------------------------------------------- /src/api/resources/infill/client/requests/InfillBytesRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/infill/client/requests/InfillBytesRequest.ts -------------------------------------------------------------------------------- /src/api/resources/infill/client/requests/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/infill/client/requests/index.ts -------------------------------------------------------------------------------- /src/api/resources/infill/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./client"; 2 | -------------------------------------------------------------------------------- /src/api/resources/stt/client/Client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/stt/client/Client.ts -------------------------------------------------------------------------------- /src/api/resources/stt/client/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./requests"; 2 | -------------------------------------------------------------------------------- /src/api/resources/stt/client/requests/TranscriptionRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/stt/client/requests/TranscriptionRequest.ts -------------------------------------------------------------------------------- /src/api/resources/stt/client/requests/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/stt/client/requests/index.ts -------------------------------------------------------------------------------- /src/api/resources/stt/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/stt/index.ts -------------------------------------------------------------------------------- /src/api/resources/stt/types/DoneMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/stt/types/DoneMessage.ts -------------------------------------------------------------------------------- /src/api/resources/stt/types/ErrorMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/stt/types/ErrorMessage.ts -------------------------------------------------------------------------------- /src/api/resources/stt/types/FlushDoneMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/stt/types/FlushDoneMessage.ts -------------------------------------------------------------------------------- /src/api/resources/stt/types/StreamingTranscriptionResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/stt/types/StreamingTranscriptionResponse.ts -------------------------------------------------------------------------------- /src/api/resources/stt/types/SttEncoding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/stt/types/SttEncoding.ts -------------------------------------------------------------------------------- /src/api/resources/stt/types/TimestampGranularity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/stt/types/TimestampGranularity.ts -------------------------------------------------------------------------------- /src/api/resources/stt/types/TranscriptMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/stt/types/TranscriptMessage.ts -------------------------------------------------------------------------------- /src/api/resources/stt/types/TranscriptionResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/stt/types/TranscriptionResponse.ts -------------------------------------------------------------------------------- /src/api/resources/stt/types/TranscriptionWord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/stt/types/TranscriptionWord.ts -------------------------------------------------------------------------------- /src/api/resources/stt/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/stt/types/index.ts -------------------------------------------------------------------------------- /src/api/resources/tts/client/Client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/tts/client/Client.ts -------------------------------------------------------------------------------- /src/api/resources/tts/client/index.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /src/api/resources/tts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/tts/index.ts -------------------------------------------------------------------------------- /src/api/resources/tts/types/CancelContextRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/tts/types/CancelContextRequest.ts -------------------------------------------------------------------------------- /src/api/resources/tts/types/ContextId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/tts/types/ContextId.ts -------------------------------------------------------------------------------- /src/api/resources/tts/types/Controls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/tts/types/Controls.ts -------------------------------------------------------------------------------- /src/api/resources/tts/types/Emotion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/tts/types/Emotion.ts -------------------------------------------------------------------------------- /src/api/resources/tts/types/EmotionDeprecated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/tts/types/EmotionDeprecated.ts -------------------------------------------------------------------------------- /src/api/resources/tts/types/FlushId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/tts/types/FlushId.ts -------------------------------------------------------------------------------- /src/api/resources/tts/types/GenerationConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/tts/types/GenerationConfig.ts -------------------------------------------------------------------------------- /src/api/resources/tts/types/GenerationRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/tts/types/GenerationRequest.ts -------------------------------------------------------------------------------- /src/api/resources/tts/types/ModelSpeed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/tts/types/ModelSpeed.ts -------------------------------------------------------------------------------- /src/api/resources/tts/types/Mp3OutputFormat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/tts/types/Mp3OutputFormat.ts -------------------------------------------------------------------------------- /src/api/resources/tts/types/NaturalSpecifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/tts/types/NaturalSpecifier.ts -------------------------------------------------------------------------------- /src/api/resources/tts/types/NumericalSpecifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/tts/types/NumericalSpecifier.ts -------------------------------------------------------------------------------- /src/api/resources/tts/types/OutputFormat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/tts/types/OutputFormat.ts -------------------------------------------------------------------------------- /src/api/resources/tts/types/PhonemeTimestamps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/tts/types/PhonemeTimestamps.ts -------------------------------------------------------------------------------- /src/api/resources/tts/types/RawEncoding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/tts/types/RawEncoding.ts -------------------------------------------------------------------------------- /src/api/resources/tts/types/RawOutputFormat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/tts/types/RawOutputFormat.ts -------------------------------------------------------------------------------- /src/api/resources/tts/types/Speed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/tts/types/Speed.ts -------------------------------------------------------------------------------- /src/api/resources/tts/types/SseOutputFormat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/tts/types/SseOutputFormat.ts -------------------------------------------------------------------------------- /src/api/resources/tts/types/SupportedLanguage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/tts/types/SupportedLanguage.ts -------------------------------------------------------------------------------- /src/api/resources/tts/types/TtsRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/tts/types/TtsRequest.ts -------------------------------------------------------------------------------- /src/api/resources/tts/types/TtsRequestEmbeddingSpecifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/tts/types/TtsRequestEmbeddingSpecifier.ts -------------------------------------------------------------------------------- /src/api/resources/tts/types/TtsRequestIdSpecifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/tts/types/TtsRequestIdSpecifier.ts -------------------------------------------------------------------------------- /src/api/resources/tts/types/TtsRequestVoiceSpecifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/tts/types/TtsRequestVoiceSpecifier.ts -------------------------------------------------------------------------------- /src/api/resources/tts/types/TtssseRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/tts/types/TtssseRequest.ts -------------------------------------------------------------------------------- /src/api/resources/tts/types/WavOutputFormat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/tts/types/WavOutputFormat.ts -------------------------------------------------------------------------------- /src/api/resources/tts/types/WebSocketBaseResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/tts/types/WebSocketBaseResponse.ts -------------------------------------------------------------------------------- /src/api/resources/tts/types/WebSocketChunkResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/tts/types/WebSocketChunkResponse.ts -------------------------------------------------------------------------------- /src/api/resources/tts/types/WebSocketDoneResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/tts/types/WebSocketDoneResponse.ts -------------------------------------------------------------------------------- /src/api/resources/tts/types/WebSocketErrorResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/tts/types/WebSocketErrorResponse.ts -------------------------------------------------------------------------------- /src/api/resources/tts/types/WebSocketFlushDoneResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/tts/types/WebSocketFlushDoneResponse.ts -------------------------------------------------------------------------------- /src/api/resources/tts/types/WebSocketPhonemeTimestampsResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/tts/types/WebSocketPhonemeTimestampsResponse.ts -------------------------------------------------------------------------------- /src/api/resources/tts/types/WebSocketRawOutputFormat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/tts/types/WebSocketRawOutputFormat.ts -------------------------------------------------------------------------------- /src/api/resources/tts/types/WebSocketRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/tts/types/WebSocketRequest.ts -------------------------------------------------------------------------------- /src/api/resources/tts/types/WebSocketResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/tts/types/WebSocketResponse.ts -------------------------------------------------------------------------------- /src/api/resources/tts/types/WebSocketStreamOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/tts/types/WebSocketStreamOptions.ts -------------------------------------------------------------------------------- /src/api/resources/tts/types/WebSocketTimestampsResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/tts/types/WebSocketTimestampsResponse.ts -------------------------------------------------------------------------------- /src/api/resources/tts/types/WebSocketTtsOutput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/tts/types/WebSocketTtsOutput.ts -------------------------------------------------------------------------------- /src/api/resources/tts/types/WebSocketTtsRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/tts/types/WebSocketTtsRequest.ts -------------------------------------------------------------------------------- /src/api/resources/tts/types/WordTimestamps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/tts/types/WordTimestamps.ts -------------------------------------------------------------------------------- /src/api/resources/tts/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/tts/types/index.ts -------------------------------------------------------------------------------- /src/api/resources/voiceChanger/client/Client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/voiceChanger/client/Client.ts -------------------------------------------------------------------------------- /src/api/resources/voiceChanger/client/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./requests"; 2 | -------------------------------------------------------------------------------- /src/api/resources/voiceChanger/client/requests/VoiceChangerBytesRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/voiceChanger/client/requests/VoiceChangerBytesRequest.ts -------------------------------------------------------------------------------- /src/api/resources/voiceChanger/client/requests/VoiceChangerSseRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/voiceChanger/client/requests/VoiceChangerSseRequest.ts -------------------------------------------------------------------------------- /src/api/resources/voiceChanger/client/requests/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/voiceChanger/client/requests/index.ts -------------------------------------------------------------------------------- /src/api/resources/voiceChanger/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/voiceChanger/index.ts -------------------------------------------------------------------------------- /src/api/resources/voiceChanger/types/OutputFormatContainer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/voiceChanger/types/OutputFormatContainer.ts -------------------------------------------------------------------------------- /src/api/resources/voiceChanger/types/StreamingResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/voiceChanger/types/StreamingResponse.ts -------------------------------------------------------------------------------- /src/api/resources/voiceChanger/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/voiceChanger/types/index.ts -------------------------------------------------------------------------------- /src/api/resources/voices/client/Client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/voices/client/Client.ts -------------------------------------------------------------------------------- /src/api/resources/voices/client/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./requests"; 2 | -------------------------------------------------------------------------------- /src/api/resources/voices/client/requests/CloneVoiceRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/voices/client/requests/CloneVoiceRequest.ts -------------------------------------------------------------------------------- /src/api/resources/voices/client/requests/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/voices/client/requests/index.ts -------------------------------------------------------------------------------- /src/api/resources/voices/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/voices/index.ts -------------------------------------------------------------------------------- /src/api/resources/voices/types/BaseVoiceId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/voices/types/BaseVoiceId.ts -------------------------------------------------------------------------------- /src/api/resources/voices/types/CloneMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/voices/types/CloneMode.ts -------------------------------------------------------------------------------- /src/api/resources/voices/types/CreateVoiceRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/voices/types/CreateVoiceRequest.ts -------------------------------------------------------------------------------- /src/api/resources/voices/types/EmbeddingResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/voices/types/EmbeddingResponse.ts -------------------------------------------------------------------------------- /src/api/resources/voices/types/EmbeddingSpecifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/voices/types/EmbeddingSpecifier.ts -------------------------------------------------------------------------------- /src/api/resources/voices/types/Gender.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/voices/types/Gender.ts -------------------------------------------------------------------------------- /src/api/resources/voices/types/IdSpecifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/voices/types/IdSpecifier.ts -------------------------------------------------------------------------------- /src/api/resources/voices/types/LocalizeDialect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/voices/types/LocalizeDialect.ts -------------------------------------------------------------------------------- /src/api/resources/voices/types/LocalizeEnglishDialect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/voices/types/LocalizeEnglishDialect.ts -------------------------------------------------------------------------------- /src/api/resources/voices/types/LocalizeFrenchDialect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/voices/types/LocalizeFrenchDialect.ts -------------------------------------------------------------------------------- /src/api/resources/voices/types/LocalizePortugueseDialect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/voices/types/LocalizePortugueseDialect.ts -------------------------------------------------------------------------------- /src/api/resources/voices/types/LocalizeSpanishDialect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/voices/types/LocalizeSpanishDialect.ts -------------------------------------------------------------------------------- /src/api/resources/voices/types/LocalizeTargetLanguage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/voices/types/LocalizeTargetLanguage.ts -------------------------------------------------------------------------------- /src/api/resources/voices/types/LocalizeVoiceRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/voices/types/LocalizeVoiceRequest.ts -------------------------------------------------------------------------------- /src/api/resources/voices/types/MixVoiceSpecifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/voices/types/MixVoiceSpecifier.ts -------------------------------------------------------------------------------- /src/api/resources/voices/types/MixVoicesRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/voices/types/MixVoicesRequest.ts -------------------------------------------------------------------------------- /src/api/resources/voices/types/UpdateVoiceRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/voices/types/UpdateVoiceRequest.ts -------------------------------------------------------------------------------- /src/api/resources/voices/types/Voice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/voices/types/Voice.ts -------------------------------------------------------------------------------- /src/api/resources/voices/types/VoiceId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/voices/types/VoiceId.ts -------------------------------------------------------------------------------- /src/api/resources/voices/types/VoiceMetadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/voices/types/VoiceMetadata.ts -------------------------------------------------------------------------------- /src/api/resources/voices/types/Weight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/voices/types/Weight.ts -------------------------------------------------------------------------------- /src/api/resources/voices/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/api/resources/voices/types/index.ts -------------------------------------------------------------------------------- /src/core/fetcher/APIResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/fetcher/APIResponse.ts -------------------------------------------------------------------------------- /src/core/fetcher/Fetcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/fetcher/Fetcher.ts -------------------------------------------------------------------------------- /src/core/fetcher/Supplier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/fetcher/Supplier.ts -------------------------------------------------------------------------------- /src/core/fetcher/createRequestUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/fetcher/createRequestUrl.ts -------------------------------------------------------------------------------- /src/core/fetcher/getFetchFn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/fetcher/getFetchFn.ts -------------------------------------------------------------------------------- /src/core/fetcher/getHeader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/fetcher/getHeader.ts -------------------------------------------------------------------------------- /src/core/fetcher/getRequestBody.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/fetcher/getRequestBody.ts -------------------------------------------------------------------------------- /src/core/fetcher/getResponseBody.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/fetcher/getResponseBody.ts -------------------------------------------------------------------------------- /src/core/fetcher/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/fetcher/index.ts -------------------------------------------------------------------------------- /src/core/fetcher/makeRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/fetcher/makeRequest.ts -------------------------------------------------------------------------------- /src/core/fetcher/requestWithRetries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/fetcher/requestWithRetries.ts -------------------------------------------------------------------------------- /src/core/fetcher/signals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/fetcher/signals.ts -------------------------------------------------------------------------------- /src/core/fetcher/stream-wrappers/Node18UniversalStreamWrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/fetcher/stream-wrappers/Node18UniversalStreamWrapper.ts -------------------------------------------------------------------------------- /src/core/fetcher/stream-wrappers/NodePre18StreamWrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/fetcher/stream-wrappers/NodePre18StreamWrapper.ts -------------------------------------------------------------------------------- /src/core/fetcher/stream-wrappers/UndiciStreamWrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/fetcher/stream-wrappers/UndiciStreamWrapper.ts -------------------------------------------------------------------------------- /src/core/fetcher/stream-wrappers/chooseStreamWrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/fetcher/stream-wrappers/chooseStreamWrapper.ts -------------------------------------------------------------------------------- /src/core/form-data-utils/FormDataWrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/form-data-utils/FormDataWrapper.ts -------------------------------------------------------------------------------- /src/core/form-data-utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./FormDataWrapper"; 2 | -------------------------------------------------------------------------------- /src/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/index.ts -------------------------------------------------------------------------------- /src/core/json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/json.ts -------------------------------------------------------------------------------- /src/core/runtime/index.ts: -------------------------------------------------------------------------------- 1 | export { RUNTIME } from "./runtime"; 2 | -------------------------------------------------------------------------------- /src/core/runtime/runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/runtime/runtime.ts -------------------------------------------------------------------------------- /src/core/schemas/Schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/Schema.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/bigint/bigint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/builders/bigint/bigint.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/bigint/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/builders/bigint/index.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/date/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/builders/date/date.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/date/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/builders/date/index.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/enum/enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/builders/enum/enum.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/enum/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/builders/enum/index.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/builders/index.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/lazy/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/builders/lazy/index.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/lazy/lazy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/builders/lazy/lazy.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/lazy/lazyObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/builders/lazy/lazyObject.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/list/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/builders/list/index.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/list/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/builders/list/list.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/literals/booleanLiteral.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/builders/literals/booleanLiteral.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/literals/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/builders/literals/index.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/literals/stringLiteral.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/builders/literals/stringLiteral.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/object-like/getObjectLikeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/builders/object-like/getObjectLikeUtils.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/object-like/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/builders/object-like/index.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/object-like/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/builders/object-like/types.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/object/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/builders/object/index.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/object/object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/builders/object/object.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/object/objectWithoutOptionalProperties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/builders/object/objectWithoutOptionalProperties.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/object/property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/builders/object/property.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/object/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/builders/object/types.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/primitives/any.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/builders/primitives/any.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/primitives/boolean.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/builders/primitives/boolean.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/primitives/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/builders/primitives/index.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/primitives/number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/builders/primitives/number.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/primitives/string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/builders/primitives/string.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/primitives/unknown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/builders/primitives/unknown.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/record/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/builders/record/index.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/record/record.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/builders/record/record.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/record/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/builders/record/types.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/schema-utils/JsonError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/builders/schema-utils/JsonError.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/schema-utils/ParseError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/builders/schema-utils/ParseError.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/schema-utils/getSchemaUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/builders/schema-utils/getSchemaUtils.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/schema-utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/builders/schema-utils/index.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/schema-utils/stringifyValidationErrors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/builders/schema-utils/stringifyValidationErrors.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/set/index.ts: -------------------------------------------------------------------------------- 1 | export { set } from "./set"; 2 | -------------------------------------------------------------------------------- /src/core/schemas/builders/set/set.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/builders/set/set.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/undiscriminated-union/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/builders/undiscriminated-union/index.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/undiscriminated-union/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/builders/undiscriminated-union/types.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/undiscriminated-union/undiscriminatedUnion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/builders/undiscriminated-union/undiscriminatedUnion.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/union/discriminant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/builders/union/discriminant.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/union/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/builders/union/index.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/union/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/builders/union/types.ts -------------------------------------------------------------------------------- /src/core/schemas/builders/union/union.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/builders/union/union.ts -------------------------------------------------------------------------------- /src/core/schemas/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/index.ts -------------------------------------------------------------------------------- /src/core/schemas/utils/MaybePromise.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/utils/MaybePromise.ts -------------------------------------------------------------------------------- /src/core/schemas/utils/addQuestionMarksToNullableProperties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/utils/addQuestionMarksToNullableProperties.ts -------------------------------------------------------------------------------- /src/core/schemas/utils/createIdentitySchemaCreator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/utils/createIdentitySchemaCreator.ts -------------------------------------------------------------------------------- /src/core/schemas/utils/entries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/utils/entries.ts -------------------------------------------------------------------------------- /src/core/schemas/utils/filterObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/utils/filterObject.ts -------------------------------------------------------------------------------- /src/core/schemas/utils/getErrorMessageForIncorrectType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/utils/getErrorMessageForIncorrectType.ts -------------------------------------------------------------------------------- /src/core/schemas/utils/isPlainObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/utils/isPlainObject.ts -------------------------------------------------------------------------------- /src/core/schemas/utils/keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/utils/keys.ts -------------------------------------------------------------------------------- /src/core/schemas/utils/maybeSkipValidation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/utils/maybeSkipValidation.ts -------------------------------------------------------------------------------- /src/core/schemas/utils/partition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/schemas/utils/partition.ts -------------------------------------------------------------------------------- /src/core/streaming-fetcher/Stream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/streaming-fetcher/Stream.ts -------------------------------------------------------------------------------- /src/core/streaming-fetcher/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/streaming-fetcher/index.ts -------------------------------------------------------------------------------- /src/core/websocket/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/websocket/events.ts -------------------------------------------------------------------------------- /src/core/websocket/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./ws"; 2 | -------------------------------------------------------------------------------- /src/core/websocket/ws.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/core/websocket/ws.ts -------------------------------------------------------------------------------- /src/environments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/environments.ts -------------------------------------------------------------------------------- /src/errors/CartesiaError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/errors/CartesiaError.ts -------------------------------------------------------------------------------- /src/errors/CartesiaTimeoutError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/errors/CartesiaTimeoutError.ts -------------------------------------------------------------------------------- /src/errors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/errors/index.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/serialization/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./resources"; 2 | -------------------------------------------------------------------------------- /src/serialization/resources/apiStatus/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./types"; 2 | -------------------------------------------------------------------------------- /src/serialization/resources/apiStatus/types/ApiInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/apiStatus/types/ApiInfo.ts -------------------------------------------------------------------------------- /src/serialization/resources/apiStatus/types/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./ApiInfo"; 2 | -------------------------------------------------------------------------------- /src/serialization/resources/auth/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./types"; 2 | -------------------------------------------------------------------------------- /src/serialization/resources/auth/types/TokenGrant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/auth/types/TokenGrant.ts -------------------------------------------------------------------------------- /src/serialization/resources/auth/types/TokenRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/auth/types/TokenRequest.ts -------------------------------------------------------------------------------- /src/serialization/resources/auth/types/TokenResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/auth/types/TokenResponse.ts -------------------------------------------------------------------------------- /src/serialization/resources/auth/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/auth/types/index.ts -------------------------------------------------------------------------------- /src/serialization/resources/embedding/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./types"; 2 | -------------------------------------------------------------------------------- /src/serialization/resources/embedding/types/Embedding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/embedding/types/Embedding.ts -------------------------------------------------------------------------------- /src/serialization/resources/embedding/types/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Embedding"; 2 | -------------------------------------------------------------------------------- /src/serialization/resources/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/index.ts -------------------------------------------------------------------------------- /src/serialization/resources/stt/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./types"; 2 | -------------------------------------------------------------------------------- /src/serialization/resources/stt/types/DoneMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/stt/types/DoneMessage.ts -------------------------------------------------------------------------------- /src/serialization/resources/stt/types/ErrorMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/stt/types/ErrorMessage.ts -------------------------------------------------------------------------------- /src/serialization/resources/stt/types/FlushDoneMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/stt/types/FlushDoneMessage.ts -------------------------------------------------------------------------------- /src/serialization/resources/stt/types/StreamingTranscriptionResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/stt/types/StreamingTranscriptionResponse.ts -------------------------------------------------------------------------------- /src/serialization/resources/stt/types/SttEncoding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/stt/types/SttEncoding.ts -------------------------------------------------------------------------------- /src/serialization/resources/stt/types/TimestampGranularity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/stt/types/TimestampGranularity.ts -------------------------------------------------------------------------------- /src/serialization/resources/stt/types/TranscriptMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/stt/types/TranscriptMessage.ts -------------------------------------------------------------------------------- /src/serialization/resources/stt/types/TranscriptionResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/stt/types/TranscriptionResponse.ts -------------------------------------------------------------------------------- /src/serialization/resources/stt/types/TranscriptionWord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/stt/types/TranscriptionWord.ts -------------------------------------------------------------------------------- /src/serialization/resources/stt/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/stt/types/index.ts -------------------------------------------------------------------------------- /src/serialization/resources/tts/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./types"; 2 | -------------------------------------------------------------------------------- /src/serialization/resources/tts/types/CancelContextRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/tts/types/CancelContextRequest.ts -------------------------------------------------------------------------------- /src/serialization/resources/tts/types/ContextId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/tts/types/ContextId.ts -------------------------------------------------------------------------------- /src/serialization/resources/tts/types/Controls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/tts/types/Controls.ts -------------------------------------------------------------------------------- /src/serialization/resources/tts/types/Emotion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/tts/types/Emotion.ts -------------------------------------------------------------------------------- /src/serialization/resources/tts/types/EmotionDeprecated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/tts/types/EmotionDeprecated.ts -------------------------------------------------------------------------------- /src/serialization/resources/tts/types/FlushId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/tts/types/FlushId.ts -------------------------------------------------------------------------------- /src/serialization/resources/tts/types/GenerationConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/tts/types/GenerationConfig.ts -------------------------------------------------------------------------------- /src/serialization/resources/tts/types/GenerationRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/tts/types/GenerationRequest.ts -------------------------------------------------------------------------------- /src/serialization/resources/tts/types/ModelSpeed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/tts/types/ModelSpeed.ts -------------------------------------------------------------------------------- /src/serialization/resources/tts/types/Mp3OutputFormat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/tts/types/Mp3OutputFormat.ts -------------------------------------------------------------------------------- /src/serialization/resources/tts/types/NaturalSpecifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/tts/types/NaturalSpecifier.ts -------------------------------------------------------------------------------- /src/serialization/resources/tts/types/NumericalSpecifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/tts/types/NumericalSpecifier.ts -------------------------------------------------------------------------------- /src/serialization/resources/tts/types/OutputFormat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/tts/types/OutputFormat.ts -------------------------------------------------------------------------------- /src/serialization/resources/tts/types/PhonemeTimestamps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/tts/types/PhonemeTimestamps.ts -------------------------------------------------------------------------------- /src/serialization/resources/tts/types/RawEncoding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/tts/types/RawEncoding.ts -------------------------------------------------------------------------------- /src/serialization/resources/tts/types/RawOutputFormat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/tts/types/RawOutputFormat.ts -------------------------------------------------------------------------------- /src/serialization/resources/tts/types/Speed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/tts/types/Speed.ts -------------------------------------------------------------------------------- /src/serialization/resources/tts/types/SseOutputFormat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/tts/types/SseOutputFormat.ts -------------------------------------------------------------------------------- /src/serialization/resources/tts/types/SupportedLanguage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/tts/types/SupportedLanguage.ts -------------------------------------------------------------------------------- /src/serialization/resources/tts/types/TtsRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/tts/types/TtsRequest.ts -------------------------------------------------------------------------------- /src/serialization/resources/tts/types/TtsRequestEmbeddingSpecifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/tts/types/TtsRequestEmbeddingSpecifier.ts -------------------------------------------------------------------------------- /src/serialization/resources/tts/types/TtsRequestIdSpecifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/tts/types/TtsRequestIdSpecifier.ts -------------------------------------------------------------------------------- /src/serialization/resources/tts/types/TtsRequestVoiceSpecifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/tts/types/TtsRequestVoiceSpecifier.ts -------------------------------------------------------------------------------- /src/serialization/resources/tts/types/TtssseRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/tts/types/TtssseRequest.ts -------------------------------------------------------------------------------- /src/serialization/resources/tts/types/WavOutputFormat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/tts/types/WavOutputFormat.ts -------------------------------------------------------------------------------- /src/serialization/resources/tts/types/WebSocketBaseResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/tts/types/WebSocketBaseResponse.ts -------------------------------------------------------------------------------- /src/serialization/resources/tts/types/WebSocketChunkResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/tts/types/WebSocketChunkResponse.ts -------------------------------------------------------------------------------- /src/serialization/resources/tts/types/WebSocketDoneResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/tts/types/WebSocketDoneResponse.ts -------------------------------------------------------------------------------- /src/serialization/resources/tts/types/WebSocketErrorResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/tts/types/WebSocketErrorResponse.ts -------------------------------------------------------------------------------- /src/serialization/resources/tts/types/WebSocketFlushDoneResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/tts/types/WebSocketFlushDoneResponse.ts -------------------------------------------------------------------------------- /src/serialization/resources/tts/types/WebSocketPhonemeTimestampsResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/tts/types/WebSocketPhonemeTimestampsResponse.ts -------------------------------------------------------------------------------- /src/serialization/resources/tts/types/WebSocketRawOutputFormat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/tts/types/WebSocketRawOutputFormat.ts -------------------------------------------------------------------------------- /src/serialization/resources/tts/types/WebSocketRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/tts/types/WebSocketRequest.ts -------------------------------------------------------------------------------- /src/serialization/resources/tts/types/WebSocketResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/tts/types/WebSocketResponse.ts -------------------------------------------------------------------------------- /src/serialization/resources/tts/types/WebSocketStreamOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/tts/types/WebSocketStreamOptions.ts -------------------------------------------------------------------------------- /src/serialization/resources/tts/types/WebSocketTimestampsResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/tts/types/WebSocketTimestampsResponse.ts -------------------------------------------------------------------------------- /src/serialization/resources/tts/types/WebSocketTtsOutput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/tts/types/WebSocketTtsOutput.ts -------------------------------------------------------------------------------- /src/serialization/resources/tts/types/WebSocketTtsRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/tts/types/WebSocketTtsRequest.ts -------------------------------------------------------------------------------- /src/serialization/resources/tts/types/WordTimestamps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/tts/types/WordTimestamps.ts -------------------------------------------------------------------------------- /src/serialization/resources/tts/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/tts/types/index.ts -------------------------------------------------------------------------------- /src/serialization/resources/voiceChanger/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./types"; 2 | -------------------------------------------------------------------------------- /src/serialization/resources/voiceChanger/types/OutputFormatContainer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/voiceChanger/types/OutputFormatContainer.ts -------------------------------------------------------------------------------- /src/serialization/resources/voiceChanger/types/StreamingResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/voiceChanger/types/StreamingResponse.ts -------------------------------------------------------------------------------- /src/serialization/resources/voiceChanger/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/voiceChanger/types/index.ts -------------------------------------------------------------------------------- /src/serialization/resources/voices/client/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/voices/client/index.ts -------------------------------------------------------------------------------- /src/serialization/resources/voices/client/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/voices/client/list.ts -------------------------------------------------------------------------------- /src/serialization/resources/voices/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/voices/index.ts -------------------------------------------------------------------------------- /src/serialization/resources/voices/types/BaseVoiceId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/voices/types/BaseVoiceId.ts -------------------------------------------------------------------------------- /src/serialization/resources/voices/types/CloneMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/voices/types/CloneMode.ts -------------------------------------------------------------------------------- /src/serialization/resources/voices/types/CreateVoiceRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/voices/types/CreateVoiceRequest.ts -------------------------------------------------------------------------------- /src/serialization/resources/voices/types/EmbeddingResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/voices/types/EmbeddingResponse.ts -------------------------------------------------------------------------------- /src/serialization/resources/voices/types/EmbeddingSpecifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/voices/types/EmbeddingSpecifier.ts -------------------------------------------------------------------------------- /src/serialization/resources/voices/types/Gender.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/voices/types/Gender.ts -------------------------------------------------------------------------------- /src/serialization/resources/voices/types/IdSpecifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/voices/types/IdSpecifier.ts -------------------------------------------------------------------------------- /src/serialization/resources/voices/types/LocalizeDialect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/voices/types/LocalizeDialect.ts -------------------------------------------------------------------------------- /src/serialization/resources/voices/types/LocalizeEnglishDialect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/voices/types/LocalizeEnglishDialect.ts -------------------------------------------------------------------------------- /src/serialization/resources/voices/types/LocalizeFrenchDialect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/voices/types/LocalizeFrenchDialect.ts -------------------------------------------------------------------------------- /src/serialization/resources/voices/types/LocalizePortugueseDialect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/voices/types/LocalizePortugueseDialect.ts -------------------------------------------------------------------------------- /src/serialization/resources/voices/types/LocalizeSpanishDialect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/voices/types/LocalizeSpanishDialect.ts -------------------------------------------------------------------------------- /src/serialization/resources/voices/types/LocalizeTargetLanguage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/voices/types/LocalizeTargetLanguage.ts -------------------------------------------------------------------------------- /src/serialization/resources/voices/types/LocalizeVoiceRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/voices/types/LocalizeVoiceRequest.ts -------------------------------------------------------------------------------- /src/serialization/resources/voices/types/MixVoiceSpecifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/voices/types/MixVoiceSpecifier.ts -------------------------------------------------------------------------------- /src/serialization/resources/voices/types/MixVoicesRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/voices/types/MixVoicesRequest.ts -------------------------------------------------------------------------------- /src/serialization/resources/voices/types/UpdateVoiceRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/voices/types/UpdateVoiceRequest.ts -------------------------------------------------------------------------------- /src/serialization/resources/voices/types/Voice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/voices/types/Voice.ts -------------------------------------------------------------------------------- /src/serialization/resources/voices/types/VoiceId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/voices/types/VoiceId.ts -------------------------------------------------------------------------------- /src/serialization/resources/voices/types/VoiceMetadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/voices/types/VoiceMetadata.ts -------------------------------------------------------------------------------- /src/serialization/resources/voices/types/Weight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/voices/types/Weight.ts -------------------------------------------------------------------------------- /src/serialization/resources/voices/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/serialization/resources/voices/types/index.ts -------------------------------------------------------------------------------- /src/version.ts: -------------------------------------------------------------------------------- 1 | export const SDK_VERSION = "2.2.9"; 2 | -------------------------------------------------------------------------------- /src/wrapper/Client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/wrapper/Client.ts -------------------------------------------------------------------------------- /src/wrapper/StreamingSTTClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/wrapper/StreamingSTTClient.ts -------------------------------------------------------------------------------- /src/wrapper/StreamingTTSClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/wrapper/StreamingTTSClient.ts -------------------------------------------------------------------------------- /src/wrapper/SttWebsocket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/wrapper/SttWebsocket.ts -------------------------------------------------------------------------------- /src/wrapper/WebPlayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/wrapper/WebPlayer.ts -------------------------------------------------------------------------------- /src/wrapper/Websocket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/wrapper/Websocket.ts -------------------------------------------------------------------------------- /src/wrapper/source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/wrapper/source.ts -------------------------------------------------------------------------------- /src/wrapper/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/src/wrapper/utils.ts -------------------------------------------------------------------------------- /tests/custom.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/tests/custom.test.ts -------------------------------------------------------------------------------- /tests/unit/fetcher/Fetcher.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/tests/unit/fetcher/Fetcher.test.ts -------------------------------------------------------------------------------- /tests/unit/fetcher/createRequestUrl.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/tests/unit/fetcher/createRequestUrl.test.ts -------------------------------------------------------------------------------- /tests/unit/fetcher/getFetchFn.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/tests/unit/fetcher/getFetchFn.test.ts -------------------------------------------------------------------------------- /tests/unit/fetcher/getRequestBody.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/tests/unit/fetcher/getRequestBody.test.ts -------------------------------------------------------------------------------- /tests/unit/fetcher/getResponseBody.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/tests/unit/fetcher/getResponseBody.test.ts -------------------------------------------------------------------------------- /tests/unit/fetcher/makeRequest.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/tests/unit/fetcher/makeRequest.test.ts -------------------------------------------------------------------------------- /tests/unit/fetcher/requestWithRetries.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/tests/unit/fetcher/requestWithRetries.test.ts -------------------------------------------------------------------------------- /tests/unit/fetcher/signals.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/tests/unit/fetcher/signals.test.ts -------------------------------------------------------------------------------- /tests/unit/fetcher/stream-wrappers/Node18UniversalStreamWrapper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/tests/unit/fetcher/stream-wrappers/Node18UniversalStreamWrapper.test.ts -------------------------------------------------------------------------------- /tests/unit/fetcher/stream-wrappers/NodePre18StreamWrapper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/tests/unit/fetcher/stream-wrappers/NodePre18StreamWrapper.test.ts -------------------------------------------------------------------------------- /tests/unit/fetcher/stream-wrappers/UndiciStreamWrapper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/tests/unit/fetcher/stream-wrappers/UndiciStreamWrapper.test.ts -------------------------------------------------------------------------------- /tests/unit/fetcher/stream-wrappers/chooseStreamWrapper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/tests/unit/fetcher/stream-wrappers/chooseStreamWrapper.test.ts -------------------------------------------------------------------------------- /tests/unit/fetcher/stream-wrappers/webpack.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/tests/unit/fetcher/stream-wrappers/webpack.test.ts -------------------------------------------------------------------------------- /tests/unit/fetcher/test-file.txt: -------------------------------------------------------------------------------- 1 | This is a test file! 2 | -------------------------------------------------------------------------------- /tests/unit/form-data-utils/formDataWrapper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/tests/unit/form-data-utils/formDataWrapper.test.ts -------------------------------------------------------------------------------- /tests/unit/zurg/bigint/bigint.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/tests/unit/zurg/bigint/bigint.test.ts -------------------------------------------------------------------------------- /tests/unit/zurg/date/date.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/tests/unit/zurg/date/date.test.ts -------------------------------------------------------------------------------- /tests/unit/zurg/enum/enum.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/tests/unit/zurg/enum/enum.test.ts -------------------------------------------------------------------------------- /tests/unit/zurg/lazy/lazy.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/tests/unit/zurg/lazy/lazy.test.ts -------------------------------------------------------------------------------- /tests/unit/zurg/lazy/lazyObject.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/tests/unit/zurg/lazy/lazyObject.test.ts -------------------------------------------------------------------------------- /tests/unit/zurg/lazy/recursive/a.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/tests/unit/zurg/lazy/recursive/a.ts -------------------------------------------------------------------------------- /tests/unit/zurg/lazy/recursive/b.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/tests/unit/zurg/lazy/recursive/b.ts -------------------------------------------------------------------------------- /tests/unit/zurg/list/list.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/tests/unit/zurg/list/list.test.ts -------------------------------------------------------------------------------- /tests/unit/zurg/literals/stringLiteral.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/tests/unit/zurg/literals/stringLiteral.test.ts -------------------------------------------------------------------------------- /tests/unit/zurg/object-like/withParsedProperties.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/tests/unit/zurg/object-like/withParsedProperties.test.ts -------------------------------------------------------------------------------- /tests/unit/zurg/object/extend.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/tests/unit/zurg/object/extend.test.ts -------------------------------------------------------------------------------- /tests/unit/zurg/object/object.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/tests/unit/zurg/object/object.test.ts -------------------------------------------------------------------------------- /tests/unit/zurg/object/objectWithoutOptionalProperties.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/tests/unit/zurg/object/objectWithoutOptionalProperties.test.ts -------------------------------------------------------------------------------- /tests/unit/zurg/object/passthrough.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/tests/unit/zurg/object/passthrough.test.ts -------------------------------------------------------------------------------- /tests/unit/zurg/primitives/any.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/tests/unit/zurg/primitives/any.test.ts -------------------------------------------------------------------------------- /tests/unit/zurg/primitives/boolean.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/tests/unit/zurg/primitives/boolean.test.ts -------------------------------------------------------------------------------- /tests/unit/zurg/primitives/number.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/tests/unit/zurg/primitives/number.test.ts -------------------------------------------------------------------------------- /tests/unit/zurg/primitives/string.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/tests/unit/zurg/primitives/string.test.ts -------------------------------------------------------------------------------- /tests/unit/zurg/primitives/unknown.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/tests/unit/zurg/primitives/unknown.test.ts -------------------------------------------------------------------------------- /tests/unit/zurg/record/record.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/tests/unit/zurg/record/record.test.ts -------------------------------------------------------------------------------- /tests/unit/zurg/schema-utils/getSchemaUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/tests/unit/zurg/schema-utils/getSchemaUtils.test.ts -------------------------------------------------------------------------------- /tests/unit/zurg/schema.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/tests/unit/zurg/schema.test.ts -------------------------------------------------------------------------------- /tests/unit/zurg/set/set.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/tests/unit/zurg/set/set.test.ts -------------------------------------------------------------------------------- /tests/unit/zurg/skipValidation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/tests/unit/zurg/skipValidation.test.ts -------------------------------------------------------------------------------- /tests/unit/zurg/undiscriminated-union/undiscriminatedUnion.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/tests/unit/zurg/undiscriminated-union/undiscriminatedUnion.test.ts -------------------------------------------------------------------------------- /tests/unit/zurg/union/union.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/tests/unit/zurg/union/union.test.ts -------------------------------------------------------------------------------- /tests/unit/zurg/utils/itSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/tests/unit/zurg/utils/itSchema.ts -------------------------------------------------------------------------------- /tests/unit/zurg/utils/itValidate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/tests/unit/zurg/utils/itValidate.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesia-ai/cartesia-js/HEAD/yarn.lock --------------------------------------------------------------------------------