@apicity/kie 0.6.0 → 0.6.2
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 +159 -2
- package/dist/src/example.js +4 -4
- package/dist/src/example.js.map +1 -1
- package/dist/src/gemini-31-pro.d.ts +73 -0
- package/dist/src/gemini-31-pro.d.ts.map +1 -0
- package/dist/src/gemini-31-pro.js +126 -0
- package/dist/src/gemini-31-pro.js.map +1 -0
- package/dist/src/gemini.d.ts +66 -0
- package/dist/src/gemini.d.ts.map +1 -0
- package/dist/src/gemini.js +114 -0
- package/dist/src/gemini.js.map +1 -0
- package/dist/src/index.d.ts +9 -2
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +4 -1
- package/dist/src/index.js.map +1 -1
- package/dist/src/kie.d.ts.map +1 -1
- package/dist/src/kie.js +59 -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 +124 -45
- package/dist/src/model-schemas.js.map +1 -1
- package/dist/src/responses.d.ts +128 -0
- package/dist/src/responses.d.ts.map +1 -0
- package/dist/src/responses.js +104 -0
- package/dist/src/responses.js.map +1 -0
- package/dist/src/types.d.ts +15 -2
- package/dist/src/types.d.ts.map +1 -1
- package/dist/src/types.js.map +1 -1
- package/dist/src/zod.d.ts +848 -100
- package/dist/src/zod.d.ts.map +1 -1
- package/dist/src/zod.js +375 -32
- package/dist/src/zod.js.map +1 -1
- package/package.json +2 -2
package/dist/src/zod.d.ts
CHANGED
|
@@ -39,6 +39,7 @@ export declare const KieMediaModelSchema: z.ZodEnum<{
|
|
|
39
39
|
"happyhorse-1-1/reference-to-video": "happyhorse-1-1/reference-to-video";
|
|
40
40
|
"omnihuman-1-5": "omnihuman-1-5";
|
|
41
41
|
"volcengine/video-to-video-lip-sync": "volcengine/video-to-video-lip-sync";
|
|
42
|
+
"gemini-omni-video": "gemini-omni-video";
|
|
42
43
|
"elevenlabs/audio-isolation": "elevenlabs/audio-isolation";
|
|
43
44
|
"elevenlabs/text-to-dialogue-v3": "elevenlabs/text-to-dialogue-v3";
|
|
44
45
|
"elevenlabs/text-to-speech-multilingual-v2": "elevenlabs/text-to-speech-multilingual-v2";
|
|
@@ -52,6 +53,341 @@ export declare const MediaTypeSchema: z.ZodEnum<{
|
|
|
52
53
|
audio: "audio";
|
|
53
54
|
transcription: "transcription";
|
|
54
55
|
}>;
|
|
56
|
+
export declare const GeminiOmniAudioVoiceIds: readonly ["achernar", "achird", "algenib", "algieba", "alnilam", "aoede", "autonoe", "callirrhoe", "charon", "despina", "enceladus", "erinome", "fenrir", "gacrux", "iapetus", "kore", "laomedeia", "leda", "orus", "puck", "pulcherrima", "rasalgethi", "sadachbia", "sadaltager", "schedar", "sulafat", "umbriel", "vindemiatrix", "zephyr", "zubenelgenubi"];
|
|
57
|
+
export declare const GeminiOmniAudioVoiceIdSchema: z.ZodEnum<{
|
|
58
|
+
achernar: "achernar";
|
|
59
|
+
achird: "achird";
|
|
60
|
+
algenib: "algenib";
|
|
61
|
+
algieba: "algieba";
|
|
62
|
+
alnilam: "alnilam";
|
|
63
|
+
aoede: "aoede";
|
|
64
|
+
autonoe: "autonoe";
|
|
65
|
+
callirrhoe: "callirrhoe";
|
|
66
|
+
charon: "charon";
|
|
67
|
+
despina: "despina";
|
|
68
|
+
enceladus: "enceladus";
|
|
69
|
+
erinome: "erinome";
|
|
70
|
+
fenrir: "fenrir";
|
|
71
|
+
gacrux: "gacrux";
|
|
72
|
+
iapetus: "iapetus";
|
|
73
|
+
kore: "kore";
|
|
74
|
+
laomedeia: "laomedeia";
|
|
75
|
+
leda: "leda";
|
|
76
|
+
orus: "orus";
|
|
77
|
+
puck: "puck";
|
|
78
|
+
pulcherrima: "pulcherrima";
|
|
79
|
+
rasalgethi: "rasalgethi";
|
|
80
|
+
sadachbia: "sadachbia";
|
|
81
|
+
sadaltager: "sadaltager";
|
|
82
|
+
schedar: "schedar";
|
|
83
|
+
sulafat: "sulafat";
|
|
84
|
+
umbriel: "umbriel";
|
|
85
|
+
vindemiatrix: "vindemiatrix";
|
|
86
|
+
zephyr: "zephyr";
|
|
87
|
+
zubenelgenubi: "zubenelgenubi";
|
|
88
|
+
}>;
|
|
89
|
+
export declare const KieGeminiRoleSchema: z.ZodEnum<{
|
|
90
|
+
user: "user";
|
|
91
|
+
model: "model";
|
|
92
|
+
}>;
|
|
93
|
+
export declare const KieGeminiThinkingLevelSchema: z.ZodEnum<{
|
|
94
|
+
low: "low";
|
|
95
|
+
high: "high";
|
|
96
|
+
}>;
|
|
97
|
+
export declare const KieGeminiInlineDataSchema: z.ZodObject<{
|
|
98
|
+
mime_type: z.ZodString;
|
|
99
|
+
data: z.ZodString;
|
|
100
|
+
}, z.core.$strip>;
|
|
101
|
+
export declare const KieGeminiFileDataSchema: z.ZodObject<{
|
|
102
|
+
mime_type: z.ZodString;
|
|
103
|
+
file_uri: z.ZodString;
|
|
104
|
+
}, z.core.$strip>;
|
|
105
|
+
export declare const KieGeminiPartSchema: z.ZodObject<{
|
|
106
|
+
text: z.ZodOptional<z.ZodString>;
|
|
107
|
+
inline_data: z.ZodOptional<z.ZodObject<{
|
|
108
|
+
mime_type: z.ZodString;
|
|
109
|
+
data: z.ZodString;
|
|
110
|
+
}, z.core.$strip>>;
|
|
111
|
+
file_data: z.ZodOptional<z.ZodObject<{
|
|
112
|
+
mime_type: z.ZodString;
|
|
113
|
+
file_uri: z.ZodString;
|
|
114
|
+
}, z.core.$strip>>;
|
|
115
|
+
}, z.core.$strict>;
|
|
116
|
+
export declare const KieGeminiContentSchema: z.ZodObject<{
|
|
117
|
+
role: z.ZodEnum<{
|
|
118
|
+
user: "user";
|
|
119
|
+
model: "model";
|
|
120
|
+
}>;
|
|
121
|
+
parts: z.ZodArray<z.ZodObject<{
|
|
122
|
+
text: z.ZodOptional<z.ZodString>;
|
|
123
|
+
inline_data: z.ZodOptional<z.ZodObject<{
|
|
124
|
+
mime_type: z.ZodString;
|
|
125
|
+
data: z.ZodString;
|
|
126
|
+
}, z.core.$strip>>;
|
|
127
|
+
file_data: z.ZodOptional<z.ZodObject<{
|
|
128
|
+
mime_type: z.ZodString;
|
|
129
|
+
file_uri: z.ZodString;
|
|
130
|
+
}, z.core.$strip>>;
|
|
131
|
+
}, z.core.$strict>>;
|
|
132
|
+
}, z.core.$strip>;
|
|
133
|
+
export declare const KieGeminiFunctionParametersSchema: z.ZodObject<{
|
|
134
|
+
type: z.ZodOptional<z.ZodString>;
|
|
135
|
+
properties: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
136
|
+
required: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
137
|
+
}, z.core.$loose>;
|
|
138
|
+
export declare const KieGeminiFunctionDeclarationSchema: z.ZodObject<{
|
|
139
|
+
name: z.ZodString;
|
|
140
|
+
description: z.ZodOptional<z.ZodString>;
|
|
141
|
+
parameters: z.ZodOptional<z.ZodObject<{
|
|
142
|
+
type: z.ZodOptional<z.ZodString>;
|
|
143
|
+
properties: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
144
|
+
required: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
145
|
+
}, z.core.$loose>>;
|
|
146
|
+
}, z.core.$loose>;
|
|
147
|
+
export declare const KieGeminiGoogleSearchSchema: z.ZodObject<{}, z.core.$strict>;
|
|
148
|
+
export declare const KieGeminiGoogleSearchToolSchema: z.ZodObject<{
|
|
149
|
+
googleSearch: z.ZodObject<{}, z.core.$strict>;
|
|
150
|
+
}, z.core.$strict>;
|
|
151
|
+
export declare const KieGeminiFunctionDeclarationsToolSchema: z.ZodObject<{
|
|
152
|
+
functionDeclarations: z.ZodArray<z.ZodObject<{
|
|
153
|
+
name: z.ZodString;
|
|
154
|
+
description: z.ZodOptional<z.ZodString>;
|
|
155
|
+
parameters: z.ZodOptional<z.ZodObject<{
|
|
156
|
+
type: z.ZodOptional<z.ZodString>;
|
|
157
|
+
properties: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
158
|
+
required: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
159
|
+
}, z.core.$loose>>;
|
|
160
|
+
}, z.core.$loose>>;
|
|
161
|
+
}, z.core.$strict>;
|
|
162
|
+
export declare const KieGeminiToolSchema: z.ZodObject<{
|
|
163
|
+
googleSearch: z.ZodOptional<z.ZodObject<{}, z.core.$strict>>;
|
|
164
|
+
functionDeclarations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
165
|
+
name: z.ZodString;
|
|
166
|
+
description: z.ZodOptional<z.ZodString>;
|
|
167
|
+
parameters: z.ZodOptional<z.ZodObject<{
|
|
168
|
+
type: z.ZodOptional<z.ZodString>;
|
|
169
|
+
properties: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
170
|
+
required: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
171
|
+
}, z.core.$loose>>;
|
|
172
|
+
}, z.core.$loose>>>;
|
|
173
|
+
}, z.core.$strict>;
|
|
174
|
+
export declare const KieGeminiThinkingConfigSchema: z.ZodObject<{
|
|
175
|
+
includeThoughts: z.ZodOptional<z.ZodBoolean>;
|
|
176
|
+
thinkingLevel: z.ZodOptional<z.ZodEnum<{
|
|
177
|
+
low: "low";
|
|
178
|
+
high: "high";
|
|
179
|
+
}>>;
|
|
180
|
+
}, z.core.$strict>;
|
|
181
|
+
export declare const KieGeminiGenerationConfigSchema: z.ZodObject<{
|
|
182
|
+
temperature: z.ZodOptional<z.ZodNumber>;
|
|
183
|
+
topP: z.ZodOptional<z.ZodNumber>;
|
|
184
|
+
topK: z.ZodOptional<z.ZodNumber>;
|
|
185
|
+
candidateCount: z.ZodOptional<z.ZodNumber>;
|
|
186
|
+
maxOutputTokens: z.ZodOptional<z.ZodNumber>;
|
|
187
|
+
stopSequences: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
188
|
+
thinkingConfig: z.ZodOptional<z.ZodObject<{
|
|
189
|
+
includeThoughts: z.ZodOptional<z.ZodBoolean>;
|
|
190
|
+
thinkingLevel: z.ZodOptional<z.ZodEnum<{
|
|
191
|
+
low: "low";
|
|
192
|
+
high: "high";
|
|
193
|
+
}>>;
|
|
194
|
+
}, z.core.$strict>>;
|
|
195
|
+
}, z.core.$loose>;
|
|
196
|
+
export declare const KieGemini35FlashStreamGenerateContentRequestSchema: z.ZodObject<{
|
|
197
|
+
stream: z.ZodDefault<z.ZodBoolean>;
|
|
198
|
+
contents: z.ZodArray<z.ZodObject<{
|
|
199
|
+
role: z.ZodEnum<{
|
|
200
|
+
user: "user";
|
|
201
|
+
model: "model";
|
|
202
|
+
}>;
|
|
203
|
+
parts: z.ZodArray<z.ZodObject<{
|
|
204
|
+
text: z.ZodOptional<z.ZodString>;
|
|
205
|
+
inline_data: z.ZodOptional<z.ZodObject<{
|
|
206
|
+
mime_type: z.ZodString;
|
|
207
|
+
data: z.ZodString;
|
|
208
|
+
}, z.core.$strip>>;
|
|
209
|
+
file_data: z.ZodOptional<z.ZodObject<{
|
|
210
|
+
mime_type: z.ZodString;
|
|
211
|
+
file_uri: z.ZodString;
|
|
212
|
+
}, z.core.$strip>>;
|
|
213
|
+
}, z.core.$strict>>;
|
|
214
|
+
}, z.core.$strip>>;
|
|
215
|
+
tools: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
216
|
+
googleSearch: z.ZodOptional<z.ZodObject<{}, z.core.$strict>>;
|
|
217
|
+
functionDeclarations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
218
|
+
name: z.ZodString;
|
|
219
|
+
description: z.ZodOptional<z.ZodString>;
|
|
220
|
+
parameters: z.ZodOptional<z.ZodObject<{
|
|
221
|
+
type: z.ZodOptional<z.ZodString>;
|
|
222
|
+
properties: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
223
|
+
required: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
224
|
+
}, z.core.$loose>>;
|
|
225
|
+
}, z.core.$loose>>>;
|
|
226
|
+
}, z.core.$strict>>>;
|
|
227
|
+
generationConfig: z.ZodOptional<z.ZodObject<{
|
|
228
|
+
temperature: z.ZodOptional<z.ZodNumber>;
|
|
229
|
+
topP: z.ZodOptional<z.ZodNumber>;
|
|
230
|
+
topK: z.ZodOptional<z.ZodNumber>;
|
|
231
|
+
candidateCount: z.ZodOptional<z.ZodNumber>;
|
|
232
|
+
maxOutputTokens: z.ZodOptional<z.ZodNumber>;
|
|
233
|
+
stopSequences: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
234
|
+
thinkingConfig: z.ZodOptional<z.ZodObject<{
|
|
235
|
+
includeThoughts: z.ZodOptional<z.ZodBoolean>;
|
|
236
|
+
thinkingLevel: z.ZodOptional<z.ZodEnum<{
|
|
237
|
+
low: "low";
|
|
238
|
+
high: "high";
|
|
239
|
+
}>>;
|
|
240
|
+
}, z.core.$strict>>;
|
|
241
|
+
}, z.core.$loose>>;
|
|
242
|
+
}, z.core.$loose>;
|
|
243
|
+
export declare const KieGemini31ProMessageRoleSchema: z.ZodEnum<{
|
|
244
|
+
user: "user";
|
|
245
|
+
developer: "developer";
|
|
246
|
+
system: "system";
|
|
247
|
+
assistant: "assistant";
|
|
248
|
+
tool: "tool";
|
|
249
|
+
}>;
|
|
250
|
+
export declare const KieGemini31ProContentItemTypeSchema: z.ZodEnum<{
|
|
251
|
+
text: "text";
|
|
252
|
+
image_url: "image_url";
|
|
253
|
+
}>;
|
|
254
|
+
export declare const KieGemini31ProReasoningEffortSchema: z.ZodEnum<{
|
|
255
|
+
low: "low";
|
|
256
|
+
high: "high";
|
|
257
|
+
}>;
|
|
258
|
+
export declare const KieGemini31ProToolTypeSchema: z.ZodEnum<{
|
|
259
|
+
function: "function";
|
|
260
|
+
}>;
|
|
261
|
+
export declare const KieGemini31ProToolFunctionNameSchema: z.ZodEnum<{
|
|
262
|
+
googleSearch: "googleSearch";
|
|
263
|
+
}>;
|
|
264
|
+
export declare const KieGemini31ProTextContentItemSchema: z.ZodObject<{
|
|
265
|
+
type: z.ZodLiteral<"text">;
|
|
266
|
+
text: z.ZodString;
|
|
267
|
+
}, z.core.$strict>;
|
|
268
|
+
export declare const KieGemini31ProMediaContentItemSchema: z.ZodObject<{
|
|
269
|
+
type: z.ZodLiteral<"image_url">;
|
|
270
|
+
image_url: z.ZodObject<{
|
|
271
|
+
url: z.ZodString;
|
|
272
|
+
}, z.core.$strict>;
|
|
273
|
+
}, z.core.$strict>;
|
|
274
|
+
export declare const KieGemini31ProContentItemSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
275
|
+
type: z.ZodLiteral<"text">;
|
|
276
|
+
text: z.ZodString;
|
|
277
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
278
|
+
type: z.ZodLiteral<"image_url">;
|
|
279
|
+
image_url: z.ZodObject<{
|
|
280
|
+
url: z.ZodString;
|
|
281
|
+
}, z.core.$strict>;
|
|
282
|
+
}, z.core.$strict>], "type">;
|
|
283
|
+
export declare const KieGemini31ProMessageSchema: z.ZodObject<{
|
|
284
|
+
role: z.ZodEnum<{
|
|
285
|
+
user: "user";
|
|
286
|
+
developer: "developer";
|
|
287
|
+
system: "system";
|
|
288
|
+
assistant: "assistant";
|
|
289
|
+
tool: "tool";
|
|
290
|
+
}>;
|
|
291
|
+
content: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
292
|
+
type: z.ZodLiteral<"text">;
|
|
293
|
+
text: z.ZodString;
|
|
294
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
295
|
+
type: z.ZodLiteral<"image_url">;
|
|
296
|
+
image_url: z.ZodObject<{
|
|
297
|
+
url: z.ZodString;
|
|
298
|
+
}, z.core.$strict>;
|
|
299
|
+
}, z.core.$strict>], "type">>;
|
|
300
|
+
}, z.core.$loose>;
|
|
301
|
+
export declare const KieGemini31ProToolFunctionParametersSchema: z.ZodObject<{
|
|
302
|
+
type: z.ZodLiteral<"object">;
|
|
303
|
+
properties: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
304
|
+
required: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
305
|
+
}, z.core.$loose>;
|
|
306
|
+
export declare const KieGemini31ProToolFunctionSchema: z.ZodObject<{
|
|
307
|
+
name: z.ZodEnum<{
|
|
308
|
+
googleSearch: "googleSearch";
|
|
309
|
+
}>;
|
|
310
|
+
description: z.ZodOptional<z.ZodString>;
|
|
311
|
+
parameters: z.ZodOptional<z.ZodObject<{
|
|
312
|
+
type: z.ZodLiteral<"object">;
|
|
313
|
+
properties: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
314
|
+
required: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
315
|
+
}, z.core.$loose>>;
|
|
316
|
+
}, z.core.$loose>;
|
|
317
|
+
export declare const KieGemini31ProToolSchema: z.ZodObject<{
|
|
318
|
+
type: z.ZodEnum<{
|
|
319
|
+
function: "function";
|
|
320
|
+
}>;
|
|
321
|
+
function: z.ZodObject<{
|
|
322
|
+
name: z.ZodEnum<{
|
|
323
|
+
googleSearch: "googleSearch";
|
|
324
|
+
}>;
|
|
325
|
+
description: z.ZodOptional<z.ZodString>;
|
|
326
|
+
parameters: z.ZodOptional<z.ZodObject<{
|
|
327
|
+
type: z.ZodLiteral<"object">;
|
|
328
|
+
properties: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
329
|
+
required: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
330
|
+
}, z.core.$loose>>;
|
|
331
|
+
}, z.core.$loose>;
|
|
332
|
+
}, z.core.$strict>;
|
|
333
|
+
export declare const KieGemini31ProChatCompletionsRequestSchema: z.ZodObject<{
|
|
334
|
+
model: z.ZodOptional<z.ZodLiteral<"gemini-3.1-pro">>;
|
|
335
|
+
messages: z.ZodArray<z.ZodObject<{
|
|
336
|
+
role: z.ZodEnum<{
|
|
337
|
+
user: "user";
|
|
338
|
+
developer: "developer";
|
|
339
|
+
system: "system";
|
|
340
|
+
assistant: "assistant";
|
|
341
|
+
tool: "tool";
|
|
342
|
+
}>;
|
|
343
|
+
content: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
344
|
+
type: z.ZodLiteral<"text">;
|
|
345
|
+
text: z.ZodString;
|
|
346
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
347
|
+
type: z.ZodLiteral<"image_url">;
|
|
348
|
+
image_url: z.ZodObject<{
|
|
349
|
+
url: z.ZodString;
|
|
350
|
+
}, z.core.$strict>;
|
|
351
|
+
}, z.core.$strict>], "type">>;
|
|
352
|
+
}, z.core.$loose>>;
|
|
353
|
+
stream: z.ZodDefault<z.ZodBoolean>;
|
|
354
|
+
tools: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
355
|
+
type: z.ZodEnum<{
|
|
356
|
+
function: "function";
|
|
357
|
+
}>;
|
|
358
|
+
function: z.ZodObject<{
|
|
359
|
+
name: z.ZodEnum<{
|
|
360
|
+
googleSearch: "googleSearch";
|
|
361
|
+
}>;
|
|
362
|
+
description: z.ZodOptional<z.ZodString>;
|
|
363
|
+
parameters: z.ZodOptional<z.ZodObject<{
|
|
364
|
+
type: z.ZodLiteral<"object">;
|
|
365
|
+
properties: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
366
|
+
required: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
367
|
+
}, z.core.$loose>>;
|
|
368
|
+
}, z.core.$loose>;
|
|
369
|
+
}, z.core.$strict>>>;
|
|
370
|
+
include_thoughts: z.ZodDefault<z.ZodBoolean>;
|
|
371
|
+
reasoning_effort: z.ZodDefault<z.ZodEnum<{
|
|
372
|
+
low: "low";
|
|
373
|
+
high: "high";
|
|
374
|
+
}>>;
|
|
375
|
+
}, z.core.$loose>;
|
|
376
|
+
export type KieGemini31ProMessageRole = z.infer<typeof KieGemini31ProMessageRoleSchema>;
|
|
377
|
+
export type KieGemini31ProContentItemType = z.infer<typeof KieGemini31ProContentItemTypeSchema>;
|
|
378
|
+
export type KieGemini31ProReasoningEffort = z.infer<typeof KieGemini31ProReasoningEffortSchema>;
|
|
379
|
+
export type KieGemini31ProToolType = z.infer<typeof KieGemini31ProToolTypeSchema>;
|
|
380
|
+
export type KieGemini31ProToolFunctionName = z.infer<typeof KieGemini31ProToolFunctionNameSchema>;
|
|
381
|
+
export type KieGemini31ProTextContentItem = z.infer<typeof KieGemini31ProTextContentItemSchema>;
|
|
382
|
+
export type KieGemini31ProMediaContentItem = z.infer<typeof KieGemini31ProMediaContentItemSchema>;
|
|
383
|
+
export type KieGemini31ProContentItem = z.infer<typeof KieGemini31ProContentItemSchema>;
|
|
384
|
+
export type KieGemini31ProMessage = z.infer<typeof KieGemini31ProMessageSchema>;
|
|
385
|
+
export type KieGemini31ProToolFunctionParameters = z.infer<typeof KieGemini31ProToolFunctionParametersSchema>;
|
|
386
|
+
export type KieGemini31ProToolFunction = z.infer<typeof KieGemini31ProToolFunctionSchema>;
|
|
387
|
+
export type KieGemini31ProTool = z.infer<typeof KieGemini31ProToolSchema>;
|
|
388
|
+
export type KieGemini31ProChatCompletionsRequest = z.input<typeof KieGemini31ProChatCompletionsRequestSchema>;
|
|
389
|
+
export type KieGemini31ProChatCompletionsRequestInput = KieGemini31ProChatCompletionsRequest;
|
|
390
|
+
export type KieGemini31ProChatCompletionsParsedRequest = z.output<typeof KieGemini31ProChatCompletionsRequestSchema>;
|
|
55
391
|
export declare const KlingDurationSchema: z.ZodEnum<{
|
|
56
392
|
3: "3";
|
|
57
393
|
4: "4";
|
|
@@ -86,7 +422,22 @@ export declare const KlingV3TurboAspectRatioSchema: z.ZodEnum<{
|
|
|
86
422
|
"9:16": "9:16";
|
|
87
423
|
"1:1": "1:1";
|
|
88
424
|
}>;
|
|
89
|
-
export declare const KlingV3TurboDurationSchema: z.
|
|
425
|
+
export declare const KlingV3TurboDurationSchema: z.ZodString;
|
|
426
|
+
export declare const KlingV3TurboTextToVideoDurationSchema: z.ZodEnum<{
|
|
427
|
+
3: "3";
|
|
428
|
+
4: "4";
|
|
429
|
+
5: "5";
|
|
430
|
+
6: "6";
|
|
431
|
+
7: "7";
|
|
432
|
+
8: "8";
|
|
433
|
+
9: "9";
|
|
434
|
+
10: "10";
|
|
435
|
+
11: "11";
|
|
436
|
+
12: "12";
|
|
437
|
+
13: "13";
|
|
438
|
+
14: "14";
|
|
439
|
+
15: "15";
|
|
440
|
+
}>;
|
|
90
441
|
export declare const GrokTextToVideoModeSchema: z.ZodEnum<{
|
|
91
442
|
fun: "fun";
|
|
92
443
|
normal: "normal";
|
|
@@ -147,21 +498,15 @@ export declare const NanoBananaOutputFormatSchema: z.ZodEnum<{
|
|
|
147
498
|
jpg: "jpg";
|
|
148
499
|
}>;
|
|
149
500
|
export declare const GptImageQualitySchema: z.ZodEnum<{
|
|
150
|
-
medium: "medium";
|
|
151
501
|
high: "high";
|
|
502
|
+
medium: "medium";
|
|
152
503
|
}>;
|
|
153
504
|
export declare const Qwen2ImageSizeSchema: z.ZodEnum<{
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
landscape_16_9: "landscape_16_9";
|
|
160
|
-
}>;
|
|
161
|
-
export declare const Qwen2AccelerationSchema: z.ZodEnum<{
|
|
162
|
-
high: "high";
|
|
163
|
-
none: "none";
|
|
164
|
-
regular: "regular";
|
|
505
|
+
"16:9": "16:9";
|
|
506
|
+
"9:16": "9:16";
|
|
507
|
+
"1:1": "1:1";
|
|
508
|
+
"4:3": "4:3";
|
|
509
|
+
"3:4": "3:4";
|
|
165
510
|
}>;
|
|
166
511
|
export declare const Wan27ResolutionSchema: z.ZodEnum<{
|
|
167
512
|
"720p": "720p";
|
|
@@ -233,6 +578,21 @@ export declare const VolcengineVideoToVideoLipSyncModeSchema: z.ZodEnum<{
|
|
|
233
578
|
lite: "lite";
|
|
234
579
|
basic: "basic";
|
|
235
580
|
}>;
|
|
581
|
+
export declare const GeminiOmniVideoDurationSchema: z.ZodEnum<{
|
|
582
|
+
4: "4";
|
|
583
|
+
6: "6";
|
|
584
|
+
8: "8";
|
|
585
|
+
10: "10";
|
|
586
|
+
}>;
|
|
587
|
+
export declare const GeminiOmniVideoAspectRatioSchema: z.ZodEnum<{
|
|
588
|
+
"16:9": "16:9";
|
|
589
|
+
"9:16": "9:16";
|
|
590
|
+
}>;
|
|
591
|
+
export declare const GeminiOmniVideoResolutionSchema: z.ZodEnum<{
|
|
592
|
+
"720p": "720p";
|
|
593
|
+
"1080p": "1080p";
|
|
594
|
+
"4k": "4k";
|
|
595
|
+
}>;
|
|
236
596
|
export declare const Seedance2MiniResolutionSchema: z.ZodEnum<{
|
|
237
597
|
"720p": "720p";
|
|
238
598
|
"480p": "480p";
|
|
@@ -316,7 +676,7 @@ export declare const KlingV3TurboImageToVideoRequestSchema: z.ZodObject<{
|
|
|
316
676
|
input: z.ZodObject<{
|
|
317
677
|
prompt: z.ZodString;
|
|
318
678
|
image_urls: z.ZodArray<z.ZodString>;
|
|
319
|
-
duration: z.
|
|
679
|
+
duration: z.ZodString;
|
|
320
680
|
resolution: z.ZodEnum<{
|
|
321
681
|
"720p": "720p";
|
|
322
682
|
"1080p": "1080p";
|
|
@@ -328,16 +688,30 @@ export declare const KlingV3TurboTextToVideoRequestSchema: z.ZodObject<{
|
|
|
328
688
|
callBackUrl: z.ZodOptional<z.ZodString>;
|
|
329
689
|
input: z.ZodObject<{
|
|
330
690
|
prompt: z.ZodString;
|
|
331
|
-
duration: z.
|
|
332
|
-
|
|
691
|
+
duration: z.ZodDefault<z.ZodEnum<{
|
|
692
|
+
3: "3";
|
|
693
|
+
4: "4";
|
|
694
|
+
5: "5";
|
|
695
|
+
6: "6";
|
|
696
|
+
7: "7";
|
|
697
|
+
8: "8";
|
|
698
|
+
9: "9";
|
|
699
|
+
10: "10";
|
|
700
|
+
11: "11";
|
|
701
|
+
12: "12";
|
|
702
|
+
13: "13";
|
|
703
|
+
14: "14";
|
|
704
|
+
15: "15";
|
|
705
|
+
}>>;
|
|
706
|
+
aspect_ratio: z.ZodDefault<z.ZodEnum<{
|
|
333
707
|
"16:9": "16:9";
|
|
334
708
|
"9:16": "9:16";
|
|
335
709
|
"1:1": "1:1";
|
|
336
|
-
}
|
|
337
|
-
resolution: z.ZodEnum<{
|
|
710
|
+
}>>;
|
|
711
|
+
resolution: z.ZodDefault<z.ZodEnum<{
|
|
338
712
|
"720p": "720p";
|
|
339
713
|
"1080p": "1080p";
|
|
340
|
-
}
|
|
714
|
+
}>>;
|
|
341
715
|
}, z.core.$strip>;
|
|
342
716
|
}, z.core.$strip>;
|
|
343
717
|
export declare const KlingMotionControlRequestSchema: z.ZodObject<{
|
|
@@ -382,28 +756,19 @@ export declare const Qwen2TextToImageRequestSchema: z.ZodObject<{
|
|
|
382
756
|
callBackUrl: z.ZodOptional<z.ZodString>;
|
|
383
757
|
input: z.ZodObject<{
|
|
384
758
|
prompt: z.ZodString;
|
|
385
|
-
image_size: z.
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
landscape_16_9: "landscape_16_9";
|
|
759
|
+
image_size: z.ZodDefault<z.ZodEnum<{
|
|
760
|
+
"16:9": "16:9";
|
|
761
|
+
"9:16": "9:16";
|
|
762
|
+
"1:1": "1:1";
|
|
763
|
+
"4:3": "4:3";
|
|
764
|
+
"3:4": "3:4";
|
|
392
765
|
}>>;
|
|
393
|
-
num_inference_steps: z.ZodOptional<z.ZodNumber>;
|
|
394
766
|
seed: z.ZodOptional<z.ZodNumber>;
|
|
395
|
-
|
|
396
|
-
enable_safety_checker: z.ZodOptional<z.ZodBoolean>;
|
|
397
|
-
output_format: z.ZodOptional<z.ZodEnum<{
|
|
767
|
+
output_format: z.ZodDefault<z.ZodEnum<{
|
|
398
768
|
png: "png";
|
|
399
769
|
jpeg: "jpeg";
|
|
400
770
|
}>>;
|
|
401
|
-
|
|
402
|
-
acceleration: z.ZodOptional<z.ZodEnum<{
|
|
403
|
-
high: "high";
|
|
404
|
-
none: "none";
|
|
405
|
-
regular: "regular";
|
|
406
|
-
}>>;
|
|
771
|
+
nsfw_checker: z.ZodDefault<z.ZodBoolean>;
|
|
407
772
|
}, z.core.$strip>;
|
|
408
773
|
}, z.core.$strip>;
|
|
409
774
|
export declare const Qwen2ImageEditRequestSchema: z.ZodObject<{
|
|
@@ -411,7 +776,7 @@ export declare const Qwen2ImageEditRequestSchema: z.ZodObject<{
|
|
|
411
776
|
callBackUrl: z.ZodOptional<z.ZodString>;
|
|
412
777
|
input: z.ZodObject<{
|
|
413
778
|
prompt: z.ZodString;
|
|
414
|
-
image_url: z.
|
|
779
|
+
image_url: z.ZodString;
|
|
415
780
|
image_size: z.ZodDefault<z.ZodEnum<{
|
|
416
781
|
"16:9": "16:9";
|
|
417
782
|
"9:16": "9:16";
|
|
@@ -777,8 +1142,8 @@ export declare const GptImageToImageRequestSchema: z.ZodObject<{
|
|
|
777
1142
|
"3:2": "3:2";
|
|
778
1143
|
}>>;
|
|
779
1144
|
quality: z.ZodOptional<z.ZodEnum<{
|
|
780
|
-
medium: "medium";
|
|
781
1145
|
high: "high";
|
|
1146
|
+
medium: "medium";
|
|
782
1147
|
}>>;
|
|
783
1148
|
}, z.core.$strip>;
|
|
784
1149
|
}, z.core.$strip>;
|
|
@@ -1116,6 +1481,37 @@ export declare const VolcengineVideoToVideoLipSyncRequestSchema: z.ZodObject<{
|
|
|
1116
1481
|
templ_start_seconds: z.ZodDefault<z.ZodNumber>;
|
|
1117
1482
|
}, z.core.$strip>;
|
|
1118
1483
|
}, z.core.$strip>;
|
|
1484
|
+
export declare const GeminiOmniVideoRequestSchema: z.ZodObject<{
|
|
1485
|
+
model: z.ZodLiteral<"gemini-omni-video">;
|
|
1486
|
+
callBackUrl: z.ZodOptional<z.ZodString>;
|
|
1487
|
+
input: z.ZodObject<{
|
|
1488
|
+
prompt: z.ZodString;
|
|
1489
|
+
image_urls: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1490
|
+
audio_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1491
|
+
video_list: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1492
|
+
url: z.ZodString;
|
|
1493
|
+
start: z.ZodNumber;
|
|
1494
|
+
ends: z.ZodNumber;
|
|
1495
|
+
}, z.core.$strip>>>;
|
|
1496
|
+
character_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1497
|
+
duration: z.ZodEnum<{
|
|
1498
|
+
4: "4";
|
|
1499
|
+
6: "6";
|
|
1500
|
+
8: "8";
|
|
1501
|
+
10: "10";
|
|
1502
|
+
}>;
|
|
1503
|
+
aspect_ratio: z.ZodOptional<z.ZodEnum<{
|
|
1504
|
+
"16:9": "16:9";
|
|
1505
|
+
"9:16": "9:16";
|
|
1506
|
+
}>>;
|
|
1507
|
+
seed: z.ZodOptional<z.ZodNumber>;
|
|
1508
|
+
resolution: z.ZodDefault<z.ZodEnum<{
|
|
1509
|
+
"720p": "720p";
|
|
1510
|
+
"1080p": "1080p";
|
|
1511
|
+
"4k": "4k";
|
|
1512
|
+
}>>;
|
|
1513
|
+
}, z.core.$strip>;
|
|
1514
|
+
}, z.core.$strip>;
|
|
1119
1515
|
export declare const ElevenLabsAudioIsolationRequestSchema: z.ZodObject<{
|
|
1120
1516
|
model: z.ZodLiteral<"elevenlabs/audio-isolation">;
|
|
1121
1517
|
callBackUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -1269,7 +1665,7 @@ export declare const Wan27VideoEditRequestSchema: z.ZodObject<{
|
|
|
1269
1665
|
"4:3": "4:3";
|
|
1270
1666
|
"3:4": "3:4";
|
|
1271
1667
|
}>>;
|
|
1272
|
-
duration: z.ZodOptional<z.ZodType<0 | 4 | 2 | 10 |
|
|
1668
|
+
duration: z.ZodOptional<z.ZodType<0 | 4 | 2 | 10 | 5 | 3 | 6 | 8 | 7 | 9, unknown, z.core.$ZodTypeInternals<0 | 4 | 2 | 10 | 5 | 3 | 6 | 8 | 7 | 9, unknown>>>;
|
|
1273
1669
|
audio_setting: z.ZodOptional<z.ZodEnum<{
|
|
1274
1670
|
auto: "auto";
|
|
1275
1671
|
origin: "origin";
|
|
@@ -1462,10 +1858,61 @@ export declare const DownloadUrlRequestSchema: z.ZodObject<{
|
|
|
1462
1858
|
url: z.ZodString;
|
|
1463
1859
|
}, z.core.$strip>;
|
|
1464
1860
|
export declare const GeminiOmniAudioCreateRequestSchema: z.ZodObject<{
|
|
1465
|
-
audio_id: z.
|
|
1861
|
+
audio_id: z.ZodEnum<{
|
|
1862
|
+
achernar: "achernar";
|
|
1863
|
+
achird: "achird";
|
|
1864
|
+
algenib: "algenib";
|
|
1865
|
+
algieba: "algieba";
|
|
1866
|
+
alnilam: "alnilam";
|
|
1867
|
+
aoede: "aoede";
|
|
1868
|
+
autonoe: "autonoe";
|
|
1869
|
+
callirrhoe: "callirrhoe";
|
|
1870
|
+
charon: "charon";
|
|
1871
|
+
despina: "despina";
|
|
1872
|
+
enceladus: "enceladus";
|
|
1873
|
+
erinome: "erinome";
|
|
1874
|
+
fenrir: "fenrir";
|
|
1875
|
+
gacrux: "gacrux";
|
|
1876
|
+
iapetus: "iapetus";
|
|
1877
|
+
kore: "kore";
|
|
1878
|
+
laomedeia: "laomedeia";
|
|
1879
|
+
leda: "leda";
|
|
1880
|
+
orus: "orus";
|
|
1881
|
+
puck: "puck";
|
|
1882
|
+
pulcherrima: "pulcherrima";
|
|
1883
|
+
rasalgethi: "rasalgethi";
|
|
1884
|
+
sadachbia: "sadachbia";
|
|
1885
|
+
sadaltager: "sadaltager";
|
|
1886
|
+
schedar: "schedar";
|
|
1887
|
+
sulafat: "sulafat";
|
|
1888
|
+
umbriel: "umbriel";
|
|
1889
|
+
vindemiatrix: "vindemiatrix";
|
|
1890
|
+
zephyr: "zephyr";
|
|
1891
|
+
zubenelgenubi: "zubenelgenubi";
|
|
1892
|
+
}>;
|
|
1466
1893
|
name: z.ZodString;
|
|
1467
|
-
voice_description: z.ZodString
|
|
1468
|
-
example_dialogue: z.ZodString
|
|
1894
|
+
voice_description: z.ZodOptional<z.ZodString>;
|
|
1895
|
+
example_dialogue: z.ZodOptional<z.ZodString>;
|
|
1896
|
+
}, z.core.$strip>;
|
|
1897
|
+
export declare const GeminiOmniCharacterCreateRequestSchema: z.ZodObject<{
|
|
1898
|
+
descriptions: z.ZodString;
|
|
1899
|
+
image_urls: z.ZodArray<z.ZodString>;
|
|
1900
|
+
audio_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1901
|
+
character_name: z.ZodOptional<z.ZodString>;
|
|
1902
|
+
}, z.core.$strip>;
|
|
1903
|
+
export declare const GeminiOmniCharacterCreateDataSchema: z.ZodObject<{
|
|
1904
|
+
characterId: z.ZodString;
|
|
1905
|
+
characterName: z.ZodString;
|
|
1906
|
+
imageUrl: z.ZodString;
|
|
1907
|
+
}, z.core.$strip>;
|
|
1908
|
+
export declare const GeminiOmniCharacterCreateResponseSchema: z.ZodObject<{
|
|
1909
|
+
code: z.ZodOptional<z.ZodNumber>;
|
|
1910
|
+
msg: z.ZodString;
|
|
1911
|
+
data: z.ZodOptional<z.ZodObject<{
|
|
1912
|
+
characterId: z.ZodString;
|
|
1913
|
+
characterName: z.ZodString;
|
|
1914
|
+
imageUrl: z.ZodString;
|
|
1915
|
+
}, z.core.$strip>>;
|
|
1469
1916
|
}, z.core.$strip>;
|
|
1470
1917
|
export declare const KieOptionsSchema: z.ZodObject<{
|
|
1471
1918
|
apiKey: z.ZodString;
|
|
@@ -1507,8 +1954,10 @@ export declare const VeoExtendRequestSchema: z.ZodObject<{
|
|
|
1507
1954
|
watermark: z.ZodOptional<z.ZodString>;
|
|
1508
1955
|
}, z.core.$strip>;
|
|
1509
1956
|
export type VeoGenerateRequest = z.input<typeof VeoGenerateRequestSchema>;
|
|
1957
|
+
export type VeoGenerateRequestInput = VeoGenerateRequest;
|
|
1510
1958
|
export type VeoGenerateParsedRequest = z.output<typeof VeoGenerateRequestSchema>;
|
|
1511
1959
|
export type VeoExtendRequest = z.input<typeof VeoExtendRequestSchema>;
|
|
1960
|
+
export type VeoExtendRequestInput = VeoExtendRequest;
|
|
1512
1961
|
export type VeoExtendParsedRequest = z.output<typeof VeoExtendRequestSchema>;
|
|
1513
1962
|
export type VeoModel = "veo3" | "veo3_fast";
|
|
1514
1963
|
export type VeoGenerationType = "TEXT_2_VIDEO" | "REFERENCE_2_VIDEO" | "FIRST_AND_LAST_FRAMES_2_VIDEO";
|
|
@@ -1539,12 +1988,13 @@ export declare const SunoGenerateRequestSchema: z.ZodObject<{
|
|
|
1539
1988
|
personaId: z.ZodOptional<z.ZodString>;
|
|
1540
1989
|
}, z.core.$strip>;
|
|
1541
1990
|
export type SunoGenerateRequest = z.input<typeof SunoGenerateRequestSchema>;
|
|
1991
|
+
export type SunoGenerateRequestInput = SunoGenerateRequest;
|
|
1542
1992
|
export type SunoGenerateParsedRequest = z.output<typeof SunoGenerateRequestSchema>;
|
|
1543
1993
|
export type SunoModel = "V3_5" | "V4" | "V4_5" | "V4_5PLUS" | "V4_5ALL" | "V5" | "V5_5";
|
|
1544
1994
|
export declare const KieChatContentPartSchema: z.ZodObject<{
|
|
1545
1995
|
type: z.ZodEnum<{
|
|
1546
|
-
image_url: "image_url";
|
|
1547
1996
|
text: "text";
|
|
1997
|
+
image_url: "image_url";
|
|
1548
1998
|
}>;
|
|
1549
1999
|
text: z.ZodOptional<z.ZodString>;
|
|
1550
2000
|
image_url: z.ZodOptional<z.ZodObject<{
|
|
@@ -1554,13 +2004,13 @@ export declare const KieChatContentPartSchema: z.ZodObject<{
|
|
|
1554
2004
|
export declare const KieChatMessageSchema: z.ZodObject<{
|
|
1555
2005
|
role: z.ZodEnum<{
|
|
1556
2006
|
user: "user";
|
|
1557
|
-
assistant: "assistant";
|
|
1558
2007
|
system: "system";
|
|
2008
|
+
assistant: "assistant";
|
|
1559
2009
|
}>;
|
|
1560
2010
|
content: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodObject<{
|
|
1561
2011
|
type: z.ZodEnum<{
|
|
1562
|
-
image_url: "image_url";
|
|
1563
2012
|
text: "text";
|
|
2013
|
+
image_url: "image_url";
|
|
1564
2014
|
}>;
|
|
1565
2015
|
text: z.ZodOptional<z.ZodString>;
|
|
1566
2016
|
image_url: z.ZodOptional<z.ZodObject<{
|
|
@@ -1573,13 +2023,13 @@ export declare const KieChatRequestSchema: z.ZodObject<{
|
|
|
1573
2023
|
messages: z.ZodArray<z.ZodObject<{
|
|
1574
2024
|
role: z.ZodEnum<{
|
|
1575
2025
|
user: "user";
|
|
1576
|
-
assistant: "assistant";
|
|
1577
2026
|
system: "system";
|
|
2027
|
+
assistant: "assistant";
|
|
1578
2028
|
}>;
|
|
1579
2029
|
content: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodObject<{
|
|
1580
2030
|
type: z.ZodEnum<{
|
|
1581
|
-
image_url: "image_url";
|
|
1582
2031
|
text: "text";
|
|
2032
|
+
image_url: "image_url";
|
|
1583
2033
|
}>;
|
|
1584
2034
|
text: z.ZodOptional<z.ZodString>;
|
|
1585
2035
|
image_url: z.ZodOptional<z.ZodObject<{
|
|
@@ -1602,7 +2052,154 @@ export declare const KieChatRequestSchema: z.ZodObject<{
|
|
|
1602
2052
|
export type KieChatContentPart = z.infer<typeof KieChatContentPartSchema>;
|
|
1603
2053
|
export type KieChatMessage = z.infer<typeof KieChatMessageSchema>;
|
|
1604
2054
|
export type KieChatRequest = z.input<typeof KieChatRequestSchema>;
|
|
2055
|
+
export type KieChatRequestInput = KieChatRequest;
|
|
1605
2056
|
export type KieChatParsedRequest = z.output<typeof KieChatRequestSchema>;
|
|
2057
|
+
export declare const KieResponsesModelSchema: z.ZodEnum<{
|
|
2058
|
+
"gpt-5-5": "gpt-5-5";
|
|
2059
|
+
}>;
|
|
2060
|
+
export declare const KieResponsesReasoningEffortSchema: z.ZodEnum<{
|
|
2061
|
+
low: "low";
|
|
2062
|
+
high: "high";
|
|
2063
|
+
medium: "medium";
|
|
2064
|
+
xhigh: "xhigh";
|
|
2065
|
+
}>;
|
|
2066
|
+
export declare const KieResponsesMessageRoleSchema: z.ZodEnum<{
|
|
2067
|
+
user: "user";
|
|
2068
|
+
developer: "developer";
|
|
2069
|
+
system: "system";
|
|
2070
|
+
assistant: "assistant";
|
|
2071
|
+
tool: "tool";
|
|
2072
|
+
}>;
|
|
2073
|
+
export declare const KieResponsesInputTextSchema: z.ZodObject<{
|
|
2074
|
+
type: z.ZodLiteral<"input_text">;
|
|
2075
|
+
text: z.ZodString;
|
|
2076
|
+
}, z.core.$strip>;
|
|
2077
|
+
export declare const KieResponsesInputImageSchema: z.ZodObject<{
|
|
2078
|
+
type: z.ZodLiteral<"input_image">;
|
|
2079
|
+
image_url: z.ZodString;
|
|
2080
|
+
}, z.core.$strip>;
|
|
2081
|
+
export declare const KieResponsesInputFileSchema: z.ZodObject<{
|
|
2082
|
+
type: z.ZodLiteral<"input_file">;
|
|
2083
|
+
file_url: z.ZodString;
|
|
2084
|
+
}, z.core.$strip>;
|
|
2085
|
+
export declare const KieResponsesInputContentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2086
|
+
type: z.ZodLiteral<"input_text">;
|
|
2087
|
+
text: z.ZodString;
|
|
2088
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2089
|
+
type: z.ZodLiteral<"input_image">;
|
|
2090
|
+
image_url: z.ZodString;
|
|
2091
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2092
|
+
type: z.ZodLiteral<"input_file">;
|
|
2093
|
+
file_url: z.ZodString;
|
|
2094
|
+
}, z.core.$strip>], "type">;
|
|
2095
|
+
export declare const KieResponsesInputMessageSchema: z.ZodObject<{
|
|
2096
|
+
role: z.ZodEnum<{
|
|
2097
|
+
user: "user";
|
|
2098
|
+
developer: "developer";
|
|
2099
|
+
system: "system";
|
|
2100
|
+
assistant: "assistant";
|
|
2101
|
+
tool: "tool";
|
|
2102
|
+
}>;
|
|
2103
|
+
content: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2104
|
+
type: z.ZodLiteral<"input_text">;
|
|
2105
|
+
text: z.ZodString;
|
|
2106
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2107
|
+
type: z.ZodLiteral<"input_image">;
|
|
2108
|
+
image_url: z.ZodString;
|
|
2109
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2110
|
+
type: z.ZodLiteral<"input_file">;
|
|
2111
|
+
file_url: z.ZodString;
|
|
2112
|
+
}, z.core.$strip>], "type">>;
|
|
2113
|
+
}, z.core.$strip>;
|
|
2114
|
+
export declare const KieResponsesReasoningSchema: z.ZodObject<{
|
|
2115
|
+
effort: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
2116
|
+
low: "low";
|
|
2117
|
+
high: "high";
|
|
2118
|
+
medium: "medium";
|
|
2119
|
+
xhigh: "xhigh";
|
|
2120
|
+
}>>>;
|
|
2121
|
+
}, z.core.$strip>;
|
|
2122
|
+
export declare const KieResponsesWebSearchToolSchema: z.ZodObject<{
|
|
2123
|
+
type: z.ZodLiteral<"web_search">;
|
|
2124
|
+
}, z.core.$strip>;
|
|
2125
|
+
export declare const KieResponsesFunctionToolSchema: z.ZodObject<{
|
|
2126
|
+
type: z.ZodLiteral<"function">;
|
|
2127
|
+
name: z.ZodString;
|
|
2128
|
+
description: z.ZodString;
|
|
2129
|
+
parameters: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
2130
|
+
}, z.core.$strip>;
|
|
2131
|
+
export declare const KieResponsesToolSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2132
|
+
type: z.ZodLiteral<"web_search">;
|
|
2133
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2134
|
+
type: z.ZodLiteral<"function">;
|
|
2135
|
+
name: z.ZodString;
|
|
2136
|
+
description: z.ZodString;
|
|
2137
|
+
parameters: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
2138
|
+
}, z.core.$strip>], "type">;
|
|
2139
|
+
export declare const KieResponsesToolsSchema: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2140
|
+
type: z.ZodLiteral<"web_search">;
|
|
2141
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2142
|
+
type: z.ZodLiteral<"function">;
|
|
2143
|
+
name: z.ZodString;
|
|
2144
|
+
description: z.ZodString;
|
|
2145
|
+
parameters: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
2146
|
+
}, z.core.$strip>], "type">>;
|
|
2147
|
+
export declare const KieResponsesRequestSchema: z.ZodObject<{
|
|
2148
|
+
model: z.ZodEnum<{
|
|
2149
|
+
"gpt-5-5": "gpt-5-5";
|
|
2150
|
+
}>;
|
|
2151
|
+
stream: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2152
|
+
input: z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodObject<{
|
|
2153
|
+
role: z.ZodEnum<{
|
|
2154
|
+
user: "user";
|
|
2155
|
+
developer: "developer";
|
|
2156
|
+
system: "system";
|
|
2157
|
+
assistant: "assistant";
|
|
2158
|
+
tool: "tool";
|
|
2159
|
+
}>;
|
|
2160
|
+
content: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2161
|
+
type: z.ZodLiteral<"input_text">;
|
|
2162
|
+
text: z.ZodString;
|
|
2163
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2164
|
+
type: z.ZodLiteral<"input_image">;
|
|
2165
|
+
image_url: z.ZodString;
|
|
2166
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2167
|
+
type: z.ZodLiteral<"input_file">;
|
|
2168
|
+
file_url: z.ZodString;
|
|
2169
|
+
}, z.core.$strip>], "type">>;
|
|
2170
|
+
}, z.core.$strip>>]>;
|
|
2171
|
+
reasoning: z.ZodOptional<z.ZodObject<{
|
|
2172
|
+
effort: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
|
2173
|
+
low: "low";
|
|
2174
|
+
high: "high";
|
|
2175
|
+
medium: "medium";
|
|
2176
|
+
xhigh: "xhigh";
|
|
2177
|
+
}>>>;
|
|
2178
|
+
}, z.core.$strip>>;
|
|
2179
|
+
tools: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2180
|
+
type: z.ZodLiteral<"web_search">;
|
|
2181
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2182
|
+
type: z.ZodLiteral<"function">;
|
|
2183
|
+
name: z.ZodString;
|
|
2184
|
+
description: z.ZodString;
|
|
2185
|
+
parameters: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
2186
|
+
}, z.core.$strip>], "type">>>;
|
|
2187
|
+
tool_choice: z.ZodOptional<z.ZodString>;
|
|
2188
|
+
}, z.core.$strip>;
|
|
2189
|
+
export type KieResponsesModel = z.infer<typeof KieResponsesModelSchema>;
|
|
2190
|
+
export type KieResponsesReasoningEffort = z.infer<typeof KieResponsesReasoningEffortSchema>;
|
|
2191
|
+
export type KieResponsesMessageRole = z.infer<typeof KieResponsesMessageRoleSchema>;
|
|
2192
|
+
export type KieResponsesInputText = z.infer<typeof KieResponsesInputTextSchema>;
|
|
2193
|
+
export type KieResponsesInputImage = z.infer<typeof KieResponsesInputImageSchema>;
|
|
2194
|
+
export type KieResponsesInputFile = z.infer<typeof KieResponsesInputFileSchema>;
|
|
2195
|
+
export type KieResponsesInputContent = z.infer<typeof KieResponsesInputContentSchema>;
|
|
2196
|
+
export type KieResponsesInputMessage = z.infer<typeof KieResponsesInputMessageSchema>;
|
|
2197
|
+
export type KieResponsesReasoning = z.infer<typeof KieResponsesReasoningSchema>;
|
|
2198
|
+
export type KieResponsesWebSearchTool = z.infer<typeof KieResponsesWebSearchToolSchema>;
|
|
2199
|
+
export type KieResponsesFunctionTool = z.infer<typeof KieResponsesFunctionToolSchema>;
|
|
2200
|
+
export type KieResponsesTool = z.infer<typeof KieResponsesToolSchema>;
|
|
2201
|
+
export type KieResponsesRequest = z.input<typeof KieResponsesRequestSchema>;
|
|
2202
|
+
export type KieResponsesParsedRequest = z.output<typeof KieResponsesRequestSchema>;
|
|
1606
2203
|
export declare const KieClaudeToolInputSchemaSchema: z.ZodObject<{
|
|
1607
2204
|
type: z.ZodString;
|
|
1608
2205
|
properties: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -1663,6 +2260,7 @@ export type KieClaudeTool = z.infer<typeof KieClaudeToolSchema>;
|
|
|
1663
2260
|
export type KieClaudeContentPart = z.infer<typeof KieClaudeContentPartSchema>;
|
|
1664
2261
|
export type KieClaudeMessage = z.infer<typeof KieClaudeMessageSchema>;
|
|
1665
2262
|
export type KieClaudeRequest = z.input<typeof KieClaudeRequestSchema>;
|
|
2263
|
+
export type KieClaudeRequestInput = KieClaudeRequest;
|
|
1666
2264
|
export type KieClaudeParsedRequest = z.output<typeof KieClaudeRequestSchema>;
|
|
1667
2265
|
export declare const MediaGenerationRequestSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
1668
2266
|
model: z.ZodLiteral<"kling-3.0/video">;
|
|
@@ -1734,7 +2332,7 @@ export declare const MediaGenerationRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
1734
2332
|
input: z.ZodObject<{
|
|
1735
2333
|
prompt: z.ZodString;
|
|
1736
2334
|
image_urls: z.ZodArray<z.ZodString>;
|
|
1737
|
-
duration: z.
|
|
2335
|
+
duration: z.ZodString;
|
|
1738
2336
|
resolution: z.ZodEnum<{
|
|
1739
2337
|
"720p": "720p";
|
|
1740
2338
|
"1080p": "1080p";
|
|
@@ -1745,16 +2343,30 @@ export declare const MediaGenerationRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
1745
2343
|
callBackUrl: z.ZodOptional<z.ZodString>;
|
|
1746
2344
|
input: z.ZodObject<{
|
|
1747
2345
|
prompt: z.ZodString;
|
|
1748
|
-
duration: z.
|
|
1749
|
-
|
|
2346
|
+
duration: z.ZodDefault<z.ZodEnum<{
|
|
2347
|
+
3: "3";
|
|
2348
|
+
4: "4";
|
|
2349
|
+
5: "5";
|
|
2350
|
+
6: "6";
|
|
2351
|
+
7: "7";
|
|
2352
|
+
8: "8";
|
|
2353
|
+
9: "9";
|
|
2354
|
+
10: "10";
|
|
2355
|
+
11: "11";
|
|
2356
|
+
12: "12";
|
|
2357
|
+
13: "13";
|
|
2358
|
+
14: "14";
|
|
2359
|
+
15: "15";
|
|
2360
|
+
}>>;
|
|
2361
|
+
aspect_ratio: z.ZodDefault<z.ZodEnum<{
|
|
1750
2362
|
"16:9": "16:9";
|
|
1751
2363
|
"9:16": "9:16";
|
|
1752
2364
|
"1:1": "1:1";
|
|
1753
|
-
}
|
|
1754
|
-
resolution: z.ZodEnum<{
|
|
2365
|
+
}>>;
|
|
2366
|
+
resolution: z.ZodDefault<z.ZodEnum<{
|
|
1755
2367
|
"720p": "720p";
|
|
1756
2368
|
"1080p": "1080p";
|
|
1757
|
-
}
|
|
2369
|
+
}>>;
|
|
1758
2370
|
}, z.core.$strip>;
|
|
1759
2371
|
}, z.core.$strip>, z.ZodObject<{
|
|
1760
2372
|
model: z.ZodLiteral<"grok-imagine/text-to-image">;
|
|
@@ -1946,8 +2558,8 @@ export declare const MediaGenerationRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
1946
2558
|
"3:2": "3:2";
|
|
1947
2559
|
}>>;
|
|
1948
2560
|
quality: z.ZodOptional<z.ZodEnum<{
|
|
1949
|
-
medium: "medium";
|
|
1950
2561
|
high: "high";
|
|
2562
|
+
medium: "medium";
|
|
1951
2563
|
}>>;
|
|
1952
2564
|
}, z.core.$strip>;
|
|
1953
2565
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -2054,35 +2666,26 @@ export declare const MediaGenerationRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
2054
2666
|
callBackUrl: z.ZodOptional<z.ZodString>;
|
|
2055
2667
|
input: z.ZodObject<{
|
|
2056
2668
|
prompt: z.ZodString;
|
|
2057
|
-
image_size: z.
|
|
2058
|
-
|
|
2059
|
-
|
|
2060
|
-
|
|
2061
|
-
|
|
2062
|
-
|
|
2063
|
-
landscape_16_9: "landscape_16_9";
|
|
2669
|
+
image_size: z.ZodDefault<z.ZodEnum<{
|
|
2670
|
+
"16:9": "16:9";
|
|
2671
|
+
"9:16": "9:16";
|
|
2672
|
+
"1:1": "1:1";
|
|
2673
|
+
"4:3": "4:3";
|
|
2674
|
+
"3:4": "3:4";
|
|
2064
2675
|
}>>;
|
|
2065
|
-
num_inference_steps: z.ZodOptional<z.ZodNumber>;
|
|
2066
2676
|
seed: z.ZodOptional<z.ZodNumber>;
|
|
2067
|
-
|
|
2068
|
-
enable_safety_checker: z.ZodOptional<z.ZodBoolean>;
|
|
2069
|
-
output_format: z.ZodOptional<z.ZodEnum<{
|
|
2677
|
+
output_format: z.ZodDefault<z.ZodEnum<{
|
|
2070
2678
|
png: "png";
|
|
2071
2679
|
jpeg: "jpeg";
|
|
2072
2680
|
}>>;
|
|
2073
|
-
|
|
2074
|
-
acceleration: z.ZodOptional<z.ZodEnum<{
|
|
2075
|
-
high: "high";
|
|
2076
|
-
none: "none";
|
|
2077
|
-
regular: "regular";
|
|
2078
|
-
}>>;
|
|
2681
|
+
nsfw_checker: z.ZodDefault<z.ZodBoolean>;
|
|
2079
2682
|
}, z.core.$strip>;
|
|
2080
2683
|
}, z.core.$strip>, z.ZodObject<{
|
|
2081
2684
|
model: z.ZodLiteral<"qwen2/image-edit">;
|
|
2082
2685
|
callBackUrl: z.ZodOptional<z.ZodString>;
|
|
2083
2686
|
input: z.ZodObject<{
|
|
2084
2687
|
prompt: z.ZodString;
|
|
2085
|
-
image_url: z.
|
|
2688
|
+
image_url: z.ZodString;
|
|
2086
2689
|
image_size: z.ZodDefault<z.ZodEnum<{
|
|
2087
2690
|
"16:9": "16:9";
|
|
2088
2691
|
"9:16": "9:16";
|
|
@@ -2275,7 +2878,7 @@ export declare const MediaGenerationRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
2275
2878
|
"4:3": "4:3";
|
|
2276
2879
|
"3:4": "3:4";
|
|
2277
2880
|
}>>;
|
|
2278
|
-
duration: z.ZodOptional<z.ZodType<0 | 4 | 2 | 10 |
|
|
2881
|
+
duration: z.ZodOptional<z.ZodType<0 | 4 | 2 | 10 | 5 | 3 | 6 | 8 | 7 | 9, unknown, z.core.$ZodTypeInternals<0 | 4 | 2 | 10 | 5 | 3 | 6 | 8 | 7 | 9, unknown>>>;
|
|
2279
2882
|
audio_setting: z.ZodOptional<z.ZodEnum<{
|
|
2280
2883
|
auto: "auto";
|
|
2281
2884
|
origin: "origin";
|
|
@@ -2508,6 +3111,36 @@ export declare const MediaGenerationRequestSchema: z.ZodUnion<readonly [z.ZodObj
|
|
|
2508
3111
|
align_audio_reverse: z.ZodDefault<z.ZodBoolean>;
|
|
2509
3112
|
templ_start_seconds: z.ZodDefault<z.ZodNumber>;
|
|
2510
3113
|
}, z.core.$strip>;
|
|
3114
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3115
|
+
model: z.ZodLiteral<"gemini-omni-video">;
|
|
3116
|
+
callBackUrl: z.ZodOptional<z.ZodString>;
|
|
3117
|
+
input: z.ZodObject<{
|
|
3118
|
+
prompt: z.ZodString;
|
|
3119
|
+
image_urls: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3120
|
+
audio_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3121
|
+
video_list: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3122
|
+
url: z.ZodString;
|
|
3123
|
+
start: z.ZodNumber;
|
|
3124
|
+
ends: z.ZodNumber;
|
|
3125
|
+
}, z.core.$strip>>>;
|
|
3126
|
+
character_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3127
|
+
duration: z.ZodEnum<{
|
|
3128
|
+
4: "4";
|
|
3129
|
+
6: "6";
|
|
3130
|
+
8: "8";
|
|
3131
|
+
10: "10";
|
|
3132
|
+
}>;
|
|
3133
|
+
aspect_ratio: z.ZodOptional<z.ZodEnum<{
|
|
3134
|
+
"16:9": "16:9";
|
|
3135
|
+
"9:16": "9:16";
|
|
3136
|
+
}>>;
|
|
3137
|
+
seed: z.ZodOptional<z.ZodNumber>;
|
|
3138
|
+
resolution: z.ZodDefault<z.ZodEnum<{
|
|
3139
|
+
"720p": "720p";
|
|
3140
|
+
"1080p": "1080p";
|
|
3141
|
+
"4k": "4k";
|
|
3142
|
+
}>>;
|
|
3143
|
+
}, z.core.$strip>;
|
|
2511
3144
|
}, z.core.$strip>, z.ZodObject<{
|
|
2512
3145
|
model: z.ZodLiteral<"elevenlabs/audio-isolation">;
|
|
2513
3146
|
callBackUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -2614,6 +3247,7 @@ export declare const CreateTaskRequestSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2614
3247
|
"happyhorse-1-1/reference-to-video": "happyhorse-1-1/reference-to-video";
|
|
2615
3248
|
"omnihuman-1-5": "omnihuman-1-5";
|
|
2616
3249
|
"volcengine/video-to-video-lip-sync": "volcengine/video-to-video-lip-sync";
|
|
3250
|
+
"gemini-omni-video": "gemini-omni-video";
|
|
2617
3251
|
"elevenlabs/audio-isolation": "elevenlabs/audio-isolation";
|
|
2618
3252
|
"elevenlabs/text-to-dialogue-v3": "elevenlabs/text-to-dialogue-v3";
|
|
2619
3253
|
"elevenlabs/text-to-speech-multilingual-v2": "elevenlabs/text-to-speech-multilingual-v2";
|
|
@@ -2693,7 +3327,7 @@ export declare const CreateTaskRequestSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2693
3327
|
input: z.ZodObject<{
|
|
2694
3328
|
prompt: z.ZodString;
|
|
2695
3329
|
image_urls: z.ZodArray<z.ZodString>;
|
|
2696
|
-
duration: z.
|
|
3330
|
+
duration: z.ZodString;
|
|
2697
3331
|
resolution: z.ZodEnum<{
|
|
2698
3332
|
"720p": "720p";
|
|
2699
3333
|
"1080p": "1080p";
|
|
@@ -2704,16 +3338,30 @@ export declare const CreateTaskRequestSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2704
3338
|
callBackUrl: z.ZodOptional<z.ZodString>;
|
|
2705
3339
|
input: z.ZodObject<{
|
|
2706
3340
|
prompt: z.ZodString;
|
|
2707
|
-
duration: z.
|
|
2708
|
-
|
|
3341
|
+
duration: z.ZodDefault<z.ZodEnum<{
|
|
3342
|
+
3: "3";
|
|
3343
|
+
4: "4";
|
|
3344
|
+
5: "5";
|
|
3345
|
+
6: "6";
|
|
3346
|
+
7: "7";
|
|
3347
|
+
8: "8";
|
|
3348
|
+
9: "9";
|
|
3349
|
+
10: "10";
|
|
3350
|
+
11: "11";
|
|
3351
|
+
12: "12";
|
|
3352
|
+
13: "13";
|
|
3353
|
+
14: "14";
|
|
3354
|
+
15: "15";
|
|
3355
|
+
}>>;
|
|
3356
|
+
aspect_ratio: z.ZodDefault<z.ZodEnum<{
|
|
2709
3357
|
"16:9": "16:9";
|
|
2710
3358
|
"9:16": "9:16";
|
|
2711
3359
|
"1:1": "1:1";
|
|
2712
|
-
}
|
|
2713
|
-
resolution: z.ZodEnum<{
|
|
3360
|
+
}>>;
|
|
3361
|
+
resolution: z.ZodDefault<z.ZodEnum<{
|
|
2714
3362
|
"720p": "720p";
|
|
2715
3363
|
"1080p": "1080p";
|
|
2716
|
-
}
|
|
3364
|
+
}>>;
|
|
2717
3365
|
}, z.core.$strip>;
|
|
2718
3366
|
}, z.core.$strip>, z.ZodObject<{
|
|
2719
3367
|
model: z.ZodLiteral<"grok-imagine/text-to-image">;
|
|
@@ -2905,8 +3553,8 @@ export declare const CreateTaskRequestSchema: z.ZodPipe<z.ZodObject<{
|
|
|
2905
3553
|
"3:2": "3:2";
|
|
2906
3554
|
}>>;
|
|
2907
3555
|
quality: z.ZodOptional<z.ZodEnum<{
|
|
2908
|
-
medium: "medium";
|
|
2909
3556
|
high: "high";
|
|
3557
|
+
medium: "medium";
|
|
2910
3558
|
}>>;
|
|
2911
3559
|
}, z.core.$strip>;
|
|
2912
3560
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -3013,35 +3661,26 @@ export declare const CreateTaskRequestSchema: z.ZodPipe<z.ZodObject<{
|
|
|
3013
3661
|
callBackUrl: z.ZodOptional<z.ZodString>;
|
|
3014
3662
|
input: z.ZodObject<{
|
|
3015
3663
|
prompt: z.ZodString;
|
|
3016
|
-
image_size: z.
|
|
3017
|
-
|
|
3018
|
-
|
|
3019
|
-
|
|
3020
|
-
|
|
3021
|
-
|
|
3022
|
-
landscape_16_9: "landscape_16_9";
|
|
3664
|
+
image_size: z.ZodDefault<z.ZodEnum<{
|
|
3665
|
+
"16:9": "16:9";
|
|
3666
|
+
"9:16": "9:16";
|
|
3667
|
+
"1:1": "1:1";
|
|
3668
|
+
"4:3": "4:3";
|
|
3669
|
+
"3:4": "3:4";
|
|
3023
3670
|
}>>;
|
|
3024
|
-
num_inference_steps: z.ZodOptional<z.ZodNumber>;
|
|
3025
3671
|
seed: z.ZodOptional<z.ZodNumber>;
|
|
3026
|
-
|
|
3027
|
-
enable_safety_checker: z.ZodOptional<z.ZodBoolean>;
|
|
3028
|
-
output_format: z.ZodOptional<z.ZodEnum<{
|
|
3672
|
+
output_format: z.ZodDefault<z.ZodEnum<{
|
|
3029
3673
|
png: "png";
|
|
3030
3674
|
jpeg: "jpeg";
|
|
3031
3675
|
}>>;
|
|
3032
|
-
|
|
3033
|
-
acceleration: z.ZodOptional<z.ZodEnum<{
|
|
3034
|
-
high: "high";
|
|
3035
|
-
none: "none";
|
|
3036
|
-
regular: "regular";
|
|
3037
|
-
}>>;
|
|
3676
|
+
nsfw_checker: z.ZodDefault<z.ZodBoolean>;
|
|
3038
3677
|
}, z.core.$strip>;
|
|
3039
3678
|
}, z.core.$strip>, z.ZodObject<{
|
|
3040
3679
|
model: z.ZodLiteral<"qwen2/image-edit">;
|
|
3041
3680
|
callBackUrl: z.ZodOptional<z.ZodString>;
|
|
3042
3681
|
input: z.ZodObject<{
|
|
3043
3682
|
prompt: z.ZodString;
|
|
3044
|
-
image_url: z.
|
|
3683
|
+
image_url: z.ZodString;
|
|
3045
3684
|
image_size: z.ZodDefault<z.ZodEnum<{
|
|
3046
3685
|
"16:9": "16:9";
|
|
3047
3686
|
"9:16": "9:16";
|
|
@@ -3234,7 +3873,7 @@ export declare const CreateTaskRequestSchema: z.ZodPipe<z.ZodObject<{
|
|
|
3234
3873
|
"4:3": "4:3";
|
|
3235
3874
|
"3:4": "3:4";
|
|
3236
3875
|
}>>;
|
|
3237
|
-
duration: z.ZodOptional<z.ZodType<0 | 4 | 2 | 10 |
|
|
3876
|
+
duration: z.ZodOptional<z.ZodType<0 | 4 | 2 | 10 | 5 | 3 | 6 | 8 | 7 | 9, unknown, z.core.$ZodTypeInternals<0 | 4 | 2 | 10 | 5 | 3 | 6 | 8 | 7 | 9, unknown>>>;
|
|
3238
3877
|
audio_setting: z.ZodOptional<z.ZodEnum<{
|
|
3239
3878
|
auto: "auto";
|
|
3240
3879
|
origin: "origin";
|
|
@@ -3467,6 +4106,36 @@ export declare const CreateTaskRequestSchema: z.ZodPipe<z.ZodObject<{
|
|
|
3467
4106
|
align_audio_reverse: z.ZodDefault<z.ZodBoolean>;
|
|
3468
4107
|
templ_start_seconds: z.ZodDefault<z.ZodNumber>;
|
|
3469
4108
|
}, z.core.$strip>;
|
|
4109
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4110
|
+
model: z.ZodLiteral<"gemini-omni-video">;
|
|
4111
|
+
callBackUrl: z.ZodOptional<z.ZodString>;
|
|
4112
|
+
input: z.ZodObject<{
|
|
4113
|
+
prompt: z.ZodString;
|
|
4114
|
+
image_urls: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4115
|
+
audio_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4116
|
+
video_list: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4117
|
+
url: z.ZodString;
|
|
4118
|
+
start: z.ZodNumber;
|
|
4119
|
+
ends: z.ZodNumber;
|
|
4120
|
+
}, z.core.$strip>>>;
|
|
4121
|
+
character_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4122
|
+
duration: z.ZodEnum<{
|
|
4123
|
+
4: "4";
|
|
4124
|
+
6: "6";
|
|
4125
|
+
8: "8";
|
|
4126
|
+
10: "10";
|
|
4127
|
+
}>;
|
|
4128
|
+
aspect_ratio: z.ZodOptional<z.ZodEnum<{
|
|
4129
|
+
"16:9": "16:9";
|
|
4130
|
+
"9:16": "9:16";
|
|
4131
|
+
}>>;
|
|
4132
|
+
seed: z.ZodOptional<z.ZodNumber>;
|
|
4133
|
+
resolution: z.ZodDefault<z.ZodEnum<{
|
|
4134
|
+
"720p": "720p";
|
|
4135
|
+
"1080p": "1080p";
|
|
4136
|
+
"4k": "4k";
|
|
4137
|
+
}>>;
|
|
4138
|
+
}, z.core.$strip>;
|
|
3470
4139
|
}, z.core.$strip>, z.ZodObject<{
|
|
3471
4140
|
model: z.ZodLiteral<"elevenlabs/audio-isolation">;
|
|
3472
4141
|
callBackUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -3539,6 +4208,7 @@ export type KlingDuration = z.infer<typeof KlingDurationSchema>;
|
|
|
3539
4208
|
export type KlingAspectRatio = z.infer<typeof KlingAspectRatioSchema>;
|
|
3540
4209
|
export type KlingMode = z.infer<typeof KlingModeSchema>;
|
|
3541
4210
|
export type KlingV3TurboDuration = z.infer<typeof KlingV3TurboDurationSchema>;
|
|
4211
|
+
export type KlingV3TurboTextToVideoDuration = z.infer<typeof KlingV3TurboTextToVideoDurationSchema>;
|
|
3542
4212
|
export type KlingV3TurboResolution = z.infer<typeof KlingV3TurboResolutionSchema>;
|
|
3543
4213
|
export type KlingV3TurboAspectRatio = z.infer<typeof KlingV3TurboAspectRatioSchema>;
|
|
3544
4214
|
export type GrokImagineMode = z.infer<typeof GrokImagineModeSchema>;
|
|
@@ -3555,7 +4225,6 @@ export type NanoBananaResolution = z.infer<typeof NanoBananaResolutionSchema>;
|
|
|
3555
4225
|
export type NanoBananaOutputFormat = z.infer<typeof NanoBananaOutputFormatSchema>;
|
|
3556
4226
|
export type GptImageQuality = z.infer<typeof GptImageQualitySchema>;
|
|
3557
4227
|
export type Qwen2ImageSize = z.infer<typeof Qwen2ImageSizeSchema>;
|
|
3558
|
-
export type Qwen2Acceleration = z.infer<typeof Qwen2AccelerationSchema>;
|
|
3559
4228
|
export type Wan27Resolution = z.infer<typeof Wan27ResolutionSchema>;
|
|
3560
4229
|
export type Wan27AspectRatio = z.infer<typeof Wan27AspectRatioSchema>;
|
|
3561
4230
|
export type Wan27AudioSetting = z.infer<typeof Wan27AudioSettingSchema>;
|
|
@@ -3568,6 +4237,9 @@ export type HappyHorseAudioSetting = z.infer<typeof HappyHorseAudioSettingSchema
|
|
|
3568
4237
|
export type HappyHorseDuration = z.infer<typeof HappyHorseDurationSchema>;
|
|
3569
4238
|
export type Omnihuman15OutputResolution = z.infer<typeof Omnihuman15OutputResolutionSchema>;
|
|
3570
4239
|
export type VolcengineVideoToVideoLipSyncMode = z.infer<typeof VolcengineVideoToVideoLipSyncModeSchema>;
|
|
4240
|
+
export type GeminiOmniVideoDuration = z.infer<typeof GeminiOmniVideoDurationSchema>;
|
|
4241
|
+
export type GeminiOmniVideoAspectRatio = z.infer<typeof GeminiOmniVideoAspectRatioSchema>;
|
|
4242
|
+
export type GeminiOmniVideoResolution = z.infer<typeof GeminiOmniVideoResolutionSchema>;
|
|
3571
4243
|
export type Seedance2MiniResolution = z.infer<typeof Seedance2MiniResolutionSchema>;
|
|
3572
4244
|
export type Seedance2MiniAspectRatio = z.infer<typeof Seedance2MiniAspectRatioSchema>;
|
|
3573
4245
|
export type Seedance2MiniTaskState = z.infer<typeof Seedance2MiniTaskStateSchema>;
|
|
@@ -3575,100 +4247,147 @@ export type KlingElement = z.infer<typeof KlingElementSchema>;
|
|
|
3575
4247
|
export type MultiShotPrompt = z.infer<typeof MultiShotPromptSchema>;
|
|
3576
4248
|
export type Wan27ImageColorPalette = z.infer<typeof Wan27ImageColorPaletteSchema>;
|
|
3577
4249
|
export type KlingVideoRequest = z.input<typeof KlingVideoRequestSchema>;
|
|
4250
|
+
export type KlingVideoRequestInput = KlingVideoRequest;
|
|
3578
4251
|
export type KlingVideoParsedRequest = z.output<typeof KlingVideoRequestSchema>;
|
|
3579
4252
|
export type KlingMotionControlRequest = z.input<typeof KlingMotionControlRequestSchema>;
|
|
4253
|
+
export type KlingMotionControlRequestInput = KlingMotionControlRequest;
|
|
3580
4254
|
export type KlingMotionControlParsedRequest = z.output<typeof KlingMotionControlRequestSchema>;
|
|
3581
4255
|
export type KlingV3TurboImageToVideoRequest = z.input<typeof KlingV3TurboImageToVideoRequestSchema>;
|
|
4256
|
+
export type KlingV3TurboImageToVideoRequestInput = KlingV3TurboImageToVideoRequest;
|
|
3582
4257
|
export type KlingV3TurboImageToVideoParsedRequest = z.output<typeof KlingV3TurboImageToVideoRequestSchema>;
|
|
3583
4258
|
export type KlingV3TurboTextToVideoRequest = z.input<typeof KlingV3TurboTextToVideoRequestSchema>;
|
|
4259
|
+
export type KlingV3TurboTextToVideoRequestInput = KlingV3TurboTextToVideoRequest;
|
|
3584
4260
|
export type KlingV3TurboTextToVideoParsedRequest = z.output<typeof KlingV3TurboTextToVideoRequestSchema>;
|
|
3585
4261
|
export type GrokTextToImageRequest = z.input<typeof GrokTextToImageRequestSchema>;
|
|
4262
|
+
export type GrokTextToImageRequestInput = GrokTextToImageRequest;
|
|
3586
4263
|
export type GrokTextToImageParsedRequest = z.output<typeof GrokTextToImageRequestSchema>;
|
|
3587
4264
|
export type Qwen2TextToImageRequest = z.input<typeof Qwen2TextToImageRequestSchema>;
|
|
4265
|
+
export type Qwen2TextToImageRequestInput = Qwen2TextToImageRequest;
|
|
3588
4266
|
export type Qwen2TextToImageParsedRequest = z.output<typeof Qwen2TextToImageRequestSchema>;
|
|
3589
4267
|
export type Qwen2ImageEditRequest = z.input<typeof Qwen2ImageEditRequestSchema>;
|
|
4268
|
+
export type Qwen2ImageEditRequestInput = Qwen2ImageEditRequest;
|
|
3590
4269
|
export type Qwen2ImageEditParsedRequest = z.output<typeof Qwen2ImageEditRequestSchema>;
|
|
3591
4270
|
export type GrokImageToImageRequest = z.input<typeof GrokImageToImageRequestSchema>;
|
|
4271
|
+
export type GrokImageToImageRequestInput = GrokImageToImageRequest;
|
|
3592
4272
|
export type GrokImageToImageParsedRequest = z.output<typeof GrokImageToImageRequestSchema>;
|
|
3593
4273
|
export type GrokTextToVideoRequest = z.input<typeof GrokTextToVideoRequestSchema>;
|
|
4274
|
+
export type GrokTextToVideoRequestInput = GrokTextToVideoRequest;
|
|
3594
4275
|
export type GrokTextToVideoParsedRequest = z.output<typeof GrokTextToVideoRequestSchema>;
|
|
3595
4276
|
export type GrokImageToVideoRequest = z.input<typeof GrokImageToVideoRequestSchema>;
|
|
4277
|
+
export type GrokImageToVideoRequestInput = GrokImageToVideoRequest;
|
|
3596
4278
|
export type GrokImageToVideoParsedRequest = z.output<typeof GrokImageToVideoRequestSchema>;
|
|
3597
4279
|
export type GrokVideo15PreviewRequest = z.input<typeof GrokVideo15PreviewRequestSchema>;
|
|
4280
|
+
export type GrokVideo15PreviewRequestInput = GrokVideo15PreviewRequest;
|
|
3598
4281
|
export type GrokVideo15PreviewParsedRequest = z.output<typeof GrokVideo15PreviewRequestSchema>;
|
|
3599
4282
|
export type GrokVideoExtendRequest = z.input<typeof GrokVideoExtendRequestSchema>;
|
|
4283
|
+
export type GrokVideoExtendRequestInput = GrokVideoExtendRequest;
|
|
3600
4284
|
export type GrokVideoExtendParsedRequest = z.output<typeof GrokVideoExtendRequestSchema>;
|
|
3601
4285
|
export type GrokVideoUpscaleRequest = z.input<typeof GrokVideoUpscaleRequestSchema>;
|
|
4286
|
+
export type GrokVideoUpscaleRequestInput = GrokVideoUpscaleRequest;
|
|
3602
4287
|
export type GrokVideoUpscaleParsedRequest = z.output<typeof GrokVideoUpscaleRequestSchema>;
|
|
3603
4288
|
export type NanoBananaProRequest = z.input<typeof NanoBananaProRequestSchema>;
|
|
4289
|
+
export type NanoBananaProRequestInput = NanoBananaProRequest;
|
|
3604
4290
|
export type NanoBananaProParsedRequest = z.output<typeof NanoBananaProRequestSchema>;
|
|
3605
4291
|
export type Seedance2FastInput = z.infer<typeof Seedance2FastInputSchema>;
|
|
3606
4292
|
export type Seedance2FastRequest = z.input<typeof Seedance2FastRequestSchema>;
|
|
4293
|
+
export type Seedance2FastRequestInput = Seedance2FastRequest;
|
|
3607
4294
|
export type Seedance2FastParsedRequest = z.output<typeof Seedance2FastRequestSchema>;
|
|
3608
4295
|
export type Seedance2Input = z.infer<typeof Seedance2InputSchema>;
|
|
3609
4296
|
export type Seedance2Request = z.input<typeof Seedance2RequestSchema>;
|
|
4297
|
+
export type Seedance2RequestInput = Seedance2Request;
|
|
3610
4298
|
export type Seedance2ParsedRequest = z.output<typeof Seedance2RequestSchema>;
|
|
3611
4299
|
export type Seedance2MiniInput = z.infer<typeof Seedance2MiniInputSchema>;
|
|
3612
4300
|
export type Seedance2MiniRequest = z.input<typeof Seedance2MiniRequestSchema>;
|
|
4301
|
+
export type Seedance2MiniRequestInput = Seedance2MiniRequest;
|
|
3613
4302
|
export type Seedance2MiniParsedRequest = z.output<typeof Seedance2MiniRequestSchema>;
|
|
3614
4303
|
export type NanoBanana2Request = z.input<typeof NanoBanana2RequestSchema>;
|
|
4304
|
+
export type NanoBanana2RequestInput = NanoBanana2Request;
|
|
3615
4305
|
export type NanoBanana2ParsedRequest = z.output<typeof NanoBanana2RequestSchema>;
|
|
3616
4306
|
export type GptImageToImageRequest = z.input<typeof GptImageToImageRequestSchema>;
|
|
4307
|
+
export type GptImageToImageRequestInput = GptImageToImageRequest;
|
|
3617
4308
|
export type GptImageToImageParsedRequest = z.output<typeof GptImageToImageRequestSchema>;
|
|
3618
4309
|
export type GptImage2ImageToImageAspectRatio = z.infer<typeof GptImage2ImageToImageAspectRatioSchema>;
|
|
3619
4310
|
export type GptImage2ImageToImageResolution = z.infer<typeof GptImage2ImageToImageResolutionSchema>;
|
|
3620
4311
|
export type GptImage2ImageToImageRequest = z.input<typeof GptImage2ImageToImageRequestSchema>;
|
|
4312
|
+
export type GptImage2ImageToImageRequestInput = GptImage2ImageToImageRequest;
|
|
3621
4313
|
export type GptImage2ImageToImageParsedRequest = z.output<typeof GptImage2ImageToImageRequestSchema>;
|
|
3622
4314
|
export type GptImage2TextToImageAspectRatio = z.infer<typeof GptImage2TextToImageAspectRatioSchema>;
|
|
3623
4315
|
export type GptImage2TextToImageResolution = z.infer<typeof GptImage2TextToImageResolutionSchema>;
|
|
3624
4316
|
export type GptImage2TextToImageRequest = z.input<typeof GptImage2TextToImageRequestSchema>;
|
|
4317
|
+
export type GptImage2TextToImageRequestInput = GptImage2TextToImageRequest;
|
|
3625
4318
|
export type GptImage2TextToImageParsedRequest = z.output<typeof GptImage2TextToImageRequestSchema>;
|
|
3626
4319
|
export type SeedreamImageToImageRequest = z.input<typeof SeedreamImageToImageRequestSchema>;
|
|
4320
|
+
export type SeedreamImageToImageRequestInput = SeedreamImageToImageRequest;
|
|
3627
4321
|
export type SeedreamImageToImageParsedRequest = z.output<typeof SeedreamImageToImageRequestSchema>;
|
|
3628
4322
|
export type SeedreamTextToImageRequest = z.input<typeof SeedreamTextToImageRequestSchema>;
|
|
4323
|
+
export type SeedreamTextToImageRequestInput = SeedreamTextToImageRequest;
|
|
3629
4324
|
export type SeedreamTextToImageParsedRequest = z.output<typeof SeedreamTextToImageRequestSchema>;
|
|
3630
4325
|
export type SoraWatermarkRequest = z.input<typeof SoraWatermarkRequestSchema>;
|
|
4326
|
+
export type SoraWatermarkRequestInput = SoraWatermarkRequest;
|
|
3631
4327
|
export type SoraWatermarkParsedRequest = z.output<typeof SoraWatermarkRequestSchema>;
|
|
3632
4328
|
export type Wan27ImageToVideoRequest = z.input<typeof Wan27ImageToVideoRequestSchema>;
|
|
4329
|
+
export type Wan27ImageToVideoRequestInput = Wan27ImageToVideoRequest;
|
|
3633
4330
|
export type Wan27ImageToVideoParsedRequest = z.output<typeof Wan27ImageToVideoRequestSchema>;
|
|
3634
4331
|
export type Wan27TextToVideoRequest = z.input<typeof Wan27TextToVideoRequestSchema>;
|
|
4332
|
+
export type Wan27TextToVideoRequestInput = Wan27TextToVideoRequest;
|
|
3635
4333
|
export type Wan27TextToVideoParsedRequest = z.output<typeof Wan27TextToVideoRequestSchema>;
|
|
3636
4334
|
export type Wan27RefToVideoRequest = z.input<typeof Wan27RefToVideoRequestSchema>;
|
|
4335
|
+
export type Wan27RefToVideoRequestInput = Wan27RefToVideoRequest;
|
|
3637
4336
|
export type Wan27RefToVideoParsedRequest = z.output<typeof Wan27RefToVideoRequestSchema>;
|
|
3638
4337
|
export type Wan27VideoEditRequest = z.input<typeof Wan27VideoEditRequestSchema>;
|
|
4338
|
+
export type Wan27VideoEditRequestInput = Wan27VideoEditRequest;
|
|
3639
4339
|
export type Wan27VideoEditParsedRequest = z.output<typeof Wan27VideoEditRequestSchema>;
|
|
3640
4340
|
export type Wan27ImageRequest = z.input<typeof Wan27ImageRequestSchema>;
|
|
4341
|
+
export type Wan27ImageRequestInput = Wan27ImageRequest;
|
|
3641
4342
|
export type Wan27ImageParsedRequest = z.output<typeof Wan27ImageRequestSchema>;
|
|
3642
4343
|
export type Wan27ImageProRequest = z.input<typeof Wan27ImageProRequestSchema>;
|
|
4344
|
+
export type Wan27ImageProRequestInput = Wan27ImageProRequest;
|
|
3643
4345
|
export type Wan27ImageProParsedRequest = z.output<typeof Wan27ImageProRequestSchema>;
|
|
3644
4346
|
export type HappyHorseTextToVideoRequest = z.input<typeof HappyHorseTextToVideoRequestSchema>;
|
|
4347
|
+
export type HappyHorseTextToVideoRequestInput = HappyHorseTextToVideoRequest;
|
|
3645
4348
|
export type HappyHorseTextToVideoParsedRequest = z.output<typeof HappyHorseTextToVideoRequestSchema>;
|
|
3646
4349
|
export type HappyHorseImageToVideoRequest = z.input<typeof HappyHorseImageToVideoRequestSchema>;
|
|
4350
|
+
export type HappyHorseImageToVideoRequestInput = HappyHorseImageToVideoRequest;
|
|
3647
4351
|
export type HappyHorseImageToVideoParsedRequest = z.output<typeof HappyHorseImageToVideoRequestSchema>;
|
|
3648
4352
|
export type HappyHorseReferenceToVideoRequest = z.input<typeof HappyHorseReferenceToVideoRequestSchema>;
|
|
4353
|
+
export type HappyHorseReferenceToVideoRequestInput = HappyHorseReferenceToVideoRequest;
|
|
3649
4354
|
export type HappyHorseReferenceToVideoParsedRequest = z.output<typeof HappyHorseReferenceToVideoRequestSchema>;
|
|
3650
4355
|
export type HappyHorseVideoEditRequest = z.input<typeof HappyHorseVideoEditRequestSchema>;
|
|
4356
|
+
export type HappyHorseVideoEditRequestInput = HappyHorseVideoEditRequest;
|
|
3651
4357
|
export type HappyHorseVideoEditParsedRequest = z.output<typeof HappyHorseVideoEditRequestSchema>;
|
|
3652
4358
|
export type HappyHorse11TextToVideoRequest = z.input<typeof HappyHorse11TextToVideoRequestSchema>;
|
|
4359
|
+
export type HappyHorse11TextToVideoRequestInput = HappyHorse11TextToVideoRequest;
|
|
3653
4360
|
export type HappyHorse11TextToVideoParsedRequest = z.output<typeof HappyHorse11TextToVideoRequestSchema>;
|
|
3654
4361
|
export type HappyHorse11ImageToVideoRequest = z.input<typeof HappyHorse11ImageToVideoRequestSchema>;
|
|
4362
|
+
export type HappyHorse11ImageToVideoRequestInput = HappyHorse11ImageToVideoRequest;
|
|
3655
4363
|
export type HappyHorse11ImageToVideoParsedRequest = z.output<typeof HappyHorse11ImageToVideoRequestSchema>;
|
|
3656
4364
|
export type HappyHorse11ReferenceToVideoRequest = z.input<typeof HappyHorse11ReferenceToVideoRequestSchema>;
|
|
4365
|
+
export type HappyHorse11ReferenceToVideoRequestInput = HappyHorse11ReferenceToVideoRequest;
|
|
3657
4366
|
export type HappyHorse11ReferenceToVideoParsedRequest = z.output<typeof HappyHorse11ReferenceToVideoRequestSchema>;
|
|
3658
4367
|
export type HappyHorse11CreateTaskResponse = z.infer<typeof HappyHorse11CreateTaskResponseSchema>;
|
|
3659
4368
|
export type Omnihuman15Request = z.input<typeof Omnihuman15RequestSchema>;
|
|
4369
|
+
export type Omnihuman15RequestInput = Omnihuman15Request;
|
|
3660
4370
|
export type Omnihuman15ParsedRequest = z.output<typeof Omnihuman15RequestSchema>;
|
|
3661
4371
|
export type VolcengineVideoToVideoLipSyncRequest = z.input<typeof VolcengineVideoToVideoLipSyncRequestSchema>;
|
|
4372
|
+
export type VolcengineVideoToVideoLipSyncRequestInput = VolcengineVideoToVideoLipSyncRequest;
|
|
3662
4373
|
export type VolcengineVideoToVideoLipSyncParsedRequest = z.output<typeof VolcengineVideoToVideoLipSyncRequestSchema>;
|
|
4374
|
+
export type GeminiOmniVideoRequest = z.input<typeof GeminiOmniVideoRequestSchema>;
|
|
4375
|
+
export type GeminiOmniVideoRequestInput = GeminiOmniVideoRequest;
|
|
4376
|
+
export type GeminiOmniVideoParsedRequest = z.output<typeof GeminiOmniVideoRequestSchema>;
|
|
3663
4377
|
export type ElevenLabsAudioIsolationRequest = z.input<typeof ElevenLabsAudioIsolationRequestSchema>;
|
|
4378
|
+
export type ElevenLabsAudioIsolationRequestInput = ElevenLabsAudioIsolationRequest;
|
|
3664
4379
|
export type ElevenLabsAudioIsolationParsedRequest = z.output<typeof ElevenLabsAudioIsolationRequestSchema>;
|
|
3665
4380
|
export type ElevenLabsTextToDialogueV3Request = z.input<typeof ElevenLabsTextToDialogueV3RequestSchema>;
|
|
4381
|
+
export type ElevenLabsTextToDialogueV3RequestInput = ElevenLabsTextToDialogueV3Request;
|
|
3666
4382
|
export type ElevenLabsTextToDialogueV3ParsedRequest = z.output<typeof ElevenLabsTextToDialogueV3RequestSchema>;
|
|
3667
4383
|
export type ElevenLabsTextToSpeechMultilingualV2Request = z.input<typeof ElevenLabsTextToSpeechMultilingualV2RequestSchema>;
|
|
4384
|
+
export type ElevenLabsTextToSpeechMultilingualV2RequestInput = ElevenLabsTextToSpeechMultilingualV2Request;
|
|
3668
4385
|
export type ElevenLabsTextToSpeechMultilingualV2ParsedRequest = z.output<typeof ElevenLabsTextToSpeechMultilingualV2RequestSchema>;
|
|
3669
4386
|
export type ElevenLabsTextToSpeechTurbo25Request = z.input<typeof ElevenLabsTextToSpeechTurbo25RequestSchema>;
|
|
4387
|
+
export type ElevenLabsTextToSpeechTurbo25RequestInput = ElevenLabsTextToSpeechTurbo25Request;
|
|
3670
4388
|
export type ElevenLabsTextToSpeechTurbo25ParsedRequest = z.output<typeof ElevenLabsTextToSpeechTurbo25RequestSchema>;
|
|
3671
4389
|
export type ElevenLabsSoundEffectV2Request = z.input<typeof ElevenLabsSoundEffectV2RequestSchema>;
|
|
4390
|
+
export type ElevenLabsSoundEffectV2RequestInput = ElevenLabsSoundEffectV2Request;
|
|
3672
4391
|
export type ElevenLabsSoundEffectV2ParsedRequest = z.output<typeof ElevenLabsSoundEffectV2RequestSchema>;
|
|
3673
4392
|
export type Wan27TaskResultJson = z.infer<typeof Wan27TaskResultJsonSchema>;
|
|
3674
4393
|
export type Wan27VideoResult = z.infer<typeof Wan27VideoResultSchema>;
|
|
@@ -3677,18 +4396,47 @@ export type Seedance2MiniTaskResultJson = z.infer<typeof Seedance2MiniTaskResult
|
|
|
3677
4396
|
export type Seedance2MiniRecordInfoData = z.infer<typeof Seedance2MiniRecordInfoDataSchema>;
|
|
3678
4397
|
export type Seedance2MiniRecordInfoResponse = z.infer<typeof Seedance2MiniRecordInfoResponseSchema>;
|
|
3679
4398
|
export type RecordInfoRequest = z.input<typeof RecordInfoRequestSchema>;
|
|
4399
|
+
export type RecordInfoRequestInput = RecordInfoRequest;
|
|
3680
4400
|
export type TaskResponseParsed = z.output<typeof TaskResponseSchema>;
|
|
3681
4401
|
export type UploadMediaRequest = z.input<typeof UploadMediaRequestSchema>;
|
|
4402
|
+
export type UploadMediaRequestInput = UploadMediaRequest;
|
|
3682
4403
|
export type UploadMediaParsedRequest = z.output<typeof UploadMediaRequestSchema>;
|
|
3683
4404
|
export type FileUrlUploadRequest = z.input<typeof FileUrlUploadRequestSchema>;
|
|
4405
|
+
export type FileUrlUploadRequestInput = FileUrlUploadRequest;
|
|
3684
4406
|
export type FileUrlUploadParsedRequest = z.output<typeof FileUrlUploadRequestSchema>;
|
|
3685
4407
|
export type FileBase64UploadRequest = z.input<typeof FileBase64UploadRequestSchema>;
|
|
4408
|
+
export type FileBase64UploadRequestInput = FileBase64UploadRequest;
|
|
3686
4409
|
export type FileBase64UploadParsedRequest = z.output<typeof FileBase64UploadRequestSchema>;
|
|
3687
4410
|
export type DownloadUrlRequest = z.input<typeof DownloadUrlRequestSchema>;
|
|
4411
|
+
export type DownloadUrlRequestInput = DownloadUrlRequest;
|
|
3688
4412
|
export type DownloadUrlParsedRequest = z.output<typeof DownloadUrlRequestSchema>;
|
|
4413
|
+
export type GeminiOmniAudioVoiceId = z.infer<typeof GeminiOmniAudioVoiceIdSchema>;
|
|
3689
4414
|
export type GeminiOmniAudioCreateRequest = z.input<typeof GeminiOmniAudioCreateRequestSchema>;
|
|
4415
|
+
export type GeminiOmniAudioCreateRequestInput = GeminiOmniAudioCreateRequest;
|
|
3690
4416
|
export type GeminiOmniAudioCreateParsedRequest = z.output<typeof GeminiOmniAudioCreateRequestSchema>;
|
|
4417
|
+
export type GeminiOmniCharacterCreateRequest = z.input<typeof GeminiOmniCharacterCreateRequestSchema>;
|
|
4418
|
+
export type GeminiOmniCharacterCreateRequestInput = GeminiOmniCharacterCreateRequest;
|
|
4419
|
+
export type GeminiOmniCharacterCreateParsedRequest = z.output<typeof GeminiOmniCharacterCreateRequestSchema>;
|
|
4420
|
+
export type GeminiOmniCharacterCreateData = z.output<typeof GeminiOmniCharacterCreateDataSchema>;
|
|
4421
|
+
export type GeminiOmniCharacterCreateResponse = z.output<typeof GeminiOmniCharacterCreateResponseSchema>;
|
|
4422
|
+
export type KieGeminiRole = z.infer<typeof KieGeminiRoleSchema>;
|
|
4423
|
+
export type KieGeminiThinkingLevel = z.infer<typeof KieGeminiThinkingLevelSchema>;
|
|
4424
|
+
export type KieGeminiInlineData = z.infer<typeof KieGeminiInlineDataSchema>;
|
|
4425
|
+
export type KieGeminiFileData = z.infer<typeof KieGeminiFileDataSchema>;
|
|
4426
|
+
export type KieGeminiPart = z.infer<typeof KieGeminiPartSchema>;
|
|
4427
|
+
export type KieGeminiContent = z.infer<typeof KieGeminiContentSchema>;
|
|
4428
|
+
export type KieGeminiFunctionParameters = z.infer<typeof KieGeminiFunctionParametersSchema>;
|
|
4429
|
+
export type KieGeminiFunctionDeclaration = z.infer<typeof KieGeminiFunctionDeclarationSchema>;
|
|
4430
|
+
export type KieGeminiGoogleSearch = z.infer<typeof KieGeminiGoogleSearchSchema>;
|
|
4431
|
+
export type KieGeminiGoogleSearchTool = z.infer<typeof KieGeminiGoogleSearchToolSchema>;
|
|
4432
|
+
export type KieGeminiFunctionDeclarationsTool = z.infer<typeof KieGeminiFunctionDeclarationsToolSchema>;
|
|
4433
|
+
export type KieGeminiTool = z.infer<typeof KieGeminiToolSchema>;
|
|
4434
|
+
export type KieGeminiThinkingConfig = z.infer<typeof KieGeminiThinkingConfigSchema>;
|
|
4435
|
+
export type KieGeminiGenerationConfig = z.infer<typeof KieGeminiGenerationConfigSchema>;
|
|
4436
|
+
export type KieGemini35FlashStreamGenerateContentRequest = z.input<typeof KieGemini35FlashStreamGenerateContentRequestSchema>;
|
|
4437
|
+
export type KieGemini35FlashStreamGenerateContentParsedRequest = z.output<typeof KieGemini35FlashStreamGenerateContentRequestSchema>;
|
|
3691
4438
|
export type KieOptions = z.infer<typeof KieOptionsSchema>;
|
|
3692
4439
|
export type MediaGenerationRequest = z.input<typeof MediaGenerationRequestSchema>;
|
|
4440
|
+
export type MediaGenerationRequestInput = MediaGenerationRequest;
|
|
3693
4441
|
export type MediaGenerationParsedRequest = z.output<typeof MediaGenerationRequestSchema>;
|
|
3694
4442
|
//# sourceMappingURL=zod.d.ts.map
|