@hautechai/sdk 0.0.3 → 0.0.5

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.
@@ -37,43 +37,6 @@ export declare const AccountEntityTypeEnum: {
37
37
  readonly User: "user";
38
38
  };
39
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
40
  /**
78
41
  *
79
42
  * @export
@@ -252,25 +215,6 @@ export interface CreatePipelineParamsDto {
252
215
  */
253
216
  'tasks': object;
254
217
  }
255
- /**
256
- *
257
- * @export
258
- * @interface CreatePoseParamsDto
259
- */
260
- export interface CreatePoseParamsDto {
261
- /**
262
- *
263
- * @type {object}
264
- * @memberof CreatePoseParamsDto
265
- */
266
- 'metadata'?: object;
267
- /**
268
- *
269
- * @type {string}
270
- * @memberof CreatePoseParamsDto
271
- */
272
- 'imageId': string;
273
- }
274
218
  /**
275
219
  *
276
220
  * @export
@@ -722,10 +666,10 @@ export interface ImageUrlResponseDto {
722
666
  export interface ImagineV1ControllerInput {
723
667
  /**
724
668
  *
725
- * @type {InpaintV1Input}
669
+ * @type {ImagineV1Input}
726
670
  * @memberof ImagineV1ControllerInput
727
671
  */
728
- 'input'?: InpaintV1Input;
672
+ 'input'?: ImagineV1Input;
729
673
  /**
730
674
  *
731
675
  * @type {object}
@@ -733,6 +677,43 @@ export interface ImagineV1ControllerInput {
733
677
  */
734
678
  'metadata'?: object;
735
679
  }
680
+ /**
681
+ *
682
+ * @export
683
+ * @interface ImagineV1Input
684
+ */
685
+ export interface ImagineV1Input {
686
+ /**
687
+ *
688
+ * @type {string}
689
+ * @memberof ImagineV1Input
690
+ */
691
+ 'aspectRatio': ImagineV1InputAspectRatioEnum;
692
+ /**
693
+ *
694
+ * @type {string}
695
+ * @memberof ImagineV1Input
696
+ */
697
+ 'seed': string;
698
+ /**
699
+ *
700
+ * @type {string}
701
+ * @memberof ImagineV1Input
702
+ */
703
+ 'prompt': string;
704
+ }
705
+ export declare const ImagineV1InputAspectRatioEnum: {
706
+ readonly _11: "1:1";
707
+ readonly _97: "9:7";
708
+ readonly _79: "7:9";
709
+ readonly _1913: "19:13";
710
+ readonly _1319: "13:19";
711
+ readonly _74: "7:4";
712
+ readonly _47: "4:7";
713
+ readonly _125: "12:5";
714
+ readonly _512: "5:12";
715
+ };
716
+ export type ImagineV1InputAspectRatioEnum = typeof ImagineV1InputAspectRatioEnum[keyof typeof ImagineV1InputAspectRatioEnum];
736
717
  /**
737
718
  *
738
719
  * @export
@@ -902,6 +883,25 @@ export interface ListOperationsDto {
902
883
  */
903
884
  'pageInfo': ListCollectionsDtoPageInfo;
904
885
  }
886
+ /**
887
+ *
888
+ * @export
889
+ * @interface ListPosesDto
890
+ */
891
+ export interface ListPosesDto {
892
+ /**
893
+ *
894
+ * @type {Array<PoseEntity>}
895
+ * @memberof ListPosesDto
896
+ */
897
+ 'data': Array<PoseEntity>;
898
+ /**
899
+ *
900
+ * @type {ListCollectionsDtoPageInfo}
901
+ * @memberof ListPosesDto
902
+ */
903
+ 'pageInfo': ListCollectionsDtoPageInfo;
904
+ }
905
905
  /**
906
906
  *
907
907
  * @export
@@ -1127,39 +1127,104 @@ export type PipelineEntityStatusEnum = typeof PipelineEntityStatusEnum[keyof typ
1127
1127
  /**
1128
1128
  *
1129
1129
  * @export
1130
- * @interface RemoveAccessParamsDto
1130
+ * @interface PoseEntity
1131
1131
  */
