@hautechai/sdk 0.0.19 → 0.0.21

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.
@@ -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 = 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
- '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 = 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
- 'amount': string;
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
- 'itemIds': Array<string>;
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
- 'collectionId': string;
152
+ collectionId: string;
103
153
  /**
104
154
  *
105
155
  * @type {Array<string>}
106
156
  * @memberof AddItemsToCollectionParamsDto
107
157
  */
108
- 'itemIds': Array<string>;
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
- 'itemIds': Array<string>;
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
- 'parentResourceId': string;
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
- 'balance': string;
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
- 'kind': number;
248
+ kind: number;
161
249
  /**
162
250
  *
163
251
  * @type {string}
164
252
  * @memberof CollectionEntity
165
253
  */
166
- 'id': string;
254
+ id: string;
167
255
  /**
168
256
  *
169
257
  * @type {string}
170
258
  * @memberof CollectionEntity
171
259
  */
172
- 'creatorId': string;
260
+ creatorId: string;
173
261
  /**
174
262
  *
175
263
  * @type {object}
176
264
  * @memberof CollectionEntity
177
265
  */
178
- 'metadata': object;
266
+ metadata: object;
179
267
  /**
180
268
  *
181
269
  * @type {string}
182
270
  * @memberof CollectionEntity
183
271
  */
184
- 'createdAt': string;
272
+ createdAt: string;
185
273
  /**
186
274
  *
187
275
  * @type {string}
188
276
  * @memberof CollectionEntity
189
277
  */
190
- 'updatedAt': string;
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
- 'imageId': string;
291
+ imageId: string;
204
292
  /**
205
293
  *
206
294
  * @type {number}
207
295
  * @memberof CompositeElement
208
296
  */
209
- 'left': number;
297
+ left: number;
210
298
  /**
211
299
  *
212
300
  * @type {number}
213
301
  * @memberof CompositeElement
214
302
  */
215
- 'top': number;
303
+ top: number;
216
304
  /**
217
305
  *
218
306
  * @type {number}
219
307
  * @memberof CompositeElement
220
308
  */
221
- 'width': number;
309
+ width: number;
222
310
  /**
223
311
  *
224
312
  * @type {number}
225
313
  * @memberof CompositeElement
226
314
  */
227
- 'height': number;
315
+ height: number;
228
316
  /**
229
317
  *
230
318
  * @type {string}
231
319
  * @memberof CompositeElement
232
320
  */
233
- 'fit': CompositeElementFitEnum;
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
- 'input': CompositeV1Input;
342
+ input: CompositeV1Input;
255
343
  /**
256
344
  *
257
345
  * @type {object}
258
346
  * @memberof CompositeV1ControllerInput
259
347
  */
260
- 'metadata'?: object;
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
- 'width': number;
361
+ width: number;
274
362
  /**
275
363
  *
276
364
  * @type {number}
277
365
  * @memberof CompositeV1Input
278
366
  */
279
- 'height': number;
367
+ height: number;
280
368
  /**
281
369
  *
282
370
  * @type {string}
283
371
  * @memberof CompositeV1Input
284
372
  */
285
- 'background': string;
373
+ background: string;
286
374
  /**
287
375
  *
288
376
  * @type {Array<CompositeElement>}
289
377
  * @memberof CompositeV1Input
290
378
  */
291
- 'elements': Array<CompositeElement>;
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
- 'alias'?: string;
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
- 'metadata'?: object;
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
- 'fileToken'?: string;
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
- 'metadata'?: object;
431
+ metadata?: object;
344
432
  /**
345
433
  *
346
434
  * @type {object}
347
435
  * @memberof CreatePipelineParamsDto
348
436
  */
349
- 'tasks': object;
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
- 'metadata'?: object;
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
- 'key': string;
463
+ key: string;
376
464
  /**
377
465
  *
378
466
  * @type {object}
379
467
  * @memberof CreateStorageRecordParamsDto
380
468
  */
381
- 'value': object;
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
- 'input': CutV1Input;
482
+ input: CutV1Input;
395
483
  /**
396
484
  *
397
485
  * @type {object}
398
486
  * @memberof CutV1ControllerInput
399
487
  */
400
- 'metadata'?: object;
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
- 'imageId': string;
501
+ imageId: string;
414
502
  /**
415
503
  *
416
504
  * @type {string}
417
505
  * @memberof CutV1Input
418
506
  */
419
- 'maskImageId': string;
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
- 'key': string;
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
- 'input': GPTV1Input;
546
+ input: GPTV1Input;
446
547
  /**
447
548
  *
448
549
  * @type {object}
449
550
  * @memberof GPTV1ControllerInput
450
551
  */
451
- 'metadata'?: object;
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
- 'model'?: GPTV1InputModelEnum;
565
+ model?: GPTV1InputModelEnum;
465
566
  /**
466
567
  *
467
568
  * @type {string}
468
569
  * @memberof GPTV1Input
469
570
  */
470
- 'prompt': string;
571
+ prompt: string;
471
572
  /**
472
573
  *
473
574
  * @type {string}
474
575
  * @memberof GPTV1Input
475
576
  */
476
- 'imageId'?: string;
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
- 'collectionId': string;
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
- 'ids': Array<string>;
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
- 'keys': Array<string>;
740
+ keys: Array<string>;
520
741
  }
521
742
  /**
522
743
  *
@@ -529,7 +750,7 @@ export interface GetUrlsForImagesParamsDto {
529
750
  * @type {Array<string>}
530
751
  * @memberof GetUrlsForImagesParamsDto
531
752
  */
532
- 'ids': Array<string>;
753
+ ids: Array<string>;
533
754
  }
534
755
  /**
535
756
  *
@@ -542,13 +763,13 @@ export interface GiseleVtonV1ControllerInput {
542
763
  * @type {GiseleVtonV1Input}
543
764
  * @memberof GiseleVtonV1ControllerInput
544
765
  */
545
- 'input': GiseleVtonV1Input;
766
+ input: GiseleVtonV1Input;
546
767
  /**
547
768
  *
548
769
  * @type {object}
549
770
  * @memberof GiseleVtonV1ControllerInput
550
771
  */
551
- 'metadata'?: object;
772
+ metadata?: object;
552
773
  }
553
774
  /**
554
775
  *
@@ -561,38 +782,38 @@ export interface GiseleVtonV1Input {
561
782
  * @type {string}
562
783
  * @memberof GiseleVtonV1Input
563
784
  */
564
- 'category': GiseleVtonV1InputCategoryEnum;
785
+ category: GiseleVtonV1InputCategoryEnum;
565
786
  /**
566
787
  *
567
788
  * @type {string}
568
789
  * @memberof GiseleVtonV1Input
569
790
  */
570
- 'imageId': string;
791
+ imageId: string;
571
792
  /**
572
793
  *
573
794
  * @type {string}
574
795
  * @memberof GiseleVtonV1Input
575
796
  */
576
- 'productDescription': string;
797
+ productDescription: string;
577
798
  /**
578
799
  *
579
800
  * @type {string}
580
801
  * @memberof GiseleVtonV1Input
581
802
  */
582
- 'productImageId': string;
803
+ productImageId: string;
583
804
  /**
584
805
  *
585
806
  * @type {number}
586
807
  * @memberof GiseleVtonV1Input
587
808
  */
588
- 'seed': number;
809
+ seed: number;
589
810
  }
590
811
  export declare const GiseleVtonV1InputCategoryEnum: {
591
812
  readonly Dresses: "dresses";
592
813
  readonly LowerBody: "lower_body";
593
814
  readonly UpperBody: "upper_body";
594
815
  };
595
- export type GiseleVtonV1InputCategoryEnum = typeof GiseleVtonV1InputCategoryEnum[keyof typeof GiseleVtonV1InputCategoryEnum];
816
+ export type GiseleVtonV1InputCategoryEnum = (typeof GiseleVtonV1InputCategoryEnum)[keyof typeof GiseleVtonV1InputCategoryEnum];
596
817
  /**
597
818
  *
598
819
  * @export
@@ -604,14 +825,61 @@ export interface GrantAccessControllerParams {
604
825
  * @type {string}
605
826
  * @memberof GrantAccessControllerParams
606
827
  */
607
- 'resourceId': string;
828
+ principalType: GrantAccessControllerParamsPrincipalTypeEnum;
829
+ /**
830
+ *
831
+ * @type {string}
832
+ * @memberof GrantAccessControllerParams
833
+ */
834
+ principalId: string;
608
835
  /**
609
836
  *
610
837
  * @type {string}
611
838
  * @memberof GrantAccessControllerParams
612
839
  */
613
- 'access': string;
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;
614
877
  }
878
+ export declare const GrantAccessParamsDtoPrincipalTypeEnum: {
879
+ readonly Account: "account";
880
+ readonly Group: "group";
881
+ };
882
+ export type GrantAccessParamsDtoPrincipalTypeEnum = (typeof GrantAccessParamsDtoPrincipalTypeEnum)[keyof typeof GrantAccessParamsDtoPrincipalTypeEnum];
615
883
  /**
616
884
  *
617
885
  * @export
@@ -623,13 +891,13 @@ export interface GroupEntity {
623
891
  * @type {string}
624
892
  * @memberof GroupEntity
625
893
  */
626
- 'id': string;
894
+ id: string;
627
895
  /**
628
896
  *
629
897
  * @type {string}
630
898
  * @memberof GroupEntity
631
899
  */
632
- 'createdAt': string;
900
+ createdAt: string;
633
901
  }
634
902
  /**
635
903
  *
@@ -642,55 +910,61 @@ export interface ImageEntity {
642
910
  * @type {string}
643
911
  * @memberof ImageEntity
644
912
  */
645
- 'kind': ImageEntityKindEnum;
913
+ kind: ImageEntityKindEnum;
646
914
  /**
647
915
  *
648
916
  * @type {string}
649
917
  * @memberof ImageEntity
650
918
  */
651
- 'id': string;
919
+ id: string;
652
920
  /**
653
921
  *
654
922
  * @type {string}
655
923
  * @memberof ImageEntity
656
924
  */
657
- 'creatorId': string;
925
+ creatorId: string;
658
926
  /**
659
927
  *
660
928
  * @type {object}
661
929
  * @memberof ImageEntity
662
930
  */
663
- 'metadata': object;
931
+ metadata: object;
664
932
  /**
665
933
  *
666
934
  * @type {string}
667
935
  * @memberof ImageEntity
668
936
  */
669
- 'createdAt': string;
937
+ createdAt: string;
670
938
  /**
671
939
  *
672
940
  * @type {string}
673
941
  * @memberof ImageEntity
674
942
  */
675
- 'updatedAt': string;
943
+ updatedAt: string;
676
944
  /**
677
945
  *
678
946
  * @type {number}
679
947
  * @memberof ImageEntity
680
948
  */
681
- 'width': number;
949
+ width: number;
682
950
  /**
683
951
  *
684
952
  * @type {number}
685
953
  * @memberof ImageEntity
686
954
  */
687
- 'height': number;
955
+ height: number;
956
+ /**
957
+ *
958
+ * @type {string}
959
+ * @memberof ImageEntity
960
+ */
961
+ format: string;
688
962
  /**
689
963
  *
690
964
  * @type {string}
691
965
  * @memberof ImageEntity
692
966
  */
693
- 'format': string;
967
+ url: string;
694
968
  }
695
969
  export declare const ImageEntityKindEnum: {
696
970
  readonly Collection: "collection";
@@ -701,7 +975,7 @@ export declare const ImageEntityKindEnum: {
701
975
  readonly Storage: "storage";
702
976
  readonly Pipeline: "pipeline";
703
977
  };
704
- export type ImageEntityKindEnum = typeof ImageEntityKindEnum[keyof typeof ImageEntityKindEnum];
978
+ export type ImageEntityKindEnum = (typeof ImageEntityKindEnum)[keyof typeof ImageEntityKindEnum];
705
979
  /**
706
980
  *
707
981
  * @export
@@ -713,19 +987,19 @@ export interface ImageRepresentationResponseDto {
713
987
  * @type {string}
714
988
  * @memberof ImageRepresentationResponseDto
715
989
  */
716
- 'imageId': string;
990
+ imageId: string;
717
991
  /**
718
992
  *
719
993
  * @type {string}
720
994
  * @memberof ImageRepresentationResponseDto
721
995
  */
722
- 'type': string;
996
+ type: string;
723
997
  /**
724
998
  *
725
999
  * @type {string}
726
1000
  * @memberof ImageRepresentationResponseDto
727
1001
  */
728
- 'url': string;
1002
+ url: string;
729
1003
  }
