@openloaf-saas/sdk 0.1.23 → 0.1.24

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
@@ -186,6 +186,68 @@ declare class SaaSContract {
186
186
  description: string;
187
187
  } | undefined;
188
188
  } | null;
189
+ paramsSchema: ({
190
+ key: string;
191
+ label: string;
192
+ type: "select";
193
+ default?: unknown;
194
+ group?: "primary" | "advanced" | undefined;
195
+ visibleWhen?: unknown;
196
+ clientOnly?: boolean | undefined;
197
+ hint?: string | undefined;
198
+ options?: {
199
+ value: string | number | boolean;
200
+ label: string;
201
+ thumbnail?: string | undefined;
202
+ }[] | undefined;
203
+ catalog?: string | undefined;
204
+ display?: "dropdown" | "grid" | "pills" | undefined;
205
+ searchable?: boolean | undefined;
206
+ } | {
207
+ key: string;
208
+ label: string;
209
+ type: "boolean";
210
+ default?: unknown;
211
+ group?: "primary" | "advanced" | undefined;
212
+ visibleWhen?: unknown;
213
+ clientOnly?: boolean | undefined;
214
+ hint?: string | undefined;
215
+ } | {
216
+ key: string;
217
+ label: string;
218
+ type: "text";
219
+ default?: unknown;
220
+ group?: "primary" | "advanced" | undefined;
221
+ visibleWhen?: unknown;
222
+ clientOnly?: boolean | undefined;
223
+ hint?: string | undefined;
224
+ multiline?: boolean | undefined;
225
+ placeholder?: string | undefined;
226
+ } | {
227
+ key: string;
228
+ label: string;
229
+ type: "slider";
230
+ min: number;
231
+ max: number;
232
+ default?: unknown;
233
+ group?: "primary" | "advanced" | undefined;
234
+ visibleWhen?: unknown;
235
+ clientOnly?: boolean | undefined;
236
+ hint?: string | undefined;
237
+ step?: number | undefined;
238
+ } | {
239
+ key: string;
240
+ label: string;
241
+ type: "number";
242
+ default?: unknown;
243
+ group?: "primary" | "advanced" | undefined;
244
+ visibleWhen?: unknown;
245
+ clientOnly?: boolean | undefined;
246
+ hint?: string | undefined;
247
+ min?: number | undefined;
248
+ max?: number | undefined;
249
+ step?: number | undefined;
250
+ })[];
189
251
  }[];
190
252
  }[];
191
253
  updatedAt?: string | undefined;
@@ -215,6 +277,68 @@ declare class SaaSContract {
215
277
  description: string;
216
278
  } | undefined;
217
279
  } | null;
280
+ paramsSchema: ({
281
+ key: string;
282
+ label: string;
283
+ type: "select";
284
+ default?: unknown;
285
+ group?: "primary" | "advanced" | undefined;
286
+ visibleWhen?: unknown;
287
+ clientOnly?: boolean | undefined;
288
+ hint?: string | undefined;
289
+ options?: {
290
+ value: string | number | boolean;
291
+ label: string;
292
+ thumbnail?: string | undefined;
293
+ }[] | undefined;
294
+ catalog?: string | undefined;
295
+ display?: "dropdown" | "grid" | "pills" | undefined;
296
+ searchable?: boolean | undefined;
297
+ } | {
298
+ key: string;
299
+ label: string;
300
+ type: "boolean";
301
+ default?: unknown;
302
+ group?: "primary" | "advanced" | undefined;
303
+ visibleWhen?: unknown;
304
+ clientOnly?: boolean | undefined;
305
+ hint?: string | undefined;
306
+ } | {
307
+ key: string;
308
+ label: string;
309
+ type: "text";
310
+ default?: unknown;
311
+ group?: "primary" | "advanced" | undefined;
312
+ visibleWhen?: unknown;
313
+ clientOnly?: boolean | undefined;
314
+ hint?: string | undefined;
315
+ multiline?: boolean | undefined;
316
+ placeholder?: string | undefined;
317
+ } | {
318
+ key: string;
319
+ label: string;
320
+ type: "slider";
321
+ min: number;
322
+ max: number;
323
+ default?: unknown;
324
+ group?: "primary" | "advanced" | undefined;
325
+ visibleWhen?: unknown;
326
+ clientOnly?: boolean | undefined;
327
+ hint?: string | undefined;
328
+ step?: number | undefined;
329
+ } | {
330
+ key: string;
331
+ label: string;
332
+ type: "number";
333
+ default?: unknown;
334
+ group?: "primary" | "advanced" | undefined;
335
+ visibleWhen?: unknown;
336
+ clientOnly?: boolean | undefined;
337
+ hint?: string | undefined;
338
+ min?: number | undefined;
339
+ max?: number | undefined;
340
+ step?: number | undefined;
341
+ })[];
218
342
  }[];
219
343
  }[];
220
344
  updatedAt?: string | undefined;
@@ -244,6 +368,68 @@ declare class SaaSContract {
244
368
  description: string;
245
369
  } | undefined;
246
370
  } | null;
