@openloaf-saas/sdk 0.1.23 → 0.1.25

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 CHANGED
@@ -168,6 +168,7 @@ declare class SaaSContract {
168
168
  category: string;
169
169
  features: {
170
170
  id: string;
171
+ displayName: string;
171
172
  variants: {
172
173
  id: string;
173
174
  featureTabName: string;
@@ -186,6 +187,80 @@ declare class SaaSContract {
186
187
  description: string;
187
188
  } | undefined;
188
189
  } | null;
190
+ resultType: "image" | "audio" | "video";
191
+ isAsync: boolean;
192
+ paramsSchema: ({
193
+ key: string;
194
+ label: string;
195
+ type: "select";
196
+ default?: unknown;
197
+ group?: "primary" | "advanced" | undefined;
198
+ visibleWhen?: unknown;
199
+ clientOnly?: boolean | undefined;
200
+ hint?: string | undefined;
201
+ options?: {
202
+ value: string | number | boolean;
203
+ label: string;
204
+ thumbnail?: string | undefined;
205
+ }[] | undefined;
206
+ catalog?: string | undefined;
207
+ display?: "dropdown" | "grid" | "pills" | undefined;
208
+ searchable?: boolean | undefined;
209
+ } | {
210
+ key: string;
211
+ label: string;
212
+ type: "boolean";
213
+ default?: unknown;
214
+ group?: "primary" | "advanced" | undefined;
215
+ visibleWhen?: unknown;
216
+ clientOnly?: boolean | undefined;
217
+ hint?: string | undefined;
218
+ } | {
219
+ key: string;
220
+ label: string;
221
+ type: "text";
222
+ default?: unknown;
223
+ group?: "primary" | "advanced" | undefined;
224
+ visibleWhen?: unknown;
225
+ clientOnly?: boolean | undefined;
226
+ hint?: string | undefined;
227
+ multiline?: boolean | undefined;
228
+ placeholder?: string | undefined;
229
+ } | {
230
+ key: string;
231
+ label: string;
232
+ type: "slider";
233
+ min: number;
234
+ max: number;
235
+ default?: unknown;
236
+ group?: "primary" | "advanced" | undefined;
237
+ visibleWhen?: unknown;
238
+ clientOnly?: boolean | undefined;
239
+ hint?: string | undefined;
240
+ step?: number | undefined;
241
+ } | {
242
+ key: string;
243
+ label: string;
244
+ type: "number";
245
+ default?: unknown;
246
+ group?: "primary" | "advanced" | undefined;
247
+ visibleWhen?: unknown;
248
+ clientOnly?: boolean | undefined;
249
+ hint?: string | undefined;
250
+ min?: number | undefined;
251
+ max?: number | undefined;
252
+ step?: number | undefined;
253
+ })[];
254
+ inputSlots: {
255
+ key: string;
256
+ accept: "text" | "image" | "audio" | "video";
257
+ label: string;
258
+ required?: boolean | undefined;
259
+ maxCount?: number | undefined;
260
+ placeholder?: string | undefined;
261
+ multiline?: boolean | undefined;
262
+ hint?: string | undefined;
263
+ }[];
189
264
  }[];
190
265
  }[];
191
266
  updatedAt?: string | undefined;
@@ -197,6 +272,7 @@ declare class SaaSContract {
197
272
  category: string;
198
273
  features: {
199
274
  id: string;
275
+ displayName: string;
200
276
  variants: {
201
277
  id: string;
202
278
  featureTabName: string;
@@ -215,6 +291,80 @@ declare class SaaSContract {
215
291
  description: string;
216
292
  } | undefined;
217
293
  } | null;
294
+ resultType: "image" | "audio" | "video";
295
+ isAsync: boolean;
296
+ paramsSchema: ({
297
+ key: string;
298
+ label: string;
299
+ type: "select";
300
+ default?: unknown;
301
+ group?: "primary" | "advanced" | undefined;
302
+ visibleWhen?: unknown;
303
+ clientOnly?: boolean | undefined;
304
+ hint?: string | undefined;
305
+ options?: {
306
+ value: string | number | boolean;
307
+ label: string;
308
+ thumbnail?: string | undefined;
309
+ }[] | undefined;
310
+ catalog?: string | undefined;
311
+ display?: "dropdown" | "grid" | "pills" | undefined;
312
+ searchable?: boolean | undefined;
313
+ } | {
314
+ key: string;
315
+ label: string;
316
+ type: "boolean";
317
+ default?: unknown;
318
+ group?: "primary" | "advanced" | undefined;
319
+ visibleWhen?: unknown;
320
+ clientOnly?: boolean | undefined;
321
+ hint?: string | undefined;
322
+ } | {
323
+ key: string;
324
+ label: string;
325
+ type: "text";
326
+ default?: unknown;
327
+ group?: "primary" | "advanced" | undefined;
328
+ visibleWhen?: unknown;
329
+ clientOnly?: boolean | undefined;
330
+ hint?: string | undefined;
331
+ multiline?: boolean | undefined;
332
+ placeholder?: string | undefined;
333
+ } | {
334
+ key: string;
335
+ label: string;
336
+ type: "slider";
337
+ min: number;
338
+ max: number;
339
+ default?: unknown;
340
+ group?: "primary" | "advanced" | undefined;
341
+ visibleWhen?: unknown;
342
+ clientOnly?: boolean | undefined;
343
+ hint?: string | undefined;
344
+ step?: number | undefined;
345
+ } | {
346
+ key: string;
347
+ label: string;
348
+ type: "number";
349
+ default?: unknown;
350
+ group?: "primary" | "advanced" | undefined;
351
+ visibleWhen?: unknown;
352
+ clientOnly?: boolean | undefined;
353
+ hint?: string | undefined;
354
+ min?: number | undefined;
355
+ max?: number | undefined;
356
+ step?: number | undefined;
357
+ })[];
358
+ inputSlots: {
359
+ key: string;
360
+ accept: "text" | "image" | "audio" | "video";
361
+ label: string;
362
+ required?: boolean | undefined;
363
+ maxCount?: number | undefined;
364
+ placeholder?: string | undefined;
365
+ multiline?: boolean | undefined;
366
+ hint?: string | undefined;
367
+ }[];
218
368
  }[];
219
369
  }[];
220
370
  updatedAt?: string | undefined;
@@ -226,6 +376,7 @@ declare class SaaSContract {
226
376
  category: string;
227
377
  features: {
228
378
  id: string;
379
+ displayName: string;
229
380
  variants: {
230
381
  id: string;
231
382
  featureTabName: string;
@@ -244,6 +395,80 @@ declare class SaaSContract {
244
395
  description: string;
245
396
  } | undefined;
246
397
  } | null;
398
+ resultType: "image" | "audio" | "video";
399
+ isAsync: boolean;
400
+ paramsSchema: ({
401
+ key: string;
402
+ label: string;
403
+ type: "select";
404
+ default?: unknown;
405
+ group?: "primary" | "advanced" | undefined;
406
+ visibleWhen?: unknown;
407
+ clientOnly?: boolean | undefined;
408
+ hint?: string | undefined;
409
+ options?: {
410
+ value: string | number | boolean;
411
+ label: string;
412
+ thumbnail?: string | undefined;
413
+ }[] | undefined;
414
+ catalog?: string | undefined;
415
+ display?: "dropdown" | "grid" | "pills" | undefined;
416
+ searchable?: boolean | undefined;
417
+ } | {
418
+ key: string;
419
+ label: string;
420
+ type: "boolean";
421
+ default?: unknown;
422
+ group?: "primary" | "advanced" | undefined;
423
+ visibleWhen?: unknown;
424
+ clientOnly?: boolean | undefined;
425
+ hint?: string | undefined;
426
+ } | {
427
+ key: string;
428
+ label: string;
429
+ type: "text";
430
+ default?: unknown;
431
+ group?: "primary" | "advanced" | undefined;
432
+ visibleWhen?: unknown;
433
+ clientOnly?: boolean | undefined;
434
+ hint?: string | undefined;
435
+ multiline?: boolean | undefined;
436
+ placeholder?: string | undefined;
437
+ } | {
438
+ key: string;
439
+ label: string;
440
+ type: "slider";
441
+ min: number;
442
+ max: number;
443
+ default?: unknown;
444
+ group?: "primary" | "advanced" | undefined;
445
+ visibleWhen?: unknown;
446
+ clientOnly?: boolean | undefined;
447
+ hint?: string | undefined;
448
+ step?: number | undefined;
449
+ } | {
450
+ key: string;
451
+ label: string;
452
+ type: "number";
453
+ default?: unknown;
454
+ group?: "primary" | "advanced" | undefined;
455
+ visibleWhen?: unknown;
456
+ clientOnly?: boolean | undefined;
457
+ hint?: string | undefined;
458
+ min?: number | undefined;
459
+ max?: number | undefined;
460
+ step?: number | undefined;
461
+ })[];
462
+ inputSlots: {
463
+ key: string;
464
+ accept: "text" | "image" | "audio" | "video";
465
+ label: string;
466
+ required?: boolean | undefined;
467
+ maxCount?: number | undefined;
468
+ placeholder?: string | undefined;
469
+ multiline?: boolean | undefined;
470
+ hint?: string | undefined;
471
+ }[];
247
472
  }[];
248
473
  }[];
249
474
  updatedAt?: string | undefined;