730
1004
  /**
731
1005
  *
@@ -738,13 +1012,13 @@ export interface ImageUrlResponseDto {
738
1012
  * @type {string}
739
1013
  * @memberof ImageUrlResponseDto
740
1014
  */
741
- 'id': string;
1015
+ id: string;
742
1016
  /**
743
1017
  *
744
1018
  * @type {string}
745
1019
  * @memberof ImageUrlResponseDto
746
1020
  */
747
- 'url': string;
1021
+ url: string;
748
1022
  }
749
1023
  /**
750
1024
  *
@@ -757,7 +1031,7 @@ export interface InitializeImageUploadResultDto {
757
1031
  * @type {string}
758
1032
  * @memberof InitializeImageUploadResultDto
759
1033
  */
760
- 'uploadUrl': string;
1034
+ uploadUrl: string;
761
1035
  }
762
1036
  /**
763
1037
  *
@@ -770,13 +1044,13 @@ export interface KateImagineV1ControllerInput {
770
1044
  * @type {KateImagineV1Input}
771
1045
  * @memberof KateImagineV1ControllerInput
772
1046
  */
773
- 'input': KateImagineV1Input;
1047
+ input: KateImagineV1Input;
774
1048
  /**
775
1049
  *
776
1050
  * @type {object}
777
1051
  * @memberof KateImagineV1ControllerInput
778
1052
  */
779
- 'metadata'?: object;
1053
+ metadata?: object;
780
1054
  }
781
1055
  /**
782
1056
  *
@@ -789,19 +1063,19 @@ export interface KateImagineV1Input {
789
1063
  * @type {string}
790
1064
  * @memberof KateImagineV1Input
791
1065
  */
792
- 'aspectRatio': KateImagineV1InputAspectRatioEnum;
1066
+ aspectRatio: KateImagineV1InputAspectRatioEnum;
793
1067
  /**
794
1068
  *
795
1069
  * @type {string}
796
1070
  * @memberof KateImagineV1Input
797
1071
  */
798
- 'seed': string;
1072
+ seed: string;
799
1073
  /**
800
1074
  *
801
1075
  * @type {string}
802
1076
  * @memberof KateImagineV1Input
803
1077
  */
804
- 'prompt': string;
1078
+ prompt: string;
805
1079
  }
806
1080
  export declare const KateImagineV1InputAspectRatioEnum: {
807
1081
  readonly _11: "1:1";
@@ -814,7 +1088,7 @@ export declare const KateImagineV1InputAspectRatioEnum: {
814
1088
  readonly _125: "12:5";
815
1089
  readonly _512: "5:12";
816
1090
  };
817
- export type KateImagineV1InputAspectRatioEnum = typeof KateImagineV1InputAspectRatioEnum[keyof typeof KateImagineV1InputAspectRatioEnum];
1091
+ export type KateImagineV1InputAspectRatioEnum = (typeof KateImagineV1InputAspectRatioEnum)[keyof typeof KateImagineV1InputAspectRatioEnum];
818
1092
  /**
819
1093
  *
820
1094
  * @export
@@ -826,13 +1100,13 @@ export interface KateInpaintV1ControllerInput {
826
1100
  * @type {KateInpaintV1Input}
827
1101
  * @memberof KateInpaintV1ControllerInput
828
1102
  */
829
- 'input': KateInpaintV1Input;
1103
+ input: KateInpaintV1Input;
830
1104
  /**
831
1105
  *
832
1106
  * @type {object}
833
1107
  * @memberof KateInpaintV1ControllerInput
834
1108
  */
835
- 'metadata'?: object;
1109
+ metadata?: object;
836
1110
  }
837
1111
  /**
838
1112
  *
@@ -845,61 +1119,61 @@ export interface KateInpaintV1Input {
845
1119
  * @type {string}
846
1120
  * @memberof KateInpaintV1Input
847
1121
  */
848
- 'image': string;
1122
+ image: string;
849
1123
  /**
850
1124
  *
851
1125
  * @type {string}
852
1126
  * @memberof KateInpaintV1Input
853
1127
  */
854
- 'mask': string;
1128
+ mask: string;
855
1129
  /**
856
1130
  *
857
1131
  * @type {number}
858
1132
  * @memberof KateInpaintV1Input
859
1133
  */
860
- 'maskSpread'?: number;
1134
+ maskSpread?: number;
861
1135
  /**
862
1136
  *
863
1137
  * @type {string}
864
1138
  * @memberof KateInpaintV1Input
865
1139
  */
866
- 'prompt': string;
1140
+ prompt: string;
867
1141
  /**
868
1142
  *
869
1143
  * @type {number}
870
1144
  * @memberof KateInpaintV1Input
871
1145
  */
872
- 'seed': number;
1146
+ seed: number;
873
1147
  /**
874
1148
  *
875
1149
  * @type {number}
876
1150
  * @memberof KateInpaintV1Input
877
1151
  */
878
- 'strength': number;
1152
+ strength: number;
879
1153
  /**
880
1154
  *
881
1155
  * @type {number}
882
1156
  * @memberof KateInpaintV1Input
883
1157
  */
884
- 'height': number;
1158
+ height: number;
885
1159
  /**
886
1160
  *
887
1161
  * @type {number}
888
1162
  * @memberof KateInpaintV1Input
889
1163
  */
890
- 'width': number;
1164
+ width: number;
891
1165
  /**
892
1166
  *
893
1167
  * @type {number}
894
1168
  * @memberof KateInpaintV1Input
895
1169
  */
896
- 'numInferenceSteps'?: number;
1170
+ numInferenceSteps?: number;
897
1171
  /**
898
1172
  *
899
1173
  * @type {number}
900
1174
  * @memberof KateInpaintV1Input
901
1175
  */
902
- 'guidanceScale'?: number;
1176
+ guidanceScale?: number;
903
1177
  }
904
1178
  /**
905
1179
  *
@@ -912,13 +1186,13 @@ export interface LindaHauteV1ControllerInput {
912
1186
  * @type {LindaHauteV1Input}
913
1187
  * @memberof LindaHauteV1ControllerInput
914
1188
  */
915
- 'input': LindaHauteV1Input;
1189
+ input: LindaHauteV1Input;
916
1190
  /**
917
1191
  *
918
1192
  * @type {object}
919
1193
  * @memberof LindaHauteV1ControllerInput
920
1194
  */
921
- 'metadata'?: object;
1195
+ metadata?: object;
922
1196
  }
923
1197
  /**
924
1198
  *
@@ -931,55 +1205,55 @@ export interface LindaHauteV1Input {
931
1205
  * @type {string}
932
1206
  * @memberof LindaHauteV1Input
933
1207
  */
934
- 'aspectRatio': LindaHauteV1InputAspectRatioEnum;
1208
+ aspectRatio: LindaHauteV1InputAspectRatioEnum;
935
1209
  /**
936
1210
  *
937
1211
  * @type {string}
938
1212
  * @memberof LindaHauteV1Input
939
1213
  */
940
- 'productImageId': string;
1214
+ productImageId: string;
941
1215
  /**
942
1216
  *
943
1217
  * @type {string}
944
1218
  * @memberof LindaHauteV1Input
945
1219
  */
946
- 'prompt': string;
1220
+ prompt: string;
947
1221
  /**
948
1222
  *
949
1223
  * @type {number}
950
1224
  * @memberof LindaHauteV1Input
951
1225
  */
952
- 'seed': number;
1226
+ seed: number;
953
1227
  /**
954
1228
  *
955
1229
  * @type {number}
956
1230
  * @memberof LindaHauteV1Input
957
1231
  */
958
- 'imageWeight'?: number;
1232
+ imageWeight?: number;
959
1233
  /**
960
1234
  *
961
1235
  * @type {string}
962
1236
  * @memberof LindaHauteV1Input
963
1237
  */
964
- 'negativePrompt'?: string;
1238
+ negativePrompt?: string;
965
1239
  /**
966
1240
  *
967
1241
  * @type {number}
968
1242
  * @memberof LindaHauteV1Input
969
1243
  */
970
- 'inferenceSteps'?: number;
1244
+ inferenceSteps?: number;
971
1245
  /**
972
1246
  *
973
1247
  * @type {number}
974
1248
  * @memberof LindaHauteV1Input
975
1249
  */
976
- 'guidanceScale'?: number;
1250
+ guidanceScale?: number;
977
1251
  /**
978
1252
  *
979
1253
  * @type {number}
980
1254
  * @memberof LindaHauteV1Input
981
1255
  */
982
- 'strength'?: number;
1256
+ strength?: number;
983
1257
  }
984
1258
  export declare const LindaHauteV1InputAspectRatioEnum: {
985
1259
  readonly _11: "1:1";
@@ -992,7 +1266,7 @@ export declare const LindaHauteV1InputAspectRatioEnum: {
992
1266
  readonly _125: "12:5";
993
1267
  readonly _512: "5:12";
994
1268
  };
995
- export type LindaHauteV1InputAspectRatioEnum = typeof LindaHauteV1InputAspectRatioEnum[keyof typeof LindaHauteV1InputAspectRatioEnum];
1269
+ export type LindaHauteV1InputAspectRatioEnum = (typeof LindaHauteV1InputAspectRatioEnum)[keyof typeof LindaHauteV1InputAspectRatioEnum];
996
1270
  /**
997
1271
  *
998
1272
  * @export
@@ -1004,13 +1278,13 @@ export interface ListAccountsDto {
1004
1278
  * @type {Array<AccountEntity>}
1005
1279
  * @memberof ListAccountsDto
1006
1280
  */
1007
- 'data': Array<AccountEntity>;
1281
+ data: Array<AccountEntity>;
1008
1282
  /**
1009
1283
  *
1010
1284
  * @type {ListAccountsDtoPageInfo}
1011
1285
  * @memberof ListAccountsDto
1012
1286
  */
1013
- 'pageInfo': ListAccountsDtoPageInfo;
1287
+ pageInfo: ListAccountsDtoPageInfo;
1014
1288
  }
1015
1289
  /**
1016
1290
  *
@@ -1023,102 +1297,299 @@ export interface ListAccountsDtoPageInfo {
1023
1297
  * @type {string}
1024
1298
  * @memberof ListAccountsDtoPageInfo
1025
1299
  */
1026
- 'nextCursor': string;
1300
+ nextCursor: string;
1027
1301
  }
1028
1302
  /**
1029
1303
  *
1030
1304
  * @export
1031
- * @interface ListCollectionItemsDto
1305
+ * @interface ListAccountsParamsDto
1032
1306
  */