371
+ paramsSchema: ({
372
+ key: string;
373
+ label: string;
374
+ type: "select";
375
+ default?: unknown;
376
+ group?: "primary" | "advanced" | undefined;
377
+ visibleWhen?: unknown;
378
+ clientOnly?: boolean | undefined;
379
+ hint?: string | undefined;
380
+ options?: {
381
+ value: string | number | boolean;
382
+ label: string;
383
+ thumbnail?: string | undefined;
384
+ }[] | undefined;
385
+ catalog?: string | undefined;
386
+ display?: "dropdown" | "grid" | "pills" | undefined;
387
+ searchable?: boolean | undefined;
388
+ } | {
389
+ key: string;
390
+ label: string;
391
+ type: "boolean";
392
+ default?: unknown;
393
+ group?: "primary" | "advanced" | undefined;
394
+ visibleWhen?: unknown;
395
+ clientOnly?: boolean | undefined;
396
+ hint?: string | undefined;
397
+ } | {
398
+ key: string;
399
+ label: string;
400
+ type: "text";
401
+ default?: unknown;
402
+ group?: "primary" | "advanced" | undefined;
403
+ visibleWhen?: unknown;
404
+ clientOnly?: boolean | undefined;
405
+ hint?: string | undefined;
406
+ multiline?: boolean | undefined;
407
+ placeholder?: string | undefined;
408
+ } | {
409
+ key: string;
410
+ label: string;
411
+ type: "slider";
412
+ min: number;
413
+ max: number;
414
+ default?: unknown;
415
+ group?: "primary" | "advanced" | undefined;
416
+ visibleWhen?: unknown;
417
+ clientOnly?: boolean | undefined;
418
+ hint?: string | undefined;
419
+ step?: number | undefined;
420
+ } | {
421
+ key: string;
422
+ label: string;
423
+ type: "number";
424
+ default?: unknown;
425
+ group?: "primary" | "advanced" | undefined;
426
+ visibleWhen?: unknown;
427
+ clientOnly?: boolean | undefined;
428
+ hint?: string | undefined;
429
+ min?: number | undefined;
430
+ max?: number | undefined;
431
+ step?: number | undefined;
432
+ })[];
247
433
  }[];
248
434
  }[];
249
435
  updatedAt?: string | undefined;
@@ -853,6 +1039,68 @@ declare const aiEndpoints: {
853
1039
  description: string;
854
1040
  } | undefined;
855
1041
  } | null;
1042
+ paramsSchema: ({
1043
+ key: string;
1044
+ label: string;
1045
+ type: "select";
1046
+ default?: unknown;
1047
+ group?: "primary" | "advanced" | undefined;
1048
+ visibleWhen?: unknown;
1049
+ clientOnly?: boolean | undefined;
1050
+ hint?: string | undefined;
1051
+ options?: {
1052
+ value: string | number | boolean;
1053
+ label: string;
1054
+ thumbnail?: string | undefined;
1055
+ }[] | undefined;
1056
+ catalog?: string | undefined;
1057
+ display?: "dropdown" | "grid" | "pills" | undefined;
1058
+ searchable?: boolean | undefined;
1059
+ } | {
1060
+ key: string;
1061
+ label: string;
1062
+ type: "boolean";
1063
+ default?: unknown;
1064
+ group?: "primary" | "advanced" | undefined;
1065
+ visibleWhen?: unknown;
1066
+ clientOnly?: boolean | undefined;
1067
+ hint?: string | undefined;
1068
+ } | {
1069
+ key: string;
1070
+ label: string;
1071
+ type: "text";
1072
+ default?: unknown;
1073
+ group?: "primary" | "advanced" | undefined;
1074
+ visibleWhen?: unknown;
1075
+ clientOnly?: boolean | undefined;
1076
+ hint?: string | undefined;
1077
+ multiline?: boolean | undefined;
1078
+ placeholder?: string | undefined;
1079
+ } | {
1080
+ key: string;
1081
+ label: string;
1082
+ type: "slider";
1083
+ min: number;
1084
+ max: number;
1085
+ default?: unknown;
1086
+ group?: "primary" | "advanced" | undefined;
1087
+ visibleWhen?: unknown;
1088
+ clientOnly?: boolean | undefined;
1089
+ hint?: string | undefined;
1090
+ step?: number | undefined;
1091
+ } | {
1092
+ key: string;
1093
+ label: string;
1094
+ type: "number";
1095
+ default?: unknown;
1096
+ group?: "primary" | "advanced" | undefined;
1097
+ visibleWhen?: unknown;
1098
+ clientOnly?: boolean | undefined;
1099
+ hint?: string | undefined;
1100
+ min?: number | undefined;
1101
+ max?: number | undefined;
1102
+ step?: number | undefined;
1103
+ })[];
856
1104
  }[];
857
1105
  }[];
858
1106
  updatedAt?: string | undefined;
@@ -883,6 +1131,68 @@ declare const aiEndpoints: {
883
1131
  description: string;
884
1132
  } | undefined;
885
1133
  } | null;
1134
+ paramsSchema: ({
1135
+ key: string;
1136
+ label: string;
1137
+ type: "select";
1138
+ default?: unknown;
1139
+ group?: "primary" | "advanced" | undefined;
1140
+ visibleWhen?: unknown;
1141
+ clientOnly?: boolean | undefined;
1142
+ hint?: string | undefined;
1143
+ options?: {
1144
+ value: string | number | boolean;
1145
+ label: string;
1146
+ thumbnail?: string | undefined;
1147
+ }[] | undefined;
1148
+ catalog?: string | undefined;
1149
+ display?: "dropdown" | "grid" | "pills" | undefined;
1150
+ searchable?: boolean | undefined;
1151
+ } | {
1152
+ key: string;
1153
+ label: string;
1154
+ type: "boolean";
1155
+ default?: unknown;
1156
+ group?: "primary" | "advanced" | undefined;
1157
+ visibleWhen?: unknown;
1158
+ clientOnly?: boolean | undefined;
1159
+ hint?: string | undefined;
1160
+ } | {
1161
+ key: string;
1162
+ label: string;
1163
+ type: "text";
1164
+ default?: unknown;
1165
+ group?: "primary" | "advanced" | undefined;
1166
+ visibleWhen?: unknown;
1167
+ clientOnly?: boolean | undefined;
1168
+ hint?: string | undefined;
1169
+ multiline?: boolean | undefined;
1170
+ placeholder?: string | undefined;
1171
+ } | {
1172
+ key: string;
1173
+ label: string;
1174
+ type: "slider";
1175
+ min: number;
1176
+ max: number;
1177
+ default?: unknown;
1178
+ group?: "primary" | "advanced" | undefined;
1179
+ visibleWhen?: unknown;
1180
+ clientOnly?: boolean | undefined;
1181
+ hint?: string | undefined;
1182
+ step?: number | undefined;
1183
+ } | {
1184
+ key: string;
1185
+ label: string;
1186
+ type: "number";
1187
+ default?: unknown;
1188
+ group?: "primary" | "advanced" | undefined;
1189
+ visibleWhen?: unknown;
1190
+ clientOnly?: boolean | undefined;
1191
+ hint?: string | undefined;
1192
+ min?: number | undefined;
1193
+ max?: number | undefined;
1194
+ step?: number | undefined;
1195
+ })[];
886
1196
  }[];