@@ -835,6 +1060,7 @@ declare const aiEndpoints: {
835
1060
  category: string;
836
1061
  features: {
837
1062
  id: string;
1063
+ displayName: string;
838
1064
  variants: {
839
1065
  id: string;
840
1066
  featureTabName: string;
@@ -853,6 +1079,80 @@ declare const aiEndpoints: {
853
1079
  description: string;
854
1080
  } | undefined;
855
1081
  } | null;
1082
+ resultType: "image" | "audio" | "video";
1083
+ isAsync: boolean;
1084
+ paramsSchema: ({
1085
+ key: string;
1086
+ label: string;
1087
+ type: "select";
1088
+ default?: unknown;
1089
+ group?: "primary" | "advanced" | undefined;
1090
+ visibleWhen?: unknown;
1091
+ clientOnly?: boolean | undefined;
1092
+ hint?: string | undefined;
1093
+ options?: {
1094
+ value: string | number | boolean;
1095
+ label: string;
1096
+ thumbnail?: string | undefined;
1097
+ }[] | undefined;
1098
+ catalog?: string | undefined;
1099
+ display?: "dropdown" | "grid" | "pills" | undefined;
1100
+ searchable?: boolean | undefined;
1101
+ } | {
1102
+ key: string;
1103
+ label: string;
1104
+ type: "boolean";
1105
+ default?: unknown;
1106
+ group?: "primary" | "advanced" | undefined;
1107
+ visibleWhen?: unknown;
1108
+ clientOnly?: boolean | undefined;
1109
+ hint?: string | undefined;
1110
+ } | {
1111
+ key: string;
1112
+ label: string;
1113
+ type: "text";
1114
+ default?: unknown;
1115
+ group?: "primary" | "advanced" | undefined;
1116
+ visibleWhen?: unknown;
1117
+ clientOnly?: boolean | undefined;
1118
+ hint?: string | undefined;
1119
+ multiline?: boolean | undefined;
1120
+ placeholder?: string | undefined;
1121
+ } | {
1122
+ key: string;
1123
+ label: string;
1124
+ type: "slider";
1125
+ min: number;
1126
+ max: number;
1127
+ default?: unknown;
1128
+ group?: "primary" | "advanced" | undefined;
1129
+ visibleWhen?: unknown;
1130
+ clientOnly?: boolean | undefined;
1131
+ hint?: string | undefined;
1132
+ step?: number | undefined;
1133
+ } | {
1134
+ key: string;
1135
+ label: string;
1136
+ type: "number";
1137
+ default?: unknown;
1138
+ group?: "primary" | "advanced" | undefined;
1139
+ visibleWhen?: unknown;
1140
+ clientOnly?: boolean | undefined;
1141
+ hint?: string | undefined;
1142
+ min?: number | undefined;
1143
+ max?: number | undefined;
1144
+ step?: number | undefined;
1145
+ })[];
1146
+ inputSlots: {
1147
+ key: string;
1148
+ accept: "text" | "image" | "audio" | "video";
1149
+ label: string;
1150
+ required?: boolean | undefined;
1151
+ maxCount?: number | undefined;
1152
+ placeholder?: string | undefined;
1153
+ multiline?: boolean | undefined;
1154
+ hint?: string | undefined;
1155
+ }[];
856
1156
  }[];
857
1157
  }[];
858
1158
  updatedAt?: string | undefined;
@@ -865,6 +1165,7 @@ declare const aiEndpoints: {
865
1165
  category: string;
866
1166
  features: {
867
1167
  id: string;
1168
+ displayName: string;
868
1169
  variants: {
869
1170
  id: string;
870
1171
  featureTabName: string;
@@ -883,6 +1184,80 @@ declare const aiEndpoints: {
883
1184
  description: string;
884
1185
  } | undefined;
885
1186
  } | null;
1187
+ resultType: "image" | "audio" | "video";
1188
+ isAsync: boolean;
1189
+ paramsSchema: ({
1190
+ key: string;
1191
+ label: string;
1192
+ type: "select";
1193
+ default?: unknown;
1194
+ group?: "primary" | "advanced" | undefined;
1195
+ visibleWhen?: unknown;
1196
+ clientOnly?: boolean | undefined;
1197
+ hint?: string | undefined;
1198
+ options?: {
1199
+ value: string | number | boolean;
1200
+ label: string;
1201
+ thumbnail?: string | undefined;
1202
+ }[] | undefined;
1203
+ catalog?: string | undefined;
1204
+ display?: "dropdown" | "grid" | "pills" | undefined;
1205
+ searchable?: boolean | undefined;
1206
+ } | {
1207
+ key: string;
1208
+ label: string;
1209
+ type: "boolean";
1210
+ default?: unknown;
1211
+ group?: "primary" | "advanced" | undefined;
1212
+ visibleWhen?: unknown;
1213
+ clientOnly?: boolean | undefined;
1214
+ hint?: string | undefined;
1215
+ } | {
1216
+ key: string;
1217
+ label: string;
1218
+ type: "text";
1219
+ default?: unknown;
1220
+ group?: "primary" | "advanced" | undefined;
1221
+ visibleWhen?: unknown;
1222
+ clientOnly?: boolean | undefined;
1223
+ hint?: string | undefined;
1224
+ multiline?: boolean | undefined;
1225
+ placeholder?: string | undefined;
1226
+ } | {
1227
+ key: string;
1228
+ label: string;
1229
+ type: "slider";
1230
+ min: number;
1231
+ max: number;
1232
+ default?: unknown;
1233
+ group?: "primary" | "advanced" | undefined;
1234
+ visibleWhen?: unknown;
1235
+ clientOnly?: boolean | undefined;
1236
+ hint?: string | undefined;
1237
+ step?: number | undefined;
1238
+ } | {
1239
+ key: string;
1240
+ label: string;
1241
+ type: "number";
1242
+ default?: unknown;
1243
+ group?: "primary" | "advanced" | undefined;
1244
+ visibleWhen?: unknown;
1245
+ clientOnly?: boolean | undefined;
1246
+ hint?: string | undefined;
1247
+ min?: number | undefined;
1248
+ max?: number | undefined;
1249
+ step?: number | undefined;
1250
+ })[];
1251
+ inputSlots: {
1252
+ key: string;
1253
+ accept: "text" | "image" | "audio" | "video";
1254
+ label: string;
1255
+ required?: boolean | undefined;
1256
+ maxCount?: number | undefined;
1257
+ placeholder?: string | undefined;
1258
+ multiline?: boolean | undefined;
1259
+ hint?: string | undefined;
1260
+ }[];
886
1261
  }[];
887
1262
  }[];
888
1263
  updatedAt?: string | undefined;
@@ -895,6 +1270,7 @@ declare const aiEndpoints: {
895
1270
  category: string;
896
1271
  features: {
897
1272
  id: string;
1273
+ displayName: string;
898
1274
  variants: {
899
1275
  id: string;
900
1276
  featureTabName: string;
@@ -913,6 +1289,80 @@ declare const aiEndpoints: {
913
1289
  description: string;
914
1290
  } | undefined;
915
1291
  } | null;
1292
+ resultType: "image" | "audio" | "video";
1293
+ isAsync: boolean;
1294
+ paramsSchema: ({
1295
+ key: string;
1296
+ label: string;
1297
+ type: "select";
1298
+ default?: unknown;
1299
+ group?: "primary" | "advanced" | undefined;
1300
+ visibleWhen?: unknown;
1301
+ clientOnly?: boolean | undefined;
1302
+ hint?: string | undefined;
1303
+ options?: {
1304
+ value: string | number | boolean;
1305
+ label: string;
1306
+ thumbnail?: string | undefined;
1307
+ }[] | undefined;
1308
+ catalog?: string | undefined;
1309
+ display?: "dropdown" | "grid" | "pills" | undefined;
1310
+ searchable?: boolean | undefined;
1311
+ } | {
1312
+ key: string;
1313
+ label: string;
1314
+ type: "boolean";
1315
+ default?: unknown;
1316
+ group?: "primary" | "advanced" | undefined;
1317
+ visibleWhen?: unknown;
1318
+ clientOnly?: boolean | undefined;
1319
+ hint?: string | undefined;
1320
+ } | {
1321
+ key: string;
1322
+ label: string;
1323
+ type: "text";
1324
+ default?: unknown;
1325
+ group?: "primary" | "advanced" | undefined;
1326
+ visibleWhen?: unknown;
1327
+ clientOnly?: boolean | undefined;
1328
+ hint?: string | undefined;
1329
+ multiline?: boolean | undefined;
1330
+ placeholder?: string | undefined;
1331
+ } | {
1332
+ key: string;
1333
+ label: string;
1334
+ type: "slider";
1335
+ min: number;
1336
+ max: number;
1337
+ default?: unknown;
1338
+ group?: "primary" | "advanced" | undefined;
1339
+ visibleWhen?: unknown;
1340
+ clientOnly?: boolean | undefined;
1341
+ hint?: string | undefined;
1342
+ step?: number | undefined;
1343
+ } | {
1344
+ key: string;
1345
+ label: string;
1346
+ type: "number";
1347
+ default?: unknown;
1348
+ group?: "primary" | "advanced" | undefined;
1349
+ visibleWhen?: unknown;
1350
+ clientOnly?: boolean | undefined;
1351
+ hint?: string | undefined;
1352
+ min?: number | undefined;
1353
+ max?: number | undefined;
1354
+ step?: number | undefined;
1355
+ })[];
1356
+ inputSlots: {
1357
+ key: string;
1358
+ accept: "text" | "image" | "audio" | "video";
1359
+ label: string;
1360
+ required?: boolean | undefined;
1361
+ maxCount?: number | undefined;
1362
+ placeholder?: string | undefined;
1363
+ multiline?: boolean | undefined;
1364
+ hint?: string | undefined;
1365
+ }[];
916
1366
  }[];
917
1367
  }[];