1033
- export interface ListCollectionItemsDto {
1307
+ export interface ListAccountsParamsDto {
1034
1308
  /**
1035
1309
  *
1036
- * @type {Array<ResourceEntity>}
1037
- * @memberof ListCollectionItemsDto
1310
+ * @type {string}
1311
+ * @memberof ListAccountsParamsDto
1038
1312
  */
1039
- 'data': Array<ResourceEntity>;
1313
+ orderBy?: ListAccountsParamsDtoOrderByEnum;
1040
1314
  /**
1041
1315
  *
1042
- * @type {ListAccountsDtoPageInfo}
1043
- * @memberof ListCollectionItemsDto
1316
+ * @type {number}
1317
+ * @memberof ListAccountsParamsDto
1318
+ */
1319
+ limit?: number;
1320
+ /**
1321
+ *
1322
+ * @type {string}
1323
+ * @memberof ListAccountsParamsDto
1044
1324
  */
1045
- 'pageInfo': ListAccountsDtoPageInfo;
1325
+ cursor?: string;
1046
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];
1047
1332
  /**
1048
1333
  *
1049
1334
  * @export
1050
- * @interface ListCollectionsDto
1335
+ * @interface ListCollectionItemsDto
1051
1336
  */
1052
- export interface ListCollectionsDto {
1337
+ export interface ListCollectionItemsDto {
1053
1338
  /**
1054
1339
  *
1055
- * @type {Array<CollectionEntity>}
1056
- * @memberof ListCollectionsDto
1340
+ * @type {Array<ResourceEntity>}
1341
+ * @memberof ListCollectionItemsDto
1057
1342
  */
1058
- 'data': Array<CollectionEntity>;
1343
+ data: Array<ResourceEntity>;
1059
1344
  /**
1060
1345
  *
1061
1346
  * @type {ListAccountsDtoPageInfo}
1062
- * @memberof ListCollectionsDto
1347
+ * @memberof ListCollectionItemsDto
1063
1348
  */
1064
- 'pageInfo': ListAccountsDtoPageInfo;
1349
+ pageInfo: ListAccountsDtoPageInfo;
1065
1350
  }
1066
1351
  /**
1067
1352
  *
1068
1353
  * @export
1069
- * @interface ListOperationsDto
1354
+ * @interface ListCollectionItemsParamsDto
1070
1355
  */
1071
- export interface ListOperationsDto {
1356
+ export interface ListCollectionItemsParamsDto {
1072
1357
  /**
1073
1358
  *
1074
- * @type {Array<OperationEntity>}
1075
- * @memberof ListOperationsDto
1359
+ * @type {string}
1360
+ * @memberof ListCollectionItemsParamsDto
1076
1361
  */
1077
- 'data': Array<OperationEntity>;
1362
+ collectionId: string;
1078
1363
  /**
1079
1364
  *
1080
- * @type {ListAccountsDtoPageInfo}
1081
- * @memberof ListOperationsDto
1365
+ * @type {string}
1366
+ * @memberof ListCollectionItemsParamsDto
1082
1367
  */
1083
- 'pageInfo': ListAccountsDtoPageInfo;
1084
- }
1085
- /**
1086
- *
1087
- * @export
1088
- * @interface ListPipelinesDto
1089
- */
1090
- export interface ListPipelinesDto {
1368
+ orderBy?: ListCollectionItemsParamsDtoOrderByEnum;
1091
1369
  /**
1092
1370
  *
1093
- * @type {Array<PipelineEntity>}
1094
- * @memberof ListPipelinesDto
1371
+ * @type {number}
1372
+ * @memberof ListCollectionItemsParamsDto
1095
1373
  */
1096
- 'data': Array<PipelineEntity>;
1374
+ limit?: number;
1097
1375
  /**
1098
1376
  *
1099
- * @type {ListAccountsDtoPageInfo}
1100
- * @memberof ListPipelinesDto
1377
+ * @type {string}
1378
+ * @memberof ListCollectionItemsParamsDto
1379
+ */
1380
+ kind?: ListCollectionItemsParamsDtoKindEnum;
1381
+ /**
1382
+ *
1383
+ * @type {string}
1384
+ * @memberof ListCollectionItemsParamsDto
1101
1385
  */
1102
- 'pageInfo': ListAccountsDtoPageInfo;
1386
+ cursor?: string;
1103
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];
1104
1405
  /**
1105
1406
  *
1106
1407
  * @export
1107
- * @interface ListStacksDto
1408
+ * @interface ListCollectionsDto
1108
1409
  */
1109
- export interface ListStacksDto {
1410
+ export interface ListCollectionsDto {
1110
1411
  /**
1111
1412
  *
1112
- * @type {Array<StackEntity>}
1113
- * @memberof ListStacksDto
1413
+ * @type {Array<CollectionEntity>}
1414
+ * @memberof ListCollectionsDto
1114
1415
  */
1115
- 'data': Array<StackEntity>;
1416
+ data: Array<CollectionEntity>;
1116
1417
  /**
1117
1418
  *
1118
1419
  * @type {ListAccountsDtoPageInfo}
1119
- * @memberof ListStacksDto
1420
+ * @memberof ListCollectionsDto
1120
1421
  */
1121
- 'pageInfo': ListAccountsDtoPageInfo;
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
+ /**
1508
+ *
1509
+ * @export
1510
+ * @interface ListPipelinesDto
1511
+ */
1512
+ export interface ListPipelinesDto {
1513
+ /**
1514
+ *
1515
+ * @type {Array<PipelineEntity>}
1516
+ * @memberof ListPipelinesDto
1517
+ */
1518
+ data: Array<PipelineEntity>;
1519
+ /**
1520
+ *
1521
+ * @type {ListAccountsDtoPageInfo}
1522
+ * @memberof ListPipelinesDto
1523
+ */
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;
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];
1575
+ /**
1576
+ *
1577
+ * @export
1578
+ * @interface ListStacksDto
1579
+ */
1580
+ export interface ListStacksDto {
1581
+ /**
1582
+ *
1583
+ * @type {Array<StackEntity>}
1584
+ * @memberof ListStacksDto
1585
+ */
1586
+ data: Array<StackEntity>;
1587
+ /**
1588
+ *
1589
+ * @type {ListAccountsDtoPageInfo}
1590
+ * @memberof ListStacksDto
1591
+ */
1592
+ pageInfo: ListAccountsDtoPageInfo;
1122
1593
  }
1123
1594
  /**
1124
1595
  *
@@ -1131,19 +1602,19 @@ export interface ListStacksParamsDto {
1131
1602
  * @type {string}
1132
1603
  * @memberof ListStacksParamsDto
1133
1604
  */
1134
- 'orderBy'?: ListStacksParamsDtoOrderByEnum;
1605
+ orderBy?: ListStacksParamsDtoOrderByEnum;
1135
1606
  /**
1136
1607
  *
1137
1608
  * @type {number}
1138
1609
  * @memberof ListStacksParamsDto
1139
1610
  */
1140
- 'limit'?: number;
1611
+ limit?: number;
1141
1612
  /**
1142
1613
  *
1143
1614
  * @type {string}
1144
1615
  * @memberof ListStacksParamsDto
1145
1616
  */
1146
- 'cursor'?: string;
1617
+ cursor?: string;
1147
1618
  }
1148
1619
  export declare const ListStacksParamsDtoOrderByEnum: {
1149
1620
  readonly CreatedAtAsc: "createdAt_ASC";
@@ -1151,7 +1622,7 @@ export declare const ListStacksParamsDtoOrderByEnum: {
1151
1622
  readonly UpdatedAtAsc: "updatedAt_ASC";
1152
1623
  readonly UpdatedAtDesc: "updatedAt_DESC";
1153
1624
  };
1154
- export type ListStacksParamsDtoOrderByEnum = typeof ListStacksParamsDtoOrderByEnum[keyof typeof ListStacksParamsDtoOrderByEnum];
1625
+ export type ListStacksParamsDtoOrderByEnum = (typeof ListStacksParamsDtoOrderByEnum)[keyof typeof ListStacksParamsDtoOrderByEnum];
1155
1626
  /**
1156
1627
  *
1157
1628
  * @export
@@ -1163,13 +1634,13 @@ export interface NaomiHauteV1ControllerInput {
1163
1634
  * @type {NaomiHauteV1Input}
1164
1635
  * @memberof NaomiHauteV1ControllerInput
1165
1636
  */
1166
- 'input': NaomiHauteV1Input;
1637
+ input: NaomiHauteV1Input;
1167
1638
  /**
1168
1639
  *
1169
1640
  * @type {object}
1170
1641
  * @memberof NaomiHauteV1ControllerInput
1171
1642
  */
1172
- 'metadata'?: object;
1643
+ metadata?: object;
1173
1644
  }
1174
1645
  /**
1175
1646
  *
@@ -1182,61 +1653,61 @@ export interface NaomiHauteV1Input {
1182
1653
  * @type {string}
1183
1654
  * @memberof NaomiHauteV1Input
1184
1655
  */
1185
- 'prompt': string;
1656
+ prompt: string;
1186
1657
  /**
1187
1658
  *
1188
1659
  * @type {string}
1189
1660
  * @memberof NaomiHauteV1Input
1190
1661
  */
1191
- 'category': string;
1662
+ category: string;
1192
1663
  /**
1193
1664
  *
1194
1665
  * @type {string}
1195
1666
  * @memberof NaomiHauteV1Input
1196
1667
  */
1197
- 'garmentImageId': string;
1668
+ garmentImageId: string;
1198
1669
  /**
1199
1670
  *
1200
1671
  * @type {string}
1201
1672
  * @memberof NaomiHauteV1Input
1202
1673
  */
1203
- 'poseId': string;
1674
+ poseId: string;
1204
1675
  /**
1205
1676
  *
1206
1677
  * @type {number}
1207
1678
  * @memberof NaomiHauteV1Input
1208
1679
  */
1209
- 'seed': number;
1680
+ seed: number;
1210
1681
  /**
1211
1682
  *
1212
1683
  * @type {number}
1213
1684
  * @memberof NaomiHauteV1Input
1214
1685
  */
1215
- 'width': number;
1686
+ width: number;
1216
1687
  /**
1217
1688
  *
1218
1689
  * @type {number}
1219
1690
  * @memberof NaomiHauteV1Input
1220
1691
  */
1221
- 'height': number;
1692
+ height: number;
1222
1693
  /**
1223
1694
  *
1224
1695
  * @type {number}
1225
1696
  * @memberof NaomiHauteV1Input
1226
1697
  */
1227
- 'textGuidanceScale'?: number;
1698
+ textGuidanceScale?: number;
1228
1699
  /**
1229
1700
  *
1230
1701
  * @type {number}
1231
1702
  * @memberof NaomiHauteV1Input
1232
1703
  */
1233
- 'imageGuidanceScale'?: number;
1704
+ imageGuidanceScale?: number;
1234
1705
  /**
1235
1706
  *
1236
1707
  * @type {number}
1237
1708
  * @memberof NaomiHauteV1Input
1238
1709
  */
1239
- 'numInferenceSteps'?: number;
1710
+ numInferenceSteps?: number;
1240
1711
  }
1241
1712
  /**
1242
1713
  *
@@ -1249,13 +1720,13 @@ export interface ObjectDetectionV1ControllerInput {
1249
1720
  * @type {ObjectDetectionV1Input}
1250
1721
  * @memberof ObjectDetectionV1ControllerInput
1251
1722
  */
1252
- 'input': ObjectDetectionV1Input;
1723
+ input: ObjectDetectionV1Input;
1253
1724
  /**
1254
1725
  *
1255
1726
  * @type {object}
1256
1727
  * @memberof ObjectDetectionV1ControllerInput
1257
1728
  */
1258
- 'metadata'?: object;
1729
+ metadata?: object;
1259
1730
  }
1260
1731
  /**
1261
1732
  *
@@ -1268,13 +1739,13 @@ export interface ObjectDetectionV1Input {
1268
1739
  * @type {Array<string>}
1269
1740
  * @memberof ObjectDetectionV1Input
1270
1741
  */
1271
- 'labels': Array<string>;
1742
+ labels: Array<string>;
1272
1743
  /**
1273
1744
  *
1274
1745
  * @type {string}
1275
1746
  * @memberof ObjectDetectionV1Input
1276
1747
  */
1277
- 'imageId': string;
1748
+ imageId: string;
1278
1749
  }
1279
1750
  /**
1280
1751
  *
@@ -1287,61 +1758,61 @@ export interface OperationEntity {
1287
1758
  * @type {string}
1288
1759
  * @memberof OperationEntity
1289
1760
  */
1290
- 'kind': OperationEntityKindEnum;
1761
+ kind: OperationEntityKindEnum;
1291
1762
  /**
1292
1763
  *
1293
1764
  * @type {string}
1294
1765
  * @memberof OperationEntity
1295
1766
  */
1296
- 'id': string;
1767
+ id: string;
1297
1768
  /**
1298
1769
  *
1299
1770
  * @type {string}
1300
1771
  * @memberof OperationEntity
1301
1772
  */
1302
- 'creatorId': string;
1773
+ creatorId: string;
1303
1774
  /**
1304
1775
  *
1305
1776
  * @type {object}
1306
1777
  * @memberof OperationEntity
1307
1778
  */
1308
- 'metadata': object;
1779
+ metadata: object;
1309
1780
  /**
1310
1781
  *
1311
1782
  * @type {string}
1312
1783
  * @memberof OperationEntity
1313
1784
  */
1314
- 'createdAt': string;
1785
+ createdAt: string;
1315
1786
  /**
1316
1787
  *
1317
1788
  * @type {string}
1318
1789
  * @memberof OperationEntity
1319
1790
  */
1320
- 'updatedAt': string;
1791
+ updatedAt: string;
1321
1792
  /**
1322
1793
  *
1323
1794
  * @type {object}
1324
1795
  * @memberof OperationEntity
1325
1796
  */
1326
- 'input': object;
1797
+ input: object;
1327
1798
  /**
1328
1799
  *
1329
1800
  * @type {object}
1330
1801
  * @memberof OperationEntity
1331
1802
  */
1332
- 'output': object | null;
1803
+ output: object | null;
1333
1804
  /**
1334
1805
  *
1335
1806
  * @type {string}
1336
1807
  * @memberof OperationEntity
1337
1808
  */
1338
- 'status': OperationEntityStatusEnum;
1809
+ status: OperationEntityStatusEnum;
1339
1810
  /**
1340
1811
  *
1341
1812
  * @type {string}
1342
1813
  * @memberof OperationEntity
1343
1814
  */
1344
- 'type': string;
1815
+ type: string;
1345
1816
  }