1132
- export interface RemoveAccessParamsDto {
1132
+ export interface PoseEntity {
1133
+ /**
1134
+ *
1135
+ * @type {string}
1136
+ * @memberof PoseEntity
1137
+ */
1138
+ 'kind': PoseEntityKindEnum;
1133
1139
  /**
1134
1140
  *
1135
1141
  * @type {string}
1136
- * @memberof RemoveAccessParamsDto
1142
+ * @memberof PoseEntity
1137
1143
  */
1138
- 'accountId'?: string;
1144
+ 'id': string;
1139
1145
  /**
1140
1146
  *
1141
1147
  * @type {string}
1142
- * @memberof RemoveAccessParamsDto
1148
+ * @memberof PoseEntity
1143
1149
  */
1144
- 'groupId'?: string;
1150
+ 'creatorId': string;
1145
1151
  /**
1146
1152
  *
1147
1153
  * @type {object}
1148
- * @memberof RemoveAccessParamsDto
1154
+ * @memberof PoseEntity
1155
+ */
1156
+ 'metadata': object;
1157
+ /**
1158
+ *
1159
+ * @type {string}
1160
+ * @memberof PoseEntity
1149
1161
  */
1150
- 'resource': object;
1162
+ 'createdAt': string;
1151
1163
  /**
1152
1164
  *
1153
1165
  * @type {string}
1154
- * @memberof RemoveAccessParamsDto
1166
+ * @memberof PoseEntity
1155
1167
  */
1156
- 'resourceId': string;
1168
+ 'updatedAt': string;
1169
+ /**
1170
+ *
1171
+ * @type {ImageEntity}
1172
+ * @memberof PoseEntity
1173
+ */
1174
+ 'sourceImage': ImageEntity;
1175
+ /**
1176
+ *
1177
+ * @type {ImageEntity}
1178
+ * @memberof PoseEntity
1179
+ */
1180
+ 'previewImage': ImageEntity;
1181
+ /**
1182
+ *
1183
+ * @type {string}
1184
+ * @memberof PoseEntity
1185
+ */
1186
+ 'previewImageId': string;
1187
+ }
1188
+ export declare const PoseEntityKindEnum: {
1189
+ readonly Collection: "collection";
1190
+ readonly Operation: "operation";
1191
+ readonly Stack: "stack";
1192
+ readonly Image: "image";
1193
+ readonly Pose: "pose";
1194
+ readonly Storage: "storage";
1195
+ };
1196
+ export type PoseEntityKindEnum = typeof PoseEntityKindEnum[keyof typeof PoseEntityKindEnum];
1197
+ /**
1198
+ *
1199
+ * @export
1200
+ * @interface PoseEstimationV1ControllerInput
1201
+ */
1202
+ export interface PoseEstimationV1ControllerInput {
1203
+ /**
1204
+ *
1205
+ * @type {PoseEstimationV1Input}
1206
+ * @memberof PoseEstimationV1ControllerInput
1207
+ */
1208
+ 'input'?: PoseEstimationV1Input;
1157
1209
  /**
1158
1210
  *
1159
1211
  * @type {object}
1160
- * @memberof RemoveAccessParamsDto
1212
+ * @memberof PoseEstimationV1ControllerInput
1161
1213
  */
1162
- 'role': object;
1214
+ 'metadata'?: object;
1215
+ }
1216
+ /**
1217
+ *
1218
+ * @export
1219
+ * @interface PoseEstimationV1Input
1220
+ */
1221
+ export interface PoseEstimationV1Input {
1222
+ /**
1223
+ *
1224
+ * @type {string}
1225
+ * @memberof PoseEstimationV1Input
1226
+ */
1227
+ 'imageId': string;
1163
1228
  }
1164
1229
  /**
1165
1230
  *
@@ -1264,6 +1329,38 @@ export declare const ResourceEntityKindEnum: {
1264
1329
  readonly Storage: "storage";
1265
1330
  };
1266
1331
  export type ResourceEntityKindEnum = typeof ResourceEntityKindEnum[keyof typeof ResourceEntityKindEnum];
1332
+ /**
1333
+ *
1334
+ * @export
1335
+ * @interface SegmentAnythingEmbeddingsV1ControllerInput
1336
+ */
1337
+ export interface SegmentAnythingEmbeddingsV1ControllerInput {
1338
+ /**
1339
+ *
1340
+ * @type {SegmentAnythingEmbeddingsV1Input}
1341
+ * @memberof SegmentAnythingEmbeddingsV1ControllerInput
1342
+ */
1343
+ 'input'?: SegmentAnythingEmbeddingsV1Input;
1344
+ /**
1345
+ *
1346
+ * @type {object}
1347
+ * @memberof SegmentAnythingEmbeddingsV1ControllerInput
1348
+ */
1349
+ 'metadata'?: object;
1350
+ }
1351
+ /**
1352
+ *
1353
+ * @export
1354
+ * @interface SegmentAnythingEmbeddingsV1Input
1355
+ */
1356
+ export interface SegmentAnythingEmbeddingsV1Input {
1357
+ /**
1358
+ *
1359
+ * @type {string}
1360
+ * @memberof SegmentAnythingEmbeddingsV1Input
1361
+ */
1362
+ 'imageId': string;
1363
+ }
1267
1364
  /**
1268
1365
  *
1269
1366
  * @export
@@ -1469,127 +1566,6 @@ export interface UpscaleV1Input {
1469
1566
  */
1470
1567
  'imageId': string;
1471
1568
  }
