@apicity/elevenlabs 0.6.5 → 0.6.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.
package/dist/src/zod.d.ts CHANGED
@@ -56,6 +56,81 @@ export declare const ElevenLabsGetVoiceRequestSchema: z.ZodObject<{
56
56
  export type ElevenLabsGetVoiceRequest = z.input<typeof ElevenLabsGetVoiceRequestSchema>;
57
57
  export type ElevenLabsGetVoiceRequestInput = ElevenLabsGetVoiceRequest;
58
58
  export type ElevenLabsGetVoiceParsedRequest = z.output<typeof ElevenLabsGetVoiceRequestSchema>;
59
+ export declare const ElevenLabsListV1VoicesRequestSchema: z.ZodObject<{
60
+ show_legacy: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
61
+ }, z.core.$strip>;
62
+ export type ElevenLabsListV1VoicesRequest = z.input<typeof ElevenLabsListV1VoicesRequestSchema>;
63
+ export type ElevenLabsListV1VoicesRequestInput = ElevenLabsListV1VoicesRequest;
64
+ export type ElevenLabsListV1VoicesParsedRequest = z.output<typeof ElevenLabsListV1VoicesRequestSchema>;
65
+ export declare const ElevenLabsAddVoiceRequestSchema: z.ZodObject<{
66
+ name: z.ZodString;
67
+ files: z.ZodArray<z.ZodCustom<Blob, Blob>>;
68
+ remove_background_noise: z.ZodOptional<z.ZodBoolean>;
69
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
70
+ labels: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodRecord<z.ZodString, z.ZodString>, z.ZodString]>>>;
71
+ }, z.core.$strip>;
72
+ export type ElevenLabsAddVoiceRequest = z.input<typeof ElevenLabsAddVoiceRequestSchema>;
73
+ export type ElevenLabsAddVoiceRequestInput = ElevenLabsAddVoiceRequest;
74
+ export type ElevenLabsAddVoiceParsedRequest = z.output<typeof ElevenLabsAddVoiceRequestSchema>;
75
+ export declare const ElevenLabsEditVoiceRequestSchema: z.ZodObject<{
76
+ name: z.ZodString;
77
+ files: z.ZodOptional<z.ZodArray<z.ZodCustom<Blob, Blob>>>;
78
+ remove_background_noise: z.ZodOptional<z.ZodBoolean>;
79
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
80
+ labels: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodRecord<z.ZodString, z.ZodString>, z.ZodString]>>>;
81
+ moderate_metadata: z.ZodOptional<z.ZodBoolean>;
82
+ }, z.core.$strip>;
83
+ export type ElevenLabsEditVoiceRequest = z.input<typeof ElevenLabsEditVoiceRequestSchema>;
84
+ export type ElevenLabsEditVoiceRequestInput = ElevenLabsEditVoiceRequest;
85
+ export type ElevenLabsEditVoiceParsedRequest = z.output<typeof ElevenLabsEditVoiceRequestSchema>;
86
+ export declare const ElevenLabsEditVoiceSettingsRequestSchema: z.ZodObject<{
87
+ stability: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
88
+ use_speaker_boost: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
89
+ similarity_boost: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
90
+ style: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
91
+ speed: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
92
+ }, z.core.$strip>;
93
+ export type ElevenLabsEditVoiceSettingsRequest = z.input<typeof ElevenLabsEditVoiceSettingsRequestSchema>;
94
+ export type ElevenLabsEditVoiceSettingsRequestInput = ElevenLabsEditVoiceSettingsRequest;
95
+ export type ElevenLabsEditVoiceSettingsParsedRequest = z.output<typeof ElevenLabsEditVoiceSettingsRequestSchema>;
96
+ export declare const ElevenLabsAddSharedVoiceRequestSchema: z.ZodObject<{
97
+ new_name: z.ZodString;
98
+ bookmarked: z.ZodOptional<z.ZodBoolean>;
99
+ }, z.core.$strip>;
100
+ export type ElevenLabsAddSharedVoiceRequest = z.input<typeof ElevenLabsAddSharedVoiceRequestSchema>;
101
+ export type ElevenLabsAddSharedVoiceRequestInput = ElevenLabsAddSharedVoiceRequest;
102
+ export type ElevenLabsAddSharedVoiceParsedRequest = z.output<typeof ElevenLabsAddSharedVoiceRequestSchema>;
103
+ export declare const ElevenLabsSharedVoicesRequestSchema: z.ZodObject<{
104
+ page_size: z.ZodOptional<z.ZodNumber>;
105
+ category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
106
+ gender: z.ZodOptional<z.ZodNullable<z.ZodString>>;
107
+ age: z.ZodOptional<z.ZodNullable<z.ZodString>>;
108
+ accent: z.ZodOptional<z.ZodNullable<z.ZodString>>;
109
+ language: z.ZodOptional<z.ZodNullable<z.ZodString>>;
110
+ locale: z.ZodOptional<z.ZodNullable<z.ZodString>>;
111
+ search: z.ZodOptional<z.ZodNullable<z.ZodString>>;
112
+ use_cases: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
113
+ descriptives: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
114
+ featured: z.ZodOptional<z.ZodBoolean>;
115
+ min_notice_period_days: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
116
+ include_custom_rates: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
117
+ include_live_moderated: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
118
+ reader_app_enabled: z.ZodOptional<z.ZodBoolean>;
119
+ owner_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
120
+ sort: z.ZodOptional<z.ZodNullable<z.ZodString>>;
121
+ page: z.ZodOptional<z.ZodNumber>;
122
+ }, z.core.$strip>;
123
+ export type ElevenLabsSharedVoicesRequest = z.input<typeof ElevenLabsSharedVoicesRequestSchema>;
124
+ export type ElevenLabsSharedVoicesRequestInput = ElevenLabsSharedVoicesRequest;
125
+ export type ElevenLabsSharedVoicesParsedRequest = z.output<typeof ElevenLabsSharedVoicesRequestSchema>;
126
+ export declare const ElevenLabsSimilarVoicesRequestSchema: z.ZodObject<{
127
+ audio_file: z.ZodOptional<z.ZodCustom<Blob, Blob>>;
128
+ similarity_threshold: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
129
+ top_k: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
130
+ }, z.core.$strip>;
131
+ export type ElevenLabsSimilarVoicesRequest = z.input<typeof ElevenLabsSimilarVoicesRequestSchema>;
132
+ export type ElevenLabsSimilarVoicesRequestInput = ElevenLabsSimilarVoicesRequest;
133
+ export type ElevenLabsSimilarVoicesParsedRequest = z.output<typeof ElevenLabsSimilarVoicesRequestSchema>;
59
134
  export declare const ElevenLabsCreatePvcVoiceRequestSchema: z.ZodObject<{
60
135
  name: z.ZodString;
61
136
  language: z.ZodString;
@@ -65,6 +140,28 @@ export declare const ElevenLabsCreatePvcVoiceRequestSchema: z.ZodObject<{
65
140
  export type ElevenLabsCreatePvcVoiceRequest = z.input<typeof ElevenLabsCreatePvcVoiceRequestSchema>;
66
141
  export type ElevenLabsCreatePvcVoiceRequestInput = ElevenLabsCreatePvcVoiceRequest;
67
142
  export type ElevenLabsCreatePvcVoiceParsedRequest = z.output<typeof ElevenLabsCreatePvcVoiceRequestSchema>;
143
+ export declare const ElevenLabsEditPvcVoiceRequestSchema: z.ZodObject<{
144
+ name: z.ZodString;
145
+ language: z.ZodString;
146
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
147
+ labels: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
148
+ }, z.core.$strip>;
149
+ export type ElevenLabsEditPvcVoiceRequest = z.input<typeof ElevenLabsEditPvcVoiceRequestSchema>;
150
+ export type ElevenLabsEditPvcVoiceRequestInput = ElevenLabsEditPvcVoiceRequest;
151
+ export type ElevenLabsEditPvcVoiceParsedRequest = z.output<typeof ElevenLabsEditPvcVoiceRequestSchema>;
152
+ export declare const ElevenLabsAddPvcSamplesRequestSchema: z.ZodObject<{
153
+ files: z.ZodArray<z.ZodCustom<Blob, Blob>>;
154
+ remove_background_noise: z.ZodOptional<z.ZodBoolean>;
155
+ }, z.core.$strip>;
156
+ export type ElevenLabsAddPvcSamplesRequest = z.input<typeof ElevenLabsAddPvcSamplesRequestSchema>;
157
+ export type ElevenLabsAddPvcSamplesRequestInput = ElevenLabsAddPvcSamplesRequest;
158
+ export type ElevenLabsAddPvcSamplesParsedRequest = z.output<typeof ElevenLabsAddPvcSamplesRequestSchema>;
159
+ export declare const ElevenLabsGetPvcSampleAudioRequestSchema: z.ZodObject<{
160
+ remove_background_noise: z.ZodOptional<z.ZodBoolean>;
161
+ }, z.core.$strip>;
162
+ export type ElevenLabsGetPvcSampleAudioRequest = z.input<typeof ElevenLabsGetPvcSampleAudioRequestSchema>;
163
+ export type ElevenLabsGetPvcSampleAudioRequestInput = ElevenLabsGetPvcSampleAudioRequest;
164
+ export type ElevenLabsGetPvcSampleAudioParsedRequest = z.output<typeof ElevenLabsGetPvcSampleAudioRequestSchema>;
68
165
  export declare const ElevenLabsPvcVoiceCaptchaRequestSchema: z.ZodObject<{
69
166
  recording: z.ZodCustom<Blob, Blob>;
70
167
  }, z.core.$strip>;
@@ -160,6 +257,7 @@ export declare const ElevenLabsTextToDialogueRequestSchema: z.ZodObject<{
160
257
  off: "off";
161
258
  }>>;
162
259
  output_format: z.ZodOptional<z.ZodString>;
260
+ enable_logging: z.ZodOptional<z.ZodBoolean>;
163
261
  }, z.core.$strip>;
164
262
  export type ElevenLabsTextToDialogueRequest = z.input<typeof ElevenLabsTextToDialogueRequestSchema>;
165
263
  export type ElevenLabsTextToDialogueRequestInput = ElevenLabsTextToDialogueRequest;
@@ -208,6 +306,968 @@ export declare const ElevenLabsSpeechToTextRequestSchema: z.ZodObject<{
208
306
  export type ElevenLabsSpeechToTextRequest = z.input<typeof ElevenLabsSpeechToTextRequestSchema>;
209
307
  export type ElevenLabsSpeechToTextRequestInput = ElevenLabsSpeechToTextRequest;
210
308
  export type ElevenLabsSpeechToTextParsedRequest = z.output<typeof ElevenLabsSpeechToTextRequestSchema>;
309
+ export declare const ElevenLabsSpeechToSpeechRequestSchema: z.ZodObject<{
310
+ audio: z.ZodCustom<Blob, Blob>;
311
+ model_id: z.ZodOptional<z.ZodString>;
312
+ voice_settings: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
313
+ stability: z.ZodOptional<z.ZodNumber>;
314
+ similarity_boost: z.ZodOptional<z.ZodNumber>;
315
+ style: z.ZodOptional<z.ZodNumber>;
316
+ use_speaker_boost: z.ZodOptional<z.ZodBoolean>;
317
+ speed: z.ZodOptional<z.ZodNumber>;
318
+ }, z.core.$loose>, z.ZodString]>>>;
319
+ seed: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
320
+ remove_background_noise: z.ZodOptional<z.ZodBoolean>;
321
+ file_format: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
322
+ pcm_s16le_16: "pcm_s16le_16";
323
+ other: "other";
324
+ }>>>;
325
+ output_format: z.ZodOptional<z.ZodString>;
326
+ enable_logging: z.ZodOptional<z.ZodBoolean>;
327
+ }, z.core.$strip>;
328
+ export type ElevenLabsSpeechToSpeechRequest = z.input<typeof ElevenLabsSpeechToSpeechRequestSchema>;
329
+ export type ElevenLabsSpeechToSpeechRequestInput = ElevenLabsSpeechToSpeechRequest;
330
+ export type ElevenLabsSpeechToSpeechParsedRequest = z.output<typeof ElevenLabsSpeechToSpeechRequestSchema>;
331
+ export declare const ElevenLabsAudioIsolationRequestSchema: z.ZodObject<{
332
+ audio: z.ZodCustom<Blob, Blob>;
333
+ file_format: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
334
+ pcm_s16le_16: "pcm_s16le_16";
335
+ other: "other";
336
+ }>>>;
337
+ preview_b64: z.ZodOptional<z.ZodNullable<z.ZodString>>;
338
+ }, z.core.$strip>;
339
+ export type ElevenLabsAudioIsolationRequest = z.input<typeof ElevenLabsAudioIsolationRequestSchema>;
340
+ export type ElevenLabsAudioIsolationRequestInput = ElevenLabsAudioIsolationRequest;
341
+ export type ElevenLabsAudioIsolationParsedRequest = z.output<typeof ElevenLabsAudioIsolationRequestSchema>;
342
+ export declare const ElevenLabsAudioIsolationStreamRequestSchema: z.ZodObject<{
343
+ audio: z.ZodCustom<Blob, Blob>;
344
+ file_format: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
345
+ pcm_s16le_16: "pcm_s16le_16";
346
+ other: "other";
347
+ }>>>;
348
+ }, z.core.$strip>;
349
+ export type ElevenLabsAudioIsolationStreamRequest = z.input<typeof ElevenLabsAudioIsolationStreamRequestSchema>;
350
+ export type ElevenLabsAudioIsolationStreamRequestInput = ElevenLabsAudioIsolationStreamRequest;
351
+ export type ElevenLabsAudioIsolationStreamParsedRequest = z.output<typeof ElevenLabsAudioIsolationStreamRequestSchema>;
352
+ export declare const ElevenLabsAudioIsolationHistoryListRequestSchema: z.ZodObject<{
353
+ page_size: z.ZodOptional<z.ZodNumber>;
354
+ page: z.ZodOptional<z.ZodNumber>;
355
+ search: z.ZodOptional<z.ZodNullable<z.ZodString>>;
356
+ }, z.core.$strip>;
357
+ export type ElevenLabsAudioIsolationHistoryListRequest = z.input<typeof ElevenLabsAudioIsolationHistoryListRequestSchema>;
358
+ export type ElevenLabsAudioIsolationHistoryListRequestInput = ElevenLabsAudioIsolationHistoryListRequest;
359
+ export type ElevenLabsAudioIsolationHistoryListParsedRequest = z.output<typeof ElevenLabsAudioIsolationHistoryListRequestSchema>;
360
+ export declare const ElevenLabsAudioNativeCreateProjectRequestSchema: z.ZodObject<{
361
+ name: z.ZodString;
362
+ image: z.ZodOptional<z.ZodNullable<z.ZodString>>;
363
+ author: z.ZodOptional<z.ZodNullable<z.ZodString>>;
364
+ title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
365
+ small: z.ZodOptional<z.ZodBoolean>;
366
+ text_color: z.ZodOptional<z.ZodNullable<z.ZodString>>;
367
+ background_color: z.ZodOptional<z.ZodNullable<z.ZodString>>;
368
+ sessionization: z.ZodOptional<z.ZodNumber>;
369
+ voice_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
370
+ model_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
371
+ file: z.ZodOptional<z.ZodCustom<Blob, Blob>>;
372
+ auto_convert: z.ZodOptional<z.ZodBoolean>;
373
+ apply_text_normalization: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
374
+ auto: "auto";
375
+ on: "on";
376
+ off: "off";
377
+ apply_english: "apply_english";
378
+ }>>>;
379
+ pronunciation_dictionary_locators: z.ZodOptional<z.ZodArray<z.ZodString>>;
380
+ }, z.core.$strip>;
381
+ export type ElevenLabsAudioNativeCreateProjectRequest = z.input<typeof ElevenLabsAudioNativeCreateProjectRequestSchema>;
382
+ export type ElevenLabsAudioNativeCreateProjectRequestInput = ElevenLabsAudioNativeCreateProjectRequest;
383
+ export type ElevenLabsAudioNativeCreateProjectParsedRequest = z.output<typeof ElevenLabsAudioNativeCreateProjectRequestSchema>;
384
+ export declare const ElevenLabsAudioNativeUpdateContentFromUrlRequestSchema: z.ZodObject<{
385
+ url: z.ZodString;
386
+ author: z.ZodOptional<z.ZodNullable<z.ZodString>>;
387
+ title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
388
+ }, z.core.$strip>;
389
+ export type ElevenLabsAudioNativeUpdateContentFromUrlRequest = z.input<typeof ElevenLabsAudioNativeUpdateContentFromUrlRequestSchema>;
390
+ export type ElevenLabsAudioNativeUpdateContentFromUrlRequestInput = ElevenLabsAudioNativeUpdateContentFromUrlRequest;
391
+ export type ElevenLabsAudioNativeUpdateContentFromUrlParsedRequest = z.output<typeof ElevenLabsAudioNativeUpdateContentFromUrlRequestSchema>;
392
+ export declare const ElevenLabsAudioNativeUpdateProjectContentRequestSchema: z.ZodObject<{
393
+ file: z.ZodOptional<z.ZodCustom<Blob, Blob>>;
394
+ auto_convert: z.ZodOptional<z.ZodBoolean>;
395
+ auto_publish: z.ZodOptional<z.ZodBoolean>;
396
+ }, z.core.$strip>;
397
+ export type ElevenLabsAudioNativeUpdateProjectContentRequest = z.input<typeof ElevenLabsAudioNativeUpdateProjectContentRequestSchema>;
398
+ export type ElevenLabsAudioNativeUpdateProjectContentRequestInput = ElevenLabsAudioNativeUpdateProjectContentRequest;
399
+ export type ElevenLabsAudioNativeUpdateProjectContentParsedRequest = z.output<typeof ElevenLabsAudioNativeUpdateProjectContentRequestSchema>;
400
+ export declare const ElevenLabsForcedAlignmentRequestSchema: z.ZodObject<{
401
+ file: z.ZodCustom<Blob, Blob>;
402
+ text: z.ZodString;
403
+ }, z.core.$strip>;
404
+ export type ElevenLabsForcedAlignmentRequest = z.input<typeof ElevenLabsForcedAlignmentRequestSchema>;
405
+ export type ElevenLabsForcedAlignmentRequestInput = ElevenLabsForcedAlignmentRequest;
406
+ export type ElevenLabsForcedAlignmentParsedRequest = z.output<typeof ElevenLabsForcedAlignmentRequestSchema>;
407
+ export declare const ElevenLabsComposeMusicRequestSchema: z.ZodObject<{
408
+ respect_sections_durations: z.ZodOptional<z.ZodBoolean>;
409
+ sign_with_c2pa: z.ZodOptional<z.ZodBoolean>;
410
+ output_format: z.ZodOptional<z.ZodString>;
411
+ prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
412
+ generation_mode: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
413
+ loop: "loop";
414
+ track: "track";
415
+ ambience: "ambience";
416
+ video_to_music: "video_to_music";
417
+ }>>>;
418
+ lyrics_text: z.ZodOptional<z.ZodNullable<z.ZodString>>;
419
+ composition_plan: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
420
+ positive_global_styles: z.ZodArray<z.ZodString>;
421
+ negative_global_styles: z.ZodArray<z.ZodString>;
422
+ sections: z.ZodArray<z.ZodObject<{
423
+ section_name: z.ZodString;
424
+ positive_local_styles: z.ZodArray<z.ZodString>;
425
+ negative_local_styles: z.ZodArray<z.ZodString>;
426
+ duration_ms: z.ZodNumber;
427
+ lines: z.ZodArray<z.ZodString>;
428
+ source_from: z.ZodOptional<z.ZodNullable<z.ZodObject<{
429
+ song_id: z.ZodString;
430
+ range: z.ZodObject<{
431
+ start_ms: z.ZodNumber;
432
+ end_ms: z.ZodNumber;
433
+ }, z.core.$strip>;
434
+ negative_ranges: z.ZodOptional<z.ZodArray<z.ZodObject<{
435
+ start_ms: z.ZodNumber;
436
+ end_ms: z.ZodNumber;
437
+ }, z.core.$strip>>>;
438
+ }, z.core.$strip>>>;
439
+ }, z.core.$strip>>;
440
+ }, z.core.$strip>, z.ZodObject<{
441
+ chunks: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
442
+ text: z.ZodString;
443
+ duration_ms: z.ZodNumber;
444
+ positive_styles: z.ZodArray<z.ZodString>;
445
+ negative_styles: z.ZodOptional<z.ZodArray<z.ZodString>>;
446
+ context_adherence: z.ZodOptional<z.ZodEnum<{
447
+ low: "low";
448
+ medium: "medium";
449
+ high: "high";
450
+ }>>;
451
+ conditioning_ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
452
+ song_id: z.ZodString;
453
+ range: z.ZodObject<{
454
+ start_ms: z.ZodNumber;
455
+ end_ms: z.ZodNumber;
456
+ }, z.core.$strip>;
457
+ }, z.core.$strip>>>;
458
+ condition_strength: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
459
+ low: "low";
460
+ medium: "medium";
461
+ high: "high";
462
+ xhigh: "xhigh";
463
+ }>>>;
464
+ }, z.core.$strip>, z.ZodObject<{
465
+ song_id: z.ZodString;
466
+ range: z.ZodObject<{
467
+ start_ms: z.ZodNumber;
468
+ end_ms: z.ZodNumber;
469
+ }, z.core.$strip>;
470
+ }, z.core.$strip>]>>;
471
+ }, z.core.$strip>]>>>;
472
+ music_length_ms: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
473
+ model_id: z.ZodOptional<z.ZodEnum<{
474
+ music_v1: "music_v1";
475
+ music_v2: "music_v2";
476
+ }>>;
477
+ seed: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
478
+ force_instrumental: z.ZodOptional<z.ZodBoolean>;
479
+ finetune_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
480
+ finetune_strength: z.ZodOptional<z.ZodNumber>;
481
+ use_phonetic_names: z.ZodOptional<z.ZodBoolean>;
482
+ store_for_inpainting: z.ZodOptional<z.ZodBoolean>;
483
+ }, z.core.$strip>;
484
+ export type ElevenLabsComposeMusicRequest = z.input<typeof ElevenLabsComposeMusicRequestSchema>;
485
+ export type ElevenLabsComposeMusicRequestInput = ElevenLabsComposeMusicRequest;
486
+ export type ElevenLabsComposeMusicParsedRequest = z.output<typeof ElevenLabsComposeMusicRequestSchema>;
487
+ export declare const ElevenLabsComposeMusicDetailedRequestSchema: z.ZodObject<{
488
+ respect_sections_durations: z.ZodOptional<z.ZodBoolean>;
489
+ with_timestamps: z.ZodOptional<z.ZodBoolean>;
490
+ sign_with_c2pa: z.ZodOptional<z.ZodBoolean>;
491
+ output_format: z.ZodOptional<z.ZodString>;
492
+ prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
493
+ generation_mode: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
494
+ loop: "loop";
495
+ track: "track";
496
+ ambience: "ambience";
497
+ video_to_music: "video_to_music";
498
+ }>>>;
499
+ lyrics_text: z.ZodOptional<z.ZodNullable<z.ZodString>>;
500
+ composition_plan: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
501
+ positive_global_styles: z.ZodArray<z.ZodString>;
502
+ negative_global_styles: z.ZodArray<z.ZodString>;
503
+ sections: z.ZodArray<z.ZodObject<{
504
+ section_name: z.ZodString;
505
+ positive_local_styles: z.ZodArray<z.ZodString>;
506
+ negative_local_styles: z.ZodArray<z.ZodString>;
507
+ duration_ms: z.ZodNumber;
508
+ lines: z.ZodArray<z.ZodString>;
509
+ source_from: z.ZodOptional<z.ZodNullable<z.ZodObject<{
510
+ song_id: z.ZodString;
511
+ range: z.ZodObject<{
512
+ start_ms: z.ZodNumber;
513
+ end_ms: z.ZodNumber;
514
+ }, z.core.$strip>;
515
+ negative_ranges: z.ZodOptional<z.ZodArray<z.ZodObject<{
516
+ start_ms: z.ZodNumber;
517
+ end_ms: z.ZodNumber;
518
+ }, z.core.$strip>>>;
519
+ }, z.core.$strip>>>;
520
+ }, z.core.$strip>>;
521
+ }, z.core.$strip>, z.ZodObject<{
522
+ chunks: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
523
+ text: z.ZodString;
524
+ duration_ms: z.ZodNumber;
525
+ positive_styles: z.ZodArray<z.ZodString>;
526
+ negative_styles: z.ZodOptional<z.ZodArray<z.ZodString>>;
527
+ context_adherence: z.ZodOptional<z.ZodEnum<{
528
+ low: "low";
529
+ medium: "medium";
530
+ high: "high";
531
+ }>>;
532
+ conditioning_ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
533
+ song_id: z.ZodString;
534
+ range: z.ZodObject<{
535
+ start_ms: z.ZodNumber;
536
+ end_ms: z.ZodNumber;
537
+ }, z.core.$strip>;
538
+ }, z.core.$strip>>>;
539
+ condition_strength: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
540
+ low: "low";
541
+ medium: "medium";
542
+ high: "high";
543
+ xhigh: "xhigh";
544
+ }>>>;
545
+ }, z.core.$strip>, z.ZodObject<{
546
+ song_id: z.ZodString;
547
+ range: z.ZodObject<{
548
+ start_ms: z.ZodNumber;
549
+ end_ms: z.ZodNumber;
550
+ }, z.core.$strip>;
551
+ }, z.core.$strip>]>>;
552
+ }, z.core.$strip>]>>>;
553
+ music_length_ms: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
554
+ model_id: z.ZodOptional<z.ZodEnum<{
555
+ music_v1: "music_v1";
556
+ music_v2: "music_v2";
557
+ }>>;
558
+ seed: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
559
+ force_instrumental: z.ZodOptional<z.ZodBoolean>;
560
+ finetune_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
561
+ finetune_strength: z.ZodOptional<z.ZodNumber>;
562
+ use_phonetic_names: z.ZodOptional<z.ZodBoolean>;
563
+ store_for_inpainting: z.ZodOptional<z.ZodBoolean>;
564
+ }, z.core.$strip>;
565
+ export type ElevenLabsComposeMusicDetailedRequest = z.input<typeof ElevenLabsComposeMusicDetailedRequestSchema>;
566
+ export type ElevenLabsComposeMusicDetailedRequestInput = ElevenLabsComposeMusicDetailedRequest;
567
+ export type ElevenLabsComposeMusicDetailedParsedRequest = z.output<typeof ElevenLabsComposeMusicDetailedRequestSchema>;
568
+ export declare const ElevenLabsComposeMusicStreamRequestSchema: z.ZodObject<{
569
+ output_format: z.ZodOptional<z.ZodString>;
570
+ prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
571
+ generation_mode: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
572
+ loop: "loop";
573
+ track: "track";
574
+ ambience: "ambience";
575
+ video_to_music: "video_to_music";
576
+ }>>>;
577
+ lyrics_text: z.ZodOptional<z.ZodNullable<z.ZodString>>;
578
+ composition_plan: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
579
+ positive_global_styles: z.ZodArray<z.ZodString>;
580
+ negative_global_styles: z.ZodArray<z.ZodString>;
581
+ sections: z.ZodArray<z.ZodObject<{
582
+ section_name: z.ZodString;
583
+ positive_local_styles: z.ZodArray<z.ZodString>;
584
+ negative_local_styles: z.ZodArray<z.ZodString>;
585
+ duration_ms: z.ZodNumber;
586
+ lines: z.ZodArray<z.ZodString>;
587
+ source_from: z.ZodOptional<z.ZodNullable<z.ZodObject<{
588
+ song_id: z.ZodString;
589
+ range: z.ZodObject<{
590
+ start_ms: z.ZodNumber;
591
+ end_ms: z.ZodNumber;
592
+ }, z.core.$strip>;
593
+ negative_ranges: z.ZodOptional<z.ZodArray<z.ZodObject<{
594
+ start_ms: z.ZodNumber;
595
+ end_ms: z.ZodNumber;
596
+ }, z.core.$strip>>>;
597
+ }, z.core.$strip>>>;
598
+ }, z.core.$strip>>;
599
+ }, z.core.$strip>, z.ZodObject<{
600
+ chunks: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
601
+ text: z.ZodString;
602
+ duration_ms: z.ZodNumber;
603
+ positive_styles: z.ZodArray<z.ZodString>;
604
+ negative_styles: z.ZodOptional<z.ZodArray<z.ZodString>>;
605
+ context_adherence: z.ZodOptional<z.ZodEnum<{
606
+ low: "low";
607
+ medium: "medium";
608
+ high: "high";
609
+ }>>;
610
+ conditioning_ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
611
+ song_id: z.ZodString;
612
+ range: z.ZodObject<{
613
+ start_ms: z.ZodNumber;
614
+ end_ms: z.ZodNumber;
615
+ }, z.core.$strip>;
616
+ }, z.core.$strip>>>;
617
+ condition_strength: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
618
+ low: "low";
619
+ medium: "medium";
620
+ high: "high";
621
+ xhigh: "xhigh";
622
+ }>>>;
623
+ }, z.core.$strip>, z.ZodObject<{
624
+ song_id: z.ZodString;
625
+ range: z.ZodObject<{
626
+ start_ms: z.ZodNumber;
627
+ end_ms: z.ZodNumber;
628
+ }, z.core.$strip>;
629
+ }, z.core.$strip>]>>;
630
+ }, z.core.$strip>]>>>;
631
+ music_length_ms: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
632
+ model_id: z.ZodOptional<z.ZodEnum<{
633
+ music_v1: "music_v1";
634
+ music_v2: "music_v2";
635
+ }>>;
636
+ seed: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
637
+ force_instrumental: z.ZodOptional<z.ZodBoolean>;
638
+ finetune_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
639
+ finetune_strength: z.ZodOptional<z.ZodNumber>;
640
+ use_phonetic_names: z.ZodOptional<z.ZodBoolean>;
641
+ store_for_inpainting: z.ZodOptional<z.ZodBoolean>;
642
+ }, z.core.$strip>;
643
+ export type ElevenLabsComposeMusicStreamRequest = z.input<typeof ElevenLabsComposeMusicStreamRequestSchema>;
644
+ export type ElevenLabsComposeMusicStreamRequestInput = ElevenLabsComposeMusicStreamRequest;
645
+ export type ElevenLabsComposeMusicStreamParsedRequest = z.output<typeof ElevenLabsComposeMusicStreamRequestSchema>;
646
+ export declare const ElevenLabsMusicPlanRequestSchema: z.ZodObject<{
647
+ prompt: z.ZodString;
648
+ music_length_ms: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
649
+ source_composition_plan: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
650
+ positive_global_styles: z.ZodArray<z.ZodString>;
651
+ negative_global_styles: z.ZodArray<z.ZodString>;
652
+ sections: z.ZodArray<z.ZodObject<{
653
+ section_name: z.ZodString;
654
+ positive_local_styles: z.ZodArray<z.ZodString>;
655
+ negative_local_styles: z.ZodArray<z.ZodString>;
656
+ duration_ms: z.ZodNumber;
657
+ lines: z.ZodArray<z.ZodString>;
658
+ source_from: z.ZodOptional<z.ZodNullable<z.ZodObject<{
659
+ song_id: z.ZodString;
660
+ range: z.ZodObject<{
661
+ start_ms: z.ZodNumber;
662
+ end_ms: z.ZodNumber;
663
+ }, z.core.$strip>;
664
+ negative_ranges: z.ZodOptional<z.ZodArray<z.ZodObject<{
665
+ start_ms: z.ZodNumber;
666
+ end_ms: z.ZodNumber;
667
+ }, z.core.$strip>>>;
668
+ }, z.core.$strip>>>;
669
+ }, z.core.$strip>>;
670
+ }, z.core.$strip>, z.ZodObject<{
671
+ chunks: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
672
+ text: z.ZodString;
673
+ duration_ms: z.ZodNumber;
674
+ positive_styles: z.ZodArray<z.ZodString>;
675
+ negative_styles: z.ZodOptional<z.ZodArray<z.ZodString>>;
676
+ context_adherence: z.ZodOptional<z.ZodEnum<{
677
+ low: "low";
678
+ medium: "medium";
679
+ high: "high";
680
+ }>>;
681
+ conditioning_ref: z.ZodOptional<z.ZodNullable<z.ZodObject<{
682
+ song_id: z.ZodString;
683
+ range: z.ZodObject<{
684
+ start_ms: z.ZodNumber;
685
+ end_ms: z.ZodNumber;
686
+ }, z.core.$strip>;
687
+ }, z.core.$strip>>>;
688
+ condition_strength: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
689
+ low: "low";
690
+ medium: "medium";
691
+ high: "high";
692
+ xhigh: "xhigh";
693
+ }>>>;
694
+ }, z.core.$strip>, z.ZodObject<{
695
+ song_id: z.ZodString;
696
+ range: z.ZodObject<{
697
+ start_ms: z.ZodNumber;
698
+ end_ms: z.ZodNumber;
699
+ }, z.core.$strip>;
700
+ }, z.core.$strip>]>>;
701
+ }, z.core.$strip>]>>>;
702
+ model_id: z.ZodOptional<z.ZodEnum<{
703
+ music_v1: "music_v1";
704
+ music_v2: "music_v2";
705
+ }>>;
706
+ }, z.core.$strip>;
707
+ export type ElevenLabsMusicPlanRequest = z.input<typeof ElevenLabsMusicPlanRequestSchema>;
708
+ export type ElevenLabsMusicPlanRequestInput = ElevenLabsMusicPlanRequest;
709
+ export type ElevenLabsMusicPlanParsedRequest = z.output<typeof ElevenLabsMusicPlanRequestSchema>;
710
+ export declare const ElevenLabsMusicStemSeparationRequestSchema: z.ZodObject<{
711
+ file: z.ZodCustom<Blob, Blob>;
712
+ stem_variation_id: z.ZodOptional<z.ZodEnum<{
713
+ two_stems_v1: "two_stems_v1";
714
+ six_stems_v1: "six_stems_v1";
715
+ }>>;
716
+ sign_with_c2pa: z.ZodOptional<z.ZodBoolean>;
717
+ output_format: z.ZodOptional<z.ZodString>;
718
+ }, z.core.$strip>;
719
+ export type ElevenLabsMusicStemSeparationRequest = z.input<typeof ElevenLabsMusicStemSeparationRequestSchema>;
720
+ export type ElevenLabsMusicStemSeparationRequestInput = ElevenLabsMusicStemSeparationRequest;
721
+ export type ElevenLabsMusicStemSeparationParsedRequest = z.output<typeof ElevenLabsMusicStemSeparationRequestSchema>;
722
+ export declare const ElevenLabsMusicUploadRequestSchema: z.ZodObject<{
723
+ file: z.ZodCustom<Blob, Blob>;
724
+ extract_composition_plan: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodEnum<{
725
+ music_v1: "music_v1";
726
+ music_v2: "music_v2";
727
+ }>]>>;
728
+ with_timestamps: z.ZodOptional<z.ZodBoolean>;
729
+ }, z.core.$strip>;
730
+ export type ElevenLabsMusicUploadRequest = z.input<typeof ElevenLabsMusicUploadRequestSchema>;
731
+ export type ElevenLabsMusicUploadRequestInput = ElevenLabsMusicUploadRequest;
732
+ export type ElevenLabsMusicUploadParsedRequest = z.output<typeof ElevenLabsMusicUploadRequestSchema>;
733
+ export declare const ElevenLabsVideoToMusicRequestSchema: z.ZodObject<{
734
+ videos: z.ZodArray<z.ZodCustom<Blob, Blob>>;
735
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
736
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
737
+ model_id: z.ZodOptional<z.ZodEnum<{
738
+ music_v1: "music_v1";
739
+ music_v2: "music_v2";
740
+ }>>;
741
+ sign_with_c2pa: z.ZodOptional<z.ZodBoolean>;
742
+ output_format: z.ZodOptional<z.ZodString>;
743
+ }, z.core.$strip>;
744
+ export type ElevenLabsVideoToMusicRequest = z.input<typeof ElevenLabsVideoToMusicRequestSchema>;
745
+ export type ElevenLabsVideoToMusicRequestInput = ElevenLabsVideoToMusicRequest;
746
+ export type ElevenLabsVideoToMusicParsedRequest = z.output<typeof ElevenLabsVideoToMusicRequestSchema>;
747
+ export declare const ElevenLabsListWorkspaceAuditLogsRequestSchema: z.ZodObject<{
748
+ limit: z.ZodOptional<z.ZodNumber>;
749
+ cursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
750
+ time_from_unix_ms: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
751
+ time_to_unix_ms: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
752
+ actor_uid: z.ZodOptional<z.ZodNullable<z.ZodString>>;
753
+ class_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
754
+ activity_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
755
+ }, z.core.$strip>;
756
+ export type ElevenLabsListWorkspaceAuditLogsRequest = z.input<typeof ElevenLabsListWorkspaceAuditLogsRequestSchema>;
757
+ export type ElevenLabsListWorkspaceAuditLogsRequestInput = ElevenLabsListWorkspaceAuditLogsRequest;
758
+ export type ElevenLabsListWorkspaceAuditLogsParsedRequest = z.output<typeof ElevenLabsListWorkspaceAuditLogsRequestSchema>;
759
+ export declare const ElevenLabsSearchWorkspaceGroupsRequestSchema: z.ZodObject<{
760
+ name: z.ZodString;
761
+ }, z.core.$strip>;
762
+ export type ElevenLabsSearchWorkspaceGroupsRequest = z.input<typeof ElevenLabsSearchWorkspaceGroupsRequestSchema>;
763
+ export type ElevenLabsSearchWorkspaceGroupsRequestInput = ElevenLabsSearchWorkspaceGroupsRequest;
764
+ export type ElevenLabsSearchWorkspaceGroupsParsedRequest = z.output<typeof ElevenLabsSearchWorkspaceGroupsRequestSchema>;
765
+ export declare const ElevenLabsAddWorkspaceGroupMemberRequestSchema: z.ZodObject<{
766
+ email: z.ZodString;
767
+ }, z.core.$strip>;
768
+ export type ElevenLabsAddWorkspaceGroupMemberRequest = z.input<typeof ElevenLabsAddWorkspaceGroupMemberRequestSchema>;
769
+ export type ElevenLabsAddWorkspaceGroupMemberRequestInput = ElevenLabsAddWorkspaceGroupMemberRequest;
770
+ export type ElevenLabsAddWorkspaceGroupMemberParsedRequest = z.output<typeof ElevenLabsAddWorkspaceGroupMemberRequestSchema>;
771
+ export declare const ElevenLabsRemoveWorkspaceGroupMemberRequestSchema: z.ZodObject<{
772
+ email: z.ZodString;
773
+ }, z.core.$strip>;
774
+ export type ElevenLabsRemoveWorkspaceGroupMemberRequest = z.input<typeof ElevenLabsRemoveWorkspaceGroupMemberRequestSchema>;
775
+ export type ElevenLabsRemoveWorkspaceGroupMemberRequestInput = ElevenLabsRemoveWorkspaceGroupMemberRequest;
776
+ export type ElevenLabsRemoveWorkspaceGroupMemberParsedRequest = z.output<typeof ElevenLabsRemoveWorkspaceGroupMemberRequestSchema>;
777
+ export declare const ElevenLabsUpdateWorkspaceMemberRequestSchema: z.ZodObject<{
778
+ email: z.ZodString;
779
+ is_locked: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
780
+ workspace_role: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
781
+ workspace_admin: "workspace_admin";
782
+ workspace_member: "workspace_member";
783
+ workspace_lite_member: "workspace_lite_member";
784
+ }>>>;
785
+ workspace_seat_type: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
786
+ workspace_admin: "workspace_admin";
787
+ workspace_member: "workspace_member";
788
+ workspace_lite_member: "workspace_lite_member";
789
+ }>>>;
790
+ }, z.core.$strip>;
791
+ export type ElevenLabsUpdateWorkspaceMemberRequest = z.input<typeof ElevenLabsUpdateWorkspaceMemberRequestSchema>;
792
+ export type ElevenLabsUpdateWorkspaceMemberRequestInput = ElevenLabsUpdateWorkspaceMemberRequest;
793
+ export type ElevenLabsUpdateWorkspaceMemberParsedRequest = z.output<typeof ElevenLabsUpdateWorkspaceMemberRequestSchema>;
794
+ export declare const ElevenLabsAddWorkspaceInviteRequestSchema: z.ZodObject<{
795
+ email: z.ZodString;
796
+ workspace_permission: z.ZodOptional<z.ZodNullable<z.ZodString>>;
797
+ seat_type: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
798
+ workspace_admin: "workspace_admin";
799
+ workspace_member: "workspace_member";
800
+ workspace_lite_member: "workspace_lite_member";
801
+ }>>>;
802
+ group_ids: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
803
+ }, z.core.$strip>;
804
+ export type ElevenLabsAddWorkspaceInviteRequest = z.input<typeof ElevenLabsAddWorkspaceInviteRequestSchema>;
805
+ export type ElevenLabsAddWorkspaceInviteRequestInput = ElevenLabsAddWorkspaceInviteRequest;
806
+ export type ElevenLabsAddWorkspaceInviteParsedRequest = z.output<typeof ElevenLabsAddWorkspaceInviteRequestSchema>;
807
+ export declare const ElevenLabsAddWorkspaceInvitesBulkRequestSchema: z.ZodObject<{
808
+ emails: z.ZodArray<z.ZodString>;
809
+ seat_type: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
810
+ workspace_admin: "workspace_admin";
811
+ workspace_member: "workspace_member";
812
+ workspace_lite_member: "workspace_lite_member";
813
+ }>>>;
814
+ group_ids: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
815
+ }, z.core.$strip>;
816
+ export type ElevenLabsAddWorkspaceInvitesBulkRequest = z.input<typeof ElevenLabsAddWorkspaceInvitesBulkRequestSchema>;
817
+ export type ElevenLabsAddWorkspaceInvitesBulkRequestInput = ElevenLabsAddWorkspaceInvitesBulkRequest;
818
+ export type ElevenLabsAddWorkspaceInvitesBulkParsedRequest = z.output<typeof ElevenLabsAddWorkspaceInvitesBulkRequestSchema>;
819
+ export declare const ElevenLabsDeleteWorkspaceInviteRequestSchema: z.ZodObject<{
820
+ email: z.ZodString;
821
+ }, z.core.$strip>;
822
+ export type ElevenLabsDeleteWorkspaceInviteRequest = z.input<typeof ElevenLabsDeleteWorkspaceInviteRequestSchema>;
823
+ export type ElevenLabsDeleteWorkspaceInviteRequestInput = ElevenLabsDeleteWorkspaceInviteRequest;
824
+ export type ElevenLabsDeleteWorkspaceInviteParsedRequest = z.output<typeof ElevenLabsDeleteWorkspaceInviteRequestSchema>;
825
+ export declare const ElevenLabsGetWorkspaceResourceRequestSchema: z.ZodObject<{
826
+ resource_type: z.ZodEnum<{
827
+ voice: "voice";
828
+ voice_collection: "voice_collection";
829
+ pronunciation_dictionary: "pronunciation_dictionary";
830
+ dubbing: "dubbing";
831
+ project: "project";
832
+ convai_agents: "convai_agents";
833
+ convai_knowledge_base_documents: "convai_knowledge_base_documents";
834
+ convai_tools: "convai_tools";
835
+ convai_settings: "convai_settings";
836
+ convai_secrets: "convai_secrets";
837
+ workspace_auth_connections: "workspace_auth_connections";
838
+ convai_phone_numbers: "convai_phone_numbers";
839
+ convai_mcp_servers: "convai_mcp_servers";
840
+ convai_api_integration_connections: "convai_api_integration_connections";
841
+ convai_api_integration_trigger_connections: "convai_api_integration_trigger_connections";
842
+ convai_batch_calls: "convai_batch_calls";
843
+ convai_agent_response_tests: "convai_agent_response_tests";
844
+ convai_test_suite_invocations: "convai_test_suite_invocations";
845
+ convai_crawl_jobs: "convai_crawl_jobs";
846
+ convai_crawl_tasks: "convai_crawl_tasks";
847
+ convai_whatsapp_accounts: "convai_whatsapp_accounts";
848
+ convai_agent_versions: "convai_agent_versions";
849
+ convai_agent_branches: "convai_agent_branches";
850
+ convai_agent_versions_deployments: "convai_agent_versions_deployments";
851
+ convai_memory_entries: "convai_memory_entries";
852
+ convai_coaching_proposals: "convai_coaching_proposals";
853
+ convai_templates: "convai_templates";
854
+ dashboard: "dashboard";
855
+ dashboard_configuration: "dashboard_configuration";
856
+ convai_agent_drafts: "convai_agent_drafts";
857
+ resource_locators: "resource_locators";
858
+ assets: "assets";
859
+ content_generations: "content_generations";
860
+ content_templates: "content_templates";
861
+ songs: "songs";
862
+ transcription_tasks: "transcription_tasks";
863
+ avatars: "avatars";
864
+ avatar_video_generations: "avatar_video_generations";
865
+ resource_collection: "resource_collection";
866
+ studio_projects: "studio_projects";
867
+ }>;
868
+ }, z.core.$strip>;
869
+ export type ElevenLabsGetWorkspaceResourceRequest = z.input<typeof ElevenLabsGetWorkspaceResourceRequestSchema>;
870
+ export type ElevenLabsGetWorkspaceResourceRequestInput = ElevenLabsGetWorkspaceResourceRequest;
871
+ export type ElevenLabsGetWorkspaceResourceParsedRequest = z.output<typeof ElevenLabsGetWorkspaceResourceRequestSchema>;
872
+ export declare const ElevenLabsShareWorkspaceResourceRequestSchema: z.ZodObject<{
873
+ role: z.ZodEnum<{
874
+ admin: "admin";
875
+ editor: "editor";
876
+ commenter: "commenter";
877
+ viewer: "viewer";
878
+ }>;
879
+ resource_type: z.ZodEnum<{
880
+ voice: "voice";
881
+ voice_collection: "voice_collection";
882
+ pronunciation_dictionary: "pronunciation_dictionary";
883
+ dubbing: "dubbing";
884
+ project: "project";
885
+ convai_agents: "convai_agents";
886
+ convai_knowledge_base_documents: "convai_knowledge_base_documents";
887
+ convai_tools: "convai_tools";
888
+ convai_settings: "convai_settings";
889
+ convai_secrets: "convai_secrets";
890
+ workspace_auth_connections: "workspace_auth_connections";
891
+ convai_phone_numbers: "convai_phone_numbers";
892
+ convai_mcp_servers: "convai_mcp_servers";
893
+ convai_api_integration_connections: "convai_api_integration_connections";
894
+ convai_api_integration_trigger_connections: "convai_api_integration_trigger_connections";
895
+ convai_batch_calls: "convai_batch_calls";
896
+ convai_agent_response_tests: "convai_agent_response_tests";
897
+ convai_test_suite_invocations: "convai_test_suite_invocations";
898
+ convai_crawl_jobs: "convai_crawl_jobs";
899
+ convai_crawl_tasks: "convai_crawl_tasks";
900
+ convai_whatsapp_accounts: "convai_whatsapp_accounts";
901
+ convai_agent_versions: "convai_agent_versions";
902
+ convai_agent_branches: "convai_agent_branches";
903
+ convai_agent_versions_deployments: "convai_agent_versions_deployments";
904
+ convai_memory_entries: "convai_memory_entries";
905
+ convai_coaching_proposals: "convai_coaching_proposals";
906
+ convai_templates: "convai_templates";
907
+ dashboard: "dashboard";
908
+ dashboard_configuration: "dashboard_configuration";
909
+ convai_agent_drafts: "convai_agent_drafts";
910
+ resource_locators: "resource_locators";
911
+ assets: "assets";
912
+ content_generations: "content_generations";
913
+ content_templates: "content_templates";
914
+ songs: "songs";
915
+ transcription_tasks: "transcription_tasks";
916
+ avatars: "avatars";
917
+ avatar_video_generations: "avatar_video_generations";
918
+ resource_collection: "resource_collection";
919
+ studio_projects: "studio_projects";
920
+ }>;
921
+ user_email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
922
+ group_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
923
+ workspace_api_key_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
924
+ }, z.core.$strip>;
925
+ export type ElevenLabsShareWorkspaceResourceRequest = z.input<typeof ElevenLabsShareWorkspaceResourceRequestSchema>;
926
+ export type ElevenLabsShareWorkspaceResourceRequestInput = ElevenLabsShareWorkspaceResourceRequest;
927
+ export type ElevenLabsShareWorkspaceResourceParsedRequest = z.output<typeof ElevenLabsShareWorkspaceResourceRequestSchema>;
928
+ export declare const ElevenLabsUnshareWorkspaceResourceRequestSchema: z.ZodObject<{
929
+ resource_type: z.ZodEnum<{
930
+ voice: "voice";
931
+ voice_collection: "voice_collection";
932
+ pronunciation_dictionary: "pronunciation_dictionary";
933
+ dubbing: "dubbing";
934
+ project: "project";
935
+ convai_agents: "convai_agents";
936
+ convai_knowledge_base_documents: "convai_knowledge_base_documents";
937
+ convai_tools: "convai_tools";
938
+ convai_settings: "convai_settings";
939
+ convai_secrets: "convai_secrets";
940
+ workspace_auth_connections: "workspace_auth_connections";
941
+ convai_phone_numbers: "convai_phone_numbers";
942
+ convai_mcp_servers: "convai_mcp_servers";
943
+ convai_api_integration_connections: "convai_api_integration_connections";
944
+ convai_api_integration_trigger_connections: "convai_api_integration_trigger_connections";
945
+ convai_batch_calls: "convai_batch_calls";
946
+ convai_agent_response_tests: "convai_agent_response_tests";
947
+ convai_test_suite_invocations: "convai_test_suite_invocations";
948
+ convai_crawl_jobs: "convai_crawl_jobs";
949
+ convai_crawl_tasks: "convai_crawl_tasks";
950
+ convai_whatsapp_accounts: "convai_whatsapp_accounts";
951
+ convai_agent_versions: "convai_agent_versions";
952
+ convai_agent_branches: "convai_agent_branches";
953
+ convai_agent_versions_deployments: "convai_agent_versions_deployments";
954
+ convai_memory_entries: "convai_memory_entries";
955
+ convai_coaching_proposals: "convai_coaching_proposals";
956
+ convai_templates: "convai_templates";
957
+ dashboard: "dashboard";
958
+ dashboard_configuration: "dashboard_configuration";
959
+ convai_agent_drafts: "convai_agent_drafts";
960
+ resource_locators: "resource_locators";
961
+ assets: "assets";
962
+ content_generations: "content_generations";
963
+ content_templates: "content_templates";
964
+ songs: "songs";
965
+ transcription_tasks: "transcription_tasks";
966
+ avatars: "avatars";
967
+ avatar_video_generations: "avatar_video_generations";
968
+ resource_collection: "resource_collection";
969
+ studio_projects: "studio_projects";
970
+ }>;
971
+ user_email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
972
+ group_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
973
+ workspace_api_key_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
974
+ }, z.core.$strip>;
975
+ export type ElevenLabsUnshareWorkspaceResourceRequest = z.input<typeof ElevenLabsUnshareWorkspaceResourceRequestSchema>;
976
+ export type ElevenLabsUnshareWorkspaceResourceRequestInput = ElevenLabsUnshareWorkspaceResourceRequest;
977
+ export type ElevenLabsUnshareWorkspaceResourceParsedRequest = z.output<typeof ElevenLabsUnshareWorkspaceResourceRequestSchema>;
978
+ export declare const ElevenLabsListWorkspaceWebhooksRequestSchema: z.ZodObject<{
979
+ include_usages: z.ZodOptional<z.ZodBoolean>;
980
+ }, z.core.$strip>;
981
+ export type ElevenLabsListWorkspaceWebhooksRequest = z.input<typeof ElevenLabsListWorkspaceWebhooksRequestSchema>;
982
+ export type ElevenLabsListWorkspaceWebhooksRequestInput = ElevenLabsListWorkspaceWebhooksRequest;
983
+ export type ElevenLabsListWorkspaceWebhooksParsedRequest = z.output<typeof ElevenLabsListWorkspaceWebhooksRequestSchema>;
984
+ export declare const ElevenLabsCreateWorkspaceWebhookRequestSchema: z.ZodObject<{
985
+ settings: z.ZodObject<{
986
+ auth_type: z.ZodLiteral<"hmac">;
987
+ name: z.ZodString;
988
+ webhook_url: z.ZodString;
989
+ request_headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
990
+ }, z.core.$strip>;
991
+ }, z.core.$strip>;
992
+ export type ElevenLabsCreateWorkspaceWebhookRequest = z.input<typeof ElevenLabsCreateWorkspaceWebhookRequestSchema>;
993
+ export type ElevenLabsCreateWorkspaceWebhookRequestInput = ElevenLabsCreateWorkspaceWebhookRequest;
994
+ export type ElevenLabsCreateWorkspaceWebhookParsedRequest = z.output<typeof ElevenLabsCreateWorkspaceWebhookRequestSchema>;
995
+ export declare const ElevenLabsUpdateWorkspaceWebhookRequestSchema: z.ZodObject<{
996
+ is_disabled: z.ZodBoolean;
997
+ name: z.ZodString;
998
+ retry_enabled: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
999
+ request_headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
1000
+ }, z.core.$strip>;
1001
+ export type ElevenLabsUpdateWorkspaceWebhookRequest = z.input<typeof ElevenLabsUpdateWorkspaceWebhookRequestSchema>;
1002
+ export type ElevenLabsUpdateWorkspaceWebhookRequestInput = ElevenLabsUpdateWorkspaceWebhookRequest;
1003
+ export type ElevenLabsUpdateWorkspaceWebhookParsedRequest = z.output<typeof ElevenLabsUpdateWorkspaceWebhookRequestSchema>;
1004
+ export declare const ElevenLabsCreateWorkspaceAuthConnectionRequestSchema: z.ZodUnion<readonly [z.ZodObject<{
1005
+ name: z.ZodString;
1006
+ auth_type: z.ZodOptional<z.ZodLiteral<"oauth2_client_credentials">>;
1007
+ provider: z.ZodString;
1008
+ client_id: z.ZodString;
1009
+ token_url: z.ZodString;
1010
+ scopes: z.ZodOptional<z.ZodArray<z.ZodString>>;
1011
+ extra_params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1012
+ basic_auth_in_header: z.ZodOptional<z.ZodBoolean>;
1013
+ client_secret: z.ZodString;
1014
+ custom_headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1015
+ }, z.core.$strip>, z.ZodObject<{
1016
+ name: z.ZodString;
1017
+ auth_type: z.ZodOptional<z.ZodLiteral<"custom_header_auth">>;
1018
+ provider: z.ZodString;
1019
+ header_name: z.ZodString;
1020
+ token: z.ZodString;
1021
+ }, z.core.$strip>, z.ZodObject<{
1022
+ name: z.ZodString;
1023
+ auth_type: z.ZodOptional<z.ZodLiteral<"basic_auth">>;
1024
+ provider: z.ZodString;
1025
+ username: z.ZodString;
1026
+ password: z.ZodString;
1027
+ }, z.core.$strip>, z.ZodObject<{
1028
+ name: z.ZodString;
1029
+ auth_type: z.ZodOptional<z.ZodLiteral<"bearer_auth">>;
1030
+ provider: z.ZodString;
1031
+ token: z.ZodString;
1032
+ }, z.core.$strip>, z.ZodObject<{
1033
+ name: z.ZodString;
1034
+ auth_type: z.ZodOptional<z.ZodLiteral<"oauth2_jwt">>;
1035
+ provider: z.ZodString;
1036
+ algorithm: z.ZodOptional<z.ZodEnum<{
1037
+ HS256: "HS256";
1038
+ HS384: "HS384";
1039
+ HS512: "HS512";
1040
+ RS256: "RS256";
1041
+ RS384: "RS384";
1042
+ RS512: "RS512";
1043
+ }>>;
1044
+ key_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1045
+ issuer: z.ZodString;
1046
+ audience: z.ZodString;
1047
+ subject: z.ZodString;
1048
+ expiration_seconds: z.ZodOptional<z.ZodNumber>;
1049
+ extra_params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1050
+ token_url: z.ZodString;
1051
+ scopes: z.ZodOptional<z.ZodArray<z.ZodString>>;
1052
+ token_response_field: z.ZodOptional<z.ZodEnum<{
1053
+ access_token: "access_token";
1054
+ id_token: "id_token";
1055
+ }>>;
1056
+ secret_key: z.ZodString;
1057
+ }, z.core.$strip>, z.ZodObject<{
1058
+ name: z.ZodString;
1059
+ auth_type: z.ZodOptional<z.ZodLiteral<"private_key_jwt">>;
1060
+ provider: z.ZodString;
1061
+ algorithm: z.ZodOptional<z.ZodEnum<{
1062
+ HS256: "HS256";
1063
+ HS384: "HS384";
1064
+ HS512: "HS512";
1065
+ RS256: "RS256";
1066
+ RS384: "RS384";
1067
+ RS512: "RS512";
1068
+ }>>;
1069
+ key_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1070
+ issuer: z.ZodString;
1071
+ audience: z.ZodString;
1072
+ subject: z.ZodString;
1073
+ expiration_seconds: z.ZodOptional<z.ZodNumber>;
1074
+ extra_params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1075
+ secret_key: z.ZodString;
1076
+ }, z.core.$strip>, z.ZodObject<{
1077
+ name: z.ZodString;
1078
+ auth_type: z.ZodOptional<z.ZodLiteral<"mtls">>;
1079
+ provider: z.ZodString;
1080
+ client_certificate: z.ZodString;
1081
+ client_key: z.ZodString;
1082
+ ca_certificate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1083
+ key_passphrase: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1084
+ }, z.core.$strip>]>;
1085
+ export type ElevenLabsCreateWorkspaceAuthConnectionRequest = z.input<typeof ElevenLabsCreateWorkspaceAuthConnectionRequestSchema>;
1086
+ export type ElevenLabsCreateWorkspaceAuthConnectionRequestInput = ElevenLabsCreateWorkspaceAuthConnectionRequest;
1087
+ export type ElevenLabsCreateWorkspaceAuthConnectionParsedRequest = z.output<typeof ElevenLabsCreateWorkspaceAuthConnectionRequestSchema>;
1088
+ export declare const ElevenLabsUpdateWorkspaceAuthConnectionRequestSchema: z.ZodUnion<readonly [z.ZodObject<{
1089
+ auth_type: z.ZodOptional<z.ZodLiteral<"oauth2_client_credentials">>;
1090
+ provider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1091
+ client_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1092
+ scopes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
1093
+ extra_params: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
1094
+ basic_auth_in_header: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1095
+ client_secret: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1096
+ custom_headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
1097
+ }, z.core.$strip>, z.ZodObject<{
1098
+ auth_type: z.ZodOptional<z.ZodLiteral<"basic_auth">>;
1099
+ provider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1100
+ username: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1101
+ password: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1102
+ }, z.core.$strip>, z.ZodObject<{
1103
+ auth_type: z.ZodOptional<z.ZodLiteral<"bearer_auth">>;
1104
+ provider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1105
+ token: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1106
+ }, z.core.$strip>, z.ZodObject<{
1107
+ auth_type: z.ZodOptional<z.ZodLiteral<"oauth2_jwt">>;
1108
+ provider: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1109
+ algorithm: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
1110
+ HS256: "HS256";
1111
+ HS384: "HS384";
1112
+ HS512: "HS512";
1113
+ RS256: "RS256";
1114
+ RS384: "RS384";
1115
+ RS512: "RS512";
1116
+ }>>>;
1117
+ key_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1118
+ issuer: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1119
+ audience: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1120
+ subject: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1121
+ expiration_seconds: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1122
+ extra_params: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
1123
+ scopes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
1124
+ token_response_field: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
1125
+ access_token: "access_token";
1126
+ id_token: "id_token";
1127
+ }>>>;
1128
+ secret_key: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1129
+ }, z.core.$strip>]>;
1130
+ export type ElevenLabsUpdateWorkspaceAuthConnectionRequest = z.input<typeof ElevenLabsUpdateWorkspaceAuthConnectionRequestSchema>;
1131
+ export type ElevenLabsUpdateWorkspaceAuthConnectionRequestInput = ElevenLabsUpdateWorkspaceAuthConnectionRequest;
1132
+ export type ElevenLabsUpdateWorkspaceAuthConnectionParsedRequest = z.output<typeof ElevenLabsUpdateWorkspaceAuthConnectionRequestSchema>;
1133
+ export declare const ElevenLabsDisableWorkspaceApiKeyRequestSchema: z.ZodObject<{
1134
+ api_key_name: z.ZodLiteral<"self">;
1135
+ }, z.core.$strip>;
1136
+ export type ElevenLabsDisableWorkspaceApiKeyRequest = z.input<typeof ElevenLabsDisableWorkspaceApiKeyRequestSchema>;
1137
+ export type ElevenLabsDisableWorkspaceApiKeyRequestInput = ElevenLabsDisableWorkspaceApiKeyRequest;
1138
+ export type ElevenLabsDisableWorkspaceApiKeyParsedRequest = z.output<typeof ElevenLabsDisableWorkspaceApiKeyRequestSchema>;
1139
+ export declare const ElevenLabsSetWorkspaceApiKeyThirdPartyDisablingRequestSchema: z.ZodObject<{
1140
+ third_party_disable_allowed: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1141
+ }, z.core.$strip>;
1142
+ export type ElevenLabsSetWorkspaceApiKeyThirdPartyDisablingRequest = z.input<typeof ElevenLabsSetWorkspaceApiKeyThirdPartyDisablingRequestSchema>;
1143
+ export type ElevenLabsSetWorkspaceApiKeyThirdPartyDisablingRequestInput = ElevenLabsSetWorkspaceApiKeyThirdPartyDisablingRequest;
1144
+ export type ElevenLabsSetWorkspaceApiKeyThirdPartyDisablingParsedRequest = z.output<typeof ElevenLabsSetWorkspaceApiKeyThirdPartyDisablingRequestSchema>;
1145
+ export declare const ElevenLabsCreateServiceAccountApiKeyRequestSchema: z.ZodObject<{
1146
+ name: z.ZodString;
1147
+ permissions: z.ZodUnion<readonly [z.ZodArray<z.ZodEnum<{
1148
+ text_to_speech: "text_to_speech";
1149
+ speech_to_speech: "speech_to_speech";
1150
+ speech_to_text: "speech_to_text";
1151
+ models_read: "models_read";
1152
+ models_write: "models_write";
1153
+ voices_read: "voices_read";
1154
+ voices_write: "voices_write";
1155
+ speech_history_read: "speech_history_read";
1156
+ speech_history_write: "speech_history_write";
1157
+ sound_generation: "sound_generation";
1158
+ audio_isolation: "audio_isolation";
1159
+ voice_generation: "voice_generation";
1160
+ dubbing_read: "dubbing_read";
1161
+ dubbing_write: "dubbing_write";
1162
+ pronunciation_dictionaries_read: "pronunciation_dictionaries_read";
1163
+ pronunciation_dictionaries_write: "pronunciation_dictionaries_write";
1164
+ user_read: "user_read";
1165
+ user_write: "user_write";
1166
+ projects_read: "projects_read";
1167
+ projects_write: "projects_write";
1168
+ audio_native_read: "audio_native_read";
1169
+ audio_native_write: "audio_native_write";
1170
+ workspace_read: "workspace_read";
1171
+ workspace_write: "workspace_write";
1172
+ forced_alignment: "forced_alignment";
1173
+ convai_read: "convai_read";
1174
+ convai_write: "convai_write";
1175
+ music_generation: "music_generation";
1176
+ image_video_generation: "image_video_generation";
1177
+ add_voice_from_voice_library: "add_voice_from_voice_library";
1178
+ create_instant_voice_clone: "create_instant_voice_clone";
1179
+ create_professional_voice_clone: "create_professional_voice_clone";
1180
+ publish_voice_to_voice_library: "publish_voice_to_voice_library";
1181
+ share_voice_externally: "share_voice_externally";
1182
+ create_user_api_key: "create_user_api_key";
1183
+ workspace_analytics_full_read: "workspace_analytics_full_read";
1184
+ webhooks_write: "webhooks_write";
1185
+ service_account_write: "service_account_write";
1186
+ group_members_manage: "group_members_manage";
1187
+ workspace_members_read: "workspace_members_read";
1188
+ workspace_members_invite: "workspace_members_invite";
1189
+ workspace_members_remove: "workspace_members_remove";
1190
+ terms_of_service_accept: "terms_of_service_accept";
1191
+ audit_log_read: "audit_log_read";
1192
+ conversation_privacy_manage: "conversation_privacy_manage";
1193
+ copy_resources_cross_workspace: "copy_resources_cross_workspace";
1194
+ synthid_detector: "synthid_detector";
1195
+ }>>, z.ZodLiteral<"all">]>;
1196
+ character_limit: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1197
+ allowed_ips: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
1198
+ third_party_disable_allowed: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1199
+ }, z.core.$strip>;
1200
+ export type ElevenLabsCreateServiceAccountApiKeyRequest = z.input<typeof ElevenLabsCreateServiceAccountApiKeyRequestSchema>;
1201
+ export type ElevenLabsCreateServiceAccountApiKeyRequestInput = ElevenLabsCreateServiceAccountApiKeyRequest;
1202
+ export type ElevenLabsCreateServiceAccountApiKeyParsedRequest = z.output<typeof ElevenLabsCreateServiceAccountApiKeyRequestSchema>;
1203
+ export declare const ElevenLabsUpdateServiceAccountApiKeyRequestSchema: z.ZodObject<{
1204
+ is_enabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodLiteral<"no_update">]>>;
1205
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1206
+ permissions: z.ZodOptional<z.ZodUnion<readonly [z.ZodArray<z.ZodEnum<{
1207
+ text_to_speech: "text_to_speech";
1208
+ speech_to_speech: "speech_to_speech";
1209
+ speech_to_text: "speech_to_text";
1210
+ models_read: "models_read";
1211
+ models_write: "models_write";
1212
+ voices_read: "voices_read";
1213
+ voices_write: "voices_write";
1214
+ speech_history_read: "speech_history_read";
1215
+ speech_history_write: "speech_history_write";
1216
+ sound_generation: "sound_generation";
1217
+ audio_isolation: "audio_isolation";
1218
+ voice_generation: "voice_generation";
1219
+ dubbing_read: "dubbing_read";
1220
+ dubbing_write: "dubbing_write";
1221
+ pronunciation_dictionaries_read: "pronunciation_dictionaries_read";
1222
+ pronunciation_dictionaries_write: "pronunciation_dictionaries_write";
1223
+ user_read: "user_read";
1224
+ user_write: "user_write";
1225
+ projects_read: "projects_read";
1226
+ projects_write: "projects_write";
1227
+ audio_native_read: "audio_native_read";
1228
+ audio_native_write: "audio_native_write";
1229
+ workspace_read: "workspace_read";
1230
+ workspace_write: "workspace_write";
1231
+ forced_alignment: "forced_alignment";
1232
+ convai_read: "convai_read";
1233
+ convai_write: "convai_write";
1234
+ music_generation: "music_generation";
1235
+ image_video_generation: "image_video_generation";
1236
+ add_voice_from_voice_library: "add_voice_from_voice_library";
1237
+ create_instant_voice_clone: "create_instant_voice_clone";
1238
+ create_professional_voice_clone: "create_professional_voice_clone";
1239
+ publish_voice_to_voice_library: "publish_voice_to_voice_library";
1240
+ share_voice_externally: "share_voice_externally";
1241
+ create_user_api_key: "create_user_api_key";
1242
+ workspace_analytics_full_read: "workspace_analytics_full_read";
1243
+ webhooks_write: "webhooks_write";
1244
+ service_account_write: "service_account_write";
1245
+ group_members_manage: "group_members_manage";
1246
+ workspace_members_read: "workspace_members_read";
1247
+ workspace_members_invite: "workspace_members_invite";
1248
+ workspace_members_remove: "workspace_members_remove";
1249
+ terms_of_service_accept: "terms_of_service_accept";
1250
+ audit_log_read: "audit_log_read";
1251
+ conversation_privacy_manage: "conversation_privacy_manage";
1252
+ copy_resources_cross_workspace: "copy_resources_cross_workspace";
1253
+ synthid_detector: "synthid_detector";
1254
+ }>>, z.ZodEnum<{
1255
+ all: "all";
1256
+ no_update: "no_update";
1257
+ }>]>>;
1258
+ character_limit: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodLiteral<"no_update">, z.ZodNull]>>;
1259
+ allowed_ips: z.ZodOptional<z.ZodUnion<readonly [z.ZodArray<z.ZodString>, z.ZodEnum<{
1260
+ no_update: "no_update";
1261
+ clear: "clear";
1262
+ }>]>>;
1263
+ third_party_disable_allowed: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodEnum<{
1264
+ no_update: "no_update";
1265
+ clear: "clear";
1266
+ }>]>>;
1267
+ }, z.core.$strip>;
1268
+ export type ElevenLabsUpdateServiceAccountApiKeyRequest = z.input<typeof ElevenLabsUpdateServiceAccountApiKeyRequestSchema>;
1269
+ export type ElevenLabsUpdateServiceAccountApiKeyRequestInput = ElevenLabsUpdateServiceAccountApiKeyRequest;
1270
+ export type ElevenLabsUpdateServiceAccountApiKeyParsedRequest = z.output<typeof ElevenLabsUpdateServiceAccountApiKeyRequestSchema>;
211
1271
  export declare const ElevenLabsWorkspaceAnalyticsColumnFilterSchema: z.ZodObject<{
212
1272
  column: z.ZodString;
213
1273
  operation: z.ZodEnum<{
@@ -353,6 +1413,296 @@ export declare const ElevenLabsGetAgentWidgetRequestSchema: z.ZodObject<{
353
1413
  export type ElevenLabsGetAgentWidgetRequest = z.input<typeof ElevenLabsGetAgentWidgetRequestSchema>;
354
1414
  export type ElevenLabsGetAgentWidgetRequestInput = ElevenLabsGetAgentWidgetRequest;
355
1415
  export type ElevenLabsGetAgentWidgetParsedRequest = z.output<typeof ElevenLabsGetAgentWidgetRequestSchema>;
1416
+ export declare const ElevenLabsListAgentBranchesRequestSchema: z.ZodObject<{
1417
+ include_archived: z.ZodOptional<z.ZodBoolean>;
1418
+ limit: z.ZodOptional<z.ZodNumber>;
1419
+ }, z.core.$strip>;
1420
+ export type ElevenLabsListAgentBranchesRequest = z.input<typeof ElevenLabsListAgentBranchesRequestSchema>;
1421
+ export type ElevenLabsListAgentBranchesRequestInput = ElevenLabsListAgentBranchesRequest;
1422
+ export type ElevenLabsListAgentBranchesParsedRequest = z.output<typeof ElevenLabsListAgentBranchesRequestSchema>;
1423
+ export declare const ElevenLabsGetAgentSummariesRequestSchema: z.ZodObject<{
1424
+ agent_ids: z.ZodArray<z.ZodString>;
1425
+ }, z.core.$strip>;
1426
+ export type ElevenLabsGetAgentSummariesRequest = z.input<typeof ElevenLabsGetAgentSummariesRequestSchema>;
1427
+ export type ElevenLabsGetAgentSummariesRequestInput = ElevenLabsGetAgentSummariesRequest;
1428
+ export type ElevenLabsGetAgentSummariesParsedRequest = z.output<typeof ElevenLabsGetAgentSummariesRequestSchema>;
1429
+ export declare const ElevenLabsDuplicateAgentRequestSchema: z.ZodObject<{
1430
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1431
+ }, z.core.$strip>;
1432
+ export type ElevenLabsDuplicateAgentRequest = z.input<typeof ElevenLabsDuplicateAgentRequestSchema>;
1433
+ export type ElevenLabsDuplicateAgentRequestInput = ElevenLabsDuplicateAgentRequest;
1434
+ export type ElevenLabsDuplicateAgentParsedRequest = z.output<typeof ElevenLabsDuplicateAgentRequestSchema>;
1435
+ export declare const ElevenLabsPostAgentAvatarRequestSchema: z.ZodObject<{
1436
+ avatar_file: z.ZodCustom<Blob, Blob>;
1437
+ }, z.core.$strip>;
1438
+ export type ElevenLabsPostAgentAvatarRequest = z.input<typeof ElevenLabsPostAgentAvatarRequestSchema>;
1439
+ export type ElevenLabsPostAgentAvatarRequestInput = ElevenLabsPostAgentAvatarRequest;
1440
+ export type ElevenLabsPostAgentAvatarParsedRequest = z.output<typeof ElevenLabsPostAgentAvatarRequestSchema>;
1441
+ export declare const ElevenLabsSimulateConversationRequestSchema: z.ZodObject<{
1442
+ simulation_specification: z.ZodRecord<z.ZodString, z.ZodUnknown>;
1443
+ extra_evaluation_criteria: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
1444
+ new_turns_limit: z.ZodOptional<z.ZodNumber>;
1445
+ }, z.core.$strip>;
1446
+ export type ElevenLabsSimulateConversationRequest = z.input<typeof ElevenLabsSimulateConversationRequestSchema>;
1447
+ export type ElevenLabsSimulateConversationRequestInput = ElevenLabsSimulateConversationRequest;
1448
+ export type ElevenLabsSimulateConversationParsedRequest = z.output<typeof ElevenLabsSimulateConversationRequestSchema>;
1449
+ export declare const ElevenLabsGetAgentTopicsRequestSchema: z.ZodObject<{
1450
+ from_unix_secs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1451
+ to_unix_secs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1452
+ }, z.core.$strip>;
1453
+ export type ElevenLabsGetAgentTopicsRequest = z.input<typeof ElevenLabsGetAgentTopicsRequestSchema>;
1454
+ export type ElevenLabsGetAgentTopicsRequestInput = ElevenLabsGetAgentTopicsRequest;
1455
+ export type ElevenLabsGetAgentTopicsParsedRequest = z.output<typeof ElevenLabsGetAgentTopicsRequestSchema>;
1456
+ export declare const ElevenLabsCalculateAgentLlmUsageRequestSchema: z.ZodObject<{
1457
+ prompt_length: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1458
+ number_of_pages: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1459
+ rag_enabled: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1460
+ }, z.core.$strip>;
1461
+ export type ElevenLabsCalculateAgentLlmUsageRequest = z.input<typeof ElevenLabsCalculateAgentLlmUsageRequestSchema>;
1462
+ export type ElevenLabsCalculateAgentLlmUsageRequestInput = ElevenLabsCalculateAgentLlmUsageRequest;
1463
+ export type ElevenLabsCalculateAgentLlmUsageParsedRequest = z.output<typeof ElevenLabsCalculateAgentLlmUsageRequestSchema>;
1464
+ export declare const ElevenLabsCreateAgentDraftRequestSchema: z.ZodObject<{
1465
+ branch_id: z.ZodString;
1466
+ conversation_config: z.ZodRecord<z.ZodString, z.ZodUnknown>;
1467
+ platform_settings: z.ZodRecord<z.ZodString, z.ZodUnknown>;
1468
+ workflow: z.ZodRecord<z.ZodString, z.ZodUnknown>;
1469
+ name: z.ZodString;
1470
+ tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
1471
+ }, z.core.$strip>;
1472
+ export type ElevenLabsCreateAgentDraftRequest = z.input<typeof ElevenLabsCreateAgentDraftRequestSchema>;
1473
+ export type ElevenLabsCreateAgentDraftRequestInput = ElevenLabsCreateAgentDraftRequest;
1474
+ export type ElevenLabsCreateAgentDraftParsedRequest = z.output<typeof ElevenLabsCreateAgentDraftRequestSchema>;
1475
+ export declare const ElevenLabsDeleteAgentDraftRequestSchema: z.ZodObject<{
1476
+ branch_id: z.ZodString;
1477
+ }, z.core.$strip>;
1478
+ export type ElevenLabsDeleteAgentDraftRequest = z.input<typeof ElevenLabsDeleteAgentDraftRequestSchema>;
1479
+ export type ElevenLabsDeleteAgentDraftRequestInput = ElevenLabsDeleteAgentDraftRequest;
1480
+ export type ElevenLabsDeleteAgentDraftParsedRequest = z.output<typeof ElevenLabsDeleteAgentDraftRequestSchema>;
1481
+ export declare const ElevenLabsCreateAgentDeploymentRequestSchema: z.ZodObject<{
1482
+ deployment_request: z.ZodObject<{
1483
+ requests: z.ZodArray<z.ZodObject<{
1484
+ branch_id: z.ZodString;
1485
+ deployment_strategy: z.ZodRecord<z.ZodString, z.ZodUnknown>;
1486
+ }, z.core.$strip>>;
1487
+ }, z.core.$strip>;
1488
+ }, z.core.$strip>;
1489
+ export type ElevenLabsCreateAgentDeploymentRequest = z.input<typeof ElevenLabsCreateAgentDeploymentRequestSchema>;
1490
+ export type ElevenLabsCreateAgentDeploymentRequestInput = ElevenLabsCreateAgentDeploymentRequest;
1491
+ export type ElevenLabsCreateAgentDeploymentParsedRequest = z.output<typeof ElevenLabsCreateAgentDeploymentRequestSchema>;
1492
+ export declare const ElevenLabsCreateAgentBranchRequestSchema: z.ZodObject<{
1493
+ parent_version_id: z.ZodString;
1494
+ name: z.ZodString;
1495
+ description: z.ZodString;
1496
+ conversation_config: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
1497
+ platform_settings: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
1498
+ workflow: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
1499
+ }, z.core.$strip>;
1500
+ export type ElevenLabsCreateAgentBranchRequest = z.input<typeof ElevenLabsCreateAgentBranchRequestSchema>;
1501
+ export type ElevenLabsCreateAgentBranchRequestInput = ElevenLabsCreateAgentBranchRequest;
1502
+ export type ElevenLabsCreateAgentBranchParsedRequest = z.output<typeof ElevenLabsCreateAgentBranchRequestSchema>;
1503
+ export declare const ElevenLabsUpdateAgentBranchRequestSchema: z.ZodObject<{
1504
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1505
+ is_archived: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1506
+ protection_status: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
1507
+ writer_perms_required: "writer_perms_required";
1508
+ admin_perms_required: "admin_perms_required";
1509
+ }>>>;
1510
+ }, z.core.$strip>;
1511
+ export type ElevenLabsUpdateAgentBranchRequest = z.input<typeof ElevenLabsUpdateAgentBranchRequestSchema>;
1512
+ export type ElevenLabsUpdateAgentBranchRequestInput = ElevenLabsUpdateAgentBranchRequest;
1513
+ export type ElevenLabsUpdateAgentBranchParsedRequest = z.output<typeof ElevenLabsUpdateAgentBranchRequestSchema>;
1514
+ export declare const ElevenLabsMergeAgentBranchRequestSchema: z.ZodObject<{
1515
+ target_branch_id: z.ZodString;
1516
+ archive_source_branch: z.ZodOptional<z.ZodBoolean>;
1517
+ force: z.ZodOptional<z.ZodBoolean>;
1518
+ }, z.core.$strip>;
1519
+ export type ElevenLabsMergeAgentBranchRequest = z.input<typeof ElevenLabsMergeAgentBranchRequestSchema>;
1520
+ export type ElevenLabsMergeAgentBranchRequestInput = ElevenLabsMergeAgentBranchRequest;
1521
+ export type ElevenLabsMergeAgentBranchParsedRequest = z.output<typeof ElevenLabsMergeAgentBranchRequestSchema>;
1522
+ export declare const ElevenLabsPreviewAgentBranchMergeRequestSchema: z.ZodObject<{
1523
+ target_branch_id: z.ZodString;
1524
+ force: z.ZodOptional<z.ZodBoolean>;
1525
+ }, z.core.$strip>;
1526
+ export type ElevenLabsPreviewAgentBranchMergeRequest = z.input<typeof ElevenLabsPreviewAgentBranchMergeRequestSchema>;
1527
+ export type ElevenLabsPreviewAgentBranchMergeRequestInput = ElevenLabsPreviewAgentBranchMergeRequest;
1528
+ export type ElevenLabsPreviewAgentBranchMergeParsedRequest = z.output<typeof ElevenLabsPreviewAgentBranchMergeRequestSchema>;
1529
+ export declare const ElevenLabsGetLiveConversationCountRequestSchema: z.ZodObject<{
1530
+ agent_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1531
+ }, z.core.$strip>;
1532
+ export type ElevenLabsGetLiveConversationCountRequest = z.input<typeof ElevenLabsGetLiveConversationCountRequestSchema>;
1533
+ export type ElevenLabsGetLiveConversationCountRequestInput = ElevenLabsGetLiveConversationCountRequest;
1534
+ export type ElevenLabsGetLiveConversationCountParsedRequest = z.output<typeof ElevenLabsGetLiveConversationCountRequestSchema>;
1535
+ export declare const ElevenLabsListConversationUsersRequestSchema: z.ZodObject<{
1536
+ agent_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1537
+ branch_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1538
+ call_start_before_unix: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1539
+ call_start_after_unix: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1540
+ search: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1541
+ page_size: z.ZodOptional<z.ZodNumber>;
1542
+ sort_by: z.ZodOptional<z.ZodEnum<{
1543
+ last_contact_unix_secs: "last_contact_unix_secs";
1544
+ conversation_count: "conversation_count";
1545
+ }>>;
1546
+ cursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1547
+ }, z.core.$strip>;
1548
+ export type ElevenLabsListConversationUsersRequest = z.input<typeof ElevenLabsListConversationUsersRequestSchema>;
1549
+ export type ElevenLabsListConversationUsersRequestInput = ElevenLabsListConversationUsersRequest;
1550
+ export type ElevenLabsListConversationUsersParsedRequest = z.output<typeof ElevenLabsListConversationUsersRequestSchema>;
1551
+ export declare const ElevenLabsCalculateLlmUsageRequestSchema: z.ZodObject<{
1552
+ prompt_length: z.ZodNumber;
1553
+ number_of_pages: z.ZodNumber;
1554
+ rag_enabled: z.ZodBoolean;
1555
+ }, z.core.$strip>;
1556
+ export type ElevenLabsCalculateLlmUsageRequest = z.input<typeof ElevenLabsCalculateLlmUsageRequestSchema>;
1557
+ export type ElevenLabsCalculateLlmUsageRequestInput = ElevenLabsCalculateLlmUsageRequest;
1558
+ export type ElevenLabsCalculateLlmUsageParsedRequest = z.output<typeof ElevenLabsCalculateLlmUsageRequestSchema>;
1559
+ export declare const ElevenLabsListConversationTagsRequestSchema: z.ZodObject<{
1560
+ page_size: z.ZodOptional<z.ZodNumber>;
1561
+ cursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1562
+ }, z.core.$strip>;
1563
+ export type ElevenLabsListConversationTagsRequest = z.input<typeof ElevenLabsListConversationTagsRequestSchema>;
1564
+ export type ElevenLabsListConversationTagsRequestInput = ElevenLabsListConversationTagsRequest;
1565
+ export type ElevenLabsListConversationTagsParsedRequest = z.output<typeof ElevenLabsListConversationTagsRequestSchema>;
1566
+ export declare const ElevenLabsCreateConversationTagRequestSchema: z.ZodObject<{
1567
+ title: z.ZodString;
1568
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1569
+ }, z.core.$strip>;
1570
+ export type ElevenLabsCreateConversationTagRequest = z.input<typeof ElevenLabsCreateConversationTagRequestSchema>;
1571
+ export type ElevenLabsCreateConversationTagRequestInput = ElevenLabsCreateConversationTagRequest;
1572
+ export type ElevenLabsCreateConversationTagParsedRequest = z.output<typeof ElevenLabsCreateConversationTagRequestSchema>;
1573
+ export declare const ElevenLabsUpdateConversationTagRequestSchema: z.ZodObject<{
1574
+ title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1575
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1576
+ }, z.core.$strip>;
1577
+ export type ElevenLabsUpdateConversationTagRequest = z.input<typeof ElevenLabsUpdateConversationTagRequestSchema>;
1578
+ export type ElevenLabsUpdateConversationTagRequestInput = ElevenLabsUpdateConversationTagRequest;
1579
+ export type ElevenLabsUpdateConversationTagParsedRequest = z.output<typeof ElevenLabsUpdateConversationTagRequestSchema>;
1580
+ export declare const ElevenLabsUpdateConvaiSettingsRequestSchema: z.ZodObject<{
1581
+ conversation_initiation_client_data_webhook: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1582
+ url: z.ZodString;
1583
+ request_headers: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
1584
+ secret_id: z.ZodString;
1585
+ }, z.core.$strip>]>>;
1586
+ }, z.core.$strip>>>;
1587
+ webhooks: z.ZodOptional<z.ZodObject<{
1588
+ post_call_webhook_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1589
+ events: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1590
+ audio: "audio";
1591
+ transcript: "transcript";
1592
+ call_initiation_failure: "call_initiation_failure";
1593
+ unredacted_transcript: "unredacted_transcript";
1594
+ unredacted_audio: "unredacted_audio";
1595
+ }>>>;
1596
+ transcript_format: z.ZodOptional<z.ZodEnum<{
1597
+ json: "json";
1598
+ opentelemetry: "opentelemetry";
1599
+ }>>;
1600
+ send_audio: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1601
+ }, z.core.$strip>>;
1602
+ can_use_mcp_servers: z.ZodOptional<z.ZodBoolean>;
1603
+ rag_retention_period_days: z.ZodOptional<z.ZodNumber>;
1604
+ conversation_embedding_retention_days: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1605
+ default_livekit_stack: z.ZodOptional<z.ZodEnum<{
1606
+ standard: "standard";
1607
+ static: "static";
1608
+ }>>;
1609
+ }, z.core.$strip>;
1610
+ export type ElevenLabsUpdateConvaiSettingsRequest = z.input<typeof ElevenLabsUpdateConvaiSettingsRequestSchema>;
1611
+ export type ElevenLabsUpdateConvaiSettingsRequestInput = ElevenLabsUpdateConvaiSettingsRequest;
1612
+ export type ElevenLabsUpdateConvaiSettingsParsedRequest = z.output<typeof ElevenLabsUpdateConvaiSettingsRequestSchema>;
1613
+ export declare const ElevenLabsUpdateConvaiDashboardSettingsRequestSchema: z.ZodObject<{
1614
+ charts: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
1615
+ name: z.ZodString;
1616
+ type: z.ZodOptional<z.ZodLiteral<"call_success">>;
1617
+ }, z.core.$strip>, z.ZodObject<{
1618
+ name: z.ZodString;
1619
+ type: z.ZodOptional<z.ZodLiteral<"criteria">>;
1620
+ criteria_id: z.ZodString;
1621
+ }, z.core.$strip>, z.ZodObject<{
1622
+ name: z.ZodString;
1623
+ type: z.ZodOptional<z.ZodLiteral<"data_collection">>;
1624
+ data_collection_id: z.ZodString;
1625
+ }, z.core.$strip>]>>>;
1626
+ }, z.core.$strip>;
1627
+ export type ElevenLabsUpdateConvaiDashboardSettingsRequest = z.input<typeof ElevenLabsUpdateConvaiDashboardSettingsRequestSchema>;
1628
+ export type ElevenLabsUpdateConvaiDashboardSettingsRequestInput = ElevenLabsUpdateConvaiDashboardSettingsRequest;
1629
+ export type ElevenLabsUpdateConvaiDashboardSettingsParsedRequest = z.output<typeof ElevenLabsUpdateConvaiDashboardSettingsRequestSchema>;
1630
+ export declare const ElevenLabsCreateWorkspaceSecretRequestSchema: z.ZodObject<{
1631
+ type: z.ZodLiteral<"new">;
1632
+ name: z.ZodString;
1633
+ value: z.ZodString;
1634
+ }, z.core.$strip>;
1635
+ export type ElevenLabsCreateWorkspaceSecretRequest = z.input<typeof ElevenLabsCreateWorkspaceSecretRequestSchema>;
1636
+ export type ElevenLabsCreateWorkspaceSecretRequestInput = ElevenLabsCreateWorkspaceSecretRequest;
1637
+ export type ElevenLabsCreateWorkspaceSecretParsedRequest = z.output<typeof ElevenLabsCreateWorkspaceSecretRequestSchema>;
1638
+ export declare const ElevenLabsListWorkspaceSecretsRequestSchema: z.ZodObject<{
1639
+ page_size: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1640
+ dependency_limit: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1641
+ search: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1642
+ cursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1643
+ }, z.core.$strip>;
1644
+ export type ElevenLabsListWorkspaceSecretsRequest = z.input<typeof ElevenLabsListWorkspaceSecretsRequestSchema>;
1645
+ export type ElevenLabsListWorkspaceSecretsRequestInput = ElevenLabsListWorkspaceSecretsRequest;
1646
+ export type ElevenLabsListWorkspaceSecretsParsedRequest = z.output<typeof ElevenLabsListWorkspaceSecretsRequestSchema>;
1647
+ export declare const ElevenLabsUpdateWorkspaceSecretRequestSchema: z.ZodObject<{
1648
+ type: z.ZodLiteral<"update">;
1649
+ name: z.ZodString;
1650
+ value: z.ZodString;
1651
+ }, z.core.$strip>;
1652
+ export type ElevenLabsUpdateWorkspaceSecretRequest = z.input<typeof ElevenLabsUpdateWorkspaceSecretRequestSchema>;
1653
+ export type ElevenLabsUpdateWorkspaceSecretRequestInput = ElevenLabsUpdateWorkspaceSecretRequest;
1654
+ export type ElevenLabsUpdateWorkspaceSecretParsedRequest = z.output<typeof ElevenLabsUpdateWorkspaceSecretRequestSchema>;
1655
+ export declare const ElevenLabsGetSecretDependenciesRequestSchema: z.ZodObject<{
1656
+ page_size: z.ZodOptional<z.ZodNumber>;
1657
+ cursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1658
+ }, z.core.$strip>;
1659
+ export type ElevenLabsGetSecretDependenciesRequest = z.input<typeof ElevenLabsGetSecretDependenciesRequestSchema>;
1660
+ export type ElevenLabsGetSecretDependenciesRequestInput = ElevenLabsGetSecretDependenciesRequest;
1661
+ export type ElevenLabsGetSecretDependenciesParsedRequest = z.output<typeof ElevenLabsGetSecretDependenciesRequestSchema>;
1662
+ export declare const ElevenLabsListEnvironmentVariablesRequestSchema: z.ZodObject<{
1663
+ cursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1664
+ page_size: z.ZodOptional<z.ZodNumber>;
1665
+ label: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1666
+ environment: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1667
+ type: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
1668
+ string: "string";
1669
+ secret: "secret";
1670
+ auth_connection: "auth_connection";
1671
+ }>>>;
1672
+ }, z.core.$strip>;
1673
+ export type ElevenLabsListEnvironmentVariablesRequest = z.input<typeof ElevenLabsListEnvironmentVariablesRequestSchema>;
1674
+ export type ElevenLabsListEnvironmentVariablesRequestInput = ElevenLabsListEnvironmentVariablesRequest;
1675
+ export type ElevenLabsListEnvironmentVariablesParsedRequest = z.output<typeof ElevenLabsListEnvironmentVariablesRequestSchema>;
1676
+ export declare const ElevenLabsCreateEnvironmentVariableRequestSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
1677
+ type: z.ZodLiteral<"string">;
1678
+ label: z.ZodString;
1679
+ values: z.ZodRecord<z.ZodString, z.ZodString>;
1680
+ }, z.core.$strip>, z.ZodObject<{
1681
+ type: z.ZodLiteral<"secret">;
1682
+ label: z.ZodString;
1683
+ values: z.ZodRecord<z.ZodString, z.ZodObject<{
1684
+ secret_id: z.ZodString;
1685
+ }, z.core.$strip>>;
1686
+ }, z.core.$strip>, z.ZodObject<{
1687
+ type: z.ZodLiteral<"auth_connection">;
1688
+ label: z.ZodString;
1689
+ values: z.ZodRecord<z.ZodString, z.ZodObject<{
1690
+ auth_connection_id: z.ZodString;
1691
+ }, z.core.$strip>>;
1692
+ }, z.core.$strip>], "type">;
1693
+ export type ElevenLabsCreateEnvironmentVariableRequest = z.input<typeof ElevenLabsCreateEnvironmentVariableRequestSchema>;
1694
+ export type ElevenLabsCreateEnvironmentVariableRequestInput = ElevenLabsCreateEnvironmentVariableRequest;
1695
+ export type ElevenLabsCreateEnvironmentVariableParsedRequest = z.output<typeof ElevenLabsCreateEnvironmentVariableRequestSchema>;
1696
+ export declare const ElevenLabsUpdateEnvironmentVariableRequestSchema: z.ZodObject<{
1697
+ values: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
1698
+ secret_id: z.ZodString;
1699
+ }, z.core.$strip>, z.ZodObject<{
1700
+ auth_connection_id: z.ZodString;
1701
+ }, z.core.$strip>, z.ZodNull]>>;
1702
+ }, z.core.$strip>;
1703
+ export type ElevenLabsUpdateEnvironmentVariableRequest = z.input<typeof ElevenLabsUpdateEnvironmentVariableRequestSchema>;
1704
+ export type ElevenLabsUpdateEnvironmentVariableRequestInput = ElevenLabsUpdateEnvironmentVariableRequest;
1705
+ export type ElevenLabsUpdateEnvironmentVariableParsedRequest = z.output<typeof ElevenLabsUpdateEnvironmentVariableRequestSchema>;
356
1706
  export declare const ElevenLabsCreateToolRequestSchema: z.ZodObject<{
357
1707
  tool_config: z.ZodRecord<z.ZodString, z.ZodUnknown>;
358
1708
  response_mocks: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
@@ -390,47 +1740,409 @@ export declare const ElevenLabsUpdateToolRequestSchema: z.ZodObject<{
390
1740
  export type ElevenLabsUpdateToolRequest = z.input<typeof ElevenLabsUpdateToolRequestSchema>;
391
1741
  export type ElevenLabsUpdateToolRequestInput = ElevenLabsUpdateToolRequest;
392
1742
  export type ElevenLabsUpdateToolParsedRequest = z.output<typeof ElevenLabsUpdateToolRequestSchema>;
393
- export declare const ElevenLabsCreateKnowledgeBaseDocumentFromUrlRequestSchema: z.ZodObject<{
394
- url: z.ZodString;
395
- name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
396
- parent_folder_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
397
- enable_auto_sync: z.ZodOptional<z.ZodBoolean>;
398
- auto_remove: z.ZodOptional<z.ZodBoolean>;
1743
+ export declare const ElevenLabsGetToolDependentAgentsRequestSchema: z.ZodObject<{
1744
+ cursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1745
+ page_size: z.ZodOptional<z.ZodNumber>;
399
1746
  }, z.core.$strip>;
400
- export type ElevenLabsCreateKnowledgeBaseDocumentFromUrlRequest = z.input<typeof ElevenLabsCreateKnowledgeBaseDocumentFromUrlRequestSchema>;
401
- export type ElevenLabsCreateKnowledgeBaseDocumentFromUrlRequestInput = ElevenLabsCreateKnowledgeBaseDocumentFromUrlRequest;
402
- export type ElevenLabsCreateKnowledgeBaseDocumentFromUrlParsedRequest = z.output<typeof ElevenLabsCreateKnowledgeBaseDocumentFromUrlRequestSchema>;
403
- export declare const ElevenLabsCreateKnowledgeBaseDocumentFromTextRequestSchema: z.ZodObject<{
404
- text: z.ZodString;
405
- name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
406
- parent_folder_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1747
+ export type ElevenLabsGetToolDependentAgentsRequest = z.input<typeof ElevenLabsGetToolDependentAgentsRequestSchema>;
1748
+ export type ElevenLabsGetToolDependentAgentsRequestInput = ElevenLabsGetToolDependentAgentsRequest;
1749
+ export type ElevenLabsGetToolDependentAgentsParsedRequest = z.output<typeof ElevenLabsGetToolDependentAgentsRequestSchema>;
1750
+ export declare const ElevenLabsGetToolExecutionsRequestSchema: z.ZodObject<{
1751
+ cursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1752
+ page_size: z.ZodOptional<z.ZodNumber>;
1753
+ is_error: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1754
+ agent_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1755
+ branch_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1756
+ start_time: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1757
+ end_time: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
407
1758
  }, z.core.$strip>;
408
- export type ElevenLabsCreateKnowledgeBaseDocumentFromTextRequest = z.input<typeof ElevenLabsCreateKnowledgeBaseDocumentFromTextRequestSchema>;
409
- export type ElevenLabsCreateKnowledgeBaseDocumentFromTextRequestInput = ElevenLabsCreateKnowledgeBaseDocumentFromTextRequest;
410
- export type ElevenLabsCreateKnowledgeBaseDocumentFromTextParsedRequest = z.output<typeof ElevenLabsCreateKnowledgeBaseDocumentFromTextRequestSchema>;
411
- export declare const ElevenLabsCreateKnowledgeBaseDocumentFromFileRequestSchema: z.ZodObject<{
412
- file: z.ZodCustom<Blob, Blob>;
413
- name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
414
- parent_folder_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1759
+ export type ElevenLabsGetToolExecutionsRequest = z.input<typeof ElevenLabsGetToolExecutionsRequestSchema>;
1760
+ export type ElevenLabsGetToolExecutionsRequestInput = ElevenLabsGetToolExecutionsRequest;
1761
+ export type ElevenLabsGetToolExecutionsParsedRequest = z.output<typeof ElevenLabsGetToolExecutionsRequestSchema>;
1762
+ export declare const ElevenLabsCreateMcpServerRequestSchema: z.ZodObject<{
1763
+ config: z.ZodObject<{
1764
+ approval_policy: z.ZodOptional<z.ZodEnum<{
1765
+ auto_approve_all: "auto_approve_all";
1766
+ require_approval_all: "require_approval_all";
1767
+ require_approval_per_tool: "require_approval_per_tool";
1768
+ }>>;
1769
+ tool_approval_hashes: z.ZodOptional<z.ZodArray<z.ZodObject<{
1770
+ tool_name: z.ZodString;
1771
+ tool_hash: z.ZodString;
1772
+ approval_policy: z.ZodOptional<z.ZodEnum<{
1773
+ auto_approved: "auto_approved";
1774
+ requires_approval: "requires_approval";
1775
+ }>>;
1776
+ }, z.core.$strip>>>;
1777
+ transport: z.ZodOptional<z.ZodEnum<{
1778
+ SSE: "SSE";
1779
+ STREAMABLE_HTTP: "STREAMABLE_HTTP";
1780
+ }>>;
1781
+ url: z.ZodUnion<readonly [z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>]>;
1782
+ secret_token: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
1783
+ request_headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>]>>>;
1784
+ auth_connection: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
1785
+ name: z.ZodString;
1786
+ description: z.ZodOptional<z.ZodString>;
1787
+ force_pre_tool_speech: z.ZodOptional<z.ZodBoolean>;
1788
+ pre_tool_speech: z.ZodOptional<z.ZodEnum<{
1789
+ auto: "auto";
1790
+ off: "off";
1791
+ force: "force";
1792
+ }>>;
1793
+ disable_interruptions: z.ZodOptional<z.ZodBoolean>;
1794
+ tool_call_sound: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
1795
+ typing: "typing";
1796
+ elevator1: "elevator1";
1797
+ elevator2: "elevator2";
1798
+ elevator3: "elevator3";
1799
+ elevator4: "elevator4";
1800
+ }>>>;
1801
+ tool_call_sound_behavior: z.ZodOptional<z.ZodEnum<{
1802
+ auto: "auto";
1803
+ always: "always";
1804
+ }>>;
1805
+ execution_mode: z.ZodOptional<z.ZodEnum<{
1806
+ immediate: "immediate";
1807
+ post_tool_speech: "post_tool_speech";
1808
+ async: "async";
1809
+ }>>;
1810
+ response_timeout_secs: z.ZodOptional<z.ZodNumber>;
1811
+ tool_config_overrides: z.ZodOptional<z.ZodArray<z.ZodObject<{
1812
+ force_pre_tool_speech: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1813
+ pre_tool_speech: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
1814
+ auto: "auto";
1815
+ off: "off";
1816
+ force: "force";
1817
+ }>>>;
1818
+ disable_interruptions: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1819
+ tool_call_sound: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
1820
+ typing: "typing";
1821
+ elevator1: "elevator1";
1822
+ elevator2: "elevator2";
1823
+ elevator3: "elevator3";
1824
+ elevator4: "elevator4";
1825
+ }>>>;
1826
+ tool_call_sound_behavior: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
1827
+ auto: "auto";
1828
+ always: "always";
1829
+ }>>>;
1830
+ execution_mode: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
1831
+ immediate: "immediate";
1832
+ post_tool_speech: "post_tool_speech";
1833
+ async: "async";
1834
+ }>>>;
1835
+ response_timeout_secs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1836
+ assignments: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
1837
+ input_overrides: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
1838
+ response_mocks: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
1839
+ tool_name: z.ZodString;
1840
+ }, z.core.$strip>>>;
1841
+ disable_compression: z.ZodOptional<z.ZodBoolean>;
1842
+ }, z.core.$strip>;
415
1843
  }, z.core.$strip>;
