@openloaf-saas/sdk 0.1.27 → 0.1.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +959 -215
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -169,6 +169,7 @@ declare class SaaSContract {
|
|
|
169
169
|
features: {
|
|
170
170
|
id: string;
|
|
171
171
|
displayName: string;
|
|
172
|
+
description: string;
|
|
172
173
|
variants: {
|
|
173
174
|
id: string;
|
|
174
175
|
featureTabName: string;
|
|
@@ -198,6 +199,7 @@ declare class SaaSContract {
|
|
|
198
199
|
visibleWhen?: unknown;
|
|
199
200
|
clientOnly?: boolean | undefined;
|
|
200
201
|
hint?: string | undefined;
|
|
202
|
+
required?: boolean | undefined;
|
|
201
203
|
options?: {
|
|
202
204
|
value: string | number | boolean;
|
|
203
205
|
label: string;
|
|
@@ -206,6 +208,21 @@ declare class SaaSContract {
|
|
|
206
208
|
catalog?: string | undefined;
|
|
207
209
|
display?: "dropdown" | "grid" | "pills" | undefined;
|
|
208
210
|
searchable?: boolean | undefined;
|
|
211
|
+
} | {
|
|
212
|
+
key: string;
|
|
213
|
+
label: string;
|
|
214
|
+
type: "tab";
|
|
215
|
+
options: {
|
|
216
|
+
value: string | number | boolean;
|
|
217
|
+
label: string;
|
|
218
|
+
thumbnail?: string | undefined;
|
|
219
|
+
}[];
|
|
220
|
+
default?: unknown;
|
|
221
|
+
group?: "primary" | "advanced" | undefined;
|
|
222
|
+
visibleWhen?: unknown;
|
|
223
|
+
clientOnly?: boolean | undefined;
|
|
224
|
+
hint?: string | undefined;
|
|
225
|
+
required?: boolean | undefined;
|
|
209
226
|
} | {
|
|
210
227
|
key: string;
|
|
211
228
|
label: string;
|
|
@@ -215,6 +232,7 @@ declare class SaaSContract {
|
|
|
215
232
|
visibleWhen?: unknown;
|
|
216
233
|
clientOnly?: boolean | undefined;
|
|
217
234
|
hint?: string | undefined;
|
|
235
|
+
required?: boolean | undefined;
|
|
218
236
|
} | {
|
|
219
237
|
key: string;
|
|
220
238
|
label: string;
|
|
@@ -224,8 +242,11 @@ declare class SaaSContract {
|
|
|
224
242
|
visibleWhen?: unknown;
|
|
225
243
|
clientOnly?: boolean | undefined;
|
|
226
244
|
hint?: string | undefined;
|
|
245
|
+
required?: boolean | undefined;
|
|
227
246
|
multiline?: boolean | undefined;
|
|
228
247
|
placeholder?: string | undefined;
|
|
248
|
+
minLength?: number | undefined;
|
|
249
|
+
maxLength?: number | undefined;
|
|
229
250
|
} | {
|
|
230
251
|
key: string;
|
|
231
252
|
label: string;
|
|
@@ -237,6 +258,7 @@ declare class SaaSContract {
|
|
|
237
258
|
visibleWhen?: unknown;
|
|
238
259
|
clientOnly?: boolean | undefined;
|
|
239
260
|
hint?: string | undefined;
|
|
261
|
+
required?: boolean | undefined;
|
|
240
262
|
step?: number | undefined;
|
|
241
263
|
} | {
|
|
242
264
|
key: string;
|
|
@@ -247,6 +269,7 @@ declare class SaaSContract {
|
|
|
247
269
|
visibleWhen?: unknown;
|
|
248
270
|
clientOnly?: boolean | undefined;
|
|
249
271
|
hint?: string | undefined;
|
|
272
|
+
required?: boolean | undefined;
|
|
250
273
|
min?: number | undefined;
|
|
251
274
|
max?: number | undefined;
|
|
252
275
|
step?: number | undefined;
|
|
@@ -255,6 +278,7 @@ declare class SaaSContract {
|
|
|
255
278
|
role: string;
|
|
256
279
|
accept: "text" | "file" | "image" | "audio" | "video";
|
|
257
280
|
label: string;
|
|
281
|
+
key?: string | undefined;
|
|
258
282
|
required?: boolean | undefined;
|
|
259
283
|
minCount?: number | undefined;
|
|
260
284
|
maxCount?: number | undefined;
|
|
@@ -284,6 +308,7 @@ declare class SaaSContract {
|
|
|
284
308
|
features: {
|
|
285
309
|
id: string;
|
|
286
310
|
displayName: string;
|
|
311
|
+
description: string;
|
|
287
312
|
variants: {
|
|
288
313
|
id: string;
|
|
289
314
|
featureTabName: string;
|
|
@@ -313,6 +338,7 @@ declare class SaaSContract {
|
|
|
313
338
|
visibleWhen?: unknown;
|
|
314
339
|
clientOnly?: boolean | undefined;
|
|
315
340
|
hint?: string | undefined;
|
|
341
|
+
required?: boolean | undefined;
|
|
316
342
|
options?: {
|
|
317
343
|
value: string | number | boolean;
|
|
318
344
|
label: string;
|
|
@@ -321,6 +347,21 @@ declare class SaaSContract {
|
|
|
321
347
|
catalog?: string | undefined;
|
|
322
348
|
display?: "dropdown" | "grid" | "pills" | undefined;
|
|
323
349
|
searchable?: boolean | undefined;
|
|
350
|
+
} | {
|
|
351
|
+
key: string;
|
|
352
|
+
label: string;
|
|
353
|
+
type: "tab";
|
|
354
|
+
options: {
|
|
355
|
+
value: string | number | boolean;
|
|
356
|
+
label: string;
|
|
357
|
+
thumbnail?: string | undefined;
|
|
358
|
+
}[];
|
|
359
|
+
default?: unknown;
|
|
360
|
+
group?: "primary" | "advanced" | undefined;
|
|
361
|
+
visibleWhen?: unknown;
|
|
362
|
+
clientOnly?: boolean | undefined;
|
|
363
|
+
hint?: string | undefined;
|
|
364
|
+
required?: boolean | undefined;
|
|
324
365
|
} | {
|
|
325
366
|
key: string;
|
|
326
367
|
label: string;
|
|
@@ -330,6 +371,7 @@ declare class SaaSContract {
|
|
|
330
371
|
visibleWhen?: unknown;
|
|
331
372
|
clientOnly?: boolean | undefined;
|
|
332
373
|
hint?: string | undefined;
|
|
374
|
+
required?: boolean | undefined;
|
|
333
375
|
} | {
|
|
334
376
|
key: string;
|
|
335
377
|
label: string;
|
|
@@ -339,8 +381,11 @@ declare class SaaSContract {
|
|
|
339
381
|
visibleWhen?: unknown;
|
|
340
382
|
clientOnly?: boolean | undefined;
|
|
341
383
|
hint?: string | undefined;
|
|
384
|
+
required?: boolean | undefined;
|
|
342
385
|
multiline?: boolean | undefined;
|
|
343
386
|
placeholder?: string | undefined;
|
|
387
|
+
minLength?: number | undefined;
|
|
388
|
+
maxLength?: number | undefined;
|
|
344
389
|
} | {
|
|
345
390
|
key: string;
|
|
346
391
|
label: string;
|
|
@@ -352,6 +397,7 @@ declare class SaaSContract {
|
|
|
352
397
|
visibleWhen?: unknown;
|
|
353
398
|
clientOnly?: boolean | undefined;
|
|
354
399
|
hint?: string | undefined;
|
|
400
|
+
required?: boolean | undefined;
|
|
355
401
|
step?: number | undefined;
|
|
356
402
|
} | {
|
|
357
403
|
key: string;
|
|
@@ -362,6 +408,7 @@ declare class SaaSContract {
|
|
|
362
408
|
visibleWhen?: unknown;
|
|
363
409
|
clientOnly?: boolean | undefined;
|
|
364
410
|
hint?: string | undefined;
|
|
411
|
+
required?: boolean | undefined;
|
|
365
412
|
min?: number | undefined;
|
|
366
413
|
max?: number | undefined;
|
|
367
414
|
step?: number | undefined;
|
|
@@ -370,6 +417,7 @@ declare class SaaSContract {
|
|
|
370
417
|
role: string;
|
|
371
418
|
accept: "text" | "file" | "image" | "audio" | "video";
|
|
372
419
|
label: string;
|
|
420
|
+
key?: string | undefined;
|
|
373
421
|
required?: boolean | undefined;
|
|
374
422
|
minCount?: number | undefined;
|
|
375
423
|
maxCount?: number | undefined;
|
|
@@ -399,6 +447,7 @@ declare class SaaSContract {
|
|
|
399
447
|
features: {
|
|
400
448
|
id: string;
|
|
401
449
|
displayName: string;
|
|
450
|
+
description: string;
|
|
402
451
|
variants: {
|
|
403
452
|
id: string;
|
|
404
453
|
featureTabName: string;
|
|
@@ -428,6 +477,7 @@ declare class SaaSContract {
|
|
|
428
477
|
visibleWhen?: unknown;
|
|
429
478
|
clientOnly?: boolean | undefined;
|
|
430
479
|
hint?: string | undefined;
|
|
480
|
+
required?: boolean | undefined;
|
|
431
481
|
options?: {
|
|
432
482
|
value: string | number | boolean;
|
|
433
483
|
label: string;
|
|
@@ -436,6 +486,21 @@ declare class SaaSContract {
|
|
|
436
486
|
catalog?: string | undefined;
|
|
437
487
|
display?: "dropdown" | "grid" | "pills" | undefined;
|
|
438
488
|
searchable?: boolean | undefined;
|
|
489
|
+
} | {
|
|
490
|
+
key: string;
|
|
491
|
+
label: string;
|
|
492
|
+
type: "tab";
|
|
493
|
+
options: {
|
|
494
|
+
value: string | number | boolean;
|
|
495
|
+
label: string;
|
|
496
|
+
thumbnail?: string | undefined;
|
|
497
|
+
}[];
|
|
498
|
+
default?: unknown;
|
|
499
|
+
group?: "primary" | "advanced" | undefined;
|
|
500
|
+
visibleWhen?: unknown;
|
|
501
|
+
clientOnly?: boolean | undefined;
|
|
502
|
+
hint?: string | undefined;
|
|
503
|
+
required?: boolean | undefined;
|
|
439
504
|
} | {
|
|
440
505
|
key: string;
|
|
441
506
|
label: string;
|
|
@@ -445,6 +510,7 @@ declare class SaaSContract {
|
|
|
445
510
|
visibleWhen?: unknown;
|
|
446
511
|
clientOnly?: boolean | undefined;
|
|
447
512
|
hint?: string | undefined;
|
|
513
|
+
required?: boolean | undefined;
|
|
448
514
|
} | {
|
|
449
515
|
key: string;
|
|
450
516
|
label: string;
|
|
@@ -454,8 +520,11 @@ declare class SaaSContract {
|
|
|
454
520
|
visibleWhen?: unknown;
|
|
455
521
|
clientOnly?: boolean | undefined;
|
|
456
522
|
hint?: string | undefined;
|
|
523
|
+
required?: boolean | undefined;
|
|
457
524
|
multiline?: boolean | undefined;
|
|
458
525
|
placeholder?: string | undefined;
|
|
526
|
+
minLength?: number | undefined;
|
|
527
|
+
maxLength?: number | undefined;
|
|
459
528
|
} | {
|
|
460
529
|
key: string;
|
|
461
530
|
label: string;
|
|
@@ -467,6 +536,7 @@ declare class SaaSContract {
|
|
|
467
536
|
visibleWhen?: unknown;
|
|
468
537
|
clientOnly?: boolean | undefined;
|
|
469
538
|
hint?: string | undefined;
|
|
539
|
+
required?: boolean | undefined;
|
|
470
540
|
step?: number | undefined;
|
|
471
541
|
} | {
|
|
472
542
|
key: string;
|
|
@@ -477,6 +547,7 @@ declare class SaaSContract {
|
|
|
477
547
|
visibleWhen?: unknown;
|
|
478
548
|
clientOnly?: boolean | undefined;
|
|
479
549
|
hint?: string | undefined;
|
|
550
|
+
required?: boolean | undefined;
|
|
480
551
|
min?: number | undefined;
|
|
481
552
|
max?: number | undefined;
|
|
482
553
|
step?: number | undefined;
|
|
@@ -485,6 +556,7 @@ declare class SaaSContract {
|
|
|
485
556
|
role: string;
|
|
486
557
|
accept: "text" | "file" | "image" | "audio" | "video";
|
|
487
558
|
label: string;
|
|
559
|
+
key?: string | undefined;
|
|
488
560
|
required?: boolean | undefined;
|
|
489
561
|
minCount?: number | undefined;
|
|
490
562
|
maxCount?: number | undefined;
|
|
@@ -514,7 +586,6 @@ declare class SaaSContract {
|
|
|
514
586
|
inputs?: Record<string, unknown> | undefined;
|
|
515
587
|
params?: Record<string, unknown> | undefined;
|
|
516
588
|
count?: number | undefined;
|
|
517
|
-
seed?: number | undefined;
|
|
518
589
|
}, {
|
|
519
590
|
success: true;
|
|
520
591
|
data: {
|
|
@@ -780,6 +851,38 @@ declare class SaaSContract {
|
|
|
780
851
|
};
|
|
781
852
|
}>;
|
|
782
853
|
};
|
|
854
|
+
/** Redeem code endpoints. */
|
|
855
|
+
readonly redeemCode: {
|
|
856
|
+
readonly redeem: Endpoint<{
|
|
857
|
+
code: string;
|
|
858
|
+
}, {
|
|
859
|
+
id: string;
|
|
860
|
+
code: string;
|
|
861
|
+
title: string;
|
|
862
|
+
creditsAmount: number;
|
|
863
|
+
newBalance: number;
|
|
864
|
+
createdAt: string;
|
|
865
|
+
}>;
|
|
866
|
+
readonly records: Endpoint<{
|
|
867
|
+
page: number;
|
|
868
|
+
pageSize: number;
|
|
869
|
+
}, {
|
|
870
|
+
items: {
|
|
871
|
+
id: string;
|
|
872
|
+
creditsAmount: number;
|
|
873
|
+
createdAt: string;
|
|
874
|
+
redeemCode: {
|
|
875
|
+
id: string;
|
|
876
|
+
code: string;
|
|
877
|
+
title: string;
|
|
878
|
+
};
|
|
879
|
+
}[];
|
|
880
|
+
total: number;
|
|
881
|
+
page: number;
|
|
882
|
+
pageSize: number;
|
|
883
|
+
pageCount: number;
|
|
884
|
+
}>;
|
|
885
|
+
};
|
|
783
886
|
/** Skill market endpoints. */
|
|
784
887
|
readonly skills: {
|
|
785
888
|
readonly list: Endpoint<{
|
|
@@ -872,6 +975,7 @@ declare class SaaSContract {
|
|
|
872
975
|
provider: string;
|
|
873
976
|
membershipLevel: "free" | "lite" | "pro" | "premium";
|
|
874
977
|
creditsBalance: number;
|
|
978
|
+
isAdmin: boolean;
|
|
875
979
|
createdAt: string;
|
|
876
980
|
updatedAt: string;
|
|
877
981
|
email?: string | undefined;
|
|
@@ -1094,6 +1198,7 @@ declare const aiEndpoints: {
|
|
|
1094
1198
|
features: {
|
|
1095
1199
|
id: string;
|
|
1096
1200
|
displayName: string;
|
|
1201
|
+
description: string;
|
|
1097
1202
|
variants: {
|
|
1098
1203
|
id: string;
|
|
1099
1204
|
featureTabName: string;
|
|
@@ -1123,6 +1228,7 @@ declare const aiEndpoints: {
|
|
|
1123
1228
|
visibleWhen?: unknown;
|
|
1124
1229
|
clientOnly?: boolean | undefined;
|
|
1125
1230
|
hint?: string | undefined;
|
|
1231
|
+
required?: boolean | undefined;
|
|
1126
1232
|
options?: {
|
|
1127
1233
|
value: string | number | boolean;
|
|
1128
1234
|
label: string;
|
|
@@ -1131,6 +1237,21 @@ declare const aiEndpoints: {
|
|
|
1131
1237
|
catalog?: string | undefined;
|
|
1132
1238
|
display?: "dropdown" | "grid" | "pills" | undefined;
|
|
1133
1239
|
searchable?: boolean | undefined;
|
|
1240
|
+
} | {
|
|
1241
|
+
key: string;
|
|
1242
|
+
label: string;
|
|
1243
|
+
type: "tab";
|
|
1244
|
+
options: {
|
|
1245
|
+
value: string | number | boolean;
|
|
1246
|
+
label: string;
|
|
1247
|
+
thumbnail?: string | undefined;
|
|
1248
|
+
}[];
|
|
1249
|
+
default?: unknown;
|
|
1250
|
+
group?: "primary" | "advanced" | undefined;
|
|
1251
|
+
visibleWhen?: unknown;
|
|
1252
|
+
clientOnly?: boolean | undefined;
|
|
1253
|
+
hint?: string | undefined;
|
|
1254
|
+
required?: boolean | undefined;
|
|
1134
1255
|
} | {
|
|
1135
1256
|
key: string;
|
|
1136
1257
|
label: string;
|
|
@@ -1140,6 +1261,7 @@ declare const aiEndpoints: {
|
|
|
1140
1261
|
visibleWhen?: unknown;
|
|
1141
1262
|
clientOnly?: boolean | undefined;
|
|
1142
1263
|
hint?: string | undefined;
|
|
1264
|
+
required?: boolean | undefined;
|
|
1143
1265
|
} | {
|
|
1144
1266
|
key: string;
|
|
1145
1267
|
label: string;
|
|
@@ -1149,8 +1271,11 @@ declare const aiEndpoints: {
|
|
|
1149
1271
|
visibleWhen?: unknown;
|
|
1150
1272
|
clientOnly?: boolean | undefined;
|
|
1151
1273
|
hint?: string | undefined;
|
|
1274
|
+
required?: boolean | undefined;
|
|
1152
1275
|
multiline?: boolean | undefined;
|
|
1153
1276
|
placeholder?: string | undefined;
|
|
1277
|
+
minLength?: number | undefined;
|
|
1278
|
+
maxLength?: number | undefined;
|
|
1154
1279
|
} | {
|
|
1155
1280
|
key: string;
|
|
1156
1281
|
label: string;
|
|
@@ -1162,6 +1287,7 @@ declare const aiEndpoints: {
|
|
|
1162
1287
|
visibleWhen?: unknown;
|
|
1163
1288
|
clientOnly?: boolean | undefined;
|
|
1164
1289
|
hint?: string | undefined;
|
|
1290
|
+
required?: boolean | undefined;
|
|
1165
1291
|
step?: number | undefined;
|
|
1166
1292
|
} | {
|
|
1167
1293
|
key: string;
|
|
@@ -1172,6 +1298,7 @@ declare const aiEndpoints: {
|
|
|
1172
1298
|
visibleWhen?: unknown;
|
|
1173
1299
|
clientOnly?: boolean | undefined;
|
|
1174
1300
|
hint?: string | undefined;
|
|
1301
|
+
required?: boolean | undefined;
|
|
1175
1302
|
min?: number | undefined;
|
|
1176
1303
|
max?: number | undefined;
|
|
1177
1304
|
step?: number | undefined;
|
|
@@ -1180,6 +1307,7 @@ declare const aiEndpoints: {
|
|
|
1180
1307
|
role: string;
|
|
1181
1308
|
accept: "text" | "file" | "image" | "audio" | "video";
|
|
1182
1309
|
label: string;
|
|
1310
|
+
key?: string | undefined;
|
|
1183
1311
|
required?: boolean | undefined;
|
|
1184
1312
|
minCount?: number | undefined;
|
|
1185
1313
|
maxCount?: number | undefined;
|
|
@@ -1210,6 +1338,7 @@ declare const aiEndpoints: {
|
|
|
1210
1338
|
features: {
|
|
1211
1339
|
id: string;
|
|
1212
1340
|
displayName: string;
|
|
1341
|
+
description: string;
|
|
1213
1342
|
variants: {
|
|
1214
1343
|
id: string;
|
|
1215
1344
|
featureTabName: string;
|
|
@@ -1239,6 +1368,7 @@ declare const aiEndpoints: {
|
|
|
1239
1368
|
visibleWhen?: unknown;
|
|
1240
1369
|
clientOnly?: boolean | undefined;
|
|
1241
1370
|
hint?: string | undefined;
|
|
1371
|
+
required?: boolean | undefined;
|
|
1242
1372
|
options?: {
|
|
1243
1373
|
value: string | number | boolean;
|
|
1244
1374
|
label: string;
|
|
@@ -1247,6 +1377,21 @@ declare const aiEndpoints: {
|
|
|
1247
1377
|
catalog?: string | undefined;
|
|
1248
1378
|
display?: "dropdown" | "grid" | "pills" | undefined;
|
|
1249
1379
|
searchable?: boolean | undefined;
|
|
1380
|
+
} | {
|
|
1381
|
+
key: string;
|
|
1382
|
+
label: string;
|
|
1383
|
+
type: "tab";
|
|
1384
|
+
options: {
|
|
1385
|
+
value: string | number | boolean;
|
|
1386
|
+
label: string;
|
|
1387
|
+
thumbnail?: string | undefined;
|
|
1388
|
+
}[];
|
|
1389
|
+
default?: unknown;
|
|
1390
|
+
group?: "primary" | "advanced" | undefined;
|
|
1391
|
+
visibleWhen?: unknown;
|
|
1392
|
+
clientOnly?: boolean | undefined;
|
|
1393
|
+
hint?: string | undefined;
|
|
1394
|
+
required?: boolean | undefined;
|
|
1250
1395
|
} | {
|
|
1251
1396
|
key: string;
|
|
1252
1397
|
label: string;
|
|
@@ -1256,6 +1401,7 @@ declare const aiEndpoints: {
|
|
|
1256
1401
|
visibleWhen?: unknown;
|
|
1257
1402
|
clientOnly?: boolean | undefined;
|
|
1258
1403
|
hint?: string | undefined;
|
|
1404
|
+
required?: boolean | undefined;
|
|
1259
1405
|
} | {
|
|
1260
1406
|
key: string;
|
|
1261
1407
|
label: string;
|
|
@@ -1265,8 +1411,11 @@ declare const aiEndpoints: {
|
|
|
1265
1411
|
visibleWhen?: unknown;
|
|
1266
1412
|
clientOnly?: boolean | undefined;
|
|
1267
1413
|
hint?: string | undefined;
|
|
1414
|
+
required?: boolean | undefined;
|
|
1268
1415
|
multiline?: boolean | undefined;
|
|
1269
1416
|
placeholder?: string | undefined;
|
|
1417
|
+
minLength?: number | undefined;
|
|
1418
|
+
maxLength?: number | undefined;
|
|
1270
1419
|
} | {
|
|
1271
1420
|
key: string;
|
|
1272
1421
|
label: string;
|
|
@@ -1278,6 +1427,7 @@ declare const aiEndpoints: {
|
|
|
1278
1427
|
visibleWhen?: unknown;
|
|
1279
1428
|
clientOnly?: boolean | undefined;
|
|
1280
1429
|
hint?: string | undefined;
|
|
1430
|
+
required?: boolean | undefined;
|
|
1281
1431
|
step?: number | undefined;
|
|
1282
1432
|
} | {
|
|
1283
1433
|
key: string;
|
|
@@ -1288,6 +1438,7 @@ declare const aiEndpoints: {
|
|
|
1288
1438
|
visibleWhen?: unknown;
|
|
1289
1439
|
clientOnly?: boolean | undefined;
|
|
1290
1440
|
hint?: string | undefined;
|
|
1441
|
+
required?: boolean | undefined;
|
|
1291
1442
|
min?: number | undefined;
|
|
1292
1443
|
max?: number | undefined;
|
|
1293
1444
|
step?: number | undefined;
|
|
@@ -1296,6 +1447,7 @@ declare const aiEndpoints: {
|
|
|
1296
1447
|
role: string;
|
|
1297
1448
|
accept: "text" | "file" | "image" | "audio" | "video";
|
|
1298
1449
|
label: string;
|
|
1450
|
+
key?: string | undefined;
|
|
1299
1451
|
required?: boolean | undefined;
|
|
1300
1452
|
minCount?: number | undefined;
|
|
1301
1453
|
maxCount?: number | undefined;
|
|
@@ -1326,6 +1478,7 @@ declare const aiEndpoints: {
|
|
|
1326
1478
|
features: {
|
|
1327
1479
|
id: string;
|
|
1328
1480
|
displayName: string;
|
|
1481
|
+
description: string;
|
|
1329
1482
|
variants: {
|
|
1330
1483
|
id: string;
|
|
1331
1484
|
featureTabName: string;
|
|
@@ -1355,6 +1508,7 @@ declare const aiEndpoints: {
|
|
|
1355
1508
|
visibleWhen?: unknown;
|
|
1356
1509
|
clientOnly?: boolean | undefined;
|
|
1357
1510
|
hint?: string | undefined;
|
|
1511
|
+
required?: boolean | undefined;
|
|
1358
1512
|
options?: {
|
|
1359
1513
|
value: string | number | boolean;
|
|
1360
1514
|
label: string;
|
|
@@ -1363,6 +1517,21 @@ declare const aiEndpoints: {
|
|
|
1363
1517
|
catalog?: string | undefined;
|
|
1364
1518
|
display?: "dropdown" | "grid" | "pills" | undefined;
|
|
1365
1519
|
searchable?: boolean | undefined;
|
|
1520
|
+
} | {
|
|
1521
|
+
key: string;
|
|
1522
|
+
label: string;
|
|
1523
|
+
type: "tab";
|
|
1524
|
+
options: {
|
|
1525
|
+
value: string | number | boolean;
|
|
1526
|
+
label: string;
|
|
1527
|
+
thumbnail?: string | undefined;
|
|
1528
|
+
}[];
|
|
1529
|
+
default?: unknown;
|
|
1530
|
+
group?: "primary" | "advanced" | undefined;
|
|
1531
|
+
visibleWhen?: unknown;
|
|
1532
|
+
clientOnly?: boolean | undefined;
|
|
1533
|
+
hint?: string | undefined;
|
|
1534
|
+
required?: boolean | undefined;
|
|
1366
1535
|
} | {
|
|
1367
1536
|
key: string;
|
|
1368
1537
|
label: string;
|
|
@@ -1372,6 +1541,7 @@ declare const aiEndpoints: {
|
|
|
1372
1541
|
visibleWhen?: unknown;
|
|
1373
1542
|
clientOnly?: boolean | undefined;
|
|
1374
1543
|
hint?: string | undefined;
|
|
1544
|
+
required?: boolean | undefined;
|
|
1375
1545
|
} | {
|
|
1376
1546
|
key: string;
|
|
1377
1547
|
label: string;
|
|
@@ -1381,8 +1551,11 @@ declare const aiEndpoints: {
|
|
|
1381
1551
|
visibleWhen?: unknown;
|
|
1382
1552
|
clientOnly?: boolean | undefined;
|
|
1383
1553
|
hint?: string | undefined;
|
|
1554
|
+
required?: boolean | undefined;
|
|
1384
1555
|
multiline?: boolean | undefined;
|
|
1385
1556
|
placeholder?: string | undefined;
|
|
1557
|
+
minLength?: number | undefined;
|
|
1558
|
+
maxLength?: number | undefined;
|
|
1386
1559
|
} | {
|
|
1387
1560
|
key: string;
|
|
1388
1561
|
label: string;
|
|
@@ -1394,6 +1567,7 @@ declare const aiEndpoints: {
|
|
|
1394
1567
|
visibleWhen?: unknown;
|
|
1395
1568
|
clientOnly?: boolean | undefined;
|
|
1396
1569
|
hint?: string | undefined;
|
|
1570
|
+
required?: boolean | undefined;
|
|
1397
1571
|
step?: number | undefined;
|
|
1398
1572
|
} | {
|
|
1399
1573
|
key: string;
|
|
@@ -1404,6 +1578,7 @@ declare const aiEndpoints: {
|
|
|
1404
1578
|
visibleWhen?: unknown;
|
|
1405
1579
|
clientOnly?: boolean | undefined;
|
|
1406
1580
|
hint?: string | undefined;
|
|
1581
|
+
required?: boolean | undefined;
|
|
1407
1582
|
min?: number | undefined;
|
|
1408
1583
|
max?: number | undefined;
|
|
1409
1584
|
step?: number | undefined;
|
|
@@ -1412,6 +1587,7 @@ declare const aiEndpoints: {
|
|
|
1412
1587
|
role: string;
|
|
1413
1588
|
accept: "text" | "file" | "image" | "audio" | "video";
|
|
1414
1589
|
label: string;
|
|
1590
|
+
key?: string | undefined;
|
|
1415
1591
|
required?: boolean | undefined;
|
|
1416
1592
|
minCount?: number | undefined;
|
|
1417
1593
|
maxCount?: number | undefined;
|
|
@@ -1442,7 +1618,6 @@ declare const aiEndpoints: {
|
|
|
1442
1618
|
inputs?: Record<string, unknown> | undefined;
|
|
1443
1619
|
params?: Record<string, unknown> | undefined;
|
|
1444
1620
|
count?: number | undefined;
|
|
1445
|
-
seed?: number | undefined;
|
|
1446
1621
|
}, {
|
|
1447
1622
|
success: true;
|
|
1448
1623
|
data: {
|
|
@@ -1452,7 +1627,7 @@ declare const aiEndpoints: {
|
|
|
1452
1627
|
taskIds: string[];
|
|
1453
1628
|
};
|
|
1454
1629
|
}>;
|
|
1455
|
-
/** Get v3 task
|
|
1630
|
+
/** Get v3 task details by ID. */
|
|
1456
1631
|
readonly v3Task: (taskId: string) => Endpoint<void, {
|
|
1457
1632
|
success: true;
|
|
1458
1633
|
data: {
|
|
@@ -2273,6 +2448,7 @@ declare const paramSchemaSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
2273
2448
|
visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2274
2449
|
clientOnly: z.ZodOptional<z.ZodBoolean>;
|
|
2275
2450
|
hint: z.ZodOptional<z.ZodString>;
|
|
2451
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
2276
2452
|
type: z.ZodLiteral<"select">;
|
|
2277
2453
|
options: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2278
2454
|
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>;
|
|
@@ -2297,6 +2473,25 @@ declare const paramSchemaSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
2297
2473
|
visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2298
2474
|
clientOnly: z.ZodOptional<z.ZodBoolean>;
|
|
2299
2475
|
hint: z.ZodOptional<z.ZodString>;
|
|
2476
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
2477
|
+
type: z.ZodLiteral<"tab">;
|
|
2478
|
+
options: z.ZodArray<z.ZodObject<{
|
|
2479
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>;
|
|
2480
|
+
label: z.ZodString;
|
|
2481
|
+
thumbnail: z.ZodOptional<z.ZodString>;
|
|
2482
|
+
}, z.core.$strip>>;
|
|
2483
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2484
|
+
key: z.ZodString;
|
|
2485
|
+
label: z.ZodString;
|
|
2486
|
+
default: z.ZodOptional<z.ZodUnknown>;
|
|
2487
|
+
group: z.ZodOptional<z.ZodEnum<{
|
|
2488
|
+
primary: "primary";
|
|
2489
|
+
advanced: "advanced";
|
|
2490
|
+
}>>;
|
|
2491
|
+
visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2492
|
+
clientOnly: z.ZodOptional<z.ZodBoolean>;
|
|
2493
|
+
hint: z.ZodOptional<z.ZodString>;
|
|
2494
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
2300
2495
|
type: z.ZodLiteral<"boolean">;
|
|
2301
2496
|
}, z.core.$strip>, z.ZodObject<{
|
|
2302
2497
|
key: z.ZodString;
|
|
@@ -2309,9 +2504,12 @@ declare const paramSchemaSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
2309
2504
|
visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2310
2505
|
clientOnly: z.ZodOptional<z.ZodBoolean>;
|
|
2311
2506
|
hint: z.ZodOptional<z.ZodString>;
|
|
2507
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
2312
2508
|
type: z.ZodLiteral<"text">;
|
|
2313
2509
|
multiline: z.ZodOptional<z.ZodBoolean>;
|
|
2314
2510
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
2511
|
+
minLength: z.ZodOptional<z.ZodNumber>;
|
|
2512
|
+
maxLength: z.ZodOptional<z.ZodNumber>;
|
|
2315
2513
|
}, z.core.$strip>, z.ZodObject<{
|
|
2316
2514
|
key: z.ZodString;
|
|
2317
2515
|
label: z.ZodString;
|
|
@@ -2323,6 +2521,7 @@ declare const paramSchemaSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
2323
2521
|
visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2324
2522
|
clientOnly: z.ZodOptional<z.ZodBoolean>;
|
|
2325
2523
|
hint: z.ZodOptional<z.ZodString>;
|
|
2524
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
2326
2525
|
type: z.ZodLiteral<"slider">;
|
|
2327
2526
|
min: z.ZodNumber;
|
|
2328
2527
|
max: z.ZodNumber;
|
|
@@ -2338,6 +2537,7 @@ declare const paramSchemaSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
2338
2537
|
visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2339
2538
|
clientOnly: z.ZodOptional<z.ZodBoolean>;
|
|
2340
2539
|
hint: z.ZodOptional<z.ZodString>;
|
|
2540
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
2341
2541
|
type: z.ZodLiteral<"number">;
|
|
2342
2542
|
min: z.ZodOptional<z.ZodNumber>;
|
|
2343
2543
|
max: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2345,6 +2545,7 @@ declare const paramSchemaSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
2345
2545
|
}, z.core.$strip>], "type">;
|
|
2346
2546
|
/** Input slot declaration for a handler variant. */
|
|
2347
2547
|
declare const inputSlotSchema: z.ZodObject<{
|
|
2548
|
+
key: z.ZodOptional<z.ZodString>;
|
|
2348
2549
|
role: z.ZodString;
|
|
2349
2550
|
accept: z.ZodEnum<{
|
|
2350
2551
|
text: "text";
|
|
@@ -2407,6 +2608,7 @@ declare const v3VariantSchema: z.ZodObject<{
|
|
|
2407
2608
|
visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2408
2609
|
clientOnly: z.ZodOptional<z.ZodBoolean>;
|
|
2409
2610
|
hint: z.ZodOptional<z.ZodString>;
|
|
2611
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
2410
2612
|
type: z.ZodLiteral<"select">;
|
|
2411
2613
|
options: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2412
2614
|
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>;
|
|
@@ -2431,6 +2633,25 @@ declare const v3VariantSchema: z.ZodObject<{
|
|
|
2431
2633
|
visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2432
2634
|
clientOnly: z.ZodOptional<z.ZodBoolean>;
|
|
2433
2635
|
hint: z.ZodOptional<z.ZodString>;
|
|
2636
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
2637
|
+
type: z.ZodLiteral<"tab">;
|
|
2638
|
+
options: z.ZodArray<z.ZodObject<{
|
|
2639
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>;
|
|
2640
|
+
label: z.ZodString;
|
|
2641
|
+
thumbnail: z.ZodOptional<z.ZodString>;
|
|
2642
|
+
}, z.core.$strip>>;
|
|
2643
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2644
|
+
key: z.ZodString;
|
|
2645
|
+
label: z.ZodString;
|
|
2646
|
+
default: z.ZodOptional<z.ZodUnknown>;
|
|
2647
|
+
group: z.ZodOptional<z.ZodEnum<{
|
|
2648
|
+
primary: "primary";
|
|
2649
|
+
advanced: "advanced";
|
|
2650
|
+
}>>;
|
|
2651
|
+
visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2652
|
+
clientOnly: z.ZodOptional<z.ZodBoolean>;
|
|
2653
|
+
hint: z.ZodOptional<z.ZodString>;
|
|
2654
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
2434
2655
|
type: z.ZodLiteral<"boolean">;
|
|
2435
2656
|
}, z.core.$strip>, z.ZodObject<{
|
|
2436
2657
|
key: z.ZodString;
|
|
@@ -2443,9 +2664,12 @@ declare const v3VariantSchema: z.ZodObject<{
|
|
|
2443
2664
|
visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2444
2665
|
clientOnly: z.ZodOptional<z.ZodBoolean>;
|
|
2445
2666
|
hint: z.ZodOptional<z.ZodString>;
|
|
2667
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
2446
2668
|
type: z.ZodLiteral<"text">;
|
|
2447
2669
|
multiline: z.ZodOptional<z.ZodBoolean>;
|
|
2448
2670
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
2671
|
+
minLength: z.ZodOptional<z.ZodNumber>;
|
|
2672
|
+
maxLength: z.ZodOptional<z.ZodNumber>;
|
|
2449
2673
|
}, z.core.$strip>, z.ZodObject<{
|
|
2450
2674
|
key: z.ZodString;
|
|
2451
2675
|
label: z.ZodString;
|
|
@@ -2457,6 +2681,7 @@ declare const v3VariantSchema: z.ZodObject<{
|
|
|
2457
2681
|
visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2458
2682
|
clientOnly: z.ZodOptional<z.ZodBoolean>;
|
|
2459
2683
|
hint: z.ZodOptional<z.ZodString>;
|
|
2684
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
2460
2685
|
type: z.ZodLiteral<"slider">;
|
|
2461
2686
|
min: z.ZodNumber;
|
|
2462
2687
|
max: z.ZodNumber;
|
|
@@ -2472,12 +2697,14 @@ declare const v3VariantSchema: z.ZodObject<{
|
|
|
2472
2697
|
visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2473
2698
|
clientOnly: z.ZodOptional<z.ZodBoolean>;
|
|
2474
2699
|
hint: z.ZodOptional<z.ZodString>;
|
|
2700
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
2475
2701
|
type: z.ZodLiteral<"number">;
|
|
2476
2702
|
min: z.ZodOptional<z.ZodNumber>;
|
|
2477
2703
|
max: z.ZodOptional<z.ZodNumber>;
|
|
2478
2704
|
step: z.ZodOptional<z.ZodNumber>;
|
|
2479
2705
|
}, z.core.$strip>], "type">>;
|
|
2480
2706
|
inputSlots: z.ZodArray<z.ZodObject<{
|
|
2707
|
+
key: z.ZodOptional<z.ZodString>;
|
|
2481
2708
|
role: z.ZodString;
|
|
2482
2709
|
accept: z.ZodEnum<{
|
|
2483
2710
|
text: "text";
|
|
@@ -2509,6 +2736,7 @@ declare const v3VariantSchema: z.ZodObject<{
|
|
|
2509
2736
|
declare const v3FeatureSchema: z.ZodObject<{
|
|
2510
2737
|
id: z.ZodString;
|
|
2511
2738
|
displayName: z.ZodString;
|
|
2739
|
+
description: z.ZodString;
|
|
2512
2740
|
variants: z.ZodArray<z.ZodObject<{
|
|
2513
2741
|
id: z.ZodString;
|
|
2514
2742
|
featureTabName: z.ZodString;
|
|
@@ -2544,6 +2772,7 @@ declare const v3FeatureSchema: z.ZodObject<{
|
|
|
2544
2772
|
visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2545
2773
|
clientOnly: z.ZodOptional<z.ZodBoolean>;
|
|
2546
2774
|
hint: z.ZodOptional<z.ZodString>;
|
|
2775
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
2547
2776
|
type: z.ZodLiteral<"select">;
|
|
2548
2777
|
options: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2549
2778
|
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>;
|
|
@@ -2568,6 +2797,25 @@ declare const v3FeatureSchema: z.ZodObject<{
|
|
|
2568
2797
|
visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2569
2798
|
clientOnly: z.ZodOptional<z.ZodBoolean>;
|
|
2570
2799
|
hint: z.ZodOptional<z.ZodString>;
|
|
2800
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
2801
|
+
type: z.ZodLiteral<"tab">;
|
|
2802
|
+
options: z.ZodArray<z.ZodObject<{
|
|
2803
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>;
|
|
2804
|
+
label: z.ZodString;
|
|
2805
|
+
thumbnail: z.ZodOptional<z.ZodString>;
|
|
2806
|
+
}, z.core.$strip>>;
|
|
2807
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2808
|
+
key: z.ZodString;
|
|
2809
|
+
label: z.ZodString;
|
|
2810
|
+
default: z.ZodOptional<z.ZodUnknown>;
|
|
2811
|
+
group: z.ZodOptional<z.ZodEnum<{
|
|
2812
|
+
primary: "primary";
|
|
2813
|
+
advanced: "advanced";
|
|
2814
|
+
}>>;
|
|
2815
|
+
visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2816
|
+
clientOnly: z.ZodOptional<z.ZodBoolean>;
|
|
2817
|
+
hint: z.ZodOptional<z.ZodString>;
|
|
2818
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
2571
2819
|
type: z.ZodLiteral<"boolean">;
|
|
2572
2820
|
}, z.core.$strip>, z.ZodObject<{
|
|
2573
2821
|
key: z.ZodString;
|
|
@@ -2580,9 +2828,12 @@ declare const v3FeatureSchema: z.ZodObject<{
|
|
|
2580
2828
|
visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2581
2829
|
clientOnly: z.ZodOptional<z.ZodBoolean>;
|
|
2582
2830
|
hint: z.ZodOptional<z.ZodString>;
|
|
2831
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
2583
2832
|
type: z.ZodLiteral<"text">;
|
|
2584
2833
|
multiline: z.ZodOptional<z.ZodBoolean>;
|
|
2585
2834
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
2835
|
+
minLength: z.ZodOptional<z.ZodNumber>;
|
|
2836
|
+
maxLength: z.ZodOptional<z.ZodNumber>;
|
|
2586
2837
|
}, z.core.$strip>, z.ZodObject<{
|
|
2587
2838
|
key: z.ZodString;
|
|
2588
2839
|
label: z.ZodString;
|
|
@@ -2594,6 +2845,7 @@ declare const v3FeatureSchema: z.ZodObject<{
|
|
|
2594
2845
|
visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2595
2846
|
clientOnly: z.ZodOptional<z.ZodBoolean>;
|
|
2596
2847
|
hint: z.ZodOptional<z.ZodString>;
|
|
2848
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
2597
2849
|
type: z.ZodLiteral<"slider">;
|
|
2598
2850
|
min: z.ZodNumber;
|
|
2599
2851
|
max: z.ZodNumber;
|
|
@@ -2609,12 +2861,14 @@ declare const v3FeatureSchema: z.ZodObject<{
|
|
|
2609
2861
|
visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2610
2862
|
clientOnly: z.ZodOptional<z.ZodBoolean>;
|
|
2611
2863
|
hint: z.ZodOptional<z.ZodString>;
|
|
2864
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
2612
2865
|
type: z.ZodLiteral<"number">;
|
|
2613
2866
|
min: z.ZodOptional<z.ZodNumber>;
|
|
2614
2867
|
max: z.ZodOptional<z.ZodNumber>;
|
|
2615
2868
|
step: z.ZodOptional<z.ZodNumber>;
|
|
2616
2869
|
}, z.core.$strip>], "type">>;
|
|
2617
2870
|
inputSlots: z.ZodArray<z.ZodObject<{
|
|
2871
|
+
key: z.ZodOptional<z.ZodString>;
|
|
2618
2872
|
role: z.ZodString;
|
|
2619
2873
|
accept: z.ZodEnum<{
|
|
2620
2874
|
text: "text";
|
|
@@ -2649,6 +2903,7 @@ declare const v3CapabilitiesDataSchema: z.ZodObject<{
|
|
|
2649
2903
|
features: z.ZodArray<z.ZodObject<{
|
|
2650
2904
|
id: z.ZodString;
|
|
2651
2905
|
displayName: z.ZodString;
|
|
2906
|
+
description: z.ZodString;
|
|
2652
2907
|
variants: z.ZodArray<z.ZodObject<{
|
|
2653
2908
|
id: z.ZodString;
|
|
2654
2909
|
featureTabName: z.ZodString;
|
|
@@ -2684,6 +2939,7 @@ declare const v3CapabilitiesDataSchema: z.ZodObject<{
|
|
|
2684
2939
|
visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2685
2940
|
clientOnly: z.ZodOptional<z.ZodBoolean>;
|
|
2686
2941
|
hint: z.ZodOptional<z.ZodString>;
|
|
2942
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
2687
2943
|
type: z.ZodLiteral<"select">;
|
|
2688
2944
|
options: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2689
2945
|
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>;
|
|
@@ -2708,6 +2964,25 @@ declare const v3CapabilitiesDataSchema: z.ZodObject<{
|
|
|
2708
2964
|
visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2709
2965
|
clientOnly: z.ZodOptional<z.ZodBoolean>;
|
|
2710
2966
|
hint: z.ZodOptional<z.ZodString>;
|
|
2967
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
2968
|
+
type: z.ZodLiteral<"tab">;
|
|
2969
|
+
options: z.ZodArray<z.ZodObject<{
|
|
2970
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>;
|
|
2971
|
+
label: z.ZodString;
|
|
2972
|
+
thumbnail: z.ZodOptional<z.ZodString>;
|
|
2973
|
+
}, z.core.$strip>>;
|
|
2974
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2975
|
+
key: z.ZodString;
|
|
2976
|
+
label: z.ZodString;
|
|
2977
|
+
default: z.ZodOptional<z.ZodUnknown>;
|
|
2978
|
+
group: z.ZodOptional<z.ZodEnum<{
|
|
2979
|
+
primary: "primary";
|
|
2980
|
+
advanced: "advanced";
|
|
2981
|
+
}>>;
|
|
2982
|
+
visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2983
|
+
clientOnly: z.ZodOptional<z.ZodBoolean>;
|
|
2984
|
+
hint: z.ZodOptional<z.ZodString>;
|
|
2985
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
2711
2986
|
type: z.ZodLiteral<"boolean">;
|
|
2712
2987
|
}, z.core.$strip>, z.ZodObject<{
|
|
2713
2988
|
key: z.ZodString;
|
|
@@ -2720,9 +2995,12 @@ declare const v3CapabilitiesDataSchema: z.ZodObject<{
|
|
|
2720
2995
|
visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2721
2996
|
clientOnly: z.ZodOptional<z.ZodBoolean>;
|
|
2722
2997
|
hint: z.ZodOptional<z.ZodString>;
|
|
2998
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
2723
2999
|
type: z.ZodLiteral<"text">;
|
|
2724
3000
|
multiline: z.ZodOptional<z.ZodBoolean>;
|
|
2725
3001
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
3002
|
+
minLength: z.ZodOptional<z.ZodNumber>;
|
|
3003
|
+
maxLength: z.ZodOptional<z.ZodNumber>;
|
|
2726
3004
|
}, z.core.$strip>, z.ZodObject<{
|
|
2727
3005
|
key: z.ZodString;
|
|
2728
3006
|
label: z.ZodString;
|
|
@@ -2734,6 +3012,7 @@ declare const v3CapabilitiesDataSchema: z.ZodObject<{
|
|
|
2734
3012
|
visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2735
3013
|
clientOnly: z.ZodOptional<z.ZodBoolean>;
|
|
2736
3014
|
hint: z.ZodOptional<z.ZodString>;
|
|
3015
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
2737
3016
|
type: z.ZodLiteral<"slider">;
|
|
2738
3017
|
min: z.ZodNumber;
|
|
2739
3018
|
max: z.ZodNumber;
|
|
@@ -2749,12 +3028,14 @@ declare const v3CapabilitiesDataSchema: z.ZodObject<{
|
|
|
2749
3028
|
visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2750
3029
|
clientOnly: z.ZodOptional<z.ZodBoolean>;
|
|
2751
3030
|
hint: z.ZodOptional<z.ZodString>;
|
|
3031
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
2752
3032
|
type: z.ZodLiteral<"number">;
|
|
2753
3033
|
min: z.ZodOptional<z.ZodNumber>;
|
|
2754
3034
|
max: z.ZodOptional<z.ZodNumber>;
|
|
2755
3035
|
step: z.ZodOptional<z.ZodNumber>;
|
|
2756
3036
|
}, z.core.$strip>], "type">>;
|
|
2757
3037
|
inputSlots: z.ZodArray<z.ZodObject<{
|
|
3038
|
+
key: z.ZodOptional<z.ZodString>;
|
|
2758
3039
|
role: z.ZodString;
|
|
2759
3040
|
accept: z.ZodEnum<{
|
|
2760
3041
|
text: "text";
|
|
@@ -2793,6 +3074,7 @@ declare const v3CapabilitiesResponseSchema: z.ZodObject<{
|
|
|
2793
3074
|
features: z.ZodArray<z.ZodObject<{
|
|
2794
3075
|
id: z.ZodString;
|
|
2795
3076
|
displayName: z.ZodString;
|
|
3077
|
+
description: z.ZodString;
|
|
2796
3078
|
variants: z.ZodArray<z.ZodObject<{
|
|
2797
3079
|
id: z.ZodString;
|
|
2798
3080
|
featureTabName: z.ZodString;
|
|
@@ -2828,6 +3110,7 @@ declare const v3CapabilitiesResponseSchema: z.ZodObject<{
|
|
|
2828
3110
|
visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2829
3111
|
clientOnly: z.ZodOptional<z.ZodBoolean>;
|
|
2830
3112
|
hint: z.ZodOptional<z.ZodString>;
|
|
3113
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
2831
3114
|
type: z.ZodLiteral<"select">;
|
|
2832
3115
|
options: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2833
3116
|
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>;
|
|
@@ -2852,6 +3135,25 @@ declare const v3CapabilitiesResponseSchema: z.ZodObject<{
|
|
|
2852
3135
|
visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2853
3136
|
clientOnly: z.ZodOptional<z.ZodBoolean>;
|
|
2854
3137
|
hint: z.ZodOptional<z.ZodString>;
|
|
3138
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
3139
|
+
type: z.ZodLiteral<"tab">;
|
|
3140
|
+
options: z.ZodArray<z.ZodObject<{
|
|
3141
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>;
|
|
3142
|
+
label: z.ZodString;
|
|
3143
|
+
thumbnail: z.ZodOptional<z.ZodString>;
|
|
3144
|
+
}, z.core.$strip>>;
|
|
3145
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3146
|
+
key: z.ZodString;
|
|
3147
|
+
label: z.ZodString;
|
|
3148
|
+
default: z.ZodOptional<z.ZodUnknown>;
|
|
3149
|
+
group: z.ZodOptional<z.ZodEnum<{
|
|
3150
|
+
primary: "primary";
|
|
3151
|
+
advanced: "advanced";
|
|
3152
|
+
}>>;
|
|
3153
|
+
visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
3154
|
+
clientOnly: z.ZodOptional<z.ZodBoolean>;
|
|
3155
|
+
hint: z.ZodOptional<z.ZodString>;
|
|
3156
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
2855
3157
|
type: z.ZodLiteral<"boolean">;
|
|
2856
3158
|
}, z.core.$strip>, z.ZodObject<{
|
|
2857
3159
|
key: z.ZodString;
|
|
@@ -2864,9 +3166,12 @@ declare const v3CapabilitiesResponseSchema: z.ZodObject<{
|
|
|
2864
3166
|
visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2865
3167
|
clientOnly: z.ZodOptional<z.ZodBoolean>;
|
|
2866
3168
|
hint: z.ZodOptional<z.ZodString>;
|
|
3169
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
2867
3170
|
type: z.ZodLiteral<"text">;
|
|
2868
3171
|
multiline: z.ZodOptional<z.ZodBoolean>;
|
|
2869
3172
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
3173
|
+
minLength: z.ZodOptional<z.ZodNumber>;
|
|
3174
|
+
maxLength: z.ZodOptional<z.ZodNumber>;
|
|
2870
3175
|
}, z.core.$strip>, z.ZodObject<{
|
|
2871
3176
|
key: z.ZodString;
|
|
2872
3177
|
label: z.ZodString;
|
|
@@ -2878,6 +3183,7 @@ declare const v3CapabilitiesResponseSchema: z.ZodObject<{
|
|
|
2878
3183
|
visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2879
3184
|
clientOnly: z.ZodOptional<z.ZodBoolean>;
|
|
2880
3185
|
hint: z.ZodOptional<z.ZodString>;
|
|
3186
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
2881
3187
|
type: z.ZodLiteral<"slider">;
|
|
2882
3188
|
min: z.ZodNumber;
|
|
2883
3189
|
max: z.ZodNumber;
|
|
@@ -2893,12 +3199,14 @@ declare const v3CapabilitiesResponseSchema: z.ZodObject<{
|
|
|
2893
3199
|
visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
2894
3200
|
clientOnly: z.ZodOptional<z.ZodBoolean>;
|
|
2895
3201
|
hint: z.ZodOptional<z.ZodString>;
|
|
3202
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
2896
3203
|
type: z.ZodLiteral<"number">;
|
|
2897
3204
|
min: z.ZodOptional<z.ZodNumber>;
|
|
2898
3205
|
max: z.ZodOptional<z.ZodNumber>;
|
|
2899
3206
|
step: z.ZodOptional<z.ZodNumber>;
|
|
2900
3207
|
}, z.core.$strip>], "type">>;
|
|
2901
3208
|
inputSlots: z.ZodArray<z.ZodObject<{
|
|
3209
|
+
key: z.ZodOptional<z.ZodString>;
|
|
2902
3210
|
role: z.ZodString;
|
|
2903
3211
|
accept: z.ZodEnum<{
|
|
2904
3212
|
text: "text";
|
|
@@ -2938,7 +3246,6 @@ declare const v3GenerateRequestSchema: z.ZodObject<{
|
|
|
2938
3246
|
inputs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2939
3247
|
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2940
3248
|
count: z.ZodOptional<z.ZodNumber>;
|
|
2941
|
-
seed: z.ZodOptional<z.ZodNumber>;
|
|
2942
3249
|
}, z.core.$strip>;
|
|
2943
3250
|
/** Individual task item within a v3 response. */
|
|
2944
3251
|
declare const v3TaskItemSchema: z.ZodObject<{
|
|
@@ -3135,6 +3442,19 @@ type V3QueueTicket = z.infer<typeof v3QueueTicketSchema>;
|
|
|
3135
3442
|
type V3QueueResponse = z.infer<typeof v3QueueResponseSchema>;
|
|
3136
3443
|
/** Upload response. */
|
|
3137
3444
|
type V3UploadResponse = z.infer<typeof v3UploadResponseSchema>;
|
|
3445
|
+
/** Schema for task status SSE event data (lightweight, only taskId + status). */
|
|
3446
|
+
declare const v3TaskSSEEventSchema: z.ZodObject<{
|
|
3447
|
+
taskId: z.ZodString;
|
|
3448
|
+
status: z.ZodEnum<{
|
|
3449
|
+
queued: "queued";
|
|
3450
|
+
running: "running";
|
|
3451
|
+
succeeded: "succeeded";
|
|
3452
|
+
failed: "failed";
|
|
3453
|
+
canceled: "canceled";
|
|
3454
|
+
}>;
|
|
3455
|
+
}, z.core.$strip>;
|
|
3456
|
+
/** Task SSE event data type. */
|
|
3457
|
+
type V3TaskSSEEvent = z.infer<typeof v3TaskSSEEventSchema>;
|
|
3138
3458
|
|
|
3139
3459
|
type AiSdkHost = SdkHost<{
|
|
3140
3460
|
ai: typeof aiEndpoints;
|
|
@@ -3285,6 +3605,7 @@ declare class AiClient {
|
|
|
3285
3605
|
features: {
|
|
3286
3606
|
id: string;
|
|
3287
3607
|
displayName: string;
|
|
3608
|
+
description: string;
|
|
3288
3609
|
variants: {
|
|
3289
3610
|
id: string;
|
|
3290
3611
|
featureTabName: string;
|
|
@@ -3314,6 +3635,7 @@ declare class AiClient {
|
|
|
3314
3635
|
visibleWhen?: unknown;
|
|
3315
3636
|
clientOnly?: boolean | undefined;
|
|
3316
3637
|
hint?: string | undefined;
|
|
3638
|
+
required?: boolean | undefined;
|
|
3317
3639
|
options?: {
|
|
3318
3640
|
value: string | number | boolean;
|
|
3319
3641
|
label: string;
|
|
@@ -3322,6 +3644,21 @@ declare class AiClient {
|
|
|
3322
3644
|
catalog?: string | undefined;
|
|
3323
3645
|
display?: "dropdown" | "grid" | "pills" | undefined;
|
|
3324
3646
|
searchable?: boolean | undefined;
|
|
3647
|
+
} | {
|
|
3648
|
+
key: string;
|
|
3649
|
+
label: string;
|
|
3650
|
+
type: "tab";
|
|
3651
|
+
options: {
|
|
3652
|
+
value: string | number | boolean;
|
|
3653
|
+
label: string;
|
|
3654
|
+
thumbnail?: string | undefined;
|
|
3655
|
+
}[];
|
|
3656
|
+
default?: unknown;
|
|
3657
|
+
group?: "primary" | "advanced" | undefined;
|
|
3658
|
+
visibleWhen?: unknown;
|
|
3659
|
+
clientOnly?: boolean | undefined;
|
|
3660
|
+
hint?: string | undefined;
|
|
3661
|
+
required?: boolean | undefined;
|
|
3325
3662
|
} | {
|
|
3326
3663
|
key: string;
|
|
3327
3664
|
label: string;
|
|
@@ -3331,6 +3668,7 @@ declare class AiClient {
|
|
|
3331
3668
|
visibleWhen?: unknown;
|
|
3332
3669
|
clientOnly?: boolean | undefined;
|
|
3333
3670
|
hint?: string | undefined;
|
|
3671
|
+
required?: boolean | undefined;
|
|
3334
3672
|
} | {
|
|
3335
3673
|
key: string;
|
|
3336
3674
|
label: string;
|
|
@@ -3340,8 +3678,11 @@ declare class AiClient {
|
|
|
3340
3678
|
visibleWhen?: unknown;
|
|
3341
3679
|
clientOnly?: boolean | undefined;
|
|
3342
3680
|
hint?: string | undefined;
|
|
3681
|
+
required?: boolean | undefined;
|
|
3343
3682
|
multiline?: boolean | undefined;
|
|
3344
3683
|
placeholder?: string | undefined;
|
|
3684
|
+
minLength?: number | undefined;
|
|
3685
|
+
maxLength?: number | undefined;
|
|
3345
3686
|
} | {
|
|
3346
3687
|
key: string;
|
|
3347
3688
|
label: string;
|
|
@@ -3353,6 +3694,7 @@ declare class AiClient {
|
|
|
3353
3694
|
visibleWhen?: unknown;
|
|
3354
3695
|
clientOnly?: boolean | undefined;
|
|
3355
3696
|
hint?: string | undefined;
|
|
3697
|
+
required?: boolean | undefined;
|
|
3356
3698
|
step?: number | undefined;
|
|
3357
3699
|
} | {
|
|
3358
3700
|
key: string;
|
|
@@ -3363,6 +3705,7 @@ declare class AiClient {
|
|
|
3363
3705
|
visibleWhen?: unknown;
|
|
3364
3706
|
clientOnly?: boolean | undefined;
|
|
3365
3707
|
hint?: string | undefined;
|
|
3708
|
+
required?: boolean | undefined;
|
|
3366
3709
|
min?: number | undefined;
|
|
3367
3710
|
max?: number | undefined;
|
|
3368
3711
|
step?: number | undefined;
|
|
@@ -3371,6 +3714,7 @@ declare class AiClient {
|
|
|
3371
3714
|
role: string;
|
|
3372
3715
|
accept: "text" | "file" | "image" | "audio" | "video";
|
|
3373
3716
|
label: string;
|
|
3717
|
+
key?: string | undefined;
|
|
3374
3718
|
required?: boolean | undefined;
|
|
3375
3719
|
minCount?: number | undefined;
|
|
3376
3720
|
maxCount?: number | undefined;
|
|
@@ -3401,6 +3745,7 @@ declare class AiClient {
|
|
|
3401
3745
|
features: {
|
|
3402
3746
|
id: string;
|
|
3403
3747
|
displayName: string;
|
|
3748
|
+
description: string;
|
|
3404
3749
|
variants: {
|
|
3405
3750
|
id: string;
|
|
3406
3751
|
featureTabName: string;
|
|
@@ -3430,6 +3775,7 @@ declare class AiClient {
|
|
|
3430
3775
|
visibleWhen?: unknown;
|
|
3431
3776
|
clientOnly?: boolean | undefined;
|
|
3432
3777
|
hint?: string | undefined;
|
|
3778
|
+
required?: boolean | undefined;
|
|
3433
3779
|
options?: {
|
|
3434
3780
|
value: string | number | boolean;
|
|
3435
3781
|
label: string;
|
|
@@ -3438,6 +3784,21 @@ declare class AiClient {
|
|
|
3438
3784
|
catalog?: string | undefined;
|
|
3439
3785
|
display?: "dropdown" | "grid" | "pills" | undefined;
|
|
3440
3786
|
searchable?: boolean | undefined;
|
|
3787
|
+
} | {
|
|
3788
|
+
key: string;
|
|
3789
|
+
label: string;
|
|
3790
|
+
type: "tab";
|
|
3791
|
+
options: {
|
|
3792
|
+
value: string | number | boolean;
|
|
3793
|
+
label: string;
|
|
3794
|
+
thumbnail?: string | undefined;
|
|
3795
|
+
}[];
|
|
3796
|
+
default?: unknown;
|
|
3797
|
+
group?: "primary" | "advanced" | undefined;
|
|
3798
|
+
visibleWhen?: unknown;
|
|
3799
|
+
clientOnly?: boolean | undefined;
|
|
3800
|
+
hint?: string | undefined;
|
|
3801
|
+
required?: boolean | undefined;
|
|
3441
3802
|
} | {
|
|
3442
3803
|
key: string;
|
|
3443
3804
|
label: string;
|
|
@@ -3447,6 +3808,7 @@ declare class AiClient {
|
|
|
3447
3808
|
visibleWhen?: unknown;
|
|
3448
3809
|
clientOnly?: boolean | undefined;
|
|
3449
3810
|
hint?: string | undefined;
|
|
3811
|
+
required?: boolean | undefined;
|
|
3450
3812
|
} | {
|
|
3451
3813
|
key: string;
|
|
3452
3814
|
label: string;
|
|
@@ -3456,8 +3818,11 @@ declare class AiClient {
|
|
|
3456
3818
|
visibleWhen?: unknown;
|
|
3457
3819
|
clientOnly?: boolean | undefined;
|
|
3458
3820
|
hint?: string | undefined;
|
|
3821
|
+
required?: boolean | undefined;
|
|
3459
3822
|
multiline?: boolean | undefined;
|
|
3460
3823
|
placeholder?: string | undefined;
|
|
3824
|
+
minLength?: number | undefined;
|
|
3825
|
+
maxLength?: number | undefined;
|
|
3461
3826
|
} | {
|
|
3462
3827
|
key: string;
|
|
3463
3828
|
label: string;
|
|
@@ -3469,6 +3834,7 @@ declare class AiClient {
|
|
|
3469
3834
|
visibleWhen?: unknown;
|
|
3470
3835
|
clientOnly?: boolean | undefined;
|
|
3471
3836
|
hint?: string | undefined;
|
|
3837
|
+
required?: boolean | undefined;
|
|
3472
3838
|
step?: number | undefined;
|
|
3473
3839
|
} | {
|
|
3474
3840
|
key: string;
|
|
@@ -3479,6 +3845,7 @@ declare class AiClient {
|
|
|
3479
3845
|
visibleWhen?: unknown;
|
|
3480
3846
|
clientOnly?: boolean | undefined;
|
|
3481
3847
|
hint?: string | undefined;
|
|
3848
|
+
required?: boolean | undefined;
|
|
3482
3849
|
min?: number | undefined;
|
|
3483
3850
|
max?: number | undefined;
|
|
3484
3851
|
step?: number | undefined;
|
|
@@ -3487,6 +3854,7 @@ declare class AiClient {
|
|
|
3487
3854
|
role: string;
|
|
3488
3855
|
accept: "text" | "file" | "image" | "audio" | "video";
|
|
3489
3856
|
label: string;
|
|
3857
|
+
key?: string | undefined;
|
|
3490
3858
|
required?: boolean | undefined;
|
|
3491
3859
|
minCount?: number | undefined;
|
|
3492
3860
|
maxCount?: number | undefined;
|
|
@@ -3517,6 +3885,7 @@ declare class AiClient {
|
|
|
3517
3885
|
features: {
|
|
3518
3886
|
id: string;
|
|
3519
3887
|
displayName: string;
|
|
3888
|
+
description: string;
|
|
3520
3889
|
variants: {
|
|
3521
3890
|
id: string;
|
|
3522
3891
|
featureTabName: string;
|
|
@@ -3546,6 +3915,7 @@ declare class AiClient {
|
|
|
3546
3915
|
visibleWhen?: unknown;
|
|
3547
3916
|
clientOnly?: boolean | undefined;
|
|
3548
3917
|
hint?: string | undefined;
|
|
3918
|
+
required?: boolean | undefined;
|
|
3549
3919
|
options?: {
|
|
3550
3920
|
value: string | number | boolean;
|
|
3551
3921
|
label: string;
|
|
@@ -3554,6 +3924,21 @@ declare class AiClient {
|
|
|
3554
3924
|
catalog?: string | undefined;
|
|
3555
3925
|
display?: "dropdown" | "grid" | "pills" | undefined;
|
|
3556
3926
|
searchable?: boolean | undefined;
|
|
3927
|
+
} | {
|
|
3928
|
+
key: string;
|
|
3929
|
+
label: string;
|
|
3930
|
+
type: "tab";
|
|
3931
|
+
options: {
|
|
3932
|
+
value: string | number | boolean;
|
|
3933
|
+
label: string;
|
|
3934
|
+
thumbnail?: string | undefined;
|
|
3935
|
+
}[];
|
|
3936
|
+
default?: unknown;
|
|
3937
|
+
group?: "primary" | "advanced" | undefined;
|
|
3938
|
+
visibleWhen?: unknown;
|
|
3939
|
+
clientOnly?: boolean | undefined;
|
|
3940
|
+
hint?: string | undefined;
|
|
3941
|
+
required?: boolean | undefined;
|
|
3557
3942
|
} | {
|
|
3558
3943
|
key: string;
|
|
3559
3944
|
label: string;
|
|
@@ -3563,6 +3948,7 @@ declare class AiClient {
|
|
|
3563
3948
|
visibleWhen?: unknown;
|
|
3564
3949
|
clientOnly?: boolean | undefined;
|
|
3565
3950
|
hint?: string | undefined;
|
|
3951
|
+
required?: boolean | undefined;
|
|
3566
3952
|
} | {
|
|
3567
3953
|
key: string;
|
|
3568
3954
|
label: string;
|
|
@@ -3572,8 +3958,11 @@ declare class AiClient {
|
|
|
3572
3958
|
visibleWhen?: unknown;
|
|
3573
3959
|
clientOnly?: boolean | undefined;
|
|
3574
3960
|
hint?: string | undefined;
|
|
3961
|
+
required?: boolean | undefined;
|
|
3575
3962
|
multiline?: boolean | undefined;
|
|
3576
3963
|
placeholder?: string | undefined;
|
|
3964
|
+
minLength?: number | undefined;
|
|
3965
|
+
maxLength?: number | undefined;
|
|
3577
3966
|
} | {
|
|
3578
3967
|
key: string;
|
|
3579
3968
|
label: string;
|
|
@@ -3585,6 +3974,7 @@ declare class AiClient {
|
|
|
3585
3974
|
visibleWhen?: unknown;
|
|
3586
3975
|
clientOnly?: boolean | undefined;
|
|
3587
3976
|
hint?: string | undefined;
|
|
3977
|
+
required?: boolean | undefined;
|
|
3588
3978
|
step?: number | undefined;
|
|
3589
3979
|
} | {
|
|
3590
3980
|
key: string;
|
|
@@ -3595,6 +3985,7 @@ declare class AiClient {
|
|
|
3595
3985
|
visibleWhen?: unknown;
|
|
3596
3986
|
clientOnly?: boolean | undefined;
|
|
3597
3987
|
hint?: string | undefined;
|
|
3988
|
+
required?: boolean | undefined;
|
|
3598
3989
|
min?: number | undefined;
|
|
3599
3990
|
max?: number | undefined;
|
|
3600
3991
|
step?: number | undefined;
|
|
@@ -3603,6 +3994,7 @@ declare class AiClient {
|
|
|
3603
3994
|
role: string;
|
|
3604
3995
|
accept: "text" | "file" | "image" | "audio" | "video";
|
|
3605
3996
|
label: string;
|
|
3997
|
+
key?: string | undefined;
|
|
3606
3998
|
required?: boolean | undefined;
|
|
3607
3999
|
minCount?: number | undefined;
|
|
3608
4000
|
maxCount?: number | undefined;
|
|
@@ -3635,7 +4027,7 @@ declare class AiClient {
|
|
|
3635
4027
|
taskIds: string[];
|
|
3636
4028
|
};
|
|
3637
4029
|
}>;
|
|
3638
|
-
/**
|
|
4030
|
+
/** Get v3 task details by ID. */
|
|
3639
4031
|
v3Task(taskId: string): Promise<{
|
|
3640
4032
|
success: true;
|
|
3641
4033
|
data: {
|
|
@@ -3694,6 +4086,13 @@ declare class AiClient {
|
|
|
3694
4086
|
* 返回 EventSource 实例,调用方自行处理事件和关闭。
|
|
3695
4087
|
*/
|
|
3696
4088
|
v3QueueEvents(ticketId: string): EventSource;
|
|
4089
|
+
/**
|
|
4090
|
+
* Connect to task status SSE events.
|
|
4091
|
+
* 服务端主动轮询上游 provider,通过 SSE 推送状态变更。
|
|
4092
|
+
* 事件类型为 "status",data 仅包含 taskId 和 status。
|
|
4093
|
+
* 无需认证,通过 taskId 不可猜测性保证安全。
|
|
4094
|
+
*/
|
|
4095
|
+
v3TaskEvents(taskId: string): EventSource;
|
|
3697
4096
|
}
|
|
3698
4097
|
|
|
3699
4098
|
declare const AI_MODEL_TAGS: readonly ["image_generation", "image_multi_input", "image_input", "image_multi_generation", "image_edit", "video_generation", "audio_tts", "media:imageGenerate", "media:poster", "media:imageEdit", "media:upscale", "media:outpaint", "media:matting", "media:videoGenerate", "media:videoEdit", "media:digitalHuman", "media:motionTransfer", "media:tts", "media:music", "media:sfx", "chat", "reasoning", "tool_call", "image_analysis", "video_analysis", "audio_analysis", "code"];
|
|
@@ -3716,6 +4115,12 @@ declare const MEDIA_FEATURES: {
|
|
|
3716
4115
|
readonly en: "Text to Image";
|
|
3717
4116
|
readonly ja: "テキストから画像";
|
|
3718
4117
|
};
|
|
4118
|
+
readonly description: {
|
|
4119
|
+
readonly zh: "根据文字描述生成图片";
|
|
4120
|
+
readonly "zh-TW": "根據文字描述生成圖片";
|
|
4121
|
+
readonly en: "Generate images from text descriptions";
|
|
4122
|
+
readonly ja: "テキストの説明から画像を生成";
|
|
4123
|
+
};
|
|
3719
4124
|
};
|
|
3720
4125
|
readonly imageEdit: {
|
|
3721
4126
|
readonly id: "imageEdit";
|
|
@@ -3725,6 +4130,12 @@ declare const MEDIA_FEATURES: {
|
|
|
3725
4130
|
readonly en: "Image Editing";
|
|
3726
4131
|
readonly ja: "画像編集";
|
|
3727
4132
|
};
|
|
4133
|
+
readonly description: {
|
|
4134
|
+
readonly zh: "对已有图片进行修改和调整";
|
|
4135
|
+
readonly "zh-TW": "對已有圖片進行修改和調整";
|
|
4136
|
+
readonly en: "Modify and adjust existing images";
|
|
4137
|
+
readonly ja: "既存の画像を修正・調整";
|
|
4138
|
+
};
|
|
3728
4139
|
};
|
|
3729
4140
|
readonly imageInpaint: {
|
|
3730
4141
|
readonly id: "imageInpaint";
|
|
@@ -3734,6 +4145,12 @@ declare const MEDIA_FEATURES: {
|
|
|
3734
4145
|
readonly en: "Inpainting";
|
|
3735
4146
|
readonly ja: "画像修復";
|
|
3736
4147
|
};
|
|
4148
|
+
readonly description: {
|
|
4149
|
+
readonly zh: "修复图片中的瑕疵或移除不需要的元素";
|
|
4150
|
+
readonly "zh-TW": "修復圖片中的瑕疵或移除不需要的元素";
|
|
4151
|
+
readonly en: "Fix imperfections or remove unwanted elements from images";
|
|
4152
|
+
readonly ja: "画像の欠陥を修正、不要な要素を除去";
|
|
4153
|
+
};
|
|
3737
4154
|
};
|
|
3738
4155
|
readonly imageStyleTransfer: {
|
|
3739
4156
|
readonly id: "imageStyleTransfer";
|
|
@@ -3743,6 +4160,12 @@ declare const MEDIA_FEATURES: {
|
|
|
3743
4160
|
readonly en: "Style Transfer";
|
|
3744
4161
|
readonly ja: "スタイル変換";
|
|
3745
4162
|
};
|
|
4163
|
+
readonly description: {
|
|
4164
|
+
readonly zh: "将图片转换为不同的艺术风格";
|
|
4165
|
+
readonly "zh-TW": "將圖片轉換為不同的藝術風格";
|
|
4166
|
+
readonly en: "Transform images into different artistic styles";
|
|
4167
|
+
readonly ja: "画像を異なるアートスタイルに変換";
|
|
4168
|
+
};
|
|
3746
4169
|
};
|
|
3747
4170
|
readonly outpaint: {
|
|
3748
4171
|
readonly id: "outpaint";
|
|
@@ -3752,6 +4175,12 @@ declare const MEDIA_FEATURES: {
|
|
|
3752
4175
|
readonly en: "Outpainting";
|
|
3753
4176
|
readonly ja: "画像拡張";
|
|
3754
4177
|
};
|
|
4178
|
+
readonly description: {
|
|
4179
|
+
readonly zh: "向外扩展图片边界,生成新的内容";
|
|
4180
|
+
readonly "zh-TW": "向外擴展圖片邊界,生成新的內容";
|
|
4181
|
+
readonly en: "Extend image boundaries and generate new content";
|
|
4182
|
+
readonly ja: "画像の境界を拡張し新しいコンテンツを生成";
|
|
4183
|
+
};
|
|
3755
4184
|
};
|
|
3756
4185
|
readonly upscale: {
|
|
3757
4186
|
readonly id: "upscale";
|
|
@@ -3761,6 +4190,12 @@ declare const MEDIA_FEATURES: {
|
|
|
3761
4190
|
readonly en: "Upscale";
|
|
3762
4191
|
readonly ja: "超解像";
|
|
3763
4192
|
};
|
|
4193
|
+
readonly description: {
|
|
4194
|
+
readonly zh: "提升图片分辨率,增强细节清晰度";
|
|
4195
|
+
readonly "zh-TW": "提升圖片解析度,增強細節清晰度";
|
|
4196
|
+
readonly en: "Enhance image resolution and detail clarity";
|
|
4197
|
+
readonly ja: "画像の解像度を向上させ、ディテールを鮮明に";
|
|
4198
|
+
};
|
|
3764
4199
|
};
|
|
3765
4200
|
readonly materialExtract: {
|
|
3766
4201
|
readonly id: "materialExtract";
|
|
@@ -3770,6 +4205,12 @@ declare const MEDIA_FEATURES: {
|
|
|
3770
4205
|
readonly en: "Material Extract";
|
|
3771
4206
|
readonly ja: "素材抽出";
|
|
3772
4207
|
};
|
|
4208
|
+
readonly description: {
|
|
4209
|
+
readonly zh: "从图片中提取素材元素";
|
|
4210
|
+
readonly "zh-TW": "從圖片中提取素材元素";
|
|
4211
|
+
readonly en: "Extract material elements from images";
|
|
4212
|
+
readonly ja: "画像から素材要素を抽出";
|
|
4213
|
+
};
|
|
3773
4214
|
};
|
|
3774
4215
|
readonly videoGenerate: {
|
|
3775
4216
|
readonly id: "videoGenerate";
|
|
@@ -3779,6 +4220,12 @@ declare const MEDIA_FEATURES: {
|
|
|
3779
4220
|
readonly en: "Video Generation";
|
|
3780
4221
|
readonly ja: "動画生成";
|
|
3781
4222
|
};
|
|
4223
|
+
readonly description: {
|
|
4224
|
+
readonly zh: "根据文字或图片生成视频";
|
|
4225
|
+
readonly "zh-TW": "根據文字或圖片生成影片";
|
|
4226
|
+
readonly en: "Generate videos from text or images";
|
|
4227
|
+
readonly ja: "テキストや画像から動画を生成";
|
|
4228
|
+
};
|
|
3782
4229
|
};
|
|
3783
4230
|
readonly digitalHuman: {
|
|
3784
4231
|
readonly id: "digitalHuman";
|
|
@@ -3788,6 +4235,12 @@ declare const MEDIA_FEATURES: {
|
|
|
3788
4235
|
readonly en: "Digital Human";
|
|
3789
4236
|
readonly ja: "デジタルヒューマン";
|
|
3790
4237
|
};
|
|
4238
|
+
readonly description: {
|
|
4239
|
+
readonly zh: "生成逼真的数字人形象和动画";
|
|
4240
|
+
readonly "zh-TW": "生成逼真的數位人形象和動畫";
|
|
4241
|
+
readonly en: "Create realistic digital human avatars and animations";
|
|
4242
|
+
readonly ja: "リアルなデジタルヒューマンのアバターとアニメーションを作成";
|
|
4243
|
+
};
|
|
3791
4244
|
};
|
|
3792
4245
|
readonly videoFaceSwap: {
|
|
3793
4246
|
readonly id: "videoFaceSwap";
|
|
@@ -3797,6 +4250,12 @@ declare const MEDIA_FEATURES: {
|
|
|
3797
4250
|
readonly en: "Video Face Swap";
|
|
3798
4251
|
readonly ja: "ビデオフェイススワップ";
|
|
3799
4252
|
};
|
|
4253
|
+
readonly description: {
|
|
4254
|
+
readonly zh: "替换视频中的人脸";
|
|
4255
|
+
readonly "zh-TW": "替換影片中的人臉";
|
|
4256
|
+
readonly en: "Swap faces in videos";
|
|
4257
|
+
readonly ja: "動画内の顔を入れ替え";
|
|
4258
|
+
};
|
|
3800
4259
|
};
|
|
3801
4260
|
readonly videoTranslate: {
|
|
3802
4261
|
readonly id: "videoTranslate";
|
|
@@ -3806,6 +4265,12 @@ declare const MEDIA_FEATURES: {
|
|
|
3806
4265
|
readonly en: "Video Translation";
|
|
3807
4266
|
readonly ja: "動画翻訳";
|
|
3808
4267
|
};
|
|
4268
|
+
readonly description: {
|
|
4269
|
+
readonly zh: "翻译视频中的语音和字幕";
|
|
4270
|
+
readonly "zh-TW": "翻譯影片中的語音和字幕";
|
|
4271
|
+
readonly en: "Translate speech and subtitles in videos";
|
|
4272
|
+
readonly ja: "動画内の音声と字幕を翻訳";
|
|
4273
|
+
};
|
|
3809
4274
|
};
|
|
3810
4275
|
readonly lipSync: {
|
|
3811
4276
|
readonly id: "lipSync";
|
|
@@ -3815,6 +4280,12 @@ declare const MEDIA_FEATURES: {
|
|
|
3815
4280
|
readonly en: "Lip Sync";
|
|
3816
4281
|
readonly ja: "リップシンク";
|
|
3817
4282
|
};
|
|
4283
|
+
readonly description: {
|
|
4284
|
+
readonly zh: "让视频中的人物口型与音频同步";
|
|
4285
|
+
readonly "zh-TW": "讓影片中的人物口型與音訊同步";
|
|
4286
|
+
readonly en: "Synchronize lip movements with audio in videos";
|
|
4287
|
+
readonly ja: "動画内の人物の口の動きを音声と同期";
|
|
4288
|
+
};
|
|
3818
4289
|
};
|
|
3819
4290
|
readonly tts: {
|
|
3820
4291
|
readonly id: "tts";
|
|
@@ -3824,6 +4295,12 @@ declare const MEDIA_FEATURES: {
|
|
|
3824
4295
|
readonly en: "Text to Speech";
|
|
3825
4296
|
readonly ja: "音声合成";
|
|
3826
4297
|
};
|
|
4298
|
+
readonly description: {
|
|
4299
|
+
readonly zh: "将文字转换为自然流畅的语音";
|
|
4300
|
+
readonly "zh-TW": "將文字轉換為自然流暢的語音";
|
|
4301
|
+
readonly en: "Convert text into natural-sounding speech";
|
|
4302
|
+
readonly ja: "テキストを自然な音声に変換";
|
|
4303
|
+
};
|
|
3827
4304
|
};
|
|
3828
4305
|
readonly speechToText: {
|
|
3829
4306
|
readonly id: "speechToText";
|
|
@@ -3833,6 +4310,12 @@ declare const MEDIA_FEATURES: {
|
|
|
3833
4310
|
readonly en: "Speech to Text";
|
|
3834
4311
|
readonly ja: "音声認識";
|
|
3835
4312
|
};
|
|
4313
|
+
readonly description: {
|
|
4314
|
+
readonly zh: "将语音内容转换为文字";
|
|
4315
|
+
readonly "zh-TW": "將語音內容轉換為文字";
|
|
4316
|
+
readonly en: "Convert speech into text";
|
|
4317
|
+
readonly ja: "音声をテキストに変換";
|
|
4318
|
+
};
|
|
3836
4319
|
};
|
|
3837
4320
|
readonly productImage: {
|
|
3838
4321
|
readonly id: "productImage";
|
|
@@ -3842,6 +4325,12 @@ declare const MEDIA_FEATURES: {
|
|
|
3842
4325
|
readonly en: "Product Image";
|
|
3843
4326
|
readonly ja: "商品画像";
|
|
3844
4327
|
};
|
|
4328
|
+
readonly description: {
|
|
4329
|
+
readonly zh: "生成电商商品展示图片";
|
|
4330
|
+
readonly "zh-TW": "生成電商商品展示圖片";
|
|
4331
|
+
readonly en: "Generate e-commerce product showcase images";
|
|
4332
|
+
readonly ja: "EC商品の展示画像を生成";
|
|
4333
|
+
};
|
|
3845
4334
|
};
|
|
3846
4335
|
readonly productVideo: {
|
|
3847
4336
|
readonly id: "productVideo";
|
|
@@ -3851,6 +4340,12 @@ declare const MEDIA_FEATURES: {
|
|
|
3851
4340
|
readonly en: "Product Video";
|
|
3852
4341
|
readonly ja: "商品動画";
|
|
3853
4342
|
};
|
|
4343
|
+
readonly description: {
|
|
4344
|
+
readonly zh: "生成电商商品展示视频";
|
|
4345
|
+
readonly "zh-TW": "生成電商商品展示影片";
|
|
4346
|
+
readonly en: "Generate e-commerce product showcase videos";
|
|
4347
|
+
readonly ja: "EC商品の展示動画を生成";
|
|
4348
|
+
};
|
|
3854
4349
|
};
|
|
3855
4350
|
readonly backgroundRemove: {
|
|
3856
4351
|
readonly id: "backgroundRemove";
|
|
@@ -3860,6 +4355,12 @@ declare const MEDIA_FEATURES: {
|
|
|
3860
4355
|
readonly en: "Background Remove";
|
|
3861
4356
|
readonly ja: "背景除去";
|
|
3862
4357
|
};
|
|
4358
|
+
readonly description: {
|
|
4359
|
+
readonly zh: "移除图片背景,提取主体";
|
|
4360
|
+
readonly "zh-TW": "移除圖片背景,提取主體";
|
|
4361
|
+
readonly en: "Remove image background and extract subject";
|
|
4362
|
+
readonly ja: "画像の背景を除去し被写体を抽出";
|
|
4363
|
+
};
|
|
3863
4364
|
};
|
|
3864
4365
|
readonly backgroundReplace: {
|
|
3865
4366
|
readonly id: "backgroundReplace";
|
|
@@ -3869,6 +4370,12 @@ declare const MEDIA_FEATURES: {
|
|
|
3869
4370
|
readonly en: "Background Replace";
|
|
3870
4371
|
readonly ja: "背景置換";
|
|
3871
4372
|
};
|
|
4373
|
+
readonly description: {
|
|
4374
|
+
readonly zh: "替换图片背景为新场景";
|
|
4375
|
+
readonly "zh-TW": "替換圖片背景為新場景";
|
|
4376
|
+
readonly en: "Replace image background with a new scene";
|
|
4377
|
+
readonly ja: "画像の背景を新しいシーンに置換";
|
|
4378
|
+
};
|
|
3872
4379
|
};
|
|
3873
4380
|
readonly posterGenerate: {
|
|
3874
4381
|
readonly id: "posterGenerate";
|
|
@@ -3878,6 +4385,12 @@ declare const MEDIA_FEATURES: {
|
|
|
3878
4385
|
readonly en: "Poster Generation";
|
|
3879
4386
|
readonly ja: "ポスター生成";
|
|
3880
4387
|
};
|
|
4388
|
+
readonly description: {
|
|
4389
|
+
readonly zh: "自动生成创意海报设计";
|
|
4390
|
+
readonly "zh-TW": "自動生成創意海報設計";
|
|
4391
|
+
readonly en: "Automatically generate creative poster designs";
|
|
4392
|
+
readonly ja: "クリエイティブなポスターデザインを自動生成";
|
|
4393
|
+
};
|
|
3881
4394
|
};
|
|
3882
4395
|
readonly modelTryOn: {
|
|
3883
4396
|
readonly id: "modelTryOn";
|
|
@@ -3887,6 +4400,12 @@ declare const MEDIA_FEATURES: {
|
|
|
3887
4400
|
readonly en: "Virtual Try-On";
|
|
3888
4401
|
readonly ja: "バーチャル試着";
|
|
3889
4402
|
};
|
|
4403
|
+
readonly description: {
|
|
4404
|
+
readonly zh: "将服装虚拟试穿到模特身上";
|
|
4405
|
+
readonly "zh-TW": "將服裝虛擬試穿到模特身上";
|
|
4406
|
+
readonly en: "Virtually try on clothing on models";
|
|
4407
|
+
readonly ja: "モデルに衣服をバーチャル試着";
|
|
4408
|
+
};
|
|
3890
4409
|
};
|
|
3891
4410
|
readonly faceSwap: {
|
|
3892
4411
|
readonly id: "faceSwap";
|
|
@@ -3896,6 +4415,12 @@ declare const MEDIA_FEATURES: {
|
|
|
3896
4415
|
readonly en: "Face Swap";
|
|
3897
4416
|
readonly ja: "フェイススワップ";
|
|
3898
4417
|
};
|
|
4418
|
+
readonly description: {
|
|
4419
|
+
readonly zh: "替换图片中的人脸";
|
|
4420
|
+
readonly "zh-TW": "替換圖片中的人臉";
|
|
4421
|
+
readonly en: "Swap faces in images";
|
|
4422
|
+
readonly ja: "画像内の顔を入れ替え";
|
|
4423
|
+
};
|
|
3899
4424
|
};
|
|
3900
4425
|
readonly faceEnhance: {
|
|
3901
4426
|
readonly id: "faceEnhance";
|
|
@@ -3905,6 +4430,12 @@ declare const MEDIA_FEATURES: {
|
|
|
3905
4430
|
readonly en: "Face Enhance";
|
|
3906
4431
|
readonly ja: "顔補正";
|
|
3907
4432
|
};
|
|
4433
|
+
readonly description: {
|
|
4434
|
+
readonly zh: "增强和美化人脸细节";
|
|
4435
|
+
readonly "zh-TW": "增強和美化人臉細節";
|
|
4436
|
+
readonly en: "Enhance and beautify facial details";
|
|
4437
|
+
readonly ja: "顔のディテールを補正・美化";
|
|
4438
|
+
};
|
|
3908
4439
|
};
|
|
3909
4440
|
readonly colorize: {
|
|
3910
4441
|
readonly id: "colorize";
|
|
@@ -3914,6 +4445,12 @@ declare const MEDIA_FEATURES: {
|
|
|
3914
4445
|
readonly en: "Colorize";
|
|
3915
4446
|
readonly ja: "カラー化";
|
|
3916
4447
|
};
|
|
4448
|
+
readonly description: {
|
|
4449
|
+
readonly zh: "为黑白照片自动上色";
|
|
4450
|
+
readonly "zh-TW": "為黑白照片自動上色";
|
|
4451
|
+
readonly en: "Automatically colorize black and white photos";
|
|
4452
|
+
readonly ja: "白黒写真を自動でカラー化";
|
|
4453
|
+
};
|
|
3917
4454
|
};
|
|
3918
4455
|
readonly segmentation: {
|
|
3919
4456
|
readonly id: "segmentation";
|
|
@@ -3923,6 +4460,12 @@ declare const MEDIA_FEATURES: {
|
|
|
3923
4460
|
readonly en: "Segmentation";
|
|
3924
4461
|
readonly ja: "セグメンテーション";
|
|
3925
4462
|
};
|
|
4463
|
+
readonly description: {
|
|
4464
|
+
readonly zh: "将图像分割为不同区域和对象";
|
|
4465
|
+
readonly "zh-TW": "將圖像分割為不同區域和物件";
|
|
4466
|
+
readonly en: "Segment images into different regions and objects";
|
|
4467
|
+
readonly ja: "画像を異なる領域やオブジェクトに分割";
|
|
4468
|
+
};
|
|
3926
4469
|
};
|
|
3927
4470
|
readonly objectDetect: {
|
|
3928
4471
|
readonly id: "objectDetect";
|
|
@@ -3932,6 +4475,12 @@ declare const MEDIA_FEATURES: {
|
|
|
3932
4475
|
readonly en: "Object Detection";
|
|
3933
4476
|
readonly ja: "物体検出";
|
|
3934
4477
|
};
|
|
4478
|
+
readonly description: {
|
|
4479
|
+
readonly zh: "检测和定位图像中的目标对象";
|
|
4480
|
+
readonly "zh-TW": "偵測和定位圖像中的目標物件";
|
|
4481
|
+
readonly en: "Detect and locate objects in images";
|
|
4482
|
+
readonly ja: "画像内のオブジェクトを検出・特定";
|
|
4483
|
+
};
|
|
3935
4484
|
};
|
|
3936
4485
|
readonly ocrRecognize: {
|
|
3937
4486
|
readonly id: "ocrRecognize";
|
|
@@ -3941,6 +4490,12 @@ declare const MEDIA_FEATURES: {
|
|
|
3941
4490
|
readonly en: "OCR";
|
|
3942
4491
|
readonly ja: "文字認識";
|
|
3943
4492
|
};
|
|
4493
|
+
readonly description: {
|
|
4494
|
+
readonly zh: "识别图片中的文字内容";
|
|
4495
|
+
readonly "zh-TW": "辨識圖片中的文字內容";
|
|
4496
|
+
readonly en: "Recognize text content in images";
|
|
4497
|
+
readonly ja: "画像内のテキストを認識";
|
|
4498
|
+
};
|
|
3944
4499
|
};
|
|
3945
4500
|
readonly imageCaption: {
|
|
3946
4501
|
readonly id: "imageCaption";
|
|
@@ -3950,6 +4505,12 @@ declare const MEDIA_FEATURES: {
|
|
|
3950
4505
|
readonly en: "Image Caption";
|
|
3951
4506
|
readonly ja: "画像キャプション";
|
|
3952
4507
|
};
|
|
4508
|
+
readonly description: {
|
|
4509
|
+
readonly zh: "自动生成图片的文字描述";
|
|
4510
|
+
readonly "zh-TW": "自動生成圖片的文字描述";
|
|
4511
|
+
readonly en: "Automatically generate text descriptions for images";
|
|
4512
|
+
readonly ja: "画像のテキスト説明を自動生成";
|
|
4513
|
+
};
|
|
3953
4514
|
};
|
|
3954
4515
|
readonly musicGenerate: {
|
|
3955
4516
|
readonly id: "musicGenerate";
|
|
@@ -3959,6 +4520,12 @@ declare const MEDIA_FEATURES: {
|
|
|
3959
4520
|
readonly en: "Music Generation";
|
|
3960
4521
|
readonly ja: "音楽生成";
|
|
3961
4522
|
};
|
|
4523
|
+
readonly description: {
|
|
4524
|
+
readonly zh: "根据描述生成原创音乐";
|
|
4525
|
+
readonly "zh-TW": "根據描述生成原創音樂";
|
|
4526
|
+
readonly en: "Generate original music from descriptions";
|
|
4527
|
+
readonly ja: "説明からオリジナル音楽を生成";
|
|
4528
|
+
};
|
|
3962
4529
|
};
|
|
3963
4530
|
readonly soundEffect: {
|
|
3964
4531
|
readonly id: "soundEffect";
|
|
@@ -3968,6 +4535,12 @@ declare const MEDIA_FEATURES: {
|
|
|
3968
4535
|
readonly en: "Sound Effect";
|
|
3969
4536
|
readonly ja: "効果音生成";
|
|
3970
4537
|
};
|
|
4538
|
+
readonly description: {
|
|
4539
|
+
readonly zh: "根据描述生成音效";
|
|
4540
|
+
readonly "zh-TW": "根據描述生成音效";
|
|
4541
|
+
readonly en: "Generate sound effects from descriptions";
|
|
4542
|
+
readonly ja: "説明から効果音を生成";
|
|
4543
|
+
};
|
|
3971
4544
|
};
|
|
3972
4545
|
readonly voiceClone: {
|
|
3973
4546
|
readonly id: "voiceClone";
|
|
@@ -3977,6 +4550,12 @@ declare const MEDIA_FEATURES: {
|
|
|
3977
4550
|
readonly en: "Voice Clone";
|
|
3978
4551
|
readonly ja: "音声クローン";
|
|
3979
4552
|
};
|
|
4553
|
+
readonly description: {
|
|
4554
|
+
readonly zh: "克隆目标声音生成自然语音";
|
|
4555
|
+
readonly "zh-TW": "克隆目標聲音生成自然語音";
|
|
4556
|
+
readonly en: "Clone a target voice to generate natural speech";
|
|
4557
|
+
readonly ja: "ターゲット音声をクローンして自然な音声を生成";
|
|
4558
|
+
};
|
|
3980
4559
|
};
|
|
3981
4560
|
readonly videoUpscale: {
|
|
3982
4561
|
readonly id: "videoUpscale";
|
|
@@ -3986,6 +4565,12 @@ declare const MEDIA_FEATURES: {
|
|
|
3986
4565
|
readonly en: "Video Upscale";
|
|
3987
4566
|
readonly ja: "動画超解像";
|
|
3988
4567
|
};
|
|
4568
|
+
readonly description: {
|
|
4569
|
+
readonly zh: "提升视频分辨率和清晰度";
|
|
4570
|
+
readonly "zh-TW": "提升影片解析度和清晰度";
|
|
4571
|
+
readonly en: "Enhance video resolution and clarity";
|
|
4572
|
+
readonly ja: "動画の解像度と鮮明さを向上";
|
|
4573
|
+
};
|
|
3989
4574
|
};
|
|
3990
4575
|
readonly videoStabilize: {
|
|
3991
4576
|
readonly id: "videoStabilize";
|
|
@@ -3995,6 +4580,12 @@ declare const MEDIA_FEATURES: {
|
|
|
3995
4580
|
readonly en: "Video Stabilize";
|
|
3996
4581
|
readonly ja: "動画手ぶれ補正";
|
|
3997
4582
|
};
|
|
4583
|
+
readonly description: {
|
|
4584
|
+
readonly zh: "稳定视频画面,消除抖动";
|
|
4585
|
+
readonly "zh-TW": "穩定影片畫面,消除抖動";
|
|
4586
|
+
readonly en: "Stabilize video footage and reduce shakiness";
|
|
4587
|
+
readonly ja: "動画の手ぶれを補正して安定化";
|
|
4588
|
+
};
|
|
3998
4589
|
};
|
|
3999
4590
|
readonly subtitleGenerate: {
|
|
4000
4591
|
readonly id: "subtitleGenerate";
|
|
@@ -4004,6 +4595,12 @@ declare const MEDIA_FEATURES: {
|
|
|
4004
4595
|
readonly en: "Subtitle Generation";
|
|
4005
4596
|
readonly ja: "字幕生成";
|
|
4006
4597
|
};
|
|
4598
|
+
readonly description: {
|
|
4599
|
+
readonly zh: "自动为视频生成字幕";
|
|
4600
|
+
readonly "zh-TW": "自動為影片生成字幕";
|
|
4601
|
+
readonly en: "Automatically generate subtitles for videos";
|
|
4602
|
+
readonly ja: "動画に自動で字幕を生成";
|
|
4603
|
+
};
|
|
4007
4604
|
};
|
|
4008
4605
|
readonly threeDGenerate: {
|
|
4009
4606
|
readonly id: "threeDGenerate";
|
|
@@ -4013,6 +4610,12 @@ declare const MEDIA_FEATURES: {
|
|
|
4013
4610
|
readonly en: "3D Generation";
|
|
4014
4611
|
readonly ja: "3D 生成";
|
|
4015
4612
|
};
|
|
4613
|
+
readonly description: {
|
|
4614
|
+
readonly zh: "根据描述或图片生成 3D 模型";
|
|
4615
|
+
readonly "zh-TW": "根據描述或圖片生成 3D 模型";
|
|
4616
|
+
readonly en: "Generate 3D models from text or images";
|
|
4617
|
+
readonly ja: "テキストや画像から3Dモデルを生成";
|
|
4618
|
+
};
|
|
4016
4619
|
};
|
|
4017
4620
|
};
|
|
4018
4621
|
/** Media feature identifier type. */
|
|
@@ -4152,103 +4755,105 @@ declare const MODEL_PROVIDERS: {
|
|
|
4152
4755
|
/** Model provider identifier type. */
|
|
4153
4756
|
type ModelProviderId = keyof typeof MODEL_PROVIDERS;
|
|
4154
4757
|
|
|
4155
|
-
declare const index$
|
|
4156
|
-
declare const index$
|
|
4157
|
-
declare const index$
|
|
4158
|
-
declare const index$
|
|
4159
|
-
type index$
|
|
4160
|
-
type index$
|
|
4161
|
-
type index$
|
|
4162
|
-
type index$
|
|
4163
|
-
type index$
|
|
4164
|
-
declare const index$
|
|
4165
|
-
type index$
|
|
4166
|
-
type index$
|
|
4167
|
-
type index$
|
|
4168
|
-
type index$
|
|
4169
|
-
type index$
|
|
4170
|
-
type index$
|
|
4171
|
-
type index$
|
|
4172
|
-
type index$
|
|
4173
|
-
type index$
|
|
4174
|
-
type index$
|
|
4175
|
-
type index$
|
|
4176
|
-
type index$
|
|
4177
|
-
type index$
|
|
4178
|
-
type index$
|
|
4179
|
-
type index$
|
|
4180
|
-
type index$
|
|
4181
|
-
declare const index$
|
|
4182
|
-
declare const index$
|
|
4183
|
-
type index$
|
|
4184
|
-
type index$
|
|
4185
|
-
type index$
|
|
4186
|
-
type index$
|
|
4187
|
-
type index$
|
|
4188
|
-
type index$
|
|
4189
|
-
type index$
|
|
4190
|
-
type index$
|
|
4191
|
-
type index$
|
|
4192
|
-
type index$
|
|
4193
|
-
type index$
|
|
4194
|
-
type index$
|
|
4195
|
-
type index$
|
|
4196
|
-
type index$
|
|
4197
|
-
type index$
|
|
4198
|
-
type index$
|
|
4199
|
-
type index$
|
|
4200
|
-
type index$
|
|
4201
|
-
type index$
|
|
4202
|
-
type index$
|
|
4203
|
-
type index$
|
|
4204
|
-
|
|
4205
|
-
declare const index$
|
|
4206
|
-
declare const index$
|
|
4207
|
-
declare const index$
|
|
4208
|
-
declare const index$
|
|
4209
|
-
declare const index$
|
|
4210
|
-
declare const index$
|
|
4211
|
-
declare const index$
|
|
4212
|
-
declare const index$
|
|
4213
|
-
declare const index$
|
|
4214
|
-
declare const index$
|
|
4215
|
-
declare const index$
|
|
4216
|
-
declare const index$
|
|
4217
|
-
declare const index$
|
|
4218
|
-
declare const index$
|
|
4219
|
-
declare const index$
|
|
4220
|
-
declare const index$
|
|
4221
|
-
declare const index$
|
|
4222
|
-
declare const index$
|
|
4223
|
-
declare const index$
|
|
4224
|
-
declare const index$
|
|
4225
|
-
declare const index$
|
|
4226
|
-
declare const index$
|
|
4227
|
-
declare const index$
|
|
4228
|
-
declare const index$
|
|
4229
|
-
declare const index$
|
|
4230
|
-
declare const index$
|
|
4231
|
-
declare const index$
|
|
4232
|
-
declare const index$
|
|
4233
|
-
declare const index$
|
|
4234
|
-
declare const index$
|
|
4235
|
-
declare const index$
|
|
4236
|
-
declare const index$
|
|
4237
|
-
declare const index$
|
|
4238
|
-
declare const index$
|
|
4239
|
-
declare const index$
|
|
4240
|
-
declare const index$
|
|
4241
|
-
declare const index$
|
|
4242
|
-
declare const index$
|
|
4243
|
-
declare const index$
|
|
4244
|
-
declare const index$
|
|
4245
|
-
declare const index$
|
|
4246
|
-
declare const index$
|
|
4247
|
-
declare const index$
|
|
4248
|
-
declare const index$
|
|
4249
|
-
declare const index$
|
|
4250
|
-
declare
|
|
4251
|
-
|
|
4758
|
+
declare const index$8_AI_MODEL_CAPABILITY_INPUT_KEYS: typeof AI_MODEL_CAPABILITY_INPUT_KEYS;
|
|
4759
|
+
declare const index$8_AI_MODEL_CAPABILITY_OUTPUT_KEYS: typeof AI_MODEL_CAPABILITY_OUTPUT_KEYS;
|
|
4760
|
+
declare const index$8_AI_MODEL_TAGS: typeof AI_MODEL_TAGS;
|
|
4761
|
+
declare const index$8_AI_MODEL_TAG_LABELS: typeof AI_MODEL_TAG_LABELS;
|
|
4762
|
+
type index$8_AiChatCompletionsRequest = AiChatCompletionsRequest;
|
|
4763
|
+
type index$8_AiChatModel = AiChatModel;
|
|
4764
|
+
type index$8_AiChatModelsResponse = AiChatModelsResponse;
|
|
4765
|
+
type index$8_AiChatSessionMetadata = AiChatSessionMetadata;
|
|
4766
|
+
type index$8_AiClient = AiClient;
|
|
4767
|
+
declare const index$8_AiClient: typeof AiClient;
|
|
4768
|
+
type index$8_AiClientMetadata = AiClientMetadata;
|
|
4769
|
+
type index$8_AiFileUploadOptions = AiFileUploadOptions;
|
|
4770
|
+
type index$8_AiFileUploadResponse = AiFileUploadResponse;
|
|
4771
|
+
type index$8_AiModel = AiModel;
|
|
4772
|
+
type index$8_AiModelCapabilities = AiModelCapabilities;
|
|
4773
|
+
type index$8_AiModelCapabilitiesInput = AiModelCapabilitiesInput;
|
|
4774
|
+
type index$8_AiModelCapabilitiesOutput = AiModelCapabilitiesOutput;
|
|
4775
|
+
type index$8_AiModelCapabilityInputKey = AiModelCapabilityInputKey;
|
|
4776
|
+
type index$8_AiModelCapabilityOutputKey = AiModelCapabilityOutputKey;
|
|
4777
|
+
type index$8_AiModelTag = AiModelTag;
|
|
4778
|
+
type index$8_AiModelsUpdatedAtData = AiModelsUpdatedAtData;
|
|
4779
|
+
type index$8_AiModelsUpdatedAtResponse = AiModelsUpdatedAtResponse;
|
|
4780
|
+
type index$8_AiProviderTemplate = AiProviderTemplate;
|
|
4781
|
+
type index$8_AiProviderTemplateModel = AiProviderTemplateModel;
|
|
4782
|
+
type index$8_AiProviderTemplatesResponse = AiProviderTemplatesResponse;
|
|
4783
|
+
type index$8_AiResponsesRequest = AiResponsesRequest;
|
|
4784
|
+
declare const index$8_MEDIA_FEATURES: typeof MEDIA_FEATURES;
|
|
4785
|
+
declare const index$8_MODEL_PROVIDERS: typeof MODEL_PROVIDERS;
|
|
4786
|
+
type index$8_MediaFeatureId = MediaFeatureId;
|
|
4787
|
+
type index$8_ModelProviderId = ModelProviderId;
|
|
4788
|
+
type index$8_V3BasicSuccess = V3BasicSuccess;
|
|
4789
|
+
type index$8_V3CapabilitiesData = V3CapabilitiesData;
|
|
4790
|
+
type index$8_V3CapabilitiesResponse = V3CapabilitiesResponse;
|
|
4791
|
+
type index$8_V3CreditEstimate = V3CreditEstimate;
|
|
4792
|
+
type index$8_V3EstimatePriceRequest = V3EstimatePriceRequest;
|
|
4793
|
+
type index$8_V3EstimatePriceResponse = V3EstimatePriceResponse;
|
|
4794
|
+
type index$8_V3Feature = V3Feature;
|
|
4795
|
+
type index$8_V3GenerateRequest = V3GenerateRequest;
|
|
4796
|
+
type index$8_V3InputSlot = V3InputSlot;
|
|
4797
|
+
type index$8_V3ParamSchema = V3ParamSchema;
|
|
4798
|
+
type index$8_V3QueueRequest = V3QueueRequest;
|
|
4799
|
+
type index$8_V3QueueResponse = V3QueueResponse;
|
|
4800
|
+
type index$8_V3QueueTicket = V3QueueTicket;
|
|
4801
|
+
type index$8_V3TaskCreated = V3TaskCreated;
|
|
4802
|
+
type index$8_V3TaskGroupResponse = V3TaskGroupResponse;
|
|
4803
|
+
type index$8_V3TaskItem = V3TaskItem;
|
|
4804
|
+
type index$8_V3TaskResponse = V3TaskResponse;
|
|
4805
|
+
type index$8_V3TaskSSEEvent = V3TaskSSEEvent;
|
|
4806
|
+
type index$8_V3UploadResponse = V3UploadResponse;
|
|
4807
|
+
type index$8_V3Variant = V3Variant;
|
|
4808
|
+
declare const index$8_aiChatCompletionsRequestSchema: typeof aiChatCompletionsRequestSchema;
|
|
4809
|
+
declare const index$8_aiChatModelSchema: typeof aiChatModelSchema;
|
|
4810
|
+
declare const index$8_aiChatModelsPayloadSchema: typeof aiChatModelsPayloadSchema;
|
|
4811
|
+
declare const index$8_aiChatModelsResponseSchema: typeof aiChatModelsResponseSchema;
|
|
4812
|
+
declare const index$8_aiChatModelsSuccessSchema: typeof aiChatModelsSuccessSchema;
|
|
4813
|
+
declare const index$8_aiChatSessionMetadataSchema: typeof aiChatSessionMetadataSchema;
|
|
4814
|
+
declare const index$8_aiClientMetadataSchema: typeof aiClientMetadataSchema;
|
|
4815
|
+
declare const index$8_aiEndpoints: typeof aiEndpoints;
|
|
4816
|
+
declare const index$8_aiErrorResponseSchema: typeof aiErrorResponseSchema;
|
|
4817
|
+
declare const index$8_aiModelCapabilitiesInputSchema: typeof aiModelCapabilitiesInputSchema;
|
|
4818
|
+
declare const index$8_aiModelCapabilitiesOutputSchema: typeof aiModelCapabilitiesOutputSchema;
|
|
4819
|
+
declare const index$8_aiModelCapabilitiesSchema: typeof aiModelCapabilitiesSchema;
|
|
4820
|
+
declare const index$8_aiModelCapabilityCommonSchema: typeof aiModelCapabilityCommonSchema;
|
|
4821
|
+
declare const index$8_aiModelParameterFieldSchema: typeof aiModelParameterFieldSchema;
|
|
4822
|
+
declare const index$8_aiModelParamsSchema: typeof aiModelParamsSchema;
|
|
4823
|
+
declare const index$8_aiModelSchema: typeof aiModelSchema;
|
|
4824
|
+
declare const index$8_aiModelsRequestSchema: typeof aiModelsRequestSchema;
|
|
4825
|
+
declare const index$8_aiModelsUpdatedAtDataSchema: typeof aiModelsUpdatedAtDataSchema;
|
|
4826
|
+
declare const index$8_aiModelsUpdatedAtResponseSchema: typeof aiModelsUpdatedAtResponseSchema;
|
|
4827
|
+
declare const index$8_aiModelsUpdatedAtSuccessSchema: typeof aiModelsUpdatedAtSuccessSchema;
|
|
4828
|
+
declare const index$8_aiProviderTemplateModelSchema: typeof aiProviderTemplateModelSchema;
|
|
4829
|
+
declare const index$8_aiProviderTemplateSchema: typeof aiProviderTemplateSchema;
|
|
4830
|
+
declare const index$8_aiProviderTemplatesPayloadSchema: typeof aiProviderTemplatesPayloadSchema;
|
|
4831
|
+
declare const index$8_aiProviderTemplatesRequestSchema: typeof aiProviderTemplatesRequestSchema;
|
|
4832
|
+
declare const index$8_aiProviderTemplatesResponseSchema: typeof aiProviderTemplatesResponseSchema;
|
|
4833
|
+
declare const index$8_aiProviderTemplatesSuccessSchema: typeof aiProviderTemplatesSuccessSchema;
|
|
4834
|
+
declare const index$8_aiResponsesRequestSchema: typeof aiResponsesRequestSchema;
|
|
4835
|
+
declare const index$8_inputSlotSchema: typeof inputSlotSchema;
|
|
4836
|
+
declare const index$8_paramSchemaSchema: typeof paramSchemaSchema;
|
|
4837
|
+
declare const index$8_v3BasicSuccessSchema: typeof v3BasicSuccessSchema;
|
|
4838
|
+
declare const index$8_v3CapabilitiesDataSchema: typeof v3CapabilitiesDataSchema;
|
|
4839
|
+
declare const index$8_v3CapabilitiesResponseSchema: typeof v3CapabilitiesResponseSchema;
|
|
4840
|
+
declare const index$8_v3CreditEstimateSchema: typeof v3CreditEstimateSchema;
|
|
4841
|
+
declare const index$8_v3EstimatePriceRequestSchema: typeof v3EstimatePriceRequestSchema;
|
|
4842
|
+
declare const index$8_v3EstimatePriceResponseSchema: typeof v3EstimatePriceResponseSchema;
|
|
4843
|
+
declare const index$8_v3FeatureSchema: typeof v3FeatureSchema;
|
|
4844
|
+
declare const index$8_v3GenerateRequestSchema: typeof v3GenerateRequestSchema;
|
|
4845
|
+
declare const index$8_v3QueueRequestSchema: typeof v3QueueRequestSchema;
|
|
4846
|
+
declare const index$8_v3QueueResponseSchema: typeof v3QueueResponseSchema;
|
|
4847
|
+
declare const index$8_v3QueueTicketSchema: typeof v3QueueTicketSchema;
|
|
4848
|
+
declare const index$8_v3TaskCreatedSchema: typeof v3TaskCreatedSchema;
|
|
4849
|
+
declare const index$8_v3TaskGroupResponseSchema: typeof v3TaskGroupResponseSchema;
|
|
4850
|
+
declare const index$8_v3TaskItemSchema: typeof v3TaskItemSchema;
|
|
4851
|
+
declare const index$8_v3TaskResponseSchema: typeof v3TaskResponseSchema;
|
|
4852
|
+
declare const index$8_v3TaskSSEEventSchema: typeof v3TaskSSEEventSchema;
|
|
4853
|
+
declare const index$8_v3UploadResponseSchema: typeof v3UploadResponseSchema;
|
|
4854
|
+
declare const index$8_v3VariantSchema: typeof v3VariantSchema;
|
|
4855
|
+
declare namespace index$8 {
|
|
4856
|
+
export { index$8_AI_MODEL_CAPABILITY_INPUT_KEYS as AI_MODEL_CAPABILITY_INPUT_KEYS, index$8_AI_MODEL_CAPABILITY_OUTPUT_KEYS as AI_MODEL_CAPABILITY_OUTPUT_KEYS, index$8_AI_MODEL_TAGS as AI_MODEL_TAGS, index$8_AI_MODEL_TAG_LABELS as AI_MODEL_TAG_LABELS, type index$8_AiChatCompletionsRequest as AiChatCompletionsRequest, type index$8_AiChatModel as AiChatModel, type index$8_AiChatModelsResponse as AiChatModelsResponse, type index$8_AiChatSessionMetadata as AiChatSessionMetadata, index$8_AiClient as AiClient, type index$8_AiClientMetadata as AiClientMetadata, type index$8_AiFileUploadOptions as AiFileUploadOptions, type index$8_AiFileUploadResponse as AiFileUploadResponse, type index$8_AiModel as AiModel, type index$8_AiModelCapabilities as AiModelCapabilities, type index$8_AiModelCapabilitiesInput as AiModelCapabilitiesInput, type index$8_AiModelCapabilitiesOutput as AiModelCapabilitiesOutput, type index$8_AiModelCapabilityInputKey as AiModelCapabilityInputKey, type index$8_AiModelCapabilityOutputKey as AiModelCapabilityOutputKey, type index$8_AiModelTag as AiModelTag, type index$8_AiModelsUpdatedAtData as AiModelsUpdatedAtData, type index$8_AiModelsUpdatedAtResponse as AiModelsUpdatedAtResponse, type index$8_AiProviderTemplate as AiProviderTemplate, type index$8_AiProviderTemplateModel as AiProviderTemplateModel, type index$8_AiProviderTemplatesResponse as AiProviderTemplatesResponse, type index$8_AiResponsesRequest as AiResponsesRequest, index$8_MEDIA_FEATURES as MEDIA_FEATURES, index$8_MODEL_PROVIDERS as MODEL_PROVIDERS, type index$8_MediaFeatureId as MediaFeatureId, type index$8_ModelProviderId as ModelProviderId, type index$8_V3BasicSuccess as V3BasicSuccess, type index$8_V3CapabilitiesData as V3CapabilitiesData, type index$8_V3CapabilitiesResponse as V3CapabilitiesResponse, type index$8_V3CreditEstimate as V3CreditEstimate, type index$8_V3EstimatePriceRequest as V3EstimatePriceRequest, type index$8_V3EstimatePriceResponse as V3EstimatePriceResponse, type index$8_V3Feature as V3Feature, type index$8_V3GenerateRequest as V3GenerateRequest, type index$8_V3InputSlot as V3InputSlot, type index$8_V3ParamSchema as V3ParamSchema, type index$8_V3QueueRequest as V3QueueRequest, type index$8_V3QueueResponse as V3QueueResponse, type index$8_V3QueueTicket as V3QueueTicket, type index$8_V3TaskCreated as V3TaskCreated, type index$8_V3TaskGroupResponse as V3TaskGroupResponse, type index$8_V3TaskItem as V3TaskItem, type index$8_V3TaskResponse as V3TaskResponse, type index$8_V3TaskSSEEvent as V3TaskSSEEvent, type index$8_V3UploadResponse as V3UploadResponse, type index$8_V3Variant as V3Variant, index$8_aiChatCompletionsRequestSchema as aiChatCompletionsRequestSchema, index$8_aiChatModelSchema as aiChatModelSchema, index$8_aiChatModelsPayloadSchema as aiChatModelsPayloadSchema, index$8_aiChatModelsResponseSchema as aiChatModelsResponseSchema, index$8_aiChatModelsSuccessSchema as aiChatModelsSuccessSchema, index$8_aiChatSessionMetadataSchema as aiChatSessionMetadataSchema, index$8_aiClientMetadataSchema as aiClientMetadataSchema, index$8_aiEndpoints as aiEndpoints, index$8_aiErrorResponseSchema as aiErrorResponseSchema, index$8_aiModelCapabilitiesInputSchema as aiModelCapabilitiesInputSchema, index$8_aiModelCapabilitiesOutputSchema as aiModelCapabilitiesOutputSchema, index$8_aiModelCapabilitiesSchema as aiModelCapabilitiesSchema, index$8_aiModelCapabilityCommonSchema as aiModelCapabilityCommonSchema, index$8_aiModelParameterFieldSchema as aiModelParameterFieldSchema, index$8_aiModelParamsSchema as aiModelParamsSchema, index$8_aiModelSchema as aiModelSchema, index$8_aiModelsRequestSchema as aiModelsRequestSchema, index$8_aiModelsUpdatedAtDataSchema as aiModelsUpdatedAtDataSchema, index$8_aiModelsUpdatedAtResponseSchema as aiModelsUpdatedAtResponseSchema, index$8_aiModelsUpdatedAtSuccessSchema as aiModelsUpdatedAtSuccessSchema, index$8_aiProviderTemplateModelSchema as aiProviderTemplateModelSchema, index$8_aiProviderTemplateSchema as aiProviderTemplateSchema, index$8_aiProviderTemplatesPayloadSchema as aiProviderTemplatesPayloadSchema, index$8_aiProviderTemplatesRequestSchema as aiProviderTemplatesRequestSchema, index$8_aiProviderTemplatesResponseSchema as aiProviderTemplatesResponseSchema, index$8_aiProviderTemplatesSuccessSchema as aiProviderTemplatesSuccessSchema, index$8_aiResponsesRequestSchema as aiResponsesRequestSchema, index$8_inputSlotSchema as inputSlotSchema, index$8_paramSchemaSchema as paramSchemaSchema, index$8_v3BasicSuccessSchema as v3BasicSuccessSchema, index$8_v3CapabilitiesDataSchema as v3CapabilitiesDataSchema, index$8_v3CapabilitiesResponseSchema as v3CapabilitiesResponseSchema, index$8_v3CreditEstimateSchema as v3CreditEstimateSchema, index$8_v3EstimatePriceRequestSchema as v3EstimatePriceRequestSchema, index$8_v3EstimatePriceResponseSchema as v3EstimatePriceResponseSchema, index$8_v3FeatureSchema as v3FeatureSchema, index$8_v3GenerateRequestSchema as v3GenerateRequestSchema, index$8_v3QueueRequestSchema as v3QueueRequestSchema, index$8_v3QueueResponseSchema as v3QueueResponseSchema, index$8_v3QueueTicketSchema as v3QueueTicketSchema, index$8_v3TaskCreatedSchema as v3TaskCreatedSchema, index$8_v3TaskGroupResponseSchema as v3TaskGroupResponseSchema, index$8_v3TaskItemSchema as v3TaskItemSchema, index$8_v3TaskResponseSchema as v3TaskResponseSchema, index$8_v3TaskSSEEventSchema as v3TaskSSEEventSchema, index$8_v3UploadResponseSchema as v3UploadResponseSchema, index$8_v3VariantSchema as v3VariantSchema };
|
|
4252
4857
|
}
|
|
4253
4858
|
|
|
4254
4859
|
declare const aiToolsEndpoints: {
|
|
@@ -4408,23 +5013,23 @@ declare class AiToolsClient {
|
|
|
4408
5013
|
}>;
|
|
4409
5014
|
}
|
|
4410
5015
|
|
|
4411
|
-
type index$
|
|
4412
|
-
declare const index$
|
|
4413
|
-
type index$
|
|
4414
|
-
type index$
|
|
4415
|
-
type index$
|
|
4416
|
-
type index$
|
|
4417
|
-
type index$
|
|
4418
|
-
type index$
|
|
4419
|
-
declare const index$
|
|
4420
|
-
declare const index$
|
|
4421
|
-
declare const index$
|
|
4422
|
-
declare const index$
|
|
4423
|
-
declare const index$
|
|
4424
|
-
declare const index$
|
|
4425
|
-
declare const index$
|
|
4426
|
-
declare namespace index$
|
|
4427
|
-
export { index$
|
|
5016
|
+
type index$7_AiToolsClient = AiToolsClient;
|
|
5017
|
+
declare const index$7_AiToolsClient: typeof AiToolsClient;
|
|
5018
|
+
type index$7_AnalyzeSkillsRequest = AnalyzeSkillsRequest;
|
|
5019
|
+
type index$7_AnalyzeSkillsResponse = AnalyzeSkillsResponse;
|
|
5020
|
+
type index$7_RecommendActionsRequest = RecommendActionsRequest;
|
|
5021
|
+
type index$7_RecommendActionsResponse = RecommendActionsResponse;
|
|
5022
|
+
type index$7_SummarizeRequest = SummarizeRequest;
|
|
5023
|
+
type index$7_SummarizeResponse = SummarizeResponse;
|
|
5024
|
+
declare const index$7_aiToolsEndpoints: typeof aiToolsEndpoints;
|
|
5025
|
+
declare const index$7_analyzeSkillsRequestSchema: typeof analyzeSkillsRequestSchema;
|
|
5026
|
+
declare const index$7_analyzeSkillsResponseSchema: typeof analyzeSkillsResponseSchema;
|
|
5027
|
+
declare const index$7_recommendActionsRequestSchema: typeof recommendActionsRequestSchema;
|
|
5028
|
+
declare const index$7_recommendActionsResponseSchema: typeof recommendActionsResponseSchema;
|
|
5029
|
+
declare const index$7_summarizeRequestSchema: typeof summarizeRequestSchema;
|
|
5030
|
+
declare const index$7_summarizeResponseSchema: typeof summarizeResponseSchema;
|
|
5031
|
+
declare namespace index$7 {
|
|
5032
|
+
export { index$7_AiToolsClient as AiToolsClient, type index$7_AnalyzeSkillsRequest as AnalyzeSkillsRequest, type index$7_AnalyzeSkillsResponse as AnalyzeSkillsResponse, type index$7_RecommendActionsRequest as RecommendActionsRequest, type index$7_RecommendActionsResponse as RecommendActionsResponse, type index$7_SummarizeRequest as SummarizeRequest, type index$7_SummarizeResponse as SummarizeResponse, index$7_aiToolsEndpoints as aiToolsEndpoints, index$7_analyzeSkillsRequestSchema as analyzeSkillsRequestSchema, index$7_analyzeSkillsResponseSchema as analyzeSkillsResponseSchema, index$7_recommendActionsRequestSchema as recommendActionsRequestSchema, index$7_recommendActionsResponseSchema as recommendActionsResponseSchema, index$7_summarizeRequestSchema as summarizeRequestSchema, index$7_summarizeResponseSchema as summarizeResponseSchema };
|
|
4428
5033
|
}
|
|
4429
5034
|
|
|
4430
5035
|
declare const authEndpoints: {
|
|
@@ -4553,28 +5158,28 @@ type AuthExchangeResponse = z.infer<typeof authExchangeResponseSchema>;
|
|
|
4553
5158
|
type AuthLogoutRequest = z.infer<typeof authLogoutRequestSchema>;
|
|
4554
5159
|
type AuthLogoutResponse = z.infer<typeof authLogoutResponseSchema>;
|
|
4555
5160
|
|
|
4556
|
-
type index$
|
|
4557
|
-
declare const index$
|
|
4558
|
-
type index$
|
|
4559
|
-
type index$
|
|
4560
|
-
type index$
|
|
4561
|
-
type index$
|
|
4562
|
-
type index$
|
|
4563
|
-
type index$
|
|
4564
|
-
type index$
|
|
4565
|
-
type index$
|
|
4566
|
-
declare const index$
|
|
4567
|
-
declare const index$
|
|
4568
|
-
declare const index$
|
|
4569
|
-
declare const index$
|
|
4570
|
-
declare const index$
|
|
4571
|
-
declare const index$
|
|
4572
|
-
declare const index$
|
|
4573
|
-
declare const index$
|
|
4574
|
-
declare const index$
|
|
4575
|
-
declare const index$
|
|
4576
|
-
declare namespace index$
|
|
4577
|
-
export { index$
|
|
5161
|
+
type index$6_AuthClient = AuthClient;
|
|
5162
|
+
declare const index$6_AuthClient: typeof AuthClient;
|
|
5163
|
+
type index$6_AuthExchangeRequest = AuthExchangeRequest;
|
|
5164
|
+
type index$6_AuthExchangeResponse = AuthExchangeResponse;
|
|
5165
|
+
type index$6_AuthLogoutRequest = AuthLogoutRequest;
|
|
5166
|
+
type index$6_AuthLogoutResponse = AuthLogoutResponse;
|
|
5167
|
+
type index$6_AuthRefreshError = AuthRefreshError;
|
|
5168
|
+
type index$6_AuthRefreshRequest = AuthRefreshRequest;
|
|
5169
|
+
type index$6_AuthRefreshResponse = AuthRefreshResponse;
|
|
5170
|
+
type index$6_AuthRefreshSuccess = AuthRefreshSuccess;
|
|
5171
|
+
declare const index$6_authEndpoints: typeof authEndpoints;
|
|
5172
|
+
declare const index$6_authExchangeRequestSchema: typeof authExchangeRequestSchema;
|
|
5173
|
+
declare const index$6_authExchangeResponseSchema: typeof authExchangeResponseSchema;
|
|
5174
|
+
declare const index$6_authLogoutRequestSchema: typeof authLogoutRequestSchema;
|
|
5175
|
+
declare const index$6_authLogoutResponseSchema: typeof authLogoutResponseSchema;
|
|
5176
|
+
declare const index$6_authRefreshErrorSchema: typeof authRefreshErrorSchema;
|
|
5177
|
+
declare const index$6_authRefreshRequestSchema: typeof authRefreshRequestSchema;
|
|
5178
|
+
declare const index$6_authRefreshResponseSchema: typeof authRefreshResponseSchema;
|
|
5179
|
+
declare const index$6_authRefreshSuccessSchema: typeof authRefreshSuccessSchema;
|
|
5180
|
+
declare const index$6_authRefreshUserSchema: typeof authRefreshUserSchema;
|
|
5181
|
+
declare namespace index$6 {
|
|
5182
|
+
export { index$6_AuthClient as AuthClient, type index$6_AuthExchangeRequest as AuthExchangeRequest, type index$6_AuthExchangeResponse as AuthExchangeResponse, type index$6_AuthLogoutRequest as AuthLogoutRequest, type index$6_AuthLogoutResponse as AuthLogoutResponse, type index$6_AuthRefreshError as AuthRefreshError, type index$6_AuthRefreshRequest as AuthRefreshRequest, type index$6_AuthRefreshResponse as AuthRefreshResponse, type index$6_AuthRefreshSuccess as AuthRefreshSuccess, index$6_authEndpoints as authEndpoints, index$6_authExchangeRequestSchema as authExchangeRequestSchema, index$6_authExchangeResponseSchema as authExchangeResponseSchema, index$6_authLogoutRequestSchema as authLogoutRequestSchema, index$6_authLogoutResponseSchema as authLogoutResponseSchema, index$6_authRefreshErrorSchema as authRefreshErrorSchema, index$6_authRefreshRequestSchema as authRefreshRequestSchema, index$6_authRefreshResponseSchema as authRefreshResponseSchema, index$6_authRefreshSuccessSchema as authRefreshSuccessSchema, index$6_authRefreshUserSchema as authRefreshUserSchema };
|
|
4578
5183
|
}
|
|
4579
5184
|
|
|
4580
5185
|
declare const auxiliaryEndpoints: {
|
|
@@ -4697,18 +5302,18 @@ declare class AuxiliaryClient {
|
|
|
4697
5302
|
}>;
|
|
4698
5303
|
}
|
|
4699
5304
|
|
|
4700
|
-
type index$
|
|
4701
|
-
declare const index$
|
|
4702
|
-
type index$
|
|
4703
|
-
type index$
|
|
4704
|
-
type index$
|
|
4705
|
-
type index$
|
|
4706
|
-
declare const index$
|
|
4707
|
-
declare const index$
|
|
4708
|
-
declare const index$
|
|
4709
|
-
declare const index$
|
|
4710
|
-
declare namespace index$
|
|
4711
|
-
export { index$
|
|
5305
|
+
type index$5_AuxiliaryClient = AuxiliaryClient;
|
|
5306
|
+
declare const index$5_AuxiliaryClient: typeof AuxiliaryClient;
|
|
5307
|
+
type index$5_AuxiliaryInferRequest = AuxiliaryInferRequest;
|
|
5308
|
+
type index$5_AuxiliaryInferResponse = AuxiliaryInferResponse;
|
|
5309
|
+
type index$5_AuxiliaryQuota = AuxiliaryQuota;
|
|
5310
|
+
type index$5_AuxiliaryQuotaResponse = AuxiliaryQuotaResponse;
|
|
5311
|
+
declare const index$5_auxiliaryEndpoints: typeof auxiliaryEndpoints;
|
|
5312
|
+
declare const index$5_auxiliaryInferRequestSchema: typeof auxiliaryInferRequestSchema;
|
|
5313
|
+
declare const index$5_auxiliaryInferResponseSchema: typeof auxiliaryInferResponseSchema;
|
|
5314
|
+
declare const index$5_auxiliaryQuotaResponseSchema: typeof auxiliaryQuotaResponseSchema;
|
|
5315
|
+
declare namespace index$5 {
|
|
5316
|
+
export { index$5_AuxiliaryClient as AuxiliaryClient, type index$5_AuxiliaryInferRequest as AuxiliaryInferRequest, type index$5_AuxiliaryInferResponse as AuxiliaryInferResponse, type index$5_AuxiliaryQuota as AuxiliaryQuota, type index$5_AuxiliaryQuotaResponse as AuxiliaryQuotaResponse, index$5_auxiliaryEndpoints as auxiliaryEndpoints, index$5_auxiliaryInferRequestSchema as auxiliaryInferRequestSchema, index$5_auxiliaryInferResponseSchema as auxiliaryInferResponseSchema, index$5_auxiliaryQuotaResponseSchema as auxiliaryQuotaResponseSchema };
|
|
4712
5317
|
}
|
|
4713
5318
|
|
|
4714
5319
|
/** Feedback API endpoints. */
|
|
@@ -5055,37 +5660,37 @@ declare class FeedbackClient {
|
|
|
5055
5660
|
detail(feedbackId: string): Promise<FeedbackDetailResponse>;
|
|
5056
5661
|
}
|
|
5057
5662
|
|
|
5058
|
-
type index$
|
|
5059
|
-
type index$
|
|
5060
|
-
declare const index$
|
|
5061
|
-
type index$
|
|
5062
|
-
type index$
|
|
5063
|
-
type index$
|
|
5064
|
-
type index$
|
|
5065
|
-
type index$
|
|
5066
|
-
type index$
|
|
5067
|
-
type index$
|
|
5068
|
-
type index$
|
|
5069
|
-
type index$
|
|
5070
|
-
type index$
|
|
5071
|
-
type index$
|
|
5072
|
-
type index$
|
|
5073
|
-
declare const index$
|
|
5074
|
-
declare const index$
|
|
5075
|
-
declare const index$
|
|
5076
|
-
declare const index$
|
|
5077
|
-
declare const index$
|
|
5078
|
-
declare const index$
|
|
5079
|
-
declare const index$
|
|
5080
|
-
declare const index$
|
|
5081
|
-
declare const index$
|
|
5082
|
-
declare const index$
|
|
5083
|
-
declare const index$
|
|
5084
|
-
declare const index$
|
|
5085
|
-
declare const index$
|
|
5086
|
-
declare const index$
|
|
5087
|
-
declare namespace index$
|
|
5088
|
-
export { type index$
|
|
5663
|
+
type index$4_FeedbackAttachmentResponse = FeedbackAttachmentResponse;
|
|
5664
|
+
type index$4_FeedbackClient = FeedbackClient;
|
|
5665
|
+
declare const index$4_FeedbackClient: typeof FeedbackClient;
|
|
5666
|
+
type index$4_FeedbackDetailPayload = FeedbackDetailPayload;
|
|
5667
|
+
type index$4_FeedbackDetailRequest = FeedbackDetailRequest;
|
|
5668
|
+
type index$4_FeedbackDetailResponse = FeedbackDetailResponse;
|
|
5669
|
+
type index$4_FeedbackListPayload = FeedbackListPayload;
|
|
5670
|
+
type index$4_FeedbackListRequest = FeedbackListRequest;
|
|
5671
|
+
type index$4_FeedbackListResponse = FeedbackListResponse;
|
|
5672
|
+
type index$4_FeedbackSaasStatus = FeedbackSaasStatus;
|
|
5673
|
+
type index$4_FeedbackSource = FeedbackSource;
|
|
5674
|
+
type index$4_FeedbackSubmitError = FeedbackSubmitError;
|
|
5675
|
+
type index$4_FeedbackSubmitRequest = FeedbackSubmitRequest;
|
|
5676
|
+
type index$4_FeedbackSubmitResponse = FeedbackSubmitResponse;
|
|
5677
|
+
type index$4_FeedbackType = FeedbackType;
|
|
5678
|
+
declare const index$4_feedbackDetailPayloadSchema: typeof feedbackDetailPayloadSchema;
|
|
5679
|
+
declare const index$4_feedbackDetailRequestSchema: typeof feedbackDetailRequestSchema;
|
|
5680
|
+
declare const index$4_feedbackDetailResponseSchema: typeof feedbackDetailResponseSchema;
|
|
5681
|
+
declare const index$4_feedbackEndpoints: typeof feedbackEndpoints;
|
|
5682
|
+
declare const index$4_feedbackItemSchema: typeof feedbackItemSchema;
|
|
5683
|
+
declare const index$4_feedbackListPayloadSchema: typeof feedbackListPayloadSchema;
|
|
5684
|
+
declare const index$4_feedbackListRequestSchema: typeof feedbackListRequestSchema;
|
|
5685
|
+
declare const index$4_feedbackListResponseSchema: typeof feedbackListResponseSchema;
|
|
5686
|
+
declare const index$4_feedbackSaasStatusSchema: typeof feedbackSaasStatusSchema;
|
|
5687
|
+
declare const index$4_feedbackSourceSchema: typeof feedbackSourceSchema;
|
|
5688
|
+
declare const index$4_feedbackSubmitErrorSchema: typeof feedbackSubmitErrorSchema;
|
|
5689
|
+
declare const index$4_feedbackSubmitRequestSchema: typeof feedbackSubmitRequestSchema;
|
|
5690
|
+
declare const index$4_feedbackSubmitResponseSchema: typeof feedbackSubmitResponseSchema;
|
|
5691
|
+
declare const index$4_feedbackTypeSchema: typeof feedbackTypeSchema;
|
|
5692
|
+
declare namespace index$4 {
|
|
5693
|
+
export { type index$4_FeedbackAttachmentResponse as FeedbackAttachmentResponse, index$4_FeedbackClient as FeedbackClient, type index$4_FeedbackDetailPayload as FeedbackDetailPayload, type index$4_FeedbackDetailRequest as FeedbackDetailRequest, type index$4_FeedbackDetailResponse as FeedbackDetailResponse, type index$4_FeedbackListPayload as FeedbackListPayload, type index$4_FeedbackListRequest as FeedbackListRequest, type index$4_FeedbackListResponse as FeedbackListResponse, type index$4_FeedbackSaasStatus as FeedbackSaasStatus, type index$4_FeedbackSource as FeedbackSource, type index$4_FeedbackSubmitError as FeedbackSubmitError, type index$4_FeedbackSubmitRequest as FeedbackSubmitRequest, type index$4_FeedbackSubmitResponse as FeedbackSubmitResponse, type index$4_FeedbackType as FeedbackType, index$4_feedbackDetailPayloadSchema as feedbackDetailPayloadSchema, index$4_feedbackDetailRequestSchema as feedbackDetailRequestSchema, index$4_feedbackDetailResponseSchema as feedbackDetailResponseSchema, index$4_feedbackEndpoints as feedbackEndpoints, index$4_feedbackItemSchema as feedbackItemSchema, index$4_feedbackListPayloadSchema as feedbackListPayloadSchema, index$4_feedbackListRequestSchema as feedbackListRequestSchema, index$4_feedbackListResponseSchema as feedbackListResponseSchema, index$4_feedbackSaasStatusSchema as feedbackSaasStatusSchema, index$4_feedbackSourceSchema as feedbackSourceSchema, index$4_feedbackSubmitErrorSchema as feedbackSubmitErrorSchema, index$4_feedbackSubmitRequestSchema as feedbackSubmitRequestSchema, index$4_feedbackSubmitResponseSchema as feedbackSubmitResponseSchema, index$4_feedbackTypeSchema as feedbackTypeSchema };
|
|
5089
5694
|
}
|
|
5090
5695
|
|
|
5091
5696
|
/** Payment API endpoints. */
|
|
@@ -5348,37 +5953,170 @@ type RefundRequest = z.infer<typeof refundRequestSchema>;
|
|
|
5348
5953
|
/** Response type for requesting a refund. */
|
|
5349
5954
|
type RefundResponse = z.infer<typeof refundResponseSchema>;
|
|
5350
5955
|
|
|
5351
|
-
type index$
|
|
5352
|
-
type index$
|
|
5353
|
-
type index$
|
|
5354
|
-
type index$
|
|
5355
|
-
type index$
|
|
5356
|
-
type index$
|
|
5357
|
-
declare const index$
|
|
5358
|
-
type index$
|
|
5359
|
-
type index$
|
|
5360
|
-
type index$
|
|
5361
|
-
type index$
|
|
5362
|
-
type index$
|
|
5363
|
-
type index$
|
|
5364
|
-
type index$
|
|
5365
|
-
type index$
|
|
5366
|
-
declare const index$
|
|
5367
|
-
declare const index$
|
|
5368
|
-
declare const index$
|
|
5369
|
-
declare const index$
|
|
5370
|
-
declare const index$
|
|
5371
|
-
declare const index$
|
|
5372
|
-
declare const index$
|
|
5373
|
-
declare const index$
|
|
5374
|
-
declare const index$
|
|
5375
|
-
declare const index$
|
|
5376
|
-
declare const index$
|
|
5377
|
-
declare const index$
|
|
5378
|
-
declare const index$
|
|
5379
|
-
declare const index$
|
|
5956
|
+
type index$3_CreateEmbedOptions = CreateEmbedOptions;
|
|
5957
|
+
type index$3_EmbedEventMap = EmbedEventMap;
|
|
5958
|
+
type index$3_EmbedInstance = EmbedInstance;
|
|
5959
|
+
type index$3_OrderStatusRequest = OrderStatusRequest;
|
|
5960
|
+
type index$3_OrderStatusResponse = OrderStatusResponse;
|
|
5961
|
+
type index$3_PaymentClient = PaymentClient;
|
|
5962
|
+
declare const index$3_PaymentClient: typeof PaymentClient;
|
|
5963
|
+
type index$3_RechargeRequest = RechargeRequest;
|
|
5964
|
+
type index$3_RechargeResponse = RechargeResponse;
|
|
5965
|
+
type index$3_RefundRequest = RefundRequest;
|
|
5966
|
+
type index$3_RefundResponse = RefundResponse;
|
|
5967
|
+
type index$3_SubscribeRequest = SubscribeRequest;
|
|
5968
|
+
type index$3_SubscribeResponse = SubscribeResponse;
|
|
5969
|
+
type index$3_UpgradeRequest = UpgradeRequest;
|
|
5970
|
+
type index$3_UpgradeResponse = UpgradeResponse;
|
|
5971
|
+
declare const index$3_createEmbed: typeof createEmbed;
|
|
5972
|
+
declare const index$3_createPricingEmbed: typeof createPricingEmbed;
|
|
5973
|
+
declare const index$3_createRechargeEmbed: typeof createRechargeEmbed;
|
|
5974
|
+
declare const index$3_orderStatusRequestSchema: typeof orderStatusRequestSchema;
|
|
5975
|
+
declare const index$3_orderStatusResponseSchema: typeof orderStatusResponseSchema;
|
|
5976
|
+
declare const index$3_paymentEndpoints: typeof paymentEndpoints;
|
|
5977
|
+
declare const index$3_rechargeRequestSchema: typeof rechargeRequestSchema;
|
|
5978
|
+
declare const index$3_rechargeResponseSchema: typeof rechargeResponseSchema;
|
|
5979
|
+
declare const index$3_refundRequestSchema: typeof refundRequestSchema;
|
|
5980
|
+
declare const index$3_refundResponseSchema: typeof refundResponseSchema;
|
|
5981
|
+
declare const index$3_subscribeRequestSchema: typeof subscribeRequestSchema;
|
|
5982
|
+
declare const index$3_subscribeResponseSchema: typeof subscribeResponseSchema;
|
|
5983
|
+
declare const index$3_upgradeRequestSchema: typeof upgradeRequestSchema;
|
|
5984
|
+
declare const index$3_upgradeResponseSchema: typeof upgradeResponseSchema;
|
|
5985
|
+
declare namespace index$3 {
|
|
5986
|
+
export { type index$3_CreateEmbedOptions as CreateEmbedOptions, type index$3_EmbedEventMap as EmbedEventMap, type index$3_EmbedInstance as EmbedInstance, type index$3_OrderStatusRequest as OrderStatusRequest, type index$3_OrderStatusResponse as OrderStatusResponse, index$3_PaymentClient as PaymentClient, type index$3_RechargeRequest as RechargeRequest, type index$3_RechargeResponse as RechargeResponse, type index$3_RefundRequest as RefundRequest, type index$3_RefundResponse as RefundResponse, type index$3_SubscribeRequest as SubscribeRequest, type index$3_SubscribeResponse as SubscribeResponse, type index$3_UpgradeRequest as UpgradeRequest, type index$3_UpgradeResponse as UpgradeResponse, index$3_createEmbed as createEmbed, index$3_createPricingEmbed as createPricingEmbed, index$3_createRechargeEmbed as createRechargeEmbed, index$3_orderStatusRequestSchema as orderStatusRequestSchema, index$3_orderStatusResponseSchema as orderStatusResponseSchema, index$3_paymentEndpoints as paymentEndpoints, index$3_rechargeRequestSchema as rechargeRequestSchema, index$3_rechargeResponseSchema as rechargeResponseSchema, index$3_refundRequestSchema as refundRequestSchema, index$3_refundResponseSchema as refundResponseSchema, index$3_subscribeRequestSchema as subscribeRequestSchema, index$3_subscribeResponseSchema as subscribeResponseSchema, index$3_upgradeRequestSchema as upgradeRequestSchema, index$3_upgradeResponseSchema as upgradeResponseSchema };
|
|
5987
|
+
}
|
|
5988
|
+
|
|
5989
|
+
/** Redeem code API endpoints. */
|
|
5990
|
+
declare const redeemCodeEndpoints: {
|
|
5991
|
+
/** Redeem one code for current user. */
|
|
5992
|
+
readonly redeem: Endpoint<{
|
|
5993
|
+
code: string;
|
|
5994
|
+
}, {
|
|
5995
|
+
id: string;
|
|
5996
|
+
code: string;
|
|
5997
|
+
title: string;
|
|
5998
|
+
creditsAmount: number;
|
|
5999
|
+
newBalance: number;
|
|
6000
|
+
createdAt: string;
|
|
6001
|
+
}>;
|
|
6002
|
+
/** List current user redemption records. */
|
|
6003
|
+
readonly records: Endpoint<{
|
|
6004
|
+
page: number;
|
|
6005
|
+
pageSize: number;
|
|
6006
|
+
}, {
|
|
6007
|
+
items: {
|
|
6008
|
+
id: string;
|
|
6009
|
+
creditsAmount: number;
|
|
6010
|
+
createdAt: string;
|
|
6011
|
+
redeemCode: {
|
|
6012
|
+
id: string;
|
|
6013
|
+
code: string;
|
|
6014
|
+
title: string;
|
|
6015
|
+
};
|
|
6016
|
+
}[];
|
|
6017
|
+
total: number;
|
|
6018
|
+
page: number;
|
|
6019
|
+
pageSize: number;
|
|
6020
|
+
pageCount: number;
|
|
6021
|
+
}>;
|
|
6022
|
+
};
|
|
6023
|
+
|
|
6024
|
+
/** Redeem code summary schema. */
|
|
6025
|
+
declare const redeemCodeSummarySchema: z.ZodObject<{
|
|
6026
|
+
id: z.ZodString;
|
|
6027
|
+
code: z.ZodString;
|
|
6028
|
+
title: z.ZodString;
|
|
6029
|
+
}, z.core.$strip>;
|
|
6030
|
+
/** Request schema for redeeming one code. */
|
|
6031
|
+
declare const redeemCodeRedeemRequestSchema: z.ZodObject<{
|
|
6032
|
+
code: z.ZodString;
|
|
6033
|
+
}, z.core.$strip>;
|
|
6034
|
+
/** Response schema for redeeming one code. */
|
|
6035
|
+
declare const redeemCodeRedeemResponseSchema: z.ZodObject<{
|
|
6036
|
+
id: z.ZodString;
|
|
6037
|
+
code: z.ZodString;
|
|
6038
|
+
title: z.ZodString;
|
|
6039
|
+
creditsAmount: z.ZodNumber;
|
|
6040
|
+
newBalance: z.ZodNumber;
|
|
6041
|
+
createdAt: z.ZodString;
|
|
6042
|
+
}, z.core.$strip>;
|
|
6043
|
+
/** Request schema for listing current member redemption records. */
|
|
6044
|
+
declare const redeemCodeRecordsRequestSchema: z.ZodObject<{
|
|
6045
|
+
page: z.ZodDefault<z.ZodNumber>;
|
|
6046
|
+
pageSize: z.ZodDefault<z.ZodNumber>;
|
|
6047
|
+
}, z.core.$strip>;
|
|
6048
|
+
/** One redemption record item schema. */
|
|
6049
|
+
declare const redeemCodeRecordItemSchema: z.ZodObject<{
|
|
6050
|
+
id: z.ZodString;
|
|
6051
|
+
creditsAmount: z.ZodNumber;
|
|
6052
|
+
createdAt: z.ZodString;
|
|
6053
|
+
redeemCode: z.ZodObject<{
|
|
6054
|
+
id: z.ZodString;
|
|
6055
|
+
code: z.ZodString;
|
|
6056
|
+
title: z.ZodString;
|
|
6057
|
+
}, z.core.$strip>;
|
|
6058
|
+
}, z.core.$strip>;
|
|
6059
|
+
/** Response schema for listing current member redemption records. */
|
|
6060
|
+
declare const redeemCodeRecordsResponseSchema: z.ZodObject<{
|
|
6061
|
+
items: z.ZodArray<z.ZodObject<{
|
|
6062
|
+
id: z.ZodString;
|
|
6063
|
+
creditsAmount: z.ZodNumber;
|
|
6064
|
+
createdAt: z.ZodString;
|
|
6065
|
+
redeemCode: z.ZodObject<{
|
|
6066
|
+
id: z.ZodString;
|
|
6067
|
+
code: z.ZodString;
|
|
6068
|
+
title: z.ZodString;
|
|
6069
|
+
}, z.core.$strip>;
|
|
6070
|
+
}, z.core.$strip>>;
|
|
6071
|
+
total: z.ZodNumber;
|
|
6072
|
+
page: z.ZodNumber;
|
|
6073
|
+
pageSize: z.ZodNumber;
|
|
6074
|
+
pageCount: z.ZodNumber;
|
|
6075
|
+
}, z.core.$strip>;
|
|
6076
|
+
/** Redeem code summary type. */
|
|
6077
|
+
type RedeemCodeSummary = z.infer<typeof redeemCodeSummarySchema>;
|
|
6078
|
+
/** Redeem request type. */
|
|
6079
|
+
type RedeemCodeRedeemRequest = z.infer<typeof redeemCodeRedeemRequestSchema>;
|
|
6080
|
+
/** Redeem response type. */
|
|
6081
|
+
type RedeemCodeRedeemResponse = z.infer<typeof redeemCodeRedeemResponseSchema>;
|
|
6082
|
+
/** Records request type. */
|
|
6083
|
+
type RedeemCodeRecordsRequest = z.infer<typeof redeemCodeRecordsRequestSchema>;
|
|
6084
|
+
/** One redemption record item type. */
|
|
6085
|
+
type RedeemCodeRecordItem = z.infer<typeof redeemCodeRecordItemSchema>;
|
|
6086
|
+
/** Records response type. */
|
|
6087
|
+
type RedeemCodeRecordsResponse = z.infer<typeof redeemCodeRecordsResponseSchema>;
|
|
6088
|
+
|
|
6089
|
+
type RedeemCodeSdkHost = SdkHost<{
|
|
6090
|
+
redeemCode: typeof redeemCodeEndpoints;
|
|
6091
|
+
}>;
|
|
6092
|
+
declare class RedeemCodeClient {
|
|
6093
|
+
/** SDK host used for redeem code requests. */
|
|
6094
|
+
private readonly sdk;
|
|
6095
|
+
/** Create redeem code client. */
|
|
6096
|
+
constructor(sdk: RedeemCodeSdkHost);
|
|
6097
|
+
/** Redeem one code for current user. */
|
|
6098
|
+
redeem(payload: RedeemCodeRedeemRequest): Promise<RedeemCodeRedeemResponse>;
|
|
6099
|
+
/** List redemption records for current user. */
|
|
6100
|
+
records(payload?: RedeemCodeRecordsRequest): Promise<RedeemCodeRecordsResponse>;
|
|
6101
|
+
}
|
|
6102
|
+
|
|
6103
|
+
type index$2_RedeemCodeClient = RedeemCodeClient;
|
|
6104
|
+
declare const index$2_RedeemCodeClient: typeof RedeemCodeClient;
|
|
6105
|
+
type index$2_RedeemCodeRecordItem = RedeemCodeRecordItem;
|
|
6106
|
+
type index$2_RedeemCodeRecordsRequest = RedeemCodeRecordsRequest;
|
|
6107
|
+
type index$2_RedeemCodeRecordsResponse = RedeemCodeRecordsResponse;
|
|
6108
|
+
type index$2_RedeemCodeRedeemRequest = RedeemCodeRedeemRequest;
|
|
6109
|
+
type index$2_RedeemCodeRedeemResponse = RedeemCodeRedeemResponse;
|
|
6110
|
+
type index$2_RedeemCodeSummary = RedeemCodeSummary;
|
|
6111
|
+
declare const index$2_redeemCodeEndpoints: typeof redeemCodeEndpoints;
|
|
6112
|
+
declare const index$2_redeemCodeRecordItemSchema: typeof redeemCodeRecordItemSchema;
|
|
6113
|
+
declare const index$2_redeemCodeRecordsRequestSchema: typeof redeemCodeRecordsRequestSchema;
|
|
6114
|
+
declare const index$2_redeemCodeRecordsResponseSchema: typeof redeemCodeRecordsResponseSchema;
|
|
6115
|
+
declare const index$2_redeemCodeRedeemRequestSchema: typeof redeemCodeRedeemRequestSchema;
|
|
6116
|
+
declare const index$2_redeemCodeRedeemResponseSchema: typeof redeemCodeRedeemResponseSchema;
|
|
6117
|
+
declare const index$2_redeemCodeSummarySchema: typeof redeemCodeSummarySchema;
|
|
5380
6118
|
declare namespace index$2 {
|
|
5381
|
-
export {
|
|
6119
|
+
export { index$2_RedeemCodeClient as RedeemCodeClient, type index$2_RedeemCodeRecordItem as RedeemCodeRecordItem, type index$2_RedeemCodeRecordsRequest as RedeemCodeRecordsRequest, type index$2_RedeemCodeRecordsResponse as RedeemCodeRecordsResponse, type index$2_RedeemCodeRedeemRequest as RedeemCodeRedeemRequest, type index$2_RedeemCodeRedeemResponse as RedeemCodeRedeemResponse, type index$2_RedeemCodeSummary as RedeemCodeSummary, index$2_redeemCodeEndpoints as redeemCodeEndpoints, index$2_redeemCodeRecordItemSchema as redeemCodeRecordItemSchema, index$2_redeemCodeRecordsRequestSchema as redeemCodeRecordsRequestSchema, index$2_redeemCodeRecordsResponseSchema as redeemCodeRecordsResponseSchema, index$2_redeemCodeRedeemRequestSchema as redeemCodeRedeemRequestSchema, index$2_redeemCodeRedeemResponseSchema as redeemCodeRedeemResponseSchema, index$2_redeemCodeSummarySchema as redeemCodeSummarySchema };
|
|
5382
6120
|
}
|
|
5383
6121
|
|
|
5384
6122
|
/** Skill market API endpoints. */
|
|
@@ -5804,6 +6542,7 @@ declare const userEndpoints: {
|
|
|
5804
6542
|
provider: string;
|
|
5805
6543
|
membershipLevel: "free" | "lite" | "pro" | "premium";
|
|
5806
6544
|
creditsBalance: number;
|
|
6545
|
+
isAdmin: boolean;
|
|
5807
6546
|
createdAt: string;
|
|
5808
6547
|
updatedAt: string;
|
|
5809
6548
|
email?: string | undefined;
|
|
@@ -5829,6 +6568,7 @@ declare class UserClient {
|
|
|
5829
6568
|
provider: string;
|
|
5830
6569
|
membershipLevel: "free" | "lite" | "pro" | "premium";
|
|
5831
6570
|
creditsBalance: number;
|
|
6571
|
+
isAdmin: boolean;
|
|
5832
6572
|
createdAt: string;
|
|
5833
6573
|
updatedAt: string;
|
|
5834
6574
|
email?: string | undefined;
|
|
@@ -5861,6 +6601,7 @@ declare const userSelfSchema: z.ZodObject<{
|
|
|
5861
6601
|
}>;
|
|
5862
6602
|
isInternal: z.ZodOptional<z.ZodBoolean>;
|
|
5863
6603
|
creditsBalance: z.ZodNumber;
|
|
6604
|
+
isAdmin: z.ZodBoolean;
|
|
5864
6605
|
createdAt: z.ZodString;
|
|
5865
6606
|
updatedAt: z.ZodString;
|
|
5866
6607
|
}, z.core.$strip>;
|
|
@@ -5882,6 +6623,7 @@ declare const userSelfResponseSchema: z.ZodObject<{
|
|
|
5882
6623
|
}>;
|
|
5883
6624
|
isInternal: z.ZodOptional<z.ZodBoolean>;
|
|
5884
6625
|
creditsBalance: z.ZodNumber;
|
|
6626
|
+
isAdmin: z.ZodBoolean;
|
|
5885
6627
|
createdAt: z.ZodString;
|
|
5886
6628
|
updatedAt: z.ZodString;
|
|
5887
6629
|
}, z.core.$strip>;
|
|
@@ -5926,6 +6668,8 @@ declare class SaaSClient extends BaseSaaSClient<SaaSContract> {
|
|
|
5926
6668
|
readonly feedback: FeedbackClient;
|
|
5927
6669
|
/** Payment-related APIs. */
|
|
5928
6670
|
readonly payment: PaymentClient;
|
|
6671
|
+
/** Redeem code-related APIs. */
|
|
6672
|
+
readonly redeemCode: RedeemCodeClient;
|
|
5929
6673
|
/** Skill market APIs. */
|
|
5930
6674
|
readonly skills: SkillsClient;
|
|
5931
6675
|
/** User-related APIs. */
|
|
@@ -5975,4 +6719,4 @@ declare function createTrpcClient(options: TrpcClientOptions): _trpc_client.TRPC
|
|
|
5975
6719
|
transformer: false;
|
|
5976
6720
|
}, _trpc_server.TRPCDecorateCreateRouterOptions<_trpc_server.TRPCCreateRouterOptions>>>;
|
|
5977
6721
|
|
|
5978
|
-
export { AI_MODEL_CAPABILITY_INPUT_KEYS, AI_MODEL_CAPABILITY_OUTPUT_KEYS, AI_MODEL_TAGS, AI_MODEL_TAG_LABELS, type AiChatCompletionsRequest, type AiChatModel, type AiChatModelsResponse, type AiChatSessionMetadata, AiClient, type AiClientMetadata, type AiFileUploadOptions, type AiFileUploadResponse, type AiModel, type AiModelCapabilities, type AiModelCapabilitiesInput, type AiModelCapabilitiesOutput, type AiModelCapabilityInputKey, type AiModelCapabilityOutputKey, type AiModelTag, type AiModelsUpdatedAtData, type AiModelsUpdatedAtResponse, type AiProviderTemplate, type AiProviderTemplateModel, type AiProviderTemplatesResponse, type AiResponsesRequest, AiToolsClient, type AnalyzeSkillsRequest, type AnalyzeSkillsResponse, AuthClient, type AuthExchangeRequest, type AuthExchangeResponse, type AuthLogoutRequest, type AuthLogoutResponse, type AuthRefreshError, type AuthRefreshRequest, type AuthRefreshResponse, type AuthRefreshSuccess, AuxiliaryClient, type AuxiliaryInferRequest, type AuxiliaryInferResponse, type AuxiliaryQuota, type AuxiliaryQuotaResponse, type CreateEmbedOptions, type EmbedEventMap, type EmbedInstance, Endpoint, type FeedbackAttachmentResponse, FeedbackClient, type FeedbackDetailPayload, type FeedbackDetailRequest, type FeedbackDetailResponse, type FeedbackListPayload, type FeedbackListRequest, type FeedbackListResponse, type FeedbackSaasStatus, type FeedbackSource, type FeedbackSubmitError, type FeedbackSubmitRequest, type FeedbackSubmitResponse, type FeedbackType, type HeaderInput, type HttpMethod, MEDIA_FEATURES, MODEL_PROVIDERS, type MediaFeatureId, type ModelProviderId, type OrderStatusRequest, type OrderStatusResponse, PaymentClient, type RechargeRequest, type RechargeResponse, type RecommendActionsRequest, type RecommendActionsResponse, type RefundRequest, type RefundResponse, type ResponseType, SaaSClient, type SaaSClientOptions, SaaSContract, SaaSHttpError, SaaSNetworkError, SaaSSchemaError, type SkillArchiveFormat, type SkillListItem, type SkillOwnerSummary, type SkillSource, type SkillStatus, type SkillType, type SkillVersionSummary, type SkillVisibility, SkillsClient, type SkillsDetailResponse, type SkillsDownloadResponse, type SkillsListRequest, type SkillsListResponse, type SubscribeRequest, type SubscribeResponse, type SummarizeRequest, type SummarizeResponse, type TrpcClientOptions, type UpgradeRequest, type UpgradeResponse, UserClient, type UserMembershipLevel, type UserSelf, type UserSelfRequest, type UserSelfResponse, type V3BasicSuccess, type V3CapabilitiesData, type V3CapabilitiesResponse, type V3CreditEstimate, type V3EstimatePriceRequest, type V3EstimatePriceResponse, type V3Feature, type V3GenerateRequest, type V3InputSlot, type V3ParamSchema, type V3QueueRequest, type V3QueueResponse, type V3QueueTicket, type V3TaskCreated, type V3TaskGroupResponse, type V3TaskItem, type V3TaskResponse, type V3UploadResponse, type V3Variant, aiChatCompletionsRequestSchema, aiChatModelSchema, aiChatModelsPayloadSchema, aiChatModelsResponseSchema, aiChatModelsSuccessSchema, aiChatSessionMetadataSchema, aiClientMetadataSchema, aiEndpoints, aiErrorResponseSchema, aiModelCapabilitiesInputSchema, aiModelCapabilitiesOutputSchema, aiModelCapabilitiesSchema, aiModelCapabilityCommonSchema, aiModelParameterFieldSchema, aiModelParamsSchema, aiModelSchema, aiModelsRequestSchema, aiModelsUpdatedAtDataSchema, aiModelsUpdatedAtResponseSchema, aiModelsUpdatedAtSuccessSchema, index$
|
|
6722
|
+
export { AI_MODEL_CAPABILITY_INPUT_KEYS, AI_MODEL_CAPABILITY_OUTPUT_KEYS, AI_MODEL_TAGS, AI_MODEL_TAG_LABELS, type AiChatCompletionsRequest, type AiChatModel, type AiChatModelsResponse, type AiChatSessionMetadata, AiClient, type AiClientMetadata, type AiFileUploadOptions, type AiFileUploadResponse, type AiModel, type AiModelCapabilities, type AiModelCapabilitiesInput, type AiModelCapabilitiesOutput, type AiModelCapabilityInputKey, type AiModelCapabilityOutputKey, type AiModelTag, type AiModelsUpdatedAtData, type AiModelsUpdatedAtResponse, type AiProviderTemplate, type AiProviderTemplateModel, type AiProviderTemplatesResponse, type AiResponsesRequest, AiToolsClient, type AnalyzeSkillsRequest, type AnalyzeSkillsResponse, AuthClient, type AuthExchangeRequest, type AuthExchangeResponse, type AuthLogoutRequest, type AuthLogoutResponse, type AuthRefreshError, type AuthRefreshRequest, type AuthRefreshResponse, type AuthRefreshSuccess, AuxiliaryClient, type AuxiliaryInferRequest, type AuxiliaryInferResponse, type AuxiliaryQuota, type AuxiliaryQuotaResponse, type CreateEmbedOptions, type EmbedEventMap, type EmbedInstance, Endpoint, type FeedbackAttachmentResponse, FeedbackClient, type FeedbackDetailPayload, type FeedbackDetailRequest, type FeedbackDetailResponse, type FeedbackListPayload, type FeedbackListRequest, type FeedbackListResponse, type FeedbackSaasStatus, type FeedbackSource, type FeedbackSubmitError, type FeedbackSubmitRequest, type FeedbackSubmitResponse, type FeedbackType, type HeaderInput, type HttpMethod, MEDIA_FEATURES, MODEL_PROVIDERS, type MediaFeatureId, type ModelProviderId, type OrderStatusRequest, type OrderStatusResponse, PaymentClient, type RechargeRequest, type RechargeResponse, type RecommendActionsRequest, type RecommendActionsResponse, RedeemCodeClient, type RedeemCodeRecordItem, type RedeemCodeRecordsRequest, type RedeemCodeRecordsResponse, type RedeemCodeRedeemRequest, type RedeemCodeRedeemResponse, type RedeemCodeSummary, type RefundRequest, type RefundResponse, type ResponseType, SaaSClient, type SaaSClientOptions, SaaSContract, SaaSHttpError, SaaSNetworkError, SaaSSchemaError, type SkillArchiveFormat, type SkillListItem, type SkillOwnerSummary, type SkillSource, type SkillStatus, type SkillType, type SkillVersionSummary, type SkillVisibility, SkillsClient, type SkillsDetailResponse, type SkillsDownloadResponse, type SkillsListRequest, type SkillsListResponse, type SubscribeRequest, type SubscribeResponse, type SummarizeRequest, type SummarizeResponse, type TrpcClientOptions, type UpgradeRequest, type UpgradeResponse, UserClient, type UserMembershipLevel, type UserSelf, type UserSelfRequest, type UserSelfResponse, type V3BasicSuccess, type V3CapabilitiesData, type V3CapabilitiesResponse, type V3CreditEstimate, type V3EstimatePriceRequest, type V3EstimatePriceResponse, type V3Feature, type V3GenerateRequest, type V3InputSlot, type V3ParamSchema, type V3QueueRequest, type V3QueueResponse, type V3QueueTicket, type V3TaskCreated, type V3TaskGroupResponse, type V3TaskItem, type V3TaskResponse, type V3TaskSSEEvent, type V3UploadResponse, type V3Variant, aiChatCompletionsRequestSchema, aiChatModelSchema, aiChatModelsPayloadSchema, aiChatModelsResponseSchema, aiChatModelsSuccessSchema, aiChatSessionMetadataSchema, aiClientMetadataSchema, aiEndpoints, aiErrorResponseSchema, aiModelCapabilitiesInputSchema, aiModelCapabilitiesOutputSchema, aiModelCapabilitiesSchema, aiModelCapabilityCommonSchema, aiModelParameterFieldSchema, aiModelParamsSchema, aiModelSchema, aiModelsRequestSchema, aiModelsUpdatedAtDataSchema, aiModelsUpdatedAtResponseSchema, aiModelsUpdatedAtSuccessSchema, index$8 as aiModule, aiProviderTemplateModelSchema, aiProviderTemplateSchema, aiProviderTemplatesPayloadSchema, aiProviderTemplatesRequestSchema, aiProviderTemplatesResponseSchema, aiProviderTemplatesSuccessSchema, aiResponsesRequestSchema, aiToolsEndpoints, index$7 as aiToolsModule, analyzeSkillsRequestSchema, analyzeSkillsResponseSchema, authEndpoints, authExchangeRequestSchema, authExchangeResponseSchema, authLogoutRequestSchema, authLogoutResponseSchema, index$6 as authModule, authRefreshErrorSchema, authRefreshRequestSchema, authRefreshResponseSchema, authRefreshSuccessSchema, authRefreshUserSchema, auxiliaryEndpoints, auxiliaryInferRequestSchema, auxiliaryInferResponseSchema, index$5 as auxiliaryModule, auxiliaryQuotaResponseSchema, contract, createEmbed, createPricingEmbed, createRechargeEmbed, createTrpcClient, feedbackDetailPayloadSchema, feedbackDetailRequestSchema, feedbackDetailResponseSchema, feedbackEndpoints, feedbackItemSchema, feedbackListPayloadSchema, feedbackListRequestSchema, feedbackListResponseSchema, index$4 as feedbackModule, feedbackSaasStatusSchema, feedbackSourceSchema, feedbackSubmitErrorSchema, feedbackSubmitRequestSchema, feedbackSubmitResponseSchema, feedbackTypeSchema, inputSlotSchema, mergeHeaders, normalizeHeaders, orderStatusRequestSchema, orderStatusResponseSchema, paramSchemaSchema, paymentEndpoints, index$3 as paymentModule, rechargeRequestSchema, rechargeResponseSchema, recommendActionsRequestSchema, recommendActionsResponseSchema, redeemCodeEndpoints, index$2 as redeemCodeModule, redeemCodeRecordItemSchema, redeemCodeRecordsRequestSchema, redeemCodeRecordsResponseSchema, redeemCodeRedeemRequestSchema, redeemCodeRedeemResponseSchema, redeemCodeSummarySchema, refundRequestSchema, refundResponseSchema, request, skillArchiveFormatSchema, skillListItemSchema, skillOwnerSummarySchema, skillSourceSchema, skillStatusSchema, skillTypeSchema, skillVersionSummarySchema, skillVisibilitySchema, skillsDetailRequestSchema, skillsDetailResponseSchema, skillsDownloadResponseSchema, skillsEndpoints, skillsListRequestSchema, skillsListResponseSchema, index$1 as skillsModule, subscribeRequestSchema, subscribeResponseSchema, summarizeRequestSchema, summarizeResponseSchema, upgradeRequestSchema, upgradeResponseSchema, userEndpoints, userMembershipLevelSchema, index as userModule, userSelfRequestSchema, userSelfResponseSchema, userSelfSchema, v3BasicSuccessSchema, v3CapabilitiesDataSchema, v3CapabilitiesResponseSchema, v3CreditEstimateSchema, v3EstimatePriceRequestSchema, v3EstimatePriceResponseSchema, v3FeatureSchema, v3GenerateRequestSchema, v3QueueRequestSchema, v3QueueResponseSchema, v3QueueTicketSchema, v3TaskCreatedSchema, v3TaskGroupResponseSchema, v3TaskItemSchema, v3TaskResponseSchema, v3TaskSSEEventSchema, v3UploadResponseSchema, v3VariantSchema };
|