918
1368
  updatedAt?: string | undefined;
@@ -1745,6 +2195,104 @@ type AiFileUploadResponse = {
1745
2195
  size: number;
1746
2196
  };
1747
2197
 
2198
+ /** Union of all param schema types. */
2199
+ declare const paramSchemaSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
2200
+ key: z.ZodString;
2201
+ label: z.ZodString;
2202
+ default: z.ZodOptional<z.ZodUnknown>;
2203
+ group: z.ZodOptional<z.ZodEnum<{
2204
+ primary: "primary";
2205
+ advanced: "advanced";
2206
+ }>>;
2207
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2208
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2209
+ hint: z.ZodOptional<z.ZodString>;
2210
+ type: z.ZodLiteral<"select">;
2211
+ options: z.ZodOptional<z.ZodArray<z.ZodObject<{
2212
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>;
2213
+ label: z.ZodString;
2214
+ thumbnail: z.ZodOptional<z.ZodString>;
2215
+ }, z.core.$strip>>>;
2216
+ catalog: z.ZodOptional<z.ZodString>;
2217
+ display: z.ZodOptional<z.ZodEnum<{
2218
+ dropdown: "dropdown";
2219
+ grid: "grid";
2220
+ pills: "pills";
2221
+ }>>;
2222
+ searchable: z.ZodOptional<z.ZodBoolean>;
2223
+ }, z.core.$strip>, z.ZodObject<{
2224
+ key: z.ZodString;
2225
+ label: z.ZodString;
2226
+ default: z.ZodOptional<z.ZodUnknown>;
2227
+ group: z.ZodOptional<z.ZodEnum<{
2228
+ primary: "primary";
2229
+ advanced: "advanced";
2230
+ }>>;
2231
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2232
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2233
+ hint: z.ZodOptional<z.ZodString>;
2234
+ type: z.ZodLiteral<"boolean">;
2235
+ }, z.core.$strip>, z.ZodObject<{
2236
+ key: z.ZodString;
2237
+ label: z.ZodString;
2238
+ default: z.ZodOptional<z.ZodUnknown>;
2239
+ group: z.ZodOptional<z.ZodEnum<{
2240
+ primary: "primary";
2241
+ advanced: "advanced";
2242
+ }>>;
2243
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2244
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2245
+ hint: z.ZodOptional<z.ZodString>;
2246
+ type: z.ZodLiteral<"text">;
2247
+ multiline: z.ZodOptional<z.ZodBoolean>;
2248
+ placeholder: z.ZodOptional<z.ZodString>;
2249
+ }, z.core.$strip>, z.ZodObject<{
2250
+ key: z.ZodString;
2251
+ label: z.ZodString;
2252
+ default: z.ZodOptional<z.ZodUnknown>;
2253
+ group: z.ZodOptional<z.ZodEnum<{
2254
+ primary: "primary";
2255
+ advanced: "advanced";
2256
+ }>>;
2257
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2258
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2259
+ hint: z.ZodOptional<z.ZodString>;
2260
+ type: z.ZodLiteral<"slider">;
2261
+ min: z.ZodNumber;
2262
+ max: z.ZodNumber;
2263
+ step: z.ZodOptional<z.ZodNumber>;
2264
+ }, z.core.$strip>, z.ZodObject<{
2265
+ key: z.ZodString;
2266
+ label: z.ZodString;
2267
+ default: z.ZodOptional<z.ZodUnknown>;
2268
+ group: z.ZodOptional<z.ZodEnum<{
2269
+ primary: "primary";
2270
+ advanced: "advanced";
2271
+ }>>;
2272
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2273
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2274
+ hint: z.ZodOptional<z.ZodString>;
2275
+ type: z.ZodLiteral<"number">;
2276
+ min: z.ZodOptional<z.ZodNumber>;
2277
+ max: z.ZodOptional<z.ZodNumber>;
2278
+ step: z.ZodOptional<z.ZodNumber>;
2279
+ }, z.core.$strip>], "type">;
2280
+ /** Input slot declaration for a handler variant. */
2281
+ declare const inputSlotSchema: z.ZodObject<{
2282
+ key: z.ZodString;
2283
+ accept: z.ZodEnum<{
2284
+ text: "text";
2285
+ image: "image";
2286
+ audio: "audio";
2287
+ video: "video";
2288
+ }>;
2289
+ label: z.ZodString;
2290
+ required: z.ZodOptional<z.ZodBoolean>;
2291
+ maxCount: z.ZodOptional<z.ZodNumber>;
2292
+ placeholder: z.ZodOptional<z.ZodString>;
2293
+ multiline: z.ZodOptional<z.ZodBoolean>;
2294
+ hint: z.ZodOptional<z.ZodString>;
2295
+ }, z.core.$strip>;
1748
2296
  /** Variant within a v3 feature (maps to a model/quality combination). */
1749
2297
  declare const v3VariantSchema: z.ZodObject<{
1750
2298
  id: z.ZodString;
@@ -1764,10 +2312,113 @@ declare const v3VariantSchema: z.ZodObject<{
1764
2312
  description: z.ZodString;
1765
2313
  }, z.core.$strip>>;
1766
2314
  }, z.core.$strip>>;
2315
+ resultType: z.ZodEnum<{
2316
+ image: "image";
2317
+ audio: "audio";
2318
+ video: "video";
2319
+ }>;
2320
+ isAsync: z.ZodBoolean;
2321
+ paramsSchema: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
2322
+ key: z.ZodString;
2323
+ label: z.ZodString;
2324
+ default: z.ZodOptional<z.ZodUnknown>;
2325
+ group: z.ZodOptional<z.ZodEnum<{
2326
+ primary: "primary";
2327
+ advanced: "advanced";
2328
+ }>>;
2329
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2330
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2331
+ hint: z.ZodOptional<z.ZodString>;
2332
+ type: z.ZodLiteral<"select">;
2333
+ options: z.ZodOptional<z.ZodArray<z.ZodObject<{
2334
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>;
2335
+ label: z.ZodString;
2336
+ thumbnail: z.ZodOptional<z.ZodString>;
2337
+ }, z.core.$strip>>>;
2338
+ catalog: z.ZodOptional<z.ZodString>;
2339
+ display: z.ZodOptional<z.ZodEnum<{
2340
+ dropdown: "dropdown";
2341
+ grid: "grid";
2342
+ pills: "pills";
2343
+ }>>;
2344
+ searchable: z.ZodOptional<z.ZodBoolean>;
2345
+ }, z.core.$strip>, z.ZodObject<{
2346
+ key: z.ZodString;
2347
+ label: z.ZodString;
2348
+ default: z.ZodOptional<z.ZodUnknown>;
2349
+ group: z.ZodOptional<z.ZodEnum<{
2350
+ primary: "primary";
2351
+ advanced: "advanced";
2352
+ }>>;
2353
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2354
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2355
+ hint: z.ZodOptional<z.ZodString>;
2356
+ type: z.ZodLiteral<"boolean">;
2357
+ }, z.core.$strip>, z.ZodObject<{
2358
+ key: z.ZodString;
2359
+ label: z.ZodString;
2360
+ default: z.ZodOptional<z.ZodUnknown>;
2361
+ group: z.ZodOptional<z.ZodEnum<{
2362
+ primary: "primary";
2363
+ advanced: "advanced";
2364
+ }>>;
2365
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2366
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2367
+ hint: z.ZodOptional<z.ZodString>;
2368
+ type: z.ZodLiteral<"text">;
2369
+ multiline: z.ZodOptional<z.ZodBoolean>;
2370
+ placeholder: z.ZodOptional<z.ZodString>;
2371
+ }, z.core.$strip>, z.ZodObject<{
2372
+ key: z.ZodString;
2373
+ label: z.ZodString;
2374
+ default: z.ZodOptional<z.ZodUnknown>;
2375
+ group: z.ZodOptional<z.ZodEnum<{
2376
+ primary: "primary";
2377
+ advanced: "advanced";
2378
+ }>>;
2379
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2380
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2381
+ hint: z.ZodOptional<z.ZodString>;
2382
+ type: z.ZodLiteral<"slider">;
2383
+ min: z.ZodNumber;
2384
+ max: z.ZodNumber;
2385
+ step: z.ZodOptional<z.ZodNumber>;
2386
+ }, z.core.$strip>, z.ZodObject<{
2387
+ key: z.ZodString;
2388
+ label: z.ZodString;
2389
+ default: z.ZodOptional<z.ZodUnknown>;
2390
+ group: z.ZodOptional<z.ZodEnum<{
2391
+ primary: "primary";
2392
+ advanced: "advanced";
2393
+ }>>;
2394
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2395
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2396
+ hint: z.ZodOptional<z.ZodString>;
2397
+ type: z.ZodLiteral<"number">;
2398
+ min: z.ZodOptional<z.ZodNumber>;
2399
+ max: z.ZodOptional<z.ZodNumber>;
2400
+ step: z.ZodOptional<z.ZodNumber>;
2401
+ }, z.core.$strip>], "type">>;
2402
+ inputSlots: z.ZodArray<z.ZodObject<{
2403
+ key: z.ZodString;
2404
+ accept: z.ZodEnum<{
2405
+ text: "text";
2406
+ image: "image";
2407
+ audio: "audio";
2408
+ video: "video";
2409
+ }>;
2410
+ label: z.ZodString;
2411
+ required: z.ZodOptional<z.ZodBoolean>;
2412
+ maxCount: z.ZodOptional<z.ZodNumber>;
2413
+ placeholder: z.ZodOptional<z.ZodString>;
2414
+ multiline: z.ZodOptional<z.ZodBoolean>;
2415
+ hint: z.ZodOptional<z.ZodString>;
2416
+ }, z.core.$strip>>;
1767
2417
  }, z.core.$strip>;