887
1197
  }[];
888
1198
  updatedAt?: string | undefined;
@@ -913,6 +1223,68 @@ declare const aiEndpoints: {
913
1223
  description: string;
914
1224
  } | undefined;
915
1225
  } | null;
1226
+ paramsSchema: ({
1227
+ key: string;
1228
+ label: string;
1229
+ type: "select";
1230
+ default?: unknown;
1231
+ group?: "primary" | "advanced" | undefined;
1232
+ visibleWhen?: unknown;
1233
+ clientOnly?: boolean | undefined;
1234
+ hint?: string | undefined;
1235
+ options?: {
1236
+ value: string | number | boolean;
1237
+ label: string;
1238
+ thumbnail?: string | undefined;
1239
+ }[] | undefined;
1240
+ catalog?: string | undefined;
1241
+ display?: "dropdown" | "grid" | "pills" | undefined;
1242
+ searchable?: boolean | undefined;
1243
+ } | {
1244
+ key: string;
1245
+ label: string;
1246
+ type: "boolean";
1247
+ default?: unknown;
1248
+ group?: "primary" | "advanced" | undefined;
1249
+ visibleWhen?: unknown;
1250
+ clientOnly?: boolean | undefined;
1251
+ hint?: string | undefined;
1252
+ } | {
1253
+ key: string;
1254
+ label: string;
1255
+ type: "text";
1256
+ default?: unknown;
1257
+ group?: "primary" | "advanced" | undefined;
1258
+ visibleWhen?: unknown;
1259
+ clientOnly?: boolean | undefined;
1260
+ hint?: string | undefined;
1261
+ multiline?: boolean | undefined;
1262
+ placeholder?: string | undefined;
1263
+ } | {
1264
+ key: string;
1265
+ label: string;
1266
+ type: "slider";
1267
+ min: number;
1268
+ max: number;
1269
+ default?: unknown;
1270
+ group?: "primary" | "advanced" | undefined;
1271
+ visibleWhen?: unknown;
1272
+ clientOnly?: boolean | undefined;
1273
+ hint?: string | undefined;
1274
+ step?: number | undefined;
1275
+ } | {
1276
+ key: string;
1277
+ label: string;
1278
+ type: "number";
1279
+ default?: unknown;
1280
+ group?: "primary" | "advanced" | undefined;
1281
+ visibleWhen?: unknown;
1282
+ clientOnly?: boolean | undefined;
1283
+ hint?: string | undefined;
1284
+ min?: number | undefined;
1285
+ max?: number | undefined;
1286
+ step?: number | undefined;
1287
+ })[];
916
1288
  }[];
917
1289
  }[];
918
1290
  updatedAt?: string | undefined;
@@ -1745,6 +2117,88 @@ type AiFileUploadResponse = {
1745
2117
  size: number;
1746
2118
  };
1747
2119
 
2120
+ /** Union of all param schema types. */
2121
+ declare const paramSchemaSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
2122
+ key: z.ZodString;
2123
+ label: z.ZodString;
2124
+ default: z.ZodOptional<z.ZodUnknown>;
2125
+ group: z.ZodOptional<z.ZodEnum<{
2126
+ primary: "primary";
2127
+ advanced: "advanced";
2128
+ }>>;
2129
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2130
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2131
+ hint: z.ZodOptional<z.ZodString>;
2132
+ type: z.ZodLiteral<"select">;
2133
+ options: z.ZodOptional<z.ZodArray<z.ZodObject<{
2134
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>;
2135
+ label: z.ZodString;
2136
+ thumbnail: z.ZodOptional<z.ZodString>;
2137
+ }, z.core.$strip>>>;
2138
+ catalog: z.ZodOptional<z.ZodString>;
2139
+ display: z.ZodOptional<z.ZodEnum<{
2140
+ dropdown: "dropdown";
2141
+ grid: "grid";
2142
+ pills: "pills";
2143
+ }>>;
2144
+ searchable: z.ZodOptional<z.ZodBoolean>;
2145
+ }, z.core.$strip>, z.ZodObject<{
2146
+ key: z.ZodString;
2147
+ label: z.ZodString;
2148
+ default: z.ZodOptional<z.ZodUnknown>;
2149
+ group: z.ZodOptional<z.ZodEnum<{
2150
+ primary: "primary";
2151
+ advanced: "advanced";
2152
+ }>>;
2153
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2154
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2155
+ hint: z.ZodOptional<z.ZodString>;
2156
+ type: z.ZodLiteral<"boolean">;
2157
+ }, z.core.$strip>, z.ZodObject<{
2158
+ key: z.ZodString;
2159
+ label: z.ZodString;
2160
+ default: z.ZodOptional<z.ZodUnknown>;
2161
+ group: z.ZodOptional<z.ZodEnum<{
2162
+ primary: "primary";
2163
+ advanced: "advanced";
2164
+ }>>;
2165
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2166
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2167
+ hint: z.ZodOptional<z.ZodString>;
2168
+ type: z.ZodLiteral<"text">;
2169
+ multiline: z.ZodOptional<z.ZodBoolean>;
2170
+ placeholder: z.ZodOptional<z.ZodString>;
2171
+ }, z.core.$strip>, z.ZodObject<{
2172
+ key: z.ZodString;
2173
+ label: z.ZodString;
2174
+ default: z.ZodOptional<z.ZodUnknown>;
2175
+ group: z.ZodOptional<z.ZodEnum<{
2176
+ primary: "primary";
2177
+ advanced: "advanced";
2178
+ }>>;
2179
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2180
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2181
+ hint: z.ZodOptional<z.ZodString>;
2182
+ type: z.ZodLiteral<"slider">;
2183
+ min: z.ZodNumber;
2184
+ max: z.ZodNumber;
2185
+ step: z.ZodOptional<z.ZodNumber>;
2186
+ }, z.core.$strip>, z.ZodObject<{
2187
+ key: z.ZodString;
2188
+ label: z.ZodString;
2189
+ default: z.ZodOptional<z.ZodUnknown>;
2190
+ group: z.ZodOptional<z.ZodEnum<{
2191
+ primary: "primary";
2192
+ advanced: "advanced";
2193
+ }>>;
2194
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2195
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2196
+ hint: z.ZodOptional<z.ZodString>;
2197
+ type: z.ZodLiteral<"number">;
2198
+ min: z.ZodOptional<z.ZodNumber>;
2199
+ max: z.ZodOptional<z.ZodNumber>;
2200
+ step: z.ZodOptional<z.ZodNumber>;
2201
+ }, z.core.$strip>], "type">;
1748
2202
  /** Variant within a v3 feature (maps to a model/quality combination). */