416
- export type ElevenLabsCreateKnowledgeBaseDocumentFromFileRequest = z.input<typeof ElevenLabsCreateKnowledgeBaseDocumentFromFileRequestSchema>;
417
- export type ElevenLabsCreateKnowledgeBaseDocumentFromFileRequestInput = ElevenLabsCreateKnowledgeBaseDocumentFromFileRequest;
418
- export type ElevenLabsCreateKnowledgeBaseDocumentFromFileParsedRequest = z.output<typeof ElevenLabsCreateKnowledgeBaseDocumentFromFileRequestSchema>;
419
- export declare const ElevenLabsListKnowledgeBaseDocumentsRequestSchema: z.ZodObject<{
420
- page_size: z.ZodOptional<z.ZodNumber>;
421
- search: z.ZodOptional<z.ZodNullable<z.ZodString>>;
422
- show_only_owned_documents: z.ZodOptional<z.ZodBoolean>;
423
- created_by_user_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
424
- types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<{
425
- file: "file";
426
- text: "text";
427
- url: "url";
428
- folder: "folder";
429
- }>>>>;
430
- parent_folder_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
431
- ancestor_folder_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
432
- folders_first: z.ZodOptional<z.ZodBoolean>;
433
- sort_direction: z.ZodOptional<z.ZodEnum<{
1844
+ export type ElevenLabsCreateMcpServerRequest = z.input<typeof ElevenLabsCreateMcpServerRequestSchema>;
1845
+ export type ElevenLabsCreateMcpServerRequestInput = ElevenLabsCreateMcpServerRequest;
1846
+ export type ElevenLabsCreateMcpServerParsedRequest = z.output<typeof ElevenLabsCreateMcpServerRequestSchema>;
1847
+ export declare const ElevenLabsUpdateMcpServerRequestSchema: z.ZodObject<{
1848
+ approval_policy: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
1849
+ auto_approve_all: "auto_approve_all";
1850
+ require_approval_all: "require_approval_all";
1851
+ require_approval_per_tool: "require_approval_per_tool";
1852
+ }>>>;
1853
+ force_pre_tool_speech: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1854
+ pre_tool_speech: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
1855
+ auto: "auto";
1856
+ off: "off";
1857
+ force: "force";
1858
+ }>>>;
1859
+ disable_interruptions: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1860
+ tool_call_sound: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
1861
+ typing: "typing";
1862
+ elevator1: "elevator1";
1863
+ elevator2: "elevator2";
1864
+ elevator3: "elevator3";
1865
+ elevator4: "elevator4";
1866
+ }>>>;
1867
+ tool_call_sound_behavior: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
1868
+ auto: "auto";
1869
+ always: "always";
1870
+ }>>>;
1871
+ execution_mode: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
1872
+ immediate: "immediate";
1873
+ post_tool_speech: "post_tool_speech";
1874
+ async: "async";
1875
+ }>>>;
1876
+ response_timeout_secs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1877
+ request_headers: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>]>>>>;
1878
+ disable_compression: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1879
+ secret_token: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
1880
+ auth_connection: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
1881
+ }, z.core.$strip>;
1882
+ export type ElevenLabsUpdateMcpServerRequest = z.input<typeof ElevenLabsUpdateMcpServerRequestSchema>;
1883
+ export type ElevenLabsUpdateMcpServerRequestInput = ElevenLabsUpdateMcpServerRequest;
1884
+ export type ElevenLabsUpdateMcpServerParsedRequest = z.output<typeof ElevenLabsUpdateMcpServerRequestSchema>;
1885
+ export declare const ElevenLabsCreateMcpServerToolApprovalRequestSchema: z.ZodObject<{
1886
+ tool_name: z.ZodString;
1887
+ tool_description: z.ZodString;
1888
+ input_schema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1889
+ approval_policy: z.ZodOptional<z.ZodEnum<{
1890
+ auto_approved: "auto_approved";
1891
+ requires_approval: "requires_approval";
1892
+ }>>;
1893
+ }, z.core.$strip>;
1894
+ export type ElevenLabsCreateMcpServerToolApprovalRequest = z.input<typeof ElevenLabsCreateMcpServerToolApprovalRequestSchema>;
1895
+ export type ElevenLabsCreateMcpServerToolApprovalRequestInput = ElevenLabsCreateMcpServerToolApprovalRequest;
1896
+ export type ElevenLabsCreateMcpServerToolApprovalParsedRequest = z.output<typeof ElevenLabsCreateMcpServerToolApprovalRequestSchema>;
1897
+ export declare const ElevenLabsCreateMcpToolConfigOverrideRequestSchema: z.ZodObject<{
1898
+ force_pre_tool_speech: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1899
+ pre_tool_speech: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
1900
+ auto: "auto";
1901
+ off: "off";
1902
+ force: "force";
1903
+ }>>>;
1904
+ disable_interruptions: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1905
+ tool_call_sound: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
1906
+ typing: "typing";
1907
+ elevator1: "elevator1";
1908
+ elevator2: "elevator2";
1909
+ elevator3: "elevator3";
1910
+ elevator4: "elevator4";
1911
+ }>>>;
1912
+ tool_call_sound_behavior: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
1913
+ auto: "auto";
1914
+ always: "always";
1915
+ }>>>;
1916
+ execution_mode: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
1917
+ immediate: "immediate";
1918
+ post_tool_speech: "post_tool_speech";
1919
+ async: "async";
1920
+ }>>>;
1921
+ response_timeout_secs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1922
+ assignments: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
1923
+ input_overrides: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
1924
+ response_mocks: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
1925
+ tool_name: z.ZodString;
1926
+ }, z.core.$strip>;
1927
+ export type ElevenLabsCreateMcpToolConfigOverrideRequest = z.input<typeof ElevenLabsCreateMcpToolConfigOverrideRequestSchema>;
1928
+ export type ElevenLabsCreateMcpToolConfigOverrideRequestInput = ElevenLabsCreateMcpToolConfigOverrideRequest;
1929
+ export type ElevenLabsCreateMcpToolConfigOverrideParsedRequest = z.output<typeof ElevenLabsCreateMcpToolConfigOverrideRequestSchema>;
1930
+ export declare const ElevenLabsUpdateMcpToolConfigOverrideRequestSchema: z.ZodObject<{
1931
+ force_pre_tool_speech: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1932
+ pre_tool_speech: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
1933
+ auto: "auto";
1934
+ off: "off";
1935
+ force: "force";
1936
+ }>>>;
1937
+ disable_interruptions: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1938
+ tool_call_sound: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
1939
+ typing: "typing";
1940
+ elevator1: "elevator1";
1941
+ elevator2: "elevator2";
1942
+ elevator3: "elevator3";
1943
+ elevator4: "elevator4";
1944
+ }>>>;
1945
+ tool_call_sound_behavior: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
1946
+ auto: "auto";
1947
+ always: "always";
1948
+ }>>>;
1949
+ execution_mode: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
1950
+ immediate: "immediate";
1951
+ post_tool_speech: "post_tool_speech";
1952
+ async: "async";
1953
+ }>>>;
1954
+ response_timeout_secs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1955
+ assignments: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
1956
+ input_overrides: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
1957
+ response_mocks: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
1958
+ }, z.core.$strip>;
1959
+ export type ElevenLabsUpdateMcpToolConfigOverrideRequest = z.input<typeof ElevenLabsUpdateMcpToolConfigOverrideRequestSchema>;
1960
+ export type ElevenLabsUpdateMcpToolConfigOverrideRequestInput = ElevenLabsUpdateMcpToolConfigOverrideRequest;
1961
+ export type ElevenLabsUpdateMcpToolConfigOverrideParsedRequest = z.output<typeof ElevenLabsUpdateMcpToolConfigOverrideRequestSchema>;
1962
+ export declare const ElevenLabsCreateAgentTestRequestSchema: z.ZodObject<{
1963
+ from_conversation_metadata: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
1964
+ dynamic_variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1965
+ chat_history: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
1966
+ conversation_initiation_source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1967
+ type: z.ZodOptional<z.ZodEnum<{
1968
+ llm: "llm";
1969
+ tool: "tool";
1970
+ simulation: "simulation";
1971
+ }>>;
1972
+ success_condition: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1973
+ success_conditions: z.ZodOptional<z.ZodArray<z.ZodString>>;
1974
+ success_examples: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
1975
+ failure_examples: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
1976
+ tool_call_parameters: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
1977
+ check_any_tool_matches: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1978
+ simulation_scenario: z.ZodOptional<z.ZodString>;
1979
+ simulation_max_turns: z.ZodOptional<z.ZodNumber>;
1980
+ simulation_environment: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1981
+ tool_mock_config: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1982
+ evaluation_model: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>]>>>;
1983
+ simulated_user_model: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>]>>>;
1984
+ name: z.ZodString;
1985
+ parent_folder_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1986
+ }, z.core.$strip>;
1987
+ export type ElevenLabsCreateAgentTestRequest = z.input<typeof ElevenLabsCreateAgentTestRequestSchema>;
1988
+ export type ElevenLabsCreateAgentTestRequestInput = ElevenLabsCreateAgentTestRequest;
1989
+ export type ElevenLabsCreateAgentTestParsedRequest = z.output<typeof ElevenLabsCreateAgentTestRequestSchema>;
1990
+ export declare const ElevenLabsListAgentTestsRequestSchema: z.ZodObject<{
1991
+ cursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1992
+ page_size: z.ZodOptional<z.ZodNumber>;
1993
+ search: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1994
+ parent_folder_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1995
+ types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<{
1996
+ llm: "llm";
1997
+ tool: "tool";
1998
+ simulation: "simulation";
1999
+ folder: "folder";
2000
+ }>>>>;
2001
+ include_folders: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
2002
+ sort_mode: z.ZodOptional<z.ZodEnum<{
2003
+ default: "default";
2004
+ folders_first: "folders_first";
2005
+ }>>;
2006
+ sharing_mode: z.ZodOptional<z.ZodEnum<{
2007
+ all: "all";
2008
+ shared_with_me: "shared_with_me";
2009
+ }>>;
2010
+ }, z.core.$strip>;
2011
+ export type ElevenLabsListAgentTestsRequest = z.input<typeof ElevenLabsListAgentTestsRequestSchema>;
2012
+ export type ElevenLabsListAgentTestsRequestInput = ElevenLabsListAgentTestsRequest;
2013
+ export type ElevenLabsListAgentTestsParsedRequest = z.output<typeof ElevenLabsListAgentTestsRequestSchema>;
2014
+ export declare const ElevenLabsUpdateAgentTestRequestSchema: z.ZodObject<{
2015
+ from_conversation_metadata: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
2016
+ dynamic_variables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2017
+ chat_history: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
2018
+ conversation_initiation_source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2019
+ type: z.ZodOptional<z.ZodEnum<{
2020
+ llm: "llm";
2021
+ tool: "tool";
2022
+ simulation: "simulation";
2023
+ }>>;
2024
+ success_condition: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2025
+ success_conditions: z.ZodOptional<z.ZodArray<z.ZodString>>;
2026
+ success_examples: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
2027
+ failure_examples: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
2028
+ tool_call_parameters: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
2029
+ check_any_tool_matches: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
2030
+ simulation_scenario: z.ZodOptional<z.ZodString>;
2031
+ simulation_max_turns: z.ZodOptional<z.ZodNumber>;
2032
+ simulation_environment: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2033
+ tool_mock_config: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2034
+ evaluation_model: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>]>>>;
2035
+ simulated_user_model: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>]>>>;
2036
+ name: z.ZodString;
2037
+ parent_folder_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2038
+ }, z.core.$strip>;
2039
+ export type ElevenLabsUpdateAgentTestRequest = z.input<typeof ElevenLabsUpdateAgentTestRequestSchema>;
2040
+ export type ElevenLabsUpdateAgentTestRequestInput = ElevenLabsUpdateAgentTestRequest;
2041
+ export type ElevenLabsUpdateAgentTestParsedRequest = z.output<typeof ElevenLabsUpdateAgentTestRequestSchema>;
2042
+ export declare const ElevenLabsGetAgentTestSummariesRequestSchema: z.ZodObject<{
2043
+ test_ids: z.ZodArray<z.ZodString>;
2044
+ }, z.core.$strip>;
2045
+ export type ElevenLabsGetAgentTestSummariesRequest = z.input<typeof ElevenLabsGetAgentTestSummariesRequestSchema>;
2046
+ export type ElevenLabsGetAgentTestSummariesRequestInput = ElevenLabsGetAgentTestSummariesRequest;
2047
+ export type ElevenLabsGetAgentTestSummariesParsedRequest = z.output<typeof ElevenLabsGetAgentTestSummariesRequestSchema>;
2048
+ export declare const ElevenLabsBulkMoveAgentTestsRequestSchema: z.ZodObject<{
2049
+ entity_ids: z.ZodArray<z.ZodString>;
2050
+ move_to: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2051
+ }, z.core.$strip>;
2052
+ export type ElevenLabsBulkMoveAgentTestsRequest = z.input<typeof ElevenLabsBulkMoveAgentTestsRequestSchema>;
2053
+ export type ElevenLabsBulkMoveAgentTestsRequestInput = ElevenLabsBulkMoveAgentTestsRequest;
2054
+ export type ElevenLabsBulkMoveAgentTestsParsedRequest = z.output<typeof ElevenLabsBulkMoveAgentTestsRequestSchema>;
2055
+ export declare const ElevenLabsCreateAgentTestFolderRequestSchema: z.ZodObject<{
2056
+ name: z.ZodString;
2057
+ parent_folder_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2058
+ }, z.core.$strip>;
2059
+ export type ElevenLabsCreateAgentTestFolderRequest = z.input<typeof ElevenLabsCreateAgentTestFolderRequestSchema>;
2060
+ export type ElevenLabsCreateAgentTestFolderRequestInput = ElevenLabsCreateAgentTestFolderRequest;
2061
+ export type ElevenLabsCreateAgentTestFolderParsedRequest = z.output<typeof ElevenLabsCreateAgentTestFolderRequestSchema>;
2062
+ export declare const ElevenLabsUpdateAgentTestFolderRequestSchema: z.ZodObject<{
2063
+ name: z.ZodString;
2064
+ }, z.core.$strip>;
2065
+ export type ElevenLabsUpdateAgentTestFolderRequest = z.input<typeof ElevenLabsUpdateAgentTestFolderRequestSchema>;
2066
+ export type ElevenLabsUpdateAgentTestFolderRequestInput = ElevenLabsUpdateAgentTestFolderRequest;
2067
+ export type ElevenLabsUpdateAgentTestFolderParsedRequest = z.output<typeof ElevenLabsUpdateAgentTestFolderRequestSchema>;
2068
+ export declare const ElevenLabsDeleteAgentTestFolderRequestSchema: z.ZodObject<{
2069
+ force: z.ZodOptional<z.ZodBoolean>;
2070
+ }, z.core.$strip>;
2071
+ export type ElevenLabsDeleteAgentTestFolderRequest = z.input<typeof ElevenLabsDeleteAgentTestFolderRequestSchema>;
2072
+ export type ElevenLabsDeleteAgentTestFolderRequestInput = ElevenLabsDeleteAgentTestFolderRequest;
2073
+ export type ElevenLabsDeleteAgentTestFolderParsedRequest = z.output<typeof ElevenLabsDeleteAgentTestFolderRequestSchema>;
2074
+ export declare const ElevenLabsRunAgentTestsRequestSchema: z.ZodObject<{
2075
+ tests: z.ZodArray<z.ZodObject<{
2076
+ test_id: z.ZodString;
2077
+ workflow_node_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2078
+ root_folder_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2079
+ root_folder_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2080
+ }, z.core.$strip>>;
2081
+ agent_config_override: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
2082
+ branch_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2083
+ repeat_count: z.ZodOptional<z.ZodNumber>;
2084
+ }, z.core.$strip>;
2085
+ export type ElevenLabsRunAgentTestsRequest = z.input<typeof ElevenLabsRunAgentTestsRequestSchema>;
2086
+ export type ElevenLabsRunAgentTestsRequestInput = ElevenLabsRunAgentTestsRequest;
2087
+ export type ElevenLabsRunAgentTestsParsedRequest = z.output<typeof ElevenLabsRunAgentTestsRequestSchema>;
2088
+ export declare const ElevenLabsListTestInvocationsRequestSchema: z.ZodObject<{
2089
+ agent_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2090
+ page_size: z.ZodOptional<z.ZodNumber>;
2091
+ cursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2092
+ }, z.core.$strip>;
2093
+ export type ElevenLabsListTestInvocationsRequest = z.input<typeof ElevenLabsListTestInvocationsRequestSchema>;
2094
+ export type ElevenLabsListTestInvocationsRequestInput = ElevenLabsListTestInvocationsRequest;
2095
+ export type ElevenLabsListTestInvocationsParsedRequest = z.output<typeof ElevenLabsListTestInvocationsRequestSchema>;
2096
+ export declare const ElevenLabsResubmitTestsRequestSchema: z.ZodObject<{
2097
+ test_run_ids: z.ZodArray<z.ZodString>;
2098
+ agent_config_override: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
2099
+ agent_id: z.ZodString;
2100
+ branch_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2101
+ }, z.core.$strip>;
2102
+ export type ElevenLabsResubmitTestsRequest = z.input<typeof ElevenLabsResubmitTestsRequestSchema>;
2103
+ export type ElevenLabsResubmitTestsRequestInput = ElevenLabsResubmitTestsRequest;
2104
+ export type ElevenLabsResubmitTestsParsedRequest = z.output<typeof ElevenLabsResubmitTestsRequestSchema>;
2105
+ export declare const ElevenLabsCreateKnowledgeBaseDocumentFromUrlRequestSchema: z.ZodObject<{
2106
+ url: z.ZodString;
2107
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2108
+ parent_folder_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2109
+ enable_auto_sync: z.ZodOptional<z.ZodBoolean>;
2110
+ auto_remove: z.ZodOptional<z.ZodBoolean>;
2111
+ }, z.core.$strip>;
2112
+ export type ElevenLabsCreateKnowledgeBaseDocumentFromUrlRequest = z.input<typeof ElevenLabsCreateKnowledgeBaseDocumentFromUrlRequestSchema>;
2113
+ export type ElevenLabsCreateKnowledgeBaseDocumentFromUrlRequestInput = ElevenLabsCreateKnowledgeBaseDocumentFromUrlRequest;
2114
+ export type ElevenLabsCreateKnowledgeBaseDocumentFromUrlParsedRequest = z.output<typeof ElevenLabsCreateKnowledgeBaseDocumentFromUrlRequestSchema>;
2115
+ export declare const ElevenLabsCreateKnowledgeBaseDocumentFromTextRequestSchema: z.ZodObject<{
2116
+ text: z.ZodString;
2117
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2118
+ parent_folder_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2119
+ }, z.core.$strip>;
2120
+ export type ElevenLabsCreateKnowledgeBaseDocumentFromTextRequest = z.input<typeof ElevenLabsCreateKnowledgeBaseDocumentFromTextRequestSchema>;
2121
+ export type ElevenLabsCreateKnowledgeBaseDocumentFromTextRequestInput = ElevenLabsCreateKnowledgeBaseDocumentFromTextRequest;
2122
+ export type ElevenLabsCreateKnowledgeBaseDocumentFromTextParsedRequest = z.output<typeof ElevenLabsCreateKnowledgeBaseDocumentFromTextRequestSchema>;
2123
+ export declare const ElevenLabsCreateKnowledgeBaseDocumentFromFileRequestSchema: z.ZodObject<{
2124
+ file: z.ZodCustom<Blob, Blob>;
2125
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2126
+ parent_folder_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2127
+ }, z.core.$strip>;
2128
+ export type ElevenLabsCreateKnowledgeBaseDocumentFromFileRequest = z.input<typeof ElevenLabsCreateKnowledgeBaseDocumentFromFileRequestSchema>;
2129
+ export type ElevenLabsCreateKnowledgeBaseDocumentFromFileRequestInput = ElevenLabsCreateKnowledgeBaseDocumentFromFileRequest;
2130
+ export type ElevenLabsCreateKnowledgeBaseDocumentFromFileParsedRequest = z.output<typeof ElevenLabsCreateKnowledgeBaseDocumentFromFileRequestSchema>;
2131
+ export declare const ElevenLabsListKnowledgeBaseDocumentsRequestSchema: z.ZodObject<{
2132
+ page_size: z.ZodOptional<z.ZodNumber>;
2133
+ search: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2134
+ show_only_owned_documents: z.ZodOptional<z.ZodBoolean>;
2135
+ created_by_user_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2136
+ types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<{
2137
+ file: "file";
2138
+ text: "text";
2139
+ url: "url";
2140
+ folder: "folder";
2141
+ }>>>>;
2142
+ parent_folder_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2143
+ ancestor_folder_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2144
+ folders_first: z.ZodOptional<z.ZodBoolean>;
2145
+ sort_direction: z.ZodOptional<z.ZodEnum<{
434
2146
  asc: "asc";
435
2147
  desc: "desc";
436
2148
  }>>;
@@ -457,6 +2169,115 @@ export declare const ElevenLabsDeleteKnowledgeBaseDocumentRequestSchema: z.ZodOb
457
2169
  export type ElevenLabsDeleteKnowledgeBaseDocumentRequest = z.input<typeof ElevenLabsDeleteKnowledgeBaseDocumentRequestSchema>;
458
2170
  export type ElevenLabsDeleteKnowledgeBaseDocumentRequestInput = ElevenLabsDeleteKnowledgeBaseDocumentRequest;
459
2171
  export type ElevenLabsDeleteKnowledgeBaseDocumentParsedRequest = z.output<typeof ElevenLabsDeleteKnowledgeBaseDocumentRequestSchema>;
2172
+ export declare const ElevenLabsGetKnowledgeBaseSummariesRequestSchema: z.ZodObject<{
2173
+ document_ids: z.ZodArray<z.ZodString>;
2174
+ }, z.core.$strip>;
2175
+ export type ElevenLabsGetKnowledgeBaseSummariesRequest = z.input<typeof ElevenLabsGetKnowledgeBaseSummariesRequestSchema>;
2176
+ export type ElevenLabsGetKnowledgeBaseSummariesRequestInput = ElevenLabsGetKnowledgeBaseSummariesRequest;
2177
+ export type ElevenLabsGetKnowledgeBaseSummariesParsedRequest = z.output<typeof ElevenLabsGetKnowledgeBaseSummariesRequestSchema>;
2178
+ export declare const ElevenLabsSearchKnowledgeBaseContentRequestSchema: z.ZodObject<{
2179
+ query: z.ZodString;
2180
+ page_size: z.ZodOptional<z.ZodNumber>;
2181
+ types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<{
2182
+ file: "file";
2183
+ text: "text";
2184
+ url: "url";
2185
+ folder: "folder";
2186
+ }>>>>;
2187
+ cursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2188
+ }, z.core.$strip>;
2189
+ export type ElevenLabsSearchKnowledgeBaseContentRequest = z.input<typeof ElevenLabsSearchKnowledgeBaseContentRequestSchema>;
2190
+ export type ElevenLabsSearchKnowledgeBaseContentRequestInput = ElevenLabsSearchKnowledgeBaseContentRequest;
2191
+ export type ElevenLabsSearchKnowledgeBaseContentParsedRequest = z.output<typeof ElevenLabsSearchKnowledgeBaseContentRequestSchema>;
2192
+ export declare const ElevenLabsUpdateKnowledgeBaseDocumentRequestSchema: z.ZodObject<{
2193
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2194
+ content: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2195
+ }, z.core.$strip>;
2196
+ export type ElevenLabsUpdateKnowledgeBaseDocumentRequest = z.input<typeof ElevenLabsUpdateKnowledgeBaseDocumentRequestSchema>;
2197
+ export type ElevenLabsUpdateKnowledgeBaseDocumentRequestInput = ElevenLabsUpdateKnowledgeBaseDocumentRequest;
2198
+ export type ElevenLabsUpdateKnowledgeBaseDocumentParsedRequest = z.output<typeof ElevenLabsUpdateKnowledgeBaseDocumentRequestSchema>;
2199
+ export declare const ElevenLabsListKnowledgeBaseDocumentChunksRequestSchema: z.ZodObject<{
2200
+ embedding_model: z.ZodEnum<{
2201
+ e5_mistral_7b_instruct: "e5_mistral_7b_instruct";
2202
+ multilingual_e5_large_instruct: "multilingual_e5_large_instruct";
2203
+ }>;
2204
+ page_size: z.ZodOptional<z.ZodNumber>;
2205
+ cursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2206
+ }, z.core.$strip>;
2207
+ export type ElevenLabsListKnowledgeBaseDocumentChunksRequest = z.input<typeof ElevenLabsListKnowledgeBaseDocumentChunksRequestSchema>;
2208
+ export type ElevenLabsListKnowledgeBaseDocumentChunksRequestInput = ElevenLabsListKnowledgeBaseDocumentChunksRequest;
2209
+ export type ElevenLabsListKnowledgeBaseDocumentChunksParsedRequest = z.output<typeof ElevenLabsListKnowledgeBaseDocumentChunksRequestSchema>;
2210
+ export declare const ElevenLabsGetKnowledgeBaseDocumentChunkRequestSchema: z.ZodObject<{
2211
+ embedding_model: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
2212
+ e5_mistral_7b_instruct: "e5_mistral_7b_instruct";
2213
+ multilingual_e5_large_instruct: "multilingual_e5_large_instruct";
2214
+ }>>>;
2215
+ }, z.core.$strip>;
2216
+ export type ElevenLabsGetKnowledgeBaseDocumentChunkRequest = z.input<typeof ElevenLabsGetKnowledgeBaseDocumentChunkRequestSchema>;
2217
+ export type ElevenLabsGetKnowledgeBaseDocumentChunkRequestInput = ElevenLabsGetKnowledgeBaseDocumentChunkRequest;
2218
+ export type ElevenLabsGetKnowledgeBaseDocumentChunkParsedRequest = z.output<typeof ElevenLabsGetKnowledgeBaseDocumentChunkRequestSchema>;
2219
+ export declare const ElevenLabsGetKnowledgeBaseDependentAgentsRequestSchema: z.ZodObject<{
2220
+ dependent_type: z.ZodOptional<z.ZodEnum<{
2221
+ all: "all";
2222
+ direct: "direct";
2223
+ transitive: "transitive";
2224
+ }>>;
2225
+ page_size: z.ZodOptional<z.ZodNumber>;
2226
+ cursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2227
+ }, z.core.$strip>;
2228
+ export type ElevenLabsGetKnowledgeBaseDependentAgentsRequest = z.input<typeof ElevenLabsGetKnowledgeBaseDependentAgentsRequestSchema>;
2229
+ export type ElevenLabsGetKnowledgeBaseDependentAgentsRequestInput = ElevenLabsGetKnowledgeBaseDependentAgentsRequest;
2230
+ export type ElevenLabsGetKnowledgeBaseDependentAgentsParsedRequest = z.output<typeof ElevenLabsGetKnowledgeBaseDependentAgentsRequestSchema>;
2231
+ export declare const ElevenLabsUpdateKnowledgeBaseFileDocumentRequestSchema: z.ZodObject<{
2232
+ file: z.ZodCustom<Blob, Blob>;
2233
+ }, z.core.$strip>;
2234
+ export type ElevenLabsUpdateKnowledgeBaseFileDocumentRequest = z.input<typeof ElevenLabsUpdateKnowledgeBaseFileDocumentRequestSchema>;
2235
+ export type ElevenLabsUpdateKnowledgeBaseFileDocumentRequestInput = ElevenLabsUpdateKnowledgeBaseFileDocumentRequest;
2236
+ export type ElevenLabsUpdateKnowledgeBaseFileDocumentParsedRequest = z.output<typeof ElevenLabsUpdateKnowledgeBaseFileDocumentRequestSchema>;
2237
+ export declare const ElevenLabsComputeKnowledgeBaseRagIndexesRequestSchema: z.ZodObject<{
2238
+ items: z.ZodArray<z.ZodObject<{
2239
+ document_id: z.ZodString;
2240
+ create_if_missing: z.ZodBoolean;
2241
+ model: z.ZodEnum<{
2242
+ e5_mistral_7b_instruct: "e5_mistral_7b_instruct";
2243
+ multilingual_e5_large_instruct: "multilingual_e5_large_instruct";
2244
+ }>;
2245
+ }, z.core.$strip>>;
2246
+ }, z.core.$strip>;
2247
+ export type ElevenLabsComputeKnowledgeBaseRagIndexesRequest = z.input<typeof ElevenLabsComputeKnowledgeBaseRagIndexesRequestSchema>;
2248
+ export type ElevenLabsComputeKnowledgeBaseRagIndexesRequestInput = ElevenLabsComputeKnowledgeBaseRagIndexesRequest;
2249
+ export type ElevenLabsComputeKnowledgeBaseRagIndexesParsedRequest = z.output<typeof ElevenLabsComputeKnowledgeBaseRagIndexesRequestSchema>;
2250
+ export declare const ElevenLabsComputeKnowledgeBaseDocumentRagIndexRequestSchema: z.ZodObject<{
2251
+ model: z.ZodEnum<{
2252
+ e5_mistral_7b_instruct: "e5_mistral_7b_instruct";
2253
+ multilingual_e5_large_instruct: "multilingual_e5_large_instruct";
2254
+ }>;
2255
+ }, z.core.$strip>;
2256
+ export type ElevenLabsComputeKnowledgeBaseDocumentRagIndexRequest = z.input<typeof ElevenLabsComputeKnowledgeBaseDocumentRagIndexRequestSchema>;
2257
+ export type ElevenLabsComputeKnowledgeBaseDocumentRagIndexRequestInput = ElevenLabsComputeKnowledgeBaseDocumentRagIndexRequest;
2258
+ export type ElevenLabsComputeKnowledgeBaseDocumentRagIndexParsedRequest = z.output<typeof ElevenLabsComputeKnowledgeBaseDocumentRagIndexRequestSchema>;
2259
+ export declare const ElevenLabsCreateKnowledgeBaseFolderRequestSchema: z.ZodObject<{
2260
+ name: z.ZodString;
2261
+ parent_folder_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2262
+ enable_auto_sync: z.ZodOptional<z.ZodBoolean>;
2263
+ auto_remove: z.ZodOptional<z.ZodBoolean>;
2264
+ }, z.core.$strip>;
2265
+ export type ElevenLabsCreateKnowledgeBaseFolderRequest = z.input<typeof ElevenLabsCreateKnowledgeBaseFolderRequestSchema>;
2266
+ export type ElevenLabsCreateKnowledgeBaseFolderRequestInput = ElevenLabsCreateKnowledgeBaseFolderRequest;
2267
+ export type ElevenLabsCreateKnowledgeBaseFolderParsedRequest = z.output<typeof ElevenLabsCreateKnowledgeBaseFolderRequestSchema>;
2268
+ export declare const ElevenLabsBulkMoveKnowledgeBaseDocumentsRequestSchema: z.ZodObject<{
2269
+ document_ids: z.ZodArray<z.ZodString>;
2270
+ move_to: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2271
+ }, z.core.$strip>;
2272
+ export type ElevenLabsBulkMoveKnowledgeBaseDocumentsRequest = z.input<typeof ElevenLabsBulkMoveKnowledgeBaseDocumentsRequestSchema>;
2273
+ export type ElevenLabsBulkMoveKnowledgeBaseDocumentsRequestInput = ElevenLabsBulkMoveKnowledgeBaseDocumentsRequest;
2274
+ export type ElevenLabsBulkMoveKnowledgeBaseDocumentsParsedRequest = z.output<typeof ElevenLabsBulkMoveKnowledgeBaseDocumentsRequestSchema>;
2275
+ export declare const ElevenLabsMoveKnowledgeBaseEntityRequestSchema: z.ZodObject<{
2276
+ move_to: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2277
+ }, z.core.$strip>;
2278
+ export type ElevenLabsMoveKnowledgeBaseEntityRequest = z.input<typeof ElevenLabsMoveKnowledgeBaseEntityRequestSchema>;
2279
+ export type ElevenLabsMoveKnowledgeBaseEntityRequestInput = ElevenLabsMoveKnowledgeBaseEntityRequest;
2280
+ export type ElevenLabsMoveKnowledgeBaseEntityParsedRequest = z.output<typeof ElevenLabsMoveKnowledgeBaseEntityRequestSchema>;
460
2281
  export declare const ElevenLabsListConversationsRequestSchema: z.ZodObject<{
461
2282
  cursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
462
2283
  agent_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -513,18 +2334,177 @@ export declare const ElevenLabsGetSignedUrlRequestSchema: z.ZodObject<{
513
2334
  export type ElevenLabsGetSignedUrlRequest = z.input<typeof ElevenLabsGetSignedUrlRequestSchema>;
514
2335
  export type ElevenLabsGetSignedUrlRequestInput = ElevenLabsGetSignedUrlRequest;
515
2336
  export type ElevenLabsGetSignedUrlParsedRequest = z.output<typeof ElevenLabsGetSignedUrlRequestSchema>;
2337
+ export declare const ElevenLabsGetConversationTokenRequestSchema: z.ZodObject<{
2338
+ agent_id: z.ZodString;
2339
+ participant_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2340
+ branch_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2341
+ environment: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2342
+ }, z.core.$strip>;
2343
+ export type ElevenLabsGetConversationTokenRequest = z.input<typeof ElevenLabsGetConversationTokenRequestSchema>;
2344
+ export type ElevenLabsGetConversationTokenRequestInput = ElevenLabsGetConversationTokenRequest;
2345
+ export type ElevenLabsGetConversationTokenParsedRequest = z.output<typeof ElevenLabsGetConversationTokenRequestSchema>;
2346
+ export declare const ElevenLabsSmartSearchConversationMessagesRequestSchema: z.ZodObject<{
2347
+ text_query: z.ZodString;
2348
+ agent_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2349
+ page_size: z.ZodOptional<z.ZodNumber>;
2350
+ cursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2351
+ }, z.core.$strip>;
2352
+ export type ElevenLabsSmartSearchConversationMessagesRequest = z.input<typeof ElevenLabsSmartSearchConversationMessagesRequestSchema>;
2353
+ export type ElevenLabsSmartSearchConversationMessagesRequestInput = ElevenLabsSmartSearchConversationMessagesRequest;
2354
+ export type ElevenLabsSmartSearchConversationMessagesParsedRequest = z.output<typeof ElevenLabsSmartSearchConversationMessagesRequestSchema>;
2355
+ export declare const ElevenLabsTextSearchConversationMessagesRequestSchema: z.ZodObject<{
2356
+ text_query: z.ZodString;
2357
+ agent_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2358
+ call_successful: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
2359
+ unknown: "unknown";
2360
+ success: "success";
2361
+ failure: "failure";
2362
+ }>>>;
2363
+ call_start_before_unix: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2364
+ call_start_after_unix: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2365
+ call_duration_min_secs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2366
+ call_duration_max_secs: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2367
+ rating_max: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2368
+ rating_min: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2369
+ has_feedback_comment: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
2370
+ user_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2371
+ evaluation_params: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
2372
+ data_collection_params: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
2373
+ tool_names: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
2374
+ tool_names_successful: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
2375
+ tool_names_errored: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
2376
+ main_languages: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
2377
+ page_size: z.ZodOptional<z.ZodNumber>;
2378
+ summary_mode: z.ZodOptional<z.ZodEnum<{
2379
+ exclude: "exclude";
2380
+ include: "include";
2381
+ }>>;
2382
+ conversation_initiation_source: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
2383
+ unknown: "unknown";
2384
+ android_sdk: "android_sdk";
2385
+ node_js_sdk: "node_js_sdk";
2386
+ react_native_sdk: "react_native_sdk";
2387
+ react_sdk: "react_sdk";
2388
+ js_sdk: "js_sdk";
2389
+ python_sdk: "python_sdk";
2390
+ widget: "widget";
2391
+ sip_trunk: "sip_trunk";
2392
+ twilio: "twilio";
2393
+ exotel: "exotel";
2394
+ genesys: "genesys";
2395
+ swift_sdk: "swift_sdk";
2396
+ whatsapp: "whatsapp";
2397
+ twilio_sms: "twilio_sms";
2398
+ flutter_sdk: "flutter_sdk";
2399
+ zendesk_integration: "zendesk_integration";
2400
+ slack_integration: "slack_integration";
2401
+ telegram_integration: "telegram_integration";
2402
+ intercom_integration: "intercom_integration";
2403
+ freshdesk_integration: "freshdesk_integration";
2404
+ template_preview: "template_preview";
2405
+ genesys_bot_connector: "genesys_bot_connector";
2406
+ }>>>;
2407
+ text_only: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
2408
+ conversation_product_type: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
2409
+ agents: "agents";
2410
+ speech_engine: "speech_engine";
2411
+ }>>>;
2412
+ branch_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2413
+ topic_ids: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
2414
+ sort_by: z.ZodOptional<z.ZodEnum<{
2415
+ created_at: "created_at";
2416
+ search_score: "search_score";
2417
+ }>>;
2418
+ cursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2419
+ }, z.core.$strip>;
2420
+ export type ElevenLabsTextSearchConversationMessagesRequest = z.input<typeof ElevenLabsTextSearchConversationMessagesRequestSchema>;
2421
+ export type ElevenLabsTextSearchConversationMessagesRequestInput = ElevenLabsTextSearchConversationMessagesRequest;
2422
+ export type ElevenLabsTextSearchConversationMessagesParsedRequest = z.output<typeof ElevenLabsTextSearchConversationMessagesRequestSchema>;
2423
+ export declare const ElevenLabsConversationFeedbackRequestSchema: z.ZodObject<{
2424
+ feedback: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
2425
+ like: "like";
2426
+ dislike: "dislike";
2427
+ }>>>;
2428
+ }, z.core.$strip>;
2429
+ export type ElevenLabsConversationFeedbackRequest = z.input<typeof ElevenLabsConversationFeedbackRequestSchema>;
2430
+ export type ElevenLabsConversationFeedbackRequestInput = ElevenLabsConversationFeedbackRequest;
2431
+ export type ElevenLabsConversationFeedbackParsedRequest = z.output<typeof ElevenLabsConversationFeedbackRequestSchema>;
2432
+ export declare const ElevenLabsUploadConversationFileRequestSchema: z.ZodObject<{
2433
+ file: z.ZodCustom<Blob, Blob>;
2434
+ }, z.core.$strip>;
2435
+ export type ElevenLabsUploadConversationFileRequest = z.input<typeof ElevenLabsUploadConversationFileRequestSchema>;
2436
+ export type ElevenLabsUploadConversationFileRequestInput = ElevenLabsUploadConversationFileRequest;
2437
+ export type ElevenLabsUploadConversationFileParsedRequest = z.output<typeof ElevenLabsUploadConversationFileRequestSchema>;
2438
+ export declare const ElevenLabsGetConversationSipMessagesRequestSchema: z.ZodObject<{
2439
+ page_size: z.ZodOptional<z.ZodNumber>;
2440
+ cursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2441
+ }, z.core.$strip>;
2442
+ export type ElevenLabsGetConversationSipMessagesRequest = z.input<typeof ElevenLabsGetConversationSipMessagesRequestSchema>;
2443
+ export type ElevenLabsGetConversationSipMessagesRequestInput = ElevenLabsGetConversationSipMessagesRequest;
2444
+ export type ElevenLabsGetConversationSipMessagesParsedRequest = z.output<typeof ElevenLabsGetConversationSipMessagesRequestSchema>;
2445
+ export declare const ElevenLabsAssignConversationTagsRequestSchema: z.ZodObject<{
2446
+ tag_ids: z.ZodArray<z.ZodString>;
2447
+ }, z.core.$strip>;
2448
+ export type ElevenLabsAssignConversationTagsRequest = z.input<typeof ElevenLabsAssignConversationTagsRequestSchema>;
2449
+ export type ElevenLabsAssignConversationTagsRequestInput = ElevenLabsAssignConversationTagsRequest;
2450
+ export type ElevenLabsAssignConversationTagsParsedRequest = z.output<typeof ElevenLabsAssignConversationTagsRequestSchema>;
2451
+ export declare const ElevenLabsRunConversationEvaluationsRequestSchema: z.ZodObject<{
2452
+ evaluation_id: z.ZodString;
2453
+ scope: z.ZodOptional<z.ZodEnum<{
2454
+ conversation: "conversation";
2455
+ agent: "agent";
2456
+ }>>;
2457
+ }, z.core.$strip>;
2458
+ export type ElevenLabsRunConversationEvaluationsRequest = z.input<typeof ElevenLabsRunConversationEvaluationsRequestSchema>;
2459
+ export type ElevenLabsRunConversationEvaluationsRequestInput = ElevenLabsRunConversationEvaluationsRequest;
2460
+ export type ElevenLabsRunConversationEvaluationsParsedRequest = z.output<typeof ElevenLabsRunConversationEvaluationsRequestSchema>;
2461
+ export declare const ElevenLabsSubmitBatchCallRequestSchema: z.ZodObject<{
2462
+ call_name: z.ZodString;
2463
+ agent_id: z.ZodString;
2464
+ recipients: z.ZodArray<z.ZodObject<{
2465
+ id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2466
+ phone_number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2467
+ whatsapp_user_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2468
+ conversation_initiation_client_data: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
2469
+ }, z.core.$strip>>;
2470
+ scheduled_time_unix: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2471
+ agent_phone_number_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2472
+ whatsapp_params: z.ZodOptional<z.ZodNullable<z.ZodObject<{
2473
+ whatsapp_phone_number_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2474
+ whatsapp_call_permission_request_template_name: z.ZodString;
2475
+ whatsapp_call_permission_request_template_language_code: z.ZodString;
2476
+ }, z.core.$strip>>>;
2477
+ timezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2478
+ branch_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2479
+ environment: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2480
+ telephony_call_config: z.ZodOptional<z.ZodObject<{
2481
+ ringing_timeout_secs: z.ZodOptional<z.ZodNumber>;
2482
+ }, z.core.$strip>>;
2483
+ target_concurrency_limit: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2484
+ }, z.core.$strip>;
2485
+ export type ElevenLabsSubmitBatchCallRequest = z.input<typeof ElevenLabsSubmitBatchCallRequestSchema>;
2486
+ export type ElevenLabsSubmitBatchCallRequestInput = ElevenLabsSubmitBatchCallRequest;
2487
+ export type ElevenLabsSubmitBatchCallParsedRequest = z.output<typeof ElevenLabsSubmitBatchCallRequestSchema>;
2488
+ export declare const ElevenLabsListWorkspaceBatchCallsRequestSchema: z.ZodObject<{
2489
+ limit: z.ZodOptional<z.ZodNumber>;
2490
+ last_doc: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2491
+ agent_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2492
+ }, z.core.$strip>;
2493
+ export type ElevenLabsListWorkspaceBatchCallsRequest = z.input<typeof ElevenLabsListWorkspaceBatchCallsRequestSchema>;
2494
+ export type ElevenLabsListWorkspaceBatchCallsRequestInput = ElevenLabsListWorkspaceBatchCallsRequest;
2495
+ export type ElevenLabsListWorkspaceBatchCallsParsedRequest = z.output<typeof ElevenLabsListWorkspaceBatchCallsRequestSchema>;
516
2496
  export declare const ElevenLabsPhoneNumberProvider: z.ZodEnum<{
2497
+ sip_trunk: "sip_trunk";
517
2498
  twilio: "twilio";
518
2499
  exotel: "exotel";
519
- sip_trunk: "sip_trunk";
520
2500
  }>;
