@hautechai/sdk 0.0.12 → 0.0.14
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 +627 -73
- package/dist/autogenerated/api.js +751 -102
- package/dist/autogenerated/permissions.d.ts +76 -0
- package/dist/autogenerated/permissions.js +1 -0
- package/dist/sdk/index.d.ts +31 -0
- package/dist/sdk/index.js +2 -0
- package/dist/sdk/pipelines/index.d.ts +35 -0
- package/dist/sdk/pipelines/index.js +53 -0
- package/dist/token/index.d.ts +1 -1
- package/dist/token/index.js +17 -2
- package/dist/token/permissions.d.ts +1 -1
- package/dist/types.d.ts +0 -42
- package/dist/types.js +2 -0
- package/package.json +2 -1
- package/scripts/generate-permissions.js +54 -0
- package/scripts/generate.sh +4 -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}
|
|
@@ -362,31 +520,31 @@ export interface GenerateV1Input {
|
|
|
362
520
|
* @type {number}
|
|
363
521
|
* @memberof GenerateV1Input
|
|
364
522
|
*/
|
|
365
|
-
'imageWeight'
|
|
523
|
+
'imageWeight'?: number;
|
|
366
524
|
/**
|
|
367
525
|
*
|
|
368
526
|
* @type {string}
|
|
369
527
|
* @memberof GenerateV1Input
|
|
370
528
|
*/
|
|
371
|
-
'negativePrompt'
|
|
529
|
+
'negativePrompt'?: string;
|
|
372
530
|
/**
|
|
373
531
|
*
|
|
374
532
|
* @type {number}
|
|
375
533
|
* @memberof GenerateV1Input
|
|
376
534
|
*/
|
|
377
|
-
'inferenceSteps'
|
|
535
|
+
'inferenceSteps'?: number;
|
|
378
536
|
/**
|
|
379
537
|
*
|
|
380
538
|
* @type {number}
|
|
381
539
|
* @memberof GenerateV1Input
|
|
382
540
|
*/
|
|
383
|
-
'guidanceScale'
|
|
541
|
+
'guidanceScale'?: number;
|
|
384
542
|
/**
|
|
385
543
|
*
|
|
386
544
|
* @type {number}
|
|
387
545
|
* @memberof GenerateV1Input
|
|
388
546
|
*/
|
|
389
|
-
'strength'
|
|
547
|
+
'strength'?: number;
|
|
390
548
|
}
|
|
391
549
|
export declare const GenerateV1InputAspectRatioEnum: {
|
|
392
550
|
readonly _11: "1:1";
|
|
@@ -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}
|
|
@@ -472,19 +630,32 @@ export interface GenerateV3Input {
|
|
|
472
630
|
* @type {number}
|
|
473
631
|
* @memberof GenerateV3Input
|
|
474
632
|
*/
|
|
475
|
-
'textGuidanceScale'
|
|
633
|
+
'textGuidanceScale'?: number;
|
|
476
634
|
/**
|
|
477
635
|
*
|
|
478
636
|
* @type {number}
|
|
479
637
|
* @memberof GenerateV3Input
|
|
480
638
|
*/
|
|
481
|
-
'imageGuidanceScale'
|
|
639
|
+
'imageGuidanceScale'?: number;
|
|
482
640
|
/**
|
|
483
641
|
*
|
|
484
642
|
* @type {number}
|
|
485
643
|
* @memberof GenerateV3Input
|
|
486
644
|
*/
|
|
487
|
-
'numInferenceSteps'
|
|
645
|
+
'numInferenceSteps'?: number;
|
|
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;
|
|
488
659
|
}
|
|
489
660
|
/**
|
|
490
661
|
*
|
|
@@ -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}
|
|
@@ -769,7 +941,7 @@ export interface InpaintV1Input {
|
|
|
769
941
|
* @type {number}
|
|
770
942
|
* @memberof InpaintV1Input
|
|
771
943
|
*/
|
|
772
|
-
'maskSpread'
|
|
944
|
+
'maskSpread'?: number;
|
|
773
945
|
/**
|
|
774
946
|
*
|
|
775
947
|
* @type {string}
|
|
@@ -805,13 +977,13 @@ export interface InpaintV1Input {
|
|
|
805
977
|
* @type {number}
|
|
806
978
|
* @memberof InpaintV1Input
|
|
807
979
|
*/
|
|
808
|
-
'numInferenceSteps'
|
|
980
|
+
'numInferenceSteps'?: number;
|
|
809
981
|
/**
|
|
810
982
|
*
|
|
811
983
|
* @type {number}
|
|
812
984
|
* @memberof InpaintV1Input
|
|
813
985
|
*/
|
|
814
|
-
'guidanceScale'
|
|
986
|
+
'guidanceScale'?: number;
|
|
815
987
|
}
|
|
816
988
|
/**
|
|
817
989
|
*
|
|
@@ -886,19 +1058,19 @@ export interface ListOperationsDto {
|
|
|
886
1058
|
/**
|
|
887
1059
|
*
|
|
888
1060
|
* @export
|
|
889
|
-
* @interface
|
|
1061
|
+
* @interface ListPipelinesDto
|
|
890
1062
|
*/
|
|
891
|
-
export interface
|
|
1063
|
+
export interface ListPipelinesDto {
|
|
892
1064
|
/**
|
|
893
1065
|
*
|
|
894
|
-
* @type {Array<
|
|
895
|
-
* @memberof
|
|
1066
|
+
* @type {Array<PipelineEntity>}
|
|
1067
|
+
* @memberof ListPipelinesDto
|
|
896
1068
|
*/
|
|
897
|
-
'data': Array<
|
|
1069
|
+
'data': Array<PipelineEntity>;
|
|
898
1070
|
/**
|
|
899
1071
|
*
|
|
900
1072
|
* @type {ListCollectionsDtoPageInfo}
|
|
901
|
-
* @memberof
|
|
1073
|
+
* @memberof ListPipelinesDto
|
|
902
1074
|
*/
|
|
903
1075
|
'pageInfo': ListCollectionsDtoPageInfo;
|
|
904
1076
|
}
|
|
@@ -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,12 @@ 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 Success: "success";
|
|
1328
|
+
readonly Completed: "completed";
|
|
1124
1329
|
readonly Failed: "failed";
|
|
1125
1330
|
};
|
|
1126
1331
|
export type PipelineEntityStatusEnum = typeof PipelineEntityStatusEnum[keyof typeof PipelineEntityStatusEnum];
|
|
@@ -1192,6 +1397,7 @@ export declare const PoseEntityKindEnum: {
|
|
|
1192
1397
|
readonly Image: "image";
|
|
1193
1398
|
readonly Pose: "pose";
|
|
1194
1399
|
readonly Storage: "storage";
|
|
1400
|
+
readonly Pipeline: "pipeline";
|
|
1195
1401
|
};
|
|
1196
1402
|
export type PoseEntityKindEnum = typeof PoseEntityKindEnum[keyof typeof PoseEntityKindEnum];
|
|
1197
1403
|
/**
|
|
@@ -1205,7 +1411,7 @@ export interface PoseEstimationV1ControllerInput {
|
|
|
1205
1411
|
* @type {PoseEstimationV1Input}
|
|
1206
1412
|
* @memberof PoseEstimationV1ControllerInput
|
|
1207
1413
|
*/
|
|
1208
|
-
'input'
|
|
1414
|
+
'input': PoseEstimationV1Input;
|
|
1209
1415
|
/**
|
|
1210
1416
|
*
|
|
1211
1417
|
* @type {object}
|
|
@@ -1314,6 +1520,7 @@ export declare const ResourceEntityKindEnum: {
|
|
|
1314
1520
|
readonly Image: "image";
|
|
1315
1521
|
readonly Pose: "pose";
|
|
1316
1522
|
readonly Storage: "storage";
|
|
1523
|
+
readonly Pipeline: "pipeline";
|
|
1317
1524
|
};
|
|
1318
1525
|
export type ResourceEntityKindEnum = typeof ResourceEntityKindEnum[keyof typeof ResourceEntityKindEnum];
|
|
1319
1526
|
/**
|
|
@@ -1327,7 +1534,7 @@ export interface SegmentAnythingEmbeddingsV1ControllerInput {
|
|
|
1327
1534
|
* @type {SegmentAnythingEmbeddingsV1Input}
|
|
1328
1535
|
* @memberof SegmentAnythingEmbeddingsV1ControllerInput
|
|
1329
1536
|
*/
|
|
1330
|
-
'input'
|
|
1537
|
+
'input': SegmentAnythingEmbeddingsV1Input;
|
|
1331
1538
|
/**
|
|
1332
1539
|
*
|
|
1333
1540
|
* @type {object}
|
|
@@ -1348,6 +1555,44 @@ export interface SegmentAnythingEmbeddingsV1Input {
|
|
|
1348
1555
|
*/
|
|
1349
1556
|
'imageId': string;
|
|
1350
1557
|
}
|
|
1558
|
+
/**
|
|
1559
|
+
*
|
|
1560
|
+
* @export
|
|
1561
|
+
* @interface SegmentAnythingMaskV1ControllerInput
|
|
1562
|
+
*/
|
|
1563
|
+
export interface SegmentAnythingMaskV1ControllerInput {
|
|
1564
|
+
/**
|
|
1565
|
+
*
|
|
1566
|
+
* @type {SegmentAnythingMaskV1Input}
|
|
1567
|
+
* @memberof SegmentAnythingMaskV1ControllerInput
|
|
1568
|
+
*/
|
|
1569
|
+
'input': SegmentAnythingMaskV1Input;
|
|
1570
|
+
/**
|
|
1571
|
+
*
|
|
1572
|
+
* @type {object}
|
|
1573
|
+
* @memberof SegmentAnythingMaskV1ControllerInput
|
|
1574
|
+
*/
|
|
1575
|
+
'metadata'?: object;
|
|
1576
|
+
}
|
|
1577
|
+
/**
|
|
1578
|
+
*
|
|
1579
|
+
* @export
|
|
1580
|
+
* @interface SegmentAnythingMaskV1Input
|
|
1581
|
+
*/
|
|
1582
|
+
export interface SegmentAnythingMaskV1Input {
|
|
1583
|
+
/**
|
|
1584
|
+
*
|
|
1585
|
+
* @type {string}
|
|
1586
|
+
* @memberof SegmentAnythingMaskV1Input
|
|
1587
|
+
*/
|
|
1588
|
+
'imageId': string;
|
|
1589
|
+
/**
|
|
1590
|
+
*
|
|
1591
|
+
* @type {Array<number>}
|
|
1592
|
+
* @memberof SegmentAnythingMaskV1Input
|
|
1593
|
+
*/
|
|
1594
|
+
'box': Array<number>;
|
|
1595
|
+
}
|
|
1351
1596
|
/**
|
|
1352
1597
|
*
|
|
1353
1598
|
* @export
|
|
@@ -1468,6 +1713,7 @@ export declare const StorageEntityKindEnum: {
|
|
|
1468
1713
|
readonly Image: "image";
|
|
1469
1714
|
readonly Pose: "pose";
|
|
1470
1715
|
readonly Storage: "storage";
|
|
1716
|
+
readonly Pipeline: "pipeline";
|
|
1471
1717
|
};
|
|
1472
1718
|
export type StorageEntityKindEnum = typeof StorageEntityKindEnum[keyof typeof StorageEntityKindEnum];
|
|
1473
1719
|
/**
|
|
@@ -1532,7 +1778,7 @@ export interface UpscaleV1ControllerInput {
|
|
|
1532
1778
|
* @type {UpscaleV1Input}
|
|
1533
1779
|
* @memberof UpscaleV1ControllerInput
|
|
1534
1780
|
*/
|
|
1535
|
-
'input'
|
|
1781
|
+
'input': UpscaleV1Input;
|
|
1536
1782
|
/**
|
|
1537
1783
|
*
|
|
1538
1784
|
* @type {object}
|
|
@@ -1811,10 +2057,53 @@ export declare class BalancesApi extends BaseAPI {
|
|
|
1811
2057
|
export declare const CallApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1812
2058
|
/**
|
|
1813
2059
|
*
|
|
2060
|
+
* @param {CreateCollectionParamsDto} createCollectionParamsDto
|
|
2061
|
+
* @param {*} [options] Override http request option.
|
|
2062
|
+
* @throws {RequiredError}
|
|
2063
|
+
*/
|
|
2064
|
+
callControllerCallCollectionsCreateV1: (createCollectionParamsDto: CreateCollectionParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2065
|
+
/**
|
|
2066
|
+
*
|
|
2067
|
+
* @param {GetCollectionParamsDto} getCollectionParamsDto
|
|
2068
|
+
* @param {*} [options] Override http request option.
|
|
2069
|
+
* @throws {RequiredError}
|
|
2070
|
+
*/
|
|
2071
|
+
callControllerCallCollectionsGetV1: (getCollectionParamsDto: GetCollectionParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2072
|
+
/**
|
|
2073
|
+
*
|
|
2074
|
+
* @param {AddItemsToCollectionParamsDto} addItemsToCollectionParamsDto
|
|
2075
|
+
* @param {*} [options] Override http request option.
|
|
2076
|
+
* @throws {RequiredError}
|
|
2077
|
+
*/
|
|
2078
|
+
callControllerCallCollectionsItemsAddV1: (addItemsToCollectionParamsDto: AddItemsToCollectionParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2079
|
+
/**
|
|
2080
|
+
*
|
|
2081
|
+
* @param {AddItemsToCollectionParamsDto} addItemsToCollectionParamsDto
|
|
2082
|
+
* @param {*} [options] Override http request option.
|
|
2083
|
+
* @throws {RequiredError}
|
|
2084
|
+
*/
|
|
2085
|
+
callControllerCallCollectionsItemsRemoveV1: (addItemsToCollectionParamsDto: AddItemsToCollectionParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2086
|
+
/**
|
|
2087
|
+
*
|
|
2088
|
+
* @param {GetUrlsForImagesParamsDto} getUrlsForImagesParamsDto
|
|
1814
2089
|
* @param {*} [options] Override http request option.
|
|
1815
2090
|
* @throws {RequiredError}
|
|
1816
2091
|
*/
|
|
1817
|
-
|
|
2092
|
+
callControllerCallImagesGetUrlsV1: (getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2093
|
+
/**
|
|
2094
|
+
*
|
|
2095
|
+
* @param {CreateStackParamsDto} createStackParamsDto
|
|
2096
|
+
* @param {*} [options] Override http request option.
|
|
2097
|
+
* @throws {RequiredError}
|
|
2098
|
+
*/
|
|
2099
|
+
callControllerCallStacksCreateV1: (createStackParamsDto: CreateStackParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2100
|
+
/**
|
|
2101
|
+
*
|
|
2102
|
+
* @param {ListStacksParamsDto} listStacksParamsDto
|
|
2103
|
+
* @param {*} [options] Override http request option.
|
|
2104
|
+
* @throws {RequiredError}
|
|
2105
|
+
*/
|
|
2106
|
+
callControllerCallStacksListV1: (listStacksParamsDto: ListStacksParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1818
2107
|
};
|
|
1819
2108
|
/**
|
|
1820
2109
|
* CallApi - functional programming interface
|
|
@@ -1823,10 +2112,53 @@ export declare const CallApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
1823
2112
|
export declare const CallApiFp: (configuration?: Configuration) => {
|
|
1824
2113
|
/**
|
|
1825
2114
|
*
|
|
2115
|
+
* @param {CreateCollectionParamsDto} createCollectionParamsDto
|
|
2116
|
+
* @param {*} [options] Override http request option.
|
|
2117
|
+
* @throws {RequiredError}
|
|
2118
|
+
*/
|
|
2119
|
+
callControllerCallCollectionsCreateV1(createCollectionParamsDto: CreateCollectionParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CollectionEntity>>;
|
|
2120
|
+
/**
|
|
2121
|
+
*
|
|
2122
|
+
* @param {GetCollectionParamsDto} getCollectionParamsDto
|
|
2123
|
+
* @param {*} [options] Override http request option.
|
|
2124
|
+
* @throws {RequiredError}
|
|
2125
|
+
*/
|
|
2126
|
+
callControllerCallCollectionsGetV1(getCollectionParamsDto: GetCollectionParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CollectionEntity>>;
|
|
2127
|
+
/**
|
|
2128
|
+
*
|
|
2129
|
+
* @param {AddItemsToCollectionParamsDto} addItemsToCollectionParamsDto
|
|
2130
|
+
* @param {*} [options] Override http request option.
|
|
2131
|
+
* @throws {RequiredError}
|
|
2132
|
+
*/
|
|
2133
|
+
callControllerCallCollectionsItemsAddV1(addItemsToCollectionParamsDto: AddItemsToCollectionParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
2134
|
+
/**
|
|
2135
|
+
*
|
|
2136
|
+
* @param {AddItemsToCollectionParamsDto} addItemsToCollectionParamsDto
|
|
2137
|
+
* @param {*} [options] Override http request option.
|
|
2138
|
+
* @throws {RequiredError}
|
|
2139
|
+
*/
|
|
2140
|
+
callControllerCallCollectionsItemsRemoveV1(addItemsToCollectionParamsDto: AddItemsToCollectionParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
2141
|
+
/**
|
|
2142
|
+
*
|
|
2143
|
+
* @param {GetUrlsForImagesParamsDto} getUrlsForImagesParamsDto
|
|
2144
|
+
* @param {*} [options] Override http request option.
|
|
2145
|
+
* @throws {RequiredError}
|
|
2146
|
+
*/
|
|
2147
|
+
callControllerCallImagesGetUrlsV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ImageUrlResponseDto>>>;
|
|
2148
|
+
/**
|
|
2149
|
+
*
|
|
2150
|
+
* @param {CreateStackParamsDto} createStackParamsDto
|
|
1826
2151
|
* @param {*} [options] Override http request option.
|
|
1827
2152
|
* @throws {RequiredError}
|
|
1828
2153
|
*/
|
|
1829
|
-
|
|
2154
|
+
callControllerCallStacksCreateV1(createStackParamsDto: CreateStackParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StackEntity>>;
|
|
2155
|
+
/**
|
|
2156
|
+
*
|
|
2157
|
+
* @param {ListStacksParamsDto} listStacksParamsDto
|
|
2158
|
+
* @param {*} [options] Override http request option.
|
|
2159
|
+
* @throws {RequiredError}
|
|
2160
|
+
*/
|
|
2161
|
+
callControllerCallStacksListV1(listStacksParamsDto: ListStacksParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListStacksDto>>;
|
|
1830
2162
|
};
|
|
1831
2163
|
/**
|
|
1832
2164
|
* CallApi - factory interface
|
|
@@ -1835,10 +2167,53 @@ export declare const CallApiFp: (configuration?: Configuration) => {
|
|
|
1835
2167
|
export declare const CallApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1836
2168
|
/**
|
|
1837
2169
|
*
|
|
2170
|
+
* @param {CreateCollectionParamsDto} createCollectionParamsDto
|
|
2171
|
+
* @param {*} [options] Override http request option.
|
|
2172
|
+
* @throws {RequiredError}
|
|
2173
|
+
*/
|
|
2174
|
+
callControllerCallCollectionsCreateV1(createCollectionParamsDto: CreateCollectionParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<CollectionEntity>;
|
|
2175
|
+
/**
|
|
2176
|
+
*
|
|
2177
|
+
* @param {GetCollectionParamsDto} getCollectionParamsDto
|
|
2178
|
+
* @param {*} [options] Override http request option.
|
|
2179
|
+
* @throws {RequiredError}
|
|
2180
|
+
*/
|
|
2181
|
+
callControllerCallCollectionsGetV1(getCollectionParamsDto: GetCollectionParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<CollectionEntity>;
|
|
2182
|
+
/**
|
|
2183
|
+
*
|
|
2184
|
+
* @param {AddItemsToCollectionParamsDto} addItemsToCollectionParamsDto
|
|
2185
|
+
* @param {*} [options] Override http request option.
|
|
2186
|
+
* @throws {RequiredError}
|
|
2187
|
+
*/
|
|
2188
|
+
callControllerCallCollectionsItemsAddV1(addItemsToCollectionParamsDto: AddItemsToCollectionParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
2189
|
+
/**
|
|
2190
|
+
*
|
|
2191
|
+
* @param {AddItemsToCollectionParamsDto} addItemsToCollectionParamsDto
|
|
1838
2192
|
* @param {*} [options] Override http request option.
|
|
1839
2193
|
* @throws {RequiredError}
|
|
1840
2194
|
*/
|
|
1841
|
-
|
|
2195
|
+
callControllerCallCollectionsItemsRemoveV1(addItemsToCollectionParamsDto: AddItemsToCollectionParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
2196
|
+
/**
|
|
2197
|
+
*
|
|
2198
|
+
* @param {GetUrlsForImagesParamsDto} getUrlsForImagesParamsDto
|
|
2199
|
+
* @param {*} [options] Override http request option.
|
|
2200
|
+
* @throws {RequiredError}
|
|
2201
|
+
*/
|
|
2202
|
+
callControllerCallImagesGetUrlsV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<ImageUrlResponseDto>>;
|
|
2203
|
+
/**
|
|
2204
|
+
*
|
|
2205
|
+
* @param {CreateStackParamsDto} createStackParamsDto
|
|
2206
|
+
* @param {*} [options] Override http request option.
|
|
2207
|
+
* @throws {RequiredError}
|
|
2208
|
+
*/
|
|
2209
|
+
callControllerCallStacksCreateV1(createStackParamsDto: CreateStackParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<StackEntity>;
|
|
2210
|
+
/**
|
|
2211
|
+
*
|
|
2212
|
+
* @param {ListStacksParamsDto} listStacksParamsDto
|
|
2213
|
+
* @param {*} [options] Override http request option.
|
|
2214
|
+
* @throws {RequiredError}
|
|
2215
|
+
*/
|
|
2216
|
+
callControllerCallStacksListV1(listStacksParamsDto: ListStacksParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<ListStacksDto>;
|
|
1842
2217
|
};
|
|
1843
2218
|
/**
|
|
1844
2219
|
* CallApi - object-oriented interface
|
|
@@ -1849,11 +2224,60 @@ export declare const CallApiFactory: (configuration?: Configuration, basePath?:
|
|
|
1849
2224
|
export declare class CallApi extends BaseAPI {
|
|
1850
2225
|
/**
|
|
1851
2226
|
*
|
|
2227
|
+
* @param {CreateCollectionParamsDto} createCollectionParamsDto
|
|
2228
|
+
* @param {*} [options] Override http request option.
|
|
2229
|
+
* @throws {RequiredError}
|
|
2230
|
+
* @memberof CallApi
|
|
2231
|
+
*/
|
|
2232
|
+
callControllerCallCollectionsCreateV1(createCollectionParamsDto: CreateCollectionParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CollectionEntity, any>>;
|
|
2233
|
+
/**
|
|
2234
|
+
*
|
|
2235
|
+
* @param {GetCollectionParamsDto} getCollectionParamsDto
|
|
1852
2236
|
* @param {*} [options] Override http request option.
|
|
1853
2237
|
* @throws {RequiredError}
|
|
1854
2238
|
* @memberof CallApi
|
|
1855
2239
|
*/
|
|
1856
|
-
|
|
2240
|
+
callControllerCallCollectionsGetV1(getCollectionParamsDto: GetCollectionParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CollectionEntity, any>>;
|
|
2241
|
+
/**
|
|
2242
|
+
*
|
|
2243
|
+
* @param {AddItemsToCollectionParamsDto} addItemsToCollectionParamsDto
|
|
2244
|
+
* @param {*} [options] Override http request option.
|
|
2245
|
+
* @throws {RequiredError}
|
|
2246
|
+
* @memberof CallApi
|
|
2247
|
+
*/
|
|
2248
|
+
callControllerCallCollectionsItemsAddV1(addItemsToCollectionParamsDto: AddItemsToCollectionParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2249
|
+
/**
|
|
2250
|
+
*
|
|
2251
|
+
* @param {AddItemsToCollectionParamsDto} addItemsToCollectionParamsDto
|
|
2252
|
+
* @param {*} [options] Override http request option.
|
|
2253
|
+
* @throws {RequiredError}
|
|
2254
|
+
* @memberof CallApi
|
|
2255
|
+
*/
|
|
2256
|
+
callControllerCallCollectionsItemsRemoveV1(addItemsToCollectionParamsDto: AddItemsToCollectionParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2257
|
+
/**
|
|
2258
|
+
*
|
|
2259
|
+
* @param {GetUrlsForImagesParamsDto} getUrlsForImagesParamsDto
|
|
2260
|
+
* @param {*} [options] Override http request option.
|
|
2261
|
+
* @throws {RequiredError}
|
|
2262
|
+
* @memberof CallApi
|
|
2263
|
+
*/
|
|
2264
|
+
callControllerCallImagesGetUrlsV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ImageUrlResponseDto[], any>>;
|
|
2265
|
+
/**
|
|
2266
|
+
*
|
|
2267
|
+
* @param {CreateStackParamsDto} createStackParamsDto
|
|
2268
|
+
* @param {*} [options] Override http request option.
|
|
2269
|
+
* @throws {RequiredError}
|
|
2270
|
+
* @memberof CallApi
|
|
2271
|
+
*/
|
|
2272
|
+
callControllerCallStacksCreateV1(createStackParamsDto: CreateStackParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StackEntity, any>>;
|
|
2273
|
+
/**
|
|
2274
|
+
*
|
|
2275
|
+
* @param {ListStacksParamsDto} listStacksParamsDto
|
|
2276
|
+
* @param {*} [options] Override http request option.
|
|
2277
|
+
* @throws {RequiredError}
|
|
2278
|
+
* @memberof CallApi
|
|
2279
|
+
*/
|
|
2280
|
+
callControllerCallStacksListV1(listStacksParamsDto: ListStacksParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListStacksDto, any>>;
|
|
1857
2281
|
}
|
|
1858
2282
|
/**
|
|
1859
2283
|
* CollectionsApi - axios parameter creator
|
|
@@ -2150,6 +2574,7 @@ export declare const CollectionsControllerListItemsV1KindEnum: {
|
|
|
2150
2574
|
readonly Image: "image";
|
|
2151
2575
|
readonly Pose: "pose";
|
|
2152
2576
|
readonly Storage: "storage";
|
|
2577
|
+
readonly Pipeline: "pipeline";
|
|
2153
2578
|
};
|
|
2154
2579
|
export type CollectionsControllerListItemsV1KindEnum = typeof CollectionsControllerListItemsV1KindEnum[keyof typeof CollectionsControllerListItemsV1KindEnum];
|
|
2155
2580
|
/**
|
|
@@ -2526,6 +2951,20 @@ export declare const OperationsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
2526
2951
|
* @throws {RequiredError}
|
|
2527
2952
|
*/
|
|
2528
2953
|
operationsControllerListOperationsV1: (orderBy?: OperationsControllerListOperationsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2954
|
+
/**
|
|
2955
|
+
*
|
|
2956
|
+
* @param {CompositeV1ControllerInput} compositeV1ControllerInput
|
|
2957
|
+
* @param {*} [options] Override http request option.
|
|
2958
|
+
* @throws {RequiredError}
|
|
2959
|
+
*/
|
|
2960
|
+
operationsControllerRunCompositeV1V1: (compositeV1ControllerInput: CompositeV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2961
|
+
/**
|
|
2962
|
+
*
|
|
2963
|
+
* @param {CutV1ControllerInput} cutV1ControllerInput
|
|
2964
|
+
* @param {*} [options] Override http request option.
|
|
2965
|
+
* @throws {RequiredError}
|
|
2966
|
+
*/
|
|
2967
|
+
operationsControllerRunCutV1V1: (cutV1ControllerInput: CutV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2529
2968
|
/**
|
|
2530
2969
|
*
|
|
2531
2970
|
* @param {GenerateV1ControllerInput} generateV1ControllerInput
|
|
@@ -2582,6 +3021,13 @@ export declare const OperationsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
2582
3021
|
* @throws {RequiredError}
|
|
2583
3022
|
*/
|
|
2584
3023
|
operationsControllerRunSegmentAnythingEmbeddingsV1V1: (segmentAnythingEmbeddingsV1ControllerInput: SegmentAnythingEmbeddingsV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3024
|
+
/**
|
|
3025
|
+
*
|
|
3026
|
+
* @param {SegmentAnythingMaskV1ControllerInput} segmentAnythingMaskV1ControllerInput
|
|
3027
|
+
* @param {*} [options] Override http request option.
|
|
3028
|
+
* @throws {RequiredError}
|
|
3029
|
+
*/
|
|
3030
|
+
operationsControllerRunSegmentAnythingMaskV1V1: (segmentAnythingMaskV1ControllerInput: SegmentAnythingMaskV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2585
3031
|
/**
|
|
2586
3032
|
*
|
|
2587
3033
|
* @param {UpscaleV1ControllerInput} upscaleV1ControllerInput
|
|
@@ -2626,6 +3072,20 @@ export declare const OperationsApiFp: (configuration?: Configuration) => {
|
|
|
2626
3072
|
* @throws {RequiredError}
|
|
2627
3073
|
*/
|
|
2628
3074
|
operationsControllerListOperationsV1(orderBy?: OperationsControllerListOperationsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListOperationsDto>>;
|
|
3075
|
+
/**
|
|
3076
|
+
*
|
|
3077
|
+
* @param {CompositeV1ControllerInput} compositeV1ControllerInput
|
|
3078
|
+
* @param {*} [options] Override http request option.
|
|
3079
|
+
* @throws {RequiredError}
|
|
3080
|
+
*/
|
|
3081
|
+
operationsControllerRunCompositeV1V1(compositeV1ControllerInput: CompositeV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
|
|
3082
|
+
/**
|
|
3083
|
+
*
|
|
3084
|
+
* @param {CutV1ControllerInput} cutV1ControllerInput
|
|
3085
|
+
* @param {*} [options] Override http request option.
|
|
3086
|
+
* @throws {RequiredError}
|
|
3087
|
+
*/
|
|
3088
|
+
operationsControllerRunCutV1V1(cutV1ControllerInput: CutV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
|
|
2629
3089
|
/**
|
|
2630
3090
|
*
|
|
2631
3091
|
* @param {GenerateV1ControllerInput} generateV1ControllerInput
|
|
@@ -2682,6 +3142,13 @@ export declare const OperationsApiFp: (configuration?: Configuration) => {
|
|
|
2682
3142
|
* @throws {RequiredError}
|
|
2683
3143
|
*/
|
|
2684
3144
|
operationsControllerRunSegmentAnythingEmbeddingsV1V1(segmentAnythingEmbeddingsV1ControllerInput: SegmentAnythingEmbeddingsV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
|
|
3145
|
+
/**
|
|
3146
|
+
*
|
|
3147
|
+
* @param {SegmentAnythingMaskV1ControllerInput} segmentAnythingMaskV1ControllerInput
|
|
3148
|
+
* @param {*} [options] Override http request option.
|
|
3149
|
+
* @throws {RequiredError}
|
|
3150
|
+
*/
|
|
3151
|
+
operationsControllerRunSegmentAnythingMaskV1V1(segmentAnythingMaskV1ControllerInput: SegmentAnythingMaskV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
|
|
2685
3152
|
/**
|
|
2686
3153
|
*
|
|
2687
3154
|
* @param {UpscaleV1ControllerInput} upscaleV1ControllerInput
|
|
@@ -2726,6 +3193,20 @@ export declare const OperationsApiFactory: (configuration?: Configuration, baseP
|
|
|
2726
3193
|
* @throws {RequiredError}
|
|
2727
3194
|
*/
|
|
2728
3195
|
operationsControllerListOperationsV1(orderBy?: OperationsControllerListOperationsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListOperationsDto>;
|
|
3196
|
+
/**
|
|
3197
|
+
*
|
|
3198
|
+
* @param {CompositeV1ControllerInput} compositeV1ControllerInput
|
|
3199
|
+
* @param {*} [options] Override http request option.
|
|
3200
|
+
* @throws {RequiredError}
|
|
3201
|
+
*/
|
|
3202
|
+
operationsControllerRunCompositeV1V1(compositeV1ControllerInput: CompositeV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
|
|
3203
|
+
/**
|
|
3204
|
+
*
|
|
3205
|
+
* @param {CutV1ControllerInput} cutV1ControllerInput
|
|
3206
|
+
* @param {*} [options] Override http request option.
|
|
3207
|
+
* @throws {RequiredError}
|
|
3208
|
+
*/
|
|
3209
|
+
operationsControllerRunCutV1V1(cutV1ControllerInput: CutV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
|
|
2729
3210
|
/**
|
|
2730
3211
|
*
|
|
2731
3212
|
* @param {GenerateV1ControllerInput} generateV1ControllerInput
|
|
@@ -2782,6 +3263,13 @@ export declare const OperationsApiFactory: (configuration?: Configuration, baseP
|
|
|
2782
3263
|
* @throws {RequiredError}
|
|
2783
3264
|
*/
|
|
2784
3265
|
operationsControllerRunSegmentAnythingEmbeddingsV1V1(segmentAnythingEmbeddingsV1ControllerInput: SegmentAnythingEmbeddingsV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
|
|
3266
|
+
/**
|
|
3267
|
+
*
|
|
3268
|
+
* @param {SegmentAnythingMaskV1ControllerInput} segmentAnythingMaskV1ControllerInput
|
|
3269
|
+
* @param {*} [options] Override http request option.
|
|
3270
|
+
* @throws {RequiredError}
|
|
3271
|
+
*/
|
|
3272
|
+
operationsControllerRunSegmentAnythingMaskV1V1(segmentAnythingMaskV1ControllerInput: SegmentAnythingMaskV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
|
|
2785
3273
|
/**
|
|
2786
3274
|
*
|
|
2787
3275
|
* @param {UpscaleV1ControllerInput} upscaleV1ControllerInput
|
|
@@ -2831,6 +3319,22 @@ export declare class OperationsApi extends BaseAPI {
|
|
|
2831
3319
|
* @memberof OperationsApi
|
|
2832
3320
|
*/
|
|
2833
3321
|
operationsControllerListOperationsV1(orderBy?: OperationsControllerListOperationsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListOperationsDto, any>>;
|
|
3322
|
+
/**
|
|
3323
|
+
*
|
|
3324
|
+
* @param {CompositeV1ControllerInput} compositeV1ControllerInput
|
|
3325
|
+
* @param {*} [options] Override http request option.
|
|
3326
|
+
* @throws {RequiredError}
|
|
3327
|
+
* @memberof OperationsApi
|
|
3328
|
+
*/
|
|
3329
|
+
operationsControllerRunCompositeV1V1(compositeV1ControllerInput: CompositeV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
|
|
3330
|
+
/**
|
|
3331
|
+
*
|
|
3332
|
+
* @param {CutV1ControllerInput} cutV1ControllerInput
|
|
3333
|
+
* @param {*} [options] Override http request option.
|
|
3334
|
+
* @throws {RequiredError}
|
|
3335
|
+
* @memberof OperationsApi
|
|
3336
|
+
*/
|
|
3337
|
+
operationsControllerRunCutV1V1(cutV1ControllerInput: CutV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
|
|
2834
3338
|
/**
|
|
2835
3339
|
*
|
|
2836
3340
|
* @param {GenerateV1ControllerInput} generateV1ControllerInput
|
|
@@ -2895,6 +3399,14 @@ export declare class OperationsApi extends BaseAPI {
|
|
|
2895
3399
|
* @memberof OperationsApi
|
|
2896
3400
|
*/
|
|
2897
3401
|
operationsControllerRunSegmentAnythingEmbeddingsV1V1(segmentAnythingEmbeddingsV1ControllerInput: SegmentAnythingEmbeddingsV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
|
|
3402
|
+
/**
|
|
3403
|
+
*
|
|
3404
|
+
* @param {SegmentAnythingMaskV1ControllerInput} segmentAnythingMaskV1ControllerInput
|
|
3405
|
+
* @param {*} [options] Override http request option.
|
|
3406
|
+
* @throws {RequiredError}
|
|
3407
|
+
* @memberof OperationsApi
|
|
3408
|
+
*/
|
|
3409
|
+
operationsControllerRunSegmentAnythingMaskV1V1(segmentAnythingMaskV1ControllerInput: SegmentAnythingMaskV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
|
|
2898
3410
|
/**
|
|
2899
3411
|
*
|
|
2900
3412
|
* @param {UpscaleV1ControllerInput} upscaleV1ControllerInput
|
|
@@ -2924,70 +3436,113 @@ export declare const OperationsControllerListOperationsV1OrderByEnum: {
|
|
|
2924
3436
|
};
|
|
2925
3437
|
export type OperationsControllerListOperationsV1OrderByEnum = typeof OperationsControllerListOperationsV1OrderByEnum[keyof typeof OperationsControllerListOperationsV1OrderByEnum];
|
|
2926
3438
|
/**
|
|
2927
|
-
*
|
|
3439
|
+
* PermissionsApi - axios parameter creator
|
|
2928
3440
|
* @export
|
|
2929
3441
|
*/
|
|
2930
|
-
export declare const
|
|
3442
|
+
export declare const PermissionsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2931
3443
|
/**
|
|
2932
3444
|
*
|
|
2933
|
-
* @param {CreatePipelineParamsDto} createPipelineParamsDto
|
|
2934
3445
|
* @param {*} [options] Override http request option.
|
|
2935
3446
|
* @throws {RequiredError}
|
|
2936
3447
|
*/
|
|
2937
|
-
|
|
3448
|
+
permissionsControllerListAvailablePermissionsV1: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3449
|
+
};
|
|
3450
|
+
/**
|
|
3451
|
+
* PermissionsApi - functional programming interface
|
|
3452
|
+
* @export
|
|
3453
|
+
*/
|
|
3454
|
+
export declare const PermissionsApiFp: (configuration?: Configuration) => {
|
|
2938
3455
|
/**
|
|
2939
3456
|
*
|
|
2940
|
-
* @param {string} id
|
|
2941
3457
|
* @param {*} [options] Override http request option.
|
|
2942
3458
|
* @throws {RequiredError}
|
|
2943
3459
|
*/
|
|
2944
|
-
|
|
3460
|
+
permissionsControllerListAvailablePermissionsV1(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<string>>>;
|
|
3461
|
+
};
|
|
3462
|
+
/**
|
|
3463
|
+
* PermissionsApi - factory interface
|
|
3464
|
+
* @export
|
|
3465
|
+
*/
|
|
3466
|
+
export declare const PermissionsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2945
3467
|
/**
|
|
2946
3468
|
*
|
|
2947
3469
|
* @param {*} [options] Override http request option.
|
|
2948
3470
|
* @throws {RequiredError}
|
|
2949
3471
|
*/
|
|
2950
|
-
|
|
3472
|
+
permissionsControllerListAvailablePermissionsV1(options?: RawAxiosRequestConfig): AxiosPromise<Array<string>>;
|
|
3473
|
+
};
|
|
3474
|
+
/**
|
|
3475
|
+
* PermissionsApi - object-oriented interface
|
|
3476
|
+
* @export
|
|
3477
|
+
* @class PermissionsApi
|
|
3478
|
+
* @extends {BaseAPI}
|
|
3479
|
+
*/
|
|
3480
|
+
export declare class PermissionsApi extends BaseAPI {
|
|
2951
3481
|
/**
|
|
2952
3482
|
*
|
|
2953
|
-
* @param {string} id
|
|
2954
3483
|
* @param {*} [options] Override http request option.
|
|
2955
3484
|
* @throws {RequiredError}
|
|
3485
|
+
* @memberof PermissionsApi
|
|
2956
3486
|
*/
|
|
2957
|
-
|
|
2958
|
-
}
|
|
3487
|
+
permissionsControllerListAvailablePermissionsV1(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string[], any>>;
|
|
3488
|
+
}
|
|
2959
3489
|
/**
|
|
2960
|
-
* PipelinesApi -
|
|
3490
|
+
* PipelinesApi - axios parameter creator
|
|
2961
3491
|
* @export
|
|
2962
3492
|
*/
|
|
2963
|
-
export declare const
|
|
3493
|
+
export declare const PipelinesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2964
3494
|
/**
|
|
2965
3495
|
*
|
|
2966
3496
|
* @param {CreatePipelineParamsDto} createPipelineParamsDto
|
|
2967
3497
|
* @param {*} [options] Override http request option.
|
|
2968
3498
|
* @throws {RequiredError}
|
|
2969
3499
|
*/
|
|
2970
|
-
pipelinesControllerCreatePipelineV1(createPipelineParamsDto: CreatePipelineParamsDto, options?: RawAxiosRequestConfig)
|
|
3500
|
+
pipelinesControllerCreatePipelineV1: (createPipelineParamsDto: CreatePipelineParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2971
3501
|
/**
|
|
2972
3502
|
*
|
|
2973
3503
|
* @param {string} id
|
|
2974
3504
|
* @param {*} [options] Override http request option.
|
|
2975
3505
|
* @throws {RequiredError}
|
|
2976
3506
|
*/
|
|
2977
|
-
pipelinesControllerGetPipelineV1(id: string, options?: RawAxiosRequestConfig)
|
|
3507
|
+
pipelinesControllerGetPipelineV1: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3508
|
+
/**
|
|
3509
|
+
*
|
|
3510
|
+
* @param {PipelinesControllerListPipelinesV1OrderByEnum} [orderBy]
|
|
3511
|
+
* @param {number} [limit]
|
|
3512
|
+
* @param {string} [cursor]
|
|
3513
|
+
* @param {*} [options] Override http request option.
|
|
3514
|
+
* @throws {RequiredError}
|
|
3515
|
+
*/
|
|
3516
|
+
pipelinesControllerListPipelinesV1: (orderBy?: PipelinesControllerListPipelinesV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3517
|
+
};
|
|
3518
|
+
/**
|
|
3519
|
+
* PipelinesApi - functional programming interface
|
|
3520
|
+
* @export
|
|
3521
|
+
*/
|
|
3522
|
+
export declare const PipelinesApiFp: (configuration?: Configuration) => {
|
|
2978
3523
|
/**
|
|
2979
3524
|
*
|
|
3525
|
+
* @param {CreatePipelineParamsDto} createPipelineParamsDto
|
|
2980
3526
|
* @param {*} [options] Override http request option.
|
|
2981
3527
|
* @throws {RequiredError}
|
|
2982
3528
|
*/
|
|
2983
|
-
|
|
3529
|
+
pipelinesControllerCreatePipelineV1(createPipelineParamsDto: CreatePipelineParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PipelineEntity>>;
|
|
2984
3530
|
/**
|
|
2985
3531
|
*
|
|
2986
3532
|
* @param {string} id
|
|
2987
3533
|
* @param {*} [options] Override http request option.
|
|
2988
3534
|
* @throws {RequiredError}
|
|
2989
3535
|
*/
|
|
2990
|
-
|
|
3536
|
+
pipelinesControllerGetPipelineV1(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PipelineEntity>>;
|
|
3537
|
+
/**
|
|
3538
|
+
*
|
|
3539
|
+
* @param {PipelinesControllerListPipelinesV1OrderByEnum} [orderBy]
|
|
3540
|
+
* @param {number} [limit]
|
|
3541
|
+
* @param {string} [cursor]
|
|
3542
|
+
* @param {*} [options] Override http request option.
|
|
3543
|
+
* @throws {RequiredError}
|
|
3544
|
+
*/
|
|
3545
|
+
pipelinesControllerListPipelinesV1(orderBy?: PipelinesControllerListPipelinesV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListPipelinesDto>>;
|
|
2991
3546
|
};
|
|
2992
3547
|
/**
|
|
2993
3548
|
* PipelinesApi - factory interface
|
|
@@ -3007,20 +3562,16 @@ export declare const PipelinesApiFactory: (configuration?: Configuration, basePa
|
|
|
3007
3562
|
* @param {*} [options] Override http request option.
|
|
3008
3563
|
* @throws {RequiredError}
|
|
3009
3564
|
*/
|
|
3010
|
-
pipelinesControllerGetPipelineV1(id: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
3011
|
-
/**
|
|
3012
|
-
*
|
|
3013
|
-
* @param {*} [options] Override http request option.
|
|
3014
|
-
* @throws {RequiredError}
|
|
3015
|
-
*/
|
|
3016
|
-
pipelinesControllerListPipelinesV1(options?: RawAxiosRequestConfig): AxiosPromise<Array<object>>;
|
|
3565
|
+
pipelinesControllerGetPipelineV1(id: string, options?: RawAxiosRequestConfig): AxiosPromise<PipelineEntity>;
|
|
3017
3566
|
/**
|
|
3018
3567
|
*
|
|
3019
|
-
* @param {
|
|
3568
|
+
* @param {PipelinesControllerListPipelinesV1OrderByEnum} [orderBy]
|
|
3569
|
+
* @param {number} [limit]
|
|
3570
|
+
* @param {string} [cursor]
|
|
3020
3571
|
* @param {*} [options] Override http request option.
|
|
3021
3572
|
* @throws {RequiredError}
|
|
3022
3573
|
*/
|
|
3023
|
-
|
|
3574
|
+
pipelinesControllerListPipelinesV1(orderBy?: PipelinesControllerListPipelinesV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListPipelinesDto>;
|
|
3024
3575
|
};
|
|
3025
3576
|
/**
|
|
3026
3577
|
* PipelinesApi - object-oriented interface
|
|
@@ -3044,23 +3595,26 @@ export declare class PipelinesApi extends BaseAPI {
|
|
|
3044
3595
|
* @throws {RequiredError}
|
|
3045
3596
|
* @memberof PipelinesApi
|
|
3046
3597
|
*/
|
|
3047
|
-
pipelinesControllerGetPipelineV1(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
3598
|
+
pipelinesControllerGetPipelineV1(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PipelineEntity, any>>;
|
|
3048
3599
|
/**
|
|
3049
3600
|
*
|
|
3601
|
+
* @param {PipelinesControllerListPipelinesV1OrderByEnum} [orderBy]
|
|
3602
|
+
* @param {number} [limit]
|
|
3603
|
+
* @param {string} [cursor]
|
|
3050
3604
|
* @param {*} [options] Override http request option.
|
|
3051
3605
|
* @throws {RequiredError}
|
|
3052
3606
|
* @memberof PipelinesApi
|
|
3053
3607
|
*/
|
|
3054
|
-
pipelinesControllerListPipelinesV1(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
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>>;
|
|
3608
|
+
pipelinesControllerListPipelinesV1(orderBy?: PipelinesControllerListPipelinesV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListPipelinesDto, any>>;
|
|
3063
3609
|
}
|
|
3610
|
+
/**
|
|
3611
|
+
* @export
|
|
3612
|
+
*/
|
|
3613
|
+
export declare const PipelinesControllerListPipelinesV1OrderByEnum: {
|
|
3614
|
+
readonly Asc: "createdAt_ASC";
|
|
3615
|
+
readonly Desc: "createdAt_DESC";
|
|
3616
|
+
};
|
|
3617
|
+
export type PipelinesControllerListPipelinesV1OrderByEnum = typeof PipelinesControllerListPipelinesV1OrderByEnum[keyof typeof PipelinesControllerListPipelinesV1OrderByEnum];
|
|
3064
3618
|
/**
|
|
3065
3619
|
* PosesApi - axios parameter creator
|
|
3066
3620
|
* @export
|
|
@@ -3103,7 +3657,7 @@ export declare const PosesApiFp: (configuration?: Configuration) => {
|
|
|
3103
3657
|
* @param {*} [options] Override http request option.
|
|
3104
3658
|
* @throws {RequiredError}
|
|
3105
3659
|
*/
|
|
3106
|
-
posesControllerListPosesV1(orderBy?: PosesControllerListPosesV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
3660
|
+
posesControllerListPosesV1(orderBy?: PosesControllerListPosesV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListPipelinesDto>>;
|
|
3107
3661
|
};
|
|
3108
3662
|
/**
|
|
3109
3663
|
* PosesApi - factory interface
|
|
@@ -3125,7 +3679,7 @@ export declare const PosesApiFactory: (configuration?: Configuration, basePath?:
|
|
|
3125
3679
|
* @param {*} [options] Override http request option.
|
|
3126
3680
|
* @throws {RequiredError}
|
|
3127
3681
|
*/
|
|
3128
|
-
posesControllerListPosesV1(orderBy?: PosesControllerListPosesV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
3682
|
+
posesControllerListPosesV1(orderBy?: PosesControllerListPosesV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListPipelinesDto>;
|
|
3129
3683
|
};
|
|
3130
3684
|
/**
|
|
3131
3685
|
* PosesApi - object-oriented interface
|
|
@@ -3151,7 +3705,7 @@ export declare class PosesApi extends BaseAPI {
|
|
|
3151
3705
|
* @throws {RequiredError}
|
|
3152
3706
|
* @memberof PosesApi
|
|
3153
3707
|
*/
|
|
3154
|
-
posesControllerListPosesV1(orderBy?: PosesControllerListPosesV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
3708
|
+
posesControllerListPosesV1(orderBy?: PosesControllerListPosesV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListPipelinesDto, any>>;
|
|
3155
3709
|
}
|
|
3156
3710
|
/**
|
|
3157
3711
|
* @export
|
|
@@ -3436,7 +3990,7 @@ export declare const StorageApiFp: (configuration?: Configuration) => {
|
|
|
3436
3990
|
* @param {*} [options] Override http request option.
|
|
3437
3991
|
* @throws {RequiredError}
|
|
3438
3992
|
*/
|
|
3439
|
-
storageControllerCreateRecordV1(createStorageRecordParamsDto: CreateStorageRecordParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
3993
|
+
storageControllerCreateRecordV1(createStorageRecordParamsDto: CreateStorageRecordParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StorageEntity>>;
|
|
3440
3994
|
/**
|
|
3441
3995
|
*
|
|
3442
3996
|
* @param {DeleteStorageParamsDto} deleteStorageParamsDto
|
|
@@ -3470,7 +4024,7 @@ export declare const StorageApiFactory: (configuration?: Configuration, basePath
|
|
|
3470
4024
|
* @param {*} [options] Override http request option.
|
|
3471
4025
|
* @throws {RequiredError}
|
|
3472
4026
|
*/
|
|
3473
|
-
storageControllerCreateRecordV1(createStorageRecordParamsDto: CreateStorageRecordParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
4027
|
+
storageControllerCreateRecordV1(createStorageRecordParamsDto: CreateStorageRecordParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<StorageEntity>;
|
|
3474
4028
|
/**
|
|
3475
4029
|
*
|
|
3476
4030
|
* @param {DeleteStorageParamsDto} deleteStorageParamsDto
|
|
@@ -3507,7 +4061,7 @@ export declare class StorageApi extends BaseAPI {
|
|
|
3507
4061
|
* @throws {RequiredError}
|
|
3508
4062
|
* @memberof StorageApi
|
|
3509
4063
|
*/
|
|
3510
|
-
storageControllerCreateRecordV1(createStorageRecordParamsDto: CreateStorageRecordParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
4064
|
+
storageControllerCreateRecordV1(createStorageRecordParamsDto: CreateStorageRecordParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StorageEntity, any>>;
|
|
3511
4065
|
/**
|
|
3512
4066
|
*
|
|
3513
4067
|
* @param {DeleteStorageParamsDto} deleteStorageParamsDto
|