1749
2203
  declare const v3VariantSchema: z.ZodObject<{
1750
2204
  id: z.ZodString;
@@ -1764,6 +2218,87 @@ declare const v3VariantSchema: z.ZodObject<{
1764
2218
  description: z.ZodString;
1765
2219
  }, z.core.$strip>>;
1766
2220
  }, z.core.$strip>>;
2221
+ paramsSchema: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
2222
+ key: z.ZodString;
2223
+ label: z.ZodString;
2224
+ default: z.ZodOptional<z.ZodUnknown>;
2225
+ group: z.ZodOptional<z.ZodEnum<{
2226
+ primary: "primary";
2227
+ advanced: "advanced";
2228
+ }>>;
2229
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2230
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2231
+ hint: z.ZodOptional<z.ZodString>;
2232
+ type: z.ZodLiteral<"select">;
2233
+ options: z.ZodOptional<z.ZodArray<z.ZodObject<{
2234
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>;
2235
+ label: z.ZodString;
2236
+ thumbnail: z.ZodOptional<z.ZodString>;
2237
+ }, z.core.$strip>>>;
2238
+ catalog: z.ZodOptional<z.ZodString>;
2239
+ display: z.ZodOptional<z.ZodEnum<{
2240
+ dropdown: "dropdown";
2241
+ grid: "grid";
2242
+ pills: "pills";
2243
+ }>>;
2244
+ searchable: z.ZodOptional<z.ZodBoolean>;
2245
+ }, z.core.$strip>, z.ZodObject<{
2246
+ key: z.ZodString;
2247
+ label: z.ZodString;
2248
+ default: z.ZodOptional<z.ZodUnknown>;
2249
+ group: z.ZodOptional<z.ZodEnum<{
2250
+ primary: "primary";
2251
+ advanced: "advanced";
2252
+ }>>;
2253
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2254
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2255
+ hint: z.ZodOptional<z.ZodString>;
2256
+ type: z.ZodLiteral<"boolean">;
2257
+ }, z.core.$strip>, z.ZodObject<{
2258
+ key: z.ZodString;
2259
+ label: z.ZodString;
2260
+ default: z.ZodOptional<z.ZodUnknown>;
2261
+ group: z.ZodOptional<z.ZodEnum<{
2262
+ primary: "primary";
2263
+ advanced: "advanced";
2264
+ }>>;
2265
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2266
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2267
+ hint: z.ZodOptional<z.ZodString>;
2268
+ type: z.ZodLiteral<"text">;
2269
+ multiline: z.ZodOptional<z.ZodBoolean>;
2270
+ placeholder: z.ZodOptional<z.ZodString>;
2271
+ }, z.core.$strip>, z.ZodObject<{
2272
+ key: z.ZodString;
2273
+ label: z.ZodString;
2274
+ default: z.ZodOptional<z.ZodUnknown>;
2275
+ group: z.ZodOptional<z.ZodEnum<{
2276
+ primary: "primary";
2277
+ advanced: "advanced";
2278
+ }>>;
2279
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2280
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2281
+ hint: z.ZodOptional<z.ZodString>;
2282
+ type: z.ZodLiteral<"slider">;
2283
+ min: z.ZodNumber;
2284
+ max: z.ZodNumber;
2285
+ step: z.ZodOptional<z.ZodNumber>;
2286
+ }, z.core.$strip>, z.ZodObject<{
2287
+ key: z.ZodString;
2288
+ label: z.ZodString;
2289
+ default: z.ZodOptional<z.ZodUnknown>;
2290
+ group: z.ZodOptional<z.ZodEnum<{
2291
+ primary: "primary";
2292
+ advanced: "advanced";
2293
+ }>>;
2294
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2295
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2296
+ hint: z.ZodOptional<z.ZodString>;
2297
+ type: z.ZodLiteral<"number">;
2298
+ min: z.ZodOptional<z.ZodNumber>;
2299
+ max: z.ZodOptional<z.ZodNumber>;
2300
+ step: z.ZodOptional<z.ZodNumber>;
2301
+ }, z.core.$strip>], "type">>;
1767
2302
  }, z.core.$strip>;
1768
2303
  /** Feature entry within a capabilities response. */