1768
2418
  /** Feature entry within a capabilities response. */
1769
2419
  declare const v3FeatureSchema: z.ZodObject<{
1770
2420
  id: z.ZodString;
2421
+ displayName: z.ZodString;
1771
2422
  variants: z.ZodArray<z.ZodObject<{
1772
2423
  id: z.ZodString;
1773
2424
  featureTabName: z.ZodString;
@@ -1786,6 +2437,108 @@ declare const v3FeatureSchema: z.ZodObject<{
1786
2437
  description: z.ZodString;
1787
2438
  }, z.core.$strip>>;
1788
2439
  }, z.core.$strip>>;
2440
+ resultType: z.ZodEnum<{
2441
+ image: "image";
2442
+ audio: "audio";
2443
+ video: "video";
2444
+ }>;
2445
+ isAsync: z.ZodBoolean;
2446
+ paramsSchema: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
2447
+ key: z.ZodString;
2448
+ label: z.ZodString;
2449
+ default: z.ZodOptional<z.ZodUnknown>;
2450
+ group: z.ZodOptional<z.ZodEnum<{
2451
+ primary: "primary";
2452
+ advanced: "advanced";
2453
+ }>>;
2454
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2455
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2456
+ hint: z.ZodOptional<z.ZodString>;
2457
+ type: z.ZodLiteral<"select">;
2458
+ options: z.ZodOptional<z.ZodArray<z.ZodObject<{
2459
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>;
2460
+ label: z.ZodString;
2461
+ thumbnail: z.ZodOptional<z.ZodString>;
2462
+ }, z.core.$strip>>>;
2463
+ catalog: z.ZodOptional<z.ZodString>;
2464
+ display: z.ZodOptional<z.ZodEnum<{
2465
+ dropdown: "dropdown";
2466
+ grid: "grid";
2467
+ pills: "pills";
2468
+ }>>;
2469
+ searchable: z.ZodOptional<z.ZodBoolean>;
2470
+ }, z.core.$strip>, z.ZodObject<{
2471
+ key: z.ZodString;
2472
+ label: z.ZodString;
2473
+ default: z.ZodOptional<z.ZodUnknown>;
2474
+ group: z.ZodOptional<z.ZodEnum<{
2475
+ primary: "primary";
2476
+ advanced: "advanced";
2477
+ }>>;
2478
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2479
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2480
+ hint: z.ZodOptional<z.ZodString>;
2481
+ type: z.ZodLiteral<"boolean">;
2482
+ }, z.core.$strip>, z.ZodObject<{
2483
+ key: z.ZodString;
2484
+ label: z.ZodString;
2485
+ default: z.ZodOptional<z.ZodUnknown>;
2486
+ group: z.ZodOptional<z.ZodEnum<{
2487
+ primary: "primary";
2488
+ advanced: "advanced";
2489
+ }>>;
2490
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2491
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2492
+ hint: z.ZodOptional<z.ZodString>;
2493
+ type: z.ZodLiteral<"text">;
2494
+ multiline: z.ZodOptional<z.ZodBoolean>;
2495
+ placeholder: z.ZodOptional<z.ZodString>;
2496
+ }, z.core.$strip>, z.ZodObject<{
2497
+ key: z.ZodString;
2498
+ label: z.ZodString;
2499
+ default: z.ZodOptional<z.ZodUnknown>;
2500
+ group: z.ZodOptional<z.ZodEnum<{
2501
+ primary: "primary";
2502
+ advanced: "advanced";
2503
+ }>>;
2504
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2505
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2506
+ hint: z.ZodOptional<z.ZodString>;
2507
+ type: z.ZodLiteral<"slider">;
2508
+ min: z.ZodNumber;
2509
+ max: z.ZodNumber;
2510
+ step: z.ZodOptional<z.ZodNumber>;
2511
+ }, z.core.$strip>, z.ZodObject<{
2512
+ key: z.ZodString;
2513
+ label: z.ZodString;
2514
+ default: z.ZodOptional<z.ZodUnknown>;
2515
+ group: z.ZodOptional<z.ZodEnum<{
2516
+ primary: "primary";
2517
+ advanced: "advanced";
2518
+ }>>;
2519
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2520
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2521
+ hint: z.ZodOptional<z.ZodString>;
2522
+ type: z.ZodLiteral<"number">;
2523
+ min: z.ZodOptional<z.ZodNumber>;
2524
+ max: z.ZodOptional<z.ZodNumber>;
2525
+ step: z.ZodOptional<z.ZodNumber>;
2526
+ }, z.core.$strip>], "type">>;
2527
+ inputSlots: z.ZodArray<z.ZodObject<{
2528
+ key: z.ZodString;
2529
+ accept: z.ZodEnum<{
2530
+ text: "text";
2531
+ image: "image";
2532
+ audio: "audio";
2533
+ video: "video";
2534
+ }>;
2535
+ label: z.ZodString;
2536
+ required: z.ZodOptional<z.ZodBoolean>;
2537
+ maxCount: z.ZodOptional<z.ZodNumber>;
2538
+ placeholder: z.ZodOptional<z.ZodString>;
2539
+ multiline: z.ZodOptional<z.ZodBoolean>;
2540
+ hint: z.ZodOptional<z.ZodString>;
2541
+ }, z.core.$strip>>;
1789
2542
  }, z.core.$strip>>;
1790
2543
  }, z.core.$strip>;
1791
2544
  /** Capabilities data payload for a single media category. */
@@ -1793,6 +2546,7 @@ declare const v3CapabilitiesDataSchema: z.ZodObject<{
1793
2546
  category: z.ZodString;
1794
2547
  features: z.ZodArray<z.ZodObject<{
1795
2548
  id: z.ZodString;
2549
+ displayName: z.ZodString;
1796
2550
  variants: z.ZodArray<z.ZodObject<{
1797
2551
  id: z.ZodString;
1798
2552
  featureTabName: z.ZodString;
@@ -1811,6 +2565,108 @@ declare const v3CapabilitiesDataSchema: z.ZodObject<{
1811
2565
  description: z.ZodString;
1812
2566
  }, z.core.$strip>>;
1813
2567
  }, z.core.$strip>>;
2568
+ resultType: z.ZodEnum<{
2569
+ image: "image";
2570
+ audio: "audio";
2571
+ video: "video";
2572
+ }>;
2573
+ isAsync: z.ZodBoolean;
2574
+ paramsSchema: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
2575
+ key: z.ZodString;
2576
+ label: z.ZodString;
2577
+ default: z.ZodOptional<z.ZodUnknown>;
2578
+ group: z.ZodOptional<z.ZodEnum<{
2579
+ primary: "primary";
2580
+ advanced: "advanced";
2581
+ }>>;
2582
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2583
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2584
+ hint: z.ZodOptional<z.ZodString>;
2585
+ type: z.ZodLiteral<"select">;
2586
+ options: z.ZodOptional<z.ZodArray<z.ZodObject<{
2587
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>;
2588
+ label: z.ZodString;
2589
+ thumbnail: z.ZodOptional<z.ZodString>;
2590
+ }, z.core.$strip>>>;
2591
+ catalog: z.ZodOptional<z.ZodString>;
2592
+ display: z.ZodOptional<z.ZodEnum<{
2593
+ dropdown: "dropdown";
2594
+ grid: "grid";
2595
+ pills: "pills";
2596
+ }>>;
2597
+ searchable: z.ZodOptional<z.ZodBoolean>;
2598
+ }, z.core.$strip>, z.ZodObject<{
2599
+ key: z.ZodString;
2600
+ label: z.ZodString;
2601
+ default: z.ZodOptional<z.ZodUnknown>;
2602
+ group: z.ZodOptional<z.ZodEnum<{
2603
+ primary: "primary";
2604
+ advanced: "advanced";
2605
+ }>>;
2606
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2607
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2608
+ hint: z.ZodOptional<z.ZodString>;
2609
+ type: z.ZodLiteral<"boolean">;
2610
+ }, z.core.$strip>, z.ZodObject<{
2611
+ key: z.ZodString;
2612
+ label: z.ZodString;
2613
+ default: z.ZodOptional<z.ZodUnknown>;
2614
+ group: z.ZodOptional<z.ZodEnum<{
2615
+ primary: "primary";
2616
+ advanced: "advanced";
2617
+ }>>;
2618
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2619
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2620
+ hint: z.ZodOptional<z.ZodString>;
2621
+ type: z.ZodLiteral<"text">;
2622
+ multiline: z.ZodOptional<z.ZodBoolean>;
2623
+ placeholder: z.ZodOptional<z.ZodString>;
2624
+ }, z.core.$strip>, z.ZodObject<{
2625
+ key: z.ZodString;
2626
+ label: z.ZodString;
2627
+ default: z.ZodOptional<z.ZodUnknown>;
2628
+ group: z.ZodOptional<z.ZodEnum<{
2629
+ primary: "primary";
2630
+ advanced: "advanced";
2631
+ }>>;
2632
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2633
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2634
+ hint: z.ZodOptional<z.ZodString>;
2635
+ type: z.ZodLiteral<"slider">;
2636
+ min: z.ZodNumber;
2637
+ max: z.ZodNumber;
2638
+ step: z.ZodOptional<z.ZodNumber>;
2639
+ }, z.core.$strip>, z.ZodObject<{
2640
+ key: z.ZodString;
2641
+ label: z.ZodString;
2642
+ default: z.ZodOptional<z.ZodUnknown>;
2643
+ group: z.ZodOptional<z.ZodEnum<{
2644
+ primary: "primary";
2645
+ advanced: "advanced";
2646
+ }>>;
2647
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2648
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2649
+ hint: z.ZodOptional<z.ZodString>;
2650
+ type: z.ZodLiteral<"number">;
2651
+ min: z.ZodOptional<z.ZodNumber>;
2652
+ max: z.ZodOptional<z.ZodNumber>;
2653
+ step: z.ZodOptional<z.ZodNumber>;
2654
+ }, z.core.$strip>], "type">>;
2655
+ inputSlots: z.ZodArray<z.ZodObject<{
2656
+ key: z.ZodString;
2657
+ accept: z.ZodEnum<{
2658
+ text: "text";
2659
+ image: "image";
2660
+ audio: "audio";
2661
+ video: "video";
2662
+ }>;
2663
+ label: z.ZodString;
2664
+ required: z.ZodOptional<z.ZodBoolean>;
2665
+ maxCount: z.ZodOptional<z.ZodNumber>;
2666
+ placeholder: z.ZodOptional<z.ZodString>;
2667
+ multiline: z.ZodOptional<z.ZodBoolean>;
2668
+ hint: z.ZodOptional<z.ZodString>;
2669
+ }, z.core.$strip>>;
1814
2670
  }, z.core.$strip>>;