1472
- /**
1473
- * AccessApi - axios parameter creator
1474
- * @export
1475
- */
1476
- export declare const AccessApiAxiosParamCreator: (configuration?: Configuration) => {
1477
- /**
1478
- *
1479
- * @param {AddAccessParamsDto} addAccessParamsDto
1480
- * @param {*} [options] Override http request option.
1481
- * @throws {RequiredError}
1482
- */
1483
- accessControllerAddAccessV1: (addAccessParamsDto: AddAccessParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1484
- /**
1485
- *
1486
- * @param {string} resource
1487
- * @param {string} resourceId
1488
- * @param {string} action
1489
- * @param {*} [options] Override http request option.
1490
- * @throws {RequiredError}
1491
- */
1492
- accessControllerCheckAccessV1: (resource: string, resourceId: string, action: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1493
- /**
1494
- *
1495
- * @param {RemoveAccessParamsDto} removeAccessParamsDto
1496
- * @param {*} [options] Override http request option.
1497
- * @throws {RequiredError}
1498
- */
1499
- accessControllerRemoveAccessV1: (removeAccessParamsDto: RemoveAccessParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1500
- };
1501
- /**
1502
- * AccessApi - functional programming interface
1503
- * @export
1504
- */
1505
- export declare const AccessApiFp: (configuration?: Configuration) => {
1506
- /**
1507
- *
1508
- * @param {AddAccessParamsDto} addAccessParamsDto
1509
- * @param {*} [options] Override http request option.
1510
- * @throws {RequiredError}
1511
- */
1512
- accessControllerAddAccessV1(addAccessParamsDto: AddAccessParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
1513
- /**
1514
- *
1515
- * @param {string} resource
1516
- * @param {string} resourceId
1517
- * @param {string} action
1518
- * @param {*} [options] Override http request option.
1519
- * @throws {RequiredError}
1520
- */
1521
- accessControllerCheckAccessV1(resource: string, resourceId: string, action: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
1522
- /**
1523
- *
1524
- * @param {RemoveAccessParamsDto} removeAccessParamsDto
1525
- * @param {*} [options] Override http request option.
1526
- * @throws {RequiredError}
1527
- */
1528
- accessControllerRemoveAccessV1(removeAccessParamsDto: RemoveAccessParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
1529
- };
1530
- /**
1531
- * AccessApi - factory interface
1532
- * @export
1533
- */
1534
- export declare const AccessApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
1535
- /**
1536
- *
1537
- * @param {AddAccessParamsDto} addAccessParamsDto
1538
- * @param {*} [options] Override http request option.
1539
- * @throws {RequiredError}
1540
- */
1541
- accessControllerAddAccessV1(addAccessParamsDto: AddAccessParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<void>;
1542
- /**
1543
- *
1544
- * @param {string} resource
1545
- * @param {string} resourceId
1546
- * @param {string} action
1547
- * @param {*} [options] Override http request option.
1548
- * @throws {RequiredError}
1549
- */
1550
- accessControllerCheckAccessV1(resource: string, resourceId: string, action: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
1551
- /**
1552
- *
1553
- * @param {RemoveAccessParamsDto} removeAccessParamsDto
1554
- * @param {*} [options] Override http request option.
1555
- * @throws {RequiredError}
1556
- */
1557
- accessControllerRemoveAccessV1(removeAccessParamsDto: RemoveAccessParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<void>;
1558
- };
1559
- /**
1560
- * AccessApi - object-oriented interface
1561
- * @export
1562
- * @class AccessApi
1563
- * @extends {BaseAPI}
1564
- */
1565
- export declare class AccessApi extends BaseAPI {
1566
- /**
1567
- *
1568
- * @param {AddAccessParamsDto} addAccessParamsDto
1569
- * @param {*} [options] Override http request option.
1570
- * @throws {RequiredError}
1571
- * @memberof AccessApi
1572
- */
1573
- accessControllerAddAccessV1(addAccessParamsDto: AddAccessParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
1574
- /**
1575
- *
1576
- * @param {string} resource
1577
- * @param {string} resourceId
1578
- * @param {string} action
1579
- * @param {*} [options] Override http request option.
1580
- * @throws {RequiredError}
1581
- * @memberof AccessApi
1582
- */
1583
- accessControllerCheckAccessV1(resource: string, resourceId: string, action: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
1584
- /**
1585
- *
1586
- * @param {RemoveAccessParamsDto} removeAccessParamsDto
1587
- * @param {*} [options] Override http request option.
1588
- * @throws {RequiredError}
1589
- * @memberof AccessApi
1590
- */
1591
- accessControllerRemoveAccessV1(removeAccessParamsDto: RemoveAccessParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
1592
- }
1593
1569
  /**
1594
1570
  * AccountsApi - axios parameter creator
1595
1571
  * @export
@@ -2605,6 +2581,20 @@ export declare const OperationsApiAxiosParamCreator: (configuration?: Configurat
2605
2581
  * @throws {RequiredError}
2606
2582
  */
2607
2583
  operationsControllerRunObjectDetectionV1V1: (objectDetectionV1ControllerInput: ObjectDetectionV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2584
+ /**
2585
+ *
2586
+ * @param {PoseEstimationV1ControllerInput} poseEstimationV1ControllerInput
2587
+ * @param {*} [options] Override http request option.
2588
+ * @throws {RequiredError}
2589
+ */
2590
+ operationsControllerRunPoseEstimationV1V1: (poseEstimationV1ControllerInput: PoseEstimationV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2591
+ /**
2592
+ *
2593
+ * @param {SegmentAnythingEmbeddingsV1ControllerInput} segmentAnythingEmbeddingsV1ControllerInput
2594
+ * @param {*} [options] Override http request option.
2595
+ * @throws {RequiredError}
2596
+ */
2597
+ operationsControllerRunSegmentAnythingEmbeddingsV1V1: (segmentAnythingEmbeddingsV1ControllerInput: SegmentAnythingEmbeddingsV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2608
2598
  /**
2609
2599
  *
2610
2600
  * @param {UpscaleV1ControllerInput} upscaleV1ControllerInput
@@ -2691,6 +2681,20 @@ export declare const OperationsApiFp: (configuration?: Configuration) => {
2691
2681
  * @throws {RequiredError}
2692
2682
  */
2693
2683
  operationsControllerRunObjectDetectionV1V1(objectDetectionV1ControllerInput: ObjectDetectionV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
2684
+ /**
2685
+ *
2686
+ * @param {PoseEstimationV1ControllerInput} poseEstimationV1ControllerInput
2687
+ * @param {*} [options] Override http request option.
2688
+ * @throws {RequiredError}
2689
+ */
2690
+ operationsControllerRunPoseEstimationV1V1(poseEstimationV1ControllerInput: PoseEstimationV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
2691
+ /**
2692
+ *
2693
+ * @param {SegmentAnythingEmbeddingsV1ControllerInput} segmentAnythingEmbeddingsV1ControllerInput
2694
+ * @param {*} [options] Override http request option.
2695
+ * @throws {RequiredError}
2696
+ */
2697
+ operationsControllerRunSegmentAnythingEmbeddingsV1V1(segmentAnythingEmbeddingsV1ControllerInput: SegmentAnythingEmbeddingsV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
2694
2698
  /**
2695
2699
  *
2696
2700
  * @param {UpscaleV1ControllerInput} upscaleV1ControllerInput
@@ -2777,6 +2781,20 @@ export declare const OperationsApiFactory: (configuration?: Configuration, baseP
2777
2781
  * @throws {RequiredError}
2778
2782
  */
2779
2783
  operationsControllerRunObjectDetectionV1V1(objectDetectionV1ControllerInput: ObjectDetectionV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
2784
+ /**
2785
+ *
2786
+ * @param {PoseEstimationV1ControllerInput} poseEstimationV1ControllerInput
2787
+ * @param {*} [options] Override http request option.
2788
+ * @throws {RequiredError}
2789
+ */
2790
+ operationsControllerRunPoseEstimationV1V1(poseEstimationV1ControllerInput: PoseEstimationV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
2791
+ /**
2792
+ *
2793
+ * @param {SegmentAnythingEmbeddingsV1ControllerInput} segmentAnythingEmbeddingsV1ControllerInput
2794
+ * @param {*} [options] Override http request option.
2795
+ * @throws {RequiredError}
2796
+ */
2797
+ operationsControllerRunSegmentAnythingEmbeddingsV1V1(segmentAnythingEmbeddingsV1ControllerInput: SegmentAnythingEmbeddingsV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
2780
2798
  /**
2781
2799
  *
2782
2800
  * @param {UpscaleV1ControllerInput} upscaleV1ControllerInput
@@ -2874,6 +2892,22 @@ export declare class OperationsApi extends BaseAPI {
2874
2892
  * @memberof OperationsApi
2875
2893
  */
2876
2894
  operationsControllerRunObjectDetectionV1V1(objectDetectionV1ControllerInput: ObjectDetectionV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
2895
+ /**
2896
+ *
2897
+ * @param {PoseEstimationV1ControllerInput} poseEstimationV1ControllerInput
2898
+ * @param {*} [options] Override http request option.
2899
+ * @throws {RequiredError}
2900
+ * @memberof OperationsApi
2901
+ */
2902
+ operationsControllerRunPoseEstimationV1V1(poseEstimationV1ControllerInput: PoseEstimationV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
2903
+ /**
2904
+ *
2905
+ * @param {SegmentAnythingEmbeddingsV1ControllerInput} segmentAnythingEmbeddingsV1ControllerInput
2906
+ * @param {*} [options] Override http request option.
2907
+ * @throws {RequiredError}
2908
+ * @memberof OperationsApi
2909
+ */
2910
+ operationsControllerRunSegmentAnythingEmbeddingsV1V1(segmentAnythingEmbeddingsV1ControllerInput: SegmentAnythingEmbeddingsV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
2877
2911
  /**
2878
2912
  *
2879
2913
  * @param {UpscaleV1ControllerInput} upscaleV1ControllerInput
@@ -3045,13 +3079,6 @@ export declare class PipelinesApi extends BaseAPI {
3045
3079
  * @export
3046
3080
  */
3047
3081
  export declare const PosesApiAxiosParamCreator: (configuration?: Configuration) => {
3048
- /**
3049
- *
3050
- * @param {CreatePoseParamsDto} createPoseParamsDto
3051
- * @param {*} [options] Override http request option.
3052
- * @throws {RequiredError}
3053
- */
3054
- posesControllerCreatePoseV1: (createPoseParamsDto: CreatePoseParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3055
3082
  /**
3056
3083
  *
3057
3084
  * @param {string} id
@@ -3061,62 +3088,57 @@ export declare const PosesApiAxiosParamCreator: (configuration?: Configuration)
3061
3088
  posesControllerGetPoseV1: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3062
3089
  /**
3063
3090
  *
3091
+ * @param {PosesControllerListPosesV1OrderByEnum} [orderBy]
3092
+ * @param {number} [limit]
3093
+ * @param {string} [cursor]
3064
3094
  * @param {*} [options] Override http request option.
3065
3095
  * @throws {RequiredError}
3066
3096
  */
3067
- posesControllerListStacksV1: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3097
+ posesControllerListPosesV1: (orderBy?: PosesControllerListPosesV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3068
3098
  };
3069
3099
  /**
3070
3100
  * PosesApi - functional programming interface
3071
3101
  * @export
3072
3102
  */
3073
3103
  export declare const PosesApiFp: (configuration?: Configuration) => {
3074
- /**
3075
- *
3076
- * @param {CreatePoseParamsDto} createPoseParamsDto
3077
- * @param {*} [options] Override http request option.
3078
- * @throws {RequiredError}
3079
- */
3080
- posesControllerCreatePoseV1(createPoseParamsDto: CreatePoseParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
3081
3104
  /**
3082
3105
  *
3083
3106
  * @param {string} id
3084
3107
  * @param {*} [options] Override http request option.
3085
3108
  * @throws {RequiredError}
3086
3109
  */
3087
- posesControllerGetPoseV1(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
3110
+ posesControllerGetPoseV1(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PoseEntity>>;
3088
3111
  /**
3089
3112
  *
3113
+ * @param {PosesControllerListPosesV1OrderByEnum} [orderBy]
3114
+ * @param {number} [limit]
3115
+ * @param {string} [cursor]
3090
3116
  * @param {*} [options] Override http request option.
3091
3117
  * @throws {RequiredError}
3092
3118
  */
3093
- posesControllerListStacksV1(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
3119
+ posesControllerListPosesV1(orderBy?: PosesControllerListPosesV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListPosesDto>>;
3094
3120
  };
3095
3121
  /**
3096
3122
  * PosesApi - factory interface
3097
3123
  * @export
3098
3124
  */
3099
3125
  export declare const PosesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
3100
- /**
3101
- *
3102
- * @param {CreatePoseParamsDto} createPoseParamsDto
3103
- * @param {*} [options] Override http request option.
3104
- * @throws {RequiredError}
3105
- */
3106
- posesControllerCreatePoseV1(createPoseParamsDto: CreatePoseParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<void>;
3107
3126
  /**
3108
3127
  *
3109
3128
  * @param {string} id
3110
3129
  * @param {*} [options] Override http request option.
3111
3130
  * @throws {RequiredError}
3112
3131
  */
3113
- posesControllerGetPoseV1(id: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
3132
+ posesControllerGetPoseV1(id: string, options?: RawAxiosRequestConfig): AxiosPromise<PoseEntity>;
3114
3133
  /**
3115
3134
  *
3135
+ * @param {PosesControllerListPosesV1OrderByEnum} [orderBy]
3136
+ * @param {number} [limit]
3137
+ * @param {string} [cursor]
3116
3138
  * @param {*} [options] Override http request option.
3117
3139
  * @throws {RequiredError}
3118
3140
  */
3119
- posesControllerListStacksV1(options?: RawAxiosRequestConfig): AxiosPromise<void>;
3141
+ posesControllerListPosesV1(orderBy?: PosesControllerListPosesV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListPosesDto>;
3120
3142
  };
3121
3143
  /**
3122
3144
  * PosesApi - object-oriented interface
@@ -3125,14 +3147,6 @@ export declare const PosesApiFactory: (configuration?: Configuration, basePath?:
3125
3147
  * @extends {BaseAPI}
3126
3148
  */
3127
3149
  export declare class PosesApi extends BaseAPI {
3128
- /**
3129
- *
3130
- * @param {CreatePoseParamsDto} createPoseParamsDto
3131
- * @param {*} [options] Override http request option.
3132
- * @throws {RequiredError}
3133
- * @memberof PosesApi
3134
- */
3135
- posesControllerCreatePoseV1(createPoseParamsDto: CreatePoseParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
3136
3150
  /**
3137
3151
  *
3138
3152
  * @param {string} id
@@ -3140,15 +3154,26 @@ export declare class PosesApi extends BaseAPI {
3140
3154
  * @throws {RequiredError}
3141
3155
  * @memberof PosesApi
3142
3156
  */
3143
- posesControllerGetPoseV1(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
3157
+ posesControllerGetPoseV1(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PoseEntity, any>>;
3144
3158
  /**
3145
3159
  *
3160
+ * @param {PosesControllerListPosesV1OrderByEnum} [orderBy]
3161
+ * @param {number} [limit]
3162
+ * @param {string} [cursor]
3146
3163
  * @param {*} [options] Override http request option.
3147
3164
  * @throws {RequiredError}
3148
3165
  * @memberof PosesApi
3149
3166
  */
3150
- posesControllerListStacksV1(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
3167
+ posesControllerListPosesV1(orderBy?: PosesControllerListPosesV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListPosesDto, any>>;
3151
3168
  }
3169
+ /**
3170
+ * @export
3171
+ */
3172
+ export declare const PosesControllerListPosesV1OrderByEnum: {
3173
+ readonly Asc: "createdAt_ASC";
3174
+ readonly Desc: "createdAt_DESC";
3175
+ };
3176
+ export type PosesControllerListPosesV1OrderByEnum = typeof PosesControllerListPosesV1OrderByEnum[keyof typeof PosesControllerListPosesV1OrderByEnum];
3152
3177
  /**
3153
3178
  * StacksApi - axios parameter creator
3154
3179
  * @export