@hautechai/sdk 0.3.21 → 0.3.23

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.
@@ -94,6 +94,12 @@ export interface AddBalanceControllerParamsDto {
94
94
  * @memberof AddBalanceControllerParamsDto
95
95
  */
96
96
  'amount': string;
97
+ /**
98
+ *
99
+ * @type {string}
100
+ * @memberof AddBalanceControllerParamsDto
101
+ */
102
+ 'idempotencyKey'?: string;
97
103
  }
98
104
  /**
99
105
  *
@@ -113,6 +119,12 @@ export interface AddBalanceParamsDto {
113
119
  * @memberof AddBalanceParamsDto
114
120
  */
115
121
  'accountId': string;
122
+ /**
123
+ *
124
+ * @type {string}
125
+ * @memberof AddBalanceParamsDto
126
+ */
127
+ 'idempotencyKey'?: string;
116
128
  }
117
129
  /**
118
130
  *
@@ -178,6 +190,162 @@ export interface AddItemsToStackParamsDto {
178
190
  */
179
191
  'itemIds': Array<string>;
180
192
  }
193
+ /**
194
+ *
195
+ * @export
196
+ * @interface AnimateKling16ProV1Input
197
+ */
198
+ export interface AnimateKling16ProV1Input {
199
+ /**
200
+ *
201
+ * @type {string}
202
+ * @memberof AnimateKling16ProV1Input
203
+ */
204
+ 'prompt': string;
205
+ /**
206
+ *
207
+ * @type {string}
208
+ * @memberof AnimateKling16ProV1Input
209
+ */
210
+ 'negativePrompt'?: string;
211
+ /**
212
+ *
213
+ * @type {string}
214
+ * @memberof AnimateKling16ProV1Input
215
+ */
216
+ 'aspectRatio'?: AnimateKling16ProV1InputAspectRatioEnum;
217
+ /**
218
+ *
219
+ * @type {string}
220
+ * @memberof AnimateKling16ProV1Input
221
+ */
222
+ 'startImageId'?: string;
223
+ /**
224
+ *
225
+ * @type {string}
226
+ * @memberof AnimateKling16ProV1Input
227
+ */
228
+ 'endImageId'?: string;
229
+ /**
230
+ *
231
+ * @type {number}
232
+ * @memberof AnimateKling16ProV1Input
233
+ */
234
+ 'promptRelevance'?: number;
235
+ /**
236
+ *
237
+ * @type {string}
238
+ * @memberof AnimateKling16ProV1Input
239
+ */
240
+ 'duration'?: AnimateKling16ProV1InputDurationEnum;
241
+ }
242
+ export declare const AnimateKling16ProV1InputAspectRatioEnum: {
243
+ readonly _11: "1:1";
244
+ readonly _916: "9:16";
245
+ readonly _169: "16:9";
246
+ };
247
+ export type AnimateKling16ProV1InputAspectRatioEnum = typeof AnimateKling16ProV1InputAspectRatioEnum[keyof typeof AnimateKling16ProV1InputAspectRatioEnum];
248
+ export declare const AnimateKling16ProV1InputDurationEnum: {
249
+ readonly _5: "5";
250
+ readonly _10: "10";
251
+ };
252
+ export type AnimateKling16ProV1InputDurationEnum = typeof AnimateKling16ProV1InputDurationEnum[keyof typeof AnimateKling16ProV1InputDurationEnum];
253
+ /**
254
+ *
255
+ * @export
256
+ * @interface AnimateKling16ProV1Request
257
+ */
258
+ export interface AnimateKling16ProV1Request {
259
+ /**
260
+ *
261
+ * @type {AnimateKling16ProV1Input}
262
+ * @memberof AnimateKling16ProV1Request
263
+ */
264
+ 'input': AnimateKling16ProV1Input;
265
+ /**
266
+ *
267
+ * @type {object}
268
+ * @memberof AnimateKling16ProV1Request
269
+ */
270
+ 'metadata'?: object;
271
+ }
272
+ /**
273
+ *
274
+ * @export
275
+ * @interface AnimateKling16ProV1Response
276
+ */
277
+ export interface AnimateKling16ProV1Response {
278
+ /**
279
+ *
280
+ * @type {string}
281
+ * @memberof AnimateKling16ProV1Response
282
+ */
283
+ 'kind': AnimateKling16ProV1ResponseKindEnum;
284
+ /**
285
+ *
286
+ * @type {OperationOutputVideoSingle}
287
+ * @memberof AnimateKling16ProV1Response
288
+ */
289
+ 'output': OperationOutputVideoSingle;
290
+ /**
291
+ *
292
+ * @type {object}
293
+ * @memberof AnimateKling16ProV1Response
294
+ */
295
+ 'input': object;
296
+ /**
297
+ *
298
+ * @type {string}
299
+ * @memberof AnimateKling16ProV1Response
300
+ */
301
+ 'status': AnimateKling16ProV1ResponseStatusEnum;
302
+ /**
303
+ *
304
+ * @type {string}
305
+ * @memberof AnimateKling16ProV1Response
306
+ */
307
+ 'type': string;
308
+ /**
309
+ *
310
+ * @type {string}
311
+ * @memberof AnimateKling16ProV1Response
312
+ */
313
+ 'id': string;
314
+ /**
315
+ *
316
+ * @type {string}
317
+ * @memberof AnimateKling16ProV1Response
318
+ */
319
+ 'creatorId': string;
320
+ /**
321
+ *
322
+ * @type {object}
323
+ * @memberof AnimateKling16ProV1Response
324
+ */
325
+ 'metadata': object;
326
+ /**
327
+ *
328
+ * @type {string}
329
+ * @memberof AnimateKling16ProV1Response
330
+ */
331
+ 'createdAt': string;
332
+ /**
333
+ *
334
+ * @type {string}
335
+ * @memberof AnimateKling16ProV1Response
336
+ */
337
+ 'updatedAt': string;
338
+ }
339
+ export declare const AnimateKling16ProV1ResponseKindEnum: {
340
+ readonly Operation: "operation";
341
+ };
342
+ export type AnimateKling16ProV1ResponseKindEnum = typeof AnimateKling16ProV1ResponseKindEnum[keyof typeof AnimateKling16ProV1ResponseKindEnum];
343
+ export declare const AnimateKling16ProV1ResponseStatusEnum: {
344
+ readonly Pending: "pending";
345
+ readonly Finished: "finished";
346
+ readonly Failed: "failed";
347
+ };
348
+ export type AnimateKling16ProV1ResponseStatusEnum = typeof AnimateKling16ProV1ResponseStatusEnum[keyof typeof AnimateKling16ProV1ResponseStatusEnum];
181
349
  /**
182
350
  *
183
351
  * @export
@@ -271,10 +439,10 @@ export declare const CollectionEntityKindEnum: {
271
439
  readonly Operation: "operation";
272
440
  readonly Stack: "stack";
273
441
  readonly Image: "image";
442
+ readonly Video: "video";
274
443
  readonly Pose: "pose";
275
444
  readonly Storage: "storage";
276
445
  readonly Pipeline: "pipeline";
277
- readonly Forbidden: "forbidden";
278
446
  };
279
447
  export type CollectionEntityKindEnum = typeof CollectionEntityKindEnum[keyof typeof CollectionEntityKindEnum];
280
448
  /**
@@ -395,7 +563,7 @@ export interface CompositeV1Response {
395
563
  * @type {OperationOutputImageSingle}
396
564
  * @memberof CompositeV1Response
397
565
  */
398
- 'output': OperationOutputImageSingle | null;
566
+ 'output': OperationOutputImageSingle;
399
567
  /**
400
568
  *
401
569
  * @type {object}
@@ -510,7 +678,7 @@ export interface ContrastV1Response {
510
678
  * @type {OperationOutputImageSingle}
511
679
  * @memberof ContrastV1Response
512
680
  */
513
- 'output': OperationOutputImageSingle | null;
681
+ 'output': OperationOutputImageSingle;
514
682
  /**
515
683
  *
516
684
  * @type {object}
@@ -733,7 +901,7 @@ export interface CropV1Response {
733
901
  * @type {OperationOutputImageSingle}
734
902
  * @memberof CropV1Response
735
903
  */
736
- 'output': OperationOutputImageSingle | null;
904
+ 'output': OperationOutputImageSingle;
737
905
  /**
738
906
  *
739
907
  * @type {object}
@@ -848,7 +1016,7 @@ export interface CutV1Response {
848
1016
  * @type {OperationOutputImageSingle}
849
1017
  * @memberof CutV1Response
850
1018
  */
851
- 'output': OperationOutputImageSingle | null;
1019
+ 'output': OperationOutputImageSingle;
852
1020
  /**
853
1021
  *
854
1022
  * @type {object}
@@ -947,6 +1115,115 @@ export interface DetachAccessControllerParamsDto {
947
1115
  */
948
1116
  'parentResourceId': string;
949
1117
  }
1118
+ /**
1119
+ *
1120
+ * @export
1121
+ * @interface EchoV1Input
1122
+ */
1123
+ export interface EchoV1Input {
1124
+ /**
1125
+ *
1126
+ * @type {string}
1127
+ * @memberof EchoV1Input
1128
+ */
1129
+ 'text': string;
1130
+ }
1131
+ /**
1132
+ *
1133
+ * @export
1134
+ * @interface EchoV1Request
1135
+ */
1136
+ export interface EchoV1Request {
1137
+ /**
1138
+ *
1139
+ * @type {EchoV1Input}
1140
+ * @memberof EchoV1Request
1141
+ */
1142
+ 'input': EchoV1Input;
1143
+ /**
1144
+ *
1145
+ * @type {object}
1146
+ * @memberof EchoV1Request
1147
+ */
1148
+ 'metadata'?: object;
1149
+ }
1150
+ /**
1151
+ *
1152
+ * @export
1153
+ * @interface EchoV1Response
1154
+ */
1155
+ export interface EchoV1Response {
1156
+ /**
1157
+ *
1158
+ * @type {string}
1159
+ * @memberof EchoV1Response
1160
+ */
1161
+ 'kind': EchoV1ResponseKindEnum;
1162
+ /**
1163
+ *
1164
+ * @type {OperationOutputTextSingle}
1165
+ * @memberof EchoV1Response
1166
+ */
1167
+ 'output': OperationOutputTextSingle;
1168
+ /**
1169
+ *
1170
+ * @type {object}
1171
+ * @memberof EchoV1Response
1172
+ */
1173
+ 'input': object;
1174
+ /**
1175
+ *
1176
+ * @type {string}
1177
+ * @memberof EchoV1Response
1178
+ */
1179
+ 'status': EchoV1ResponseStatusEnum;
1180
+ /**
1181
+ *
1182
+ * @type {string}
1183
+ * @memberof EchoV1Response
1184
+ */
1185
+ 'type': string;
1186
+ /**
1187
+ *
1188
+ * @type {string}
1189
+ * @memberof EchoV1Response
1190
+ */
1191
+ 'id': string;
1192
+ /**
1193
+ *
1194
+ * @type {string}
1195
+ * @memberof EchoV1Response
1196
+ */
1197
+ 'creatorId': string;
1198
+ /**
1199
+ *
1200
+ * @type {object}
1201
+ * @memberof EchoV1Response
1202
+ */
1203
+ 'metadata': object;
1204
+ /**
1205
+ *
1206
+ * @type {string}
1207
+ * @memberof EchoV1Response
1208
+ */
1209
+ 'createdAt': string;
1210
+ /**
1211
+ *
1212
+ * @type {string}
1213
+ * @memberof EchoV1Response
1214
+ */
1215
+ 'updatedAt': string;
1216
+ }
1217
+ export declare const EchoV1ResponseKindEnum: {
1218
+ readonly Operation: "operation";
1219
+ };
1220
+ export type EchoV1ResponseKindEnum = typeof EchoV1ResponseKindEnum[keyof typeof EchoV1ResponseKindEnum];
1221
+ export declare const EchoV1ResponseStatusEnum: {
1222
+ readonly Pending: "pending";
1223
+ readonly Finished: "finished";
1224
+ readonly Failed: "failed";
1225
+ };
1226
+ export type EchoV1ResponseStatusEnum = typeof EchoV1ResponseStatusEnum[keyof typeof EchoV1ResponseStatusEnum];
950
1227
  /**
951
1228
  *
952
1229
  * @export
@@ -965,6 +1242,12 @@ export interface GPTV1Input {
965
1242
  * @memberof GPTV1Input
966
1243
  */