1769
2304
  declare const v3FeatureSchema: z.ZodObject<{
@@ -1786,6 +2321,87 @@ declare const v3FeatureSchema: z.ZodObject<{
1786
2321
  description: z.ZodString;
1787
2322
  }, z.core.$strip>>;
1788
2323
  }, z.core.$strip>>;
2324
+ paramsSchema: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
2325
+ key: z.ZodString;
2326
+ label: z.ZodString;
2327
+ default: z.ZodOptional<z.ZodUnknown>;
2328
+ group: z.ZodOptional<z.ZodEnum<{
2329
+ primary: "primary";
2330
+ advanced: "advanced";
2331
+ }>>;
2332
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2333
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2334
+ hint: z.ZodOptional<z.ZodString>;
2335
+ type: z.ZodLiteral<"select">;
2336
+ options: z.ZodOptional<z.ZodArray<z.ZodObject<{
2337
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>;
2338
+ label: z.ZodString;
2339
+ thumbnail: z.ZodOptional<z.ZodString>;
2340
+ }, z.core.$strip>>>;
2341
+ catalog: z.ZodOptional<z.ZodString>;
2342
+ display: z.ZodOptional<z.ZodEnum<{
2343
+ dropdown: "dropdown";
2344
+ grid: "grid";
2345
+ pills: "pills";
2346
+ }>>;
2347
+ searchable: z.ZodOptional<z.ZodBoolean>;
2348
+ }, z.core.$strip>, z.ZodObject<{
2349
+ key: z.ZodString;
2350
+ label: z.ZodString;
2351
+ default: z.ZodOptional<z.ZodUnknown>;
2352
+ group: z.ZodOptional<z.ZodEnum<{
2353
+ primary: "primary";
2354
+ advanced: "advanced";
2355
+ }>>;
2356
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2357
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2358
+ hint: z.ZodOptional<z.ZodString>;
2359
+ type: z.ZodLiteral<"boolean">;
2360
+ }, z.core.$strip>, z.ZodObject<{
2361
+ key: z.ZodString;
2362
+ label: z.ZodString;
2363
+ default: z.ZodOptional<z.ZodUnknown>;
2364
+ group: z.ZodOptional<z.ZodEnum<{
2365
+ primary: "primary";
2366
+ advanced: "advanced";
2367
+ }>>;
2368
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2369
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2370
+ hint: z.ZodOptional<z.ZodString>;
2371
+ type: z.ZodLiteral<"text">;
2372
+ multiline: z.ZodOptional<z.ZodBoolean>;
2373
+ placeholder: z.ZodOptional<z.ZodString>;
2374
+ }, z.core.$strip>, z.ZodObject<{
2375
+ key: z.ZodString;
2376
+ label: z.ZodString;
2377
+ default: z.ZodOptional<z.ZodUnknown>;
2378
+ group: z.ZodOptional<z.ZodEnum<{
2379
+ primary: "primary";
2380
+ advanced: "advanced";
2381
+ }>>;
2382
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2383
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2384
+ hint: z.ZodOptional<z.ZodString>;
2385
+ type: z.ZodLiteral<"slider">;
2386
+ min: z.ZodNumber;
2387
+ max: z.ZodNumber;
2388
+ step: z.ZodOptional<z.ZodNumber>;
2389
+ }, z.core.$strip>, z.ZodObject<{
2390
+ key: z.ZodString;
2391
+ label: z.ZodString;
2392
+ default: z.ZodOptional<z.ZodUnknown>;
2393
+ group: z.ZodOptional<z.ZodEnum<{
2394
+ primary: "primary";
2395
+ advanced: "advanced";
2396
+ }>>;
2397
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2398
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2399
+ hint: z.ZodOptional<z.ZodString>;
2400
+ type: z.ZodLiteral<"number">;
2401
+ min: z.ZodOptional<z.ZodNumber>;
2402
+ max: z.ZodOptional<z.ZodNumber>;
2403
+ step: z.ZodOptional<z.ZodNumber>;
2404
+ }, z.core.$strip>], "type">>;
1789
2405
  }, z.core.$strip>>;
1790
2406
  }, z.core.$strip>;
1791
2407
  /** Capabilities data payload for a single media category. */
@@ -1811,6 +2427,87 @@ declare const v3CapabilitiesDataSchema: z.ZodObject<{
1811
2427
  description: z.ZodString;
1812
2428
  }, z.core.$strip>>;
1813
2429
  }, z.core.$strip>>;
