@hautechai/sdk 0.0.1

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.
Files changed (51) hide show
  1. package/.env.example +5 -0
  2. package/.github/workflows/main.yml +43 -0
  3. package/LICENSE +19 -0
  4. package/README.md +62 -0
  5. package/dist/autogenerated/api.d.ts +3347 -0
  6. package/dist/autogenerated/api.js +4118 -0
  7. package/dist/autogenerated/base.d.ts +66 -0
  8. package/dist/autogenerated/base.js +59 -0
  9. package/dist/autogenerated/common.d.ts +65 -0
  10. package/dist/autogenerated/common.js +133 -0
  11. package/dist/autogenerated/configuration.d.ts +91 -0
  12. package/dist/autogenerated/configuration.js +39 -0
  13. package/dist/autogenerated/index.d.ts +13 -0
  14. package/dist/autogenerated/index.js +15 -0
  15. package/dist/index.d.ts +3 -0
  16. package/dist/index.js +3 -0
  17. package/dist/sdk/accounts/index.d.ts +13 -0
  18. package/dist/sdk/accounts/index.js +17 -0
  19. package/dist/sdk/api.d.ts +23 -0
  20. package/dist/sdk/api.js +48 -0
  21. package/dist/sdk/balances/index.d.ts +12 -0
  22. package/dist/sdk/balances/index.js +19 -0
  23. package/dist/sdk/collections/index.d.ts +28 -0
  24. package/dist/sdk/collections/index.js +31 -0
  25. package/dist/sdk/groups/index.d.ts +24 -0
  26. package/dist/sdk/groups/index.js +31 -0
  27. package/dist/sdk/images/index.d.ts +16 -0
  28. package/dist/sdk/images/index.js +36 -0
  29. package/dist/sdk/index.d.ts +167 -0
  30. package/dist/sdk/index.js +35 -0
  31. package/dist/sdk/operations/index.d.ts +42 -0
  32. package/dist/sdk/operations/index.js +64 -0
  33. package/dist/sdk/operations/updater.d.ts +11 -0
  34. package/dist/sdk/operations/updater.js +23 -0
  35. package/dist/sdk/stacks/index.d.ts +25 -0
  36. package/dist/sdk/stacks/index.js +30 -0
  37. package/dist/sdk/storage/index.d.ts +18 -0
  38. package/dist/sdk/storage/index.js +27 -0
  39. package/dist/sdk/utils/index.d.ts +5 -0
  40. package/dist/sdk/utils/index.js +6 -0
  41. package/dist/token/index.d.ts +15 -0
  42. package/dist/token/index.js +38 -0
  43. package/dist/token/permissions.d.ts +3 -0
  44. package/dist/token/permissions.js +40 -0
  45. package/dist/types.d.ts +54 -0
  46. package/dist/types.js +4 -0
  47. package/jest.setup.js +5 -0
  48. package/openapitools.json +7 -0
  49. package/package.json +37 -0
  50. package/scripts/generate.sh +3 -0
  51. package/tsconfig.json +14 -0