967
1244
  'prompt': string;
1245
+ /**
1246
+ *
1247
+ * @type {Array<string>}
1248
+ * @memberof GPTV1Input
1249
+ */
1250
+ 'additionalMessages'?: Array<string>;
968
1251
  /**
969
1252
  *
970
1253
  * @type {string}
@@ -973,7 +1256,8 @@ export interface GPTV1Input {
973
1256
  'imageId'?: string;
974
1257
  }
975
1258
  export declare const GPTV1InputModelEnum: {
976
- readonly Gpt4o: "gpt-4o";
1259
+ readonly _4o: "gpt-4o";
1260
+ readonly _41Mini: "gpt-4.1-mini";
977
1261
  };
978
1262
  export type GPTV1InputModelEnum = typeof GPTV1InputModelEnum[keyof typeof GPTV1InputModelEnum];
979
1263
  /**
@@ -1227,7 +1511,7 @@ export interface GptV1Response {
1227
1511
  * @type {OperationOutputJSON}
1228
1512
  * @memberof GptV1Response
1229
1513
  */
1230
- 'output': OperationOutputJSON | null;
1514
+ 'output': OperationOutputJSON;
1231
1515
  /**
1232
1516
  *
1233
1517
  * @type {object}
@@ -1372,7 +1656,7 @@ export interface HauteLindaV1Response {
1372
1656
  * @type {OperationOutputImageMultiple}
1373
1657
  * @memberof HauteLindaV1Response
1374
1658
  */
1375
- 'output': OperationOutputImageMultiple | null;
1659
+ 'output': OperationOutputImageMultiple;
1376
1660
  /**
1377
1661
  *
1378
1662
  * @type {object}
@@ -1468,7 +1752,7 @@ export interface HauteNaomiV1Response {
1468
1752
  * @type {OperationOutputImageSingle}
1469
1753
  * @memberof HauteNaomiV1Response
1470
1754
  */
1471
- 'output': OperationOutputImageSingle | null;
1755
+ 'output': OperationOutputImageSingle;
1472
1756
  /**
1473
1757
  *
1474
1758
  * @type {object}
@@ -1600,10 +1884,10 @@ export declare const ImageEntityKindEnum: {
1600
1884
  readonly Operation: "operation";
1601
1885
  readonly Stack: "stack";
1602
1886
  readonly Image: "image";
1887
+ readonly Video: "video";
1603
1888
  readonly Pose: "pose";
1604
1889
  readonly Storage: "storage";
1605
1890
  readonly Pipeline: "pipeline";
1606
- readonly Forbidden: "forbidden";
1607
1891
  };
1608
1892
  export type ImageEntityKindEnum = typeof ImageEntityKindEnum[keyof typeof ImageEntityKindEnum];
1609
1893
  /**
@@ -1686,7 +1970,7 @@ export interface ImagineKateV1Response {
1686
1970
  * @type {OperationOutputImageSingle}
1687
1971
  * @memberof ImagineKateV1Response
1688
1972
  */
1689
- 'output': OperationOutputImageSingle | null;
1973
+ 'output': OperationOutputImageSingle;
1690
1974
  /**
1691
1975
  *
1692
1976
  * @type {object}
@@ -1795,7 +2079,7 @@ export interface InpaintKateV1Response {
1795
2079
  * @type {OperationOutputImageSingle}
1796
2080
  * @memberof InpaintKateV1Response
1797
2081
  */
1798
- 'output': OperationOutputImageSingle | null;
2082
+ 'output': OperationOutputImageSingle;
1799
2083
  /**
1800
2084
  *
1801
2085
  * @type {object}
@@ -2248,10 +2532,10 @@ export declare const ListCollectionItemsParamsDtoKindEnum: {
2248
2532
  readonly Operation: "operation";
2249
2533
  readonly Stack: "stack";
2250
2534
  readonly Image: "image";
2535
+ readonly Video: "video";
2251
2536
  readonly Pose: "pose";
2252
2537
  readonly Storage: "storage";
2253
2538
  readonly Pipeline: "pipeline";
2254
- readonly Forbidden: "forbidden";
2255
2539
  };
2256
2540
  export type ListCollectionItemsParamsDtoKindEnum = typeof ListCollectionItemsParamsDtoKindEnum[keyof typeof ListCollectionItemsParamsDtoKindEnum];
2257
2541
  /**
@@ -2478,81 +2762,196 @@ export type ListStacksParamsDtoOrderByEnum = typeof ListStacksParamsDtoOrderByEn
2478
2762
  /**
2479
2763
  *
2480
2764
  * @export
2481
- * @interface ModifyAccessParamsDto
2765
+ * @interface MathV1Input
2482
2766
  */