1815
2671
  }, z.core.$strip>>;
1816
2672
  updatedAt: z.ZodOptional<z.ZodString>;
@@ -1822,6 +2678,7 @@ declare const v3CapabilitiesResponseSchema: z.ZodObject<{
1822
2678
  category: z.ZodString;
1823
2679
  features: z.ZodArray<z.ZodObject<{
1824
2680
  id: z.ZodString;
2681
+ displayName: z.ZodString;
1825
2682
  variants: z.ZodArray<z.ZodObject<{
1826
2683
  id: z.ZodString;
1827
2684
  featureTabName: z.ZodString;
@@ -1840,6 +2697,108 @@ declare const v3CapabilitiesResponseSchema: z.ZodObject<{
1840
2697
  description: z.ZodString;
1841
2698
  }, z.core.$strip>>;
1842
2699
  }, z.core.$strip>>;
2700
+ resultType: z.ZodEnum<{
2701
+ image: "image";
2702
+ audio: "audio";
2703
+ video: "video";
2704
+ }>;
2705
+ isAsync: z.ZodBoolean;
2706
+ paramsSchema: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
2707
+ key: z.ZodString;
2708
+ label: z.ZodString;
2709
+ default: z.ZodOptional<z.ZodUnknown>;
2710
+ group: z.ZodOptional<z.ZodEnum<{
2711
+ primary: "primary";
2712
+ advanced: "advanced";
2713
+ }>>;
2714
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2715
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2716
+ hint: z.ZodOptional<z.ZodString>;
2717
+ type: z.ZodLiteral<"select">;
2718
+ options: z.ZodOptional<z.ZodArray<z.ZodObject<{
2719
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>;
2720
+ label: z.ZodString;
2721
+ thumbnail: z.ZodOptional<z.ZodString>;
2722
+ }, z.core.$strip>>>;
2723
+ catalog: z.ZodOptional<z.ZodString>;
2724
+ display: z.ZodOptional<z.ZodEnum<{
2725
+ dropdown: "dropdown";
2726
+ grid: "grid";
2727
+ pills: "pills";
2728
+ }>>;
2729
+ searchable: z.ZodOptional<z.ZodBoolean>;
2730
+ }, z.core.$strip>, z.ZodObject<{
2731
+ key: z.ZodString;
2732
+ label: z.ZodString;
2733
+ default: z.ZodOptional<z.ZodUnknown>;
2734
+ group: z.ZodOptional<z.ZodEnum<{
2735
+ primary: "primary";
2736
+ advanced: "advanced";
2737
+ }>>;
2738
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2739
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2740
+ hint: z.ZodOptional<z.ZodString>;
2741
+ type: z.ZodLiteral<"boolean">;
2742
+ }, z.core.$strip>, z.ZodObject<{
2743
+ key: z.ZodString;
2744
+ label: z.ZodString;
2745
+ default: z.ZodOptional<z.ZodUnknown>;
2746
+ group: z.ZodOptional<z.ZodEnum<{
2747
+ primary: "primary";
2748
+ advanced: "advanced";
2749
+ }>>;
2750
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2751
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2752
+ hint: z.ZodOptional<z.ZodString>;
2753
+ type: z.ZodLiteral<"text">;
2754
+ multiline: z.ZodOptional<z.ZodBoolean>;
2755
+ placeholder: z.ZodOptional<z.ZodString>;
2756
+ }, z.core.$strip>, z.ZodObject<{
2757
+ key: z.ZodString;
2758
+ label: z.ZodString;
2759
+ default: z.ZodOptional<z.ZodUnknown>;
2760
+ group: z.ZodOptional<z.ZodEnum<{
2761
+ primary: "primary";
2762
+ advanced: "advanced";
2763
+ }>>;
2764
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2765
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2766
+ hint: z.ZodOptional<z.ZodString>;
2767
+ type: z.ZodLiteral<"slider">;
2768
+ min: z.ZodNumber;
2769
+ max: z.ZodNumber;
2770
+ step: z.ZodOptional<z.ZodNumber>;
2771
+ }, z.core.$strip>, z.ZodObject<{
2772
+ key: z.ZodString;
2773
+ label: z.ZodString;
2774
+ default: z.ZodOptional<z.ZodUnknown>;
2775
+ group: z.ZodOptional<z.ZodEnum<{
2776
+ primary: "primary";
2777
+ advanced: "advanced";
2778
+ }>>;
2779
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2780
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2781
+ hint: z.ZodOptional<z.ZodString>;
2782
+ type: z.ZodLiteral<"number">;
2783
+ min: z.ZodOptional<z.ZodNumber>;
2784
+ max: z.ZodOptional<z.ZodNumber>;
2785
+ step: z.ZodOptional<z.ZodNumber>;
2786
+ }, z.core.$strip>], "type">>;
2787
+ inputSlots: z.ZodArray<z.ZodObject<{
2788
+ key: z.ZodString;
2789
+ accept: z.ZodEnum<{
2790
+ text: "text";
2791
+ image: "image";
2792
+ audio: "audio";
2793
+ video: "video";
2794
+ }>;
2795
+ label: z.ZodString;
2796
+ required: z.ZodOptional<z.ZodBoolean>;
2797
+ maxCount: z.ZodOptional<z.ZodNumber>;
2798
+ placeholder: z.ZodOptional<z.ZodString>;
2799
+ multiline: z.ZodOptional<z.ZodBoolean>;
2800
+ hint: z.ZodOptional<z.ZodString>;
2801
+ }, z.core.$strip>>;
1843
2802
  }, z.core.$strip>>;
1844
2803
  }, z.core.$strip>>;
1845
2804
  updatedAt: z.ZodOptional<z.ZodString>;
@@ -2012,6 +2971,10 @@ declare const v3UploadResponseSchema: z.ZodObject<{
2012
2971
  }>;
2013
2972
  }, z.core.$strip>;
2014
2973
  }, z.core.$strip>;
2974
+ /** Single param schema entry (UI metadata). */
2975
+ type V3ParamSchema = z.infer<typeof paramSchemaSchema>;
2976
+ /** Input slot declaration. */
2977
+ type V3InputSlot = z.infer<typeof inputSlotSchema>;
2015
2978
  /** Variant within a v3 feature. */
2016
2979
  type V3Variant = z.infer<typeof v3VariantSchema>;
2017
2980
  /** Feature entry within a capabilities response. */
