@cartesia/cartesia-js 2.1.4 → 2.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (448) hide show
  1. package/Client.d.ts +10 -6
  2. package/api/resources/apiStatus/client/Client.d.ts +4 -0
  3. package/api/resources/apiStatus/client/Client.js +21 -11
  4. package/api/resources/datasets/client/Client.d.ts +6 -6
  5. package/api/resources/datasets/client/Client.js +36 -29
  6. package/api/resources/datasets/client/requests/UploadDatasetFileRequest.d.ts +0 -4
  7. package/api/resources/datasets/types/FilePurpose.d.ts +1 -1
  8. package/api/resources/embedding/types/Embedding.d.ts +1 -1
  9. package/api/resources/index.js +17 -7
  10. package/api/resources/infill/client/Client.d.ts +14 -1
  11. package/api/resources/infill/client/Client.js +52 -23
  12. package/api/resources/infill/client/requests/InfillBytesRequest.d.ts +7 -3
  13. package/api/resources/tts/client/Client.js +21 -11
  14. package/api/resources/tts/types/ContextId.d.ts +1 -1
  15. package/api/resources/tts/types/Emotion.d.ts +1 -1
  16. package/api/resources/tts/types/FlushId.d.ts +9 -0
  17. package/api/resources/tts/types/FlushId.js +5 -0
  18. package/api/resources/tts/types/GenerationRequest.d.ts +5 -2
  19. package/api/resources/tts/types/NaturalSpecifier.d.ts +1 -1
  20. package/api/resources/tts/types/NumericalSpecifier.d.ts +1 -1
  21. package/api/resources/tts/types/OutputFormat.d.ts +1 -1
  22. package/api/resources/tts/types/RawEncoding.d.ts +1 -1
  23. package/api/resources/tts/types/RawOutputFormat.d.ts +1 -0
  24. package/api/resources/tts/types/Speed.d.ts +1 -1
  25. package/api/resources/tts/types/SupportedLanguage.d.ts +1 -1
  26. package/api/resources/tts/types/TtsRequestVoiceSpecifier.d.ts +1 -1
  27. package/api/resources/tts/types/WebSocketFlushDoneResponse.d.ts +8 -0
  28. package/api/resources/tts/types/WebSocketFlushDoneResponse.js +5 -0
  29. package/api/resources/tts/types/WebSocketRequest.d.ts +1 -1
  30. package/api/resources/tts/types/WebSocketResponse.d.ts +4 -1
  31. package/api/resources/tts/types/WebSocketTtsOutput.d.ts +2 -0
  32. package/api/resources/tts/types/index.d.ts +2 -0
  33. package/api/resources/tts/types/index.js +2 -0
  34. package/api/resources/voiceChanger/client/Client.d.ts +3 -4
  35. package/api/resources/voiceChanger/client/Client.js +23 -13
  36. package/api/resources/voiceChanger/types/OutputFormatContainer.d.ts +1 -1
  37. package/api/resources/voiceChanger/types/StreamingResponse.d.ts +1 -1
  38. package/api/resources/voices/client/Client.d.ts +48 -39
  39. package/api/resources/voices/client/Client.js +114 -98
  40. package/api/resources/voices/types/BaseVoiceId.d.ts +2 -2
  41. package/api/resources/voices/types/CloneMode.d.ts +1 -1
  42. package/api/resources/voices/types/CreateVoiceRequest.d.ts +1 -0
  43. package/api/resources/voices/types/Gender.d.ts +1 -1
  44. package/api/resources/voices/types/LocalizeDialect.d.ts +12 -4
  45. package/api/resources/voices/types/LocalizeEnglishDialect.d.ts +1 -1
  46. package/api/resources/voices/types/LocalizePortugueseDialect.d.ts +8 -0
  47. package/api/resources/voices/types/LocalizePortugueseDialect.js +10 -0
  48. package/api/resources/voices/types/LocalizeSpanishDialect.d.ts +8 -0
  49. package/api/resources/voices/types/LocalizeSpanishDialect.js +10 -0
  50. package/api/resources/voices/types/LocalizeTargetLanguage.d.ts +1 -1
  51. package/api/resources/voices/types/MixVoiceSpecifier.d.ts +1 -1
  52. package/api/resources/voices/types/VoiceId.d.ts +1 -1
  53. package/api/resources/voices/types/Weight.d.ts +1 -1
  54. package/api/resources/voices/types/index.d.ts +2 -0
  55. package/api/resources/voices/types/index.js +2 -0
  56. package/core/fetcher/APIResponse.d.ts +1 -1
  57. package/core/fetcher/Fetcher.d.ts +1 -1
  58. package/core/fetcher/Fetcher.js +2 -2
  59. package/core/fetcher/Supplier.d.ts +1 -1
  60. package/core/fetcher/createRequestUrl.d.ts +1 -1
  61. package/core/fetcher/createRequestUrl.js +1 -2
  62. package/core/fetcher/getFetchFn.js +18 -9
  63. package/core/fetcher/getHeader.js +1 -2
  64. package/core/fetcher/getRequestBody.js +5 -5
  65. package/core/fetcher/getResponseBody.js +1 -2
  66. package/core/fetcher/makeRequest.d.ts +1 -1
  67. package/core/fetcher/requestWithRetries.js +4 -5
  68. package/core/fetcher/signals.d.ts +0 -1
  69. package/core/fetcher/signals.js +2 -3
  70. package/core/fetcher/stream-wrappers/NodePre18StreamWrapper.d.ts +0 -1
  71. package/core/fetcher/stream-wrappers/NodePre18StreamWrapper.js +6 -4
  72. package/core/fetcher/stream-wrappers/UndiciStreamWrapper.d.ts +1 -1
  73. package/core/fetcher/stream-wrappers/chooseStreamWrapper.d.ts +1 -1
  74. package/core/fetcher/stream-wrappers/chooseStreamWrapper.js +18 -9
  75. package/core/form-data-utils/FormDataWrapper.d.ts +4 -4
  76. package/core/form-data-utils/FormDataWrapper.js +22 -12
  77. package/core/index.js +17 -7
  78. package/core/json.d.ts +15 -0
  79. package/core/json.js +24 -0
  80. package/core/runtime/runtime.d.ts +1 -1
  81. package/core/runtime/runtime.js +51 -41
  82. package/core/schemas/Schema.d.ts +7 -5
  83. package/core/schemas/Schema.js +2 -0
  84. package/core/schemas/builders/bigint/bigint.d.ts +1 -1
  85. package/core/schemas/builders/bigint/bigint.js +22 -19
  86. package/core/schemas/builders/date/date.js +1 -2
  87. package/core/schemas/builders/enum/enum.js +1 -2
  88. package/core/schemas/builders/lazy/lazy.d.ts +1 -1
  89. package/core/schemas/builders/lazy/lazy.js +3 -4
  90. package/core/schemas/builders/lazy/lazyObject.js +1 -2
  91. package/core/schemas/builders/list/list.js +1 -2
  92. package/core/schemas/builders/literals/booleanLiteral.js +1 -2
  93. package/core/schemas/builders/literals/stringLiteral.js +1 -2
  94. package/core/schemas/builders/object/object.d.ts +1 -1
  95. package/core/schemas/builders/object/object.js +31 -3
  96. package/core/schemas/builders/object/objectWithoutOptionalProperties.d.ts +3 -3
  97. package/core/schemas/builders/object/objectWithoutOptionalProperties.js +1 -2
  98. package/core/schemas/builders/object/property.js +2 -3
  99. package/core/schemas/builders/object/types.d.ts +16 -11
  100. package/core/schemas/builders/object-like/getObjectLikeUtils.js +2 -3
  101. package/core/schemas/builders/object-like/types.d.ts +1 -1
  102. package/core/schemas/builders/record/record.js +2 -4
  103. package/core/schemas/builders/record/types.d.ts +2 -2
  104. package/core/schemas/builders/schema-utils/getSchemaUtils.d.ts +4 -0
  105. package/core/schemas/builders/schema-utils/getSchemaUtils.js +67 -4
  106. package/core/schemas/builders/schema-utils/stringifyValidationErrors.js +1 -2
  107. package/core/schemas/builders/set/set.js +1 -2
  108. package/core/schemas/builders/undiscriminated-union/types.d.ts +4 -4
  109. package/core/schemas/builders/undiscriminated-union/undiscriminatedUnion.js +1 -2
  110. package/core/schemas/builders/union/discriminant.js +1 -2
  111. package/core/schemas/builders/union/types.d.ts +6 -6
  112. package/core/schemas/builders/union/union.d.ts +1 -1
  113. package/core/schemas/builders/union/union.js +1 -2
  114. package/core/schemas/utils/MaybePromise.d.ts +1 -1
  115. package/core/schemas/utils/addQuestionMarksToNullableProperties.d.ts +4 -4
  116. package/core/schemas/utils/createIdentitySchemaCreator.js +1 -2
  117. package/core/schemas/utils/entries.d.ts +1 -1
  118. package/core/schemas/utils/entries.js +1 -2
  119. package/core/schemas/utils/filterObject.d.ts +1 -1
  120. package/core/schemas/utils/filterObject.js +1 -2
  121. package/core/schemas/utils/getErrorMessageForIncorrectType.js +1 -2
  122. package/core/schemas/utils/isPlainObject.js +1 -2
  123. package/core/schemas/utils/keys.d.ts +1 -1
  124. package/core/schemas/utils/keys.js +1 -2
  125. package/core/schemas/utils/maybeSkipValidation.js +1 -2
  126. package/core/schemas/utils/partition.js +1 -2
  127. package/core/streaming-fetcher/Stream.d.ts +0 -1
  128. package/core/streaming-fetcher/Stream.js +20 -21
  129. package/core/websocket/ws.d.ts +7 -7
  130. package/core/websocket/ws.js +17 -7
  131. package/dist/Client.d.ts +10 -6
  132. package/dist/api/resources/apiStatus/client/Client.d.ts +4 -0
  133. package/dist/api/resources/apiStatus/client/Client.js +21 -11
  134. package/dist/api/resources/datasets/client/Client.d.ts +6 -6
  135. package/dist/api/resources/datasets/client/Client.js +36 -29
  136. package/dist/api/resources/datasets/client/requests/UploadDatasetFileRequest.d.ts +0 -4
  137. package/dist/api/resources/datasets/types/FilePurpose.d.ts +1 -1
  138. package/dist/api/resources/embedding/types/Embedding.d.ts +1 -1
  139. package/dist/api/resources/index.js +17 -7
  140. package/dist/api/resources/infill/client/Client.d.ts +14 -1
  141. package/dist/api/resources/infill/client/Client.js +52 -23
  142. package/dist/api/resources/infill/client/requests/InfillBytesRequest.d.ts +7 -3
  143. package/dist/api/resources/tts/client/Client.js +21 -11
  144. package/dist/api/resources/tts/types/ContextId.d.ts +1 -1
  145. package/dist/api/resources/tts/types/Emotion.d.ts +1 -1
  146. package/dist/api/resources/tts/types/FlushId.d.ts +9 -0
  147. package/dist/api/resources/tts/types/FlushId.js +5 -0
  148. package/dist/api/resources/tts/types/GenerationRequest.d.ts +5 -2
  149. package/dist/api/resources/tts/types/NaturalSpecifier.d.ts +1 -1
  150. package/dist/api/resources/tts/types/NumericalSpecifier.d.ts +1 -1
  151. package/dist/api/resources/tts/types/OutputFormat.d.ts +1 -1
  152. package/dist/api/resources/tts/types/RawEncoding.d.ts +1 -1
  153. package/dist/api/resources/tts/types/RawOutputFormat.d.ts +1 -0
  154. package/dist/api/resources/tts/types/Speed.d.ts +1 -1
  155. package/dist/api/resources/tts/types/SupportedLanguage.d.ts +1 -1
  156. package/dist/api/resources/tts/types/TtsRequestVoiceSpecifier.d.ts +1 -1
  157. package/dist/api/resources/tts/types/WebSocketFlushDoneResponse.d.ts +8 -0
  158. package/dist/api/resources/tts/types/WebSocketFlushDoneResponse.js +5 -0
  159. package/dist/api/resources/tts/types/WebSocketRequest.d.ts +1 -1
  160. package/dist/api/resources/tts/types/WebSocketResponse.d.ts +4 -1
  161. package/dist/api/resources/tts/types/WebSocketTtsOutput.d.ts +2 -0
  162. package/dist/api/resources/tts/types/index.d.ts +2 -0
  163. package/dist/api/resources/tts/types/index.js +2 -0
  164. package/dist/api/resources/voiceChanger/client/Client.d.ts +3 -4
  165. package/dist/api/resources/voiceChanger/client/Client.js +23 -13
  166. package/dist/api/resources/voiceChanger/types/OutputFormatContainer.d.ts +1 -1
  167. package/dist/api/resources/voiceChanger/types/StreamingResponse.d.ts +1 -1
  168. package/dist/api/resources/voices/client/Client.d.ts +48 -39
  169. package/dist/api/resources/voices/client/Client.js +114 -98
  170. package/dist/api/resources/voices/types/BaseVoiceId.d.ts +2 -2
  171. package/dist/api/resources/voices/types/CloneMode.d.ts +1 -1
  172. package/dist/api/resources/voices/types/CreateVoiceRequest.d.ts +1 -0
  173. package/dist/api/resources/voices/types/Gender.d.ts +1 -1
  174. package/dist/api/resources/voices/types/LocalizeDialect.d.ts +12 -4
  175. package/dist/api/resources/voices/types/LocalizeEnglishDialect.d.ts +1 -1
  176. package/dist/api/resources/voices/types/LocalizePortugueseDialect.d.ts +8 -0
  177. package/dist/api/resources/voices/types/LocalizePortugueseDialect.js +10 -0
  178. package/dist/api/resources/voices/types/LocalizeSpanishDialect.d.ts +8 -0
  179. package/dist/api/resources/voices/types/LocalizeSpanishDialect.js +10 -0
  180. package/dist/api/resources/voices/types/LocalizeTargetLanguage.d.ts +1 -1
  181. package/dist/api/resources/voices/types/MixVoiceSpecifier.d.ts +1 -1
  182. package/dist/api/resources/voices/types/VoiceId.d.ts +1 -1
  183. package/dist/api/resources/voices/types/Weight.d.ts +1 -1
  184. package/dist/api/resources/voices/types/index.d.ts +2 -0
  185. package/dist/api/resources/voices/types/index.js +2 -0
  186. package/dist/core/fetcher/APIResponse.d.ts +1 -1
  187. package/dist/core/fetcher/Fetcher.d.ts +1 -1
  188. package/dist/core/fetcher/Fetcher.js +2 -2
  189. package/dist/core/fetcher/Supplier.d.ts +1 -1
  190. package/dist/core/fetcher/createRequestUrl.d.ts +1 -1
  191. package/dist/core/fetcher/createRequestUrl.js +1 -2
  192. package/dist/core/fetcher/getFetchFn.js +18 -9
  193. package/dist/core/fetcher/getHeader.js +1 -2
  194. package/dist/core/fetcher/getRequestBody.js +5 -5
  195. package/dist/core/fetcher/getResponseBody.js +1 -2
  196. package/dist/core/fetcher/makeRequest.d.ts +1 -1
  197. package/dist/core/fetcher/requestWithRetries.js +4 -5
  198. package/dist/core/fetcher/signals.d.ts +0 -1
  199. package/dist/core/fetcher/signals.js +2 -3
  200. package/dist/core/fetcher/stream-wrappers/NodePre18StreamWrapper.d.ts +0 -1
  201. package/dist/core/fetcher/stream-wrappers/NodePre18StreamWrapper.js +6 -4
  202. package/dist/core/fetcher/stream-wrappers/UndiciStreamWrapper.d.ts +1 -1
  203. package/dist/core/fetcher/stream-wrappers/chooseStreamWrapper.d.ts +1 -1
  204. package/dist/core/fetcher/stream-wrappers/chooseStreamWrapper.js +18 -9
  205. package/dist/core/form-data-utils/FormDataWrapper.d.ts +4 -4
  206. package/dist/core/form-data-utils/FormDataWrapper.js +22 -12
  207. package/dist/core/index.js +17 -7
  208. package/dist/core/json.d.ts +15 -0
  209. package/dist/core/json.js +24 -0
  210. package/dist/core/runtime/runtime.d.ts +1 -1
  211. package/dist/core/runtime/runtime.js +51 -41
  212. package/dist/core/schemas/Schema.d.ts +7 -5
  213. package/dist/core/schemas/Schema.js +2 -0
  214. package/dist/core/schemas/builders/bigint/bigint.d.ts +1 -1
  215. package/dist/core/schemas/builders/bigint/bigint.js +22 -19
  216. package/dist/core/schemas/builders/date/date.js +1 -2
  217. package/dist/core/schemas/builders/enum/enum.js +1 -2
  218. package/dist/core/schemas/builders/lazy/lazy.d.ts +1 -1
  219. package/dist/core/schemas/builders/lazy/lazy.js +3 -4
  220. package/dist/core/schemas/builders/lazy/lazyObject.js +1 -2
  221. package/dist/core/schemas/builders/list/list.js +1 -2
  222. package/dist/core/schemas/builders/literals/booleanLiteral.js +1 -2
  223. package/dist/core/schemas/builders/literals/stringLiteral.js +1 -2
  224. package/dist/core/schemas/builders/object/object.d.ts +1 -1
  225. package/dist/core/schemas/builders/object/object.js +31 -3
  226. package/dist/core/schemas/builders/object/objectWithoutOptionalProperties.d.ts +3 -3
  227. package/dist/core/schemas/builders/object/objectWithoutOptionalProperties.js +1 -2
  228. package/dist/core/schemas/builders/object/property.js +2 -3
  229. package/dist/core/schemas/builders/object/types.d.ts +16 -11
  230. package/dist/core/schemas/builders/object-like/getObjectLikeUtils.js +2 -3
  231. package/dist/core/schemas/builders/object-like/types.d.ts +1 -1
  232. package/dist/core/schemas/builders/record/record.js +2 -4
  233. package/dist/core/schemas/builders/record/types.d.ts +2 -2
  234. package/dist/core/schemas/builders/schema-utils/getSchemaUtils.d.ts +4 -0
  235. package/dist/core/schemas/builders/schema-utils/getSchemaUtils.js +67 -4
  236. package/dist/core/schemas/builders/schema-utils/stringifyValidationErrors.js +1 -2
  237. package/dist/core/schemas/builders/set/set.js +1 -2
  238. package/dist/core/schemas/builders/undiscriminated-union/types.d.ts +4 -4
  239. package/dist/core/schemas/builders/undiscriminated-union/undiscriminatedUnion.js +1 -2
  240. package/dist/core/schemas/builders/union/discriminant.js +1 -2
  241. package/dist/core/schemas/builders/union/types.d.ts +6 -6
  242. package/dist/core/schemas/builders/union/union.d.ts +1 -1
  243. package/dist/core/schemas/builders/union/union.js +1 -2
  244. package/dist/core/schemas/utils/MaybePromise.d.ts +1 -1
  245. package/dist/core/schemas/utils/addQuestionMarksToNullableProperties.d.ts +4 -4
  246. package/dist/core/schemas/utils/createIdentitySchemaCreator.js +1 -2
  247. package/dist/core/schemas/utils/entries.d.ts +1 -1
  248. package/dist/core/schemas/utils/entries.js +1 -2
  249. package/dist/core/schemas/utils/filterObject.d.ts +1 -1
  250. package/dist/core/schemas/utils/filterObject.js +1 -2
  251. package/dist/core/schemas/utils/getErrorMessageForIncorrectType.js +1 -2
  252. package/dist/core/schemas/utils/isPlainObject.js +1 -2
  253. package/dist/core/schemas/utils/keys.d.ts +1 -1
  254. package/dist/core/schemas/utils/keys.js +1 -2
  255. package/dist/core/schemas/utils/maybeSkipValidation.js +1 -2
  256. package/dist/core/schemas/utils/partition.js +1 -2
  257. package/dist/core/streaming-fetcher/Stream.d.ts +0 -1
  258. package/dist/core/streaming-fetcher/Stream.js +20 -21
  259. package/dist/core/websocket/ws.d.ts +7 -7
  260. package/dist/core/websocket/ws.js +17 -7
  261. package/dist/environments.d.ts +1 -1
  262. package/dist/errors/CartesiaError.js +2 -1
  263. package/dist/errors/CartesiaTimeoutError.d.ts +1 -1
  264. package/dist/errors/CartesiaTimeoutError.js +2 -2
  265. package/dist/index.js +17 -7
  266. package/dist/serialization/resources/apiStatus/types/ApiInfo.js +17 -7
  267. package/dist/serialization/resources/datasets/types/CreateDatasetRequest.js +17 -7
  268. package/dist/serialization/resources/datasets/types/Dataset.js +17 -7
  269. package/dist/serialization/resources/datasets/types/DatasetFile.js +17 -7
  270. package/dist/serialization/resources/datasets/types/FilePurpose.js +17 -7
  271. package/dist/serialization/resources/datasets/types/PaginatedDatasetFiles.js +17 -7
  272. package/dist/serialization/resources/datasets/types/PaginatedDatasets.js +17 -7
  273. package/dist/serialization/resources/embedding/types/Embedding.js +17 -7
  274. package/dist/serialization/resources/index.js +17 -7
  275. package/dist/serialization/resources/tts/types/CancelContextRequest.js +17 -7
  276. package/dist/serialization/resources/tts/types/ContextId.js +17 -7
  277. package/dist/serialization/resources/tts/types/Controls.js +17 -7
  278. package/dist/serialization/resources/tts/types/Emotion.js +17 -7
  279. package/dist/serialization/resources/tts/types/FlushId.d.ts +10 -0
  280. package/dist/serialization/resources/tts/types/FlushId.js +41 -0
  281. package/dist/serialization/resources/tts/types/GenerationRequest.d.ts +3 -2
  282. package/dist/serialization/resources/tts/types/GenerationRequest.js +20 -9
  283. package/dist/serialization/resources/tts/types/Mp3OutputFormat.js +17 -7
  284. package/dist/serialization/resources/tts/types/NaturalSpecifier.js +17 -7
  285. package/dist/serialization/resources/tts/types/NumericalSpecifier.js +17 -7
  286. package/dist/serialization/resources/tts/types/OutputFormat.js +17 -7
  287. package/dist/serialization/resources/tts/types/PhonemeTimestamps.js +17 -7
  288. package/dist/serialization/resources/tts/types/RawEncoding.js +17 -7
  289. package/dist/serialization/resources/tts/types/RawOutputFormat.d.ts +1 -0
  290. package/dist/serialization/resources/tts/types/RawOutputFormat.js +18 -7
  291. package/dist/serialization/resources/tts/types/Speed.js +17 -7
  292. package/dist/serialization/resources/tts/types/SupportedLanguage.js +17 -7
  293. package/dist/serialization/resources/tts/types/TtsRequest.js +17 -7
  294. package/dist/serialization/resources/tts/types/TtsRequestEmbeddingSpecifier.js +17 -7
  295. package/dist/serialization/resources/tts/types/TtsRequestIdSpecifier.js +17 -7
  296. package/dist/serialization/resources/tts/types/TtsRequestVoiceSpecifier.js +17 -7
  297. package/dist/serialization/resources/tts/types/WavOutputFormat.js +17 -7
  298. package/dist/serialization/resources/tts/types/WebSocketBaseResponse.js +17 -7
  299. package/dist/serialization/resources/tts/types/WebSocketChunkResponse.js +17 -7
  300. package/dist/serialization/resources/tts/types/WebSocketDoneResponse.js +17 -7
  301. package/dist/serialization/resources/tts/types/WebSocketErrorResponse.js +17 -7
  302. package/dist/serialization/resources/tts/types/WebSocketFlushDoneResponse.d.ts +15 -0
  303. package/dist/serialization/resources/tts/types/WebSocketFlushDoneResponse.js +48 -0
  304. package/dist/serialization/resources/tts/types/WebSocketPhonemeTimestampsResponse.js +17 -7
  305. package/dist/serialization/resources/tts/types/WebSocketRawOutputFormat.js +17 -7
  306. package/dist/serialization/resources/tts/types/WebSocketRequest.js +17 -7
  307. package/dist/serialization/resources/tts/types/WebSocketResponse.d.ts +5 -1
  308. package/dist/serialization/resources/tts/types/WebSocketResponse.js +19 -7
  309. package/dist/serialization/resources/tts/types/WebSocketStreamOptions.js +17 -7
  310. package/dist/serialization/resources/tts/types/WebSocketTimestampsResponse.js +17 -7
  311. package/dist/serialization/resources/tts/types/WebSocketTtsOutput.d.ts +3 -0
  312. package/dist/serialization/resources/tts/types/WebSocketTtsOutput.js +20 -7
  313. package/dist/serialization/resources/tts/types/WebSocketTtsRequest.js +17 -7
  314. package/dist/serialization/resources/tts/types/WordTimestamps.js +17 -7
  315. package/dist/serialization/resources/tts/types/index.d.ts +2 -0
  316. package/dist/serialization/resources/tts/types/index.js +2 -0
  317. package/dist/serialization/resources/voiceChanger/types/OutputFormatContainer.js +17 -7
  318. package/dist/serialization/resources/voiceChanger/types/StreamingResponse.js +17 -7
  319. package/dist/serialization/resources/voices/client/index.js +17 -7
  320. package/dist/serialization/resources/voices/client/list.js +17 -7
  321. package/dist/serialization/resources/voices/types/CloneMode.js +17 -7
  322. package/dist/serialization/resources/voices/types/CreateVoiceRequest.d.ts +2 -0
  323. package/dist/serialization/resources/voices/types/CreateVoiceRequest.js +19 -7
  324. package/dist/serialization/resources/voices/types/EmbeddingResponse.js +17 -7
  325. package/dist/serialization/resources/voices/types/EmbeddingSpecifier.js +17 -7
  326. package/dist/serialization/resources/voices/types/Gender.js +17 -7
  327. package/dist/serialization/resources/voices/types/IdSpecifier.js +17 -7
  328. package/dist/serialization/resources/voices/types/LocalizeDialect.d.ts +3 -1
  329. package/dist/serialization/resources/voices/types/LocalizeDialect.js +24 -8
  330. package/dist/serialization/resources/voices/types/LocalizeEnglishDialect.js +17 -7
  331. package/dist/serialization/resources/voices/types/LocalizePortugueseDialect.d.ts +10 -0
  332. package/dist/serialization/resources/voices/types/LocalizePortugueseDialect.js +41 -0
  333. package/dist/serialization/resources/voices/types/LocalizeSpanishDialect.d.ts +10 -0
  334. package/dist/serialization/resources/voices/types/LocalizeSpanishDialect.js +41 -0
  335. package/dist/serialization/resources/voices/types/LocalizeTargetLanguage.js +17 -7
  336. package/dist/serialization/resources/voices/types/LocalizeVoiceRequest.js +17 -7
  337. package/dist/serialization/resources/voices/types/MixVoiceSpecifier.js +17 -7
  338. package/dist/serialization/resources/voices/types/MixVoicesRequest.js +17 -7
  339. package/dist/serialization/resources/voices/types/UpdateVoiceRequest.js +17 -7
  340. package/dist/serialization/resources/voices/types/Voice.js +17 -7
  341. package/dist/serialization/resources/voices/types/VoiceId.js +17 -7
  342. package/dist/serialization/resources/voices/types/VoiceMetadata.js +17 -7
  343. package/dist/serialization/resources/voices/types/Weight.js +17 -7
  344. package/dist/serialization/resources/voices/types/index.d.ts +2 -0
  345. package/dist/serialization/resources/voices/types/index.js +2 -0
  346. package/dist/version.d.ts +1 -1
  347. package/dist/version.js +1 -1
  348. package/dist/wrapper/WebPlayer.js +1 -1
  349. package/dist/wrapper/Websocket.js +25 -15
  350. package/dist/wrapper/source.js +1 -1
  351. package/dist/wrapper/utils.d.ts +9 -9
  352. package/dist/wrapper/utils.js +10 -10
  353. package/environments.d.ts +1 -1
  354. package/errors/CartesiaError.js +2 -1
  355. package/errors/CartesiaTimeoutError.d.ts +1 -1
  356. package/errors/CartesiaTimeoutError.js +2 -2
  357. package/index.js +17 -7
  358. package/{jest.config.js → jest.config.mjs} +4 -1
  359. package/package.json +15 -16
  360. package/reference.md +72 -118
  361. package/scripts/rename-to-esm-files.js +115 -0
  362. package/serialization/resources/apiStatus/types/ApiInfo.js +17 -7
  363. package/serialization/resources/datasets/types/CreateDatasetRequest.js +17 -7
  364. package/serialization/resources/datasets/types/Dataset.js +17 -7
  365. package/serialization/resources/datasets/types/DatasetFile.js +17 -7
  366. package/serialization/resources/datasets/types/FilePurpose.js +17 -7
  367. package/serialization/resources/datasets/types/PaginatedDatasetFiles.js +17 -7
  368. package/serialization/resources/datasets/types/PaginatedDatasets.js +17 -7
  369. package/serialization/resources/embedding/types/Embedding.js +17 -7
  370. package/serialization/resources/index.js +17 -7
  371. package/serialization/resources/tts/types/CancelContextRequest.js +17 -7
  372. package/serialization/resources/tts/types/ContextId.js +17 -7
  373. package/serialization/resources/tts/types/Controls.js +17 -7
  374. package/serialization/resources/tts/types/Emotion.js +17 -7
  375. package/serialization/resources/tts/types/FlushId.d.ts +10 -0
  376. package/serialization/resources/tts/types/FlushId.js +41 -0
  377. package/serialization/resources/tts/types/GenerationRequest.d.ts +3 -2
  378. package/serialization/resources/tts/types/GenerationRequest.js +20 -9
  379. package/serialization/resources/tts/types/Mp3OutputFormat.js +17 -7
  380. package/serialization/resources/tts/types/NaturalSpecifier.js +17 -7
  381. package/serialization/resources/tts/types/NumericalSpecifier.js +17 -7
  382. package/serialization/resources/tts/types/OutputFormat.js +17 -7
  383. package/serialization/resources/tts/types/PhonemeTimestamps.js +17 -7
  384. package/serialization/resources/tts/types/RawEncoding.js +17 -7
  385. package/serialization/resources/tts/types/RawOutputFormat.d.ts +1 -0
  386. package/serialization/resources/tts/types/RawOutputFormat.js +18 -7
  387. package/serialization/resources/tts/types/Speed.js +17 -7
  388. package/serialization/resources/tts/types/SupportedLanguage.js +17 -7
  389. package/serialization/resources/tts/types/TtsRequest.js +17 -7
  390. package/serialization/resources/tts/types/TtsRequestEmbeddingSpecifier.js +17 -7
  391. package/serialization/resources/tts/types/TtsRequestIdSpecifier.js +17 -7
  392. package/serialization/resources/tts/types/TtsRequestVoiceSpecifier.js +17 -7
  393. package/serialization/resources/tts/types/WavOutputFormat.js +17 -7
  394. package/serialization/resources/tts/types/WebSocketBaseResponse.js +17 -7
  395. package/serialization/resources/tts/types/WebSocketChunkResponse.js +17 -7
  396. package/serialization/resources/tts/types/WebSocketDoneResponse.js +17 -7
  397. package/serialization/resources/tts/types/WebSocketErrorResponse.js +17 -7
  398. package/serialization/resources/tts/types/WebSocketFlushDoneResponse.d.ts +15 -0
  399. package/serialization/resources/tts/types/WebSocketFlushDoneResponse.js +48 -0
  400. package/serialization/resources/tts/types/WebSocketPhonemeTimestampsResponse.js +17 -7
  401. package/serialization/resources/tts/types/WebSocketRawOutputFormat.js +17 -7
  402. package/serialization/resources/tts/types/WebSocketRequest.js +17 -7
  403. package/serialization/resources/tts/types/WebSocketResponse.d.ts +5 -1
  404. package/serialization/resources/tts/types/WebSocketResponse.js +19 -7
  405. package/serialization/resources/tts/types/WebSocketStreamOptions.js +17 -7
  406. package/serialization/resources/tts/types/WebSocketTimestampsResponse.js +17 -7
  407. package/serialization/resources/tts/types/WebSocketTtsOutput.d.ts +3 -0
  408. package/serialization/resources/tts/types/WebSocketTtsOutput.js +20 -7
  409. package/serialization/resources/tts/types/WebSocketTtsRequest.js +17 -7
  410. package/serialization/resources/tts/types/WordTimestamps.js +17 -7
  411. package/serialization/resources/tts/types/index.d.ts +2 -0
  412. package/serialization/resources/tts/types/index.js +2 -0
  413. package/serialization/resources/voiceChanger/types/OutputFormatContainer.js +17 -7
  414. package/serialization/resources/voiceChanger/types/StreamingResponse.js +17 -7
  415. package/serialization/resources/voices/client/index.js +17 -7
  416. package/serialization/resources/voices/client/list.js +17 -7
  417. package/serialization/resources/voices/types/CloneMode.js +17 -7
  418. package/serialization/resources/voices/types/CreateVoiceRequest.d.ts +2 -0
  419. package/serialization/resources/voices/types/CreateVoiceRequest.js +19 -7
  420. package/serialization/resources/voices/types/EmbeddingResponse.js +17 -7
  421. package/serialization/resources/voices/types/EmbeddingSpecifier.js +17 -7
  422. package/serialization/resources/voices/types/Gender.js +17 -7
  423. package/serialization/resources/voices/types/IdSpecifier.js +17 -7
  424. package/serialization/resources/voices/types/LocalizeDialect.d.ts +3 -1
  425. package/serialization/resources/voices/types/LocalizeDialect.js +24 -8
  426. package/serialization/resources/voices/types/LocalizeEnglishDialect.js +17 -7
  427. package/serialization/resources/voices/types/LocalizePortugueseDialect.d.ts +10 -0
  428. package/serialization/resources/voices/types/LocalizePortugueseDialect.js +41 -0
  429. package/serialization/resources/voices/types/LocalizeSpanishDialect.d.ts +10 -0
  430. package/serialization/resources/voices/types/LocalizeSpanishDialect.js +41 -0
  431. package/serialization/resources/voices/types/LocalizeTargetLanguage.js +17 -7
  432. package/serialization/resources/voices/types/LocalizeVoiceRequest.js +17 -7
  433. package/serialization/resources/voices/types/MixVoiceSpecifier.js +17 -7
  434. package/serialization/resources/voices/types/MixVoicesRequest.js +17 -7
  435. package/serialization/resources/voices/types/UpdateVoiceRequest.js +17 -7
  436. package/serialization/resources/voices/types/Voice.js +17 -7
  437. package/serialization/resources/voices/types/VoiceId.js +17 -7
  438. package/serialization/resources/voices/types/VoiceMetadata.js +17 -7
  439. package/serialization/resources/voices/types/Weight.js +17 -7
  440. package/serialization/resources/voices/types/index.d.ts +2 -0
  441. package/serialization/resources/voices/types/index.js +2 -0
  442. package/version.d.ts +1 -1
  443. package/version.js +1 -1
  444. package/wrapper/WebPlayer.js +1 -1
  445. package/wrapper/Websocket.js +25 -15
  446. package/wrapper/source.js +1 -1
  447. package/wrapper/utils.d.ts +9 -9
  448. package/wrapper/utils.js +10 -10