2430
+ paramsSchema: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
2431
+ key: z.ZodString;
2432
+ label: z.ZodString;
2433
+ default: z.ZodOptional<z.ZodUnknown>;
2434
+ group: z.ZodOptional<z.ZodEnum<{
2435
+ primary: "primary";
2436
+ advanced: "advanced";
2437
+ }>>;
2438
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2439
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2440
+ hint: z.ZodOptional<z.ZodString>;
2441
+ type: z.ZodLiteral<"select">;
2442
+ options: z.ZodOptional<z.ZodArray<z.ZodObject<{
2443
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>;
2444
+ label: z.ZodString;
2445
+ thumbnail: z.ZodOptional<z.ZodString>;
2446
+ }, z.core.$strip>>>;
2447
+ catalog: z.ZodOptional<z.ZodString>;
2448
+ display: z.ZodOptional<z.ZodEnum<{
2449
+ dropdown: "dropdown";
2450
+ grid: "grid";
2451
+ pills: "pills";
2452
+ }>>;
2453
+ searchable: z.ZodOptional<z.ZodBoolean>;
2454
+ }, z.core.$strip>, z.ZodObject<{
2455
+ key: z.ZodString;
2456
+ label: z.ZodString;
2457
+ default: z.ZodOptional<z.ZodUnknown>;
2458
+ group: z.ZodOptional<z.ZodEnum<{
2459
+ primary: "primary";
2460
+ advanced: "advanced";
2461
+ }>>;
2462
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2463
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2464
+ hint: z.ZodOptional<z.ZodString>;
2465
+ type: z.ZodLiteral<"boolean">;
2466
+ }, z.core.$strip>, z.ZodObject<{
2467
+ key: z.ZodString;
2468
+ label: z.ZodString;
2469
+ default: z.ZodOptional<z.ZodUnknown>;
2470
+ group: z.ZodOptional<z.ZodEnum<{
2471
+ primary: "primary";
2472
+ advanced: "advanced";
2473
+ }>>;
2474
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2475
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2476
+ hint: z.ZodOptional<z.ZodString>;
2477
+ type: z.ZodLiteral<"text">;
2478
+ multiline: z.ZodOptional<z.ZodBoolean>;
2479
+ placeholder: z.ZodOptional<z.ZodString>;
2480
+ }, z.core.$strip>, z.ZodObject<{
2481
+ key: z.ZodString;
2482
+ label: z.ZodString;
2483
+ default: z.ZodOptional<z.ZodUnknown>;
2484
+ group: z.ZodOptional<z.ZodEnum<{
2485
+ primary: "primary";
2486
+ advanced: "advanced";
2487
+ }>>;
2488
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2489
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2490
+ hint: z.ZodOptional<z.ZodString>;
2491
+ type: z.ZodLiteral<"slider">;
2492
+ min: z.ZodNumber;
2493
+ max: z.ZodNumber;
2494
+ step: z.ZodOptional<z.ZodNumber>;
2495
+ }, z.core.$strip>, z.ZodObject<{
2496
+ key: z.ZodString;
2497
+ label: z.ZodString;
2498
+ default: z.ZodOptional<z.ZodUnknown>;
2499
+ group: z.ZodOptional<z.ZodEnum<{
2500
+ primary: "primary";
2501
+ advanced: "advanced";
2502
+ }>>;
2503
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2504
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2505
+ hint: z.ZodOptional<z.ZodString>;
2506
+ type: z.ZodLiteral<"number">;
2507
+ min: z.ZodOptional<z.ZodNumber>;
2508
+ max: z.ZodOptional<z.ZodNumber>;
2509
+ step: z.ZodOptional<z.ZodNumber>;
2510
+ }, z.core.$strip>], "type">>;
1814
2511
  }, z.core.$strip>>;
1815
2512
  }, z.core.$strip>>;
1816
2513
  updatedAt: z.ZodOptional<z.ZodString>;
@@ -1840,6 +2537,87 @@ declare const v3CapabilitiesResponseSchema: z.ZodObject<{
1840
2537
  description: z.ZodString;
1841
2538
  }, z.core.$strip>>;
1842
2539
  }, z.core.$strip>>;
2540
+ paramsSchema: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
2541
+ key: z.ZodString;
2542
+ label: z.ZodString;
2543
+ default: z.ZodOptional<z.ZodUnknown>;
2544
+ group: z.ZodOptional<z.ZodEnum<{
2545
+ primary: "primary";
2546
+ advanced: "advanced";
2547
+ }>>;
2548
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2549
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2550
+ hint: z.ZodOptional<z.ZodString>;
2551
+ type: z.ZodLiteral<"select">;
2552
+ options: z.ZodOptional<z.ZodArray<z.ZodObject<{
2553
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>;
2554
+ label: z.ZodString;
2555
+ thumbnail: z.ZodOptional<z.ZodString>;
2556
+ }, z.core.$strip>>>;
2557
+ catalog: z.ZodOptional<z.ZodString>;
2558
+ display: z.ZodOptional<z.ZodEnum<{
2559
+ dropdown: "dropdown";
2560
+ grid: "grid";
2561
+ pills: "pills";
2562
+ }>>;
2563
+ searchable: z.ZodOptional<z.ZodBoolean>;
2564
+ }, z.core.$strip>, z.ZodObject<{
2565
+ key: z.ZodString;
2566
+ label: z.ZodString;
2567
+ default: z.ZodOptional<z.ZodUnknown>;
2568
+ group: z.ZodOptional<z.ZodEnum<{
2569
+ primary: "primary";
2570
+ advanced: "advanced";
2571
+ }>>;
2572
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2573
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2574
+ hint: z.ZodOptional<z.ZodString>;
2575
+ type: z.ZodLiteral<"boolean">;
2576
+ }, z.core.$strip>, z.ZodObject<{
2577
+ key: z.ZodString;
2578
+ label: z.ZodString;
2579
+ default: z.ZodOptional<z.ZodUnknown>;
2580
+ group: z.ZodOptional<z.ZodEnum<{
2581
+ primary: "primary";
2582
+ advanced: "advanced";
2583
+ }>>;
2584
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2585
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2586
+ hint: z.ZodOptional<z.ZodString>;
2587
+ type: z.ZodLiteral<"text">;
2588
+ multiline: z.ZodOptional<z.ZodBoolean>;
2589
+ placeholder: z.ZodOptional<z.ZodString>;
2590
+ }, z.core.$strip>, z.ZodObject<{
2591
+ key: z.ZodString;
2592
+ label: z.ZodString;
2593
+ default: z.ZodOptional<z.ZodUnknown>;
2594
+ group: z.ZodOptional<z.ZodEnum<{
2595
+ primary: "primary";
2596
+ advanced: "advanced";
2597
+ }>>;
2598
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2599
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2600
+ hint: z.ZodOptional<z.ZodString>;
2601
+ type: z.ZodLiteral<"slider">;
2602
+ min: z.ZodNumber;
2603
+ max: z.ZodNumber;
2604
+ step: z.ZodOptional<z.ZodNumber>;
2605
+ }, z.core.$strip>, z.ZodObject<{
2606
+ key: z.ZodString;
2607
+ label: z.ZodString;
2608
+ default: z.ZodOptional<z.ZodUnknown>;
2609
+ group: z.ZodOptional<z.ZodEnum<{
2610
+ primary: "primary";
2611
+ advanced: "advanced";
2612
+ }>>;
2613
+ visibleWhen: z.ZodOptional<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
2614
+ clientOnly: z.ZodOptional<z.ZodBoolean>;
2615
+ hint: z.ZodOptional<z.ZodString>;
2616
+ type: z.ZodLiteral<"number">;
2617
+ min: z.ZodOptional<z.ZodNumber>;
2618
+ max: z.ZodOptional<z.ZodNumber>;
2619
+ step: z.ZodOptional<z.ZodNumber>;
2620
+ }, z.core.$strip>], "type">>;
1843
2621
  }, z.core.$strip>>;
