@apicity/kie 0.5.3 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +137 -1
- package/dist/src/chat.d.ts +2 -2
- package/dist/src/chat.d.ts.map +1 -1
- package/dist/src/claude.d.ts +2 -2
- package/dist/src/claude.d.ts.map +1 -1
- package/dist/src/index.d.ts +3 -1
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +3 -0
- package/dist/src/index.js.map +1 -1
- package/dist/src/kie.d.ts.map +1 -1
- package/dist/src/kie.js +26 -2
- package/dist/src/kie.js.map +1 -1
- package/dist/src/model-schemas.d.ts.map +1 -1
- package/dist/src/model-schemas.js +342 -35
- package/dist/src/model-schemas.js.map +1 -1
- package/dist/src/suno.d.ts +16 -16
- package/dist/src/suno.d.ts.map +1 -1
- package/dist/src/types.d.ts +45 -11
- package/dist/src/types.d.ts.map +1 -1
- package/dist/src/types.js.map +1 -1
- package/dist/src/veo.d.ts +3 -3
- package/dist/src/veo.d.ts.map +1 -1
- package/dist/src/zod.d.ts +664 -127
- package/dist/src/zod.d.ts.map +1 -1
- package/dist/src/zod.js +222 -28
- package/dist/src/zod.js.map +1 -1
- package/package.json +2 -2
package/dist/src/zod.d.ts
CHANGED
|
@@ -23,6 +23,7 @@ export declare const KieMediaModelSchema: z.ZodEnum<{
|
|
|
23
23
|
"qwen2/image-edit": "qwen2/image-edit";
|
|
24
24
|
"bytedance/seedance-2-fast": "bytedance/seedance-2-fast";
|
|
25
25
|
"bytedance/seedance-2": "bytedance/seedance-2";
|
|
26
|
+
"bytedance/seedance-2-mini": "bytedance/seedance-2-mini";
|
|
26
27
|
"wan/2-7-image-to-video": "wan/2-7-image-to-video";
|
|
27
28
|
"wan/2-7-text-to-video": "wan/2-7-text-to-video";
|
|
28
29
|
"wan/2-7-r2v": "wan/2-7-r2v";
|
|
@@ -33,6 +34,10 @@ export declare const KieMediaModelSchema: z.ZodEnum<{
|
|
|
33
34
|
"happyhorse/image-to-video": "happyhorse/image-to-video";
|
|
34
35
|
"happyhorse/reference-to-video": "happyhorse/reference-to-video";
|
|
35
36
|
"happyhorse/video-edit": "happyhorse/video-edit";
|
|
37
|
+
"happyhorse-1-1/text-to-video": "happyhorse-1-1/text-to-video";
|
|
38
|
+
"happyhorse-1-1/image-to-video": "happyhorse-1-1/image-to-video";
|
|
39
|
+
"happyhorse-1-1/reference-to-video": "happyhorse-1-1/reference-to-video";
|
|
40
|
+
"omnihuman-1-5": "omnihuman-1-5";
|
|
36
41
|
"volcengine/video-to-video-lip-sync": "volcengine/video-to-video-lip-sync";
|
|
37
42
|
"elevenlabs/audio-isolation": "elevenlabs/audio-isolation";
|
|
38
43
|
"elevenlabs/text-to-dialogue-v3": "elevenlabs/text-to-dialogue-v3";
|
|
@@ -82,11 +87,37 @@ export declare const KlingV3TurboAspectRatioSchema: z.ZodEnum<{
|
|
|
82
87
|
"1:1": "1:1";
|
|
83
88
|
}>;
|
|
84
89
|
export declare const KlingV3TurboDurationSchema: z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>;
|
|
90
|
+
export declare const GrokTextToVideoModeSchema: z.ZodEnum<{
|
|
91
|
+
fun: "fun";
|
|
92
|
+
normal: "normal";
|
|
93
|
+
spicy: "spicy";
|
|
94
|
+
}>;
|
|
95
|
+
export declare const GrokImageToVideoModeSchema: z.ZodEnum<{
|
|
96
|
+
fun: "fun";
|
|
97
|
+
normal: "normal";
|
|
98
|
+
spicy: "spicy";
|
|
99
|
+
}>;
|
|
85
100
|
export declare const GrokImagineModeSchema: z.ZodEnum<{
|
|
86
101
|
fun: "fun";
|
|
87
102
|
normal: "normal";
|
|
88
103
|
spicy: "spicy";
|
|
89
104
|
}>;
|
|
105
|
+
export declare const GrokTextToVideoAspectRatioSchema: z.ZodEnum<{
|
|
106
|
+
"16:9": "16:9";
|
|
107
|
+
"9:16": "9:16";
|
|
108
|
+
"1:1": "1:1";
|
|
109
|
+
"2:3": "2:3";
|
|
110
|
+
"3:2": "3:2";
|
|
111
|
+
}>;
|
|
112
|
+
export declare const GrokImageToVideoAspectRatioSchema: z.ZodEnum<{
|
|
113
|
+
"16:9": "16:9";
|
|
114
|
+
"9:16": "9:16";
|
|
115
|
+
"1:1": "1:1";
|
|
116
|
+
"2:3": "2:3";
|
|
117
|
+
"3:2": "3:2";
|
|
118
|
+
}>;
|
|
119
|
+
export declare const GrokTextToVideoDurationSchema: z.ZodNumber;
|
|
120
|
+
export declare const GrokImageToVideoDurationSchema: z.ZodNumber;
|
|
90
121
|
export declare const GrokImagineDurationSchema: z.ZodEnum<{
|
|
91
122
|
6: "6";
|
|
92
123
|
10: "10";
|
|
@@ -100,11 +131,11 @@ export declare const GrokVideo15AspectRatioSchema: z.ZodEnum<{
|
|
|
100
131
|
"16:9": "16:9";
|
|
101
132
|
"9:16": "9:16";
|
|
102
133
|
"1:1": "1:1";
|
|
134
|
+
"2:3": "2:3";
|
|
135
|
+
"3:2": "3:2";
|
|
103
136
|
auto: "auto";
|
|
104
137
|
"4:3": "4:3";
|
|
105
138
|
"3:4": "3:4";
|
|
106
|
-
"3:2": "3:2";
|
|
107
|
-
"2:3": "2:3";
|
|
108
139
|
}>;
|
|
109
140
|
export declare const NanoBananaResolutionSchema: z.ZodEnum<{
|
|
110
141
|
"4K": "4K";
|
|
@@ -162,6 +193,9 @@ export declare const Wan27ImageAspectRatioSchema: z.ZodEnum<{
|
|
|
162
193
|
"8:1": "8:1";
|
|
163
194
|
"1:8": "1:8";
|
|
164
195
|
}>;
|
|
196
|
+
export declare const Wan27VideoEditDurationValues: readonly [0, 2, 3, 4, 5, 6, 7, 8, 9, 10];
|
|
197
|
+
export type Wan27VideoEditDuration = (typeof Wan27VideoEditDurationValues)[number];
|
|
198
|
+
export declare const Wan27VideoEditDurationSchema: z.ZodType<Wan27VideoEditDuration>;
|
|
165
199
|
export declare const HappyHorseResolutionSchema: z.ZodEnum<{
|
|
166
200
|
"720p": "720p";
|
|
167
201
|
"1080p": "1080p";
|
|
@@ -173,14 +207,50 @@ export declare const HappyHorseAspectRatioSchema: z.ZodEnum<{
|
|
|
173
207
|
"4:3": "4:3";
|
|
174
208
|
"3:4": "3:4";
|
|
175
209
|
}>;
|
|
210
|
+
export declare const HappyHorse11AspectRatioSchema: z.ZodEnum<{
|
|
211
|
+
"16:9": "16:9";
|
|
212
|
+
"9:16": "9:16";
|
|
213
|
+
"1:1": "1:1";
|
|
214
|
+
"4:3": "4:3";
|
|
215
|
+
"3:4": "3:4";
|
|
216
|
+
"21:9": "21:9";
|
|
217
|
+
"4:5": "4:5";
|
|
218
|
+
"5:4": "5:4";
|
|
219
|
+
"9:21": "9:21";
|
|
220
|
+
}>;
|
|
176
221
|
export declare const HappyHorseAudioSettingSchema: z.ZodEnum<{
|
|
177
222
|
auto: "auto";
|
|
178
223
|
origin: "origin";
|
|
179
224
|
}>;
|
|
225
|
+
export declare const HAPPYHORSE_DURATION_MIN_SECONDS = 3;
|
|
226
|
+
export declare const HAPPYHORSE_DURATION_MAX_SECONDS = 15;
|
|
227
|
+
export declare const HappyHorseDurationSchema: z.ZodNumber;
|
|
228
|
+
export declare const Omnihuman15OutputResolutionSchema: z.ZodEnum<{
|
|
229
|
+
720: "720";
|
|
230
|
+
1080: "1080";
|
|
231
|
+
}>;
|
|
180
232
|
export declare const VolcengineVideoToVideoLipSyncModeSchema: z.ZodEnum<{
|
|
181
233
|
lite: "lite";
|
|
182
234
|
basic: "basic";
|
|
183
235
|
}>;
|
|
236
|
+
export declare const Seedance2MiniResolutionSchema: z.ZodEnum<{
|
|
237
|
+
"720p": "720p";
|
|
238
|
+
"480p": "480p";
|
|
239
|
+
}>;
|
|
240
|
+
export declare const Seedance2MiniAspectRatioSchema: z.ZodEnum<{
|
|
241
|
+
"16:9": "16:9";
|
|
242
|
+
"9:16": "9:16";
|
|
243
|
+
"1:1": "1:1";
|
|
244
|
+
"4:3": "4:3";
|
|
245
|
+
"3:4": "3:4";
|
|
246
|
+
"21:9": "21:9";
|
|
247
|
+
adaptive: "adaptive";
|
|
248
|
+
}>;
|
|
249
|
+
export declare const Seedance2MiniTaskStateSchema: z.ZodEnum<{
|
|
250
|
+
success: "success";
|
|
251
|
+
waiting: "waiting";
|
|
252
|
+
fail: "fail";
|
|
253
|
+
}>;
|
|
184
254
|
export declare const KlingElementSchema: z.ZodObject<{
|
|
185
255
|
name: z.ZodString;
|
|
186
256
|
description: z.ZodString;
|
|
@@ -300,8 +370,8 @@ export declare const GrokTextToImageRequestSchema: z.ZodObject<{
|
|
|
300
370
|
"16:9": "16:9";
|
|
301
371
|
"9:16": "9:16";
|
|
302
372
|
"1:1": "1:1";
|
|
303
|
-
"3:2": "3:2";
|
|
304
373
|
"2:3": "2:3";
|
|
374
|
+
"3:2": "3:2";
|
|
305
375
|
}>>;
|
|
306
376
|
nsfw_checker: z.ZodDefault<z.ZodBoolean>;
|
|
307
377
|
enable_pro: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -346,10 +416,10 @@ export declare const Qwen2ImageEditRequestSchema: z.ZodObject<{
|
|
|
346
416
|
"16:9": "16:9";
|
|
347
417
|
"9:16": "9:16";
|
|
348
418
|
"1:1": "1:1";
|
|
419
|
+
"2:3": "2:3";
|
|
420
|
+
"3:2": "3:2";
|
|
349
421
|
"4:3": "4:3";
|
|
350
422
|
"3:4": "3:4";
|
|
351
|
-
"3:2": "3:2";
|
|
352
|
-
"2:3": "2:3";
|
|
353
423
|
"21:9": "21:9";
|
|
354
424
|
}>>;
|
|
355
425
|
output_format: z.ZodDefault<z.ZodEnum<{
|
|
@@ -378,8 +448,8 @@ export declare const GrokTextToVideoRequestSchema: z.ZodObject<{
|
|
|
378
448
|
"16:9": "16:9";
|
|
379
449
|
"9:16": "9:16";
|
|
380
450
|
"1:1": "1:1";
|
|
381
|
-
"3:2": "3:2";
|
|
382
451
|
"2:3": "2:3";
|
|
452
|
+
"3:2": "3:2";
|
|
383
453
|
}>>;
|
|
384
454
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
385
455
|
fun: "fun";
|
|
@@ -394,7 +464,6 @@ export declare const GrokTextToVideoRequestSchema: z.ZodObject<{
|
|
|
394
464
|
nsfw_checker: z.ZodDefault<z.ZodBoolean>;
|
|
395
465
|
}, z.core.$strip>;
|
|
396
466
|
}, z.core.$strip>;
|
|
397
|
-
export declare const GrokImageToVideoDurationSchema: z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>;
|
|
398
467
|
export declare const GrokImageToVideoRequestSchema: z.ZodObject<{
|
|
399
468
|
model: z.ZodLiteral<"grok-imagine/image-to-video">;
|
|
400
469
|
callBackUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -408,7 +477,7 @@ export declare const GrokImageToVideoRequestSchema: z.ZodObject<{
|
|
|
408
477
|
normal: "normal";
|
|
409
478
|
spicy: "spicy";
|
|
410
479
|
}>>;
|
|
411
|
-
duration: z.ZodDefault<z.
|
|
480
|
+
duration: z.ZodDefault<z.ZodNumber>;
|
|
412
481
|
resolution: z.ZodDefault<z.ZodEnum<{
|
|
413
482
|
"720p": "720p";
|
|
414
483
|
"480p": "480p";
|
|
@@ -417,8 +486,8 @@ export declare const GrokImageToVideoRequestSchema: z.ZodObject<{
|
|
|
417
486
|
"16:9": "16:9";
|
|
418
487
|
"9:16": "9:16";
|
|
419
488
|
"1:1": "1:1";
|
|
420
|
-
"3:2": "3:2";
|
|
421
489
|
"2:3": "2:3";
|
|
490
|
+
"3:2": "3:2";
|
|
422
491
|
}>>;
|
|
423
492
|
nsfw_checker: z.ZodDefault<z.ZodBoolean>;
|
|
424
493
|
}, z.core.$strip>;
|
|
@@ -433,11 +502,11 @@ export declare const GrokVideo15PreviewRequestSchema: z.ZodObject<{
|
|
|
433
502
|
"16:9": "16:9";
|
|
434
503
|
"9:16": "9:16";
|
|
435
504
|
"1:1": "1:1";
|
|
505
|
+
"2:3": "2:3";
|
|
506
|
+
"3:2": "3:2";
|
|
436
507
|
auto: "auto";
|
|
437
508
|
"4:3": "4:3";
|
|
438
509
|
"3:4": "3:4";
|
|
439
|
-
"3:2": "3:2";
|
|
440
|
-
"2:3": "2:3";
|
|
441
510
|
}>>;
|
|
442
511
|
resolution: z.ZodDefault<z.ZodEnum<{
|
|
443
512
|
"720p": "720p";
|
|
@@ -477,11 +546,11 @@ export declare const NanoBananaProRequestSchema: z.ZodObject<{
|
|
|
477
546
|
"16:9": "16:9";
|
|
478
547
|
"9:16": "9:16";
|
|
479
548
|
"1:1": "1:1";
|
|
549
|
+
"2:3": "2:3";
|
|
550
|
+
"3:2": "3:2";
|
|
480
551
|
auto: "auto";
|
|
481
552
|
"4:3": "4:3";
|
|
482
553
|
"3:4": "3:4";
|
|
483
|
-
"3:2": "3:2";
|
|
484
|
-
"2:3": "2:3";
|
|
485
554
|
"21:9": "21:9";
|
|
486
555
|
"4:5": "4:5";
|
|
487
556
|
"5:4": "5:4";
|
|
@@ -611,6 +680,56 @@ export declare const Seedance2RequestSchema: z.ZodObject<{
|
|
|
611
680
|
nsfw_checker: z.ZodDefault<z.ZodBoolean>;
|
|
612
681
|
}, z.core.$strip>;
|
|
613
682
|
}, z.core.$strip>;
|
|
683
|
+
export declare const Seedance2MiniInputSchema: z.ZodObject<{
|
|
684
|
+
prompt: z.ZodOptional<z.ZodString>;
|
|
685
|
+
reference_image_urls: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
686
|
+
reference_video_urls: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
687
|
+
reference_audio_urls: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
688
|
+
generate_audio: z.ZodDefault<z.ZodBoolean>;
|
|
689
|
+
resolution: z.ZodDefault<z.ZodEnum<{
|
|
690
|
+
"720p": "720p";
|
|
691
|
+
"480p": "480p";
|
|
692
|
+
}>>;
|
|
693
|
+
aspect_ratio: z.ZodDefault<z.ZodEnum<{
|
|
694
|
+
"16:9": "16:9";
|
|
695
|
+
"9:16": "9:16";
|
|
696
|
+
"1:1": "1:1";
|
|
697
|
+
"4:3": "4:3";
|
|
698
|
+
"3:4": "3:4";
|
|
699
|
+
"21:9": "21:9";
|
|
700
|
+
adaptive: "adaptive";
|
|
701
|
+
}>>;
|
|
702
|
+
duration: z.ZodDefault<z.ZodNumber>;
|
|
703
|
+
web_search: z.ZodDefault<z.ZodBoolean>;
|
|
704
|
+
nsfw_checker: z.ZodDefault<z.ZodBoolean>;
|
|
705
|
+
}, z.core.$strip>;
|
|
706
|
+
export declare const Seedance2MiniRequestSchema: z.ZodObject<{
|
|
707
|
+
model: z.ZodLiteral<"bytedance/seedance-2-mini">;
|
|
708
|
+
callBackUrl: z.ZodOptional<z.ZodString>;
|
|
709
|
+
input: z.ZodObject<{
|
|
710
|
+
prompt: z.ZodOptional<z.ZodString>;
|
|
711
|
+
reference_image_urls: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
712
|
+
reference_video_urls: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
713
|
+
reference_audio_urls: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
714
|
+
generate_audio: z.ZodDefault<z.ZodBoolean>;
|
|
715
|
+
resolution: z.ZodDefault<z.ZodEnum<{
|
|
716
|
+
"720p": "720p";
|
|
717
|
+
"480p": "480p";
|
|
718
|
+
}>>;
|
|
719
|
+
aspect_ratio: z.ZodDefault<z.ZodEnum<{
|
|
720
|
+
"16:9": "16:9";
|
|
721
|
+
"9:16": "9:16";
|
|
722
|
+
"1:1": "1:1";
|
|
723
|
+
"4:3": "4:3";
|
|
724
|
+
"3:4": "3:4";
|
|
725
|
+
"21:9": "21:9";
|
|
726
|
+
adaptive: "adaptive";
|
|
727
|
+
}>>;
|
|
728
|
+
duration: z.ZodDefault<z.ZodNumber>;
|
|
729
|
+
web_search: z.ZodDefault<z.ZodBoolean>;
|
|
730
|
+
nsfw_checker: z.ZodDefault<z.ZodBoolean>;
|
|
731
|
+
}, z.core.$strip>;
|
|
732
|
+
}, z.core.$strip>;
|
|
614
733
|
export declare const NanoBanana2RequestSchema: z.ZodObject<{
|
|
615
734
|
model: z.ZodLiteral<"nano-banana-2">;
|
|
616
735
|
callBackUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -621,11 +740,11 @@ export declare const NanoBanana2RequestSchema: z.ZodObject<{
|
|
|
621
740
|
"16:9": "16:9";
|
|
622
741
|
"9:16": "9:16";
|
|
623
742
|
"1:1": "1:1";
|
|
743
|
+
"2:3": "2:3";
|
|
744
|
+
"3:2": "3:2";
|
|
624
745
|
auto: "auto";
|
|
625
746
|
"4:3": "4:3";
|
|
626
747
|
"3:4": "3:4";
|
|
627
|
-
"3:2": "3:2";
|
|
628
|
-
"2:3": "2:3";
|
|
629
748
|
"21:9": "21:9";
|
|
630
749
|
"8:1": "8:1";
|
|
631
750
|
"1:8": "1:8";
|
|
@@ -654,8 +773,8 @@ export declare const GptImageToImageRequestSchema: z.ZodObject<{
|
|
|
654
773
|
prompt: z.ZodString;
|
|
655
774
|
aspect_ratio: z.ZodOptional<z.ZodEnum<{
|
|
656
775
|
"1:1": "1:1";
|
|
657
|
-
"3:2": "3:2";
|
|
658
776
|
"2:3": "2:3";
|
|
777
|
+
"3:2": "3:2";
|
|
659
778
|
}>>;
|
|
660
779
|
quality: z.ZodOptional<z.ZodEnum<{
|
|
661
780
|
medium: "medium";
|
|
@@ -667,11 +786,11 @@ export declare const GptImage2ImageToImageAspectRatioSchema: z.ZodEnum<{
|
|
|
667
786
|
"16:9": "16:9";
|
|
668
787
|
"9:16": "9:16";
|
|
669
788
|
"1:1": "1:1";
|
|
789
|
+
"2:3": "2:3";
|
|
790
|
+
"3:2": "3:2";
|
|
670
791
|
auto: "auto";
|
|
671
792
|
"4:3": "4:3";
|
|
672
793
|
"3:4": "3:4";
|
|
673
|
-
"3:2": "3:2";
|
|
674
|
-
"2:3": "2:3";
|
|
675
794
|
"21:9": "21:9";
|
|
676
795
|
"4:5": "4:5";
|
|
677
796
|
"5:4": "5:4";
|
|
@@ -691,11 +810,11 @@ export declare const GptImage2ImageToImageRequestSchema: z.ZodObject<{
|
|
|
691
810
|
"16:9": "16:9";
|
|
692
811
|
"9:16": "9:16";
|
|
693
812
|
"1:1": "1:1";
|
|
813
|
+
"2:3": "2:3";
|
|
814
|
+
"3:2": "3:2";
|
|
694
815
|
auto: "auto";
|
|
695
816
|
"4:3": "4:3";
|
|
696
817
|
"3:4": "3:4";
|
|
697
|
-
"3:2": "3:2";
|
|
698
|
-
"2:3": "2:3";
|
|
699
818
|
"21:9": "21:9";
|
|
700
819
|
"4:5": "4:5";
|
|
701
820
|
"5:4": "5:4";
|
|
@@ -712,19 +831,19 @@ export declare const GptImage2TextToImageAspectRatioSchema: z.ZodEnum<{
|
|
|
712
831
|
"16:9": "16:9";
|
|
713
832
|
"9:16": "9:16";
|
|
714
833
|
"1:1": "1:1";
|
|
834
|
+
"2:3": "2:3";
|
|
835
|
+
"3:2": "3:2";
|
|
715
836
|
auto: "auto";
|
|
716
837
|
"4:3": "4:3";
|
|
717
838
|
"3:4": "3:4";
|
|
718
|
-
"3:2": "3:2";
|
|
719
|
-
"2:3": "2:3";
|
|
720
839
|
"21:9": "21:9";
|
|
721
840
|
"4:5": "4:5";
|
|
722
841
|
"5:4": "5:4";
|
|
842
|
+
"9:21": "9:21";
|
|
723
843
|
"2:1": "2:1";
|
|
724
844
|
"1:2": "1:2";
|
|
725
845
|
"3:1": "3:1";
|
|
726
846
|
"1:3": "1:3";
|
|
727
|
-
"9:21": "9:21";
|
|
728
847
|
}>;
|
|
729
848
|
export declare const GptImage2TextToImageResolutionSchema: z.ZodEnum<{
|
|
730
849
|
"4K": "4K";
|
|
@@ -740,19 +859,19 @@ export declare const GptImage2TextToImageRequestSchema: z.ZodObject<{
|
|
|
740
859
|
"16:9": "16:9";
|
|
741
860
|
"9:16": "9:16";
|
|
742
861
|
"1:1": "1:1";
|
|
862
|
+
"2:3": "2:3";
|
|
863
|
+
"3:2": "3:2";
|
|
743
864
|
auto: "auto";
|
|
744
865
|
"4:3": "4:3";
|
|
745
866
|
"3:4": "3:4";
|
|
746
|
-
"3:2": "3:2";
|
|
747
|
-
"2:3": "2:3";
|
|
748
867
|
"21:9": "21:9";
|
|
749
868
|
"4:5": "4:5";
|
|
750
869
|
"5:4": "5:4";
|
|
870
|
+
"9:21": "9:21";
|
|
751
871
|
"2:1": "2:1";
|
|
752
872
|
"1:2": "1:2";
|
|
753
873
|
"3:1": "3:1";
|
|
754
874
|
"1:3": "1:3";
|
|
755
|
-
"9:21": "9:21";
|
|
756
875
|
}>>;
|
|
757
876
|
resolution: z.ZodDefault<z.ZodEnum<{
|
|
758
877
|
"4K": "4K";
|
|
@@ -772,10 +891,10 @@ export declare const SeedreamImageToImageRequestSchema: z.ZodObject<{
|
|
|
772
891
|
"16:9": "16:9";
|
|
773
892
|
"9:16": "9:16";
|
|
774
893
|
"1:1": "1:1";
|
|
894
|
+
"2:3": "2:3";
|
|
895
|
+
"3:2": "3:2";
|
|
775
896
|
"4:3": "4:3";
|
|
776
897
|
"3:4": "3:4";
|
|
777
|
-
"3:2": "3:2";
|
|
778
|
-
"2:3": "2:3";
|
|
779
898
|
"21:9": "21:9";
|
|
780
899
|
}>>;
|
|
781
900
|
quality: z.ZodEnum<{
|
|
@@ -794,10 +913,10 @@ export declare const SeedreamTextToImageRequestSchema: z.ZodObject<{
|
|
|
794
913
|
"16:9": "16:9";
|
|
795
914
|
"9:16": "9:16";
|
|
796
915
|
"1:1": "1:1";
|
|
916
|
+
"2:3": "2:3";
|
|
917
|
+
"3:2": "3:2";
|
|
797
918
|
"4:3": "4:3";
|
|
798
919
|
"3:4": "3:4";
|
|
799
|
-
"3:2": "3:2";
|
|
800
|
-
"2:3": "2:3";
|
|
801
920
|
"21:9": "21:9";
|
|
802
921
|
}>>;
|
|
803
922
|
quality: z.ZodEnum<{
|
|
@@ -891,6 +1010,95 @@ export declare const HappyHorseVideoEditRequestSchema: z.ZodObject<{
|
|
|
891
1010
|
seed: z.ZodOptional<z.ZodNumber>;
|
|
892
1011
|
}, z.core.$strip>;
|
|
893
1012
|
}, z.core.$strip>;
|
|
1013
|
+
export declare const HappyHorse11TextToVideoRequestSchema: z.ZodObject<{
|
|
1014
|
+
model: z.ZodLiteral<"happyhorse-1-1/text-to-video">;
|
|
1015
|
+
callBackUrl: z.ZodOptional<z.ZodString>;
|
|
1016
|
+
input: z.ZodObject<{
|
|
1017
|
+
prompt: z.ZodString;
|
|
1018
|
+
resolution: z.ZodDefault<z.ZodEnum<{
|
|
1019
|
+
"720p": "720p";
|
|
1020
|
+
"1080p": "1080p";
|
|
1021
|
+
}>>;
|
|
1022
|
+
aspect_ratio: z.ZodDefault<z.ZodEnum<{
|
|
1023
|
+
"16:9": "16:9";
|
|
1024
|
+
"9:16": "9:16";
|
|
1025
|
+
"1:1": "1:1";
|
|
1026
|
+
"4:3": "4:3";
|
|
1027
|
+
"3:4": "3:4";
|
|
1028
|
+
"21:9": "21:9";
|
|
1029
|
+
"4:5": "4:5";
|
|
1030
|
+
"5:4": "5:4";
|
|
1031
|
+
"9:21": "9:21";
|
|
1032
|
+
}>>;
|
|
1033
|
+
duration: z.ZodDefault<z.ZodNumber>;
|
|
1034
|
+
}, z.core.$strip>;
|
|
1035
|
+
}, z.core.$strip>;
|
|
1036
|
+
export declare const HappyHorse11ImageToVideoRequestSchema: z.ZodObject<{
|
|
1037
|
+
model: z.ZodLiteral<"happyhorse-1-1/image-to-video">;
|
|
1038
|
+
callBackUrl: z.ZodOptional<z.ZodString>;
|
|
1039
|
+
input: z.ZodObject<{
|
|
1040
|
+
prompt: z.ZodDefault<z.ZodString>;
|
|
1041
|
+
image_urls: z.ZodArray<z.ZodString>;
|
|
1042
|
+
resolution: z.ZodDefault<z.ZodEnum<{
|
|
1043
|
+
"720p": "720p";
|
|
1044
|
+
"1080p": "1080p";
|
|
1045
|
+
}>>;
|
|
1046
|
+
duration: z.ZodDefault<z.ZodNumber>;
|
|
1047
|
+
}, z.core.$strip>;
|
|
1048
|
+
}, z.core.$strip>;
|
|
1049
|
+
export declare const HappyHorse11ReferenceToVideoRequestSchema: z.ZodObject<{
|
|
1050
|
+
model: z.ZodLiteral<"happyhorse-1-1/reference-to-video">;
|
|
1051
|
+
callBackUrl: z.ZodOptional<z.ZodString>;
|
|
1052
|
+
input: z.ZodObject<{
|
|
1053
|
+
prompt: z.ZodString;
|
|
1054
|
+
reference_image: z.ZodArray<z.ZodString>;
|
|
1055
|
+
resolution: z.ZodDefault<z.ZodEnum<{
|
|
1056
|
+
"720p": "720p";
|
|
1057
|
+
"1080p": "1080p";
|
|
1058
|
+
}>>;
|
|
1059
|
+
aspect_ratio: z.ZodDefault<z.ZodEnum<{
|
|
1060
|
+
"16:9": "16:9";
|
|
1061
|
+
"9:16": "9:16";
|
|
1062
|
+
"1:1": "1:1";
|
|
1063
|
+
"4:3": "4:3";
|
|
1064
|
+
"3:4": "3:4";
|
|
1065
|
+
"21:9": "21:9";
|
|
1066
|
+
"4:5": "4:5";
|
|
1067
|
+
"5:4": "5:4";
|
|
1068
|
+
"9:21": "9:21";
|
|
1069
|
+
}>>;
|
|
1070
|
+
duration: z.ZodDefault<z.ZodNumber>;
|
|
1071
|
+
}, z.core.$strip>;
|
|
1072
|
+
}, z.core.$strip>;
|
|
1073
|
+
export declare const HappyHorse11ResponseCodeSchema: z.ZodUnion<readonly [z.ZodLiteral<200>, z.ZodLiteral<401>, z.ZodLiteral<402>, z.ZodLiteral<404>, z.ZodLiteral<422>, z.ZodLiteral<429>, z.ZodLiteral<433>, z.ZodLiteral<455>, z.ZodLiteral<500>, z.ZodLiteral<501>, z.ZodLiteral<505>]>;
|
|
1074
|
+
export declare const HappyHorse11ErrorResponseCodeSchema: z.ZodUnion<readonly [z.ZodLiteral<401>, z.ZodLiteral<402>, z.ZodLiteral<404>, z.ZodLiteral<422>, z.ZodLiteral<429>, z.ZodLiteral<433>, z.ZodLiteral<455>, z.ZodLiteral<500>, z.ZodLiteral<501>, z.ZodLiteral<505>]>;
|
|
1075
|
+
export declare const HappyHorse11CreateTaskResponseSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
1076
|
+
code: z.ZodLiteral<200>;
|
|
1077
|
+
msg: z.ZodString;
|
|
1078
|
+
data: z.ZodObject<{
|
|
1079
|
+
taskId: z.ZodString;
|
|
1080
|
+
}, z.core.$strip>;
|
|
1081
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1082
|
+
code: z.ZodUnion<readonly [z.ZodLiteral<401>, z.ZodLiteral<402>, z.ZodLiteral<404>, z.ZodLiteral<422>, z.ZodLiteral<429>, z.ZodLiteral<433>, z.ZodLiteral<455>, z.ZodLiteral<500>, z.ZodLiteral<501>, z.ZodLiteral<505>]>;
|
|
1083
|
+
msg: z.ZodString;
|
|
1084
|
+
data: z.ZodOptional<z.ZodUnknown>;
|
|
1085
|
+
}, z.core.$strip>]>;
|
|
1086
|
+
export declare const Omnihuman15RequestSchema: z.ZodObject<{
|
|
1087
|
+
model: z.ZodLiteral<"omnihuman-1-5">;
|
|
1088
|
+
callBackUrl: z.ZodOptional<z.ZodString>;
|
|
1089
|
+
input: z.ZodObject<{
|
|
1090
|
+
image_url: z.ZodString;
|
|
1091
|
+
mask_url: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1092
|
+
audio_url: z.ZodString;
|
|
1093
|
+
prompt: z.ZodOptional<z.ZodString>;
|
|
1094
|
+
output_resolution: z.ZodDefault<z.ZodEnum<{
|
|
1095
|
+
720: "720";
|
|
1096
|
+
1080: "1080";
|
|
1097
|
+
}>>;
|
|
1098
|
+
pe_fast_mode: z.ZodDefault<z.ZodBoolean>;
|
|
1099
|
+
seed: z.ZodDefault<z.ZodNumber>;
|
|
1100
|
+
}, z.core.$strip>;
|
|
1101
|
+
}, z.core.$strip>;
|
|
894
1102
|
export declare const VolcengineVideoToVideoLipSyncRequestSchema: z.ZodObject<{
|
|
895
1103
|
model: z.ZodLiteral<"volcengine/video-to-video-lip-sync">;
|
|
896
1104
|
callBackUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -1061,7 +1269,7 @@ export declare const Wan27VideoEditRequestSchema: z.ZodObject<{
|
|
|
1061
1269
|
"4:3": "4:3";
|
|
1062
1270
|
"3:4": "3:4";
|
|
1063
1271
|
}>>;
|
|
1064
|
-
duration: z.ZodOptional<z.
|
|
1272
|
+
duration: z.ZodOptional<z.ZodType<0 | 4 | 2 | 10 | 3 | 5 | 6 | 8 | 7 | 9, unknown, z.core.$ZodTypeInternals<0 | 4 | 2 | 10 | 3 | 5 | 6 | 8 | 7 | 9, unknown>>>;
|
|
1065
1273
|
audio_setting: z.ZodOptional<z.ZodEnum<{
|
|
1066
1274
|
auto: "auto";
|
|
1067
1275
|
origin: "origin";
|
|
@@ -1182,6 +1390,56 @@ export declare const Wan27ImageResultSchema: z.ZodObject<{
|
|
|
1182
1390
|
resultUrls: z.ZodArray<z.ZodString>;
|
|
1183
1391
|
resultObject: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1184
1392
|
}, z.core.$strip>;
|
|
1393
|
+
export declare const Seedance2MiniTaskResultJsonSchema: z.ZodObject<{
|
|
1394
|
+
resultUrls: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1395
|
+
resultObject: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1396
|
+
}, z.core.$strip>;
|
|
1397
|
+
export declare const Seedance2MiniRecordInfoDataSchema: z.ZodObject<{
|
|
1398
|
+
taskId: z.ZodString;
|
|
1399
|
+
model: z.ZodLiteral<"bytedance/seedance-2-mini">;
|
|
1400
|
+
state: z.ZodEnum<{
|
|
1401
|
+
success: "success";
|
|
1402
|
+
waiting: "waiting";
|
|
1403
|
+
fail: "fail";
|
|
1404
|
+
}>;
|
|
1405
|
+
param: z.ZodString;
|
|
1406
|
+
resultJson: z.ZodOptional<z.ZodString>;
|
|
1407
|
+
failCode: z.ZodNullable<z.ZodString>;
|
|
1408
|
+
failMsg: z.ZodNullable<z.ZodString>;
|
|
1409
|
+
costTime: z.ZodNullable<z.ZodNumber>;
|
|
1410
|
+
completeTime: z.ZodNullable<z.ZodNumber>;
|
|
1411
|
+
createTime: z.ZodNumber;
|
|
1412
|
+
}, z.core.$strip>;
|
|
1413
|
+
export declare const Seedance2MiniRecordInfoResponseSchema: z.ZodObject<{
|
|
1414
|
+
code: z.ZodNumber;
|
|
1415
|
+
msg: z.ZodString;
|
|
1416
|
+
data: z.ZodOptional<z.ZodObject<{
|
|
1417
|
+
taskId: z.ZodString;
|
|
1418
|
+
model: z.ZodLiteral<"bytedance/seedance-2-mini">;
|
|
1419
|
+
state: z.ZodEnum<{
|
|
1420
|
+
success: "success";
|
|
1421
|
+
waiting: "waiting";
|
|
1422
|
+
fail: "fail";
|
|
1423
|
+
}>;
|
|
1424
|
+
param: z.ZodString;
|
|
1425
|
+
resultJson: z.ZodOptional<z.ZodString>;
|
|
1426
|
+
failCode: z.ZodNullable<z.ZodString>;
|
|
1427
|
+
failMsg: z.ZodNullable<z.ZodString>;
|
|
1428
|
+
costTime: z.ZodNullable<z.ZodNumber>;
|
|
1429
|
+
completeTime: z.ZodNullable<z.ZodNumber>;
|
|
1430
|
+
createTime: z.ZodNumber;
|
|
1431
|
+
}, z.core.$strip>>;
|
|
1432
|
+
}, z.core.$strip>;
|
|
1433
|
+
export declare const RecordInfoRequestSchema: z.ZodObject<{
|
|
1434
|
+
taskId: z.ZodString;
|
|
1435
|
+
}, z.core.$strip>;
|
|
1436
|
+
export declare const TaskResponseSchema: z.ZodObject<{
|
|
1437
|
+
code: z.ZodNumber;
|
|
1438
|
+
msg: z.ZodString;
|
|
1439
|
+
data: z.ZodOptional<z.ZodObject<{
|
|
1440
|
+
taskId: z.ZodString;
|
|
1441
|
+
}, z.core.$strip>>;
|
|
1442
|
+
}, z.core.$strip>;
|
|
1185
1443
|
export declare const UploadMediaRequestSchema: z.ZodObject<{
|
|
1186
1444
|
file: z.ZodCustom<Blob, Blob>;
|
|
1187
1445
|
filename: z.ZodString;
|
|
@@ -1248,8 +1506,10 @@ export declare const VeoExtendRequestSchema: z.ZodObject<{
|
|
|
1248
1506
|
seeds: z.ZodOptional<z.ZodNumber>;
|
|
1249
1507
|
watermark: z.ZodOptional<z.ZodString>;
|
|
1250
1508
|
}, z.core.$strip>;
|
|
1251
|
-
export type VeoGenerateRequest = z.
|
|
1252
|
-
export type
|
|
1509
|
+
export type VeoGenerateRequest = z.input<typeof VeoGenerateRequestSchema>;
|
|
1510
|
+
export type VeoGenerateParsedRequest = z.output<typeof VeoGenerateRequestSchema>;
|
|
1511
|
+
export type VeoExtendRequest = z.input<typeof VeoExtendRequestSchema>;
|
|
1512
|
+
export type VeoExtendParsedRequest = z.output<typeof VeoExtendRequestSchema>;
|
|
1253
1513
|
export type VeoModel = "veo3" | "veo3_fast";
|
|
1254
1514
|
export type VeoGenerationType = "TEXT_2_VIDEO" | "REFERENCE_2_VIDEO" | "FIRST_AND_LAST_FRAMES_2_VIDEO";
|
|
1255
1515
|
export declare const SunoGenerateRequestSchema: z.ZodObject<{
|
|
@@ -1278,7 +1538,8 @@ export declare const SunoGenerateRequestSchema: z.ZodObject<{
|
|
|
1278
1538
|
audioWeight: z.ZodOptional<z.ZodNumber>;
|
|
1279
1539
|
personaId: z.ZodOptional<z.ZodString>;
|
|
1280
1540
|
}, z.core.$strip>;
|
|
1281
|
-
export type SunoGenerateRequest = z.
|
|
1541
|
+
export type SunoGenerateRequest = z.input<typeof SunoGenerateRequestSchema>;
|
|
1542
|
+
export type SunoGenerateParsedRequest = z.output<typeof SunoGenerateRequestSchema>;
|
|
1282
1543
|
export type SunoModel = "V3_5" | "V4" | "V4_5" | "V4_5PLUS" | "V4_5ALL" | "V5" | "V5_5";
|
|
1283
1544
|
export declare const KieChatContentPartSchema: z.ZodObject<{
|
|
1284
1545
|
type: z.ZodEnum<{
|
|
@@ -1340,7 +1601,8 @@ export declare const KieChatRequestSchema: z.ZodObject<{
|
|
|
1340
1601
|
}, z.core.$strip>;
|
|
1341
1602
|
export type KieChatContentPart = z.infer<typeof KieChatContentPartSchema>;
|
|
1342
1603
|
export type KieChatMessage = z.infer<typeof KieChatMessageSchema>;
|
|
1343
|
-
export type KieChatRequest = z.
|
|
1604
|
+
export type KieChatRequest = z.input<typeof KieChatRequestSchema>;
|
|
1605
|
+
export type KieChatParsedRequest = z.output<typeof KieChatRequestSchema>;
|
|
1344
1606
|
export declare const KieClaudeToolInputSchemaSchema: z.ZodObject<{
|
|
1345
1607
|
type: z.ZodString;
|
|
1346
1608
|
properties: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -1400,7 +1662,8 @@ export type KieClaudeToolInputSchema = z.infer<typeof KieClaudeToolInputSchemaSc
|
|
|
1400
1662
|
export type KieClaudeTool = z.infer<typeof KieClaudeToolSchema>;
|
|
1401
1663
|
export type KieClaudeContentPart = z.infer<typeof KieClaudeContentPartSchema>;
|
|
1402
1664
|
export type KieClaudeMessage = z.infer<typeof KieClaudeMessageSchema>;
|
|
1403
|
-
export type KieClaudeRequest = z.
|
|
1665
|
+
export type KieClaudeRequest = z.input<typeof KieClaudeRequestSchema>;
|
|
1666
|
+
export type KieClaudeParsedRequest = z.output<typeof KieClaudeRequestSchema>;
|
|
1404
1667
|
export declare const MediaGenerationRequestSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
1405
1668
|
model: z.ZodLiteral<"kling-3.0/video">;
|
|
1406
1669
|
callBackUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -1502,8 +1765,8 @@ export declare const MediaGenerationRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
1502
1765
|
"16:9": "16:9";
|
|
1503
1766
|
"9:16": "9:16";
|
|
1504
1767
|
"1:1": "1:1";
|
|
1505
|
-
"3:2": "3:2";
|
|
1506
1768
|
"2:3": "2:3";
|
|
1769
|
+
"3:2": "3:2";
|
|
1507
1770
|
}>>;
|
|
1508
1771
|
nsfw_checker: z.ZodDefault<z.ZodBoolean>;
|
|
1509
1772
|
enable_pro: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1525,8 +1788,8 @@ export declare const MediaGenerationRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
1525
1788
|
"16:9": "16:9";
|
|
1526
1789
|
"9:16": "9:16";
|
|
1527
1790
|
"1:1": "1:1";
|
|
1528
|
-
"3:2": "3:2";
|
|
1529
1791
|
"2:3": "2:3";
|
|
1792
|
+
"3:2": "3:2";
|
|
1530
1793
|
}>>;
|
|
1531
1794
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
1532
1795
|
fun: "fun";
|
|
@@ -1553,7 +1816,7 @@ export declare const MediaGenerationRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
1553
1816
|
normal: "normal";
|
|
1554
1817
|
spicy: "spicy";
|
|
1555
1818
|
}>>;
|
|
1556
|
-
duration: z.ZodDefault<z.
|
|
1819
|
+
duration: z.ZodDefault<z.ZodNumber>;
|
|
1557
1820
|
resolution: z.ZodDefault<z.ZodEnum<{
|
|
1558
1821
|
"720p": "720p";
|
|
1559
1822
|
"480p": "480p";
|
|
@@ -1562,8 +1825,8 @@ export declare const MediaGenerationRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
1562
1825
|
"16:9": "16:9";
|
|
1563
1826
|
"9:16": "9:16";
|
|
1564
1827
|
"1:1": "1:1";
|
|
1565
|
-
"3:2": "3:2";
|
|
1566
1828
|
"2:3": "2:3";
|
|
1829
|
+
"3:2": "3:2";
|
|
1567
1830
|
}>>;
|
|
1568
1831
|
nsfw_checker: z.ZodDefault<z.ZodBoolean>;
|
|
1569
1832
|
}, z.core.$strip>;
|
|
@@ -1577,11 +1840,11 @@ export declare const MediaGenerationRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
1577
1840
|
"16:9": "16:9";
|
|
1578
1841
|
"9:16": "9:16";
|
|
1579
1842
|
"1:1": "1:1";
|
|
1843
|
+
"2:3": "2:3";
|
|
1844
|
+
"3:2": "3:2";
|
|
1580
1845
|
auto: "auto";
|
|
1581
1846
|
"4:3": "4:3";
|
|
1582
1847
|
"3:4": "3:4";
|
|
1583
|
-
"3:2": "3:2";
|
|
1584
|
-
"2:3": "2:3";
|
|
1585
1848
|
}>>;
|
|
1586
1849
|
resolution: z.ZodDefault<z.ZodEnum<{
|
|
1587
1850
|
"720p": "720p";
|
|
@@ -1618,11 +1881,11 @@ export declare const MediaGenerationRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
1618
1881
|
"16:9": "16:9";
|
|
1619
1882
|
"9:16": "9:16";
|
|
1620
1883
|
"1:1": "1:1";
|
|
1884
|
+
"2:3": "2:3";
|
|
1885
|
+
"3:2": "3:2";
|
|
1621
1886
|
auto: "auto";
|
|
1622
1887
|
"4:3": "4:3";
|
|
1623
1888
|
"3:4": "3:4";
|
|
1624
|
-
"3:2": "3:2";
|
|
1625
|
-
"2:3": "2:3";
|
|
1626
1889
|
"21:9": "21:9";
|
|
1627
1890
|
"4:5": "4:5";
|
|
1628
1891
|
"5:4": "5:4";
|
|
@@ -1647,11 +1910,11 @@ export declare const MediaGenerationRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
1647
1910
|
"16:9": "16:9";
|
|
1648
1911
|
"9:16": "9:16";
|
|
1649
1912
|
"1:1": "1:1";
|
|
1913
|
+
"2:3": "2:3";
|
|
1914
|
+
"3:2": "3:2";
|
|
1650
1915
|
auto: "auto";
|
|
1651
1916
|
"4:3": "4:3";
|
|
1652
1917
|
"3:4": "3:4";
|
|
1653
|
-
"3:2": "3:2";
|
|
1654
|
-
"2:3": "2:3";
|
|
1655
1918
|
"21:9": "21:9";
|
|
1656
1919
|
"8:1": "8:1";
|
|
1657
1920
|
"1:8": "1:8";
|
|
@@ -1679,8 +1942,8 @@ export declare const MediaGenerationRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
1679
1942
|
prompt: z.ZodString;
|
|
1680
1943
|
aspect_ratio: z.ZodOptional<z.ZodEnum<{
|
|
1681
1944
|
"1:1": "1:1";
|
|
1682
|
-
"3:2": "3:2";
|
|
1683
1945
|
"2:3": "2:3";
|
|
1946
|
+
"3:2": "3:2";
|
|
1684
1947
|
}>>;
|
|
1685
1948
|
quality: z.ZodOptional<z.ZodEnum<{
|
|
1686
1949
|
medium: "medium";
|
|
@@ -1697,11 +1960,11 @@ export declare const MediaGenerationRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
1697
1960
|
"16:9": "16:9";
|
|
1698
1961
|
"9:16": "9:16";
|
|
1699
1962
|
"1:1": "1:1";
|
|
1963
|
+
"2:3": "2:3";
|
|
1964
|
+
"3:2": "3:2";
|
|
1700
1965
|
auto: "auto";
|
|
1701
1966
|
"4:3": "4:3";
|
|
1702
1967
|
"3:4": "3:4";
|
|
1703
|
-
"3:2": "3:2";
|
|
1704
|
-
"2:3": "2:3";
|
|
1705
1968
|
"21:9": "21:9";
|
|
1706
1969
|
"4:5": "4:5";
|
|
1707
1970
|
"5:4": "5:4";
|
|
@@ -1722,19 +1985,19 @@ export declare const MediaGenerationRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
1722
1985
|
"16:9": "16:9";
|
|
1723
1986
|
"9:16": "9:16";
|
|
1724
1987
|
"1:1": "1:1";
|
|
1988
|
+
"2:3": "2:3";
|
|
1989
|
+
"3:2": "3:2";
|
|
1725
1990
|
auto: "auto";
|
|
1726
1991
|
"4:3": "4:3";
|
|
1727
1992
|
"3:4": "3:4";
|
|
1728
|
-
"3:2": "3:2";
|
|
1729
|
-
"2:3": "2:3";
|
|
1730
1993
|
"21:9": "21:9";
|
|
1731
1994
|
"4:5": "4:5";
|
|
1732
1995
|
"5:4": "5:4";
|
|
1996
|
+
"9:21": "9:21";
|
|
1733
1997
|
"2:1": "2:1";
|
|
1734
1998
|
"1:2": "1:2";
|
|
1735
1999
|
"3:1": "3:1";
|
|
1736
2000
|
"1:3": "1:3";
|
|
1737
|
-
"9:21": "9:21";
|
|
1738
2001
|
}>>;
|
|
1739
2002
|
resolution: z.ZodDefault<z.ZodEnum<{
|
|
1740
2003
|
"4K": "4K";
|
|
@@ -1753,10 +2016,10 @@ export declare const MediaGenerationRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
1753
2016
|
"16:9": "16:9";
|
|
1754
2017
|
"9:16": "9:16";
|
|
1755
2018
|
"1:1": "1:1";
|
|
2019
|
+
"2:3": "2:3";
|
|
2020
|
+
"3:2": "3:2";
|
|
1756
2021
|
"4:3": "4:3";
|
|
1757
2022
|
"3:4": "3:4";
|
|
1758
|
-
"3:2": "3:2";
|
|
1759
|
-
"2:3": "2:3";
|
|
1760
2023
|
"21:9": "21:9";
|
|
1761
2024
|
}>>;
|
|
1762
2025
|
quality: z.ZodEnum<{
|
|
@@ -1774,10 +2037,10 @@ export declare const MediaGenerationRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
1774
2037
|
"16:9": "16:9";
|
|
1775
2038
|
"9:16": "9:16";
|
|
1776
2039
|
"1:1": "1:1";
|
|
2040
|
+
"2:3": "2:3";
|
|
2041
|
+
"3:2": "3:2";
|
|
1777
2042
|
"4:3": "4:3";
|
|
1778
2043
|
"3:4": "3:4";
|
|
1779
|
-
"3:2": "3:2";
|
|
1780
|
-
"2:3": "2:3";
|
|
1781
2044
|
"21:9": "21:9";
|
|
1782
2045
|
}>>;
|
|
1783
2046
|
quality: z.ZodEnum<{
|
|
@@ -1824,10 +2087,10 @@ export declare const MediaGenerationRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
1824
2087
|
"16:9": "16:9";
|
|
1825
2088
|
"9:16": "9:16";
|
|
1826
2089
|
"1:1": "1:1";
|
|
2090
|
+
"2:3": "2:3";
|
|
2091
|
+
"3:2": "3:2";
|
|
1827
2092
|
"4:3": "4:3";
|
|
1828
2093
|
"3:4": "3:4";
|
|
1829
|
-
"3:2": "3:2";
|
|
1830
|
-
"2:3": "2:3";
|
|
1831
2094
|
"21:9": "21:9";
|
|
1832
2095
|
}>>;
|
|
1833
2096
|
output_format: z.ZodDefault<z.ZodEnum<{
|
|
@@ -1896,6 +2159,32 @@ export declare const MediaGenerationRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
1896
2159
|
web_search: z.ZodOptional<z.ZodBoolean>;
|
|
1897
2160
|
nsfw_checker: z.ZodDefault<z.ZodBoolean>;
|
|
1898
2161
|
}, z.core.$strip>;
|
|
2162
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2163
|
+
model: z.ZodLiteral<"bytedance/seedance-2-mini">;
|
|
2164
|
+
callBackUrl: z.ZodOptional<z.ZodString>;
|
|
2165
|
+
input: z.ZodObject<{
|
|
2166
|
+
prompt: z.ZodOptional<z.ZodString>;
|
|
2167
|
+
reference_image_urls: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
2168
|
+
reference_video_urls: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
2169
|
+
reference_audio_urls: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
2170
|
+
generate_audio: z.ZodDefault<z.ZodBoolean>;
|
|
2171
|
+
resolution: z.ZodDefault<z.ZodEnum<{
|
|
2172
|
+
"720p": "720p";
|
|
2173
|
+
"480p": "480p";
|
|
2174
|
+
}>>;
|
|
2175
|
+
aspect_ratio: z.ZodDefault<z.ZodEnum<{
|
|
2176
|
+
"16:9": "16:9";
|
|
2177
|
+
"9:16": "9:16";
|
|
2178
|
+
"1:1": "1:1";
|
|
2179
|
+
"4:3": "4:3";
|
|
2180
|
+
"3:4": "3:4";
|
|
2181
|
+
"21:9": "21:9";
|
|
2182
|
+
adaptive: "adaptive";
|
|
2183
|
+
}>>;
|
|
2184
|
+
duration: z.ZodDefault<z.ZodNumber>;
|
|
2185
|
+
web_search: z.ZodDefault<z.ZodBoolean>;
|
|
2186
|
+
nsfw_checker: z.ZodDefault<z.ZodBoolean>;
|
|
2187
|
+
}, z.core.$strip>;
|
|
1899
2188
|
}, z.core.$strip>, z.ZodObject<{
|
|
1900
2189
|
model: z.ZodLiteral<"wan/2-7-image-to-video">;
|
|
1901
2190
|
callBackUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -1986,7 +2275,7 @@ export declare const MediaGenerationRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
1986
2275
|
"4:3": "4:3";
|
|
1987
2276
|
"3:4": "3:4";
|
|
1988
2277
|
}>>;
|
|
1989
|
-
duration: z.ZodOptional<z.
|
|
2278
|
+
duration: z.ZodOptional<z.ZodType<0 | 4 | 2 | 10 | 3 | 5 | 6 | 8 | 7 | 9, unknown, z.core.$ZodTypeInternals<0 | 4 | 2 | 10 | 3 | 5 | 6 | 8 | 7 | 9, unknown>>>;
|
|
1990
2279
|
audio_setting: z.ZodOptional<z.ZodEnum<{
|
|
1991
2280
|
auto: "auto";
|
|
1992
2281
|
origin: "origin";
|
|
@@ -2131,6 +2420,78 @@ export declare const MediaGenerationRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
2131
2420
|
}>>;
|
|
2132
2421
|
seed: z.ZodOptional<z.ZodNumber>;
|
|
2133
2422
|
}, z.core.$strip>;
|
|
2423
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2424
|
+
model: z.ZodLiteral<"happyhorse-1-1/text-to-video">;
|
|
2425
|
+
callBackUrl: z.ZodOptional<z.ZodString>;
|
|
2426
|
+
input: z.ZodObject<{
|
|
2427
|
+
prompt: z.ZodString;
|
|
2428
|
+
resolution: z.ZodDefault<z.ZodEnum<{
|
|
2429
|
+
"720p": "720p";
|
|
2430
|
+
"1080p": "1080p";
|
|
2431
|
+
}>>;
|
|
2432
|
+
aspect_ratio: z.ZodDefault<z.ZodEnum<{
|
|
2433
|
+
"16:9": "16:9";
|
|
2434
|
+
"9:16": "9:16";
|
|
2435
|
+
"1:1": "1:1";
|
|
2436
|
+
"4:3": "4:3";
|
|
2437
|
+
"3:4": "3:4";
|
|
2438
|
+
"21:9": "21:9";
|
|
2439
|
+
"4:5": "4:5";
|
|
2440
|
+
"5:4": "5:4";
|
|
2441
|
+
"9:21": "9:21";
|
|
2442
|
+
}>>;
|
|
2443
|
+
duration: z.ZodDefault<z.ZodNumber>;
|
|
2444
|
+
}, z.core.$strip>;
|
|
2445
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2446
|
+
model: z.ZodLiteral<"happyhorse-1-1/image-to-video">;
|
|
2447
|
+
callBackUrl: z.ZodOptional<z.ZodString>;
|
|
2448
|
+
input: z.ZodObject<{
|
|
2449
|
+
prompt: z.ZodDefault<z.ZodString>;
|
|
2450
|
+
image_urls: z.ZodArray<z.ZodString>;
|
|
2451
|
+
resolution: z.ZodDefault<z.ZodEnum<{
|
|
2452
|
+
"720p": "720p";
|
|
2453
|
+
"1080p": "1080p";
|
|
2454
|
+
}>>;
|
|
2455
|
+
duration: z.ZodDefault<z.ZodNumber>;
|
|
2456
|
+
}, z.core.$strip>;
|
|
2457
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2458
|
+
model: z.ZodLiteral<"happyhorse-1-1/reference-to-video">;
|
|
2459
|
+
callBackUrl: z.ZodOptional<z.ZodString>;
|
|
2460
|
+
input: z.ZodObject<{
|
|
2461
|
+
prompt: z.ZodString;
|
|
2462
|
+
reference_image: z.ZodArray<z.ZodString>;
|
|
2463
|
+
resolution: z.ZodDefault<z.ZodEnum<{
|
|
2464
|
+
"720p": "720p";
|
|
2465
|
+
"1080p": "1080p";
|
|
2466
|
+
}>>;
|
|
2467
|
+
aspect_ratio: z.ZodDefault<z.ZodEnum<{
|
|
2468
|
+
"16:9": "16:9";
|
|
2469
|
+
"9:16": "9:16";
|
|
2470
|
+
"1:1": "1:1";
|
|
2471
|
+
"4:3": "4:3";
|
|
2472
|
+
"3:4": "3:4";
|
|
2473
|
+
"21:9": "21:9";
|
|
2474
|
+
"4:5": "4:5";
|
|
2475
|
+
"5:4": "5:4";
|
|
2476
|
+
"9:21": "9:21";
|
|
2477
|
+
}>>;
|
|
2478
|
+
duration: z.ZodDefault<z.ZodNumber>;
|
|
2479
|
+
}, z.core.$strip>;
|
|
2480
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2481
|
+
model: z.ZodLiteral<"omnihuman-1-5">;
|
|
2482
|
+
callBackUrl: z.ZodOptional<z.ZodString>;
|
|
2483
|
+
input: z.ZodObject<{
|
|
2484
|
+
image_url: z.ZodString;
|
|
2485
|
+
mask_url: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2486
|
+
audio_url: z.ZodString;
|
|
2487
|
+
prompt: z.ZodOptional<z.ZodString>;
|
|
2488
|
+
output_resolution: z.ZodDefault<z.ZodEnum<{
|
|
2489
|
+
720: "720";
|
|
2490
|
+
1080: "1080";
|
|
2491
|
+
}>>;
|
|
2492
|
+
pe_fast_mode: z.ZodDefault<z.ZodBoolean>;
|
|
2493
|
+
seed: z.ZodDefault<z.ZodNumber>;
|
|
2494
|
+
}, z.core.$strip>;
|
|
2134
2495
|
}, z.core.$strip>, z.ZodObject<{
|
|
2135
2496
|
model: z.ZodLiteral<"volcengine/video-to-video-lip-sync">;
|
|
2136
2497
|
callBackUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -2237,6 +2598,7 @@ export declare const CreateTaskRequestSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2237
2598
|
"qwen2/image-edit": "qwen2/image-edit";
|
|
2238
2599
|
"bytedance/seedance-2-fast": "bytedance/seedance-2-fast";
|
|
2239
2600
|
"bytedance/seedance-2": "bytedance/seedance-2";
|
|
2601
|
+
"bytedance/seedance-2-mini": "bytedance/seedance-2-mini";
|
|
2240
2602
|
"wan/2-7-image-to-video": "wan/2-7-image-to-video";
|
|
2241
2603
|
"wan/2-7-text-to-video": "wan/2-7-text-to-video";
|
|
2242
2604
|
"wan/2-7-r2v": "wan/2-7-r2v";
|
|
@@ -2247,6 +2609,10 @@ export declare const CreateTaskRequestSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2247
2609
|
"happyhorse/image-to-video": "happyhorse/image-to-video";
|
|
2248
2610
|
"happyhorse/reference-to-video": "happyhorse/reference-to-video";
|
|
2249
2611
|
"happyhorse/video-edit": "happyhorse/video-edit";
|
|
2612
|
+
"happyhorse-1-1/text-to-video": "happyhorse-1-1/text-to-video";
|
|
2613
|
+
"happyhorse-1-1/image-to-video": "happyhorse-1-1/image-to-video";
|
|
2614
|
+
"happyhorse-1-1/reference-to-video": "happyhorse-1-1/reference-to-video";
|
|
2615
|
+
"omnihuman-1-5": "omnihuman-1-5";
|
|
2250
2616
|
"volcengine/video-to-video-lip-sync": "volcengine/video-to-video-lip-sync";
|
|
2251
2617
|
"elevenlabs/audio-isolation": "elevenlabs/audio-isolation";
|
|
2252
2618
|
"elevenlabs/text-to-dialogue-v3": "elevenlabs/text-to-dialogue-v3";
|
|
@@ -2358,8 +2724,8 @@ export declare const CreateTaskRequestSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2358
2724
|
"16:9": "16:9";
|
|
2359
2725
|
"9:16": "9:16";
|
|
2360
2726
|
"1:1": "1:1";
|
|
2361
|
-
"3:2": "3:2";
|
|
2362
2727
|
"2:3": "2:3";
|
|
2728
|
+
"3:2": "3:2";
|
|
2363
2729
|
}>>;
|
|
2364
2730
|
nsfw_checker: z.ZodDefault<z.ZodBoolean>;
|
|
2365
2731
|
enable_pro: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2381,8 +2747,8 @@ export declare const CreateTaskRequestSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2381
2747
|
"16:9": "16:9";
|
|
2382
2748
|
"9:16": "9:16";
|
|
2383
2749
|
"1:1": "1:1";
|
|
2384
|
-
"3:2": "3:2";
|
|
2385
2750
|
"2:3": "2:3";
|
|
2751
|
+
"3:2": "3:2";
|
|
2386
2752
|
}>>;
|
|
2387
2753
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
2388
2754
|
fun: "fun";
|
|
@@ -2409,7 +2775,7 @@ export declare const CreateTaskRequestSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2409
2775
|
normal: "normal";
|
|
2410
2776
|
spicy: "spicy";
|
|
2411
2777
|
}>>;
|
|
2412
|
-
duration: z.ZodDefault<z.
|
|
2778
|
+
duration: z.ZodDefault<z.ZodNumber>;
|
|
2413
2779
|
resolution: z.ZodDefault<z.ZodEnum<{
|
|
2414
2780
|
"720p": "720p";
|
|
2415
2781
|
"480p": "480p";
|
|
@@ -2418,8 +2784,8 @@ export declare const CreateTaskRequestSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2418
2784
|
"16:9": "16:9";
|
|
2419
2785
|
"9:16": "9:16";
|
|
2420
2786
|
"1:1": "1:1";
|
|
2421
|
-
"3:2": "3:2";
|
|
2422
2787
|
"2:3": "2:3";
|
|
2788
|
+
"3:2": "3:2";
|
|
2423
2789
|
}>>;
|
|
2424
2790
|
nsfw_checker: z.ZodDefault<z.ZodBoolean>;
|
|
2425
2791
|
}, z.core.$strip>;
|
|
@@ -2433,11 +2799,11 @@ export declare const CreateTaskRequestSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2433
2799
|
"16:9": "16:9";
|
|
2434
2800
|
"9:16": "9:16";
|
|
2435
2801
|
"1:1": "1:1";
|
|
2802
|
+
"2:3": "2:3";
|
|
2803
|
+
"3:2": "3:2";
|
|
2436
2804
|
auto: "auto";
|
|
2437
2805
|
"4:3": "4:3";
|
|
2438
2806
|
"3:4": "3:4";
|
|
2439
|
-
"3:2": "3:2";
|
|
2440
|
-
"2:3": "2:3";
|
|
2441
2807
|
}>>;
|
|
2442
2808
|
resolution: z.ZodDefault<z.ZodEnum<{
|
|
2443
2809
|
"720p": "720p";
|
|
@@ -2474,11 +2840,11 @@ export declare const CreateTaskRequestSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2474
2840
|
"16:9": "16:9";
|
|
2475
2841
|
"9:16": "9:16";
|
|
2476
2842
|
"1:1": "1:1";
|
|
2843
|
+
"2:3": "2:3";
|
|
2844
|
+
"3:2": "3:2";
|
|
2477
2845
|
auto: "auto";
|
|
2478
2846
|
"4:3": "4:3";
|
|
2479
2847
|
"3:4": "3:4";
|
|
2480
|
-
"3:2": "3:2";
|
|
2481
|
-
"2:3": "2:3";
|
|
2482
2848
|
"21:9": "21:9";
|
|
2483
2849
|
"4:5": "4:5";
|
|
2484
2850
|
"5:4": "5:4";
|
|
@@ -2503,11 +2869,11 @@ export declare const CreateTaskRequestSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2503
2869
|
"16:9": "16:9";
|
|
2504
2870
|
"9:16": "9:16";
|
|
2505
2871
|
"1:1": "1:1";
|
|
2872
|
+
"2:3": "2:3";
|
|
2873
|
+
"3:2": "3:2";
|
|
2506
2874
|
auto: "auto";
|
|
2507
2875
|
"4:3": "4:3";
|
|
2508
2876
|
"3:4": "3:4";
|
|
2509
|
-
"3:2": "3:2";
|
|
2510
|
-
"2:3": "2:3";
|
|
2511
2877
|
"21:9": "21:9";
|
|
2512
2878
|
"8:1": "8:1";
|
|
2513
2879
|
"1:8": "1:8";
|
|
@@ -2535,8 +2901,8 @@ export declare const CreateTaskRequestSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2535
2901
|
prompt: z.ZodString;
|
|
2536
2902
|
aspect_ratio: z.ZodOptional<z.ZodEnum<{
|
|
2537
2903
|
"1:1": "1:1";
|
|
2538
|
-
"3:2": "3:2";
|
|
2539
2904
|
"2:3": "2:3";
|
|
2905
|
+
"3:2": "3:2";
|
|
2540
2906
|
}>>;
|
|
2541
2907
|
quality: z.ZodOptional<z.ZodEnum<{
|
|
2542
2908
|
medium: "medium";
|
|
@@ -2553,11 +2919,11 @@ export declare const CreateTaskRequestSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2553
2919
|
"16:9": "16:9";
|
|
2554
2920
|
"9:16": "9:16";
|
|
2555
2921
|
"1:1": "1:1";
|
|
2922
|
+
"2:3": "2:3";
|
|
2923
|
+
"3:2": "3:2";
|
|
2556
2924
|
auto: "auto";
|
|
2557
2925
|
"4:3": "4:3";
|
|
2558
2926
|
"3:4": "3:4";
|
|
2559
|
-
"3:2": "3:2";
|
|
2560
|
-
"2:3": "2:3";
|
|
2561
2927
|
"21:9": "21:9";
|
|
2562
2928
|
"4:5": "4:5";
|
|
2563
2929
|
"5:4": "5:4";
|
|
@@ -2578,19 +2944,19 @@ export declare const CreateTaskRequestSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2578
2944
|
"16:9": "16:9";
|
|
2579
2945
|
"9:16": "9:16";
|
|
2580
2946
|
"1:1": "1:1";
|
|
2947
|
+
"2:3": "2:3";
|
|
2948
|
+
"3:2": "3:2";
|
|
2581
2949
|
auto: "auto";
|
|
2582
2950
|
"4:3": "4:3";
|
|
2583
2951
|
"3:4": "3:4";
|
|
2584
|
-
"3:2": "3:2";
|
|
2585
|
-
"2:3": "2:3";
|
|
2586
2952
|
"21:9": "21:9";
|
|
2587
2953
|
"4:5": "4:5";
|
|
2588
2954
|
"5:4": "5:4";
|
|
2955
|
+
"9:21": "9:21";
|
|
2589
2956
|
"2:1": "2:1";
|
|
2590
2957
|
"1:2": "1:2";
|
|
2591
2958
|
"3:1": "3:1";
|
|
2592
2959
|
"1:3": "1:3";
|
|
2593
|
-
"9:21": "9:21";
|
|
2594
2960
|
}>>;
|
|
2595
2961
|
resolution: z.ZodDefault<z.ZodEnum<{
|
|
2596
2962
|
"4K": "4K";
|
|
@@ -2609,10 +2975,10 @@ export declare const CreateTaskRequestSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2609
2975
|
"16:9": "16:9";
|
|
2610
2976
|
"9:16": "9:16";
|
|
2611
2977
|
"1:1": "1:1";
|
|
2978
|
+
"2:3": "2:3";
|
|
2979
|
+
"3:2": "3:2";
|
|
2612
2980
|
"4:3": "4:3";
|
|
2613
2981
|
"3:4": "3:4";
|
|
2614
|
-
"3:2": "3:2";
|
|
2615
|
-
"2:3": "2:3";
|
|
2616
2982
|
"21:9": "21:9";
|
|
2617
2983
|
}>>;
|
|
2618
2984
|
quality: z.ZodEnum<{
|
|
@@ -2630,10 +2996,10 @@ export declare const CreateTaskRequestSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2630
2996
|
"16:9": "16:9";
|
|
2631
2997
|
"9:16": "9:16";
|
|
2632
2998
|
"1:1": "1:1";
|
|
2999
|
+
"2:3": "2:3";
|
|
3000
|
+
"3:2": "3:2";
|
|
2633
3001
|
"4:3": "4:3";
|
|
2634
3002
|
"3:4": "3:4";
|
|
2635
|
-
"3:2": "3:2";
|
|
2636
|
-
"2:3": "2:3";
|
|
2637
3003
|
"21:9": "21:9";
|
|
2638
3004
|
}>>;
|
|
2639
3005
|
quality: z.ZodEnum<{
|
|
@@ -2680,10 +3046,10 @@ export declare const CreateTaskRequestSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2680
3046
|
"16:9": "16:9";
|
|
2681
3047
|
"9:16": "9:16";
|
|
2682
3048
|
"1:1": "1:1";
|
|
3049
|
+
"2:3": "2:3";
|
|
3050
|
+
"3:2": "3:2";
|
|
2683
3051
|
"4:3": "4:3";
|
|
2684
3052
|
"3:4": "3:4";
|
|
2685
|
-
"3:2": "3:2";
|
|
2686
|
-
"2:3": "2:3";
|
|
2687
3053
|
"21:9": "21:9";
|
|
2688
3054
|
}>>;
|
|
2689
3055
|
output_format: z.ZodDefault<z.ZodEnum<{
|
|
@@ -2752,6 +3118,32 @@ export declare const CreateTaskRequestSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2752
3118
|
web_search: z.ZodOptional<z.ZodBoolean>;
|
|
2753
3119
|
nsfw_checker: z.ZodDefault<z.ZodBoolean>;
|
|
2754
3120
|
}, z.core.$strip>;
|
|
3121
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3122
|
+
model: z.ZodLiteral<"bytedance/seedance-2-mini">;
|
|
3123
|
+
callBackUrl: z.ZodOptional<z.ZodString>;
|
|
3124
|
+
input: z.ZodObject<{
|
|
3125
|
+
prompt: z.ZodOptional<z.ZodString>;
|
|
3126
|
+
reference_image_urls: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3127
|
+
reference_video_urls: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3128
|
+
reference_audio_urls: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
3129
|
+
generate_audio: z.ZodDefault<z.ZodBoolean>;
|
|
3130
|
+
resolution: z.ZodDefault<z.ZodEnum<{
|
|
3131
|
+
"720p": "720p";
|
|
3132
|
+
"480p": "480p";
|
|
3133
|
+
}>>;
|
|
3134
|
+
aspect_ratio: z.ZodDefault<z.ZodEnum<{
|
|
3135
|
+
"16:9": "16:9";
|
|
3136
|
+
"9:16": "9:16";
|
|
3137
|
+
"1:1": "1:1";
|
|
3138
|
+
"4:3": "4:3";
|
|
3139
|
+
"3:4": "3:4";
|
|
3140
|
+
"21:9": "21:9";
|
|
3141
|
+
adaptive: "adaptive";
|
|
3142
|
+
}>>;
|
|
3143
|
+
duration: z.ZodDefault<z.ZodNumber>;
|
|
3144
|
+
web_search: z.ZodDefault<z.ZodBoolean>;
|
|
3145
|
+
nsfw_checker: z.ZodDefault<z.ZodBoolean>;
|
|
3146
|
+
}, z.core.$strip>;
|
|
2755
3147
|
}, z.core.$strip>, z.ZodObject<{
|
|
2756
3148
|
model: z.ZodLiteral<"wan/2-7-image-to-video">;
|
|
2757
3149
|
callBackUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -2842,7 +3234,7 @@ export declare const CreateTaskRequestSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2842
3234
|
"4:3": "4:3";
|
|
2843
3235
|
"3:4": "3:4";
|
|
2844
3236
|
}>>;
|
|
2845
|
-
duration: z.ZodOptional<z.
|
|
3237
|
+
duration: z.ZodOptional<z.ZodType<0 | 4 | 2 | 10 | 3 | 5 | 6 | 8 | 7 | 9, unknown, z.core.$ZodTypeInternals<0 | 4 | 2 | 10 | 3 | 5 | 6 | 8 | 7 | 9, unknown>>>;
|
|
2846
3238
|
audio_setting: z.ZodOptional<z.ZodEnum<{
|
|
2847
3239
|
auto: "auto";
|
|
2848
3240
|
origin: "origin";
|
|
@@ -2987,6 +3379,78 @@ export declare const CreateTaskRequestSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2987
3379
|
}>>;
|
|
2988
3380
|
seed: z.ZodOptional<z.ZodNumber>;
|
|
2989
3381
|
}, z.core.$strip>;
|
|
3382
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3383
|
+
model: z.ZodLiteral<"happyhorse-1-1/text-to-video">;
|
|
3384
|
+
callBackUrl: z.ZodOptional<z.ZodString>;
|
|
3385
|
+
input: z.ZodObject<{
|
|
3386
|
+
prompt: z.ZodString;
|
|
3387
|
+
resolution: z.ZodDefault<z.ZodEnum<{
|
|
3388
|
+
"720p": "720p";
|
|
3389
|
+
"1080p": "1080p";
|
|
3390
|
+
}>>;
|
|
3391
|
+
aspect_ratio: z.ZodDefault<z.ZodEnum<{
|
|
3392
|
+
"16:9": "16:9";
|
|
3393
|
+
"9:16": "9:16";
|
|
3394
|
+
"1:1": "1:1";
|
|
3395
|
+
"4:3": "4:3";
|
|
3396
|
+
"3:4": "3:4";
|
|
3397
|
+
"21:9": "21:9";
|
|
3398
|
+
"4:5": "4:5";
|
|
3399
|
+
"5:4": "5:4";
|
|
3400
|
+
"9:21": "9:21";
|
|
3401
|
+
}>>;
|
|
3402
|
+
duration: z.ZodDefault<z.ZodNumber>;
|
|
3403
|
+
}, z.core.$strip>;
|
|
3404
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3405
|
+
model: z.ZodLiteral<"happyhorse-1-1/image-to-video">;
|
|
3406
|
+
callBackUrl: z.ZodOptional<z.ZodString>;
|
|
3407
|
+
input: z.ZodObject<{
|
|
3408
|
+
prompt: z.ZodDefault<z.ZodString>;
|
|
3409
|
+
image_urls: z.ZodArray<z.ZodString>;
|
|
3410
|
+
resolution: z.ZodDefault<z.ZodEnum<{
|
|
3411
|
+
"720p": "720p";
|
|
3412
|
+
"1080p": "1080p";
|
|
3413
|
+
}>>;
|
|
3414
|
+
duration: z.ZodDefault<z.ZodNumber>;
|
|
3415
|
+
}, z.core.$strip>;
|
|
3416
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3417
|
+
model: z.ZodLiteral<"happyhorse-1-1/reference-to-video">;
|
|
3418
|
+
callBackUrl: z.ZodOptional<z.ZodString>;
|
|
3419
|
+
input: z.ZodObject<{
|
|
3420
|
+
prompt: z.ZodString;
|
|
3421
|
+
reference_image: z.ZodArray<z.ZodString>;
|
|
3422
|
+
resolution: z.ZodDefault<z.ZodEnum<{
|
|
3423
|
+
"720p": "720p";
|
|
3424
|
+
"1080p": "1080p";
|
|
3425
|
+
}>>;
|
|
3426
|
+
aspect_ratio: z.ZodDefault<z.ZodEnum<{
|
|
3427
|
+
"16:9": "16:9";
|
|
3428
|
+
"9:16": "9:16";
|
|
3429
|
+
"1:1": "1:1";
|
|
3430
|
+
"4:3": "4:3";
|
|
3431
|
+
"3:4": "3:4";
|
|
3432
|
+
"21:9": "21:9";
|
|
3433
|
+
"4:5": "4:5";
|
|
3434
|
+
"5:4": "5:4";
|
|
3435
|
+
"9:21": "9:21";
|
|
3436
|
+
}>>;
|
|
3437
|
+
duration: z.ZodDefault<z.ZodNumber>;
|
|
3438
|
+
}, z.core.$strip>;
|
|
3439
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3440
|
+
model: z.ZodLiteral<"omnihuman-1-5">;
|
|
3441
|
+
callBackUrl: z.ZodOptional<z.ZodString>;
|
|
3442
|
+
input: z.ZodObject<{
|
|
3443
|
+
image_url: z.ZodString;
|
|
3444
|
+
mask_url: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3445
|
+
audio_url: z.ZodString;
|
|
3446
|
+
prompt: z.ZodOptional<z.ZodString>;
|
|
3447
|
+
output_resolution: z.ZodDefault<z.ZodEnum<{
|
|
3448
|
+
720: "720";
|
|
3449
|
+
1080: "1080";
|
|
3450
|
+
}>>;
|
|
3451
|
+
pe_fast_mode: z.ZodDefault<z.ZodBoolean>;
|
|
3452
|
+
seed: z.ZodDefault<z.ZodNumber>;
|
|
3453
|
+
}, z.core.$strip>;
|
|
2990
3454
|
}, z.core.$strip>, z.ZodObject<{
|
|
2991
3455
|
model: z.ZodLiteral<"volcengine/video-to-video-lip-sync">;
|
|
2992
3456
|
callBackUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -3078,6 +3542,11 @@ export type KlingV3TurboDuration = z.infer<typeof KlingV3TurboDurationSchema>;
|
|
|
3078
3542
|
export type KlingV3TurboResolution = z.infer<typeof KlingV3TurboResolutionSchema>;
|
|
3079
3543
|
export type KlingV3TurboAspectRatio = z.infer<typeof KlingV3TurboAspectRatioSchema>;
|
|
3080
3544
|
export type GrokImagineMode = z.infer<typeof GrokImagineModeSchema>;
|
|
3545
|
+
export type GrokTextToVideoMode = z.infer<typeof GrokTextToVideoModeSchema>;
|
|
3546
|
+
export type GrokImageToVideoMode = z.infer<typeof GrokImageToVideoModeSchema>;
|
|
3547
|
+
export type GrokTextToVideoAspectRatio = z.infer<typeof GrokTextToVideoAspectRatioSchema>;
|
|
3548
|
+
export type GrokImageToVideoAspectRatio = z.infer<typeof GrokImageToVideoAspectRatioSchema>;
|
|
3549
|
+
export type GrokTextToVideoDuration = z.infer<typeof GrokTextToVideoDurationSchema>;
|
|
3081
3550
|
export type GrokImagineDuration = z.infer<typeof GrokImagineDurationSchema>;
|
|
3082
3551
|
export type GrokImageToVideoDuration = z.infer<typeof GrokImageToVideoDurationSchema>;
|
|
3083
3552
|
export type GrokImagineResolution = z.infer<typeof GrokImagineResolutionSchema>;
|
|
@@ -3094,64 +3563,132 @@ export type Wan27ImageResolution = z.infer<typeof Wan27ImageResolutionSchema>;
|
|
|
3094
3563
|
export type Wan27ImageAspectRatio = z.infer<typeof Wan27ImageAspectRatioSchema>;
|
|
3095
3564
|
export type HappyHorseResolution = z.infer<typeof HappyHorseResolutionSchema>;
|
|
3096
3565
|
export type HappyHorseAspectRatio = z.infer<typeof HappyHorseAspectRatioSchema>;
|
|
3566
|
+
export type HappyHorse11AspectRatio = z.infer<typeof HappyHorse11AspectRatioSchema>;
|
|
3097
3567
|
export type HappyHorseAudioSetting = z.infer<typeof HappyHorseAudioSettingSchema>;
|
|
3568
|
+
export type HappyHorseDuration = z.infer<typeof HappyHorseDurationSchema>;
|
|
3569
|
+
export type Omnihuman15OutputResolution = z.infer<typeof Omnihuman15OutputResolutionSchema>;
|
|
3098
3570
|
export type VolcengineVideoToVideoLipSyncMode = z.infer<typeof VolcengineVideoToVideoLipSyncModeSchema>;
|
|
3571
|
+
export type Seedance2MiniResolution = z.infer<typeof Seedance2MiniResolutionSchema>;
|
|
3572
|
+
export type Seedance2MiniAspectRatio = z.infer<typeof Seedance2MiniAspectRatioSchema>;
|
|
3573
|
+
export type Seedance2MiniTaskState = z.infer<typeof Seedance2MiniTaskStateSchema>;
|
|
3099
3574
|
export type KlingElement = z.infer<typeof KlingElementSchema>;
|
|
3100
3575
|
export type MultiShotPrompt = z.infer<typeof MultiShotPromptSchema>;
|
|
3101
3576
|
export type Wan27ImageColorPalette = z.infer<typeof Wan27ImageColorPaletteSchema>;
|
|
3102
|
-
export type KlingVideoRequest = z.
|
|
3103
|
-
export type
|
|
3104
|
-
export type
|
|
3105
|
-
export type
|
|
3106
|
-
export type
|
|
3107
|
-
export type
|
|
3108
|
-
export type
|
|
3109
|
-
export type
|
|
3110
|
-
export type
|
|
3111
|
-
export type
|
|
3112
|
-
export type
|
|
3113
|
-
export type
|
|
3114
|
-
export type
|
|
3115
|
-
export type
|
|
3577
|
+
export type KlingVideoRequest = z.input<typeof KlingVideoRequestSchema>;
|
|
3578
|
+
export type KlingVideoParsedRequest = z.output<typeof KlingVideoRequestSchema>;
|
|
3579
|
+
export type KlingMotionControlRequest = z.input<typeof KlingMotionControlRequestSchema>;
|
|
3580
|
+
export type KlingMotionControlParsedRequest = z.output<typeof KlingMotionControlRequestSchema>;
|
|
3581
|
+
export type KlingV3TurboImageToVideoRequest = z.input<typeof KlingV3TurboImageToVideoRequestSchema>;
|
|
3582
|
+
export type KlingV3TurboImageToVideoParsedRequest = z.output<typeof KlingV3TurboImageToVideoRequestSchema>;
|
|
3583
|
+
export type KlingV3TurboTextToVideoRequest = z.input<typeof KlingV3TurboTextToVideoRequestSchema>;
|
|
3584
|
+
export type KlingV3TurboTextToVideoParsedRequest = z.output<typeof KlingV3TurboTextToVideoRequestSchema>;
|
|
3585
|
+
export type GrokTextToImageRequest = z.input<typeof GrokTextToImageRequestSchema>;
|
|
3586
|
+
export type GrokTextToImageParsedRequest = z.output<typeof GrokTextToImageRequestSchema>;
|
|
3587
|
+
export type Qwen2TextToImageRequest = z.input<typeof Qwen2TextToImageRequestSchema>;
|
|
3588
|
+
export type Qwen2TextToImageParsedRequest = z.output<typeof Qwen2TextToImageRequestSchema>;
|
|
3589
|
+
export type Qwen2ImageEditRequest = z.input<typeof Qwen2ImageEditRequestSchema>;
|
|
3590
|
+
export type Qwen2ImageEditParsedRequest = z.output<typeof Qwen2ImageEditRequestSchema>;
|
|
3591
|
+
export type GrokImageToImageRequest = z.input<typeof GrokImageToImageRequestSchema>;
|
|
3592
|
+
export type GrokImageToImageParsedRequest = z.output<typeof GrokImageToImageRequestSchema>;
|
|
3593
|
+
export type GrokTextToVideoRequest = z.input<typeof GrokTextToVideoRequestSchema>;
|
|
3594
|
+
export type GrokTextToVideoParsedRequest = z.output<typeof GrokTextToVideoRequestSchema>;
|
|
3595
|
+
export type GrokImageToVideoRequest = z.input<typeof GrokImageToVideoRequestSchema>;
|
|
3596
|
+
export type GrokImageToVideoParsedRequest = z.output<typeof GrokImageToVideoRequestSchema>;
|
|
3597
|
+
export type GrokVideo15PreviewRequest = z.input<typeof GrokVideo15PreviewRequestSchema>;
|
|
3598
|
+
export type GrokVideo15PreviewParsedRequest = z.output<typeof GrokVideo15PreviewRequestSchema>;
|
|
3599
|
+
export type GrokVideoExtendRequest = z.input<typeof GrokVideoExtendRequestSchema>;
|
|
3600
|
+
export type GrokVideoExtendParsedRequest = z.output<typeof GrokVideoExtendRequestSchema>;
|
|
3601
|
+
export type GrokVideoUpscaleRequest = z.input<typeof GrokVideoUpscaleRequestSchema>;
|
|
3602
|
+
export type GrokVideoUpscaleParsedRequest = z.output<typeof GrokVideoUpscaleRequestSchema>;
|
|
3603
|
+
export type NanoBananaProRequest = z.input<typeof NanoBananaProRequestSchema>;
|
|
3604
|
+
export type NanoBananaProParsedRequest = z.output<typeof NanoBananaProRequestSchema>;
|
|
3116
3605
|
export type Seedance2FastInput = z.infer<typeof Seedance2FastInputSchema>;
|
|
3117
|
-
export type Seedance2FastRequest = z.
|
|
3606
|
+
export type Seedance2FastRequest = z.input<typeof Seedance2FastRequestSchema>;
|
|
3607
|
+
export type Seedance2FastParsedRequest = z.output<typeof Seedance2FastRequestSchema>;
|
|
3118
3608
|
export type Seedance2Input = z.infer<typeof Seedance2InputSchema>;
|
|
3119
|
-
export type Seedance2Request = z.
|
|
3120
|
-
export type
|
|
3121
|
-
export type
|
|
3609
|
+
export type Seedance2Request = z.input<typeof Seedance2RequestSchema>;
|
|
3610
|
+
export type Seedance2ParsedRequest = z.output<typeof Seedance2RequestSchema>;
|
|
3611
|
+
export type Seedance2MiniInput = z.infer<typeof Seedance2MiniInputSchema>;
|
|
3612
|
+
export type Seedance2MiniRequest = z.input<typeof Seedance2MiniRequestSchema>;
|
|
3613
|
+
export type Seedance2MiniParsedRequest = z.output<typeof Seedance2MiniRequestSchema>;
|
|
3614
|
+
export type NanoBanana2Request = z.input<typeof NanoBanana2RequestSchema>;
|
|
3615
|
+
export type NanoBanana2ParsedRequest = z.output<typeof NanoBanana2RequestSchema>;
|
|
3616
|
+
export type GptImageToImageRequest = z.input<typeof GptImageToImageRequestSchema>;
|
|
3617
|
+
export type GptImageToImageParsedRequest = z.output<typeof GptImageToImageRequestSchema>;
|
|
3122
3618
|
export type GptImage2ImageToImageAspectRatio = z.infer<typeof GptImage2ImageToImageAspectRatioSchema>;
|
|
3123
3619
|
export type GptImage2ImageToImageResolution = z.infer<typeof GptImage2ImageToImageResolutionSchema>;
|
|
3124
|
-
export type GptImage2ImageToImageRequest = z.
|
|
3620
|
+
export type GptImage2ImageToImageRequest = z.input<typeof GptImage2ImageToImageRequestSchema>;
|
|
3621
|
+
export type GptImage2ImageToImageParsedRequest = z.output<typeof GptImage2ImageToImageRequestSchema>;
|
|
3125
3622
|
export type GptImage2TextToImageAspectRatio = z.infer<typeof GptImage2TextToImageAspectRatioSchema>;
|
|
3126
3623
|
export type GptImage2TextToImageResolution = z.infer<typeof GptImage2TextToImageResolutionSchema>;
|
|
3127
|
-
export type GptImage2TextToImageRequest = z.
|
|
3128
|
-
export type
|
|
3129
|
-
export type
|
|
3130
|
-
export type
|
|
3131
|
-
export type
|
|
3132
|
-
export type
|
|
3133
|
-
export type
|
|
3134
|
-
export type
|
|
3135
|
-
export type
|
|
3136
|
-
export type
|
|
3137
|
-
export type
|
|
3138
|
-
export type
|
|
3139
|
-
export type
|
|
3140
|
-
export type
|
|
3141
|
-
export type
|
|
3142
|
-
export type
|
|
3143
|
-
export type
|
|
3144
|
-
export type
|
|
3145
|
-
export type
|
|
3146
|
-
export type
|
|
3624
|
+
export type GptImage2TextToImageRequest = z.input<typeof GptImage2TextToImageRequestSchema>;
|
|
3625
|
+
export type GptImage2TextToImageParsedRequest = z.output<typeof GptImage2TextToImageRequestSchema>;
|
|
3626
|
+
export type SeedreamImageToImageRequest = z.input<typeof SeedreamImageToImageRequestSchema>;
|
|
3627
|
+
export type SeedreamImageToImageParsedRequest = z.output<typeof SeedreamImageToImageRequestSchema>;
|
|
3628
|
+
export type SeedreamTextToImageRequest = z.input<typeof SeedreamTextToImageRequestSchema>;
|
|
3629
|
+
export type SeedreamTextToImageParsedRequest = z.output<typeof SeedreamTextToImageRequestSchema>;
|
|
3630
|
+
export type SoraWatermarkRequest = z.input<typeof SoraWatermarkRequestSchema>;
|
|
3631
|
+
export type SoraWatermarkParsedRequest = z.output<typeof SoraWatermarkRequestSchema>;
|
|
3632
|
+
export type Wan27ImageToVideoRequest = z.input<typeof Wan27ImageToVideoRequestSchema>;
|
|
3633
|
+
export type Wan27ImageToVideoParsedRequest = z.output<typeof Wan27ImageToVideoRequestSchema>;
|
|
3634
|
+
export type Wan27TextToVideoRequest = z.input<typeof Wan27TextToVideoRequestSchema>;
|
|
3635
|
+
export type Wan27TextToVideoParsedRequest = z.output<typeof Wan27TextToVideoRequestSchema>;
|
|
3636
|
+
export type Wan27RefToVideoRequest = z.input<typeof Wan27RefToVideoRequestSchema>;
|
|
3637
|
+
export type Wan27RefToVideoParsedRequest = z.output<typeof Wan27RefToVideoRequestSchema>;
|
|
3638
|
+
export type Wan27VideoEditRequest = z.input<typeof Wan27VideoEditRequestSchema>;
|
|
3639
|
+
export type Wan27VideoEditParsedRequest = z.output<typeof Wan27VideoEditRequestSchema>;
|
|
3640
|
+
export type Wan27ImageRequest = z.input<typeof Wan27ImageRequestSchema>;
|
|
3641
|
+
export type Wan27ImageParsedRequest = z.output<typeof Wan27ImageRequestSchema>;
|
|
3642
|
+
export type Wan27ImageProRequest = z.input<typeof Wan27ImageProRequestSchema>;
|
|
3643
|
+
export type Wan27ImageProParsedRequest = z.output<typeof Wan27ImageProRequestSchema>;
|
|
3644
|
+
export type HappyHorseTextToVideoRequest = z.input<typeof HappyHorseTextToVideoRequestSchema>;
|
|
3645
|
+
export type HappyHorseTextToVideoParsedRequest = z.output<typeof HappyHorseTextToVideoRequestSchema>;
|
|
3646
|
+
export type HappyHorseImageToVideoRequest = z.input<typeof HappyHorseImageToVideoRequestSchema>;
|
|
3647
|
+
export type HappyHorseImageToVideoParsedRequest = z.output<typeof HappyHorseImageToVideoRequestSchema>;
|
|
3648
|
+
export type HappyHorseReferenceToVideoRequest = z.input<typeof HappyHorseReferenceToVideoRequestSchema>;
|
|
3649
|
+
export type HappyHorseReferenceToVideoParsedRequest = z.output<typeof HappyHorseReferenceToVideoRequestSchema>;
|
|
3650
|
+
export type HappyHorseVideoEditRequest = z.input<typeof HappyHorseVideoEditRequestSchema>;
|
|
3651
|
+
export type HappyHorseVideoEditParsedRequest = z.output<typeof HappyHorseVideoEditRequestSchema>;
|
|
3652
|
+
export type HappyHorse11TextToVideoRequest = z.input<typeof HappyHorse11TextToVideoRequestSchema>;
|
|
3653
|
+
export type HappyHorse11TextToVideoParsedRequest = z.output<typeof HappyHorse11TextToVideoRequestSchema>;
|
|
3654
|
+
export type HappyHorse11ImageToVideoRequest = z.input<typeof HappyHorse11ImageToVideoRequestSchema>;
|
|
3655
|
+
export type HappyHorse11ImageToVideoParsedRequest = z.output<typeof HappyHorse11ImageToVideoRequestSchema>;
|
|
3656
|
+
export type HappyHorse11ReferenceToVideoRequest = z.input<typeof HappyHorse11ReferenceToVideoRequestSchema>;
|
|
3657
|
+
export type HappyHorse11ReferenceToVideoParsedRequest = z.output<typeof HappyHorse11ReferenceToVideoRequestSchema>;
|
|
3658
|
+
export type HappyHorse11CreateTaskResponse = z.infer<typeof HappyHorse11CreateTaskResponseSchema>;
|
|
3659
|
+
export type Omnihuman15Request = z.input<typeof Omnihuman15RequestSchema>;
|
|
3660
|
+
export type Omnihuman15ParsedRequest = z.output<typeof Omnihuman15RequestSchema>;
|
|
3661
|
+
export type VolcengineVideoToVideoLipSyncRequest = z.input<typeof VolcengineVideoToVideoLipSyncRequestSchema>;
|
|
3662
|
+
export type VolcengineVideoToVideoLipSyncParsedRequest = z.output<typeof VolcengineVideoToVideoLipSyncRequestSchema>;
|
|
3663
|
+
export type ElevenLabsAudioIsolationRequest = z.input<typeof ElevenLabsAudioIsolationRequestSchema>;
|
|
3664
|
+
export type ElevenLabsAudioIsolationParsedRequest = z.output<typeof ElevenLabsAudioIsolationRequestSchema>;
|
|
3665
|
+
export type ElevenLabsTextToDialogueV3Request = z.input<typeof ElevenLabsTextToDialogueV3RequestSchema>;
|
|
3666
|
+
export type ElevenLabsTextToDialogueV3ParsedRequest = z.output<typeof ElevenLabsTextToDialogueV3RequestSchema>;
|
|
3667
|
+
export type ElevenLabsTextToSpeechMultilingualV2Request = z.input<typeof ElevenLabsTextToSpeechMultilingualV2RequestSchema>;
|
|
3668
|
+
export type ElevenLabsTextToSpeechMultilingualV2ParsedRequest = z.output<typeof ElevenLabsTextToSpeechMultilingualV2RequestSchema>;
|
|
3669
|
+
export type ElevenLabsTextToSpeechTurbo25Request = z.input<typeof ElevenLabsTextToSpeechTurbo25RequestSchema>;
|
|
3670
|
+
export type ElevenLabsTextToSpeechTurbo25ParsedRequest = z.output<typeof ElevenLabsTextToSpeechTurbo25RequestSchema>;
|
|
3671
|
+
export type ElevenLabsSoundEffectV2Request = z.input<typeof ElevenLabsSoundEffectV2RequestSchema>;
|
|
3672
|
+
export type ElevenLabsSoundEffectV2ParsedRequest = z.output<typeof ElevenLabsSoundEffectV2RequestSchema>;
|
|
3147
3673
|
export type Wan27TaskResultJson = z.infer<typeof Wan27TaskResultJsonSchema>;
|
|
3148
3674
|
export type Wan27VideoResult = z.infer<typeof Wan27VideoResultSchema>;
|
|
3149
3675
|
export type Wan27ImageResult = z.infer<typeof Wan27ImageResultSchema>;
|
|
3150
|
-
export type
|
|
3151
|
-
export type
|
|
3152
|
-
export type
|
|
3153
|
-
export type
|
|
3154
|
-
export type
|
|
3676
|
+
export type Seedance2MiniTaskResultJson = z.infer<typeof Seedance2MiniTaskResultJsonSchema>;
|
|
3677
|
+
export type Seedance2MiniRecordInfoData = z.infer<typeof Seedance2MiniRecordInfoDataSchema>;
|
|
3678
|
+
export type Seedance2MiniRecordInfoResponse = z.infer<typeof Seedance2MiniRecordInfoResponseSchema>;
|
|
3679
|
+
export type RecordInfoRequest = z.input<typeof RecordInfoRequestSchema>;
|
|
3680
|
+
export type TaskResponseParsed = z.output<typeof TaskResponseSchema>;
|
|
3681
|
+
export type UploadMediaRequest = z.input<typeof UploadMediaRequestSchema>;
|
|
3682
|
+
export type UploadMediaParsedRequest = z.output<typeof UploadMediaRequestSchema>;
|
|
3683
|
+
export type FileUrlUploadRequest = z.input<typeof FileUrlUploadRequestSchema>;
|
|
3684
|
+
export type FileUrlUploadParsedRequest = z.output<typeof FileUrlUploadRequestSchema>;
|
|
3685
|
+
export type FileBase64UploadRequest = z.input<typeof FileBase64UploadRequestSchema>;
|
|
3686
|
+
export type FileBase64UploadParsedRequest = z.output<typeof FileBase64UploadRequestSchema>;
|
|
3687
|
+
export type DownloadUrlRequest = z.input<typeof DownloadUrlRequestSchema>;
|
|
3688
|
+
export type DownloadUrlParsedRequest = z.output<typeof DownloadUrlRequestSchema>;
|
|
3689
|
+
export type GeminiOmniAudioCreateRequest = z.input<typeof GeminiOmniAudioCreateRequestSchema>;
|
|
3690
|
+
export type GeminiOmniAudioCreateParsedRequest = z.output<typeof GeminiOmniAudioCreateRequestSchema>;
|
|
3155
3691
|
export type KieOptions = z.infer<typeof KieOptionsSchema>;
|
|
3156
|
-
export type MediaGenerationRequest = z.
|
|
3692
|
+
export type MediaGenerationRequest = z.input<typeof MediaGenerationRequestSchema>;
|
|
3693
|
+
export type MediaGenerationParsedRequest = z.output<typeof MediaGenerationRequestSchema>;
|
|
3157
3694
|
//# sourceMappingURL=zod.d.ts.map
|