1346
1817
  export declare const OperationEntityKindEnum: {
1347
1818
  readonly Collection: "collection";
@@ -1352,13 +1823,13 @@ export declare const OperationEntityKindEnum: {
1352
1823
  readonly Storage: "storage";
1353
1824
  readonly Pipeline: "pipeline";
1354
1825
  };
1355
- export type OperationEntityKindEnum = typeof OperationEntityKindEnum[keyof typeof OperationEntityKindEnum];
1826
+ export type OperationEntityKindEnum = (typeof OperationEntityKindEnum)[keyof typeof OperationEntityKindEnum];
1356
1827
  export declare const OperationEntityStatusEnum: {
1357
1828
  readonly Pending: "pending";
1358
1829
  readonly Finished: "finished";
1359
1830
  readonly Failed: "failed";
1360
1831
  };
1361
- export type OperationEntityStatusEnum = typeof OperationEntityStatusEnum[keyof typeof OperationEntityStatusEnum];
1832
+ export type OperationEntityStatusEnum = (typeof OperationEntityStatusEnum)[keyof typeof OperationEntityStatusEnum];
1362
1833
  /**
1363
1834
  *
1364
1835
  * @export
@@ -1370,61 +1841,61 @@ export interface PipelineEntity {
1370
1841
  * @type {string}
1371
1842
  * @memberof PipelineEntity
1372
1843
  */
1373
- 'kind': PipelineEntityKindEnum;
1844
+ kind: PipelineEntityKindEnum;
1374
1845
  /**
1375
1846
  *
1376
1847
  * @type {string}
1377
1848
  * @memberof PipelineEntity
1378
1849
  */
1379
- 'id': string;
1850
+ id: string;
1380
1851
  /**
1381
1852
  *
1382
1853
  * @type {string}
1383
1854
  * @memberof PipelineEntity
1384
1855
  */
1385
- 'creatorId': string;
1856
+ creatorId: string;
1386
1857
  /**
1387
1858
  *
1388
1859
  * @type {object}
1389
1860
  * @memberof PipelineEntity
1390
1861
  */
1391
- 'metadata': object;
1862
+ metadata: object;
1392
1863
  /**
1393
1864
  *
1394
1865
  * @type {string}
1395
1866
  * @memberof PipelineEntity
1396
1867
  */
1397
- 'createdAt': string;
1868
+ createdAt: string;
1398
1869
  /**
1399
1870
  *
1400
1871
  * @type {string}
1401
1872
  * @memberof PipelineEntity
1402
1873
  */
1403
- 'updatedAt': string;
1874
+ updatedAt: string;
1404
1875
  /**
1405
1876
  *
1406
1877
  * @type {object}
1407
1878
  * @memberof PipelineEntity
1408
1879
  */
1409
- 'permissions': object;
1880
+ permissions: object;
1410
1881
  /**
1411
1882
  *
1412
1883
  * @type {object}
1413
1884
  * @memberof PipelineEntity
1414
1885
  */
1415
- 'state': object;
1886
+ state: object;
1416
1887
  /**
1417
1888
  *
1418
1889
  * @type {string}
1419
1890
  * @memberof PipelineEntity
1420
1891
  */
1421
- 'status': PipelineEntityStatusEnum;
1892
+ status: PipelineEntityStatusEnum;
1422
1893
  /**
1423
1894
  *
1424
1895
  * @type {object}
1425
1896
  * @memberof PipelineEntity
1426
1897
  */
1427
- 'tasks': object;
1898
+ tasks: object;
1428
1899
  }
1429
1900
  export declare const PipelineEntityKindEnum: {
1430
1901
  readonly Collection: "collection";
@@ -1435,13 +1906,13 @@ export declare const PipelineEntityKindEnum: {
1435
1906
  readonly Storage: "storage";
1436
1907
  readonly Pipeline: "pipeline";
1437
1908
  };
1438
- export type PipelineEntityKindEnum = typeof PipelineEntityKindEnum[keyof typeof PipelineEntityKindEnum];
1909
+ export type PipelineEntityKindEnum = (typeof PipelineEntityKindEnum)[keyof typeof PipelineEntityKindEnum];
1439
1910
  export declare const PipelineEntityStatusEnum: {
1440
1911
  readonly Pending: "pending";
1441
1912
  readonly Completed: "completed";
1442
1913
  readonly Failed: "failed";
1443
1914
  };
1444
- export type PipelineEntityStatusEnum = typeof PipelineEntityStatusEnum[keyof typeof PipelineEntityStatusEnum];
1915
+ export type PipelineEntityStatusEnum = (typeof PipelineEntityStatusEnum)[keyof typeof PipelineEntityStatusEnum];
1445
1916
  /**
1446
1917
  *
1447
1918
  * @export
@@ -1453,55 +1924,55 @@ export interface PoseEntity {
1453
1924
  * @type {string}
1454
1925
  * @memberof PoseEntity
1455
1926
  */
1456
- 'kind': PoseEntityKindEnum;
1927
+ kind: PoseEntityKindEnum;
1457
1928
  /**
1458
1929
  *
1459
1930
  * @type {string}
1460
1931
  * @memberof PoseEntity
1461
1932
  */
1462
- 'id': string;
1933
+ id: string;
1463
1934
  /**
1464
1935
  *
1465
1936
  * @type {string}
1466
1937
  * @memberof PoseEntity
1467
1938
  */
1468
- 'creatorId': string;
1939
+ creatorId: string;
1469
1940
  /**
1470
1941
  *
1471
1942
  * @type {object}
1472
1943
  * @memberof PoseEntity
1473
1944
  */
1474
- 'metadata': object;
1945
+ metadata: object;
1475
1946
  /**
1476
1947
  *
1477
1948
  * @type {string}
1478
1949
  * @memberof PoseEntity
1479
1950
  */
1480
- 'createdAt': string;
1951
+ createdAt: string;
1481
1952
  /**
1482
1953
  *
1483
1954
  * @type {string}
1484
1955
  * @memberof PoseEntity
1485
1956
  */
1486
- 'updatedAt': string;
1957
+ updatedAt: string;
1487
1958
  /**
1488
1959
  *
1489
1960
  * @type {ImageEntity}
1490
1961
  * @memberof PoseEntity
1491
1962
  */
1492
- 'sourceImage': ImageEntity;
1963
+ sourceImage: ImageEntity;
1493
1964
  /**
1494
1965
  *
1495
1966
  * @type {ImageEntity}
1496
1967
  * @memberof PoseEntity
1497
1968
  */
1498
- 'previewImage'?: ImageEntity;
1969
+ previewImage?: ImageEntity;
1499
1970
  /**
1500
1971
  *
1501
1972
  * @type {string}
1502
1973
  * @memberof PoseEntity
1503
1974
  */
1504
- 'previewImageId'?: string;
1975
+ previewImageId?: string;
1505
1976
  }
1506
1977
  export declare const PoseEntityKindEnum: {
1507
1978
  readonly Collection: "collection";
@@ -1512,7 +1983,7 @@ export declare const PoseEntityKindEnum: {
1512
1983
  readonly Storage: "storage";
1513
1984
  readonly Pipeline: "pipeline";
1514
1985
  };
1515
- export type PoseEntityKindEnum = typeof PoseEntityKindEnum[keyof typeof PoseEntityKindEnum];
1986
+ export type PoseEntityKindEnum = (typeof PoseEntityKindEnum)[keyof typeof PoseEntityKindEnum];
1516
1987
  /**
1517
1988
  *
1518
1989
  * @export
@@ -1524,13 +1995,13 @@ export interface PoseEstimationV1ControllerInput {
1524
1995
  * @type {PoseEstimationV1Input}
1525
1996
  * @memberof PoseEstimationV1ControllerInput
1526
1997
  */
1527
- 'input': PoseEstimationV1Input;
1998
+ input: PoseEstimationV1Input;
1528
1999
  /**
1529
2000
  *
1530
2001
  * @type {object}
1531
2002
  * @memberof PoseEstimationV1ControllerInput
1532
2003
  */
1533
- 'metadata'?: object;
2004
+ metadata?: object;
1534
2005
  }
1535
2006
  /**
1536
2007
  *
@@ -1543,7 +2014,7 @@ export interface PoseEstimationV1Input {
1543
2014
  * @type {string}
1544
2015
  * @memberof PoseEstimationV1Input
1545
2016
  */
1546
- 'imageId': string;
2017
+ imageId: string;
1547
2018
  }
1548
2019
  /**
1549
2020
  *
@@ -1556,20 +2027,51 @@ export interface RemoveAccountFromGroupControllerParamsDto {
1556
2027
  * @type {string}
1557
2028
  * @memberof RemoveAccountFromGroupControllerParamsDto
1558
2029
  */
1559
- 'accountId': string;
2030
+ accountId: string;
1560
2031
  /**
1561
2032
  *
1562
2033
  * @type {string}
1563
2034
  * @memberof RemoveAccountFromGroupControllerParamsDto
1564
2035
  */
1565
- 'role': RemoveAccountFromGroupControllerParamsDtoRoleEnum;
2036
+ role: RemoveAccountFromGroupControllerParamsDtoRoleEnum;
1566
2037
  }
1567
2038
  export declare const RemoveAccountFromGroupControllerParamsDtoRoleEnum: {
1568
2039
  readonly Maintainer: "maintainer";
1569
2040
  readonly Member: "member";
1570
2041
  readonly Owner: "owner";
1571
2042
  };
1572
- 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];
1573
2075
  /**
1574
2076
  *
1575
2077
  * @export
@@ -1581,7 +2083,45 @@ export interface RemoveItemsFromCollectionControllerParamsDto {
1581
2083
  * @type {Array<string>}
1582
2084
  * @memberof RemoveItemsFromCollectionControllerParamsDto
1583
2085
  */
1584
- 'itemIds': Array<string>;
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>;
1585
2125
  }
1586
2126
  /**
1587
2127
  *
@@ -1594,37 +2134,37 @@ export interface ResourceEntity {
1594
2134
  * @type {string}
1595
2135
  * @memberof ResourceEntity
1596
2136
  */
1597
- 'kind': ResourceEntityKindEnum;
2137
+ kind: ResourceEntityKindEnum;
1598
2138
  /**
1599
2139
  *
1600
2140
  * @type {string}
1601
2141
  * @memberof ResourceEntity
1602
2142
  */
1603
- 'id': string;
2143
+ id: string;
1604
2144
  /**
1605
2145
  *
1606
2146
  * @type {string}
1607
2147
  * @memberof ResourceEntity
1608
2148
  */
1609
- 'creatorId': string;
2149
+ creatorId: string;
1610
2150
  /**
1611
2151
  *
1612
2152
  * @type {object}
1613
2153
  * @memberof ResourceEntity
1614
2154
  */
1615
- 'metadata': object;
2155
+ metadata: object;
1616
2156
  /**
1617
2157
  *
1618
2158
  * @type {string}
1619
2159
  * @memberof ResourceEntity
1620
2160
  */
1621
- 'createdAt': string;
2161
+ createdAt: string;
1622
2162
  /**
1623
2163
  *
1624
2164
  * @type {string}
1625
2165
  * @memberof ResourceEntity
1626
2166
  */
1627
- 'updatedAt': string;
2167
+ updatedAt: string;
1628
2168
  }
1629
2169
  export declare const ResourceEntityKindEnum: {
1630
2170
  readonly Collection: "collection";
@@ -1635,7 +2175,7 @@ export declare const ResourceEntityKindEnum: {
1635
2175
  readonly Storage: "storage";
1636
2176
  readonly Pipeline: "pipeline";
1637
2177
  };
1638
- export type ResourceEntityKindEnum = typeof ResourceEntityKindEnum[keyof typeof ResourceEntityKindEnum];
2178
+ export type ResourceEntityKindEnum = (typeof ResourceEntityKindEnum)[keyof typeof ResourceEntityKindEnum];
1639
2179
  /**
1640
2180
  *
1641
2181
  * @export
@@ -1647,13 +2187,13 @@ export interface SegmentAnythingEmbeddingsV1ControllerInput {
1647
2187
  * @type {SegmentAnythingEmbeddingsV1Input}
1648
2188
  * @memberof SegmentAnythingEmbeddingsV1ControllerInput
1649
2189
  */
1650
- 'input': SegmentAnythingEmbeddingsV1Input;
2190
+ input: SegmentAnythingEmbeddingsV1Input;
1651
2191
  /**
1652
2192
  *
1653
2193
  * @type {object}
1654
2194
  * @memberof SegmentAnythingEmbeddingsV1ControllerInput
1655
2195
  */
1656
- 'metadata'?: object;
2196
+ metadata?: object;
1657
2197
  }
1658
2198
  /**
1659
2199
  *
@@ -1666,7 +2206,7 @@ export interface SegmentAnythingEmbeddingsV1Input {
1666
2206
  * @type {string}
1667
2207
  * @memberof SegmentAnythingEmbeddingsV1Input
1668
2208
  */