@@ -0,0 +1,3347 @@
1
+ /**
2
+ * Hautech API
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import type { Configuration } from './configuration';
13
+ import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
14
+ import type { RequestArgs } from './base';
15
+ import { BaseAPI } from './base';
16
+ /**
17
+ *
18
+ * @export
19
+ * @interface AccountEntity
20
+ */
21
+ export interface AccountEntity {
22
+ /**
23
+ *
24
+ * @type {string}
25
+ * @memberof AccountEntity
26
+ */
27
+ 'id': string;
28
+ /**
29
+ *
30
+ * @type {string}
31
+ * @memberof AccountEntity
32
+ */
33
+ 'type': AccountEntityTypeEnum;
34
+ }
35
+ export declare const AccountEntityTypeEnum: {
36
+ readonly Root: "root";
37
+ readonly User: "user";
38
+ };
39
+ export type AccountEntityTypeEnum = typeof AccountEntityTypeEnum[keyof typeof AccountEntityTypeEnum];
40
+ /**
41
+ *
42
+ * @export
43
+ * @interface AddAccessParamsDto
44
+ */
45
+ export interface AddAccessParamsDto {
46
+ /**
47
+ *
48
+ * @type {string}
49
+ * @memberof AddAccessParamsDto
50
+ */
51
+ 'accountId'?: string;
52
+ /**
53
+ *
54
+ * @type {string}
55
+ * @memberof AddAccessParamsDto
56
+ */
57
+ 'groupId'?: string;
58
+ /**
59
+ *
60
+ * @type {object}
61
+ * @memberof AddAccessParamsDto
62
+ */
63
+ 'resource': object;
64
+ /**
65
+ *
66
+ * @type {string}
67
+ * @memberof AddAccessParamsDto
68
+ */
69
+ 'resourceId': string;
70
+ /**
71
+ *
72
+ * @type {object}
73
+ * @memberof AddAccessParamsDto
74
+ */
75
+ 'role': object;
76
+ }
77
+ /**
78
+ *
79
+ * @export
80
+ * @interface AddAccountToGroupControllerParamsDto
81
+ */
82
+ export interface AddAccountToGroupControllerParamsDto {
83
+ /**
84
+ *
85
+ * @type {string}
86
+ * @memberof AddAccountToGroupControllerParamsDto
87
+ */
88
+ 'accountId': string;
89
+ /**
90
+ *
91
+ * @type {string}
92
+ * @memberof AddAccountToGroupControllerParamsDto
93
+ */
94
+ 'role': AddAccountToGroupControllerParamsDtoRoleEnum;
95
+ }
96
+ export declare const AddAccountToGroupControllerParamsDtoRoleEnum: {
97
+ readonly Maintainer: "maintainer";
98
+ readonly Member: "member";
99
+ readonly Owner: "owner";
100
+ };
101
+ export type AddAccountToGroupControllerParamsDtoRoleEnum = typeof AddAccountToGroupControllerParamsDtoRoleEnum[keyof typeof AddAccountToGroupControllerParamsDtoRoleEnum];
102
+ /**
103
+ *
104
+ * @export
105
+ * @interface AddBalanceControllerParamsDto
106
+ */
107
+ export interface AddBalanceControllerParamsDto {
108
+ /**
109
+ *
110
+ * @type {string}
111
+ * @memberof AddBalanceControllerParamsDto
112
+ */
113
+ 'amount': string;
114
+ }
115
+ /**
116
+ *
117
+ * @export
118
+ * @interface AddItemsToCollectionControllerParamsDto
119
+ */
120
+ export interface AddItemsToCollectionControllerParamsDto {
121
+ /**
122
+ *
123
+ * @type {Array<string>}
124
+ * @memberof AddItemsToCollectionControllerParamsDto
125
+ */
126
+ 'itemIds': Array<string>;
127
+ }
128
+ /**
129
+ *
130
+ * @export
131
+ * @interface AddOperationsToStackControllerParamsDto
132
+ */
133
+ export interface AddOperationsToStackControllerParamsDto {
134
+ /**
135
+ *
136
+ * @type {Array<string>}
137
+ * @memberof AddOperationsToStackControllerParamsDto
138
+ */
139
+ 'operationIds': Array<string>;
140
+ }
141
+ /**
142
+ *
143
+ * @export
144
+ * @interface BalanceResultDto
145
+ */
146
+ export interface BalanceResultDto {
147
+ /**
148
+ *
149
+ * @type {string}
150
+ * @memberof BalanceResultDto
151
+ */
152
+ 'balance': string;
153
+ }
154
+ /**
155
+ *
156
+ * @export
157
+ * @interface CollectionEntity
158
+ */
159
+ export interface CollectionEntity {
160
+ /**
161
+ *
162
+ * @type {number}
163
+ * @memberof CollectionEntity
164
+ */
165
+ 'kind': number;
166
+ /**
167
+ *
168
+ * @type {string}
169
+ * @memberof CollectionEntity
170
+ */
171
+ 'id': string;
172
+ /**
173
+ *
174
+ * @type {string}
175
+ * @memberof CollectionEntity
176
+ */
177
+ 'creatorId': string;
178
+ /**
179
+ *
180
+ * @type {object}
181
+ * @memberof CollectionEntity
182
+ */
183
+ 'metadata': object;
184
+ /**
185
+ *
186
+ * @type {string}
187
+ * @memberof CollectionEntity
188
+ */
189
+ 'createdAt': string;
190
+ /**
191
+ *
192
+ * @type {string}
193
+ * @memberof CollectionEntity
194
+ */
195
+ 'updatedAt': string;
196
+ }
197
+ /**
198
+ *
199
+ * @export
200
+ * @interface ConstructPromptV1ControllerInput
201
+ */
202
+ export interface ConstructPromptV1ControllerInput {
203
+ /**
204
+ *
205
+ * @type {object}
206
+ * @memberof ConstructPromptV1ControllerInput
207
+ */
208
+ 'metadata'?: object;
209
+ /**
210
+ *
211
+ * @type {ConstructPromptV1Input}
212
+ * @memberof ConstructPromptV1ControllerInput
213
+ */
214
+ 'input'?: ConstructPromptV1Input;
215
+ }
216
+ /**
217
+ *
218
+ * @export
219
+ * @interface ConstructPromptV1Input
220
+ */
221
+ export interface ConstructPromptV1Input {
222
+ /**
223
+ *
224
+ * @type {string}
225
+ * @memberof ConstructPromptV1Input
226
+ */
227
+ 'age'?: ConstructPromptV1InputAgeEnum;
228
+ /**
229
+ *
230
+ * @type {string}
231
+ * @memberof ConstructPromptV1Input
232
+ */
233
+ 'angle'?: ConstructPromptV1InputAngleEnum;
234
+ /**
235
+ *
236
+ * @type {string}
237
+ * @memberof ConstructPromptV1Input
238
+ */
239
+ 'background'?: ConstructPromptV1InputBackgroundEnum;
240
+ /**
241
+ *
242
+ * @type {string}
243
+ * @memberof ConstructPromptV1Input
244
+ */
245
+ 'ethnicity'?: ConstructPromptV1InputEthnicityEnum;
246
+ /**
247
+ *
248
+ * @type {string}
249
+ * @memberof ConstructPromptV1Input
250
+ */
251
+ 'gender'?: ConstructPromptV1InputGenderEnum;
252
+ /**
253
+ *
254
+ * @type {string}
255
+ * @memberof ConstructPromptV1Input
256
+ */
257
+ 'photoType'?: ConstructPromptV1InputPhotoTypeEnum;
258
+ /**
259
+ *
260
+ * @type {string}
261
+ * @memberof ConstructPromptV1Input
262
+ */
263
+ 'productDescription'?: string;
264
+ /**
265
+ *
266
+ * @type {string}
267
+ * @memberof ConstructPromptV1Input
268
+ */
269
+ 'prompt'?: string;
270
+ }
271
+ export declare const ConstructPromptV1InputAgeEnum: {
272
+ readonly Adult: "adult";
273
+ readonly Infant: "infant";
274
+ readonly PreTeen: "pre-teen";
275
+ readonly Senior: "senior";
276
+ readonly Teen: "teen";
277
+ readonly Toddler: "toddler";
278
+ };
279
+ export type ConstructPromptV1InputAgeEnum = typeof ConstructPromptV1InputAgeEnum[keyof typeof ConstructPromptV1InputAgeEnum];
280
+ export declare const ConstructPromptV1InputAngleEnum: {
281
+ readonly Back: "back";
282
+ readonly Front: "front";
283
+ readonly Side: "side";
284
+ };
285
+ export type ConstructPromptV1InputAngleEnum = typeof ConstructPromptV1InputAngleEnum[keyof typeof ConstructPromptV1InputAngleEnum];
286
+ export declare const ConstructPromptV1InputBackgroundEnum: {
287
+ readonly Beach: "beach";
288
+ readonly City: "city";
289
+ readonly Desert: "desert";
290
+ readonly Hotel: "hotel";
291
+ readonly Lounge: "lounge";
292
+ readonly Paris: "paris";
293
+ readonly Park: "park";
294
+ readonly Street: "street";
295
+ readonly Studio: "studio";
296
+ };
297
+ export type ConstructPromptV1InputBackgroundEnum = typeof ConstructPromptV1InputBackgroundEnum[keyof typeof ConstructPromptV1InputBackgroundEnum];
298
+ export declare const ConstructPromptV1InputEthnicityEnum: {
299
+ readonly African: "african";
300
+ readonly AfricanAmerican: "african-american";
301
+ readonly Asian: "asian";
302
+ readonly Australian: "australian";
303
+ readonly CentralAsian: "central-asian";
304
+ readonly European: "european";
305
+ readonly Indian: "indian";
306
+ readonly MiddleEastern: "middle-eastern";
307
+ readonly NativeAmerican: "native-american";
308
+ };
309
+ export type ConstructPromptV1InputEthnicityEnum = typeof ConstructPromptV1InputEthnicityEnum[keyof typeof ConstructPromptV1InputEthnicityEnum];
310
+ export declare const ConstructPromptV1InputGenderEnum: {
311
+ readonly Male: "male";
312
+ readonly Female: "female";
313
+ };
314
+ export type ConstructPromptV1InputGenderEnum = typeof ConstructPromptV1InputGenderEnum[keyof typeof ConstructPromptV1InputGenderEnum];
315
+ export declare const ConstructPromptV1InputPhotoTypeEnum: {
316
+ readonly Closeup: "closeup";
317
+ readonly Fullbody: "fullbody";
318
+ readonly Headshot: "headshot";
319
+ };
320
+ export type ConstructPromptV1InputPhotoTypeEnum = typeof ConstructPromptV1InputPhotoTypeEnum[keyof typeof ConstructPromptV1InputPhotoTypeEnum];
321
+ /**
322
+ *
323
+ * @export
324
+ * @interface CreateAccountParamsDto
325
+ */
326
+ export interface CreateAccountParamsDto {
327
+ /**
328
+ *
329
+ * @type {string}
330
+ * @memberof CreateAccountParamsDto
331
+ */
332
+ 'alias'?: string;
333
+ }
334
+ /**
335
+ *
336
+ * @export
337
+ * @interface CreateCollectionParamsDto
338
+ */
339
+ export interface CreateCollectionParamsDto {
340
+ /**
341
+ *
342
+ * @type {object}
343
+ * @memberof CreateCollectionParamsDto
344
+ */
345
+ 'metadata'?: object;
346
+ }
347
+ /**
348
+ *
349
+ * @export
350
+ * @interface CreateImageParamsDto
351
+ */
352
+ export interface CreateImageParamsDto {
353
+ /**
354
+ *
355
+ * @type {string}
356
+ * @memberof CreateImageParamsDto
357
+ */
358
+ 'fileToken'?: string;
359
+ }
360
+ /**
361
+ *
362
+ * @export
363
+ * @interface CreatePipelineParamsDto
364
+ */
365
+ export interface CreatePipelineParamsDto {
366
+ /**
367
+ *
368
+ * @type {object}
369
+ * @memberof CreatePipelineParamsDto
370
+ */
371
+ 'metadata'?: object;
372
+ /**
373
+ *
374
+ * @type {object}
375
+ * @memberof CreatePipelineParamsDto
376
+ */
377
+ 'tasks': object;
378
+ }
379
+ /**
380
+ *
381
+ * @export
382
+ * @interface CreatePoseParamsDto
383
+ */
384
+ export interface CreatePoseParamsDto {
385
+ /**
386
+ *
387
+ * @type {object}
388
+ * @memberof CreatePoseParamsDto
389
+ */
390
+ 'metadata'?: object;
391
+ /**
392
+ *
393
+ * @type {string}
394
+ * @memberof CreatePoseParamsDto
395
+ */
396
+ 'imageId': string;
397
+ }
398
+ /**
399
+ *
400
+ * @export
401
+ * @interface CreateStackParamsDto
402
+ */
403
+ export interface CreateStackParamsDto {
404
+ /**
405
+ *
406
+ * @type {object}
407
+ * @memberof CreateStackParamsDto
408
+ */
409
+ 'metadata'?: object;
410
+ }
411
+ /**
412
+ *
413
+ * @export
414
+ * @interface CreateStorageRecordParamsDto
415
+ */
416
+ export interface CreateStorageRecordParamsDto {
417
+ /**
418
+ *
419
+ * @type {string}
420
+ * @memberof CreateStorageRecordParamsDto
421
+ */
422
+ 'key': string;
423
+ /**
424
+ *
425
+ * @type {object}
426
+ * @memberof CreateStorageRecordParamsDto
427
+ */
428
+ 'value': object;
429
+ }
430
+ /**
431
+ *
432
+ * @export
433
+ * @interface DeleteStorageParamsDto
434
+ */
435
+ export interface DeleteStorageParamsDto {
436
+ /**
437
+ *
438
+ * @type {string}
439
+ * @memberof DeleteStorageParamsDto
440
+ */
441
+ 'key': string;
442
+ }
443
+ /**
444
+ *
445
+ * @export
446
+ * @interface GenerateV3ControllerInput
447
+ */
448
+ export interface GenerateV3ControllerInput {
449
+ /**
450
+ *
451
+ * @type {object}
452
+ * @memberof GenerateV3ControllerInput
453
+ */
454
+ 'metadata'?: object;
455
+ /**
456
+ *
457
+ * @type {GenerateV3Input}
458
+ * @memberof GenerateV3ControllerInput
459
+ */
460
+ 'input'?: GenerateV3Input;
461
+ }
462
+ /**
463
+ *
464
+ * @export
465
+ * @interface GenerateV3Input
466
+ */
467
+ export interface GenerateV3Input {
468
+ /**
469
+ *
470
+ * @type {string}
471
+ * @memberof GenerateV3Input
472
+ */
473
+ 'prompt': string;
474
+ /**
475
+ *
476
+ * @type {string}
477
+ * @memberof GenerateV3Input
478
+ */
479
+ 'category': string;
480
+ /**
481
+ *
482
+ * @type {string}
483
+ * @memberof GenerateV3Input
484
+ */
485
+ 'garmentImage': string;
486
+ /**
487
+ *
488
+ * @type {string}
489
+ * @memberof GenerateV3Input
490
+ */
491
+ 'poseImage': string;
492
+ /**
493
+ *
494
+ * @type {number}
495
+ * @memberof GenerateV3Input
496
+ */
497
+ 'seed': number;
498
+ /**
499
+ *
500
+ * @type {number}
501
+ * @memberof GenerateV3Input
502
+ */
503
+ 'width': number;
504
+ /**
505
+ *
506
+ * @type {number}
507
+ * @memberof GenerateV3Input
508
+ */
509
+ 'height': number;
510
+ }
511
+ /**
512
+ *
513
+ * @export
514
+ * @interface GetOperationsParamsDto
515
+ */
516
+ export interface GetOperationsParamsDto {
517
+ /**
518
+ *
519
+ * @type {Array<string>}
520
+ * @memberof GetOperationsParamsDto
521
+ */
522
+ 'ids': Array<string>;
523
+ }
524
+ /**
525
+ *
526
+ * @export
527
+ * @interface GetStorageRecordParamsDto
528
+ */
529
+ export interface GetStorageRecordParamsDto {
530
+ /**
531
+ *
532
+ * @type {Array<string>}
533
+ * @memberof GetStorageRecordParamsDto
534
+ */
535
+ 'keys': Array<string>;
536
+ }
537
+ /**
538
+ *
539
+ * @export
540
+ * @interface GetUrlsForImagesParamsDto
541
+ */
542
+ export interface GetUrlsForImagesParamsDto {
543
+ /**
544
+ *
545
+ * @type {Array<string>}
546
+ * @memberof GetUrlsForImagesParamsDto
547
+ */
548
+ 'ids': Array<string>;
549
+ }
550
+ /**
551
+ *
552
+ * @export
553
+ * @interface GroupEntity
554
+ */
555
+ export interface GroupEntity {
556
+ /**
557
+ *
558
+ * @type {string}
559
+ * @memberof GroupEntity
560
+ */
561
+ 'id': string;
562
+ /**
563
+ *
564
+ * @type {string}
565
+ * @memberof GroupEntity
566
+ */
567
+ 'createdAt': string;
568
+ }
569
+ /**
570
+ *
571
+ * @export
572
+ * @interface ImageEntity
573
+ */
574
+ export interface ImageEntity {
575
+ /**
576
+ *
577
+ * @type {string}
578
+ * @memberof ImageEntity
579
+ */
580
+ 'kind': ImageEntityKindEnum;
581
+ /**
582
+ *
583
+ * @type {string}
584
+ * @memberof ImageEntity
585
+ */
586
+ 'id': string;
587
+ /**
588
+ *
589
+ * @type {string}
590
+ * @memberof ImageEntity
591
+ */
592
+ 'creatorId': string;
593
+ /**
594
+ *
595
+ * @type {object}
596
+ * @memberof ImageEntity
597
+ */
598
+ 'metadata': object;
599
+ /**
600
+ *
601
+ * @type {string}
602
+ * @memberof ImageEntity
603
+ */
604
+ 'createdAt': string;
605
+ /**
606
+ *
607
+ * @type {string}
608
+ * @memberof ImageEntity
609
+ */
610
+ 'updatedAt': string;
611
+ /**
612
+ *
613
+ * @type {number}
614
+ * @memberof ImageEntity
615
+ */
616
+ 'width': number;
617
+ /**
618
+ *
619
+ * @type {number}
620
+ * @memberof ImageEntity
621
+ */
622
+ 'height': number;
623
+ /**
624
+ *
625
+ * @type {string}
626
+ * @memberof ImageEntity
627
+ */
628
+ 'format': string;
629
+ }
630
+ export declare const ImageEntityKindEnum: {
631
+ readonly Collection: "collection";
632
+ readonly Operation: "operation";
633
+ readonly Stack: "stack";
634
+ readonly Image: "image";
635
+ readonly Pose: "pose";
636
+ readonly Storage: "storage";
637
+ };
638
+ export type ImageEntityKindEnum = typeof ImageEntityKindEnum[keyof typeof ImageEntityKindEnum];
639
+ /**
640
+ *
641
+ * @export
642
+ * @interface ImageUrlsResultDto
643
+ */
644
+ export interface ImageUrlsResultDto {
645
+ /**
646
+ *
647
+ * @type {string}
648
+ * @memberof ImageUrlsResultDto
649
+ */
650
+ 'id': string;
651
+ /**
652
+ *
653
+ * @type {string}
654
+ * @memberof ImageUrlsResultDto
655
+ */
656
+ 'url': string;
657
+ }
658
+ /**
659
+ *
660
+ * @export
661
+ * @interface InitializeImageUploadResultDto
662
+ */
663
+ export interface InitializeImageUploadResultDto {
664
+ /**
665
+ *
666
+ * @type {string}
667
+ * @memberof InitializeImageUploadResultDto
668
+ */
669
+ 'uploadUrl': string;
670
+ }
671
+ /**
672
+ *
673
+ * @export
674
+ * @interface InpaintV1ControllerInput
675
+ */
676
+ export interface InpaintV1ControllerInput {
677
+ /**
678
+ *
679
+ * @type {object}
680
+ * @memberof InpaintV1ControllerInput
681
+ */
682
+ 'metadata'?: object;
683
+ /**
684
+ *
685
+ * @type {InpaintV1Input}
686
+ * @memberof InpaintV1ControllerInput
687
+ */
688
+ 'input'?: InpaintV1Input;
689
+ }
690
+ /**
691
+ *
692
+ * @export
693
+ * @interface InpaintV1Input
694
+ */
695
+ export interface InpaintV1Input {
696
+ /**
697
+ *
698
+ * @type {string}
699
+ * @memberof InpaintV1Input
700
+ */
701
+ 'image': string;
702
+ /**
703
+ *
704
+ * @type {string}
705
+ * @memberof InpaintV1Input
706
+ */
707
+ 'mask': string;
708
+ /**
709
+ *
710
+ * @type {string}
711
+ * @memberof InpaintV1Input
712
+ */
713
+ 'prompt': string;
714
+ /**
715
+ *
716
+ * @type {number}
717
+ * @memberof InpaintV1Input
718
+ */
719
+ 'seed': number;
720
+ /**
721
+ *
722
+ * @type {number}
723
+ * @memberof InpaintV1Input
724
+ */
725
+ 'strength': number;
726
+ /**
727
+ *
728
+ * @type {number}
729
+ * @memberof InpaintV1Input
730
+ */
731
+ 'height': number;
732
+ /**
733
+ *
734
+ * @type {number}
735
+ * @memberof InpaintV1Input
736
+ */
737
+ 'width': number;
738
+ /**
739
+ *
740
+ * @type {number}
741
+ * @memberof InpaintV1Input
742
+ */
743
+ 'numInferenceSteps': number;
744
+ /**
745
+ *
746
+ * @type {number}
747
+ * @memberof InpaintV1Input
748
+ */
749
+ 'guidanceScale': number;
750
+ }
751
+ /**
752
+ *
753
+ * @export
754
+ * @interface ListCollectionItemsDto
755
+ */
756
+ export interface ListCollectionItemsDto {
757
+ /**
758
+ *
759
+ * @type {Array<ResourceEntity>}
760
+ * @memberof ListCollectionItemsDto
761
+ */
762
+ 'data': Array<ResourceEntity>;
763
+ /**
764
+ *
765
+ * @type {ListCollectionsDtoPageInfo}
766
+ * @memberof ListCollectionItemsDto
767
+ */
768
+ 'pageInfo': ListCollectionsDtoPageInfo;
769
+ }
770
+ /**
771
+ *
772
+ * @export
773
+ * @interface ListCollectionsDto
774
+ */
775
+ export interface ListCollectionsDto {
776
+ /**
777
+ *
778
+ * @type {Array<CollectionEntity>}
779
+ * @memberof ListCollectionsDto
780
+ */
781
+ 'data': Array<CollectionEntity>;
782
+ /**
783
+ *
784
+ * @type {ListCollectionsDtoPageInfo}
785
+ * @memberof ListCollectionsDto
786
+ */
787
+ 'pageInfo': ListCollectionsDtoPageInfo;
788
+ }
789
+ /**
790
+ *
791
+ * @export
792
+ * @interface ListCollectionsDtoPageInfo
793
+ */
794
+ export interface ListCollectionsDtoPageInfo {
795
+ /**
796
+ *
797
+ * @type {string}
798
+ * @memberof ListCollectionsDtoPageInfo
799
+ */
800
+ 'nextCursor': string;
801
+ }
802
+ /**
803
+ *
804
+ * @export
805
+ * @interface ListOperationsDto
806
+ */
807
+ export interface ListOperationsDto {
808
+ /**
809
+ *
810
+ * @type {Array<OperationEntity>}
811
+ * @memberof ListOperationsDto
812
+ */
813
+ 'data': Array<OperationEntity>;
814
+ /**
815
+ *
816
+ * @type {ListCollectionsDtoPageInfo}
817
+ * @memberof ListOperationsDto
818
+ */
819
+ 'pageInfo': ListCollectionsDtoPageInfo;
820
+ }
821
+ /**
822
+ *
823
+ * @export
824
+ * @interface ListStacksDto
825
+ */
826
+ export interface ListStacksDto {
827
+ /**
828
+ *
829
+ * @type {Array<StackEntity>}
830
+ * @memberof ListStacksDto
831
+ */
832
+ 'data': Array<StackEntity>;
833
+ /**
834
+ *
835
+ * @type {ListCollectionsDtoPageInfo}
836
+ * @memberof ListStacksDto
837
+ */
838
+ 'pageInfo': ListCollectionsDtoPageInfo;
839
+ }
840
+ /**
841
+ *
842
+ * @export
843
+ * @interface OperationEntity
844
+ */
845
+ export interface OperationEntity {
846
+ /**
847
+ *
848
+ * @type {string}
849
+ * @memberof OperationEntity
850
+ */
851
+ 'kind': OperationEntityKindEnum;
852
+ /**
853
+ *
854
+ * @type {string}
855
+ * @memberof OperationEntity
856
+ */
857
+ 'id': string;
858
+ /**
859
+ *
860
+ * @type {string}
861
+ * @memberof OperationEntity
862
+ */
863
+ 'creatorId': string;
864
+ /**
865
+ *
866
+ * @type {object}
867
+ * @memberof OperationEntity
868
+ */
869
+ 'metadata': object;
870
+ /**
871
+ *
872
+ * @type {string}
873
+ * @memberof OperationEntity
874
+ */
875
+ 'createdAt': string;
876
+ /**
877
+ *
878
+ * @type {string}
879
+ * @memberof OperationEntity
880
+ */
881
+ 'updatedAt': string;
882
+ /**
883
+ *
884
+ * @type {object}
885
+ * @memberof OperationEntity
886
+ */
887
+ 'input': object;
888
+ /**
889
+ *
890
+ * @type {object}
891
+ * @memberof OperationEntity
892
+ */
893
+ 'output': object | null;
894
+ /**
895
+ *
896
+ * @type {string}
897
+ * @memberof OperationEntity
898
+ */
899
+ 'status': OperationEntityStatusEnum;
900
+ /**
901
+ *
902
+ * @type {string}
903
+ * @memberof OperationEntity
904
+ */
905
+ 'type': string;
906
+ }
907
+ export declare const OperationEntityKindEnum: {
908
+ readonly Collection: "collection";
909
+ readonly Operation: "operation";
910
+ readonly Stack: "stack";
911
+ readonly Image: "image";
912
+ readonly Pose: "pose";
913
+ readonly Storage: "storage";
914
+ };
915
+ export type OperationEntityKindEnum = typeof OperationEntityKindEnum[keyof typeof OperationEntityKindEnum];
916
+ export declare const OperationEntityStatusEnum: {
917
+ readonly Pending: "pending";
918
+ readonly Finished: "finished";
919
+ readonly Failed: "failed";
920
+ };
921
+ export type OperationEntityStatusEnum = typeof OperationEntityStatusEnum[keyof typeof OperationEntityStatusEnum];
922
+ /**
923
+ *
924
+ * @export
925
+ * @interface PipelineEntity
926
+ */
927
+ export interface PipelineEntity {
928
+ /**
929
+ *
930
+ * @type {string}
931
+ * @memberof PipelineEntity
932
+ */
933
+ 'kind': PipelineEntityKindEnum;
934
+ /**
935
+ *
936
+ * @type {string}
937
+ * @memberof PipelineEntity
938
+ */
939
+ 'id': string;
940
+ /**
941
+ *
942
+ * @type {string}
943
+ * @memberof PipelineEntity
944
+ */
945
+ 'creatorId': string;
946
+ /**
947
+ *
948
+ * @type {object}
949
+ * @memberof PipelineEntity
950
+ */
951
+ 'metadata': object;
952
+ /**
953
+ *
954
+ * @type {string}
955
+ * @memberof PipelineEntity
956
+ */
957
+ 'createdAt': string;
958
+ /**
959
+ *
960
+ * @type {string}
961
+ * @memberof PipelineEntity
962
+ */
963
+ 'updatedAt': string;
964
+ /**
965
+ *
966
+ * @type {object}
967
+ * @memberof PipelineEntity
968
+ */
969
+ 'permissions': object;
970
+ /**
971
+ *
972
+ * @type {object}
973
+ * @memberof PipelineEntity
974
+ */
975
+ 'state': object;
976
+ /**
977
+ *
978
+ * @type {string}
979
+ * @memberof PipelineEntity
980
+ */
981
+ 'status': PipelineEntityStatusEnum;
982
+ /**
983
+ *
984
+ * @type {object}
985
+ * @memberof PipelineEntity
986
+ */
987
+ 'tasks': object;
988
+ }
989
+ export declare const PipelineEntityKindEnum: {
990
+ readonly Collection: "collection";
991
+ readonly Operation: "operation";
992
+ readonly Stack: "stack";
993
+ readonly Image: "image";
994
+ readonly Pose: "pose";
995
+ readonly Storage: "storage";
996
+ };
997
+ export type PipelineEntityKindEnum = typeof PipelineEntityKindEnum[keyof typeof PipelineEntityKindEnum];
998
+ export declare const PipelineEntityStatusEnum: {
999
+ readonly Pending: "pending";
1000
+ readonly Running: "running";
1001
+ readonly Success: "success";
1002
+ readonly Failed: "failed";
1003
+ };
1004
+ export type PipelineEntityStatusEnum = typeof PipelineEntityStatusEnum[keyof typeof PipelineEntityStatusEnum];
1005
+ /**
1006
+ *
1007
+ * @export
1008
+ * @interface RemoveAccessParamsDto
1009
+ */
1010
+ export interface RemoveAccessParamsDto {
1011
+ /**
1012
+ *
1013
+ * @type {string}
1014
+ * @memberof RemoveAccessParamsDto
1015
+ */
1016
+ 'accountId'?: string;
1017
+ /**
1018
+ *
1019
+ * @type {string}
1020
+ * @memberof RemoveAccessParamsDto
1021
+ */
1022
+ 'groupId'?: string;
1023
+ /**
1024
+ *
1025
+ * @type {object}
1026
+ * @memberof RemoveAccessParamsDto
1027
+ */
1028
+ 'resource': object;
1029
+ /**
1030
+ *
1031
+ * @type {string}
1032
+ * @memberof RemoveAccessParamsDto
1033
+ */
1034
+ 'resourceId': string;
1035
+ /**
1036
+ *
1037
+ * @type {object}
1038
+ * @memberof RemoveAccessParamsDto
1039
+ */
1040
+ 'role': object;
1041
+ }
1042
+ /**
1043
+ *
1044
+ * @export
1045
+ * @interface RemoveAccountFromGroupControllerParamsDto
1046
+ */
1047
+ export interface RemoveAccountFromGroupControllerParamsDto {
1048
+ /**
1049
+ *
1050
+ * @type {string}
1051
+ * @memberof RemoveAccountFromGroupControllerParamsDto
1052
+ */
1053
+ 'accountId': string;
1054
+ /**
1055
+ *
1056
+ * @type {string}
1057
+ * @memberof RemoveAccountFromGroupControllerParamsDto
1058
+ */
1059
+ 'role': RemoveAccountFromGroupControllerParamsDtoRoleEnum;
1060
+ }
1061
+ export declare const RemoveAccountFromGroupControllerParamsDtoRoleEnum: {
1062
+ readonly Maintainer: "maintainer";
1063
+ readonly Member: "member";
1064
+ readonly Owner: "owner";
1065
+ };
1066
+ export type RemoveAccountFromGroupControllerParamsDtoRoleEnum = typeof RemoveAccountFromGroupControllerParamsDtoRoleEnum[keyof typeof RemoveAccountFromGroupControllerParamsDtoRoleEnum];
1067
+ /**
1068
+ *
1069
+ * @export
1070
+ * @interface RemoveItemsFromCollectionControllerParamsDto
1071
+ */
1072
+ export interface RemoveItemsFromCollectionControllerParamsDto {
1073
+ /**
1074
+ *
1075
+ * @type {Array<string>}
1076
+ * @memberof RemoveItemsFromCollectionControllerParamsDto
1077
+ */
1078
+ 'itemIds': Array<string>;
1079
+ }
1080
+ /**
1081
+ *
1082
+ * @export
1083
+ * @interface RemoveOperationsFromStackControllerParamsDto
1084
+ */
1085
+ export interface RemoveOperationsFromStackControllerParamsDto {
1086
+ /**
1087
+ *
1088
+ * @type {Array<string>}
1089
+ * @memberof RemoveOperationsFromStackControllerParamsDto
1090
+ */
1091
+ 'operationIds': Array<string>;
1092
+ }
1093
+ /**
1094
+ *
1095
+ * @export
1096
+ * @interface ResourceEntity
1097
+ */
1098
+ export interface ResourceEntity {
1099
+ /**
1100
+ *
1101
+ * @type {string}
1102
+ * @memberof ResourceEntity
1103
+ */
1104
+ 'kind': ResourceEntityKindEnum;
1105
+ /**
1106
+ *
1107
+ * @type {string}
1108
+ * @memberof ResourceEntity
1109
+ */
1110
+ 'id': string;
1111
+ /**
1112
+ *
1113
+ * @type {string}
1114
+ * @memberof ResourceEntity
1115
+ */
1116
+ 'creatorId': string;
1117
+ /**
1118
+ *
1119
+ * @type {object}
1120
+ * @memberof ResourceEntity
1121
+ */
1122
+ 'metadata': object;
1123
+ /**
1124
+ *
1125
+ * @type {string}
1126
+ * @memberof ResourceEntity
1127
+ */
1128
+ 'createdAt': string;
1129
+ /**
1130
+ *
1131
+ * @type {string}
1132
+ * @memberof ResourceEntity
1133
+ */
1134
+ 'updatedAt': string;
1135
+ }
1136
+ export declare const ResourceEntityKindEnum: {
1137
+ readonly Collection: "collection";
1138
+ readonly Operation: "operation";
1139
+ readonly Stack: "stack";
1140
+ readonly Image: "image";
1141
+ readonly Pose: "pose";
1142
+ readonly Storage: "storage";
1143
+ };
1144
+ export type ResourceEntityKindEnum = typeof ResourceEntityKindEnum[keyof typeof ResourceEntityKindEnum];
1145
+ /**
1146
+ *
1147
+ * @export
1148
+ * @interface StackEntity
1149
+ */
1150
+ export interface StackEntity {
1151
+ /**
1152
+ *
1153
+ * @type {string}
1154
+ * @memberof StackEntity
1155
+ */
1156
+ 'kind': StackEntityKindEnum;
1157
+ /**
1158
+ *
1159
+ * @type {string}
1160
+ * @memberof StackEntity
1161
+ */
1162
+ 'id': string;
1163
+ /**
1164
+ *
1165
+ * @type {string}
1166
+ * @memberof StackEntity
1167
+ */
1168
+ 'creatorId': string;
1169
+ /**
1170
+ *
1171
+ * @type {object}
1172
+ * @memberof StackEntity
1173
+ */
1174
+ 'metadata': object;
1175
+ /**
1176
+ *
1177
+ * @type {string}
1178
+ * @memberof StackEntity
1179
+ */
1180
+ 'createdAt': string;
1181
+ /**
1182
+ *
1183
+ * @type {string}
1184
+ * @memberof StackEntity
1185
+ */
1186
+ 'updatedAt': string;
1187
+ /**
1188
+ *
1189
+ * @type {Array<OperationEntity>}
1190
+ * @memberof StackEntity
1191
+ */
1192
+ 'operations': Array<OperationEntity>;
1193
+ }
1194
+ export declare const StackEntityKindEnum: {
1195
+ readonly Collection: "collection";
1196
+ readonly Operation: "operation";
1197
+ readonly Stack: "stack";
1198
+ readonly Image: "image";
1199
+ readonly Pose: "pose";
1200
+ readonly Storage: "storage";
1201
+ };
1202
+ export type StackEntityKindEnum = typeof StackEntityKindEnum[keyof typeof StackEntityKindEnum];
1203
+ /**
1204
+ *
1205
+ * @export
1206
+ * @interface StorageEntity
1207
+ */
1208
+ export interface StorageEntity {
1209
+ /**
1210
+ *
1211
+ * @type {string}
1212
+ * @memberof StorageEntity
1213
+ */
1214
+ 'kind': StorageEntityKindEnum;
1215
+ /**
1216
+ *
1217
+ * @type {string}
1218
+ * @memberof StorageEntity
1219
+ */
1220
+ 'id': string;
1221
+ /**
1222
+ *
1223
+ * @type {string}
1224
+ * @memberof StorageEntity
1225
+ */
1226
+ 'creatorId': string;
1227
+ /**
1228
+ *
1229
+ * @type {object}
1230
+ * @memberof StorageEntity
1231
+ */
1232
+ 'metadata': object;
1233
+ /**
1234
+ *
1235
+ * @type {string}
1236
+ * @memberof StorageEntity
1237
+ */
1238
+ 'createdAt': string;
1239
+ /**
1240
+ *
1241
+ * @type {string}
1242
+ * @memberof StorageEntity
1243
+ */
1244
+ 'updatedAt': string;
1245
+ /**
1246
+ *
1247
+ * @type {string}
1248
+ * @memberof StorageEntity
1249
+ */
1250
+ 'key': string;
1251
+ /**
1252
+ *
1253
+ * @type {object}
1254
+ * @memberof StorageEntity
1255
+ */
1256
+ 'value': object;
1257
+ }
1258
+ export declare const StorageEntityKindEnum: {
1259
+ readonly Collection: "collection";
1260
+ readonly Operation: "operation";
1261
+ readonly Stack: "stack";
1262
+ readonly Image: "image";
1263
+ readonly Pose: "pose";
1264
+ readonly Storage: "storage";
1265
+ };
1266
+ export type StorageEntityKindEnum = typeof StorageEntityKindEnum[keyof typeof StorageEntityKindEnum];
1267
+ /**
1268
+ *
1269
+ * @export
1270
+ * @interface StorageRecordsResultDto
1271
+ */
1272
+ export interface StorageRecordsResultDto {
1273
+ /**
1274
+ *
1275
+ * @type {string}
1276
+ * @memberof StorageRecordsResultDto
1277
+ */
1278
+ 'key': string;
1279
+ /**
1280
+ *
1281
+ * @type {object}
1282
+ * @memberof StorageRecordsResultDto
1283
+ */
1284
+ 'value': object;
1285
+ }
1286
+ /**
1287
+ *
1288
+ * @export
1289
+ * @interface UpdateMetadataDto
1290
+ */
1291
+ export interface UpdateMetadataDto {
1292
+ /**
1293
+ *
1294
+ * @type {object}
1295
+ * @memberof UpdateMetadataDto
1296
+ */
1297
+ 'overwrite': object;
1298
+ }
1299
+ /**
1300
+ *
1301
+ * @export
1302
+ * @interface UpdateStorageRecordParamsDto
1303
+ */
1304
+ export interface UpdateStorageRecordParamsDto {
1305
+ /**
1306
+ *
1307
+ * @type {string}
1308
+ * @memberof UpdateStorageRecordParamsDto
1309
+ */
1310
+ 'key': string;
1311
+ /**
1312
+ *
1313
+ * @type {object}
1314
+ * @memberof UpdateStorageRecordParamsDto
1315
+ */
1316
+ 'value': object;
1317
+ }
1318
+ /**
1319
+ * AccessApi - axios parameter creator
1320
+ * @export
1321
+ */
1322
+ export declare const AccessApiAxiosParamCreator: (configuration?: Configuration) => {
1323
+ /**
1324
+ *
1325
+ * @param {AddAccessParamsDto} addAccessParamsDto
1326
+ * @param {*} [options] Override http request option.
1327
+ * @throws {RequiredError}
1328
+ */
1329
+ accessControllerAddAccessV1: (addAccessParamsDto: AddAccessParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1330
+ /**
1331
+ *
1332
+ * @param {string} resource
1333
+ * @param {string} resourceId
1334
+ * @param {string} action
1335
+ * @param {*} [options] Override http request option.
1336
+ * @throws {RequiredError}
1337
+ */
1338
+ accessControllerCheckAccessV1: (resource: string, resourceId: string, action: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1339
+ /**
1340
+ *
1341
+ * @param {RemoveAccessParamsDto} removeAccessParamsDto
1342
+ * @param {*} [options] Override http request option.
1343
+ * @throws {RequiredError}
1344
+ */
1345
+ accessControllerRemoveAccessV1: (removeAccessParamsDto: RemoveAccessParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1346
+ };
1347
+ /**
1348
+ * AccessApi - functional programming interface
1349
+ * @export
1350
+ */
1351
+ export declare const AccessApiFp: (configuration?: Configuration) => {
1352
+ /**
1353
+ *
1354
+ * @param {AddAccessParamsDto} addAccessParamsDto
1355
+ * @param {*} [options] Override http request option.
1356
+ * @throws {RequiredError}
1357
+ */
1358
+ accessControllerAddAccessV1(addAccessParamsDto: AddAccessParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
1359
+ /**
1360
+ *
1361
+ * @param {string} resource
1362
+ * @param {string} resourceId
1363
+ * @param {string} action
1364
+ * @param {*} [options] Override http request option.
1365
+ * @throws {RequiredError}
1366
+ */
1367
+ accessControllerCheckAccessV1(resource: string, resourceId: string, action: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
1368
+ /**
1369
+ *
1370
+ * @param {RemoveAccessParamsDto} removeAccessParamsDto
1371
+ * @param {*} [options] Override http request option.
1372
+ * @throws {RequiredError}
1373
+ */
1374
+ accessControllerRemoveAccessV1(removeAccessParamsDto: RemoveAccessParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
1375
+ };
1376
+ /**
1377
+ * AccessApi - factory interface
1378
+ * @export
1379
+ */
1380
+ export declare const AccessApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
1381
+ /**
1382
+ *
1383
+ * @param {AddAccessParamsDto} addAccessParamsDto
1384
+ * @param {*} [options] Override http request option.
1385
+ * @throws {RequiredError}
1386
+ */
1387
+ accessControllerAddAccessV1(addAccessParamsDto: AddAccessParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<void>;
1388
+ /**
1389
+ *
1390
+ * @param {string} resource
1391
+ * @param {string} resourceId
1392
+ * @param {string} action
1393
+ * @param {*} [options] Override http request option.
1394
+ * @throws {RequiredError}
1395
+ */
1396
+ accessControllerCheckAccessV1(resource: string, resourceId: string, action: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
1397
+ /**
1398
+ *
1399
+ * @param {RemoveAccessParamsDto} removeAccessParamsDto
1400
+ * @param {*} [options] Override http request option.
1401
+ * @throws {RequiredError}
1402
+ */
1403
+ accessControllerRemoveAccessV1(removeAccessParamsDto: RemoveAccessParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<void>;
1404
+ };
1405
+ /**
1406
+ * AccessApi - object-oriented interface
1407
+ * @export
1408
+ * @class AccessApi
1409
+ * @extends {BaseAPI}
1410
+ */
1411
+ export declare class AccessApi extends BaseAPI {
1412
+ /**
1413
+ *
1414
+ * @param {AddAccessParamsDto} addAccessParamsDto
1415
+ * @param {*} [options] Override http request option.
1416
+ * @throws {RequiredError}
1417
+ * @memberof AccessApi
1418
+ */
1419
+ accessControllerAddAccessV1(addAccessParamsDto: AddAccessParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
1420
+ /**
1421
+ *
1422
+ * @param {string} resource
1423
+ * @param {string} resourceId
1424
+ * @param {string} action
1425
+ * @param {*} [options] Override http request option.
1426
+ * @throws {RequiredError}
1427
+ * @memberof AccessApi
1428
+ */
1429
+ accessControllerCheckAccessV1(resource: string, resourceId: string, action: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
1430
+ /**
1431
+ *
1432
+ * @param {RemoveAccessParamsDto} removeAccessParamsDto
1433
+ * @param {*} [options] Override http request option.
1434
+ * @throws {RequiredError}
1435
+ * @memberof AccessApi
1436
+ */
1437
+ accessControllerRemoveAccessV1(removeAccessParamsDto: RemoveAccessParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
1438
+ }
1439
+ /**
1440
+ * AccountsApi - axios parameter creator
1441
+ * @export
1442
+ */
1443
+ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuration) => {
1444
+ /**
1445
+ *
1446
+ * @param {CreateAccountParamsDto} createAccountParamsDto
1447
+ * @param {*} [options] Override http request option.
1448
+ * @throws {RequiredError}
1449
+ */
1450
+ accountsControllerCreateAccountV1: (createAccountParamsDto: CreateAccountParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1451
+ /**
1452
+ *
1453
+ * @param {string} id
1454
+ * @param {*} [options] Override http request option.
1455
+ * @throws {RequiredError}
1456
+ */
1457
+ accountsControllerGetAccountByAliasV1: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1458
+ /**
1459
+ *
1460
+ * @param {string} id
1461
+ * @param {*} [options] Override http request option.
1462
+ * @throws {RequiredError}
1463
+ */
1464
+ accountsControllerGetAccountV1: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1465
+ /**
1466
+ *
1467
+ * @param {*} [options] Override http request option.
1468
+ * @throws {RequiredError}
1469
+ */
1470
+ accountsControllerGetSelfV1: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1471
+ };
1472
+ /**
1473
+ * AccountsApi - functional programming interface
1474
+ * @export
1475
+ */
1476
+ export declare const AccountsApiFp: (configuration?: Configuration) => {
1477
+ /**
1478
+ *
1479
+ * @param {CreateAccountParamsDto} createAccountParamsDto
1480
+ * @param {*} [options] Override http request option.
1481
+ * @throws {RequiredError}
1482
+ */
1483
+ accountsControllerCreateAccountV1(createAccountParamsDto: CreateAccountParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountEntity>>;
1484
+ /**
1485
+ *
1486
+ * @param {string} id
1487
+ * @param {*} [options] Override http request option.
1488
+ * @throws {RequiredError}
1489
+ */
1490
+ accountsControllerGetAccountByAliasV1(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountEntity>>;
1491
+ /**
1492
+ *
1493
+ * @param {string} id
1494
+ * @param {*} [options] Override http request option.
1495
+ * @throws {RequiredError}
1496
+ */
1497
+ accountsControllerGetAccountV1(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountEntity>>;
1498
+ /**
1499
+ *
1500
+ * @param {*} [options] Override http request option.
1501
+ * @throws {RequiredError}
1502
+ */
1503
+ accountsControllerGetSelfV1(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountEntity>>;
1504
+ };
1505
+ /**
1506
+ * AccountsApi - factory interface
1507
+ * @export
1508
+ */
1509
+ export declare const AccountsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
1510
+ /**
1511
+ *
1512
+ * @param {CreateAccountParamsDto} createAccountParamsDto
1513
+ * @param {*} [options] Override http request option.
1514
+ * @throws {RequiredError}
1515
+ */
1516
+ accountsControllerCreateAccountV1(createAccountParamsDto: CreateAccountParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<AccountEntity>;
1517
+ /**
1518
+ *
1519
+ * @param {string} id
1520
+ * @param {*} [options] Override http request option.
1521
+ * @throws {RequiredError}
1522
+ */
1523
+ accountsControllerGetAccountByAliasV1(id: string, options?: RawAxiosRequestConfig): AxiosPromise<AccountEntity>;
1524
+ /**
1525
+ *
1526
+ * @param {string} id
1527
+ * @param {*} [options] Override http request option.
1528
+ * @throws {RequiredError}
1529
+ */
1530
+ accountsControllerGetAccountV1(id: string, options?: RawAxiosRequestConfig): AxiosPromise<AccountEntity>;
1531
+ /**
1532
+ *
1533
+ * @param {*} [options] Override http request option.
1534
+ * @throws {RequiredError}
1535
+ */
1536
+ accountsControllerGetSelfV1(options?: RawAxiosRequestConfig): AxiosPromise<AccountEntity>;
1537
+ };
1538
+ /**
1539
+ * AccountsApi - object-oriented interface
1540
+ * @export
1541
+ * @class AccountsApi
1542
+ * @extends {BaseAPI}
1543
+ */
1544
+ export declare class AccountsApi extends BaseAPI {
1545
+ /**
1546
+ *
1547
+ * @param {CreateAccountParamsDto} createAccountParamsDto
1548
+ * @param {*} [options] Override http request option.
1549
+ * @throws {RequiredError}
1550
+ * @memberof AccountsApi
1551
+ */
1552
+ accountsControllerCreateAccountV1(createAccountParamsDto: CreateAccountParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountEntity, any>>;
1553
+ /**
1554
+ *
1555
+ * @param {string} id
1556
+ * @param {*} [options] Override http request option.
1557
+ * @throws {RequiredError}
1558
+ * @memberof AccountsApi
1559
+ */
1560
+ accountsControllerGetAccountByAliasV1(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountEntity, any>>;
1561
+ /**
1562
+ *
1563
+ * @param {string} id
1564
+ * @param {*} [options] Override http request option.
1565
+ * @throws {RequiredError}
1566
+ * @memberof AccountsApi
1567
+ */
1568
+ accountsControllerGetAccountV1(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountEntity, any>>;
1569
+ /**
1570
+ *
1571
+ * @param {*} [options] Override http request option.
1572
+ * @throws {RequiredError}
1573
+ * @memberof AccountsApi
1574
+ */
1575
+ accountsControllerGetSelfV1(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountEntity, any>>;
1576
+ }
1577
+ /**
1578
+ * BalancesApi - axios parameter creator
1579
+ * @export
1580
+ */
1581
+ export declare const BalancesApiAxiosParamCreator: (configuration?: Configuration) => {
1582
+ /**
1583
+ *
1584
+ * @param {string} id
1585
+ * @param {AddBalanceControllerParamsDto} addBalanceControllerParamsDto
1586
+ * @param {*} [options] Override http request option.
1587
+ * @throws {RequiredError}
1588
+ */
1589
+ balancesControllerAddBalanceV1: (id: string, addBalanceControllerParamsDto: AddBalanceControllerParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1590
+ /**
1591
+ *
1592
+ * @param {*} [options] Override http request option.
1593
+ * @throws {RequiredError}
1594
+ */
1595
+ balancesControllerGetBalanceForSelfV1: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1596
+ /**
1597
+ *
1598
+ * @param {string} id
1599
+ * @param {*} [options] Override http request option.
1600
+ * @throws {RequiredError}
1601
+ */
1602
+ balancesControllerGetBalanceV1: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1603
+ };
1604
+ /**
1605
+ * BalancesApi - functional programming interface
1606
+ * @export
1607
+ */
1608
+ export declare const BalancesApiFp: (configuration?: Configuration) => {
1609
+ /**
1610
+ *
1611
+ * @param {string} id
1612
+ * @param {AddBalanceControllerParamsDto} addBalanceControllerParamsDto
1613
+ * @param {*} [options] Override http request option.
1614
+ * @throws {RequiredError}
1615
+ */
1616
+ balancesControllerAddBalanceV1(id: string, addBalanceControllerParamsDto: AddBalanceControllerParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
1617
+ /**
1618
+ *
1619
+ * @param {*} [options] Override http request option.
1620
+ * @throws {RequiredError}
1621
+ */
1622
+ balancesControllerGetBalanceForSelfV1(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BalanceResultDto>>;
1623
+ /**
1624
+ *
1625
+ * @param {string} id
1626
+ * @param {*} [options] Override http request option.
1627
+ * @throws {RequiredError}
1628
+ */
1629
+ balancesControllerGetBalanceV1(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BalanceResultDto>>;
1630
+ };
1631
+ /**
1632
+ * BalancesApi - factory interface
1633
+ * @export
1634
+ */
1635
+ export declare const BalancesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
1636
+ /**
1637
+ *
1638
+ * @param {string} id
1639
+ * @param {AddBalanceControllerParamsDto} addBalanceControllerParamsDto
1640
+ * @param {*} [options] Override http request option.
1641
+ * @throws {RequiredError}
1642
+ */
1643
+ balancesControllerAddBalanceV1(id: string, addBalanceControllerParamsDto: AddBalanceControllerParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<void>;
1644
+ /**
1645
+ *
1646
+ * @param {*} [options] Override http request option.
1647
+ * @throws {RequiredError}
1648
+ */
1649
+ balancesControllerGetBalanceForSelfV1(options?: RawAxiosRequestConfig): AxiosPromise<BalanceResultDto>;
1650
+ /**
1651
+ *
1652
+ * @param {string} id
1653
+ * @param {*} [options] Override http request option.
1654
+ * @throws {RequiredError}
1655
+ */
1656
+ balancesControllerGetBalanceV1(id: string, options?: RawAxiosRequestConfig): AxiosPromise<BalanceResultDto>;
1657
+ };
1658
+ /**
1659
+ * BalancesApi - object-oriented interface
1660
+ * @export
1661
+ * @class BalancesApi
1662
+ * @extends {BaseAPI}
1663
+ */
1664
+ export declare class BalancesApi extends BaseAPI {
1665
+ /**
1666
+ *
1667
+ * @param {string} id
1668
+ * @param {AddBalanceControllerParamsDto} addBalanceControllerParamsDto
1669
+ * @param {*} [options] Override http request option.
1670
+ * @throws {RequiredError}
1671
+ * @memberof BalancesApi
1672
+ */
1673
+ balancesControllerAddBalanceV1(id: string, addBalanceControllerParamsDto: AddBalanceControllerParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
1674
+ /**
1675
+ *
1676
+ * @param {*} [options] Override http request option.
1677
+ * @throws {RequiredError}
1678
+ * @memberof BalancesApi
1679
+ */
1680
+ balancesControllerGetBalanceForSelfV1(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BalanceResultDto, any>>;
1681
+ /**
1682
+ *
1683
+ * @param {string} id
1684
+ * @param {*} [options] Override http request option.
1685
+ * @throws {RequiredError}
1686
+ * @memberof BalancesApi
1687
+ */
1688
+ balancesControllerGetBalanceV1(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BalanceResultDto, any>>;
1689
+ }
1690
+ /**
1691
+ * CallApi - axios parameter creator
1692
+ * @export
1693
+ */
1694
+ export declare const CallApiAxiosParamCreator: (configuration?: Configuration) => {
1695
+ /**
1696
+ *
1697
+ * @param {*} [options] Override http request option.
1698
+ * @throws {RequiredError}
1699
+ */
1700
+ callControllerCallMethodV1: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1701
+ };
1702
+ /**
1703
+ * CallApi - functional programming interface
1704
+ * @export
1705
+ */
1706
+ export declare const CallApiFp: (configuration?: Configuration) => {
1707
+ /**
1708
+ *
1709
+ * @param {*} [options] Override http request option.
1710
+ * @throws {RequiredError}
1711
+ */
1712
+ callControllerCallMethodV1(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
1713
+ };
1714
+ /**
1715
+ * CallApi - factory interface
1716
+ * @export
1717
+ */
1718
+ export declare const CallApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
1719
+ /**
1720
+ *
1721
+ * @param {*} [options] Override http request option.
1722
+ * @throws {RequiredError}
1723
+ */
1724
+ callControllerCallMethodV1(options?: RawAxiosRequestConfig): AxiosPromise<object>;
1725
+ };
1726
+ /**
1727
+ * CallApi - object-oriented interface
1728
+ * @export
1729
+ * @class CallApi
1730
+ * @extends {BaseAPI}
1731
+ */
1732
+ export declare class CallApi extends BaseAPI {
1733
+ /**
1734
+ *
1735
+ * @param {*} [options] Override http request option.
1736
+ * @throws {RequiredError}
1737
+ * @memberof CallApi
1738
+ */
1739
+ callControllerCallMethodV1(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
1740
+ }
1741
+ /**
1742
+ * CollectionsApi - axios parameter creator
1743
+ * @export
1744
+ */
1745
+ export declare const CollectionsApiAxiosParamCreator: (configuration?: Configuration) => {
1746
+ /**
1747
+ *
1748
+ * @param {string} id
1749
+ * @param {AddItemsToCollectionControllerParamsDto} addItemsToCollectionControllerParamsDto
1750
+ * @param {*} [options] Override http request option.
1751
+ * @throws {RequiredError}
1752
+ */
1753
+ collectionsControllerAddItemsV1: (id: string, addItemsToCollectionControllerParamsDto: AddItemsToCollectionControllerParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1754
+ /**
1755
+ *
1756
+ * @param {CreateCollectionParamsDto} createCollectionParamsDto
1757
+ * @param {*} [options] Override http request option.
1758
+ * @throws {RequiredError}
1759
+ */
1760
+ collectionsControllerCreateCollectionV1: (createCollectionParamsDto: CreateCollectionParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1761
+ /**
1762
+ *
1763
+ * @param {string} id
1764
+ * @param {*} [options] Override http request option.
1765
+ * @throws {RequiredError}
1766
+ */
1767
+ collectionsControllerGetCollectionV1: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1768
+ /**
1769
+ *
1770
+ * @param {CollectionsControllerListCollectionsV1OrderByEnum} [orderBy]
1771
+ * @param {number} [limit]
1772
+ * @param {string} [cursor]
1773
+ * @param {*} [options] Override http request option.
1774
+ * @throws {RequiredError}
1775
+ */
1776
+ collectionsControllerListCollectionsV1: (orderBy?: CollectionsControllerListCollectionsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1777
+ /**
1778
+ *
1779
+ * @param {string} id
1780
+ * @param {string} [cursor]
1781
+ * @param {CollectionsControllerListItemsV1OrderByEnum} [orderBy]
1782
+ * @param {number} [limit]
1783
+ * @param {CollectionsControllerListItemsV1KindEnum} [kind]
1784
+ * @param {*} [options] Override http request option.
1785
+ * @throws {RequiredError}
1786
+ */
1787
+ collectionsControllerListItemsV1: (id: string, cursor?: string, orderBy?: CollectionsControllerListItemsV1OrderByEnum, limit?: number, kind?: CollectionsControllerListItemsV1KindEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1788
+ /**
1789
+ *
1790
+ * @param {string} id
1791
+ * @param {RemoveItemsFromCollectionControllerParamsDto} removeItemsFromCollectionControllerParamsDto
1792
+ * @param {*} [options] Override http request option.
1793
+ * @throws {RequiredError}
1794
+ */
1795
+ collectionsControllerRemoveItemsV1: (id: string, removeItemsFromCollectionControllerParamsDto: RemoveItemsFromCollectionControllerParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1796
+ /**
1797
+ *
1798
+ * @param {string} id
1799
+ * @param {UpdateMetadataDto} updateMetadataDto
1800
+ * @param {*} [options] Override http request option.
1801
+ * @throws {RequiredError}
1802
+ */
1803
+ collectionsControllerUpdateMetadataV1: (id: string, updateMetadataDto: UpdateMetadataDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1804
+ };
1805
+ /**
1806
+ * CollectionsApi - functional programming interface
1807
+ * @export
1808
+ */
1809
+ export declare const CollectionsApiFp: (configuration?: Configuration) => {
1810
+ /**
1811
+ *
1812
+ * @param {string} id
1813
+ * @param {AddItemsToCollectionControllerParamsDto} addItemsToCollectionControllerParamsDto
1814
+ * @param {*} [options] Override http request option.
1815
+ * @throws {RequiredError}
1816
+ */
1817
+ collectionsControllerAddItemsV1(id: string, addItemsToCollectionControllerParamsDto: AddItemsToCollectionControllerParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
1818
+ /**
1819
+ *
1820
+ * @param {CreateCollectionParamsDto} createCollectionParamsDto
1821
+ * @param {*} [options] Override http request option.
1822
+ * @throws {RequiredError}
1823
+ */
1824
+ collectionsControllerCreateCollectionV1(createCollectionParamsDto: CreateCollectionParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CollectionEntity>>;
1825
+ /**
1826
+ *
1827
+ * @param {string} id
1828
+ * @param {*} [options] Override http request option.
1829
+ * @throws {RequiredError}
1830
+ */
1831
+ collectionsControllerGetCollectionV1(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CollectionEntity>>;
1832
+ /**
1833
+ *
1834
+ * @param {CollectionsControllerListCollectionsV1OrderByEnum} [orderBy]
1835
+ * @param {number} [limit]
1836
+ * @param {string} [cursor]
1837
+ * @param {*} [options] Override http request option.
1838
+ * @throws {RequiredError}
1839
+ */
1840
+ collectionsControllerListCollectionsV1(orderBy?: CollectionsControllerListCollectionsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListCollectionsDto>>;
1841
+ /**
1842
+ *
1843
+ * @param {string} id
1844
+ * @param {string} [cursor]
1845
+ * @param {CollectionsControllerListItemsV1OrderByEnum} [orderBy]
1846
+ * @param {number} [limit]
1847
+ * @param {CollectionsControllerListItemsV1KindEnum} [kind]
1848
+ * @param {*} [options] Override http request option.
1849
+ * @throws {RequiredError}
1850
+ */
1851
+ collectionsControllerListItemsV1(id: string, cursor?: string, orderBy?: CollectionsControllerListItemsV1OrderByEnum, limit?: number, kind?: CollectionsControllerListItemsV1KindEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListCollectionItemsDto>>;
1852
+ /**
1853
+ *
1854
+ * @param {string} id
1855
+ * @param {RemoveItemsFromCollectionControllerParamsDto} removeItemsFromCollectionControllerParamsDto
1856
+ * @param {*} [options] Override http request option.
1857
+ * @throws {RequiredError}
1858
+ */
1859
+ collectionsControllerRemoveItemsV1(id: string, removeItemsFromCollectionControllerParamsDto: RemoveItemsFromCollectionControllerParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
1860
+ /**
1861
+ *
1862
+ * @param {string} id
1863
+ * @param {UpdateMetadataDto} updateMetadataDto
1864
+ * @param {*} [options] Override http request option.
1865
+ * @throws {RequiredError}
1866
+ */
1867
+ collectionsControllerUpdateMetadataV1(id: string, updateMetadataDto: UpdateMetadataDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ResourceEntity>>;
1868
+ };
1869
+ /**
1870
+ * CollectionsApi - factory interface
1871
+ * @export
1872
+ */
1873
+ export declare const CollectionsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
1874
+ /**
1875
+ *
1876
+ * @param {string} id
1877
+ * @param {AddItemsToCollectionControllerParamsDto} addItemsToCollectionControllerParamsDto
1878
+ * @param {*} [options] Override http request option.
1879
+ * @throws {RequiredError}
1880
+ */
1881
+ collectionsControllerAddItemsV1(id: string, addItemsToCollectionControllerParamsDto: AddItemsToCollectionControllerParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<void>;
1882
+ /**
1883
+ *
1884
+ * @param {CreateCollectionParamsDto} createCollectionParamsDto
1885
+ * @param {*} [options] Override http request option.
1886
+ * @throws {RequiredError}
1887
+ */
1888
+ collectionsControllerCreateCollectionV1(createCollectionParamsDto: CreateCollectionParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<CollectionEntity>;
1889
+ /**
1890
+ *
1891
+ * @param {string} id
1892
+ * @param {*} [options] Override http request option.
1893
+ * @throws {RequiredError}
1894
+ */
1895
+ collectionsControllerGetCollectionV1(id: string, options?: RawAxiosRequestConfig): AxiosPromise<CollectionEntity>;
1896
+ /**
1897
+ *
1898
+ * @param {CollectionsControllerListCollectionsV1OrderByEnum} [orderBy]
1899
+ * @param {number} [limit]
1900
+ * @param {string} [cursor]
1901
+ * @param {*} [options] Override http request option.
1902
+ * @throws {RequiredError}
1903
+ */
1904
+ collectionsControllerListCollectionsV1(orderBy?: CollectionsControllerListCollectionsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListCollectionsDto>;
1905
+ /**
1906
+ *
1907
+ * @param {string} id
1908
+ * @param {string} [cursor]
1909
+ * @param {CollectionsControllerListItemsV1OrderByEnum} [orderBy]
1910
+ * @param {number} [limit]
1911
+ * @param {CollectionsControllerListItemsV1KindEnum} [kind]
1912
+ * @param {*} [options] Override http request option.
1913
+ * @throws {RequiredError}
1914
+ */
1915
+ collectionsControllerListItemsV1(id: string, cursor?: string, orderBy?: CollectionsControllerListItemsV1OrderByEnum, limit?: number, kind?: CollectionsControllerListItemsV1KindEnum, options?: RawAxiosRequestConfig): AxiosPromise<ListCollectionItemsDto>;
1916
+ /**
1917
+ *
1918
+ * @param {string} id
1919
+ * @param {RemoveItemsFromCollectionControllerParamsDto} removeItemsFromCollectionControllerParamsDto
1920
+ * @param {*} [options] Override http request option.
1921
+ * @throws {RequiredError}
1922
+ */
1923
+ collectionsControllerRemoveItemsV1(id: string, removeItemsFromCollectionControllerParamsDto: RemoveItemsFromCollectionControllerParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<void>;
1924
+ /**
1925
+ *
1926
+ * @param {string} id
1927
+ * @param {UpdateMetadataDto} updateMetadataDto
1928
+ * @param {*} [options] Override http request option.
1929
+ * @throws {RequiredError}
1930
+ */
1931
+ collectionsControllerUpdateMetadataV1(id: string, updateMetadataDto: UpdateMetadataDto, options?: RawAxiosRequestConfig): AxiosPromise<ResourceEntity>;
1932
+ };
1933
+ /**
1934
+ * CollectionsApi - object-oriented interface
1935
+ * @export
1936
+ * @class CollectionsApi
1937
+ * @extends {BaseAPI}
1938
+ */
1939
+ export declare class CollectionsApi extends BaseAPI {
1940
+ /**
1941
+ *
1942
+ * @param {string} id
1943
+ * @param {AddItemsToCollectionControllerParamsDto} addItemsToCollectionControllerParamsDto
1944
+ * @param {*} [options] Override http request option.
1945
+ * @throws {RequiredError}
1946
+ * @memberof CollectionsApi
1947
+ */
1948
+ collectionsControllerAddItemsV1(id: string, addItemsToCollectionControllerParamsDto: AddItemsToCollectionControllerParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
1949
+ /**
1950
+ *
1951
+ * @param {CreateCollectionParamsDto} createCollectionParamsDto
1952
+ * @param {*} [options] Override http request option.
1953
+ * @throws {RequiredError}
1954
+ * @memberof CollectionsApi
1955
+ */
1956
+ collectionsControllerCreateCollectionV1(createCollectionParamsDto: CreateCollectionParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CollectionEntity, any>>;
1957
+ /**
1958
+ *
1959
+ * @param {string} id
1960
+ * @param {*} [options] Override http request option.
1961
+ * @throws {RequiredError}
1962
+ * @memberof CollectionsApi
1963
+ */
1964
+ collectionsControllerGetCollectionV1(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CollectionEntity, any>>;
1965
+ /**
1966
+ *
1967
+ * @param {CollectionsControllerListCollectionsV1OrderByEnum} [orderBy]
1968
+ * @param {number} [limit]
1969
+ * @param {string} [cursor]
1970
+ * @param {*} [options] Override http request option.
1971
+ * @throws {RequiredError}
1972
+ * @memberof CollectionsApi
1973
+ */
1974
+ collectionsControllerListCollectionsV1(orderBy?: CollectionsControllerListCollectionsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListCollectionsDto, any>>;
1975
+ /**
1976
+ *
1977
+ * @param {string} id
1978
+ * @param {string} [cursor]
1979
+ * @param {CollectionsControllerListItemsV1OrderByEnum} [orderBy]
1980
+ * @param {number} [limit]
1981
+ * @param {CollectionsControllerListItemsV1KindEnum} [kind]
1982
+ * @param {*} [options] Override http request option.
1983
+ * @throws {RequiredError}
1984
+ * @memberof CollectionsApi
1985
+ */
1986
+ collectionsControllerListItemsV1(id: string, cursor?: string, orderBy?: CollectionsControllerListItemsV1OrderByEnum, limit?: number, kind?: CollectionsControllerListItemsV1KindEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListCollectionItemsDto, any>>;
1987
+ /**
1988
+ *
1989
+ * @param {string} id
1990
+ * @param {RemoveItemsFromCollectionControllerParamsDto} removeItemsFromCollectionControllerParamsDto
1991
+ * @param {*} [options] Override http request option.
1992
+ * @throws {RequiredError}
1993
+ * @memberof CollectionsApi
1994
+ */
1995
+ collectionsControllerRemoveItemsV1(id: string, removeItemsFromCollectionControllerParamsDto: RemoveItemsFromCollectionControllerParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
1996
+ /**
1997
+ *
1998
+ * @param {string} id
1999
+ * @param {UpdateMetadataDto} updateMetadataDto
2000
+ * @param {*} [options] Override http request option.
2001
+ * @throws {RequiredError}
2002
+ * @memberof CollectionsApi
2003
+ */
2004
+ collectionsControllerUpdateMetadataV1(id: string, updateMetadataDto: UpdateMetadataDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ResourceEntity, any>>;
2005
+ }
2006
+ /**
2007
+ * @export
2008
+ */
2009
+ export declare const CollectionsControllerListCollectionsV1OrderByEnum: {
2010
+ readonly CreatedAtAsc: "createdAt_ASC";
2011
+ readonly CreatedAtDesc: "createdAt_DESC";
2012
+ readonly UpdatedAtAsc: "updatedAt_ASC";
2013
+ readonly UpdatedAtDesc: "updatedAt_DESC";
2014
+ };
2015
+ export type CollectionsControllerListCollectionsV1OrderByEnum = typeof CollectionsControllerListCollectionsV1OrderByEnum[keyof typeof CollectionsControllerListCollectionsV1OrderByEnum];
2016
+ /**
2017
+ * @export
2018
+ */
2019
+ export declare const CollectionsControllerListItemsV1OrderByEnum: {
2020
+ readonly CreatedAtAsc: "createdAt_ASC";
2021
+ readonly CreatedAtDesc: "createdAt_DESC";
2022
+ readonly UpdatedAtAsc: "updatedAt_ASC";
2023
+ readonly UpdatedAtDesc: "updatedAt_DESC";
2024
+ };
2025
+ export type CollectionsControllerListItemsV1OrderByEnum = typeof CollectionsControllerListItemsV1OrderByEnum[keyof typeof CollectionsControllerListItemsV1OrderByEnum];
2026
+ /**
2027
+ * @export
2028
+ */
2029
+ export declare const CollectionsControllerListItemsV1KindEnum: {
2030
+ readonly Collection: "collection";
2031
+ readonly Operation: "operation";
2032
+ readonly Stack: "stack";
2033
+ readonly Image: "image";
2034
+ readonly Pose: "pose";
2035
+ readonly Storage: "storage";
2036
+ };
2037
+ export type CollectionsControllerListItemsV1KindEnum = typeof CollectionsControllerListItemsV1KindEnum[keyof typeof CollectionsControllerListItemsV1KindEnum];
2038
+ /**
2039
+ * GroupsApi - axios parameter creator
2040
+ * @export
2041
+ */
2042
+ export declare const GroupsApiAxiosParamCreator: (configuration?: Configuration) => {
2043
+ /**
2044
+ *
2045
+ * @param {string} id
2046
+ * @param {AddAccountToGroupControllerParamsDto} addAccountToGroupControllerParamsDto
2047
+ * @param {*} [options] Override http request option.
2048
+ * @throws {RequiredError}
2049
+ */
2050
+ groupsControllerAddAccountV1: (id: string, addAccountToGroupControllerParamsDto: AddAccountToGroupControllerParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2051
+ /**
2052
+ *
2053
+ * @param {*} [options] Override http request option.
2054
+ * @throws {RequiredError}
2055
+ */
2056
+ groupsControllerCreateGroupV1: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2057
+ /**
2058
+ *
2059
+ * @param {string} id
2060
+ * @param {*} [options] Override http request option.
2061
+ * @throws {RequiredError}
2062
+ */
2063
+ groupsControllerDeleteGroupV1: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2064
+ /**
2065
+ *
2066
+ * @param {string} id
2067
+ * @param {*} [options] Override http request option.
2068
+ * @throws {RequiredError}
2069
+ */
2070
+ groupsControllerGetGroupV1: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2071
+ /**
2072
+ *
2073
+ * @param {string} id
2074
+ * @param {RemoveAccountFromGroupControllerParamsDto} removeAccountFromGroupControllerParamsDto
2075
+ * @param {*} [options] Override http request option.
2076
+ * @throws {RequiredError}
2077
+ */
2078
+ groupsControllerRemoveAccountV1: (id: string, removeAccountFromGroupControllerParamsDto: RemoveAccountFromGroupControllerParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2079
+ };
2080
+ /**
2081
+ * GroupsApi - functional programming interface
2082
+ * @export
2083
+ */
2084
+ export declare const GroupsApiFp: (configuration?: Configuration) => {
2085
+ /**
2086
+ *
2087
+ * @param {string} id
2088
+ * @param {AddAccountToGroupControllerParamsDto} addAccountToGroupControllerParamsDto
2089
+ * @param {*} [options] Override http request option.
2090
+ * @throws {RequiredError}
2091
+ */
2092
+ groupsControllerAddAccountV1(id: string, addAccountToGroupControllerParamsDto: AddAccountToGroupControllerParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
2093
+ /**
2094
+ *
2095
+ * @param {*} [options] Override http request option.
2096
+ * @throws {RequiredError}
2097
+ */
2098
+ groupsControllerCreateGroupV1(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GroupEntity>>;
2099
+ /**
2100
+ *
2101
+ * @param {string} id
2102
+ * @param {*} [options] Override http request option.
2103
+ * @throws {RequiredError}
2104
+ */
2105
+ groupsControllerDeleteGroupV1(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
2106
+ /**
2107
+ *
2108
+ * @param {string} id
2109
+ * @param {*} [options] Override http request option.
2110
+ * @throws {RequiredError}
2111
+ */
2112
+ groupsControllerGetGroupV1(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GroupEntity>>;
2113
+ /**
2114
+ *
2115
+ * @param {string} id
2116
+ * @param {RemoveAccountFromGroupControllerParamsDto} removeAccountFromGroupControllerParamsDto
2117
+ * @param {*} [options] Override http request option.
2118
+ * @throws {RequiredError}
2119
+ */
2120
+ groupsControllerRemoveAccountV1(id: string, removeAccountFromGroupControllerParamsDto: RemoveAccountFromGroupControllerParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
2121
+ };
2122
+ /**
2123
+ * GroupsApi - factory interface
2124
+ * @export
2125
+ */
2126
+ export declare const GroupsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
2127
+ /**
2128
+ *
2129
+ * @param {string} id
2130
+ * @param {AddAccountToGroupControllerParamsDto} addAccountToGroupControllerParamsDto
2131
+ * @param {*} [options] Override http request option.
2132
+ * @throws {RequiredError}
2133
+ */
2134
+ groupsControllerAddAccountV1(id: string, addAccountToGroupControllerParamsDto: AddAccountToGroupControllerParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<void>;
2135
+ /**
2136
+ *
2137
+ * @param {*} [options] Override http request option.
2138
+ * @throws {RequiredError}
2139
+ */
2140
+ groupsControllerCreateGroupV1(options?: RawAxiosRequestConfig): AxiosPromise<GroupEntity>;
2141
+ /**
2142
+ *
2143
+ * @param {string} id
2144
+ * @param {*} [options] Override http request option.
2145
+ * @throws {RequiredError}
2146
+ */
2147
+ groupsControllerDeleteGroupV1(id: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
2148
+ /**
2149
+ *
2150
+ * @param {string} id
2151
+ * @param {*} [options] Override http request option.
2152
+ * @throws {RequiredError}
2153
+ */
2154
+ groupsControllerGetGroupV1(id: string, options?: RawAxiosRequestConfig): AxiosPromise<GroupEntity>;
2155
+ /**
2156
+ *
2157
+ * @param {string} id
2158
+ * @param {RemoveAccountFromGroupControllerParamsDto} removeAccountFromGroupControllerParamsDto
2159
+ * @param {*} [options] Override http request option.
2160
+ * @throws {RequiredError}
2161
+ */
2162
+ groupsControllerRemoveAccountV1(id: string, removeAccountFromGroupControllerParamsDto: RemoveAccountFromGroupControllerParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<void>;
2163
+ };
2164
+ /**
2165
+ * GroupsApi - object-oriented interface
2166
+ * @export
2167
+ * @class GroupsApi
2168
+ * @extends {BaseAPI}
2169
+ */
2170
+ export declare class GroupsApi extends BaseAPI {
2171
+ /**
2172
+ *
2173
+ * @param {string} id
2174
+ * @param {AddAccountToGroupControllerParamsDto} addAccountToGroupControllerParamsDto
2175
+ * @param {*} [options] Override http request option.
2176
+ * @throws {RequiredError}
2177
+ * @memberof GroupsApi
2178
+ */
2179
+ groupsControllerAddAccountV1(id: string, addAccountToGroupControllerParamsDto: AddAccountToGroupControllerParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
2180
+ /**
2181
+ *
2182
+ * @param {*} [options] Override http request option.
2183
+ * @throws {RequiredError}
2184
+ * @memberof GroupsApi
2185
+ */
2186
+ groupsControllerCreateGroupV1(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GroupEntity, any>>;
2187
+ /**
2188
+ *
2189
+ * @param {string} id
2190
+ * @param {*} [options] Override http request option.
2191
+ * @throws {RequiredError}
2192
+ * @memberof GroupsApi
2193
+ */
2194
+ groupsControllerDeleteGroupV1(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
2195
+ /**
2196
+ *
2197
+ * @param {string} id
2198
+ * @param {*} [options] Override http request option.
2199
+ * @throws {RequiredError}
2200
+ * @memberof GroupsApi
2201
+ */
2202
+ groupsControllerGetGroupV1(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GroupEntity, any>>;
2203
+ /**
2204
+ *
2205
+ * @param {string} id
2206
+ * @param {RemoveAccountFromGroupControllerParamsDto} removeAccountFromGroupControllerParamsDto
2207
+ * @param {*} [options] Override http request option.
2208
+ * @throws {RequiredError}
2209
+ * @memberof GroupsApi
2210
+ */
2211
+ groupsControllerRemoveAccountV1(id: string, removeAccountFromGroupControllerParamsDto: RemoveAccountFromGroupControllerParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
2212
+ }
2213
+ /**
2214
+ * ImagesApi - axios parameter creator
2215
+ * @export
2216
+ */
2217
+ export declare const ImagesApiAxiosParamCreator: (configuration?: Configuration) => {
2218
+ /**
2219
+ *
2220
+ * @param {CreateImageParamsDto} createImageParamsDto
2221
+ * @param {*} [options] Override http request option.
2222
+ * @throws {RequiredError}
2223
+ */
2224
+ imagesControllerFinalizeUploadV1: (createImageParamsDto: CreateImageParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2225
+ /**
2226
+ *
2227
+ * @param {string} id
2228
+ * @param {*} [options] Override http request option.
2229
+ * @throws {RequiredError}
2230
+ */
2231
+ imagesControllerGetImageV1: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2232
+ /**
2233
+ *
2234
+ * @param {GetUrlsForImagesParamsDto} getUrlsForImagesParamsDto
2235
+ * @param {*} [options] Override http request option.
2236
+ * @throws {RequiredError}
2237
+ */
2238
+ imagesControllerGetUrlsV1: (getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2239
+ /**
2240
+ *
2241
+ * @param {*} [options] Override http request option.
2242
+ * @throws {RequiredError}
2243
+ */
2244
+ imagesControllerStartUploadV1: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2245
+ };
2246
+ /**
2247
+ * ImagesApi - functional programming interface
2248
+ * @export
2249
+ */
2250
+ export declare const ImagesApiFp: (configuration?: Configuration) => {
2251
+ /**
2252
+ *
2253
+ * @param {CreateImageParamsDto} createImageParamsDto
2254
+ * @param {*} [options] Override http request option.
2255
+ * @throws {RequiredError}
2256
+ */
2257
+ imagesControllerFinalizeUploadV1(createImageParamsDto: CreateImageParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ImageEntity>>;
2258
+ /**
2259
+ *
2260
+ * @param {string} id
2261
+ * @param {*} [options] Override http request option.
2262
+ * @throws {RequiredError}
2263
+ */
2264
+ imagesControllerGetImageV1(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ImageEntity>>;
2265
+ /**
2266
+ *
2267
+ * @param {GetUrlsForImagesParamsDto} getUrlsForImagesParamsDto
2268
+ * @param {*} [options] Override http request option.
2269
+ * @throws {RequiredError}
2270
+ */
2271
+ imagesControllerGetUrlsV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ImageUrlsResultDto>>>;
2272
+ /**
2273
+ *
2274
+ * @param {*} [options] Override http request option.
2275
+ * @throws {RequiredError}
2276
+ */
2277
+ imagesControllerStartUploadV1(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InitializeImageUploadResultDto>>;
2278
+ };
2279
+ /**
2280
+ * ImagesApi - factory interface
2281
+ * @export
2282
+ */
2283
+ export declare const ImagesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
2284
+ /**
2285
+ *
2286
+ * @param {CreateImageParamsDto} createImageParamsDto
2287
+ * @param {*} [options] Override http request option.
2288
+ * @throws {RequiredError}
2289
+ */
2290
+ imagesControllerFinalizeUploadV1(createImageParamsDto: CreateImageParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<ImageEntity>;
2291
+ /**
2292
+ *
2293
+ * @param {string} id
2294
+ * @param {*} [options] Override http request option.
2295
+ * @throws {RequiredError}
2296
+ */
2297
+ imagesControllerGetImageV1(id: string, options?: RawAxiosRequestConfig): AxiosPromise<ImageEntity>;
2298
+ /**
2299
+ *
2300
+ * @param {GetUrlsForImagesParamsDto} getUrlsForImagesParamsDto
2301
+ * @param {*} [options] Override http request option.
2302
+ * @throws {RequiredError}
2303
+ */
2304
+ imagesControllerGetUrlsV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<ImageUrlsResultDto>>;
2305
+ /**
2306
+ *
2307
+ * @param {*} [options] Override http request option.
2308
+ * @throws {RequiredError}
2309
+ */
2310
+ imagesControllerStartUploadV1(options?: RawAxiosRequestConfig): AxiosPromise<InitializeImageUploadResultDto>;
2311
+ };
2312
+ /**
2313
+ * ImagesApi - object-oriented interface
2314
+ * @export
2315
+ * @class ImagesApi
2316
+ * @extends {BaseAPI}
2317
+ */
2318
+ export declare class ImagesApi extends BaseAPI {
2319
+ /**
2320
+ *
2321
+ * @param {CreateImageParamsDto} createImageParamsDto
2322
+ * @param {*} [options] Override http request option.
2323
+ * @throws {RequiredError}
2324
+ * @memberof ImagesApi
2325
+ */
2326
+ imagesControllerFinalizeUploadV1(createImageParamsDto: CreateImageParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ImageEntity, any>>;
2327
+ /**
2328
+ *
2329
+ * @param {string} id
2330
+ * @param {*} [options] Override http request option.
2331
+ * @throws {RequiredError}
2332
+ * @memberof ImagesApi
2333
+ */
2334
+ imagesControllerGetImageV1(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ImageEntity, any>>;
2335
+ /**
2336
+ *
2337
+ * @param {GetUrlsForImagesParamsDto} getUrlsForImagesParamsDto
2338
+ * @param {*} [options] Override http request option.
2339
+ * @throws {RequiredError}
2340
+ * @memberof ImagesApi
2341
+ */
2342
+ imagesControllerGetUrlsV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ImageUrlsResultDto[], any>>;
2343
+ /**
2344
+ *
2345
+ * @param {*} [options] Override http request option.
2346
+ * @throws {RequiredError}
2347
+ * @memberof ImagesApi
2348
+ */
2349
+ imagesControllerStartUploadV1(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InitializeImageUploadResultDto, any>>;
2350
+ }
2351
+ /**
2352
+ * OperationsApi - axios parameter creator
2353
+ * @export
2354
+ */
2355
+ export declare const OperationsApiAxiosParamCreator: (configuration?: Configuration) => {
2356
+ /**
2357
+ *
2358
+ * @param {string} id
2359
+ * @param {*} [options] Override http request option.
2360
+ * @throws {RequiredError}
2361
+ */
2362
+ operationsControllerGetOperationV1: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2363
+ /**
2364
+ *
2365
+ * @param {GetOperationsParamsDto} getOperationsParamsDto
2366
+ * @param {*} [options] Override http request option.
2367
+ * @throws {RequiredError}
2368
+ */
2369
+ operationsControllerGetOperationsV1: (getOperationsParamsDto: GetOperationsParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2370
+ /**
2371
+ *
2372
+ * @param {OperationsControllerListOperationsV1OrderByEnum} [orderBy]
2373
+ * @param {number} [limit]
2374
+ * @param {string} [cursor]
2375
+ * @param {*} [options] Override http request option.
2376
+ * @throws {RequiredError}
2377
+ */
2378
+ operationsControllerListOperationsV1: (orderBy?: OperationsControllerListOperationsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2379
+ /**
2380
+ *
2381
+ * @param {ConstructPromptV1ControllerInput} constructPromptV1ControllerInput
2382
+ * @param {*} [options] Override http request option.
2383
+ * @throws {RequiredError}
2384
+ */
2385
+ operationsControllerRunConstructPromptV1V1: (constructPromptV1ControllerInput: ConstructPromptV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2386
+ /**
2387
+ *
2388
+ * @param {GenerateV3ControllerInput} generateV3ControllerInput
2389
+ * @param {*} [options] Override http request option.
2390
+ * @throws {RequiredError}
2391
+ */
2392
+ operationsControllerRunGenerateV3V1: (generateV3ControllerInput: GenerateV3ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2393
+ /**
2394
+ *
2395
+ * @param {InpaintV1ControllerInput} inpaintV1ControllerInput
2396
+ * @param {*} [options] Override http request option.
2397
+ * @throws {RequiredError}
2398
+ */
2399
+ operationsControllerRunInpaintV1V1: (inpaintV1ControllerInput: InpaintV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2400
+ /**
2401
+ *
2402
+ * @param {string} id
2403
+ * @param {UpdateMetadataDto} updateMetadataDto
2404
+ * @param {*} [options] Override http request option.
2405
+ * @throws {RequiredError}
2406
+ */
2407
+ operationsControllerUpdateMetadataV1: (id: string, updateMetadataDto: UpdateMetadataDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2408
+ };
2409
+ /**
2410
+ * OperationsApi - functional programming interface
2411
+ * @export
2412
+ */
2413
+ export declare const OperationsApiFp: (configuration?: Configuration) => {
2414
+ /**
2415
+ *
2416
+ * @param {string} id
2417
+ * @param {*} [options] Override http request option.
2418
+ * @throws {RequiredError}
2419
+ */
2420
+ operationsControllerGetOperationV1(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
2421
+ /**
2422
+ *
2423
+ * @param {GetOperationsParamsDto} getOperationsParamsDto
2424
+ * @param {*} [options] Override http request option.
2425
+ * @throws {RequiredError}
2426
+ */
2427
+ operationsControllerGetOperationsV1(getOperationsParamsDto: GetOperationsParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OperationEntity>>>;
2428
+ /**
2429
+ *
2430
+ * @param {OperationsControllerListOperationsV1OrderByEnum} [orderBy]
2431
+ * @param {number} [limit]
2432
+ * @param {string} [cursor]
2433
+ * @param {*} [options] Override http request option.
2434
+ * @throws {RequiredError}
2435
+ */
2436
+ operationsControllerListOperationsV1(orderBy?: OperationsControllerListOperationsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListOperationsDto>>;
2437
+ /**
2438
+ *
2439
+ * @param {ConstructPromptV1ControllerInput} constructPromptV1ControllerInput
2440
+ * @param {*} [options] Override http request option.
2441
+ * @throws {RequiredError}
2442
+ */
2443
+ operationsControllerRunConstructPromptV1V1(constructPromptV1ControllerInput: ConstructPromptV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
2444
+ /**
2445
+ *
2446
+ * @param {GenerateV3ControllerInput} generateV3ControllerInput
2447
+ * @param {*} [options] Override http request option.
2448
+ * @throws {RequiredError}
2449
+ */
2450
+ operationsControllerRunGenerateV3V1(generateV3ControllerInput: GenerateV3ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
2451
+ /**
2452
+ *
2453
+ * @param {InpaintV1ControllerInput} inpaintV1ControllerInput
2454
+ * @param {*} [options] Override http request option.
2455
+ * @throws {RequiredError}
2456
+ */
2457
+ operationsControllerRunInpaintV1V1(inpaintV1ControllerInput: InpaintV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
2458
+ /**
2459
+ *
2460
+ * @param {string} id
2461
+ * @param {UpdateMetadataDto} updateMetadataDto
2462
+ * @param {*} [options] Override http request option.
2463
+ * @throws {RequiredError}
2464
+ */
2465
+ operationsControllerUpdateMetadataV1(id: string, updateMetadataDto: UpdateMetadataDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ResourceEntity>>;
2466
+ };
2467
+ /**
2468
+ * OperationsApi - factory interface
2469
+ * @export
2470
+ */
2471
+ export declare const OperationsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
2472
+ /**
2473
+ *
2474
+ * @param {string} id
2475
+ * @param {*} [options] Override http request option.
2476
+ * @throws {RequiredError}
2477
+ */
2478
+ operationsControllerGetOperationV1(id: string, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
2479
+ /**
2480
+ *
2481
+ * @param {GetOperationsParamsDto} getOperationsParamsDto
2482
+ * @param {*} [options] Override http request option.
2483
+ * @throws {RequiredError}
2484
+ */
2485
+ operationsControllerGetOperationsV1(getOperationsParamsDto: GetOperationsParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<OperationEntity>>;
2486
+ /**
2487
+ *
2488
+ * @param {OperationsControllerListOperationsV1OrderByEnum} [orderBy]
2489
+ * @param {number} [limit]
2490
+ * @param {string} [cursor]
2491
+ * @param {*} [options] Override http request option.
2492
+ * @throws {RequiredError}
2493
+ */
2494
+ operationsControllerListOperationsV1(orderBy?: OperationsControllerListOperationsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListOperationsDto>;
2495
+ /**
2496
+ *
2497
+ * @param {ConstructPromptV1ControllerInput} constructPromptV1ControllerInput
2498
+ * @param {*} [options] Override http request option.
2499
+ * @throws {RequiredError}
2500
+ */
2501
+ operationsControllerRunConstructPromptV1V1(constructPromptV1ControllerInput: ConstructPromptV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
2502
+ /**
2503
+ *
2504
+ * @param {GenerateV3ControllerInput} generateV3ControllerInput
2505
+ * @param {*} [options] Override http request option.
2506
+ * @throws {RequiredError}
2507
+ */
2508
+ operationsControllerRunGenerateV3V1(generateV3ControllerInput: GenerateV3ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
2509
+ /**
2510
+ *
2511
+ * @param {InpaintV1ControllerInput} inpaintV1ControllerInput
2512
+ * @param {*} [options] Override http request option.
2513
+ * @throws {RequiredError}
2514
+ */
2515
+ operationsControllerRunInpaintV1V1(inpaintV1ControllerInput: InpaintV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
2516
+ /**
2517
+ *
2518
+ * @param {string} id
2519
+ * @param {UpdateMetadataDto} updateMetadataDto
2520
+ * @param {*} [options] Override http request option.
2521
+ * @throws {RequiredError}
2522
+ */
2523
+ operationsControllerUpdateMetadataV1(id: string, updateMetadataDto: UpdateMetadataDto, options?: RawAxiosRequestConfig): AxiosPromise<ResourceEntity>;
2524
+ };
2525
+ /**
2526
+ * OperationsApi - object-oriented interface
2527
+ * @export
2528
+ * @class OperationsApi
2529
+ * @extends {BaseAPI}
2530
+ */
2531
+ export declare class OperationsApi extends BaseAPI {
2532
+ /**
2533
+ *
2534
+ * @param {string} id
2535
+ * @param {*} [options] Override http request option.
2536
+ * @throws {RequiredError}
2537
+ * @memberof OperationsApi
2538
+ */
2539
+ operationsControllerGetOperationV1(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
2540
+ /**
2541
+ *
2542
+ * @param {GetOperationsParamsDto} getOperationsParamsDto
2543
+ * @param {*} [options] Override http request option.
2544
+ * @throws {RequiredError}
2545
+ * @memberof OperationsApi
2546
+ */
2547
+ operationsControllerGetOperationsV1(getOperationsParamsDto: GetOperationsParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity[], any>>;
2548
+ /**
2549
+ *
2550
+ * @param {OperationsControllerListOperationsV1OrderByEnum} [orderBy]
2551
+ * @param {number} [limit]
2552
+ * @param {string} [cursor]
2553
+ * @param {*} [options] Override http request option.
2554
+ * @throws {RequiredError}
2555
+ * @memberof OperationsApi
2556
+ */
2557
+ operationsControllerListOperationsV1(orderBy?: OperationsControllerListOperationsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListOperationsDto, any>>;
2558
+ /**
2559
+ *
2560
+ * @param {ConstructPromptV1ControllerInput} constructPromptV1ControllerInput
2561
+ * @param {*} [options] Override http request option.
2562
+ * @throws {RequiredError}
2563
+ * @memberof OperationsApi
2564
+ */
2565
+ operationsControllerRunConstructPromptV1V1(constructPromptV1ControllerInput: ConstructPromptV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
2566
+ /**
2567
+ *
2568
+ * @param {GenerateV3ControllerInput} generateV3ControllerInput
2569
+ * @param {*} [options] Override http request option.
2570
+ * @throws {RequiredError}
2571
+ * @memberof OperationsApi
2572
+ */
2573
+ operationsControllerRunGenerateV3V1(generateV3ControllerInput: GenerateV3ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
2574
+ /**
2575
+ *
2576
+ * @param {InpaintV1ControllerInput} inpaintV1ControllerInput
2577
+ * @param {*} [options] Override http request option.
2578
+ * @throws {RequiredError}
2579
+ * @memberof OperationsApi
2580
+ */
2581
+ operationsControllerRunInpaintV1V1(inpaintV1ControllerInput: InpaintV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
2582
+ /**
2583
+ *
2584
+ * @param {string} id
2585
+ * @param {UpdateMetadataDto} updateMetadataDto
2586
+ * @param {*} [options] Override http request option.
2587
+ * @throws {RequiredError}
2588
+ * @memberof OperationsApi
2589
+ */
2590
+ operationsControllerUpdateMetadataV1(id: string, updateMetadataDto: UpdateMetadataDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ResourceEntity, any>>;
2591
+ }
2592
+ /**
2593
+ * @export
2594
+ */
2595
+ export declare const OperationsControllerListOperationsV1OrderByEnum: {
2596
+ readonly CreatedAtAsc: "createdAt_ASC";
2597
+ readonly CreatedAtDesc: "createdAt_DESC";
2598
+ readonly UpdatedAtAsc: "updatedAt_ASC";
2599
+ readonly UpdatedAtDesc: "updatedAt_DESC";
2600
+ };
2601
+ export type OperationsControllerListOperationsV1OrderByEnum = typeof OperationsControllerListOperationsV1OrderByEnum[keyof typeof OperationsControllerListOperationsV1OrderByEnum];
2602
+ /**
2603
+ * PipelinesApi - axios parameter creator
2604
+ * @export
2605
+ */
2606
+ export declare const PipelinesApiAxiosParamCreator: (configuration?: Configuration) => {
2607
+ /**
2608
+ *
2609
+ * @param {CreatePipelineParamsDto} createPipelineParamsDto
2610
+ * @param {*} [options] Override http request option.
2611
+ * @throws {RequiredError}
2612
+ */
2613
+ pipelinesControllerCreatePipelineV1: (createPipelineParamsDto: CreatePipelineParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2614
+ /**
2615
+ *
2616
+ * @param {string} id
2617
+ * @param {*} [options] Override http request option.
2618
+ * @throws {RequiredError}
2619
+ */
2620
+ pipelinesControllerGetPipelineV1: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2621
+ /**
2622
+ *
2623
+ * @param {*} [options] Override http request option.
2624
+ * @throws {RequiredError}
2625
+ */
2626
+ pipelinesControllerListPipelinesV1: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2627
+ /**
2628
+ *
2629
+ * @param {string} id
2630
+ * @param {*} [options] Override http request option.
2631
+ * @throws {RequiredError}
2632
+ */
2633
+ pipelinesControllerUpdatePipelineV1: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2634
+ };
2635
+ /**
2636
+ * PipelinesApi - functional programming interface
2637
+ * @export
2638
+ */
2639
+ export declare const PipelinesApiFp: (configuration?: Configuration) => {
2640
+ /**
2641
+ *
2642
+ * @param {CreatePipelineParamsDto} createPipelineParamsDto
2643
+ * @param {*} [options] Override http request option.
2644
+ * @throws {RequiredError}
2645
+ */
2646
+ pipelinesControllerCreatePipelineV1(createPipelineParamsDto: CreatePipelineParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PipelineEntity>>;
2647
+ /**
2648
+ *
2649
+ * @param {string} id
2650
+ * @param {*} [options] Override http request option.
2651
+ * @throws {RequiredError}
2652
+ */
2653
+ pipelinesControllerGetPipelineV1(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
2654
+ /**
2655
+ *
2656
+ * @param {*} [options] Override http request option.
2657
+ * @throws {RequiredError}
2658
+ */
2659
+ pipelinesControllerListPipelinesV1(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<object>>>;
2660
+ /**
2661
+ *
2662
+ * @param {string} id
2663
+ * @param {*} [options] Override http request option.
2664
+ * @throws {RequiredError}
2665
+ */
2666
+ pipelinesControllerUpdatePipelineV1(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
2667
+ };
2668
+ /**
2669
+ * PipelinesApi - factory interface
2670
+ * @export
2671
+ */
2672
+ export declare const PipelinesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
2673
+ /**
2674
+ *
2675
+ * @param {CreatePipelineParamsDto} createPipelineParamsDto
2676
+ * @param {*} [options] Override http request option.
2677
+ * @throws {RequiredError}
2678
+ */
2679
+ pipelinesControllerCreatePipelineV1(createPipelineParamsDto: CreatePipelineParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<PipelineEntity>;
2680
+ /**
2681
+ *
2682
+ * @param {string} id
2683
+ * @param {*} [options] Override http request option.
2684
+ * @throws {RequiredError}
2685
+ */
2686
+ pipelinesControllerGetPipelineV1(id: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
2687
+ /**
2688
+ *
2689
+ * @param {*} [options] Override http request option.
2690
+ * @throws {RequiredError}
2691
+ */
2692
+ pipelinesControllerListPipelinesV1(options?: RawAxiosRequestConfig): AxiosPromise<Array<object>>;
2693
+ /**
2694
+ *
2695
+ * @param {string} id
2696
+ * @param {*} [options] Override http request option.
2697
+ * @throws {RequiredError}
2698
+ */
2699
+ pipelinesControllerUpdatePipelineV1(id: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
2700
+ };
2701
+ /**
2702
+ * PipelinesApi - object-oriented interface
2703
+ * @export
2704
+ * @class PipelinesApi
2705
+ * @extends {BaseAPI}
2706
+ */
2707
+ export declare class PipelinesApi extends BaseAPI {
2708
+ /**
2709
+ *
2710
+ * @param {CreatePipelineParamsDto} createPipelineParamsDto
2711
+ * @param {*} [options] Override http request option.
2712
+ * @throws {RequiredError}
2713
+ * @memberof PipelinesApi
2714
+ */
2715
+ pipelinesControllerCreatePipelineV1(createPipelineParamsDto: CreatePipelineParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PipelineEntity, any>>;
2716
+ /**
2717
+ *
2718
+ * @param {string} id
2719
+ * @param {*} [options] Override http request option.
2720
+ * @throws {RequiredError}
2721
+ * @memberof PipelinesApi
2722
+ */
2723
+ pipelinesControllerGetPipelineV1(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
2724
+ /**
2725
+ *
2726
+ * @param {*} [options] Override http request option.
2727
+ * @throws {RequiredError}
2728
+ * @memberof PipelinesApi
2729
+ */
2730
+ pipelinesControllerListPipelinesV1(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object[], any>>;
2731
+ /**
2732
+ *
2733
+ * @param {string} id
2734
+ * @param {*} [options] Override http request option.
2735
+ * @throws {RequiredError}
2736
+ * @memberof PipelinesApi
2737
+ */
2738
+ pipelinesControllerUpdatePipelineV1(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
2739
+ }
2740
+ /**
2741
+ * PosesApi - axios parameter creator
2742
+ * @export
2743
+ */
2744
+ export declare const PosesApiAxiosParamCreator: (configuration?: Configuration) => {
2745
+ /**
2746
+ *
2747
+ * @param {CreatePoseParamsDto} createPoseParamsDto
2748
+ * @param {*} [options] Override http request option.
2749
+ * @throws {RequiredError}
2750
+ */
2751
+ posesControllerCreatePoseV1: (createPoseParamsDto: CreatePoseParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2752
+ /**
2753
+ *
2754
+ * @param {string} id
2755
+ * @param {*} [options] Override http request option.
2756
+ * @throws {RequiredError}
2757
+ */
2758
+ posesControllerGetPoseV1: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2759
+ /**
2760
+ *
2761
+ * @param {*} [options] Override http request option.
2762
+ * @throws {RequiredError}
2763
+ */
2764
+ posesControllerListStacksV1: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2765
+ };
2766
+ /**
2767
+ * PosesApi - functional programming interface
2768
+ * @export
2769
+ */
2770
+ export declare const PosesApiFp: (configuration?: Configuration) => {
2771
+ /**
2772
+ *
2773
+ * @param {CreatePoseParamsDto} createPoseParamsDto
2774
+ * @param {*} [options] Override http request option.
2775
+ * @throws {RequiredError}
2776
+ */
2777
+ posesControllerCreatePoseV1(createPoseParamsDto: CreatePoseParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
2778
+ /**
2779
+ *
2780
+ * @param {string} id
2781
+ * @param {*} [options] Override http request option.
2782
+ * @throws {RequiredError}
2783
+ */
2784
+ posesControllerGetPoseV1(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
2785
+ /**
2786
+ *
2787
+ * @param {*} [options] Override http request option.
2788
+ * @throws {RequiredError}
2789
+ */
2790
+ posesControllerListStacksV1(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<object>>>;
2791
+ };
2792
+ /**
2793
+ * PosesApi - factory interface
2794
+ * @export
2795
+ */
2796
+ export declare const PosesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
2797
+ /**
2798
+ *
2799
+ * @param {CreatePoseParamsDto} createPoseParamsDto
2800
+ * @param {*} [options] Override http request option.
2801
+ * @throws {RequiredError}
2802
+ */
2803
+ posesControllerCreatePoseV1(createPoseParamsDto: CreatePoseParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<object>;
2804
+ /**
2805
+ *
2806
+ * @param {string} id
2807
+ * @param {*} [options] Override http request option.
2808
+ * @throws {RequiredError}
2809
+ */
2810
+ posesControllerGetPoseV1(id: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
2811
+ /**
2812
+ *
2813
+ * @param {*} [options] Override http request option.
2814
+ * @throws {RequiredError}
2815
+ */
2816
+ posesControllerListStacksV1(options?: RawAxiosRequestConfig): AxiosPromise<Array<object>>;
2817
+ };
2818
+ /**
2819
+ * PosesApi - object-oriented interface
2820
+ * @export
2821
+ * @class PosesApi
2822
+ * @extends {BaseAPI}
2823
+ */
2824
+ export declare class PosesApi extends BaseAPI {
2825
+ /**
2826
+ *
2827
+ * @param {CreatePoseParamsDto} createPoseParamsDto
2828
+ * @param {*} [options] Override http request option.
2829
+ * @throws {RequiredError}
2830
+ * @memberof PosesApi
2831
+ */
2832
+ posesControllerCreatePoseV1(createPoseParamsDto: CreatePoseParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
2833
+ /**
2834
+ *
2835
+ * @param {string} id
2836
+ * @param {*} [options] Override http request option.
2837
+ * @throws {RequiredError}
2838
+ * @memberof PosesApi
2839
+ */
2840
+ posesControllerGetPoseV1(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
2841
+ /**
2842
+ *
2843
+ * @param {*} [options] Override http request option.
2844
+ * @throws {RequiredError}
2845
+ * @memberof PosesApi
2846
+ */
2847
+ posesControllerListStacksV1(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object[], any>>;
2848
+ }
2849
+ /**
2850
+ * StacksApi - axios parameter creator
2851
+ * @export
2852
+ */
2853
+ export declare const StacksApiAxiosParamCreator: (configuration?: Configuration) => {
2854
+ /**
2855
+ *
2856
+ * @param {string} id
2857
+ * @param {AddOperationsToStackControllerParamsDto} addOperationsToStackControllerParamsDto
2858
+ * @param {*} [options] Override http request option.
2859
+ * @throws {RequiredError}
2860
+ */
2861
+ stacksControllerAddOperationsV1: (id: string, addOperationsToStackControllerParamsDto: AddOperationsToStackControllerParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2862
+ /**
2863
+ *
2864
+ * @param {CreateStackParamsDto} createStackParamsDto
2865
+ * @param {*} [options] Override http request option.
2866
+ * @throws {RequiredError}
2867
+ */
2868
+ stacksControllerCreateStackV1: (createStackParamsDto: CreateStackParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2869
+ /**
2870
+ *
2871
+ * @param {string} id
2872
+ * @param {*} [options] Override http request option.
2873
+ * @throws {RequiredError}
2874
+ */
2875
+ stacksControllerGetStackV1: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2876
+ /**
2877
+ *
2878
+ * @param {StacksControllerListStacksV1OrderByEnum} [orderBy]
2879
+ * @param {number} [limit]
2880
+ * @param {string} [cursor]
2881
+ * @param {*} [options] Override http request option.
2882
+ * @throws {RequiredError}
2883
+ */
2884
+ stacksControllerListStacksV1: (orderBy?: StacksControllerListStacksV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2885
+ /**
2886
+ *
2887
+ * @param {string} id
2888
+ * @param {RemoveOperationsFromStackControllerParamsDto} removeOperationsFromStackControllerParamsDto
2889
+ * @param {*} [options] Override http request option.
2890
+ * @throws {RequiredError}
2891
+ */
2892
+ stacksControllerRemoveOperationV1: (id: string, removeOperationsFromStackControllerParamsDto: RemoveOperationsFromStackControllerParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2893
+ /**
2894
+ *
2895
+ * @param {string} id
2896
+ * @param {UpdateMetadataDto} updateMetadataDto
2897
+ * @param {*} [options] Override http request option.
2898
+ * @throws {RequiredError}
2899
+ */
2900
+ stacksControllerUpdateMetadataV1: (id: string, updateMetadataDto: UpdateMetadataDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2901
+ };
2902
+ /**
2903
+ * StacksApi - functional programming interface
2904
+ * @export
2905
+ */
2906
+ export declare const StacksApiFp: (configuration?: Configuration) => {
2907
+ /**
2908
+ *
2909
+ * @param {string} id
2910
+ * @param {AddOperationsToStackControllerParamsDto} addOperationsToStackControllerParamsDto
2911
+ * @param {*} [options] Override http request option.
2912
+ * @throws {RequiredError}
2913
+ */
2914
+ stacksControllerAddOperationsV1(id: string, addOperationsToStackControllerParamsDto: AddOperationsToStackControllerParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StackEntity>>;
2915
+ /**
2916
+ *
2917
+ * @param {CreateStackParamsDto} createStackParamsDto
2918
+ * @param {*} [options] Override http request option.
2919
+ * @throws {RequiredError}
2920
+ */
2921
+ stacksControllerCreateStackV1(createStackParamsDto: CreateStackParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StackEntity>>;
2922
+ /**
2923
+ *
2924
+ * @param {string} id
2925
+ * @param {*} [options] Override http request option.
2926
+ * @throws {RequiredError}
2927
+ */
2928
+ stacksControllerGetStackV1(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StackEntity>>;
2929
+ /**
2930
+ *
2931
+ * @param {StacksControllerListStacksV1OrderByEnum} [orderBy]
2932
+ * @param {number} [limit]
2933
+ * @param {string} [cursor]
2934
+ * @param {*} [options] Override http request option.
2935
+ * @throws {RequiredError}
2936
+ */
2937
+ stacksControllerListStacksV1(orderBy?: StacksControllerListStacksV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListStacksDto>>;
2938
+ /**
2939
+ *
2940
+ * @param {string} id
2941
+ * @param {RemoveOperationsFromStackControllerParamsDto} removeOperationsFromStackControllerParamsDto
2942
+ * @param {*} [options] Override http request option.
2943
+ * @throws {RequiredError}
2944
+ */
2945
+ stacksControllerRemoveOperationV1(id: string, removeOperationsFromStackControllerParamsDto: RemoveOperationsFromStackControllerParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StackEntity>>;
2946
+ /**
2947
+ *
2948
+ * @param {string} id
2949
+ * @param {UpdateMetadataDto} updateMetadataDto
2950
+ * @param {*} [options] Override http request option.
2951
+ * @throws {RequiredError}
2952
+ */
2953
+ stacksControllerUpdateMetadataV1(id: string, updateMetadataDto: UpdateMetadataDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ResourceEntity>>;
2954
+ };
2955
+ /**
2956
+ * StacksApi - factory interface
2957
+ * @export
2958
+ */
2959
+ export declare const StacksApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
2960
+ /**
2961
+ *
2962
+ * @param {string} id
2963
+ * @param {AddOperationsToStackControllerParamsDto} addOperationsToStackControllerParamsDto
2964
+ * @param {*} [options] Override http request option.
2965
+ * @throws {RequiredError}
2966
+ */
2967
+ stacksControllerAddOperationsV1(id: string, addOperationsToStackControllerParamsDto: AddOperationsToStackControllerParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<StackEntity>;
2968
+ /**
2969
+ *
2970
+ * @param {CreateStackParamsDto} createStackParamsDto
2971
+ * @param {*} [options] Override http request option.
2972
+ * @throws {RequiredError}
2973
+ */
2974
+ stacksControllerCreateStackV1(createStackParamsDto: CreateStackParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<StackEntity>;
2975
+ /**
2976
+ *
2977
+ * @param {string} id
2978
+ * @param {*} [options] Override http request option.
2979
+ * @throws {RequiredError}
2980
+ */
2981
+ stacksControllerGetStackV1(id: string, options?: RawAxiosRequestConfig): AxiosPromise<StackEntity>;
2982
+ /**
2983
+ *
2984
+ * @param {StacksControllerListStacksV1OrderByEnum} [orderBy]
2985
+ * @param {number} [limit]
2986
+ * @param {string} [cursor]
2987
+ * @param {*} [options] Override http request option.
2988
+ * @throws {RequiredError}
2989
+ */
2990
+ stacksControllerListStacksV1(orderBy?: StacksControllerListStacksV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListStacksDto>;
2991
+ /**
2992
+ *
2993
+ * @param {string} id
2994
+ * @param {RemoveOperationsFromStackControllerParamsDto} removeOperationsFromStackControllerParamsDto
2995
+ * @param {*} [options] Override http request option.
2996
+ * @throws {RequiredError}
2997
+ */
2998
+ stacksControllerRemoveOperationV1(id: string, removeOperationsFromStackControllerParamsDto: RemoveOperationsFromStackControllerParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<StackEntity>;
2999
+ /**
3000
+ *
3001
+ * @param {string} id
3002
+ * @param {UpdateMetadataDto} updateMetadataDto
3003
+ * @param {*} [options] Override http request option.
3004
+ * @throws {RequiredError}
3005
+ */
3006
+ stacksControllerUpdateMetadataV1(id: string, updateMetadataDto: UpdateMetadataDto, options?: RawAxiosRequestConfig): AxiosPromise<ResourceEntity>;
3007
+ };
3008
+ /**
3009
+ * StacksApi - object-oriented interface
3010
+ * @export
3011
+ * @class StacksApi
3012
+ * @extends {BaseAPI}
3013
+ */
3014
+ export declare class StacksApi extends BaseAPI {
3015
+ /**
3016
+ *
3017
+ * @param {string} id
3018
+ * @param {AddOperationsToStackControllerParamsDto} addOperationsToStackControllerParamsDto
3019
+ * @param {*} [options] Override http request option.
3020
+ * @throws {RequiredError}
3021
+ * @memberof StacksApi
3022
+ */
3023
+ stacksControllerAddOperationsV1(id: string, addOperationsToStackControllerParamsDto: AddOperationsToStackControllerParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StackEntity, any>>;
3024
+ /**
3025
+ *
3026
+ * @param {CreateStackParamsDto} createStackParamsDto
3027
+ * @param {*} [options] Override http request option.
3028
+ * @throws {RequiredError}
3029
+ * @memberof StacksApi
3030
+ */
3031
+ stacksControllerCreateStackV1(createStackParamsDto: CreateStackParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StackEntity, any>>;
3032
+ /**
3033
+ *
3034
+ * @param {string} id
3035
+ * @param {*} [options] Override http request option.
3036
+ * @throws {RequiredError}
3037
+ * @memberof StacksApi
3038
+ */
3039
+ stacksControllerGetStackV1(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StackEntity, any>>;
3040
+ /**
3041
+ *
3042
+ * @param {StacksControllerListStacksV1OrderByEnum} [orderBy]
3043
+ * @param {number} [limit]
3044
+ * @param {string} [cursor]
3045
+ * @param {*} [options] Override http request option.
3046
+ * @throws {RequiredError}
3047
+ * @memberof StacksApi
3048
+ */
3049
+ stacksControllerListStacksV1(orderBy?: StacksControllerListStacksV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListStacksDto, any>>;
3050
+ /**
3051
+ *
3052
+ * @param {string} id
3053
+ * @param {RemoveOperationsFromStackControllerParamsDto} removeOperationsFromStackControllerParamsDto
3054
+ * @param {*} [options] Override http request option.
3055
+ * @throws {RequiredError}
3056
+ * @memberof StacksApi
3057
+ */
3058
+ stacksControllerRemoveOperationV1(id: string, removeOperationsFromStackControllerParamsDto: RemoveOperationsFromStackControllerParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StackEntity, any>>;
3059
+ /**
3060
+ *
3061
+ * @param {string} id
3062
+ * @param {UpdateMetadataDto} updateMetadataDto
3063
+ * @param {*} [options] Override http request option.
3064
+ * @throws {RequiredError}
3065
+ * @memberof StacksApi
3066
+ */
3067
+ stacksControllerUpdateMetadataV1(id: string, updateMetadataDto: UpdateMetadataDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ResourceEntity, any>>;
3068
+ }
3069
+ /**
3070
+ * @export
3071
+ */
3072
+ export declare const StacksControllerListStacksV1OrderByEnum: {
3073
+ readonly CreatedAtAsc: "createdAt_ASC";
3074
+ readonly CreatedAtDesc: "createdAt_DESC";
3075
+ readonly UpdatedAtAsc: "updatedAt_ASC";
3076
+ readonly UpdatedAtDesc: "updatedAt_DESC";
3077
+ };
3078
+ export type StacksControllerListStacksV1OrderByEnum = typeof StacksControllerListStacksV1OrderByEnum[keyof typeof StacksControllerListStacksV1OrderByEnum];
3079
+ /**
3080
+ * StorageApi - axios parameter creator
3081
+ * @export
3082
+ */
3083
+ export declare const StorageApiAxiosParamCreator: (configuration?: Configuration) => {
3084
+ /**
3085
+ *
3086
+ * @param {CreateStorageRecordParamsDto} createStorageRecordParamsDto
3087
+ * @param {*} [options] Override http request option.
3088
+ * @throws {RequiredError}
3089
+ */
3090
+ storageControllerCreateRecordV1: (createStorageRecordParamsDto: CreateStorageRecordParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3091
+ /**
3092
+ *
3093
+ * @param {DeleteStorageParamsDto} deleteStorageParamsDto
3094
+ * @param {*} [options] Override http request option.
3095
+ * @throws {RequiredError}
3096
+ */
3097
+ storageControllerDeleteRecordV1: (deleteStorageParamsDto: DeleteStorageParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3098
+ /**
3099
+ *
3100
+ * @param {GetStorageRecordParamsDto} getStorageRecordParamsDto
3101
+ * @param {*} [options] Override http request option.
3102
+ * @throws {RequiredError}
3103
+ */
3104
+ storageControllerGetRecordsV1: (getStorageRecordParamsDto: GetStorageRecordParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3105
+ /**
3106
+ *
3107
+ * @param {UpdateStorageRecordParamsDto} updateStorageRecordParamsDto
3108
+ * @param {*} [options] Override http request option.
3109
+ * @throws {RequiredError}
3110
+ */
3111
+ storageControllerUpdateRecordV1: (updateStorageRecordParamsDto: UpdateStorageRecordParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3112
+ };
3113
+ /**
3114
+ * StorageApi - functional programming interface
3115
+ * @export
3116
+ */
3117
+ export declare const StorageApiFp: (configuration?: Configuration) => {
3118
+ /**
3119
+ *
3120
+ * @param {CreateStorageRecordParamsDto} createStorageRecordParamsDto
3121
+ * @param {*} [options] Override http request option.
3122
+ * @throws {RequiredError}
3123
+ */
3124
+ storageControllerCreateRecordV1(createStorageRecordParamsDto: CreateStorageRecordParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
3125
+ /**
3126
+ *
3127
+ * @param {DeleteStorageParamsDto} deleteStorageParamsDto
3128
+ * @param {*} [options] Override http request option.
3129
+ * @throws {RequiredError}
3130
+ */
3131
+ storageControllerDeleteRecordV1(deleteStorageParamsDto: DeleteStorageParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
3132
+ /**
3133
+ *
3134
+ * @param {GetStorageRecordParamsDto} getStorageRecordParamsDto
3135
+ * @param {*} [options] Override http request option.
3136
+ * @throws {RequiredError}
3137
+ */
3138
+ storageControllerGetRecordsV1(getStorageRecordParamsDto: GetStorageRecordParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<StorageRecordsResultDto>>>;
3139
+ /**
3140
+ *
3141
+ * @param {UpdateStorageRecordParamsDto} updateStorageRecordParamsDto
3142
+ * @param {*} [options] Override http request option.
3143
+ * @throws {RequiredError}
3144
+ */
3145
+ storageControllerUpdateRecordV1(updateStorageRecordParamsDto: UpdateStorageRecordParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StorageEntity>>;
3146
+ };
3147
+ /**
3148
+ * StorageApi - factory interface
3149
+ * @export
3150
+ */
3151
+ export declare const StorageApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
3152
+ /**
3153
+ *
3154
+ * @param {CreateStorageRecordParamsDto} createStorageRecordParamsDto
3155
+ * @param {*} [options] Override http request option.
3156
+ * @throws {RequiredError}
3157
+ */
3158
+ storageControllerCreateRecordV1(createStorageRecordParamsDto: CreateStorageRecordParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<object>;
3159
+ /**
3160
+ *
3161
+ * @param {DeleteStorageParamsDto} deleteStorageParamsDto
3162
+ * @param {*} [options] Override http request option.
3163
+ * @throws {RequiredError}
3164
+ */
3165
+ storageControllerDeleteRecordV1(deleteStorageParamsDto: DeleteStorageParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<void>;
3166
+ /**
3167
+ *
3168
+ * @param {GetStorageRecordParamsDto} getStorageRecordParamsDto
3169
+ * @param {*} [options] Override http request option.
3170
+ * @throws {RequiredError}
3171
+ */
3172
+ storageControllerGetRecordsV1(getStorageRecordParamsDto: GetStorageRecordParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<StorageRecordsResultDto>>;
3173
+ /**
3174
+ *
3175
+ * @param {UpdateStorageRecordParamsDto} updateStorageRecordParamsDto
3176
+ * @param {*} [options] Override http request option.
3177
+ * @throws {RequiredError}
3178
+ */
3179
+ storageControllerUpdateRecordV1(updateStorageRecordParamsDto: UpdateStorageRecordParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<StorageEntity>;
3180
+ };
3181
+ /**
3182
+ * StorageApi - object-oriented interface
3183
+ * @export
3184
+ * @class StorageApi
3185
+ * @extends {BaseAPI}
3186
+ */
3187
+ export declare class StorageApi extends BaseAPI {
3188
+ /**
3189
+ *
3190
+ * @param {CreateStorageRecordParamsDto} createStorageRecordParamsDto
3191
+ * @param {*} [options] Override http request option.
3192
+ * @throws {RequiredError}
3193
+ * @memberof StorageApi
3194
+ */
3195
+ storageControllerCreateRecordV1(createStorageRecordParamsDto: CreateStorageRecordParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
3196
+ /**
3197
+ *
3198
+ * @param {DeleteStorageParamsDto} deleteStorageParamsDto
3199
+ * @param {*} [options] Override http request option.
3200
+ * @throws {RequiredError}
3201
+ * @memberof StorageApi
3202
+ */
3203
+ storageControllerDeleteRecordV1(deleteStorageParamsDto: DeleteStorageParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
3204
+ /**
3205
+ *
3206
+ * @param {GetStorageRecordParamsDto} getStorageRecordParamsDto
3207
+ * @param {*} [options] Override http request option.
3208
+ * @throws {RequiredError}
3209
+ * @memberof StorageApi
3210
+ */
3211
+ storageControllerGetRecordsV1(getStorageRecordParamsDto: GetStorageRecordParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StorageRecordsResultDto[], any>>;
3212
+ /**
3213
+ *
3214
+ * @param {UpdateStorageRecordParamsDto} updateStorageRecordParamsDto
3215
+ * @param {*} [options] Override http request option.
3216
+ * @throws {RequiredError}
3217
+ * @memberof StorageApi
3218
+ */
3219
+ storageControllerUpdateRecordV1(updateStorageRecordParamsDto: UpdateStorageRecordParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StorageEntity, any>>;
3220
+ }
3221
+ /**
3222
+ * UploadApi - axios parameter creator
3223
+ * @export
3224
+ */
3225
+ export declare const UploadApiAxiosParamCreator: (configuration?: Configuration) => {
3226
+ /**
3227
+ *
3228
+ * @param {*} [options] Override http request option.
3229
+ * @throws {RequiredError}
3230
+ */
3231
+ uploadControllerUploadFileV1: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3232
+ };
3233
+ /**
3234
+ * UploadApi - functional programming interface
3235
+ * @export
3236
+ */
3237
+ export declare const UploadApiFp: (configuration?: Configuration) => {
3238
+ /**
3239
+ *
3240
+ * @param {*} [options] Override http request option.
3241
+ * @throws {RequiredError}
3242
+ */
3243
+ uploadControllerUploadFileV1(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
3244
+ };
3245
+ /**
3246
+ * UploadApi - factory interface
3247
+ * @export
3248
+ */
3249
+ export declare const UploadApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
3250
+ /**
3251
+ *
3252
+ * @param {*} [options] Override http request option.
3253
+ * @throws {RequiredError}
3254
+ */
3255
+ uploadControllerUploadFileV1(options?: RawAxiosRequestConfig): AxiosPromise<void>;
3256
+ };
3257
+ /**
3258
+ * UploadApi - object-oriented interface
3259
+ * @export
3260
+ * @class UploadApi
3261
+ * @extends {BaseAPI}
3262
+ */
3263
+ export declare class UploadApi extends BaseAPI {
3264
+ /**
3265
+ *
3266
+ * @param {*} [options] Override http request option.
3267
+ * @throws {RequiredError}
3268
+ * @memberof UploadApi
3269
+ */
3270
+ uploadControllerUploadFileV1(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
3271
+ }
3272
+ /**
3273
+ * WebsocketApi - axios parameter creator
3274
+ * @export
3275
+ */
3276
+ export declare const WebsocketApiAxiosParamCreator: (configuration?: Configuration) => {
3277
+ /**
3278
+ *
3279
+ * @param {*} [options] Override http request option.
3280
+ * @throws {RequiredError}
3281
+ */
3282
+ websocketControllerGetSettingsV1: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3283
+ /**
3284
+ *
3285
+ * @param {*} [options] Override http request option.
3286
+ * @throws {RequiredError}
3287
+ */
3288
+ websocketControllerRegisterWebsocketV1: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3289
+ };
3290
+ /**
3291
+ * WebsocketApi - functional programming interface
3292
+ * @export
3293
+ */
3294
+ export declare const WebsocketApiFp: (configuration?: Configuration) => {
3295
+ /**
3296
+ *
3297
+ * @param {*} [options] Override http request option.
3298
+ * @throws {RequiredError}
3299
+ */
3300
+ websocketControllerGetSettingsV1(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
3301
+ /**
3302
+ *
3303
+ * @param {*} [options] Override http request option.
3304
+ * @throws {RequiredError}
3305
+ */
3306
+ websocketControllerRegisterWebsocketV1(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
3307
+ };
3308
+ /**
3309
+ * WebsocketApi - factory interface
3310
+ * @export
3311
+ */
3312
+ export declare const WebsocketApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
3313
+ /**
3314
+ *
3315
+ * @param {*} [options] Override http request option.
3316
+ * @throws {RequiredError}
3317
+ */
3318
+ websocketControllerGetSettingsV1(options?: RawAxiosRequestConfig): AxiosPromise<void>;
3319
+ /**
3320
+ *
3321
+ * @param {*} [options] Override http request option.
3322
+ * @throws {RequiredError}
3323
+ */
3324
+ websocketControllerRegisterWebsocketV1(options?: RawAxiosRequestConfig): AxiosPromise<void>;
3325
+ };
3326
+ /**
3327
+ * WebsocketApi - object-oriented interface
3328
+ * @export
3329
+ * @class WebsocketApi
3330
+ * @extends {BaseAPI}
3331
+ */
3332
+ export declare class WebsocketApi extends BaseAPI {
3333
+ /**
3334
+ *
3335
+ * @param {*} [options] Override http request option.
3336
+ * @throws {RequiredError}
3337
+ * @memberof WebsocketApi
3338
+ */
3339
+ websocketControllerGetSettingsV1(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
3340
+ /**
3341
+ *
3342
+ * @param {*} [options] Override http request option.
3343
+ * @throws {RequiredError}
3344
+ * @memberof WebsocketApi
3345
+ */
3346
+ websocketControllerRegisterWebsocketV1(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
3347
+ }