1844
2622
  }, z.core.$strip>>;
1845
2623
  updatedAt: z.ZodOptional<z.ZodString>;
@@ -2012,6 +2790,8 @@ declare const v3UploadResponseSchema: z.ZodObject<{
2012
2790
  }>;
2013
2791
  }, z.core.$strip>;
2014
2792
  }, z.core.$strip>;
2793
+ /** Single param schema entry (UI metadata). */
2794
+ type V3ParamSchema = z.infer<typeof paramSchemaSchema>;
2015
2795
  /** Variant within a v3 feature. */
2016
2796
  type V3Variant = z.infer<typeof v3VariantSchema>;
2017
2797
  /** Feature entry within a capabilities response. */
@@ -2213,6 +2993,68 @@ declare class AiClient {
2213
2993
  description: string;
2214
2994
  } | undefined;
2215
2995
  } | null;
2996
+ paramsSchema: ({
2997
+ key: string;
2998
+ label: string;
2999
+ type: "select";
3000
+ default?: unknown;
3001
+ group?: "primary" | "advanced" | undefined;
3002
+ visibleWhen?: unknown;
3003
+ clientOnly?: boolean | undefined;
3004
+ hint?: string | undefined;
3005
+ options?: {
3006
+ value: string | number | boolean;
3007
+ label: string;
3008
+ thumbnail?: string | undefined;
3009
+ }[] | undefined;
3010
+ catalog?: string | undefined;
3011
+ display?: "dropdown" | "grid" | "pills" | undefined;
3012
+ searchable?: boolean | undefined;
3013
+ } | {
3014
+ key: string;
3015
+ label: string;
3016
+ type: "boolean";
3017
+ default?: unknown;
3018
+ group?: "primary" | "advanced" | undefined;
3019
+ visibleWhen?: unknown;
3020
+ clientOnly?: boolean | undefined;
3021
+ hint?: string | undefined;
3022
+ } | {
3023
+ key: string;
3024
+ label: string;
3025
+ type: "text";
3026
+ default?: unknown;
3027
+ group?: "primary" | "advanced" | undefined;
3028
+ visibleWhen?: unknown;
3029
+ clientOnly?: boolean | undefined;
3030
+ hint?: string | undefined;
3031
+ multiline?: boolean | undefined;
3032
+ placeholder?: string | undefined;
3033
+ } | {
3034
+ key: string;
3035
+ label: string;
3036
+ type: "slider";
3037
+ min: number;
3038
+ max: number;
3039
+ default?: unknown;
3040
+ group?: "primary" | "advanced" | undefined;
3041
+ visibleWhen?: unknown;
3042
+ clientOnly?: boolean | undefined;
3043
+ hint?: string | undefined;
3044
+ step?: number | undefined;
3045
+ } | {
3046
+ key: string;
3047
+ label: string;
3048
+ type: "number";
3049
+ default?: unknown;
3050
+ group?: "primary" | "advanced" | undefined;
3051
+ visibleWhen?: unknown;
3052
+ clientOnly?: boolean | undefined;
3053
+ hint?: string | undefined;
3054
+ min?: number | undefined;
3055
+ max?: number | undefined;
3056
+ step?: number | undefined;
3057
+ })[];
2216
3058
  }[];
2217
3059
  }[];
2218
3060
  updatedAt?: string | undefined;
@@ -2243,6 +3085,68 @@ declare class AiClient {
2243
3085
  description: string;
2244
3086
  } | undefined;
2245
3087
  } | null;
3088
+ paramsSchema: ({
3089
+ key: string;
3090
+ label: string;
3091
+ type: "select";
3092
+ default?: unknown;
3093
+ group?: "primary" | "advanced" | undefined;
3094
+ visibleWhen?: unknown;
3095
+ clientOnly?: boolean | undefined;
3096
+ hint?: string | undefined;
3097
+ options?: {
3098
+ value: string | number | boolean;
3099
+ label: string;
3100
+ thumbnail?: string | undefined;
3101
+ }[] | undefined;
3102
+ catalog?: string | undefined;
3103
+ display?: "dropdown" | "grid" | "pills" | undefined;
3104
+ searchable?: boolean | undefined;
3105
+ } | {
3106
+ key: string;
3107
+ label: string;
3108
+ type: "boolean";
3109
+ default?: unknown;
3110
+ group?: "primary" | "advanced" | undefined;
3111
+ visibleWhen?: unknown;
3112
+ clientOnly?: boolean | undefined;
3113
+ hint?: string | undefined;
3114
+ } | {
3115
+ key: string;
3116
+ label: string;
3117
+ type: "text";
3118
+ default?: unknown;
3119
+ group?: "primary" | "advanced" | undefined;
3120
+ visibleWhen?: unknown;
3121
+ clientOnly?: boolean | undefined;
3122
+ hint?: string | undefined;
3123
+ multiline?: boolean | undefined;
3124
+ placeholder?: string | undefined;
3125
+ } | {
3126
+ key: string;
3127
+ label: string;
3128
+ type: "slider";
3129
+ min: number;
3130
+ max: number;
3131
+ default?: unknown;
3132
+ group?: "primary" | "advanced" | undefined;
3133
+ visibleWhen?: unknown;
3134
+ clientOnly?: boolean | undefined;
3135
+ hint?: string | undefined;
3136
+ step?: number | undefined;
3137
+ } | {
3138
+ key: string;
3139
+ label: string;
3140
+ type: "number";
3141
+ default?: unknown;
3142
+ group?: "primary" | "advanced" | undefined;
3143
+ visibleWhen?: unknown;
3144
+ clientOnly?: boolean | undefined;
3145
+ hint?: string | undefined;
3146
+ min?: number | undefined;
3147
+ max?: number | undefined;
3148
+ step?: number | undefined;
3149
+ })[];
2246
3150
  }[];