1669
- 'imageId': string;
2209
+ imageId: string;
1670
2210
  }
1671
2211
  /**
1672
2212
  *
@@ -1679,13 +2219,13 @@ export interface SegmentAnythingMaskV1ControllerInput {
1679
2219
  * @type {SegmentAnythingMaskV1Input}
1680
2220
  * @memberof SegmentAnythingMaskV1ControllerInput
1681
2221
  */
1682
- 'input': SegmentAnythingMaskV1Input;
2222
+ input: SegmentAnythingMaskV1Input;
1683
2223
  /**
1684
2224
  *
1685
2225
  * @type {object}
1686
2226
  * @memberof SegmentAnythingMaskV1ControllerInput
1687
2227
  */
1688
- 'metadata'?: object;
2228
+ metadata?: object;
1689
2229
  }
1690
2230
  /**
1691
2231
  *
@@ -1698,13 +2238,13 @@ export interface SegmentAnythingMaskV1Input {
1698
2238
  * @type {string}
1699
2239
  * @memberof SegmentAnythingMaskV1Input
1700
2240
  */
1701
- 'imageId': string;
2241
+ imageId: string;
1702
2242
  /**
1703
2243
  *
1704
2244
  * @type {Array<number>}
1705
2245
  * @memberof SegmentAnythingMaskV1Input
1706
2246
  */
1707
- 'box': Array<number>;
2247
+ box: Array<number>;
1708
2248
  }
1709
2249
  /**
1710
2250
  *
@@ -1717,7 +2257,26 @@ export interface SetPosePreviewControllerParamsDto {
1717
2257
  * @type {string}
1718
2258
  * @memberof SetPosePreviewControllerParamsDto
1719
2259
  */
1720
- 'previewImageId': string;
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;
1721
2280
  }
1722
2281
  /**
1723
2282
  *
@@ -1730,48 +2289,48 @@ export interface StackEntity {
1730
2289
  * @type {string}
1731
2290
  * @memberof StackEntity
1732
2291
  */
1733
- 'kind': StackEntityKindEnum;
2292
+ kind: StackEntityKindEnum;
1734
2293
  /**
1735
2294
  *
1736
2295
  * @type {Array<StackEntityItemsInner>}
1737
2296
  * @memberof StackEntity
1738
2297
  */
1739
- 'items': Array<StackEntityItemsInner>;
2298
+ items: Array<StackEntityItemsInner>;
1740
2299
  /**
1741
2300
  *
1742
2301
  * @type {string}
1743
2302
  * @memberof StackEntity
1744
2303
  */
1745
- 'id': string;
2304
+ id: string;
1746
2305
  /**
1747
2306
  *
1748
2307
  * @type {string}
1749
2308
  * @memberof StackEntity
1750
2309
  */
1751
- 'creatorId': string;
2310
+ creatorId: string;
1752
2311
  /**
1753
2312
  *
1754
2313
  * @type {object}
1755
2314
  * @memberof StackEntity
1756
2315
  */
1757
- 'metadata': object;
2316
+ metadata: object;
1758
2317
  /**
1759
2318
  *
1760
2319
  * @type {string}
1761
2320
  * @memberof StackEntity
1762
2321
  */
1763
- 'createdAt': string;
2322
+ createdAt: string;
1764
2323
  /**
1765
2324
  *
1766
2325
  * @type {string}
1767
2326
  * @memberof StackEntity
1768
2327
  */
1769
- 'updatedAt': string;
2328
+ updatedAt: string;
1770
2329
  }
1771
2330
  export declare const StackEntityKindEnum: {
1772
2331
  readonly Stack: "stack";
1773
2332
  };
1774
- export type StackEntityKindEnum = typeof StackEntityKindEnum[keyof typeof StackEntityKindEnum];
2333
+ export type StackEntityKindEnum = (typeof StackEntityKindEnum)[keyof typeof StackEntityKindEnum];
1775
2334
  /**
1776
2335
  * @type StackEntityItemsInner
1777
2336
  * @export
@@ -1788,49 +2347,49 @@ export interface StorageEntity {
1788
2347
  * @type {string}
1789
2348
  * @memberof StorageEntity
1790
2349
  */
1791
- 'kind': StorageEntityKindEnum;
2350
+ kind: StorageEntityKindEnum;
1792
2351
  /**
1793
2352
  *
1794
2353
  * @type {string}
1795
2354
  * @memberof StorageEntity
1796
2355
  */
1797
- 'id': string;
2356
+ id: string;
1798
2357
  /**
1799
2358
  *
1800
2359
  * @type {string}
1801
2360
  * @memberof StorageEntity
1802
2361
  */
1803
- 'creatorId': string;
2362
+ creatorId: string;
1804
2363
  /**
1805
2364
  *
1806
2365
  * @type {object}
1807
2366
  * @memberof StorageEntity
1808
2367
  */
1809
- 'metadata': object;
2368
+ metadata: object;
1810
2369
  /**
1811
2370
  *
1812
2371
  * @type {string}
1813
2372
  * @memberof StorageEntity
1814
2373
  */
1815
- 'createdAt': string;
2374
+ createdAt: string;
1816
2375
  /**
1817
2376
  *
1818
2377
  * @type {string}
1819
2378
  * @memberof StorageEntity
1820
2379
  */
1821
- 'updatedAt': string;
2380
+ updatedAt: string;
1822
2381
  /**
1823
2382
  *
1824
2383
  * @type {string}
1825
2384
  * @memberof StorageEntity
1826
2385
  */
1827
- 'key': string;
2386
+ key: string;
1828
2387
  /**
1829
2388
  *
1830
2389
  * @type {object}
1831
2390
  * @memberof StorageEntity
1832
2391
  */
1833
- 'value': object;
2392
+ value: object;
1834
2393
  }
1835
2394
  export declare const StorageEntityKindEnum: {
1836
2395
  readonly Collection: "collection";
@@ -1841,7 +2400,7 @@ export declare const StorageEntityKindEnum: {
1841
2400
  readonly Storage: "storage";
1842
2401
  readonly Pipeline: "pipeline";
1843
2402
  };
1844
- export type StorageEntityKindEnum = typeof StorageEntityKindEnum[keyof typeof StorageEntityKindEnum];
2403
+ export type StorageEntityKindEnum = (typeof StorageEntityKindEnum)[keyof typeof StorageEntityKindEnum];
1845
2404
  /**
1846
2405
  *
1847
2406
  * @export
@@ -1853,13 +2412,13 @@ export interface StorageRecordsResultDto {
1853
2412
  * @type {string}
1854
2413
  * @memberof StorageRecordsResultDto
1855
2414
  */
1856
- 'key': string;
2415
+ key: string;
1857
2416
  /**
1858
2417
  *
1859
2418
  * @type {object}
1860
2419
  * @memberof StorageRecordsResultDto
1861
2420
  */
1862
- 'value': object;
2421
+ value: object;
1863
2422
  }
1864
2423
  /**
1865
2424
  *
@@ -1872,7 +2431,26 @@ export interface UpdateMetadataDto {
1872
2431
  * @type {object}
1873
2432
  * @memberof UpdateMetadataDto
1874
2433
  */
1875
- 'overwrite': object;
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;
1876
2454
  }
1877
2455
  /**
1878
2456
  *
@@ -1885,13 +2463,13 @@ export interface UpdateStorageRecordParamsDto {
1885
2463
  * @type {string}
1886
2464
  * @memberof UpdateStorageRecordParamsDto
1887
2465
  */
1888
- 'key': string;
2466
+ key: string;
1889
2467
  /**
1890
2468
  *
1891
2469
  * @type {object}
1892
2470
  * @memberof UpdateStorageRecordParamsDto
1893
2471
  */
1894
- 'value': object;
2472
+ value: object;
1895
2473
  }
1896
2474
  /**
1897
2475
  *
@@ -1904,13 +2482,13 @@ export interface UpscaleV1ControllerInput {
1904
2482
  * @type {UpscaleV1Input}
1905
2483
  * @memberof UpscaleV1ControllerInput
1906
2484
  */
1907
- 'input': UpscaleV1Input;
2485
+ input: UpscaleV1Input;
1908
2486
  /**
1909
2487
  *
1910
2488
  * @type {object}
1911
2489
  * @memberof UpscaleV1ControllerInput
1912
2490
  */
1913
- 'metadata'?: object;
2491
+ metadata?: object;
1914
2492
  }
1915
2493
  /**
1916
2494
  *
@@ -1923,21 +2501,13 @@ export interface UpscaleV1Input {
1923
2501
  * @type {string}
1924
2502
  * @memberof UpscaleV1Input
1925
2503
  */
1926
- 'imageId': string;
2504
+ imageId: string;
1927
2505
  }
1928
2506
  /**
1929
2507
  * AccessApi - axios parameter creator
1930
2508
  * @export
1931
2509
  */