@@ -2195,6 +3158,7 @@ declare class AiClient {
2195
3158
  category: string;
2196
3159
  features: {
2197
3160
  id: string;
3161
+ displayName: string;
2198
3162
  variants: {
2199
3163
  id: string;
2200
3164
  featureTabName: string;
@@ -2213,6 +3177,80 @@ declare class AiClient {
2213
3177
  description: string;
2214
3178
  } | undefined;
2215
3179
  } | null;
3180
+ resultType: "image" | "audio" | "video";
3181
+ isAsync: boolean;
3182
+ paramsSchema: ({
3183
+ key: string;
3184
+ label: string;
3185
+ type: "select";
3186
+ default?: unknown;
3187
+ group?: "primary" | "advanced" | undefined;
3188
+ visibleWhen?: unknown;
3189
+ clientOnly?: boolean | undefined;
3190
+ hint?: string | undefined;
3191
+ options?: {
3192
+ value: string | number | boolean;
3193
+ label: string;
3194
+ thumbnail?: string | undefined;
3195
+ }[] | undefined;
3196
+ catalog?: string | undefined;
3197
+ display?: "dropdown" | "grid" | "pills" | undefined;
3198
+ searchable?: boolean | undefined;
3199
+ } | {
3200
+ key: string;
3201
+ label: string;
3202
+ type: "boolean";
3203
+ default?: unknown;
3204
+ group?: "primary" | "advanced" | undefined;
3205
+ visibleWhen?: unknown;
3206
+ clientOnly?: boolean | undefined;
3207
+ hint?: string | undefined;
3208
+ } | {
3209
+ key: string;
3210
+ label: string;
3211
+ type: "text";
3212
+ default?: unknown;
3213
+ group?: "primary" | "advanced" | undefined;
3214
+ visibleWhen?: unknown;
3215
+ clientOnly?: boolean | undefined;
3216
+ hint?: string | undefined;
3217
+ multiline?: boolean | undefined;
3218
+ placeholder?: string | undefined;
3219
+ } | {
3220
+ key: string;
3221
+ label: string;
3222
+ type: "slider";
3223
+ min: number;
3224
+ max: number;
3225
+ default?: unknown;
3226
+ group?: "primary" | "advanced" | undefined;
3227
+ visibleWhen?: unknown;
3228
+ clientOnly?: boolean | undefined;
3229
+ hint?: string | undefined;
3230
+ step?: number | undefined;
3231
+ } | {
3232
+ key: string;
3233
+ label: string;
3234
+ type: "number";
3235
+ default?: unknown;
3236
+ group?: "primary" | "advanced" | undefined;
3237
+ visibleWhen?: unknown;
3238
+ clientOnly?: boolean | undefined;
3239
+ hint?: string | undefined;
3240
+ min?: number | undefined;
3241
+ max?: number | undefined;
3242
+ step?: number | undefined;
3243
+ })[];
3244
+ inputSlots: {
3245
+ key: string;
3246
+ accept: "text" | "image" | "audio" | "video";
3247
+ label: string;
3248
+ required?: boolean | undefined;
3249
+ maxCount?: number | undefined;
3250
+ placeholder?: string | undefined;
3251
+ multiline?: boolean | undefined;
3252
+ hint?: string | undefined;
3253
+ }[];
2216
3254
  }[];
2217
3255
  }[];
2218
3256
  updatedAt?: string | undefined;
@@ -2225,6 +3263,7 @@ declare class AiClient {
2225
3263
  category: string;
2226
3264
  features: {
2227
3265
  id: string;
3266
+ displayName: string;
2228
3267
  variants: {
2229
3268
  id: string;
2230
3269
  featureTabName: string;
@@ -2243,6 +3282,80 @@ declare class AiClient {
2243
3282
  description: string;
2244
3283
  } | undefined;
2245
3284
  } | null;
3285
+ resultType: "image" | "audio" | "video";
3286
+ isAsync: boolean;
3287
+ paramsSchema: ({
3288
+ key: string;
3289
+ label: string;
3290
+ type: "select";
3291
+ default?: unknown;
3292
+ group?: "primary" | "advanced" | undefined;
3293
+ visibleWhen?: unknown;
3294
+ clientOnly?: boolean | undefined;
3295
+ hint?: string | undefined;
3296
+ options?: {
3297
+ value: string | number | boolean;
3298
+ label: string;
3299
+ thumbnail?: string | undefined;
3300
+ }[] | undefined;
3301
+ catalog?: string | undefined;
3302
+ display?: "dropdown" | "grid" | "pills" | undefined;
3303
+ searchable?: boolean | undefined;
3304
+ } | {
3305
+ key: string;
3306
+ label: string;
3307
+ type: "boolean";
3308
+ default?: unknown;
3309
+ group?: "primary" | "advanced" | undefined;
3310
+ visibleWhen?: unknown;
3311
+ clientOnly?: boolean | undefined;
3312
+ hint?: string | undefined;
3313
+ } | {
3314
+ key: string;
3315
+ label: string;
3316
+ type: "text";
3317
+ default?: unknown;
3318
+ group?: "primary" | "advanced" | undefined;
3319
+ visibleWhen?: unknown;
3320
+ clientOnly?: boolean | undefined;
3321
+ hint?: string | undefined;
3322
+ multiline?: boolean | undefined;
3323
+ placeholder?: string | undefined;
3324
+ } | {
3325
+ key: string;
3326
+ label: string;
3327
+ type: "slider";
3328
+ min: number;
3329
+ max: number;
3330
+ default?: unknown;
3331
+ group?: "primary" | "advanced" | undefined;
3332
+ visibleWhen?: unknown;
3333
+ clientOnly?: boolean | undefined;
3334
+ hint?: string | undefined;
3335
+ step?: number | undefined;
3336
+ } | {
3337
+ key: string;
3338
+ label: string;
3339
+ type: "number";
3340
+ default?: unknown;
3341
+ group?: "primary" | "advanced" | undefined;
3342
+ visibleWhen?: unknown;
3343
+ clientOnly?: boolean | undefined;
3344
+ hint?: string | undefined;
3345
+ min?: number | undefined;
3346
+ max?: number | undefined;
3347
+ step?: number | undefined;
3348
+ })[];
3349
+ inputSlots: {
3350
+ key: string;
3351
+ accept: "text" | "image" | "audio" | "video";
3352
+ label: string;
3353
+ required?: boolean | undefined;
3354
+ maxCount?: number | undefined;
3355
+ placeholder?: string | undefined;
3356
+ multiline?: boolean | undefined;
3357
+ hint?: string | undefined;
3358
+ }[];
2246
3359
  }[];
2247
3360
  }[];
2248
3361
  updatedAt?: string | undefined;
@@ -2255,6 +3368,7 @@ declare class AiClient {
2255
3368
  category: string;
2256
3369
  features: {
2257
3370
  id: string;
3371
+ displayName: string;
2258
3372
  variants: {
2259
3373
  id: string;
2260
3374
  featureTabName: string;
@@ -2273,6 +3387,80 @@ declare class AiClient {
2273
3387
  description: string;
2274
3388
  } | undefined;
2275
3389
  } | null;
3390
+ resultType: "image" | "audio" | "video";
3391
+ isAsync: boolean;
3392
+ paramsSchema: ({
3393
+ key: string;
3394
+ label: string;
3395
+ type: "select";
3396
+ default?: unknown;
3397
+ group?: "primary" | "advanced" | undefined;
3398
+ visibleWhen?: unknown;
3399
+ clientOnly?: boolean | undefined;
3400
+ hint?: string | undefined;
3401
+ options?: {
3402
+ value: string | number | boolean;
3403
+ label: string;
3404
+ thumbnail?: string | undefined;
3405
+ }[] | undefined;
3406
+ catalog?: string | undefined;
3407
+ display?: "dropdown" | "grid" | "pills" | undefined;
3408
+ searchable?: boolean | undefined;
3409
+ } | {
3410
+ key: string;
3411
+ label: string;
3412
+ type: "boolean";
3413
+ default?: unknown;
3414
+ group?: "primary" | "advanced" | undefined;
3415
+ visibleWhen?: unknown;
3416
+ clientOnly?: boolean | undefined;
3417
+ hint?: string | undefined;
3418
+ } | {
3419
+ key: string;
3420
+ label: string;
3421
+ type: "text";
3422
+ default?: unknown;
3423
+ group?: "primary" | "advanced" | undefined;
3424
+ visibleWhen?: unknown;
3425
+ clientOnly?: boolean | undefined;
3426
+ hint?: string | undefined;
3427
+ multiline?: boolean | undefined;
3428
+ placeholder?: string | undefined;
3429
+ } | {
3430
+ key: string;
3431
+ label: string;
3432
+ type: "slider";
3433
+ min: number;
3434
+ max: number;
3435
+ default?: unknown;
3436
+ group?: "primary" | "advanced" | undefined;
3437
+ visibleWhen?: unknown;
3438
+ clientOnly?: boolean | undefined;
3439
+ hint?: string | undefined;
3440
+ step?: number | undefined;
3441
+ } | {
3442
+ key: string;
3443
+ label: string;
3444
+ type: "number";
3445
+ default?: unknown;
3446
+ group?: "primary" | "advanced" | undefined;
3447
+ visibleWhen?: unknown;
3448
+ clientOnly?: boolean | undefined;
3449
+ hint?: string | undefined;
3450
+ min?: number | undefined;
3451
+ max?: number | undefined;
3452
+ step?: number | undefined;
3453
+ })[];
3454
+ inputSlots: {
3455
+ key: string;
3456
+ accept: "text" | "image" | "audio" | "video";
3457
+ label: string;
3458
+ required?: boolean | undefined;
3459
+ maxCount?: number | undefined;
3460
+ placeholder?: string | undefined;
3461
+ multiline?: boolean | undefined;
3462
+ hint?: string | undefined;
3463
+ }[];
2276
3464
  }[];
2277
3465
  }[];
2278
3466
  updatedAt?: string | undefined;
@@ -2843,6 +4031,8 @@ type index$7_V3EstimatePriceRequest = V3EstimatePriceRequest;
2843
4031
  type index$7_V3EstimatePriceResponse = V3EstimatePriceResponse;
2844
4032
  type index$7_V3Feature = V3Feature;
2845
4033
  type index$7_V3GenerateRequest = V3GenerateRequest;
4034
+ type index$7_V3InputSlot = V3InputSlot;
4035
+ type index$7_V3ParamSchema = V3ParamSchema;
2846
4036
  type index$7_V3QueueRequest = V3QueueRequest;
2847
4037
  type index$7_V3QueueResponse = V3QueueResponse;
2848
4038
  type index$7_V3QueueTicket = V3QueueTicket;
@@ -2879,6 +4069,8 @@ declare const index$7_aiProviderTemplatesRequestSchema: typeof aiProviderTemplat
2879
4069
  declare const index$7_aiProviderTemplatesResponseSchema: typeof aiProviderTemplatesResponseSchema;
