@openloaf-saas/sdk 0.1.24 → 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,8 @@ declare class SaaSContract {
186
187
  description: string;
187
188
  } | undefined;
188
189
  } | null;
190
+ resultType: "image" | "audio" | "video";
191
+ isAsync: boolean;
189
192
  paramsSchema: ({
190
193
  key: string;
191
194
  label: string;
@@ -248,6 +251,16 @@ declare class SaaSContract {
248
251
  max?: number | undefined;
249
252
  step?: number | undefined;
250
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
+ }[];
251
264
  }[];
252
265
  }[];
253
266
  updatedAt?: string | undefined;
@@ -259,6 +272,7 @@ declare class SaaSContract {
259
272
  category: string;
260
273
  features: {
261
274
  id: string;
275
+ displayName: string;
262
276
  variants: {
263
277
  id: string;
264
278
  featureTabName: string;
@@ -277,6 +291,8 @@ declare class SaaSContract {
277
291
  description: string;
278
292
  } | undefined;
279
293
  } | null;
294
+ resultType: "image" | "audio" | "video";
295
+ isAsync: boolean;
280
296
  paramsSchema: ({
281
297
  key: string;
282
298
  label: string;
@@ -339,6 +355,16 @@ declare class SaaSContract {
339
355
  max?: number | undefined;
340
356
  step?: number | undefined;
341
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
+ }[];
342
368
  }[];
343
369
  }[];
344
370
  updatedAt?: string | undefined;
@@ -350,6 +376,7 @@ declare class SaaSContract {
350
376
  category: string;
351
377
  features: {
352
378
  id: string;
379
+ displayName: string;
353
380
  variants: {
354
381
  id: string;
355
382
  featureTabName: string;
@@ -368,6 +395,8 @@ declare class SaaSContract {
368
395
  description: string;
369
396
  } | undefined;
370
397
  } | null;
398
+ resultType: "image" | "audio" | "video";
399
+ isAsync: boolean;
371
400
  paramsSchema: ({
372
401
  key: string;
373
402
  label: string;
@@ -430,6 +459,16 @@ declare class SaaSContract {
430
459
  max?: number | undefined;
431
460
  step?: number | undefined;
432
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
+ }[];
433
472
  }[];
434
473
  }[];
435
474
  updatedAt?: string | undefined;
@@ -1021,6 +1060,7 @@ declare const aiEndpoints: {
1021
1060
  category: string;
1022
1061
  features: {
1023
1062
  id: string;
1063
+ displayName: string;
1024
1064
  variants: {
1025
1065
  id: string;
1026
1066
  featureTabName: string;
@@ -1039,6 +1079,8 @@ declare const aiEndpoints: {
1039
1079
  description: string;
1040
1080
  } | undefined;
1041
1081
  } | null;
1082
+ resultType: "image" | "audio" | "video";
1083
+ isAsync: boolean;
1042
1084
  paramsSchema: ({
1043
1085
  key: string;
1044
1086
  label: string;
@@ -1101,6 +1143,16 @@ declare const aiEndpoints: {
1101
1143
  max?: number | undefined;
1102
1144
  step?: number | undefined;
1103
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
+ }[];
1104
1156
  }[];
1105
1157
  }[];
1106
1158
  updatedAt?: string | undefined;
@@ -1113,6 +1165,7 @@ declare const aiEndpoints: {
1113
1165
  category: string;
1114
1166
  features: {
1115
1167
  id: string;
1168
+ displayName: string;
1116
1169
  variants: {
1117
1170
  id: string;
1118
1171
  featureTabName: string;
@@ -1131,6 +1184,8 @@ declare const aiEndpoints: {
1131
1184
  description: string;
1132
1185
  } | undefined;
1133
1186
  } | null;
1187
+ resultType: "image" | "audio" | "video";
1188
+ isAsync: boolean;
1134
1189
  paramsSchema: ({
1135
1190
  key: string;
1136
1191
  label: string;
@@ -1193,6 +1248,16 @@ declare const aiEndpoints: {
1193
1248
  max?: number | undefined;
1194
1249
  step?: number | undefined;
1195
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
+ }[];
1196
1261
  }[];
1197
1262
  }[];
1198
1263
  updatedAt?: string | undefined;
@@ -1205,6 +1270,7 @@ declare const aiEndpoints: {
1205
1270
  category: string;
1206
1271
  features: {
1207
1272
  id: string;
1273
+ displayName: string;
1208
1274
  variants: {
1209
1275
  id: string;
1210
1276
  featureTabName: string;
@@ -1223,6 +1289,8 @@ declare const aiEndpoints: {
1223
1289
  description: string;
1224
1290
  } | undefined;
1225
1291
  } | null;
1292
+ resultType: "image" | "audio" | "video";
1293
+ isAsync: boolean;
1226
1294
  paramsSchema: ({
1227
1295
  key: string;
1228
1296
  label: string;
@@ -1285,6 +1353,16 @@ declare const aiEndpoints: {
1285
1353
  max?: number | undefined;
1286
1354
  step?: number | undefined;
1287
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
+ }[];
1288
1366
  }[];
1289
1367
  }[];
1290
1368
  updatedAt?: string | undefined;
@@ -2199,6 +2277,22 @@ declare const paramSchemaSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
2199
2277
  max: z.ZodOptional<z.ZodNumber>;
2200
2278
  step: z.ZodOptional<z.ZodNumber>;
2201
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>;
2202
2296
  /** Variant within a v3 feature (maps to a model/quality combination). */
2203
2297
  declare const v3VariantSchema: z.ZodObject<{
2204
2298
  id: z.ZodString;
@@ -2218,6 +2312,12 @@ declare const v3VariantSchema: z.ZodObject<{
2218
2312
  description: z.ZodString;
2219
2313
  }, z.core.$strip>>;
2220
2314
  }, z.core.$strip>>;
2315
+ resultType: z.ZodEnum<{
2316
+ image: "image";
2317
+ audio: "audio";
2318
+ video: "video";
2319
+ }>;
2320
+ isAsync: z.ZodBoolean;
2221
2321
  paramsSchema: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
2222
2322
  key: z.ZodString;
2223
2323
  label: z.ZodString;
@@ -2299,10 +2399,26 @@ declare const v3VariantSchema: z.ZodObject<{
2299
2399
  max: z.ZodOptional<z.ZodNumber>;
2300
2400
  step: z.ZodOptional<z.ZodNumber>;
2301
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>>;
2302
2417
  }, z.core.$strip>;
2303
2418
  /** Feature entry within a capabilities response. */
2304
2419
  declare const v3FeatureSchema: z.ZodObject<{
2305
2420
  id: z.ZodString;
2421
+ displayName: z.ZodString;
2306
2422
  variants: z.ZodArray<z.ZodObject<{
2307
2423
  id: z.ZodString;
2308
2424
  featureTabName: z.ZodString;
@@ -2321,6 +2437,12 @@ declare const v3FeatureSchema: z.ZodObject<{
2321
2437
  description: z.ZodString;
2322
2438
  }, z.core.$strip>>;
2323
2439
  }, z.core.$strip>>;
2440
+ resultType: z.ZodEnum<{
2441
+ image: "image";
2442
+ audio: "audio";
2443
+ video: "video";
2444
+ }>;
2445
+ isAsync: z.ZodBoolean;
2324
2446
  paramsSchema: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
2325
2447
  key: z.ZodString;
2326
2448
  label: z.ZodString;
@@ -2402,6 +2524,21 @@ declare const v3FeatureSchema: z.ZodObject<{
2402
2524
  max: z.ZodOptional<z.ZodNumber>;
2403
2525
  step: z.ZodOptional<z.ZodNumber>;
2404
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>>;
2405
2542
  }, z.core.$strip>>;
2406
2543
  }, z.core.$strip>;
2407
2544
  /** Capabilities data payload for a single media category. */
@@ -2409,6 +2546,7 @@ declare const v3CapabilitiesDataSchema: z.ZodObject<{
2409
2546
  category: z.ZodString;
2410
2547
  features: z.ZodArray<z.ZodObject<{
2411
2548
  id: z.ZodString;
2549
+ displayName: z.ZodString;
2412
2550
  variants: z.ZodArray<z.ZodObject<{
2413
2551
  id: z.ZodString;
2414
2552
  featureTabName: z.ZodString;
@@ -2427,6 +2565,12 @@ declare const v3CapabilitiesDataSchema: z.ZodObject<{
2427
2565
  description: z.ZodString;
2428
2566
  }, z.core.$strip>>;
2429
2567
  }, z.core.$strip>>;
2568
+ resultType: z.ZodEnum<{
2569
+ image: "image";
2570
+ audio: "audio";
2571
+ video: "video";
2572
+ }>;
2573
+ isAsync: z.ZodBoolean;
2430
2574
  paramsSchema: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
2431
2575
  key: z.ZodString;
2432
2576
  label: z.ZodString;
@@ -2508,6 +2652,21 @@ declare const v3CapabilitiesDataSchema: z.ZodObject<{
2508
2652
  max: z.ZodOptional<z.ZodNumber>;
2509
2653
  step: z.ZodOptional<z.ZodNumber>;
2510
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>>;
2511
2670
  }, z.core.$strip>>;
2512
2671
  }, z.core.$strip>>;
2513
2672
  updatedAt: z.ZodOptional<z.ZodString>;
@@ -2519,6 +2678,7 @@ declare const v3CapabilitiesResponseSchema: z.ZodObject<{
2519
2678
  category: z.ZodString;
2520
2679
  features: z.ZodArray<z.ZodObject<{
2521
2680
  id: z.ZodString;
2681
+ displayName: z.ZodString;
2522
2682
  variants: z.ZodArray<z.ZodObject<{
2523
2683
  id: z.ZodString;
2524
2684
  featureTabName: z.ZodString;
@@ -2537,6 +2697,12 @@ declare const v3CapabilitiesResponseSchema: z.ZodObject<{
2537
2697
  description: z.ZodString;
2538
2698
  }, z.core.$strip>>;
2539
2699
  }, z.core.$strip>>;
2700
+ resultType: z.ZodEnum<{
2701
+ image: "image";
2702
+ audio: "audio";
2703
+ video: "video";
2704
+ }>;
2705
+ isAsync: z.ZodBoolean;
2540
2706
  paramsSchema: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
2541
2707
  key: z.ZodString;
2542
2708
  label: z.ZodString;
@@ -2618,6 +2784,21 @@ declare const v3CapabilitiesResponseSchema: z.ZodObject<{
2618
2784
  max: z.ZodOptional<z.ZodNumber>;
2619
2785
  step: z.ZodOptional<z.ZodNumber>;
2620
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>>;
2621
2802
  }, z.core.$strip>>;
2622
2803
  }, z.core.$strip>>;
2623
2804
  updatedAt: z.ZodOptional<z.ZodString>;
@@ -2792,6 +2973,8 @@ declare const v3UploadResponseSchema: z.ZodObject<{
2792
2973
  }, z.core.$strip>;
2793
2974
  /** Single param schema entry (UI metadata). */
2794
2975
  type V3ParamSchema = z.infer<typeof paramSchemaSchema>;
2976
+ /** Input slot declaration. */
2977
+ type V3InputSlot = z.infer<typeof inputSlotSchema>;
2795
2978
  /** Variant within a v3 feature. */
2796
2979
  type V3Variant = z.infer<typeof v3VariantSchema>;
2797
2980
  /** Feature entry within a capabilities response. */
@@ -2975,6 +3158,7 @@ declare class AiClient {
2975
3158
  category: string;
2976
3159
  features: {
2977
3160
  id: string;
3161
+ displayName: string;
2978
3162
  variants: {
2979
3163
  id: string;
2980
3164
  featureTabName: string;
@@ -2993,6 +3177,8 @@ declare class AiClient {
2993
3177
  description: string;
2994
3178
  } | undefined;
2995
3179
  } | null;
3180
+ resultType: "image" | "audio" | "video";
3181
+ isAsync: boolean;
2996
3182
  paramsSchema: ({
2997
3183
  key: string;
2998
3184
  label: string;
@@ -3055,6 +3241,16 @@ declare class AiClient {
3055
3241
  max?: number | undefined;
3056
3242
  step?: number | undefined;
3057
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
+ }[];
3058
3254
  }[];
3059
3255
  }[];
3060
3256
  updatedAt?: string | undefined;
@@ -3067,6 +3263,7 @@ declare class AiClient {
3067
3263
  category: string;
3068
3264
  features: {
3069
3265
  id: string;
3266
+ displayName: string;
3070
3267
  variants: {
3071
3268
  id: string;
3072
3269
  featureTabName: string;
@@ -3085,6 +3282,8 @@ declare class AiClient {
3085
3282
  description: string;
3086
3283
  } | undefined;
3087
3284
  } | null;
3285
+ resultType: "image" | "audio" | "video";
3286
+ isAsync: boolean;
3088
3287
  paramsSchema: ({
3089
3288
  key: string;
3090
3289
  label: string;
@@ -3147,6 +3346,16 @@ declare class AiClient {
3147
3346
  max?: number | undefined;
3148
3347
  step?: number | undefined;
3149
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
+ }[];
3150
3359
  }[];
3151
3360
  }[];
3152
3361
  updatedAt?: string | undefined;
@@ -3159,6 +3368,7 @@ declare class AiClient {
3159
3368
  category: string;
3160
3369
  features: {
3161
3370
  id: string;
3371
+ displayName: string;
3162
3372
  variants: {
3163
3373
  id: string;
3164
3374
  featureTabName: string;
@@ -3177,6 +3387,8 @@ declare class AiClient {
3177
3387
  description: string;
3178
3388
  } | undefined;
3179
3389
  } | null;
3390
+ resultType: "image" | "audio" | "video";
3391
+ isAsync: boolean;
3180
3392
  paramsSchema: ({
3181
3393
  key: string;
3182
3394
  label: string;
@@ -3239,6 +3451,16 @@ declare class AiClient {
3239
3451
  max?: number | undefined;
3240
3452
  step?: number | undefined;
3241
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
+ }[];
3242
3464
  }[];
3243
3465
  }[];
3244
3466
  updatedAt?: string | undefined;
@@ -3809,6 +4031,7 @@ type index$7_V3EstimatePriceRequest = V3EstimatePriceRequest;
3809
4031
  type index$7_V3EstimatePriceResponse = V3EstimatePriceResponse;
3810
4032
  type index$7_V3Feature = V3Feature;
3811
4033
  type index$7_V3GenerateRequest = V3GenerateRequest;
4034
+ type index$7_V3InputSlot = V3InputSlot;
3812
4035
  type index$7_V3ParamSchema = V3ParamSchema;
3813
4036
  type index$7_V3QueueRequest = V3QueueRequest;
3814
4037
  type index$7_V3QueueResponse = V3QueueResponse;
@@ -3846,6 +4069,7 @@ declare const index$7_aiProviderTemplatesRequestSchema: typeof aiProviderTemplat
3846
4069
  declare const index$7_aiProviderTemplatesResponseSchema: typeof aiProviderTemplatesResponseSchema;
3847
4070
  declare const index$7_aiProviderTemplatesSuccessSchema: typeof aiProviderTemplatesSuccessSchema;
3848
4071
  declare const index$7_aiResponsesRequestSchema: typeof aiResponsesRequestSchema;
4072
+ declare const index$7_inputSlotSchema: typeof inputSlotSchema;
3849
4073
  declare const index$7_paramSchemaSchema: typeof paramSchemaSchema;
3850
4074
  declare const index$7_v3BasicSuccessSchema: typeof v3BasicSuccessSchema;
3851
4075
  declare const index$7_v3CapabilitiesDataSchema: typeof v3CapabilitiesDataSchema;
@@ -3865,7 +4089,7 @@ declare const index$7_v3TaskResponseSchema: typeof v3TaskResponseSchema;
3865
4089
  declare const index$7_v3UploadResponseSchema: typeof v3UploadResponseSchema;
3866
4090
  declare const index$7_v3VariantSchema: typeof v3VariantSchema;
3867
4091
  declare namespace index$7 {
3868
- 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_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_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 };
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 };
3869
4093
  }
3870
4094
 
3871
4095
  declare const aiToolsEndpoints: {
@@ -5592,4 +5816,4 @@ declare function createTrpcClient(options: TrpcClientOptions): _trpc_client.TRPC
5592
5816
  transformer: false;
5593
5817
  }, _trpc_server.TRPCDecorateCreateRouterOptions<_trpc_server.TRPCCreateRouterOptions>>>;
5594
5818
 
5595
- 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 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, 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 };
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 };