@hautechai/sdk 0.0.22 → 0.0.25
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 +302 -302
- package/dist/autogenerated/api.js +421 -1235
- package/dist/autogenerated/permissions.d.ts +5 -1
- package/dist/token/index.js +1 -2
- package/package.json +1 -1
- package/dist/token/permissions.d.ts +0 -2
- package/dist/token/permissions.js +0 -26
|
@@ -24,19 +24,19 @@ export interface AccountEntity {
|
|
|
24
24
|
* @type {string}
|
|
25
25
|
* @memberof AccountEntity
|
|
26
26
|
*/
|
|
27
|
-
id: string;
|
|
27
|
+
'id': string;
|
|
28
28
|
/**
|
|
29
29
|
*
|
|
30
30
|
* @type {string}
|
|
31
31
|
* @memberof AccountEntity
|
|
32
32
|
*/
|
|
33
|
-
type: AccountEntityTypeEnum;
|
|
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 =
|
|
39
|
+
export type AccountEntityTypeEnum = typeof AccountEntityTypeEnum[keyof typeof AccountEntityTypeEnum];
|
|
40
40
|
/**
|
|
41
41
|
*
|
|
42
42
|
* @export
|
|
@@ -48,20 +48,20 @@ export interface AddAccountToGroupControllerParamsDto {
|
|
|
48
48
|
* @type {string}
|
|
49
49
|
* @memberof AddAccountToGroupControllerParamsDto
|
|
50
50
|
*/
|
|
51
|
-
accountId: string;
|
|
51
|
+
'accountId': string;
|
|
52
52
|
/**
|
|
53
53
|
*
|
|
54
54
|
* @type {string}
|
|
55
55
|
* @memberof AddAccountToGroupControllerParamsDto
|
|
56
56
|
*/
|
|
57
|
-
role: AddAccountToGroupControllerParamsDtoRoleEnum;
|
|
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 =
|
|
64
|
+
export type AddAccountToGroupControllerParamsDtoRoleEnum = typeof AddAccountToGroupControllerParamsDtoRoleEnum[keyof typeof AddAccountToGroupControllerParamsDtoRoleEnum];
|
|
65
65
|
/**
|
|
66
66
|
*
|
|
67
67
|
* @export
|
|
@@ -73,26 +73,26 @@ export interface AddAccountToGroupParamsDto {
|
|
|
73
73
|
* @type {string}
|
|
74
74
|
* @memberof AddAccountToGroupParamsDto
|
|
75
75
|
*/
|
|
76
|
-
accountId: string;
|
|
76
|
+
'accountId': string;
|
|
77
77
|
/**
|
|
78
78
|
*
|
|
79
79
|
* @type {string}
|
|
80
80
|
* @memberof AddAccountToGroupParamsDto
|
|
81
81
|
*/
|
|
82
|
-
groupId: string;
|
|
82
|
+
'groupId': string;
|
|
83
83
|
/**
|
|
84
84
|
*
|
|
85
85
|
* @type {string}
|
|
86
86
|
* @memberof AddAccountToGroupParamsDto
|
|
87
87
|
*/
|
|
88
|
-
role: AddAccountToGroupParamsDtoRoleEnum;
|
|
88
|
+
'role': AddAccountToGroupParamsDtoRoleEnum;
|
|
89
89
|
}
|
|
90
90
|
export declare const AddAccountToGroupParamsDtoRoleEnum: {
|
|
91
91
|
readonly Maintainer: "maintainer";
|
|
92
92
|
readonly Member: "member";
|
|
93
93
|
readonly Owner: "owner";
|
|
94
94
|
};
|
|
95
|
-
export type AddAccountToGroupParamsDtoRoleEnum =
|
|
95
|
+
export type AddAccountToGroupParamsDtoRoleEnum = typeof AddAccountToGroupParamsDtoRoleEnum[keyof typeof AddAccountToGroupParamsDtoRoleEnum];
|
|
96
96
|
/**
|
|
97
97
|
*
|
|
98
98
|
* @export
|
|
@@ -104,7 +104,7 @@ export interface AddBalanceControllerParamsDto {
|
|
|
104
104
|
* @type {string}
|
|
105
105
|
* @memberof AddBalanceControllerParamsDto
|
|
106
106
|
*/
|
|
107
|
-
amount: string;
|
|
107
|
+
'amount': string;
|
|
108
108
|
}
|
|
109
109
|
/**
|
|
110
110
|
*
|
|
@@ -117,13 +117,13 @@ export interface AddBalanceParamsDto {
|
|
|
117
117
|
* @type {string}
|
|
118
118
|
* @memberof AddBalanceParamsDto
|
|
119
119
|
*/
|
|
120
|
-
amount: string;
|
|
120
|
+
'amount': string;
|
|
121
121
|
/**
|
|
122
122
|
*
|
|
123
123
|
* @type {string}
|
|
124
124
|
* @memberof AddBalanceParamsDto
|
|
125
125
|
*/
|
|
126
|
-
accountId: string;
|
|
126
|
+
'accountId': string;
|
|
127
127
|
}
|
|
128
128
|
/**
|
|
129
129
|
*
|
|
@@ -136,7 +136,7 @@ export interface AddItemsToCollectionControllerParamsDto {
|
|
|
136
136
|
* @type {Array<string>}
|
|
137
137
|
* @memberof AddItemsToCollectionControllerParamsDto
|
|
138
138
|
*/
|
|
139
|
-
itemIds: Array<string>;
|
|
139
|
+
'itemIds': Array<string>;
|
|
140
140
|
}
|
|
141
141
|
/**
|
|
142
142
|
*
|
|
@@ -149,13 +149,13 @@ export interface AddItemsToCollectionParamsDto {
|
|
|
149
149
|
* @type {string}
|
|
150
150
|
* @memberof AddItemsToCollectionParamsDto
|
|
151
151
|
*/
|
|
152
|
-
collectionId: string;
|
|
152
|
+
'collectionId': string;
|
|
153
153
|
/**
|
|
154
154
|
*
|
|
155
155
|
* @type {Array<string>}
|
|
156
156
|
* @memberof AddItemsToCollectionParamsDto
|
|
157
157
|
*/
|
|
158
|
-
itemIds: Array<string>;
|
|
158
|
+
'itemIds': Array<string>;
|
|
159
159
|
}
|
|
160
160
|
/**
|
|
161
161
|
*
|
|
@@ -168,7 +168,7 @@ export interface AddItemsToStackControllerParamsDto {
|
|
|
168
168
|
* @type {Array<string>}
|
|
169
169
|
* @memberof AddItemsToStackControllerParamsDto
|
|
170
170
|
*/
|
|
171
|
-
itemIds: Array<string>;
|
|
171
|
+
'itemIds': Array<string>;
|
|
172
172
|
}
|
|
173
173
|
/**
|
|
174
174
|
*
|
|
@@ -181,13 +181,13 @@ export interface AddItemsToStackParamsDto {
|
|
|
181
181
|
* @type {string}
|
|
182
182
|
* @memberof AddItemsToStackParamsDto
|
|
183
183
|
*/
|
|
184
|
-
stackId: string;
|
|
184
|
+
'stackId': string;
|
|
185
185
|
/**
|
|
186
186
|
*
|
|
187
187
|
* @type {Array<string>}
|
|
188
188
|
* @memberof AddItemsToStackParamsDto
|
|
189
189
|
*/
|
|
190
|
-
itemIds: Array<string>;
|
|
190
|
+
'itemIds': Array<string>;
|
|
191
191
|
}
|
|
192
192
|
/**
|
|
193
193
|
*
|
|
@@ -200,7 +200,7 @@ export interface AttachAccessControllerParamsDto {
|
|
|
200
200
|
* @type {string}
|
|
201
201
|
* @memberof AttachAccessControllerParamsDto
|
|
202
202
|
*/
|
|
203
|
-
parentResourceId: string;
|
|
203
|
+
'parentResourceId': string;
|
|
204
204
|
}
|
|
205
205
|
/**
|
|
206
206
|
*
|
|
@@ -213,13 +213,13 @@ export interface AttachAccessParamsDto {
|
|
|
213
213
|
* @type {string}
|
|
214
214
|
* @memberof AttachAccessParamsDto
|
|
215
215
|
*/
|
|
216
|
-
resourceId: string;
|
|
216
|
+
'resourceId': string;
|
|
217
217
|
/**
|
|
218
218
|
*
|
|
219
219
|
* @type {string}
|
|
220
220
|
* @memberof AttachAccessParamsDto
|
|
221
221
|
*/
|
|
222
|
-
parentResourceId: string;
|
|
222
|
+
'parentResourceId': string;
|
|
223
223
|
}
|
|
224
224
|
/**
|
|
225
225
|
*
|
|
@@ -232,7 +232,7 @@ export interface BalanceResultDto {
|
|
|
232
232
|
* @type {string}
|
|
233
233
|
* @memberof BalanceResultDto
|
|
234
234
|
*/
|
|
235
|
-
balance: string;
|
|
235
|
+
'balance': string;
|
|
236
236
|
}
|
|
237
237
|
/**
|
|
238
238
|
*
|
|
@@ -245,37 +245,37 @@ export interface CollectionEntity {
|
|
|
245
245
|
* @type {number}
|
|
246
246
|
* @memberof CollectionEntity
|
|
247
247
|
*/
|
|
248
|
-
kind: number;
|
|
248
|
+
'kind': number;
|
|
249
249
|
/**
|
|
250
250
|
*
|
|
251
251
|
* @type {string}
|
|
252
252
|
* @memberof CollectionEntity
|
|
253
253
|
*/
|
|
254
|
-
id: string;
|
|
254
|
+
'id': string;
|
|
255
255
|
/**
|
|
256
256
|
*
|
|
257
257
|
* @type {string}
|
|
258
258
|
* @memberof CollectionEntity
|
|
259
259
|
*/
|
|
260
|
-
creatorId: string;
|
|
260
|
+
'creatorId': string;
|
|
261
261
|
/**
|
|
262
262
|
*
|
|
263
263
|
* @type {object}
|
|
264
264
|
* @memberof CollectionEntity
|
|
265
265
|
*/
|
|
266
|
-
metadata: object;
|
|
266
|
+
'metadata': object;
|
|
267
267
|
/**
|
|
268
268
|
*
|
|
269
269
|
* @type {string}
|
|
270
270
|
* @memberof CollectionEntity
|
|
271
271
|
*/
|
|
272
|
-
createdAt: string;
|
|
272
|
+
'createdAt': string;
|
|
273
273
|
/**
|
|
274
274
|
*
|
|
275
275
|
* @type {string}
|
|
276
276
|
* @memberof CollectionEntity
|
|
277
277
|
*/
|
|
278
|
-
updatedAt: string;
|
|
278
|
+
'updatedAt': string;
|
|
279
279
|
}
|
|
280
280
|
/**
|
|
281
281
|
*
|
|
@@ -288,37 +288,37 @@ export interface CompositeElement {
|
|
|
288
288
|
* @type {string}
|
|
289
289
|
* @memberof CompositeElement
|
|
290
290
|
*/
|
|
291
|
-
imageId: string;
|
|
291
|
+
'imageId': string;
|
|
292
292
|
/**
|
|
293
293
|
*
|
|
294
294
|
* @type {number}
|
|
295
295
|
* @memberof CompositeElement
|
|
296
296
|
*/
|
|
297
|
-
left: number;
|
|
297
|
+
'left': number;
|
|
298
298
|
/**
|
|
299
299
|
*
|
|
300
300
|
* @type {number}
|
|
301
301
|
* @memberof CompositeElement
|
|
302
302
|
*/
|
|
303
|
-
top: number;
|
|
303
|
+
'top': number;
|
|
304
304
|
/**
|
|
305
305
|
*
|
|
306
306
|
* @type {number}
|
|
307
307
|
* @memberof CompositeElement
|
|
308
308
|
*/
|
|
309
|
-
width: number;
|
|
309
|
+
'width': number;
|
|
310
310
|
/**
|
|
311
311
|
*
|
|
312
312
|
* @type {number}
|
|
313
313
|
* @memberof CompositeElement
|
|
314
314
|
*/
|
|
315
|
-
height: number;
|
|
315
|
+
'height': number;
|
|
316
316
|
/**
|
|
317
317
|
*
|
|
318
318
|
* @type {string}
|
|
319
319
|
* @memberof CompositeElement
|
|
320
320
|
*/
|
|
321
|
-
fit: CompositeElementFitEnum;
|
|
321
|
+
'fit': CompositeElementFitEnum;
|
|
322
322
|
}
|
|
323
323
|
export declare const CompositeElementFitEnum: {
|
|
324
324
|
readonly Cover: "cover";
|
|
@@ -327,7 +327,7 @@ export declare const CompositeElementFitEnum: {
|
|
|
327
327
|
readonly Inside: "inside";
|
|
328
328
|
readonly Outside: "outside";
|
|
329
329
|
};
|
|
330
|
-
export type CompositeElementFitEnum =
|
|
330
|
+
export type CompositeElementFitEnum = typeof CompositeElementFitEnum[keyof typeof CompositeElementFitEnum];
|
|
331
331
|
/**
|
|
332
332
|
*
|
|
333
333
|
* @export
|
|
@@ -339,13 +339,13 @@ export interface CompositeV1ControllerInput {
|
|
|
339
339
|
* @type {CompositeV1Input}
|
|
340
340
|
* @memberof CompositeV1ControllerInput
|
|
341
341
|
*/
|
|
342
|
-
input: CompositeV1Input;
|
|
342
|
+
'input': CompositeV1Input;
|
|
343
343
|
/**
|
|
344
344
|
*
|
|
345
345
|
* @type {object}
|
|
346
346
|
* @memberof CompositeV1ControllerInput
|
|
347
347
|
*/
|
|
348
|
-
metadata?: object;
|
|
348
|
+
'metadata'?: object;
|
|
349
349
|
}
|
|
350
350
|
/**
|
|
351
351
|
*
|
|
@@ -358,25 +358,25 @@ export interface CompositeV1Input {
|
|
|
358
358
|
* @type {number}
|
|
359
359
|
* @memberof CompositeV1Input
|
|
360
360
|
*/
|
|
361
|
-
width: number;
|
|
361
|
+
'width': number;
|
|
362
362
|
/**
|
|
363
363
|
*
|
|
364
364
|
* @type {number}
|
|
365
365
|
* @memberof CompositeV1Input
|
|
366
366
|
*/
|
|
367
|
-
height: number;
|
|
367
|
+
'height': number;
|
|
368
368
|
/**
|
|
369
369
|
*
|
|
370
370
|
* @type {string}
|
|
371
371
|
* @memberof CompositeV1Input
|
|
372
372
|
*/
|
|
373
|
-
background: string;
|
|
373
|
+
'background': string;
|
|
374
374
|
/**
|
|
375
375
|
*
|
|
376
376
|
* @type {Array<CompositeElement>}
|
|
377
377
|
* @memberof CompositeV1Input
|
|
378
378
|
*/
|
|
379
|
-
elements: Array<CompositeElement>;
|
|
379
|
+
'elements': Array<CompositeElement>;
|
|
380
380
|
}
|
|
381
381
|
/**
|
|
382
382
|
*
|
|
@@ -389,7 +389,7 @@ export interface CreateAccountParamsDto {
|
|
|
389
389
|
* @type {string}
|
|
390
390
|
* @memberof CreateAccountParamsDto
|
|
391
391
|
*/
|
|
392
|
-
alias?: string;
|
|
392
|
+
'alias'?: string;
|
|
393
393
|
}
|
|
394
394
|
/**
|
|
395
395
|
*
|
|
@@ -402,7 +402,7 @@ export interface CreateCollectionParamsDto {
|
|
|
402
402
|
* @type {object}
|
|
403
403
|
* @memberof CreateCollectionParamsDto
|
|
404
404
|
*/
|
|
405
|
-
metadata?: object;
|
|
405
|
+
'metadata'?: object;
|
|
406
406
|
}
|
|
407
407
|
/**
|
|
408
408
|
*
|
|
@@ -415,7 +415,7 @@ export interface CreateImageParamsDto {
|
|
|
415
415
|
* @type {string}
|
|
416
416
|
* @memberof CreateImageParamsDto
|
|
417
417
|
*/
|
|
418
|
-
fileToken?: string;
|
|
418
|
+
'fileToken'?: string;
|
|
419
419
|
}
|
|
420
420
|
/**
|
|
421
421
|
*
|
|
@@ -428,13 +428,13 @@ export interface CreatePipelineParamsDto {
|
|
|
428
428
|
* @type {object}
|
|
429
429
|
* @memberof CreatePipelineParamsDto
|
|
430
430
|
*/
|
|
431
|
-
metadata?: object;
|
|
431
|
+
'metadata'?: object;
|
|
432
432
|
/**
|
|
433
433
|
*
|
|
434
434
|
* @type {object}
|
|
435
435
|
* @memberof CreatePipelineParamsDto
|
|
436
436
|
*/
|
|
437
|
-
tasks: object;
|
|
437
|
+
'tasks': object;
|
|
438
438
|
}
|
|
439
439
|
/**
|
|
440
440
|
*
|
|
@@ -447,7 +447,7 @@ export interface CreateStackParamsDto {
|
|
|
447
447
|
* @type {object}
|
|
448
448
|
* @memberof CreateStackParamsDto
|
|
449
449
|
*/
|
|
450
|
-
metadata?: object;
|
|
450
|
+
'metadata'?: object;
|
|
451
451
|
}
|
|
452
452
|
/**
|
|
453
453
|
*
|
|
@@ -460,13 +460,13 @@ export interface CreateStorageRecordParamsDto {
|
|
|
460
460
|
* @type {string}
|
|
461
461
|
* @memberof CreateStorageRecordParamsDto
|
|
462
462
|
*/
|
|
463
|
-
key: string;
|
|
463
|
+
'key': string;
|
|
464
464
|
/**
|
|
465
465
|
*
|
|
466
466
|
* @type {object}
|
|
467
467
|
* @memberof CreateStorageRecordParamsDto
|
|
468
468
|
*/
|
|
469
|
-
value: object;
|
|
469
|
+
'value': object;
|
|
470
470
|
}
|
|
471
471
|
/**
|
|
472
472
|
*
|
|
@@ -479,13 +479,13 @@ export interface CutV1ControllerInput {
|
|
|
479
479
|
* @type {CutV1Input}
|
|
480
480
|
* @memberof CutV1ControllerInput
|
|
481
481
|
*/
|
|
482
|
-
input: CutV1Input;
|
|
482
|
+
'input': CutV1Input;
|
|
483
483
|
/**
|
|
484
484
|
*
|
|
485
485
|
* @type {object}
|
|
486
486
|
* @memberof CutV1ControllerInput
|
|
487
487
|
*/
|
|
488
|
-
metadata?: object;
|
|
488
|
+
'metadata'?: object;
|
|
489
489
|
}
|
|
490
490
|
/**
|
|
491
491
|
*
|
|
@@ -498,13 +498,13 @@ export interface CutV1Input {
|
|
|
498
498
|
* @type {string}
|
|
499
499
|
* @memberof CutV1Input
|
|
500
500
|
*/
|
|
501
|
-
imageId: string;
|
|
501
|
+
'imageId': string;
|
|
502
502
|
/**
|
|
503
503
|
*
|
|
504
504
|
* @type {string}
|
|
505
505
|
* @memberof CutV1Input
|
|
506
506
|
*/
|
|
507
|
-
maskImageId: string;
|
|
507
|
+
'maskImageId': string;
|
|
508
508
|
}
|
|
509
509
|
/**
|
|
510
510
|
*
|
|
@@ -517,7 +517,7 @@ export interface DeleteParamsDto {
|
|
|
517
517
|
* @type {string}
|
|
518
518
|
* @memberof DeleteParamsDto
|
|
519
519
|
*/
|
|
520
|
-
id: string;
|
|
520
|
+
'id': string;
|
|
521
521
|
}
|
|
522
522
|
/**
|
|
523
523
|
*
|
|
@@ -530,7 +530,7 @@ export interface DeleteStorageParamsDto {
|
|
|
530
530
|
* @type {string}
|
|
531
531
|
* @memberof DeleteStorageParamsDto
|
|
532
532
|
*/
|
|
533
|
-
key: string;
|
|
533
|
+
'key': string;
|
|
534
534
|
}
|
|
535
535
|
/**
|
|
536
536
|
*
|
|
@@ -543,13 +543,13 @@ export interface GPTV1ControllerInput {
|
|
|
543
543
|
* @type {GPTV1Input}
|
|
544
544
|
* @memberof GPTV1ControllerInput
|
|
545
545
|
*/
|
|
546
|
-
input: GPTV1Input;
|
|
546
|
+
'input': GPTV1Input;
|
|
547
547
|
/**
|
|
548
548
|
*
|
|
549
549
|
* @type {object}
|
|
550
550
|
* @memberof GPTV1ControllerInput
|
|
551
551
|
*/
|
|
552
|
-
metadata?: object;
|
|
552
|
+
'metadata'?: object;
|
|
553
553
|
}
|
|
554
554
|
/**
|
|
555
555
|
*
|
|
@@ -562,24 +562,24 @@ export interface GPTV1Input {
|
|
|
562
562
|
* @type {string}
|
|
563
563
|
* @memberof GPTV1Input
|
|
564
564
|
*/
|
|
565
|
-
model?: GPTV1InputModelEnum;
|
|
565
|
+
'model'?: GPTV1InputModelEnum;
|
|
566
566
|
/**
|
|
567
567
|
*
|
|
568
568
|
* @type {string}
|
|
569
569
|
* @memberof GPTV1Input
|
|
570
570
|
*/
|
|
571
|
-
prompt: string;
|
|
571
|
+
'prompt': string;
|
|
572
572
|
/**
|
|
573
573
|
*
|
|
574
574
|
* @type {string}
|
|
575
575
|
* @memberof GPTV1Input
|
|
576
576
|
*/
|
|
577
|
-
imageId?: string;
|
|
577
|
+
'imageId'?: string;
|
|
578
578
|
}
|
|
579
579
|
export declare const GPTV1InputModelEnum: {
|
|
580
580
|
readonly Gpt4o: "gpt-4o";
|
|
581
581
|
};
|
|
582
|
-
export type GPTV1InputModelEnum =
|
|
582
|
+
export type GPTV1InputModelEnum = typeof GPTV1InputModelEnum[keyof typeof GPTV1InputModelEnum];
|
|
583
583
|
/**
|
|
584
584
|
*
|
|
585
585
|
* @export
|
|
@@ -591,13 +591,13 @@ export interface GetAccountParamsDto {
|
|
|
591
591
|
* @type {string}
|
|
592
592
|
* @memberof GetAccountParamsDto
|
|
593
593
|
*/
|
|
594
|
-
id?: string;
|
|
594
|
+
'id'?: string;
|
|
595
595
|
/**
|
|
596
596
|
*
|
|
597
597
|
* @type {string}
|
|
598
598
|
* @memberof GetAccountParamsDto
|
|
599
599
|
*/
|
|
600
|
-
alias?: string;
|
|
600
|
+
'alias'?: string;
|
|
601
601
|
}
|
|
602
602
|
/**
|
|
603
603
|
*
|
|
@@ -610,7 +610,7 @@ export interface GetBalanceParamsDto {
|
|
|
610
610
|
* @type {string}
|
|
611
611
|
* @memberof GetBalanceParamsDto
|
|
612
612
|
*/
|
|
613
|
-
accountId: string;
|
|
613
|
+
'accountId': string;
|
|
614
614
|
}
|
|
615
615
|
/**
|
|
616
616
|
*
|
|
@@ -623,7 +623,7 @@ export interface GetCollectionParamsDto {
|
|
|
623
623
|
* @type {string}
|
|
624
624
|
* @memberof GetCollectionParamsDto
|
|
625
625
|
*/
|
|
626
|
-
collectionId: string;
|
|
626
|
+
'collectionId': string;
|
|
627
627
|
}
|
|
628
628
|
/**
|
|
629
629
|
*
|
|
@@ -636,7 +636,7 @@ export interface GetGroupParamsDto {
|
|
|
636
636
|
* @type {string}
|
|
637
637
|
* @memberof GetGroupParamsDto
|
|
638
638
|
*/
|
|
639
|
-
id: string;
|
|
639
|
+
'id': string;
|
|
640
640
|
}
|
|
641
641
|
/**
|
|
642
642
|
*
|
|
@@ -649,7 +649,7 @@ export interface GetImageParamsDto {
|
|
|
649
649
|
* @type {string}
|
|
650
650
|
* @memberof GetImageParamsDto
|
|
651
651
|
*/
|
|
652
|
-
id: string;
|
|
652
|
+
'id': string;
|
|
653
653
|
}
|
|
654
654
|
/**
|
|
655
655
|
*
|
|
@@ -662,18 +662,18 @@ export interface GetImageRepresentationParamsDto {
|
|
|
662
662
|
* @type {string}
|
|
663
663
|
* @memberof GetImageRepresentationParamsDto
|
|
664
664
|
*/
|
|
665
|
-
imageId: string;
|
|
665
|
+
'imageId': string;
|
|
666
666
|
/**
|
|
667
667
|
*
|
|
668
668
|
* @type {string}
|
|
669
669
|
* @memberof GetImageRepresentationParamsDto
|
|
670
670
|
*/
|
|
671
|
-
type: GetImageRepresentationParamsDtoTypeEnum;
|
|
671
|
+
'type': GetImageRepresentationParamsDtoTypeEnum;
|
|
672
672
|
}
|
|
673
673
|
export declare const GetImageRepresentationParamsDtoTypeEnum: {
|
|
674
674
|
readonly SamV1: "sam.v1";
|
|
675
675
|
};
|
|
676
|
-
export type GetImageRepresentationParamsDtoTypeEnum =
|
|
676
|
+
export type GetImageRepresentationParamsDtoTypeEnum = typeof GetImageRepresentationParamsDtoTypeEnum[keyof typeof GetImageRepresentationParamsDtoTypeEnum];
|
|
677
677
|
/**
|
|
678
678
|
*
|
|
679
679
|
* @export
|
|
@@ -685,7 +685,7 @@ export interface GetOperationParamsDto {
|
|
|
685
685
|
* @type {string}
|
|
686
686
|
* @memberof GetOperationParamsDto
|
|
687
687
|
*/
|
|
688
|
-
id: string;
|
|
688
|
+
'id': string;
|
|
689
689
|
}
|
|
690
690
|
/**
|
|
691
691
|
*
|
|
@@ -698,7 +698,7 @@ export interface GetOperationsParamsDto {
|
|
|
698
698
|
* @type {Array<string>}
|
|
699
699
|
* @memberof GetOperationsParamsDto
|
|
700
700
|
*/
|
|
701
|
-
ids: Array<string>;
|
|
701
|
+
'ids': Array<string>;
|
|
702
702
|
}
|
|
703
703
|
/**
|
|
704
704
|
*
|
|
@@ -711,7 +711,7 @@ export interface GetPoseParamsDto {
|
|
|
711
711
|
* @type {string}
|
|
712
712
|
* @memberof GetPoseParamsDto
|
|
713
713
|
*/
|
|
714
|
-
id: string;
|
|
714
|
+
'id': string;
|
|
715
715
|
}
|
|
716
716
|
/**
|
|
717
717
|
*
|
|
@@ -724,7 +724,7 @@ export interface GetStackParamsDto {
|
|
|
724
724
|
* @type {string}
|
|
725
725
|
* @memberof GetStackParamsDto
|
|
726
726
|
*/
|
|
727
|
-
id: string;
|
|
727
|
+
'id': string;
|
|
728
728
|
}
|
|
729
729
|
/**
|
|
730
730
|
*
|
|
@@ -737,7 +737,7 @@ export interface GetStorageRecordParamsDto {
|
|
|
737
737
|
* @type {Array<string>}
|
|
738
738
|
* @memberof GetStorageRecordParamsDto
|
|
739
739
|
*/
|
|
740
|
-
keys: Array<string>;
|
|
740
|
+
'keys': Array<string>;
|
|
741
741
|
}
|
|
742
742
|
/**
|
|
743
743
|
*
|
|
@@ -750,7 +750,7 @@ export interface GetUrlsForImagesParamsDto {
|
|
|
750
750
|
* @type {Array<string>}
|
|
751
751
|
* @memberof GetUrlsForImagesParamsDto
|
|
752
752
|
*/
|
|
753
|
-
ids: Array<string>;
|
|
753
|
+
'ids': Array<string>;
|
|
754
754
|
}
|
|
755
755
|
/**
|
|
756
756
|
*
|
|
@@ -763,13 +763,13 @@ export interface GiseleVtonV1ControllerInput {
|
|
|
763
763
|
* @type {GiseleVtonV1Input}
|
|
764
764
|
* @memberof GiseleVtonV1ControllerInput
|
|
765
765
|
*/
|
|
766
|
-
input: GiseleVtonV1Input;
|
|
766
|
+
'input': GiseleVtonV1Input;
|
|
767
767
|
/**
|
|
768
768
|
*
|
|
769
769
|
* @type {object}
|
|
770
770
|
* @memberof GiseleVtonV1ControllerInput
|
|
771
771
|
*/
|
|
772
|
-
metadata?: object;
|
|
772
|
+
'metadata'?: object;
|
|
773
773
|
}
|
|
774
774
|
/**
|
|
775
775
|
*
|
|
@@ -782,38 +782,38 @@ export interface GiseleVtonV1Input {
|
|
|
782
782
|
* @type {string}
|
|
783
783
|
* @memberof GiseleVtonV1Input
|
|
784
784
|
*/
|
|
785
|
-
category: GiseleVtonV1InputCategoryEnum;
|
|
785
|
+
'category': GiseleVtonV1InputCategoryEnum;
|
|
786
786
|
/**
|
|
787
787
|
*
|
|
788
788
|
* @type {string}
|
|
789
789
|
* @memberof GiseleVtonV1Input
|
|
790
790
|
*/
|
|
791
|
-
imageId: string;
|
|
791
|
+
'imageId': string;
|
|
792
792
|
/**
|
|
793
793
|
*
|
|
794
794
|
* @type {string}
|
|
795
795
|
* @memberof GiseleVtonV1Input
|
|
796
796
|
*/
|
|
797
|
-
productDescription: string;
|
|
797
|
+
'productDescription': string;
|
|
798
798
|
/**
|
|
799
799
|
*
|
|
800
800
|
* @type {string}
|
|
801
801
|
* @memberof GiseleVtonV1Input
|
|
802
802
|
*/
|
|
803
|
-
productImageId: string;
|
|
803
|
+
'productImageId': string;
|
|
804
804
|
/**
|
|
805
805
|
*
|
|
806
806
|
* @type {number}
|
|
807
807
|
* @memberof GiseleVtonV1Input
|
|
808
808
|
*/
|
|
809
|
-
seed: number;
|
|
809
|
+
'seed': number;
|
|
810
810
|
}
|
|
811
811
|
export declare const GiseleVtonV1InputCategoryEnum: {
|
|
812
812
|
readonly Dresses: "dresses";
|
|
813
813
|
readonly LowerBody: "lower_body";
|
|
814
814
|
readonly UpperBody: "upper_body";
|
|
815
815
|
};
|
|
816
|
-
export type GiseleVtonV1InputCategoryEnum =
|
|
816
|
+
export type GiseleVtonV1InputCategoryEnum = typeof GiseleVtonV1InputCategoryEnum[keyof typeof GiseleVtonV1InputCategoryEnum];
|
|
817
817
|
/**
|
|
818
818
|
*
|
|
819
819
|
* @export
|
|
@@ -825,25 +825,25 @@ export interface GrantAccessControllerParams {
|
|
|
825
825
|
* @type {string}
|
|
826
826
|
* @memberof GrantAccessControllerParams
|
|
827
827
|
*/
|
|
828
|
-
principalType: GrantAccessControllerParamsPrincipalTypeEnum;
|
|
828
|
+
'principalType': GrantAccessControllerParamsPrincipalTypeEnum;
|
|
829
829
|
/**
|
|
830
830
|
*
|
|
831
831
|
* @type {string}
|
|
832
832
|
* @memberof GrantAccessControllerParams
|
|
833
833
|
*/
|
|
834
|
-
principalId: string;
|
|
834
|
+
'principalId': string;
|
|
835
835
|
/**
|
|
836
836
|
*
|
|
837
837
|
* @type {string}
|
|
838
838
|
* @memberof GrantAccessControllerParams
|
|
839
839
|
*/
|
|
840
|
-
access: string;
|
|
840
|
+
'access': string;
|
|
841
841
|
}
|
|
842
842
|
export declare const GrantAccessControllerParamsPrincipalTypeEnum: {
|
|
843
843
|
readonly Account: "account";
|
|
844
844
|
readonly Group: "group";
|
|
845
845
|
};
|
|
846
|
-
export type GrantAccessControllerParamsPrincipalTypeEnum =
|
|
846
|
+
export type GrantAccessControllerParamsPrincipalTypeEnum = typeof GrantAccessControllerParamsPrincipalTypeEnum[keyof typeof GrantAccessControllerParamsPrincipalTypeEnum];
|
|
847
847
|
/**
|
|
848
848
|
*
|
|
849
849
|
* @export
|
|
@@ -855,31 +855,31 @@ export interface GrantAccessParamsDto {
|
|
|
855
855
|
* @type {string}
|
|
856
856
|
* @memberof GrantAccessParamsDto
|
|
857
857
|
*/
|
|
858
|
-
principalType: GrantAccessParamsDtoPrincipalTypeEnum;
|
|
858
|
+
'principalType': GrantAccessParamsDtoPrincipalTypeEnum;
|
|
859
859
|
/**
|
|
860
860
|
*
|
|
861
861
|
* @type {string}
|
|
862
862
|
* @memberof GrantAccessParamsDto
|
|
863
863
|
*/
|
|
864
|
-
principalId: string;
|
|
864
|
+
'principalId': string;
|
|
865
865
|
/**
|
|
866
866
|
*
|
|
867
867
|
* @type {string}
|
|
868
868
|
* @memberof GrantAccessParamsDto
|
|
869
869
|
*/
|
|
870
|
-
resourceId: string;
|
|
870
|
+
'resourceId': string;
|
|
871
871
|
/**
|
|
872
872
|
*
|
|
873
873
|
* @type {string}
|
|
874
874
|
* @memberof GrantAccessParamsDto
|
|
875
875
|
*/
|
|
876
|
-
access: string;
|
|
876
|
+
'access': string;
|
|
877
877
|
}
|
|
878
878
|
export declare const GrantAccessParamsDtoPrincipalTypeEnum: {
|
|
879
879
|
readonly Account: "account";
|
|
880
880
|
readonly Group: "group";
|
|
881
881
|
};
|
|
882
|
-
export type GrantAccessParamsDtoPrincipalTypeEnum =
|
|
882
|
+
export type GrantAccessParamsDtoPrincipalTypeEnum = typeof GrantAccessParamsDtoPrincipalTypeEnum[keyof typeof GrantAccessParamsDtoPrincipalTypeEnum];
|
|
883
883
|
/**
|
|
884
884
|
*
|
|
885
885
|
* @export
|
|
@@ -891,13 +891,13 @@ export interface GroupEntity {
|
|
|
891
891
|
* @type {string}
|
|
892
892
|
* @memberof GroupEntity
|
|
893
893
|
*/
|
|
894
|
-
id: string;
|
|
894
|
+
'id': string;
|
|
895
895
|
/**
|
|
896
896
|
*
|
|
897
897
|
* @type {string}
|
|
898
898
|
* @memberof GroupEntity
|
|
899
899
|
*/
|
|
900
|
-
createdAt: string;
|
|
900
|
+
'createdAt': string;
|
|
901
901
|
}
|
|
902
902
|
/**
|
|
903
903
|
*
|
|
@@ -910,61 +910,61 @@ export interface ImageEntity {
|
|
|
910
910
|
* @type {string}
|
|
911
911
|
* @memberof ImageEntity
|
|
912
912
|
*/
|
|
913
|
-
kind: ImageEntityKindEnum;
|
|
913
|
+
'kind': ImageEntityKindEnum;
|
|
914
914
|
/**
|
|
915
915
|
*
|
|
916
916
|
* @type {string}
|
|
917
917
|
* @memberof ImageEntity
|
|
918
918
|
*/
|
|
919
|
-
id: string;
|
|
919
|
+
'id': string;
|
|
920
920
|
/**
|
|
921
921
|
*
|
|
922
922
|
* @type {string}
|
|
923
923
|
* @memberof ImageEntity
|
|
924
924
|
*/
|
|
925
|
-
creatorId: string;
|
|
925
|
+
'creatorId': string;
|
|
926
926
|
/**
|
|
927
927
|
*
|
|
928
928
|
* @type {object}
|
|
929
929
|
* @memberof ImageEntity
|
|
930
930
|
*/
|
|
931
|
-
metadata: object;
|
|
931
|
+
'metadata': object;
|
|
932
932
|
/**
|
|
933
933
|
*
|
|
934
934
|
* @type {string}
|
|
935
935
|
* @memberof ImageEntity
|
|
936
936
|
*/
|
|
937
|
-
createdAt: string;
|
|
937
|
+
'createdAt': string;
|
|
938
938
|
/**
|
|
939
939
|
*
|
|
940
940
|
* @type {string}
|
|
941
941
|
* @memberof ImageEntity
|
|
942
942
|
*/
|
|
943
|
-
updatedAt: string;
|
|
943
|
+
'updatedAt': string;
|
|
944
944
|
/**
|
|
945
945
|
*
|
|
946
946
|
* @type {number}
|
|
947
947
|
* @memberof ImageEntity
|
|
948
948
|
*/
|
|
949
|
-
width: number;
|
|
949
|
+
'width': number;
|
|
950
950
|
/**
|
|
951
951
|
*
|
|
952
952
|
* @type {number}
|
|
953
953
|
* @memberof ImageEntity
|
|
954
954
|
*/
|
|
955
|
-
height: number;
|
|
955
|
+
'height': number;
|
|
956
956
|
/**
|
|
957
957
|
*
|
|
958
958
|
* @type {string}
|
|
959
959
|
* @memberof ImageEntity
|
|
960
960
|
*/
|
|
961
|
-
format: string;
|
|
961
|
+
'format': string;
|
|
962
962
|
/**
|
|
963
963
|
*
|
|
964
964
|
* @type {string}
|
|
965
965
|
* @memberof ImageEntity
|
|
966
966
|
*/
|
|
967
|
-
url: string;
|
|
967
|
+
'url': string;
|
|
968
968
|
}
|
|
969
969
|
export declare const ImageEntityKindEnum: {
|
|
970
970
|
readonly Collection: "collection";
|
|
@@ -975,7 +975,7 @@ export declare const ImageEntityKindEnum: {
|
|
|
975
975
|
readonly Storage: "storage";
|
|
976
976
|
readonly Pipeline: "pipeline";
|
|
977
977
|
};
|
|
978
|
-
export type ImageEntityKindEnum =
|
|
978
|
+
export type ImageEntityKindEnum = typeof ImageEntityKindEnum[keyof typeof ImageEntityKindEnum];
|
|
979
979
|
/**
|
|
980
980
|
*
|
|
981
981
|
* @export
|
|
@@ -987,19 +987,19 @@ export interface ImageRepresentationResponseDto {
|
|
|
987
987
|
* @type {string}
|
|
988
988
|
* @memberof ImageRepresentationResponseDto
|
|
989
989
|
*/
|
|
990
|
-
imageId: string;
|
|
990
|
+
'imageId': string;
|
|
991
991
|
/**
|
|
992
992
|
*
|
|
993
993
|
* @type {string}
|
|
994
994
|
* @memberof ImageRepresentationResponseDto
|
|
995
995
|
*/
|
|
996
|
-
type: string;
|
|
996
|
+
'type': string;
|
|
997
997
|
/**
|
|
998
998
|
*
|
|
999
999
|
* @type {string}
|
|
1000
1000
|
* @memberof ImageRepresentationResponseDto
|
|
1001
1001
|
*/
|
|
1002
|
-
url: string;
|
|
1002
|
+
'url': string;
|
|
1003
1003
|
}
|
|
1004
1004
|
/**
|
|
1005
1005
|
*
|
|
@@ -1012,13 +1012,13 @@ export interface ImageUrlResponseDto {
|
|
|
1012
1012
|
* @type {string}
|
|
1013
1013
|
* @memberof ImageUrlResponseDto
|
|
1014
1014
|
*/
|
|
1015
|
-
id: string;
|
|
1015
|
+
'id': string;
|
|
1016
1016
|
/**
|
|
1017
1017
|
*
|
|
1018
1018
|
* @type {string}
|
|
1019
1019
|
* @memberof ImageUrlResponseDto
|
|
1020
1020
|
*/
|
|
1021
|
-
url: string;
|
|
1021
|
+
'url': string;
|
|
1022
1022
|
}
|
|
1023
1023
|
/**
|
|
1024
1024
|
*
|
|
@@ -1031,7 +1031,7 @@ export interface InitializeImageUploadResultDto {
|
|
|
1031
1031
|
* @type {string}
|
|
1032
1032
|
* @memberof InitializeImageUploadResultDto
|
|
1033
1033
|
*/
|
|
1034
|
-
uploadUrl: string;
|
|
1034
|
+
'uploadUrl': string;
|
|
1035
1035
|
}
|
|
1036
1036
|
/**
|
|
1037
1037
|
*
|
|
@@ -1044,13 +1044,13 @@ export interface KateImagineV1ControllerInput {
|
|
|
1044
1044
|
* @type {KateImagineV1Input}
|
|
1045
1045
|
* @memberof KateImagineV1ControllerInput
|
|
1046
1046
|
*/
|
|
1047
|
-
input: KateImagineV1Input;
|
|
1047
|
+
'input': KateImagineV1Input;
|
|
1048
1048
|
/**
|
|
1049
1049
|
*
|
|
1050
1050
|
* @type {object}
|
|
1051
1051
|
* @memberof KateImagineV1ControllerInput
|
|
1052
1052
|
*/
|
|
1053
|
-
metadata?: object;
|
|
1053
|
+
'metadata'?: object;
|
|
1054
1054
|
}
|
|
1055
1055
|
/**
|
|
1056
1056
|
*
|
|
@@ -1063,19 +1063,19 @@ export interface KateImagineV1Input {
|
|
|
1063
1063
|
* @type {string}
|
|
1064
1064
|
* @memberof KateImagineV1Input
|
|
1065
1065
|
*/
|
|
1066
|
-
aspectRatio: KateImagineV1InputAspectRatioEnum;
|
|
1066
|
+
'aspectRatio': KateImagineV1InputAspectRatioEnum;
|
|
1067
1067
|
/**
|
|
1068
1068
|
*
|
|
1069
1069
|
* @type {string}
|
|
1070
1070
|
* @memberof KateImagineV1Input
|
|
1071
1071
|
*/
|
|
1072
|
-
seed: string;
|
|
1072
|
+
'seed': string;
|
|
1073
1073
|
/**
|
|
1074
1074
|
*
|
|
1075
1075
|
* @type {string}
|
|
1076
1076
|
* @memberof KateImagineV1Input
|
|
1077
1077
|
*/
|
|
1078
|
-
prompt: string;
|
|
1078
|
+
'prompt': string;
|
|
1079
1079
|
}
|
|
1080
1080
|
export declare const KateImagineV1InputAspectRatioEnum: {
|
|
1081
1081
|
readonly _11: "1:1";
|
|
@@ -1088,7 +1088,7 @@ export declare const KateImagineV1InputAspectRatioEnum: {
|
|
|
1088
1088
|
readonly _125: "12:5";
|
|
1089
1089
|
readonly _512: "5:12";
|
|
1090
1090
|
};
|
|
1091
|
-
export type KateImagineV1InputAspectRatioEnum =
|
|
1091
|
+
export type KateImagineV1InputAspectRatioEnum = typeof KateImagineV1InputAspectRatioEnum[keyof typeof KateImagineV1InputAspectRatioEnum];
|
|
1092
1092
|
/**
|
|
1093
1093
|
*
|
|
1094
1094
|
* @export
|
|
@@ -1100,13 +1100,13 @@ export interface KateInpaintV1ControllerInput {
|
|
|
1100
1100
|
* @type {KateInpaintV1Input}
|
|
1101
1101
|
* @memberof KateInpaintV1ControllerInput
|
|
1102
1102
|
*/
|
|
1103
|
-
input: KateInpaintV1Input;
|
|
1103
|
+
'input': KateInpaintV1Input;
|
|
1104
1104
|
/**
|
|
1105
1105
|
*
|
|
1106
1106
|
* @type {object}
|
|
1107
1107
|
* @memberof KateInpaintV1ControllerInput
|
|
1108
1108
|
*/
|
|
1109
|
-
metadata?: object;
|
|
1109
|
+
'metadata'?: object;
|
|
1110
1110
|
}
|
|
1111
1111
|
/**
|
|
1112
1112
|
*
|
|
@@ -1119,61 +1119,61 @@ export interface KateInpaintV1Input {
|
|
|
1119
1119
|
* @type {string}
|
|
1120
1120
|
* @memberof KateInpaintV1Input
|
|
1121
1121
|
*/
|
|
1122
|
-
|
|
1122
|
+
'imageId': string;
|
|
1123
1123
|
/**
|
|
1124
1124
|
*
|
|
1125
1125
|
* @type {string}
|
|
1126
1126
|
* @memberof KateInpaintV1Input
|
|
1127
1127
|
*/
|
|
1128
|
-
|
|
1128
|
+
'maskImageId'?: string;
|
|
1129
1129
|
/**
|
|
1130
1130
|
*
|
|
1131
1131
|
* @type {number}
|
|
1132
1132
|
* @memberof KateInpaintV1Input
|
|
1133
1133
|
*/
|
|
1134
|
-
maskSpread?: number;
|
|
1134
|
+
'maskSpread'?: number;
|
|
1135
1135
|
/**
|
|
1136
1136
|
*
|
|
1137
1137
|
* @type {string}
|
|
1138
1138
|
* @memberof KateInpaintV1Input
|
|
1139
1139
|
*/
|
|
1140
|
-
prompt: string;
|
|
1140
|
+
'prompt': string;
|
|
1141
1141
|
/**
|
|
1142
1142
|
*
|
|
1143
1143
|
* @type {number}
|
|
1144
1144
|
* @memberof KateInpaintV1Input
|
|
1145
1145
|
*/
|
|
1146
|
-
seed: number;
|
|
1146
|
+
'seed': number;
|
|
1147
1147
|
/**
|
|
1148
1148
|
*
|
|
1149
1149
|
* @type {number}
|
|
1150
1150
|
* @memberof KateInpaintV1Input
|
|
1151
1151
|
*/
|
|
1152
|
-
strength: number;
|
|
1152
|
+
'strength': number;
|
|
1153
1153
|
/**
|
|
1154
1154
|
*
|
|
1155
1155
|
* @type {number}
|
|
1156
1156
|
* @memberof KateInpaintV1Input
|
|
1157
1157
|
*/
|
|
1158
|
-
height
|
|
1158
|
+
'height'?: number;
|
|
1159
1159
|
/**
|
|
1160
1160
|
*
|
|
1161
1161
|
* @type {number}
|
|
1162
1162
|
* @memberof KateInpaintV1Input
|
|
1163
1163
|
*/
|
|
1164
|
-
width
|
|
1164
|
+
'width'?: number;
|
|
1165
1165
|
/**
|
|
1166
1166
|
*
|
|
1167
1167
|
* @type {number}
|
|
1168
1168
|
* @memberof KateInpaintV1Input
|
|
1169
1169
|
*/
|
|
1170
|
-
numInferenceSteps?: number;
|
|
1170
|
+
'numInferenceSteps'?: number;
|
|
1171
1171
|
/**
|
|
1172
1172
|
*
|
|
1173
1173
|
* @type {number}
|
|
1174
1174
|
* @memberof KateInpaintV1Input
|
|
1175
1175
|
*/
|
|
1176
|
-
guidanceScale?: number;
|
|
1176
|
+
'guidanceScale'?: number;
|
|
1177
1177
|
}
|
|
1178
1178
|
/**
|
|
1179
1179
|
*
|
|
@@ -1186,13 +1186,13 @@ export interface LindaHauteV1ControllerInput {
|
|
|
1186
1186
|
* @type {LindaHauteV1Input}
|
|
1187
1187
|
* @memberof LindaHauteV1ControllerInput
|
|
1188
1188
|
*/
|
|
1189
|
-
input: LindaHauteV1Input;
|
|
1189
|
+
'input': LindaHauteV1Input;
|
|
1190
1190
|
/**
|
|
1191
1191
|
*
|
|
1192
1192
|
* @type {object}
|
|
1193
1193
|
* @memberof LindaHauteV1ControllerInput
|
|
1194
1194
|
*/
|
|
1195
|
-
metadata?: object;
|
|
1195
|
+
'metadata'?: object;
|
|
1196
1196
|
}
|
|
1197
1197
|
/**
|
|
1198
1198
|
*
|
|
@@ -1205,55 +1205,55 @@ export interface LindaHauteV1Input {
|
|
|
1205
1205
|
* @type {string}
|
|
1206
1206
|
* @memberof LindaHauteV1Input
|
|
1207
1207
|
*/
|
|
1208
|
-
aspectRatio: LindaHauteV1InputAspectRatioEnum;
|
|
1208
|
+
'aspectRatio': LindaHauteV1InputAspectRatioEnum;
|
|
1209
1209
|
/**
|
|
1210
1210
|
*
|
|
1211
1211
|
* @type {string}
|
|
1212
1212
|
* @memberof LindaHauteV1Input
|
|
1213
1213
|
*/
|
|
1214
|
-
productImageId: string;
|
|
1214
|
+
'productImageId': string;
|
|
1215
1215
|
/**
|
|
1216
1216
|
*
|
|
1217
1217
|
* @type {string}
|
|
1218
1218
|
* @memberof LindaHauteV1Input
|
|
1219
1219
|
*/
|
|
1220
|
-
prompt: string;
|
|
1220
|
+
'prompt': string;
|
|
1221
1221
|
/**
|
|
1222
1222
|
*
|
|
1223
1223
|
* @type {number}
|
|
1224
1224
|
* @memberof LindaHauteV1Input
|
|
1225
1225
|
*/
|
|
1226
|
-
seed: number;
|
|
1226
|
+
'seed': number;
|
|
1227
1227
|
/**
|
|
1228
1228
|
*
|
|
1229
1229
|
* @type {number}
|
|
1230
1230
|
* @memberof LindaHauteV1Input
|
|
1231
1231
|
*/
|
|
1232
|
-
imageWeight?: number;
|
|
1232
|
+
'imageWeight'?: number;
|
|
1233
1233
|
/**
|
|
1234
1234
|
*
|
|
1235
1235
|
* @type {string}
|
|
1236
1236
|
* @memberof LindaHauteV1Input
|
|
1237
1237
|
*/
|
|
1238
|
-
negativePrompt?: string;
|
|
1238
|
+
'negativePrompt'?: string;
|
|
1239
1239
|
/**
|
|
1240
1240
|
*
|
|
1241
1241
|
* @type {number}
|
|
1242
1242
|
* @memberof LindaHauteV1Input
|
|
1243
1243
|
*/
|
|
1244
|
-
inferenceSteps?: number;
|
|
1244
|
+
'inferenceSteps'?: number;
|
|
1245
1245
|
/**
|
|
1246
1246
|
*
|
|
1247
1247
|
* @type {number}
|
|
1248
1248
|
* @memberof LindaHauteV1Input
|
|
1249
1249
|
*/
|
|
1250
|
-
guidanceScale?: number;
|
|
1250
|
+
'guidanceScale'?: number;
|
|
1251
1251
|
/**
|
|
1252
1252
|
*
|
|
1253
1253
|
* @type {number}
|
|
1254
1254
|
* @memberof LindaHauteV1Input
|
|
1255
1255
|
*/
|
|
1256
|
-
strength?: number;
|
|
1256
|
+
'strength'?: number;
|
|
1257
1257
|
}
|
|
1258
1258
|
export declare const LindaHauteV1InputAspectRatioEnum: {
|
|
1259
1259
|
readonly _11: "1:1";
|
|
@@ -1266,7 +1266,7 @@ export declare const LindaHauteV1InputAspectRatioEnum: {
|
|
|
1266
1266
|
readonly _125: "12:5";
|
|
1267
1267
|
readonly _512: "5:12";
|
|
1268
1268
|
};
|
|
1269
|
-
export type LindaHauteV1InputAspectRatioEnum =
|
|
1269
|
+
export type LindaHauteV1InputAspectRatioEnum = typeof LindaHauteV1InputAspectRatioEnum[keyof typeof LindaHauteV1InputAspectRatioEnum];
|
|
1270
1270
|
/**
|
|
1271
1271
|
*
|
|
1272
1272
|
* @export
|
|
@@ -1278,13 +1278,13 @@ export interface ListAccountsDto {
|
|
|
1278
1278
|
* @type {Array<AccountEntity>}
|
|
1279
1279
|
* @memberof ListAccountsDto
|
|
1280
1280
|
*/
|
|
1281
|
-
data: Array<AccountEntity>;
|
|
1281
|
+
'data': Array<AccountEntity>;
|
|
1282
1282
|
/**
|
|
1283
1283
|
*
|
|
1284
1284
|
* @type {ListAccountsDtoPageInfo}
|
|
1285
1285
|
* @memberof ListAccountsDto
|
|
1286
1286
|
*/
|
|
1287
|
-
pageInfo: ListAccountsDtoPageInfo;
|
|
1287
|
+
'pageInfo': ListAccountsDtoPageInfo;
|
|
1288
1288
|
}
|
|
1289
1289
|
/**
|
|
1290
1290
|
*
|
|
@@ -1297,7 +1297,7 @@ export interface ListAccountsDtoPageInfo {
|
|
|
1297
1297
|
* @type {string}
|
|
1298
1298
|
* @memberof ListAccountsDtoPageInfo
|
|
1299
1299
|
*/
|
|
1300
|
-
nextCursor: string;
|
|
1300
|
+
'nextCursor': string;
|
|
1301
1301
|
}
|
|
1302
1302
|
/**
|
|
1303
1303
|
*
|
|
@@ -1310,25 +1310,25 @@ export interface ListAccountsParamsDto {
|
|
|
1310
1310
|
* @type {string}
|
|
1311
1311
|
* @memberof ListAccountsParamsDto
|
|
1312
1312
|
*/
|
|
1313
|
-
orderBy?: ListAccountsParamsDtoOrderByEnum;
|
|
1313
|
+
'orderBy'?: ListAccountsParamsDtoOrderByEnum;
|
|
1314
1314
|
/**
|
|
1315
1315
|
*
|
|
1316
1316
|
* @type {number}
|
|
1317
1317
|
* @memberof ListAccountsParamsDto
|
|
1318
1318
|
*/
|
|
1319
|
-
limit?: number;
|
|
1319
|
+
'limit'?: number;
|
|
1320
1320
|
/**
|
|
1321
1321
|
*
|
|
1322
1322
|
* @type {string}
|
|
1323
1323
|
* @memberof ListAccountsParamsDto
|
|
1324
1324
|
*/
|
|
1325
|
-
cursor?: string;
|
|
1325
|
+
'cursor'?: string;
|
|
1326
1326
|
}
|
|
1327
1327
|
export declare const ListAccountsParamsDtoOrderByEnum: {
|
|
1328
1328
|
readonly Asc: "createdAt_ASC";
|
|
1329
1329
|
readonly Desc: "createdAt_DESC";
|
|
1330
1330
|
};
|
|
1331
|
-
export type ListAccountsParamsDtoOrderByEnum =
|
|
1331
|
+
export type ListAccountsParamsDtoOrderByEnum = typeof ListAccountsParamsDtoOrderByEnum[keyof typeof ListAccountsParamsDtoOrderByEnum];
|
|
1332
1332
|
/**
|
|
1333
1333
|
*
|
|
1334
1334
|
* @export
|
|
@@ -1340,13 +1340,13 @@ export interface ListCollectionItemsDto {
|
|
|
1340
1340
|
* @type {Array<ResourceEntity>}
|
|
1341
1341
|
* @memberof ListCollectionItemsDto
|
|
1342
1342
|
*/
|
|
1343
|
-
data: Array<ResourceEntity>;
|
|
1343
|
+
'data': Array<ResourceEntity>;
|
|
1344
1344
|
/**
|
|
1345
1345
|
*
|
|
1346
1346
|
* @type {ListAccountsDtoPageInfo}
|
|
1347
1347
|
* @memberof ListCollectionItemsDto
|
|
1348
1348
|
*/
|
|
1349
|
-
pageInfo: ListAccountsDtoPageInfo;
|
|
1349
|
+
'pageInfo': ListAccountsDtoPageInfo;
|
|
1350
1350
|
}
|
|
1351
1351
|
/**
|
|
1352
1352
|
*
|
|
@@ -1359,31 +1359,31 @@ export interface ListCollectionItemsParamsDto {
|
|
|
1359
1359
|
* @type {string}
|
|
1360
1360
|
* @memberof ListCollectionItemsParamsDto
|
|
1361
1361
|
*/
|
|
1362
|
-
collectionId: string;
|
|
1362
|
+
'collectionId': string;
|
|
1363
1363
|
/**
|
|
1364
1364
|
*
|
|
1365
1365
|
* @type {string}
|
|
1366
1366
|
* @memberof ListCollectionItemsParamsDto
|
|
1367
1367
|
*/
|
|
1368
|
-
orderBy?: ListCollectionItemsParamsDtoOrderByEnum;
|
|
1368
|
+
'orderBy'?: ListCollectionItemsParamsDtoOrderByEnum;
|
|
1369
1369
|
/**
|
|
1370
1370
|
*
|
|
1371
1371
|
* @type {number}
|
|
1372
1372
|
* @memberof ListCollectionItemsParamsDto
|
|
1373
1373
|
*/
|
|
1374
|
-
limit?: number;
|
|
1374
|
+
'limit'?: number;
|
|
1375
1375
|
/**
|
|
1376
1376
|
*
|
|
1377
1377
|
* @type {string}
|
|
1378
1378
|
* @memberof ListCollectionItemsParamsDto
|
|
1379
1379
|
*/
|
|
1380
|
-
kind?: ListCollectionItemsParamsDtoKindEnum;
|
|
1380
|
+
'kind'?: ListCollectionItemsParamsDtoKindEnum;
|
|
1381
1381
|
/**
|
|
1382
1382
|
*
|
|
1383
1383
|
* @type {string}
|
|
1384
1384
|
* @memberof ListCollectionItemsParamsDto
|
|
1385
1385
|
*/
|
|
1386
|
-
cursor?: string;
|
|
1386
|
+
'cursor'?: string;
|
|
1387
1387
|
}
|
|
1388
1388
|
export declare const ListCollectionItemsParamsDtoOrderByEnum: {
|
|
1389
1389
|
readonly CreatedAtAsc: "createdAt_ASC";
|
|
@@ -1391,7 +1391,7 @@ export declare const ListCollectionItemsParamsDtoOrderByEnum: {
|
|
|
1391
1391
|
readonly UpdatedAtAsc: "updatedAt_ASC";
|
|
1392
1392
|
readonly UpdatedAtDesc: "updatedAt_DESC";
|
|
1393
1393
|
};
|
|
1394
|
-
export type ListCollectionItemsParamsDtoOrderByEnum =
|
|
1394
|
+
export type ListCollectionItemsParamsDtoOrderByEnum = typeof ListCollectionItemsParamsDtoOrderByEnum[keyof typeof ListCollectionItemsParamsDtoOrderByEnum];
|
|
1395
1395
|
export declare const ListCollectionItemsParamsDtoKindEnum: {
|
|
1396
1396
|
readonly Collection: "collection";
|
|
1397
1397
|
readonly Operation: "operation";
|
|
@@ -1401,7 +1401,7 @@ export declare const ListCollectionItemsParamsDtoKindEnum: {
|
|
|
1401
1401
|
readonly Storage: "storage";
|
|
1402
1402
|
readonly Pipeline: "pipeline";
|
|
1403
1403
|
};
|
|
1404
|
-
export type ListCollectionItemsParamsDtoKindEnum =
|
|
1404
|
+
export type ListCollectionItemsParamsDtoKindEnum = typeof ListCollectionItemsParamsDtoKindEnum[keyof typeof ListCollectionItemsParamsDtoKindEnum];
|
|
1405
1405
|
/**
|
|
1406
1406
|
*
|
|
1407
1407
|
* @export
|
|
@@ -1413,13 +1413,13 @@ export interface ListCollectionsDto {
|
|
|
1413
1413
|
* @type {Array<CollectionEntity>}
|
|
1414
1414
|
* @memberof ListCollectionsDto
|
|
1415
1415
|
*/
|
|
1416
|
-
data: Array<CollectionEntity>;
|
|
1416
|
+
'data': Array<CollectionEntity>;
|
|
1417
1417
|
/**
|
|
1418
1418
|
*
|
|
1419
1419
|
* @type {ListAccountsDtoPageInfo}
|
|
1420
1420
|
* @memberof ListCollectionsDto
|
|
1421
1421
|
*/
|
|
1422
|
-
pageInfo: ListAccountsDtoPageInfo;
|
|
1422
|
+
'pageInfo': ListAccountsDtoPageInfo;
|
|
1423
1423
|
}
|
|
1424
1424
|
/**
|
|
1425
1425
|
*
|
|
@@ -1432,19 +1432,19 @@ export interface ListCollectionsParamsDto {
|
|
|
1432
1432
|
* @type {string}
|
|
1433
1433
|
* @memberof ListCollectionsParamsDto
|
|
1434
1434
|
*/
|
|
1435
|
-
orderBy?: ListCollectionsParamsDtoOrderByEnum;
|
|
1435
|
+
'orderBy'?: ListCollectionsParamsDtoOrderByEnum;
|
|
1436
1436
|
/**
|
|
1437
1437
|
*
|
|
1438
1438
|
* @type {number}
|
|
1439
1439
|
* @memberof ListCollectionsParamsDto
|
|
1440
1440
|
*/
|
|
1441
|
-
limit?: number;
|
|
1441
|
+
'limit'?: number;
|
|
1442
1442
|
/**
|
|
1443
1443
|
*
|
|
1444
1444
|
* @type {string}
|
|
1445
1445
|
* @memberof ListCollectionsParamsDto
|
|
1446
1446
|
*/
|
|
1447
|
-
cursor?: string;
|
|
1447
|
+
'cursor'?: string;
|
|
1448
1448
|
}
|
|
1449
1449
|
export declare const ListCollectionsParamsDtoOrderByEnum: {
|
|
1450
1450
|
readonly CreatedAtAsc: "createdAt_ASC";
|
|
@@ -1452,7 +1452,7 @@ export declare const ListCollectionsParamsDtoOrderByEnum: {
|
|
|
1452
1452
|
readonly UpdatedAtAsc: "updatedAt_ASC";
|
|
1453
1453
|
readonly UpdatedAtDesc: "updatedAt_DESC";
|
|
1454
1454
|
};
|
|
1455
|
-
export type ListCollectionsParamsDtoOrderByEnum =
|
|
1455
|
+
export type ListCollectionsParamsDtoOrderByEnum = typeof ListCollectionsParamsDtoOrderByEnum[keyof typeof ListCollectionsParamsDtoOrderByEnum];
|
|
1456
1456
|
/**
|
|
1457
1457
|
*
|
|
1458
1458
|
* @export
|
|
@@ -1464,13 +1464,13 @@ export interface ListOperationsDto {
|
|
|
1464
1464
|
* @type {Array<OperationEntity>}
|
|
1465
1465
|
* @memberof ListOperationsDto
|
|
1466
1466
|
*/
|
|
1467
|
-
data: Array<OperationEntity>;
|
|
1467
|
+
'data': Array<OperationEntity>;
|
|
1468
1468
|
/**
|
|
1469
1469
|
*
|
|
1470
1470
|
* @type {ListAccountsDtoPageInfo}
|
|
1471
1471
|
* @memberof ListOperationsDto
|
|
1472
1472
|
*/
|
|
1473
|
-
pageInfo: ListAccountsDtoPageInfo;
|
|
1473
|
+
'pageInfo': ListAccountsDtoPageInfo;
|
|
1474
1474
|
}
|
|
1475
1475
|
/**
|
|
1476
1476
|
*
|
|
@@ -1483,19 +1483,19 @@ export interface ListOperationsParamsDto {
|
|
|
1483
1483
|
* @type {string}
|
|
1484
1484
|
* @memberof ListOperationsParamsDto
|
|
1485
1485
|
*/
|
|
1486
|
-
orderBy?: ListOperationsParamsDtoOrderByEnum;
|
|
1486
|
+
'orderBy'?: ListOperationsParamsDtoOrderByEnum;
|
|
1487
1487
|
/**
|
|
1488
1488
|
*
|
|
1489
1489
|
* @type {number}
|
|
1490
1490
|
* @memberof ListOperationsParamsDto
|
|
1491
1491
|
*/
|
|
1492
|
-
limit?: number;
|
|
1492
|
+
'limit'?: number;
|
|
1493
1493
|
/**
|
|
1494
1494
|
*
|
|
1495
1495
|
* @type {string}
|
|
1496
1496
|
* @memberof ListOperationsParamsDto
|
|
1497
1497
|
*/
|
|
1498
|
-
cursor?: string;
|
|
1498
|
+
'cursor'?: string;
|
|
1499
1499
|
}
|
|
1500
1500
|
export declare const ListOperationsParamsDtoOrderByEnum: {
|
|
1501
1501
|
readonly CreatedAtAsc: "createdAt_ASC";
|
|
@@ -1503,7 +1503,7 @@ export declare const ListOperationsParamsDtoOrderByEnum: {
|
|
|
1503
1503
|
readonly UpdatedAtAsc: "updatedAt_ASC";
|
|
1504
1504
|
readonly UpdatedAtDesc: "updatedAt_DESC";
|
|
1505
1505
|
};
|
|
1506
|
-
export type ListOperationsParamsDtoOrderByEnum =
|
|
1506
|
+
export type ListOperationsParamsDtoOrderByEnum = typeof ListOperationsParamsDtoOrderByEnum[keyof typeof ListOperationsParamsDtoOrderByEnum];
|
|
1507
1507
|
/**
|
|
1508
1508
|
*
|
|
1509
1509
|
* @export
|
|
@@ -1515,13 +1515,13 @@ export interface ListPipelinesDto {
|
|
|
1515
1515
|
* @type {Array<PipelineEntity>}
|
|
1516
1516
|
* @memberof ListPipelinesDto
|
|
1517
1517
|
*/
|
|
1518
|
-
data: Array<PipelineEntity>;
|
|
1518
|
+
'data': Array<PipelineEntity>;
|
|
1519
1519
|
/**
|
|
1520
1520
|
*
|
|
1521
1521
|
* @type {ListAccountsDtoPageInfo}
|
|
1522
1522
|
* @memberof ListPipelinesDto
|
|
1523
1523
|
*/
|
|
1524
|
-
pageInfo: ListAccountsDtoPageInfo;
|
|
1524
|
+
'pageInfo': ListAccountsDtoPageInfo;
|
|
1525
1525
|
}
|
|
1526
1526
|
/**
|
|
1527
1527
|
*
|
|
@@ -1534,13 +1534,13 @@ export interface ListPosesDto {
|
|
|
1534
1534
|
* @type {Array<PoseEntity>}
|
|
1535
1535
|
* @memberof ListPosesDto
|
|
1536
1536
|
*/
|
|
1537
|
-
data: Array<PoseEntity>;
|
|
1537
|
+
'data': Array<PoseEntity>;
|
|
1538
1538
|
/**
|
|
1539
1539
|
*
|
|
1540
1540
|
* @type {ListAccountsDtoPageInfo}
|
|
1541
1541
|
* @memberof ListPosesDto
|
|
1542
1542
|
*/
|
|
1543
|
-
pageInfo: ListAccountsDtoPageInfo;
|
|
1543
|
+
'pageInfo': ListAccountsDtoPageInfo;
|
|
1544
1544
|
}
|
|
1545
1545
|
/**
|
|
1546
1546
|
*
|
|
@@ -1553,25 +1553,25 @@ export interface ListPosesParamsDto {
|
|
|
1553
1553
|
* @type {string}
|
|
1554
1554
|
* @memberof ListPosesParamsDto
|
|
1555
1555
|
*/
|
|
1556
|
-
orderBy?: ListPosesParamsDtoOrderByEnum;
|
|
1556
|
+
'orderBy'?: ListPosesParamsDtoOrderByEnum;
|
|
1557
1557
|
/**
|
|
1558
1558
|
*
|
|
1559
1559
|
* @type {number}
|
|
1560
1560
|
* @memberof ListPosesParamsDto
|
|
1561
1561
|
*/
|
|
1562
|
-
limit?: number;
|
|
1562
|
+
'limit'?: number;
|
|
1563
1563
|
/**
|
|
1564
1564
|
*
|
|
1565
1565
|
* @type {string}
|
|
1566
1566
|
* @memberof ListPosesParamsDto
|
|
1567
1567
|
*/
|
|
1568
|
-
cursor?: string;
|
|
1568
|
+
'cursor'?: string;
|
|
1569
1569
|
}
|
|
1570
1570
|
export declare const ListPosesParamsDtoOrderByEnum: {
|
|
1571
1571
|
readonly Asc: "createdAt_ASC";
|
|
1572
1572
|
readonly Desc: "createdAt_DESC";
|
|
1573
1573
|
};
|
|
1574
|
-
export type ListPosesParamsDtoOrderByEnum =
|
|
1574
|
+
export type ListPosesParamsDtoOrderByEnum = typeof ListPosesParamsDtoOrderByEnum[keyof typeof ListPosesParamsDtoOrderByEnum];
|
|
1575
1575
|
/**
|
|
1576
1576
|
*
|
|
1577
1577
|
* @export
|
|
@@ -1583,13 +1583,13 @@ export interface ListStacksDto {
|
|
|
1583
1583
|
* @type {Array<StackEntity>}
|
|
1584
1584
|
* @memberof ListStacksDto
|
|
1585
1585
|
*/
|
|
1586
|
-
data: Array<StackEntity>;
|
|
1586
|
+
'data': Array<StackEntity>;
|
|
1587
1587
|
/**
|
|
1588
1588
|
*
|
|
1589
1589
|
* @type {ListAccountsDtoPageInfo}
|
|
1590
1590
|
* @memberof ListStacksDto
|
|
1591
1591
|
*/
|
|
1592
|
-
pageInfo: ListAccountsDtoPageInfo;
|
|
1592
|
+
'pageInfo': ListAccountsDtoPageInfo;
|
|
1593
1593
|
}
|
|
1594
1594
|
/**
|
|
1595
1595
|
*
|
|
@@ -1602,19 +1602,19 @@ export interface ListStacksParamsDto {
|
|
|
1602
1602
|
* @type {string}
|
|
1603
1603
|
* @memberof ListStacksParamsDto
|
|
1604
1604
|
*/
|
|
1605
|
-
orderBy?: ListStacksParamsDtoOrderByEnum;
|
|
1605
|
+
'orderBy'?: ListStacksParamsDtoOrderByEnum;
|
|
1606
1606
|
/**
|
|
1607
1607
|
*
|
|
1608
1608
|
* @type {number}
|
|
1609
1609
|
* @memberof ListStacksParamsDto
|
|
1610
1610
|
*/
|
|
1611
|
-
limit?: number;
|
|
1611
|
+
'limit'?: number;
|
|
1612
1612
|
/**
|
|
1613
1613
|
*
|
|
1614
1614
|
* @type {string}
|
|
1615
1615
|
* @memberof ListStacksParamsDto
|
|
1616
1616
|
*/
|
|
1617
|
-
cursor?: string;
|
|
1617
|
+
'cursor'?: string;
|
|
1618
1618
|
}
|
|
1619
1619
|
export declare const ListStacksParamsDtoOrderByEnum: {
|
|
1620
1620
|
readonly CreatedAtAsc: "createdAt_ASC";
|
|
@@ -1622,7 +1622,7 @@ export declare const ListStacksParamsDtoOrderByEnum: {
|
|
|
1622
1622
|
readonly UpdatedAtAsc: "updatedAt_ASC";
|
|
1623
1623
|
readonly UpdatedAtDesc: "updatedAt_DESC";
|
|
1624
1624
|
};
|
|
1625
|
-
export type ListStacksParamsDtoOrderByEnum =
|
|
1625
|
+
export type ListStacksParamsDtoOrderByEnum = typeof ListStacksParamsDtoOrderByEnum[keyof typeof ListStacksParamsDtoOrderByEnum];
|
|
1626
1626
|
/**
|
|
1627
1627
|
*
|
|
1628
1628
|
* @export
|
|
@@ -1634,13 +1634,13 @@ export interface NaomiHauteV1ControllerInput {
|
|
|
1634
1634
|
* @type {NaomiHauteV1Input}
|
|
1635
1635
|
* @memberof NaomiHauteV1ControllerInput
|
|
1636
1636
|
*/
|
|
1637
|
-
input: NaomiHauteV1Input;
|
|
1637
|
+
'input': NaomiHauteV1Input;
|
|
1638
1638
|
/**
|
|
1639
1639
|
*
|
|
1640
1640
|
* @type {object}
|
|
1641
1641
|
* @memberof NaomiHauteV1ControllerInput
|
|
1642
1642
|
*/
|
|
1643
|
-
metadata?: object;
|
|
1643
|
+
'metadata'?: object;
|
|
1644
1644
|
}
|
|
1645
1645
|
/**
|
|
1646
1646
|
*
|
|
@@ -1653,61 +1653,61 @@ export interface NaomiHauteV1Input {
|
|
|
1653
1653
|
* @type {string}
|
|
1654
1654
|
* @memberof NaomiHauteV1Input
|
|
1655
1655
|
*/
|
|
1656
|
-
prompt: string;
|
|
1656
|
+
'prompt': string;
|
|
1657
1657
|
/**
|
|
1658
1658
|
*
|
|
1659
1659
|
* @type {string}
|
|
1660
1660
|
* @memberof NaomiHauteV1Input
|
|
1661
1661
|
*/
|
|
1662
|
-
category: string;
|
|
1662
|
+
'category': string;
|
|
1663
1663
|
/**
|
|
1664
1664
|
*
|
|
1665
1665
|
* @type {string}
|
|
1666
1666
|
* @memberof NaomiHauteV1Input
|
|
1667
1667
|
*/
|
|
1668
|
-
garmentImageId: string;
|
|
1668
|
+
'garmentImageId': string;
|
|
1669
1669
|
/**
|
|
1670
1670
|
*
|
|
1671
1671
|
* @type {string}
|
|
1672
1672
|
* @memberof NaomiHauteV1Input
|
|
1673
1673
|
*/
|
|
1674
|
-
poseId: string;
|
|
1674
|
+
'poseId': string;
|
|
1675
1675
|
/**
|
|
1676
1676
|
*
|
|
1677
1677
|
* @type {number}
|
|
1678
1678
|
* @memberof NaomiHauteV1Input
|
|
1679
1679
|
*/
|
|
1680
|
-
seed: number;
|
|
1680
|
+
'seed': number;
|
|
1681
1681
|
/**
|
|
1682
1682
|
*
|
|
1683
1683
|
* @type {number}
|
|
1684
1684
|
* @memberof NaomiHauteV1Input
|
|
1685
1685
|
*/
|
|
1686
|
-
width: number;
|
|
1686
|
+
'width': number;
|
|
1687
1687
|
/**
|
|
1688
1688
|
*
|
|
1689
1689
|
* @type {number}
|
|
1690
1690
|
* @memberof NaomiHauteV1Input
|
|
1691
1691
|
*/
|
|
1692
|
-
height: number;
|
|
1692
|
+
'height': number;
|
|
1693
1693
|
/**
|
|
1694
1694
|
*
|
|
1695
1695
|
* @type {number}
|
|
1696
1696
|
* @memberof NaomiHauteV1Input
|
|
1697
1697
|
*/
|
|
1698
|
-
textGuidanceScale?: number;
|
|
1698
|
+
'textGuidanceScale'?: number;
|
|
1699
1699
|
/**
|
|
1700
1700
|
*
|
|
1701
1701
|
* @type {number}
|
|
1702
1702
|
* @memberof NaomiHauteV1Input
|
|
1703
1703
|
*/
|
|
1704
|
-
imageGuidanceScale?: number;
|
|
1704
|
+
'imageGuidanceScale'?: number;
|
|
1705
1705
|
/**
|
|
1706
1706
|
*
|
|
1707
1707
|
* @type {number}
|
|
1708
1708
|
* @memberof NaomiHauteV1Input
|
|
1709
1709
|
*/
|
|
1710
|
-
numInferenceSteps?: number;
|
|
1710
|
+
'numInferenceSteps'?: number;
|
|
1711
1711
|
}
|
|
1712
1712
|
/**
|
|
1713
1713
|
*
|
|
@@ -1720,13 +1720,13 @@ export interface ObjectDetectionV1ControllerInput {
|
|
|
1720
1720
|
* @type {ObjectDetectionV1Input}
|
|
1721
1721
|
* @memberof ObjectDetectionV1ControllerInput
|
|
1722
1722
|
*/
|
|
1723
|
-
input: ObjectDetectionV1Input;
|
|
1723
|
+
'input': ObjectDetectionV1Input;
|
|
1724
1724
|
/**
|
|
1725
1725
|
*
|
|
1726
1726
|
* @type {object}
|
|
1727
1727
|
* @memberof ObjectDetectionV1ControllerInput
|
|
1728
1728
|
*/
|
|
1729
|
-
metadata?: object;
|
|
1729
|
+
'metadata'?: object;
|
|
1730
1730
|
}
|
|
1731
1731
|
/**
|
|
1732
1732
|
*
|
|
@@ -1739,13 +1739,13 @@ export interface ObjectDetectionV1Input {
|
|
|
1739
1739
|
* @type {Array<string>}
|
|
1740
1740
|
* @memberof ObjectDetectionV1Input
|
|
1741
1741
|
*/
|
|
1742
|
-
labels: Array<string>;
|
|
1742
|
+
'labels': Array<string>;
|
|
1743
1743
|
/**
|
|
1744
1744
|
*
|
|
1745
1745
|
* @type {string}
|
|
1746
1746
|
* @memberof ObjectDetectionV1Input
|
|
1747
1747
|
*/
|
|
1748
|
-
imageId: string;
|
|
1748
|
+
'imageId': string;
|
|
1749
1749
|
}
|
|
1750
1750
|
/**
|
|
1751
1751
|
*
|
|
@@ -1758,61 +1758,61 @@ export interface OperationEntity {
|
|
|
1758
1758
|
* @type {string}
|
|
1759
1759
|
* @memberof OperationEntity
|
|
1760
1760
|
*/
|
|
1761
|
-
kind: OperationEntityKindEnum;
|
|
1761
|
+
'kind': OperationEntityKindEnum;
|
|
1762
1762
|
/**
|
|
1763
1763
|
*
|
|
1764
1764
|
* @type {string}
|
|
1765
1765
|
* @memberof OperationEntity
|
|
1766
1766
|
*/
|
|
1767
|
-
id: string;
|
|
1767
|
+
'id': string;
|
|
1768
1768
|
/**
|
|
1769
1769
|
*
|
|
1770
1770
|
* @type {string}
|
|
1771
1771
|
* @memberof OperationEntity
|
|
1772
1772
|
*/
|
|
1773
|
-
creatorId: string;
|
|
1773
|
+
'creatorId': string;
|
|
1774
1774
|
/**
|
|
1775
1775
|
*
|
|
1776
1776
|
* @type {object}
|
|
1777
1777
|
* @memberof OperationEntity
|
|
1778
1778
|
*/
|
|
1779
|
-
metadata: object;
|
|
1779
|
+
'metadata': object;
|
|
1780
1780
|
/**
|
|
1781
1781
|
*
|
|
1782
1782
|
* @type {string}
|
|
1783
1783
|
* @memberof OperationEntity
|
|
1784
1784
|
*/
|
|
1785
|
-
createdAt: string;
|
|
1785
|
+
'createdAt': string;
|
|
1786
1786
|
/**
|
|
1787
1787
|
*
|
|
1788
1788
|
* @type {string}
|
|
1789
1789
|
* @memberof OperationEntity
|
|
1790
1790
|
*/
|
|
1791
|
-
updatedAt: string;
|
|
1791
|
+
'updatedAt': string;
|
|
1792
1792
|
/**
|
|
1793
1793
|
*
|
|
1794
1794
|
* @type {object}
|
|
1795
1795
|
* @memberof OperationEntity
|
|
1796
1796
|
*/
|
|
1797
|
-
input: object;
|
|
1797
|
+
'input': object;
|
|
1798
1798
|
/**
|
|
1799
1799
|
*
|
|
1800
1800
|
* @type {object}
|
|
1801
1801
|
* @memberof OperationEntity
|
|
1802
1802
|
*/
|
|
1803
|
-
output: object | null;
|
|
1803
|
+
'output': object | null;
|
|
1804
1804
|
/**
|
|
1805
1805
|
*
|
|
1806
1806
|
* @type {string}
|
|
1807
1807
|
* @memberof OperationEntity
|
|
1808
1808
|
*/
|
|
1809
|
-
status: OperationEntityStatusEnum;
|
|
1809
|
+
'status': OperationEntityStatusEnum;
|
|
1810
1810
|
/**
|
|
1811
1811
|
*
|
|
1812
1812
|
* @type {string}
|
|
1813
1813
|
* @memberof OperationEntity
|
|
1814
1814
|
*/
|
|
1815
|
-
type: string;
|
|
1815
|
+
'type': string;
|
|
1816
1816
|
}
|
|
1817
1817
|
export declare const OperationEntityKindEnum: {
|
|
1818
1818
|
readonly Collection: "collection";
|
|
@@ -1823,13 +1823,13 @@ export declare const OperationEntityKindEnum: {
|
|
|
1823
1823
|
readonly Storage: "storage";
|
|
1824
1824
|
readonly Pipeline: "pipeline";
|
|
1825
1825
|
};
|
|
1826
|
-
export type OperationEntityKindEnum =
|
|
1826
|
+
export type OperationEntityKindEnum = typeof OperationEntityKindEnum[keyof typeof OperationEntityKindEnum];
|
|
1827
1827
|
export declare const OperationEntityStatusEnum: {
|
|
1828
1828
|
readonly Pending: "pending";
|
|
1829
1829
|
readonly Finished: "finished";
|
|
1830
1830
|
readonly Failed: "failed";
|
|
1831
1831
|
};
|
|
1832
|
-
export type OperationEntityStatusEnum =
|
|
1832
|
+
export type OperationEntityStatusEnum = typeof OperationEntityStatusEnum[keyof typeof OperationEntityStatusEnum];
|
|
1833
1833
|
/**
|
|
1834
1834
|
*
|
|
1835
1835
|
* @export
|
|
@@ -1841,61 +1841,61 @@ export interface PipelineEntity {
|
|
|
1841
1841
|
* @type {string}
|
|
1842
1842
|
* @memberof PipelineEntity
|
|
1843
1843
|
*/
|
|
1844
|
-
kind: PipelineEntityKindEnum;
|
|
1844
|
+
'kind': PipelineEntityKindEnum;
|
|
1845
1845
|
/**
|
|
1846
1846
|
*
|
|
1847
1847
|
* @type {string}
|
|
1848
1848
|
* @memberof PipelineEntity
|
|
1849
1849
|
*/
|
|
1850
|
-
id: string;
|
|
1850
|
+
'id': string;
|
|
1851
1851
|
/**
|
|
1852
1852
|
*
|
|
1853
1853
|
* @type {string}
|
|
1854
1854
|
* @memberof PipelineEntity
|
|
1855
1855
|
*/
|
|
1856
|
-
creatorId: string;
|
|
1856
|
+
'creatorId': string;
|
|
1857
1857
|
/**
|
|
1858
1858
|
*
|
|
1859
1859
|
* @type {object}
|
|
1860
1860
|
* @memberof PipelineEntity
|
|
1861
1861
|
*/
|
|
1862
|
-
metadata: object;
|
|
1862
|
+
'metadata': object;
|
|
1863
1863
|
/**
|
|
1864
1864
|
*
|
|
1865
1865
|
* @type {string}
|
|
1866
1866
|
* @memberof PipelineEntity
|
|
1867
1867
|
*/
|
|
1868
|
-
createdAt: string;
|
|
1868
|
+
'createdAt': string;
|
|
1869
1869
|
/**
|
|
1870
1870
|
*
|
|
1871
1871
|
* @type {string}
|
|
1872
1872
|
* @memberof PipelineEntity
|
|
1873
1873
|
*/
|
|
1874
|
-
updatedAt: string;
|
|
1874
|
+
'updatedAt': string;
|
|
1875
1875
|
/**
|
|
1876
1876
|
*
|
|
1877
1877
|
* @type {object}
|
|
1878
1878
|
* @memberof PipelineEntity
|
|
1879
1879
|
*/
|
|
1880
|
-
permissions: object;
|
|
1880
|
+
'permissions': object;
|
|
1881
1881
|
/**
|
|
1882
1882
|
*
|
|
1883
1883
|
* @type {object}
|
|
1884
1884
|
* @memberof PipelineEntity
|
|
1885
1885
|
*/
|
|
1886
|
-
state: object;
|
|
1886
|
+
'state': object;
|
|
1887
1887
|
/**
|
|
1888
1888
|
*
|
|
1889
1889
|
* @type {string}
|
|
1890
1890
|
* @memberof PipelineEntity
|
|
1891
1891
|
*/
|
|
1892
|
-
status: PipelineEntityStatusEnum;
|
|
1892
|
+
'status': PipelineEntityStatusEnum;
|
|
1893
1893
|
/**
|
|
1894
1894
|
*
|
|
1895
1895
|
* @type {object}
|
|
1896
1896
|
* @memberof PipelineEntity
|
|
1897
1897
|
*/
|
|
1898
|
-
tasks: object;
|
|
1898
|
+
'tasks': object;
|
|
1899
1899
|
}
|
|
1900
1900
|
export declare const PipelineEntityKindEnum: {
|
|
1901
1901
|
readonly Collection: "collection";
|
|
@@ -1906,13 +1906,13 @@ export declare const PipelineEntityKindEnum: {
|
|
|
1906
1906
|
readonly Storage: "storage";
|
|
1907
1907
|
readonly Pipeline: "pipeline";
|
|
1908
1908
|
};
|
|
1909
|
-
export type PipelineEntityKindEnum =
|
|
1909
|
+
export type PipelineEntityKindEnum = typeof PipelineEntityKindEnum[keyof typeof PipelineEntityKindEnum];
|
|
1910
1910
|
export declare const PipelineEntityStatusEnum: {
|
|
1911
1911
|
readonly Pending: "pending";
|
|
1912
1912
|
readonly Completed: "completed";
|
|
1913
1913
|
readonly Failed: "failed";
|
|
1914
1914
|
};
|
|
1915
|
-
export type PipelineEntityStatusEnum =
|
|
1915
|
+
export type PipelineEntityStatusEnum = typeof PipelineEntityStatusEnum[keyof typeof PipelineEntityStatusEnum];
|
|
1916
1916
|
/**
|
|
1917
1917
|
*
|
|
1918
1918
|
* @export
|
|
@@ -1924,55 +1924,55 @@ export interface PoseEntity {
|
|
|
1924
1924
|
* @type {string}
|
|
1925
1925
|
* @memberof PoseEntity
|
|
1926
1926
|
*/
|
|
1927
|
-
kind: PoseEntityKindEnum;
|
|
1927
|
+
'kind': PoseEntityKindEnum;
|
|
1928
1928
|
/**
|
|
1929
1929
|
*
|
|
1930
1930
|
* @type {string}
|
|
1931
1931
|
* @memberof PoseEntity
|
|
1932
1932
|
*/
|
|
1933
|
-
id: string;
|
|
1933
|
+
'id': string;
|
|
1934
1934
|
/**
|
|
1935
1935
|
*
|
|
1936
1936
|
* @type {string}
|
|
1937
1937
|
* @memberof PoseEntity
|
|
1938
1938
|
*/
|
|
1939
|
-
creatorId: string;
|
|
1939
|
+
'creatorId': string;
|
|
1940
1940
|
/**
|
|
1941
1941
|
*
|
|
1942
1942
|
* @type {object}
|
|
1943
1943
|
* @memberof PoseEntity
|
|
1944
1944
|
*/
|
|
1945
|
-
metadata: object;
|
|
1945
|
+
'metadata': object;
|
|
1946
1946
|
/**
|
|
1947
1947
|
*
|
|
1948
1948
|
* @type {string}
|
|
1949
1949
|
* @memberof PoseEntity
|
|
1950
1950
|
*/
|
|
1951
|
-
createdAt: string;
|
|
1951
|
+
'createdAt': string;
|
|
1952
1952
|
/**
|
|
1953
1953
|
*
|
|
1954
1954
|
* @type {string}
|
|
1955
1955
|
* @memberof PoseEntity
|
|
1956
1956
|
*/
|
|
1957
|
-
updatedAt: string;
|
|
1957
|
+
'updatedAt': string;
|
|
1958
1958
|
/**
|
|
1959
1959
|
*
|
|
1960
1960
|
* @type {ImageEntity}
|
|
1961
1961
|
* @memberof PoseEntity
|
|
1962
1962
|
*/
|
|
1963
|
-
sourceImage: ImageEntity;
|
|
1963
|
+
'sourceImage': ImageEntity;
|
|
1964
1964
|
/**
|
|
1965
1965
|
*
|
|
1966
1966
|
* @type {ImageEntity}
|
|
1967
1967
|
* @memberof PoseEntity
|
|
1968
1968
|
*/
|
|
1969
|
-
previewImage?: ImageEntity;
|
|
1969
|
+
'previewImage'?: ImageEntity;
|
|
1970
1970
|
/**
|
|
1971
1971
|
*
|
|
1972
1972
|
* @type {string}
|
|
1973
1973
|
* @memberof PoseEntity
|
|
1974
1974
|
*/
|
|
1975
|
-
previewImageId?: string;
|
|
1975
|
+
'previewImageId'?: string;
|
|
1976
1976
|
}
|
|
1977
1977
|
export declare const PoseEntityKindEnum: {
|
|
1978
1978
|
readonly Collection: "collection";
|
|
@@ -1983,7 +1983,7 @@ export declare const PoseEntityKindEnum: {
|
|
|
1983
1983
|
readonly Storage: "storage";
|
|
1984
1984
|
readonly Pipeline: "pipeline";
|
|
1985
1985
|
};
|
|
1986
|
-
export type PoseEntityKindEnum =
|
|
1986
|
+
export type PoseEntityKindEnum = typeof PoseEntityKindEnum[keyof typeof PoseEntityKindEnum];
|
|
1987
1987
|
/**
|
|
1988
1988
|
*
|
|
1989
1989
|
* @export
|
|
@@ -1995,13 +1995,13 @@ export interface PoseEstimationV1ControllerInput {
|
|
|
1995
1995
|
* @type {PoseEstimationV1Input}
|
|
1996
1996
|
* @memberof PoseEstimationV1ControllerInput
|
|
1997
1997
|
*/
|
|
1998
|
-
input: PoseEstimationV1Input;
|
|
1998
|
+
'input': PoseEstimationV1Input;
|
|
1999
1999
|
/**
|
|
2000
2000
|
*
|
|
2001
2001
|
* @type {object}
|
|
2002
2002
|
* @memberof PoseEstimationV1ControllerInput
|
|
2003
2003
|
*/
|
|
2004
|
-
metadata?: object;
|
|
2004
|
+
'metadata'?: object;
|
|
2005
2005
|
}
|
|
2006
2006
|
/**
|
|
2007
2007
|
*
|
|
@@ -2014,7 +2014,7 @@ export interface PoseEstimationV1Input {
|
|
|
2014
2014
|
* @type {string}
|
|
2015
2015
|
* @memberof PoseEstimationV1Input
|
|
2016
2016
|
*/
|
|
2017
|
-
imageId: string;
|
|
2017
|
+
'imageId': string;
|
|
2018
2018
|
}
|
|
2019
2019
|
/**
|
|
2020
2020
|
*
|
|
@@ -2027,20 +2027,20 @@ export interface RemoveAccountFromGroupControllerParamsDto {
|
|
|
2027
2027
|
* @type {string}
|
|
2028
2028
|
* @memberof RemoveAccountFromGroupControllerParamsDto
|
|
2029
2029
|
*/
|
|
2030
|
-
accountId: string;
|
|
2030
|
+
'accountId': string;
|
|
2031
2031
|
/**
|
|
2032
2032
|
*
|
|
2033
2033
|
* @type {string}
|
|
2034
2034
|
* @memberof RemoveAccountFromGroupControllerParamsDto
|
|
2035
2035
|
*/
|
|
2036
|
-
role: RemoveAccountFromGroupControllerParamsDtoRoleEnum;
|
|
2036
|
+
'role': RemoveAccountFromGroupControllerParamsDtoRoleEnum;
|
|
2037
2037
|
}
|
|
2038
2038
|
export declare const RemoveAccountFromGroupControllerParamsDtoRoleEnum: {
|
|
2039
2039
|
readonly Maintainer: "maintainer";
|
|
2040
2040
|
readonly Member: "member";
|
|
2041
2041
|
readonly Owner: "owner";
|
|
2042
2042
|
};
|
|
2043
|
-
export type RemoveAccountFromGroupControllerParamsDtoRoleEnum =
|
|
2043
|
+
export type RemoveAccountFromGroupControllerParamsDtoRoleEnum = typeof RemoveAccountFromGroupControllerParamsDtoRoleEnum[keyof typeof RemoveAccountFromGroupControllerParamsDtoRoleEnum];
|
|
2044
2044
|
/**
|
|
2045
2045
|
*
|
|
2046
2046
|
* @export
|
|
@@ -2052,26 +2052,26 @@ export interface RemoveAccountFromGroupParamsDto {
|
|
|
2052
2052
|
* @type {string}
|
|
2053
2053
|
* @memberof RemoveAccountFromGroupParamsDto
|
|
2054
2054
|
*/
|
|
2055
|
-
accountId: string;
|
|
2055
|
+
'accountId': string;
|
|
2056
2056
|
/**
|
|
2057
2057
|
*
|
|
2058
2058
|
* @type {string}
|
|
2059
2059
|
* @memberof RemoveAccountFromGroupParamsDto
|
|
2060
2060
|
*/
|
|
2061
|
-
groupId: string;
|
|
2061
|
+
'groupId': string;
|
|
2062
2062
|
/**
|
|
2063
2063
|
*
|
|
2064
2064
|
* @type {string}
|
|
2065
2065
|
* @memberof RemoveAccountFromGroupParamsDto
|
|
2066
2066
|
*/
|
|
2067
|
-
role: RemoveAccountFromGroupParamsDtoRoleEnum;
|
|
2067
|
+
'role': RemoveAccountFromGroupParamsDtoRoleEnum;
|
|
2068
2068
|
}
|
|
2069
2069
|
export declare const RemoveAccountFromGroupParamsDtoRoleEnum: {
|
|
2070
2070
|
readonly Maintainer: "maintainer";
|
|
2071
2071
|
readonly Member: "member";
|
|
2072
2072
|
readonly Owner: "owner";
|
|
2073
2073
|
};
|
|
2074
|
-
export type RemoveAccountFromGroupParamsDtoRoleEnum =
|
|
2074
|
+
export type RemoveAccountFromGroupParamsDtoRoleEnum = typeof RemoveAccountFromGroupParamsDtoRoleEnum[keyof typeof RemoveAccountFromGroupParamsDtoRoleEnum];
|
|
2075
2075
|
/**
|
|
2076
2076
|
*
|
|
2077
2077
|
* @export
|
|
@@ -2083,7 +2083,7 @@ export interface RemoveItemsFromCollectionControllerParamsDto {
|
|
|
2083
2083
|
* @type {Array<string>}
|
|
2084
2084
|
* @memberof RemoveItemsFromCollectionControllerParamsDto
|
|
2085
2085
|
*/
|
|
2086
|
-
itemIds: Array<string>;
|
|
2086
|
+
'itemIds': Array<string>;
|
|
2087
2087
|
}
|
|
2088
2088
|
/**
|
|
2089
2089
|
*
|
|
@@ -2096,13 +2096,13 @@ export interface RemoveItemsFromCollectionParamsDto {
|
|
|
2096
2096
|
* @type {string}
|
|
2097
2097
|
* @memberof RemoveItemsFromCollectionParamsDto
|
|
2098
2098
|
*/
|
|
2099
|
-
collectionId: string;
|
|
2099
|
+
'collectionId': string;
|
|
2100
2100
|
/**
|
|
2101
2101
|
*
|
|
2102
2102
|
* @type {Array<string>}
|
|
2103
2103
|
* @memberof RemoveItemsFromCollectionParamsDto
|
|
2104
2104
|
*/
|
|
2105
|
-
itemIds: Array<string>;
|
|
2105
|
+
'itemIds': Array<string>;
|
|
2106
2106
|
}
|
|
2107
2107
|
/**
|
|
2108
2108
|
*
|
|
@@ -2115,13 +2115,13 @@ export interface RemoveItemsFromStackParamsDto {
|
|
|
2115
2115
|
* @type {string}
|
|
2116
2116
|
* @memberof RemoveItemsFromStackParamsDto
|
|
2117
2117
|
*/
|
|
2118
|
-
stackId: string;
|
|
2118
|
+
'stackId': string;
|
|
2119
2119
|
/**
|
|
2120
2120
|
*
|
|
2121
2121
|
* @type {Array<string>}
|
|
2122
2122
|
* @memberof RemoveItemsFromStackParamsDto
|
|
2123
2123
|
*/
|
|
2124
|
-
itemIds: Array<string>;
|
|
2124
|
+
'itemIds': Array<string>;
|
|
2125
2125
|
}
|
|
2126
2126
|
/**
|
|
2127
2127
|
*
|
|
@@ -2134,37 +2134,37 @@ export interface ResourceEntity {
|
|
|
2134
2134
|
* @type {string}
|
|
2135
2135
|
* @memberof ResourceEntity
|
|
2136
2136
|
*/
|
|
2137
|
-
kind: ResourceEntityKindEnum;
|
|
2137
|
+
'kind': ResourceEntityKindEnum;
|
|
2138
2138
|
/**
|
|
2139
2139
|
*
|
|
2140
2140
|
* @type {string}
|
|
2141
2141
|
* @memberof ResourceEntity
|
|
2142
2142
|
*/
|
|
2143
|
-
id: string;
|
|
2143
|
+
'id': string;
|
|
2144
2144
|
/**
|
|
2145
2145
|
*
|
|
2146
2146
|
* @type {string}
|
|
2147
2147
|
* @memberof ResourceEntity
|
|
2148
2148
|
*/
|
|
2149
|
-
creatorId: string;
|
|
2149
|
+
'creatorId': string;
|
|
2150
2150
|
/**
|
|
2151
2151
|
*
|
|
2152
2152
|
* @type {object}
|
|
2153
2153
|
* @memberof ResourceEntity
|
|
2154
2154
|
*/
|
|
2155
|
-
metadata: object;
|
|
2155
|
+
'metadata': object;
|
|
2156
2156
|
/**
|
|
2157
2157
|
*
|
|
2158
2158
|
* @type {string}
|
|
2159
2159
|
* @memberof ResourceEntity
|
|
2160
2160
|
*/
|
|
2161
|
-
createdAt: string;
|
|
2161
|
+
'createdAt': string;
|
|
2162
2162
|
/**
|
|
2163
2163
|
*
|
|
2164
2164
|
* @type {string}
|
|
2165
2165
|
* @memberof ResourceEntity
|
|
2166
2166
|
*/
|
|
2167
|
-
updatedAt: string;
|
|
2167
|
+
'updatedAt': string;
|
|
2168
2168
|
}
|
|
2169
2169
|
export declare const ResourceEntityKindEnum: {
|
|
2170
2170
|
readonly Collection: "collection";
|
|
@@ -2175,7 +2175,7 @@ export declare const ResourceEntityKindEnum: {
|
|
|
2175
2175
|
readonly Storage: "storage";
|
|
2176
2176
|
readonly Pipeline: "pipeline";
|
|
2177
2177
|
};
|
|
2178
|
-
export type ResourceEntityKindEnum =
|
|
2178
|
+
export type ResourceEntityKindEnum = typeof ResourceEntityKindEnum[keyof typeof ResourceEntityKindEnum];
|
|
2179
2179
|
/**
|
|
2180
2180
|
*
|
|
2181
2181
|
* @export
|
|
@@ -2187,13 +2187,13 @@ export interface SegmentAnythingEmbeddingsV1ControllerInput {
|
|
|
2187
2187
|
* @type {SegmentAnythingEmbeddingsV1Input}
|
|
2188
2188
|
* @memberof SegmentAnythingEmbeddingsV1ControllerInput
|
|
2189
2189
|
*/
|
|
2190
|
-
input: SegmentAnythingEmbeddingsV1Input;
|
|
2190
|
+
'input': SegmentAnythingEmbeddingsV1Input;
|
|
2191
2191
|
/**
|
|
2192
2192
|
*
|
|
2193
2193
|
* @type {object}
|
|
2194
2194
|
* @memberof SegmentAnythingEmbeddingsV1ControllerInput
|
|
2195
2195
|
*/
|
|
2196
|
-
metadata?: object;
|
|
2196
|
+
'metadata'?: object;
|
|
2197
2197
|
}
|
|
2198
2198
|
/**
|
|
2199
2199
|
*
|
|
@@ -2206,7 +2206,7 @@ export interface SegmentAnythingEmbeddingsV1Input {
|
|
|
2206
2206
|
* @type {string}
|
|
2207
2207
|
* @memberof SegmentAnythingEmbeddingsV1Input
|
|
2208
2208
|
*/
|
|
2209
|
-
imageId: string;
|
|
2209
|
+
'imageId': string;
|
|
2210
2210
|
}
|
|
2211
2211
|
/**
|
|
2212
2212
|
*
|
|
@@ -2219,13 +2219,13 @@ export interface SegmentAnythingMaskV1ControllerInput {
|
|
|
2219
2219
|
* @type {SegmentAnythingMaskV1Input}
|
|
2220
2220
|
* @memberof SegmentAnythingMaskV1ControllerInput
|
|
2221
2221
|
*/
|
|
2222
|
-
input: SegmentAnythingMaskV1Input;
|
|
2222
|
+
'input': SegmentAnythingMaskV1Input;
|
|
2223
2223
|
/**
|
|
2224
2224
|
*
|
|
2225
2225
|
* @type {object}
|
|
2226
2226
|
* @memberof SegmentAnythingMaskV1ControllerInput
|
|
2227
2227
|
*/
|
|
2228
|
-
metadata?: object;
|
|
2228
|
+
'metadata'?: object;
|
|
2229
2229
|
}
|
|
2230
2230
|
/**
|
|
2231
2231
|
*
|
|
@@ -2238,13 +2238,13 @@ export interface SegmentAnythingMaskV1Input {
|
|
|
2238
2238
|
* @type {string}
|
|
2239
2239
|
* @memberof SegmentAnythingMaskV1Input
|
|
2240
2240
|
*/
|
|
2241
|
-
imageId: string;
|
|
2241
|
+
'imageId': string;
|
|
2242
2242
|
/**
|
|
2243
2243
|
*
|
|
2244
2244
|
* @type {Array<number>}
|
|
2245
2245
|
* @memberof SegmentAnythingMaskV1Input
|
|
2246
2246
|
*/
|
|
2247
|
-
box: Array<number>;
|
|
2247
|
+
'box': Array<number>;
|
|
2248
2248
|
}
|
|
2249
2249
|
/**
|
|
2250
2250
|
*
|
|
@@ -2257,7 +2257,7 @@ export interface SetPosePreviewControllerParamsDto {
|
|
|
2257
2257
|
* @type {string}
|
|
2258
2258
|
* @memberof SetPosePreviewControllerParamsDto
|
|
2259
2259
|
*/
|
|
2260
|
-
previewImageId: string;
|
|
2260
|
+
'previewImageId': string;
|
|
2261
2261
|
}
|
|
2262
2262
|
/**
|
|
2263
2263
|
*
|
|
@@ -2270,13 +2270,13 @@ export interface SetPosePreviewDto {
|
|
|
2270
2270
|
* @type {string}
|
|
2271
2271
|
* @memberof SetPosePreviewDto
|
|
2272
2272
|
*/
|
|
2273
|
-
poseId: string;
|
|
2273
|
+
'poseId': string;
|
|
2274
2274
|
/**
|
|
2275
2275
|
*
|
|
2276
2276
|
* @type {string}
|
|
2277
2277
|
* @memberof SetPosePreviewDto
|
|
2278
2278
|
*/
|
|
2279
|
-
previewImageId: string;
|
|
2279
|
+
'previewImageId': string;
|
|
2280
2280
|
}
|
|
2281
2281
|
/**
|
|
2282
2282
|
*
|
|
@@ -2289,48 +2289,48 @@ export interface StackEntity {
|
|
|
2289
2289
|
* @type {string}
|
|
2290
2290
|
* @memberof StackEntity
|
|
2291
2291
|
*/
|
|
2292
|
-
kind: StackEntityKindEnum;
|
|
2292
|
+
'kind': StackEntityKindEnum;
|
|
2293
2293
|
/**
|
|
2294
2294
|
*
|
|
2295
2295
|
* @type {Array<StackEntityItemsInner>}
|
|
2296
2296
|
* @memberof StackEntity
|
|
2297
2297
|
*/
|
|
2298
|
-
items: Array<StackEntityItemsInner>;
|
|
2298
|
+
'items': Array<StackEntityItemsInner>;
|
|
2299
2299
|
/**
|
|
2300
2300
|
*
|
|
2301
2301
|
* @type {string}
|
|
2302
2302
|
* @memberof StackEntity
|
|
2303
2303
|
*/
|
|
2304
|
-
id: string;
|
|
2304
|
+
'id': string;
|
|
2305
2305
|
/**
|
|
2306
2306
|
*
|
|
2307
2307
|
* @type {string}
|
|
2308
2308
|
* @memberof StackEntity
|
|
2309
2309
|
*/
|
|
2310
|
-
creatorId: string;
|
|
2310
|
+
'creatorId': string;
|
|
2311
2311
|
/**
|
|
2312
2312
|
*
|
|
2313
2313
|
* @type {object}
|
|
2314
2314
|
* @memberof StackEntity
|
|
2315
2315
|
*/
|
|
2316
|
-
metadata: object;
|
|
2316
|
+
'metadata': object;
|
|
2317
2317
|
/**
|
|
2318
2318
|
*
|
|
2319
2319
|
* @type {string}
|
|
2320
2320
|
* @memberof StackEntity
|
|
2321
2321
|
*/
|
|
2322
|
-
createdAt: string;
|
|
2322
|
+
'createdAt': string;
|
|
2323
2323
|
/**
|
|
2324
2324
|
*
|
|
2325
2325
|
* @type {string}
|
|
2326
2326
|
* @memberof StackEntity
|
|
2327
2327
|
*/
|
|
2328
|
-
updatedAt: string;
|
|
2328
|
+
'updatedAt': string;
|
|
2329
2329
|
}
|
|
2330
2330
|
export declare const StackEntityKindEnum: {
|
|
2331
2331
|
readonly Stack: "stack";
|
|
2332
2332
|
};
|
|
2333
|
-
export type StackEntityKindEnum =
|
|
2333
|
+
export type StackEntityKindEnum = typeof StackEntityKindEnum[keyof typeof StackEntityKindEnum];
|
|
2334
2334
|
/**
|
|
2335
2335
|
* @type StackEntityItemsInner
|
|
2336
2336
|
* @export
|
|
@@ -2347,49 +2347,49 @@ export interface StorageEntity {
|
|
|
2347
2347
|
* @type {string}
|
|
2348
2348
|
* @memberof StorageEntity
|
|
2349
2349
|
*/
|
|
2350
|
-
kind: StorageEntityKindEnum;
|
|
2350
|
+
'kind': StorageEntityKindEnum;
|
|
2351
2351
|
/**
|
|
2352
2352
|
*
|
|
2353
2353
|
* @type {string}
|
|
2354
2354
|
* @memberof StorageEntity
|
|
2355
2355
|
*/
|
|
2356
|
-
id: string;
|
|
2356
|
+
'id': string;
|
|
2357
2357
|
/**
|
|
2358
2358
|
*
|
|
2359
2359
|
* @type {string}
|
|
2360
2360
|
* @memberof StorageEntity
|
|
2361
2361
|
*/
|
|
2362
|
-
creatorId: string;
|
|
2362
|
+
'creatorId': string;
|
|
2363
2363
|
/**
|
|
2364
2364
|
*
|
|
2365
2365
|
* @type {object}
|
|
2366
2366
|
* @memberof StorageEntity
|
|
2367
2367
|
*/
|
|
2368
|
-
metadata: object;
|
|
2368
|
+
'metadata': object;
|
|
2369
2369
|
/**
|
|
2370
2370
|
*
|
|
2371
2371
|
* @type {string}
|
|
2372
2372
|
* @memberof StorageEntity
|
|
2373
2373
|
*/
|
|
2374
|
-
createdAt: string;
|
|
2374
|
+
'createdAt': string;
|
|
2375
2375
|
/**
|
|
2376
2376
|
*
|
|
2377
2377
|
* @type {string}
|
|
2378
2378
|
* @memberof StorageEntity
|
|
2379
2379
|
*/
|
|
2380
|
-
updatedAt: string;
|
|
2380
|
+
'updatedAt': string;
|
|
2381
2381
|
/**
|
|
2382
2382
|
*
|
|
2383
2383
|
* @type {string}
|
|
2384
2384
|
* @memberof StorageEntity
|
|
2385
2385
|
*/
|
|
2386
|
-
key: string;
|
|
2386
|
+
'key': string;
|
|
2387
2387
|
/**
|
|
2388
2388
|
*
|
|
2389
2389
|
* @type {object}
|
|
2390
2390
|
* @memberof StorageEntity
|
|
2391
2391
|
*/
|
|
2392
|
-
value: object;
|
|
2392
|
+
'value': object;
|
|
2393
2393
|
}
|
|
2394
2394
|
export declare const StorageEntityKindEnum: {
|
|
2395
2395
|
readonly Collection: "collection";
|
|
@@ -2400,7 +2400,7 @@ export declare const StorageEntityKindEnum: {
|
|
|
2400
2400
|
readonly Storage: "storage";
|
|
2401
2401
|
readonly Pipeline: "pipeline";
|
|
2402
2402
|
};
|
|
2403
|
-
export type StorageEntityKindEnum =
|
|
2403
|
+
export type StorageEntityKindEnum = typeof StorageEntityKindEnum[keyof typeof StorageEntityKindEnum];
|
|
2404
2404
|
/**
|
|
2405
2405
|
*
|
|
2406
2406
|
* @export
|
|
@@ -2412,13 +2412,13 @@ export interface StorageRecordsResultDto {
|
|
|
2412
2412
|
* @type {string}
|
|
2413
2413
|
* @memberof StorageRecordsResultDto
|
|
2414
2414
|
*/
|
|
2415
|
-
key: string;
|
|
2415
|
+
'key': string;
|
|
2416
2416
|
/**
|
|
2417
2417
|
*
|
|
2418
2418
|
* @type {object}
|
|
2419
2419
|
* @memberof StorageRecordsResultDto
|
|
2420
2420
|
*/
|
|
2421
|
-
value: object;
|
|
2421
|
+
'value': object;
|
|
2422
2422
|
}
|
|
2423
2423
|
/**
|
|
2424
2424
|
*
|
|
@@ -2431,7 +2431,7 @@ export interface UpdateMetadataDto {
|
|
|
2431
2431
|
* @type {object}
|
|
2432
2432
|
* @memberof UpdateMetadataDto
|
|
2433
2433
|
*/
|
|
2434
|
-
overwrite: object;
|
|
2434
|
+
'overwrite': object;
|
|
2435
2435
|
}
|
|
2436
2436
|
/**
|
|
2437
2437
|
*
|
|
@@ -2444,13 +2444,13 @@ export interface UpdateResourceMetadataDto {
|
|
|
2444
2444
|
* @type {string}
|
|
2445
2445
|
* @memberof UpdateResourceMetadataDto
|
|
2446
2446
|
*/
|
|
2447
|
-
id: string;
|
|
2447
|
+
'id': string;
|
|
2448
2448
|
/**
|
|
2449
2449
|
*
|
|
2450
2450
|
* @type {UpdateMetadataDto}
|
|
2451
2451
|
* @memberof UpdateResourceMetadataDto
|
|
2452
2452
|
*/
|
|
2453
|
-
update: UpdateMetadataDto;
|
|
2453
|
+
'update': UpdateMetadataDto;
|
|
2454
2454
|
}
|
|
2455
2455
|
/**
|
|
2456
2456
|
*
|
|
@@ -2463,13 +2463,13 @@ export interface UpdateStorageRecordParamsDto {
|
|
|
2463
2463
|
* @type {string}
|
|
2464
2464
|
* @memberof UpdateStorageRecordParamsDto
|
|
2465
2465
|
*/
|
|
2466
|
-
key: string;
|
|
2466
|
+
'key': string;
|
|
2467
2467
|
/**
|
|
2468
2468
|
*
|
|
2469
2469
|
* @type {object}
|
|
2470
2470
|
* @memberof UpdateStorageRecordParamsDto
|
|
2471
2471
|
*/
|
|
2472
|
-
value: object;
|
|
2472
|
+
'value': object;
|
|
2473
2473
|
}
|
|
2474
2474
|
/**
|
|
2475
2475
|
*
|
|
@@ -2482,13 +2482,13 @@ export interface UpscaleV1ControllerInput {
|
|
|
2482
2482
|
* @type {UpscaleV1Input}
|
|
2483
2483
|
* @memberof UpscaleV1ControllerInput
|
|
2484
2484
|
*/
|
|
2485
|
-
input: UpscaleV1Input;
|
|
2485
|
+
'input': UpscaleV1Input;
|
|
2486
2486
|
/**
|
|
2487
2487
|
*
|
|
2488
2488
|
* @type {object}
|
|
2489
2489
|
* @memberof UpscaleV1ControllerInput
|
|
2490
2490
|
*/
|
|
2491
|
-
metadata?: object;
|
|
2491
|
+
'metadata'?: object;
|
|
2492
2492
|
}
|
|
2493
2493
|
/**
|
|
2494
2494
|
*
|
|
@@ -2501,7 +2501,7 @@ export interface UpscaleV1Input {
|
|
|
2501
2501
|
* @type {string}
|
|
2502
2502
|
* @memberof UpscaleV1Input
|
|
2503
2503
|
*/
|
|
2504
|
-
imageId: string;
|
|
2504
|
+
'imageId': string;
|
|
2505
2505
|
}
|
|
2506
2506
|
/**
|
|
2507
2507
|
* AccessApi - axios parameter creator
|
|
@@ -2777,7 +2777,7 @@ export declare const AccountsControllerListAccointsV1OrderByEnum: {
|
|
|
2777
2777
|
readonly Asc: "createdAt_ASC";
|
|
2778
2778
|
readonly Desc: "createdAt_DESC";
|
|
2779
2779
|
};
|
|
2780
|
-
export type AccountsControllerListAccointsV1OrderByEnum =
|
|
2780
|
+
export type AccountsControllerListAccointsV1OrderByEnum = typeof AccountsControllerListAccointsV1OrderByEnum[keyof typeof AccountsControllerListAccointsV1OrderByEnum];
|
|
2781
2781
|
/**
|
|
2782
2782
|
* BalancesApi - axios parameter creator
|
|
2783
2783
|
* @export
|
|
@@ -4380,7 +4380,7 @@ export declare const CollectionsControllerListCollectionsV1OrderByEnum: {
|
|
|
4380
4380
|
readonly UpdatedAtAsc: "updatedAt_ASC";
|
|
4381
4381
|
readonly UpdatedAtDesc: "updatedAt_DESC";
|
|
4382
4382
|
};
|
|
4383
|
-
export type CollectionsControllerListCollectionsV1OrderByEnum =
|
|
4383
|
+
export type CollectionsControllerListCollectionsV1OrderByEnum = typeof CollectionsControllerListCollectionsV1OrderByEnum[keyof typeof CollectionsControllerListCollectionsV1OrderByEnum];
|
|
4384
4384
|
/**
|
|
4385
4385
|
* @export
|
|
4386
4386
|
*/
|
|
@@ -4390,7 +4390,7 @@ export declare const CollectionsControllerListItemsV1OrderByEnum: {
|
|
|
4390
4390
|
readonly UpdatedAtAsc: "updatedAt_ASC";
|
|
4391
4391
|
readonly UpdatedAtDesc: "updatedAt_DESC";
|
|
4392
4392
|
};
|
|
4393
|
-
export type CollectionsControllerListItemsV1OrderByEnum =
|
|
4393
|
+
export type CollectionsControllerListItemsV1OrderByEnum = typeof CollectionsControllerListItemsV1OrderByEnum[keyof typeof CollectionsControllerListItemsV1OrderByEnum];
|
|
4394
4394
|
/**
|
|
4395
4395
|
* @export
|
|
4396
4396
|
*/
|
|
@@ -4403,7 +4403,7 @@ export declare const CollectionsControllerListItemsV1KindEnum: {
|
|
|
4403
4403
|
readonly Storage: "storage";
|
|
4404
4404
|
readonly Pipeline: "pipeline";
|
|
4405
4405
|
};
|
|
4406
|
-
export type CollectionsControllerListItemsV1KindEnum =
|
|
4406
|
+
export type CollectionsControllerListItemsV1KindEnum = typeof CollectionsControllerListItemsV1KindEnum[keyof typeof CollectionsControllerListItemsV1KindEnum];
|
|
4407
4407
|
/**
|
|
4408
4408
|
* GroupsApi - axios parameter creator
|
|
4409
4409
|
* @export
|
|
@@ -5290,7 +5290,7 @@ export declare const OperationsControllerListOperationsV1OrderByEnum: {
|
|
|
5290
5290
|
readonly UpdatedAtAsc: "updatedAt_ASC";
|
|
5291
5291
|
readonly UpdatedAtDesc: "updatedAt_DESC";
|
|
5292
5292
|
};
|
|
5293
|
-
export type OperationsControllerListOperationsV1OrderByEnum =
|
|
5293
|
+
export type OperationsControllerListOperationsV1OrderByEnum = typeof OperationsControllerListOperationsV1OrderByEnum[keyof typeof OperationsControllerListOperationsV1OrderByEnum];
|
|
5294
5294
|
/**
|
|
5295
5295
|
* PermissionsApi - axios parameter creator
|
|
5296
5296
|
* @export
|
|
@@ -5470,7 +5470,7 @@ export declare const PipelinesControllerListPipelinesV1OrderByEnum: {
|
|
|
5470
5470
|
readonly Asc: "createdAt_ASC";
|
|
5471
5471
|
readonly Desc: "createdAt_DESC";
|
|
5472
5472
|
};
|
|
5473
|
-
export type PipelinesControllerListPipelinesV1OrderByEnum =
|
|
5473
|
+
export type PipelinesControllerListPipelinesV1OrderByEnum = typeof PipelinesControllerListPipelinesV1OrderByEnum[keyof typeof PipelinesControllerListPipelinesV1OrderByEnum];
|
|
5474
5474
|
/**
|
|
5475
5475
|
* PosesApi - axios parameter creator
|
|
5476
5476
|
* @export
|
|
@@ -5603,7 +5603,7 @@ export declare const PosesControllerListPosesV1OrderByEnum: {
|
|
|
5603
5603
|
readonly Asc: "createdAt_ASC";
|
|
5604
5604
|
readonly Desc: "createdAt_DESC";
|
|
5605
5605
|
};
|
|
5606
|
-
export type PosesControllerListPosesV1OrderByEnum =
|
|
5606
|
+
export type PosesControllerListPosesV1OrderByEnum = typeof PosesControllerListPosesV1OrderByEnum[keyof typeof PosesControllerListPosesV1OrderByEnum];
|
|
5607
5607
|
/**
|
|
5608
5608
|
* StacksApi - axios parameter creator
|
|
5609
5609
|
* @export
|
|
@@ -5833,7 +5833,7 @@ export declare const StacksControllerListStacksV1OrderByEnum: {
|
|
|
5833
5833
|
readonly UpdatedAtAsc: "updatedAt_ASC";
|
|
5834
5834
|
readonly UpdatedAtDesc: "updatedAt_DESC";
|
|
5835
5835
|
};
|
|
5836
|
-
export type StacksControllerListStacksV1OrderByEnum =
|
|
5836
|
+
export type StacksControllerListStacksV1OrderByEnum = typeof StacksControllerListStacksV1OrderByEnum[keyof typeof StacksControllerListStacksV1OrderByEnum];
|
|
5837
5837
|
/**
|
|
5838
5838
|
* StorageApi - axios parameter creator
|
|
5839
5839
|
* @export
|