@apicity/kie 0.5.4 → 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 +103 -0
- 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 +306 -36
- 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 +611 -128
- package/dist/src/zod.d.ts.map +1 -1
- package/dist/src/zod.js +206 -28
- package/dist/src/zod.js.map +1 -1
- package/package.json +1 -1
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,9 @@ 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";
|
|
36
40
|
"omnihuman-1-5": "omnihuman-1-5";
|
|
37
41
|
"volcengine/video-to-video-lip-sync": "volcengine/video-to-video-lip-sync";
|
|
38
42
|
"elevenlabs/audio-isolation": "elevenlabs/audio-isolation";
|
|
@@ -83,11 +87,37 @@ export declare const KlingV3TurboAspectRatioSchema: z.ZodEnum<{
|
|
|
83
87
|
"1:1": "1:1";
|
|
84
88
|
}>;
|
|
85
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
|
+
}>;
|
|
86
100
|
export declare const GrokImagineModeSchema: z.ZodEnum<{
|
|
87
101
|
fun: "fun";
|
|
88
102
|
normal: "normal";
|
|
89
103
|
spicy: "spicy";
|
|
90
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;
|
|
91
121
|
export declare const GrokImagineDurationSchema: z.ZodEnum<{
|
|
92
122
|
6: "6";
|
|
93
123
|
10: "10";
|
|
@@ -101,11 +131,11 @@ export declare const GrokVideo15AspectRatioSchema: z.ZodEnum<{
|
|
|
101
131
|
"16:9": "16:9";
|
|
102
132
|
"9:16": "9:16";
|
|
103
133
|
"1:1": "1:1";
|
|
134
|
+
"2:3": "2:3";
|
|
135
|
+
"3:2": "3:2";
|
|
104
136
|
auto: "auto";
|
|
105
137
|
"4:3": "4:3";
|
|
106
138
|
"3:4": "3:4";
|
|
107
|
-
"3:2": "3:2";
|
|
108
|
-
"2:3": "2:3";
|
|
109
139
|
}>;
|
|
110
140
|
export declare const NanoBananaResolutionSchema: z.ZodEnum<{
|
|
111
141
|
"4K": "4K";
|
|
@@ -163,6 +193,9 @@ export declare const Wan27ImageAspectRatioSchema: z.ZodEnum<{
|
|
|
163
193
|
"8:1": "8:1";
|
|
164
194
|
"1:8": "1:8";
|
|
165
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>;
|
|
166
199
|
export declare const HappyHorseResolutionSchema: z.ZodEnum<{
|
|
167
200
|
"720p": "720p";
|
|
168
201
|
"1080p": "1080p";
|
|
@@ -174,10 +207,24 @@ export declare const HappyHorseAspectRatioSchema: z.ZodEnum<{
|
|
|
174
207
|
"4:3": "4:3";
|
|
175
208
|
"3:4": "3:4";
|
|
176
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
|
+
}>;
|
|
177
221
|
export declare const HappyHorseAudioSettingSchema: z.ZodEnum<{
|
|
178
222
|
auto: "auto";
|
|
179
223
|
origin: "origin";
|
|
180
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;
|
|
181
228
|
export declare const Omnihuman15OutputResolutionSchema: z.ZodEnum<{
|
|
182
229
|
720: "720";
|
|
183
230
|
1080: "1080";
|
|
@@ -186,6 +233,24 @@ export declare const VolcengineVideoToVideoLipSyncModeSchema: z.ZodEnum<{
|
|
|
186
233
|
lite: "lite";
|
|
187
234
|
basic: "basic";
|
|
188
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
|
+
}>;
|
|
189
254
|
export declare const KlingElementSchema: z.ZodObject<{
|
|
190
255
|
name: z.ZodString;
|
|
191
256
|
description: z.ZodString;
|
|
@@ -305,8 +370,8 @@ export declare const GrokTextToImageRequestSchema: z.ZodObject<{
|
|
|
305
370
|
"16:9": "16:9";
|
|
306
371
|
"9:16": "9:16";
|
|
307
372
|
"1:1": "1:1";
|
|
308
|
-
"3:2": "3:2";
|
|
309
373
|
"2:3": "2:3";
|
|
374
|
+
"3:2": "3:2";
|
|
310
375
|
}>>;
|
|
311
376
|
nsfw_checker: z.ZodDefault<z.ZodBoolean>;
|
|
312
377
|
enable_pro: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -351,10 +416,10 @@ export declare const Qwen2ImageEditRequestSchema: z.ZodObject<{
|
|
|
351
416
|
"16:9": "16:9";
|
|
352
417
|
"9:16": "9:16";
|
|
353
418
|
"1:1": "1:1";
|
|
419
|
+
"2:3": "2:3";
|
|
420
|
+
"3:2": "3:2";
|
|
354
421
|
"4:3": "4:3";
|
|
355
422
|
"3:4": "3:4";
|
|
356
|
-
"3:2": "3:2";
|
|
357
|
-
"2:3": "2:3";
|
|
358
423
|
"21:9": "21:9";
|
|
359
424
|
}>>;
|
|
360
425
|
output_format: z.ZodDefault<z.ZodEnum<{
|
|
@@ -383,8 +448,8 @@ export declare const GrokTextToVideoRequestSchema: z.ZodObject<{
|
|
|
383
448
|
"16:9": "16:9";
|
|
384
449
|
"9:16": "9:16";
|
|
385
450
|
"1:1": "1:1";
|
|
386
|
-
"3:2": "3:2";
|
|
387
451
|
"2:3": "2:3";
|
|
452
|
+
"3:2": "3:2";
|
|
388
453
|
}>>;
|
|
389
454
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
390
455
|
fun: "fun";
|
|
@@ -399,7 +464,6 @@ export declare const GrokTextToVideoRequestSchema: z.ZodObject<{
|
|
|
399
464
|
nsfw_checker: z.ZodDefault<z.ZodBoolean>;
|
|
400
465
|
}, z.core.$strip>;
|
|
401
466
|
}, z.core.$strip>;
|
|
402
|
-
export declare const GrokImageToVideoDurationSchema: z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>;
|
|
403
467
|
export declare const GrokImageToVideoRequestSchema: z.ZodObject<{
|
|
404
468
|
model: z.ZodLiteral<"grok-imagine/image-to-video">;
|
|
405
469
|
callBackUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -413,7 +477,7 @@ export declare const GrokImageToVideoRequestSchema: z.ZodObject<{
|
|
|
413
477
|
normal: "normal";
|
|
414
478
|
spicy: "spicy";
|
|
415
479
|
}>>;
|
|
416
|
-
duration: z.ZodDefault<z.
|
|
480
|
+
duration: z.ZodDefault<z.ZodNumber>;
|
|
417
481
|
resolution: z.ZodDefault<z.ZodEnum<{
|
|
418
482
|
"720p": "720p";
|
|
419
483
|
"480p": "480p";
|
|
@@ -422,8 +486,8 @@ export declare const GrokImageToVideoRequestSchema: z.ZodObject<{
|
|
|
422
486
|
"16:9": "16:9";
|
|
423
487
|
"9:16": "9:16";
|
|
424
488
|
"1:1": "1:1";
|
|
425
|
-
"3:2": "3:2";
|
|
426
489
|
"2:3": "2:3";
|
|
490
|
+
"3:2": "3:2";
|
|
427
491
|
}>>;
|
|
428
492
|
nsfw_checker: z.ZodDefault<z.ZodBoolean>;
|
|
429
493
|
}, z.core.$strip>;
|
|
@@ -438,11 +502,11 @@ export declare const GrokVideo15PreviewRequestSchema: z.ZodObject<{
|
|
|
438
502
|
"16:9": "16:9";
|
|
439
503
|
"9:16": "9:16";
|
|
440
504
|
"1:1": "1:1";
|
|
505
|
+
"2:3": "2:3";
|
|
506
|
+
"3:2": "3:2";
|
|
441
507
|
auto: "auto";
|
|
442
508
|
"4:3": "4:3";
|
|
443
509
|
"3:4": "3:4";
|
|
444
|
-
"3:2": "3:2";
|
|
445
|
-
"2:3": "2:3";
|
|
446
510
|
}>>;
|
|
447
511
|
resolution: z.ZodDefault<z.ZodEnum<{
|
|
448
512
|
"720p": "720p";
|
|
@@ -482,11 +546,11 @@ export declare const NanoBananaProRequestSchema: z.ZodObject<{
|
|
|
482
546
|
"16:9": "16:9";
|
|
483
547
|
"9:16": "9:16";
|
|
484
548
|
"1:1": "1:1";
|
|
549
|
+
"2:3": "2:3";
|
|
550
|
+
"3:2": "3:2";
|
|
485
551
|
auto: "auto";
|
|
486
552
|
"4:3": "4:3";
|
|
487
553
|
"3:4": "3:4";
|
|
488
|
-
"3:2": "3:2";
|
|
489
|
-
"2:3": "2:3";
|
|
490
554
|
"21:9": "21:9";
|
|
491
555
|
"4:5": "4:5";
|
|
492
556
|
"5:4": "5:4";
|
|
@@ -616,6 +680,56 @@ export declare const Seedance2RequestSchema: z.ZodObject<{
|
|
|
616
680
|
nsfw_checker: z.ZodDefault<z.ZodBoolean>;
|
|
617
681
|
}, z.core.$strip>;
|
|
618
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>;
|
|
619
733
|
export declare const NanoBanana2RequestSchema: z.ZodObject<{
|
|
620
734
|
model: z.ZodLiteral<"nano-banana-2">;
|
|
621
735
|
callBackUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -626,11 +740,11 @@ export declare const NanoBanana2RequestSchema: z.ZodObject<{
|
|
|
626
740
|
"16:9": "16:9";
|
|
627
741
|
"9:16": "9:16";
|
|
628
742
|
"1:1": "1:1";
|
|
743
|
+
"2:3": "2:3";
|
|
744
|
+
"3:2": "3:2";
|
|
629
745
|
auto: "auto";
|
|
630
746
|
"4:3": "4:3";
|
|
631
747
|
"3:4": "3:4";
|
|
632
|
-
"3:2": "3:2";
|
|
633
|
-
"2:3": "2:3";
|
|
634
748
|
"21:9": "21:9";
|
|
635
749
|
"8:1": "8:1";
|
|
636
750
|
"1:8": "1:8";
|
|
@@ -659,8 +773,8 @@ export declare const GptImageToImageRequestSchema: z.ZodObject<{
|
|
|
659
773
|
prompt: z.ZodString;
|
|
660
774
|
aspect_ratio: z.ZodOptional<z.ZodEnum<{
|
|
661
775
|
"1:1": "1:1";
|
|
662
|
-
"3:2": "3:2";
|
|
663
776
|
"2:3": "2:3";
|
|
777
|
+
"3:2": "3:2";
|
|
664
778
|
}>>;
|
|
665
779
|
quality: z.ZodOptional<z.ZodEnum<{
|
|
666
780
|
medium: "medium";
|
|
@@ -672,11 +786,11 @@ export declare const GptImage2ImageToImageAspectRatioSchema: z.ZodEnum<{
|
|
|
672
786
|
"16:9": "16:9";
|
|
673
787
|
"9:16": "9:16";
|
|
674
788
|
"1:1": "1:1";
|
|
789
|
+
"2:3": "2:3";
|
|
790
|
+
"3:2": "3:2";
|
|
675
791
|
auto: "auto";
|
|
676
792
|
"4:3": "4:3";
|
|
677
793
|
"3:4": "3:4";
|
|
678
|
-
"3:2": "3:2";
|
|
679
|
-
"2:3": "2:3";
|
|
680
794
|
"21:9": "21:9";
|
|
681
795
|
"4:5": "4:5";
|
|
682
796
|
"5:4": "5:4";
|
|
@@ -696,11 +810,11 @@ export declare const GptImage2ImageToImageRequestSchema: z.ZodObject<{
|
|
|
696
810
|
"16:9": "16:9";
|
|
697
811
|
"9:16": "9:16";
|
|
698
812
|
"1:1": "1:1";
|
|
813
|
+
"2:3": "2:3";
|
|
814
|
+
"3:2": "3:2";
|
|
699
815
|
auto: "auto";
|
|
700
816
|
"4:3": "4:3";
|
|
701
817
|
"3:4": "3:4";
|
|
702
|
-
"3:2": "3:2";
|
|
703
|
-
"2:3": "2:3";
|
|
704
818
|
"21:9": "21:9";
|
|
705
819
|
"4:5": "4:5";
|
|
706
820
|
"5:4": "5:4";
|
|
@@ -717,19 +831,19 @@ export declare const GptImage2TextToImageAspectRatioSchema: z.ZodEnum<{
|
|
|
717
831
|
"16:9": "16:9";
|
|
718
832
|
"9:16": "9:16";
|
|
719
833
|
"1:1": "1:1";
|
|
834
|
+
"2:3": "2:3";
|
|
835
|
+
"3:2": "3:2";
|
|
720
836
|
auto: "auto";
|
|
721
837
|
"4:3": "4:3";
|
|
722
838
|
"3:4": "3:4";
|
|
723
|
-
"3:2": "3:2";
|
|
724
|
-
"2:3": "2:3";
|
|
725
839
|
"21:9": "21:9";
|
|
726
840
|
"4:5": "4:5";
|
|
727
841
|
"5:4": "5:4";
|
|
842
|
+
"9:21": "9:21";
|
|
728
843
|
"2:1": "2:1";
|
|
729
844
|
"1:2": "1:2";
|
|
730
845
|
"3:1": "3:1";
|
|
731
846
|
"1:3": "1:3";
|
|
732
|
-
"9:21": "9:21";
|
|
733
847
|
}>;
|
|
734
848
|
export declare const GptImage2TextToImageResolutionSchema: z.ZodEnum<{
|
|
735
849
|
"4K": "4K";
|
|
@@ -745,19 +859,19 @@ export declare const GptImage2TextToImageRequestSchema: z.ZodObject<{
|
|
|
745
859
|
"16:9": "16:9";
|
|
746
860
|
"9:16": "9:16";
|
|
747
861
|
"1:1": "1:1";
|
|
862
|
+
"2:3": "2:3";
|
|
863
|
+
"3:2": "3:2";
|
|
748
864
|
auto: "auto";
|
|
749
865
|
"4:3": "4:3";
|
|
750
866
|
"3:4": "3:4";
|
|
751
|
-
"3:2": "3:2";
|
|
752
|
-
"2:3": "2:3";
|
|
753
867
|
"21:9": "21:9";
|
|
754
868
|
"4:5": "4:5";
|
|
755
869
|
"5:4": "5:4";
|
|
870
|
+
"9:21": "9:21";
|
|
756
871
|
"2:1": "2:1";
|
|
757
872
|
"1:2": "1:2";
|
|
758
873
|
"3:1": "3:1";
|
|
759
874
|
"1:3": "1:3";
|
|
760
|
-
"9:21": "9:21";
|
|
761
875
|
}>>;
|
|
762
876
|
resolution: z.ZodDefault<z.ZodEnum<{
|
|
763
877
|
"4K": "4K";
|
|
@@ -777,10 +891,10 @@ export declare const SeedreamImageToImageRequestSchema: z.ZodObject<{
|
|
|
777
891
|
"16:9": "16:9";
|
|
778
892
|
"9:16": "9:16";
|
|
779
893
|
"1:1": "1:1";
|
|
894
|
+
"2:3": "2:3";
|
|
895
|
+
"3:2": "3:2";
|
|
780
896
|
"4:3": "4:3";
|
|
781
897
|
"3:4": "3:4";
|
|
782
|
-
"3:2": "3:2";
|
|
783
|
-
"2:3": "2:3";
|
|
784
898
|
"21:9": "21:9";
|
|
785
899
|
}>>;
|
|
786
900
|
quality: z.ZodEnum<{
|
|
@@ -799,10 +913,10 @@ export declare const SeedreamTextToImageRequestSchema: z.ZodObject<{
|
|
|
799
913
|
"16:9": "16:9";
|
|
800
914
|
"9:16": "9:16";
|
|
801
915
|
"1:1": "1:1";
|
|
916
|
+
"2:3": "2:3";
|
|
917
|
+
"3:2": "3:2";
|
|
802
918
|
"4:3": "4:3";
|
|
803
919
|
"3:4": "3:4";
|
|
804
|
-
"3:2": "3:2";
|
|
805
|
-
"2:3": "2:3";
|
|
806
920
|
"21:9": "21:9";
|
|
807
921
|
}>>;
|
|
808
922
|
quality: z.ZodEnum<{
|
|
@@ -896,6 +1010,79 @@ export declare const HappyHorseVideoEditRequestSchema: z.ZodObject<{
|
|
|
896
1010
|
seed: z.ZodOptional<z.ZodNumber>;
|
|
897
1011
|
}, z.core.$strip>;
|
|
898
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>]>;
|
|
899
1086
|
export declare const Omnihuman15RequestSchema: z.ZodObject<{
|
|
900
1087
|
model: z.ZodLiteral<"omnihuman-1-5">;
|
|
901
1088
|
callBackUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -1082,7 +1269,7 @@ export declare const Wan27VideoEditRequestSchema: z.ZodObject<{
|
|
|
1082
1269
|
"4:3": "4:3";
|
|
1083
1270
|
"3:4": "3:4";
|
|
1084
1271
|
}>>;
|
|
1085
|
-
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>>>;
|
|
1086
1273
|
audio_setting: z.ZodOptional<z.ZodEnum<{
|
|
1087
1274
|
auto: "auto";
|
|
1088
1275
|
origin: "origin";
|
|
@@ -1203,6 +1390,56 @@ export declare const Wan27ImageResultSchema: z.ZodObject<{
|
|
|
1203
1390
|
resultUrls: z.ZodArray<z.ZodString>;
|
|
1204
1391
|
resultObject: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1205
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>;
|
|
1206
1443
|
export declare const UploadMediaRequestSchema: z.ZodObject<{
|
|
1207
1444
|
file: z.ZodCustom<Blob, Blob>;
|
|
1208
1445
|
filename: z.ZodString;
|
|
@@ -1269,8 +1506,10 @@ export declare const VeoExtendRequestSchema: z.ZodObject<{
|
|
|
1269
1506
|
seeds: z.ZodOptional<z.ZodNumber>;
|
|
1270
1507
|
watermark: z.ZodOptional<z.ZodString>;
|
|
1271
1508
|
}, z.core.$strip>;
|
|
1272
|
-
export type VeoGenerateRequest = z.
|
|
1273
|
-
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>;
|
|
1274
1513
|
export type VeoModel = "veo3" | "veo3_fast";
|
|
1275
1514
|
export type VeoGenerationType = "TEXT_2_VIDEO" | "REFERENCE_2_VIDEO" | "FIRST_AND_LAST_FRAMES_2_VIDEO";
|
|
1276
1515
|
export declare const SunoGenerateRequestSchema: z.ZodObject<{
|
|
@@ -1299,7 +1538,8 @@ export declare const SunoGenerateRequestSchema: z.ZodObject<{
|
|
|
1299
1538
|
audioWeight: z.ZodOptional<z.ZodNumber>;
|
|
1300
1539
|
personaId: z.ZodOptional<z.ZodString>;
|
|
1301
1540
|
}, z.core.$strip>;
|
|
1302
|
-
export type SunoGenerateRequest = z.
|
|
1541
|
+
export type SunoGenerateRequest = z.input<typeof SunoGenerateRequestSchema>;
|
|
1542
|
+
export type SunoGenerateParsedRequest = z.output<typeof SunoGenerateRequestSchema>;
|
|
1303
1543
|
export type SunoModel = "V3_5" | "V4" | "V4_5" | "V4_5PLUS" | "V4_5ALL" | "V5" | "V5_5";
|
|
1304
1544
|
export declare const KieChatContentPartSchema: z.ZodObject<{
|
|
1305
1545
|
type: z.ZodEnum<{
|
|
@@ -1361,7 +1601,8 @@ export declare const KieChatRequestSchema: z.ZodObject<{
|
|
|
1361
1601
|
}, z.core.$strip>;
|
|
1362
1602
|
export type KieChatContentPart = z.infer<typeof KieChatContentPartSchema>;
|
|
1363
1603
|
export type KieChatMessage = z.infer<typeof KieChatMessageSchema>;
|
|
1364
|
-
export type KieChatRequest = z.
|
|
1604
|
+
export type KieChatRequest = z.input<typeof KieChatRequestSchema>;
|
|
1605
|
+
export type KieChatParsedRequest = z.output<typeof KieChatRequestSchema>;
|
|
1365
1606
|
export declare const KieClaudeToolInputSchemaSchema: z.ZodObject<{
|
|
1366
1607
|
type: z.ZodString;
|
|
1367
1608
|
properties: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -1421,7 +1662,8 @@ export type KieClaudeToolInputSchema = z.infer<typeof KieClaudeToolInputSchemaSc
|
|
|
1421
1662
|
export type KieClaudeTool = z.infer<typeof KieClaudeToolSchema>;
|
|
1422
1663
|
export type KieClaudeContentPart = z.infer<typeof KieClaudeContentPartSchema>;
|
|
1423
1664
|
export type KieClaudeMessage = z.infer<typeof KieClaudeMessageSchema>;
|
|
1424
|
-
export type KieClaudeRequest = z.
|
|
1665
|
+
export type KieClaudeRequest = z.input<typeof KieClaudeRequestSchema>;
|
|
1666
|
+
export type KieClaudeParsedRequest = z.output<typeof KieClaudeRequestSchema>;
|
|
1425
1667
|
export declare const MediaGenerationRequestSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
1426
1668
|
model: z.ZodLiteral<"kling-3.0/video">;
|
|
1427
1669
|
callBackUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -1523,8 +1765,8 @@ export declare const MediaGenerationRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
1523
1765
|
"16:9": "16:9";
|
|
1524
1766
|
"9:16": "9:16";
|
|
1525
1767
|
"1:1": "1:1";
|
|
1526
|
-
"3:2": "3:2";
|
|
1527
1768
|
"2:3": "2:3";
|
|
1769
|
+
"3:2": "3:2";
|
|
1528
1770
|
}>>;
|
|
1529
1771
|
nsfw_checker: z.ZodDefault<z.ZodBoolean>;
|
|
1530
1772
|
enable_pro: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1546,8 +1788,8 @@ export declare const MediaGenerationRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
1546
1788
|
"16:9": "16:9";
|
|
1547
1789
|
"9:16": "9:16";
|
|
1548
1790
|
"1:1": "1:1";
|
|
1549
|
-
"3:2": "3:2";
|
|
1550
1791
|
"2:3": "2:3";
|
|
1792
|
+
"3:2": "3:2";
|
|
1551
1793
|
}>>;
|
|
1552
1794
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
1553
1795
|
fun: "fun";
|
|
@@ -1574,7 +1816,7 @@ export declare const MediaGenerationRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
1574
1816
|
normal: "normal";
|
|
1575
1817
|
spicy: "spicy";
|
|
1576
1818
|
}>>;
|
|
1577
|
-
duration: z.ZodDefault<z.
|
|
1819
|
+
duration: z.ZodDefault<z.ZodNumber>;
|
|
1578
1820
|
resolution: z.ZodDefault<z.ZodEnum<{
|
|
1579
1821
|
"720p": "720p";
|
|
1580
1822
|
"480p": "480p";
|
|
@@ -1583,8 +1825,8 @@ export declare const MediaGenerationRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
1583
1825
|
"16:9": "16:9";
|
|
1584
1826
|
"9:16": "9:16";
|
|
1585
1827
|
"1:1": "1:1";
|
|
1586
|
-
"3:2": "3:2";
|
|
1587
1828
|
"2:3": "2:3";
|
|
1829
|
+
"3:2": "3:2";
|
|
1588
1830
|
}>>;
|
|
1589
1831
|
nsfw_checker: z.ZodDefault<z.ZodBoolean>;
|
|
1590
1832
|
}, z.core.$strip>;
|
|
@@ -1598,11 +1840,11 @@ export declare const MediaGenerationRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
1598
1840
|
"16:9": "16:9";
|
|
1599
1841
|
"9:16": "9:16";
|
|
1600
1842
|
"1:1": "1:1";
|
|
1843
|
+
"2:3": "2:3";
|
|
1844
|
+
"3:2": "3:2";
|
|
1601
1845
|
auto: "auto";
|
|
1602
1846
|
"4:3": "4:3";
|
|
1603
1847
|
"3:4": "3:4";
|
|
1604
|
-
"3:2": "3:2";
|
|
1605
|
-
"2:3": "2:3";
|
|
1606
1848
|
}>>;
|
|
1607
1849
|
resolution: z.ZodDefault<z.ZodEnum<{
|
|
1608
1850
|
"720p": "720p";
|
|
@@ -1639,11 +1881,11 @@ export declare const MediaGenerationRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
1639
1881
|
"16:9": "16:9";
|
|
1640
1882
|
"9:16": "9:16";
|
|
1641
1883
|
"1:1": "1:1";
|
|
1884
|
+
"2:3": "2:3";
|
|
1885
|
+
"3:2": "3:2";
|
|
1642
1886
|
auto: "auto";
|
|
1643
1887
|
"4:3": "4:3";
|
|
1644
1888
|
"3:4": "3:4";
|
|
1645
|
-
"3:2": "3:2";
|
|
1646
|
-
"2:3": "2:3";
|
|
1647
1889
|
"21:9": "21:9";
|
|
1648
1890
|
"4:5": "4:5";
|
|
1649
1891
|
"5:4": "5:4";
|
|
@@ -1668,11 +1910,11 @@ export declare const MediaGenerationRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
1668
1910
|
"16:9": "16:9";
|
|
1669
1911
|
"9:16": "9:16";
|
|
1670
1912
|
"1:1": "1:1";
|
|
1913
|
+
"2:3": "2:3";
|
|
1914
|
+
"3:2": "3:2";
|
|
1671
1915
|
auto: "auto";
|
|
1672
1916
|
"4:3": "4:3";
|
|
1673
1917
|
"3:4": "3:4";
|
|
1674
|
-
"3:2": "3:2";
|
|
1675
|
-
"2:3": "2:3";
|
|
1676
1918
|
"21:9": "21:9";
|
|
1677
1919
|
"8:1": "8:1";
|
|
1678
1920
|
"1:8": "1:8";
|
|
@@ -1700,8 +1942,8 @@ export declare const MediaGenerationRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
1700
1942
|
prompt: z.ZodString;
|
|
1701
1943
|
aspect_ratio: z.ZodOptional<z.ZodEnum<{
|
|
1702
1944
|
"1:1": "1:1";
|
|
1703
|
-
"3:2": "3:2";
|
|
1704
1945
|
"2:3": "2:3";
|
|
1946
|
+
"3:2": "3:2";
|
|
1705
1947
|
}>>;
|
|
1706
1948
|
quality: z.ZodOptional<z.ZodEnum<{
|
|
1707
1949
|
medium: "medium";
|
|
@@ -1718,11 +1960,11 @@ export declare const MediaGenerationRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
1718
1960
|
"16:9": "16:9";
|
|
1719
1961
|
"9:16": "9:16";
|
|
1720
1962
|
"1:1": "1:1";
|
|
1963
|
+
"2:3": "2:3";
|
|
1964
|
+
"3:2": "3:2";
|
|
1721
1965
|
auto: "auto";
|
|
1722
1966
|
"4:3": "4:3";
|
|
1723
1967
|
"3:4": "3:4";
|
|
1724
|
-
"3:2": "3:2";
|
|
1725
|
-
"2:3": "2:3";
|
|
1726
1968
|
"21:9": "21:9";
|
|
1727
1969
|
"4:5": "4:5";
|
|
1728
1970
|
"5:4": "5:4";
|
|
@@ -1743,19 +1985,19 @@ export declare const MediaGenerationRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
1743
1985
|
"16:9": "16:9";
|
|
1744
1986
|
"9:16": "9:16";
|
|
1745
1987
|
"1:1": "1:1";
|
|
1988
|
+
"2:3": "2:3";
|
|
1989
|
+
"3:2": "3:2";
|
|
1746
1990
|
auto: "auto";
|
|
1747
1991
|
"4:3": "4:3";
|
|
1748
1992
|
"3:4": "3:4";
|
|
1749
|
-
"3:2": "3:2";
|
|
1750
|
-
"2:3": "2:3";
|
|
1751
1993
|
"21:9": "21:9";
|
|
1752
1994
|
"4:5": "4:5";
|
|
1753
1995
|
"5:4": "5:4";
|
|
1996
|
+
"9:21": "9:21";
|
|
1754
1997
|
"2:1": "2:1";
|
|
1755
1998
|
"1:2": "1:2";
|
|
1756
1999
|
"3:1": "3:1";
|
|
1757
2000
|
"1:3": "1:3";
|
|
1758
|
-
"9:21": "9:21";
|
|
1759
2001
|
}>>;
|
|
1760
2002
|
resolution: z.ZodDefault<z.ZodEnum<{
|
|
1761
2003
|
"4K": "4K";
|
|
@@ -1774,10 +2016,10 @@ export declare const MediaGenerationRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
1774
2016
|
"16:9": "16:9";
|
|
1775
2017
|
"9:16": "9:16";
|
|
1776
2018
|
"1:1": "1:1";
|
|
2019
|
+
"2:3": "2:3";
|
|
2020
|
+
"3:2": "3:2";
|
|
1777
2021
|
"4:3": "4:3";
|
|
1778
2022
|
"3:4": "3:4";
|
|
1779
|
-
"3:2": "3:2";
|
|
1780
|
-
"2:3": "2:3";
|
|
1781
2023
|
"21:9": "21:9";
|
|
1782
2024
|
}>>;
|
|
1783
2025
|
quality: z.ZodEnum<{
|
|
@@ -1795,10 +2037,10 @@ export declare const MediaGenerationRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
1795
2037
|
"16:9": "16:9";
|
|
1796
2038
|
"9:16": "9:16";
|
|
1797
2039
|
"1:1": "1:1";
|
|
2040
|
+
"2:3": "2:3";
|
|
2041
|
+
"3:2": "3:2";
|
|
1798
2042
|
"4:3": "4:3";
|
|
1799
2043
|
"3:4": "3:4";
|
|
1800
|
-
"3:2": "3:2";
|
|
1801
|
-
"2:3": "2:3";
|
|
1802
2044
|
"21:9": "21:9";
|
|
1803
2045
|
}>>;
|
|
1804
2046
|
quality: z.ZodEnum<{
|
|
@@ -1845,10 +2087,10 @@ export declare const MediaGenerationRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
1845
2087
|
"16:9": "16:9";
|
|
1846
2088
|
"9:16": "9:16";
|
|
1847
2089
|
"1:1": "1:1";
|
|
2090
|
+
"2:3": "2:3";
|
|
2091
|
+
"3:2": "3:2";
|
|
1848
2092
|
"4:3": "4:3";
|
|
1849
2093
|
"3:4": "3:4";
|
|
1850
|
-
"3:2": "3:2";
|
|
1851
|
-
"2:3": "2:3";
|
|
1852
2094
|
"21:9": "21:9";
|
|
1853
2095
|
}>>;
|
|
1854
2096
|
output_format: z.ZodDefault<z.ZodEnum<{
|
|
@@ -1917,6 +2159,32 @@ export declare const MediaGenerationRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
1917
2159
|
web_search: z.ZodOptional<z.ZodBoolean>;
|
|
1918
2160
|
nsfw_checker: z.ZodDefault<z.ZodBoolean>;
|
|
1919
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>;
|
|
1920
2188
|
}, z.core.$strip>, z.ZodObject<{
|
|
1921
2189
|
model: z.ZodLiteral<"wan/2-7-image-to-video">;
|
|
1922
2190
|
callBackUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -2007,7 +2275,7 @@ export declare const MediaGenerationRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
2007
2275
|
"4:3": "4:3";
|
|
2008
2276
|
"3:4": "3:4";
|
|
2009
2277
|
}>>;
|
|
2010
|
-
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>>>;
|
|
2011
2279
|
audio_setting: z.ZodOptional<z.ZodEnum<{
|
|
2012
2280
|
auto: "auto";
|
|
2013
2281
|
origin: "origin";
|
|
@@ -2152,6 +2420,63 @@ export declare const MediaGenerationRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
2152
2420
|
}>>;
|
|
2153
2421
|
seed: z.ZodOptional<z.ZodNumber>;
|
|
2154
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>;
|
|
2155
2480
|
}, z.core.$strip>, z.ZodObject<{
|
|
2156
2481
|
model: z.ZodLiteral<"omnihuman-1-5">;
|
|
2157
2482
|
callBackUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -2273,6 +2598,7 @@ export declare const CreateTaskRequestSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2273
2598
|
"qwen2/image-edit": "qwen2/image-edit";
|
|
2274
2599
|
"bytedance/seedance-2-fast": "bytedance/seedance-2-fast";
|
|
2275
2600
|
"bytedance/seedance-2": "bytedance/seedance-2";
|
|
2601
|
+
"bytedance/seedance-2-mini": "bytedance/seedance-2-mini";
|
|
2276
2602
|
"wan/2-7-image-to-video": "wan/2-7-image-to-video";
|
|
2277
2603
|
"wan/2-7-text-to-video": "wan/2-7-text-to-video";
|
|
2278
2604
|
"wan/2-7-r2v": "wan/2-7-r2v";
|
|
@@ -2283,6 +2609,9 @@ export declare const CreateTaskRequestSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2283
2609
|
"happyhorse/image-to-video": "happyhorse/image-to-video";
|
|
2284
2610
|
"happyhorse/reference-to-video": "happyhorse/reference-to-video";
|
|
2285
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";
|
|
2286
2615
|
"omnihuman-1-5": "omnihuman-1-5";
|
|
2287
2616
|
"volcengine/video-to-video-lip-sync": "volcengine/video-to-video-lip-sync";
|
|
2288
2617
|
"elevenlabs/audio-isolation": "elevenlabs/audio-isolation";
|
|
@@ -2395,8 +2724,8 @@ export declare const CreateTaskRequestSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2395
2724
|
"16:9": "16:9";
|
|
2396
2725
|
"9:16": "9:16";
|
|
2397
2726
|
"1:1": "1:1";
|
|
2398
|
-
"3:2": "3:2";
|
|
2399
2727
|
"2:3": "2:3";
|
|
2728
|
+
"3:2": "3:2";
|
|
2400
2729
|
}>>;
|
|
2401
2730
|
nsfw_checker: z.ZodDefault<z.ZodBoolean>;
|
|
2402
2731
|
enable_pro: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2418,8 +2747,8 @@ export declare const CreateTaskRequestSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2418
2747
|
"16:9": "16:9";
|
|
2419
2748
|
"9:16": "9:16";
|
|
2420
2749
|
"1:1": "1:1";
|
|
2421
|
-
"3:2": "3:2";
|
|
2422
2750
|
"2:3": "2:3";
|
|
2751
|
+
"3:2": "3:2";
|
|
2423
2752
|
}>>;
|
|
2424
2753
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
2425
2754
|
fun: "fun";
|
|
@@ -2446,7 +2775,7 @@ export declare const CreateTaskRequestSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2446
2775
|
normal: "normal";
|
|
2447
2776
|
spicy: "spicy";
|
|
2448
2777
|
}>>;
|
|
2449
|
-
duration: z.ZodDefault<z.
|
|
2778
|
+
duration: z.ZodDefault<z.ZodNumber>;
|
|
2450
2779
|
resolution: z.ZodDefault<z.ZodEnum<{
|
|
2451
2780
|
"720p": "720p";
|
|
2452
2781
|
"480p": "480p";
|
|
@@ -2455,8 +2784,8 @@ export declare const CreateTaskRequestSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2455
2784
|
"16:9": "16:9";
|
|
2456
2785
|
"9:16": "9:16";
|
|
2457
2786
|
"1:1": "1:1";
|
|
2458
|
-
"3:2": "3:2";
|
|
2459
2787
|
"2:3": "2:3";
|
|
2788
|
+
"3:2": "3:2";
|
|
2460
2789
|
}>>;
|
|
2461
2790
|
nsfw_checker: z.ZodDefault<z.ZodBoolean>;
|
|
2462
2791
|
}, z.core.$strip>;
|
|
@@ -2470,11 +2799,11 @@ export declare const CreateTaskRequestSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2470
2799
|
"16:9": "16:9";
|
|
2471
2800
|
"9:16": "9:16";
|
|
2472
2801
|
"1:1": "1:1";
|
|
2802
|
+
"2:3": "2:3";
|
|
2803
|
+
"3:2": "3:2";
|
|
2473
2804
|
auto: "auto";
|
|
2474
2805
|
"4:3": "4:3";
|
|
2475
2806
|
"3:4": "3:4";
|
|
2476
|
-
"3:2": "3:2";
|
|
2477
|
-
"2:3": "2:3";
|
|
2478
2807
|
}>>;
|
|
2479
2808
|
resolution: z.ZodDefault<z.ZodEnum<{
|
|
2480
2809
|
"720p": "720p";
|
|
@@ -2511,11 +2840,11 @@ export declare const CreateTaskRequestSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2511
2840
|
"16:9": "16:9";
|
|
2512
2841
|
"9:16": "9:16";
|
|
2513
2842
|
"1:1": "1:1";
|
|
2843
|
+
"2:3": "2:3";
|
|
2844
|
+
"3:2": "3:2";
|
|
2514
2845
|
auto: "auto";
|
|
2515
2846
|
"4:3": "4:3";
|
|
2516
2847
|
"3:4": "3:4";
|
|
2517
|
-
"3:2": "3:2";
|
|
2518
|
-
"2:3": "2:3";
|
|
2519
2848
|
"21:9": "21:9";
|
|
2520
2849
|
"4:5": "4:5";
|
|
2521
2850
|
"5:4": "5:4";
|
|
@@ -2540,11 +2869,11 @@ export declare const CreateTaskRequestSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2540
2869
|
"16:9": "16:9";
|
|
2541
2870
|
"9:16": "9:16";
|
|
2542
2871
|
"1:1": "1:1";
|
|
2872
|
+
"2:3": "2:3";
|
|
2873
|
+
"3:2": "3:2";
|
|
2543
2874
|
auto: "auto";
|
|
2544
2875
|
"4:3": "4:3";
|
|
2545
2876
|
"3:4": "3:4";
|
|
2546
|
-
"3:2": "3:2";
|
|
2547
|
-
"2:3": "2:3";
|
|
2548
2877
|
"21:9": "21:9";
|
|
2549
2878
|
"8:1": "8:1";
|
|
2550
2879
|
"1:8": "1:8";
|
|
@@ -2572,8 +2901,8 @@ export declare const CreateTaskRequestSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2572
2901
|
prompt: z.ZodString;
|
|
2573
2902
|
aspect_ratio: z.ZodOptional<z.ZodEnum<{
|
|
2574
2903
|
"1:1": "1:1";
|
|
2575
|
-
"3:2": "3:2";
|
|
2576
2904
|
"2:3": "2:3";
|
|
2905
|
+
"3:2": "3:2";
|
|
2577
2906
|
}>>;
|
|
2578
2907
|
quality: z.ZodOptional<z.ZodEnum<{
|
|
2579
2908
|
medium: "medium";
|
|
@@ -2590,11 +2919,11 @@ export declare const CreateTaskRequestSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2590
2919
|
"16:9": "16:9";
|
|
2591
2920
|
"9:16": "9:16";
|
|
2592
2921
|
"1:1": "1:1";
|
|
2922
|
+
"2:3": "2:3";
|
|
2923
|
+
"3:2": "3:2";
|
|
2593
2924
|
auto: "auto";
|
|
2594
2925
|
"4:3": "4:3";
|
|
2595
2926
|
"3:4": "3:4";
|
|
2596
|
-
"3:2": "3:2";
|
|
2597
|
-
"2:3": "2:3";
|
|
2598
2927
|
"21:9": "21:9";
|
|
2599
2928
|
"4:5": "4:5";
|
|
2600
2929
|
"5:4": "5:4";
|
|
@@ -2615,19 +2944,19 @@ export declare const CreateTaskRequestSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2615
2944
|
"16:9": "16:9";
|
|
2616
2945
|
"9:16": "9:16";
|
|
2617
2946
|
"1:1": "1:1";
|
|
2947
|
+
"2:3": "2:3";
|
|
2948
|
+
"3:2": "3:2";
|
|
2618
2949
|
auto: "auto";
|
|
2619
2950
|
"4:3": "4:3";
|
|
2620
2951
|
"3:4": "3:4";
|
|
2621
|
-
"3:2": "3:2";
|
|
2622
|
-
"2:3": "2:3";
|
|
2623
2952
|
"21:9": "21:9";
|
|
2624
2953
|
"4:5": "4:5";
|
|
2625
2954
|
"5:4": "5:4";
|
|
2955
|
+
"9:21": "9:21";
|
|
2626
2956
|
"2:1": "2:1";
|
|
2627
2957
|
"1:2": "1:2";
|
|
2628
2958
|
"3:1": "3:1";
|
|
2629
2959
|
"1:3": "1:3";
|
|
2630
|
-
"9:21": "9:21";
|
|
2631
2960
|
}>>;
|
|
2632
2961
|
resolution: z.ZodDefault<z.ZodEnum<{
|
|
2633
2962
|
"4K": "4K";
|
|
@@ -2646,10 +2975,10 @@ export declare const CreateTaskRequestSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2646
2975
|
"16:9": "16:9";
|
|
2647
2976
|
"9:16": "9:16";
|
|
2648
2977
|
"1:1": "1:1";
|
|
2978
|
+
"2:3": "2:3";
|
|
2979
|
+
"3:2": "3:2";
|
|
2649
2980
|
"4:3": "4:3";
|
|
2650
2981
|
"3:4": "3:4";
|
|
2651
|
-
"3:2": "3:2";
|
|
2652
|
-
"2:3": "2:3";
|
|
2653
2982
|
"21:9": "21:9";
|
|
2654
2983
|
}>>;
|
|
2655
2984
|
quality: z.ZodEnum<{
|
|
@@ -2667,10 +2996,10 @@ export declare const CreateTaskRequestSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2667
2996
|
"16:9": "16:9";
|
|
2668
2997
|
"9:16": "9:16";
|
|
2669
2998
|
"1:1": "1:1";
|
|
2999
|
+
"2:3": "2:3";
|
|
3000
|
+
"3:2": "3:2";
|
|
2670
3001
|
"4:3": "4:3";
|
|
2671
3002
|
"3:4": "3:4";
|
|
2672
|
-
"3:2": "3:2";
|
|
2673
|
-
"2:3": "2:3";
|
|
2674
3003
|
"21:9": "21:9";
|
|
2675
3004
|
}>>;
|
|
2676
3005
|
quality: z.ZodEnum<{
|
|
@@ -2717,10 +3046,10 @@ export declare const CreateTaskRequestSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2717
3046
|
"16:9": "16:9";
|
|
2718
3047
|
"9:16": "9:16";
|
|
2719
3048
|
"1:1": "1:1";
|
|
3049
|
+
"2:3": "2:3";
|
|
3050
|
+
"3:2": "3:2";
|
|
2720
3051
|
"4:3": "4:3";
|
|
2721
3052
|
"3:4": "3:4";
|
|
2722
|
-
"3:2": "3:2";
|
|
2723
|
-
"2:3": "2:3";
|
|
2724
3053
|
"21:9": "21:9";
|
|
2725
3054
|
}>>;
|
|
2726
3055
|
output_format: z.ZodDefault<z.ZodEnum<{
|
|
@@ -2789,6 +3118,32 @@ export declare const CreateTaskRequestSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2789
3118
|
web_search: z.ZodOptional<z.ZodBoolean>;
|
|
2790
3119
|
nsfw_checker: z.ZodDefault<z.ZodBoolean>;
|
|
2791
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>;
|
|
2792
3147
|
}, z.core.$strip>, z.ZodObject<{
|
|
2793
3148
|
model: z.ZodLiteral<"wan/2-7-image-to-video">;
|
|
2794
3149
|
callBackUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -2879,7 +3234,7 @@ export declare const CreateTaskRequestSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2879
3234
|
"4:3": "4:3";
|
|
2880
3235
|
"3:4": "3:4";
|
|
2881
3236
|
}>>;
|
|
2882
|
-
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>>>;
|
|
2883
3238
|
audio_setting: z.ZodOptional<z.ZodEnum<{
|
|
2884
3239
|
auto: "auto";
|
|
2885
3240
|
origin: "origin";
|
|
@@ -3024,6 +3379,63 @@ export declare const CreateTaskRequestSchema: z.ZodPipe<z.ZodObject<{
|
|
|
3024
3379
|
}>>;
|
|
3025
3380
|
seed: z.ZodOptional<z.ZodNumber>;
|
|
3026
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>;
|
|
3027
3439
|
}, z.core.$strip>, z.ZodObject<{
|
|
3028
3440
|
model: z.ZodLiteral<"omnihuman-1-5">;
|
|
3029
3441
|
callBackUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -3130,6 +3542,11 @@ export type KlingV3TurboDuration = z.infer<typeof KlingV3TurboDurationSchema>;
|
|
|
3130
3542
|
export type KlingV3TurboResolution = z.infer<typeof KlingV3TurboResolutionSchema>;
|
|
3131
3543
|
export type KlingV3TurboAspectRatio = z.infer<typeof KlingV3TurboAspectRatioSchema>;
|
|
3132
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>;
|
|
3133
3550
|
export type GrokImagineDuration = z.infer<typeof GrokImagineDurationSchema>;
|
|
3134
3551
|
export type GrokImageToVideoDuration = z.infer<typeof GrokImageToVideoDurationSchema>;
|
|
3135
3552
|
export type GrokImagineResolution = z.infer<typeof GrokImagineResolutionSchema>;
|
|
@@ -3146,66 +3563,132 @@ export type Wan27ImageResolution = z.infer<typeof Wan27ImageResolutionSchema>;
|
|
|
3146
3563
|
export type Wan27ImageAspectRatio = z.infer<typeof Wan27ImageAspectRatioSchema>;
|
|
3147
3564
|
export type HappyHorseResolution = z.infer<typeof HappyHorseResolutionSchema>;
|
|
3148
3565
|
export type HappyHorseAspectRatio = z.infer<typeof HappyHorseAspectRatioSchema>;
|
|
3566
|
+
export type HappyHorse11AspectRatio = z.infer<typeof HappyHorse11AspectRatioSchema>;
|
|
3149
3567
|
export type HappyHorseAudioSetting = z.infer<typeof HappyHorseAudioSettingSchema>;
|
|
3568
|
+
export type HappyHorseDuration = z.infer<typeof HappyHorseDurationSchema>;
|
|
3150
3569
|
export type Omnihuman15OutputResolution = z.infer<typeof Omnihuman15OutputResolutionSchema>;
|
|
3151
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>;
|
|
3152
3574
|
export type KlingElement = z.infer<typeof KlingElementSchema>;
|
|
3153
3575
|
export type MultiShotPrompt = z.infer<typeof MultiShotPromptSchema>;
|
|
3154
3576
|
export type Wan27ImageColorPalette = z.infer<typeof Wan27ImageColorPaletteSchema>;
|
|
3155
|
-
export type KlingVideoRequest = z.
|
|
3156
|
-
export type
|
|
3157
|
-
export type
|
|
3158
|
-
export type
|
|
3159
|
-
export type
|
|
3160
|
-
export type
|
|
3161
|
-
export type
|
|
3162
|
-
export type
|
|
3163
|
-
export type
|
|
3164
|
-
export type
|
|
3165
|
-
export type
|
|
3166
|
-
export type
|
|
3167
|
-
export type
|
|
3168
|
-
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>;
|
|
3169
3605
|
export type Seedance2FastInput = z.infer<typeof Seedance2FastInputSchema>;
|
|
3170
|
-
export type Seedance2FastRequest = z.
|
|
3606
|
+
export type Seedance2FastRequest = z.input<typeof Seedance2FastRequestSchema>;
|
|
3607
|
+
export type Seedance2FastParsedRequest = z.output<typeof Seedance2FastRequestSchema>;
|
|
3171
3608
|
export type Seedance2Input = z.infer<typeof Seedance2InputSchema>;
|
|
3172
|
-
export type Seedance2Request = z.
|
|
3173
|
-
export type
|
|
3174
|
-
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>;
|
|
3175
3618
|
export type GptImage2ImageToImageAspectRatio = z.infer<typeof GptImage2ImageToImageAspectRatioSchema>;
|
|
3176
3619
|
export type GptImage2ImageToImageResolution = z.infer<typeof GptImage2ImageToImageResolutionSchema>;
|
|
3177
|
-
export type GptImage2ImageToImageRequest = z.
|
|
3620
|
+
export type GptImage2ImageToImageRequest = z.input<typeof GptImage2ImageToImageRequestSchema>;
|
|
3621
|
+
export type GptImage2ImageToImageParsedRequest = z.output<typeof GptImage2ImageToImageRequestSchema>;
|
|
3178
3622
|
export type GptImage2TextToImageAspectRatio = z.infer<typeof GptImage2TextToImageAspectRatioSchema>;
|
|
3179
3623
|
export type GptImage2TextToImageResolution = z.infer<typeof GptImage2TextToImageResolutionSchema>;
|
|
3180
|
-
export type GptImage2TextToImageRequest = z.
|
|
3181
|
-
export type
|
|
3182
|
-
export type
|
|
3183
|
-
export type
|
|
3184
|
-
export type
|
|
3185
|
-
export type
|
|
3186
|
-
export type
|
|
3187
|
-
export type
|
|
3188
|
-
export type
|
|
3189
|
-
export type
|
|
3190
|
-
export type
|
|
3191
|
-
export type
|
|
3192
|
-
export type
|
|
3193
|
-
export type
|
|
3194
|
-
export type
|
|
3195
|
-
export type
|
|
3196
|
-
export type
|
|
3197
|
-
export type
|
|
3198
|
-
export type
|
|
3199
|
-
export type
|
|
3200
|
-
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>;
|
|
3201
3673
|
export type Wan27TaskResultJson = z.infer<typeof Wan27TaskResultJsonSchema>;
|
|
3202
3674
|
export type Wan27VideoResult = z.infer<typeof Wan27VideoResultSchema>;
|
|
3203
3675
|
export type Wan27ImageResult = z.infer<typeof Wan27ImageResultSchema>;
|
|
3204
|
-
export type
|
|
3205
|
-
export type
|
|
3206
|
-
export type
|
|
3207
|
-
export type
|
|
3208
|
-
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>;
|
|
3209
3691
|
export type KieOptions = z.infer<typeof KieOptionsSchema>;
|
|
3210
|
-
export type MediaGenerationRequest = z.
|
|
3692
|
+
export type MediaGenerationRequest = z.input<typeof MediaGenerationRequestSchema>;
|
|
3693
|
+
export type MediaGenerationParsedRequest = z.output<typeof MediaGenerationRequestSchema>;
|
|
3211
3694
|
//# sourceMappingURL=zod.d.ts.map
|