telnyx 6.8.2 → 6.9.0

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 (43) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/client.d.mts +12 -0
  3. package/client.d.mts.map +1 -1
  4. package/client.d.ts +12 -0
  5. package/client.d.ts.map +1 -1
  6. package/client.js +12 -0
  7. package/client.js.map +1 -1
  8. package/client.mjs +12 -0
  9. package/client.mjs.map +1 -1
  10. package/package.json +1 -1
  11. package/resources/index.d.mts +2 -0
  12. package/resources/index.d.mts.map +1 -1
  13. package/resources/index.d.ts +2 -0
  14. package/resources/index.d.ts.map +1 -1
  15. package/resources/index.js +6 -2
  16. package/resources/index.js.map +1 -1
  17. package/resources/index.mjs +2 -0
  18. package/resources/index.mjs.map +1 -1
  19. package/resources/voice-clones.d.mts +382 -0
  20. package/resources/voice-clones.d.mts.map +1 -0
  21. package/resources/voice-clones.d.ts +382 -0
  22. package/resources/voice-clones.d.ts.map +1 -0
  23. package/resources/voice-clones.js +117 -0
  24. package/resources/voice-clones.js.map +1 -0
  25. package/resources/voice-clones.mjs +113 -0
  26. package/resources/voice-clones.mjs.map +1 -0
  27. package/resources/voice-designs.d.mts +361 -0
  28. package/resources/voice-designs.d.mts.map +1 -0
  29. package/resources/voice-designs.d.ts +361 -0
  30. package/resources/voice-designs.d.ts.map +1 -0
  31. package/resources/voice-designs.js +131 -0
  32. package/resources/voice-designs.js.map +1 -0
  33. package/resources/voice-designs.mjs +127 -0
  34. package/resources/voice-designs.mjs.map +1 -0
  35. package/src/client.ts +64 -0
  36. package/src/resources/index.ts +26 -0
  37. package/src/resources/voice-clones.ts +497 -0
  38. package/src/resources/voice-designs.ts +482 -0
  39. package/src/version.ts +1 -1
  40. package/version.d.mts +1 -1
  41. package/version.d.ts +1 -1
  42. package/version.js +1 -1
  43. package/version.mjs +1 -1
package/src/client.ts CHANGED
@@ -902,6 +902,32 @@ import {
902
902
  VirtualCrossConnectsCoverageListResponse,
903
903
  VirtualCrossConnectsCoverageListResponsesDefaultFlatPagination,
904
904
  } from './resources/virtual-cross-connects-coverage';
