@hautechai/sdk 0.0.18 → 0.0.20
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 +2096 -474
- package/dist/autogenerated/api.js +3573 -563
- package/dist/autogenerated/permissions.d.ts +9 -5
- package/dist/sdk/groups/index.js +2 -2
- package/dist/sdk/index.d.ts +156 -4
- package/dist/sdk/operations/index.d.ts +9 -1
- package/dist/sdk/operations/index.js +9 -4
- package/dist/sdk/pipelines/index.d.ts +162 -18
- package/dist/sdk/pipelines/index.js +44 -13
- package/dist/token/permissions.js +9 -1
- package/package.json +1 -1
|
@@ -24,19 +24,19 @@ export interface AccountEntity {
|
|
|
24
24
|
* @type {string}
|
|
25
25
|
* @memberof AccountEntity
|
|
26
26
|
*/
|
|
27
|
-
|
|
27
|
+
id: string;
|
|
28
28
|
/**
|
|
29
29
|
*
|
|
30
30
|
* @type {string}
|
|
31
31
|
* @memberof AccountEntity
|
|
32
32
|
*/
|
|
33
|
-
|
|
33
|
+
type: AccountEntityTypeEnum;
|
|
34
34
|
}
|
|
35
35
|
export declare const AccountEntityTypeEnum: {
|
|
36
36
|
readonly Root: "root";
|
|
37
37
|
readonly User: "user";
|
|
38
38
|
};
|
|
39
|
-
export type AccountEntityTypeEnum = typeof AccountEntityTypeEnum[keyof typeof AccountEntityTypeEnum];
|
|
39
|
+
export type AccountEntityTypeEnum = (typeof AccountEntityTypeEnum)[keyof typeof AccountEntityTypeEnum];
|
|
40
40
|
/**
|
|
41
41
|
*
|
|
42
42
|
* @export
|
|
@@ -48,20 +48,51 @@ export interface AddAccountToGroupControllerParamsDto {
|
|
|
48
48
|
* @type {string}
|
|
49
49
|
* @memberof AddAccountToGroupControllerParamsDto
|
|
50
50
|
*/
|
|
51
|
-
|
|
51
|
+
accountId: string;
|
|
52
52
|
/**
|
|
53
53
|
*
|
|
54
54
|
* @type {string}
|
|
55
55
|
* @memberof AddAccountToGroupControllerParamsDto
|
|
56
56
|
*/
|
|
57
|
-
|
|
57
|
+
role: AddAccountToGroupControllerParamsDtoRoleEnum;
|
|
58
58
|
}
|
|
59
59
|
export declare const AddAccountToGroupControllerParamsDtoRoleEnum: {
|
|
60
60
|
readonly Maintainer: "maintainer";
|
|
61
61
|
readonly Member: "member";
|
|
62
62
|
readonly Owner: "owner";
|
|
63
63
|
};
|
|
64
|
-
export type AddAccountToGroupControllerParamsDtoRoleEnum = typeof AddAccountToGroupControllerParamsDtoRoleEnum[keyof typeof AddAccountToGroupControllerParamsDtoRoleEnum];
|
|
64
|
+
export type AddAccountToGroupControllerParamsDtoRoleEnum = (typeof AddAccountToGroupControllerParamsDtoRoleEnum)[keyof typeof AddAccountToGroupControllerParamsDtoRoleEnum];
|
|
65
|
+
/**
|
|
66
|
+
*
|
|
67
|
+
* @export
|
|
68
|
+
* @interface AddAccountToGroupParamsDto
|
|
69
|
+
*/
|
|
70
|
+
export interface AddAccountToGroupParamsDto {
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof AddAccountToGroupParamsDto
|
|
75
|
+
*/
|
|
76
|
+
accountId: string;
|
|
77
|
+
/**
|
|
78
|
+
*
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof AddAccountToGroupParamsDto
|
|
81
|
+
*/
|
|
82
|
+
groupId: string;
|
|
83
|
+
/**
|
|
84
|
+
*
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof AddAccountToGroupParamsDto
|
|
87
|
+
*/
|
|
88
|
+
role: AddAccountToGroupParamsDtoRoleEnum;
|
|
89
|
+
}
|
|
90
|
+
export declare const AddAccountToGroupParamsDtoRoleEnum: {
|
|
91
|
+
readonly Maintainer: "maintainer";
|
|
92
|
+
readonly Member: "member";
|
|
93
|
+
readonly Owner: "owner";
|
|
94
|
+
};
|
|
95
|
+
export type AddAccountToGroupParamsDtoRoleEnum = (typeof AddAccountToGroupParamsDtoRoleEnum)[keyof typeof AddAccountToGroupParamsDtoRoleEnum];
|
|
65
96
|
/**
|
|
66
97
|
*
|
|
67
98
|
* @export
|
|
@@ -73,7 +104,26 @@ export interface AddBalanceControllerParamsDto {
|
|
|
73
104
|
* @type {string}
|
|
74
105
|
* @memberof AddBalanceControllerParamsDto
|
|
75
106
|
*/
|
|
76
|
-
|
|
107
|
+
amount: string;
|
|
108
|
+
}
|
|
109
|
+
/**
|
|
110
|
+
*
|
|
111
|
+
* @export
|
|
112
|
+
* @interface AddBalanceParamsDto
|
|
113
|
+
*/
|
|
114
|
+
export interface AddBalanceParamsDto {
|
|
115
|
+
/**
|
|
116
|
+
*
|
|
117
|
+
* @type {string}
|
|
118
|
+
* @memberof AddBalanceParamsDto
|
|
119
|
+
*/
|
|
120
|
+
amount: string;
|
|
121
|
+
/**
|
|
122
|
+
*
|
|
123
|
+
* @type {string}
|
|
124
|
+
* @memberof AddBalanceParamsDto
|
|
125
|
+
*/
|
|
126
|
+
accountId: string;
|
|
77
127
|
}
|
|
78
128
|
/**
|
|
79
129
|
*
|
|
@@ -86,7 +136,7 @@ export interface AddItemsToCollectionControllerParamsDto {
|
|
|
86
136
|
* @type {Array<string>}
|
|
87
137
|
* @memberof AddItemsToCollectionControllerParamsDto
|
|
88
138
|
*/
|
|
89
|
-
|
|
139
|
+
itemIds: Array<string>;
|
|
90
140
|
}
|
|
91
141
|
/**
|
|
92
142
|
*
|
|
@@ -99,13 +149,13 @@ export interface AddItemsToCollectionParamsDto {
|
|
|
99
149
|
* @type {string}
|
|
100
150
|
* @memberof AddItemsToCollectionParamsDto
|
|
101
151
|
*/
|
|
102
|
-
|
|
152
|
+
collectionId: string;
|
|
103
153
|
/**
|
|
104
154
|
*
|
|
105
155
|
* @type {Array<string>}
|
|
106
156
|
* @memberof AddItemsToCollectionParamsDto
|
|
107
157
|
*/
|
|
108
|
-
|
|
158
|
+
itemIds: Array<string>;
|
|
109
159
|
}
|
|
110
160
|
/**
|
|
111
161
|
*
|
|
@@ -118,7 +168,26 @@ export interface AddItemsToStackControllerParamsDto {
|
|
|
118
168
|
* @type {Array<string>}
|
|
119
169
|
* @memberof AddItemsToStackControllerParamsDto
|
|
120
170
|
*/
|
|
121
|
-
|
|
171
|
+
itemIds: Array<string>;
|
|
172
|
+
}
|
|
173
|
+
/**
|
|
174
|
+
*
|
|
175
|
+
* @export
|
|
176
|
+
* @interface AddItemsToStackParamsDto
|
|
177
|
+
*/
|
|
178
|
+
export interface AddItemsToStackParamsDto {
|
|
179
|
+
/**
|
|
180
|
+
*
|
|
181
|
+
* @type {string}
|
|
182
|
+
* @memberof AddItemsToStackParamsDto
|
|
183
|
+
*/
|
|
184
|
+
stackId: string;
|
|
185
|
+
/**
|
|
186
|
+
*
|
|
187
|
+
* @type {Array<string>}
|
|
188
|
+
* @memberof AddItemsToStackParamsDto
|
|
189
|
+
*/
|
|
190
|
+
itemIds: Array<string>;
|
|
122
191
|
}
|
|
123
192
|
/**
|
|
124
193
|
*
|
|
@@ -131,7 +200,26 @@ export interface AttachAccessControllerParamsDto {
|
|
|
131
200
|
* @type {string}
|
|
132
201
|
* @memberof AttachAccessControllerParamsDto
|
|
133
202
|
*/
|
|
134
|
-
|
|
203
|
+
parentResourceId: string;
|
|
204
|
+
}
|
|
205
|
+
/**
|
|
206
|
+
*
|
|
207
|
+
* @export
|
|
208
|
+
* @interface AttachAccessParamsDto
|
|
209
|
+
*/
|
|
210
|
+
export interface AttachAccessParamsDto {
|
|
211
|
+
/**
|
|
212
|
+
*
|
|
213
|
+
* @type {string}
|
|
214
|
+
* @memberof AttachAccessParamsDto
|
|
215
|
+
*/
|
|
216
|
+
resourceId: string;
|
|
217
|
+
/**
|
|
218
|
+
*
|
|
219
|
+
* @type {string}
|
|
220
|
+
* @memberof AttachAccessParamsDto
|
|
221
|
+
*/
|
|
222
|
+
parentResourceId: string;
|
|
135
223
|
}
|
|
136
224
|
/**
|
|
137
225
|
*
|
|
@@ -144,7 +232,7 @@ export interface BalanceResultDto {
|
|
|
144
232
|
* @type {string}
|
|
145
233
|
* @memberof BalanceResultDto
|
|
146
234
|
*/
|
|
147
|
-
|
|
235
|
+
balance: string;
|
|
148
236
|
}
|
|
149
237
|
/**
|
|
150
238
|
*
|
|
@@ -157,37 +245,37 @@ export interface CollectionEntity {
|
|
|
157
245
|
* @type {number}
|
|
158
246
|
* @memberof CollectionEntity
|
|
159
247
|
*/
|
|
160
|
-
|
|
248
|
+
kind: number;
|
|
161
249
|
/**
|
|
162
250
|
*
|
|
163
251
|
* @type {string}
|
|
164
252
|
* @memberof CollectionEntity
|
|
165
253
|
*/
|
|
166
|
-
|
|
254
|
+
id: string;
|
|
167
255
|
/**
|
|
168
256
|
*
|
|
169
257
|
* @type {string}
|
|
170
258
|
* @memberof CollectionEntity
|
|
171
259
|
*/
|
|
172
|
-
|
|
260
|
+
creatorId: string;
|
|
173
261
|
/**
|
|
174
262
|
*
|
|
175
263
|
* @type {object}
|
|
176
264
|
* @memberof CollectionEntity
|
|
177
265
|
*/
|
|
178
|
-
|
|
266
|
+
metadata: object;
|
|
179
267
|
/**
|
|
180
268
|
*
|
|
181
269
|
* @type {string}
|
|
182
270
|
* @memberof CollectionEntity
|
|
183
271
|
*/
|
|
184
|
-
|
|
272
|
+
createdAt: string;
|
|
185
273
|
/**
|
|
186
274
|
*
|
|
187
275
|
* @type {string}
|
|
188
276
|
* @memberof CollectionEntity
|
|
189
277
|
*/
|
|
190
|
-
|
|
278
|
+
updatedAt: string;
|
|
191
279
|
}
|
|
192
280
|
/**
|
|
193
281
|
*
|
|
@@ -200,37 +288,37 @@ export interface CompositeElement {
|
|
|
200
288
|
* @type {string}
|
|
201
289
|
* @memberof CompositeElement
|
|
202
290
|
*/
|
|
203
|
-
|
|
291
|
+
imageId: string;
|
|
204
292
|
/**
|
|
205
293
|
*
|
|
206
294
|
* @type {number}
|
|
207
295
|
* @memberof CompositeElement
|
|
208
296
|
*/
|
|
209
|
-
|
|
297
|
+
left: number;
|
|
210
298
|
/**
|
|
211
299
|
*
|
|
212
300
|
* @type {number}
|
|
213
301
|
* @memberof CompositeElement
|
|
214
302
|
*/
|
|
215
|
-
|
|
303
|
+
top: number;
|
|
216
304
|
/**
|
|
217
305
|
*
|
|
218
306
|
* @type {number}
|
|
219
307
|
* @memberof CompositeElement
|
|
220
308
|
*/
|
|
221
|
-
|
|
309
|
+
width: number;
|
|
222
310
|
/**
|
|
223
311
|
*
|
|
224
312
|
* @type {number}
|
|
225
313
|
* @memberof CompositeElement
|
|
226
314
|
*/
|
|
227
|
-
|
|
315
|
+
height: number;
|
|
228
316
|
/**
|
|
229
317
|
*
|
|
230
318
|
* @type {string}
|
|
231
319
|
* @memberof CompositeElement
|
|
232
320
|
*/
|
|
233
|
-
|
|
321
|
+
fit: CompositeElementFitEnum;
|
|
234
322
|
}
|
|
235
323
|
export declare const CompositeElementFitEnum: {
|
|
236
324
|
readonly Cover: "cover";
|
|
@@ -239,7 +327,7 @@ export declare const CompositeElementFitEnum: {
|
|
|
239
327
|
readonly Inside: "inside";
|
|
240
328
|
readonly Outside: "outside";
|
|
241
329
|
};
|
|
242
|
-
export type CompositeElementFitEnum = typeof CompositeElementFitEnum[keyof typeof CompositeElementFitEnum];
|
|
330
|
+
export type CompositeElementFitEnum = (typeof CompositeElementFitEnum)[keyof typeof CompositeElementFitEnum];
|
|
243
331
|
/**
|
|
244
332
|
*
|
|
245
333
|
* @export
|
|
@@ -251,13 +339,13 @@ export interface CompositeV1ControllerInput {
|
|
|
251
339
|
* @type {CompositeV1Input}
|
|
252
340
|
* @memberof CompositeV1ControllerInput
|
|
253
341
|
*/
|
|
254
|
-
|
|
342
|
+
input: CompositeV1Input;
|
|
255
343
|
/**
|
|
256
344
|
*
|
|
257
345
|
* @type {object}
|
|
258
346
|
* @memberof CompositeV1ControllerInput
|
|
259
347
|
*/
|
|
260
|
-
|
|
348
|
+
metadata?: object;
|
|
261
349
|
}
|
|
262
350
|
/**
|
|
263
351
|
*
|
|
@@ -270,25 +358,25 @@ export interface CompositeV1Input {
|
|
|
270
358
|
* @type {number}
|
|
271
359
|
* @memberof CompositeV1Input
|
|
272
360
|
*/
|
|
273
|
-
|
|
361
|
+
width: number;
|
|
274
362
|
/**
|
|
275
363
|
*
|
|
276
364
|
* @type {number}
|
|
277
365
|
* @memberof CompositeV1Input
|
|
278
366
|
*/
|
|
279
|
-
|
|
367
|
+
height: number;
|
|
280
368
|
/**
|
|
281
369
|
*
|
|
282
370
|
* @type {string}
|
|
283
371
|
* @memberof CompositeV1Input
|
|
284
372
|
*/
|
|
285
|
-
|
|
373
|
+
background: string;
|
|
286
374
|
/**
|
|
287
375
|
*
|
|
288
376
|
* @type {Array<CompositeElement>}
|
|
289
377
|
* @memberof CompositeV1Input
|
|
290
378
|
*/
|
|
291
|
-
|
|
379
|
+
elements: Array<CompositeElement>;
|
|
292
380
|
}
|
|
293
381
|
/**
|
|
294
382
|
*
|
|
@@ -301,7 +389,7 @@ export interface CreateAccountParamsDto {
|
|
|
301
389
|
* @type {string}
|
|
302
390
|
* @memberof CreateAccountParamsDto
|
|
303
391
|
*/
|
|
304
|
-
|
|
392
|
+
alias?: string;
|
|
305
393
|
}
|
|
306
394
|
/**
|
|
307
395
|
*
|
|
@@ -314,7 +402,7 @@ export interface CreateCollectionParamsDto {
|
|
|
314
402
|
* @type {object}
|
|
315
403
|
* @memberof CreateCollectionParamsDto
|
|
316
404
|
*/
|
|
317
|
-
|
|
405
|
+
metadata?: object;
|
|
318
406
|
}
|
|
319
407
|
/**
|
|
320
408
|
*
|
|
@@ -327,7 +415,7 @@ export interface CreateImageParamsDto {
|
|
|
327
415
|
* @type {string}
|
|
328
416
|
* @memberof CreateImageParamsDto
|
|
329
417
|
*/
|
|
330
|
-
|
|
418
|
+
fileToken?: string;
|
|
331
419
|
}
|
|
332
420
|
/**
|
|
333
421
|
*
|
|
@@ -340,13 +428,13 @@ export interface CreatePipelineParamsDto {
|
|
|
340
428
|
* @type {object}
|
|
341
429
|
* @memberof CreatePipelineParamsDto
|
|
342
430
|
*/
|
|
343
|
-
|
|
431
|
+
metadata?: object;
|
|
344
432
|
/**
|
|
345
433
|
*
|
|
346
434
|
* @type {object}
|
|
347
435
|
* @memberof CreatePipelineParamsDto
|
|
348
436
|
*/
|
|
349
|
-
|
|
437
|
+
tasks: object;
|
|
350
438
|
}
|
|
351
439
|
/**
|
|
352
440
|
*
|
|
@@ -359,7 +447,7 @@ export interface CreateStackParamsDto {
|
|
|
359
447
|
* @type {object}
|
|
360
448
|
* @memberof CreateStackParamsDto
|
|
361
449
|
*/
|
|
362
|
-
|
|
450
|
+
metadata?: object;
|
|
363
451
|
}
|
|
364
452
|
/**
|
|
365
453
|
*
|
|
@@ -372,13 +460,13 @@ export interface CreateStorageRecordParamsDto {
|
|
|
372
460
|
* @type {string}
|
|
373
461
|
* @memberof CreateStorageRecordParamsDto
|
|
374
462
|
*/
|
|
375
|
-
|
|
463
|
+
key: string;
|
|
376
464
|
/**
|
|
377
465
|
*
|
|
378
466
|
* @type {object}
|
|
379
467
|
* @memberof CreateStorageRecordParamsDto
|
|
380
468
|
*/
|
|
381
|
-
|
|
469
|
+
value: object;
|
|
382
470
|
}
|
|
383
471
|
/**
|
|
384
472
|
*
|
|
@@ -391,13 +479,13 @@ export interface CutV1ControllerInput {
|
|
|
391
479
|
* @type {CutV1Input}
|
|
392
480
|
* @memberof CutV1ControllerInput
|
|
393
481
|
*/
|
|
394
|
-
|
|
482
|
+
input: CutV1Input;
|
|
395
483
|
/**
|
|
396
484
|
*
|
|
397
485
|
* @type {object}
|
|
398
486
|
* @memberof CutV1ControllerInput
|
|
399
487
|
*/
|
|
400
|
-
|
|
488
|
+
metadata?: object;
|
|
401
489
|
}
|
|
402
490
|
/**
|
|
403
491
|
*
|
|
@@ -410,13 +498,26 @@ export interface CutV1Input {
|
|
|
410
498
|
* @type {string}
|
|
411
499
|
* @memberof CutV1Input
|
|
412
500
|
*/
|
|
413
|
-
|
|
501
|
+
imageId: string;
|
|
414
502
|
/**
|
|
415
503
|
*
|
|
416
504
|
* @type {string}
|
|
417
505
|
* @memberof CutV1Input
|
|
418
506
|
*/
|
|
419
|
-
|
|
507
|
+
maskImageId: string;
|
|
508
|
+
}
|
|
509
|
+
/**
|
|
510
|
+
*
|
|
511
|
+
* @export
|
|
512
|
+
* @interface DeleteParamsDto
|
|
513
|
+
*/
|
|
514
|
+
export interface DeleteParamsDto {
|
|
515
|
+
/**
|
|
516
|
+
*
|
|
517
|
+
* @type {string}
|
|
518
|
+
* @memberof DeleteParamsDto
|
|
519
|
+
*/
|
|
520
|
+
id: string;
|
|
420
521
|
}
|
|
421
522
|
/**
|
|
422
523
|
*
|
|
@@ -429,7 +530,7 @@ export interface DeleteStorageParamsDto {
|
|
|
429
530
|
* @type {string}
|
|
430
531
|
* @memberof DeleteStorageParamsDto
|
|
431
532
|
*/
|
|
432
|
-
|
|
533
|
+
key: string;
|
|
433
534
|
}
|
|
434
535
|
/**
|
|
435
536
|
*
|
|
@@ -442,13 +543,13 @@ export interface GPTV1ControllerInput {
|
|
|
442
543
|
* @type {GPTV1Input}
|
|
443
544
|
* @memberof GPTV1ControllerInput
|
|
444
545
|
*/
|
|
445
|
-
|
|
546
|
+
input: GPTV1Input;
|
|
446
547
|
/**
|
|
447
548
|
*
|
|
448
549
|
* @type {object}
|
|
449
550
|
* @memberof GPTV1ControllerInput
|
|
450
551
|
*/
|
|
451
|
-
|
|
552
|
+
metadata?: object;
|
|
452
553
|
}
|
|
453
554
|
/**
|
|
454
555
|
*
|
|
@@ -461,24 +562,56 @@ export interface GPTV1Input {
|
|
|
461
562
|
* @type {string}
|
|
462
563
|
* @memberof GPTV1Input
|
|
463
564
|
*/
|
|
464
|
-
|
|
565
|
+
model?: GPTV1InputModelEnum;
|
|
465
566
|
/**
|
|
466
567
|
*
|
|
467
568
|
* @type {string}
|
|
468
569
|
* @memberof GPTV1Input
|
|
469
570
|
*/
|
|
470
|
-
|
|
571
|
+
prompt: string;
|
|
471
572
|
/**
|
|
472
573
|
*
|
|
473
574
|
* @type {string}
|
|
474
575
|
* @memberof GPTV1Input
|
|
475
576
|
*/
|
|
476
|
-
|
|
577
|
+
imageId?: string;
|
|
477
578
|
}
|
|
478
579
|
export declare const GPTV1InputModelEnum: {
|
|
479
580
|
readonly Gpt4o: "gpt-4o";
|
|
480
581
|
};
|
|
481
|
-
export type GPTV1InputModelEnum = typeof GPTV1InputModelEnum[keyof typeof GPTV1InputModelEnum];
|
|
582
|
+
export type GPTV1InputModelEnum = (typeof GPTV1InputModelEnum)[keyof typeof GPTV1InputModelEnum];
|
|
583
|
+
/**
|
|
584
|
+
*
|
|
585
|
+
* @export
|
|
586
|
+
* @interface GetAccountParamsDto
|
|
587
|
+
*/
|
|
588
|
+
export interface GetAccountParamsDto {
|
|
589
|
+
/**
|
|
590
|
+
*
|
|
591
|
+
* @type {string}
|
|
592
|
+
* @memberof GetAccountParamsDto
|
|
593
|
+
*/
|
|
594
|
+
id?: string;
|
|
595
|
+
/**
|
|
596
|
+
*
|
|
597
|
+
* @type {string}
|
|
598
|
+
* @memberof GetAccountParamsDto
|
|
599
|
+
*/
|
|
600
|
+
alias?: string;
|
|
601
|
+
}
|
|
602
|
+
/**
|
|
603
|
+
*
|
|
604
|
+
* @export
|
|
605
|
+
* @interface GetBalanceParamsDto
|
|
606
|
+
*/
|
|
607
|
+
export interface GetBalanceParamsDto {
|
|
608
|
+
/**
|
|
609
|
+
*
|
|
610
|
+
* @type {string}
|
|
611
|
+
* @memberof GetBalanceParamsDto
|
|
612
|
+
*/
|
|
613
|
+
accountId: string;
|
|
614
|
+
}
|
|
482
615
|
/**
|
|
483
616
|
*
|
|
484
617
|
* @export
|
|
@@ -490,7 +623,69 @@ export interface GetCollectionParamsDto {
|
|
|
490
623
|
* @type {string}
|
|
491
624
|
* @memberof GetCollectionParamsDto
|
|
492
625
|
*/
|
|
493
|
-
|
|
626
|
+
collectionId: string;
|
|
627
|
+
}
|
|
628
|
+
/**
|
|
629
|
+
*
|
|
630
|
+
* @export
|
|
631
|
+
* @interface GetGroupParamsDto
|
|
632
|
+
*/
|
|
633
|
+
export interface GetGroupParamsDto {
|
|
634
|
+
/**
|
|
635
|
+
*
|
|
636
|
+
* @type {string}
|
|
637
|
+
* @memberof GetGroupParamsDto
|
|
638
|
+
*/
|
|
639
|
+
id: string;
|
|
640
|
+
}
|
|
641
|
+
/**
|
|
642
|
+
*
|
|
643
|
+
* @export
|
|
644
|
+
* @interface GetImageParamsDto
|
|
645
|
+
*/
|
|
646
|
+
export interface GetImageParamsDto {
|
|
647
|
+
/**
|
|
648
|
+
*
|
|
649
|
+
* @type {string}
|
|
650
|
+
* @memberof GetImageParamsDto
|
|
651
|
+
*/
|
|
652
|
+
id: string;
|
|
653
|
+
}
|
|
654
|
+
/**
|
|
655
|
+
*
|
|
656
|
+
* @export
|
|
657
|
+
* @interface GetImageRepresentationParamsDto
|
|
658
|
+
*/
|
|
659
|
+
export interface GetImageRepresentationParamsDto {
|
|
660
|
+
/**
|
|
661
|
+
*
|
|
662
|
+
* @type {string}
|
|
663
|
+
* @memberof GetImageRepresentationParamsDto
|
|
664
|
+
*/
|
|
665
|
+
imageId: string;
|
|
666
|
+
/**
|
|
667
|
+
*
|
|
668
|
+
* @type {string}
|
|
669
|
+
* @memberof GetImageRepresentationParamsDto
|
|
670
|
+
*/
|
|
671
|
+
type: GetImageRepresentationParamsDtoTypeEnum;
|
|
672
|
+
}
|
|
673
|
+
export declare const GetImageRepresentationParamsDtoTypeEnum: {
|
|
674
|
+
readonly SamV1: "sam.v1";
|
|
675
|
+
};
|
|
676
|
+
export type GetImageRepresentationParamsDtoTypeEnum = (typeof GetImageRepresentationParamsDtoTypeEnum)[keyof typeof GetImageRepresentationParamsDtoTypeEnum];
|
|
677
|
+
/**
|
|
678
|
+
*
|
|
679
|
+
* @export
|
|
680
|
+
* @interface GetOperationParamsDto
|
|
681
|
+
*/
|
|
682
|
+
export interface GetOperationParamsDto {
|
|
683
|
+
/**
|
|
684
|
+
*
|
|
685
|
+
* @type {string}
|
|
686
|
+
* @memberof GetOperationParamsDto
|
|
687
|
+
*/
|
|
688
|
+
id: string;
|
|
494
689
|
}
|
|
495
690
|
/**
|
|
496
691
|
*
|
|
@@ -503,7 +698,33 @@ export interface GetOperationsParamsDto {
|
|
|
503
698
|
* @type {Array<string>}
|
|
504
699
|
* @memberof GetOperationsParamsDto
|
|
505
700
|
*/
|
|
506
|
-
|
|
701
|
+
ids: Array<string>;
|
|
702
|
+
}
|
|
703
|
+
/**
|
|
704
|
+
*
|
|
705
|
+
* @export
|
|
706
|
+
* @interface GetPoseParamsDto
|
|
707
|
+
*/
|
|
708
|
+
export interface GetPoseParamsDto {
|
|
709
|
+
/**
|
|
710
|
+
*
|
|
711
|
+
* @type {string}
|
|
712
|
+
* @memberof GetPoseParamsDto
|
|
713
|
+
*/
|
|
714
|
+
id: string;
|
|
715
|
+
}
|
|
716
|
+
/**
|
|
717
|
+
*
|
|
718
|
+
* @export
|
|
719
|
+
* @interface GetStackParamsDto
|
|
720
|
+
*/
|
|
721
|
+
export interface GetStackParamsDto {
|
|
722
|
+
/**
|
|
723
|
+
*
|
|
724
|
+
* @type {string}
|
|
725
|
+
* @memberof GetStackParamsDto
|
|
726
|
+
*/
|
|
727
|
+
id: string;
|
|
507
728
|
}
|
|
508
729
|
/**
|
|
509
730
|
*
|
|
@@ -516,7 +737,7 @@ export interface GetStorageRecordParamsDto {
|
|
|
516
737
|
* @type {Array<string>}
|
|
517
738
|
* @memberof GetStorageRecordParamsDto
|
|
518
739
|
*/
|
|
519
|
-
|
|
740
|
+
keys: Array<string>;
|
|
520
741
|
}
|
|
521
742
|
/**
|
|
522
743
|
*
|
|
@@ -529,8 +750,70 @@ export interface GetUrlsForImagesParamsDto {
|
|
|
529
750
|
* @type {Array<string>}
|
|
530
751
|
* @memberof GetUrlsForImagesParamsDto
|
|
531
752
|
*/
|
|
532
|
-
|
|
753
|
+
ids: Array<string>;
|
|
754
|
+
}
|
|
755
|
+
/**
|
|
756
|
+
*
|
|
757
|
+
* @export
|
|
758
|
+
* @interface GiseleVtonV1ControllerInput
|
|
759
|
+
*/
|
|
760
|
+
export interface GiseleVtonV1ControllerInput {
|
|
761
|
+
/**
|
|
762
|
+
*
|
|
763
|
+
* @type {GiseleVtonV1Input}
|
|
764
|
+
* @memberof GiseleVtonV1ControllerInput
|
|
765
|
+
*/
|
|
766
|
+
input: GiseleVtonV1Input;
|
|
767
|
+
/**
|
|
768
|
+
*
|
|
769
|
+
* @type {object}
|
|
770
|
+
* @memberof GiseleVtonV1ControllerInput
|
|
771
|
+
*/
|
|
772
|
+
metadata?: object;
|
|
773
|
+
}
|
|
774
|
+
/**
|
|
775
|
+
*
|
|
776
|
+
* @export
|
|
777
|
+
* @interface GiseleVtonV1Input
|
|
778
|
+
*/
|
|
779
|
+
export interface GiseleVtonV1Input {
|
|
780
|
+
/**
|
|
781
|
+
*
|
|
782
|
+
* @type {string}
|
|
783
|
+
* @memberof GiseleVtonV1Input
|
|
784
|
+
*/
|
|
785
|
+
category: GiseleVtonV1InputCategoryEnum;
|
|
786
|
+
/**
|
|
787
|
+
*
|
|
788
|
+
* @type {string}
|
|
789
|
+
* @memberof GiseleVtonV1Input
|
|
790
|
+
*/
|
|
791
|
+
imageId: string;
|
|
792
|
+
/**
|
|
793
|
+
*
|
|
794
|
+
* @type {string}
|
|
795
|
+
* @memberof GiseleVtonV1Input
|
|
796
|
+
*/
|
|
797
|
+
productDescription: string;
|
|
798
|
+
/**
|
|
799
|
+
*
|
|
800
|
+
* @type {string}
|
|
801
|
+
* @memberof GiseleVtonV1Input
|
|
802
|
+
*/
|
|
803
|
+
productImageId: string;
|
|
804
|
+
/**
|
|
805
|
+
*
|
|
806
|
+
* @type {number}
|
|
807
|
+
* @memberof GiseleVtonV1Input
|
|
808
|
+
*/
|
|
809
|
+
seed: number;
|
|
533
810
|
}
|
|
811
|
+
export declare const GiseleVtonV1InputCategoryEnum: {
|
|
812
|
+
readonly Dresses: "dresses";
|
|
813
|
+
readonly LowerBody: "lower_body";
|
|
814
|
+
readonly UpperBody: "upper_body";
|
|
815
|
+
};
|
|
816
|
+
export type GiseleVtonV1InputCategoryEnum = (typeof GiseleVtonV1InputCategoryEnum)[keyof typeof GiseleVtonV1InputCategoryEnum];
|
|
534
817
|
/**
|
|
535
818
|
*
|
|
536
819
|
* @export
|
|
@@ -542,14 +825,61 @@ export interface GrantAccessControllerParams {
|
|
|
542
825
|
* @type {string}
|
|
543
826
|
* @memberof GrantAccessControllerParams
|
|
544
827
|
*/
|
|
545
|
-
|
|
828
|
+
principalType: GrantAccessControllerParamsPrincipalTypeEnum;
|
|
829
|
+
/**
|
|
830
|
+
*
|
|
831
|
+
* @type {string}
|
|
832
|
+
* @memberof GrantAccessControllerParams
|
|
833
|
+
*/
|
|
834
|
+
principalId: string;
|
|
546
835
|
/**
|
|
547
836
|
*
|
|
548
837
|
* @type {string}
|
|
549
838
|
* @memberof GrantAccessControllerParams
|
|
550
839
|
*/
|
|
551
|
-
|
|
840
|
+
access: string;
|
|
841
|
+
}
|
|
842
|
+
export declare const GrantAccessControllerParamsPrincipalTypeEnum: {
|
|
843
|
+
readonly Account: "account";
|
|
844
|
+
readonly Group: "group";
|
|
845
|
+
};
|
|
846
|
+
export type GrantAccessControllerParamsPrincipalTypeEnum = (typeof GrantAccessControllerParamsPrincipalTypeEnum)[keyof typeof GrantAccessControllerParamsPrincipalTypeEnum];
|
|
847
|
+
/**
|
|
848
|
+
*
|
|
849
|
+
* @export
|
|
850
|
+
* @interface GrantAccessParamsDto
|
|
851
|
+
*/
|
|
852
|
+
export interface GrantAccessParamsDto {
|
|
853
|
+
/**
|
|
854
|
+
*
|
|
855
|
+
* @type {string}
|
|
856
|
+
* @memberof GrantAccessParamsDto
|
|
857
|
+
*/
|
|
858
|
+
principalType: GrantAccessParamsDtoPrincipalTypeEnum;
|
|
859
|
+
/**
|
|
860
|
+
*
|
|
861
|
+
* @type {string}
|
|
862
|
+
* @memberof GrantAccessParamsDto
|
|
863
|
+
*/
|
|
864
|
+
principalId: string;
|
|
865
|
+
/**
|
|
866
|
+
*
|
|
867
|
+
* @type {string}
|
|
868
|
+
* @memberof GrantAccessParamsDto
|
|
869
|
+
*/
|
|
870
|
+
resourceId: string;
|
|
871
|
+
/**
|
|
872
|
+
*
|
|
873
|
+
* @type {string}
|
|
874
|
+
* @memberof GrantAccessParamsDto
|
|
875
|
+
*/
|
|
876
|
+
access: string;
|
|
552
877
|
}
|
|
878
|
+
export declare const GrantAccessParamsDtoPrincipalTypeEnum: {
|
|
879
|
+
readonly Account: "account";
|
|
880
|
+
readonly Group: "group";
|
|
881
|
+
};
|
|
882
|
+
export type GrantAccessParamsDtoPrincipalTypeEnum = (typeof GrantAccessParamsDtoPrincipalTypeEnum)[keyof typeof GrantAccessParamsDtoPrincipalTypeEnum];
|
|
553
883
|
/**
|
|
554
884
|
*
|
|
555
885
|
* @export
|
|
@@ -561,13 +891,13 @@ export interface GroupEntity {
|
|
|
561
891
|
* @type {string}
|
|
562
892
|
* @memberof GroupEntity
|
|
563
893
|
*/
|
|
564
|
-
|
|
894
|
+
id: string;
|
|
565
895
|
/**
|
|
566
896
|
*
|
|
567
897
|
* @type {string}
|
|
568
898
|
* @memberof GroupEntity
|
|
569
899
|
*/
|
|
570
|
-
|
|
900
|
+
createdAt: string;
|
|
571
901
|
}
|
|
572
902
|
/**
|
|
573
903
|
*
|
|
@@ -580,55 +910,61 @@ export interface ImageEntity {
|
|
|
580
910
|
* @type {string}
|
|
581
911
|
* @memberof ImageEntity
|
|
582
912
|
*/
|
|
583
|
-
|
|
913
|
+
kind: ImageEntityKindEnum;
|
|
584
914
|
/**
|
|
585
915
|
*
|
|
586
916
|
* @type {string}
|
|
587
917
|
* @memberof ImageEntity
|
|
588
918
|
*/
|
|
589
|
-
|
|
919
|
+
id: string;
|
|
590
920
|
/**
|
|
591
921
|
*
|
|
592
922
|
* @type {string}
|
|
593
923
|
* @memberof ImageEntity
|
|
594
924
|
*/
|
|
595
|
-
|
|
925
|
+
creatorId: string;
|
|
596
926
|
/**
|
|
597
927
|
*
|
|
598
928
|
* @type {object}
|
|
599
929
|
* @memberof ImageEntity
|
|
600
930
|
*/
|
|
601
|
-
|
|
931
|
+
metadata: object;
|
|
602
932
|
/**
|
|
603
933
|
*
|
|
604
934
|
* @type {string}
|
|
605
935
|
* @memberof ImageEntity
|
|
606
936
|
*/
|
|
607
|
-
|
|
937
|
+
createdAt: string;
|
|
608
938
|
/**
|
|
609
939
|
*
|
|
610
940
|
* @type {string}
|
|
611
941
|
* @memberof ImageEntity
|
|
612
942
|
*/
|
|
613
|
-
|
|
943
|
+
updatedAt: string;
|
|
614
944
|
/**
|
|
615
945
|
*
|
|
616
946
|
* @type {number}
|
|
617
947
|
* @memberof ImageEntity
|
|
618
948
|
*/
|
|
619
|
-
|
|
949
|
+
width: number;
|
|
620
950
|
/**
|
|
621
951
|
*
|
|
622
952
|
* @type {number}
|
|
623
953
|
* @memberof ImageEntity
|
|
624
954
|
*/
|
|
625
|
-
|
|
955
|
+
height: number;
|
|
626
956
|
/**
|
|
627
957
|
*
|
|
628
958
|
* @type {string}
|
|
629
959
|
* @memberof ImageEntity
|
|
630
960
|
*/
|
|
631
|
-
|
|
961
|
+
format: string;
|
|
962
|
+
/**
|
|
963
|
+
*
|
|
964
|
+
* @type {string}
|
|
965
|
+
* @memberof ImageEntity
|
|
966
|
+
*/
|
|
967
|
+
url: string;
|
|
632
968
|
}
|
|
633
969
|
export declare const ImageEntityKindEnum: {
|
|
634
970
|
readonly Collection: "collection";
|
|
@@ -639,7 +975,7 @@ export declare const ImageEntityKindEnum: {
|
|
|
639
975
|
readonly Storage: "storage";
|
|
640
976
|
readonly Pipeline: "pipeline";
|
|
641
977
|
};
|
|
642
|
-
export type ImageEntityKindEnum = typeof ImageEntityKindEnum[keyof typeof ImageEntityKindEnum];
|
|
978
|
+
export type ImageEntityKindEnum = (typeof ImageEntityKindEnum)[keyof typeof ImageEntityKindEnum];
|
|
643
979
|
/**
|
|
644
980
|
*
|
|
645
981
|
* @export
|
|
@@ -651,19 +987,19 @@ export interface ImageRepresentationResponseDto {
|
|
|
651
987
|
* @type {string}
|
|
652
988
|
* @memberof ImageRepresentationResponseDto
|
|
653
989
|
*/
|
|
654
|
-
|
|
990
|
+
imageId: string;
|
|
655
991
|
/**
|
|
656
992
|
*
|
|
657
993
|
* @type {string}
|
|
658
994
|
* @memberof ImageRepresentationResponseDto
|
|
659
995
|
*/
|
|
660
|
-
|
|
996
|
+
type: string;
|
|
661
997
|
/**
|
|
662
998
|
*
|
|
663
999
|
* @type {string}
|
|
664
1000
|
* @memberof ImageRepresentationResponseDto
|
|
665
1001
|
*/
|
|
666
|
-
|
|
1002
|
+
url: string;
|
|
667
1003
|
}
|
|
668
1004
|
/**
|
|
669
1005
|
*
|
|
@@ -676,13 +1012,13 @@ export interface ImageUrlResponseDto {
|
|
|
676
1012
|
* @type {string}
|
|
677
1013
|
* @memberof ImageUrlResponseDto
|
|
678
1014
|
*/
|
|
679
|
-
|
|
1015
|
+
id: string;
|
|
680
1016
|
/**
|
|
681
1017
|
*
|
|
682
1018
|
* @type {string}
|
|
683
1019
|
* @memberof ImageUrlResponseDto
|
|
684
1020
|
*/
|
|
685
|
-
|
|
1021
|
+
url: string;
|
|
686
1022
|
}
|
|
687
1023
|
/**
|
|
688
1024
|
*
|
|
@@ -695,7 +1031,7 @@ export interface InitializeImageUploadResultDto {
|
|
|
695
1031
|
* @type {string}
|
|
696
1032
|
* @memberof InitializeImageUploadResultDto
|
|
697
1033
|
*/
|
|
698
|
-
|
|
1034
|
+
uploadUrl: string;
|
|
699
1035
|
}
|
|
700
1036
|
/**
|
|
701
1037
|
*
|
|
@@ -708,13 +1044,13 @@ export interface KateImagineV1ControllerInput {
|
|
|
708
1044
|
* @type {KateImagineV1Input}
|
|
709
1045
|
* @memberof KateImagineV1ControllerInput
|
|
710
1046
|
*/
|
|
711
|
-
|
|
1047
|
+
input: KateImagineV1Input;
|
|
712
1048
|
/**
|
|
713
1049
|
*
|
|
714
1050
|
* @type {object}
|
|
715
1051
|
* @memberof KateImagineV1ControllerInput
|
|
716
1052
|
*/
|
|
717
|
-
|
|
1053
|
+
metadata?: object;
|
|
718
1054
|
}
|
|
719
1055
|
/**
|
|
720
1056
|
*
|
|
@@ -727,19 +1063,19 @@ export interface KateImagineV1Input {
|
|
|
727
1063
|
* @type {string}
|
|
728
1064
|
* @memberof KateImagineV1Input
|
|
729
1065
|
*/
|
|
730
|
-
|
|
1066
|
+
aspectRatio: KateImagineV1InputAspectRatioEnum;
|
|
731
1067
|
/**
|
|
732
1068
|
*
|
|
733
1069
|
* @type {string}
|
|
734
1070
|
* @memberof KateImagineV1Input
|
|
735
1071
|
*/
|
|
736
|
-
|
|
1072
|
+
seed: string;
|
|
737
1073
|
/**
|
|
738
1074
|
*
|
|
739
1075
|
* @type {string}
|
|
740
1076
|
* @memberof KateImagineV1Input
|
|
741
1077
|
*/
|
|
742
|
-
|
|
1078
|
+
prompt: string;
|
|
743
1079
|
}
|
|
744
1080
|
export declare const KateImagineV1InputAspectRatioEnum: {
|
|
745
1081
|
readonly _11: "1:1";
|
|
@@ -752,7 +1088,7 @@ export declare const KateImagineV1InputAspectRatioEnum: {
|
|
|
752
1088
|
readonly _125: "12:5";
|
|
753
1089
|
readonly _512: "5:12";
|
|
754
1090
|
};
|
|
755
|
-
export type KateImagineV1InputAspectRatioEnum = typeof KateImagineV1InputAspectRatioEnum[keyof typeof KateImagineV1InputAspectRatioEnum];
|
|
1091
|
+
export type KateImagineV1InputAspectRatioEnum = (typeof KateImagineV1InputAspectRatioEnum)[keyof typeof KateImagineV1InputAspectRatioEnum];
|
|
756
1092
|
/**
|
|
757
1093
|
*
|
|
758
1094
|
* @export
|
|
@@ -764,13 +1100,13 @@ export interface KateInpaintV1ControllerInput {
|
|
|
764
1100
|
* @type {KateInpaintV1Input}
|
|
765
1101
|
* @memberof KateInpaintV1ControllerInput
|
|
766
1102
|
*/
|
|
767
|
-
|
|
1103
|
+
input: KateInpaintV1Input;
|
|
768
1104
|
/**
|
|
769
1105
|
*
|
|
770
1106
|
* @type {object}
|
|
771
1107
|
* @memberof KateInpaintV1ControllerInput
|
|
772
1108
|
*/
|
|
773
|
-
|
|
1109
|
+
metadata?: object;
|
|
774
1110
|
}
|
|
775
1111
|
/**
|
|
776
1112
|
*
|
|
@@ -783,61 +1119,61 @@ export interface KateInpaintV1Input {
|
|
|
783
1119
|
* @type {string}
|
|
784
1120
|
* @memberof KateInpaintV1Input
|
|
785
1121
|
*/
|
|
786
|
-
|
|
1122
|
+
image: string;
|
|
787
1123
|
/**
|
|
788
1124
|
*
|
|
789
1125
|
* @type {string}
|
|
790
1126
|
* @memberof KateInpaintV1Input
|
|
791
1127
|
*/
|
|
792
|
-
|
|
1128
|
+
mask: string;
|
|
793
1129
|
/**
|
|
794
1130
|
*
|
|
795
1131
|
* @type {number}
|
|
796
1132
|
* @memberof KateInpaintV1Input
|
|
797
1133
|
*/
|
|
798
|
-
|
|
1134
|
+
maskSpread?: number;
|
|
799
1135
|
/**
|
|
800
1136
|
*
|
|
801
1137
|
* @type {string}
|
|
802
1138
|
* @memberof KateInpaintV1Input
|
|
803
1139
|
*/
|
|
804
|
-
|
|
1140
|
+
prompt: string;
|
|
805
1141
|
/**
|
|
806
1142
|
*
|
|
807
1143
|
* @type {number}
|
|
808
1144
|
* @memberof KateInpaintV1Input
|
|
809
1145
|
*/
|
|
810
|
-
|
|
1146
|
+
seed: number;
|
|
811
1147
|
/**
|
|
812
1148
|
*
|
|
813
1149
|
* @type {number}
|
|
814
1150
|
* @memberof KateInpaintV1Input
|
|
815
1151
|
*/
|
|
816
|
-
|
|
1152
|
+
strength: number;
|
|
817
1153
|
/**
|
|
818
1154
|
*
|
|
819
1155
|
* @type {number}
|
|
820
1156
|
* @memberof KateInpaintV1Input
|
|
821
1157
|
*/
|
|
822
|
-
|
|
1158
|
+
height: number;
|
|
823
1159
|
/**
|
|
824
1160
|
*
|
|
825
1161
|
* @type {number}
|
|
826
1162
|
* @memberof KateInpaintV1Input
|
|
827
1163
|
*/
|
|
828
|
-
|
|
1164
|
+
width: number;
|
|
829
1165
|
/**
|
|
830
1166
|
*
|
|
831
1167
|
* @type {number}
|
|
832
1168
|
* @memberof KateInpaintV1Input
|
|
833
1169
|
*/
|
|
834
|
-
|
|
1170
|
+
numInferenceSteps?: number;
|
|
835
1171
|
/**
|
|
836
1172
|
*
|
|
837
1173
|
* @type {number}
|
|
838
1174
|
* @memberof KateInpaintV1Input
|
|
839
1175
|
*/
|
|
840
|
-
|
|
1176
|
+
guidanceScale?: number;
|
|
841
1177
|
}
|
|
842
1178
|
/**
|
|
843
1179
|
*
|
|
@@ -850,13 +1186,13 @@ export interface LindaHauteV1ControllerInput {
|
|
|
850
1186
|
* @type {LindaHauteV1Input}
|
|
851
1187
|
* @memberof LindaHauteV1ControllerInput
|
|
852
1188
|
*/
|
|
853
|
-
|
|
1189
|
+
input: LindaHauteV1Input;
|
|
854
1190
|
/**
|
|
855
1191
|
*
|
|
856
1192
|
* @type {object}
|
|
857
1193
|
* @memberof LindaHauteV1ControllerInput
|
|
858
1194
|
*/
|
|
859
|
-
|
|
1195
|
+
metadata?: object;
|
|
860
1196
|
}
|
|
861
1197
|
/**
|
|
862
1198
|
*
|
|
@@ -869,55 +1205,55 @@ export interface LindaHauteV1Input {
|
|
|
869
1205
|
* @type {string}
|
|
870
1206
|
* @memberof LindaHauteV1Input
|
|
871
1207
|
*/
|
|
872
|
-
|
|
1208
|
+
aspectRatio: LindaHauteV1InputAspectRatioEnum;
|
|
873
1209
|
/**
|
|
874
1210
|
*
|
|
875
1211
|
* @type {string}
|
|
876
1212
|
* @memberof LindaHauteV1Input
|
|
877
1213
|
*/
|
|
878
|
-
|
|
1214
|
+
productImageId: string;
|
|
879
1215
|
/**
|
|
880
1216
|
*
|
|
881
1217
|
* @type {string}
|
|
882
1218
|
* @memberof LindaHauteV1Input
|
|
883
1219
|
*/
|
|
884
|
-
|
|
1220
|
+
prompt: string;
|
|
885
1221
|
/**
|
|
886
1222
|
*
|
|
887
1223
|
* @type {number}
|
|
888
1224
|
* @memberof LindaHauteV1Input
|
|
889
1225
|
*/
|
|
890
|
-
|
|
1226
|
+
seed: number;
|
|
891
1227
|
/**
|
|
892
1228
|
*
|
|
893
1229
|
* @type {number}
|
|
894
1230
|
* @memberof LindaHauteV1Input
|
|
895
1231
|
*/
|
|
896
|
-
|
|
1232
|
+
imageWeight?: number;
|
|
897
1233
|
/**
|
|
898
1234
|
*
|
|
899
1235
|
* @type {string}
|
|
900
1236
|
* @memberof LindaHauteV1Input
|
|
901
1237
|
*/
|
|
902
|
-
|
|
1238
|
+
negativePrompt?: string;
|
|
903
1239
|
/**
|
|
904
1240
|
*
|
|
905
1241
|
* @type {number}
|
|
906
1242
|
* @memberof LindaHauteV1Input
|
|
907
1243
|
*/
|
|
908
|
-
|
|
1244
|
+
inferenceSteps?: number;
|
|
909
1245
|
/**
|
|
910
1246
|
*
|
|
911
1247
|
* @type {number}
|
|
912
1248
|
* @memberof LindaHauteV1Input
|
|
913
1249
|
*/
|
|
914
|
-
|
|
1250
|
+
guidanceScale?: number;
|
|
915
1251
|
/**
|
|
916
1252
|
*
|
|
917
1253
|
* @type {number}
|
|
918
1254
|
* @memberof LindaHauteV1Input
|
|
919
1255
|
*/
|
|
920
|
-
|
|
1256
|
+
strength?: number;
|
|
921
1257
|
}
|
|
922
1258
|
export declare const LindaHauteV1InputAspectRatioEnum: {
|
|
923
1259
|
readonly _11: "1:1";
|
|
@@ -930,7 +1266,7 @@ export declare const LindaHauteV1InputAspectRatioEnum: {
|
|
|
930
1266
|
readonly _125: "12:5";
|
|
931
1267
|
readonly _512: "5:12";
|
|
932
1268
|
};
|
|
933
|
-
export type LindaHauteV1InputAspectRatioEnum = typeof LindaHauteV1InputAspectRatioEnum[keyof typeof LindaHauteV1InputAspectRatioEnum];
|
|
1269
|
+
export type LindaHauteV1InputAspectRatioEnum = (typeof LindaHauteV1InputAspectRatioEnum)[keyof typeof LindaHauteV1InputAspectRatioEnum];
|
|
934
1270
|
/**
|
|
935
1271
|
*
|
|
936
1272
|
* @export
|
|
@@ -942,13 +1278,13 @@ export interface ListAccountsDto {
|
|
|
942
1278
|
* @type {Array<AccountEntity>}
|
|
943
1279
|
* @memberof ListAccountsDto
|
|
944
1280
|
*/
|
|
945
|
-
|
|
1281
|
+
data: Array<AccountEntity>;
|
|
946
1282
|
/**
|
|
947
1283
|
*
|
|
948
1284
|
* @type {ListAccountsDtoPageInfo}
|
|
949
1285
|
* @memberof ListAccountsDto
|
|
950
1286
|
*/
|
|
951
|
-
|
|
1287
|
+
pageInfo: ListAccountsDtoPageInfo;
|
|
952
1288
|
}
|
|
953
1289
|
/**
|
|
954
1290
|
*
|
|
@@ -961,66 +1297,214 @@ export interface ListAccountsDtoPageInfo {
|
|
|
961
1297
|
* @type {string}
|
|
962
1298
|
* @memberof ListAccountsDtoPageInfo
|
|
963
1299
|
*/
|
|
964
|
-
|
|
1300
|
+
nextCursor: string;
|
|
965
1301
|
}
|
|
966
1302
|
/**
|
|
967
1303
|
*
|
|
968
1304
|
* @export
|
|
969
|
-
* @interface
|
|
1305
|
+
* @interface ListAccountsParamsDto
|
|
970
1306
|
*/
|
|
971
|
-
export interface
|
|
1307
|
+
export interface ListAccountsParamsDto {
|
|
972
1308
|
/**
|
|
973
1309
|
*
|
|
974
|
-
* @type {
|
|
975
|
-
* @memberof
|
|
1310
|
+
* @type {string}
|
|
1311
|
+
* @memberof ListAccountsParamsDto
|
|
976
1312
|
*/
|
|
977
|
-
|
|
1313
|
+
orderBy?: ListAccountsParamsDtoOrderByEnum;
|
|
978
1314
|
/**
|
|
979
1315
|
*
|
|
980
|
-
* @type {
|
|
981
|
-
* @memberof
|
|
1316
|
+
* @type {number}
|
|
1317
|
+
* @memberof ListAccountsParamsDto
|
|
1318
|
+
*/
|
|
1319
|
+
limit?: number;
|
|
1320
|
+
/**
|
|
1321
|
+
*
|
|
1322
|
+
* @type {string}
|
|
1323
|
+
* @memberof ListAccountsParamsDto
|
|
982
1324
|
*/
|
|
983
|
-
|
|
1325
|
+
cursor?: string;
|
|
984
1326
|
}
|
|
1327
|
+
export declare const ListAccountsParamsDtoOrderByEnum: {
|
|
1328
|
+
readonly Asc: "createdAt_ASC";
|
|
1329
|
+
readonly Desc: "createdAt_DESC";
|
|
1330
|
+
};
|
|
1331
|
+
export type ListAccountsParamsDtoOrderByEnum = (typeof ListAccountsParamsDtoOrderByEnum)[keyof typeof ListAccountsParamsDtoOrderByEnum];
|
|
985
1332
|
/**
|
|
986
1333
|
*
|
|
987
1334
|
* @export
|
|
988
|
-
* @interface
|
|
1335
|
+
* @interface ListCollectionItemsDto
|
|
989
1336
|
*/
|
|
990
|
-
export interface
|
|
1337
|
+
export interface ListCollectionItemsDto {
|
|
991
1338
|
/**
|
|
992
1339
|
*
|
|
993
|
-
* @type {Array<
|
|
994
|
-
* @memberof
|
|
1340
|
+
* @type {Array<ResourceEntity>}
|
|
1341
|
+
* @memberof ListCollectionItemsDto
|
|
995
1342
|
*/
|
|
996
|
-
|
|
1343
|
+
data: Array<ResourceEntity>;
|
|
997
1344
|
/**
|
|
998
1345
|
*
|
|
999
1346
|
* @type {ListAccountsDtoPageInfo}
|
|
1000
|
-
* @memberof
|
|
1347
|
+
* @memberof ListCollectionItemsDto
|
|
1001
1348
|
*/
|
|
1002
|
-
|
|
1349
|
+
pageInfo: ListAccountsDtoPageInfo;
|
|
1003
1350
|
}
|
|
1004
1351
|
/**
|
|
1005
1352
|
*
|
|
1006
1353
|
* @export
|
|
1007
|
-
* @interface
|
|
1354
|
+
* @interface ListCollectionItemsParamsDto
|
|
1008
1355
|
*/
|
|
1009
|
-
export interface
|
|
1356
|
+
export interface ListCollectionItemsParamsDto {
|
|
1010
1357
|
/**
|
|
1011
1358
|
*
|
|
1012
|
-
* @type {
|
|
1013
|
-
* @memberof
|
|
1359
|
+
* @type {string}
|
|
1360
|
+
* @memberof ListCollectionItemsParamsDto
|
|
1014
1361
|
*/
|
|
1015
|
-
|
|
1362
|
+
collectionId: string;
|
|
1016
1363
|
/**
|
|
1017
1364
|
*
|
|
1018
|
-
* @type {
|
|
1019
|
-
* @memberof
|
|
1365
|
+
* @type {string}
|
|
1366
|
+
* @memberof ListCollectionItemsParamsDto
|
|
1020
1367
|
*/
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1368
|
+
orderBy?: ListCollectionItemsParamsDtoOrderByEnum;
|
|
1369
|
+
/**
|
|
1370
|
+
*
|
|
1371
|
+
* @type {number}
|
|
1372
|
+
* @memberof ListCollectionItemsParamsDto
|
|
1373
|
+
*/
|
|
1374
|
+
limit?: number;
|
|
1375
|
+
/**
|
|
1376
|
+
*
|
|
1377
|
+
* @type {string}
|
|
1378
|
+
* @memberof ListCollectionItemsParamsDto
|
|
1379
|
+
*/
|
|
1380
|
+
kind?: ListCollectionItemsParamsDtoKindEnum;
|
|
1381
|
+
/**
|
|
1382
|
+
*
|
|
1383
|
+
* @type {string}
|
|
1384
|
+
* @memberof ListCollectionItemsParamsDto
|
|
1385
|
+
*/
|
|
1386
|
+
cursor?: string;
|
|
1387
|
+
}
|
|
1388
|
+
export declare const ListCollectionItemsParamsDtoOrderByEnum: {
|
|
1389
|
+
readonly CreatedAtAsc: "createdAt_ASC";
|
|
1390
|
+
readonly CreatedAtDesc: "createdAt_DESC";
|
|
1391
|
+
readonly UpdatedAtAsc: "updatedAt_ASC";
|
|
1392
|
+
readonly UpdatedAtDesc: "updatedAt_DESC";
|
|
1393
|
+
};
|
|
1394
|
+
export type ListCollectionItemsParamsDtoOrderByEnum = (typeof ListCollectionItemsParamsDtoOrderByEnum)[keyof typeof ListCollectionItemsParamsDtoOrderByEnum];
|
|
1395
|
+
export declare const ListCollectionItemsParamsDtoKindEnum: {
|
|
1396
|
+
readonly Collection: "collection";
|
|
1397
|
+
readonly Operation: "operation";
|
|
1398
|
+
readonly Stack: "stack";
|
|
1399
|
+
readonly Image: "image";
|
|
1400
|
+
readonly Pose: "pose";
|
|
1401
|
+
readonly Storage: "storage";
|
|
1402
|
+
readonly Pipeline: "pipeline";
|
|
1403
|
+
};
|
|
1404
|
+
export type ListCollectionItemsParamsDtoKindEnum = (typeof ListCollectionItemsParamsDtoKindEnum)[keyof typeof ListCollectionItemsParamsDtoKindEnum];
|
|
1405
|
+
/**
|
|
1406
|
+
*
|
|
1407
|
+
* @export
|
|
1408
|
+
* @interface ListCollectionsDto
|
|
1409
|
+
*/
|
|
1410
|
+
export interface ListCollectionsDto {
|
|
1411
|
+
/**
|
|
1412
|
+
*
|
|
1413
|
+
* @type {Array<CollectionEntity>}
|
|
1414
|
+
* @memberof ListCollectionsDto
|
|
1415
|
+
*/
|
|
1416
|
+
data: Array<CollectionEntity>;
|
|
1417
|
+
/**
|
|
1418
|
+
*
|
|
1419
|
+
* @type {ListAccountsDtoPageInfo}
|
|
1420
|
+
* @memberof ListCollectionsDto
|
|
1421
|
+
*/
|
|
1422
|
+
pageInfo: ListAccountsDtoPageInfo;
|
|
1423
|
+
}
|
|
1424
|
+
/**
|
|
1425
|
+
*
|
|
1426
|
+
* @export
|
|
1427
|
+
* @interface ListCollectionsParamsDto
|
|
1428
|
+
*/
|
|
1429
|
+
export interface ListCollectionsParamsDto {
|
|
1430
|
+
/**
|
|
1431
|
+
*
|
|
1432
|
+
* @type {string}
|
|
1433
|
+
* @memberof ListCollectionsParamsDto
|
|
1434
|
+
*/
|
|
1435
|
+
orderBy?: ListCollectionsParamsDtoOrderByEnum;
|
|
1436
|
+
/**
|
|
1437
|
+
*
|
|
1438
|
+
* @type {number}
|
|
1439
|
+
* @memberof ListCollectionsParamsDto
|
|
1440
|
+
*/
|
|
1441
|
+
limit?: number;
|
|
1442
|
+
/**
|
|
1443
|
+
*
|
|
1444
|
+
* @type {string}
|
|
1445
|
+
* @memberof ListCollectionsParamsDto
|
|
1446
|
+
*/
|
|
1447
|
+
cursor?: string;
|
|
1448
|
+
}
|
|
1449
|
+
export declare const ListCollectionsParamsDtoOrderByEnum: {
|
|
1450
|
+
readonly CreatedAtAsc: "createdAt_ASC";
|
|
1451
|
+
readonly CreatedAtDesc: "createdAt_DESC";
|
|
1452
|
+
readonly UpdatedAtAsc: "updatedAt_ASC";
|
|
1453
|
+
readonly UpdatedAtDesc: "updatedAt_DESC";
|
|
1454
|
+
};
|
|
1455
|
+
export type ListCollectionsParamsDtoOrderByEnum = (typeof ListCollectionsParamsDtoOrderByEnum)[keyof typeof ListCollectionsParamsDtoOrderByEnum];
|
|
1456
|
+
/**
|
|
1457
|
+
*
|
|
1458
|
+
* @export
|
|
1459
|
+
* @interface ListOperationsDto
|
|
1460
|
+
*/
|
|
1461
|
+
export interface ListOperationsDto {
|
|
1462
|
+
/**
|
|
1463
|
+
*
|
|
1464
|
+
* @type {Array<OperationEntity>}
|
|
1465
|
+
* @memberof ListOperationsDto
|
|
1466
|
+
*/
|
|
1467
|
+
data: Array<OperationEntity>;
|
|
1468
|
+
/**
|
|
1469
|
+
*
|
|
1470
|
+
* @type {ListAccountsDtoPageInfo}
|
|
1471
|
+
* @memberof ListOperationsDto
|
|
1472
|
+
*/
|
|
1473
|
+
pageInfo: ListAccountsDtoPageInfo;
|
|
1474
|
+
}
|
|
1475
|
+
/**
|
|
1476
|
+
*
|
|
1477
|
+
* @export
|
|
1478
|
+
* @interface ListOperationsParamsDto
|
|
1479
|
+
*/
|
|
1480
|
+
export interface ListOperationsParamsDto {
|
|
1481
|
+
/**
|
|
1482
|
+
*
|
|
1483
|
+
* @type {string}
|
|
1484
|
+
* @memberof ListOperationsParamsDto
|
|
1485
|
+
*/
|
|
1486
|
+
orderBy?: ListOperationsParamsDtoOrderByEnum;
|
|
1487
|
+
/**
|
|
1488
|
+
*
|
|
1489
|
+
* @type {number}
|
|
1490
|
+
* @memberof ListOperationsParamsDto
|
|
1491
|
+
*/
|
|
1492
|
+
limit?: number;
|
|
1493
|
+
/**
|
|
1494
|
+
*
|
|
1495
|
+
* @type {string}
|
|
1496
|
+
* @memberof ListOperationsParamsDto
|
|
1497
|
+
*/
|
|
1498
|
+
cursor?: string;
|
|
1499
|
+
}
|
|
1500
|
+
export declare const ListOperationsParamsDtoOrderByEnum: {
|
|
1501
|
+
readonly CreatedAtAsc: "createdAt_ASC";
|
|
1502
|
+
readonly CreatedAtDesc: "createdAt_DESC";
|
|
1503
|
+
readonly UpdatedAtAsc: "updatedAt_ASC";
|
|
1504
|
+
readonly UpdatedAtDesc: "updatedAt_DESC";
|
|
1505
|
+
};
|
|
1506
|
+
export type ListOperationsParamsDtoOrderByEnum = (typeof ListOperationsParamsDtoOrderByEnum)[keyof typeof ListOperationsParamsDtoOrderByEnum];
|
|
1507
|
+
/**
|
|
1024
1508
|
*
|
|
1025
1509
|
* @export
|
|
1026
1510
|
* @interface ListPipelinesDto
|
|
@@ -1031,14 +1515,63 @@ export interface ListPipelinesDto {
|
|
|
1031
1515
|
* @type {Array<PipelineEntity>}
|
|
1032
1516
|
* @memberof ListPipelinesDto
|
|
1033
1517
|
*/
|
|
1034
|
-
|
|
1518
|
+
data: Array<PipelineEntity>;
|
|
1035
1519
|
/**
|
|
1036
1520
|
*
|
|
1037
1521
|
* @type {ListAccountsDtoPageInfo}
|
|
1038
1522
|
* @memberof ListPipelinesDto
|
|
1039
1523
|
*/
|
|
1040
|
-
|
|
1524
|
+
pageInfo: ListAccountsDtoPageInfo;
|
|
1525
|
+
}
|
|
1526
|
+
/**
|
|
1527
|
+
*
|
|
1528
|
+
* @export
|
|
1529
|
+
* @interface ListPosesDto
|
|
1530
|
+
*/
|
|
1531
|
+
export interface ListPosesDto {
|
|
1532
|
+
/**
|
|
1533
|
+
*
|
|
1534
|
+
* @type {Array<PoseEntity>}
|
|
1535
|
+
* @memberof ListPosesDto
|
|
1536
|
+
*/
|
|
1537
|
+
data: Array<PoseEntity>;
|
|
1538
|
+
/**
|
|
1539
|
+
*
|
|
1540
|
+
* @type {ListAccountsDtoPageInfo}
|
|
1541
|
+
* @memberof ListPosesDto
|
|
1542
|
+
*/
|
|
1543
|
+
pageInfo: ListAccountsDtoPageInfo;
|
|
1544
|
+
}
|
|
1545
|
+
/**
|
|
1546
|
+
*
|
|
1547
|
+
* @export
|
|
1548
|
+
* @interface ListPosesParamsDto
|
|
1549
|
+
*/
|
|
1550
|
+
export interface ListPosesParamsDto {
|
|
1551
|
+
/**
|
|
1552
|
+
*
|
|
1553
|
+
* @type {string}
|
|
1554
|
+
* @memberof ListPosesParamsDto
|
|
1555
|
+
*/
|
|
1556
|
+
orderBy?: ListPosesParamsDtoOrderByEnum;
|
|
1557
|
+
/**
|
|
1558
|
+
*
|
|
1559
|
+
* @type {number}
|
|
1560
|
+
* @memberof ListPosesParamsDto
|
|
1561
|
+
*/
|
|
1562
|
+
limit?: number;
|
|
1563
|
+
/**
|
|
1564
|
+
*
|
|
1565
|
+
* @type {string}
|
|
1566
|
+
* @memberof ListPosesParamsDto
|
|
1567
|
+
*/
|
|
1568
|
+
cursor?: string;
|
|
1041
1569
|
}
|
|
1570
|
+
export declare const ListPosesParamsDtoOrderByEnum: {
|
|
1571
|
+
readonly Asc: "createdAt_ASC";
|
|
1572
|
+
readonly Desc: "createdAt_DESC";
|
|
1573
|
+
};
|
|
1574
|
+
export type ListPosesParamsDtoOrderByEnum = (typeof ListPosesParamsDtoOrderByEnum)[keyof typeof ListPosesParamsDtoOrderByEnum];
|
|
1042
1575
|
/**
|
|
1043
1576
|
*
|
|
1044
1577
|
* @export
|
|
@@ -1050,13 +1583,13 @@ export interface ListStacksDto {
|
|
|
1050
1583
|
* @type {Array<StackEntity>}
|
|
1051
1584
|
* @memberof ListStacksDto
|
|
1052
1585
|
*/
|
|
1053
|
-
|
|
1586
|
+
data: Array<StackEntity>;
|
|
1054
1587
|
/**
|
|
1055
1588
|
*
|
|
1056
1589
|
* @type {ListAccountsDtoPageInfo}
|
|
1057
1590
|
* @memberof ListStacksDto
|
|
1058
1591
|
*/
|
|
1059
|
-
|
|
1592
|
+
pageInfo: ListAccountsDtoPageInfo;
|
|
1060
1593
|
}
|
|
1061
1594
|
/**
|
|
1062
1595
|
*
|
|
@@ -1069,19 +1602,19 @@ export interface ListStacksParamsDto {
|
|
|
1069
1602
|
* @type {string}
|
|
1070
1603
|
* @memberof ListStacksParamsDto
|
|
1071
1604
|
*/
|
|
1072
|
-
|
|
1605
|
+
orderBy?: ListStacksParamsDtoOrderByEnum;
|
|
1073
1606
|
/**
|
|
1074
1607
|
*
|
|
1075
1608
|
* @type {number}
|
|
1076
1609
|
* @memberof ListStacksParamsDto
|
|
1077
1610
|
*/
|
|
1078
|
-
|
|
1611
|
+
limit?: number;
|
|
1079
1612
|
/**
|
|
1080
1613
|
*
|
|
1081
1614
|
* @type {string}
|
|
1082
1615
|
* @memberof ListStacksParamsDto
|
|
1083
1616
|
*/
|
|
1084
|
-
|
|
1617
|
+
cursor?: string;
|
|
1085
1618
|
}
|
|
1086
1619
|
export declare const ListStacksParamsDtoOrderByEnum: {
|
|
1087
1620
|
readonly CreatedAtAsc: "createdAt_ASC";
|
|
@@ -1089,7 +1622,7 @@ export declare const ListStacksParamsDtoOrderByEnum: {
|
|
|
1089
1622
|
readonly UpdatedAtAsc: "updatedAt_ASC";
|
|
1090
1623
|
readonly UpdatedAtDesc: "updatedAt_DESC";
|
|
1091
1624
|
};
|
|
1092
|
-
export type ListStacksParamsDtoOrderByEnum = typeof ListStacksParamsDtoOrderByEnum[keyof typeof ListStacksParamsDtoOrderByEnum];
|
|
1625
|
+
export type ListStacksParamsDtoOrderByEnum = (typeof ListStacksParamsDtoOrderByEnum)[keyof typeof ListStacksParamsDtoOrderByEnum];
|
|
1093
1626
|
/**
|
|
1094
1627
|
*
|
|
1095
1628
|
* @export
|
|
@@ -1101,13 +1634,13 @@ export interface NaomiHauteV1ControllerInput {
|
|
|
1101
1634
|
* @type {NaomiHauteV1Input}
|
|
1102
1635
|
* @memberof NaomiHauteV1ControllerInput
|
|
1103
1636
|
*/
|
|
1104
|
-
|
|
1637
|
+
input: NaomiHauteV1Input;
|
|
1105
1638
|
/**
|
|
1106
1639
|
*
|
|
1107
1640
|
* @type {object}
|
|
1108
1641
|
* @memberof NaomiHauteV1ControllerInput
|
|
1109
1642
|
*/
|
|
1110
|
-
|
|
1643
|
+
metadata?: object;
|
|
1111
1644
|
}
|
|
1112
1645
|
/**
|
|
1113
1646
|
*
|
|
@@ -1120,61 +1653,61 @@ export interface NaomiHauteV1Input {
|
|
|
1120
1653
|
* @type {string}
|
|
1121
1654
|
* @memberof NaomiHauteV1Input
|
|
1122
1655
|
*/
|
|
1123
|
-
|
|
1656
|
+
prompt: string;
|
|
1124
1657
|
/**
|
|
1125
1658
|
*
|
|
1126
1659
|
* @type {string}
|
|
1127
1660
|
* @memberof NaomiHauteV1Input
|
|
1128
1661
|
*/
|
|
1129
|
-
|
|
1662
|
+
category: string;
|
|
1130
1663
|
/**
|
|
1131
1664
|
*
|
|
1132
1665
|
* @type {string}
|
|
1133
1666
|
* @memberof NaomiHauteV1Input
|
|
1134
1667
|
*/
|
|
1135
|
-
|
|
1668
|
+
garmentImageId: string;
|
|
1136
1669
|
/**
|
|
1137
1670
|
*
|
|
1138
1671
|
* @type {string}
|
|
1139
1672
|
* @memberof NaomiHauteV1Input
|
|
1140
1673
|
*/
|
|
1141
|
-
|
|
1674
|
+
poseId: string;
|
|
1142
1675
|
/**
|
|
1143
1676
|
*
|
|
1144
1677
|
* @type {number}
|
|
1145
1678
|
* @memberof NaomiHauteV1Input
|
|
1146
1679
|
*/
|
|
1147
|
-
|
|
1680
|
+
seed: number;
|
|
1148
1681
|
/**
|
|
1149
1682
|
*
|
|
1150
1683
|
* @type {number}
|
|
1151
1684
|
* @memberof NaomiHauteV1Input
|
|
1152
1685
|
*/
|
|
1153
|
-
|
|
1686
|
+
width: number;
|
|
1154
1687
|
/**
|
|
1155
1688
|
*
|
|
1156
1689
|
* @type {number}
|
|
1157
1690
|
* @memberof NaomiHauteV1Input
|
|
1158
1691
|
*/
|
|
1159
|
-
|
|
1692
|
+
height: number;
|
|
1160
1693
|
/**
|
|
1161
1694
|
*
|
|
1162
1695
|
* @type {number}
|
|
1163
1696
|
* @memberof NaomiHauteV1Input
|
|
1164
1697
|
*/
|
|
1165
|
-
|
|
1698
|
+
textGuidanceScale?: number;
|
|
1166
1699
|
/**
|
|
1167
1700
|
*
|
|
1168
1701
|
* @type {number}
|
|
1169
1702
|
* @memberof NaomiHauteV1Input
|
|
1170
1703
|
*/
|
|
1171
|
-
|
|
1704
|
+
imageGuidanceScale?: number;
|
|
1172
1705
|
/**
|
|
1173
1706
|
*
|
|
1174
1707
|
* @type {number}
|
|
1175
1708
|
* @memberof NaomiHauteV1Input
|
|
1176
1709
|
*/
|
|
1177
|
-
|
|
1710
|
+
numInferenceSteps?: number;
|
|
1178
1711
|
}
|
|
1179
1712
|
/**
|
|
1180
1713
|
*
|
|
@@ -1187,13 +1720,13 @@ export interface ObjectDetectionV1ControllerInput {
|
|
|
1187
1720
|
* @type {ObjectDetectionV1Input}
|
|
1188
1721
|
* @memberof ObjectDetectionV1ControllerInput
|
|
1189
1722
|
*/
|
|
1190
|
-
|
|
1723
|
+
input: ObjectDetectionV1Input;
|
|
1191
1724
|
/**
|
|
1192
1725
|
*
|
|
1193
1726
|
* @type {object}
|
|
1194
1727
|
* @memberof ObjectDetectionV1ControllerInput
|
|
1195
1728
|
*/
|
|
1196
|
-
|
|
1729
|
+
metadata?: object;
|
|
1197
1730
|
}
|
|
1198
1731
|
/**
|
|
1199
1732
|
*
|
|
@@ -1206,13 +1739,13 @@ export interface ObjectDetectionV1Input {
|
|
|
1206
1739
|
* @type {Array<string>}
|
|
1207
1740
|
* @memberof ObjectDetectionV1Input
|
|
1208
1741
|
*/
|
|
1209
|
-
|
|
1742
|
+
labels: Array<string>;
|
|
1210
1743
|
/**
|
|
1211
1744
|
*
|
|
1212
1745
|
* @type {string}
|
|
1213
1746
|
* @memberof ObjectDetectionV1Input
|
|
1214
1747
|
*/
|
|
1215
|
-
|
|
1748
|
+
imageId: string;
|
|
1216
1749
|
}
|
|
1217
1750
|
/**
|
|
1218
1751
|
*
|
|
@@ -1225,61 +1758,61 @@ export interface OperationEntity {
|
|
|
1225
1758
|
* @type {string}
|
|
1226
1759
|
* @memberof OperationEntity
|
|
1227
1760
|
*/
|
|
1228
|
-
|
|
1761
|
+
kind: OperationEntityKindEnum;
|
|
1229
1762
|
/**
|
|
1230
1763
|
*
|
|
1231
1764
|
* @type {string}
|
|
1232
1765
|
* @memberof OperationEntity
|
|
1233
1766
|
*/
|
|
1234
|
-
|
|
1767
|
+
id: string;
|
|
1235
1768
|
/**
|
|
1236
1769
|
*
|
|
1237
1770
|
* @type {string}
|
|
1238
1771
|
* @memberof OperationEntity
|
|
1239
1772
|
*/
|
|
1240
|
-
|
|
1773
|
+
creatorId: string;
|
|
1241
1774
|
/**
|
|
1242
1775
|
*
|
|
1243
1776
|
* @type {object}
|
|
1244
1777
|
* @memberof OperationEntity
|
|
1245
1778
|
*/
|
|
1246
|
-
|
|
1779
|
+
metadata: object;
|
|
1247
1780
|
/**
|
|
1248
1781
|
*
|
|
1249
1782
|
* @type {string}
|
|
1250
1783
|
* @memberof OperationEntity
|
|
1251
1784
|
*/
|
|
1252
|
-
|
|
1785
|
+
createdAt: string;
|
|
1253
1786
|
/**
|
|
1254
1787
|
*
|
|
1255
1788
|
* @type {string}
|
|
1256
1789
|
* @memberof OperationEntity
|
|
1257
1790
|
*/
|
|
1258
|
-
|
|
1791
|
+
updatedAt: string;
|
|
1259
1792
|
/**
|
|
1260
1793
|
*
|
|
1261
1794
|
* @type {object}
|
|
1262
1795
|
* @memberof OperationEntity
|
|
1263
1796
|
*/
|
|
1264
|
-
|
|
1797
|
+
input: object;
|
|
1265
1798
|
/**
|
|
1266
1799
|
*
|
|
1267
1800
|
* @type {object}
|
|
1268
1801
|
* @memberof OperationEntity
|
|
1269
1802
|
*/
|
|
1270
|
-
|
|
1803
|
+
output: object | null;
|
|
1271
1804
|
/**
|
|
1272
1805
|
*
|
|
1273
1806
|
* @type {string}
|
|
1274
1807
|
* @memberof OperationEntity
|
|
1275
1808
|
*/
|
|
1276
|
-
|
|
1809
|
+
status: OperationEntityStatusEnum;
|
|
1277
1810
|
/**
|
|
1278
1811
|
*
|
|
1279
1812
|
* @type {string}
|
|
1280
1813
|
* @memberof OperationEntity
|
|
1281
1814
|
*/
|
|
1282
|
-
|
|
1815
|
+
type: string;
|
|
1283
1816
|
}
|
|
1284
1817
|
export declare const OperationEntityKindEnum: {
|
|
1285
1818
|
readonly Collection: "collection";
|
|
@@ -1290,13 +1823,13 @@ export declare const OperationEntityKindEnum: {
|
|
|
1290
1823
|
readonly Storage: "storage";
|
|
1291
1824
|
readonly Pipeline: "pipeline";
|
|
1292
1825
|
};
|
|
1293
|
-
export type OperationEntityKindEnum = typeof OperationEntityKindEnum[keyof typeof OperationEntityKindEnum];
|
|
1826
|
+
export type OperationEntityKindEnum = (typeof OperationEntityKindEnum)[keyof typeof OperationEntityKindEnum];
|
|
1294
1827
|
export declare const OperationEntityStatusEnum: {
|
|
1295
1828
|
readonly Pending: "pending";
|
|
1296
1829
|
readonly Finished: "finished";
|
|
1297
1830
|
readonly Failed: "failed";
|
|
1298
1831
|
};
|
|
1299
|
-
export type OperationEntityStatusEnum = typeof OperationEntityStatusEnum[keyof typeof OperationEntityStatusEnum];
|
|
1832
|
+
export type OperationEntityStatusEnum = (typeof OperationEntityStatusEnum)[keyof typeof OperationEntityStatusEnum];
|
|
1300
1833
|
/**
|
|
1301
1834
|
*
|
|
1302
1835
|
* @export
|
|
@@ -1308,61 +1841,61 @@ export interface PipelineEntity {
|
|
|
1308
1841
|
* @type {string}
|
|
1309
1842
|
* @memberof PipelineEntity
|
|
1310
1843
|
*/
|
|
1311
|
-
|
|
1844
|
+
kind: PipelineEntityKindEnum;
|
|
1312
1845
|
/**
|
|
1313
1846
|
*
|
|
1314
1847
|
* @type {string}
|
|
1315
1848
|
* @memberof PipelineEntity
|
|
1316
1849
|
*/
|
|
1317
|
-
|
|
1850
|
+
id: string;
|
|
1318
1851
|
/**
|
|
1319
1852
|
*
|
|
1320
1853
|
* @type {string}
|
|
1321
1854
|
* @memberof PipelineEntity
|
|
1322
1855
|
*/
|
|
1323
|
-
|
|
1856
|
+
creatorId: string;
|
|
1324
1857
|
/**
|
|
1325
1858
|
*
|
|
1326
1859
|
* @type {object}
|
|
1327
1860
|
* @memberof PipelineEntity
|
|
1328
1861
|
*/
|
|
1329
|
-
|
|
1862
|
+
metadata: object;
|
|
1330
1863
|
/**
|
|
1331
1864
|
*
|
|
1332
1865
|
* @type {string}
|
|
1333
1866
|
* @memberof PipelineEntity
|
|
1334
1867
|
*/
|
|
1335
|
-
|
|
1868
|
+
createdAt: string;
|
|
1336
1869
|
/**
|
|
1337
1870
|
*
|
|
1338
1871
|
* @type {string}
|
|
1339
1872
|
* @memberof PipelineEntity
|
|
1340
1873
|
*/
|
|
1341
|
-
|
|
1874
|
+
updatedAt: string;
|
|
1342
1875
|
/**
|
|
1343
1876
|
*
|
|
1344
1877
|
* @type {object}
|
|
1345
1878
|
* @memberof PipelineEntity
|
|
1346
1879
|
*/
|
|
1347
|
-
|
|
1880
|
+
permissions: object;
|
|
1348
1881
|
/**
|
|
1349
1882
|
*
|
|
1350
1883
|
* @type {object}
|
|
1351
1884
|
* @memberof PipelineEntity
|
|
1352
1885
|
*/
|
|
1353
|
-
|
|
1886
|
+
state: object;
|
|
1354
1887
|
/**
|
|
1355
1888
|
*
|
|
1356
1889
|
* @type {string}
|
|
1357
1890
|
* @memberof PipelineEntity
|
|
1358
1891
|
*/
|
|
1359
|
-
|
|
1892
|
+
status: PipelineEntityStatusEnum;
|
|
1360
1893
|
/**
|
|
1361
1894
|
*
|
|
1362
1895
|
* @type {object}
|
|
1363
1896
|
* @memberof PipelineEntity
|
|
1364
1897
|
*/
|
|
1365
|
-
|
|
1898
|
+
tasks: object;
|
|
1366
1899
|
}
|
|
1367
1900
|
export declare const PipelineEntityKindEnum: {
|
|
1368
1901
|
readonly Collection: "collection";
|
|
@@ -1373,13 +1906,13 @@ export declare const PipelineEntityKindEnum: {
|
|
|
1373
1906
|
readonly Storage: "storage";
|
|
1374
1907
|
readonly Pipeline: "pipeline";
|
|
1375
1908
|
};
|
|
1376
|
-
export type PipelineEntityKindEnum = typeof PipelineEntityKindEnum[keyof typeof PipelineEntityKindEnum];
|
|
1909
|
+
export type PipelineEntityKindEnum = (typeof PipelineEntityKindEnum)[keyof typeof PipelineEntityKindEnum];
|
|
1377
1910
|
export declare const PipelineEntityStatusEnum: {
|
|
1378
1911
|
readonly Pending: "pending";
|
|
1379
1912
|
readonly Completed: "completed";
|
|
1380
1913
|
readonly Failed: "failed";
|
|
1381
1914
|
};
|
|
1382
|
-
export type PipelineEntityStatusEnum = typeof PipelineEntityStatusEnum[keyof typeof PipelineEntityStatusEnum];
|
|
1915
|
+
export type PipelineEntityStatusEnum = (typeof PipelineEntityStatusEnum)[keyof typeof PipelineEntityStatusEnum];
|
|
1383
1916
|
/**
|
|
1384
1917
|
*
|
|
1385
1918
|
* @export
|
|
@@ -1391,55 +1924,55 @@ export interface PoseEntity {
|
|
|
1391
1924
|
* @type {string}
|
|
1392
1925
|
* @memberof PoseEntity
|
|
1393
1926
|
*/
|
|
1394
|
-
|
|
1927
|
+
kind: PoseEntityKindEnum;
|
|
1395
1928
|
/**
|
|
1396
1929
|
*
|
|
1397
1930
|
* @type {string}
|
|
1398
1931
|
* @memberof PoseEntity
|
|
1399
1932
|
*/
|
|
1400
|
-
|
|
1933
|
+
id: string;
|
|
1401
1934
|
/**
|
|
1402
1935
|
*
|
|
1403
1936
|
* @type {string}
|
|
1404
1937
|
* @memberof PoseEntity
|
|
1405
1938
|
*/
|
|
1406
|
-
|
|
1939
|
+
creatorId: string;
|
|
1407
1940
|
/**
|
|
1408
1941
|
*
|
|
1409
1942
|
* @type {object}
|
|
1410
1943
|
* @memberof PoseEntity
|
|
1411
1944
|
*/
|
|
1412
|
-
|
|
1945
|
+
metadata: object;
|
|
1413
1946
|
/**
|
|
1414
1947
|
*
|
|
1415
1948
|
* @type {string}
|
|
1416
1949
|
* @memberof PoseEntity
|
|
1417
1950
|
*/
|
|
1418
|
-
|
|
1951
|
+
createdAt: string;
|
|
1419
1952
|
/**
|
|
1420
1953
|
*
|
|
1421
1954
|
* @type {string}
|
|
1422
1955
|
* @memberof PoseEntity
|
|
1423
1956
|
*/
|
|
1424
|
-
|
|
1957
|
+
updatedAt: string;
|
|
1425
1958
|
/**
|
|
1426
1959
|
*
|
|
1427
1960
|
* @type {ImageEntity}
|
|
1428
1961
|
* @memberof PoseEntity
|
|
1429
1962
|
*/
|
|
1430
|
-
|
|
1963
|
+
sourceImage: ImageEntity;
|
|
1431
1964
|
/**
|
|
1432
1965
|
*
|
|
1433
1966
|
* @type {ImageEntity}
|
|
1434
1967
|
* @memberof PoseEntity
|
|
1435
1968
|
*/
|
|
1436
|
-
|
|
1969
|
+
previewImage?: ImageEntity;
|
|
1437
1970
|
/**
|
|
1438
1971
|
*
|
|
1439
1972
|
* @type {string}
|
|
1440
1973
|
* @memberof PoseEntity
|
|
1441
1974
|
*/
|
|
1442
|
-
|
|
1975
|
+
previewImageId?: string;
|
|
1443
1976
|
}
|
|
1444
1977
|
export declare const PoseEntityKindEnum: {
|
|
1445
1978
|
readonly Collection: "collection";
|
|
@@ -1450,7 +1983,7 @@ export declare const PoseEntityKindEnum: {
|
|
|
1450
1983
|
readonly Storage: "storage";
|
|
1451
1984
|
readonly Pipeline: "pipeline";
|
|
1452
1985
|
};
|
|
1453
|
-
export type PoseEntityKindEnum = typeof PoseEntityKindEnum[keyof typeof PoseEntityKindEnum];
|
|
1986
|
+
export type PoseEntityKindEnum = (typeof PoseEntityKindEnum)[keyof typeof PoseEntityKindEnum];
|
|
1454
1987
|
/**
|
|
1455
1988
|
*
|
|
1456
1989
|
* @export
|
|
@@ -1462,13 +1995,13 @@ export interface PoseEstimationV1ControllerInput {
|
|
|
1462
1995
|
* @type {PoseEstimationV1Input}
|
|
1463
1996
|
* @memberof PoseEstimationV1ControllerInput
|
|
1464
1997
|
*/
|
|
1465
|
-
|
|
1998
|
+
input: PoseEstimationV1Input;
|
|
1466
1999
|
/**
|
|
1467
2000
|
*
|
|
1468
2001
|
* @type {object}
|
|
1469
2002
|
* @memberof PoseEstimationV1ControllerInput
|
|
1470
2003
|
*/
|
|
1471
|
-
|
|
2004
|
+
metadata?: object;
|
|
1472
2005
|
}
|
|
1473
2006
|
/**
|
|
1474
2007
|
*
|
|
@@ -1481,7 +2014,7 @@ export interface PoseEstimationV1Input {
|
|
|
1481
2014
|
* @type {string}
|
|
1482
2015
|
* @memberof PoseEstimationV1Input
|
|
1483
2016
|
*/
|
|
1484
|
-
|
|
2017
|
+
imageId: string;
|
|
1485
2018
|
}
|
|
1486
2019
|
/**
|
|
1487
2020
|
*
|
|
@@ -1494,20 +2027,51 @@ export interface RemoveAccountFromGroupControllerParamsDto {
|
|
|
1494
2027
|
* @type {string}
|
|
1495
2028
|
* @memberof RemoveAccountFromGroupControllerParamsDto
|
|
1496
2029
|
*/
|
|
1497
|
-
|
|
2030
|
+
accountId: string;
|
|
1498
2031
|
/**
|
|
1499
2032
|
*
|
|
1500
2033
|
* @type {string}
|
|
1501
2034
|
* @memberof RemoveAccountFromGroupControllerParamsDto
|
|
1502
2035
|
*/
|
|
1503
|
-
|
|
2036
|
+
role: RemoveAccountFromGroupControllerParamsDtoRoleEnum;
|
|
1504
2037
|
}
|
|
1505
2038
|
export declare const RemoveAccountFromGroupControllerParamsDtoRoleEnum: {
|
|
1506
2039
|
readonly Maintainer: "maintainer";
|
|
1507
2040
|
readonly Member: "member";
|
|
1508
2041
|
readonly Owner: "owner";
|
|
1509
2042
|
};
|
|
1510
|
-
export type RemoveAccountFromGroupControllerParamsDtoRoleEnum = typeof RemoveAccountFromGroupControllerParamsDtoRoleEnum[keyof typeof RemoveAccountFromGroupControllerParamsDtoRoleEnum];
|
|
2043
|
+
export type RemoveAccountFromGroupControllerParamsDtoRoleEnum = (typeof RemoveAccountFromGroupControllerParamsDtoRoleEnum)[keyof typeof RemoveAccountFromGroupControllerParamsDtoRoleEnum];
|
|
2044
|
+
/**
|
|
2045
|
+
*
|
|
2046
|
+
* @export
|
|
2047
|
+
* @interface RemoveAccountFromGroupParamsDto
|
|
2048
|
+
*/
|
|
2049
|
+
export interface RemoveAccountFromGroupParamsDto {
|
|
2050
|
+
/**
|
|
2051
|
+
*
|
|
2052
|
+
* @type {string}
|
|
2053
|
+
* @memberof RemoveAccountFromGroupParamsDto
|
|
2054
|
+
*/
|
|
2055
|
+
accountId: string;
|
|
2056
|
+
/**
|
|
2057
|
+
*
|
|
2058
|
+
* @type {string}
|
|
2059
|
+
* @memberof RemoveAccountFromGroupParamsDto
|
|
2060
|
+
*/
|
|
2061
|
+
groupId: string;
|
|
2062
|
+
/**
|
|
2063
|
+
*
|
|
2064
|
+
* @type {string}
|
|
2065
|
+
* @memberof RemoveAccountFromGroupParamsDto
|
|
2066
|
+
*/
|
|
2067
|
+
role: RemoveAccountFromGroupParamsDtoRoleEnum;
|
|
2068
|
+
}
|
|
2069
|
+
export declare const RemoveAccountFromGroupParamsDtoRoleEnum: {
|
|
2070
|
+
readonly Maintainer: "maintainer";
|
|
2071
|
+
readonly Member: "member";
|
|
2072
|
+
readonly Owner: "owner";
|
|
2073
|
+
};
|
|
2074
|
+
export type RemoveAccountFromGroupParamsDtoRoleEnum = (typeof RemoveAccountFromGroupParamsDtoRoleEnum)[keyof typeof RemoveAccountFromGroupParamsDtoRoleEnum];
|
|
1511
2075
|
/**
|
|
1512
2076
|
*
|
|
1513
2077
|
* @export
|
|
@@ -1519,7 +2083,45 @@ export interface RemoveItemsFromCollectionControllerParamsDto {
|
|
|
1519
2083
|
* @type {Array<string>}
|
|
1520
2084
|
* @memberof RemoveItemsFromCollectionControllerParamsDto
|
|
1521
2085
|
*/
|
|
1522
|
-
|
|
2086
|
+
itemIds: Array<string>;
|
|
2087
|
+
}
|
|
2088
|
+
/**
|
|
2089
|
+
*
|
|
2090
|
+
* @export
|
|
2091
|
+
* @interface RemoveItemsFromCollectionParamsDto
|
|
2092
|
+
*/
|
|
2093
|
+
export interface RemoveItemsFromCollectionParamsDto {
|
|
2094
|
+
/**
|
|
2095
|
+
*
|
|
2096
|
+
* @type {string}
|
|
2097
|
+
* @memberof RemoveItemsFromCollectionParamsDto
|
|
2098
|
+
*/
|
|
2099
|
+
collectionId: string;
|
|
2100
|
+
/**
|
|
2101
|
+
*
|
|
2102
|
+
* @type {Array<string>}
|
|
2103
|
+
* @memberof RemoveItemsFromCollectionParamsDto
|
|
2104
|
+
*/
|
|
2105
|
+
itemIds: Array<string>;
|
|
2106
|
+
}
|
|
2107
|
+
/**
|
|
2108
|
+
*
|
|
2109
|
+
* @export
|
|
2110
|
+
* @interface RemoveItemsFromStackParamsDto
|
|
2111
|
+
*/
|
|
2112
|
+
export interface RemoveItemsFromStackParamsDto {
|
|
2113
|
+
/**
|
|
2114
|
+
*
|
|
2115
|
+
* @type {string}
|
|
2116
|
+
* @memberof RemoveItemsFromStackParamsDto
|
|
2117
|
+
*/
|
|
2118
|
+
stackId: string;
|
|
2119
|
+
/**
|
|
2120
|
+
*
|
|
2121
|
+
* @type {Array<string>}
|
|
2122
|
+
* @memberof RemoveItemsFromStackParamsDto
|
|
2123
|
+
*/
|
|
2124
|
+
itemIds: Array<string>;
|
|
1523
2125
|
}
|
|
1524
2126
|
/**
|
|
1525
2127
|
*
|
|
@@ -1532,37 +2134,37 @@ export interface ResourceEntity {
|
|
|
1532
2134
|
* @type {string}
|
|
1533
2135
|
* @memberof ResourceEntity
|
|
1534
2136
|
*/
|
|
1535
|
-
|
|
2137
|
+
kind: ResourceEntityKindEnum;
|
|
1536
2138
|
/**
|
|
1537
2139
|
*
|
|
1538
2140
|
* @type {string}
|
|
1539
2141
|
* @memberof ResourceEntity
|
|
1540
2142
|
*/
|
|
1541
|
-
|
|
2143
|
+
id: string;
|
|
1542
2144
|
/**
|
|
1543
2145
|
*
|
|
1544
2146
|
* @type {string}
|
|
1545
2147
|
* @memberof ResourceEntity
|
|
1546
2148
|
*/
|
|
1547
|
-
|
|
2149
|
+
creatorId: string;
|
|
1548
2150
|
/**
|
|
1549
2151
|
*
|
|
1550
2152
|
* @type {object}
|
|
1551
2153
|
* @memberof ResourceEntity
|
|
1552
2154
|
*/
|
|
1553
|
-
|
|
2155
|
+
metadata: object;
|
|
1554
2156
|
/**
|
|
1555
2157
|
*
|
|
1556
2158
|
* @type {string}
|
|
1557
2159
|
* @memberof ResourceEntity
|
|
1558
2160
|
*/
|
|
1559
|
-
|
|
2161
|
+
createdAt: string;
|
|
1560
2162
|
/**
|
|
1561
2163
|
*
|
|
1562
2164
|
* @type {string}
|
|
1563
2165
|
* @memberof ResourceEntity
|
|
1564
2166
|
*/
|
|
1565
|
-
|
|
2167
|
+
updatedAt: string;
|
|
1566
2168
|
}
|
|
1567
2169
|
export declare const ResourceEntityKindEnum: {
|
|
1568
2170
|
readonly Collection: "collection";
|
|
@@ -1573,7 +2175,7 @@ export declare const ResourceEntityKindEnum: {
|
|
|
1573
2175
|
readonly Storage: "storage";
|
|
1574
2176
|
readonly Pipeline: "pipeline";
|
|
1575
2177
|
};
|
|
1576
|
-
export type ResourceEntityKindEnum = typeof ResourceEntityKindEnum[keyof typeof ResourceEntityKindEnum];
|
|
2178
|
+
export type ResourceEntityKindEnum = (typeof ResourceEntityKindEnum)[keyof typeof ResourceEntityKindEnum];
|
|
1577
2179
|
/**
|
|
1578
2180
|
*
|
|
1579
2181
|
* @export
|
|
@@ -1585,13 +2187,13 @@ export interface SegmentAnythingEmbeddingsV1ControllerInput {
|
|
|
1585
2187
|
* @type {SegmentAnythingEmbeddingsV1Input}
|
|
1586
2188
|
* @memberof SegmentAnythingEmbeddingsV1ControllerInput
|
|
1587
2189
|
*/
|
|
1588
|
-
|
|
2190
|
+
input: SegmentAnythingEmbeddingsV1Input;
|
|
1589
2191
|
/**
|
|
1590
2192
|
*
|
|
1591
2193
|
* @type {object}
|
|
1592
2194
|
* @memberof SegmentAnythingEmbeddingsV1ControllerInput
|
|
1593
2195
|
*/
|
|
1594
|
-
|
|
2196
|
+
metadata?: object;
|
|
1595
2197
|
}
|
|
1596
2198
|
/**
|
|
1597
2199
|
*
|
|
@@ -1604,7 +2206,7 @@ export interface SegmentAnythingEmbeddingsV1Input {
|
|
|
1604
2206
|
* @type {string}
|
|
1605
2207
|
* @memberof SegmentAnythingEmbeddingsV1Input
|
|
1606
2208
|
*/
|
|
1607
|
-
|
|
2209
|
+
imageId: string;
|
|
1608
2210
|
}
|
|
1609
2211
|
/**
|
|
1610
2212
|
*
|
|
@@ -1617,13 +2219,13 @@ export interface SegmentAnythingMaskV1ControllerInput {
|
|
|
1617
2219
|
* @type {SegmentAnythingMaskV1Input}
|
|
1618
2220
|
* @memberof SegmentAnythingMaskV1ControllerInput
|
|
1619
2221
|
*/
|
|
1620
|
-
|
|
2222
|
+
input: SegmentAnythingMaskV1Input;
|
|
1621
2223
|
/**
|
|
1622
2224
|
*
|
|
1623
2225
|
* @type {object}
|
|
1624
2226
|
* @memberof SegmentAnythingMaskV1ControllerInput
|
|
1625
2227
|
*/
|
|
1626
|
-
|
|
2228
|
+
metadata?: object;
|
|
1627
2229
|
}
|
|
1628
2230
|
/**
|
|
1629
2231
|
*
|
|
@@ -1636,13 +2238,13 @@ export interface SegmentAnythingMaskV1Input {
|
|
|
1636
2238
|
* @type {string}
|
|
1637
2239
|
* @memberof SegmentAnythingMaskV1Input
|
|
1638
2240
|
*/
|
|
1639
|
-
|
|
2241
|
+
imageId: string;
|
|
1640
2242
|
/**
|
|
1641
2243
|
*
|
|
1642
2244
|
* @type {Array<number>}
|
|
1643
2245
|
* @memberof SegmentAnythingMaskV1Input
|
|
1644
2246
|
*/
|
|
1645
|
-
|
|
2247
|
+
box: Array<number>;
|
|
1646
2248
|
}
|
|
1647
2249
|
/**
|
|
1648
2250
|
*
|
|
@@ -1655,7 +2257,26 @@ export interface SetPosePreviewControllerParamsDto {
|
|
|
1655
2257
|
* @type {string}
|
|
1656
2258
|
* @memberof SetPosePreviewControllerParamsDto
|
|
1657
2259
|
*/
|
|
1658
|
-
|
|
2260
|
+
previewImageId: string;
|
|
2261
|
+
}
|
|
2262
|
+
/**
|
|
2263
|
+
*
|
|
2264
|
+
* @export
|
|
2265
|
+
* @interface SetPosePreviewDto
|
|
2266
|
+
*/
|
|
2267
|
+
export interface SetPosePreviewDto {
|
|
2268
|
+
/**
|
|
2269
|
+
*
|
|
2270
|
+
* @type {string}
|
|
2271
|
+
* @memberof SetPosePreviewDto
|
|
2272
|
+
*/
|
|
2273
|
+
poseId: string;
|
|
2274
|
+
/**
|
|
2275
|
+
*
|
|
2276
|
+
* @type {string}
|
|
2277
|
+
* @memberof SetPosePreviewDto
|
|
2278
|
+
*/
|
|
2279
|
+
previewImageId: string;
|
|
1659
2280
|
}
|
|
1660
2281
|
/**
|
|
1661
2282
|
*
|
|
@@ -1668,48 +2289,48 @@ export interface StackEntity {
|
|
|
1668
2289
|
* @type {string}
|
|
1669
2290
|
* @memberof StackEntity
|
|
1670
2291
|
*/
|
|
1671
|
-
|
|
2292
|
+
kind: StackEntityKindEnum;
|
|
1672
2293
|
/**
|
|
1673
2294
|
*
|
|
1674
2295
|
* @type {Array<StackEntityItemsInner>}
|
|
1675
2296
|
* @memberof StackEntity
|
|
1676
2297
|
*/
|
|
1677
|
-
|
|
2298
|
+
items: Array<StackEntityItemsInner>;
|
|
1678
2299
|
/**
|
|
1679
2300
|
*
|
|
1680
2301
|
* @type {string}
|
|
1681
2302
|
* @memberof StackEntity
|
|
1682
2303
|
*/
|
|
1683
|
-
|
|
2304
|
+
id: string;
|
|
1684
2305
|
/**
|
|
1685
2306
|
*
|
|
1686
2307
|
* @type {string}
|
|
1687
2308
|
* @memberof StackEntity
|
|
1688
2309
|
*/
|
|
1689
|
-
|
|
2310
|
+
creatorId: string;
|
|
1690
2311
|
/**
|
|
1691
2312
|
*
|
|
1692
2313
|
* @type {object}
|
|
1693
2314
|
* @memberof StackEntity
|
|
1694
2315
|
*/
|
|
1695
|
-
|
|
2316
|
+
metadata: object;
|
|
1696
2317
|
/**
|
|
1697
2318
|
*
|
|
1698
2319
|
* @type {string}
|
|
1699
2320
|
* @memberof StackEntity
|
|
1700
2321
|
*/
|
|
1701
|
-
|
|
2322
|
+
createdAt: string;
|
|
1702
2323
|
/**
|
|
1703
2324
|
*
|
|
1704
2325
|
* @type {string}
|
|
1705
2326
|
* @memberof StackEntity
|
|
1706
2327
|
*/
|
|
1707
|
-
|
|
2328
|
+
updatedAt: string;
|
|
1708
2329
|
}
|
|
1709
2330
|
export declare const StackEntityKindEnum: {
|
|
1710
2331
|
readonly Stack: "stack";
|
|
1711
2332
|
};
|
|
1712
|
-
export type StackEntityKindEnum = typeof StackEntityKindEnum[keyof typeof StackEntityKindEnum];
|
|
2333
|
+
export type StackEntityKindEnum = (typeof StackEntityKindEnum)[keyof typeof StackEntityKindEnum];
|
|
1713
2334
|
/**
|
|
1714
2335
|
* @type StackEntityItemsInner
|
|
1715
2336
|
* @export
|
|
@@ -1726,49 +2347,49 @@ export interface StorageEntity {
|
|
|
1726
2347
|
* @type {string}
|
|
1727
2348
|
* @memberof StorageEntity
|
|
1728
2349
|
*/
|
|
1729
|
-
|
|
2350
|
+
kind: StorageEntityKindEnum;
|
|
1730
2351
|
/**
|
|
1731
2352
|
*
|
|
1732
2353
|
* @type {string}
|
|
1733
2354
|
* @memberof StorageEntity
|
|
1734
2355
|
*/
|
|
1735
|
-
|
|
2356
|
+
id: string;
|
|
1736
2357
|
/**
|
|
1737
2358
|
*
|
|
1738
2359
|
* @type {string}
|
|
1739
2360
|
* @memberof StorageEntity
|
|
1740
2361
|
*/
|
|
1741
|
-
|
|
2362
|
+
creatorId: string;
|
|
1742
2363
|
/**
|
|
1743
2364
|
*
|
|
1744
2365
|
* @type {object}
|
|
1745
2366
|
* @memberof StorageEntity
|
|
1746
2367
|
*/
|
|
1747
|
-
|
|
2368
|
+
metadata: object;
|
|
1748
2369
|
/**
|
|
1749
2370
|
*
|
|
1750
2371
|
* @type {string}
|
|
1751
2372
|
* @memberof StorageEntity
|
|
1752
2373
|
*/
|
|
1753
|
-
|
|
2374
|
+
createdAt: string;
|
|
1754
2375
|
/**
|
|
1755
2376
|
*
|
|
1756
2377
|
* @type {string}
|
|
1757
2378
|
* @memberof StorageEntity
|
|
1758
2379
|
*/
|
|
1759
|
-
|
|
2380
|
+
updatedAt: string;
|
|
1760
2381
|
/**
|
|
1761
2382
|
*
|
|
1762
2383
|
* @type {string}
|
|
1763
2384
|
* @memberof StorageEntity
|
|
1764
2385
|
*/
|
|
1765
|
-
|
|
2386
|
+
key: string;
|
|
1766
2387
|
/**
|
|
1767
2388
|
*
|
|
1768
2389
|
* @type {object}
|
|
1769
2390
|
* @memberof StorageEntity
|
|
1770
2391
|
*/
|
|
1771
|
-
|
|
2392
|
+
value: object;
|
|
1772
2393
|
}
|
|
1773
2394
|
export declare const StorageEntityKindEnum: {
|
|
1774
2395
|
readonly Collection: "collection";
|
|
@@ -1779,7 +2400,7 @@ export declare const StorageEntityKindEnum: {
|
|
|
1779
2400
|
readonly Storage: "storage";
|
|
1780
2401
|
readonly Pipeline: "pipeline";
|
|
1781
2402
|
};
|
|
1782
|
-
export type StorageEntityKindEnum = typeof StorageEntityKindEnum[keyof typeof StorageEntityKindEnum];
|
|
2403
|
+
export type StorageEntityKindEnum = (typeof StorageEntityKindEnum)[keyof typeof StorageEntityKindEnum];
|
|
1783
2404
|
/**
|
|
1784
2405
|
*
|
|
1785
2406
|
* @export
|
|
@@ -1791,13 +2412,13 @@ export interface StorageRecordsResultDto {
|
|
|
1791
2412
|
* @type {string}
|
|
1792
2413
|
* @memberof StorageRecordsResultDto
|
|
1793
2414
|
*/
|
|
1794
|
-
|
|
2415
|
+
key: string;
|
|
1795
2416
|
/**
|
|
1796
2417
|
*
|
|
1797
2418
|
* @type {object}
|
|
1798
2419
|
* @memberof StorageRecordsResultDto
|
|
1799
2420
|
*/
|
|
1800
|
-
|
|
2421
|
+
value: object;
|
|
1801
2422
|
}
|
|
1802
2423
|
/**
|
|
1803
2424
|
*
|
|
@@ -1810,7 +2431,26 @@ export interface UpdateMetadataDto {
|
|
|
1810
2431
|
* @type {object}
|
|
1811
2432
|
* @memberof UpdateMetadataDto
|
|
1812
2433
|
*/
|
|
1813
|
-
|
|
2434
|
+
overwrite: object;
|
|
2435
|
+
}
|
|
2436
|
+
/**
|
|
2437
|
+
*
|
|
2438
|
+
* @export
|
|
2439
|
+
* @interface UpdateResourceMetadataDto
|
|
2440
|
+
*/
|
|
2441
|
+
export interface UpdateResourceMetadataDto {
|
|
2442
|
+
/**
|
|
2443
|
+
*
|
|
2444
|
+
* @type {string}
|
|
2445
|
+
* @memberof UpdateResourceMetadataDto
|
|
2446
|
+
*/
|
|
2447
|
+
id: string;
|
|
2448
|
+
/**
|
|
2449
|
+
*
|
|
2450
|
+
* @type {UpdateMetadataDto}
|
|
2451
|
+
* @memberof UpdateResourceMetadataDto
|
|
2452
|
+
*/
|
|
2453
|
+
update: UpdateMetadataDto;
|
|
1814
2454
|
}
|
|
1815
2455
|
/**
|
|
1816
2456
|
*
|
|
@@ -1823,13 +2463,13 @@ export interface UpdateStorageRecordParamsDto {
|
|
|
1823
2463
|
* @type {string}
|
|
1824
2464
|
* @memberof UpdateStorageRecordParamsDto
|
|
1825
2465
|
*/
|
|
1826
|
-
|
|
2466
|
+
key: string;
|
|
1827
2467
|
/**
|
|
1828
2468
|
*
|
|
1829
2469
|
* @type {object}
|
|
1830
2470
|
* @memberof UpdateStorageRecordParamsDto
|
|
1831
2471
|
*/
|
|
1832
|
-
|
|
2472
|
+
value: object;
|
|
1833
2473
|
}
|
|
1834
2474
|
/**
|
|
1835
2475
|
*
|
|
@@ -1842,13 +2482,13 @@ export interface UpscaleV1ControllerInput {
|
|
|
1842
2482
|
* @type {UpscaleV1Input}
|
|
1843
2483
|
* @memberof UpscaleV1ControllerInput
|
|
1844
2484
|
*/
|
|
1845
|
-
|
|
2485
|
+
input: UpscaleV1Input;
|
|
1846
2486
|
/**
|
|
1847
2487
|
*
|
|
1848
2488
|
* @type {object}
|
|
1849
2489
|
* @memberof UpscaleV1ControllerInput
|
|
1850
2490
|
*/
|
|
1851
|
-
|
|
2491
|
+
metadata?: object;
|
|
1852
2492
|
}
|
|
1853
2493
|
/**
|
|
1854
2494
|
*
|
|
@@ -1861,21 +2501,13 @@ export interface UpscaleV1Input {
|
|
|
1861
2501
|
* @type {string}
|
|
1862
2502
|
* @memberof UpscaleV1Input
|
|
1863
2503
|
*/
|
|
1864
|
-
|
|
2504
|
+
imageId: string;
|
|
1865
2505
|
}
|
|
1866
2506
|
/**
|
|
1867
2507
|
* AccessApi - axios parameter creator
|
|
1868
2508
|
* @export
|
|
1869
2509
|
*/
|
|
1870
2510
|
export declare const AccessApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1871
|
-
/**
|
|
1872
|
-
*
|
|
1873
|
-
* @param {string} id
|
|
1874
|
-
* @param {GrantAccessControllerParams} grantAccessControllerParams
|
|
1875
|
-
* @param {*} [options] Override http request option.
|
|
1876
|
-
* @throws {RequiredError}
|
|
1877
|
-
*/
|
|
1878
|
-
accessControllerAccountGrantAccessV1: (id: string, grantAccessControllerParams: GrantAccessControllerParams, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1879
2511
|
/**
|
|
1880
2512
|
*
|
|
1881
2513
|
* @param {string} id
|
|
@@ -1891,21 +2523,13 @@ export declare const AccessApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
1891
2523
|
* @param {*} [options] Override http request option.
|
|
1892
2524
|
* @throws {RequiredError}
|
|
1893
2525
|
*/
|
|
1894
|
-
|
|
2526
|
+
accessControllerGrantAccessV1: (id: string, grantAccessControllerParams: GrantAccessControllerParams, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1895
2527
|
};
|
|
1896
2528
|
/**
|
|
1897
2529
|
* AccessApi - functional programming interface
|
|
1898
2530
|
* @export
|
|
1899
2531
|
*/
|
|
1900
2532
|
export declare const AccessApiFp: (configuration?: Configuration) => {
|
|
1901
|
-
/**
|
|
1902
|
-
*
|
|
1903
|
-
* @param {string} id
|
|
1904
|
-
* @param {GrantAccessControllerParams} grantAccessControllerParams
|
|
1905
|
-
* @param {*} [options] Override http request option.
|
|
1906
|
-
* @throws {RequiredError}
|
|
1907
|
-
*/
|
|
1908
|
-
accessControllerAccountGrantAccessV1(id: string, grantAccessControllerParams: GrantAccessControllerParams, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1909
2533
|
/**
|
|
1910
2534
|
*
|
|
1911
2535
|
* @param {string} id
|
|
@@ -1921,21 +2545,13 @@ export declare const AccessApiFp: (configuration?: Configuration) => {
|
|
|
1921
2545
|
* @param {*} [options] Override http request option.
|
|
1922
2546
|
* @throws {RequiredError}
|
|
1923
2547
|
*/
|
|
1924
|
-
|
|
2548
|
+
accessControllerGrantAccessV1(id: string, grantAccessControllerParams: GrantAccessControllerParams, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1925
2549
|
};
|
|
1926
2550
|
/**
|
|
1927
2551
|
* AccessApi - factory interface
|
|
1928
2552
|
* @export
|
|
1929
2553
|
*/
|
|
1930
2554
|
export declare const AccessApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1931
|
-
/**
|
|
1932
|
-
*
|
|
1933
|
-
* @param {string} id
|
|
1934
|
-
* @param {GrantAccessControllerParams} grantAccessControllerParams
|
|
1935
|
-
* @param {*} [options] Override http request option.
|
|
1936
|
-
* @throws {RequiredError}
|
|
1937
|
-
*/
|
|
1938
|
-
accessControllerAccountGrantAccessV1(id: string, grantAccessControllerParams: GrantAccessControllerParams, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1939
2555
|
/**
|
|
1940
2556
|
*
|
|
1941
2557
|
* @param {string} id
|
|
@@ -1951,7 +2567,7 @@ export declare const AccessApiFactory: (configuration?: Configuration, basePath?
|
|
|
1951
2567
|
* @param {*} [options] Override http request option.
|
|
1952
2568
|
* @throws {RequiredError}
|
|
1953
2569
|
*/
|
|
1954
|
-
|
|
2570
|
+
accessControllerGrantAccessV1(id: string, grantAccessControllerParams: GrantAccessControllerParams, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1955
2571
|
};
|
|
1956
2572
|
/**
|
|
1957
2573
|
* AccessApi - object-oriented interface
|
|
@@ -1960,15 +2576,6 @@ export declare const AccessApiFactory: (configuration?: Configuration, basePath?
|
|
|
1960
2576
|
* @extends {BaseAPI}
|
|
1961
2577
|
*/
|
|
1962
2578
|
export declare class AccessApi extends BaseAPI {
|
|
1963
|
-
/**
|
|
1964
|
-
*
|
|
1965
|
-
* @param {string} id
|
|
1966
|
-
* @param {GrantAccessControllerParams} grantAccessControllerParams
|
|
1967
|
-
* @param {*} [options] Override http request option.
|
|
1968
|
-
* @throws {RequiredError}
|
|
1969
|
-
* @memberof AccessApi
|
|
1970
|
-
*/
|
|
1971
|
-
accessControllerAccountGrantAccessV1(id: string, grantAccessControllerParams: GrantAccessControllerParams, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1972
2579
|
/**
|
|
1973
2580
|
*
|
|
1974
2581
|
* @param {string} id
|
|
@@ -1986,7 +2593,7 @@ export declare class AccessApi extends BaseAPI {
|
|
|
1986
2593
|
* @throws {RequiredError}
|
|
1987
2594
|
* @memberof AccessApi
|
|
1988
2595
|
*/
|
|
1989
|
-
|
|
2596
|
+
accessControllerGrantAccessV1(id: string, grantAccessControllerParams: GrantAccessControllerParams, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1990
2597
|
}
|
|
1991
2598
|
/**
|
|
1992
2599
|
* AccountsApi - axios parameter creator
|
|
@@ -2144,374 +2751,1360 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
2144
2751
|
* @throws {RequiredError}
|
|
2145
2752
|
* @memberof AccountsApi
|
|
2146
2753
|
*/
|
|
2147
|
-
accountsControllerGetAccountV1(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountEntity, any>>;
|
|
2754
|
+
accountsControllerGetAccountV1(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountEntity, any>>;
|
|
2755
|
+
/**
|
|
2756
|
+
*
|
|
2757
|
+
* @param {*} [options] Override http request option.
|
|
2758
|
+
* @throws {RequiredError}
|
|
2759
|
+
* @memberof AccountsApi
|
|
2760
|
+
*/
|
|
2761
|
+
accountsControllerGetSelfV1(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountEntity, any>>;
|
|
2762
|
+
/**
|
|
2763
|
+
*
|
|
2764
|
+
* @param {AccountsControllerListAccointsV1OrderByEnum} [orderBy]
|
|
2765
|
+
* @param {number} [limit]
|
|
2766
|
+
* @param {string} [cursor]
|
|
2767
|
+
* @param {*} [options] Override http request option.
|
|
2768
|
+
* @throws {RequiredError}
|
|
2769
|
+
* @memberof AccountsApi
|
|
2770
|
+
*/
|
|
2771
|
+
accountsControllerListAccointsV1(orderBy?: AccountsControllerListAccointsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListAccountsDto, any>>;
|
|
2772
|
+
}
|
|
2773
|
+
/**
|
|
2774
|
+
* @export
|
|
2775
|
+
*/
|
|
2776
|
+
export declare const AccountsControllerListAccointsV1OrderByEnum: {
|
|
2777
|
+
readonly Asc: "createdAt_ASC";
|
|
2778
|
+
readonly Desc: "createdAt_DESC";
|
|
2779
|
+
};
|
|
2780
|
+
export type AccountsControllerListAccointsV1OrderByEnum = (typeof AccountsControllerListAccointsV1OrderByEnum)[keyof typeof AccountsControllerListAccointsV1OrderByEnum];
|
|
2781
|
+
/**
|
|
2782
|
+
* BalancesApi - axios parameter creator
|
|
2783
|
+
* @export
|
|
2784
|
+
*/
|
|
2785
|
+
export declare const BalancesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2786
|
+
/**
|
|
2787
|
+
*
|
|
2788
|
+
* @param {string} id
|
|
2789
|
+
* @param {AddBalanceControllerParamsDto} addBalanceControllerParamsDto
|
|
2790
|
+
* @param {*} [options] Override http request option.
|
|
2791
|
+
* @throws {RequiredError}
|
|
2792
|
+
*/
|
|
2793
|
+
balancesControllerAddBalanceV1: (id: string, addBalanceControllerParamsDto: AddBalanceControllerParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2794
|
+
/**
|
|
2795
|
+
*
|
|
2796
|
+
* @param {*} [options] Override http request option.
|
|
2797
|
+
* @throws {RequiredError}
|
|
2798
|
+
*/
|
|
2799
|
+
balancesControllerGetBalanceForSelfV1: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2800
|
+
/**
|
|
2801
|
+
*
|
|
2802
|
+
* @param {string} id
|
|
2803
|
+
* @param {*} [options] Override http request option.
|
|
2804
|
+
* @throws {RequiredError}
|
|
2805
|
+
*/
|
|
2806
|
+
balancesControllerGetBalanceV1: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2807
|
+
};
|
|
2808
|
+
/**
|
|
2809
|
+
* BalancesApi - functional programming interface
|
|
2810
|
+
* @export
|
|
2811
|
+
*/
|
|
2812
|
+
export declare const BalancesApiFp: (configuration?: Configuration) => {
|
|
2813
|
+
/**
|
|
2814
|
+
*
|
|
2815
|
+
* @param {string} id
|
|
2816
|
+
* @param {AddBalanceControllerParamsDto} addBalanceControllerParamsDto
|
|
2817
|
+
* @param {*} [options] Override http request option.
|
|
2818
|
+
* @throws {RequiredError}
|
|
2819
|
+
*/
|
|
2820
|
+
balancesControllerAddBalanceV1(id: string, addBalanceControllerParamsDto: AddBalanceControllerParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
2821
|
+
/**
|
|
2822
|
+
*
|
|
2823
|
+
* @param {*} [options] Override http request option.
|
|
2824
|
+
* @throws {RequiredError}
|
|
2825
|
+
*/
|
|
2826
|
+
balancesControllerGetBalanceForSelfV1(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BalanceResultDto>>;
|
|
2827
|
+
/**
|
|
2828
|
+
*
|
|
2829
|
+
* @param {string} id
|
|
2830
|
+
* @param {*} [options] Override http request option.
|
|
2831
|
+
* @throws {RequiredError}
|
|
2832
|
+
*/
|
|
2833
|
+
balancesControllerGetBalanceV1(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BalanceResultDto>>;
|
|
2834
|
+
};
|
|
2835
|
+
/**
|
|
2836
|
+
* BalancesApi - factory interface
|
|
2837
|
+
* @export
|
|
2838
|
+
*/
|
|
2839
|
+
export declare const BalancesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2840
|
+
/**
|
|
2841
|
+
*
|
|
2842
|
+
* @param {string} id
|
|
2843
|
+
* @param {AddBalanceControllerParamsDto} addBalanceControllerParamsDto
|
|
2844
|
+
* @param {*} [options] Override http request option.
|
|
2845
|
+
* @throws {RequiredError}
|
|
2846
|
+
*/
|
|
2847
|
+
balancesControllerAddBalanceV1(id: string, addBalanceControllerParamsDto: AddBalanceControllerParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
2848
|
+
/**
|
|
2849
|
+
*
|
|
2850
|
+
* @param {*} [options] Override http request option.
|
|
2851
|
+
* @throws {RequiredError}
|
|
2852
|
+
*/
|
|
2853
|
+
balancesControllerGetBalanceForSelfV1(options?: RawAxiosRequestConfig): AxiosPromise<BalanceResultDto>;
|
|
2854
|
+
/**
|
|
2855
|
+
*
|
|
2856
|
+
* @param {string} id
|
|
2857
|
+
* @param {*} [options] Override http request option.
|
|
2858
|
+
* @throws {RequiredError}
|
|
2859
|
+
*/
|
|
2860
|
+
balancesControllerGetBalanceV1(id: string, options?: RawAxiosRequestConfig): AxiosPromise<BalanceResultDto>;
|
|
2861
|
+
};
|
|
2862
|
+
/**
|
|
2863
|
+
* BalancesApi - object-oriented interface
|
|
2864
|
+
* @export
|
|
2865
|
+
* @class BalancesApi
|
|
2866
|
+
* @extends {BaseAPI}
|
|
2867
|
+
*/
|
|
2868
|
+
export declare class BalancesApi extends BaseAPI {
|
|
2869
|
+
/**
|
|
2870
|
+
*
|
|
2871
|
+
* @param {string} id
|
|
2872
|
+
* @param {AddBalanceControllerParamsDto} addBalanceControllerParamsDto
|
|
2873
|
+
* @param {*} [options] Override http request option.
|
|
2874
|
+
* @throws {RequiredError}
|
|
2875
|
+
* @memberof BalancesApi
|
|
2876
|
+
*/
|
|
2877
|
+
balancesControllerAddBalanceV1(id: string, addBalanceControllerParamsDto: AddBalanceControllerParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2878
|
+
/**
|
|
2879
|
+
*
|
|
2880
|
+
* @param {*} [options] Override http request option.
|
|
2881
|
+
* @throws {RequiredError}
|
|
2882
|
+
* @memberof BalancesApi
|
|
2883
|
+
*/
|
|
2884
|
+
balancesControllerGetBalanceForSelfV1(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BalanceResultDto, any>>;
|
|
2885
|
+
/**
|
|
2886
|
+
*
|
|
2887
|
+
* @param {string} id
|
|
2888
|
+
* @param {*} [options] Override http request option.
|
|
2889
|
+
* @throws {RequiredError}
|
|
2890
|
+
* @memberof BalancesApi
|
|
2891
|
+
*/
|
|
2892
|
+
balancesControllerGetBalanceV1(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BalanceResultDto, any>>;
|
|
2893
|
+
}
|
|
2894
|
+
/**
|
|
2895
|
+
* CallApi - axios parameter creator
|
|
2896
|
+
* @export
|
|
2897
|
+
*/
|
|
2898
|
+
export declare const CallApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2899
|
+
/**
|
|
2900
|
+
*
|
|
2901
|
+
* @param {AddBalanceParamsDto} addBalanceParamsDto
|
|
2902
|
+
* @param {*} [options] Override http request option.
|
|
2903
|
+
* @throws {RequiredError}
|
|
2904
|
+
*/
|
|
2905
|
+
callControllerCallAccountsBalanceAddV1: (addBalanceParamsDto: AddBalanceParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2906
|
+
/**
|
|
2907
|
+
*
|
|
2908
|
+
* @param {GetBalanceParamsDto} getBalanceParamsDto
|
|
2909
|
+
* @param {*} [options] Override http request option.
|
|
2910
|
+
* @throws {RequiredError}
|
|
2911
|
+
*/
|
|
2912
|
+
callControllerCallAccountsBalanceGetV1: (getBalanceParamsDto: GetBalanceParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2913
|
+
/**
|
|
2914
|
+
*
|
|
2915
|
+
* @param {string} body
|
|
2916
|
+
* @param {*} [options] Override http request option.
|
|
2917
|
+
* @throws {RequiredError}
|
|
2918
|
+
*/
|
|
2919
|
+
callControllerCallAccountsBalanceSelfV1: (body: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2920
|
+
/**
|
|
2921
|
+
*
|
|
2922
|
+
* @param {CreateAccountParamsDto} createAccountParamsDto
|
|
2923
|
+
* @param {*} [options] Override http request option.
|
|
2924
|
+
* @throws {RequiredError}
|
|
2925
|
+
*/
|
|
2926
|
+
callControllerCallAccountsCreateV1: (createAccountParamsDto: CreateAccountParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2927
|
+
/**
|
|
2928
|
+
*
|
|
2929
|
+
* @param {GetAccountParamsDto} getAccountParamsDto
|
|
2930
|
+
* @param {*} [options] Override http request option.
|
|
2931
|
+
* @throws {RequiredError}
|
|
2932
|
+
*/
|
|
2933
|
+
callControllerCallAccountsGetV1: (getAccountParamsDto: GetAccountParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2934
|
+
/**
|
|
2935
|
+
*
|
|
2936
|
+
* @param {ListAccountsParamsDto} listAccountsParamsDto
|
|
2937
|
+
* @param {*} [options] Override http request option.
|
|
2938
|
+
* @throws {RequiredError}
|
|
2939
|
+
*/
|
|
2940
|
+
callControllerCallAccountsListV1: (listAccountsParamsDto: ListAccountsParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2941
|
+
/**
|
|
2942
|
+
*
|
|
2943
|
+
* @param {string} body
|
|
2944
|
+
* @param {*} [options] Override http request option.
|
|
2945
|
+
* @throws {RequiredError}
|
|
2946
|
+
*/
|
|
2947
|
+
callControllerCallAccountsSelfV1: (body: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2948
|
+
/**
|
|
2949
|
+
*
|
|
2950
|
+
* @param {CreateCollectionParamsDto} createCollectionParamsDto
|
|
2951
|
+
* @param {*} [options] Override http request option.
|
|
2952
|
+
* @throws {RequiredError}
|
|
2953
|
+
*/
|
|
2954
|
+
callControllerCallCollectionsCreateV1: (createCollectionParamsDto: CreateCollectionParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2955
|
+
/**
|
|
2956
|
+
*
|
|
2957
|
+
* @param {GetCollectionParamsDto} getCollectionParamsDto
|
|
2958
|
+
* @param {*} [options] Override http request option.
|
|
2959
|
+
* @throws {RequiredError}
|
|
2960
|
+
*/
|
|
2961
|
+
callControllerCallCollectionsGetV1: (getCollectionParamsDto: GetCollectionParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2962
|
+
/**
|
|
2963
|
+
*
|
|
2964
|
+
* @param {AddItemsToCollectionParamsDto} addItemsToCollectionParamsDto
|
|
2965
|
+
* @param {*} [options] Override http request option.
|
|
2966
|
+
* @throws {RequiredError}
|
|
2967
|
+
*/
|
|
2968
|
+
callControllerCallCollectionsItemsAddV1: (addItemsToCollectionParamsDto: AddItemsToCollectionParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2969
|
+
/**
|
|
2970
|
+
*
|
|
2971
|
+
* @param {ListCollectionItemsParamsDto} listCollectionItemsParamsDto
|
|
2972
|
+
* @param {*} [options] Override http request option.
|
|
2973
|
+
* @throws {RequiredError}
|
|
2974
|
+
*/
|
|
2975
|
+
callControllerCallCollectionsItemsListV1: (listCollectionItemsParamsDto: ListCollectionItemsParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2976
|
+
/**
|
|
2977
|
+
*
|
|
2978
|
+
* @param {RemoveItemsFromCollectionParamsDto} removeItemsFromCollectionParamsDto
|
|
2979
|
+
* @param {*} [options] Override http request option.
|
|
2980
|
+
* @throws {RequiredError}
|
|
2981
|
+
*/
|
|
2982
|
+
callControllerCallCollectionsItemsRemoveV1: (removeItemsFromCollectionParamsDto: RemoveItemsFromCollectionParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2983
|
+
/**
|
|
2984
|
+
*
|
|
2985
|
+
* @param {ListCollectionsParamsDto} listCollectionsParamsDto
|
|
2986
|
+
* @param {*} [options] Override http request option.
|
|
2987
|
+
* @throws {RequiredError}
|
|
2988
|
+
*/
|
|
2989
|
+
callControllerCallCollectionsListV1: (listCollectionsParamsDto: ListCollectionsParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2990
|
+
/**
|
|
2991
|
+
*
|
|
2992
|
+
* @param {UpdateResourceMetadataDto} updateResourceMetadataDto
|
|
2993
|
+
* @param {*} [options] Override http request option.
|
|
2994
|
+
* @throws {RequiredError}
|
|
2995
|
+
*/
|
|
2996
|
+
callControllerCallCollectionsMetadataUpdateV1: (updateResourceMetadataDto: UpdateResourceMetadataDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2997
|
+
/**
|
|
2998
|
+
*
|
|
2999
|
+
* @param {AddAccountToGroupParamsDto} addAccountToGroupParamsDto
|
|
3000
|
+
* @param {*} [options] Override http request option.
|
|
3001
|
+
* @throws {RequiredError}
|
|
3002
|
+
*/
|
|
3003
|
+
callControllerCallGroupsAccountsAddV1: (addAccountToGroupParamsDto: AddAccountToGroupParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3004
|
+
/**
|
|
3005
|
+
*
|
|
3006
|
+
* @param {RemoveAccountFromGroupParamsDto} removeAccountFromGroupParamsDto
|
|
3007
|
+
* @param {*} [options] Override http request option.
|
|
3008
|
+
* @throws {RequiredError}
|
|
3009
|
+
*/
|
|
3010
|
+
callControllerCallGroupsAccountsRemoveV1: (removeAccountFromGroupParamsDto: RemoveAccountFromGroupParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3011
|
+
/**
|
|
3012
|
+
*
|
|
3013
|
+
* @param {string} body
|
|
3014
|
+
* @param {*} [options] Override http request option.
|
|
3015
|
+
* @throws {RequiredError}
|
|
3016
|
+
*/
|
|
3017
|
+
callControllerCallGroupsCreateV1: (body: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3018
|
+
/**
|
|
3019
|
+
*
|
|
3020
|
+
* @param {DeleteParamsDto} deleteParamsDto
|
|
3021
|
+
* @param {*} [options] Override http request option.
|
|
3022
|
+
* @throws {RequiredError}
|
|
3023
|
+
*/
|
|
3024
|
+
callControllerCallGroupsDeleteV1: (deleteParamsDto: DeleteParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3025
|
+
/**
|
|
3026
|
+
*
|
|
3027
|
+
* @param {GetGroupParamsDto} getGroupParamsDto
|
|
3028
|
+
* @param {*} [options] Override http request option.
|
|
3029
|
+
* @throws {RequiredError}
|
|
3030
|
+
*/
|
|
3031
|
+
callControllerCallGroupsGetV1: (getGroupParamsDto: GetGroupParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3032
|
+
/**
|
|
3033
|
+
*
|
|
3034
|
+
* @param {GetUrlsForImagesParamsDto} getUrlsForImagesParamsDto
|
|
3035
|
+
* @param {*} [options] Override http request option.
|
|
3036
|
+
* @throws {RequiredError}
|
|
3037
|
+
*/
|
|
3038
|
+
callControllerCallImagesGetManyV1: (getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3039
|
+
/**
|
|
3040
|
+
*
|
|
3041
|
+
* @param {GetImageParamsDto} getImageParamsDto
|
|
3042
|
+
* @param {*} [options] Override http request option.
|
|
3043
|
+
* @throws {RequiredError}
|
|
3044
|
+
*/
|
|
3045
|
+
callControllerCallImagesGetV1: (getImageParamsDto: GetImageParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3046
|
+
/**
|
|
3047
|
+
*
|
|
3048
|
+
* @param {GetImageRepresentationParamsDto} getImageRepresentationParamsDto
|
|
3049
|
+
* @param {*} [options] Override http request option.
|
|
3050
|
+
* @throws {RequiredError}
|
|
3051
|
+
*/
|
|
3052
|
+
callControllerCallImagesRepresentationsGetV1: (getImageRepresentationParamsDto: GetImageRepresentationParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3053
|
+
/**
|
|
3054
|
+
*
|
|
3055
|
+
* @param {GetOperationsParamsDto} getOperationsParamsDto
|
|
3056
|
+
* @param {*} [options] Override http request option.
|
|
3057
|
+
* @throws {RequiredError}
|
|
3058
|
+
*/
|
|
3059
|
+
callControllerCallOperationsGetManyV1: (getOperationsParamsDto: GetOperationsParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3060
|
+
/**
|
|
3061
|
+
*
|
|
3062
|
+
* @param {GetOperationParamsDto} getOperationParamsDto
|
|
3063
|
+
* @param {*} [options] Override http request option.
|
|
3064
|
+
* @throws {RequiredError}
|
|
3065
|
+
*/
|
|
3066
|
+
callControllerCallOperationsGetV1: (getOperationParamsDto: GetOperationParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3067
|
+
/**
|
|
3068
|
+
*
|
|
3069
|
+
* @param {ListOperationsParamsDto} listOperationsParamsDto
|
|
3070
|
+
* @param {*} [options] Override http request option.
|
|
3071
|
+
* @throws {RequiredError}
|
|
3072
|
+
*/
|
|
3073
|
+
callControllerCallOperationsListV1: (listOperationsParamsDto: ListOperationsParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3074
|
+
/**
|
|
3075
|
+
*
|
|
3076
|
+
* @param {UpdateResourceMetadataDto} updateResourceMetadataDto
|
|
3077
|
+
* @param {*} [options] Override http request option.
|
|
3078
|
+
* @throws {RequiredError}
|
|
3079
|
+
*/
|
|
3080
|
+
callControllerCallOperationsMetadataUpdateV1: (updateResourceMetadataDto: UpdateResourceMetadataDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3081
|
+
/**
|
|
3082
|
+
*
|
|
3083
|
+
* @param {GetPoseParamsDto} getPoseParamsDto
|
|
3084
|
+
* @param {*} [options] Override http request option.
|
|
3085
|
+
* @throws {RequiredError}
|
|
3086
|
+
*/
|
|
3087
|
+
callControllerCallPosesGetV1: (getPoseParamsDto: GetPoseParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3088
|
+
/**
|
|
3089
|
+
*
|
|
3090
|
+
* @param {ListPosesParamsDto} listPosesParamsDto
|
|
3091
|
+
* @param {*} [options] Override http request option.
|
|
3092
|
+
* @throws {RequiredError}
|
|
3093
|
+
*/
|
|
3094
|
+
callControllerCallPosesListV1: (listPosesParamsDto: ListPosesParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3095
|
+
/**
|
|
3096
|
+
*
|
|
3097
|
+
* @param {SetPosePreviewDto} setPosePreviewDto
|
|
3098
|
+
* @param {*} [options] Override http request option.
|
|
3099
|
+
* @throws {RequiredError}
|
|
3100
|
+
*/
|
|
3101
|
+
callControllerCallPosesPreviewSetV1: (setPosePreviewDto: SetPosePreviewDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3102
|
+
/**
|
|
3103
|
+
*
|
|
3104
|
+
* @param {AttachAccessParamsDto} attachAccessParamsDto
|
|
3105
|
+
* @param {*} [options] Override http request option.
|
|
3106
|
+
* @throws {RequiredError}
|
|
3107
|
+
*/
|
|
3108
|
+
callControllerCallResourceAccessAttachV1: (attachAccessParamsDto: AttachAccessParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3109
|
+
/**
|
|
3110
|
+
*
|
|
3111
|
+
* @param {GrantAccessParamsDto} grantAccessParamsDto
|
|
3112
|
+
* @param {*} [options] Override http request option.
|
|
3113
|
+
* @throws {RequiredError}
|
|
3114
|
+
*/
|
|
3115
|
+
callControllerCallResourceAccessGrantV1: (grantAccessParamsDto: GrantAccessParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3116
|
+
/**
|
|
3117
|
+
*
|
|
3118
|
+
* @param {CreateStackParamsDto} createStackParamsDto
|
|
3119
|
+
* @param {*} [options] Override http request option.
|
|
3120
|
+
* @throws {RequiredError}
|
|
3121
|
+
*/
|
|
3122
|
+
callControllerCallStacksCreateV1: (createStackParamsDto: CreateStackParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3123
|
+
/**
|
|
3124
|
+
*
|
|
3125
|
+
* @param {GetStackParamsDto} getStackParamsDto
|
|
3126
|
+
* @param {*} [options] Override http request option.
|
|
3127
|
+
* @throws {RequiredError}
|
|
3128
|
+
*/
|
|
3129
|
+
callControllerCallStacksGetV1: (getStackParamsDto: GetStackParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3130
|
+
/**
|
|
3131
|
+
*
|
|
3132
|
+
* @param {AddItemsToStackParamsDto} addItemsToStackParamsDto
|
|
3133
|
+
* @param {*} [options] Override http request option.
|
|
3134
|
+
* @throws {RequiredError}
|
|
3135
|
+
*/
|
|
3136
|
+
callControllerCallStacksItemsAddV1: (addItemsToStackParamsDto: AddItemsToStackParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3137
|
+
/**
|
|
3138
|
+
*
|
|
3139
|
+
* @param {RemoveItemsFromStackParamsDto} removeItemsFromStackParamsDto
|
|
3140
|
+
* @param {*} [options] Override http request option.
|
|
3141
|
+
* @throws {RequiredError}
|
|
3142
|
+
*/
|
|
3143
|
+
callControllerCallStacksItemsRemoveV1: (removeItemsFromStackParamsDto: RemoveItemsFromStackParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3144
|
+
/**
|
|
3145
|
+
*
|
|
3146
|
+
* @param {ListStacksParamsDto} listStacksParamsDto
|
|
3147
|
+
* @param {*} [options] Override http request option.
|
|
3148
|
+
* @throws {RequiredError}
|
|
3149
|
+
*/
|
|
3150
|
+
callControllerCallStacksListV1: (listStacksParamsDto: ListStacksParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3151
|
+
/**
|
|
3152
|
+
*
|
|
3153
|
+
* @param {UpdateResourceMetadataDto} updateResourceMetadataDto
|
|
3154
|
+
* @param {*} [options] Override http request option.
|
|
3155
|
+
* @throws {RequiredError}
|
|
3156
|
+
*/
|
|
3157
|
+
callControllerCallStacksMetadataUpdateV1: (updateResourceMetadataDto: UpdateResourceMetadataDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3158
|
+
/**
|
|
3159
|
+
*
|
|
3160
|
+
* @param {CreateStorageRecordParamsDto} createStorageRecordParamsDto
|
|
3161
|
+
* @param {*} [options] Override http request option.
|
|
3162
|
+
* @throws {RequiredError}
|
|
3163
|
+
*/
|
|
3164
|
+
callControllerCallStorageCreateV1: (createStorageRecordParamsDto: CreateStorageRecordParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3165
|
+
/**
|
|
3166
|
+
*
|
|
3167
|
+
* @param {DeleteStorageParamsDto} deleteStorageParamsDto
|
|
3168
|
+
* @param {*} [options] Override http request option.
|
|
3169
|
+
* @throws {RequiredError}
|
|
3170
|
+
*/
|
|
3171
|
+
callControllerCallStorageDeleteV1: (deleteStorageParamsDto: DeleteStorageParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3172
|
+
/**
|
|
3173
|
+
*
|
|
3174
|
+
* @param {GetStorageRecordParamsDto} getStorageRecordParamsDto
|
|
3175
|
+
* @param {*} [options] Override http request option.
|
|
3176
|
+
* @throws {RequiredError}
|
|
3177
|
+
*/
|
|
3178
|
+
callControllerCallStorageGetManyV1: (getStorageRecordParamsDto: GetStorageRecordParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3179
|
+
/**
|
|
3180
|
+
*
|
|
3181
|
+
* @param {UpdateStorageRecordParamsDto} updateStorageRecordParamsDto
|
|
3182
|
+
* @param {*} [options] Override http request option.
|
|
3183
|
+
* @throws {RequiredError}
|
|
3184
|
+
*/
|
|
3185
|
+
callControllerCallStorageUpdateV1: (updateStorageRecordParamsDto: UpdateStorageRecordParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3186
|
+
};
|
|
3187
|
+
/**
|
|
3188
|
+
* CallApi - functional programming interface
|
|
3189
|
+
* @export
|
|
3190
|
+
*/
|
|
3191
|
+
export declare const CallApiFp: (configuration?: Configuration) => {
|
|
3192
|
+
/**
|
|
3193
|
+
*
|
|
3194
|
+
* @param {AddBalanceParamsDto} addBalanceParamsDto
|
|
3195
|
+
* @param {*} [options] Override http request option.
|
|
3196
|
+
* @throws {RequiredError}
|
|
3197
|
+
*/
|
|
3198
|
+
callControllerCallAccountsBalanceAddV1(addBalanceParamsDto: AddBalanceParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
3199
|
+
/**
|
|
3200
|
+
*
|
|
3201
|
+
* @param {GetBalanceParamsDto} getBalanceParamsDto
|
|
3202
|
+
* @param {*} [options] Override http request option.
|
|
3203
|
+
* @throws {RequiredError}
|
|
3204
|
+
*/
|
|
3205
|
+
callControllerCallAccountsBalanceGetV1(getBalanceParamsDto: GetBalanceParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BalanceResultDto>>;
|
|
3206
|
+
/**
|
|
3207
|
+
*
|
|
3208
|
+
* @param {string} body
|
|
3209
|
+
* @param {*} [options] Override http request option.
|
|
3210
|
+
* @throws {RequiredError}
|
|
3211
|
+
*/
|
|
3212
|
+
callControllerCallAccountsBalanceSelfV1(body: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BalanceResultDto>>;
|
|
3213
|
+
/**
|
|
3214
|
+
*
|
|
3215
|
+
* @param {CreateAccountParamsDto} createAccountParamsDto
|
|
3216
|
+
* @param {*} [options] Override http request option.
|
|
3217
|
+
* @throws {RequiredError}
|
|
3218
|
+
*/
|
|
3219
|
+
callControllerCallAccountsCreateV1(createAccountParamsDto: CreateAccountParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountEntity>>;
|
|
3220
|
+
/**
|
|
3221
|
+
*
|
|
3222
|
+
* @param {GetAccountParamsDto} getAccountParamsDto
|
|
3223
|
+
* @param {*} [options] Override http request option.
|
|
3224
|
+
* @throws {RequiredError}
|
|
3225
|
+
*/
|
|
3226
|
+
callControllerCallAccountsGetV1(getAccountParamsDto: GetAccountParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountEntity>>;
|
|
3227
|
+
/**
|
|
3228
|
+
*
|
|
3229
|
+
* @param {ListAccountsParamsDto} listAccountsParamsDto
|
|
3230
|
+
* @param {*} [options] Override http request option.
|
|
3231
|
+
* @throws {RequiredError}
|
|
3232
|
+
*/
|
|
3233
|
+
callControllerCallAccountsListV1(listAccountsParamsDto: ListAccountsParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListAccountsDto>>;
|
|
3234
|
+
/**
|
|
3235
|
+
*
|
|
3236
|
+
* @param {string} body
|
|
3237
|
+
* @param {*} [options] Override http request option.
|
|
3238
|
+
* @throws {RequiredError}
|
|
3239
|
+
*/
|
|
3240
|
+
callControllerCallAccountsSelfV1(body: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountEntity>>;
|
|
3241
|
+
/**
|
|
3242
|
+
*
|
|
3243
|
+
* @param {CreateCollectionParamsDto} createCollectionParamsDto
|
|
3244
|
+
* @param {*} [options] Override http request option.
|
|
3245
|
+
* @throws {RequiredError}
|
|
3246
|
+
*/
|
|
3247
|
+
callControllerCallCollectionsCreateV1(createCollectionParamsDto: CreateCollectionParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CollectionEntity>>;
|
|
3248
|
+
/**
|
|
3249
|
+
*
|
|
3250
|
+
* @param {GetCollectionParamsDto} getCollectionParamsDto
|
|
3251
|
+
* @param {*} [options] Override http request option.
|
|
3252
|
+
* @throws {RequiredError}
|
|
3253
|
+
*/
|
|
3254
|
+
callControllerCallCollectionsGetV1(getCollectionParamsDto: GetCollectionParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CollectionEntity>>;
|
|
3255
|
+
/**
|
|
3256
|
+
*
|
|
3257
|
+
* @param {AddItemsToCollectionParamsDto} addItemsToCollectionParamsDto
|
|
3258
|
+
* @param {*} [options] Override http request option.
|
|
3259
|
+
* @throws {RequiredError}
|
|
3260
|
+
*/
|
|
3261
|
+
callControllerCallCollectionsItemsAddV1(addItemsToCollectionParamsDto: AddItemsToCollectionParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
3262
|
+
/**
|
|
3263
|
+
*
|
|
3264
|
+
* @param {ListCollectionItemsParamsDto} listCollectionItemsParamsDto
|
|
3265
|
+
* @param {*} [options] Override http request option.
|
|
3266
|
+
* @throws {RequiredError}
|
|
3267
|
+
*/
|
|
3268
|
+
callControllerCallCollectionsItemsListV1(listCollectionItemsParamsDto: ListCollectionItemsParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListCollectionItemsDto>>;
|
|
3269
|
+
/**
|
|
3270
|
+
*
|
|
3271
|
+
* @param {RemoveItemsFromCollectionParamsDto} removeItemsFromCollectionParamsDto
|
|
3272
|
+
* @param {*} [options] Override http request option.
|
|
3273
|
+
* @throws {RequiredError}
|
|
3274
|
+
*/
|
|
3275
|
+
callControllerCallCollectionsItemsRemoveV1(removeItemsFromCollectionParamsDto: RemoveItemsFromCollectionParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
3276
|
+
/**
|
|
3277
|
+
*
|
|
3278
|
+
* @param {ListCollectionsParamsDto} listCollectionsParamsDto
|
|
3279
|
+
* @param {*} [options] Override http request option.
|
|
3280
|
+
* @throws {RequiredError}
|
|
3281
|
+
*/
|
|
3282
|
+
callControllerCallCollectionsListV1(listCollectionsParamsDto: ListCollectionsParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListCollectionsDto>>;
|
|
3283
|
+
/**
|
|
3284
|
+
*
|
|
3285
|
+
* @param {UpdateResourceMetadataDto} updateResourceMetadataDto
|
|
3286
|
+
* @param {*} [options] Override http request option.
|
|
3287
|
+
* @throws {RequiredError}
|
|
3288
|
+
*/
|
|
3289
|
+
callControllerCallCollectionsMetadataUpdateV1(updateResourceMetadataDto: UpdateResourceMetadataDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CollectionEntity>>;
|
|
3290
|
+
/**
|
|
3291
|
+
*
|
|
3292
|
+
* @param {AddAccountToGroupParamsDto} addAccountToGroupParamsDto
|
|
3293
|
+
* @param {*} [options] Override http request option.
|
|
3294
|
+
* @throws {RequiredError}
|
|
3295
|
+
*/
|
|
3296
|
+
callControllerCallGroupsAccountsAddV1(addAccountToGroupParamsDto: AddAccountToGroupParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
3297
|
+
/**
|
|
3298
|
+
*
|
|
3299
|
+
* @param {RemoveAccountFromGroupParamsDto} removeAccountFromGroupParamsDto
|
|
3300
|
+
* @param {*} [options] Override http request option.
|
|
3301
|
+
* @throws {RequiredError}
|
|
3302
|
+
*/
|
|
3303
|
+
callControllerCallGroupsAccountsRemoveV1(removeAccountFromGroupParamsDto: RemoveAccountFromGroupParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
3304
|
+
/**
|
|
3305
|
+
*
|
|
3306
|
+
* @param {string} body
|
|
3307
|
+
* @param {*} [options] Override http request option.
|
|
3308
|
+
* @throws {RequiredError}
|
|
3309
|
+
*/
|
|
3310
|
+
callControllerCallGroupsCreateV1(body: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GroupEntity>>;
|
|
3311
|
+
/**
|
|
3312
|
+
*
|
|
3313
|
+
* @param {DeleteParamsDto} deleteParamsDto
|
|
3314
|
+
* @param {*} [options] Override http request option.
|
|
3315
|
+
* @throws {RequiredError}
|
|
3316
|
+
*/
|
|
3317
|
+
callControllerCallGroupsDeleteV1(deleteParamsDto: DeleteParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
3318
|
+
/**
|
|
3319
|
+
*
|
|
3320
|
+
* @param {GetGroupParamsDto} getGroupParamsDto
|
|
3321
|
+
* @param {*} [options] Override http request option.
|
|
3322
|
+
* @throws {RequiredError}
|
|
3323
|
+
*/
|
|
3324
|
+
callControllerCallGroupsGetV1(getGroupParamsDto: GetGroupParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GroupEntity>>;
|
|
3325
|
+
/**
|
|
3326
|
+
*
|
|
3327
|
+
* @param {GetUrlsForImagesParamsDto} getUrlsForImagesParamsDto
|
|
3328
|
+
* @param {*} [options] Override http request option.
|
|
3329
|
+
* @throws {RequiredError}
|
|
3330
|
+
*/
|
|
3331
|
+
callControllerCallImagesGetManyV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ImageUrlResponseDto>>>;
|
|
3332
|
+
/**
|
|
3333
|
+
*
|
|
3334
|
+
* @param {GetImageParamsDto} getImageParamsDto
|
|
3335
|
+
* @param {*} [options] Override http request option.
|
|
3336
|
+
* @throws {RequiredError}
|
|
3337
|
+
*/
|
|
3338
|
+
callControllerCallImagesGetV1(getImageParamsDto: GetImageParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ImageEntity>>;
|
|
3339
|
+
/**
|
|
3340
|
+
*
|
|
3341
|
+
* @param {GetImageRepresentationParamsDto} getImageRepresentationParamsDto
|
|
3342
|
+
* @param {*} [options] Override http request option.
|
|
3343
|
+
* @throws {RequiredError}
|
|
3344
|
+
*/
|
|
3345
|
+
callControllerCallImagesRepresentationsGetV1(getImageRepresentationParamsDto: GetImageRepresentationParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ImageRepresentationResponseDto>>;
|
|
3346
|
+
/**
|
|
3347
|
+
*
|
|
3348
|
+
* @param {GetOperationsParamsDto} getOperationsParamsDto
|
|
3349
|
+
* @param {*} [options] Override http request option.
|
|
3350
|
+
* @throws {RequiredError}
|
|
3351
|
+
*/
|
|
3352
|
+
callControllerCallOperationsGetManyV1(getOperationsParamsDto: GetOperationsParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OperationEntity>>>;
|
|
3353
|
+
/**
|
|
3354
|
+
*
|
|
3355
|
+
* @param {GetOperationParamsDto} getOperationParamsDto
|
|
3356
|
+
* @param {*} [options] Override http request option.
|
|
3357
|
+
* @throws {RequiredError}
|
|
3358
|
+
*/
|
|
3359
|
+
callControllerCallOperationsGetV1(getOperationParamsDto: GetOperationParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
|
|
3360
|
+
/**
|
|
3361
|
+
*
|
|
3362
|
+
* @param {ListOperationsParamsDto} listOperationsParamsDto
|
|
3363
|
+
* @param {*} [options] Override http request option.
|
|
3364
|
+
* @throws {RequiredError}
|
|
3365
|
+
*/
|
|
3366
|
+
callControllerCallOperationsListV1(listOperationsParamsDto: ListOperationsParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListOperationsDto>>;
|
|
3367
|
+
/**
|
|
3368
|
+
*
|
|
3369
|
+
* @param {UpdateResourceMetadataDto} updateResourceMetadataDto
|
|
3370
|
+
* @param {*} [options] Override http request option.
|
|
3371
|
+
* @throws {RequiredError}
|
|
3372
|
+
*/
|
|
3373
|
+
callControllerCallOperationsMetadataUpdateV1(updateResourceMetadataDto: UpdateResourceMetadataDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
|
|
3374
|
+
/**
|
|
3375
|
+
*
|
|
3376
|
+
* @param {GetPoseParamsDto} getPoseParamsDto
|
|
3377
|
+
* @param {*} [options] Override http request option.
|
|
3378
|
+
* @throws {RequiredError}
|
|
3379
|
+
*/
|
|
3380
|
+
callControllerCallPosesGetV1(getPoseParamsDto: GetPoseParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PoseEntity>>;
|
|
3381
|
+
/**
|
|
3382
|
+
*
|
|
3383
|
+
* @param {ListPosesParamsDto} listPosesParamsDto
|
|
3384
|
+
* @param {*} [options] Override http request option.
|
|
3385
|
+
* @throws {RequiredError}
|
|
3386
|
+
*/
|
|
3387
|
+
callControllerCallPosesListV1(listPosesParamsDto: ListPosesParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListPosesDto>>;
|
|
3388
|
+
/**
|
|
3389
|
+
*
|
|
3390
|
+
* @param {SetPosePreviewDto} setPosePreviewDto
|
|
3391
|
+
* @param {*} [options] Override http request option.
|
|
3392
|
+
* @throws {RequiredError}
|
|
3393
|
+
*/
|
|
3394
|
+
callControllerCallPosesPreviewSetV1(setPosePreviewDto: SetPosePreviewDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
3395
|
+
/**
|
|
3396
|
+
*
|
|
3397
|
+
* @param {AttachAccessParamsDto} attachAccessParamsDto
|
|
3398
|
+
* @param {*} [options] Override http request option.
|
|
3399
|
+
* @throws {RequiredError}
|
|
3400
|
+
*/
|
|
3401
|
+
callControllerCallResourceAccessAttachV1(attachAccessParamsDto: AttachAccessParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
3402
|
+
/**
|
|
3403
|
+
*
|
|
3404
|
+
* @param {GrantAccessParamsDto} grantAccessParamsDto
|
|
3405
|
+
* @param {*} [options] Override http request option.
|
|
3406
|
+
* @throws {RequiredError}
|
|
3407
|
+
*/
|
|
3408
|
+
callControllerCallResourceAccessGrantV1(grantAccessParamsDto: GrantAccessParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
3409
|
+
/**
|
|
3410
|
+
*
|
|
3411
|
+
* @param {CreateStackParamsDto} createStackParamsDto
|
|
3412
|
+
* @param {*} [options] Override http request option.
|
|
3413
|
+
* @throws {RequiredError}
|
|
3414
|
+
*/
|
|
3415
|
+
callControllerCallStacksCreateV1(createStackParamsDto: CreateStackParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StackEntity>>;
|
|
3416
|
+
/**
|
|
3417
|
+
*
|
|
3418
|
+
* @param {GetStackParamsDto} getStackParamsDto
|
|
3419
|
+
* @param {*} [options] Override http request option.
|
|
3420
|
+
* @throws {RequiredError}
|
|
3421
|
+
*/
|
|
3422
|
+
callControllerCallStacksGetV1(getStackParamsDto: GetStackParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StackEntity>>;
|
|
3423
|
+
/**
|
|
3424
|
+
*
|
|
3425
|
+
* @param {AddItemsToStackParamsDto} addItemsToStackParamsDto
|
|
3426
|
+
* @param {*} [options] Override http request option.
|
|
3427
|
+
* @throws {RequiredError}
|
|
3428
|
+
*/
|
|
3429
|
+
callControllerCallStacksItemsAddV1(addItemsToStackParamsDto: AddItemsToStackParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StackEntity>>;
|
|
3430
|
+
/**
|
|
3431
|
+
*
|
|
3432
|
+
* @param {RemoveItemsFromStackParamsDto} removeItemsFromStackParamsDto
|
|
3433
|
+
* @param {*} [options] Override http request option.
|
|
3434
|
+
* @throws {RequiredError}
|
|
3435
|
+
*/
|
|
3436
|
+
callControllerCallStacksItemsRemoveV1(removeItemsFromStackParamsDto: RemoveItemsFromStackParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StackEntity>>;
|
|
3437
|
+
/**
|
|
3438
|
+
*
|
|
3439
|
+
* @param {ListStacksParamsDto} listStacksParamsDto
|
|
3440
|
+
* @param {*} [options] Override http request option.
|
|
3441
|
+
* @throws {RequiredError}
|
|
3442
|
+
*/
|
|
3443
|
+
callControllerCallStacksListV1(listStacksParamsDto: ListStacksParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListStacksDto>>;
|
|
3444
|
+
/**
|
|
3445
|
+
*
|
|
3446
|
+
* @param {UpdateResourceMetadataDto} updateResourceMetadataDto
|
|
3447
|
+
* @param {*} [options] Override http request option.
|
|
3448
|
+
* @throws {RequiredError}
|
|
3449
|
+
*/
|
|
3450
|
+
callControllerCallStacksMetadataUpdateV1(updateResourceMetadataDto: UpdateResourceMetadataDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StackEntity>>;
|
|
3451
|
+
/**
|
|
3452
|
+
*
|
|
3453
|
+
* @param {CreateStorageRecordParamsDto} createStorageRecordParamsDto
|
|
3454
|
+
* @param {*} [options] Override http request option.
|
|
3455
|
+
* @throws {RequiredError}
|
|
3456
|
+
*/
|
|
3457
|
+
callControllerCallStorageCreateV1(createStorageRecordParamsDto: CreateStorageRecordParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StorageEntity>>;
|
|
3458
|
+
/**
|
|
3459
|
+
*
|
|
3460
|
+
* @param {DeleteStorageParamsDto} deleteStorageParamsDto
|
|
3461
|
+
* @param {*} [options] Override http request option.
|
|
3462
|
+
* @throws {RequiredError}
|
|
3463
|
+
*/
|
|
3464
|
+
callControllerCallStorageDeleteV1(deleteStorageParamsDto: DeleteStorageParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
3465
|
+
/**
|
|
3466
|
+
*
|
|
3467
|
+
* @param {GetStorageRecordParamsDto} getStorageRecordParamsDto
|
|
3468
|
+
* @param {*} [options] Override http request option.
|
|
3469
|
+
* @throws {RequiredError}
|
|
3470
|
+
*/
|
|
3471
|
+
callControllerCallStorageGetManyV1(getStorageRecordParamsDto: GetStorageRecordParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<StorageRecordsResultDto>>>;
|
|
3472
|
+
/**
|
|
3473
|
+
*
|
|
3474
|
+
* @param {UpdateStorageRecordParamsDto} updateStorageRecordParamsDto
|
|
3475
|
+
* @param {*} [options] Override http request option.
|
|
3476
|
+
* @throws {RequiredError}
|
|
3477
|
+
*/
|
|
3478
|
+
callControllerCallStorageUpdateV1(updateStorageRecordParamsDto: UpdateStorageRecordParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StorageEntity>>;
|
|
3479
|
+
};
|
|
3480
|
+
/**
|
|
3481
|
+
* CallApi - factory interface
|
|
3482
|
+
* @export
|
|
3483
|
+
*/
|
|
3484
|
+
export declare const CallApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
3485
|
+
/**
|
|
3486
|
+
*
|
|
3487
|
+
* @param {AddBalanceParamsDto} addBalanceParamsDto
|
|
3488
|
+
* @param {*} [options] Override http request option.
|
|
3489
|
+
* @throws {RequiredError}
|
|
3490
|
+
*/
|
|
3491
|
+
callControllerCallAccountsBalanceAddV1(addBalanceParamsDto: AddBalanceParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
3492
|
+
/**
|
|
3493
|
+
*
|
|
3494
|
+
* @param {GetBalanceParamsDto} getBalanceParamsDto
|
|
3495
|
+
* @param {*} [options] Override http request option.
|
|
3496
|
+
* @throws {RequiredError}
|
|
3497
|
+
*/
|
|
3498
|
+
callControllerCallAccountsBalanceGetV1(getBalanceParamsDto: GetBalanceParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<BalanceResultDto>;
|
|
3499
|
+
/**
|
|
3500
|
+
*
|
|
3501
|
+
* @param {string} body
|
|
3502
|
+
* @param {*} [options] Override http request option.
|
|
3503
|
+
* @throws {RequiredError}
|
|
3504
|
+
*/
|
|
3505
|
+
callControllerCallAccountsBalanceSelfV1(body: string, options?: RawAxiosRequestConfig): AxiosPromise<BalanceResultDto>;
|
|
3506
|
+
/**
|
|
3507
|
+
*
|
|
3508
|
+
* @param {CreateAccountParamsDto} createAccountParamsDto
|
|
3509
|
+
* @param {*} [options] Override http request option.
|
|
3510
|
+
* @throws {RequiredError}
|
|
3511
|
+
*/
|
|
3512
|
+
callControllerCallAccountsCreateV1(createAccountParamsDto: CreateAccountParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<AccountEntity>;
|
|
3513
|
+
/**
|
|
3514
|
+
*
|
|
3515
|
+
* @param {GetAccountParamsDto} getAccountParamsDto
|
|
3516
|
+
* @param {*} [options] Override http request option.
|
|
3517
|
+
* @throws {RequiredError}
|
|
3518
|
+
*/
|
|
3519
|
+
callControllerCallAccountsGetV1(getAccountParamsDto: GetAccountParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<AccountEntity>;
|
|
3520
|
+
/**
|
|
3521
|
+
*
|
|
3522
|
+
* @param {ListAccountsParamsDto} listAccountsParamsDto
|
|
3523
|
+
* @param {*} [options] Override http request option.
|
|
3524
|
+
* @throws {RequiredError}
|
|
3525
|
+
*/
|
|
3526
|
+
callControllerCallAccountsListV1(listAccountsParamsDto: ListAccountsParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<ListAccountsDto>;
|
|
3527
|
+
/**
|
|
3528
|
+
*
|
|
3529
|
+
* @param {string} body
|
|
3530
|
+
* @param {*} [options] Override http request option.
|
|
3531
|
+
* @throws {RequiredError}
|
|
3532
|
+
*/
|
|
3533
|
+
callControllerCallAccountsSelfV1(body: string, options?: RawAxiosRequestConfig): AxiosPromise<AccountEntity>;
|
|
3534
|
+
/**
|
|
3535
|
+
*
|
|
3536
|
+
* @param {CreateCollectionParamsDto} createCollectionParamsDto
|
|
3537
|
+
* @param {*} [options] Override http request option.
|
|
3538
|
+
* @throws {RequiredError}
|
|
3539
|
+
*/
|
|
3540
|
+
callControllerCallCollectionsCreateV1(createCollectionParamsDto: CreateCollectionParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<CollectionEntity>;
|
|
3541
|
+
/**
|
|
3542
|
+
*
|
|
3543
|
+
* @param {GetCollectionParamsDto} getCollectionParamsDto
|
|
3544
|
+
* @param {*} [options] Override http request option.
|
|
3545
|
+
* @throws {RequiredError}
|
|
3546
|
+
*/
|
|
3547
|
+
callControllerCallCollectionsGetV1(getCollectionParamsDto: GetCollectionParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<CollectionEntity>;
|
|
3548
|
+
/**
|
|
3549
|
+
*
|
|
3550
|
+
* @param {AddItemsToCollectionParamsDto} addItemsToCollectionParamsDto
|
|
3551
|
+
* @param {*} [options] Override http request option.
|
|
3552
|
+
* @throws {RequiredError}
|
|
3553
|
+
*/
|
|
3554
|
+
callControllerCallCollectionsItemsAddV1(addItemsToCollectionParamsDto: AddItemsToCollectionParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
3555
|
+
/**
|
|
3556
|
+
*
|
|
3557
|
+
* @param {ListCollectionItemsParamsDto} listCollectionItemsParamsDto
|
|
3558
|
+
* @param {*} [options] Override http request option.
|
|
3559
|
+
* @throws {RequiredError}
|
|
3560
|
+
*/
|
|
3561
|
+
callControllerCallCollectionsItemsListV1(listCollectionItemsParamsDto: ListCollectionItemsParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<ListCollectionItemsDto>;
|
|
3562
|
+
/**
|
|
3563
|
+
*
|
|
3564
|
+
* @param {RemoveItemsFromCollectionParamsDto} removeItemsFromCollectionParamsDto
|
|
3565
|
+
* @param {*} [options] Override http request option.
|
|
3566
|
+
* @throws {RequiredError}
|
|
3567
|
+
*/
|
|
3568
|
+
callControllerCallCollectionsItemsRemoveV1(removeItemsFromCollectionParamsDto: RemoveItemsFromCollectionParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
3569
|
+
/**
|
|
3570
|
+
*
|
|
3571
|
+
* @param {ListCollectionsParamsDto} listCollectionsParamsDto
|
|
3572
|
+
* @param {*} [options] Override http request option.
|
|
3573
|
+
* @throws {RequiredError}
|
|
3574
|
+
*/
|
|
3575
|
+
callControllerCallCollectionsListV1(listCollectionsParamsDto: ListCollectionsParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<ListCollectionsDto>;
|
|
3576
|
+
/**
|
|
3577
|
+
*
|
|
3578
|
+
* @param {UpdateResourceMetadataDto} updateResourceMetadataDto
|
|
3579
|
+
* @param {*} [options] Override http request option.
|
|
3580
|
+
* @throws {RequiredError}
|
|
3581
|
+
*/
|
|
3582
|
+
callControllerCallCollectionsMetadataUpdateV1(updateResourceMetadataDto: UpdateResourceMetadataDto, options?: RawAxiosRequestConfig): AxiosPromise<CollectionEntity>;
|
|
3583
|
+
/**
|
|
3584
|
+
*
|
|
3585
|
+
* @param {AddAccountToGroupParamsDto} addAccountToGroupParamsDto
|
|
3586
|
+
* @param {*} [options] Override http request option.
|
|
3587
|
+
* @throws {RequiredError}
|
|
3588
|
+
*/
|
|
3589
|
+
callControllerCallGroupsAccountsAddV1(addAccountToGroupParamsDto: AddAccountToGroupParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
3590
|
+
/**
|
|
3591
|
+
*
|
|
3592
|
+
* @param {RemoveAccountFromGroupParamsDto} removeAccountFromGroupParamsDto
|
|
3593
|
+
* @param {*} [options] Override http request option.
|
|
3594
|
+
* @throws {RequiredError}
|
|
3595
|
+
*/
|
|
3596
|
+
callControllerCallGroupsAccountsRemoveV1(removeAccountFromGroupParamsDto: RemoveAccountFromGroupParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
3597
|
+
/**
|
|
3598
|
+
*
|
|
3599
|
+
* @param {string} body
|
|
3600
|
+
* @param {*} [options] Override http request option.
|
|
3601
|
+
* @throws {RequiredError}
|
|
3602
|
+
*/
|
|
3603
|
+
callControllerCallGroupsCreateV1(body: string, options?: RawAxiosRequestConfig): AxiosPromise<GroupEntity>;
|
|
3604
|
+
/**
|
|
3605
|
+
*
|
|
3606
|
+
* @param {DeleteParamsDto} deleteParamsDto
|
|
3607
|
+
* @param {*} [options] Override http request option.
|
|
3608
|
+
* @throws {RequiredError}
|
|
3609
|
+
*/
|
|
3610
|
+
callControllerCallGroupsDeleteV1(deleteParamsDto: DeleteParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
3611
|
+
/**
|
|
3612
|
+
*
|
|
3613
|
+
* @param {GetGroupParamsDto} getGroupParamsDto
|
|
3614
|
+
* @param {*} [options] Override http request option.
|
|
3615
|
+
* @throws {RequiredError}
|
|
3616
|
+
*/
|
|
3617
|
+
callControllerCallGroupsGetV1(getGroupParamsDto: GetGroupParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<GroupEntity>;
|
|
3618
|
+
/**
|
|
3619
|
+
*
|
|
3620
|
+
* @param {GetUrlsForImagesParamsDto} getUrlsForImagesParamsDto
|
|
3621
|
+
* @param {*} [options] Override http request option.
|
|
3622
|
+
* @throws {RequiredError}
|
|
3623
|
+
*/
|
|
3624
|
+
callControllerCallImagesGetManyV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<ImageUrlResponseDto>>;
|
|
3625
|
+
/**
|
|
3626
|
+
*
|
|
3627
|
+
* @param {GetImageParamsDto} getImageParamsDto
|
|
3628
|
+
* @param {*} [options] Override http request option.
|
|
3629
|
+
* @throws {RequiredError}
|
|
3630
|
+
*/
|
|
3631
|
+
callControllerCallImagesGetV1(getImageParamsDto: GetImageParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<ImageEntity>;
|
|
3632
|
+
/**
|
|
3633
|
+
*
|
|
3634
|
+
* @param {GetImageRepresentationParamsDto} getImageRepresentationParamsDto
|
|
3635
|
+
* @param {*} [options] Override http request option.
|
|
3636
|
+
* @throws {RequiredError}
|
|
3637
|
+
*/
|
|
3638
|
+
callControllerCallImagesRepresentationsGetV1(getImageRepresentationParamsDto: GetImageRepresentationParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<ImageRepresentationResponseDto>;
|
|
3639
|
+
/**
|
|
3640
|
+
*
|
|
3641
|
+
* @param {GetOperationsParamsDto} getOperationsParamsDto
|
|
3642
|
+
* @param {*} [options] Override http request option.
|
|
3643
|
+
* @throws {RequiredError}
|
|
3644
|
+
*/
|
|
3645
|
+
callControllerCallOperationsGetManyV1(getOperationsParamsDto: GetOperationsParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<OperationEntity>>;
|
|
3646
|
+
/**
|
|
3647
|
+
*
|
|
3648
|
+
* @param {GetOperationParamsDto} getOperationParamsDto
|
|
3649
|
+
* @param {*} [options] Override http request option.
|
|
3650
|
+
* @throws {RequiredError}
|
|
3651
|
+
*/
|
|
3652
|
+
callControllerCallOperationsGetV1(getOperationParamsDto: GetOperationParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
|
|
3653
|
+
/**
|
|
3654
|
+
*
|
|
3655
|
+
* @param {ListOperationsParamsDto} listOperationsParamsDto
|
|
3656
|
+
* @param {*} [options] Override http request option.
|
|
3657
|
+
* @throws {RequiredError}
|
|
3658
|
+
*/
|
|
3659
|
+
callControllerCallOperationsListV1(listOperationsParamsDto: ListOperationsParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<ListOperationsDto>;
|
|
3660
|
+
/**
|
|
3661
|
+
*
|
|
3662
|
+
* @param {UpdateResourceMetadataDto} updateResourceMetadataDto
|
|
3663
|
+
* @param {*} [options] Override http request option.
|
|
3664
|
+
* @throws {RequiredError}
|
|
3665
|
+
*/
|
|
3666
|
+
callControllerCallOperationsMetadataUpdateV1(updateResourceMetadataDto: UpdateResourceMetadataDto, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
|
|
3667
|
+
/**
|
|
3668
|
+
*
|
|
3669
|
+
* @param {GetPoseParamsDto} getPoseParamsDto
|
|
3670
|
+
* @param {*} [options] Override http request option.
|
|
3671
|
+
* @throws {RequiredError}
|
|
3672
|
+
*/
|
|
3673
|
+
callControllerCallPosesGetV1(getPoseParamsDto: GetPoseParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<PoseEntity>;
|
|
3674
|
+
/**
|
|
3675
|
+
*
|
|
3676
|
+
* @param {ListPosesParamsDto} listPosesParamsDto
|
|
3677
|
+
* @param {*} [options] Override http request option.
|
|
3678
|
+
* @throws {RequiredError}
|
|
3679
|
+
*/
|
|
3680
|
+
callControllerCallPosesListV1(listPosesParamsDto: ListPosesParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<ListPosesDto>;
|
|
3681
|
+
/**
|
|
3682
|
+
*
|
|
3683
|
+
* @param {SetPosePreviewDto} setPosePreviewDto
|
|
3684
|
+
* @param {*} [options] Override http request option.
|
|
3685
|
+
* @throws {RequiredError}
|
|
3686
|
+
*/
|
|
3687
|
+
callControllerCallPosesPreviewSetV1(setPosePreviewDto: SetPosePreviewDto, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
3688
|
+
/**
|
|
3689
|
+
*
|
|
3690
|
+
* @param {AttachAccessParamsDto} attachAccessParamsDto
|
|
3691
|
+
* @param {*} [options] Override http request option.
|
|
3692
|
+
* @throws {RequiredError}
|
|
3693
|
+
*/
|
|
3694
|
+
callControllerCallResourceAccessAttachV1(attachAccessParamsDto: AttachAccessParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
3695
|
+
/**
|
|
3696
|
+
*
|
|
3697
|
+
* @param {GrantAccessParamsDto} grantAccessParamsDto
|
|
3698
|
+
* @param {*} [options] Override http request option.
|
|
3699
|
+
* @throws {RequiredError}
|
|
3700
|
+
*/
|
|
3701
|
+
callControllerCallResourceAccessGrantV1(grantAccessParamsDto: GrantAccessParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
3702
|
+
/**
|
|
3703
|
+
*
|
|
3704
|
+
* @param {CreateStackParamsDto} createStackParamsDto
|
|
3705
|
+
* @param {*} [options] Override http request option.
|
|
3706
|
+
* @throws {RequiredError}
|
|
3707
|
+
*/
|
|
3708
|
+
callControllerCallStacksCreateV1(createStackParamsDto: CreateStackParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<StackEntity>;
|
|
3709
|
+
/**
|
|
3710
|
+
*
|
|
3711
|
+
* @param {GetStackParamsDto} getStackParamsDto
|
|
3712
|
+
* @param {*} [options] Override http request option.
|
|
3713
|
+
* @throws {RequiredError}
|
|
3714
|
+
*/
|
|
3715
|
+
callControllerCallStacksGetV1(getStackParamsDto: GetStackParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<StackEntity>;
|
|
3716
|
+
/**
|
|
3717
|
+
*
|
|
3718
|
+
* @param {AddItemsToStackParamsDto} addItemsToStackParamsDto
|
|
3719
|
+
* @param {*} [options] Override http request option.
|
|
3720
|
+
* @throws {RequiredError}
|
|
3721
|
+
*/
|
|
3722
|
+
callControllerCallStacksItemsAddV1(addItemsToStackParamsDto: AddItemsToStackParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<StackEntity>;
|
|
3723
|
+
/**
|
|
3724
|
+
*
|
|
3725
|
+
* @param {RemoveItemsFromStackParamsDto} removeItemsFromStackParamsDto
|
|
3726
|
+
* @param {*} [options] Override http request option.
|
|
3727
|
+
* @throws {RequiredError}
|
|
3728
|
+
*/
|
|
3729
|
+
callControllerCallStacksItemsRemoveV1(removeItemsFromStackParamsDto: RemoveItemsFromStackParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<StackEntity>;
|
|
3730
|
+
/**
|
|
3731
|
+
*
|
|
3732
|
+
* @param {ListStacksParamsDto} listStacksParamsDto
|
|
3733
|
+
* @param {*} [options] Override http request option.
|
|
3734
|
+
* @throws {RequiredError}
|
|
3735
|
+
*/
|
|
3736
|
+
callControllerCallStacksListV1(listStacksParamsDto: ListStacksParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<ListStacksDto>;
|
|
3737
|
+
/**
|
|
3738
|
+
*
|
|
3739
|
+
* @param {UpdateResourceMetadataDto} updateResourceMetadataDto
|
|
3740
|
+
* @param {*} [options] Override http request option.
|
|
3741
|
+
* @throws {RequiredError}
|
|
3742
|
+
*/
|
|
3743
|
+
callControllerCallStacksMetadataUpdateV1(updateResourceMetadataDto: UpdateResourceMetadataDto, options?: RawAxiosRequestConfig): AxiosPromise<StackEntity>;
|
|
3744
|
+
/**
|
|
3745
|
+
*
|
|
3746
|
+
* @param {CreateStorageRecordParamsDto} createStorageRecordParamsDto
|
|
3747
|
+
* @param {*} [options] Override http request option.
|
|
3748
|
+
* @throws {RequiredError}
|
|
3749
|
+
*/
|
|
3750
|
+
callControllerCallStorageCreateV1(createStorageRecordParamsDto: CreateStorageRecordParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<StorageEntity>;
|
|
3751
|
+
/**
|
|
3752
|
+
*
|
|
3753
|
+
* @param {DeleteStorageParamsDto} deleteStorageParamsDto
|
|
3754
|
+
* @param {*} [options] Override http request option.
|
|
3755
|
+
* @throws {RequiredError}
|
|
3756
|
+
*/
|
|
3757
|
+
callControllerCallStorageDeleteV1(deleteStorageParamsDto: DeleteStorageParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
2148
3758
|
/**
|
|
2149
3759
|
*
|
|
3760
|
+
* @param {GetStorageRecordParamsDto} getStorageRecordParamsDto
|
|
2150
3761
|
* @param {*} [options] Override http request option.
|
|
2151
3762
|
* @throws {RequiredError}
|
|
2152
|
-
* @memberof AccountsApi
|
|
2153
3763
|
*/
|
|
2154
|
-
|
|
3764
|
+
callControllerCallStorageGetManyV1(getStorageRecordParamsDto: GetStorageRecordParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<StorageRecordsResultDto>>;
|
|
2155
3765
|
/**
|
|
2156
3766
|
*
|
|
2157
|
-
* @param {
|
|
2158
|
-
* @param {number} [limit]
|
|
2159
|
-
* @param {string} [cursor]
|
|
3767
|
+
* @param {UpdateStorageRecordParamsDto} updateStorageRecordParamsDto
|
|
2160
3768
|
* @param {*} [options] Override http request option.
|
|
2161
3769
|
* @throws {RequiredError}
|
|
2162
|
-
* @memberof AccountsApi
|
|
2163
3770
|
*/
|
|
2164
|
-
|
|
2165
|
-
}
|
|
2166
|
-
/**
|
|
2167
|
-
* @export
|
|
2168
|
-
*/
|
|
2169
|
-
export declare const AccountsControllerListAccointsV1OrderByEnum: {
|
|
2170
|
-
readonly Asc: "createdAt_ASC";
|
|
2171
|
-
readonly Desc: "createdAt_DESC";
|
|
3771
|
+
callControllerCallStorageUpdateV1(updateStorageRecordParamsDto: UpdateStorageRecordParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<StorageEntity>;
|
|
2172
3772
|
};
|
|
2173
|
-
export type AccountsControllerListAccointsV1OrderByEnum = typeof AccountsControllerListAccointsV1OrderByEnum[keyof typeof AccountsControllerListAccointsV1OrderByEnum];
|
|
2174
3773
|
/**
|
|
2175
|
-
*
|
|
3774
|
+
* CallApi - object-oriented interface
|
|
2176
3775
|
* @export
|
|
3776
|
+
* @class CallApi
|
|
3777
|
+
* @extends {BaseAPI}
|
|
2177
3778
|
*/
|
|
2178
|
-
export declare
|
|
3779
|
+
export declare class CallApi extends BaseAPI {
|
|
2179
3780
|
/**
|
|
2180
3781
|
*
|
|
2181
|
-
* @param {
|
|
2182
|
-
* @param {AddBalanceControllerParamsDto} addBalanceControllerParamsDto
|
|
3782
|
+
* @param {AddBalanceParamsDto} addBalanceParamsDto
|
|
2183
3783
|
* @param {*} [options] Override http request option.
|
|
2184
3784
|
* @throws {RequiredError}
|
|
3785
|
+
* @memberof CallApi
|
|
2185
3786
|
*/
|
|
2186
|
-
|
|
3787
|
+
callControllerCallAccountsBalanceAddV1(addBalanceParamsDto: AddBalanceParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2187
3788
|
/**
|
|
2188
3789
|
*
|
|
3790
|
+
* @param {GetBalanceParamsDto} getBalanceParamsDto
|
|
2189
3791
|
* @param {*} [options] Override http request option.
|
|
2190
3792
|
* @throws {RequiredError}
|
|
3793
|
+
* @memberof CallApi
|
|
2191
3794
|
*/
|
|
2192
|
-
|
|
3795
|
+
callControllerCallAccountsBalanceGetV1(getBalanceParamsDto: GetBalanceParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BalanceResultDto, any>>;
|
|
2193
3796
|
/**
|
|
2194
3797
|
*
|
|
2195
|
-
* @param {string}
|
|
3798
|
+
* @param {string} body
|
|
2196
3799
|
* @param {*} [options] Override http request option.
|
|
2197
3800
|
* @throws {RequiredError}
|
|
3801
|
+
* @memberof CallApi
|
|
2198
3802
|
*/
|
|
2199
|
-
|
|
2200
|
-
};
|
|
2201
|
-
/**
|
|
2202
|
-
* BalancesApi - functional programming interface
|
|
2203
|
-
* @export
|
|
2204
|
-
*/
|
|
2205
|
-
export declare const BalancesApiFp: (configuration?: Configuration) => {
|
|
3803
|
+
callControllerCallAccountsBalanceSelfV1(body: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BalanceResultDto, any>>;
|
|
2206
3804
|
/**
|
|
2207
3805
|
*
|
|
2208
|
-
* @param {
|
|
2209
|
-
* @param {AddBalanceControllerParamsDto} addBalanceControllerParamsDto
|
|
3806
|
+
* @param {CreateAccountParamsDto} createAccountParamsDto
|
|
2210
3807
|
* @param {*} [options] Override http request option.
|
|
2211
3808
|
* @throws {RequiredError}
|
|
3809
|
+
* @memberof CallApi
|
|
2212
3810
|
*/
|
|
2213
|
-
|
|
3811
|
+
callControllerCallAccountsCreateV1(createAccountParamsDto: CreateAccountParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountEntity, any>>;
|
|
2214
3812
|
/**
|
|
2215
3813
|
*
|
|
3814
|
+
* @param {GetAccountParamsDto} getAccountParamsDto
|
|
2216
3815
|
* @param {*} [options] Override http request option.
|
|
2217
3816
|
* @throws {RequiredError}
|
|
3817
|
+
* @memberof CallApi
|
|
2218
3818
|
*/
|
|
2219
|
-
|
|
3819
|
+
callControllerCallAccountsGetV1(getAccountParamsDto: GetAccountParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountEntity, any>>;
|
|
2220
3820
|
/**
|
|
2221
3821
|
*
|
|
2222
|
-
* @param {
|
|
3822
|
+
* @param {ListAccountsParamsDto} listAccountsParamsDto
|
|
2223
3823
|
* @param {*} [options] Override http request option.
|
|
2224
3824
|
* @throws {RequiredError}
|
|
3825
|
+
* @memberof CallApi
|
|
2225
3826
|
*/
|
|
2226
|
-
|
|
2227
|
-
};
|
|
2228
|
-
/**
|
|
2229
|
-
* BalancesApi - factory interface
|
|
2230
|
-
* @export
|
|
2231
|
-
*/
|
|
2232
|
-
export declare const BalancesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
3827
|
+
callControllerCallAccountsListV1(listAccountsParamsDto: ListAccountsParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListAccountsDto, any>>;
|
|
2233
3828
|
/**
|
|
2234
3829
|
*
|
|
2235
|
-
* @param {string}
|
|
2236
|
-
* @param {AddBalanceControllerParamsDto} addBalanceControllerParamsDto
|
|
3830
|
+
* @param {string} body
|
|
2237
3831
|
* @param {*} [options] Override http request option.
|
|
2238
3832
|
* @throws {RequiredError}
|
|
3833
|
+
* @memberof CallApi
|
|
2239
3834
|
*/
|
|
2240
|
-
|
|
3835
|
+
callControllerCallAccountsSelfV1(body: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountEntity, any>>;
|
|
2241
3836
|
/**
|
|
2242
3837
|
*
|
|
3838
|
+
* @param {CreateCollectionParamsDto} createCollectionParamsDto
|
|
2243
3839
|
* @param {*} [options] Override http request option.
|
|
2244
3840
|
* @throws {RequiredError}
|
|
3841
|
+
* @memberof CallApi
|
|
2245
3842
|
*/
|
|
2246
|
-
|
|
3843
|
+
callControllerCallCollectionsCreateV1(createCollectionParamsDto: CreateCollectionParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CollectionEntity, any>>;
|
|
2247
3844
|
/**
|
|
2248
3845
|
*
|
|
2249
|
-
* @param {
|
|
3846
|
+
* @param {GetCollectionParamsDto} getCollectionParamsDto
|
|
2250
3847
|
* @param {*} [options] Override http request option.
|
|
2251
3848
|
* @throws {RequiredError}
|
|
3849
|
+
* @memberof CallApi
|
|
2252
3850
|
*/
|
|
2253
|
-
|
|
2254
|
-
};
|
|
2255
|
-
/**
|
|
2256
|
-
* BalancesApi - object-oriented interface
|
|
2257
|
-
* @export
|
|
2258
|
-
* @class BalancesApi
|
|
2259
|
-
* @extends {BaseAPI}
|
|
2260
|
-
*/
|
|
2261
|
-
export declare class BalancesApi extends BaseAPI {
|
|
3851
|
+
callControllerCallCollectionsGetV1(getCollectionParamsDto: GetCollectionParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CollectionEntity, any>>;
|
|
2262
3852
|
/**
|
|
2263
3853
|
*
|
|
2264
|
-
* @param {
|
|
2265
|
-
* @param {AddBalanceControllerParamsDto} addBalanceControllerParamsDto
|
|
3854
|
+
* @param {AddItemsToCollectionParamsDto} addItemsToCollectionParamsDto
|
|
2266
3855
|
* @param {*} [options] Override http request option.
|
|
2267
3856
|
* @throws {RequiredError}
|
|
2268
|
-
* @memberof
|
|
3857
|
+
* @memberof CallApi
|
|
2269
3858
|
*/
|
|
2270
|
-
|
|
3859
|
+
callControllerCallCollectionsItemsAddV1(addItemsToCollectionParamsDto: AddItemsToCollectionParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2271
3860
|
/**
|
|
2272
3861
|
*
|
|
3862
|
+
* @param {ListCollectionItemsParamsDto} listCollectionItemsParamsDto
|
|
2273
3863
|
* @param {*} [options] Override http request option.
|
|
2274
3864
|
* @throws {RequiredError}
|
|
2275
|
-
* @memberof
|
|
3865
|
+
* @memberof CallApi
|
|
2276
3866
|
*/
|
|
2277
|
-
|
|
3867
|
+
callControllerCallCollectionsItemsListV1(listCollectionItemsParamsDto: ListCollectionItemsParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListCollectionItemsDto, any>>;
|
|
2278
3868
|
/**
|
|
2279
3869
|
*
|
|
2280
|
-
* @param {
|
|
3870
|
+
* @param {RemoveItemsFromCollectionParamsDto} removeItemsFromCollectionParamsDto
|
|
2281
3871
|
* @param {*} [options] Override http request option.
|
|
2282
3872
|
* @throws {RequiredError}
|
|
2283
|
-
* @memberof
|
|
3873
|
+
* @memberof CallApi
|
|
2284
3874
|
*/
|
|
2285
|
-
|
|
2286
|
-
}
|
|
2287
|
-
/**
|
|
2288
|
-
* CallApi - axios parameter creator
|
|
2289
|
-
* @export
|
|
2290
|
-
*/
|
|
2291
|
-
export declare const CallApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
3875
|
+
callControllerCallCollectionsItemsRemoveV1(removeItemsFromCollectionParamsDto: RemoveItemsFromCollectionParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2292
3876
|
/**
|
|
2293
3877
|
*
|
|
2294
|
-
* @param {
|
|
3878
|
+
* @param {ListCollectionsParamsDto} listCollectionsParamsDto
|
|
2295
3879
|
* @param {*} [options] Override http request option.
|
|
2296
3880
|
* @throws {RequiredError}
|
|
3881
|
+
* @memberof CallApi
|
|
2297
3882
|
*/
|
|
2298
|
-
|
|
3883
|
+
callControllerCallCollectionsListV1(listCollectionsParamsDto: ListCollectionsParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListCollectionsDto, any>>;
|
|
2299
3884
|
/**
|
|
2300
3885
|
*
|
|
2301
|
-
* @param {
|
|
3886
|
+
* @param {UpdateResourceMetadataDto} updateResourceMetadataDto
|
|
2302
3887
|
* @param {*} [options] Override http request option.
|
|
2303
3888
|
* @throws {RequiredError}
|
|
3889
|
+
* @memberof CallApi
|
|
2304
3890
|
*/
|
|
2305
|
-
|
|
3891
|
+
callControllerCallCollectionsMetadataUpdateV1(updateResourceMetadataDto: UpdateResourceMetadataDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CollectionEntity, any>>;
|
|
2306
3892
|
/**
|
|
2307
3893
|
*
|
|
2308
|
-
* @param {
|
|
3894
|
+
* @param {AddAccountToGroupParamsDto} addAccountToGroupParamsDto
|
|
2309
3895
|
* @param {*} [options] Override http request option.
|
|
2310
3896
|
* @throws {RequiredError}
|
|
3897
|
+
* @memberof CallApi
|
|
2311
3898
|
*/
|
|
2312
|
-
|
|
3899
|
+
callControllerCallGroupsAccountsAddV1(addAccountToGroupParamsDto: AddAccountToGroupParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2313
3900
|
/**
|
|
2314
3901
|
*
|
|
2315
|
-
* @param {
|
|
3902
|
+
* @param {RemoveAccountFromGroupParamsDto} removeAccountFromGroupParamsDto
|
|
2316
3903
|
* @param {*} [options] Override http request option.
|
|
2317
3904
|
* @throws {RequiredError}
|
|
3905
|
+
* @memberof CallApi
|
|
2318
3906
|
*/
|
|
2319
|
-
|
|
3907
|
+
callControllerCallGroupsAccountsRemoveV1(removeAccountFromGroupParamsDto: RemoveAccountFromGroupParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2320
3908
|
/**
|
|
2321
3909
|
*
|
|
2322
|
-
* @param {
|
|
3910
|
+
* @param {string} body
|
|
2323
3911
|
* @param {*} [options] Override http request option.
|
|
2324
3912
|
* @throws {RequiredError}
|
|
3913
|
+
* @memberof CallApi
|
|
2325
3914
|
*/
|
|
2326
|
-
|
|
3915
|
+
callControllerCallGroupsCreateV1(body: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GroupEntity, any>>;
|
|
2327
3916
|
/**
|
|
2328
3917
|
*
|
|
2329
|
-
* @param {
|
|
3918
|
+
* @param {DeleteParamsDto} deleteParamsDto
|
|
2330
3919
|
* @param {*} [options] Override http request option.
|
|
2331
3920
|
* @throws {RequiredError}
|
|
3921
|
+
* @memberof CallApi
|
|
2332
3922
|
*/
|
|
2333
|
-
|
|
3923
|
+
callControllerCallGroupsDeleteV1(deleteParamsDto: DeleteParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2334
3924
|
/**
|
|
2335
3925
|
*
|
|
2336
|
-
* @param {
|
|
3926
|
+
* @param {GetGroupParamsDto} getGroupParamsDto
|
|
2337
3927
|
* @param {*} [options] Override http request option.
|
|
2338
3928
|
* @throws {RequiredError}
|
|
3929
|
+
* @memberof CallApi
|
|
2339
3930
|
*/
|
|
2340
|
-
|
|
2341
|
-
};
|
|
2342
|
-
/**
|
|
2343
|
-
* CallApi - functional programming interface
|
|
2344
|
-
* @export
|
|
2345
|
-
*/
|
|
2346
|
-
export declare const CallApiFp: (configuration?: Configuration) => {
|
|
3931
|
+
callControllerCallGroupsGetV1(getGroupParamsDto: GetGroupParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GroupEntity, any>>;
|
|
2347
3932
|
/**
|
|
2348
3933
|
*
|
|
2349
|
-
* @param {
|
|
3934
|
+
* @param {GetUrlsForImagesParamsDto} getUrlsForImagesParamsDto
|
|
2350
3935
|
* @param {*} [options] Override http request option.
|
|
2351
3936
|
* @throws {RequiredError}
|
|
3937
|
+
* @memberof CallApi
|
|
2352
3938
|
*/
|
|
2353
|
-
|
|
3939
|
+
callControllerCallImagesGetManyV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ImageUrlResponseDto[], any>>;
|
|
2354
3940
|
/**
|
|
2355
3941
|
*
|
|
2356
|
-
* @param {
|
|
3942
|
+
* @param {GetImageParamsDto} getImageParamsDto
|
|
2357
3943
|
* @param {*} [options] Override http request option.
|
|
2358
3944
|
* @throws {RequiredError}
|
|
3945
|
+
* @memberof CallApi
|
|
2359
3946
|
*/
|
|
2360
|
-
|
|
3947
|
+
callControllerCallImagesGetV1(getImageParamsDto: GetImageParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ImageEntity, any>>;
|
|
2361
3948
|
/**
|
|
2362
3949
|
*
|
|
2363
|
-
* @param {
|
|
3950
|
+
* @param {GetImageRepresentationParamsDto} getImageRepresentationParamsDto
|
|
2364
3951
|
* @param {*} [options] Override http request option.
|
|
2365
3952
|
* @throws {RequiredError}
|
|
3953
|
+
* @memberof CallApi
|
|
2366
3954
|
*/
|
|
2367
|
-
|
|
3955
|
+
callControllerCallImagesRepresentationsGetV1(getImageRepresentationParamsDto: GetImageRepresentationParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ImageRepresentationResponseDto, any>>;
|
|
2368
3956
|
/**
|
|
2369
3957
|
*
|
|
2370
|
-
* @param {
|
|
3958
|
+
* @param {GetOperationsParamsDto} getOperationsParamsDto
|
|
2371
3959
|
* @param {*} [options] Override http request option.
|
|
2372
3960
|
* @throws {RequiredError}
|
|
3961
|
+
* @memberof CallApi
|
|
2373
3962
|
*/
|
|
2374
|
-
|
|
3963
|
+
callControllerCallOperationsGetManyV1(getOperationsParamsDto: GetOperationsParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity[], any>>;
|
|
2375
3964
|
/**
|
|
2376
3965
|
*
|
|
2377
|
-
* @param {
|
|
3966
|
+
* @param {GetOperationParamsDto} getOperationParamsDto
|
|
2378
3967
|
* @param {*} [options] Override http request option.
|
|
2379
3968
|
* @throws {RequiredError}
|
|
3969
|
+
* @memberof CallApi
|
|
2380
3970
|
*/
|
|
2381
|
-
|
|
3971
|
+
callControllerCallOperationsGetV1(getOperationParamsDto: GetOperationParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
|
|
2382
3972
|
/**
|
|
2383
3973
|
*
|
|
2384
|
-
* @param {
|
|
3974
|
+
* @param {ListOperationsParamsDto} listOperationsParamsDto
|
|
2385
3975
|
* @param {*} [options] Override http request option.
|
|
2386
3976
|
* @throws {RequiredError}
|
|
3977
|
+
* @memberof CallApi
|
|
2387
3978
|
*/
|
|
2388
|
-
|
|
3979
|
+
callControllerCallOperationsListV1(listOperationsParamsDto: ListOperationsParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListOperationsDto, any>>;
|
|
2389
3980
|
/**
|
|
2390
3981
|
*
|
|
2391
|
-
* @param {
|
|
3982
|
+
* @param {UpdateResourceMetadataDto} updateResourceMetadataDto
|
|
2392
3983
|
* @param {*} [options] Override http request option.
|
|
2393
3984
|
* @throws {RequiredError}
|
|
3985
|
+
* @memberof CallApi
|
|
2394
3986
|
*/
|
|
2395
|
-
|
|
2396
|
-
};
|
|
2397
|
-
/**
|
|
2398
|
-
* CallApi - factory interface
|
|
2399
|
-
* @export
|
|
2400
|
-
*/
|
|
2401
|
-
export declare const CallApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
3987
|
+
callControllerCallOperationsMetadataUpdateV1(updateResourceMetadataDto: UpdateResourceMetadataDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
|
|
2402
3988
|
/**
|
|
2403
3989
|
*
|
|
2404
|
-
* @param {
|
|
3990
|
+
* @param {GetPoseParamsDto} getPoseParamsDto
|
|
2405
3991
|
* @param {*} [options] Override http request option.
|
|
2406
3992
|
* @throws {RequiredError}
|
|
3993
|
+
* @memberof CallApi
|
|
2407
3994
|
*/
|
|
2408
|
-
|
|
3995
|
+
callControllerCallPosesGetV1(getPoseParamsDto: GetPoseParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PoseEntity, any>>;
|
|
2409
3996
|
/**
|
|
2410
3997
|
*
|
|
2411
|
-
* @param {
|
|
3998
|
+
* @param {ListPosesParamsDto} listPosesParamsDto
|
|
2412
3999
|
* @param {*} [options] Override http request option.
|
|
2413
4000
|
* @throws {RequiredError}
|
|
4001
|
+
* @memberof CallApi
|
|
2414
4002
|
*/
|
|
2415
|
-
|
|
4003
|
+
callControllerCallPosesListV1(listPosesParamsDto: ListPosesParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListPosesDto, any>>;
|
|
2416
4004
|
/**
|
|
2417
4005
|
*
|
|
2418
|
-
* @param {
|
|
4006
|
+
* @param {SetPosePreviewDto} setPosePreviewDto
|
|
2419
4007
|
* @param {*} [options] Override http request option.
|
|
2420
4008
|
* @throws {RequiredError}
|
|
4009
|
+
* @memberof CallApi
|
|
2421
4010
|
*/
|
|
2422
|
-
|
|
4011
|
+
callControllerCallPosesPreviewSetV1(setPosePreviewDto: SetPosePreviewDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2423
4012
|
/**
|
|
2424
4013
|
*
|
|
2425
|
-
* @param {
|
|
4014
|
+
* @param {AttachAccessParamsDto} attachAccessParamsDto
|
|
2426
4015
|
* @param {*} [options] Override http request option.
|
|
2427
4016
|
* @throws {RequiredError}
|
|
4017
|
+
* @memberof CallApi
|
|
2428
4018
|
*/
|
|
2429
|
-
|
|
4019
|
+
callControllerCallResourceAccessAttachV1(attachAccessParamsDto: AttachAccessParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2430
4020
|
/**
|
|
2431
4021
|
*
|
|
2432
|
-
* @param {
|
|
4022
|
+
* @param {GrantAccessParamsDto} grantAccessParamsDto
|
|
2433
4023
|
* @param {*} [options] Override http request option.
|
|
2434
4024
|
* @throws {RequiredError}
|
|
4025
|
+
* @memberof CallApi
|
|
2435
4026
|
*/
|
|
2436
|
-
|
|
4027
|
+
callControllerCallResourceAccessGrantV1(grantAccessParamsDto: GrantAccessParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2437
4028
|
/**
|
|
2438
4029
|
*
|
|
2439
4030
|
* @param {CreateStackParamsDto} createStackParamsDto
|
|
2440
4031
|
* @param {*} [options] Override http request option.
|
|
2441
4032
|
* @throws {RequiredError}
|
|
4033
|
+
* @memberof CallApi
|
|
2442
4034
|
*/
|
|
2443
|
-
callControllerCallStacksCreateV1(createStackParamsDto: CreateStackParamsDto, options?: RawAxiosRequestConfig):
|
|
4035
|
+
callControllerCallStacksCreateV1(createStackParamsDto: CreateStackParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StackEntity, any>>;
|
|
2444
4036
|
/**
|
|
2445
4037
|
*
|
|
2446
|
-
* @param {
|
|
4038
|
+
* @param {GetStackParamsDto} getStackParamsDto
|
|
2447
4039
|
* @param {*} [options] Override http request option.
|
|
2448
4040
|
* @throws {RequiredError}
|
|
4041
|
+
* @memberof CallApi
|
|
2449
4042
|
*/
|
|
2450
|
-
|
|
2451
|
-
};
|
|
2452
|
-
/**
|
|
2453
|
-
* CallApi - object-oriented interface
|
|
2454
|
-
* @export
|
|
2455
|
-
* @class CallApi
|
|
2456
|
-
* @extends {BaseAPI}
|
|
2457
|
-
*/
|
|
2458
|
-
export declare class CallApi extends BaseAPI {
|
|
4043
|
+
callControllerCallStacksGetV1(getStackParamsDto: GetStackParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StackEntity, any>>;
|
|
2459
4044
|
/**
|
|
2460
4045
|
*
|
|
2461
|
-
* @param {
|
|
4046
|
+
* @param {AddItemsToStackParamsDto} addItemsToStackParamsDto
|
|
2462
4047
|
* @param {*} [options] Override http request option.
|
|
2463
4048
|
* @throws {RequiredError}
|
|
2464
4049
|
* @memberof CallApi
|
|
2465
4050
|
*/
|
|
2466
|
-
|
|
4051
|
+
callControllerCallStacksItemsAddV1(addItemsToStackParamsDto: AddItemsToStackParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StackEntity, any>>;
|
|
2467
4052
|
/**
|
|
2468
4053
|
*
|
|
2469
|
-
* @param {
|
|
4054
|
+
* @param {RemoveItemsFromStackParamsDto} removeItemsFromStackParamsDto
|
|
2470
4055
|
* @param {*} [options] Override http request option.
|
|
2471
4056
|
* @throws {RequiredError}
|
|
2472
4057
|
* @memberof CallApi
|
|
2473
4058
|
*/
|
|
2474
|
-
|
|
4059
|
+
callControllerCallStacksItemsRemoveV1(removeItemsFromStackParamsDto: RemoveItemsFromStackParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StackEntity, any>>;
|
|
2475
4060
|
/**
|
|
2476
4061
|
*
|
|
2477
|
-
* @param {
|
|
4062
|
+
* @param {ListStacksParamsDto} listStacksParamsDto
|
|
2478
4063
|
* @param {*} [options] Override http request option.
|
|
2479
4064
|
* @throws {RequiredError}
|
|
2480
4065
|
* @memberof CallApi
|
|
2481
4066
|
*/
|
|
2482
|
-
|
|
4067
|
+
callControllerCallStacksListV1(listStacksParamsDto: ListStacksParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListStacksDto, any>>;
|
|
2483
4068
|
/**
|
|
2484
4069
|
*
|
|
2485
|
-
* @param {
|
|
4070
|
+
* @param {UpdateResourceMetadataDto} updateResourceMetadataDto
|
|
2486
4071
|
* @param {*} [options] Override http request option.
|
|
2487
4072
|
* @throws {RequiredError}
|
|
2488
4073
|
* @memberof CallApi
|
|
2489
4074
|
*/
|
|
2490
|
-
|
|
4075
|
+
callControllerCallStacksMetadataUpdateV1(updateResourceMetadataDto: UpdateResourceMetadataDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StackEntity, any>>;
|
|
2491
4076
|
/**
|
|
2492
4077
|
*
|
|
2493
|
-
* @param {
|
|
4078
|
+
* @param {CreateStorageRecordParamsDto} createStorageRecordParamsDto
|
|
2494
4079
|
* @param {*} [options] Override http request option.
|
|
2495
4080
|
* @throws {RequiredError}
|
|
2496
4081
|
* @memberof CallApi
|
|
2497
4082
|
*/
|
|
2498
|
-
|
|
4083
|
+
callControllerCallStorageCreateV1(createStorageRecordParamsDto: CreateStorageRecordParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StorageEntity, any>>;
|
|
2499
4084
|
/**
|
|
2500
4085
|
*
|
|
2501
|
-
* @param {
|
|
4086
|
+
* @param {DeleteStorageParamsDto} deleteStorageParamsDto
|
|
2502
4087
|
* @param {*} [options] Override http request option.
|
|
2503
4088
|
* @throws {RequiredError}
|
|
2504
4089
|
* @memberof CallApi
|
|
2505
4090
|
*/
|
|
2506
|
-
|
|
4091
|
+
callControllerCallStorageDeleteV1(deleteStorageParamsDto: DeleteStorageParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2507
4092
|
/**
|
|
2508
4093
|
*
|
|
2509
|
-
* @param {
|
|
4094
|
+
* @param {GetStorageRecordParamsDto} getStorageRecordParamsDto
|
|
2510
4095
|
* @param {*} [options] Override http request option.
|
|
2511
4096
|
* @throws {RequiredError}
|
|
2512
4097
|
* @memberof CallApi
|
|
2513
4098
|
*/
|
|
2514
|
-
|
|
4099
|
+
callControllerCallStorageGetManyV1(getStorageRecordParamsDto: GetStorageRecordParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StorageRecordsResultDto[], any>>;
|
|
4100
|
+
/**
|
|
4101
|
+
*
|
|
4102
|
+
* @param {UpdateStorageRecordParamsDto} updateStorageRecordParamsDto
|
|
4103
|
+
* @param {*} [options] Override http request option.
|
|
4104
|
+
* @throws {RequiredError}
|
|
4105
|
+
* @memberof CallApi
|
|
4106
|
+
*/
|
|
4107
|
+
callControllerCallStorageUpdateV1(updateStorageRecordParamsDto: UpdateStorageRecordParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StorageEntity, any>>;
|
|
2515
4108
|
}
|
|
2516
4109
|
/**
|
|
2517
4110
|
* CollectionsApi - axios parameter creator
|
|
@@ -2787,7 +4380,7 @@ export declare const CollectionsControllerListCollectionsV1OrderByEnum: {
|
|
|
2787
4380
|
readonly UpdatedAtAsc: "updatedAt_ASC";
|
|
2788
4381
|
readonly UpdatedAtDesc: "updatedAt_DESC";
|
|
2789
4382
|
};
|
|
2790
|
-
export type CollectionsControllerListCollectionsV1OrderByEnum = typeof CollectionsControllerListCollectionsV1OrderByEnum[keyof typeof CollectionsControllerListCollectionsV1OrderByEnum];
|
|
4383
|
+
export type CollectionsControllerListCollectionsV1OrderByEnum = (typeof CollectionsControllerListCollectionsV1OrderByEnum)[keyof typeof CollectionsControllerListCollectionsV1OrderByEnum];
|
|
2791
4384
|
/**
|
|
2792
4385
|
* @export
|
|
2793
4386
|
*/
|
|
@@ -2797,7 +4390,7 @@ export declare const CollectionsControllerListItemsV1OrderByEnum: {
|
|
|
2797
4390
|
readonly UpdatedAtAsc: "updatedAt_ASC";
|
|
2798
4391
|
readonly UpdatedAtDesc: "updatedAt_DESC";
|
|
2799
4392
|
};
|
|
2800
|
-
export type CollectionsControllerListItemsV1OrderByEnum = typeof CollectionsControllerListItemsV1OrderByEnum[keyof typeof CollectionsControllerListItemsV1OrderByEnum];
|
|
4393
|
+
export type CollectionsControllerListItemsV1OrderByEnum = (typeof CollectionsControllerListItemsV1OrderByEnum)[keyof typeof CollectionsControllerListItemsV1OrderByEnum];
|
|
2801
4394
|
/**
|
|
2802
4395
|
* @export
|
|
2803
4396
|
*/
|
|
@@ -2810,7 +4403,7 @@ export declare const CollectionsControllerListItemsV1KindEnum: {
|
|
|
2810
4403
|
readonly Storage: "storage";
|
|
2811
4404
|
readonly Pipeline: "pipeline";
|
|
2812
4405
|
};
|
|
2813
|
-
export type CollectionsControllerListItemsV1KindEnum = typeof CollectionsControllerListItemsV1KindEnum[keyof typeof CollectionsControllerListItemsV1KindEnum];
|
|
4406
|
+
export type CollectionsControllerListItemsV1KindEnum = (typeof CollectionsControllerListItemsV1KindEnum)[keyof typeof CollectionsControllerListItemsV1KindEnum];
|
|
2814
4407
|
/**
|
|
2815
4408
|
* GroupsApi - axios parameter creator
|
|
2816
4409
|
* @export
|
|
@@ -2823,7 +4416,7 @@ export declare const GroupsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
2823
4416
|
* @param {*} [options] Override http request option.
|
|
2824
4417
|
* @throws {RequiredError}
|
|
2825
4418
|
*/
|
|
2826
|
-
|
|
4419
|
+
groupsControllerAddAccountsV1: (id: string, addAccountToGroupControllerParamsDto: AddAccountToGroupControllerParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2827
4420
|
/**
|
|
2828
4421
|
*
|
|
2829
4422
|
* @param {*} [options] Override http request option.
|
|
@@ -2851,7 +4444,7 @@ export declare const GroupsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
2851
4444
|
* @param {*} [options] Override http request option.
|
|
2852
4445
|
* @throws {RequiredError}
|
|
2853
4446
|
*/
|
|
2854
|
-
|
|
4447
|
+
groupsControllerRemoveAccountsV1: (id: string, removeAccountFromGroupControllerParamsDto: RemoveAccountFromGroupControllerParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2855
4448
|
};
|
|
2856
4449
|
/**
|
|
2857
4450
|
* GroupsApi - functional programming interface
|
|
@@ -2865,7 +4458,7 @@ export declare const GroupsApiFp: (configuration?: Configuration) => {
|
|
|
2865
4458
|
* @param {*} [options] Override http request option.
|
|
2866
4459
|
* @throws {RequiredError}
|
|
2867
4460
|
*/
|
|
2868
|
-
|
|
4461
|
+
groupsControllerAddAccountsV1(id: string, addAccountToGroupControllerParamsDto: AddAccountToGroupControllerParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
2869
4462
|
/**
|
|
2870
4463
|
*
|
|
2871
4464
|
* @param {*} [options] Override http request option.
|
|
@@ -2893,7 +4486,7 @@ export declare const GroupsApiFp: (configuration?: Configuration) => {
|
|
|
2893
4486
|
* @param {*} [options] Override http request option.
|
|
2894
4487
|
* @throws {RequiredError}
|
|
2895
4488
|
*/
|
|
2896
|
-
|
|
4489
|
+
groupsControllerRemoveAccountsV1(id: string, removeAccountFromGroupControllerParamsDto: RemoveAccountFromGroupControllerParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
2897
4490
|
};
|
|
2898
4491
|
/**
|
|
2899
4492
|
* GroupsApi - factory interface
|
|
@@ -2907,7 +4500,7 @@ export declare const GroupsApiFactory: (configuration?: Configuration, basePath?
|
|
|
2907
4500
|
* @param {*} [options] Override http request option.
|
|
2908
4501
|
* @throws {RequiredError}
|
|
2909
4502
|
*/
|
|
2910
|
-
|
|
4503
|
+
groupsControllerAddAccountsV1(id: string, addAccountToGroupControllerParamsDto: AddAccountToGroupControllerParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
2911
4504
|
/**
|
|
2912
4505
|
*
|
|
2913
4506
|
* @param {*} [options] Override http request option.
|
|
@@ -2935,7 +4528,7 @@ export declare const GroupsApiFactory: (configuration?: Configuration, basePath?
|
|
|
2935
4528
|
* @param {*} [options] Override http request option.
|
|
2936
4529
|
* @throws {RequiredError}
|
|
2937
4530
|
*/
|
|
2938
|
-
|
|
4531
|
+
groupsControllerRemoveAccountsV1(id: string, removeAccountFromGroupControllerParamsDto: RemoveAccountFromGroupControllerParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
2939
4532
|
};
|
|
2940
4533
|
/**
|
|
2941
4534
|
* GroupsApi - object-oriented interface
|
|
@@ -2952,7 +4545,7 @@ export declare class GroupsApi extends BaseAPI {
|
|
|
2952
4545
|
* @throws {RequiredError}
|
|
2953
4546
|
* @memberof GroupsApi
|
|
2954
4547
|
*/
|
|
2955
|
-
|
|
4548
|
+
groupsControllerAddAccountsV1(id: string, addAccountToGroupControllerParamsDto: AddAccountToGroupControllerParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2956
4549
|
/**
|
|
2957
4550
|
*
|
|
2958
4551
|
* @param {*} [options] Override http request option.
|
|
@@ -2984,7 +4577,7 @@ export declare class GroupsApi extends BaseAPI {
|
|
|
2984
4577
|
* @throws {RequiredError}
|
|
2985
4578
|
* @memberof GroupsApi
|
|
2986
4579
|
*/
|
|
2987
|
-
|
|
4580
|
+
groupsControllerRemoveAccountsV1(id: string, removeAccountFromGroupControllerParamsDto: RemoveAccountFromGroupControllerParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2988
4581
|
}
|
|
2989
4582
|
/**
|
|
2990
4583
|
* ImagesApi - axios parameter creator
|
|
@@ -3060,7 +4653,7 @@ export declare const ImagesApiFp: (configuration?: Configuration) => {
|
|
|
3060
4653
|
* @param {*} [options] Override http request option.
|
|
3061
4654
|
* @throws {RequiredError}
|
|
3062
4655
|
*/
|
|
3063
|
-
imagesControllerGetUrlsV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
4656
|
+
imagesControllerGetUrlsV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ImageEntity>>>;
|
|
3064
4657
|
/**
|
|
3065
4658
|
*
|
|
3066
4659
|
* @param {*} [options] Override http request option.
|
|
@@ -3101,7 +4694,7 @@ export declare const ImagesApiFactory: (configuration?: Configuration, basePath?
|
|
|
3101
4694
|
* @param {*} [options] Override http request option.
|
|
3102
4695
|
* @throws {RequiredError}
|
|
3103
4696
|
*/
|
|
3104
|
-
imagesControllerGetUrlsV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
4697
|
+
imagesControllerGetUrlsV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<ImageEntity>>;
|
|
3105
4698
|
/**
|
|
3106
4699
|
*
|
|
3107
4700
|
* @param {*} [options] Override http request option.
|
|
@@ -3148,7 +4741,7 @@ export declare class ImagesApi extends BaseAPI {
|
|
|
3148
4741
|
* @throws {RequiredError}
|
|
3149
4742
|
* @memberof ImagesApi
|
|
3150
4743
|
*/
|
|
3151
|
-
imagesControllerGetUrlsV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
4744
|
+
imagesControllerGetUrlsV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ImageEntity[], any>>;
|
|
3152
4745
|
/**
|
|
3153
4746
|
*
|
|
3154
4747
|
* @param {*} [options] Override http request option.
|
|
@@ -3208,32 +4801,32 @@ export declare const OperationsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
3208
4801
|
operationsControllerRunGptV1V1: (gPTV1ControllerInput: GPTV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3209
4802
|
/**
|
|
3210
4803
|
*
|
|
3211
|
-
* @param {
|
|
4804
|
+
* @param {LindaHauteV1ControllerInput} lindaHauteV1ControllerInput
|
|
3212
4805
|
* @param {*} [options] Override http request option.
|
|
3213
4806
|
* @throws {RequiredError}
|
|
3214
4807
|
*/
|
|
3215
|
-
|
|
4808
|
+
operationsControllerRunHauteLindaV1V1: (lindaHauteV1ControllerInput: LindaHauteV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3216
4809
|
/**
|
|
3217
4810
|
*
|
|
3218
|
-
* @param {
|
|
4811
|
+
* @param {NaomiHauteV1ControllerInput} naomiHauteV1ControllerInput
|
|
3219
4812
|
* @param {*} [options] Override http request option.
|
|
3220
4813
|
* @throws {RequiredError}
|
|
3221
4814
|
*/
|
|
3222
|
-
|
|
4815
|
+
operationsControllerRunHauteNaomiV1V1: (naomiHauteV1ControllerInput: NaomiHauteV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3223
4816
|
/**
|
|
3224
4817
|
*
|
|
3225
|
-
* @param {
|
|
4818
|
+
* @param {KateImagineV1ControllerInput} kateImagineV1ControllerInput
|
|
3226
4819
|
* @param {*} [options] Override http request option.
|
|
3227
4820
|
* @throws {RequiredError}
|
|
3228
4821
|
*/
|
|
3229
|
-
|
|
4822
|
+
operationsControllerRunImagineKateV1V1: (kateImagineV1ControllerInput: KateImagineV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3230
4823
|
/**
|
|
3231
4824
|
*
|
|
3232
|
-
* @param {
|
|
4825
|
+
* @param {KateInpaintV1ControllerInput} kateInpaintV1ControllerInput
|
|
3233
4826
|
* @param {*} [options] Override http request option.
|
|
3234
4827
|
* @throws {RequiredError}
|
|
3235
4828
|
*/
|
|
3236
|
-
|
|
4829
|
+
operationsControllerRunInpaintKateV1V1: (kateInpaintV1ControllerInput: KateInpaintV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3237
4830
|
/**
|
|
3238
4831
|
*
|
|
3239
4832
|
* @param {ObjectDetectionV1ControllerInput} objectDetectionV1ControllerInput
|
|
@@ -3269,6 +4862,13 @@ export declare const OperationsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
3269
4862
|
* @throws {RequiredError}
|
|
3270
4863
|
*/
|
|
3271
4864
|
operationsControllerRunUpscaleV1V1: (upscaleV1ControllerInput: UpscaleV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4865
|
+
/**
|
|
4866
|
+
*
|
|
4867
|
+
* @param {GiseleVtonV1ControllerInput} giseleVtonV1ControllerInput
|
|
4868
|
+
* @param {*} [options] Override http request option.
|
|
4869
|
+
* @throws {RequiredError}
|
|
4870
|
+
*/
|
|
4871
|
+
operationsControllerRunVtonGiseleV1V1: (giseleVtonV1ControllerInput: GiseleVtonV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3272
4872
|
/**
|
|
3273
4873
|
*
|
|
3274
4874
|
* @param {string} id
|
|
@@ -3329,32 +4929,32 @@ export declare const OperationsApiFp: (configuration?: Configuration) => {
|
|
|
3329
4929
|
operationsControllerRunGptV1V1(gPTV1ControllerInput: GPTV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
|
|
3330
4930
|
/**
|
|
3331
4931
|
*
|
|
3332
|
-
* @param {
|
|
4932
|
+
* @param {LindaHauteV1ControllerInput} lindaHauteV1ControllerInput
|
|
3333
4933
|
* @param {*} [options] Override http request option.
|
|
3334
4934
|
* @throws {RequiredError}
|
|
3335
4935
|
*/
|
|
3336
|
-
|
|
4936
|
+
operationsControllerRunHauteLindaV1V1(lindaHauteV1ControllerInput: LindaHauteV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
|
|
3337
4937
|
/**
|
|
3338
4938
|
*
|
|
3339
|
-
* @param {
|
|
4939
|
+
* @param {NaomiHauteV1ControllerInput} naomiHauteV1ControllerInput
|
|
3340
4940
|
* @param {*} [options] Override http request option.
|
|
3341
4941
|
* @throws {RequiredError}
|
|
3342
4942
|
*/
|
|
3343
|
-
|
|
4943
|
+
operationsControllerRunHauteNaomiV1V1(naomiHauteV1ControllerInput: NaomiHauteV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
|
|
3344
4944
|
/**
|
|
3345
4945
|
*
|
|
3346
|
-
* @param {
|
|
4946
|
+
* @param {KateImagineV1ControllerInput} kateImagineV1ControllerInput
|
|
3347
4947
|
* @param {*} [options] Override http request option.
|
|
3348
4948
|
* @throws {RequiredError}
|
|
3349
4949
|
*/
|
|
3350
|
-
|
|
4950
|
+
operationsControllerRunImagineKateV1V1(kateImagineV1ControllerInput: KateImagineV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
|
|
3351
4951
|
/**
|
|
3352
4952
|
*
|
|
3353
|
-
* @param {
|
|
4953
|
+
* @param {KateInpaintV1ControllerInput} kateInpaintV1ControllerInput
|
|
3354
4954
|
* @param {*} [options] Override http request option.
|
|
3355
4955
|
* @throws {RequiredError}
|
|
3356
4956
|
*/
|
|
3357
|
-
|
|
4957
|
+
operationsControllerRunInpaintKateV1V1(kateInpaintV1ControllerInput: KateInpaintV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
|
|
3358
4958
|
/**
|
|
3359
4959
|
*
|
|
3360
4960
|
* @param {ObjectDetectionV1ControllerInput} objectDetectionV1ControllerInput
|
|
@@ -3390,6 +4990,13 @@ export declare const OperationsApiFp: (configuration?: Configuration) => {
|
|
|
3390
4990
|
* @throws {RequiredError}
|
|
3391
4991
|
*/
|
|
3392
4992
|
operationsControllerRunUpscaleV1V1(upscaleV1ControllerInput: UpscaleV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
|
|
4993
|
+
/**
|
|
4994
|
+
*
|
|
4995
|
+
* @param {GiseleVtonV1ControllerInput} giseleVtonV1ControllerInput
|
|
4996
|
+
* @param {*} [options] Override http request option.
|
|
4997
|
+
* @throws {RequiredError}
|
|
4998
|
+
*/
|
|
4999
|
+
operationsControllerRunVtonGiseleV1V1(giseleVtonV1ControllerInput: GiseleVtonV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
|
|
3393
5000
|
/**
|
|
3394
5001
|
*
|
|
3395
5002
|
* @param {string} id
|
|
@@ -3450,32 +5057,32 @@ export declare const OperationsApiFactory: (configuration?: Configuration, baseP
|
|
|
3450
5057
|
operationsControllerRunGptV1V1(gPTV1ControllerInput: GPTV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
|
|
3451
5058
|
/**
|
|
3452
5059
|
*
|
|
3453
|
-
* @param {
|
|
5060
|
+
* @param {LindaHauteV1ControllerInput} lindaHauteV1ControllerInput
|
|
3454
5061
|
* @param {*} [options] Override http request option.
|
|
3455
5062
|
* @throws {RequiredError}
|
|
3456
5063
|
*/
|
|
3457
|
-
|
|
5064
|
+
operationsControllerRunHauteLindaV1V1(lindaHauteV1ControllerInput: LindaHauteV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
|
|
3458
5065
|
/**
|
|
3459
5066
|
*
|
|
3460
|
-
* @param {
|
|
5067
|
+
* @param {NaomiHauteV1ControllerInput} naomiHauteV1ControllerInput
|
|
3461
5068
|
* @param {*} [options] Override http request option.
|
|
3462
5069
|
* @throws {RequiredError}
|
|
3463
5070
|
*/
|
|
3464
|
-
|
|
5071
|
+
operationsControllerRunHauteNaomiV1V1(naomiHauteV1ControllerInput: NaomiHauteV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
|
|
3465
5072
|
/**
|
|
3466
5073
|
*
|
|
3467
|
-
* @param {
|
|
5074
|
+
* @param {KateImagineV1ControllerInput} kateImagineV1ControllerInput
|
|
3468
5075
|
* @param {*} [options] Override http request option.
|
|
3469
5076
|
* @throws {RequiredError}
|
|
3470
5077
|
*/
|
|
3471
|
-
|
|
5078
|
+
operationsControllerRunImagineKateV1V1(kateImagineV1ControllerInput: KateImagineV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
|
|
3472
5079
|
/**
|
|
3473
5080
|
*
|
|
3474
|
-
* @param {
|
|
5081
|
+
* @param {KateInpaintV1ControllerInput} kateInpaintV1ControllerInput
|
|
3475
5082
|
* @param {*} [options] Override http request option.
|
|
3476
5083
|
* @throws {RequiredError}
|
|
3477
5084
|
*/
|
|
3478
|
-
|
|
5085
|
+
operationsControllerRunInpaintKateV1V1(kateInpaintV1ControllerInput: KateInpaintV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
|
|
3479
5086
|
/**
|
|
3480
5087
|
*
|
|
3481
5088
|
* @param {ObjectDetectionV1ControllerInput} objectDetectionV1ControllerInput
|
|
@@ -3511,6 +5118,13 @@ export declare const OperationsApiFactory: (configuration?: Configuration, baseP
|
|
|
3511
5118
|
* @throws {RequiredError}
|
|
3512
5119
|
*/
|
|
3513
5120
|
operationsControllerRunUpscaleV1V1(upscaleV1ControllerInput: UpscaleV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
|
|
5121
|
+
/**
|
|
5122
|
+
*
|
|
5123
|
+
* @param {GiseleVtonV1ControllerInput} giseleVtonV1ControllerInput
|
|
5124
|
+
* @param {*} [options] Override http request option.
|
|
5125
|
+
* @throws {RequiredError}
|
|
5126
|
+
*/
|
|
5127
|
+
operationsControllerRunVtonGiseleV1V1(giseleVtonV1ControllerInput: GiseleVtonV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
|
|
3514
5128
|
/**
|
|
3515
5129
|
*
|
|
3516
5130
|
* @param {string} id
|
|
@@ -3579,36 +5193,36 @@ export declare class OperationsApi extends BaseAPI {
|
|
|
3579
5193
|
operationsControllerRunGptV1V1(gPTV1ControllerInput: GPTV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
|
|
3580
5194
|
/**
|
|
3581
5195
|
*
|
|
3582
|
-
* @param {
|
|
5196
|
+
* @param {LindaHauteV1ControllerInput} lindaHauteV1ControllerInput
|
|
3583
5197
|
* @param {*} [options] Override http request option.
|
|
3584
5198
|
* @throws {RequiredError}
|
|
3585
5199
|
* @memberof OperationsApi
|
|
3586
5200
|
*/
|
|
3587
|
-
|
|
5201
|
+
operationsControllerRunHauteLindaV1V1(lindaHauteV1ControllerInput: LindaHauteV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
|
|
3588
5202
|
/**
|
|
3589
5203
|
*
|
|
3590
|
-
* @param {
|
|
5204
|
+
* @param {NaomiHauteV1ControllerInput} naomiHauteV1ControllerInput
|
|
3591
5205
|
* @param {*} [options] Override http request option.
|
|
3592
5206
|
* @throws {RequiredError}
|
|
3593
5207
|
* @memberof OperationsApi
|
|
3594
5208
|
*/
|
|
3595
|
-
|
|
5209
|
+
operationsControllerRunHauteNaomiV1V1(naomiHauteV1ControllerInput: NaomiHauteV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
|
|
3596
5210
|
/**
|
|
3597
5211
|
*
|
|
3598
|
-
* @param {
|
|
5212
|
+
* @param {KateImagineV1ControllerInput} kateImagineV1ControllerInput
|
|
3599
5213
|
* @param {*} [options] Override http request option.
|
|
3600
5214
|
* @throws {RequiredError}
|
|
3601
5215
|
* @memberof OperationsApi
|
|
3602
5216
|
*/
|
|
3603
|
-
|
|
5217
|
+
operationsControllerRunImagineKateV1V1(kateImagineV1ControllerInput: KateImagineV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
|
|
3604
5218
|
/**
|
|
3605
5219
|
*
|
|
3606
|
-
* @param {
|
|
5220
|
+
* @param {KateInpaintV1ControllerInput} kateInpaintV1ControllerInput
|
|
3607
5221
|
* @param {*} [options] Override http request option.
|
|
3608
5222
|
* @throws {RequiredError}
|
|
3609
5223
|
* @memberof OperationsApi
|
|
3610
5224
|
*/
|
|
3611
|
-
|
|
5225
|
+
operationsControllerRunInpaintKateV1V1(kateInpaintV1ControllerInput: KateInpaintV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
|
|
3612
5226
|
/**
|
|
3613
5227
|
*
|
|
3614
5228
|
* @param {ObjectDetectionV1ControllerInput} objectDetectionV1ControllerInput
|
|
@@ -3649,6 +5263,14 @@ export declare class OperationsApi extends BaseAPI {
|
|
|
3649
5263
|
* @memberof OperationsApi
|
|
3650
5264
|
*/
|
|
3651
5265
|
operationsControllerRunUpscaleV1V1(upscaleV1ControllerInput: UpscaleV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
|
|
5266
|
+
/**
|
|
5267
|
+
*
|
|
5268
|
+
* @param {GiseleVtonV1ControllerInput} giseleVtonV1ControllerInput
|
|
5269
|
+
* @param {*} [options] Override http request option.
|
|
5270
|
+
* @throws {RequiredError}
|
|
5271
|
+
* @memberof OperationsApi
|
|
5272
|
+
*/
|
|
5273
|
+
operationsControllerRunVtonGiseleV1V1(giseleVtonV1ControllerInput: GiseleVtonV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
|
|
3652
5274
|
/**
|
|
3653
5275
|
*
|
|
3654
5276
|
* @param {string} id
|
|
@@ -3668,7 +5290,7 @@ export declare const OperationsControllerListOperationsV1OrderByEnum: {
|
|
|
3668
5290
|
readonly UpdatedAtAsc: "updatedAt_ASC";
|
|
3669
5291
|
readonly UpdatedAtDesc: "updatedAt_DESC";
|
|
3670
5292
|
};
|
|
3671
|
-
export type OperationsControllerListOperationsV1OrderByEnum = typeof OperationsControllerListOperationsV1OrderByEnum[keyof typeof OperationsControllerListOperationsV1OrderByEnum];
|
|
5293
|
+
export type OperationsControllerListOperationsV1OrderByEnum = (typeof OperationsControllerListOperationsV1OrderByEnum)[keyof typeof OperationsControllerListOperationsV1OrderByEnum];
|
|
3672
5294
|
/**
|
|
3673
5295
|
* PermissionsApi - axios parameter creator
|
|
3674
5296
|
* @export
|
|
@@ -3848,7 +5470,7 @@ export declare const PipelinesControllerListPipelinesV1OrderByEnum: {
|
|
|
3848
5470
|
readonly Asc: "createdAt_ASC";
|
|
3849
5471
|
readonly Desc: "createdAt_DESC";
|
|
3850
5472
|
};
|
|
3851
|
-
export type PipelinesControllerListPipelinesV1OrderByEnum = typeof PipelinesControllerListPipelinesV1OrderByEnum[keyof typeof PipelinesControllerListPipelinesV1OrderByEnum];
|
|
5473
|
+
export type PipelinesControllerListPipelinesV1OrderByEnum = (typeof PipelinesControllerListPipelinesV1OrderByEnum)[keyof typeof PipelinesControllerListPipelinesV1OrderByEnum];
|
|
3852
5474
|
/**
|
|
3853
5475
|
* PosesApi - axios parameter creator
|
|
3854
5476
|
* @export
|
|
@@ -3899,7 +5521,7 @@ export declare const PosesApiFp: (configuration?: Configuration) => {
|
|
|
3899
5521
|
* @param {*} [options] Override http request option.
|
|
3900
5522
|
* @throws {RequiredError}
|
|
3901
5523
|
*/
|
|
3902
|
-
posesControllerListPosesV1(orderBy?: PosesControllerListPosesV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
5524
|
+
posesControllerListPosesV1(orderBy?: PosesControllerListPosesV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListPosesDto>>;
|
|
3903
5525
|
/**
|
|
3904
5526
|
*
|
|
3905
5527
|
* @param {string} id
|
|
@@ -3929,7 +5551,7 @@ export declare const PosesApiFactory: (configuration?: Configuration, basePath?:
|
|
|
3929
5551
|
* @param {*} [options] Override http request option.
|
|
3930
5552
|
* @throws {RequiredError}
|
|
3931
5553
|
*/
|
|
3932
|
-
posesControllerListPosesV1(orderBy?: PosesControllerListPosesV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
5554
|
+
posesControllerListPosesV1(orderBy?: PosesControllerListPosesV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListPosesDto>;
|
|
3933
5555
|
/**
|
|
3934
5556
|
*
|
|
3935
5557
|
* @param {string} id
|
|
@@ -3963,7 +5585,7 @@ export declare class PosesApi extends BaseAPI {
|
|
|
3963
5585
|
* @throws {RequiredError}
|
|
3964
5586
|
* @memberof PosesApi
|
|
3965
5587
|
*/
|
|
3966
|
-
posesControllerListPosesV1(orderBy?: PosesControllerListPosesV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
5588
|
+
posesControllerListPosesV1(orderBy?: PosesControllerListPosesV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListPosesDto, any>>;
|
|
3967
5589
|
/**
|
|
3968
5590
|
*
|
|
3969
5591
|
* @param {string} id
|
|
@@ -3981,7 +5603,7 @@ export declare const PosesControllerListPosesV1OrderByEnum: {
|
|
|
3981
5603
|
readonly Asc: "createdAt_ASC";
|
|
3982
5604
|
readonly Desc: "createdAt_DESC";
|
|
3983
5605
|
};
|
|
3984
|
-
export type PosesControllerListPosesV1OrderByEnum = typeof PosesControllerListPosesV1OrderByEnum[keyof typeof PosesControllerListPosesV1OrderByEnum];
|
|
5606
|
+
export type PosesControllerListPosesV1OrderByEnum = (typeof PosesControllerListPosesV1OrderByEnum)[keyof typeof PosesControllerListPosesV1OrderByEnum];
|
|
3985
5607
|
/**
|
|
3986
5608
|
* StacksApi - axios parameter creator
|
|
3987
5609
|
* @export
|
|
@@ -4211,7 +5833,7 @@ export declare const StacksControllerListStacksV1OrderByEnum: {
|
|
|
4211
5833
|
readonly UpdatedAtAsc: "updatedAt_ASC";
|
|
4212
5834
|
readonly UpdatedAtDesc: "updatedAt_DESC";
|
|
4213
5835
|
};
|
|
4214
|
-
export type StacksControllerListStacksV1OrderByEnum = typeof StacksControllerListStacksV1OrderByEnum[keyof typeof StacksControllerListStacksV1OrderByEnum];
|
|
5836
|
+
export type StacksControllerListStacksV1OrderByEnum = (typeof StacksControllerListStacksV1OrderByEnum)[keyof typeof StacksControllerListStacksV1OrderByEnum];
|
|
4215
5837
|
/**
|
|
4216
5838
|
* StorageApi - axios parameter creator
|
|
4217
5839
|
* @export
|