@hautechai/sdk 0.0.12 → 0.0.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/autogenerated/api.d.ts +528 -69
- package/dist/autogenerated/api.js +613 -135
- package/package.json +1 -1
|
@@ -88,6 +88,25 @@ export interface AddItemsToCollectionControllerParamsDto {
|
|
|
88
88
|
*/
|
|
89
89
|
'itemIds': Array<string>;
|
|
90
90
|
}
|
|
91
|
+
/**
|
|
92
|
+
*
|
|
93
|
+
* @export
|
|
94
|
+
* @interface AddItemsToCollectionParamsDto
|
|
95
|
+
*/
|
|
96
|
+
export interface AddItemsToCollectionParamsDto {
|
|
97
|
+
/**
|
|
98
|
+
*
|
|
99
|
+
* @type {string}
|
|
100
|
+
* @memberof AddItemsToCollectionParamsDto
|
|
101
|
+
*/
|
|
102
|
+
'collectionId': string;
|
|
103
|
+
/**
|
|
104
|
+
*
|
|
105
|
+
* @type {Array<string>}
|
|
106
|
+
* @memberof AddItemsToCollectionParamsDto
|
|
107
|
+
*/
|
|
108
|
+
'itemIds': Array<string>;
|
|
109
|
+
}
|
|
91
110
|
/**
|
|
92
111
|
*
|
|
93
112
|
* @export
|
|
@@ -157,6 +176,107 @@ export interface CollectionEntity {
|
|
|
157
176
|
*/
|
|
158
177
|
'updatedAt': string;
|
|
159
178
|
}
|
|
179
|
+
/**
|
|
180
|
+
*
|
|
181
|
+
* @export
|
|
182
|
+
* @interface CompositeElement
|
|
183
|
+
*/
|
|
184
|
+
export interface CompositeElement {
|
|
185
|
+
/**
|
|
186
|
+
*
|
|
187
|
+
* @type {string}
|
|
188
|
+
* @memberof CompositeElement
|
|
189
|
+
*/
|
|
190
|
+
'imageId': string;
|
|
191
|
+
/**
|
|
192
|
+
*
|
|
193
|
+
* @type {number}
|
|
194
|
+
* @memberof CompositeElement
|
|
195
|
+
*/
|
|
196
|
+
'left': number;
|
|
197
|
+
/**
|
|
198
|
+
*
|
|
199
|
+
* @type {number}
|
|
200
|
+
* @memberof CompositeElement
|
|
201
|
+
*/
|
|
202
|
+
'top': number;
|
|
203
|
+
/**
|
|
204
|
+
*
|
|
205
|
+
* @type {number}
|
|
206
|
+
* @memberof CompositeElement
|
|
207
|
+
*/
|
|
208
|
+
'width': number;
|
|
209
|
+
/**
|
|
210
|
+
*
|
|
211
|
+
* @type {number}
|
|
212
|
+
* @memberof CompositeElement
|
|
213
|
+
*/
|
|
214
|
+
'height': number;
|
|
215
|
+
/**
|
|
216
|
+
*
|
|
217
|
+
* @type {string}
|
|
218
|
+
* @memberof CompositeElement
|
|
219
|
+
*/
|
|
220
|
+
'fit': CompositeElementFitEnum;
|
|
221
|
+
}
|
|
222
|
+
export declare const CompositeElementFitEnum: {
|
|
223
|
+
readonly Cover: "cover";
|
|
224
|
+
readonly Contain: "contain";
|
|
225
|
+
readonly Fill: "fill";
|
|
226
|
+
readonly Inside: "inside";
|
|
227
|
+
readonly Outside: "outside";
|
|
228
|
+
};
|
|
229
|
+
export type CompositeElementFitEnum = typeof CompositeElementFitEnum[keyof typeof CompositeElementFitEnum];
|
|
230
|
+
/**
|
|
231
|
+
*
|
|
232
|
+
* @export
|
|
233
|
+
* @interface CompositeV1ControllerInput
|
|
234
|
+
*/
|
|
235
|
+
export interface CompositeV1ControllerInput {
|
|
236
|
+
/**
|
|
237
|
+
*
|
|
238
|
+
* @type {CompositeV1Input}
|
|
239
|
+
* @memberof CompositeV1ControllerInput
|
|
240
|
+
*/
|
|
241
|
+
'input': CompositeV1Input;
|
|
242
|
+
/**
|
|
243
|
+
*
|
|
244
|
+
* @type {object}
|
|
245
|
+
* @memberof CompositeV1ControllerInput
|
|
246
|
+
*/
|
|
247
|
+
'metadata'?: object;
|
|
248
|
+
}
|
|
249
|
+
/**
|
|
250
|
+
*
|
|
251
|
+
* @export
|
|
252
|
+
* @interface CompositeV1Input
|
|
253
|
+
*/
|
|
254
|
+
export interface CompositeV1Input {
|
|
255
|
+
/**
|
|
256
|
+
*
|
|
257
|
+
* @type {number}
|
|
258
|
+
* @memberof CompositeV1Input
|
|
259
|
+
*/
|
|
260
|
+
'width': number;
|
|
261
|
+
/**
|
|
262
|
+
*
|
|
263
|
+
* @type {number}
|
|
264
|
+
* @memberof CompositeV1Input
|
|
265
|
+
*/
|
|
266
|
+
'height': number;
|
|
267
|
+
/**
|
|
268
|
+
*
|
|
269
|
+
* @type {string}
|
|
270
|
+
* @memberof CompositeV1Input
|
|
271
|
+
*/
|
|
272
|
+
'background': string;
|
|
273
|
+
/**
|
|
274
|
+
*
|
|
275
|
+
* @type {Array<CompositeElement>}
|
|
276
|
+
* @memberof CompositeV1Input
|
|
277
|
+
*/
|
|
278
|
+
'elements': Array<CompositeElement>;
|
|
279
|
+
}
|
|
160
280
|
/**
|
|
161
281
|
*
|
|
162
282
|
* @export
|
|
@@ -247,6 +367,44 @@ export interface CreateStorageRecordParamsDto {
|
|
|
247
367
|
*/
|
|
248
368
|
'value': object;
|
|
249
369
|
}
|
|
370
|
+
/**
|
|
371
|
+
*
|
|
372
|
+
* @export
|
|
373
|
+
* @interface CutV1ControllerInput
|
|
374
|
+
*/
|
|
375
|
+
export interface CutV1ControllerInput {
|
|
376
|
+
/**
|
|
377
|
+
*
|
|
378
|
+
* @type {CutV1Input}
|
|
379
|
+
* @memberof CutV1ControllerInput
|
|
380
|
+
*/
|
|
381
|
+
'input': CutV1Input;
|
|
382
|
+
/**
|
|
383
|
+
*
|
|
384
|
+
* @type {object}
|
|
385
|
+
* @memberof CutV1ControllerInput
|
|
386
|
+
*/
|
|
387
|
+
'metadata'?: object;
|
|
388
|
+
}
|
|
389
|
+
/**
|
|
390
|
+
*
|
|
391
|
+
* @export
|
|
392
|
+
* @interface CutV1Input
|
|
393
|
+
*/
|
|
394
|
+
export interface CutV1Input {
|
|
395
|
+
/**
|
|
396
|
+
*
|
|
397
|
+
* @type {string}
|
|
398
|
+
* @memberof CutV1Input
|
|
399
|
+
*/
|
|
400
|
+
'imageId': string;
|
|
401
|
+
/**
|
|
402
|
+
*
|
|
403
|
+
* @type {string}
|
|
404
|
+
* @memberof CutV1Input
|
|
405
|
+
*/
|
|
406
|
+
'maskImageId': string;
|
|
407
|
+
}
|
|
250
408
|
/**
|
|
251
409
|
*
|
|
252
410
|
* @export
|
|
@@ -271,7 +429,7 @@ export interface GPTV1ControllerInput {
|
|
|
271
429
|
* @type {GPTV1Input}
|
|
272
430
|
* @memberof GPTV1ControllerInput
|
|
273
431
|
*/
|
|
274
|
-
'input'
|
|
432
|
+
'input': GPTV1Input;
|
|
275
433
|
/**
|
|
276
434
|
*
|
|
277
435
|
* @type {object}
|
|
@@ -319,7 +477,7 @@ export interface GenerateV1ControllerInput {
|
|
|
319
477
|
* @type {GenerateV1Input}
|
|
320
478
|
* @memberof GenerateV1ControllerInput
|
|
321
479
|
*/
|
|
322
|
-
'input'
|
|
480
|
+
'input': GenerateV1Input;
|
|
323
481
|
/**
|
|
324
482
|
*
|
|
325
483
|
* @type {object}
|
|
@@ -411,7 +569,7 @@ export interface GenerateV3ControllerInput {
|
|
|
411
569
|
* @type {GenerateV3Input}
|
|
412
570
|
* @memberof GenerateV3ControllerInput
|
|
413
571
|
*/
|
|
414
|
-
'input'
|
|
572
|
+
'input': GenerateV3Input;
|
|
415
573
|
/**
|
|
416
574
|
*
|
|
417
575
|
* @type {object}
|
|
@@ -486,6 +644,19 @@ export interface GenerateV3Input {
|
|
|
486
644
|
*/
|
|
487
645
|
'numInferenceSteps': number;
|
|
488
646
|
}
|
|
647
|
+
/**
|
|
648
|
+
*
|
|
649
|
+
* @export
|
|
650
|
+
* @interface GetCollectionParamsDto
|
|
651
|
+
*/
|
|
652
|
+
export interface GetCollectionParamsDto {
|
|
653
|
+
/**
|
|
654
|
+
*
|
|
655
|
+
* @type {string}
|
|
656
|
+
* @memberof GetCollectionParamsDto
|
|
657
|
+
*/
|
|
658
|
+
'collectionId': string;
|
|
659
|
+
}
|
|
489
660
|
/**
|
|
490
661
|
*
|
|
491
662
|
* @export
|
|
@@ -612,6 +783,7 @@ export declare const ImageEntityKindEnum: {
|
|
|
612
783
|
readonly Image: "image";
|
|
613
784
|
readonly Pose: "pose";
|
|
614
785
|
readonly Storage: "storage";
|
|
786
|
+
readonly Pipeline: "pipeline";
|
|
615
787
|
};
|
|
616
788
|
export type ImageEntityKindEnum = typeof ImageEntityKindEnum[keyof typeof ImageEntityKindEnum];
|
|
617
789
|
/**
|
|
@@ -669,7 +841,7 @@ export interface ImagineV1ControllerInput {
|
|
|
669
841
|
* @type {ImagineV1Input}
|
|
670
842
|
* @memberof ImagineV1ControllerInput
|
|
671
843
|
*/
|
|
672
|
-
'input'
|
|
844
|
+
'input': ImagineV1Input;
|
|
673
845
|
/**
|
|
674
846
|
*
|
|
675
847
|
* @type {object}
|
|
@@ -738,7 +910,7 @@ export interface InpaintV1ControllerInput {
|
|
|
738
910
|
* @type {InpaintV1Input}
|
|
739
911
|
* @memberof InpaintV1ControllerInput
|
|
740
912
|
*/
|
|
741
|
-
'input'
|
|
913
|
+
'input': InpaintV1Input;
|
|
742
914
|
/**
|
|
743
915
|
*
|
|
744
916
|
* @type {object}
|
|
@@ -921,6 +1093,38 @@ export interface ListStacksDto {
|
|
|
921
1093
|
*/
|
|
922
1094
|
'pageInfo': ListCollectionsDtoPageInfo;
|
|
923
1095
|
}
|
|
1096
|
+
/**
|
|
1097
|
+
*
|
|
1098
|
+
* @export
|
|
1099
|
+
* @interface ListStacksParamsDto
|
|
1100
|
+
*/
|
|
1101
|
+
export interface ListStacksParamsDto {
|
|
1102
|
+
/**
|
|
1103
|
+
*
|
|
1104
|
+
* @type {string}
|
|
1105
|
+
* @memberof ListStacksParamsDto
|
|
1106
|
+
*/
|
|
1107
|
+
'orderBy'?: ListStacksParamsDtoOrderByEnum;
|
|
1108
|
+
/**
|
|
1109
|
+
*
|
|
1110
|
+
* @type {number}
|
|
1111
|
+
* @memberof ListStacksParamsDto
|
|
1112
|
+
*/
|
|
1113
|
+
'limit'?: number;
|
|
1114
|
+
/**
|
|
1115
|
+
*
|
|
1116
|
+
* @type {string}
|
|
1117
|
+
* @memberof ListStacksParamsDto
|
|
1118
|
+
*/
|
|
1119
|
+
'cursor'?: string;
|
|
1120
|
+
}
|
|
1121
|
+
export declare const ListStacksParamsDtoOrderByEnum: {
|
|
1122
|
+
readonly CreatedAtAsc: "createdAt_ASC";
|
|
1123
|
+
readonly CreatedAtDesc: "createdAt_DESC";
|
|
1124
|
+
readonly UpdatedAtAsc: "updatedAt_ASC";
|
|
1125
|
+
readonly UpdatedAtDesc: "updatedAt_DESC";
|
|
1126
|
+
};
|
|
1127
|
+
export type ListStacksParamsDtoOrderByEnum = typeof ListStacksParamsDtoOrderByEnum[keyof typeof ListStacksParamsDtoOrderByEnum];
|
|
924
1128
|
/**
|
|
925
1129
|
*
|
|
926
1130
|
* @export
|
|
@@ -932,7 +1136,7 @@ export interface ObjectDetectionV1ControllerInput {
|
|
|
932
1136
|
* @type {ObjectDetectionV1Input}
|
|
933
1137
|
* @memberof ObjectDetectionV1ControllerInput
|
|
934
1138
|
*/
|
|
935
|
-
'input'
|
|
1139
|
+
'input': ObjectDetectionV1Input;
|
|
936
1140
|
/**
|
|
937
1141
|
*
|
|
938
1142
|
* @type {object}
|
|
@@ -1033,6 +1237,7 @@ export declare const OperationEntityKindEnum: {
|
|
|
1033
1237
|
readonly Image: "image";
|
|
1034
1238
|
readonly Pose: "pose";
|
|
1035
1239
|
readonly Storage: "storage";
|
|
1240
|
+
readonly Pipeline: "pipeline";
|
|
1036
1241
|
};
|
|
1037
1242
|
export type OperationEntityKindEnum = typeof OperationEntityKindEnum[keyof typeof OperationEntityKindEnum];
|
|
1038
1243
|
export declare const OperationEntityStatusEnum: {
|
|
@@ -1115,12 +1320,13 @@ export declare const PipelineEntityKindEnum: {
|
|
|
1115
1320
|
readonly Image: "image";
|
|
1116
1321
|
readonly Pose: "pose";
|
|
1117
1322
|
readonly Storage: "storage";
|
|
1323
|
+
readonly Pipeline: "pipeline";
|
|
1118
1324
|
};
|
|
1119
1325
|
export type PipelineEntityKindEnum = typeof PipelineEntityKindEnum[keyof typeof PipelineEntityKindEnum];
|
|
1120
1326
|
export declare const PipelineEntityStatusEnum: {
|
|
1121
1327
|
readonly Pending: "pending";
|
|
1122
|
-
readonly
|
|
1123
|
-
readonly
|
|
1328
|
+
readonly InProgress: "in_progress";
|
|
1329
|
+
readonly Completed: "completed";
|
|
1124
1330
|
readonly Failed: "failed";
|
|
1125
1331
|
};
|
|
1126
1332
|
export type PipelineEntityStatusEnum = typeof PipelineEntityStatusEnum[keyof typeof PipelineEntityStatusEnum];
|
|
@@ -1192,6 +1398,7 @@ export declare const PoseEntityKindEnum: {
|
|
|
1192
1398
|
readonly Image: "image";
|
|
1193
1399
|
readonly Pose: "pose";
|
|
1194
1400
|
readonly Storage: "storage";
|
|
1401
|
+
readonly Pipeline: "pipeline";
|
|
1195
1402
|
};
|
|
1196
1403
|
export type PoseEntityKindEnum = typeof PoseEntityKindEnum[keyof typeof PoseEntityKindEnum];
|
|
1197
1404
|
/**
|
|
@@ -1205,7 +1412,7 @@ export interface PoseEstimationV1ControllerInput {
|
|
|
1205
1412
|
* @type {PoseEstimationV1Input}
|
|
1206
1413
|
* @memberof PoseEstimationV1ControllerInput
|
|
1207
1414
|
*/
|
|
1208
|
-
'input'
|
|
1415
|
+
'input': PoseEstimationV1Input;
|
|
1209
1416
|
/**
|
|
1210
1417
|
*
|
|
1211
1418
|
* @type {object}
|
|
@@ -1314,6 +1521,7 @@ export declare const ResourceEntityKindEnum: {
|
|
|
1314
1521
|
readonly Image: "image";
|
|
1315
1522
|
readonly Pose: "pose";
|
|
1316
1523
|
readonly Storage: "storage";
|
|
1524
|
+
readonly Pipeline: "pipeline";
|
|
1317
1525
|
};
|
|
1318
1526
|
export type ResourceEntityKindEnum = typeof ResourceEntityKindEnum[keyof typeof ResourceEntityKindEnum];
|
|
1319
1527
|
/**
|
|
@@ -1327,7 +1535,7 @@ export interface SegmentAnythingEmbeddingsV1ControllerInput {
|
|
|
1327
1535
|
* @type {SegmentAnythingEmbeddingsV1Input}
|
|
1328
1536
|
* @memberof SegmentAnythingEmbeddingsV1ControllerInput
|
|
1329
1537
|
*/
|
|
1330
|
-
'input'
|
|
1538
|
+
'input': SegmentAnythingEmbeddingsV1Input;
|
|
1331
1539
|
/**
|
|
1332
1540
|
*
|
|
1333
1541
|
* @type {object}
|
|
@@ -1348,6 +1556,44 @@ export interface SegmentAnythingEmbeddingsV1Input {
|
|
|
1348
1556
|
*/
|
|
1349
1557
|
'imageId': string;
|
|
1350
1558
|
}
|
|
1559
|
+
/**
|
|
1560
|
+
*
|
|
1561
|
+
* @export
|
|
1562
|
+
* @interface SegmentAnythingMaskV1ControllerInput
|
|
1563
|
+
*/
|
|
1564
|
+
export interface SegmentAnythingMaskV1ControllerInput {
|
|
1565
|
+
/**
|
|
1566
|
+
*
|
|
1567
|
+
* @type {SegmentAnythingMaskV1Input}
|
|
1568
|
+
* @memberof SegmentAnythingMaskV1ControllerInput
|
|
1569
|
+
*/
|
|
1570
|
+
'input': SegmentAnythingMaskV1Input;
|
|
1571
|
+
/**
|
|
1572
|
+
*
|
|
1573
|
+
* @type {object}
|
|
1574
|
+
* @memberof SegmentAnythingMaskV1ControllerInput
|
|
1575
|
+
*/
|
|
1576
|
+
'metadata'?: object;
|
|
1577
|
+
}
|
|
1578
|
+
/**
|
|
1579
|
+
*
|
|
1580
|
+
* @export
|
|
1581
|
+
* @interface SegmentAnythingMaskV1Input
|
|
1582
|
+
*/
|
|
1583
|
+
export interface SegmentAnythingMaskV1Input {
|
|
1584
|
+
/**
|
|
1585
|
+
*
|
|
1586
|
+
* @type {string}
|
|
1587
|
+
* @memberof SegmentAnythingMaskV1Input
|
|
1588
|
+
*/
|
|
1589
|
+
'imageId': string;
|
|
1590
|
+
/**
|
|
1591
|
+
*
|
|
1592
|
+
* @type {Array<number>}
|
|
1593
|
+
* @memberof SegmentAnythingMaskV1Input
|
|
1594
|
+
*/
|
|
1595
|
+
'box': Array<number>;
|
|
1596
|
+
}
|
|
1351
1597
|
/**
|
|
1352
1598
|
*
|
|
1353
1599
|
* @export
|
|
@@ -1468,6 +1714,7 @@ export declare const StorageEntityKindEnum: {
|
|
|
1468
1714
|
readonly Image: "image";
|
|
1469
1715
|
readonly Pose: "pose";
|
|
1470
1716
|
readonly Storage: "storage";
|
|
1717
|
+
readonly Pipeline: "pipeline";
|
|
1471
1718
|
};
|
|
1472
1719
|
export type StorageEntityKindEnum = typeof StorageEntityKindEnum[keyof typeof StorageEntityKindEnum];
|
|
1473
1720
|
/**
|
|
@@ -1532,7 +1779,7 @@ export interface UpscaleV1ControllerInput {
|
|
|
1532
1779
|
* @type {UpscaleV1Input}
|
|
1533
1780
|
* @memberof UpscaleV1ControllerInput
|
|
1534
1781
|
*/
|
|
1535
|
-
'input'
|
|
1782
|
+
'input': UpscaleV1Input;
|
|
1536
1783
|
/**
|
|
1537
1784
|
*
|
|
1538
1785
|
* @type {object}
|
|
@@ -1811,10 +2058,53 @@ export declare class BalancesApi extends BaseAPI {
|
|
|
1811
2058
|
export declare const CallApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1812
2059
|
/**
|
|
1813
2060
|
*
|
|
2061
|
+
* @param {CreateCollectionParamsDto} createCollectionParamsDto
|
|
2062
|
+
* @param {*} [options] Override http request option.
|
|
2063
|
+
* @throws {RequiredError}
|
|
2064
|
+
*/
|
|
2065
|
+
callControllerCallCollectionsCreateV1: (createCollectionParamsDto: CreateCollectionParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2066
|
+
/**
|
|
2067
|
+
*
|
|
2068
|
+
* @param {GetCollectionParamsDto} getCollectionParamsDto
|
|
2069
|
+
* @param {*} [options] Override http request option.
|
|
2070
|
+
* @throws {RequiredError}
|
|
2071
|
+
*/
|
|
2072
|
+
callControllerCallCollectionsGetV1: (getCollectionParamsDto: GetCollectionParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2073
|
+
/**
|
|
2074
|
+
*
|
|
2075
|
+
* @param {AddItemsToCollectionParamsDto} addItemsToCollectionParamsDto
|
|
2076
|
+
* @param {*} [options] Override http request option.
|
|
2077
|
+
* @throws {RequiredError}
|
|
2078
|
+
*/
|
|
2079
|
+
callControllerCallCollectionsItemsAddV1: (addItemsToCollectionParamsDto: AddItemsToCollectionParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2080
|
+
/**
|
|
2081
|
+
*
|
|
2082
|
+
* @param {AddItemsToCollectionParamsDto} addItemsToCollectionParamsDto
|
|
1814
2083
|
* @param {*} [options] Override http request option.
|
|
1815
2084
|
* @throws {RequiredError}
|
|
1816
2085
|
*/
|
|
1817
|
-
|
|
2086
|
+
callControllerCallCollectionsItemsRemoveV1: (addItemsToCollectionParamsDto: AddItemsToCollectionParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2087
|
+
/**
|
|
2088
|
+
*
|
|
2089
|
+
* @param {GetUrlsForImagesParamsDto} getUrlsForImagesParamsDto
|
|
2090
|
+
* @param {*} [options] Override http request option.
|
|
2091
|
+
* @throws {RequiredError}
|
|
2092
|
+
*/
|
|
2093
|
+
callControllerCallImagesGetUrlsV1: (getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2094
|
+
/**
|
|
2095
|
+
*
|
|
2096
|
+
* @param {CreateStackParamsDto} createStackParamsDto
|
|
2097
|
+
* @param {*} [options] Override http request option.
|
|
2098
|
+
* @throws {RequiredError}
|
|
2099
|
+
*/
|
|
2100
|
+
callControllerCallStacksCreateV1: (createStackParamsDto: CreateStackParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2101
|
+
/**
|
|
2102
|
+
*
|
|
2103
|
+
* @param {ListStacksParamsDto} listStacksParamsDto
|
|
2104
|
+
* @param {*} [options] Override http request option.
|
|
2105
|
+
* @throws {RequiredError}
|
|
2106
|
+
*/
|
|
2107
|
+
callControllerCallStacksListV1: (listStacksParamsDto: ListStacksParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1818
2108
|
};
|
|
1819
2109
|
/**
|
|
1820
2110
|
* CallApi - functional programming interface
|
|
@@ -1823,10 +2113,53 @@ export declare const CallApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
1823
2113
|
export declare const CallApiFp: (configuration?: Configuration) => {
|
|
1824
2114
|
/**
|
|
1825
2115
|
*
|
|
2116
|
+
* @param {CreateCollectionParamsDto} createCollectionParamsDto
|
|
2117
|
+
* @param {*} [options] Override http request option.
|
|
2118
|
+
* @throws {RequiredError}
|
|
2119
|
+
*/
|
|
2120
|
+
callControllerCallCollectionsCreateV1(createCollectionParamsDto: CreateCollectionParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CollectionEntity>>;
|
|
2121
|
+
/**
|
|
2122
|
+
*
|
|
2123
|
+
* @param {GetCollectionParamsDto} getCollectionParamsDto
|
|
1826
2124
|
* @param {*} [options] Override http request option.
|
|
1827
2125
|
* @throws {RequiredError}
|
|
1828
2126
|
*/
|
|
1829
|
-
|
|
2127
|
+
callControllerCallCollectionsGetV1(getCollectionParamsDto: GetCollectionParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CollectionEntity>>;
|
|
2128
|
+
/**
|
|
2129
|
+
*
|
|
2130
|
+
* @param {AddItemsToCollectionParamsDto} addItemsToCollectionParamsDto
|
|
2131
|
+
* @param {*} [options] Override http request option.
|
|
2132
|
+
* @throws {RequiredError}
|
|
2133
|
+
*/
|
|
2134
|
+
callControllerCallCollectionsItemsAddV1(addItemsToCollectionParamsDto: AddItemsToCollectionParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
2135
|
+
/**
|
|
2136
|
+
*
|
|
2137
|
+
* @param {AddItemsToCollectionParamsDto} addItemsToCollectionParamsDto
|
|
2138
|
+
* @param {*} [options] Override http request option.
|
|
2139
|
+
* @throws {RequiredError}
|
|
2140
|
+
*/
|
|
2141
|
+
callControllerCallCollectionsItemsRemoveV1(addItemsToCollectionParamsDto: AddItemsToCollectionParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
2142
|
+
/**
|
|
2143
|
+
*
|
|
2144
|
+
* @param {GetUrlsForImagesParamsDto} getUrlsForImagesParamsDto
|
|
2145
|
+
* @param {*} [options] Override http request option.
|
|
2146
|
+
* @throws {RequiredError}
|
|
2147
|
+
*/
|
|
2148
|
+
callControllerCallImagesGetUrlsV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ImageUrlResponseDto>>>;
|
|
2149
|
+
/**
|
|
2150
|
+
*
|
|
2151
|
+
* @param {CreateStackParamsDto} createStackParamsDto
|
|
2152
|
+
* @param {*} [options] Override http request option.
|
|
2153
|
+
* @throws {RequiredError}
|
|
2154
|
+
*/
|
|
2155
|
+
callControllerCallStacksCreateV1(createStackParamsDto: CreateStackParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StackEntity>>;
|
|
2156
|
+
/**
|
|
2157
|
+
*
|
|
2158
|
+
* @param {ListStacksParamsDto} listStacksParamsDto
|
|
2159
|
+
* @param {*} [options] Override http request option.
|
|
2160
|
+
* @throws {RequiredError}
|
|
2161
|
+
*/
|
|
2162
|
+
callControllerCallStacksListV1(listStacksParamsDto: ListStacksParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListStacksDto>>;
|
|
1830
2163
|
};
|
|
1831
2164
|
/**
|
|
1832
2165
|
* CallApi - factory interface
|
|
@@ -1835,10 +2168,53 @@ export declare const CallApiFp: (configuration?: Configuration) => {
|
|
|
1835
2168
|
export declare const CallApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1836
2169
|
/**
|
|
1837
2170
|
*
|
|
2171
|
+
* @param {CreateCollectionParamsDto} createCollectionParamsDto
|
|
2172
|
+
* @param {*} [options] Override http request option.
|
|
2173
|
+
* @throws {RequiredError}
|
|
2174
|
+
*/
|
|
2175
|
+
callControllerCallCollectionsCreateV1(createCollectionParamsDto: CreateCollectionParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<CollectionEntity>;
|
|
2176
|
+
/**
|
|
2177
|
+
*
|
|
2178
|
+
* @param {GetCollectionParamsDto} getCollectionParamsDto
|
|
2179
|
+
* @param {*} [options] Override http request option.
|
|
2180
|
+
* @throws {RequiredError}
|
|
2181
|
+
*/
|
|
2182
|
+
callControllerCallCollectionsGetV1(getCollectionParamsDto: GetCollectionParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<CollectionEntity>;
|
|
2183
|
+
/**
|
|
2184
|
+
*
|
|
2185
|
+
* @param {AddItemsToCollectionParamsDto} addItemsToCollectionParamsDto
|
|
2186
|
+
* @param {*} [options] Override http request option.
|
|
2187
|
+
* @throws {RequiredError}
|
|
2188
|
+
*/
|
|
2189
|
+
callControllerCallCollectionsItemsAddV1(addItemsToCollectionParamsDto: AddItemsToCollectionParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
2190
|
+
/**
|
|
2191
|
+
*
|
|
2192
|
+
* @param {AddItemsToCollectionParamsDto} addItemsToCollectionParamsDto
|
|
1838
2193
|
* @param {*} [options] Override http request option.
|
|
1839
2194
|
* @throws {RequiredError}
|
|
1840
2195
|
*/
|
|
1841
|
-
|
|
2196
|
+
callControllerCallCollectionsItemsRemoveV1(addItemsToCollectionParamsDto: AddItemsToCollectionParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
2197
|
+
/**
|
|
2198
|
+
*
|
|
2199
|
+
* @param {GetUrlsForImagesParamsDto} getUrlsForImagesParamsDto
|
|
2200
|
+
* @param {*} [options] Override http request option.
|
|
2201
|
+
* @throws {RequiredError}
|
|
2202
|
+
*/
|
|
2203
|
+
callControllerCallImagesGetUrlsV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<ImageUrlResponseDto>>;
|
|
2204
|
+
/**
|
|
2205
|
+
*
|
|
2206
|
+
* @param {CreateStackParamsDto} createStackParamsDto
|
|
2207
|
+
* @param {*} [options] Override http request option.
|
|
2208
|
+
* @throws {RequiredError}
|
|
2209
|
+
*/
|
|
2210
|
+
callControllerCallStacksCreateV1(createStackParamsDto: CreateStackParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<StackEntity>;
|
|
2211
|
+
/**
|
|
2212
|
+
*
|
|
2213
|
+
* @param {ListStacksParamsDto} listStacksParamsDto
|
|
2214
|
+
* @param {*} [options] Override http request option.
|
|
2215
|
+
* @throws {RequiredError}
|
|
2216
|
+
*/
|
|
2217
|
+
callControllerCallStacksListV1(listStacksParamsDto: ListStacksParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<ListStacksDto>;
|
|
1842
2218
|
};
|
|
1843
2219
|
/**
|
|
1844
2220
|
* CallApi - object-oriented interface
|
|
@@ -1849,11 +2225,60 @@ export declare const CallApiFactory: (configuration?: Configuration, basePath?:
|
|
|
1849
2225
|
export declare class CallApi extends BaseAPI {
|
|
1850
2226
|
/**
|
|
1851
2227
|
*
|
|
2228
|
+
* @param {CreateCollectionParamsDto} createCollectionParamsDto
|
|
2229
|
+
* @param {*} [options] Override http request option.
|
|
2230
|
+
* @throws {RequiredError}
|
|
2231
|
+
* @memberof CallApi
|
|
2232
|
+
*/
|
|
2233
|
+
callControllerCallCollectionsCreateV1(createCollectionParamsDto: CreateCollectionParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CollectionEntity, any>>;
|
|
2234
|
+
/**
|
|
2235
|
+
*
|
|
2236
|
+
* @param {GetCollectionParamsDto} getCollectionParamsDto
|
|
1852
2237
|
* @param {*} [options] Override http request option.
|
|
1853
2238
|
* @throws {RequiredError}
|
|
1854
2239
|
* @memberof CallApi
|
|
1855
2240
|
*/
|
|
1856
|
-
|
|
2241
|
+
callControllerCallCollectionsGetV1(getCollectionParamsDto: GetCollectionParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CollectionEntity, any>>;
|
|
2242
|
+
/**
|
|
2243
|
+
*
|
|
2244
|
+
* @param {AddItemsToCollectionParamsDto} addItemsToCollectionParamsDto
|
|
2245
|
+
* @param {*} [options] Override http request option.
|
|
2246
|
+
* @throws {RequiredError}
|
|
2247
|
+
* @memberof CallApi
|
|
2248
|
+
*/
|
|
2249
|
+
callControllerCallCollectionsItemsAddV1(addItemsToCollectionParamsDto: AddItemsToCollectionParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2250
|
+
/**
|
|
2251
|
+
*
|
|
2252
|
+
* @param {AddItemsToCollectionParamsDto} addItemsToCollectionParamsDto
|
|
2253
|
+
* @param {*} [options] Override http request option.
|
|
2254
|
+
* @throws {RequiredError}
|
|
2255
|
+
* @memberof CallApi
|
|
2256
|
+
*/
|
|
2257
|
+
callControllerCallCollectionsItemsRemoveV1(addItemsToCollectionParamsDto: AddItemsToCollectionParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2258
|
+
/**
|
|
2259
|
+
*
|
|
2260
|
+
* @param {GetUrlsForImagesParamsDto} getUrlsForImagesParamsDto
|
|
2261
|
+
* @param {*} [options] Override http request option.
|
|
2262
|
+
* @throws {RequiredError}
|
|
2263
|
+
* @memberof CallApi
|
|
2264
|
+
*/
|
|
2265
|
+
callControllerCallImagesGetUrlsV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ImageUrlResponseDto[], any>>;
|
|
2266
|
+
/**
|
|
2267
|
+
*
|
|
2268
|
+
* @param {CreateStackParamsDto} createStackParamsDto
|
|
2269
|
+
* @param {*} [options] Override http request option.
|
|
2270
|
+
* @throws {RequiredError}
|
|
2271
|
+
* @memberof CallApi
|
|
2272
|
+
*/
|
|
2273
|
+
callControllerCallStacksCreateV1(createStackParamsDto: CreateStackParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StackEntity, any>>;
|
|
2274
|
+
/**
|
|
2275
|
+
*
|
|
2276
|
+
* @param {ListStacksParamsDto} listStacksParamsDto
|
|
2277
|
+
* @param {*} [options] Override http request option.
|
|
2278
|
+
* @throws {RequiredError}
|
|
2279
|
+
* @memberof CallApi
|
|
2280
|
+
*/
|
|
2281
|
+
callControllerCallStacksListV1(listStacksParamsDto: ListStacksParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListStacksDto, any>>;
|
|
1857
2282
|
}
|
|
1858
2283
|
/**
|
|
1859
2284
|
* CollectionsApi - axios parameter creator
|
|
@@ -2150,6 +2575,7 @@ export declare const CollectionsControllerListItemsV1KindEnum: {
|
|
|
2150
2575
|
readonly Image: "image";
|
|
2151
2576
|
readonly Pose: "pose";
|
|
2152
2577
|
readonly Storage: "storage";
|
|
2578
|
+
readonly Pipeline: "pipeline";
|
|
2153
2579
|
};
|
|
2154
2580
|
export type CollectionsControllerListItemsV1KindEnum = typeof CollectionsControllerListItemsV1KindEnum[keyof typeof CollectionsControllerListItemsV1KindEnum];
|
|
2155
2581
|
/**
|
|
@@ -2526,6 +2952,20 @@ export declare const OperationsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
2526
2952
|
* @throws {RequiredError}
|
|
2527
2953
|
*/
|
|
2528
2954
|
operationsControllerListOperationsV1: (orderBy?: OperationsControllerListOperationsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2955
|
+
/**
|
|
2956
|
+
*
|
|
2957
|
+
* @param {CompositeV1ControllerInput} compositeV1ControllerInput
|
|
2958
|
+
* @param {*} [options] Override http request option.
|
|
2959
|
+
* @throws {RequiredError}
|
|
2960
|
+
*/
|
|
2961
|
+
operationsControllerRunCompositeV1V1: (compositeV1ControllerInput: CompositeV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2962
|
+
/**
|
|
2963
|
+
*
|
|
2964
|
+
* @param {CutV1ControllerInput} cutV1ControllerInput
|
|
2965
|
+
* @param {*} [options] Override http request option.
|
|
2966
|
+
* @throws {RequiredError}
|
|
2967
|
+
*/
|
|
2968
|
+
operationsControllerRunCutV1V1: (cutV1ControllerInput: CutV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2529
2969
|
/**
|
|
2530
2970
|
*
|
|
2531
2971
|
* @param {GenerateV1ControllerInput} generateV1ControllerInput
|
|
@@ -2582,6 +3022,13 @@ export declare const OperationsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
2582
3022
|
* @throws {RequiredError}
|
|
2583
3023
|
*/
|
|
2584
3024
|
operationsControllerRunSegmentAnythingEmbeddingsV1V1: (segmentAnythingEmbeddingsV1ControllerInput: SegmentAnythingEmbeddingsV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3025
|
+
/**
|
|
3026
|
+
*
|
|
3027
|
+
* @param {SegmentAnythingMaskV1ControllerInput} segmentAnythingMaskV1ControllerInput
|
|
3028
|
+
* @param {*} [options] Override http request option.
|
|
3029
|
+
* @throws {RequiredError}
|
|
3030
|
+
*/
|
|
3031
|
+
operationsControllerRunSegmentAnythingMaskV1V1: (segmentAnythingMaskV1ControllerInput: SegmentAnythingMaskV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2585
3032
|
/**
|
|
2586
3033
|
*
|
|
2587
3034
|
* @param {UpscaleV1ControllerInput} upscaleV1ControllerInput
|
|
@@ -2626,6 +3073,20 @@ export declare const OperationsApiFp: (configuration?: Configuration) => {
|
|
|
2626
3073
|
* @throws {RequiredError}
|
|
2627
3074
|
*/
|
|
2628
3075
|
operationsControllerListOperationsV1(orderBy?: OperationsControllerListOperationsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListOperationsDto>>;
|
|
3076
|
+
/**
|
|
3077
|
+
*
|
|
3078
|
+
* @param {CompositeV1ControllerInput} compositeV1ControllerInput
|
|
3079
|
+
* @param {*} [options] Override http request option.
|
|
3080
|
+
* @throws {RequiredError}
|
|
3081
|
+
*/
|
|
3082
|
+
operationsControllerRunCompositeV1V1(compositeV1ControllerInput: CompositeV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
|
|
3083
|
+
/**
|
|
3084
|
+
*
|
|
3085
|
+
* @param {CutV1ControllerInput} cutV1ControllerInput
|
|
3086
|
+
* @param {*} [options] Override http request option.
|
|
3087
|
+
* @throws {RequiredError}
|
|
3088
|
+
*/
|
|
3089
|
+
operationsControllerRunCutV1V1(cutV1ControllerInput: CutV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
|
|
2629
3090
|
/**
|
|
2630
3091
|
*
|
|
2631
3092
|
* @param {GenerateV1ControllerInput} generateV1ControllerInput
|
|
@@ -2682,6 +3143,13 @@ export declare const OperationsApiFp: (configuration?: Configuration) => {
|
|
|
2682
3143
|
* @throws {RequiredError}
|
|
2683
3144
|
*/
|
|
2684
3145
|
operationsControllerRunSegmentAnythingEmbeddingsV1V1(segmentAnythingEmbeddingsV1ControllerInput: SegmentAnythingEmbeddingsV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
|
|
3146
|
+
/**
|
|
3147
|
+
*
|
|
3148
|
+
* @param {SegmentAnythingMaskV1ControllerInput} segmentAnythingMaskV1ControllerInput
|
|
3149
|
+
* @param {*} [options] Override http request option.
|
|
3150
|
+
* @throws {RequiredError}
|
|
3151
|
+
*/
|
|
3152
|
+
operationsControllerRunSegmentAnythingMaskV1V1(segmentAnythingMaskV1ControllerInput: SegmentAnythingMaskV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
|
|
2685
3153
|
/**
|
|
2686
3154
|
*
|
|
2687
3155
|
* @param {UpscaleV1ControllerInput} upscaleV1ControllerInput
|
|
@@ -2726,6 +3194,20 @@ export declare const OperationsApiFactory: (configuration?: Configuration, baseP
|
|
|
2726
3194
|
* @throws {RequiredError}
|
|
2727
3195
|
*/
|
|
2728
3196
|
operationsControllerListOperationsV1(orderBy?: OperationsControllerListOperationsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListOperationsDto>;
|
|
3197
|
+
/**
|
|
3198
|
+
*
|
|
3199
|
+
* @param {CompositeV1ControllerInput} compositeV1ControllerInput
|
|
3200
|
+
* @param {*} [options] Override http request option.
|
|
3201
|
+
* @throws {RequiredError}
|
|
3202
|
+
*/
|
|
3203
|
+
operationsControllerRunCompositeV1V1(compositeV1ControllerInput: CompositeV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
|
|
3204
|
+
/**
|
|
3205
|
+
*
|
|
3206
|
+
* @param {CutV1ControllerInput} cutV1ControllerInput
|
|
3207
|
+
* @param {*} [options] Override http request option.
|
|
3208
|
+
* @throws {RequiredError}
|
|
3209
|
+
*/
|
|
3210
|
+
operationsControllerRunCutV1V1(cutV1ControllerInput: CutV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
|
|
2729
3211
|
/**
|
|
2730
3212
|
*
|
|
2731
3213
|
* @param {GenerateV1ControllerInput} generateV1ControllerInput
|
|
@@ -2782,6 +3264,13 @@ export declare const OperationsApiFactory: (configuration?: Configuration, baseP
|
|
|
2782
3264
|
* @throws {RequiredError}
|
|
2783
3265
|
*/
|
|
2784
3266
|
operationsControllerRunSegmentAnythingEmbeddingsV1V1(segmentAnythingEmbeddingsV1ControllerInput: SegmentAnythingEmbeddingsV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
|
|
3267
|
+
/**
|
|
3268
|
+
*
|
|
3269
|
+
* @param {SegmentAnythingMaskV1ControllerInput} segmentAnythingMaskV1ControllerInput
|
|
3270
|
+
* @param {*} [options] Override http request option.
|
|
3271
|
+
* @throws {RequiredError}
|
|
3272
|
+
*/
|
|
3273
|
+
operationsControllerRunSegmentAnythingMaskV1V1(segmentAnythingMaskV1ControllerInput: SegmentAnythingMaskV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
|
|
2785
3274
|
/**
|
|
2786
3275
|
*
|
|
2787
3276
|
* @param {UpscaleV1ControllerInput} upscaleV1ControllerInput
|
|
@@ -2831,6 +3320,22 @@ export declare class OperationsApi extends BaseAPI {
|
|
|
2831
3320
|
* @memberof OperationsApi
|
|
2832
3321
|
*/
|
|
2833
3322
|
operationsControllerListOperationsV1(orderBy?: OperationsControllerListOperationsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListOperationsDto, any>>;
|
|
3323
|
+
/**
|
|
3324
|
+
*
|
|
3325
|
+
* @param {CompositeV1ControllerInput} compositeV1ControllerInput
|
|
3326
|
+
* @param {*} [options] Override http request option.
|
|
3327
|
+
* @throws {RequiredError}
|
|
3328
|
+
* @memberof OperationsApi
|
|
3329
|
+
*/
|
|
3330
|
+
operationsControllerRunCompositeV1V1(compositeV1ControllerInput: CompositeV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
|
|
3331
|
+
/**
|
|
3332
|
+
*
|
|
3333
|
+
* @param {CutV1ControllerInput} cutV1ControllerInput
|
|
3334
|
+
* @param {*} [options] Override http request option.
|
|
3335
|
+
* @throws {RequiredError}
|
|
3336
|
+
* @memberof OperationsApi
|
|
3337
|
+
*/
|
|
3338
|
+
operationsControllerRunCutV1V1(cutV1ControllerInput: CutV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
|
|
2834
3339
|
/**
|
|
2835
3340
|
*
|
|
2836
3341
|
* @param {GenerateV1ControllerInput} generateV1ControllerInput
|
|
@@ -2895,6 +3400,14 @@ export declare class OperationsApi extends BaseAPI {
|
|
|
2895
3400
|
* @memberof OperationsApi
|
|
2896
3401
|
*/
|
|
2897
3402
|
operationsControllerRunSegmentAnythingEmbeddingsV1V1(segmentAnythingEmbeddingsV1ControllerInput: SegmentAnythingEmbeddingsV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
|
|
3403
|
+
/**
|
|
3404
|
+
*
|
|
3405
|
+
* @param {SegmentAnythingMaskV1ControllerInput} segmentAnythingMaskV1ControllerInput
|
|
3406
|
+
* @param {*} [options] Override http request option.
|
|
3407
|
+
* @throws {RequiredError}
|
|
3408
|
+
* @memberof OperationsApi
|
|
3409
|
+
*/
|
|
3410
|
+
operationsControllerRunSegmentAnythingMaskV1V1(segmentAnythingMaskV1ControllerInput: SegmentAnythingMaskV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
|
|
2898
3411
|
/**
|
|
2899
3412
|
*
|
|
2900
3413
|
* @param {UpscaleV1ControllerInput} upscaleV1ControllerInput
|
|
@@ -2942,19 +3455,6 @@ export declare const PipelinesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
2942
3455
|
* @throws {RequiredError}
|
|
2943
3456
|
*/
|
|
2944
3457
|
pipelinesControllerGetPipelineV1: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2945
|
-
/**
|
|
2946
|
-
*
|
|
2947
|
-
* @param {*} [options] Override http request option.
|
|
2948
|
-
* @throws {RequiredError}
|
|
2949
|
-
*/
|
|
2950
|
-
pipelinesControllerListPipelinesV1: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2951
|
-
/**
|
|
2952
|
-
*
|
|
2953
|
-
* @param {string} id
|
|
2954
|
-
* @param {*} [options] Override http request option.
|
|
2955
|
-
* @throws {RequiredError}
|
|
2956
|
-
*/
|
|
2957
|
-
pipelinesControllerUpdatePipelineV1: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2958
3458
|
};
|
|
2959
3459
|
/**
|
|
2960
3460
|
* PipelinesApi - functional programming interface
|
|
@@ -2975,19 +3475,6 @@ export declare const PipelinesApiFp: (configuration?: Configuration) => {
|
|
|
2975
3475
|
* @throws {RequiredError}
|
|
2976
3476
|
*/
|
|
2977
3477
|
pipelinesControllerGetPipelineV1(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
2978
|
-
/**
|
|
2979
|
-
*
|
|
2980
|
-
* @param {*} [options] Override http request option.
|
|
2981
|
-
* @throws {RequiredError}
|
|
2982
|
-
*/
|
|
2983
|
-
pipelinesControllerListPipelinesV1(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<object>>>;
|
|
2984
|
-
/**
|
|
2985
|
-
*
|
|
2986
|
-
* @param {string} id
|
|
2987
|
-
* @param {*} [options] Override http request option.
|
|
2988
|
-
* @throws {RequiredError}
|
|
2989
|
-
*/
|
|
2990
|
-
pipelinesControllerUpdatePipelineV1(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
2991
3478
|
};
|
|
2992
3479
|
/**
|
|
2993
3480
|
* PipelinesApi - factory interface
|
|
@@ -3008,19 +3495,6 @@ export declare const PipelinesApiFactory: (configuration?: Configuration, basePa
|
|
|
3008
3495
|
* @throws {RequiredError}
|
|
3009
3496
|
*/
|
|
3010
3497
|
pipelinesControllerGetPipelineV1(id: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
3011
|
-
/**
|
|
3012
|
-
*
|
|
3013
|
-
* @param {*} [options] Override http request option.
|
|
3014
|
-
* @throws {RequiredError}
|
|
3015
|
-
*/
|
|
3016
|
-
pipelinesControllerListPipelinesV1(options?: RawAxiosRequestConfig): AxiosPromise<Array<object>>;
|
|
3017
|
-
/**
|
|
3018
|
-
*
|
|
3019
|
-
* @param {string} id
|
|
3020
|
-
* @param {*} [options] Override http request option.
|
|
3021
|
-
* @throws {RequiredError}
|
|
3022
|
-
*/
|
|
3023
|
-
pipelinesControllerUpdatePipelineV1(id: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
3024
3498
|
};
|
|
3025
3499
|
/**
|
|
3026
3500
|
* PipelinesApi - object-oriented interface
|
|
@@ -3045,21 +3519,6 @@ export declare class PipelinesApi extends BaseAPI {
|
|
|
3045
3519
|
* @memberof PipelinesApi
|
|
3046
3520
|
*/
|
|
3047
3521
|
pipelinesControllerGetPipelineV1(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
3048
|
-
/**
|
|
3049
|
-
*
|
|
3050
|
-
* @param {*} [options] Override http request option.
|
|
3051
|
-
* @throws {RequiredError}
|
|
3052
|
-
* @memberof PipelinesApi
|
|
3053
|
-
*/
|
|
3054
|
-
pipelinesControllerListPipelinesV1(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object[], any>>;
|
|
3055
|
-
/**
|
|
3056
|
-
*
|
|
3057
|
-
* @param {string} id
|
|
3058
|
-
* @param {*} [options] Override http request option.
|
|
3059
|
-
* @throws {RequiredError}
|
|
3060
|
-
* @memberof PipelinesApi
|
|
3061
|
-
*/
|
|
3062
|
-
pipelinesControllerUpdatePipelineV1(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
3063
3522
|
}
|
|
3064
3523
|
/**
|
|
3065
3524
|
* PosesApi - axios parameter creator
|