2880
4070
  declare const index$7_aiProviderTemplatesSuccessSchema: typeof aiProviderTemplatesSuccessSchema;
2881
4071
  declare const index$7_aiResponsesRequestSchema: typeof aiResponsesRequestSchema;
4072
+ declare const index$7_inputSlotSchema: typeof inputSlotSchema;
4073
+ declare const index$7_paramSchemaSchema: typeof paramSchemaSchema;
2882
4074
  declare const index$7_v3BasicSuccessSchema: typeof v3BasicSuccessSchema;
2883
4075
  declare const index$7_v3CapabilitiesDataSchema: typeof v3CapabilitiesDataSchema;
2884
4076
  declare const index$7_v3CapabilitiesResponseSchema: typeof v3CapabilitiesResponseSchema;
@@ -2897,7 +4089,7 @@ declare const index$7_v3TaskResponseSchema: typeof v3TaskResponseSchema;
2897
4089
  declare const index$7_v3UploadResponseSchema: typeof v3UploadResponseSchema;
2898
4090
  declare const index$7_v3VariantSchema: typeof v3VariantSchema;
2899
4091
  declare namespace index$7 {
2900
- export { index$7_AI_MODEL_CAPABILITY_INPUT_KEYS as AI_MODEL_CAPABILITY_INPUT_KEYS, index$7_AI_MODEL_CAPABILITY_OUTPUT_KEYS as AI_MODEL_CAPABILITY_OUTPUT_KEYS, index$7_AI_MODEL_TAGS as AI_MODEL_TAGS, index$7_AI_MODEL_TAG_LABELS as AI_MODEL_TAG_LABELS, type index$7_AiChatCompletionsRequest as AiChatCompletionsRequest, type index$7_AiChatModel as AiChatModel, type index$7_AiChatModelsResponse as AiChatModelsResponse, type index$7_AiChatSessionMetadata as AiChatSessionMetadata, index$7_AiClient as AiClient, type index$7_AiClientMetadata as AiClientMetadata, type index$7_AiFileUploadOptions as AiFileUploadOptions, type index$7_AiFileUploadResponse as AiFileUploadResponse, type index$7_AiModel as AiModel, type index$7_AiModelCapabilities as AiModelCapabilities, type index$7_AiModelCapabilitiesInput as AiModelCapabilitiesInput, type index$7_AiModelCapabilitiesOutput as AiModelCapabilitiesOutput, type index$7_AiModelCapabilityInputKey as AiModelCapabilityInputKey, type index$7_AiModelCapabilityOutputKey as AiModelCapabilityOutputKey, type index$7_AiModelTag as AiModelTag, type index$7_AiModelsUpdatedAtData as AiModelsUpdatedAtData, type index$7_AiModelsUpdatedAtResponse as AiModelsUpdatedAtResponse, type index$7_AiProviderTemplate as AiProviderTemplate, type index$7_AiProviderTemplateModel as AiProviderTemplateModel, type index$7_AiProviderTemplatesResponse as AiProviderTemplatesResponse, type index$7_AiResponsesRequest as AiResponsesRequest, index$7_MEDIA_FEATURES as MEDIA_FEATURES, index$7_MODEL_PROVIDERS as MODEL_PROVIDERS, type index$7_MediaFeatureId as MediaFeatureId, type index$7_ModelProviderId as ModelProviderId, type index$7_V3BasicSuccess as V3BasicSuccess, type index$7_V3CapabilitiesData as V3CapabilitiesData, type index$7_V3CapabilitiesResponse as V3CapabilitiesResponse, type index$7_V3CreditEstimate as V3CreditEstimate, type index$7_V3EstimatePriceRequest as V3EstimatePriceRequest, type index$7_V3EstimatePriceResponse as V3EstimatePriceResponse, type index$7_V3Feature as V3Feature, type index$7_V3GenerateRequest as V3GenerateRequest, type index$7_V3QueueRequest as V3QueueRequest, type index$7_V3QueueResponse as V3QueueResponse, type index$7_V3QueueTicket as V3QueueTicket, type index$7_V3TaskCreated as V3TaskCreated, type index$7_V3TaskGroupResponse as V3TaskGroupResponse, type index$7_V3TaskItem as V3TaskItem, type index$7_V3TaskResponse as V3TaskResponse, type index$7_V3UploadResponse as V3UploadResponse, type index$7_V3Variant as V3Variant, index$7_aiChatCompletionsRequestSchema as aiChatCompletionsRequestSchema, index$7_aiChatModelSchema as aiChatModelSchema, index$7_aiChatModelsPayloadSchema as aiChatModelsPayloadSchema, index$7_aiChatModelsResponseSchema as aiChatModelsResponseSchema, index$7_aiChatModelsSuccessSchema as aiChatModelsSuccessSchema, index$7_aiChatSessionMetadataSchema as aiChatSessionMetadataSchema, index$7_aiClientMetadataSchema as aiClientMetadataSchema, index$7_aiEndpoints as aiEndpoints, index$7_aiErrorResponseSchema as aiErrorResponseSchema, index$7_aiModelCapabilitiesInputSchema as aiModelCapabilitiesInputSchema, index$7_aiModelCapabilitiesOutputSchema as aiModelCapabilitiesOutputSchema, index$7_aiModelCapabilitiesSchema as aiModelCapabilitiesSchema, index$7_aiModelCapabilityCommonSchema as aiModelCapabilityCommonSchema, index$7_aiModelParameterFieldSchema as aiModelParameterFieldSchema, index$7_aiModelParamsSchema as aiModelParamsSchema, index$7_aiModelSchema as aiModelSchema, index$7_aiModelsRequestSchema as aiModelsRequestSchema, index$7_aiModelsUpdatedAtDataSchema as aiModelsUpdatedAtDataSchema, index$7_aiModelsUpdatedAtResponseSchema as aiModelsUpdatedAtResponseSchema, index$7_aiModelsUpdatedAtSuccessSchema as aiModelsUpdatedAtSuccessSchema, index$7_aiProviderTemplateModelSchema as aiProviderTemplateModelSchema, index$7_aiProviderTemplateSchema as aiProviderTemplateSchema, index$7_aiProviderTemplatesPayloadSchema as aiProviderTemplatesPayloadSchema, index$7_aiProviderTemplatesRequestSchema as aiProviderTemplatesRequestSchema, index$7_aiProviderTemplatesResponseSchema as aiProviderTemplatesResponseSchema, index$7_aiProviderTemplatesSuccessSchema as aiProviderTemplatesSuccessSchema, index$7_aiResponsesRequestSchema as aiResponsesRequestSchema, index$7_v3BasicSuccessSchema as v3BasicSuccessSchema, index$7_v3CapabilitiesDataSchema as v3CapabilitiesDataSchema, index$7_v3CapabilitiesResponseSchema as v3CapabilitiesResponseSchema, index$7_v3CreditEstimateSchema as v3CreditEstimateSchema, index$7_v3EstimatePriceRequestSchema as v3EstimatePriceRequestSchema, index$7_v3EstimatePriceResponseSchema as v3EstimatePriceResponseSchema, index$7_v3FeatureSchema as v3FeatureSchema, index$7_v3GenerateRequestSchema as v3GenerateRequestSchema, index$7_v3QueueRequestSchema as v3QueueRequestSchema, index$7_v3QueueResponseSchema as v3QueueResponseSchema, index$7_v3QueueTicketSchema as v3QueueTicketSchema, index$7_v3TaskCreatedSchema as v3TaskCreatedSchema, index$7_v3TaskGroupResponseSchema as v3TaskGroupResponseSchema, index$7_v3TaskItemSchema as v3TaskItemSchema, index$7_v3TaskResponseSchema as v3TaskResponseSchema, index$7_v3UploadResponseSchema as v3UploadResponseSchema, index$7_v3VariantSchema as v3VariantSchema };
4092
+ export { index$7_AI_MODEL_CAPABILITY_INPUT_KEYS as AI_MODEL_CAPABILITY_INPUT_KEYS, index$7_AI_MODEL_CAPABILITY_OUTPUT_KEYS as AI_MODEL_CAPABILITY_OUTPUT_KEYS, index$7_AI_MODEL_TAGS as AI_MODEL_TAGS, index$7_AI_MODEL_TAG_LABELS as AI_MODEL_TAG_LABELS, type index$7_AiChatCompletionsRequest as AiChatCompletionsRequest, type index$7_AiChatModel as AiChatModel, type index$7_AiChatModelsResponse as AiChatModelsResponse, type index$7_AiChatSessionMetadata as AiChatSessionMetadata, index$7_AiClient as AiClient, type index$7_AiClientMetadata as AiClientMetadata, type index$7_AiFileUploadOptions as AiFileUploadOptions, type index$7_AiFileUploadResponse as AiFileUploadResponse, type index$7_AiModel as AiModel, type index$7_AiModelCapabilities as AiModelCapabilities, type index$7_AiModelCapabilitiesInput as AiModelCapabilitiesInput, type index$7_AiModelCapabilitiesOutput as AiModelCapabilitiesOutput, type index$7_AiModelCapabilityInputKey as AiModelCapabilityInputKey, type index$7_AiModelCapabilityOutputKey as AiModelCapabilityOutputKey, type index$7_AiModelTag as AiModelTag, type index$7_AiModelsUpdatedAtData as AiModelsUpdatedAtData, type index$7_AiModelsUpdatedAtResponse as AiModelsUpdatedAtResponse, type index$7_AiProviderTemplate as AiProviderTemplate, type index$7_AiProviderTemplateModel as AiProviderTemplateModel, type index$7_AiProviderTemplatesResponse as AiProviderTemplatesResponse, type index$7_AiResponsesRequest as AiResponsesRequest, index$7_MEDIA_FEATURES as MEDIA_FEATURES, index$7_MODEL_PROVIDERS as MODEL_PROVIDERS, type index$7_MediaFeatureId as MediaFeatureId, type index$7_ModelProviderId as ModelProviderId, type index$7_V3BasicSuccess as V3BasicSuccess, type index$7_V3CapabilitiesData as V3CapabilitiesData, type index$7_V3CapabilitiesResponse as V3CapabilitiesResponse, type index$7_V3CreditEstimate as V3CreditEstimate, type index$7_V3EstimatePriceRequest as V3EstimatePriceRequest, type index$7_V3EstimatePriceResponse as V3EstimatePriceResponse, type index$7_V3Feature as V3Feature, type index$7_V3GenerateRequest as V3GenerateRequest, type index$7_V3InputSlot as V3InputSlot, type index$7_V3ParamSchema as V3ParamSchema, type index$7_V3QueueRequest as V3QueueRequest, type index$7_V3QueueResponse as V3QueueResponse, type index$7_V3QueueTicket as V3QueueTicket, type index$7_V3TaskCreated as V3TaskCreated, type index$7_V3TaskGroupResponse as V3TaskGroupResponse, type index$7_V3TaskItem as V3TaskItem, type index$7_V3TaskResponse as V3TaskResponse, type index$7_V3UploadResponse as V3UploadResponse, type index$7_V3Variant as V3Variant, index$7_aiChatCompletionsRequestSchema as aiChatCompletionsRequestSchema, index$7_aiChatModelSchema as aiChatModelSchema, index$7_aiChatModelsPayloadSchema as aiChatModelsPayloadSchema, index$7_aiChatModelsResponseSchema as aiChatModelsResponseSchema, index$7_aiChatModelsSuccessSchema as aiChatModelsSuccessSchema, index$7_aiChatSessionMetadataSchema as aiChatSessionMetadataSchema, index$7_aiClientMetadataSchema as aiClientMetadataSchema, index$7_aiEndpoints as aiEndpoints, index$7_aiErrorResponseSchema as aiErrorResponseSchema, index$7_aiModelCapabilitiesInputSchema as aiModelCapabilitiesInputSchema, index$7_aiModelCapabilitiesOutputSchema as aiModelCapabilitiesOutputSchema, index$7_aiModelCapabilitiesSchema as aiModelCapabilitiesSchema, index$7_aiModelCapabilityCommonSchema as aiModelCapabilityCommonSchema, index$7_aiModelParameterFieldSchema as aiModelParameterFieldSchema, index$7_aiModelParamsSchema as aiModelParamsSchema, index$7_aiModelSchema as aiModelSchema, index$7_aiModelsRequestSchema as aiModelsRequestSchema, index$7_aiModelsUpdatedAtDataSchema as aiModelsUpdatedAtDataSchema, index$7_aiModelsUpdatedAtResponseSchema as aiModelsUpdatedAtResponseSchema, index$7_aiModelsUpdatedAtSuccessSchema as aiModelsUpdatedAtSuccessSchema, index$7_aiProviderTemplateModelSchema as aiProviderTemplateModelSchema, index$7_aiProviderTemplateSchema as aiProviderTemplateSchema, index$7_aiProviderTemplatesPayloadSchema as aiProviderTemplatesPayloadSchema, index$7_aiProviderTemplatesRequestSchema as aiProviderTemplatesRequestSchema, index$7_aiProviderTemplatesResponseSchema as aiProviderTemplatesResponseSchema, index$7_aiProviderTemplatesSuccessSchema as aiProviderTemplatesSuccessSchema, index$7_aiResponsesRequestSchema as aiResponsesRequestSchema, index$7_inputSlotSchema as inputSlotSchema, index$7_paramSchemaSchema as paramSchemaSchema, index$7_v3BasicSuccessSchema as v3BasicSuccessSchema, index$7_v3CapabilitiesDataSchema as v3CapabilitiesDataSchema, index$7_v3CapabilitiesResponseSchema as v3CapabilitiesResponseSchema, index$7_v3CreditEstimateSchema as v3CreditEstimateSchema, index$7_v3EstimatePriceRequestSchema as v3EstimatePriceRequestSchema, index$7_v3EstimatePriceResponseSchema as v3EstimatePriceResponseSchema, index$7_v3FeatureSchema as v3FeatureSchema, index$7_v3GenerateRequestSchema as v3GenerateRequestSchema, index$7_v3QueueRequestSchema as v3QueueRequestSchema, index$7_v3QueueResponseSchema as v3QueueResponseSchema, index$7_v3QueueTicketSchema as v3QueueTicketSchema, index$7_v3TaskCreatedSchema as v3TaskCreatedSchema, index$7_v3TaskGroupResponseSchema as v3TaskGroupResponseSchema, index$7_v3TaskItemSchema as v3TaskItemSchema, index$7_v3TaskResponseSchema as v3TaskResponseSchema, index$7_v3UploadResponseSchema as v3UploadResponseSchema, index$7_v3VariantSchema as v3VariantSchema };
2901
4093
  }