521
2501
  export declare const ElevenLabsCreatePhoneNumberRequestSchema: z.ZodObject<{
522
2502
  phone_number: z.ZodString;
523
2503
  label: z.ZodString;
524
2504
  provider: z.ZodEnum<{
2505
+ sip_trunk: "sip_trunk";
525
2506
  twilio: "twilio";
526
2507
  exotel: "exotel";
527
- sip_trunk: "sip_trunk";
528
2508
  }>;
529
2509
  sid: z.ZodOptional<z.ZodString>;
530
2510
  token: z.ZodOptional<z.ZodString>;
@@ -548,9 +2528,9 @@ export type ElevenLabsCreatePhoneNumberRequestInput = ElevenLabsCreatePhoneNumbe
548
2528
  export type ElevenLabsCreatePhoneNumberParsedRequest = z.output<typeof ElevenLabsCreatePhoneNumberRequestSchema>;
549
2529
  export declare const ElevenLabsListPhoneNumbersRequestSchema: z.ZodObject<{
550
2530
  provider: z.ZodOptional<z.ZodEnum<{
2531
+ sip_trunk: "sip_trunk";
551
2532
  twilio: "twilio";
552
2533
  exotel: "exotel";
553
- sip_trunk: "sip_trunk";
554
2534
  }>>;
555
2535
  agent_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
556
2536
  branch_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -571,6 +2551,26 @@ export declare const ElevenLabsUpdatePhoneNumberRequestSchema: z.ZodObject<{
571
2551
  export type ElevenLabsUpdatePhoneNumberRequest = z.input<typeof ElevenLabsUpdatePhoneNumberRequestSchema>;
572
2552
  export type ElevenLabsUpdatePhoneNumberRequestInput = ElevenLabsUpdatePhoneNumberRequest;
573
2553
  export type ElevenLabsUpdatePhoneNumberParsedRequest = z.output<typeof ElevenLabsUpdatePhoneNumberRequestSchema>;
2554
+ export declare const ElevenLabsGetPhoneNumberSipMessagesRequestSchema: z.ZodObject<{
2555
+ page_size: z.ZodOptional<z.ZodNumber>;
2556
+ cursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2557
+ }, z.core.$strip>;
2558
+ export type ElevenLabsGetPhoneNumberSipMessagesRequest = z.input<typeof ElevenLabsGetPhoneNumberSipMessagesRequestSchema>;
2559
+ export type ElevenLabsGetPhoneNumberSipMessagesRequestInput = ElevenLabsGetPhoneNumberSipMessagesRequest;
2560
+ export type ElevenLabsGetPhoneNumberSipMessagesParsedRequest = z.output<typeof ElevenLabsGetPhoneNumberSipMessagesRequestSchema>;
2561
+ export declare const ElevenLabsRegisterTwilioCallRequestSchema: z.ZodObject<{
2562
+ agent_id: z.ZodString;
2563
+ from_number: z.ZodString;
2564
+ to_number: z.ZodString;
2565
+ direction: z.ZodOptional<z.ZodEnum<{
2566
+ inbound: "inbound";
2567
+ outbound: "outbound";
2568
+ }>>;
2569
+ conversation_initiation_client_data: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
2570
+ }, z.core.$strip>;
2571
+ export type ElevenLabsRegisterTwilioCallRequest = z.input<typeof ElevenLabsRegisterTwilioCallRequestSchema>;
2572
+ export type ElevenLabsRegisterTwilioCallRequestInput = ElevenLabsRegisterTwilioCallRequest;
2573
+ export type ElevenLabsRegisterTwilioCallParsedRequest = z.output<typeof ElevenLabsRegisterTwilioCallRequestSchema>;
574
2574
  export declare const ElevenLabsTwilioOutboundCallRequestSchema: z.ZodObject<{
575
2575
  agent_id: z.ZodString;
576
2576
  agent_phone_number_id: z.ZodString;
@@ -592,4 +2592,710 @@ export declare const ElevenLabsSipTrunkOutboundCallRequestSchema: z.ZodObject<{
592
2592
  export type ElevenLabsSipTrunkOutboundCallRequest = z.input<typeof ElevenLabsSipTrunkOutboundCallRequestSchema>;
593
2593
  export type ElevenLabsSipTrunkOutboundCallRequestInput = ElevenLabsSipTrunkOutboundCallRequest;
594
2594
  export type ElevenLabsSipTrunkOutboundCallParsedRequest = z.output<typeof ElevenLabsSipTrunkOutboundCallRequestSchema>;
2595
+ export declare const ElevenLabsExotelOutboundCallRequestSchema: z.ZodObject<{
2596
+ agent_id: z.ZodString;
2597
+ agent_phone_number_id: z.ZodString;
2598
+ to_number: z.ZodString;
2599
+ conversation_initiation_client_data: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
2600
+ telephony_call_config: z.ZodOptional<z.ZodNullable<z.ZodObject<{
2601
+ ringing_timeout_secs: z.ZodOptional<z.ZodNumber>;
2602
+ }, z.core.$strip>>>;
2603
+ }, z.core.$strip>;
2604
+ export type ElevenLabsExotelOutboundCallRequest = z.input<typeof ElevenLabsExotelOutboundCallRequestSchema>;
2605
+ export type ElevenLabsExotelOutboundCallRequestInput = ElevenLabsExotelOutboundCallRequest;
2606
+ export type ElevenLabsExotelOutboundCallParsedRequest = z.output<typeof ElevenLabsExotelOutboundCallRequestSchema>;
2607
+ export declare const ElevenLabsWhatsAppOutboundCallRequestSchema: z.ZodObject<{
2608
+ whatsapp_phone_number_id: z.ZodString;
2609
+ whatsapp_user_id: z.ZodString;
2610
+ whatsapp_call_permission_request_template_name: z.ZodString;
2611
+ whatsapp_call_permission_request_template_language_code: z.ZodString;
2612
+ agent_id: z.ZodString;
2613
+ conversation_initiation_client_data: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
2614
+ }, z.core.$strip>;
2615
+ export type ElevenLabsWhatsAppOutboundCallRequest = z.input<typeof ElevenLabsWhatsAppOutboundCallRequestSchema>;
2616
+ export type ElevenLabsWhatsAppOutboundCallRequestInput = ElevenLabsWhatsAppOutboundCallRequest;
2617
+ export type ElevenLabsWhatsAppOutboundCallParsedRequest = z.output<typeof ElevenLabsWhatsAppOutboundCallRequestSchema>;
2618
+ export declare const ElevenLabsWhatsAppOutboundMessageRequestSchema: z.ZodObject<{
2619
+ whatsapp_phone_number_id: z.ZodString;
2620
+ whatsapp_user_id: z.ZodString;
2621
+ template_name: z.ZodString;
2622
+ template_language_code: z.ZodString;
2623
+ template_params: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
2624
+ type: z.ZodOptional<z.ZodLiteral<"header">>;
2625
+ parameters: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
2626
+ parameter_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2627
+ type: z.ZodOptional<z.ZodLiteral<"text">>;
2628
+ text: z.ZodString;
2629
+ }, z.core.$strip>, z.ZodObject<{
2630
+ type: z.ZodOptional<z.ZodLiteral<"image">>;
2631
+ image: z.ZodObject<{
2632
+ link: z.ZodString;
2633
+ }, z.core.$strip>;
2634
+ }, z.core.$strip>, z.ZodObject<{
2635
+ type: z.ZodOptional<z.ZodLiteral<"document">>;
2636
+ document: z.ZodObject<{
2637
+ link: z.ZodString;
2638
+ filename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2639
+ }, z.core.$strip>;
2640
+ }, z.core.$strip>, z.ZodObject<{
2641
+ type: z.ZodOptional<z.ZodLiteral<"location">>;
2642
+ location: z.ZodObject<{
2643
+ latitude: z.ZodString;
2644
+ longitude: z.ZodString;
2645
+ name: z.ZodString;
2646
+ address: z.ZodString;
2647
+ }, z.core.$strip>;
2648
+ }, z.core.$strip>]>>;
2649
+ }, z.core.$strip>, z.ZodObject<{
2650
+ type: z.ZodOptional<z.ZodLiteral<"body">>;
2651
+ parameters: z.ZodArray<z.ZodObject<{
2652
+ parameter_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2653
+ type: z.ZodOptional<z.ZodLiteral<"text">>;
2654
+ text: z.ZodString;
2655
+ }, z.core.$strip>>;
2656
+ }, z.core.$strip>, z.ZodObject<{
2657
+ type: z.ZodOptional<z.ZodLiteral<"button">>;
2658
+ parameters: z.ZodArray<z.ZodObject<{
2659
+ parameter_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2660
+ type: z.ZodOptional<z.ZodLiteral<"text">>;
2661
+ text: z.ZodString;
2662
+ }, z.core.$strip>>;
2663
+ index: z.ZodNumber;
2664
+ sub_type: z.ZodString;
2665
+ }, z.core.$strip>]>>;
2666
+ agent_id: z.ZodString;
2667
+ conversation_initiation_client_data: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
2668
+ }, z.core.$strip>;
2669
+ export type ElevenLabsWhatsAppOutboundMessageRequest = z.input<typeof ElevenLabsWhatsAppOutboundMessageRequestSchema>;
2670
+ export type ElevenLabsWhatsAppOutboundMessageRequestInput = ElevenLabsWhatsAppOutboundMessageRequest;
2671
+ export type ElevenLabsWhatsAppOutboundMessageParsedRequest = z.output<typeof ElevenLabsWhatsAppOutboundMessageRequestSchema>;
2672
+ export declare const ElevenLabsListWhatsAppAccountsRequestSchema: z.ZodObject<{
2673
+ agent_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2674
+ }, z.core.$strip>;
2675
+ export type ElevenLabsListWhatsAppAccountsRequest = z.input<typeof ElevenLabsListWhatsAppAccountsRequestSchema>;
2676
+ export type ElevenLabsListWhatsAppAccountsRequestInput = ElevenLabsListWhatsAppAccountsRequest;
2677
+ export type ElevenLabsListWhatsAppAccountsParsedRequest = z.output<typeof ElevenLabsListWhatsAppAccountsRequestSchema>;
2678
+ export declare const ElevenLabsUpdateWhatsAppAccountRequestSchema: z.ZodObject<{
2679
+ assigned_agent_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2680
+ enable_messaging: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
2681
+ enable_audio_message_response: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
2682
+ }, z.core.$strip>;
2683
+ export type ElevenLabsUpdateWhatsAppAccountRequest = z.input<typeof ElevenLabsUpdateWhatsAppAccountRequestSchema>;
2684
+ export type ElevenLabsUpdateWhatsAppAccountRequestInput = ElevenLabsUpdateWhatsAppAccountRequest;
2685
+ export type ElevenLabsUpdateWhatsAppAccountParsedRequest = z.output<typeof ElevenLabsUpdateWhatsAppAccountRequestSchema>;
2686
+ export declare const ElevenLabsCreateVoiceFromPreviewRequestSchema: z.ZodObject<{
2687
+ voice_name: z.ZodString;
2688
+ voice_description: z.ZodString;
2689
+ generated_voice_id: z.ZodString;
2690
+ labels: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
2691
+ played_not_selected_voice_ids: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
2692
+ }, z.core.$strip>;
2693
+ export type ElevenLabsCreateVoiceFromPreviewRequest = z.input<typeof ElevenLabsCreateVoiceFromPreviewRequestSchema>;
2694
+ export type ElevenLabsCreateVoiceFromPreviewRequestInput = ElevenLabsCreateVoiceFromPreviewRequest;
2695
+ export type ElevenLabsCreateVoiceFromPreviewParsedRequest = z.output<typeof ElevenLabsCreateVoiceFromPreviewRequestSchema>;
2696
+ export declare const ElevenLabsVoiceDesignRequestSchema: z.ZodObject<{
2697
+ voice_description: z.ZodString;
2698
+ model_id: z.ZodOptional<z.ZodEnum<{
2699
+ eleven_multilingual_ttv_v2: "eleven_multilingual_ttv_v2";
2700
+ eleven_ttv_v3: "eleven_ttv_v3";
2701
+ }>>;
2702
+ text: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2703
+ auto_generate_text: z.ZodOptional<z.ZodBoolean>;
2704
+ loudness: z.ZodOptional<z.ZodNumber>;
2705
+ seed: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2706
+ guidance_scale: z.ZodOptional<z.ZodNumber>;
2707
+ stream_previews: z.ZodOptional<z.ZodBoolean>;
2708
+ should_enhance: z.ZodOptional<z.ZodBoolean>;
2709
+ remixing_session_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2710
+ remixing_session_iteration_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2711
+ quality: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2712
+ reference_audio_base64: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2713
+ prompt_strength: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2714
+ output_format: z.ZodOptional<z.ZodString>;
2715
+ }, z.core.$strip>;
2716
+ export type ElevenLabsVoiceDesignRequest = z.input<typeof ElevenLabsVoiceDesignRequestSchema>;
2717
+ export type ElevenLabsVoiceDesignRequestInput = ElevenLabsVoiceDesignRequest;
2718
+ export type ElevenLabsVoiceDesignParsedRequest = z.output<typeof ElevenLabsVoiceDesignRequestSchema>;
2719
+ export declare const ElevenLabsVoiceRemixRequestSchema: z.ZodObject<{
2720
+ voice_description: z.ZodString;
2721
+ text: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2722
+ auto_generate_text: z.ZodOptional<z.ZodBoolean>;
2723
+ loudness: z.ZodOptional<z.ZodNumber>;
2724
+ seed: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2725
+ guidance_scale: z.ZodOptional<z.ZodNumber>;
2726
+ stream_previews: z.ZodOptional<z.ZodBoolean>;
2727
+ remixing_session_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2728
+ remixing_session_iteration_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2729
+ prompt_strength: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2730
+ output_format: z.ZodOptional<z.ZodString>;
2731
+ }, z.core.$strip>;
2732
+ export type ElevenLabsVoiceRemixRequest = z.input<typeof ElevenLabsVoiceRemixRequestSchema>;
2733
+ export type ElevenLabsVoiceRemixRequestInput = ElevenLabsVoiceRemixRequest;
2734
+ export type ElevenLabsVoiceRemixParsedRequest = z.output<typeof ElevenLabsVoiceRemixRequestSchema>;
2735
+ export declare const ElevenLabsHistoryListRequestSchema: z.ZodObject<{
2736
+ page_size: z.ZodOptional<z.ZodNumber>;
2737
+ start_after_history_item_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2738
+ voice_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2739
+ model_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2740
+ date_before_unix: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2741
+ date_after_unix: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2742
+ sort_direction: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
2743
+ asc: "asc";
2744
+ desc: "desc";
2745
+ }>>>;
2746
+ search: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2747
+ source: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
2748
+ TTS: "TTS";
2749
+ STS: "STS";
2750
+ Flows: "Flows";
2751
+ }>>>;
2752
+ }, z.core.$strip>;
2753
+ export type ElevenLabsHistoryListRequest = z.input<typeof ElevenLabsHistoryListRequestSchema>;
2754
+ export type ElevenLabsHistoryListRequestInput = ElevenLabsHistoryListRequest;
2755
+ export type ElevenLabsHistoryListParsedRequest = z.output<typeof ElevenLabsHistoryListRequestSchema>;
2756
+ export declare const ElevenLabsHistoryDownloadRequestSchema: z.ZodObject<{
2757
+ history_item_ids: z.ZodArray<z.ZodString>;
2758
+ output_format: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2759
+ }, z.core.$strip>;
2760
+ export type ElevenLabsHistoryDownloadRequest = z.input<typeof ElevenLabsHistoryDownloadRequestSchema>;
2761
+ export type ElevenLabsHistoryDownloadRequestInput = ElevenLabsHistoryDownloadRequest;
2762
+ export type ElevenLabsHistoryDownloadParsedRequest = z.output<typeof ElevenLabsHistoryDownloadRequestSchema>;
2763
+ export declare const ElevenLabsListDubbingRequestSchema: z.ZodObject<{
2764
+ cursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2765
+ page_size: z.ZodOptional<z.ZodNumber>;
2766
+ dubbing_status: z.ZodOptional<z.ZodEnum<{
2767
+ failed: "failed";
2768
+ dubbing: "dubbing";
2769
+ dubbed: "dubbed";
2770
+ }>>;
2771
+ dubbing_statuses: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<{
2772
+ queued: "queued";
2773
+ failed: "failed";
2774
+ dubbing: "dubbing";
2775
+ dubbed: "dubbed";
2776
+ preparing: "preparing";
2777
+ }>>>>;
2778
+ dubbing_models: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<{
2779
+ dubbing_v1: "dubbing_v1";
2780
+ dubbing_v2: "dubbing_v2";
2781
+ }>>>>;
2782
+ target_language_codes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
2783
+ creation_sources: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<{
2784
+ flow_node: "flow_node";
2785
+ dubbing_ui: "dubbing_ui";
2786
+ dubbing_api: "dubbing_api";
2787
+ }>>>>;
2788
+ filter_by_creator: z.ZodOptional<z.ZodEnum<{
2789
+ personal: "personal";
2790
+ all: "all";
2791
+ others: "others";
2792
+ }>>;
2793
+ order_by: z.ZodOptional<z.ZodEnum<{
2794
+ name: "name";
2795
+ created_at: "created_at";
2796
+ }>>;
2797
+ order_direction: z.ZodOptional<z.ZodEnum<{
2798
+ DESCENDING: "DESCENDING";
2799
+ ASCENDING: "ASCENDING";
2800
+ }>>;
2801
+ }, z.core.$strip>;
2802
+ export type ElevenLabsListDubbingRequest = z.input<typeof ElevenLabsListDubbingRequestSchema>;
2803
+ export type ElevenLabsListDubbingRequestInput = ElevenLabsListDubbingRequest;
2804
+ export type ElevenLabsListDubbingParsedRequest = z.output<typeof ElevenLabsListDubbingRequestSchema>;
2805
+ export declare const ElevenLabsCreateDubbingRequestSchema: z.ZodObject<{
2806
+ file: z.ZodOptional<z.ZodCustom<Blob, Blob>>;
2807
+ csv_file: z.ZodOptional<z.ZodCustom<Blob, Blob>>;
2808
+ foreground_audio_file: z.ZodOptional<z.ZodCustom<Blob, Blob>>;
2809
+ background_audio_file: z.ZodOptional<z.ZodCustom<Blob, Blob>>;
2810
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2811
+ source_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2812
+ source_lang: z.ZodOptional<z.ZodString>;
2813
+ target_lang: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2814
+ target_accent: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2815
+ num_speakers: z.ZodOptional<z.ZodNumber>;
2816
+ watermark: z.ZodOptional<z.ZodBoolean>;
2817
+ start_time: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2818
+ end_time: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2819
+ highest_resolution: z.ZodOptional<z.ZodBoolean>;
2820
+ drop_background_audio: z.ZodOptional<z.ZodBoolean>;
2821
+ use_profanity_filter: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
2822
+ dubbing_studio: z.ZodOptional<z.ZodBoolean>;
2823
+ disable_voice_cloning: z.ZodOptional<z.ZodBoolean>;
2824
+ mode: z.ZodOptional<z.ZodString>;
2825
+ csv_fps: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2826
+ }, z.core.$strip>;
2827
+ export type ElevenLabsCreateDubbingRequest = z.input<typeof ElevenLabsCreateDubbingRequestSchema>;
2828
+ export type ElevenLabsCreateDubbingRequestInput = ElevenLabsCreateDubbingRequest;
2829
+ export type ElevenLabsCreateDubbingParsedRequest = z.output<typeof ElevenLabsCreateDubbingRequestSchema>;
2830
+ export declare const ElevenLabsStudioCreatePodcastRequestSchema: z.ZodObject<{
2831
+ model_id: z.ZodString;
2832
+ mode: z.ZodUnion<readonly [z.ZodObject<{
2833
+ type: z.ZodLiteral<"conversation">;
2834
+ conversation: z.ZodObject<{
2835
+ host_voice_id: z.ZodString;
2836
+ guest_voice_id: z.ZodString;
2837
+ }, z.core.$strip>;
2838
+ }, z.core.$strip>, z.ZodObject<{
2839
+ type: z.ZodLiteral<"bulletin">;
2840
+ bulletin: z.ZodObject<{
2841
+ host_voice_id: z.ZodString;
2842
+ }, z.core.$strip>;
2843
+ }, z.core.$strip>]>;
2844
+ source: z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
2845
+ type: z.ZodLiteral<"text">;
2846
+ text: z.ZodString;
2847
+ }, z.core.$strip>, z.ZodObject<{
2848
+ type: z.ZodLiteral<"url">;
2849
+ url: z.ZodString;
2850
+ }, z.core.$strip>]>, z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
2851
+ type: z.ZodLiteral<"text">;
2852
+ text: z.ZodString;
2853
+ }, z.core.$strip>, z.ZodObject<{
2854
+ type: z.ZodLiteral<"url">;
2855
+ url: z.ZodString;
2856
+ }, z.core.$strip>]>>]>;
2857
+ quality_preset: z.ZodOptional<z.ZodEnum<{
2858
+ high: "high";
2859
+ standard: "standard";
2860
+ ultra: "ultra";
2861
+ ultra_lossless: "ultra_lossless";
2862
+ }>>;
2863
+ duration_scale: z.ZodOptional<z.ZodEnum<{
2864
+ default: "default";
2865
+ short: "short";
2866
+ long: "long";
2867
+ }>>;
2868
+ language: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2869
+ intro: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2870
+ outro: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2871
+ instructions_prompt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2872
+ highlights: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
2873
+ callback_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2874
+ apply_text_normalization: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
2875
+ auto: "auto";
2876
+ on: "on";
2877
+ off: "off";
2878
+ apply_english: "apply_english";
2879
+ }>>>;
2880
+ }, z.core.$strip>;
2881
+ export type ElevenLabsStudioCreatePodcastRequest = z.input<typeof ElevenLabsStudioCreatePodcastRequestSchema>;
2882
+ export type ElevenLabsStudioCreatePodcastRequestInput = ElevenLabsStudioCreatePodcastRequest;
2883
+ export type ElevenLabsStudioCreatePodcastParsedRequest = z.output<typeof ElevenLabsStudioCreatePodcastRequestSchema>;
2884
+ export declare const ElevenLabsStudioGetProjectRequestSchema: z.ZodObject<{
2885
+ share_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2886
+ }, z.core.$strip>;
2887
+ export type ElevenLabsStudioGetProjectRequest = z.input<typeof ElevenLabsStudioGetProjectRequestSchema>;
2888
+ export type ElevenLabsStudioGetProjectRequestInput = ElevenLabsStudioGetProjectRequest;
2889
+ export type ElevenLabsStudioGetProjectParsedRequest = z.output<typeof ElevenLabsStudioGetProjectRequestSchema>;
2890
+ export declare const ElevenLabsStudioCreateProjectRequestSchema: z.ZodObject<{
2891
+ name: z.ZodString;
2892
+ default_title_voice_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2893
+ default_paragraph_voice_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2894
+ default_model_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2895
+ from_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2896
+ from_document: z.ZodOptional<z.ZodNullable<z.ZodCustom<Blob, Blob>>>;
2897
+ from_content_json: z.ZodOptional<z.ZodString>;
2898
+ quality_preset: z.ZodOptional<z.ZodEnum<{
2899
+ high: "high";
2900
+ standard: "standard";
2901
+ ultra: "ultra";
2902
+ ultra_lossless: "ultra_lossless";
2903
+ }>>;
2904
+ title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2905
+ author: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2906
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2907
+ genres: z.ZodOptional<z.ZodArray<z.ZodString>>;
2908
+ target_audience: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
2909
+ children: "children";
2910
+ "young adult": "young adult";
2911
+ adult: "adult";
2912
+ "all ages": "all ages";
2913
+ }>>>;
2914
+ language: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2915
+ content_type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2916
+ original_publication_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2917
+ mature_content: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
2918
+ isbn_number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2919
+ acx_volume_normalization: z.ZodOptional<z.ZodBoolean>;
2920
+ volume_normalization: z.ZodOptional<z.ZodBoolean>;
2921
+ pronunciation_dictionary_locators: z.ZodOptional<z.ZodArray<z.ZodObject<{
2922
+ pronunciation_dictionary_id: z.ZodString;
2923
+ version_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2924
+ }, z.core.$strip>>>;
2925
+ callback_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2926
+ fiction: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
2927
+ fiction: "fiction";
2928
+ "non-fiction": "non-fiction";
2929
+ }>>>;
2930
+ apply_text_normalization: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
2931
+ auto: "auto";
2932
+ on: "on";
2933
+ off: "off";
2934
+ apply_english: "apply_english";
2935
+ }>>>;
2936
+ auto_convert: z.ZodOptional<z.ZodBoolean>;
2937
+ auto_assign_voices: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
2938
+ source_type: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
2939
+ blank: "blank";
2940
+ book: "book";
2941
+ article: "article";
2942
+ genfm: "genfm";
2943
+ video: "video";
2944
+ screenplay: "screenplay";
2945
+ }>>>;
2946
+ voice_settings: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
2947
+ create_publishing_read: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
2948
+ }, z.core.$strip>;
2949
+ export type ElevenLabsStudioCreateProjectRequest = z.input<typeof ElevenLabsStudioCreateProjectRequestSchema>;
2950
+ export type ElevenLabsStudioCreateProjectRequestInput = ElevenLabsStudioCreateProjectRequest;
2951
+ export type ElevenLabsStudioCreateProjectParsedRequest = z.output<typeof ElevenLabsStudioCreateProjectRequestSchema>;
2952
+ export declare const ElevenLabsStudioUpdateProjectRequestSchema: z.ZodObject<{
2953
+ name: z.ZodString;
2954
+ default_title_voice_id: z.ZodString;
2955
+ default_paragraph_voice_id: z.ZodString;
2956
+ title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2957
+ author: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2958
+ isbn_number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2959
+ volume_normalization: z.ZodOptional<z.ZodBoolean>;
2960
+ }, z.core.$strip>;
2961
+ export type ElevenLabsStudioUpdateProjectRequest = z.input<typeof ElevenLabsStudioUpdateProjectRequestSchema>;
2962
+ export type ElevenLabsStudioUpdateProjectRequestInput = ElevenLabsStudioUpdateProjectRequest;
2963
+ export type ElevenLabsStudioUpdateProjectParsedRequest = z.output<typeof ElevenLabsStudioUpdateProjectRequestSchema>;
2964
+ export declare const ElevenLabsStudioUpdateProjectContentRequestSchema: z.ZodObject<{
2965
+ from_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2966
+ from_document: z.ZodOptional<z.ZodNullable<z.ZodCustom<Blob, Blob>>>;
2967
+ from_content_json: z.ZodOptional<z.ZodString>;
2968
+ auto_convert: z.ZodOptional<z.ZodBoolean>;
2969
+ }, z.core.$strip>;
2970
+ export type ElevenLabsStudioUpdateProjectContentRequest = z.input<typeof ElevenLabsStudioUpdateProjectContentRequestSchema>;
2971
+ export type ElevenLabsStudioUpdateProjectContentRequestInput = ElevenLabsStudioUpdateProjectContentRequest;
2972
+ export type ElevenLabsStudioUpdateProjectContentParsedRequest = z.output<typeof ElevenLabsStudioUpdateProjectContentRequestSchema>;
2973
+ export declare const ElevenLabsStudioCreatePronunciationDictionariesRequestSchema: z.ZodObject<{
2974
+ pronunciation_dictionary_locators: z.ZodArray<z.ZodObject<{
2975
+ pronunciation_dictionary_id: z.ZodString;
2976
+ version_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2977
+ }, z.core.$strip>>;
2978
+ invalidate_affected_text: z.ZodOptional<z.ZodBoolean>;
2979
+ }, z.core.$strip>;
2980
+ export type ElevenLabsStudioCreatePronunciationDictionariesRequest = z.input<typeof ElevenLabsStudioCreatePronunciationDictionariesRequestSchema>;
2981
+ export type ElevenLabsStudioCreatePronunciationDictionariesRequestInput = ElevenLabsStudioCreatePronunciationDictionariesRequest;
2982
+ export type ElevenLabsStudioCreatePronunciationDictionariesParsedRequest = z.output<typeof ElevenLabsStudioCreatePronunciationDictionariesRequestSchema>;
2983
+ export declare const ElevenLabsStudioStreamAudioRequestSchema: z.ZodObject<{
2984
+ convert_to_mpeg: z.ZodOptional<z.ZodBoolean>;
2985
+ }, z.core.$strip>;
2986
+ export type ElevenLabsStudioStreamAudioRequest = z.input<typeof ElevenLabsStudioStreamAudioRequestSchema>;
2987
+ export type ElevenLabsStudioStreamAudioRequestInput = ElevenLabsStudioStreamAudioRequest;
2988
+ export type ElevenLabsStudioStreamAudioParsedRequest = z.output<typeof ElevenLabsStudioStreamAudioRequestSchema>;
2989
+ export declare const ElevenLabsStudioCreateChapterRequestSchema: z.ZodObject<{
2990
+ name: z.ZodString;
2991
+ from_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2992
+ }, z.core.$strip>;
2993
+ export type ElevenLabsStudioCreateChapterRequest = z.input<typeof ElevenLabsStudioCreateChapterRequestSchema>;
2994
+ export type ElevenLabsStudioCreateChapterRequestInput = ElevenLabsStudioCreateChapterRequest;
2995
+ export type ElevenLabsStudioCreateChapterParsedRequest = z.output<typeof ElevenLabsStudioCreateChapterRequestSchema>;
2996
+ export declare const ElevenLabsStudioUpdateChapterRequestSchema: z.ZodObject<{
2997
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2998
+ content: z.ZodOptional<z.ZodNullable<z.ZodObject<{
2999
+ blocks: z.ZodArray<z.ZodObject<{
3000
+ sub_type: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
3001
+ p: "p";
3002
+ h1: "h1";
3003
+ h2: "h2";
3004
+ h3: "h3";
3005
+ }>>>;
3006
+ nodes: z.ZodArray<z.ZodObject<{
3007
+ type: z.ZodString;
3008
+ text: z.ZodString;
3009
+ voice_id: z.ZodString;
3010
+ }, z.core.$strip>>;
3011
+ block_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3012
+ }, z.core.$strip>>;
3013
+ }, z.core.$strip>>>;
3014
+ }, z.core.$strip>;
3015
+ export type ElevenLabsStudioUpdateChapterRequest = z.input<typeof ElevenLabsStudioUpdateChapterRequestSchema>;
3016
+ export type ElevenLabsStudioUpdateChapterRequestInput = ElevenLabsStudioUpdateChapterRequest;
3017
+ export type ElevenLabsStudioUpdateChapterParsedRequest = z.output<typeof ElevenLabsStudioUpdateChapterRequestSchema>;
3018
+ export declare const ElevenLabsListPronunciationDictionariesRequestSchema: z.ZodObject<{
3019
+ cursor: z.ZodOptional<z.ZodString>;
3020
+ page_size: z.ZodOptional<z.ZodNumber>;
3021
+ sort: z.ZodOptional<z.ZodEnum<{
3022
+ name: "name";
3023
+ creation_time_unix: "creation_time_unix";
3024
+ }>>;
3025
+ sort_direction: z.ZodOptional<z.ZodString>;
3026
+ }, z.core.$strip>;
3027
+ export declare const ElevenLabsAddPronunciationDictionaryFromFileRequestSchema: z.ZodObject<{
3028
+ name: z.ZodString;
3029
+ file: z.ZodOptional<z.ZodAny>;
3030
+ description: z.ZodOptional<z.ZodString>;
3031
+ workspace_access: z.ZodOptional<z.ZodEnum<{
3032
+ admin: "admin";
3033
+ editor: "editor";
3034
+ commenter: "commenter";
3035
+ viewer: "viewer";
3036
+ }>>;
3037
+ }, z.core.$strip>;
3038
+ export declare const ElevenLabsPronunciationDictionaryAliasRuleRequestSchema: z.ZodObject<{
3039
+ string_to_replace: z.ZodString;
3040
+ case_sensitive: z.ZodOptional<z.ZodBoolean>;
3041
+ word_boundaries: z.ZodOptional<z.ZodBoolean>;
3042
+ type: z.ZodLiteral<"alias">;
3043
+ alias: z.ZodString;
3044
+ }, z.core.$strip>;
3045
+ export declare const ElevenLabsPronunciationDictionaryPhonemeRuleRequestSchema: z.ZodObject<{
3046
+ string_to_replace: z.ZodString;
3047
+ case_sensitive: z.ZodOptional<z.ZodBoolean>;
3048
+ word_boundaries: z.ZodOptional<z.ZodBoolean>;
3049
+ type: z.ZodLiteral<"phoneme">;
3050
+ phoneme: z.ZodString;
3051
+ alphabet: z.ZodString;
3052
+ }, z.core.$strip>;
3053
+ export declare const ElevenLabsPronunciationDictionaryRuleRequestSchema: z.ZodUnion<readonly [z.ZodObject<{
3054
+ string_to_replace: z.ZodString;
3055
+ case_sensitive: z.ZodOptional<z.ZodBoolean>;
3056
+ word_boundaries: z.ZodOptional<z.ZodBoolean>;
3057
+ type: z.ZodLiteral<"alias">;
3058
+ alias: z.ZodString;
3059
+ }, z.core.$strip>, z.ZodObject<{
3060
+ string_to_replace: z.ZodString;
3061
+ case_sensitive: z.ZodOptional<z.ZodBoolean>;
3062
+ word_boundaries: z.ZodOptional<z.ZodBoolean>;
3063
+ type: z.ZodLiteral<"phoneme">;
3064
+ phoneme: z.ZodString;
3065
+ alphabet: z.ZodString;
3066
+ }, z.core.$strip>]>;
3067
+ export declare const ElevenLabsAddPronunciationDictionaryFromRulesRequestSchema: z.ZodObject<{
3068
+ name: z.ZodString;
3069
+ description: z.ZodOptional<z.ZodString>;
3070
+ workspace_access: z.ZodOptional<z.ZodEnum<{
3071
+ admin: "admin";
3072
+ editor: "editor";
3073
+ commenter: "commenter";
3074
+ viewer: "viewer";
3075
+ }>>;
3076
+ rules: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
3077
+ string_to_replace: z.ZodString;
3078
+ case_sensitive: z.ZodOptional<z.ZodBoolean>;
3079
+ word_boundaries: z.ZodOptional<z.ZodBoolean>;
3080
+ type: z.ZodLiteral<"alias">;
3081
+ alias: z.ZodString;
3082
+ }, z.core.$strip>, z.ZodObject<{
3083
+ string_to_replace: z.ZodString;
3084
+ case_sensitive: z.ZodOptional<z.ZodBoolean>;
3085
+ word_boundaries: z.ZodOptional<z.ZodBoolean>;
3086
+ type: z.ZodLiteral<"phoneme">;
3087
+ phoneme: z.ZodString;
3088
+ alphabet: z.ZodString;
3089
+ }, z.core.$strip>]>>;
3090
+ }, z.core.$strip>;
3091
+ export declare const ElevenLabsGetPronunciationDictionaryRequestSchema: z.ZodObject<{}, z.core.$strip>;
3092
+ export declare const ElevenLabsUpdatePronunciationDictionaryRequestSchema: z.ZodObject<{
3093
+ name: z.ZodOptional<z.ZodString>;
3094
+ archived: z.ZodOptional<z.ZodBoolean>;
3095
+ }, z.core.$strip>;
3096
+ export declare const ElevenLabsAddPronunciationDictionaryRulesRequestSchema: z.ZodObject<{
3097
+ rules: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
3098
+ string_to_replace: z.ZodString;
3099
+ case_sensitive: z.ZodOptional<z.ZodBoolean>;
3100
+ word_boundaries: z.ZodOptional<z.ZodBoolean>;
3101
+ type: z.ZodLiteral<"alias">;
3102
+ alias: z.ZodString;
3103
+ }, z.core.$strip>, z.ZodObject<{
3104
+ string_to_replace: z.ZodString;
3105
+ case_sensitive: z.ZodOptional<z.ZodBoolean>;
3106
+ word_boundaries: z.ZodOptional<z.ZodBoolean>;
3107
+ type: z.ZodLiteral<"phoneme">;
3108
+ phoneme: z.ZodString;
3109
+ alphabet: z.ZodString;
3110
+ }, z.core.$strip>]>>;
3111
+ }, z.core.$strip>;
3112
+ export declare const ElevenLabsRemovePronunciationDictionaryRulesRequestSchema: z.ZodObject<{
3113
+ rule_strings: z.ZodArray<z.ZodString>;
3114
+ }, z.core.$strip>;
3115
+ export declare const ElevenLabsSetPronunciationDictionaryRulesRequestSchema: z.ZodObject<{
3116
+ rules: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
3117
+ string_to_replace: z.ZodString;
3118
+ case_sensitive: z.ZodOptional<z.ZodBoolean>;
3119
+ word_boundaries: z.ZodOptional<z.ZodBoolean>;
3120
+ type: z.ZodLiteral<"alias">;
3121
+ alias: z.ZodString;
3122
+ }, z.core.$strip>, z.ZodObject<{
3123
+ string_to_replace: z.ZodString;
3124
+ case_sensitive: z.ZodOptional<z.ZodBoolean>;
3125
+ word_boundaries: z.ZodOptional<z.ZodBoolean>;
3126
+ type: z.ZodLiteral<"phoneme">;
3127
+ phoneme: z.ZodString;
3128
+ alphabet: z.ZodString;
3129
+ }, z.core.$strip>]>>;
3130
+ }, z.core.$strip>;
3131
+ export declare const ElevenLabsDownloadPronunciationDictionaryRequestSchema: z.ZodObject<{}, z.core.$strip>;
3132
+ export type ElevenLabsListPronunciationDictionariesRequest = z.infer<typeof ElevenLabsListPronunciationDictionariesRequestSchema>;
3133
+ export type ElevenLabsListPronunciationDictionariesRequestInput = z.input<typeof ElevenLabsListPronunciationDictionariesRequestSchema>;
3134
+ export type ElevenLabsListPronunciationDictionariesParsedRequest = z.output<typeof ElevenLabsListPronunciationDictionariesRequestSchema>;
3135
+ export type ElevenLabsAddPronunciationDictionaryFromFileRequest = z.infer<typeof ElevenLabsAddPronunciationDictionaryFromFileRequestSchema>;
3136
+ export type ElevenLabsAddPronunciationDictionaryFromFileRequestInput = z.input<typeof ElevenLabsAddPronunciationDictionaryFromFileRequestSchema>;
3137
+ export type ElevenLabsAddPronunciationDictionaryFromFileParsedRequest = z.output<typeof ElevenLabsAddPronunciationDictionaryFromFileRequestSchema>;
3138
+ export type ElevenLabsAddPronunciationDictionaryFromRulesRequest = z.infer<typeof ElevenLabsAddPronunciationDictionaryFromRulesRequestSchema>;
3139
+ export type ElevenLabsAddPronunciationDictionaryFromRulesRequestInput = z.input<typeof ElevenLabsAddPronunciationDictionaryFromRulesRequestSchema>;
3140
+ export type ElevenLabsAddPronunciationDictionaryFromRulesParsedRequest = z.output<typeof ElevenLabsAddPronunciationDictionaryFromRulesRequestSchema>;
3141
+ export type ElevenLabsGetPronunciationDictionaryRequest = z.infer<typeof ElevenLabsGetPronunciationDictionaryRequestSchema>;
3142
+ export type ElevenLabsGetPronunciationDictionaryRequestInput = z.input<typeof ElevenLabsGetPronunciationDictionaryRequestSchema>;
3143
+ export type ElevenLabsGetPronunciationDictionaryParsedRequest = z.output<typeof ElevenLabsGetPronunciationDictionaryRequestSchema>;
3144
+ export type ElevenLabsUpdatePronunciationDictionaryRequest = z.infer<typeof ElevenLabsUpdatePronunciationDictionaryRequestSchema>;
3145
+ export type ElevenLabsUpdatePronunciationDictionaryRequestInput = z.input<typeof ElevenLabsUpdatePronunciationDictionaryRequestSchema>;
3146
+ export type ElevenLabsUpdatePronunciationDictionaryParsedRequest = z.output<typeof ElevenLabsUpdatePronunciationDictionaryRequestSchema>;
3147
+ export type ElevenLabsAddPronunciationDictionaryRulesRequest = z.infer<typeof ElevenLabsAddPronunciationDictionaryRulesRequestSchema>;
3148
+ export type ElevenLabsAddPronunciationDictionaryRulesRequestInput = z.input<typeof ElevenLabsAddPronunciationDictionaryRulesRequestSchema>;
3149
+ export type ElevenLabsAddPronunciationDictionaryRulesParsedRequest = z.output<typeof ElevenLabsAddPronunciationDictionaryRulesRequestSchema>;
3150
+ export type ElevenLabsRemovePronunciationDictionaryRulesRequest = z.infer<typeof ElevenLabsRemovePronunciationDictionaryRulesRequestSchema>;
3151
+ export type ElevenLabsRemovePronunciationDictionaryRulesRequestInput = z.input<typeof ElevenLabsRemovePronunciationDictionaryRulesRequestSchema>;
3152
+ export type ElevenLabsRemovePronunciationDictionaryRulesParsedRequest = z.output<typeof ElevenLabsRemovePronunciationDictionaryRulesRequestSchema>;
3153
+ export type ElevenLabsSetPronunciationDictionaryRulesRequest = z.infer<typeof ElevenLabsSetPronunciationDictionaryRulesRequestSchema>;
3154
+ export type ElevenLabsSetPronunciationDictionaryRulesRequestInput = z.input<typeof ElevenLabsSetPronunciationDictionaryRulesRequestSchema>;
3155
+ export type ElevenLabsSetPronunciationDictionaryRulesParsedRequest = z.output<typeof ElevenLabsSetPronunciationDictionaryRulesRequestSchema>;
3156
+ export type ElevenLabsDownloadPronunciationDictionaryRequest = z.infer<typeof ElevenLabsDownloadPronunciationDictionaryRequestSchema>;
3157
+ export type ElevenLabsDownloadPronunciationDictionaryRequestInput = z.input<typeof ElevenLabsDownloadPronunciationDictionaryRequestSchema>;
3158
+ export type ElevenLabsDownloadPronunciationDictionaryParsedRequest = z.output<typeof ElevenLabsDownloadPronunciationDictionaryRequestSchema>;
3159
+ export type ElevenLabsPronunciationDictionaryAliasRuleRequest = z.infer<typeof ElevenLabsPronunciationDictionaryAliasRuleRequestSchema>;
3160
+ export type ElevenLabsPronunciationDictionaryAliasRuleRequestInput = z.input<typeof ElevenLabsPronunciationDictionaryAliasRuleRequestSchema>;
3161
+ export type ElevenLabsPronunciationDictionaryAliasRuleParsedRequest = z.output<typeof ElevenLabsPronunciationDictionaryAliasRuleRequestSchema>;
3162
+ export type ElevenLabsPronunciationDictionaryPhonemeRuleRequest = z.infer<typeof ElevenLabsPronunciationDictionaryPhonemeRuleRequestSchema>;
3163
+ export type ElevenLabsPronunciationDictionaryPhonemeRuleRequestInput = z.input<typeof ElevenLabsPronunciationDictionaryPhonemeRuleRequestSchema>;
3164
+ export type ElevenLabsPronunciationDictionaryPhonemeRuleParsedRequest = z.output<typeof ElevenLabsPronunciationDictionaryPhonemeRuleRequestSchema>;
3165
+ export type ElevenLabsPronunciationDictionaryRuleRequest = z.infer<typeof ElevenLabsPronunciationDictionaryRuleRequestSchema>;
3166
+ export type ElevenLabsPronunciationDictionaryRuleRequestInput = z.input<typeof ElevenLabsPronunciationDictionaryRuleRequestSchema>;
3167
+ export type ElevenLabsPronunciationDictionaryRuleParsedRequest = z.output<typeof ElevenLabsPronunciationDictionaryRuleRequestSchema>;
3168
+ export declare const ElevenLabsListSpeechEnginesRequestSchema: z.ZodObject<{
3169
+ page_size: z.ZodOptional<z.ZodNumber>;
3170
+ search: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3171
+ sort_direction: z.ZodOptional<z.ZodEnum<{
3172
+ asc: "asc";
3173
+ desc: "desc";
3174
+ }>>;
3175
+ sort_by: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
3176
+ name: "name";
3177
+ created_at: "created_at";
3178
+ call_count_7d: "call_count_7d";
3179
+ }>>>;
3180
+ cursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3181
+ }, z.core.$strip>;
3182
+ export type ElevenLabsListSpeechEnginesRequest = z.input<typeof ElevenLabsListSpeechEnginesRequestSchema>;
3183
+ export type ElevenLabsListSpeechEnginesRequestInput = ElevenLabsListSpeechEnginesRequest;
3184
+ export type ElevenLabsListSpeechEnginesParsedRequest = z.output<typeof ElevenLabsListSpeechEnginesRequestSchema>;
3185
+ export declare const ElevenLabsCreateSpeechEngineRequestSchema: z.ZodObject<{
3186
+ name: z.ZodOptional<z.ZodString>;
3187
+ speech_engine: z.ZodObject<{
3188
+ ws_url: z.ZodString;
3189
+ request_headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
3190
+ secret_id: z.ZodString;
3191
+ }, z.core.$strip>, z.ZodObject<{
3192
+ variable_name: z.ZodString;
3193
+ }, z.core.$strip>]>>>;
3194
+ }, z.core.$strip>;
3195
+ asr: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
3196
+ tts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
3197
+ turn: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
3198
+ conversation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
3199
+ privacy: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
3200
+ call_limits: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
3201
+ language: z.ZodOptional<z.ZodString>;
3202
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
3203
+ overrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
3204
+ }, z.core.$strip>;
3205
+ export type ElevenLabsCreateSpeechEngineRequest = z.input<typeof ElevenLabsCreateSpeechEngineRequestSchema>;
3206
+ export type ElevenLabsCreateSpeechEngineRequestInput = ElevenLabsCreateSpeechEngineRequest;
3207
+ export type ElevenLabsCreateSpeechEngineParsedRequest = z.output<typeof ElevenLabsCreateSpeechEngineRequestSchema>;
3208
+ export declare const ElevenLabsUpdateSpeechEngineRequestSchema: z.ZodObject<{
3209
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3210
+ speech_engine: z.ZodOptional<z.ZodNullable<z.ZodObject<{
3211
+ ws_url: z.ZodString;
3212
+ request_headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
3213
+ secret_id: z.ZodString;
3214
+ }, z.core.$strip>, z.ZodObject<{
3215
+ variable_name: z.ZodString;
3216
+ }, z.core.$strip>]>>>;
3217
+ }, z.core.$strip>>>;
3218
+ asr: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
3219
+ tts: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
3220
+ turn: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
3221
+ conversation: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
3222
+ privacy: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
3223
+ call_limits: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
3224
+ language: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3225
+ tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
3226
+ overrides: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
3227
+ }, z.core.$strip>;
3228
+ export type ElevenLabsUpdateSpeechEngineRequest = z.input<typeof ElevenLabsUpdateSpeechEngineRequestSchema>;
3229
+ export type ElevenLabsUpdateSpeechEngineRequestInput = ElevenLabsUpdateSpeechEngineRequest;
3230
+ export type ElevenLabsUpdateSpeechEngineParsedRequest = z.output<typeof ElevenLabsUpdateSpeechEngineRequestSchema>;
3231
+ export declare const ElevenLabsListOrdersRequestSchema: z.ZodObject<{
3232
+ page_size: z.ZodOptional<z.ZodNumber>;
3233
+ offset: z.ZodOptional<z.ZodNumber>;
3234
+ status: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<{
3235
+ open: "open";
3236
+ submitted: "submitted";
3237
+ paid: "paid";
3238
+ accepted: "accepted";
3239
+ rejected: "rejected";
3240
+ done: "done";
3241
+ }>>>>;
3242
+ start_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3243
+ end_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3244
+ }, z.core.$strip>;
3245
+ export type ElevenLabsListOrdersRequest = z.input<typeof ElevenLabsListOrdersRequestSchema>;
3246
+ export type ElevenLabsListOrdersRequestInput = ElevenLabsListOrdersRequest;
3247
+ export type ElevenLabsListOrdersParsedRequest = z.output<typeof ElevenLabsListOrdersRequestSchema>;
3248
+ export declare const ElevenLabsCreateOrderRequestSchema: z.ZodObject<{
3249
+ sandbox: z.ZodOptional<z.ZodBoolean>;
3250
+ }, z.core.$strip>;
3251
+ export type ElevenLabsCreateOrderRequest = z.input<typeof ElevenLabsCreateOrderRequestSchema>;
3252
+ export type ElevenLabsCreateOrderRequestInput = ElevenLabsCreateOrderRequest;
3253
+ export type ElevenLabsCreateOrderParsedRequest = z.output<typeof ElevenLabsCreateOrderRequestSchema>;
3254
+ export declare const ElevenLabsUpdateOrderRequestSchema: z.ZodObject<{
3255
+ name: z.ZodString;
3256
+ }, z.core.$strip>;
3257
+ export type ElevenLabsUpdateOrderRequest = z.input<typeof ElevenLabsUpdateOrderRequestSchema>;
3258
+ export type ElevenLabsUpdateOrderRequestInput = ElevenLabsUpdateOrderRequest;
3259
+ export type ElevenLabsUpdateOrderParsedRequest = z.output<typeof ElevenLabsUpdateOrderRequestSchema>;
3260
+ export declare const ElevenLabsUpsertOrderItemRequestSchema: z.ZodObject<{
3261
+ item: z.ZodUnion<readonly [z.ZodObject<{
3262
+ kind: z.ZodOptional<z.ZodLiteral<"dub">>;
3263
+ media_id: z.ZodString;
3264
+ source_language: z.ZodString;
3265
+ destination_languages: z.ZodArray<z.ZodString>;
3266
+ include_captions: z.ZodBoolean;
3267
+ include_source_captions: z.ZodBoolean;
3268
+ instructions: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3269
+ captions_sdh: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
3270
+ }, z.core.$strip>, z.ZodObject<{
3271
+ kind: z.ZodOptional<z.ZodLiteral<"subtitles">>;
3272
+ media_ids: z.ZodArray<z.ZodString>;
3273
+ source_language: z.ZodString;
3274
+ destination_languages: z.ZodArray<z.ZodString>;
3275
+ cue_options: z.ZodOptional<z.ZodObject<{
3276
+ min_duration_ms: z.ZodOptional<z.ZodNumber>;
3277
+ max_duration_ms: z.ZodOptional<z.ZodNumber>;
3278
+ max_lines_per_cue: z.ZodOptional<z.ZodNumber>;
3279
+ max_chars_per_line: z.ZodOptional<z.ZodNumber>;
3280
+ max_chars_per_s: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3281
+ min_gap_between_cues_frames: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3282
+ }, z.core.$strip>>;
3283
+ sdh: z.ZodOptional<z.ZodBoolean>;
3284
+ instructions: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3285
+ }, z.core.$strip>]>;
3286
+ item_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3287
+ }, z.core.$strip>;
3288
+ export type ElevenLabsUpsertOrderItemRequest = z.input<typeof ElevenLabsUpsertOrderItemRequestSchema>;
3289
+ export type ElevenLabsUpsertOrderItemRequestInput = ElevenLabsUpsertOrderItemRequest;
3290
+ export type ElevenLabsUpsertOrderItemParsedRequest = z.output<typeof ElevenLabsUpsertOrderItemRequestSchema>;
3291
+ export declare const ElevenLabsRegisterOrderMediaRequestSchema: z.ZodObject<{
3292
+ declared_language: z.ZodString;
3293
+ media: z.ZodOptional<z.ZodCustom<Blob, Blob>>;
3294
+ media_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3295
+ media_url_filename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3296
+ media_url_content_type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3297
+ }, z.core.$strip>;
3298
+ export type ElevenLabsRegisterOrderMediaRequest = z.input<typeof ElevenLabsRegisterOrderMediaRequestSchema>;
3299
+ export type ElevenLabsRegisterOrderMediaRequestInput = ElevenLabsRegisterOrderMediaRequest;
3300
+ export type ElevenLabsRegisterOrderMediaParsedRequest = z.output<typeof ElevenLabsRegisterOrderMediaRequestSchema>;
595
3301
  //# sourceMappingURL=zod.d.ts.map