@@ -18,13 +18,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
18
18
  }) : function(o, v) {
19
19
  o["default"] = v;
20
20
  });
21
- var __importStar = (this && this.__importStar) || function (mod) {
22
- if (mod && mod.__esModule) return mod;
23
- var result = {};
24
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
25
- __setModuleDefault(result, mod);
26
- return result;
27
- };
21
+ var __importStar = (this && this.__importStar) || (function () {
22
+ var ownKeys = function(o) {
23
+ ownKeys = Object.getOwnPropertyNames || function (o) {
24
+ var ar = [];
25
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
26
+ return ar;
27
+ };
28
+ return ownKeys(o);
29
+ };
30
+ return function (mod) {
31
+ if (mod && mod.__esModule) return mod;
32
+ var result = {};
33
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
34
+ __setModuleDefault(result, mod);
35
+ return result;
36
+ };
37
+ })();
28
38
  var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
29
39
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
30
40
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -55,12 +65,12 @@ class Datasets {
55
65
  * await client.datasets.list()
56
66
  */
57
67
  list(requestOptions) {
58
- var _a, _b, _c, _d, _e;
59
68
  return __awaiter(this, void 0, void 0, function* () {
69
+ var _a, _b, _c, _d, _e, _f;
60
70
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
61
- url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.CartesiaEnvironment.Production, "/datasets/"),
71
+ url: (0, url_join_1.default)((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.CartesiaEnvironment.Production, "/datasets/"),
62
72
  method: "GET",
63
- headers: Object.assign({ "Cartesia-Version": (_e = (_c = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.cartesiaVersion) !== null && _c !== void 0 ? _c : (_d = this._options) === null || _d === void 0 ? void 0 : _d.cartesiaVersion) !== null && _e !== void 0 ? _e : "2024-06-10", "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@cartesia/cartesia-js", "X-Fern-SDK-Version": "2.1.4", "User-Agent": "@cartesia/cartesia-js/2.1.4", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
73
+ headers: Object.assign(Object.assign({ "Cartesia-Version": (_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.cartesiaVersion) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.cartesiaVersion) !== null && _f !== void 0 ? _f : "2024-06-10", "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@cartesia/cartesia-js", "X-Fern-SDK-Version": "2.1.6", "User-Agent": "@cartesia/cartesia-js/2.1.6", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
64
74
  contentType: "application/json",
65
75
  requestType: "json",
66
76
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
@@ -89,7 +99,7 @@ class Datasets {
89
99
  body: _response.error.rawBody,
90
100
  });
91
101
  case "timeout":
92
- throw new errors.CartesiaTimeoutError();
102
+ throw new errors.CartesiaTimeoutError("Timeout exceeded when calling GET /datasets/.");
93
103
  case "unknown":
94
104
  throw new errors.CartesiaError({
95
105
  message: _response.error.errorMessage,
@@ -103,16 +113,16 @@ class Datasets {
103
113
  *
104
114
  * @example
105
115
  * await client.datasets.create({
106
- * name: "string"
116
+ * name: "name"
107
117
  * })
108
118
  */
109
119
  create(request, requestOptions) {
110
- var _a, _b, _c, _d, _e;
111
120
  return __awaiter(this, void 0, void 0, function* () {
121
+ var _a, _b, _c, _d, _e, _f;
112
122
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
113
- url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.CartesiaEnvironment.Production, "/datasets/"),
123
+ url: (0, url_join_1.default)((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.CartesiaEnvironment.Production, "/datasets/"),
114
124
  method: "POST",
115
- headers: Object.assign({ "Cartesia-Version": (_e = (_c = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.cartesiaVersion) !== null && _c !== void 0 ? _c : (_d = this._options) === null || _d === void 0 ? void 0 : _d.cartesiaVersion) !== null && _e !== void 0 ? _e : "2024-06-10", "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@cartesia/cartesia-js", "X-Fern-SDK-Version": "2.1.4", "User-Agent": "@cartesia/cartesia-js/2.1.4", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
125
+ headers: Object.assign(Object.assign({ "Cartesia-Version": (_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.cartesiaVersion) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.cartesiaVersion) !== null && _f !== void 0 ? _f : "2024-06-10", "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@cartesia/cartesia-js", "X-Fern-SDK-Version": "2.1.6", "User-Agent": "@cartesia/cartesia-js/2.1.6", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
116
126
  contentType: "application/json",
117
127
  requestType: "json",
118
128
  body: serializers.CreateDatasetRequest.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
@@ -142,7 +152,7 @@ class Datasets {
142
152
  body: _response.error.rawBody,
143
153
  });
144
154
  case "timeout":
145
- throw new errors.CartesiaTimeoutError();
155
+ throw new errors.CartesiaTimeoutError("Timeout exceeded when calling POST /datasets/.");
146
156
  case "unknown":
147
157
  throw new errors.CartesiaError({
148
158
  message: _response.error.errorMessage,
@@ -155,15 +165,15 @@ class Datasets {
155
165
  * @param {Datasets.RequestOptions} requestOptions - Request-specific configuration.
156
166
  *
157
167
  * @example
158
- * await client.datasets.listFiles("string")
168
+ * await client.datasets.listFiles("id")
159
169
  */
160
170
  listFiles(id, requestOptions) {
161
- var _a, _b, _c, _d, _e;
162
171
  return __awaiter(this, void 0, void 0, function* () {
172
+ var _a, _b, _c, _d, _e, _f;
163
173
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
164
- url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.CartesiaEnvironment.Production, `/datasets/${encodeURIComponent(id)}/files`),
174
+ url: (0, url_join_1.default)((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.CartesiaEnvironment.Production, `/datasets/${encodeURIComponent(id)}/files`),
165
175
  method: "GET",
166
- headers: Object.assign({ "Cartesia-Version": (_e = (_c = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.cartesiaVersion) !== null && _c !== void 0 ? _c : (_d = this._options) === null || _d === void 0 ? void 0 : _d.cartesiaVersion) !== null && _e !== void 0 ? _e : "2024-06-10", "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@cartesia/cartesia-js", "X-Fern-SDK-Version": "2.1.4", "User-Agent": "@cartesia/cartesia-js/2.1.4", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())),
176
+ headers: Object.assign(Object.assign({ "Cartesia-Version": (_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.cartesiaVersion) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.cartesiaVersion) !== null && _f !== void 0 ? _f : "2024-06-10", "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@cartesia/cartesia-js", "X-Fern-SDK-Version": "2.1.6", "User-Agent": "@cartesia/cartesia-js/2.1.6", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
167
177
  contentType: "application/json",
168
178
  requestType: "json",
169
179
  timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
@@ -192,7 +202,7 @@ class Datasets {
192
202
  body: _response.error.rawBody,
193
203
  });
194
204
  case "timeout":
195
- throw new errors.CartesiaTimeoutError();
205
+ throw new errors.CartesiaTimeoutError("Timeout exceeded when calling GET /datasets/{id}/files.");
196
206
  case "unknown":
197
207
  throw new errors.CartesiaError({
198
208
  message: _response.error.errorMessage,
@@ -205,21 +215,18 @@ class Datasets {
205
215
  * @param {string} id
206
216
  * @param {Cartesia.UploadDatasetFileRequest} request
207
217
  * @param {Datasets.RequestOptions} requestOptions - Request-specific configuration.
208
- *
209
- * @example
210
- * await client.datasets.uploadFile(fs.createReadStream("/path/to/your/file"), "string", {})
211
218
  */
212
219
  uploadFile(file, id, request, requestOptions) {
213
- var _a, _b, _c, _d, _e;
214
220
  return __awaiter(this, void 0, void 0, function* () {
221
+ var _a, _b, _c, _d, _e, _f;
215
222
  const _request = yield core.newFormData();
216
223
  yield _request.appendFile("file", file);
217
- yield _request.append("purpose", request.purpose);
224
+ _request.append("purpose", serializers.FilePurpose.jsonOrThrow(request.purpose, { unrecognizedObjectKeys: "strip" }));
218
225
  const _maybeEncodedRequest = yield _request.getRequest();
219
226
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
220
- url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.CartesiaEnvironment.Production, `/datasets/${encodeURIComponent(id)}/files`),
227
+ url: (0, url_join_1.default)((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.CartesiaEnvironment.Production, `/datasets/${encodeURIComponent(id)}/files`),
221
228
  method: "POST",
222
- headers: Object.assign(Object.assign({ "Cartesia-Version": (_e = (_c = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.cartesiaVersion) !== null && _c !== void 0 ? _c : (_d = this._options) === null || _d === void 0 ? void 0 : _d.cartesiaVersion) !== null && _e !== void 0 ? _e : "2024-06-10", "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@cartesia/cartesia-js", "X-Fern-SDK-Version": "2.1.4", "User-Agent": "@cartesia/cartesia-js/2.1.4", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), _maybeEncodedRequest.headers),
229
+ headers: Object.assign(Object.assign(Object.assign({ "Cartesia-Version": (_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.cartesiaVersion) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.cartesiaVersion) !== null && _f !== void 0 ? _f : "2024-06-10", "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@cartesia/cartesia-js", "X-Fern-SDK-Version": "2.1.6", "User-Agent": "@cartesia/cartesia-js/2.1.6", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), _maybeEncodedRequest.headers), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
223
230
  requestType: "file",
224
231
  duplex: _maybeEncodedRequest.duplex,
225
232
  body: _maybeEncodedRequest.body,
@@ -243,7 +250,7 @@ class Datasets {
243
250
  body: _response.error.rawBody,
244
251
  });
245
252
  case "timeout":
246
- throw new errors.CartesiaTimeoutError();
253
+ throw new errors.CartesiaTimeoutError("Timeout exceeded when calling POST /datasets/{id}/files.");
247
254
  case "unknown":
248
255
  throw new errors.CartesiaError({
249
256
  message: _response.error.errorMessage,
@@ -2,10 +2,6 @@
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
4
  import * as Cartesia from "../../../../index";
5
- /**
6
- * @example
7
- * {}
8
- */
9
5
  export interface UploadDatasetFileRequest {
10
6
  purpose: Cartesia.FilePurpose;
11
7
  }
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
- export declare type FilePurpose = "fine_tune";
4
+ export type FilePurpose = "fine_tune";
5
5
  export declare const FilePurpose: {
6
6
  readonly FineTune: "fine_tune";
7
7
  };
@@ -7,4 +7,4 @@
7
7
  * @example
8
8
  * [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
9
9
  */
10
- export declare type Embedding = number[];
10
+ export type Embedding = number[];
@@ -15,13 +15,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
15
15
  }) : function(o, v) {
16
16
  o["default"] = v;
17
17
  });
18
- var __importStar = (this && this.__importStar) || function (mod) {
19
- if (mod && mod.__esModule) return mod;
20
- var result = {};
21
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
- __setModuleDefault(result, mod);
23
- return result;
24
- };
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
25
35
  var __exportStar = (this && this.__exportStar) || function(m, exports) {
26
36
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
27
37
  };
@@ -1,7 +1,6 @@
1
1
  /**
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
- /// <reference types="node" />
5
4
  import * as environments from "../../../../environments";
6
5
  import * as core from "../../../../core";
7
6
  import * as fs from "fs";
@@ -11,6 +10,8 @@ import * as stream from "stream";
11
10
  export declare namespace Infill {
12
11
  interface Options {
13
12
  environment?: core.Supplier<environments.CartesiaEnvironment | string>;
13
+ /** Specify a custom URL to connect the client to. */
14
+ baseUrl?: core.Supplier<string>;
14
15
  apiKey?: core.Supplier<string | undefined>;
15
16
  /** Override the Cartesia-Version header */
16
17
  cartesiaVersion?: "2024-06-10";
@@ -25,6 +26,8 @@ export declare namespace Infill {
25
26
  abortSignal?: AbortSignal;
26
27
  /** Override the Cartesia-Version header */
27
28
  cartesiaVersion?: "2024-06-10";
29
+ /** Additional headers to include in the request. */
30
+ headers?: Record<string, string>;
28
31
  }
29
32
  }
30
33
  export declare class Infill {
@@ -33,9 +36,19 @@ export declare class Infill {
33
36
  /**
34
37
  * Generate audio that smoothly connects two existing audio segments. This is useful for inserting new speech between existing speech segments while maintaining natural transitions.
35
38
  *
39
+ * **The cost is 1 credit per character of the infill text plus a fixed cost of 300 credits.**
40
+ *
36
41
  * Only the `sonic-preview` model is supported for infill at this time.
37
42
  *
38
43
  * At least one of `left_audio` or `right_audio` must be provided.
44
+ *
45
+ * As with all generative models, there's some inherent variability, but here's some tips we recommend to get the best results from infill:
46
+ * - Use longer infill transcripts
47
+ * - This gives the model more flexibility to adapt to the rest of the audio
48
+ * - Target natural pauses in the audio when deciding where to clip
49
+ * - This means you don't need word-level timestamps to be as precise
50
+ * - Clip right up to the start and end of the audio segment you want infilled, keeping as much silence in the left/right audio segments as possible
51
+ * - This helps the model generate more natural transitions
39
52
  */
40
53
  bytes(leftAudio: File | fs.ReadStream | Blob, rightAudio: File | fs.ReadStream | Blob, request: Cartesia.InfillBytesRequest, requestOptions?: Infill.RequestOptions): Promise<stream.Readable>;
41
54
  protected _getCustomAuthorizationHeaders(): Promise<{
@@ -18,13 +18,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
18
18
  }) : function(o, v) {
19
19
  o["default"] = v;
20
20
  });
21
- var __importStar = (this && this.__importStar) || function (mod) {
22
- if (mod && mod.__esModule) return mod;
23
- var result = {};
24
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
25
- __setModuleDefault(result, mod);
26
- return result;
27
- };
21
+ var __importStar = (this && this.__importStar) || (function () {
22
+ var ownKeys = function(o) {
23
+ ownKeys = Object.getOwnPropertyNames || function (o) {
24
+ var ar = [];
25
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
26
+ return ar;
27
+ };
28
+ return ownKeys(o);
29
+ };
30
+ return function (mod) {
31
+ if (mod && mod.__esModule) return mod;
32
+ var result = {};
33
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
34
+ __setModuleDefault(result, mod);
35
+ return result;
36
+ };
37
+ })();
28
38
  var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
29
39
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
30
40
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -41,6 +51,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
41
51
  exports.Infill = void 0;
42
52
  const environments = __importStar(require("../../../../environments"));
43
53
  const core = __importStar(require("../../../../core"));
54
+ const serializers = __importStar(require("../../../../serialization/index"));
55
+ const json_1 = require("../../../../core/json");
44
56
  const url_join_1 = __importDefault(require("url-join"));
45
57
  const errors = __importStar(require("../../../../errors/index"));
46
58
  class Infill {
@@ -50,41 +62,58 @@ class Infill {
50
62
  /**
51
63
  * Generate audio that smoothly connects two existing audio segments. This is useful for inserting new speech between existing speech segments while maintaining natural transitions.
52
64
  *
65
+ * **The cost is 1 credit per character of the infill text plus a fixed cost of 300 credits.**
66
+ *
53
67
  * Only the `sonic-preview` model is supported for infill at this time.
54
68
  *
55
69
  * At least one of `left_audio` or `right_audio` must be provided.
70
+ *
71
+ * As with all generative models, there's some inherent variability, but here's some tips we recommend to get the best results from infill:
72
+ * - Use longer infill transcripts
73
+ * - This gives the model more flexibility to adapt to the rest of the audio
74
+ * - Target natural pauses in the audio when deciding where to clip
75
+ * - This means you don't need word-level timestamps to be as precise
76
+ * - Clip right up to the start and end of the audio segment you want infilled, keeping as much silence in the left/right audio segments as possible
77
+ * - This helps the model generate more natural transitions
56
78
  */
57
79
  bytes(leftAudio, rightAudio, request, requestOptions) {
58
- var _a, _b, _c, _d, _e;
59
80
  return __awaiter(this, void 0, void 0, function* () {
81
+ var _a, _b, _c, _d, _e, _f;
60
82
  const _request = yield core.newFormData();
61
83
  yield _request.appendFile("left_audio", leftAudio);
62
84
  yield _request.appendFile("right_audio", rightAudio);
63
- yield _request.append("model_id[]", request.modelId);
64
- yield _request.append("language[]", request.language);
65
- yield _request.append("transcript[]", request.transcript);
66
- yield _request.append("voice[id]", request.voiceId);
67
- yield _request.append("output_format[container]", request.outputFormatContainer);
68
- yield _request.append("output_format[sample_rate]", request.outputFormatSampleRate.toString());
85
+ _request.append("model_id", request.modelId);
86
+ _request.append("language", request.language);
87
+ _request.append("transcript", request.transcript);
88
+ _request.append("voice_id", request.voiceId);
89
+ _request.append("output_format[container]", serializers.OutputFormatContainer.jsonOrThrow(request.outputFormatContainer, {
90
+ unrecognizedObjectKeys: "strip",
91
+ }));
92
+ _request.append("output_format[sample_rate]", request.outputFormatSampleRate.toString());
69
93
  if (request.outputFormatEncoding != null) {
70
- yield _request.append("output_format[encoding]", request.outputFormatEncoding);
94
+ _request.append("output_format[encoding]", serializers.RawEncoding.jsonOrThrow(request.outputFormatEncoding, { unrecognizedObjectKeys: "strip" }));
71
95
  }
72
96
  if (request.outputFormatBitRate != null) {
73
- yield _request.append("output_format[bit_rate]", request.outputFormatBitRate.toString());
97
+ _request.append("output_format[bit_rate]", request.outputFormatBitRate.toString());
74
98
  }
75
99
  if (request.voiceExperimentalControlsSpeed != null) {
76
- yield _request.append("voice[__experimental_controls][speed]", typeof request.voiceExperimentalControlsSpeed === "string"
77
- ? request.voiceExperimentalControlsSpeed
78
- : JSON.stringify(request.voiceExperimentalControlsSpeed));
100
+ _request.append("voice[__experimental_controls][speed]", (() => {
101
+ const mapped = serializers.Speed.jsonOrThrow(request.voiceExperimentalControlsSpeed, {
102
+ unrecognizedObjectKeys: "strip",
103
+ });
104
+ return typeof mapped === "string" ? mapped : (0, json_1.toJson)(mapped);
105
+ })());
79
106
  }
80
107
  if (request.voiceExperimentalControlsEmotion != null) {
81
- yield _request.append("voice[__experimental_controls][emotion][]", request.voiceExperimentalControlsEmotion);
108
+ for (const _item of request.voiceExperimentalControlsEmotion) {
109
+ _request.append("voice[__experimental_controls][emotion][]", serializers.Emotion.jsonOrThrow(_item, { unrecognizedObjectKeys: "strip" }));
110
+ }
82
111
  }
83
112
  const _maybeEncodedRequest = yield _request.getRequest();
84
113
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
85
- url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.CartesiaEnvironment.Production, "/infill/bytes"),
114
+ url: (0, url_join_1.default)((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.CartesiaEnvironment.Production, "/infill/bytes"),
86
115
  method: "POST",
87
- headers: Object.assign(Object.assign({ "Cartesia-Version": (_e = (_c = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.cartesiaVersion) !== null && _c !== void 0 ? _c : (_d = this._options) === null || _d === void 0 ? void 0 : _d.cartesiaVersion) !== null && _e !== void 0 ? _e : "2024-06-10", "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@cartesia/cartesia-js", "X-Fern-SDK-Version": "2.1.4", "User-Agent": "@cartesia/cartesia-js/2.1.4", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), _maybeEncodedRequest.headers),
116
+ headers: Object.assign(Object.assign(Object.assign({ "Cartesia-Version": (_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.cartesiaVersion) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.cartesiaVersion) !== null && _f !== void 0 ? _f : "2024-06-10", "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "@cartesia/cartesia-js", "X-Fern-SDK-Version": "2.1.6", "User-Agent": "@cartesia/cartesia-js/2.1.6", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version }, (yield this._getCustomAuthorizationHeaders())), _maybeEncodedRequest.headers), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
88
117
  requestType: "file",
89
118
  duplex: _maybeEncodedRequest.duplex,
90
119
  body: _maybeEncodedRequest.body,
@@ -109,7 +138,7 @@ class Infill {
109
138
  body: _response.error.rawBody,
110
139
  });
111
140
  case "timeout":
112
- throw new errors.CartesiaTimeoutError();
141
+ throw new errors.CartesiaTimeoutError("Timeout exceeded when calling POST /infill/bytes.");
113
142
  case "unknown":
114
143
  throw new errors.CartesiaError({
115
144
  message: _response.error.errorMessage,
@@ -11,7 +11,9 @@ import * as Cartesia from "../../../../index";
11
11
  * voiceId: "694f9389-aac1-45b6-b726-9d9369183238",
12
12
  * outputFormatContainer: "mp3",
13
13
  * outputFormatSampleRate: 44100,
14
- * outputFormatBitRate: 128000
14
+ * outputFormatBitRate: 128000,
15
+ * voiceExperimentalControlsSpeed: "slowest",
16
+ * voiceExperimentalControlsEmotion: ["surprise:high", "curiosity:high"]
15
17
  * }
16
18
  *
17
19
  * @example
@@ -22,7 +24,9 @@ import * as Cartesia from "../../../../index";
22
24
  * voiceId: "694f9389-aac1-45b6-b726-9d9369183238",
23
25
  * outputFormatContainer: "wav",
24
26
  * outputFormatSampleRate: 44100,
25
- * outputFormatEncoding: "pcm_f32le"
27
+ * outputFormatEncoding: "pcm_f32le",
28
+ * voiceExperimentalControlsSpeed: "slowest",
29
+ * voiceExperimentalControlsEmotion: ["surprise:high", "curiosity:high"]
26
30
  * }
27
31
  */
28
32
  export interface InfillBytesRequest {
@@ -63,5 +67,5 @@ export interface InfillBytesRequest {
63
67
  * Supported levels are: lowest, low, (omit), high, highest.
64
68
  *
65
69
  */
66
- voiceExperimentalControlsEmotion?: Cartesia.Emotion;
70
+ voiceExperimentalControlsEmotion?: Cartesia.Emotion[];
67
71
  }
@@ -18,13 +18,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
18
18
  }) : function(o, v) {
19
19
  o["default"] = v;
20
20
  });
21
- var __importStar = (this && this.__importStar) || function (mod) {
22
- if (mod && mod.__esModule) return mod;
23
- var result = {};
24
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
25
- __setModuleDefault(result, mod);
26
- return result;
27
- };
21
+ var __importStar = (this && this.__importStar) || (function () {
22
+ var ownKeys = function(o) {
23
+ ownKeys = Object.getOwnPropertyNames || function (o) {
24
+ var ar = [];
25
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
26
+ return ar;
27
+ };
28
+ return ownKeys(o);
29
+ };
30
+ return function (mod) {
31
+ if (mod && mod.__esModule) return mod;
32
+ var result = {};
33
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
34
+ __setModuleDefault(result, mod);
35
+ return result;
36
+ };
37
+ })();
28
38
  var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
29
39
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
30
40
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -49,8 +59,8 @@ class Tts {
49
59
  this._options = _options;
50
60
  }
51
61
  bytes(request, requestOptions) {
52
- var _a, _b, _c, _d, _e;
53
62
  return __awaiter(this, void 0, void 0, function* () {
63
+ var _a, _b, _c, _d, _e;
54
64
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
55
65
  url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.CartesiaEnvironment.Production, "/tts/bytes"),
56
66
  method: "POST",
@@ -79,7 +89,7 @@ class Tts {
79
89
  body: _response.error.rawBody,
80
90
  });
81
91
  case "timeout":
82
- throw new errors.CartesiaTimeoutError();
92
+ throw new errors.CartesiaTimeoutError("Timeout exceeded when calling POST /tts/bytes.");
83
93
  case "unknown":
84
94
  throw new errors.CartesiaError({
85
95
  message: _response.error.errorMessage,
@@ -88,8 +98,8 @@ class Tts {
88
98
  });
89
99
  }
90
100
  sse(request, requestOptions) {
91
- var _a, _b, _c, _d, _e;
92
101
  return __awaiter(this, void 0, void 0, function* () {
102
+ var _a, _b, _c, _d, _e;
93
103
  const _response = yield ((_a = this._options.fetcher) !== null && _a !== void 0 ? _a : core.fetcher)({
94
104
  url: (0, url_join_1.default)((_b = (yield core.Supplier.get(this._options.environment))) !== null && _b !== void 0 ? _b : environments.CartesiaEnvironment.Production, "/tts/sse"),
95
105
  method: "POST",
@@ -134,7 +144,7 @@ class Tts {
134
144
  body: _response.error.rawBody,
135
145
  });
136
146
  case "timeout":
137
- throw new errors.CartesiaTimeoutError();
147
+ throw new errors.CartesiaTimeoutError("Timeout exceeded when calling POST /tts/sse.");
138
148
  case "unknown":
139
149
  throw new errors.CartesiaError({
140
150
  message: _response.error.errorMessage,
@@ -6,4 +6,4 @@
6
6
  *
7
7
  * Some customers use unique identifiers from their own systems (such as conversation IDs) as context IDs.
8
8
  */
9
- export declare type ContextId = string;
9
+ export type ContextId = string;
@@ -8,7 +8,7 @@
8
8
  *
9
9
  * Supported levels are: lowest, low, (omit), high, highest.
10
10
  */
11
- export declare type Emotion = "anger:lowest" | "anger:low" | "anger:high" | "anger:highest" | "positivity:lowest" | "positivity:low" | "positivity:high" | "positivity:highest" | "surprise:lowest" | "surprise:low" | "surprise:high" | "surprise:highest" | "sadness:lowest" | "sadness:low" | "sadness:high" | "sadness:highest" | "curiosity:lowest" | "curiosity:low" | "curiosity:high" | "curiosity:highest";
11
+ export type Emotion = "anger:lowest" | "anger:low" | "anger:high" | "anger:highest" | "positivity:lowest" | "positivity:low" | "positivity:high" | "positivity:highest" | "surprise:lowest" | "surprise:low" | "surprise:high" | "surprise:highest" | "sadness:lowest" | "sadness:low" | "sadness:high" | "sadness:highest" | "curiosity:lowest" | "curiosity:low" | "curiosity:high" | "curiosity:highest";
12
12
  export declare const Emotion: {
13
13
  readonly AngerLowest: "anger:lowest";
14
14
  readonly AngerLow: "anger:low";
@@ -0,0 +1,9 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * A unique identifier for the flush. You can use any unique identifier, like a UUID or human ID.
6
+ *
7
+ * Some customers use unique identifiers from their own systems (such as conversation IDs) as flush IDs.
8
+ */
9
+ export type FlushId = number;
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -5,7 +5,8 @@ import * as Cartesia from "../../../index";
5
5
  export interface GenerationRequest {
6
6
  /** The ID of the model to use for the generation. See [Models](/build-with-sonic/models) for available models. */
7
7
  modelId: string;
8
- transcript: string;
8
+ /** The transcript to generate speech for. This can be a string or an iterator over strings. */
9
+ transcript?: unknown;
9
10
  voice: Cartesia.TtsRequestVoiceSpecifier;
10
11
  language?: Cartesia.SupportedLanguage;
11
12
  outputFormat: Cartesia.WebSocketRawOutputFormat;
@@ -14,12 +15,14 @@ export interface GenerationRequest {
14
15
  * If the duration is not appropriate for the length of the transcript, the output audio may be truncated.
15
16
  */
16
17
  duration?: number;
17
- contextId: Cartesia.ContextId;
18
+ contextId?: Cartesia.ContextId;
18
19
  /**
19
20
  * Whether this input may be followed by more inputs.
20
21
  * If not specified, this defaults to `false`.
21
22
  */
22
23
  continue?: boolean;
24
+ /** Whether to flush the context. */
25
+ flush?: boolean;
23
26
  /** Whether to return word-level timestamps. */
24
27
  addTimestamps?: boolean;
25
28
  /** Whether to return phoneme-level timestamps. */
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
- export declare type NaturalSpecifier = "slowest" | "slow" | "normal" | "fast" | "fastest";
4
+ export type NaturalSpecifier = "slowest" | "slow" | "normal" | "fast" | "fastest";
5
5
  export declare const NaturalSpecifier: {
6
6
  readonly Slowest: "slowest";
7
7
  readonly Slow: "slow";
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
- export declare type NumericalSpecifier = number;
4
+ export type NumericalSpecifier = number;
@@ -2,7 +2,7 @@
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
4
  import * as Cartesia from "../../../index";
5
- export declare type OutputFormat = Cartesia.OutputFormat.Raw | Cartesia.OutputFormat.Wav | Cartesia.OutputFormat.Mp3;
5
+ export type OutputFormat = Cartesia.OutputFormat.Raw | Cartesia.OutputFormat.Wav | Cartesia.OutputFormat.Mp3;
6
6
  export declare namespace OutputFormat {
7
7
  interface Raw extends Cartesia.RawOutputFormat {
8
8
  container: "raw";
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
- export declare type RawEncoding = "pcm_f32le" | "pcm_s16le" | "pcm_mulaw" | "pcm_alaw";
4
+ export type RawEncoding = "pcm_f32le" | "pcm_s16le" | "pcm_mulaw" | "pcm_alaw";
5
5
  export declare const RawEncoding: {
6
6
  readonly PcmF32Le: "pcm_f32le";
7
7
  readonly PcmS16Le: "pcm_s16le";
@@ -5,4 +5,5 @@ import * as Cartesia from "../../../index";
5
5
  export interface RawOutputFormat {
6
6
  encoding: Cartesia.RawEncoding;
7
7
  sampleRate: number;
8
+ bitRate?: number;
8
9
  }
@@ -7,4 +7,4 @@ import * as Cartesia from "../../../index";
7
7
  *
8
8
  * If you specify a number, 0.0 is the default speed, -1.0 is the slowest speed, and 1.0 is the fastest speed.
9
9
  */
10
- export declare type Speed = Cartesia.NumericalSpecifier | Cartesia.NaturalSpecifier;
10
+ export type Speed = Cartesia.NumericalSpecifier | Cartesia.NaturalSpecifier;
@@ -6,7 +6,7 @@
6
6
  *
7
7
  * Options: English (en), French (fr), German (de), Spanish (es), Portuguese (pt), Chinese (zh), Japanese (ja), Hindi (hi), Italian (it), Korean (ko), Dutch (nl), Polish (pl), Russian (ru), Swedish (sv), Turkish (tr).
8
8
  */
9
- export declare type SupportedLanguage = "en" | "fr" | "de" | "es" | "pt" | "zh" | "ja" | "hi" | "it" | "ko" | "nl" | "pl" | "ru" | "sv" | "tr";
9
+ export type SupportedLanguage = "en" | "fr" | "de" | "es" | "pt" | "zh" | "ja" | "hi" | "it" | "ko" | "nl" | "pl" | "ru" | "sv" | "tr";
10
10
  export declare const SupportedLanguage: {
11
11
  readonly En: "en";
12
12
  readonly Fr: "fr";
@@ -2,4 +2,4 @@
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
4
  import * as Cartesia from "../../../index";
5
- export declare type TtsRequestVoiceSpecifier = Cartesia.TtsRequestIdSpecifier | Cartesia.TtsRequestEmbeddingSpecifier;
5
+ export type TtsRequestVoiceSpecifier = Cartesia.TtsRequestIdSpecifier | Cartesia.TtsRequestEmbeddingSpecifier;