@hautechai/sdk 0.3.22 → 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.
|
@@ -190,6 +190,162 @@ export interface AddItemsToStackParamsDto {
|
|
|
190
190
|
*/
|
|
191
191
|
'itemIds': Array<string>;
|
|
192
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];
|
|
193
349
|
/**
|
|
194
350
|
*
|
|
195
351
|
* @export
|
|
@@ -283,10 +439,10 @@ export declare const CollectionEntityKindEnum: {
|
|
|
283
439
|
readonly Operation: "operation";
|
|
284
440
|
readonly Stack: "stack";
|
|
285
441
|
readonly Image: "image";
|
|
442
|
+
readonly Video: "video";
|
|
286
443
|
readonly Pose: "pose";
|
|
287
444
|
readonly Storage: "storage";
|
|
288
445
|
readonly Pipeline: "pipeline";
|
|
289
|
-
readonly Forbidden: "forbidden";
|
|
290
446
|
};
|
|
291
447
|
export type CollectionEntityKindEnum = typeof CollectionEntityKindEnum[keyof typeof CollectionEntityKindEnum];
|
|
292
448
|
/**
|
|
@@ -407,7 +563,7 @@ export interface CompositeV1Response {
|
|
|
407
563
|
* @type {OperationOutputImageSingle}
|
|
408
564
|
* @memberof CompositeV1Response
|
|
409
565
|
*/
|
|
410
|
-
'output': OperationOutputImageSingle
|
|
566
|
+
'output': OperationOutputImageSingle;
|
|
411
567
|
/**
|
|
412
568
|
*
|
|
413
569
|
* @type {object}
|
|
@@ -522,7 +678,7 @@ export interface ContrastV1Response {
|
|
|
522
678
|
* @type {OperationOutputImageSingle}
|
|
523
679
|
* @memberof ContrastV1Response
|
|
524
680
|
*/
|
|
525
|
-
'output': OperationOutputImageSingle
|
|
681
|
+
'output': OperationOutputImageSingle;
|
|
526
682
|
/**
|
|
527
683
|
*
|
|
528
684
|
* @type {object}
|
|
@@ -745,7 +901,7 @@ export interface CropV1Response {
|
|
|
745
901
|
* @type {OperationOutputImageSingle}
|
|
746
902
|
* @memberof CropV1Response
|
|
747
903
|
*/
|
|
748
|
-
'output': OperationOutputImageSingle
|
|
904
|
+
'output': OperationOutputImageSingle;
|
|
749
905
|
/**
|
|
750
906
|
*
|
|
751
907
|
* @type {object}
|
|
@@ -860,7 +1016,7 @@ export interface CutV1Response {
|
|
|
860
1016
|
* @type {OperationOutputImageSingle}
|
|
861
1017
|
* @memberof CutV1Response
|
|
862
1018
|
*/
|
|
863
|
-
'output': OperationOutputImageSingle
|
|
1019
|
+
'output': OperationOutputImageSingle;
|
|
864
1020
|
/**
|
|
865
1021
|
*
|
|
866
1022
|
* @type {object}
|
|
@@ -959,6 +1115,115 @@ export interface DetachAccessControllerParamsDto {
|
|
|
959
1115
|
*/
|
|
960
1116
|
'parentResourceId': string;
|
|
961
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];
|
|
962
1227
|
/**
|
|
963
1228
|
*
|
|
964
1229
|
* @export
|
|
@@ -977,6 +1242,12 @@ export interface GPTV1Input {
|
|
|
977
1242
|
* @memberof GPTV1Input
|
|
978
1243
|
*/
|
|
979
1244
|
'prompt': string;
|
|
1245
|
+
/**
|
|
1246
|
+
*
|
|
1247
|
+
* @type {Array<string>}
|
|
1248
|
+
* @memberof GPTV1Input
|
|
1249
|
+
*/
|
|
1250
|
+
'additionalMessages'?: Array<string>;
|
|
980
1251
|
/**
|
|
981
1252
|
*
|
|
982
1253
|
* @type {string}
|
|
@@ -1240,7 +1511,7 @@ export interface GptV1Response {
|
|
|
1240
1511
|
* @type {OperationOutputJSON}
|
|
1241
1512
|
* @memberof GptV1Response
|
|
1242
1513
|
*/
|
|
1243
|
-
'output': OperationOutputJSON
|
|
1514
|
+
'output': OperationOutputJSON;
|
|
1244
1515
|
/**
|
|
1245
1516
|
*
|
|
1246
1517
|
* @type {object}
|
|
@@ -1385,7 +1656,7 @@ export interface HauteLindaV1Response {
|
|
|
1385
1656
|
* @type {OperationOutputImageMultiple}
|
|
1386
1657
|
* @memberof HauteLindaV1Response
|
|
1387
1658
|
*/
|
|
1388
|
-
'output': OperationOutputImageMultiple
|
|
1659
|
+
'output': OperationOutputImageMultiple;
|
|
1389
1660
|
/**
|
|
1390
1661
|
*
|
|
1391
1662
|
* @type {object}
|
|
@@ -1481,7 +1752,7 @@ export interface HauteNaomiV1Response {
|
|
|
1481
1752
|
* @type {OperationOutputImageSingle}
|
|
1482
1753
|
* @memberof HauteNaomiV1Response
|
|
1483
1754
|
*/
|
|
1484
|
-
'output': OperationOutputImageSingle
|
|
1755
|
+
'output': OperationOutputImageSingle;
|
|
1485
1756
|
/**
|
|
1486
1757
|
*
|
|
1487
1758
|
* @type {object}
|
|
@@ -1613,10 +1884,10 @@ export declare const ImageEntityKindEnum: {
|
|
|
1613
1884
|
readonly Operation: "operation";
|
|
1614
1885
|
readonly Stack: "stack";
|
|
1615
1886
|
readonly Image: "image";
|
|
1887
|
+
readonly Video: "video";
|
|
1616
1888
|
readonly Pose: "pose";
|
|
1617
1889
|
readonly Storage: "storage";
|
|
1618
1890
|
readonly Pipeline: "pipeline";
|
|
1619
|
-
readonly Forbidden: "forbidden";
|
|
1620
1891
|
};
|
|
1621
1892
|
export type ImageEntityKindEnum = typeof ImageEntityKindEnum[keyof typeof ImageEntityKindEnum];
|
|
1622
1893
|
/**
|
|
@@ -1699,7 +1970,7 @@ export interface ImagineKateV1Response {
|
|
|
1699
1970
|
* @type {OperationOutputImageSingle}
|
|
1700
1971
|
* @memberof ImagineKateV1Response
|
|
1701
1972
|
*/
|
|
1702
|
-
'output': OperationOutputImageSingle
|
|
1973
|
+
'output': OperationOutputImageSingle;
|
|
1703
1974
|
/**
|
|
1704
1975
|
*
|
|
1705
1976
|
* @type {object}
|
|
@@ -1808,7 +2079,7 @@ export interface InpaintKateV1Response {
|
|
|
1808
2079
|
* @type {OperationOutputImageSingle}
|
|
1809
2080
|
* @memberof InpaintKateV1Response
|
|
1810
2081
|
*/
|
|
1811
|
-
'output': OperationOutputImageSingle
|
|
2082
|
+
'output': OperationOutputImageSingle;
|
|
1812
2083
|
/**
|
|
1813
2084
|
*
|
|
1814
2085
|
* @type {object}
|
|
@@ -2261,10 +2532,10 @@ export declare const ListCollectionItemsParamsDtoKindEnum: {
|
|
|
2261
2532
|
readonly Operation: "operation";
|
|
2262
2533
|
readonly Stack: "stack";
|
|
2263
2534
|
readonly Image: "image";
|
|
2535
|
+
readonly Video: "video";
|
|
2264
2536
|
readonly Pose: "pose";
|
|
2265
2537
|
readonly Storage: "storage";
|
|
2266
2538
|
readonly Pipeline: "pipeline";
|
|
2267
|
-
readonly Forbidden: "forbidden";
|
|
2268
2539
|
};
|
|
2269
2540
|
export type ListCollectionItemsParamsDtoKindEnum = typeof ListCollectionItemsParamsDtoKindEnum[keyof typeof ListCollectionItemsParamsDtoKindEnum];
|
|
2270
2541
|
/**
|
|
@@ -2488,6 +2759,121 @@ export declare const ListStacksParamsDtoOrderByEnum: {
|
|
|
2488
2759
|
readonly UpdatedAtDesc: "updatedAt_DESC";
|
|
2489
2760
|
};
|
|
2490
2761
|
export type ListStacksParamsDtoOrderByEnum = typeof ListStacksParamsDtoOrderByEnum[keyof typeof ListStacksParamsDtoOrderByEnum];
|
|
2762
|
+
/**
|
|
2763
|
+
*
|
|
2764
|
+
* @export
|
|
2765
|
+
* @interface MathV1Input
|
|
2766
|
+
*/
|
|
2767
|
+
export interface MathV1Input {
|
|
2768
|
+
/**
|
|
2769
|
+
* Mathematical expression or JSON object with expressions to evaluate using mathjs
|
|
2770
|
+
* @type {string}
|
|
2771
|
+
* @memberof MathV1Input
|
|
2772
|
+
*/
|
|
2773
|
+
'code': string;
|
|
2774
|
+
/**
|
|
2775
|
+
* Input data for the mathematical expression
|
|
2776
|
+
* @type {object}
|
|
2777
|
+
* @memberof MathV1Input
|
|
2778
|
+
*/
|
|
2779
|
+
'input'?: object;
|
|
2780
|
+
}
|
|
2781
|
+
/**
|
|
2782
|
+
*
|
|
2783
|
+
* @export
|
|
2784
|
+
* @interface MathV1Request
|
|
2785
|
+
*/
|
|
2786
|
+
export interface MathV1Request {
|
|
2787
|
+
/**
|
|
2788
|
+
*
|
|
2789
|
+
* @type {MathV1Input}
|
|
2790
|
+
* @memberof MathV1Request
|
|
2791
|
+
*/
|
|
2792
|
+
'input': MathV1Input;
|
|
2793
|
+
/**
|
|
2794
|
+
*
|
|
2795
|
+
* @type {object}
|
|
2796
|
+
* @memberof MathV1Request
|
|
2797
|
+
*/
|
|
2798
|
+
'metadata'?: object;
|
|
2799
|
+
}
|
|
2800
|
+
/**
|
|
2801
|
+
*
|
|
2802
|
+
* @export
|
|
2803
|
+
* @interface MathV1Response
|
|
2804
|
+
*/
|
|
2805
|
+
export interface MathV1Response {
|
|
2806
|
+
/**
|
|
2807
|
+
*
|
|
2808
|
+
* @type {string}
|
|
2809
|
+
* @memberof MathV1Response
|
|
2810
|
+
*/
|
|
2811
|
+
'kind': MathV1ResponseKindEnum;
|
|
2812
|
+
/**
|
|
2813
|
+
*
|
|
2814
|
+
* @type {OperationOutputJSON}
|
|
2815
|
+
* @memberof MathV1Response
|
|
2816
|
+
*/
|
|
2817
|
+
'output': OperationOutputJSON;
|
|
2818
|
+
/**
|
|
2819
|
+
*
|
|
2820
|
+
* @type {object}
|
|
2821
|
+
* @memberof MathV1Response
|
|
2822
|
+
*/
|
|
2823
|
+
'input': object;
|
|
2824
|
+
/**
|
|
2825
|
+
*
|
|
2826
|
+
* @type {string}
|
|
2827
|
+
* @memberof MathV1Response
|
|
2828
|
+
*/
|
|
2829
|
+
'status': MathV1ResponseStatusEnum;
|
|
2830
|
+
/**
|
|
2831
|
+
*
|
|
2832
|
+
* @type {string}
|
|
2833
|
+
* @memberof MathV1Response
|
|
2834
|
+
*/
|
|
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];
|
|
2491
2877
|
/**
|
|
2492
2878
|
*
|
|
2493
2879
|
* @export
|
|
@@ -2657,7 +3043,7 @@ export interface NegateImageV1Response {
|
|
|
2657
3043
|
* @type {OperationOutputImageSingle}
|
|
2658
3044
|
* @memberof NegateImageV1Response
|
|
2659
3045
|
*/
|
|
2660
|
-
'output': OperationOutputImageSingle
|
|
3046
|
+
'output': OperationOutputImageSingle;
|
|
2661
3047
|
/**
|
|
2662
3048
|
*
|
|
2663
3049
|
* @type {object}
|
|
@@ -2778,7 +3164,7 @@ export interface NoiseV1Response {
|
|
|
2778
3164
|
* @type {OperationOutputImageSingle}
|
|
2779
3165
|
* @memberof NoiseV1Response
|
|
2780
3166
|
*/
|
|
2781
|
-
'output': OperationOutputImageSingle
|
|
3167
|
+
'output': OperationOutputImageSingle;
|
|
2782
3168
|
/**
|
|
2783
3169
|
*
|
|
2784
3170
|
* @type {object}
|
|
@@ -2893,7 +3279,7 @@ export interface ObjectDetectionV1Response {
|
|
|
2893
3279
|
* @type {OperationOutputJSON}
|
|
2894
3280
|
* @memberof ObjectDetectionV1Response
|
|
2895
3281
|
*/
|
|
2896
|
-
'output': OperationOutputJSON
|
|
3282
|
+
'output': OperationOutputJSON;
|
|
2897
3283
|
/**
|
|
2898
3284
|
*
|
|
2899
3285
|
* @type {object}
|
|
@@ -2976,7 +3362,7 @@ export interface OperationEntity {
|
|
|
2976
3362
|
* @type {object}
|
|
2977
3363
|
* @memberof OperationEntity
|
|
2978
3364
|
*/
|
|
2979
|
-
'output': object
|
|
3365
|
+
'output': object;
|
|
2980
3366
|
/**
|
|
2981
3367
|
*
|
|
2982
3368
|
* @type {string}
|
|
@@ -3099,6 +3485,52 @@ export declare const OperationOutputJSONKindEnum: {
|
|
|
3099
3485
|
readonly Json: "json";
|
|
3100
3486
|
};
|
|
3101
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];
|
|
3102
3534
|
/**
|
|
3103
3535
|
*
|
|
3104
3536
|
* @export
|
|
@@ -3164,6 +3596,77 @@ export declare const PipelineEntityStatusEnum: {
|
|
|
3164
3596
|
readonly Failed: "failed";
|
|
3165
3597
|
};
|
|
3166
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];
|
|
3167
3670
|
/**
|
|
3168
3671
|
*
|
|
3169
3672
|
* @export
|
|
@@ -3278,7 +3781,7 @@ export interface PoseEstimationV1Response {
|
|
|
3278
3781
|
* @type {OperationOutputJSON}
|
|
3279
3782
|
* @memberof PoseEstimationV1Response
|
|
3280
3783
|
*/
|
|
3281
|
-
'output': OperationOutputJSON
|
|
3784
|
+
'output': OperationOutputJSON;
|
|
3282
3785
|
/**
|
|
3283
3786
|
*
|
|
3284
3787
|
* @type {object}
|
|
@@ -3506,7 +4009,7 @@ export interface ResizeV1Response {
|
|
|
3506
4009
|
* @type {OperationOutputImageSingle}
|
|
3507
4010
|
* @memberof ResizeV1Response
|
|
3508
4011
|
*/
|
|
3509
|
-
'output': OperationOutputImageSingle
|
|
4012
|
+
'output': OperationOutputImageSingle;
|
|
3510
4013
|
/**
|
|
3511
4014
|
*
|
|
3512
4015
|
* @type {object}
|
|
@@ -3614,10 +4117,10 @@ export declare const ResourceEntityKindEnum: {
|
|
|
3614
4117
|
readonly Operation: "operation";
|
|
3615
4118
|
readonly Stack: "stack";
|
|
3616
4119
|
readonly Image: "image";
|
|
4120
|
+
readonly Video: "video";
|
|
3617
4121
|
readonly Pose: "pose";
|
|
3618
4122
|
readonly Storage: "storage";
|
|
3619
4123
|
readonly Pipeline: "pipeline";
|
|
3620
|
-
readonly Forbidden: "forbidden";
|
|
3621
4124
|
};
|
|
3622
4125
|
export type ResourceEntityKindEnum = typeof ResourceEntityKindEnum[keyof typeof ResourceEntityKindEnum];
|
|
3623
4126
|
/**
|
|
@@ -3650,6 +4153,38 @@ export declare const RevokeAccessControllerParamsDtoPrincipalTypeEnum: {
|
|
|
3650
4153
|
readonly Group: "group";
|
|
3651
4154
|
};
|
|
3652
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
|
+
}
|
|
3653
4188
|
/**
|
|
3654
4189
|
*
|
|
3655
4190
|
* @export
|
|
@@ -3699,7 +4234,7 @@ export interface SegmentAnythingEmbeddingsV1Response {
|
|
|
3699
4234
|
* @type {OperationOutputJSON}
|
|
3700
4235
|
* @memberof SegmentAnythingEmbeddingsV1Response
|
|
3701
4236
|
*/
|
|
3702
|
-
'output': OperationOutputJSON
|
|
4237
|
+
'output': OperationOutputJSON;
|
|
3703
4238
|
/**
|
|
3704
4239
|
*
|
|
3705
4240
|
* @type {object}
|
|
@@ -3826,7 +4361,7 @@ export interface SegmentAnythingMaskV1Response {
|
|
|
3826
4361
|
* @type {OperationOutputImageSingle}
|
|
3827
4362
|
* @memberof SegmentAnythingMaskV1Response
|
|
3828
4363
|
*/
|
|
3829
|
-
'output': OperationOutputImageSingle
|
|
4364
|
+
'output': OperationOutputImageSingle;
|
|
3830
4365
|
/**
|
|
3831
4366
|
*
|
|
3832
4367
|
* @type {object}
|
|
@@ -4066,12 +4601,6 @@ export interface TranslateV1Input {
|
|
|
4066
4601
|
* @memberof TranslateV1Input
|
|
4067
4602
|
*/
|
|
4068
4603
|
'text': string;
|
|
4069
|
-
/**
|
|
4070
|
-
*
|
|
4071
|
-
* @type {string}
|
|
4072
|
-
* @memberof TranslateV1Input
|
|
4073
|
-
*/
|
|
4074
|
-
'from'?: string;
|
|
4075
4604
|
/**
|
|
4076
4605
|
*
|
|
4077
4606
|
* @type {string}
|
|
@@ -4115,7 +4644,7 @@ export interface TranslateV1Response {
|
|
|
4115
4644
|
* @type {OperationOutputJSON}
|
|
4116
4645
|
* @memberof TranslateV1Response
|
|
4117
4646
|
*/
|
|
4118
|
-
'output': OperationOutputJSON
|
|
4647
|
+
'output': OperationOutputJSON;
|
|
4119
4648
|
/**
|
|
4120
4649
|
*
|
|
4121
4650
|
* @type {object}
|
|
@@ -4275,7 +4804,7 @@ export interface UpscaleV1Response {
|
|
|
4275
4804
|
* @type {OperationOutputImageSingle}
|
|
4276
4805
|
* @memberof UpscaleV1Response
|
|
4277
4806
|
*/
|
|
4278
|
-
'output': OperationOutputImageSingle
|
|
4807
|
+
'output': OperationOutputImageSingle;
|
|
4279
4808
|
/**
|
|
4280
4809
|
*
|
|
4281
4810
|
* @type {object}
|
|
@@ -4334,7 +4863,85 @@ export declare const UpscaleV1ResponseStatusEnum: {
|
|
|
4334
4863
|
readonly Finished: "finished";
|
|
4335
4864
|
readonly Failed: "failed";
|
|
4336
4865
|
};
|
|
4337
|
-
export type UpscaleV1ResponseStatusEnum = typeof UpscaleV1ResponseStatusEnum[keyof typeof UpscaleV1ResponseStatusEnum];
|
|
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];
|
|
4338
4945
|
/**
|
|
4339
4946
|
*
|
|
4340
4947
|
* @export
|
|
@@ -4371,7 +4978,7 @@ export interface VtonGiseleV1Response {
|
|
|
4371
4978
|
* @type {OperationOutputImageSingle}
|
|
4372
4979
|
* @memberof VtonGiseleV1Response
|
|
4373
4980
|
*/
|
|
4374
|
-
'output': OperationOutputImageSingle
|
|
4981
|
+
'output': OperationOutputImageSingle;
|
|
4375
4982
|
/**
|
|
4376
4983
|
*
|
|
4377
4984
|
* @type {object}
|
|
@@ -5132,6 +5739,13 @@ export declare const CallApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
5132
5739
|
* @throws {RequiredError}
|
|
5133
5740
|
*/
|
|
5134
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>;
|
|
5135
5749
|
/**
|
|
5136
5750
|
*
|
|
5137
5751
|
* @param {CompositeV1Request} compositeV1Request
|
|
@@ -5160,6 +5774,13 @@ export declare const CallApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
5160
5774
|
* @throws {RequiredError}
|
|
5161
5775
|
*/
|
|
5162
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>;
|
|
5163
5784
|
/**
|
|
5164
5785
|
*
|
|
5165
5786
|
* @param {GptV1Request} gptV1Request
|
|
@@ -5195,6 +5816,13 @@ export declare const CallApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
5195
5816
|
* @throws {RequiredError}
|
|
5196
5817
|
*/
|
|
5197
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>;
|
|
5198
5826
|
/**
|
|
5199
5827
|
*
|
|
5200
5828
|
* @param {NegateImageV1Request} negateImageV1Request
|
|
@@ -5286,6 +5914,13 @@ export declare const CallApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
5286
5914
|
* @throws {RequiredError}
|
|
5287
5915
|
*/
|
|
5288
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>;
|
|
5289
5924
|
/**
|
|
5290
5925
|
*
|
|
5291
5926
|
* @param {SetPosePreviewDto} setPosePreviewDto
|
|
@@ -5565,6 +6200,13 @@ export declare const CallApiFp: (configuration?: Configuration) => {
|
|
|
5565
6200
|
* @throws {RequiredError}
|
|
5566
6201
|
*/
|
|
5567
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>>;
|
|
5568
6210
|
/**
|
|
5569
6211
|
*
|
|
5570
6212
|
* @param {CompositeV1Request} compositeV1Request
|
|
@@ -5593,6 +6235,13 @@ export declare const CallApiFp: (configuration?: Configuration) => {
|
|
|
5593
6235
|
* @throws {RequiredError}
|
|
5594
6236
|
*/
|
|
5595
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>>;
|
|
5596
6245
|
/**
|
|
5597
6246
|
*
|
|
5598
6247
|
* @param {GptV1Request} gptV1Request
|
|
@@ -5628,6 +6277,13 @@ export declare const CallApiFp: (configuration?: Configuration) => {
|
|
|
5628
6277
|
* @throws {RequiredError}
|
|
5629
6278
|
*/
|
|
5630
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>>;
|
|
5631
6287
|
/**
|
|
5632
6288
|
*
|
|
5633
6289
|
* @param {NegateImageV1Request} negateImageV1Request
|
|
@@ -5719,6 +6375,13 @@ export declare const CallApiFp: (configuration?: Configuration) => {
|
|
|
5719
6375
|
* @throws {RequiredError}
|
|
5720
6376
|
*/
|
|
5721
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>>;
|
|
5722
6385
|
/**
|
|
5723
6386
|
*
|
|
5724
6387
|
* @param {SetPosePreviewDto} setPosePreviewDto
|
|
@@ -5998,6 +6661,13 @@ export declare const CallApiFactory: (configuration?: Configuration, basePath?:
|
|
|
5998
6661
|
* @throws {RequiredError}
|
|
5999
6662
|
*/
|
|
6000
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>;
|
|
6001
6671
|
/**
|
|
6002
6672
|
*
|
|
6003
6673
|
* @param {CompositeV1Request} compositeV1Request
|
|
@@ -6026,6 +6696,13 @@ export declare const CallApiFactory: (configuration?: Configuration, basePath?:
|
|
|
6026
6696
|
* @throws {RequiredError}
|
|
6027
6697
|
*/
|
|
6028
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>;
|
|
6029
6706
|
/**
|
|
6030
6707
|
*
|
|
6031
6708
|
* @param {GptV1Request} gptV1Request
|
|
@@ -6061,6 +6738,13 @@ export declare const CallApiFactory: (configuration?: Configuration, basePath?:
|
|
|
6061
6738
|
* @throws {RequiredError}
|
|
6062
6739
|
*/
|
|
6063
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>;
|
|
6064
6748
|
/**
|
|
6065
6749
|
*
|
|
6066
6750
|
* @param {NegateImageV1Request} negateImageV1Request
|
|
@@ -6152,6 +6836,13 @@ export declare const CallApiFactory: (configuration?: Configuration, basePath?:
|
|
|
6152
6836
|
* @throws {RequiredError}
|
|
6153
6837
|
*/
|
|
6154
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>;
|
|
6155
6846
|
/**
|
|
6156
6847
|
*
|
|
6157
6848
|
* @param {SetPosePreviewDto} setPosePreviewDto
|
|
@@ -6461,6 +7152,14 @@ export declare class CallApi extends BaseAPI {
|
|
|
6461
7152
|
* @memberof CallApi
|
|
6462
7153
|
*/
|
|
6463
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>>;
|
|
6464
7163
|
/**
|
|
6465
7164
|
*
|
|
6466
7165
|
* @param {CompositeV1Request} compositeV1Request
|
|
@@ -6493,6 +7192,14 @@ export declare class CallApi extends BaseAPI {
|
|
|
6493
7192
|
* @memberof CallApi
|
|
6494
7193
|
*/
|
|
6495
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>>;
|
|
6496
7203
|
/**
|
|
6497
7204
|
*
|
|
6498
7205
|
* @param {GptV1Request} gptV1Request
|
|
@@ -6533,6 +7240,14 @@ export declare class CallApi extends BaseAPI {
|
|
|
6533
7240
|
* @memberof CallApi
|
|
6534
7241
|
*/
|
|
6535
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>>;
|
|
6536
7251
|
/**
|
|
6537
7252
|
*
|
|
6538
7253
|
* @param {NegateImageV1Request} negateImageV1Request
|
|
@@ -6637,6 +7352,14 @@ export declare class CallApi extends BaseAPI {
|
|
|
6637
7352
|
* @memberof CallApi
|
|
6638
7353
|
*/
|
|
6639
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>>;
|
|
6640
7363
|
/**
|
|
6641
7364
|
*
|
|
6642
7365
|
* @param {SetPosePreviewDto} setPosePreviewDto
|
|
@@ -7019,10 +7742,10 @@ export declare const CollectionsControllerListItemsV1KindEnum: {
|
|
|
7019
7742
|
readonly Operation: "operation";
|
|
7020
7743
|
readonly Stack: "stack";
|
|
7021
7744
|
readonly Image: "image";
|
|
7745
|
+
readonly Video: "video";
|
|
7022
7746
|
readonly Pose: "pose";
|
|
7023
7747
|
readonly Storage: "storage";
|
|
7024
7748
|
readonly Pipeline: "pipeline";
|
|
7025
|
-
readonly Forbidden: "forbidden";
|
|
7026
7749
|
};
|
|
7027
7750
|
export type CollectionsControllerListItemsV1KindEnum = typeof CollectionsControllerListItemsV1KindEnum[keyof typeof CollectionsControllerListItemsV1KindEnum];
|
|
7028
7751
|
/**
|
|
@@ -7399,6 +8122,13 @@ export declare const OperationsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
7399
8122
|
* @throws {RequiredError}
|
|
7400
8123
|
*/
|
|
7401
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>;
|
|
7402
8132
|
/**
|
|
7403
8133
|
*
|
|
7404
8134
|
* @param {CompositeV1Request} compositeV1Request
|
|
@@ -7427,6 +8157,13 @@ export declare const OperationsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
7427
8157
|
* @throws {RequiredError}
|
|
7428
8158
|
*/
|
|
7429
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>;
|
|
7430
8167
|
/**
|
|
7431
8168
|
*
|
|
7432
8169
|
* @param {GptV1Request} gptV1Request
|
|
@@ -7462,6 +8199,13 @@ export declare const OperationsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
7462
8199
|
* @throws {RequiredError}
|
|
7463
8200
|
*/
|
|
7464
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>;
|
|
7465
8209
|
/**
|
|
7466
8210
|
*
|
|
7467
8211
|
* @param {NegateImageV1Request} negateImageV1Request
|
|
@@ -7569,6 +8313,13 @@ export declare const OperationsApiFp: (configuration?: Configuration) => {
|
|
|
7569
8313
|
* @throws {RequiredError}
|
|
7570
8314
|
*/
|
|
7571
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>>;
|
|
7572
8323
|
/**
|
|
7573
8324
|
*
|
|
7574
8325
|
* @param {CompositeV1Request} compositeV1Request
|
|
@@ -7597,6 +8348,13 @@ export declare const OperationsApiFp: (configuration?: Configuration) => {
|
|
|
7597
8348
|
* @throws {RequiredError}
|
|
7598
8349
|
*/
|
|
7599
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>>;
|
|
7600
8358
|
/**
|
|
7601
8359
|
*
|
|
7602
8360
|
* @param {GptV1Request} gptV1Request
|
|
@@ -7632,6 +8390,13 @@ export declare const OperationsApiFp: (configuration?: Configuration) => {
|
|
|
7632
8390
|
* @throws {RequiredError}
|
|
7633
8391
|
*/
|
|
7634
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>>;
|
|
7635
8400
|
/**
|
|
7636
8401
|
*
|
|
7637
8402
|
* @param {NegateImageV1Request} negateImageV1Request
|
|
@@ -7739,6 +8504,13 @@ export declare const OperationsApiFactory: (configuration?: Configuration, baseP
|
|
|
7739
8504
|
* @throws {RequiredError}
|
|
7740
8505
|
*/
|
|
7741
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>;
|
|
7742
8514
|
/**
|
|
7743
8515
|
*
|
|
7744
8516
|
* @param {CompositeV1Request} compositeV1Request
|
|
@@ -7767,6 +8539,13 @@ export declare const OperationsApiFactory: (configuration?: Configuration, baseP
|
|
|
7767
8539
|
* @throws {RequiredError}
|
|
7768
8540
|
*/
|
|
7769
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>;
|
|
7770
8549
|
/**
|
|
7771
8550
|
*
|
|
7772
8551
|
* @param {GptV1Request} gptV1Request
|
|
@@ -7802,6 +8581,13 @@ export declare const OperationsApiFactory: (configuration?: Configuration, baseP
|
|
|
7802
8581
|
* @throws {RequiredError}
|
|
7803
8582
|
*/
|
|
7804
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>;
|
|
7805
8591
|
/**
|
|
7806
8592
|
*
|
|
7807
8593
|
* @param {NegateImageV1Request} negateImageV1Request
|
|
@@ -7914,6 +8700,14 @@ export declare class OperationsApi extends BaseAPI {
|
|
|
7914
8700
|
* @memberof OperationsApi
|
|
7915
8701
|
*/
|
|
7916
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>>;
|
|
7917
8711
|
/**
|
|
7918
8712
|
*
|
|
7919
8713
|
* @param {CompositeV1Request} compositeV1Request
|
|
@@ -7946,6 +8740,14 @@ export declare class OperationsApi extends BaseAPI {
|
|
|
7946
8740
|
* @memberof OperationsApi
|
|
7947
8741
|
*/
|
|
7948
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>>;
|
|
7949
8751
|
/**
|
|
7950
8752
|
*
|
|
7951
8753
|
* @param {GptV1Request} gptV1Request
|
|
@@ -7986,6 +8788,14 @@ export declare class OperationsApi extends BaseAPI {
|
|
|
7986
8788
|
* @memberof OperationsApi
|
|
7987
8789
|
*/
|
|
7988
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>>;
|
|
7989
8799
|
/**
|
|
7990
8800
|
*
|
|
7991
8801
|
* @param {NegateImageV1Request} negateImageV1Request
|
|
@@ -8184,7 +8994,7 @@ export declare const PipelinesApiFp: (configuration?: Configuration) => {
|
|
|
8184
8994
|
* @param {*} [options] Override http request option.
|
|
8185
8995
|
* @throws {RequiredError}
|
|
8186
8996
|
*/
|
|
8187
|
-
pipelinesControllerGetPipelineV1(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
8997
|
+
pipelinesControllerGetPipelineV1(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PipelineWithOutput>>;
|
|
8188
8998
|
/**
|
|
8189
8999
|
*
|
|
8190
9000
|
* @param {PipelinesControllerListPipelinesV1OrderByEnum} [orderBy]
|
|
@@ -8213,7 +9023,7 @@ export declare const PipelinesApiFactory: (configuration?: Configuration, basePa
|
|
|
8213
9023
|
* @param {*} [options] Override http request option.
|
|
8214
9024
|
* @throws {RequiredError}
|
|
8215
9025
|
*/
|
|
8216
|
-
pipelinesControllerGetPipelineV1(id: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
9026
|
+
pipelinesControllerGetPipelineV1(id: string, options?: RawAxiosRequestConfig): AxiosPromise<PipelineWithOutput>;
|
|
8217
9027
|
/**
|
|
8218
9028
|
*
|
|
8219
9029
|
* @param {PipelinesControllerListPipelinesV1OrderByEnum} [orderBy]
|
|
@@ -8246,7 +9056,7 @@ export declare class PipelinesApi extends BaseAPI {
|
|
|
8246
9056
|
* @throws {RequiredError}
|
|
8247
9057
|
* @memberof PipelinesApi
|
|
8248
9058
|
*/
|
|
8249
|
-
pipelinesControllerGetPipelineV1(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
9059
|
+
pipelinesControllerGetPipelineV1(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PipelineWithOutput, any>>;
|
|
8250
9060
|
/**
|
|
8251
9061
|
*
|
|
8252
9062
|
* @param {PipelinesControllerListPipelinesV1OrderByEnum} [orderBy]
|
|
@@ -8804,6 +9614,90 @@ export declare class StorageApi extends BaseAPI {
|
|
|
8804
9614
|
*/
|
|
8805
9615
|
storageControllerUpdateRecordV1(updateStorageRecordParamsDto: UpdateStorageRecordParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StorageEntity, any>>;
|
|
8806
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
|
+
}
|
|
8807
9701
|
/**
|
|
8808
9702
|
* WebsocketApi - axios parameter creator
|
|
8809
9703
|
* @export
|
|
@@ -8880,3 +9774,62 @@ export declare class WebsocketApi extends BaseAPI {
|
|
|
8880
9774
|
*/
|
|
8881
9775
|
websocketControllerRegisterWebsocketV1(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
8882
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
|
+
}
|