2483
- export interface ModifyAccessParamsDto {
2767
+ export interface MathV1Input {
2484
2768
  /**
2485
- *
2769
+ * Mathematical expression or JSON object with expressions to evaluate using mathjs
2486
2770
  * @type {string}
2487
- * @memberof ModifyAccessParamsDto
2771
+ * @memberof MathV1Input
2488
2772
  */
2489
- 'principalType': ModifyAccessParamsDtoPrincipalTypeEnum;
2773
+ 'code': string;
2490
2774
  /**
2491
- *
2492
- * @type {string}
2493
- * @memberof ModifyAccessParamsDto
2775
+ * Input data for the mathematical expression
2776
+ * @type {object}
2777
+ * @memberof MathV1Input
2494
2778
  */
2495
- 'principalId': string;
2779
+ 'input'?: object;
2780
+ }
2781
+ /**
2782
+ *
2783
+ * @export
2784
+ * @interface MathV1Request
2785
+ */
2786
+ export interface MathV1Request {
2496
2787
  /**
2497
2788
  *
2498
- * @type {string}
2499
- * @memberof ModifyAccessParamsDto
2789
+ * @type {MathV1Input}
2790
+ * @memberof MathV1Request
2500
2791
  */
2501
- 'resourceId': string;
2792
+ 'input': MathV1Input;
2502
2793
  /**
2503
2794
  *
2504
- * @type {string}
2505
- * @memberof ModifyAccessParamsDto
2795
+ * @type {object}
2796
+ * @memberof MathV1Request
2506
2797
  */
2507
- 'access': string;
2798
+ 'metadata'?: object;
2508
2799
  }
2509
- export declare const ModifyAccessParamsDtoPrincipalTypeEnum: {
2510
- readonly Account: "account";
2511
- readonly Group: "group";
2512
- };
2513
- export type ModifyAccessParamsDtoPrincipalTypeEnum = typeof ModifyAccessParamsDtoPrincipalTypeEnum[keyof typeof ModifyAccessParamsDtoPrincipalTypeEnum];
2514
2800
  /**
2515
2801
  *
2516
2802
  * @export
2517
- * @interface NaomiHauteV1Input
2803
+ * @interface MathV1Response
2518
2804
  */
2519
- export interface NaomiHauteV1Input {
2520
- /**
2521
- * UNSTABLE
2522
- * @type {Array<string>}
2523
- * @memberof NaomiHauteV1Input
2524
- */
2525
- 'loraIds'?: Array<string>;
2805
+ export interface MathV1Response {
2526
2806
  /**
2527
2807
  *
2528
2808
  * @type {string}
2529
- * @memberof NaomiHauteV1Input
2809
+ * @memberof MathV1Response
2530
2810
  */
2531
- 'prompt': string;
2811
+ 'kind': MathV1ResponseKindEnum;
2532
2812
  /**
2533
2813
  *
2534
- * @type {string}
2535
- * @memberof NaomiHauteV1Input
2814
+ * @type {OperationOutputJSON}
2815
+ * @memberof MathV1Response
2536
2816
  */
2537
- 'category': string;
2817
+ 'output': OperationOutputJSON;
2538
2818
  /**
2539
2819
  *
2540
- * @type {string}
2541
- * @memberof NaomiHauteV1Input
2820
+ * @type {object}
2821
+ * @memberof MathV1Response
2542
2822
  */
2543
- 'garmentImageId': string;
2823
+ 'input': object;
2544
2824
  /**
2545
2825
  *
2546
2826
  * @type {string}
2547
- * @memberof NaomiHauteV1Input
2827
+ * @memberof MathV1Response
2548
2828
  */
2549
- 'poseId': string;
2829
+ 'status': MathV1ResponseStatusEnum;
2550
2830
  /**
2551
2831
  *
2552
- * @type {number}
2553
- * @memberof NaomiHauteV1Input
2832
+ * @type {string}
2833
+ * @memberof MathV1Response
2554
2834
  */
2555
- 'seed': number;
2835
+ 'type': string;
2836
+ /**
2837
+ *
2838
+ * @type {string}
2839
+ * @memberof MathV1Response
2840
+ */
2841
+ 'id': string;
2842
+ /**
2843
+ *
2844
+ * @type {string}
2845
+ * @memberof MathV1Response
2846
+ */
2847
+ 'creatorId': string;
2848
+ /**
2849
+ *
2850
+ * @type {object}
2851
+ * @memberof MathV1Response
2852
+ */
2853
+ 'metadata': object;
2854
+ /**
2855
+ *
2856
+ * @type {string}
2857
+ * @memberof MathV1Response
2858
+ */
2859
+ 'createdAt': string;
2860
+ /**
2861
+ *
2862
+ * @type {string}
2863
+ * @memberof MathV1Response
2864
+ */
2865
+ 'updatedAt': string;
2866
+ }
2867
+ export declare const MathV1ResponseKindEnum: {
2868
+ readonly Operation: "operation";
2869
+ };
2870
+ export type MathV1ResponseKindEnum = typeof MathV1ResponseKindEnum[keyof typeof MathV1ResponseKindEnum];
2871
+ export declare const MathV1ResponseStatusEnum: {
2872
+ readonly Pending: "pending";
2873
+ readonly Finished: "finished";
2874
+ readonly Failed: "failed";
2875
+ };
2876
+ export type MathV1ResponseStatusEnum = typeof MathV1ResponseStatusEnum[keyof typeof MathV1ResponseStatusEnum];
2877
+ /**
2878
+ *
2879
+ * @export
2880
+ * @interface ModifyAccessParamsDto
2881
+ */
2882
+ export interface ModifyAccessParamsDto {
2883
+ /**
2884
+ *
2885
+ * @type {string}
2886
+ * @memberof ModifyAccessParamsDto
2887
+ */
2888
+ 'principalType': ModifyAccessParamsDtoPrincipalTypeEnum;
2889
+ /**
2890
+ *
2891
+ * @type {string}
2892
+ * @memberof ModifyAccessParamsDto
2893
+ */
2894
+ 'principalId': string;
2895
+ /**
2896
+ *
2897
+ * @type {string}
2898
+ * @memberof ModifyAccessParamsDto
2899
+ */
2900
+ 'resourceId': string;
2901
+ /**
2902
+ *
2903
+ * @type {string}
2904
+ * @memberof ModifyAccessParamsDto
2905
+ */
2906
+ 'access': string;
2907
+ }
2908
+ export declare const ModifyAccessParamsDtoPrincipalTypeEnum: {
2909
+ readonly Account: "account";
2910
+ readonly Group: "group";
2911
+ };
2912
+ export type ModifyAccessParamsDtoPrincipalTypeEnum = typeof ModifyAccessParamsDtoPrincipalTypeEnum[keyof typeof ModifyAccessParamsDtoPrincipalTypeEnum];
2913
+ /**
2914
+ *
2915
+ * @export
2916
+ * @interface NaomiHauteV1Input
2917
+ */
2918
+ export interface NaomiHauteV1Input {
2919
+ /**
2920
+ * UNSTABLE
2921
+ * @type {Array<string>}
2922
+ * @memberof NaomiHauteV1Input
2923
+ */
2924
+ 'loraIds'?: Array<string>;
2925
+ /**
2926
+ *
2927
+ * @type {string}
2928
+ * @memberof NaomiHauteV1Input
2929
+ */
2930
+ 'prompt': string;
2931
+ /**
2932
+ *
2933
+ * @type {string}
2934
+ * @memberof NaomiHauteV1Input
2935
+ */
2936
+ 'category': string;
2937
+ /**
2938
+ *
2939
+ * @type {string}
2940
+ * @memberof NaomiHauteV1Input
2941
+ */
2942
+ 'garmentImageId': string;
2943
+ /**
2944
+ *
2945
+ * @type {string}
2946
+ * @memberof NaomiHauteV1Input
2947
+ */
2948
+ 'poseId': string;
2949
+ /**
2950
+ *
2951
+ * @type {number}
2952
+ * @memberof NaomiHauteV1Input
2953
+ */
2954
+ 'seed': number;
2556
2955
  /**
2557
2956
  *
2558
2957
  * @type {number}
@@ -2644,7 +3043,7 @@ export interface NegateImageV1Response {
2644
3043
  * @type {OperationOutputImageSingle}
2645
3044
  * @memberof NegateImageV1Response
2646
3045
  */
2647
- 'output': OperationOutputImageSingle | null;
3046
+ 'output': OperationOutputImageSingle;
2648
3047
  /**
2649
3048
  *
2650
3049
  * @type {object}
@@ -2765,7 +3164,7 @@ export interface NoiseV1Response {
2765
3164
  * @type {OperationOutputImageSingle}
2766
3165
  * @memberof NoiseV1Response
2767
3166
  */
2768
- 'output': OperationOutputImageSingle | null;
3167
+ 'output': OperationOutputImageSingle;
2769
3168
  /**
2770
3169
  *
2771
3170
  * @type {object}
@@ -2880,7 +3279,7 @@ export interface ObjectDetectionV1Response {
2880
3279
  * @type {OperationOutputJSON}
2881
3280
  * @memberof ObjectDetectionV1Response
2882
3281
  */
2883
- 'output': OperationOutputJSON | null;
3282
+ 'output': OperationOutputJSON;
2884
3283
  /**
2885
3284
  *
2886
3285
  * @type {object}
@@ -2963,7 +3362,7 @@ export interface OperationEntity {
2963
3362
  * @type {object}
2964
3363
  * @memberof OperationEntity
2965
3364
  */
2966
- 'output': object | null;
3365
+ 'output': object;
2967
3366
  /**
2968
3367
  *
2969
3368
  * @type {string}
@@ -3086,6 +3485,52 @@ export declare const OperationOutputJSONKindEnum: {
3086
3485
  readonly Json: "json";
3087
3486
  };
3088
3487
  export type OperationOutputJSONKindEnum = typeof OperationOutputJSONKindEnum[keyof typeof OperationOutputJSONKindEnum];
3488
+ /**
3489
+ *
3490
+ * @export
3491
+ * @interface OperationOutputTextSingle
3492
+ */
3493
+ export interface OperationOutputTextSingle {
3494
+ /**
3495
+ *
3496
+ * @type {string}
3497
+ * @memberof OperationOutputTextSingle
3498
+ */
3499
+ 'kind': OperationOutputTextSingleKindEnum;
3500
+ /**
3501
+ *
3502
+ * @type {string}
3503
+ * @memberof OperationOutputTextSingle
3504
+ */
3505
+ 'text': string;
3506
+ }
3507
+ export declare const OperationOutputTextSingleKindEnum: {
3508
+ readonly TextSingle: "text/single";
3509
+ };
3510
+ export type OperationOutputTextSingleKindEnum = typeof OperationOutputTextSingleKindEnum[keyof typeof OperationOutputTextSingleKindEnum];
3511
+ /**
3512
+ *
3513
+ * @export
3514
+ * @interface OperationOutputVideoSingle
3515
+ */
3516
+ export interface OperationOutputVideoSingle {
3517
+ /**
3518
+ *
3519
+ * @type {string}
3520
+ * @memberof OperationOutputVideoSingle
3521
+ */
3522
+ 'kind': OperationOutputVideoSingleKindEnum;
3523
+ /**
3524
+ *
3525
+ * @type {string}
3526
+ * @memberof OperationOutputVideoSingle
3527
+ */
3528
+ 'videoId': string;
3529
+ }
3530
+ export declare const OperationOutputVideoSingleKindEnum: {
3531
+ readonly VideoSingle: "video/single";
3532
+ };
3533
+ export type OperationOutputVideoSingleKindEnum = typeof OperationOutputVideoSingleKindEnum[keyof typeof OperationOutputVideoSingleKindEnum];
3089
3534
  /**
3090
3535
  *
3091
3536
  * @export
@@ -3151,6 +3596,77 @@ export declare const PipelineEntityStatusEnum: {
3151
3596
  readonly Failed: "failed";
3152
3597
  };
3153
3598
  export type PipelineEntityStatusEnum = typeof PipelineEntityStatusEnum[keyof typeof PipelineEntityStatusEnum];
3599
+ /**
3600
+ *
3601
+ * @export
3602
+ * @interface PipelineWithOutput
3603
+ */
3604
+ export interface PipelineWithOutput {
3605
+ /**
3606
+ *
3607
+ * @type {string}
3608
+ * @memberof PipelineWithOutput
3609
+ */
3610
+ 'kind': PipelineWithOutputKindEnum;
3611
+ /**
3612
+ *
3613
+ * @type {object}
3614
+ * @memberof PipelineWithOutput
3615
+ */
3616
+ 'output': object | null;
3617
+ /**
3618
+ *
3619
+ * @type {object}
3620
+ * @memberof PipelineWithOutput
3621
+ */
3622
+ 'permissions': object;
3623
+ /**
3624
+ *
3625
+ * @type {string}
3626
+ * @memberof PipelineWithOutput
3627
+ */
3628
+ 'status': PipelineWithOutputStatusEnum;
3629
+ /**
3630
+ *
3631
+ * @type {string}
3632
+ * @memberof PipelineWithOutput
3633
+ */
3634
+ 'id': string;
3635
+ /**
3636
+ *
3637
+ * @type {string}
3638
+ * @memberof PipelineWithOutput
3639
+ */
3640
+ 'creatorId': string;
3641
+ /**
3642
+ *
3643
+ * @type {object}
3644
+ * @memberof PipelineWithOutput
3645
+ */
3646
+ 'metadata': object;
3647
+ /**
3648
+ *
3649
+ * @type {string}
3650
+ * @memberof PipelineWithOutput
3651
+ */
3652
+ 'createdAt': string;
3653
+ /**
3654
+ *
3655
+ * @type {string}
3656
+ * @memberof PipelineWithOutput
3657
+ */
3658
+ 'updatedAt': string;
3659
+ }
3660
+ export declare const PipelineWithOutputKindEnum: {
3661
+ readonly Pipeline: "pipeline";
3662
+ };
3663
+ export type PipelineWithOutputKindEnum = typeof PipelineWithOutputKindEnum[keyof typeof PipelineWithOutputKindEnum];
3664
+ export declare const PipelineWithOutputStatusEnum: {
3665
+ readonly Pending: "pending";
3666
+ readonly Completed: "completed";
3667
+ readonly Failed: "failed";
3668
+ };
3669
+ export type PipelineWithOutputStatusEnum = typeof PipelineWithOutputStatusEnum[keyof typeof PipelineWithOutputStatusEnum];
3154
3670
  /**
3155
3671
  *
3156
3672
  * @export
@@ -3265,7 +3781,7 @@ export interface PoseEstimationV1Response {
3265
3781
  * @type {OperationOutputJSON}
3266
3782
  * @memberof PoseEstimationV1Response
3267
3783
  */
3268
- 'output': OperationOutputJSON | null;
3784
+ 'output': OperationOutputJSON;
3269
3785
  /**
3270
3786
  *
3271
3787
  * @type {object}
@@ -3432,6 +3948,127 @@ export interface RemoveItemsFromStackParamsDto {
3432
3948
  */
3433
3949
  'itemIds': Array<string>;
3434
3950
  }
3951
+ /**
3952
+ *
3953
+ * @export
3954
+ * @interface ResizeV1Input
3955
+ */
3956
+ export interface ResizeV1Input {
3957
+ /**
3958
+ *
3959
+ * @type {string}
3960
+ * @memberof ResizeV1Input
3961
+ */
3962
+ 'imageId': string;
3963
+ /**
3964
+ *
3965
+ * @type {number}
3966
+ * @memberof ResizeV1Input
3967
+ */
3968
+ 'width': number;
3969
+ /**
3970
+ *
3971
+ * @type {number}
3972
+ * @memberof ResizeV1Input
3973
+ */
3974
+ 'height': number;
3975
+ }
3976
+ /**
3977
+ *
3978
+ * @export
3979
+ * @interface ResizeV1Request
3980
+ */
3981
+ export interface ResizeV1Request {
3982
+ /**
3983
+ *
3984
+ * @type {ResizeV1Input}
3985
+ * @memberof ResizeV1Request
3986
+ */
3987
+ 'input': ResizeV1Input;
3988
+ /**
3989
+ *
3990
+ * @type {object}
3991
+ * @memberof ResizeV1Request
3992
+ */
3993
+ 'metadata'?: object;
3994
+ }
3995
+ /**
3996
+ *
3997
+ * @export
3998
+ * @interface ResizeV1Response
3999
+ */
4000
+ export interface ResizeV1Response {
4001
+ /**
4002
+ *
4003
+ * @type {string}
4004
+ * @memberof ResizeV1Response
4005
+ */
4006
+ 'kind': ResizeV1ResponseKindEnum;
4007
+ /**
4008
+ *
4009
+ * @type {OperationOutputImageSingle}
4010
+ * @memberof ResizeV1Response
4011
+ */
4012
+ 'output': OperationOutputImageSingle;
4013
+ /**
4014
+ *
4015
+ * @type {object}
4016
+ * @memberof ResizeV1Response
4017
+ */
4018
+ 'input': object;
4019
+ /**
4020
+ *
4021
+ * @type {string}
4022
+ * @memberof ResizeV1Response
4023
+ */
4024
+ 'status': ResizeV1ResponseStatusEnum;
4025
+ /**
4026
+ *
4027
+ * @type {string}
4028
+ * @memberof ResizeV1Response
4029
+ */
4030
+ 'type': string;
4031
+ /**
4032
+ *
4033
+ * @type {string}
4034
+ * @memberof ResizeV1Response
4035
+ */
4036
+ 'id': string;
4037
+ /**
4038
+ *
4039
+ * @type {string}
4040
+ * @memberof ResizeV1Response
4041
+ */
4042
+ 'creatorId': string;
4043
+ /**
4044
+ *
4045
+ * @type {object}
4046
+ * @memberof ResizeV1Response
4047
+ */
4048
+ 'metadata': object;
4049
+ /**
4050
+ *
4051
+ * @type {string}
4052
+ * @memberof ResizeV1Response
4053
+ */
4054
+ 'createdAt': string;
4055
+ /**
4056
+ *
4057
+ * @type {string}
4058
+ * @memberof ResizeV1Response
4059
+ */
4060
+ 'updatedAt': string;
4061
+ }
4062
+ export declare const ResizeV1ResponseKindEnum: {
4063
+ readonly Operation: "operation";
4064
+ };
4065
+ export type ResizeV1ResponseKindEnum = typeof ResizeV1ResponseKindEnum[keyof typeof ResizeV1ResponseKindEnum];
4066
+ export declare const ResizeV1ResponseStatusEnum: {
4067
+ readonly Pending: "pending";
4068
+ readonly Finished: "finished";
4069
+ readonly Failed: "failed";
4070
+ };
4071
+ export type ResizeV1ResponseStatusEnum = typeof ResizeV1ResponseStatusEnum[keyof typeof ResizeV1ResponseStatusEnum];
3435
4072
  /**
3436
4073
  *
3437
4074
  * @export
@@ -3480,10 +4117,10 @@ export declare const ResourceEntityKindEnum: {
3480
4117
  readonly Operation: "operation";
3481
4118
  readonly Stack: "stack";
3482
4119
  readonly Image: "image";
4120
+ readonly Video: "video";
3483
4121
  readonly Pose: "pose";
3484
4122
  readonly Storage: "storage";
3485
4123
  readonly Pipeline: "pipeline";
3486
- readonly Forbidden: "forbidden";
3487
4124
  };
3488
4125
  export type ResourceEntityKindEnum = typeof ResourceEntityKindEnum[keyof typeof ResourceEntityKindEnum];
3489
4126
  /**
@@ -3516,6 +4153,38 @@ export declare const RevokeAccessControllerParamsDtoPrincipalTypeEnum: {
3516
4153
  readonly Group: "group";
3517
4154
  };
3518
4155
  export type RevokeAccessControllerParamsDtoPrincipalTypeEnum = typeof RevokeAccessControllerParamsDtoPrincipalTypeEnum[keyof typeof RevokeAccessControllerParamsDtoPrincipalTypeEnum];
4156
+ /**
4157
+ *
4158
+ * @export
4159
+ * @interface RunWorkflowParamsDto
4160
+ */
4161
+ export interface RunWorkflowParamsDto {
4162
+ /**
4163
+ *
4164
+ * @type {object}
4165
+ * @memberof RunWorkflowParamsDto
4166
+ */
4167
+ 'input': object;
4168
+ /**
4169
+ *
4170
+ * @type {object}
4171
+ * @memberof RunWorkflowParamsDto
4172
+ */
4173
+ 'metadata'?: object;
4174
+ }
4175
+ /**
4176
+ *
4177
+ * @export
4178
+ * @interface RunWorkflowResponseDto
4179
+ */
4180
+ export interface RunWorkflowResponseDto {
4181
+ /**
4182
+ *
4183
+ * @type {string}
4184
+ * @memberof RunWorkflowResponseDto
4185
+ */
4186
+ 'pipelineId': string;
4187
+ }
3519
4188
  /**
3520
4189
  *
3521
4190
  * @export
@@ -3565,7 +4234,7 @@ export interface SegmentAnythingEmbeddingsV1Response {
3565
4234
  * @type {OperationOutputJSON}
3566
4235
  * @memberof SegmentAnythingEmbeddingsV1Response
3567
4236
  */
3568
- 'output': OperationOutputJSON | null;
4237
+ 'output': OperationOutputJSON;
3569
4238
  /**
3570
4239
  *
3571
4240
  * @type {object}
@@ -3692,7 +4361,7 @@ export interface SegmentAnythingMaskV1Response {
3692
4361
  * @type {OperationOutputImageSingle}
3693
4362
  * @memberof SegmentAnythingMaskV1Response
3694
4363
  */
3695
- 'output': OperationOutputImageSingle | null;
4364
+ 'output': OperationOutputImageSingle;
3696
4365
  /**
3697
4366
  *
3698
4367
  * @type {object}
@@ -3920,6 +4589,121 @@ export interface StorageRecordsResultDto {
3920
4589
  */
3921
4590
  'value': object;
3922
4591
  }
4592
+ /**
4593
+ *
4594
+ * @export
4595
+ * @interface TranslateV1Input
4596
+ */
4597
+ export interface TranslateV1Input {
4598
+ /**
4599
+ *
4600
+ * @type {string}
4601
+ * @memberof TranslateV1Input
4602
+ */
4603
+ 'text': string;
4604
+ /**
4605
+ *
4606
+ * @type {string}
4607
+ * @memberof TranslateV1Input
4608
+ */
4609
+ 'to': string;
4610
+ }
4611
+ /**
4612
+ *
4613
+ * @export
4614
+ * @interface TranslateV1Request
4615
+ */
4616
+ export interface TranslateV1Request {
4617
+ /**
4618
+ *
4619
+ * @type {TranslateV1Input}
4620
+ * @memberof TranslateV1Request
4621
+ */
4622
+ 'input': TranslateV1Input;
4623
+ /**
4624
+ *
4625
+ * @type {object}
4626
+ * @memberof TranslateV1Request
4627
+ */
4628
+ 'metadata'?: object;
4629
+ }
4630
+ /**
4631
+ *
4632
+ * @export
4633
+ * @interface TranslateV1Response
4634
+ */
4635
+ export interface TranslateV1Response {
4636
+ /**
4637
+ *
4638
+ * @type {string}
4639
+ * @memberof TranslateV1Response
4640
+ */
4641
+ 'kind': TranslateV1ResponseKindEnum;
4642
+ /**
4643
+ *
4644
+ * @type {OperationOutputJSON}
4645
+ * @memberof TranslateV1Response
4646
+ */
4647
+ 'output': OperationOutputJSON;
4648
+ /**
4649
+ *
4650
+ * @type {object}
4651
+ * @memberof TranslateV1Response
4652
+ */
4653
+ 'input': object;
4654
+ /**
4655
+ *
4656
+ * @type {string}
4657
+ * @memberof TranslateV1Response
4658
+ */
4659
+ 'status': TranslateV1ResponseStatusEnum;
4660
+ /**
4661
+ *
4662
+ * @type {string}
4663
+ * @memberof TranslateV1Response
4664
+ */
4665
+ 'type': string;
4666
+ /**
4667
+ *
4668
+ * @type {string}
4669
+ * @memberof TranslateV1Response
4670
+ */
4671
+ 'id': string;
4672
+ /**
4673
+ *
4674
+ * @type {string}
4675
+ * @memberof TranslateV1Response
4676
+ */
4677
+ 'creatorId': string;
4678
+ /**
4679
+ *
4680
+ * @type {object}
4681
+ * @memberof TranslateV1Response
4682
+ */
4683
+ 'metadata': object;
4684
+ /**
4685
+ *
4686
+ * @type {string}
4687
+ * @memberof TranslateV1Response
4688
+ */
4689
+ 'createdAt': string;
4690
+ /**
4691
+ *
4692
+ * @type {string}
4693
+ * @memberof TranslateV1Response
4694
+ */
4695
+ 'updatedAt': string;
4696
+ }
4697
+ export declare const TranslateV1ResponseKindEnum: {
4698
+ readonly Operation: "operation";
4699
+ };
4700
+ export type TranslateV1ResponseKindEnum = typeof TranslateV1ResponseKindEnum[keyof typeof TranslateV1ResponseKindEnum];
4701
+ export declare const TranslateV1ResponseStatusEnum: {
4702
+ readonly Pending: "pending";
4703
+ readonly Finished: "finished";
4704
+ readonly Failed: "failed";
4705
+ };
4706
+ export type TranslateV1ResponseStatusEnum = typeof TranslateV1ResponseStatusEnum[keyof typeof TranslateV1ResponseStatusEnum];
3923
4707
  /**
3924
4708
  *
3925
4709
  * @export
@@ -4020,7 +4804,7 @@ export interface UpscaleV1Response {
4020
4804
  * @type {OperationOutputImageSingle}
4021
4805
  * @memberof UpscaleV1Response
4022
4806
  */
4023
- 'output': OperationOutputImageSingle | null;
4807
+ 'output': OperationOutputImageSingle;
4024
4808
  /**
4025
4809
  *
4026
4810
  * @type {object}
@@ -4080,6 +4864,84 @@ export declare const UpscaleV1ResponseStatusEnum: {
4080
4864
  readonly Failed: "failed";
4081
4865
  };
4082
4866
  export type UpscaleV1ResponseStatusEnum = typeof UpscaleV1ResponseStatusEnum[keyof typeof UpscaleV1ResponseStatusEnum];
4867
+ /**
4868
+ *
4869
+ * @export
4870
+ * @interface VideoEntity
4871
+ */
4872
+ export interface VideoEntity {
4873
+ /**
4874
+ *
4875
+ * @type {string}
4876
+ * @memberof VideoEntity
4877
+ */
4878
+ 'kind': VideoEntityKindEnum;
4879
+ /**
4880
+ *
4881
+ * @type {string}
4882
+ * @memberof VideoEntity
4883
+ */
4884
+ 'id': string;
4885
+ /**
4886
+ *
4887
+ * @type {string}
4888
+ * @memberof VideoEntity
4889
+ */
4890
+ 'creatorId': string;
4891
+ /**
4892
+ *
4893
+ * @type {object}
4894
+ * @memberof VideoEntity
4895
+ */
4896
+ 'metadata': object;
4897
+ /**
4898
+ *
4899
+ * @type {string}
4900
+ * @memberof VideoEntity
4901
+ */
4902
+ 'createdAt': string;
4903
+ /**
4904
+ *
4905
+ * @type {string}
4906
+ * @memberof VideoEntity
4907
+ */
4908
+ 'updatedAt': string;
4909
+ /**
4910
+ *
4911
+ * @type {number}
4912
+ * @memberof VideoEntity
4913
+ */
4914
+ 'width': number;
4915
+ /**
4916
+ *
4917
+ * @type {number}
4918
+ * @memberof VideoEntity
4919
+ */
4920
+ 'height': number;
4921
+ /**
4922
+ *
4923
+ * @type {number}
4924
+ * @memberof VideoEntity
4925
+ */
4926
+ 'duration': number;
4927
+ /**
4928
+ *
4929
+ * @type {string}
4930
+ * @memberof VideoEntity
4931
+ */
4932
+ 'url': string;
4933
+ }
4934
+ export declare const VideoEntityKindEnum: {
4935
+ readonly Collection: "collection";
4936
+ readonly Operation: "operation";
4937
+ readonly Stack: "stack";
4938
+ readonly Image: "image";
4939
+ readonly Video: "video";
4940
+ readonly Pose: "pose";
4941
+ readonly Storage: "storage";
4942
+ readonly Pipeline: "pipeline";
4943
+ };
4944
+ export type VideoEntityKindEnum = typeof VideoEntityKindEnum[keyof typeof VideoEntityKindEnum];
4083
4945
  /**
4084
4946
  *
4085
4947
  * @export
@@ -4116,7 +4978,7 @@ export interface VtonGiseleV1Response {
4116
4978
  * @type {OperationOutputImageSingle}
4117
4979
  * @memberof VtonGiseleV1Response
4118
4980
  */
4119
- 'output': OperationOutputImageSingle | null;
4981
+ 'output': OperationOutputImageSingle;
4120
4982
  /**
4121
4983
  *
4122
4984
  * @type {object}
@@ -4877,6 +5739,13 @@ export declare const CallApiAxiosParamCreator: (configuration?: Configuration) =
4877
5739
  * @throws {RequiredError}
4878
5740
  */
4879
5741
  callControllerCallOperationsMetadataUpdateV1: (updateResourceMetadataDto: UpdateResourceMetadataDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5742
+ /**
5743
+ *
5744
+ * @param {AnimateKling16ProV1Request} animateKling16ProV1Request
5745
+ * @param {*} [options] Override http request option.
5746
+ * @throws {RequiredError}
5747
+ */
5748
+ callControllerCallOperationsRunAnimateKling16ProV1V1: (animateKling16ProV1Request: AnimateKling16ProV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4880
5749
  /**
4881
5750
  *
4882
5751
  * @param {CompositeV1Request} compositeV1Request
@@ -4905,6 +5774,13 @@ export declare const CallApiAxiosParamCreator: (configuration?: Configuration) =
4905
5774
  * @throws {RequiredError}
4906
5775
  */
4907
5776
  callControllerCallOperationsRunCutV1V1: (cutV1Request: CutV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5777
+ /**
5778
+ *
5779
+ * @param {EchoV1Request} echoV1Request
5780
+ * @param {*} [options] Override http request option.
5781
+ * @throws {RequiredError}
5782
+ */
5783
+ callControllerCallOperationsRunEchoV1V1: (echoV1Request: EchoV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4908
5784
  /**
4909
5785
  *
4910
5786
  * @param {GptV1Request} gptV1Request
@@ -4940,6 +5816,13 @@ export declare const CallApiAxiosParamCreator: (configuration?: Configuration) =
4940
5816
  * @throws {RequiredError}
4941
5817
  */
4942
5818
  callControllerCallOperationsRunInpaintKateV1V1: (inpaintKateV1Request: InpaintKateV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5819
+ /**
5820
+ *
5821
+ * @param {MathV1Request} mathV1Request
5822
+ * @param {*} [options] Override http request option.
5823
+ * @throws {RequiredError}
5824
+ */
5825
+ callControllerCallOperationsRunMathV1V1: (mathV1Request: MathV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4943
5826
  /**
4944
5827
  *
4945
5828
  * @param {NegateImageV1Request} negateImageV1Request
@@ -4968,6 +5851,13 @@ export declare const CallApiAxiosParamCreator: (configuration?: Configuration) =
4968
5851
  * @throws {RequiredError}
4969
5852
  */
4970
5853
  callControllerCallOperationsRunPoseEstimationV1V1: (poseEstimationV1Request: PoseEstimationV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5854
+ /**
5855
+ *
5856
+ * @param {ResizeV1Request} resizeV1Request
5857
+ * @param {*} [options] Override http request option.
5858
+ * @throws {RequiredError}
5859
+ */
5860
+ callControllerCallOperationsRunResizeV1V1: (resizeV1Request: ResizeV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4971
5861
  /**
4972
5862
  *
4973
5863
  * @param {SegmentAnythingEmbeddingsV1Request} segmentAnythingEmbeddingsV1Request
@@ -4982,6 +5872,13 @@ export declare const CallApiAxiosParamCreator: (configuration?: Configuration) =
4982
5872
  * @throws {RequiredError}
4983
5873
  */
4984
5874
  callControllerCallOperationsRunSegmentAnythingMaskV1V1: (segmentAnythingMaskV1Request: SegmentAnythingMaskV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5875
+ /**
5876
+ *
5877
+ * @param {TranslateV1Request} translateV1Request
5878
+ * @param {*} [options] Override http request option.
5879
+ * @throws {RequiredError}
5880
+ */
5881
+ callControllerCallOperationsRunTranslateV1V1: (translateV1Request: TranslateV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4985
5882
  /**
4986
5883
  *
4987
5884
  * @param {UpscaleV1Request} upscaleV1Request
@@ -5017,6 +5914,13 @@ export declare const CallApiAxiosParamCreator: (configuration?: Configuration) =
5017
5914
  * @throws {RequiredError}
5018
5915
  */
5019
5916
  callControllerCallPosesListV1: (listPosesParamsDto: ListPosesParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5917
+ /**
5918
+ *
5919
+ * @param {UpdateResourceMetadataDto} updateResourceMetadataDto
5920
+ * @param {*} [options] Override http request option.
5921
+ * @throws {RequiredError}
5922
+ */
5923
+ callControllerCallPosesMetadataUpdateV1: (updateResourceMetadataDto: UpdateResourceMetadataDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5020
5924
  /**
5021
5925
  *
5022
5926
  * @param {SetPosePreviewDto} setPosePreviewDto
@@ -5296,6 +6200,13 @@ export declare const CallApiFp: (configuration?: Configuration) => {
5296
6200
  * @throws {RequiredError}
5297
6201
  */
5298
6202
  callControllerCallOperationsMetadataUpdateV1(updateResourceMetadataDto: UpdateResourceMetadataDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
6203
+ /**
6204
+ *
6205
+ * @param {AnimateKling16ProV1Request} animateKling16ProV1Request
6206
+ * @param {*} [options] Override http request option.
6207
+ * @throws {RequiredError}
6208
+ */
6209
+ callControllerCallOperationsRunAnimateKling16ProV1V1(animateKling16ProV1Request: AnimateKling16ProV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AnimateKling16ProV1Response>>;
5299
6210
  /**
5300
6211
  *
5301
6212
  * @param {CompositeV1Request} compositeV1Request
@@ -5324,6 +6235,13 @@ export declare const CallApiFp: (configuration?: Configuration) => {
5324
6235
  * @throws {RequiredError}
5325
6236
  */
5326
6237
  callControllerCallOperationsRunCutV1V1(cutV1Request: CutV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CutV1Response>>;
6238
+ /**
6239
+ *
6240
+ * @param {EchoV1Request} echoV1Request
6241
+ * @param {*} [options] Override http request option.
6242
+ * @throws {RequiredError}
6243
+ */
6244
+ callControllerCallOperationsRunEchoV1V1(echoV1Request: EchoV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EchoV1Response>>;
5327
6245
  /**
5328
6246
  *
5329
6247
  * @param {GptV1Request} gptV1Request
@@ -5359,6 +6277,13 @@ export declare const CallApiFp: (configuration?: Configuration) => {
5359
6277
  * @throws {RequiredError}
5360
6278
  */
5361
6279
  callControllerCallOperationsRunInpaintKateV1V1(inpaintKateV1Request: InpaintKateV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InpaintKateV1Response>>;
6280
+ /**
6281
+ *
6282
+ * @param {MathV1Request} mathV1Request
6283
+ * @param {*} [options] Override http request option.
6284
+ * @throws {RequiredError}
6285
+ */
6286
+ callControllerCallOperationsRunMathV1V1(mathV1Request: MathV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MathV1Response>>;
5362
6287
  /**
5363
6288
  *
5364
6289
  * @param {NegateImageV1Request} negateImageV1Request
@@ -5387,6 +6312,13 @@ export declare const CallApiFp: (configuration?: Configuration) => {
5387
6312
  * @throws {RequiredError}
5388
6313
  */
5389
6314
  callControllerCallOperationsRunPoseEstimationV1V1(poseEstimationV1Request: PoseEstimationV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PoseEstimationV1Response>>;
6315
+ /**
6316
+ *
6317
+ * @param {ResizeV1Request} resizeV1Request
6318
+ * @param {*} [options] Override http request option.
6319
+ * @throws {RequiredError}
6320
+ */
6321
+ callControllerCallOperationsRunResizeV1V1(resizeV1Request: ResizeV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ResizeV1Response>>;
5390
6322
  /**
5391
6323
  *
5392
6324
  * @param {SegmentAnythingEmbeddingsV1Request} segmentAnythingEmbeddingsV1Request
@@ -5401,6 +6333,13 @@ export declare const CallApiFp: (configuration?: Configuration) => {
5401
6333
  * @throws {RequiredError}
5402
6334
  */
5403
6335
  callControllerCallOperationsRunSegmentAnythingMaskV1V1(segmentAnythingMaskV1Request: SegmentAnythingMaskV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SegmentAnythingMaskV1Response>>;
6336
+ /**
6337
+ *
6338
+ * @param {TranslateV1Request} translateV1Request
6339
+ * @param {*} [options] Override http request option.
6340
+ * @throws {RequiredError}
6341
+ */
6342
+ callControllerCallOperationsRunTranslateV1V1(translateV1Request: TranslateV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TranslateV1Response>>;
5404
6343
  /**
5405
6344
  *
5406
6345
  * @param {UpscaleV1Request} upscaleV1Request
@@ -5436,6 +6375,13 @@ export declare const CallApiFp: (configuration?: Configuration) => {
5436
6375
  * @throws {RequiredError}
5437
6376
  */
5438
6377
  callControllerCallPosesListV1(listPosesParamsDto: ListPosesParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListPosesDto>>;
6378
+ /**
6379
+ *
6380
+ * @param {UpdateResourceMetadataDto} updateResourceMetadataDto
6381
+ * @param {*} [options] Override http request option.
6382
+ * @throws {RequiredError}
6383
+ */
6384
+ callControllerCallPosesMetadataUpdateV1(updateResourceMetadataDto: UpdateResourceMetadataDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
5439
6385
  /**
5440
6386
  *
5441
6387
  * @param {SetPosePreviewDto} setPosePreviewDto
@@ -5715,6 +6661,13 @@ export declare const CallApiFactory: (configuration?: Configuration, basePath?:
5715
6661
  * @throws {RequiredError}
5716
6662
  */
5717
6663
  callControllerCallOperationsMetadataUpdateV1(updateResourceMetadataDto: UpdateResourceMetadataDto, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
6664
+ /**
6665
+ *
6666
+ * @param {AnimateKling16ProV1Request} animateKling16ProV1Request
6667
+ * @param {*} [options] Override http request option.
6668
+ * @throws {RequiredError}
6669
+ */
6670
+ callControllerCallOperationsRunAnimateKling16ProV1V1(animateKling16ProV1Request: AnimateKling16ProV1Request, options?: RawAxiosRequestConfig): AxiosPromise<AnimateKling16ProV1Response>;
5718
6671
  /**
5719
6672
  *
5720
6673
  * @param {CompositeV1Request} compositeV1Request
@@ -5743,6 +6696,13 @@ export declare const CallApiFactory: (configuration?: Configuration, basePath?:
5743
6696
  * @throws {RequiredError}
5744
6697
  */
5745
6698
  callControllerCallOperationsRunCutV1V1(cutV1Request: CutV1Request, options?: RawAxiosRequestConfig): AxiosPromise<CutV1Response>;
6699
+ /**
6700
+ *
6701
+ * @param {EchoV1Request} echoV1Request
6702
+ * @param {*} [options] Override http request option.
6703
+ * @throws {RequiredError}
6704
+ */
6705
+ callControllerCallOperationsRunEchoV1V1(echoV1Request: EchoV1Request, options?: RawAxiosRequestConfig): AxiosPromise<EchoV1Response>;
5746
6706
  /**
5747
6707
  *
5748
6708
  * @param {GptV1Request} gptV1Request
@@ -5778,6 +6738,13 @@ export declare const CallApiFactory: (configuration?: Configuration, basePath?:
5778
6738
  * @throws {RequiredError}
5779
6739
  */
5780
6740
  callControllerCallOperationsRunInpaintKateV1V1(inpaintKateV1Request: InpaintKateV1Request, options?: RawAxiosRequestConfig): AxiosPromise<InpaintKateV1Response>;
6741
+ /**
6742
+ *
6743
+ * @param {MathV1Request} mathV1Request
6744
+ * @param {*} [options] Override http request option.
6745
+ * @throws {RequiredError}
6746
+ */
6747
+ callControllerCallOperationsRunMathV1V1(mathV1Request: MathV1Request, options?: RawAxiosRequestConfig): AxiosPromise<MathV1Response>;
5781
6748
  /**
5782
6749
  *
5783
6750
  * @param {NegateImageV1Request} negateImageV1Request
@@ -5805,7 +6772,14 @@ export declare const CallApiFactory: (configuration?: Configuration, basePath?:
5805
6772
  * @param {*} [options] Override http request option.
5806
6773
  * @throws {RequiredError}
5807
6774
  */
5808
- callControllerCallOperationsRunPoseEstimationV1V1(poseEstimationV1Request: PoseEstimationV1Request, options?: RawAxiosRequestConfig): AxiosPromise<PoseEstimationV1Response>;
6775
+ callControllerCallOperationsRunPoseEstimationV1V1(poseEstimationV1Request: PoseEstimationV1Request, options?: RawAxiosRequestConfig): AxiosPromise<PoseEstimationV1Response>;
6776
+ /**
6777
+ *
6778
+ * @param {ResizeV1Request} resizeV1Request
6779
+ * @param {*} [options] Override http request option.
6780
+ * @throws {RequiredError}
6781
+ */
6782
+ callControllerCallOperationsRunResizeV1V1(resizeV1Request: ResizeV1Request, options?: RawAxiosRequestConfig): AxiosPromise<ResizeV1Response>;
5809
6783
  /**
5810
6784
  *
5811
6785
  * @param {SegmentAnythingEmbeddingsV1Request} segmentAnythingEmbeddingsV1Request
@@ -5820,6 +6794,13 @@ export declare const CallApiFactory: (configuration?: Configuration, basePath?:
5820
6794
  * @throws {RequiredError}
5821
6795
  */
5822
6796
  callControllerCallOperationsRunSegmentAnythingMaskV1V1(segmentAnythingMaskV1Request: SegmentAnythingMaskV1Request, options?: RawAxiosRequestConfig): AxiosPromise<SegmentAnythingMaskV1Response>;
6797
+ /**
6798
+ *
6799
+ * @param {TranslateV1Request} translateV1Request
6800
+ * @param {*} [options] Override http request option.
6801
+ * @throws {RequiredError}
6802
+ */
6803
+ callControllerCallOperationsRunTranslateV1V1(translateV1Request: TranslateV1Request, options?: RawAxiosRequestConfig): AxiosPromise<TranslateV1Response>;
5823
6804
  /**
5824
6805
  *
5825
6806
  * @param {UpscaleV1Request} upscaleV1Request
@@ -5855,6 +6836,13 @@ export declare const CallApiFactory: (configuration?: Configuration, basePath?:
5855
6836
  * @throws {RequiredError}
5856
6837
  */
5857
6838
  callControllerCallPosesListV1(listPosesParamsDto: ListPosesParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<ListPosesDto>;
6839
+ /**
6840
+ *
6841
+ * @param {UpdateResourceMetadataDto} updateResourceMetadataDto
6842
+ * @param {*} [options] Override http request option.
6843
+ * @throws {RequiredError}
6844
+ */
6845
+ callControllerCallPosesMetadataUpdateV1(updateResourceMetadataDto: UpdateResourceMetadataDto, options?: RawAxiosRequestConfig): AxiosPromise<void>;
5858
6846
  /**
5859
6847
  *
5860
6848
  * @param {SetPosePreviewDto} setPosePreviewDto
@@ -6164,6 +7152,14 @@ export declare class CallApi extends BaseAPI {
6164
7152
  * @memberof CallApi
6165
7153
  */
6166
7154
  callControllerCallOperationsMetadataUpdateV1(updateResourceMetadataDto: UpdateResourceMetadataDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
7155
+ /**
7156
+ *
7157
+ * @param {AnimateKling16ProV1Request} animateKling16ProV1Request
7158
+ * @param {*} [options] Override http request option.
7159
+ * @throws {RequiredError}
7160
+ * @memberof CallApi
7161
+ */
7162
+ callControllerCallOperationsRunAnimateKling16ProV1V1(animateKling16ProV1Request: AnimateKling16ProV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AnimateKling16ProV1Response, any>>;
6167
7163
  /**
6168
7164
  *
6169
7165
  * @param {CompositeV1Request} compositeV1Request
@@ -6196,6 +7192,14 @@ export declare class CallApi extends BaseAPI {
6196
7192
  * @memberof CallApi
6197
7193
  */
6198
7194
  callControllerCallOperationsRunCutV1V1(cutV1Request: CutV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CutV1Response, any>>;
7195
+ /**
7196
+ *
7197
+ * @param {EchoV1Request} echoV1Request
7198
+ * @param {*} [options] Override http request option.
7199
+ * @throws {RequiredError}
7200
+ * @memberof CallApi
7201
+ */
7202
+ callControllerCallOperationsRunEchoV1V1(echoV1Request: EchoV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EchoV1Response, any>>;
6199
7203
  /**
6200
7204
  *
6201
7205
  * @param {GptV1Request} gptV1Request
@@ -6236,6 +7240,14 @@ export declare class CallApi extends BaseAPI {
6236
7240
  * @memberof CallApi
6237
7241
  */
6238
7242
  callControllerCallOperationsRunInpaintKateV1V1(inpaintKateV1Request: InpaintKateV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InpaintKateV1Response, any>>;
7243
+ /**
7244
+ *
7245
+ * @param {MathV1Request} mathV1Request
7246
+ * @param {*} [options] Override http request option.
7247
+ * @throws {RequiredError}
7248
+ * @memberof CallApi
7249
+ */
7250
+ callControllerCallOperationsRunMathV1V1(mathV1Request: MathV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MathV1Response, any>>;
6239
7251
  /**
6240
7252
  *
6241
7253
  * @param {NegateImageV1Request} negateImageV1Request
@@ -6268,6 +7280,14 @@ export declare class CallApi extends BaseAPI {
6268
7280
  * @memberof CallApi
6269
7281
  */
6270
7282
  callControllerCallOperationsRunPoseEstimationV1V1(poseEstimationV1Request: PoseEstimationV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PoseEstimationV1Response, any>>;
7283
+ /**
7284
+ *
7285
+ * @param {ResizeV1Request} resizeV1Request
7286
+ * @param {*} [options] Override http request option.
7287
+ * @throws {RequiredError}
7288
+ * @memberof CallApi
7289
+ */
7290
+ callControllerCallOperationsRunResizeV1V1(resizeV1Request: ResizeV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ResizeV1Response, any>>;
6271
7291
  /**
6272
7292
  *
6273
7293
  * @param {SegmentAnythingEmbeddingsV1Request} segmentAnythingEmbeddingsV1Request
@@ -6284,6 +7304,14 @@ export declare class CallApi extends BaseAPI {
6284
7304
  * @memberof CallApi
6285
7305
  */
6286
7306
  callControllerCallOperationsRunSegmentAnythingMaskV1V1(segmentAnythingMaskV1Request: SegmentAnythingMaskV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SegmentAnythingMaskV1Response, any>>;
7307
+ /**
7308
+ *
7309
+ * @param {TranslateV1Request} translateV1Request
7310
+ * @param {*} [options] Override http request option.
7311
+ * @throws {RequiredError}
7312
+ * @memberof CallApi
7313
+ */
7314
+ callControllerCallOperationsRunTranslateV1V1(translateV1Request: TranslateV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TranslateV1Response, any>>;
6287
7315
  /**
6288
7316
  *
6289
7317
  * @param {UpscaleV1Request} upscaleV1Request
@@ -6324,6 +7352,14 @@ export declare class CallApi extends BaseAPI {
6324
7352
  * @memberof CallApi
6325
7353
  */
6326
7354
  callControllerCallPosesListV1(listPosesParamsDto: ListPosesParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListPosesDto, any>>;
7355
+ /**
7356
+ *
7357
+ * @param {UpdateResourceMetadataDto} updateResourceMetadataDto
7358
+ * @param {*} [options] Override http request option.
7359
+ * @throws {RequiredError}
7360
+ * @memberof CallApi
7361
+ */
7362
+ callControllerCallPosesMetadataUpdateV1(updateResourceMetadataDto: UpdateResourceMetadataDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
6327
7363
  /**
6328
7364
  *
6329
7365
  * @param {SetPosePreviewDto} setPosePreviewDto
@@ -6706,10 +7742,10 @@ export declare const CollectionsControllerListItemsV1KindEnum: {
6706
7742
  readonly Operation: "operation";
6707
7743
  readonly Stack: "stack";
6708
7744
  readonly Image: "image";
7745
+ readonly Video: "video";
6709
7746
  readonly Pose: "pose";
6710
7747
  readonly Storage: "storage";
6711
7748
  readonly Pipeline: "pipeline";
6712
- readonly Forbidden: "forbidden";
6713
7749
  };
6714
7750
  export type CollectionsControllerListItemsV1KindEnum = typeof CollectionsControllerListItemsV1KindEnum[keyof typeof CollectionsControllerListItemsV1KindEnum];
6715
7751
  /**
@@ -7086,6 +8122,13 @@ export declare const OperationsApiAxiosParamCreator: (configuration?: Configurat
7086
8122
  * @throws {RequiredError}
7087
8123
  */
7088
8124
  operationsControllerListOperationsV1: (orderBy?: OperationsControllerListOperationsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8125
+ /**
8126
+ *
8127
+ * @param {AnimateKling16ProV1Request} animateKling16ProV1Request
8128
+ * @param {*} [options] Override http request option.
8129
+ * @throws {RequiredError}
8130
+ */
8131
+ operationsControllerRunAnimateKling16ProV1V1: (animateKling16ProV1Request: AnimateKling16ProV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7089
8132
  /**
7090
8133
  *
7091
8134
  * @param {CompositeV1Request} compositeV1Request
@@ -7114,6 +8157,13 @@ export declare const OperationsApiAxiosParamCreator: (configuration?: Configurat
7114
8157
  * @throws {RequiredError}
7115
8158
  */
7116
8159
  operationsControllerRunCutV1V1: (cutV1Request: CutV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8160
+ /**
8161
+ *
8162
+ * @param {EchoV1Request} echoV1Request
8163
+ * @param {*} [options] Override http request option.
8164
+ * @throws {RequiredError}
8165
+ */
8166
+ operationsControllerRunEchoV1V1: (echoV1Request: EchoV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7117
8167
  /**
7118
8168
  *
7119
8169
  * @param {GptV1Request} gptV1Request
@@ -7149,6 +8199,13 @@ export declare const OperationsApiAxiosParamCreator: (configuration?: Configurat
7149
8199
  * @throws {RequiredError}
7150
8200
  */
7151
8201
  operationsControllerRunInpaintKateV1V1: (inpaintKateV1Request: InpaintKateV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8202
+ /**
8203
+ *
8204
+ * @param {MathV1Request} mathV1Request
8205
+ * @param {*} [options] Override http request option.
8206
+ * @throws {RequiredError}
8207
+ */
8208
+ operationsControllerRunMathV1V1: (mathV1Request: MathV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7152
8209
  /**
7153
8210
  *
7154
8211
  * @param {NegateImageV1Request} negateImageV1Request
@@ -7177,6 +8234,13 @@ export declare const OperationsApiAxiosParamCreator: (configuration?: Configurat
7177
8234
  * @throws {RequiredError}
7178
8235
  */
7179
8236
  operationsControllerRunPoseEstimationV1V1: (poseEstimationV1Request: PoseEstimationV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8237
+ /**
8238
+ *
8239
+ * @param {ResizeV1Request} resizeV1Request
8240
+ * @param {*} [options] Override http request option.
8241
+ * @throws {RequiredError}
8242
+ */
8243
+ operationsControllerRunResizeV1V1: (resizeV1Request: ResizeV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7180
8244
  /**
7181
8245
  *
7182
8246
  * @param {SegmentAnythingEmbeddingsV1Request} segmentAnythingEmbeddingsV1Request
@@ -7191,6 +8255,13 @@ export declare const OperationsApiAxiosParamCreator: (configuration?: Configurat
7191
8255
  * @throws {RequiredError}
7192
8256
  */
7193
8257
  operationsControllerRunSegmentAnythingMaskV1V1: (segmentAnythingMaskV1Request: SegmentAnythingMaskV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8258
+ /**
8259
+ *
8260
+ * @param {TranslateV1Request} translateV1Request
8261
+ * @param {*} [options] Override http request option.
8262
+ * @throws {RequiredError}
8263
+ */
8264
+ operationsControllerRunTranslateV1V1: (translateV1Request: TranslateV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7194
8265
  /**
7195
8266
  *
7196
8267
  * @param {UpscaleV1Request} upscaleV1Request
@@ -7242,6 +8313,13 @@ export declare const OperationsApiFp: (configuration?: Configuration) => {
7242
8313
  * @throws {RequiredError}
7243
8314
  */
7244
8315
  operationsControllerListOperationsV1(orderBy?: OperationsControllerListOperationsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListOperationsDto>>;
8316
+ /**
8317
+ *
8318
+ * @param {AnimateKling16ProV1Request} animateKling16ProV1Request
8319
+ * @param {*} [options] Override http request option.
8320
+ * @throws {RequiredError}
8321
+ */
8322
+ operationsControllerRunAnimateKling16ProV1V1(animateKling16ProV1Request: AnimateKling16ProV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AnimateKling16ProV1Response>>;
7245
8323
  /**
7246
8324
  *
7247
8325
  * @param {CompositeV1Request} compositeV1Request
@@ -7270,6 +8348,13 @@ export declare const OperationsApiFp: (configuration?: Configuration) => {
7270
8348
  * @throws {RequiredError}
7271
8349
  */
7272
8350
  operationsControllerRunCutV1V1(cutV1Request: CutV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CutV1Response>>;
8351
+ /**
8352
+ *
8353
+ * @param {EchoV1Request} echoV1Request
8354
+ * @param {*} [options] Override http request option.
8355
+ * @throws {RequiredError}
8356
+ */
8357
+ operationsControllerRunEchoV1V1(echoV1Request: EchoV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EchoV1Response>>;
7273
8358
  /**
7274
8359
  *
7275
8360
  * @param {GptV1Request} gptV1Request
@@ -7305,6 +8390,13 @@ export declare const OperationsApiFp: (configuration?: Configuration) => {
7305
8390
  * @throws {RequiredError}
7306
8391
  */
7307
8392
  operationsControllerRunInpaintKateV1V1(inpaintKateV1Request: InpaintKateV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InpaintKateV1Response>>;
8393
+ /**
8394
+ *
8395
+ * @param {MathV1Request} mathV1Request
8396
+ * @param {*} [options] Override http request option.
8397
+ * @throws {RequiredError}
8398
+ */
8399
+ operationsControllerRunMathV1V1(mathV1Request: MathV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MathV1Response>>;
7308
8400
  /**
7309
8401
  *
7310
8402
  * @param {NegateImageV1Request} negateImageV1Request
@@ -7333,6 +8425,13 @@ export declare const OperationsApiFp: (configuration?: Configuration) => {
7333
8425
  * @throws {RequiredError}
7334
8426
  */
7335
8427
  operationsControllerRunPoseEstimationV1V1(poseEstimationV1Request: PoseEstimationV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PoseEstimationV1Response>>;
8428
+ /**
8429
+ *
8430
+ * @param {ResizeV1Request} resizeV1Request
8431
+ * @param {*} [options] Override http request option.
8432
+ * @throws {RequiredError}
8433
+ */
8434
+ operationsControllerRunResizeV1V1(resizeV1Request: ResizeV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ResizeV1Response>>;
7336
8435
  /**
7337
8436
  *
7338
8437
  * @param {SegmentAnythingEmbeddingsV1Request} segmentAnythingEmbeddingsV1Request
@@ -7347,6 +8446,13 @@ export declare const OperationsApiFp: (configuration?: Configuration) => {
7347
8446
  * @throws {RequiredError}
7348
8447
  */
7349
8448
  operationsControllerRunSegmentAnythingMaskV1V1(segmentAnythingMaskV1Request: SegmentAnythingMaskV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SegmentAnythingMaskV1Response>>;
8449
+ /**
8450
+ *
8451
+ * @param {TranslateV1Request} translateV1Request
8452
+ * @param {*} [options] Override http request option.
8453
+ * @throws {RequiredError}
8454
+ */
8455
+ operationsControllerRunTranslateV1V1(translateV1Request: TranslateV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TranslateV1Response>>;
7350
8456
  /**
7351
8457
  *
7352
8458
  * @param {UpscaleV1Request} upscaleV1Request
@@ -7398,6 +8504,13 @@ export declare const OperationsApiFactory: (configuration?: Configuration, baseP
7398
8504
  * @throws {RequiredError}
7399
8505
  */
7400
8506
  operationsControllerListOperationsV1(orderBy?: OperationsControllerListOperationsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListOperationsDto>;
8507
+ /**
8508
+ *
8509
+ * @param {AnimateKling16ProV1Request} animateKling16ProV1Request
8510
+ * @param {*} [options] Override http request option.
8511
+ * @throws {RequiredError}
8512
+ */
8513
+ operationsControllerRunAnimateKling16ProV1V1(animateKling16ProV1Request: AnimateKling16ProV1Request, options?: RawAxiosRequestConfig): AxiosPromise<AnimateKling16ProV1Response>;
7401
8514
  /**
7402
8515
  *
7403
8516
  * @param {CompositeV1Request} compositeV1Request
@@ -7426,6 +8539,13 @@ export declare const OperationsApiFactory: (configuration?: Configuration, baseP
7426
8539
  * @throws {RequiredError}
7427
8540
  */
7428
8541
  operationsControllerRunCutV1V1(cutV1Request: CutV1Request, options?: RawAxiosRequestConfig): AxiosPromise<CutV1Response>;
8542
+ /**
8543
+ *
8544
+ * @param {EchoV1Request} echoV1Request
8545
+ * @param {*} [options] Override http request option.
8546
+ * @throws {RequiredError}
8547
+ */
8548
+ operationsControllerRunEchoV1V1(echoV1Request: EchoV1Request, options?: RawAxiosRequestConfig): AxiosPromise<EchoV1Response>;
7429
8549
  /**
7430
8550
  *
7431
8551
  * @param {GptV1Request} gptV1Request
@@ -7461,6 +8581,13 @@ export declare const OperationsApiFactory: (configuration?: Configuration, baseP
7461
8581
  * @throws {RequiredError}
7462
8582
  */
7463
8583
  operationsControllerRunInpaintKateV1V1(inpaintKateV1Request: InpaintKateV1Request, options?: RawAxiosRequestConfig): AxiosPromise<InpaintKateV1Response>;
8584
+ /**
8585
+ *
8586
+ * @param {MathV1Request} mathV1Request
8587
+ * @param {*} [options] Override http request option.
8588
+ * @throws {RequiredError}
8589
+ */
8590
+ operationsControllerRunMathV1V1(mathV1Request: MathV1Request, options?: RawAxiosRequestConfig): AxiosPromise<MathV1Response>;
7464
8591
  /**
7465
8592
  *
7466
8593
  * @param {NegateImageV1Request} negateImageV1Request
@@ -7489,6 +8616,13 @@ export declare const OperationsApiFactory: (configuration?: Configuration, baseP
7489
8616
  * @throws {RequiredError}
7490
8617
  */
7491
8618
  operationsControllerRunPoseEstimationV1V1(poseEstimationV1Request: PoseEstimationV1Request, options?: RawAxiosRequestConfig): AxiosPromise<PoseEstimationV1Response>;
8619
+ /**
8620
+ *
8621
+ * @param {ResizeV1Request} resizeV1Request
8622
+ * @param {*} [options] Override http request option.
8623
+ * @throws {RequiredError}
8624
+ */
8625
+ operationsControllerRunResizeV1V1(resizeV1Request: ResizeV1Request, options?: RawAxiosRequestConfig): AxiosPromise<ResizeV1Response>;
7492
8626
  /**
7493
8627
  *
7494
8628
  * @param {SegmentAnythingEmbeddingsV1Request} segmentAnythingEmbeddingsV1Request
@@ -7503,6 +8637,13 @@ export declare const OperationsApiFactory: (configuration?: Configuration, baseP
7503
8637
  * @throws {RequiredError}
7504
8638
  */
7505
8639
  operationsControllerRunSegmentAnythingMaskV1V1(segmentAnythingMaskV1Request: SegmentAnythingMaskV1Request, options?: RawAxiosRequestConfig): AxiosPromise<SegmentAnythingMaskV1Response>;
8640
+ /**
8641
+ *
8642
+ * @param {TranslateV1Request} translateV1Request
8643
+ * @param {*} [options] Override http request option.
8644
+ * @throws {RequiredError}
8645
+ */
8646
+ operationsControllerRunTranslateV1V1(translateV1Request: TranslateV1Request, options?: RawAxiosRequestConfig): AxiosPromise<TranslateV1Response>;
7506
8647
  /**
7507
8648
  *
7508
8649
  * @param {UpscaleV1Request} upscaleV1Request
@@ -7559,6 +8700,14 @@ export declare class OperationsApi extends BaseAPI {
7559
8700
  * @memberof OperationsApi
7560
8701
  */
7561
8702
  operationsControllerListOperationsV1(orderBy?: OperationsControllerListOperationsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListOperationsDto, any>>;
8703
+ /**
8704
+ *
8705
+ * @param {AnimateKling16ProV1Request} animateKling16ProV1Request
8706
+ * @param {*} [options] Override http request option.
8707
+ * @throws {RequiredError}
8708
+ * @memberof OperationsApi
8709
+ */
8710
+ operationsControllerRunAnimateKling16ProV1V1(animateKling16ProV1Request: AnimateKling16ProV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AnimateKling16ProV1Response, any>>;
7562
8711
  /**
7563
8712
  *
7564
8713
  * @param {CompositeV1Request} compositeV1Request
@@ -7591,6 +8740,14 @@ export declare class OperationsApi extends BaseAPI {
7591
8740
  * @memberof OperationsApi
7592
8741
  */
7593
8742
  operationsControllerRunCutV1V1(cutV1Request: CutV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CutV1Response, any>>;
8743
+ /**
8744
+ *
8745
+ * @param {EchoV1Request} echoV1Request
8746
+ * @param {*} [options] Override http request option.
8747
+ * @throws {RequiredError}
8748
+ * @memberof OperationsApi
8749
+ */
8750
+ operationsControllerRunEchoV1V1(echoV1Request: EchoV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EchoV1Response, any>>;
7594
8751
  /**
7595
8752
  *
7596
8753
  * @param {GptV1Request} gptV1Request
@@ -7631,6 +8788,14 @@ export declare class OperationsApi extends BaseAPI {
7631
8788
  * @memberof OperationsApi
7632
8789
  */
7633
8790
  operationsControllerRunInpaintKateV1V1(inpaintKateV1Request: InpaintKateV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InpaintKateV1Response, any>>;
8791
+ /**
8792
+ *
8793
+ * @param {MathV1Request} mathV1Request
8794
+ * @param {*} [options] Override http request option.
8795
+ * @throws {RequiredError}
8796
+ * @memberof OperationsApi
8797
+ */
8798
+ operationsControllerRunMathV1V1(mathV1Request: MathV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MathV1Response, any>>;
7634
8799
  /**
7635
8800
  *
7636
8801
  * @param {NegateImageV1Request} negateImageV1Request
@@ -7663,6 +8828,14 @@ export declare class OperationsApi extends BaseAPI {
7663
8828
  * @memberof OperationsApi
7664
8829
  */
7665
8830
  operationsControllerRunPoseEstimationV1V1(poseEstimationV1Request: PoseEstimationV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PoseEstimationV1Response, any>>;
8831
+ /**
8832
+ *
8833
+ * @param {ResizeV1Request} resizeV1Request
8834
+ * @param {*} [options] Override http request option.
8835
+ * @throws {RequiredError}
8836
+ * @memberof OperationsApi
8837
+ */
8838
+ operationsControllerRunResizeV1V1(resizeV1Request: ResizeV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ResizeV1Response, any>>;
7666
8839
  /**
7667
8840
  *
7668
8841
  * @param {SegmentAnythingEmbeddingsV1Request} segmentAnythingEmbeddingsV1Request
@@ -7679,6 +8852,14 @@ export declare class OperationsApi extends BaseAPI {
7679
8852
  * @memberof OperationsApi
7680
8853
  */
7681
8854
  operationsControllerRunSegmentAnythingMaskV1V1(segmentAnythingMaskV1Request: SegmentAnythingMaskV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SegmentAnythingMaskV1Response, any>>;
8855
+ /**
8856
+ *
8857
+ * @param {TranslateV1Request} translateV1Request
8858
+ * @param {*} [options] Override http request option.
8859
+ * @throws {RequiredError}
8860
+ * @memberof OperationsApi
8861
+ */
8862
+ operationsControllerRunTranslateV1V1(translateV1Request: TranslateV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TranslateV1Response, any>>;
7682
8863
  /**
7683
8864
  *
7684
8865
  * @param {UpscaleV1Request} upscaleV1Request
@@ -7813,7 +8994,7 @@ export declare const PipelinesApiFp: (configuration?: Configuration) => {
7813
8994
  * @param {*} [options] Override http request option.
7814
8995
  * @throws {RequiredError}
7815
8996
  */
7816
- pipelinesControllerGetPipelineV1(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PipelineEntity>>;
8997
+ pipelinesControllerGetPipelineV1(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PipelineWithOutput>>;
7817
8998
  /**
7818
8999
  *
7819
9000
  * @param {PipelinesControllerListPipelinesV1OrderByEnum} [orderBy]
@@ -7842,7 +9023,7 @@ export declare const PipelinesApiFactory: (configuration?: Configuration, basePa
7842
9023
  * @param {*} [options] Override http request option.
7843
9024
  * @throws {RequiredError}
7844
9025
  */
7845
- pipelinesControllerGetPipelineV1(id: string, options?: RawAxiosRequestConfig): AxiosPromise<PipelineEntity>;
9026
+ pipelinesControllerGetPipelineV1(id: string, options?: RawAxiosRequestConfig): AxiosPromise<PipelineWithOutput>;
7846
9027
  /**
7847
9028
  *
7848
9029
  * @param {PipelinesControllerListPipelinesV1OrderByEnum} [orderBy]
@@ -7875,7 +9056,7 @@ export declare class PipelinesApi extends BaseAPI {
7875
9056
  * @throws {RequiredError}
7876
9057
  * @memberof PipelinesApi
7877
9058
  */
7878
- pipelinesControllerGetPipelineV1(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PipelineEntity, any>>;
9059
+ pipelinesControllerGetPipelineV1(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PipelineWithOutput, any>>;
7879
9060
  /**
7880
9061
  *
7881
9062
  * @param {PipelinesControllerListPipelinesV1OrderByEnum} [orderBy]
@@ -8433,6 +9614,90 @@ export declare class StorageApi extends BaseAPI {
8433
9614
  */
8434
9615
  storageControllerUpdateRecordV1(updateStorageRecordParamsDto: UpdateStorageRecordParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StorageEntity, any>>;
8435
9616
  }
9617
+ /**
9618
+ * VideosApi - axios parameter creator
9619
+ * @export
9620
+ */
9621
+ export declare const VideosApiAxiosParamCreator: (configuration?: Configuration) => {
9622
+ /**
9623
+ *
9624
+ * @param {GetUrlsForImagesParamsDto} getUrlsForImagesParamsDto
9625
+ * @param {*} [options] Override http request option.
9626
+ * @throws {RequiredError}
9627
+ */
9628
+ videosControllerGetUrlsV1: (getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9629
+ /**
9630
+ *
9631
+ * @param {string} id
9632
+ * @param {*} [options] Override http request option.
9633
+ * @throws {RequiredError}
9634
+ */
9635
+ videosControllerGetVideoV1: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9636
+ };
9637
+ /**
9638
+ * VideosApi - functional programming interface
9639
+ * @export
9640
+ */
9641
+ export declare const VideosApiFp: (configuration?: Configuration) => {
9642
+ /**
9643
+ *
9644
+ * @param {GetUrlsForImagesParamsDto} getUrlsForImagesParamsDto
9645
+ * @param {*} [options] Override http request option.
9646
+ * @throws {RequiredError}
9647
+ */
9648
+ videosControllerGetUrlsV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<VideoEntity>>>;
9649
+ /**
9650
+ *
9651
+ * @param {string} id
9652
+ * @param {*} [options] Override http request option.
9653
+ * @throws {RequiredError}
9654
+ */
9655
+ videosControllerGetVideoV1(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VideoEntity>>;
9656
+ };
9657
+ /**
9658
+ * VideosApi - factory interface
9659
+ * @export
9660
+ */
9661
+ export declare const VideosApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
9662
+ /**
9663
+ *
9664
+ * @param {GetUrlsForImagesParamsDto} getUrlsForImagesParamsDto
9665
+ * @param {*} [options] Override http request option.
9666
+ * @throws {RequiredError}
9667
+ */
9668
+ videosControllerGetUrlsV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<VideoEntity>>;
9669
+ /**
9670
+ *
9671
+ * @param {string} id
9672
+ * @param {*} [options] Override http request option.
9673
+ * @throws {RequiredError}
9674
+ */
9675
+ videosControllerGetVideoV1(id: string, options?: RawAxiosRequestConfig): AxiosPromise<VideoEntity>;
9676
+ };
9677
+ /**
9678
+ * VideosApi - object-oriented interface
9679
+ * @export
9680
+ * @class VideosApi
9681
+ * @extends {BaseAPI}
9682
+ */
9683
+ export declare class VideosApi extends BaseAPI {
9684
+ /**
9685
+ *
9686
+ * @param {GetUrlsForImagesParamsDto} getUrlsForImagesParamsDto
9687
+ * @param {*} [options] Override http request option.
9688
+ * @throws {RequiredError}
9689
+ * @memberof VideosApi
9690
+ */
9691
+ videosControllerGetUrlsV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VideoEntity[], any>>;
9692
+ /**
9693
+ *
9694
+ * @param {string} id
9695
+ * @param {*} [options] Override http request option.
9696
+ * @throws {RequiredError}
9697
+ * @memberof VideosApi
9698
+ */
9699
+ videosControllerGetVideoV1(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VideoEntity, any>>;
9700
+ }
8436
9701
  /**
8437
9702
  * WebsocketApi - axios parameter creator
8438
9703
  * @export
@@ -8509,3 +9774,62 @@ export declare class WebsocketApi extends BaseAPI {
8509
9774
  */
8510
9775
  websocketControllerRegisterWebsocketV1(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
8511
9776
  }
9777
+ /**
9778
+ * WorkflowsApi - axios parameter creator
9779
+ * @export
9780
+ */
9781
+ export declare const WorkflowsApiAxiosParamCreator: (configuration?: Configuration) => {
9782
+ /**
9783
+ *
9784
+ * @param {string} workflowId
9785
+ * @param {RunWorkflowParamsDto} runWorkflowParamsDto
9786
+ * @param {*} [options] Override http request option.
9787
+ * @throws {RequiredError}
9788
+ */
9789
+ workflowsControllerRunWorkflowV1: (workflowId: string, runWorkflowParamsDto: RunWorkflowParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9790
+ };
9791
+ /**
9792
+ * WorkflowsApi - functional programming interface
9793
+ * @export
9794
+ */
9795
+ export declare const WorkflowsApiFp: (configuration?: Configuration) => {
9796
+ /**
9797
+ *
9798
+ * @param {string} workflowId
9799
+ * @param {RunWorkflowParamsDto} runWorkflowParamsDto
9800
+ * @param {*} [options] Override http request option.
9801
+ * @throws {RequiredError}
9802
+ */
9803
+ workflowsControllerRunWorkflowV1(workflowId: string, runWorkflowParamsDto: RunWorkflowParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RunWorkflowResponseDto>>;
9804
+ };
9805
+ /**
9806
+ * WorkflowsApi - factory interface
9807
+ * @export
9808
+ */
9809
+ export declare const WorkflowsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
9810
+ /**
9811
+ *
9812
+ * @param {string} workflowId
9813
+ * @param {RunWorkflowParamsDto} runWorkflowParamsDto
9814
+ * @param {*} [options] Override http request option.
9815
+ * @throws {RequiredError}
9816
+ */
9817
+ workflowsControllerRunWorkflowV1(workflowId: string, runWorkflowParamsDto: RunWorkflowParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<RunWorkflowResponseDto>;
9818
+ };
9819
+ /**
9820
+ * WorkflowsApi - object-oriented interface
9821
+ * @export
9822
+ * @class WorkflowsApi
9823
+ * @extends {BaseAPI}
9824
+ */
9825
+ export declare class WorkflowsApi extends BaseAPI {
9826
+ /**
9827
+ *
9828
+ * @param {string} workflowId
9829
+ * @param {RunWorkflowParamsDto} runWorkflowParamsDto
9830
+ * @param {*} [options] Override http request option.
9831
+ * @throws {RequiredError}
9832
+ * @memberof WorkflowsApi
9833
+ */
9834
+ workflowsControllerRunWorkflowV1(workflowId: string, runWorkflowParamsDto: RunWorkflowParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RunWorkflowResponseDto, any>>;
9835
+ }