1932
2510
  export declare const AccessApiAxiosParamCreator: (configuration?: Configuration) => {
1933
- /**
1934
- *
1935
- * @param {string} id
1936
- * @param {GrantAccessControllerParams} grantAccessControllerParams
1937
- * @param {*} [options] Override http request option.
1938
- * @throws {RequiredError}
1939
- */
1940
- accessControllerAccountGrantAccessV1: (id: string, grantAccessControllerParams: GrantAccessControllerParams, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1941
2511
  /**
1942
2512
  *
1943
2513
  * @param {string} id
@@ -1953,21 +2523,13 @@ export declare const AccessApiAxiosParamCreator: (configuration?: Configuration)
1953
2523
  * @param {*} [options] Override http request option.
1954
2524
  * @throws {RequiredError}
1955
2525
  */
1956
- accessControllerGroupGrantAccessV1: (id: string, grantAccessControllerParams: GrantAccessControllerParams, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2526
+ accessControllerGrantAccessV1: (id: string, grantAccessControllerParams: GrantAccessControllerParams, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1957
2527
  };
1958
2528
  /**
1959
2529
  * AccessApi - functional programming interface
1960
2530
  * @export
1961
2531
  */
1962
2532
  export declare const AccessApiFp: (configuration?: Configuration) => {
1963
- /**
1964
- *
1965
- * @param {string} id
1966
- * @param {GrantAccessControllerParams} grantAccessControllerParams
1967
- * @param {*} [options] Override http request option.
1968
- * @throws {RequiredError}
1969
- */
1970
- accessControllerAccountGrantAccessV1(id: string, grantAccessControllerParams: GrantAccessControllerParams, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
1971
2533
  /**
1972
2534
  *
1973
2535
  * @param {string} id
@@ -1983,21 +2545,13 @@ export declare const AccessApiFp: (configuration?: Configuration) => {
1983
2545
  * @param {*} [options] Override http request option.
1984
2546
  * @throws {RequiredError}
1985
2547
  */
1986
- accessControllerGroupGrantAccessV1(id: string, grantAccessControllerParams: GrantAccessControllerParams, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
2548
+ accessControllerGrantAccessV1(id: string, grantAccessControllerParams: GrantAccessControllerParams, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
1987
2549
  };
1988
2550
  /**
1989
2551
  * AccessApi - factory interface
1990
2552
  * @export
1991
2553
  */
1992
2554
  export declare const AccessApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
1993
- /**
1994
- *
1995
- * @param {string} id
1996
- * @param {GrantAccessControllerParams} grantAccessControllerParams
1997
- * @param {*} [options] Override http request option.
1998
- * @throws {RequiredError}
1999
- */
2000
- accessControllerAccountGrantAccessV1(id: string, grantAccessControllerParams: GrantAccessControllerParams, options?: RawAxiosRequestConfig): AxiosPromise<void>;
2001
2555
  /**
2002
2556
  *
2003
2557
  * @param {string} id
@@ -2013,7 +2567,7 @@ export declare const AccessApiFactory: (configuration?: Configuration, basePath?
2013
2567
  * @param {*} [options] Override http request option.
2014
2568
  * @throws {RequiredError}
2015
2569
  */
2016
- accessControllerGroupGrantAccessV1(id: string, grantAccessControllerParams: GrantAccessControllerParams, options?: RawAxiosRequestConfig): AxiosPromise<void>;
2570
+ accessControllerGrantAccessV1(id: string, grantAccessControllerParams: GrantAccessControllerParams, options?: RawAxiosRequestConfig): AxiosPromise<void>;
2017
2571
  };
2018
2572
  /**
2019
2573
  * AccessApi - object-oriented interface
@@ -2022,15 +2576,6 @@ export declare const AccessApiFactory: (configuration?: Configuration, basePath?
2022
2576
  * @extends {BaseAPI}
2023
2577
  */
2024
2578
  export declare class AccessApi extends BaseAPI {
2025
- /**
2026
- *
2027
- * @param {string} id
2028
- * @param {GrantAccessControllerParams} grantAccessControllerParams
2029
- * @param {*} [options] Override http request option.
2030
- * @throws {RequiredError}
2031
- * @memberof AccessApi
2032
- */
2033
- accessControllerAccountGrantAccessV1(id: string, grantAccessControllerParams: GrantAccessControllerParams, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
2034
2579
  /**
2035
2580
  *
2036
2581
  * @param {string} id
@@ -2048,7 +2593,7 @@ export declare class AccessApi extends BaseAPI {
2048
2593
  * @throws {RequiredError}
2049
2594
  * @memberof AccessApi
2050
2595
  */
2051
- accessControllerGroupGrantAccessV1(id: string, grantAccessControllerParams: GrantAccessControllerParams, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
2596
+ accessControllerGrantAccessV1(id: string, grantAccessControllerParams: GrantAccessControllerParams, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
2052
2597
  }
2053
2598
  /**
2054
2599
  * AccountsApi - axios parameter creator
@@ -2232,7 +2777,7 @@ export declare const AccountsControllerListAccointsV1OrderByEnum: {
2232
2777
  readonly Asc: "createdAt_ASC";
2233
2778
  readonly Desc: "createdAt_DESC";
2234
2779
  };
2235
- export type AccountsControllerListAccointsV1OrderByEnum = typeof AccountsControllerListAccointsV1OrderByEnum[keyof typeof AccountsControllerListAccointsV1OrderByEnum];
2780
+ export type AccountsControllerListAccointsV1OrderByEnum = (typeof AccountsControllerListAccointsV1OrderByEnum)[keyof typeof AccountsControllerListAccointsV1OrderByEnum];
2236
2781
  /**
2237
2782
  * BalancesApi - axios parameter creator
2238
2783
  * @export
@@ -2353,163 +2898,877 @@ export declare class BalancesApi extends BaseAPI {
2353
2898
  export declare const CallApiAxiosParamCreator: (configuration?: Configuration) => {
2354
2899
  /**
2355
2900
  *
2356
- * @param {CreateCollectionParamsDto} createCollectionParamsDto
2901
+ * @param {AddBalanceParamsDto} addBalanceParamsDto
2357
2902
  * @param {*} [options] Override http request option.
2358
2903
  * @throws {RequiredError}
2359
2904
  */
2360
- callControllerCallCollectionsCreateV1: (createCollectionParamsDto: CreateCollectionParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2905
+ callControllerCallAccountsBalanceAddV1: (addBalanceParamsDto: AddBalanceParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2361
2906
  /**
2362
2907
  *
2363
- * @param {GetCollectionParamsDto} getCollectionParamsDto
2908
+ * @param {GetBalanceParamsDto} getBalanceParamsDto
2364
2909
  * @param {*} [options] Override http request option.
2365
2910
  * @throws {RequiredError}
2366
2911
  */
2367
- callControllerCallCollectionsGetV1: (getCollectionParamsDto: GetCollectionParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2912
+ callControllerCallAccountsBalanceGetV1: (getBalanceParamsDto: GetBalanceParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2368
2913
  /**
2369
2914
  *
2370
- * @param {AddItemsToCollectionParamsDto} addItemsToCollectionParamsDto
2915
+ * @param {string} body
2371
2916
  * @param {*} [options] Override http request option.
2372
2917
  * @throws {RequiredError}
2373
2918
  */
2374
- callControllerCallCollectionsItemsAddV1: (addItemsToCollectionParamsDto: AddItemsToCollectionParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2919
+ callControllerCallAccountsBalanceSelfV1: (body: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2375
2920
  /**
2376
2921
  *
2377
- * @param {AddItemsToCollectionParamsDto} addItemsToCollectionParamsDto
2922
+ * @param {CreateAccountParamsDto} createAccountParamsDto
2378
2923
  * @param {*} [options] Override http request option.
2379
2924
  * @throws {RequiredError}
2380
2925
  */
2381
- callControllerCallCollectionsItemsRemoveV1: (addItemsToCollectionParamsDto: AddItemsToCollectionParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2926
+ callControllerCallAccountsCreateV1: (createAccountParamsDto: CreateAccountParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2382
2927
  /**
2383
2928
  *
2384
- * @param {GetUrlsForImagesParamsDto} getUrlsForImagesParamsDto
2929
+ * @param {GetAccountParamsDto} getAccountParamsDto
2385
2930
  * @param {*} [options] Override http request option.
2386
2931
  * @throws {RequiredError}
2387
2932
  */
2388
- callControllerCallImagesGetManyV1: (getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2933
+ callControllerCallAccountsGetV1: (getAccountParamsDto: GetAccountParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2389
2934
  /**
2390
2935
  *
2391
- * @param {CreateStackParamsDto} createStackParamsDto
2936
+ * @param {ListAccountsParamsDto} listAccountsParamsDto
2392
2937
  * @param {*} [options] Override http request option.
2393
2938
  * @throws {RequiredError}
2394
2939
  */
2395
- callControllerCallStacksCreateV1: (createStackParamsDto: CreateStackParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2940
+ callControllerCallAccountsListV1: (listAccountsParamsDto: ListAccountsParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2396
2941
  /**
2397
2942
  *
2398
- * @param {ListStacksParamsDto} listStacksParamsDto
2943
+ * @param {string} body
2399
2944
  * @param {*} [options] Override http request option.
2400
2945
  * @throws {RequiredError}
2401
2946
  */
2402
- callControllerCallStacksListV1: (listStacksParamsDto: ListStacksParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2403
- };
2404
- /**
2405
- * CallApi - functional programming interface
2406
- * @export
2407
- */
2408
- export declare const CallApiFp: (configuration?: Configuration) => {
2947
+ callControllerCallAccountsSelfV1: (body: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2409
2948
  /**
2410
2949
  *
2411
2950
  * @param {CreateCollectionParamsDto} createCollectionParamsDto
2412
2951
  * @param {*} [options] Override http request option.
2413
2952
  * @throws {RequiredError}
2414
2953
  */
2415
- callControllerCallCollectionsCreateV1(createCollectionParamsDto: CreateCollectionParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CollectionEntity>>;
2954
+ callControllerCallCollectionsCreateV1: (createCollectionParamsDto: CreateCollectionParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2416
2955
  /**
2417
2956
  *
2418
2957
  * @param {GetCollectionParamsDto} getCollectionParamsDto
2419
2958
  * @param {*} [options] Override http request option.
2420
2959
  * @throws {RequiredError}
2421
2960
  */
2422
- callControllerCallCollectionsGetV1(getCollectionParamsDto: GetCollectionParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CollectionEntity>>;
2961
+ callControllerCallCollectionsGetV1: (getCollectionParamsDto: GetCollectionParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2423
2962
  /**
2424
2963
  *
2425
2964
  * @param {AddItemsToCollectionParamsDto} addItemsToCollectionParamsDto
2426
2965
  * @param {*} [options] Override http request option.
2427
2966
  * @throws {RequiredError}
2428
2967
  */
2429
- callControllerCallCollectionsItemsAddV1(addItemsToCollectionParamsDto: AddItemsToCollectionParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
2968
+ callControllerCallCollectionsItemsAddV1: (addItemsToCollectionParamsDto: AddItemsToCollectionParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2430
2969
  /**
2431
2970
  *
2432
- * @param {AddItemsToCollectionParamsDto} addItemsToCollectionParamsDto
2971
+ * @param {ListCollectionItemsParamsDto} listCollectionItemsParamsDto
2433
2972
  * @param {*} [options] Override http request option.
2434
2973
  * @throws {RequiredError}
2435
2974
  */
2436
- callControllerCallCollectionsItemsRemoveV1(addItemsToCollectionParamsDto: AddItemsToCollectionParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
2975
+ callControllerCallCollectionsItemsListV1: (listCollectionItemsParamsDto: ListCollectionItemsParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2437
2976
  /**
2438
2977
  *
2439
- * @param {GetUrlsForImagesParamsDto} getUrlsForImagesParamsDto
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
2440
3328
  * @param {*} [options] Override http request option.
2441
3329
  * @throws {RequiredError}
2442
3330
  */
2443
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>;
2444
3702
  /**
2445
3703
  *
2446
3704
  * @param {CreateStackParamsDto} createStackParamsDto
2447
3705
  * @param {*} [options] Override http request option.
2448
3706
  * @throws {RequiredError}
2449
3707
  */
2450
- callControllerCallStacksCreateV1(createStackParamsDto: CreateStackParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StackEntity>>;
3708
+ callControllerCallStacksCreateV1(createStackParamsDto: CreateStackParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<StackEntity>;
2451
3709
  /**
2452
3710
  *
2453
- * @param {ListStacksParamsDto} listStacksParamsDto
3711
+ * @param {GetStackParamsDto} getStackParamsDto
2454
3712
  * @param {*} [options] Override http request option.
2455
3713
  * @throws {RequiredError}
2456
3714
  */
2457
- callControllerCallStacksListV1(listStacksParamsDto: ListStacksParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListStacksDto>>;
2458
- };
2459
- /**
2460
- * CallApi - factory interface
2461
- * @export
2462
- */
2463
- export declare const CallApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
3715
+ callControllerCallStacksGetV1(getStackParamsDto: GetStackParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<StackEntity>;
2464
3716
  /**
2465
3717
  *
2466
- * @param {CreateCollectionParamsDto} createCollectionParamsDto
3718
+ * @param {AddItemsToStackParamsDto} addItemsToStackParamsDto
2467
3719
  * @param {*} [options] Override http request option.
2468
3720
  * @throws {RequiredError}
2469
3721
  */
2470
- callControllerCallCollectionsCreateV1(createCollectionParamsDto: CreateCollectionParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<CollectionEntity>;
3722
+ callControllerCallStacksItemsAddV1(addItemsToStackParamsDto: AddItemsToStackParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<StackEntity>;
2471
3723
  /**
2472
3724
  *
2473
- * @param {GetCollectionParamsDto} getCollectionParamsDto
3725
+ * @param {RemoveItemsFromStackParamsDto} removeItemsFromStackParamsDto
2474
3726
  * @param {*} [options] Override http request option.
2475
3727
  * @throws {RequiredError}
2476
3728
  */
2477
- callControllerCallCollectionsGetV1(getCollectionParamsDto: GetCollectionParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<CollectionEntity>;
3729
+ callControllerCallStacksItemsRemoveV1(removeItemsFromStackParamsDto: RemoveItemsFromStackParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<StackEntity>;
2478
3730
  /**
2479
3731
  *
2480
- * @param {AddItemsToCollectionParamsDto} addItemsToCollectionParamsDto
3732
+ * @param {ListStacksParamsDto} listStacksParamsDto
2481
3733
  * @param {*} [options] Override http request option.
2482
3734
  * @throws {RequiredError}
2483
3735
  */
2484
- callControllerCallCollectionsItemsAddV1(addItemsToCollectionParamsDto: AddItemsToCollectionParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<void>;
3736
+ callControllerCallStacksListV1(listStacksParamsDto: ListStacksParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<ListStacksDto>;
2485
3737
  /**
2486
3738
  *
2487
- * @param {AddItemsToCollectionParamsDto} addItemsToCollectionParamsDto
3739
+ * @param {UpdateResourceMetadataDto} updateResourceMetadataDto
2488
3740
  * @param {*} [options] Override http request option.
2489
3741
  * @throws {RequiredError}
2490
3742
  */
2491
- callControllerCallCollectionsItemsRemoveV1(addItemsToCollectionParamsDto: AddItemsToCollectionParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<void>;
3743
+ callControllerCallStacksMetadataUpdateV1(updateResourceMetadataDto: UpdateResourceMetadataDto, options?: RawAxiosRequestConfig): AxiosPromise<StackEntity>;
2492
3744
  /**
2493
3745
  *
2494
- * @param {GetUrlsForImagesParamsDto} getUrlsForImagesParamsDto
3746
+ * @param {CreateStorageRecordParamsDto} createStorageRecordParamsDto
2495
3747
  * @param {*} [options] Override http request option.
2496
3748
  * @throws {RequiredError}
2497
3749
  */
2498
- callControllerCallImagesGetManyV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<ImageUrlResponseDto>>;
3750
+ callControllerCallStorageCreateV1(createStorageRecordParamsDto: CreateStorageRecordParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<StorageEntity>;
2499
3751
  /**
2500
3752
  *
2501
- * @param {CreateStackParamsDto} createStackParamsDto
3753
+ * @param {DeleteStorageParamsDto} deleteStorageParamsDto
2502
3754
  * @param {*} [options] Override http request option.
2503
3755
  * @throws {RequiredError}
2504
3756
  */
2505
- callControllerCallStacksCreateV1(createStackParamsDto: CreateStackParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<StackEntity>;
3757
+ callControllerCallStorageDeleteV1(deleteStorageParamsDto: DeleteStorageParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<void>;
2506
3758
  /**
2507
3759
  *
2508
- * @param {ListStacksParamsDto} listStacksParamsDto
3760
+ * @param {GetStorageRecordParamsDto} getStorageRecordParamsDto
2509
3761
  * @param {*} [options] Override http request option.
2510
3762
  * @throws {RequiredError}
2511
3763
  */
2512
- callControllerCallStacksListV1(listStacksParamsDto: ListStacksParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<ListStacksDto>;
3764
+ callControllerCallStorageGetManyV1(getStorageRecordParamsDto: GetStorageRecordParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<StorageRecordsResultDto>>;
3765
+ /**
3766
+ *
3767
+ * @param {UpdateStorageRecordParamsDto} updateStorageRecordParamsDto
3768
+ * @param {*} [options] Override http request option.
3769
+ * @throws {RequiredError}
3770
+ */
3771
+ callControllerCallStorageUpdateV1(updateStorageRecordParamsDto: UpdateStorageRecordParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<StorageEntity>;
2513
3772
  };
2514
3773
  /**
2515
3774
  * CallApi - object-oriented interface
@@ -2518,6 +3777,62 @@ export declare const CallApiFactory: (configuration?: Configuration, basePath?:
2518
3777
  * @extends {BaseAPI}
2519
3778
  */
2520
3779
  export declare class CallApi extends BaseAPI {
3780
+ /**
3781
+ *
3782
+ * @param {AddBalanceParamsDto} addBalanceParamsDto
3783
+ * @param {*} [options] Override http request option.
3784
+ * @throws {RequiredError}
3785
+ * @memberof CallApi
3786
+ */
3787
+ callControllerCallAccountsBalanceAddV1(addBalanceParamsDto: AddBalanceParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
3788
+ /**
3789
+ *
3790
+ * @param {GetBalanceParamsDto} getBalanceParamsDto
3791
+ * @param {*} [options] Override http request option.
3792
+ * @throws {RequiredError}
3793
+ * @memberof CallApi
3794
+ */
3795
+ callControllerCallAccountsBalanceGetV1(getBalanceParamsDto: GetBalanceParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BalanceResultDto, any>>;
3796
+ /**
3797
+ *
3798
+ * @param {string} body
3799
+ * @param {*} [options] Override http request option.
3800
+ * @throws {RequiredError}
3801
+ * @memberof CallApi
3802
+ */
3803
+ callControllerCallAccountsBalanceSelfV1(body: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BalanceResultDto, any>>;
3804
+ /**
3805
+ *
3806
+ * @param {CreateAccountParamsDto} createAccountParamsDto
3807
+ * @param {*} [options] Override http request option.
3808
+ * @throws {RequiredError}
3809
+ * @memberof CallApi
3810
+ */
3811
+ callControllerCallAccountsCreateV1(createAccountParamsDto: CreateAccountParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountEntity, any>>;
3812
+ /**
3813
+ *
3814
+ * @param {GetAccountParamsDto} getAccountParamsDto
3815
+ * @param {*} [options] Override http request option.
3816
+ * @throws {RequiredError}
3817
+ * @memberof CallApi
3818
+ */
3819
+ callControllerCallAccountsGetV1(getAccountParamsDto: GetAccountParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountEntity, any>>;
3820
+ /**
3821
+ *
3822
+ * @param {ListAccountsParamsDto} listAccountsParamsDto
3823
+ * @param {*} [options] Override http request option.
3824
+ * @throws {RequiredError}
3825
+ * @memberof CallApi
3826
+ */
3827
+ callControllerCallAccountsListV1(listAccountsParamsDto: ListAccountsParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListAccountsDto, any>>;
3828
+ /**
3829
+ *
3830
+ * @param {string} body
3831
+ * @param {*} [options] Override http request option.
3832
+ * @throws {RequiredError}
3833
+ * @memberof CallApi
3834
+ */
3835
+ callControllerCallAccountsSelfV1(body: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountEntity, any>>;
2521
3836
  /**
2522
3837
  *
2523
3838
  * @param {CreateCollectionParamsDto} createCollectionParamsDto
@@ -2544,12 +3859,76 @@ export declare class CallApi extends BaseAPI {
2544
3859
  callControllerCallCollectionsItemsAddV1(addItemsToCollectionParamsDto: AddItemsToCollectionParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
2545
3860
  /**
2546
3861
  *
2547
- * @param {AddItemsToCollectionParamsDto} addItemsToCollectionParamsDto
3862
+ * @param {ListCollectionItemsParamsDto} listCollectionItemsParamsDto
3863
+ * @param {*} [options] Override http request option.
3864
+ * @throws {RequiredError}
3865
+ * @memberof CallApi
3866
+ */
3867
+ callControllerCallCollectionsItemsListV1(listCollectionItemsParamsDto: ListCollectionItemsParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListCollectionItemsDto, any>>;
3868
+ /**
3869
+ *
3870
+ * @param {RemoveItemsFromCollectionParamsDto} removeItemsFromCollectionParamsDto
3871
+ * @param {*} [options] Override http request option.
3872
+ * @throws {RequiredError}
3873
+ * @memberof CallApi
3874
+ */
3875
+ callControllerCallCollectionsItemsRemoveV1(removeItemsFromCollectionParamsDto: RemoveItemsFromCollectionParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
3876
+ /**
3877
+ *
3878
+ * @param {ListCollectionsParamsDto} listCollectionsParamsDto
3879
+ * @param {*} [options] Override http request option.
3880
+ * @throws {RequiredError}
3881
+ * @memberof CallApi
3882
+ */
3883
+ callControllerCallCollectionsListV1(listCollectionsParamsDto: ListCollectionsParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListCollectionsDto, any>>;
3884
+ /**
3885
+ *
3886
+ * @param {UpdateResourceMetadataDto} updateResourceMetadataDto
3887
+ * @param {*} [options] Override http request option.
3888
+ * @throws {RequiredError}
3889
+ * @memberof CallApi
3890
+ */
3891
+ callControllerCallCollectionsMetadataUpdateV1(updateResourceMetadataDto: UpdateResourceMetadataDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CollectionEntity, any>>;
3892
+ /**
3893
+ *
3894
+ * @param {AddAccountToGroupParamsDto} addAccountToGroupParamsDto
3895
+ * @param {*} [options] Override http request option.
3896
+ * @throws {RequiredError}
3897
+ * @memberof CallApi
3898
+ */
3899
+ callControllerCallGroupsAccountsAddV1(addAccountToGroupParamsDto: AddAccountToGroupParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
3900
+ /**
3901
+ *
3902
+ * @param {RemoveAccountFromGroupParamsDto} removeAccountFromGroupParamsDto
3903
+ * @param {*} [options] Override http request option.
3904
+ * @throws {RequiredError}
3905
+ * @memberof CallApi
3906
+ */
3907
+ callControllerCallGroupsAccountsRemoveV1(removeAccountFromGroupParamsDto: RemoveAccountFromGroupParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
3908
+ /**
3909
+ *
3910
+ * @param {string} body
3911
+ * @param {*} [options] Override http request option.
3912
+ * @throws {RequiredError}
3913
+ * @memberof CallApi
3914
+ */
3915
+ callControllerCallGroupsCreateV1(body: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GroupEntity, any>>;
3916
+ /**
3917
+ *
3918
+ * @param {DeleteParamsDto} deleteParamsDto
3919
+ * @param {*} [options] Override http request option.
3920
+ * @throws {RequiredError}
3921
+ * @memberof CallApi
3922
+ */
3923
+ callControllerCallGroupsDeleteV1(deleteParamsDto: DeleteParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
3924
+ /**
3925
+ *
3926
+ * @param {GetGroupParamsDto} getGroupParamsDto
2548
3927
  * @param {*} [options] Override http request option.
2549
3928
  * @throws {RequiredError}
2550
3929
  * @memberof CallApi
2551
3930
  */
2552
- callControllerCallCollectionsItemsRemoveV1(addItemsToCollectionParamsDto: AddItemsToCollectionParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
3931
+ callControllerCallGroupsGetV1(getGroupParamsDto: GetGroupParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GroupEntity, any>>;
2553
3932
  /**
2554
3933
  *
2555
3934
  * @param {GetUrlsForImagesParamsDto} getUrlsForImagesParamsDto
@@ -2558,6 +3937,94 @@ export declare class CallApi extends BaseAPI {
2558
3937
  * @memberof CallApi
2559
3938
  */
2560
3939
  callControllerCallImagesGetManyV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ImageUrlResponseDto[], any>>;
3940
+ /**
3941
+ *
3942
+ * @param {GetImageParamsDto} getImageParamsDto
3943
+ * @param {*} [options] Override http request option.
3944
+ * @throws {RequiredError}
3945
+ * @memberof CallApi
3946
+ */
3947
+ callControllerCallImagesGetV1(getImageParamsDto: GetImageParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ImageEntity, any>>;
3948
+ /**
3949
+ *
3950
+ * @param {GetImageRepresentationParamsDto} getImageRepresentationParamsDto
3951
+ * @param {*} [options] Override http request option.
3952
+ * @throws {RequiredError}
3953
+ * @memberof CallApi
3954
+ */
3955
+ callControllerCallImagesRepresentationsGetV1(getImageRepresentationParamsDto: GetImageRepresentationParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ImageRepresentationResponseDto, any>>;
3956
+ /**
3957
+ *
3958
+ * @param {GetOperationsParamsDto} getOperationsParamsDto
3959
+ * @param {*} [options] Override http request option.
3960
+ * @throws {RequiredError}
3961
+ * @memberof CallApi
3962
+ */
3963
+ callControllerCallOperationsGetManyV1(getOperationsParamsDto: GetOperationsParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity[], any>>;
3964
+ /**
3965
+ *
3966
+ * @param {GetOperationParamsDto} getOperationParamsDto
3967
+ * @param {*} [options] Override http request option.
3968
+ * @throws {RequiredError}
3969
+ * @memberof CallApi
3970
+ */
3971
+ callControllerCallOperationsGetV1(getOperationParamsDto: GetOperationParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
3972
+ /**
3973
+ *
3974
+ * @param {ListOperationsParamsDto} listOperationsParamsDto
3975
+ * @param {*} [options] Override http request option.
3976
+ * @throws {RequiredError}
3977
+ * @memberof CallApi
3978
+ */
3979
+ callControllerCallOperationsListV1(listOperationsParamsDto: ListOperationsParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListOperationsDto, any>>;
3980
+ /**
3981
+ *
3982
+ * @param {UpdateResourceMetadataDto} updateResourceMetadataDto
3983
+ * @param {*} [options] Override http request option.
3984
+ * @throws {RequiredError}
3985
+ * @memberof CallApi
3986
+ */
3987
+ callControllerCallOperationsMetadataUpdateV1(updateResourceMetadataDto: UpdateResourceMetadataDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
3988
+ /**
3989
+ *
3990
+ * @param {GetPoseParamsDto} getPoseParamsDto
3991
+ * @param {*} [options] Override http request option.
3992
+ * @throws {RequiredError}
3993
+ * @memberof CallApi
3994
+ */
3995
+ callControllerCallPosesGetV1(getPoseParamsDto: GetPoseParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PoseEntity, any>>;
3996
+ /**
3997
+ *
3998
+ * @param {ListPosesParamsDto} listPosesParamsDto
3999
+ * @param {*} [options] Override http request option.
4000
+ * @throws {RequiredError}
4001
+ * @memberof CallApi
4002
+ */
4003
+ callControllerCallPosesListV1(listPosesParamsDto: ListPosesParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListPosesDto, any>>;
4004
+ /**
4005
+ *
4006
+ * @param {SetPosePreviewDto} setPosePreviewDto
4007
+ * @param {*} [options] Override http request option.
4008
+ * @throws {RequiredError}
4009
+ * @memberof CallApi
4010
+ */
4011
+ callControllerCallPosesPreviewSetV1(setPosePreviewDto: SetPosePreviewDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
4012
+ /**
4013
+ *
4014
+ * @param {AttachAccessParamsDto} attachAccessParamsDto
4015
+ * @param {*} [options] Override http request option.
4016
+ * @throws {RequiredError}
4017
+ * @memberof CallApi
4018
+ */
4019
+ callControllerCallResourceAccessAttachV1(attachAccessParamsDto: AttachAccessParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
4020
+ /**
4021
+ *
4022
+ * @param {GrantAccessParamsDto} grantAccessParamsDto
4023
+ * @param {*} [options] Override http request option.
4024
+ * @throws {RequiredError}
4025
+ * @memberof CallApi
4026
+ */
4027
+ callControllerCallResourceAccessGrantV1(grantAccessParamsDto: GrantAccessParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
2561
4028
  /**
2562
4029
  *
2563
4030
  * @param {CreateStackParamsDto} createStackParamsDto
@@ -2566,6 +4033,30 @@ export declare class CallApi extends BaseAPI {
2566
4033
  * @memberof CallApi
2567
4034
  */
2568
4035
  callControllerCallStacksCreateV1(createStackParamsDto: CreateStackParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StackEntity, any>>;
4036
+ /**
4037
+ *
4038
+ * @param {GetStackParamsDto} getStackParamsDto
4039
+ * @param {*} [options] Override http request option.
4040
+ * @throws {RequiredError}
4041
+ * @memberof CallApi
4042
+ */
4043
+ callControllerCallStacksGetV1(getStackParamsDto: GetStackParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StackEntity, any>>;
4044
+ /**
4045
+ *
4046
+ * @param {AddItemsToStackParamsDto} addItemsToStackParamsDto
4047
+ * @param {*} [options] Override http request option.
4048
+ * @throws {RequiredError}
4049
+ * @memberof CallApi
4050
+ */
4051
+ callControllerCallStacksItemsAddV1(addItemsToStackParamsDto: AddItemsToStackParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StackEntity, any>>;
4052
+ /**
4053
+ *
4054
+ * @param {RemoveItemsFromStackParamsDto} removeItemsFromStackParamsDto
4055
+ * @param {*} [options] Override http request option.
4056
+ * @throws {RequiredError}
4057
+ * @memberof CallApi
4058
+ */
4059
+ callControllerCallStacksItemsRemoveV1(removeItemsFromStackParamsDto: RemoveItemsFromStackParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StackEntity, any>>;
2569
4060
  /**
2570
4061
  *
2571
4062
  * @param {ListStacksParamsDto} listStacksParamsDto
@@ -2574,6 +4065,46 @@ export declare class CallApi extends BaseAPI {
2574
4065
  * @memberof CallApi
2575
4066
  */
2576
4067
  callControllerCallStacksListV1(listStacksParamsDto: ListStacksParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListStacksDto, any>>;
4068
+ /**
4069
+ *
4070
+ * @param {UpdateResourceMetadataDto} updateResourceMetadataDto
4071
+ * @param {*} [options] Override http request option.
4072
+ * @throws {RequiredError}
4073
+ * @memberof CallApi
4074
+ */
4075
+ callControllerCallStacksMetadataUpdateV1(updateResourceMetadataDto: UpdateResourceMetadataDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StackEntity, any>>;
4076
+ /**
4077
+ *
4078
+ * @param {CreateStorageRecordParamsDto} createStorageRecordParamsDto
4079
+ * @param {*} [options] Override http request option.
4080
+ * @throws {RequiredError}
4081
+ * @memberof CallApi
4082
+ */
4083
+ callControllerCallStorageCreateV1(createStorageRecordParamsDto: CreateStorageRecordParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StorageEntity, any>>;
4084
+ /**
4085
+ *
4086
+ * @param {DeleteStorageParamsDto} deleteStorageParamsDto
4087
+ * @param {*} [options] Override http request option.
4088
+ * @throws {RequiredError}
4089
+ * @memberof CallApi
4090
+ */
4091
+ callControllerCallStorageDeleteV1(deleteStorageParamsDto: DeleteStorageParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
4092
+ /**
4093
+ *
4094
+ * @param {GetStorageRecordParamsDto} getStorageRecordParamsDto
4095
+ * @param {*} [options] Override http request option.
4096
+ * @throws {RequiredError}
4097
+ * @memberof CallApi
4098
+ */
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>>;
2577
4108
  }
2578
4109
  /**
2579
4110
  * CollectionsApi - axios parameter creator
@@ -2849,7 +4380,7 @@ export declare const CollectionsControllerListCollectionsV1OrderByEnum: {
2849
4380
  readonly UpdatedAtAsc: "updatedAt_ASC";
2850
4381
  readonly UpdatedAtDesc: "updatedAt_DESC";
2851
4382
  };
2852
- export type CollectionsControllerListCollectionsV1OrderByEnum = typeof CollectionsControllerListCollectionsV1OrderByEnum[keyof typeof CollectionsControllerListCollectionsV1OrderByEnum];
4383
+ export type CollectionsControllerListCollectionsV1OrderByEnum = (typeof CollectionsControllerListCollectionsV1OrderByEnum)[keyof typeof CollectionsControllerListCollectionsV1OrderByEnum];
2853
4384
  /**
2854
4385
  * @export
2855
4386
  */
@@ -2859,7 +4390,7 @@ export declare const CollectionsControllerListItemsV1OrderByEnum: {
2859
4390
  readonly UpdatedAtAsc: "updatedAt_ASC";
2860
4391
  readonly UpdatedAtDesc: "updatedAt_DESC";
2861
4392
  };
2862
- export type CollectionsControllerListItemsV1OrderByEnum = typeof CollectionsControllerListItemsV1OrderByEnum[keyof typeof CollectionsControllerListItemsV1OrderByEnum];
4393
+ export type CollectionsControllerListItemsV1OrderByEnum = (typeof CollectionsControllerListItemsV1OrderByEnum)[keyof typeof CollectionsControllerListItemsV1OrderByEnum];
2863
4394
  /**
2864
4395
  * @export
2865
4396
  */
@@ -2872,7 +4403,7 @@ export declare const CollectionsControllerListItemsV1KindEnum: {
2872
4403
  readonly Storage: "storage";
2873
4404
  readonly Pipeline: "pipeline";
2874
4405
  };
2875
- export type CollectionsControllerListItemsV1KindEnum = typeof CollectionsControllerListItemsV1KindEnum[keyof typeof CollectionsControllerListItemsV1KindEnum];
4406
+ export type CollectionsControllerListItemsV1KindEnum = (typeof CollectionsControllerListItemsV1KindEnum)[keyof typeof CollectionsControllerListItemsV1KindEnum];
2876
4407
  /**
2877
4408
  * GroupsApi - axios parameter creator
2878
4409
  * @export
@@ -3122,7 +4653,7 @@ export declare const ImagesApiFp: (configuration?: Configuration) => {
3122
4653
  * @param {*} [options] Override http request option.
3123
4654
  * @throws {RequiredError}
3124
4655
  */
3125
- imagesControllerGetUrlsV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ImageUrlResponseDto>>>;
4656
+ imagesControllerGetUrlsV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ImageEntity>>>;
3126
4657
  /**
3127
4658
  *
3128
4659
  * @param {*} [options] Override http request option.
@@ -3163,7 +4694,7 @@ export declare const ImagesApiFactory: (configuration?: Configuration, basePath?
3163
4694
  * @param {*} [options] Override http request option.
3164
4695
  * @throws {RequiredError}
3165
4696
  */
3166
- imagesControllerGetUrlsV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<ImageUrlResponseDto>>;
4697
+ imagesControllerGetUrlsV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<ImageEntity>>;
3167
4698
  /**
3168
4699
  *
3169
4700
  * @param {*} [options] Override http request option.
@@ -3210,7 +4741,7 @@ export declare class ImagesApi extends BaseAPI {
3210
4741
  * @throws {RequiredError}
3211
4742
  * @memberof ImagesApi
3212
4743
  */
3213
- imagesControllerGetUrlsV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ImageUrlResponseDto[], any>>;
4744
+ imagesControllerGetUrlsV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ImageEntity[], any>>;
3214
4745
  /**
3215
4746
  *
3216
4747
  * @param {*} [options] Override http request option.
@@ -3759,7 +5290,7 @@ export declare const OperationsControllerListOperationsV1OrderByEnum: {
3759
5290
  readonly UpdatedAtAsc: "updatedAt_ASC";
3760
5291
  readonly UpdatedAtDesc: "updatedAt_DESC";
3761
5292
  };
3762
- export type OperationsControllerListOperationsV1OrderByEnum = typeof OperationsControllerListOperationsV1OrderByEnum[keyof typeof OperationsControllerListOperationsV1OrderByEnum];
5293
+ export type OperationsControllerListOperationsV1OrderByEnum = (typeof OperationsControllerListOperationsV1OrderByEnum)[keyof typeof OperationsControllerListOperationsV1OrderByEnum];
3763
5294
  /**
3764
5295
  * PermissionsApi - axios parameter creator
3765
5296
  * @export
@@ -3939,7 +5470,7 @@ export declare const PipelinesControllerListPipelinesV1OrderByEnum: {
3939
5470
  readonly Asc: "createdAt_ASC";
3940
5471
  readonly Desc: "createdAt_DESC";
3941
5472
  };
3942
- export type PipelinesControllerListPipelinesV1OrderByEnum = typeof PipelinesControllerListPipelinesV1OrderByEnum[keyof typeof PipelinesControllerListPipelinesV1OrderByEnum];
5473
+ export type PipelinesControllerListPipelinesV1OrderByEnum = (typeof PipelinesControllerListPipelinesV1OrderByEnum)[keyof typeof PipelinesControllerListPipelinesV1OrderByEnum];
3943
5474
  /**
3944
5475
  * PosesApi - axios parameter creator
3945
5476
  * @export
@@ -3990,7 +5521,7 @@ export declare const PosesApiFp: (configuration?: Configuration) => {
3990
5521
  * @param {*} [options] Override http request option.
3991
5522
  * @throws {RequiredError}
3992
5523
  */
3993
- posesControllerListPosesV1(orderBy?: PosesControllerListPosesV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListPipelinesDto>>;
5524
+ posesControllerListPosesV1(orderBy?: PosesControllerListPosesV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListPosesDto>>;
3994
5525
  /**
3995
5526
  *
3996
5527
  * @param {string} id
@@ -4020,7 +5551,7 @@ export declare const PosesApiFactory: (configuration?: Configuration, basePath?:
4020
5551
  * @param {*} [options] Override http request option.
4021
5552
  * @throws {RequiredError}
4022
5553
  */
4023
- posesControllerListPosesV1(orderBy?: PosesControllerListPosesV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListPipelinesDto>;
5554
+ posesControllerListPosesV1(orderBy?: PosesControllerListPosesV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListPosesDto>;
4024
5555
  /**
4025
5556
  *
4026
5557
  * @param {string} id
@@ -4054,7 +5585,7 @@ export declare class PosesApi extends BaseAPI {
4054
5585
  * @throws {RequiredError}
4055
5586
  * @memberof PosesApi
4056
5587
  */
4057
- posesControllerListPosesV1(orderBy?: PosesControllerListPosesV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListPipelinesDto, any>>;
5588
+ posesControllerListPosesV1(orderBy?: PosesControllerListPosesV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListPosesDto, any>>;
4058
5589
  /**
4059
5590
  *
4060
5591
  * @param {string} id
@@ -4072,7 +5603,7 @@ export declare const PosesControllerListPosesV1OrderByEnum: {
4072
5603
  readonly Asc: "createdAt_ASC";
4073
5604
  readonly Desc: "createdAt_DESC";
4074
5605
  };
4075
- export type PosesControllerListPosesV1OrderByEnum = typeof PosesControllerListPosesV1OrderByEnum[keyof typeof PosesControllerListPosesV1OrderByEnum];
5606
+ export type PosesControllerListPosesV1OrderByEnum = (typeof PosesControllerListPosesV1OrderByEnum)[keyof typeof PosesControllerListPosesV1OrderByEnum];
4076
5607
  /**
4077
5608
  * StacksApi - axios parameter creator
4078
5609
  * @export
@@ -4302,7 +5833,7 @@ export declare const StacksControllerListStacksV1OrderByEnum: {
4302
5833
  readonly UpdatedAtAsc: "updatedAt_ASC";
4303
5834
  readonly UpdatedAtDesc: "updatedAt_DESC";
4304
5835
  };
4305
- export type StacksControllerListStacksV1OrderByEnum = typeof StacksControllerListStacksV1OrderByEnum[keyof typeof StacksControllerListStacksV1OrderByEnum];
5836
+ export type StacksControllerListStacksV1OrderByEnum = (typeof StacksControllerListStacksV1OrderByEnum)[keyof typeof StacksControllerListStacksV1OrderByEnum];
4306
5837
  /**
4307
5838
  * StorageApi - axios parameter creator
4308
5839
  * @export