2247
3151
  }[];
2248
3152
  updatedAt?: string | undefined;
@@ -2273,6 +3177,68 @@ declare class AiClient {
2273
3177
  description: string;
2274
3178
  } | undefined;
2275
3179
  } | null;
3180
+ paramsSchema: ({
3181
+ key: string;
3182
+ label: string;
3183
+ type: "select";
3184
+ default?: unknown;
3185
+ group?: "primary" | "advanced" | undefined;
3186
+ visibleWhen?: unknown;
3187
+ clientOnly?: boolean | undefined;
3188
+ hint?: string | undefined;
3189
+ options?: {
3190
+ value: string | number | boolean;
3191
+ label: string;
3192
+ thumbnail?: string | undefined;
3193
+ }[] | undefined;
3194
+ catalog?: string | undefined;
3195
+ display?: "dropdown" | "grid" | "pills" | undefined;
3196
+ searchable?: boolean | undefined;
3197
+ } | {
3198
+ key: string;
3199
+ label: string;
3200
+ type: "boolean";
3201
+ default?: unknown;
3202
+ group?: "primary" | "advanced" | undefined;
3203
+ visibleWhen?: unknown;
3204
+ clientOnly?: boolean | undefined;
3205
+ hint?: string | undefined;
3206
+ } | {
3207
+ key: string;
3208
+ label: string;
3209
+ type: "text";
3210
+ default?: unknown;
3211
+ group?: "primary" | "advanced" | undefined;
3212
+ visibleWhen?: unknown;
3213
+ clientOnly?: boolean | undefined;
3214
+ hint?: string | undefined;
3215
+ multiline?: boolean | undefined;
3216
+ placeholder?: string | undefined;
3217
+ } | {
3218
+ key: string;
3219
+ label: string;
3220
+ type: "slider";
3221
+ min: number;
3222
+ max: number;
3223
+ default?: unknown;
3224
+ group?: "primary" | "advanced" | undefined;
3225
+ visibleWhen?: unknown;
3226
+ clientOnly?: boolean | undefined;
3227
+ hint?: string | undefined;
3228
+ step?: number | undefined;
3229
+ } | {
3230
+ key: string;
3231
+ label: string;
3232
+ type: "number";
3233
+ default?: unknown;
3234
+ group?: "primary" | "advanced" | undefined;
3235
+ visibleWhen?: unknown;
3236
+ clientOnly?: boolean | undefined;
3237
+ hint?: string | undefined;
3238
+ min?: number | undefined;
3239
+ max?: number | undefined;
3240
+ step?: number | undefined;
3241
+ })[];
2276
3242
  }[];
2277
3243
  }[];
2278
3244
  updatedAt?: string | undefined;
@@ -2843,6 +3809,7 @@ type index$7_V3EstimatePriceRequest = V3EstimatePriceRequest;
2843
3809
  type index$7_V3EstimatePriceResponse = V3EstimatePriceResponse;
2844
3810
  type index$7_V3Feature = V3Feature;
2845
3811
  type index$7_V3GenerateRequest = V3GenerateRequest;
3812
+ type index$7_V3ParamSchema = V3ParamSchema;
2846
3813
  type index$7_V3QueueRequest = V3QueueRequest;
2847
3814
  type index$7_V3QueueResponse = V3QueueResponse;
2848
3815
  type index$7_V3QueueTicket = V3QueueTicket;
@@ -2879,6 +3846,7 @@ declare const index$7_aiProviderTemplatesRequestSchema: typeof aiProviderTemplat
2879
3846
  declare const index$7_aiProviderTemplatesResponseSchema: typeof aiProviderTemplatesResponseSchema;
2880
3847
  declare const index$7_aiProviderTemplatesSuccessSchema: typeof aiProviderTemplatesSuccessSchema;
2881
3848
  declare const index$7_aiResponsesRequestSchema: typeof aiResponsesRequestSchema;
3849
+ declare const index$7_paramSchemaSchema: typeof paramSchemaSchema;
2882
3850
  declare const index$7_v3BasicSuccessSchema: typeof v3BasicSuccessSchema;
2883
3851
  declare const index$7_v3CapabilitiesDataSchema: typeof v3CapabilitiesDataSchema;
2884
3852
  declare const index$7_v3CapabilitiesResponseSchema: typeof v3CapabilitiesResponseSchema;
@@ -2897,7 +3865,7 @@ declare const index$7_v3TaskResponseSchema: typeof v3TaskResponseSchema;
2897
3865
  declare const index$7_v3UploadResponseSchema: typeof v3UploadResponseSchema;
2898
3866
  declare const index$7_v3VariantSchema: typeof v3VariantSchema;
2899
3867
  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 };
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 };
2901
3869
  }
2902
3870
 
2903
3871
  declare const aiToolsEndpoints: {
@@ -4624,4 +5592,4 @@ declare function createTrpcClient(options: TrpcClientOptions): _trpc_client.TRPC
4624
5592
  transformer: false;
4625
5593
  }, _trpc_server.TRPCDecorateCreateRouterOptions<_trpc_server.TRPCCreateRouterOptions>>>;
4626
5594
 
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 };
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 };