2902
4094
 
2903
4095
  declare const aiToolsEndpoints: {
@@ -4624,4 +5816,4 @@ declare function createTrpcClient(options: TrpcClientOptions): _trpc_client.TRPC
4624
5816
  transformer: false;
4625
5817
  }, _trpc_server.TRPCDecorateCreateRouterOptions<_trpc_server.TRPCCreateRouterOptions>>>;
4626
5818
 
4627
- 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 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$7 as aiModule, aiProviderTemplateModelSchema, aiProviderTemplateSchema, aiProviderTemplatesPayloadSchema, aiProviderTemplatesRequestSchema, aiProviderTemplatesResponseSchema, aiProviderTemplatesSuccessSchema, aiResponsesRequestSchema, aiToolsEndpoints, index$6 as aiToolsModule, analyzeSkillsRequestSchema, analyzeSkillsResponseSchema, authEndpoints, authExchangeRequestSchema, authExchangeResponseSchema, authLogoutRequestSchema, authLogoutResponseSchema, index$5 as authModule, authRefreshErrorSchema, authRefreshRequestSchema, authRefreshResponseSchema, authRefreshSuccessSchema, authRefreshUserSchema, auxiliaryEndpoints, auxiliaryInferRequestSchema, auxiliaryInferResponseSchema, index$4 as auxiliaryModule, auxiliaryQuotaResponseSchema, contract, createEmbed, createPricingEmbed, createRechargeEmbed, createTrpcClient, feedbackDetailPayloadSchema, feedbackDetailRequestSchema, feedbackDetailResponseSchema, feedbackEndpoints, feedbackItemSchema, feedbackListPayloadSchema, feedbackListRequestSchema, feedbackListResponseSchema, index$3 as feedbackModule, feedbackSaasStatusSchema, feedbackSourceSchema, feedbackSubmitErrorSchema, feedbackSubmitRequestSchema, feedbackSubmitResponseSchema, feedbackTypeSchema, mergeHeaders, normalizeHeaders, orderStatusRequestSchema, orderStatusResponseSchema, paymentEndpoints, index$2 as paymentModule, rechargeRequestSchema, rechargeResponseSchema, recommendActionsRequestSchema, recommendActionsResponseSchema, 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, v3UploadResponseSchema, v3VariantSchema };
5819
+ 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$7 as aiModule, aiProviderTemplateModelSchema, aiProviderTemplateSchema, aiProviderTemplatesPayloadSchema, aiProviderTemplatesRequestSchema, aiProviderTemplatesResponseSchema, aiProviderTemplatesSuccessSchema, aiResponsesRequestSchema, aiToolsEndpoints, index$6 as aiToolsModule, analyzeSkillsRequestSchema, analyzeSkillsResponseSchema, authEndpoints, authExchangeRequestSchema, authExchangeResponseSchema, authLogoutRequestSchema, authLogoutResponseSchema, index$5 as authModule, authRefreshErrorSchema, authRefreshRequestSchema, authRefreshResponseSchema, authRefreshSuccessSchema, authRefreshUserSchema, auxiliaryEndpoints, auxiliaryInferRequestSchema, auxiliaryInferResponseSchema, index$4 as auxiliaryModule, auxiliaryQuotaResponseSchema, contract, createEmbed, createPricingEmbed, createRechargeEmbed, createTrpcClient, feedbackDetailPayloadSchema, feedbackDetailRequestSchema, feedbackDetailResponseSchema, feedbackEndpoints, feedbackItemSchema, feedbackListPayloadSchema, feedbackListRequestSchema, feedbackListResponseSchema, index$3 as feedbackModule, feedbackSaasStatusSchema, feedbackSourceSchema, feedbackSubmitErrorSchema, feedbackSubmitRequestSchema, feedbackSubmitResponseSchema, feedbackTypeSchema, inputSlotSchema, mergeHeaders, normalizeHeaders, orderStatusRequestSchema, orderStatusResponseSchema, paramSchemaSchema, paymentEndpoints, index$2 as paymentModule, rechargeRequestSchema, rechargeResponseSchema, recommendActionsRequestSchema, recommendActionsResponseSchema, 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, v3UploadResponseSchema, v3VariantSchema };