905
+ import {
906
+ VoiceCloneCreateFromUploadParams,
907
+ VoiceCloneCreateFromUploadResponse,
908
+ VoiceCloneCreateParams,
909
+ VoiceCloneCreateResponse,
910
+ VoiceCloneListParams,
911
+ VoiceCloneListResponse,
912
+ VoiceCloneListResponsesDefaultFlatPagination,
913
+ VoiceCloneUpdateParams,
914
+ VoiceCloneUpdateResponse,
915
+ VoiceClones,
916
+ } from './resources/voice-clones';
917
+ import {
918
+ VoiceDesignCreateParams,
919
+ VoiceDesignCreateResponse,
920
+ VoiceDesignDeleteVersionParams,
921
+ VoiceDesignDownloadSampleParams,
922
+ VoiceDesignListParams,
923
+ VoiceDesignListResponse,
924
+ VoiceDesignListResponsesDefaultFlatPagination,
925
+ VoiceDesignRenameParams,
926
+ VoiceDesignRenameResponse,
927
+ VoiceDesignRetrieveParams,
928
+ VoiceDesignRetrieveResponse,
929
+ VoiceDesigns,
930
+ } from './resources/voice-designs';
905
931
  import {
906
932
  Attempt,
907
933
  HTTP,
@@ -2818,6 +2844,14 @@ export class Telnyx {
2818
2844
  * Manage Whatsapp message templates
2819
2845
  */
2820
2846
  whatsappMessageTemplates: API.WhatsappMessageTemplates = new API.WhatsappMessageTemplates(this);
2847
+ /**
2848
+ * Capture and manage voice identities as clones for use in text-to-speech synthesis.
2849
+ */
2850
+ voiceClones: API.VoiceClones = new API.VoiceClones(this);
2851
+ /**
2852
+ * Create and manage AI-generated voice designs using natural language prompts.
2853
+ */
2854
+ voiceDesigns: API.VoiceDesigns = new API.VoiceDesigns(this);
2821
2855
  }
2822
2856
 
2823
2857
  Telnyx.Legacy = Legacy;
@@ -2975,6 +3009,8 @@ Telnyx.MessagingProfileMetrics = MessagingProfileMetrics;
2975
3009
  Telnyx.SessionAnalysis = SessionAnalysis;
2976
3010
  Telnyx.Whatsapp = Whatsapp;
2977
3011
  Telnyx.WhatsappMessageTemplates = WhatsappMessageTemplates;
3012
+ Telnyx.VoiceClones = VoiceClones;
3013
+ Telnyx.VoiceDesigns = VoiceDesigns;
2978
3014
 
2979
3015
  export declare namespace Telnyx {
2980
3016
  export type RequestOptions = Opts.RequestOptions;
@@ -4643,6 +4679,34 @@ export declare namespace Telnyx {
4643
4679
  type WhatsappMessageTemplateUpdateParams as WhatsappMessageTemplateUpdateParams,
4644
4680
  };
4645
4681
 
4682
+ export {
4683
+ VoiceClones as VoiceClones,
4684
+ type VoiceCloneCreateResponse as VoiceCloneCreateResponse,
4685
+ type VoiceCloneUpdateResponse as VoiceCloneUpdateResponse,
4686
+ type VoiceCloneListResponse as VoiceCloneListResponse,
4687
+ type VoiceCloneCreateFromUploadResponse as VoiceCloneCreateFromUploadResponse,
4688
+ type VoiceCloneListResponsesDefaultFlatPagination as VoiceCloneListResponsesDefaultFlatPagination,
4689
+ type VoiceCloneCreateParams as VoiceCloneCreateParams,
4690
+ type VoiceCloneUpdateParams as VoiceCloneUpdateParams,
4691
+ type VoiceCloneListParams as VoiceCloneListParams,
4692
+ type VoiceCloneCreateFromUploadParams as VoiceCloneCreateFromUploadParams,
4693
+ };
4694
+
4695
+ export {
4696
+ VoiceDesigns as VoiceDesigns,
4697
+ type VoiceDesignCreateResponse as VoiceDesignCreateResponse,
4698
+ type VoiceDesignRetrieveResponse as VoiceDesignRetrieveResponse,
4699
+ type VoiceDesignListResponse as VoiceDesignListResponse,
4700
+ type VoiceDesignRenameResponse as VoiceDesignRenameResponse,
4701
+ type VoiceDesignListResponsesDefaultFlatPagination as VoiceDesignListResponsesDefaultFlatPagination,
4702
+ type VoiceDesignCreateParams as VoiceDesignCreateParams,
4703
+ type VoiceDesignRetrieveParams as VoiceDesignRetrieveParams,
4704
+ type VoiceDesignListParams as VoiceDesignListParams,
4705
+ type VoiceDesignDeleteVersionParams as VoiceDesignDeleteVersionParams,
4706
+ type VoiceDesignDownloadSampleParams as VoiceDesignDownloadSampleParams,
4707
+ type VoiceDesignRenameParams as VoiceDesignRenameParams,
4708
+ };
4709
+
4646
4710
  export type APIError = API.APIError;
4647
4711
  export type AvailablePhoneNumbersMetadata = API.AvailablePhoneNumbersMetadata;
4648
4712
  export type AzureVoiceSettings = API.AzureVoiceSettings;
@@ -1267,6 +1267,32 @@ export {
1267
1267
  type VirtualCrossConnectsCoverageListParams,
1268
1268
  type VirtualCrossConnectsCoverageListResponsesDefaultFlatPagination,
1269
1269
  } from './virtual-cross-connects-coverage';
1270
+ export {
1271
+ VoiceClones,
1272
+ type VoiceCloneCreateResponse,
1273
+ type VoiceCloneUpdateResponse,
1274
+ type VoiceCloneListResponse,
1275
+ type VoiceCloneCreateFromUploadResponse,
1276
+ type VoiceCloneCreateParams,
1277
+ type VoiceCloneUpdateParams,
1278
+ type VoiceCloneListParams,
1279
+ type VoiceCloneCreateFromUploadParams,
1280
+ type VoiceCloneListResponsesDefaultFlatPagination,
1281
+ } from './voice-clones';
1282
+ export {
1283
+ VoiceDesigns,
1284
+ type VoiceDesignCreateResponse,
1285
+ type VoiceDesignRetrieveResponse,
1286
+ type VoiceDesignListResponse,
1287
+ type VoiceDesignRenameResponse,
1288
+ type VoiceDesignCreateParams,
1289
+ type VoiceDesignRetrieveParams,
1290
+ type VoiceDesignListParams,
1291
+ type VoiceDesignDeleteVersionParams,
1292
+ type VoiceDesignDownloadSampleParams,
1293
+ type VoiceDesignRenameParams,
1294
+ type VoiceDesignListResponsesDefaultFlatPagination,
1295
+ } from './voice-designs';
1270
1296
  export {
1271
1297
  WebhookDeliveries,
1272
1298
  type Attempt,
@@ -0,0 +1,497 @@
1
+ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ import { APIResource } from '../core/resource';
4
+ import { APIPromise } from '../core/api-promise';
5
+ import { DefaultFlatPagination, type DefaultFlatPaginationParams, PagePromise } from '../core/pagination';
6
+ import { type Uploadable } from '../core/uploads';
7
+ import { buildHeaders } from '../internal/headers';
8
+ import { RequestOptions } from '../internal/request-options';
9
+ import { multipartFormRequestOptions } from '../internal/uploads';
10
+ import { path } from '../internal/utils/path';
11
+
12
+ /**
13
+ * Capture and manage voice identities as clones for use in text-to-speech synthesis.
14
+ */
15
+ export class VoiceClones extends APIResource {
16
+ /**
17
+ * Creates a new voice clone by capturing the voice identity of an existing voice
18
+ * design. The clone can then be used for text-to-speech synthesis.
19
+ *
20
+ * @example
21
+ * ```ts
22
+ * const voiceClone = await client.voiceClones.create({
23
+ * gender: 'male',
24
+ * language: 'en',
25
+ * name: 'clone-narrator',
26
+ * voice_design_id: '550e8400-e29b-41d4-a716-446655440000',
27
+ * });
28
+ * ```
29
+ */
30
+ create(body: VoiceCloneCreateParams, options?: RequestOptions): APIPromise<VoiceCloneCreateResponse> {
31
+ return this._client.post('/voice_clones', { body, ...options });
32
+ }
33
+
34
+ /**
35
+ * Updates the name, language, or gender of a voice clone.
36
+ *
37
+ * @example
38
+ * ```ts
39
+ * const voiceClone = await client.voiceClones.update(
40
+ * '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e',
41
+ * { name: 'updated-clone' },
42
+ * );
43
+ * ```
44
+ */
45
+ update(
46
+ id: string,
47
+ body: VoiceCloneUpdateParams,
48
+ options?: RequestOptions,
49
+ ): APIPromise<VoiceCloneUpdateResponse> {
50
+ return this._client.patch(path`/voice_clones/${id}`, { body, ...options });
51
+ }
52
+
53
+ /**
54
+ * Returns a paginated list of voice clones belonging to the authenticated account.
55
+ *
56
+ * @example
57
+ * ```ts
58
+ * // Automatically fetches more pages as needed.
59
+ * for await (const voiceCloneListResponse of client.voiceClones.list()) {
60
+ * // ...
61
+ * }
62
+ * ```
63
+ */
64
+ list(
65
+ query: VoiceCloneListParams | null | undefined = {},
66
+ options?: RequestOptions,
67
+ ): PagePromise<VoiceCloneListResponsesDefaultFlatPagination, VoiceCloneListResponse> {
68
+ return this._client.getAPIList('/voice_clones', DefaultFlatPagination<VoiceCloneListResponse>, {
69
+ query,
70
+ ...options,
71
+ });
72
+ }
73
+
74
+ /**
75
+ * Permanently deletes a voice clone. This action cannot be undone.
76
+ *
77
+ * @example
78
+ * ```ts
79
+ * await client.voiceClones.delete(
80
+ * '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e',
81
+ * );
82
+ * ```
83
+ */
84
+ delete(id: string, options?: RequestOptions): APIPromise<void> {
85
+ return this._client.delete(path`/voice_clones/${id}`, {
86
+ ...options,
87
+ headers: buildHeaders([{ Accept: '*/*' }, options?.headers]),
88
+ });
89
+ }
90
+
91
+ /**
92
+ * Creates a new voice clone by uploading an audio file directly. Supported
93
+ * formats: WAV, MP3, FLAC, OGG, M4A. For best results, provide 5–10 seconds of
94
+ * clear speech. Maximum file size: 2MB.
95
+ *
96
+ * @example
97
+ * ```ts
98
+ * const response = await client.voiceClones.createFromUpload({
99
+ * audio_file: fs.createReadStream('path/to/file'),
100
+ * language: 'lkf-Lz1vLbBu-9uDh-9AHaOS2D-Cbf',
101
+ * name: 'name',
102
+ * });
103
+ * ```
104
+ */
105
+ createFromUpload(
106
+ body: VoiceCloneCreateFromUploadParams,
107
+ options?: RequestOptions,
108
+ ): APIPromise<VoiceCloneCreateFromUploadResponse> {
109
+ return this._client.post(
110
+ '/voice_clones/from_upload',
111
+ multipartFormRequestOptions({ body, ...options }, this._client),
112
+ );
113
+ }
114
+
115
+ /**
116
+ * Downloads the WAV audio sample that was used to create the voice clone.
117
+ *
118
+ * @example
119
+ * ```ts
120
+ * const response = await client.voiceClones.downloadSample(
121
+ * '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e',
122
+ * );
123
+ *
124
+ * const content = await response.blob();
125
+ * console.log(content);
126
+ * ```
127
+ */
128
+ downloadSample(id: string, options?: RequestOptions): APIPromise<Response> {
129
+ return this._client.get(path`/voice_clones/${id}/sample`, {
130
+ ...options,
131
+ headers: buildHeaders([{ Accept: 'audio/wav' }, options?.headers]),
132
+ __binaryResponse: true,
133
+ });
134
+ }
135
+ }
136
+
137
+ export type VoiceCloneListResponsesDefaultFlatPagination = DefaultFlatPagination<VoiceCloneListResponse>;
138
+
139
+ /**
140
+ * Response envelope for a single voice clone.
141
+ */
142
+ export interface VoiceCloneCreateResponse {
143
+ /**
144
+ * A voice clone object.
145
+ */
146
+ data?: VoiceCloneCreateResponse.Data;
147
+ }
148
+
149
+ export namespace VoiceCloneCreateResponse {
150
+ /**
151
+ * A voice clone object.
152
+ */
153
+ export interface Data {
154
+ /**
155
+ * Unique identifier for the voice clone.
156
+ */
157
+ id?: string;
158
+
159
+ /**
160
+ * Timestamp when the voice clone was created.
161
+ */
162
+ created_at?: string;
163
+
164
+ /**
165
+ * Gender of the voice clone.
166
+ */
167
+ gender?: 'male' | 'female' | 'neutral' | null;
168
+
169
+ /**
170
+ * Voice style description. If not explicitly set on upload, falls back to the
171
+ * source design's prompt text.
172
+ */
173
+ label?: string | null;
174
+
175
+ /**
176
+ * ISO 639-1 language code of the voice clone.
177
+ */
178
+ language?: string | null;
179
+
180
+ /**
181
+ * Name of the voice clone.
182
+ */
183
+ name?: string;
184
+
185
+ /**
186
+ * Identifies the resource type.
187
+ */
188
+ record_type?: 'voice_clone';
189
+
190
+ /**
191
+ * UUID of the source voice design. `null` for upload-based clones.
192
+ */
193
+ source_voice_design_id?: string | null;
194
+
195
+ /**
196
+ * Version of the source voice design used. `null` for upload-based clones.
197
+ */
198
+ source_voice_design_version?: number | null;
199
+
200
+ /**
201
+ * Timestamp when the voice clone was last updated.
202
+ */
203
+ updated_at?: string;
204
+ }
205
+ }
206
+
207
+ /**
208
+ * Response envelope for a single voice clone.
209
+ */
210
+ export interface VoiceCloneUpdateResponse {
211
+ /**
212
+ * A voice clone object.
213
+ */
214
+ data?: VoiceCloneUpdateResponse.Data;
215
+ }
216
+
217
+ export namespace VoiceCloneUpdateResponse {
218
+ /**
219
+ * A voice clone object.
220
+ */
221
+ export interface Data {
222
+ /**
223
+ * Unique identifier for the voice clone.
224
+ */
225
+ id?: string;
226
+
227
+ /**
228
+ * Timestamp when the voice clone was created.
229
+ */
230
+ created_at?: string;
231
+
232
+ /**
233
+ * Gender of the voice clone.
234
+ */
235
+ gender?: 'male' | 'female' | 'neutral' | null;
236
+
237
+ /**
238
+ * Voice style description. If not explicitly set on upload, falls back to the
239
+ * source design's prompt text.
240
+ */
241
+ label?: string | null;
242
+
243
+ /**
244
+ * ISO 639-1 language code of the voice clone.
245
+ */
246
+ language?: string | null;
247
+
248
+ /**
249
+ * Name of the voice clone.
250
+ */
251
+ name?: string;
252
+
253
+ /**
254
+ * Identifies the resource type.
255
+ */
256
+ record_type?: 'voice_clone';
257
+
258
+ /**
259
+ * UUID of the source voice design. `null` for upload-based clones.
260
+ */
261
+ source_voice_design_id?: string | null;
262
+
263
+ /**
264
+ * Version of the source voice design used. `null` for upload-based clones.
265
+ */
266
+ source_voice_design_version?: number | null;
267
+
268
+ /**
269
+ * Timestamp when the voice clone was last updated.
270
+ */
271
+ updated_at?: string;
272
+ }
273
+ }
274
+
275
+ /**
276
+ * A voice clone object.
277
+ */
278
+ export interface VoiceCloneListResponse {
279
+ /**
280
+ * Unique identifier for the voice clone.
281
+ */
282
+ id?: string;
283
+
284
+ /**
285
+ * Timestamp when the voice clone was created.
286
+ */
287
+ created_at?: string;
288
+
289
+ /**
290
+ * Gender of the voice clone.
291
+ */
292
+ gender?: 'male' | 'female' | 'neutral' | null;
293
+
294
+ /**
295
+ * Voice style description. If not explicitly set on upload, falls back to the
296
+ * source design's prompt text.
297
+ */
298
+ label?: string | null;
299
+
300
+ /**
301
+ * ISO 639-1 language code of the voice clone.
302
+ */
303
+ language?: string | null;
304
+
305
+ /**
306
+ * Name of the voice clone.
307
+ */
308
+ name?: string;
309
+
310
+ /**
311
+ * Identifies the resource type.
312
+ */
313
+ record_type?: 'voice_clone';
314
+
315
+ /**
316
+ * UUID of the source voice design. `null` for upload-based clones.
317
+ */
318
+ source_voice_design_id?: string | null;
319
+
320
+ /**
321
+ * Version of the source voice design used. `null` for upload-based clones.
322
+ */
323
+ source_voice_design_version?: number | null;
324
+
325
+ /**
326
+ * Timestamp when the voice clone was last updated.
327
+ */
328
+ updated_at?: string;
329
+ }
330
+
331
+ /**
332
+ * Response envelope for a single voice clone.
333
+ */
334
+ export interface VoiceCloneCreateFromUploadResponse {
335
+ /**
336
+ * A voice clone object.
337
+ */
338
+ data?: VoiceCloneCreateFromUploadResponse.Data;
339
+ }
340
+
341
+ export namespace VoiceCloneCreateFromUploadResponse {
342
+ /**
343
+ * A voice clone object.
344
+ */
345
+ export interface Data {
346
+ /**
347
+ * Unique identifier for the voice clone.
348
+ */
349
+ id?: string;
350
+
351
+ /**
352
+ * Timestamp when the voice clone was created.
353
+ */
354
+ created_at?: string;
355
+
356
+ /**
357
+ * Gender of the voice clone.
358
+ */
359
+ gender?: 'male' | 'female' | 'neutral' | null;
360
+
361
+ /**
362
+ * Voice style description. If not explicitly set on upload, falls back to the
363
+ * source design's prompt text.
364
+ */
365
+ label?: string | null;
366
+
367
+ /**
368
+ * ISO 639-1 language code of the voice clone.
369
+ */
370
+ language?: string | null;
371
+
372
+ /**
373
+ * Name of the voice clone.
374
+ */
375
+ name?: string;
376
+
377
+ /**
378
+ * Identifies the resource type.
379
+ */
380
+ record_type?: 'voice_clone';
381
+
382
+ /**
383
+ * UUID of the source voice design. `null` for upload-based clones.
384
+ */
385
+ source_voice_design_id?: string | null;
386
+
387
+ /**
388
+ * Version of the source voice design used. `null` for upload-based clones.
389
+ */
390
+ source_voice_design_version?: number | null;
391
+
392
+ /**
393
+ * Timestamp when the voice clone was last updated.
394
+ */
395
+ updated_at?: string;
396
+ }
397
+ }
398
+
399
+ export interface VoiceCloneCreateParams {
400
+ /**
401
+ * Gender of the voice clone.
402
+ */
403
+ gender: 'male' | 'female' | 'neutral';
404
+
405
+ /**
406
+ * ISO 639-1 language code for the clone (e.g. `en`, `fr`, `de`).
407
+ */
408
+ language: string;
409
+
410
+ /**
411
+ * Name for the voice clone.
412
+ */
413
+ name: string;
414
+
415
+ /**
416
+ * UUID of the source voice design to clone.
417
+ */
418
+ voice_design_id: string;
419
+ }
420
+
421
+ export interface VoiceCloneUpdateParams {
422
+ /**
423
+ * New name for the voice clone.
424
+ */
425
+ name: string;
426
+
427
+ /**
428
+ * Updated gender for the voice clone.
429
+ */
430
+ gender?: 'male' | 'female' | 'neutral';
431
+
432
+ /**
433
+ * Updated ISO 639-1 language code or `auto`.
434
+ */
435
+ language?: string;
436
+ }
437
+
438
+ export interface VoiceCloneListParams extends DefaultFlatPaginationParams {
439
+ /**
440
+ * Case-insensitive substring filter on the name field.
441
+ */
442
+ 'filter[name]'?: string;
443
+
444
+ /**
445
+ * Sort order. Prefix with `-` for descending. Defaults to `-created_at`.
446
+ */
447
+ sort?: 'name' | '-name' | 'created_at' | '-created_at';
448
+ }
449
+
450
+ export interface VoiceCloneCreateFromUploadParams {
451
+ /**
452
+ * Audio file to clone the voice from. Supported formats: WAV, MP3, FLAC, OGG, M4A.
453
+ * For best quality, provide 5–10 seconds of clear, uninterrupted speech. Maximum
454
+ * size: 2MB.
455
+ */
456
+ audio_file: Uploadable;
457
+
458
+ /**
459
+ * ISO 639-1 language code (e.g. `en`, `fr`) or `auto` for automatic detection.
460
+ */
461
+ language: string;
462
+
463
+ /**
464
+ * Name for the voice clone.
465
+ */
466
+ name: string;
467
+
468
+ /**
469
+ * Gender of the voice clone.
470
+ */
471
+ gender?: 'male' | 'female' | 'neutral';
472
+
473
+ /**
474
+ * Optional custom label describing the voice style. If omitted, falls back to the
475
+ * source design's prompt text.
476
+ */
477
+ label?: string;
478
+
479
+ /**
480
+ * Optional transcript of the audio file. Providing this improves clone quality.
481
+ */
482
+ ref_text?: string;
483
+ }
484
+
485
+ export declare namespace VoiceClones {
486
+ export {
487
+ type VoiceCloneCreateResponse as VoiceCloneCreateResponse,
488
+ type VoiceCloneUpdateResponse as VoiceCloneUpdateResponse,
489
+ type VoiceCloneListResponse as VoiceCloneListResponse,
490
+ type VoiceCloneCreateFromUploadResponse as VoiceCloneCreateFromUploadResponse,
491
+ type VoiceCloneListResponsesDefaultFlatPagination as VoiceCloneListResponsesDefaultFlatPagination,
492
+ type VoiceCloneCreateParams as VoiceCloneCreateParams,
493
+ type VoiceCloneUpdateParams as VoiceCloneUpdateParams,
494
+ type VoiceCloneListParams as VoiceCloneListParams,
495
+ type VoiceCloneCreateFromUploadParams as VoiceCloneCreateFromUploadParams,
496
+ };
497
+ }