@hautechai/sdk 1.5.0 → 1.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -1195,10 +1195,22 @@ interface CreatePipelineParamsDto {
1195
1195
  'metadata'?: object;
1196
1196
  /**
1197
1197
  *
1198
- * @type {Array<TaskDto>}
1198
+ * @type {object}
1199
1199
  * @memberof CreatePipelineParamsDto
1200
1200
  */
1201
- 'tasks': Array<TaskDto>;
1201
+ 'pipelineInput'?: object;
1202
+ /**
1203
+ *
1204
+ * @type {Array<CreatePipelineTaskDto>}
1205
+ * @memberof CreatePipelineParamsDto
1206
+ */
1207
+ 'tasks': Array<CreatePipelineTaskDto>;
1208
+ /**
1209
+ *
1210
+ * @type {object}
1211
+ * @memberof CreatePipelineParamsDto
1212
+ */
1213
+ 'outputRef'?: object;
1202
1214
  /**
1203
1215
  *
1204
1216
  * @type {object}
@@ -1206,6 +1218,37 @@ interface CreatePipelineParamsDto {
1206
1218
  */
1207
1219
  'state'?: object;
1208
1220
  }
1221
+ /**
1222
+ *
1223
+ * @export
1224
+ * @interface CreatePipelineTaskDto
1225
+ */
1226
+ interface CreatePipelineTaskDto {
1227
+ /**
1228
+ *
1229
+ * @type {string}
1230
+ * @memberof CreatePipelineTaskDto
1231
+ */
1232
+ 'id': string;
1233
+ /**
1234
+ *
1235
+ * @type {Array<string>}
1236
+ * @memberof CreatePipelineTaskDto
1237
+ */
1238
+ 'dependencies': Array<string>;
1239
+ /**
1240
+ *
1241
+ * @type {Array<object>}
1242
+ * @memberof CreatePipelineTaskDto
1243
+ */
1244
+ 'args': Array<object>;
1245
+ /**
1246
+ *
1247
+ * @type {Array<string>}
1248
+ * @memberof CreatePipelineTaskDto
1249
+ */
1250
+ 'method': Array<string>;
1251
+ }
1209
1252
  /**
1210
1253
  *
1211
1254
  * @export
@@ -1238,6 +1281,19 @@ interface CreateStorageRecordParamsDto {
1238
1281
  */
1239
1282
  'value': object;
1240
1283
  }
1284
+ /**
1285
+ *
1286
+ * @export
1287
+ * @interface CreateVideoParamsDto
1288
+ */
1289
+ interface CreateVideoParamsDto {
1290
+ /**
1291
+ *
1292
+ * @type {string}
1293
+ * @memberof CreateVideoParamsDto
1294
+ */
1295
+ 'fileToken'?: string;
1296
+ }
1241
1297
  /**
1242
1298
  *
1243
1299
  * @export
@@ -4990,6 +5046,12 @@ interface PipelineDto {
4990
5046
  * @memberof PipelineDto
4991
5047
  */
4992
5048
  'output'?: object;
5049
+ /**
5050
+ *
5051
+ * @type {object}
5052
+ * @memberof PipelineDto
5053
+ */
5054
+ 'input'?: object;
4993
5055
  /**
4994
5056
  *
4995
5057
  * @type {Array<TaskDto>}
@@ -5068,6 +5130,133 @@ declare const PipelineDtoStateValueStatusEnum: {
5068
5130
  readonly Failed: "failed";
5069
5131
  };
5070
5132
  type PipelineDtoStateValueStatusEnum = typeof PipelineDtoStateValueStatusEnum[keyof typeof PipelineDtoStateValueStatusEnum];
5133
+ /**
5134
+ *
5135
+ * @export
5136
+ * @interface PipelineMapV1Input
5137
+ */
5138
+ interface PipelineMapV1Input {
5139
+ /**
5140
+ *
5141
+ * @type {string}
5142
+ * @memberof PipelineMapV1Input
5143
+ */
5144
+ 'pipeline': string;
5145
+ /**
5146
+ *
5147
+ * @type {Array<object>}
5148
+ * @memberof PipelineMapV1Input
5149
+ */
5150
+ 'input': Array<object>;
5151
+ /**
5152
+ *
5153
+ * @type {boolean}
5154
+ * @memberof PipelineMapV1Input
5155
+ */
5156
+ 'failOnError'?: boolean;
5157
+ }
5158
+ /**
5159
+ *
5160
+ * @export
5161
+ * @interface PipelineMapV1Request
5162
+ */
5163
+ interface PipelineMapV1Request {
5164
+ /**
5165
+ *
5166
+ * @type {PipelineMapV1Input}
5167
+ * @memberof PipelineMapV1Request
5168
+ */
5169
+ 'input': PipelineMapV1Input;
5170
+ /**
5171
+ *
5172
+ * @type {object}
5173
+ * @memberof PipelineMapV1Request
5174
+ */
5175
+ 'metadata'?: object;
5176
+ }
5177
+ /**
5178
+ *
5179
+ * @export
5180
+ * @interface PipelineMapV1Response
5181
+ */
5182
+ interface PipelineMapV1Response {
5183
+ /**
5184
+ *
5185
+ * @type {string}
5186
+ * @memberof PipelineMapV1Response
5187
+ */
5188
+ 'kind': PipelineMapV1ResponseKindEnum;
5189
+ /**
5190
+ *
5191
+ * @type {OperationOutputJSON}
5192
+ * @memberof PipelineMapV1Response
5193
+ */
5194
+ 'output': OperationOutputJSON;
5195
+ /**
5196
+ *
5197
+ * @type {object}
5198
+ * @memberof PipelineMapV1Response
5199
+ */
5200
+ 'input': object;
5201
+ /**
5202
+ *
5203
+ * @type {string}
5204
+ * @memberof PipelineMapV1Response
5205
+ */
5206
+ 'status': PipelineMapV1ResponseStatusEnum;
5207
+ /**
5208
+ *
5209
+ * @type {string}
5210
+ * @memberof PipelineMapV1Response
5211
+ */
5212
+ 'type': string;
5213
+ /**
5214
+ *
5215
+ * @type {string}
5216
+ * @memberof PipelineMapV1Response
5217
+ */
5218
+ 'price'?: string;
5219
+ /**
5220
+ *
5221
+ * @type {string}
5222
+ * @memberof PipelineMapV1Response
5223
+ */
5224
+ 'id': string;
5225
+ /**
5226
+ *
5227
+ * @type {string}
5228
+ * @memberof PipelineMapV1Response
5229
+ */
5230
+ 'creatorId': string;
5231
+ /**
5232
+ *
5233
+ * @type {object}
5234
+ * @memberof PipelineMapV1Response
5235
+ */
5236
+ 'metadata': object;
5237
+ /**
5238
+ *
5239
+ * @type {string}
5240
+ * @memberof PipelineMapV1Response
5241
+ */
5242
+ 'createdAt': string;
5243
+ /**
5244
+ *
5245
+ * @type {string}
5246
+ * @memberof PipelineMapV1Response
5247
+ */
5248
+ 'updatedAt': string;
5249
+ }
5250
+ declare const PipelineMapV1ResponseKindEnum: {
5251
+ readonly Operation: "operation";
5252
+ };
5253
+ type PipelineMapV1ResponseKindEnum = typeof PipelineMapV1ResponseKindEnum[keyof typeof PipelineMapV1ResponseKindEnum];
5254
+ declare const PipelineMapV1ResponseStatusEnum: {
5255
+ readonly Pending: "pending";
5256
+ readonly Finished: "finished";
5257
+ readonly Failed: "failed";
5258
+ };
5259
+ type PipelineMapV1ResponseStatusEnum = typeof PipelineMapV1ResponseStatusEnum[keyof typeof PipelineMapV1ResponseStatusEnum];
5071
5260
  /**
5072
5261
  *
5073
5262
  * @export
@@ -7671,6 +7860,13 @@ declare const CallApiAxiosParamCreator: (configuration?: Configuration) => {
7671
7860
  * @throws {RequiredError}
7672
7861
  */
7673
7862
  callControllerCallOperationsRunOnecompilerV1V1: (onecompilerV1Request: OnecompilerV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7863
+ /**
7864
+ *
7865
+ * @param {PipelineMapV1Request} pipelineMapV1Request
7866
+ * @param {*} [options] Override http request option.
7867
+ * @throws {RequiredError}
7868
+ */
7869
+ callControllerCallOperationsRunPipelineMapV1V1: (pipelineMapV1Request: PipelineMapV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7674
7870
  /**
7675
7871
  *
7676
7872
  * @param {PoseEstimationV1Request} poseEstimationV1Request
@@ -8188,6 +8384,13 @@ declare const CallApiFp: (configuration?: Configuration) => {
8188
8384
  * @throws {RequiredError}
8189
8385
  */
8190
8386
  callControllerCallOperationsRunOnecompilerV1V1(onecompilerV1Request: OnecompilerV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OnecompilerV1Response>>;
8387
+ /**
8388
+ *
8389
+ * @param {PipelineMapV1Request} pipelineMapV1Request
8390
+ * @param {*} [options] Override http request option.
8391
+ * @throws {RequiredError}
8392
+ */
8393
+ callControllerCallOperationsRunPipelineMapV1V1(pipelineMapV1Request: PipelineMapV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PipelineMapV1Response>>;
8191
8394
  /**
8192
8395
  *
8193
8396
  * @param {PoseEstimationV1Request} poseEstimationV1Request
@@ -8705,6 +8908,13 @@ declare const CallApiFactory: (configuration?: Configuration, basePath?: string,
8705
8908
  * @throws {RequiredError}
8706
8909
  */
8707
8910
  callControllerCallOperationsRunOnecompilerV1V1(onecompilerV1Request: OnecompilerV1Request, options?: RawAxiosRequestConfig): AxiosPromise<OnecompilerV1Response>;
8911
+ /**
8912
+ *
8913
+ * @param {PipelineMapV1Request} pipelineMapV1Request
8914
+ * @param {*} [options] Override http request option.
8915
+ * @throws {RequiredError}
8916
+ */
8917
+ callControllerCallOperationsRunPipelineMapV1V1(pipelineMapV1Request: PipelineMapV1Request, options?: RawAxiosRequestConfig): AxiosPromise<PipelineMapV1Response>;
8708
8918
  /**
8709
8919
  *
8710
8920
  * @param {PoseEstimationV1Request} poseEstimationV1Request
@@ -9272,6 +9482,14 @@ declare class CallApi extends BaseAPI {
9272
9482
  * @memberof CallApi
9273
9483
  */
9274
9484
  callControllerCallOperationsRunOnecompilerV1V1(onecompilerV1Request: OnecompilerV1Request, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<OnecompilerV1Response, any>>;
9485
+ /**
9486
+ *
9487
+ * @param {PipelineMapV1Request} pipelineMapV1Request
9488
+ * @param {*} [options] Override http request option.
9489
+ * @throws {RequiredError}
9490
+ * @memberof CallApi
9491
+ */
9492
+ callControllerCallOperationsRunPipelineMapV1V1(pipelineMapV1Request: PipelineMapV1Request, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PipelineMapV1Response, any>>;
9275
9493
  /**
9276
9494
  *
9277
9495
  * @param {PoseEstimationV1Request} poseEstimationV1Request
@@ -10287,6 +10505,13 @@ declare const OperationsApiAxiosParamCreator: (configuration?: Configuration) =>
10287
10505
  * @throws {RequiredError}
10288
10506
  */
10289
10507
  operationsControllerRunOnecompilerV1V1: (onecompilerV1Request: OnecompilerV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
10508
+ /**
10509
+ *
10510
+ * @param {PipelineMapV1Request} pipelineMapV1Request
10511
+ * @param {*} [options] Override http request option.
10512
+ * @throws {RequiredError}
10513
+ */
10514
+ operationsControllerRunPipelineMapV1V1: (pipelineMapV1Request: PipelineMapV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
10290
10515
  /**
10291
10516
  *
10292
10517
  * @param {PoseEstimationV1Request} poseEstimationV1Request
@@ -10520,6 +10745,13 @@ declare const OperationsApiFp: (configuration?: Configuration) => {
10520
10745
  * @throws {RequiredError}
10521
10746
  */
10522
10747
  operationsControllerRunOnecompilerV1V1(onecompilerV1Request: OnecompilerV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OnecompilerV1Response>>;
10748
+ /**
10749
+ *
10750
+ * @param {PipelineMapV1Request} pipelineMapV1Request
10751
+ * @param {*} [options] Override http request option.
10752
+ * @throws {RequiredError}
10753
+ */
10754
+ operationsControllerRunPipelineMapV1V1(pipelineMapV1Request: PipelineMapV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PipelineMapV1Response>>;
10523
10755
  /**
10524
10756
  *
10525
10757
  * @param {PoseEstimationV1Request} poseEstimationV1Request
@@ -10753,6 +10985,13 @@ declare const OperationsApiFactory: (configuration?: Configuration, basePath?: s
10753
10985
  * @throws {RequiredError}
10754
10986
  */
10755
10987
  operationsControllerRunOnecompilerV1V1(onecompilerV1Request: OnecompilerV1Request, options?: RawAxiosRequestConfig): AxiosPromise<OnecompilerV1Response>;
10988
+ /**
10989
+ *
10990
+ * @param {PipelineMapV1Request} pipelineMapV1Request
10991
+ * @param {*} [options] Override http request option.
10992
+ * @throws {RequiredError}
10993
+ */
10994
+ operationsControllerRunPipelineMapV1V1(pipelineMapV1Request: PipelineMapV1Request, options?: RawAxiosRequestConfig): AxiosPromise<PipelineMapV1Response>;
10756
10995
  /**
10757
10996
  *
10758
10997
  * @param {PoseEstimationV1Request} poseEstimationV1Request
@@ -11011,6 +11250,14 @@ declare class OperationsApi extends BaseAPI {
11011
11250
  * @memberof OperationsApi
11012
11251
  */
11013
11252
  operationsControllerRunOnecompilerV1V1(onecompilerV1Request: OnecompilerV1Request, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<OnecompilerV1Response, any>>;
11253
+ /**
11254
+ *
11255
+ * @param {PipelineMapV1Request} pipelineMapV1Request
11256
+ * @param {*} [options] Override http request option.
11257
+ * @throws {RequiredError}
11258
+ * @memberof OperationsApi
11259
+ */
11260
+ operationsControllerRunPipelineMapV1V1(pipelineMapV1Request: PipelineMapV1Request, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<PipelineMapV1Response, any>>;
11014
11261
  /**
11015
11262
  *
11016
11263
  * @param {PoseEstimationV1Request} poseEstimationV1Request
@@ -11169,11 +11416,12 @@ declare const PipelinesApiAxiosParamCreator: (configuration?: Configuration) =>
11169
11416
  *
11170
11417
  * @param {PipelinesControllerListPipelinesV1OrderByEnum} [orderBy]
11171
11418
  * @param {number} [limit]
11419
+ * @param {string} [parentOperationId]
11172
11420
  * @param {string} [cursor]
11173
11421
  * @param {*} [options] Override http request option.
11174
11422
  * @throws {RequiredError}
11175
11423
  */
11176
- pipelinesControllerListPipelinesV1: (orderBy?: PipelinesControllerListPipelinesV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11424
+ pipelinesControllerListPipelinesV1: (orderBy?: PipelinesControllerListPipelinesV1OrderByEnum, limit?: number, parentOperationId?: string, cursor?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11177
11425
  };
11178
11426
  /**
11179
11427
  * PipelinesApi - functional programming interface
@@ -11198,11 +11446,12 @@ declare const PipelinesApiFp: (configuration?: Configuration) => {
11198
11446
  *
11199
11447
  * @param {PipelinesControllerListPipelinesV1OrderByEnum} [orderBy]
11200
11448
  * @param {number} [limit]
11449
+ * @param {string} [parentOperationId]
11201
11450
  * @param {string} [cursor]
11202
11451
  * @param {*} [options] Override http request option.
11203
11452
  * @throws {RequiredError}
11204
11453
  */
11205
- pipelinesControllerListPipelinesV1(orderBy?: PipelinesControllerListPipelinesV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListPipelinesDto>>;
11454
+ pipelinesControllerListPipelinesV1(orderBy?: PipelinesControllerListPipelinesV1OrderByEnum, limit?: number, parentOperationId?: string, cursor?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListPipelinesDto>>;
11206
11455
  };
11207
11456
  /**
11208
11457
  * PipelinesApi - factory interface
@@ -11227,11 +11476,12 @@ declare const PipelinesApiFactory: (configuration?: Configuration, basePath?: st
11227
11476
  *
11228
11477
  * @param {PipelinesControllerListPipelinesV1OrderByEnum} [orderBy]
11229
11478
  * @param {number} [limit]
11479
+ * @param {string} [parentOperationId]
11230
11480
  * @param {string} [cursor]
11231
11481
  * @param {*} [options] Override http request option.
11232
11482
  * @throws {RequiredError}
11233
11483
  */
11234
- pipelinesControllerListPipelinesV1(orderBy?: PipelinesControllerListPipelinesV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListPipelinesDto>;
11484
+ pipelinesControllerListPipelinesV1(orderBy?: PipelinesControllerListPipelinesV1OrderByEnum, limit?: number, parentOperationId?: string, cursor?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListPipelinesDto>;
11235
11485
  };
11236
11486
  /**
11237
11487
  * PipelinesApi - object-oriented interface
@@ -11260,12 +11510,13 @@ declare class PipelinesApi extends BaseAPI {
11260
11510
  *
11261
11511
  * @param {PipelinesControllerListPipelinesV1OrderByEnum} [orderBy]
11262
11512
  * @param {number} [limit]
11513
+ * @param {string} [parentOperationId]
11263
11514
  * @param {string} [cursor]
11264
11515
  * @param {*} [options] Override http request option.
11265
11516
  * @throws {RequiredError}
11266
11517
  * @memberof PipelinesApi
11267
11518
  */
11268
- pipelinesControllerListPipelinesV1(orderBy?: PipelinesControllerListPipelinesV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListPipelinesDto, any>>;
11519
+ pipelinesControllerListPipelinesV1(orderBy?: PipelinesControllerListPipelinesV1OrderByEnum, limit?: number, parentOperationId?: string, cursor?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListPipelinesDto, any>>;
11269
11520
  }
11270
11521
  /**
11271
11522
  * @export
@@ -11818,6 +12069,13 @@ declare class StorageApi extends BaseAPI {
11818
12069
  * @export
11819
12070
  */
11820
12071
  declare const VideosApiAxiosParamCreator: (configuration?: Configuration) => {
12072
+ /**
12073
+ *
12074
+ * @param {CreateVideoParamsDto} createVideoParamsDto
12075
+ * @param {*} [options] Override http request option.
12076
+ * @throws {RequiredError}
12077
+ */
12078
+ videosControllerFinalizeUploadV1: (createVideoParamsDto: CreateVideoParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11821
12079
  /**
11822
12080
  *
11823
12081
  * @param {GetUrlsForImagesParamsDto} getUrlsForImagesParamsDto
@@ -11832,12 +12090,25 @@ declare const VideosApiAxiosParamCreator: (configuration?: Configuration) => {
11832
12090
  * @throws {RequiredError}
11833
12091
  */
11834
12092
  videosControllerGetVideoV1: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12093
+ /**
12094
+ *
12095
+ * @param {*} [options] Override http request option.
12096
+ * @throws {RequiredError}
12097
+ */
12098
+ videosControllerStartUploadV1: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11835
12099
  };
11836
12100
  /**
11837
12101
  * VideosApi - functional programming interface
11838
12102
  * @export
11839
12103
  */
11840
12104
  declare const VideosApiFp: (configuration?: Configuration) => {
12105
+ /**
12106
+ *
12107
+ * @param {CreateVideoParamsDto} createVideoParamsDto
12108
+ * @param {*} [options] Override http request option.
12109
+ * @throws {RequiredError}
12110
+ */
12111
+ videosControllerFinalizeUploadV1(createVideoParamsDto: CreateVideoParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VideoEntity>>;
11841
12112
  /**
11842
12113
  *
11843
12114
  * @param {GetUrlsForImagesParamsDto} getUrlsForImagesParamsDto
@@ -11852,12 +12123,25 @@ declare const VideosApiFp: (configuration?: Configuration) => {
11852
12123
  * @throws {RequiredError}
11853
12124
  */
11854
12125
  videosControllerGetVideoV1(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VideoEntity>>;
12126
+ /**
12127
+ *
12128
+ * @param {*} [options] Override http request option.
12129
+ * @throws {RequiredError}
12130
+ */
12131
+ videosControllerStartUploadV1(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InitializeImageUploadResultDto>>;
11855
12132
  };
11856
12133
  /**
11857
12134
  * VideosApi - factory interface
11858
12135
  * @export
11859
12136
  */
11860
12137
  declare const VideosApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
12138
+ /**
12139
+ *
12140
+ * @param {CreateVideoParamsDto} createVideoParamsDto
12141
+ * @param {*} [options] Override http request option.
12142
+ * @throws {RequiredError}
12143
+ */
12144
+ videosControllerFinalizeUploadV1(createVideoParamsDto: CreateVideoParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<VideoEntity>;
11861
12145
  /**
11862
12146
  *
11863
12147
  * @param {GetUrlsForImagesParamsDto} getUrlsForImagesParamsDto
@@ -11872,6 +12156,12 @@ declare const VideosApiFactory: (configuration?: Configuration, basePath?: strin
11872
12156
  * @throws {RequiredError}
11873
12157
  */
11874
12158
  videosControllerGetVideoV1(id: string, options?: RawAxiosRequestConfig): AxiosPromise<VideoEntity>;
12159
+ /**
12160
+ *
12161
+ * @param {*} [options] Override http request option.
12162
+ * @throws {RequiredError}
12163
+ */
12164
+ videosControllerStartUploadV1(options?: RawAxiosRequestConfig): AxiosPromise<InitializeImageUploadResultDto>;
11875
12165
  };
11876
12166
  /**
11877
12167
  * VideosApi - object-oriented interface
@@ -11880,6 +12170,14 @@ declare const VideosApiFactory: (configuration?: Configuration, basePath?: strin
11880
12170
  * @extends {BaseAPI}
11881
12171
  */
11882
12172
  declare class VideosApi extends BaseAPI {
12173
+ /**
12174
+ *
12175
+ * @param {CreateVideoParamsDto} createVideoParamsDto
12176
+ * @param {*} [options] Override http request option.
12177
+ * @throws {RequiredError}
12178
+ * @memberof VideosApi
12179
+ */
12180
+ videosControllerFinalizeUploadV1(createVideoParamsDto: CreateVideoParamsDto, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<VideoEntity, any>>;
11883
12181
  /**
11884
12182
  *
11885
12183
  * @param {GetUrlsForImagesParamsDto} getUrlsForImagesParamsDto
@@ -11896,6 +12194,13 @@ declare class VideosApi extends BaseAPI {
11896
12194
  * @memberof VideosApi
11897
12195
  */
11898
12196
  videosControllerGetVideoV1(id: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<VideoEntity, any>>;
12197
+ /**
12198
+ *
12199
+ * @param {*} [options] Override http request option.
12200
+ * @throws {RequiredError}
12201
+ * @memberof VideosApi
12202
+ */
12203
+ videosControllerStartUploadV1(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<InitializeImageUploadResultDto, any>>;
11899
12204
  }
11900
12205
  /**
11901
12206
  * WebsocketApi - axios parameter creator
@@ -12492,6 +12797,12 @@ declare const createSDK: (options: SDKOptions) => {
12492
12797
  metadata?: any;
12493
12798
  }) => Promise<OnecompilerV1Response>;
12494
12799
  };
12800
+ pipelineMap: {
12801
+ v1: (props: {
12802
+ input: PipelineMapV1Input;
12803
+ metadata?: any;
12804
+ }) => Promise<PipelineMapV1Response>;
12805
+ };
12495
12806
  };
12496
12807
  get: (props: {
12497
12808
  id: string;
@@ -12528,7 +12839,7 @@ declare const createSDK: (options: SDKOptions) => {
12528
12839
  }) | (N extends undefined ? never : null)>;
12529
12840
  };
12530
12841
  pipelines: {
12531
- constructTemplate: (consructPipeline: (pipeline: _hautechai_pipelines.Pipeline<{
12842
+ constructTemplate: (constructPipeline: (pipeline: _hautechai_pipelines.Pipeline<{
12532
12843
  access: {
12533
12844
  attach: (params: AttachAccessParamsDto & {
12534
12845
  __taskOutput__?: never;
@@ -12779,6 +13090,11 @@ declare const createSDK: (options: SDKOptions) => {
12779
13090
  __taskOutput__?: never;
12780
13091
  }) => Promise<OnecompilerV1Response>;
12781
13092
  };
13093
+ pipelineMap: {
13094
+ v1: (params: PipelineMapV1Request & {
13095
+ __taskOutput__?: never;
13096
+ }) => Promise<PipelineMapV1Response>;
13097
+ };
12782
13098
  };
12783
13099
  wait: (params: WaitOperationParamsDto & {
12784
13100
  __taskOutput__?: never;
@@ -12828,7 +13144,7 @@ declare const createSDK: (options: SDKOptions) => {
12828
13144
  __taskOutput__?: never;
12829
13145
  }) => Promise<StorageEntity>;
12830
13146
  };
12831
- }, any>) => _hautechai_pipelines.Pipeline<{
13147
+ }, any, any>) => _hautechai_pipelines.Pipeline<{
12832
13148
  access: {
12833
13149
  attach: (params: AttachAccessParamsDto & {
12834
13150
  __taskOutput__?: never;
@@ -13079,6 +13395,11 @@ declare const createSDK: (options: SDKOptions) => {
13079
13395
  __taskOutput__?: never;
13080
13396
  }) => Promise<OnecompilerV1Response>;
13081
13397
  };
13398
+ pipelineMap: {
13399
+ v1: (params: PipelineMapV1Request & {
13400
+ __taskOutput__?: never;
13401
+ }) => Promise<PipelineMapV1Response>;
13402
+ };
13082
13403
  };
13083
13404
  wait: (params: WaitOperationParamsDto & {
13084
13405
  __taskOutput__?: never;
@@ -13128,7 +13449,7 @@ declare const createSDK: (options: SDKOptions) => {
13128
13449
  __taskOutput__?: never;
13129
13450
  }) => Promise<StorageEntity>;
13130
13451
  };
13131
- }, any>) => _hautechai_pipelines.Pipeline<{
13452
+ }, any, any>) => _hautechai_pipelines.Pipeline<{
13132
13453
  access: {
13133
13454
  attach: (params: AttachAccessParamsDto & {
13134
13455
  __taskOutput__?: never;
@@ -13379,6 +13700,11 @@ declare const createSDK: (options: SDKOptions) => {
13379
13700
  __taskOutput__?: never;
13380
13701
  }) => Promise<OnecompilerV1Response>;
13381
13702
  };
13703
+ pipelineMap: {
13704
+ v1: (params: PipelineMapV1Request & {
13705
+ __taskOutput__?: never;
13706
+ }) => Promise<PipelineMapV1Response>;
13707
+ };
13382
13708
  };
13383
13709
  wait: (params: WaitOperationParamsDto & {
13384
13710
  __taskOutput__?: never;
@@ -13428,7 +13754,7 @@ declare const createSDK: (options: SDKOptions) => {
13428
13754
  __taskOutput__?: never;
13429
13755
  }) => Promise<StorageEntity>;
13430
13756
  };
13431
- }, any>;
13757
+ }, any, any>;
13432
13758
  create: (props: {
13433
13759
  metadata?: PipelineMetadata;
13434
13760
  template?: _hautechai_pipelines.Pipeline<{
@@ -13682,6 +14008,11 @@ declare const createSDK: (options: SDKOptions) => {
13682
14008
  __taskOutput__?: never;
13683
14009
  }) => Promise<OnecompilerV1Response>;
13684
14010
  };
14011
+ pipelineMap: {
14012
+ v1: (params: PipelineMapV1Request & {
14013
+ __taskOutput__?: never;
14014
+ }) => Promise<PipelineMapV1Response>;
14015
+ };
13685
14016
  };
13686
14017
  wait: (params: WaitOperationParamsDto & {
13687
14018
  __taskOutput__?: never;
@@ -13731,7 +14062,7 @@ declare const createSDK: (options: SDKOptions) => {
13731
14062
  __taskOutput__?: never;
13732
14063
  }) => Promise<StorageEntity>;
13733
14064
  };
13734
- }, any>;
14065
+ }, any, any>;
13735
14066
  tasks?: any[];
13736
14067
  state?: Record<string, any>;
13737
14068
  }) => Promise<Omit<PipelineDto, "metadata"> & {
@@ -13746,6 +14077,7 @@ declare const createSDK: (options: SDKOptions) => {
13746
14077
  orderBy?: PipelinesControllerListPipelinesV1OrderByEnum;
13747
14078
  limit?: number;
13748
14079
  cursor?: string;
14080
+ parentOperationId?: string;
13749
14081
  }) => Promise<ListResponse<Omit<PipelinePreviewDto, "metadata"> & {
13750
14082
  metadata: PipelineMetadata;
13751
14083
  }>>;
@@ -13756,6 +14088,29 @@ declare const createSDK: (options: SDKOptions) => {
13756
14088
  metadata: PipelineMetadata;
13757
14089
  }>;
13758
14090
  };
14091
+ workflows: {
14092
+ create: (props: {
14093
+ data: any;
14094
+ version: any;
14095
+ metadata?: WorkflowMetadata;
14096
+ }) => Promise<Omit<WorkflowDto, "metadata"> & {
14097
+ metadata: WorkflowMetadata;
14098
+ }>;
14099
+ get: (props: {
14100
+ id: string;
14101
+ }) => Promise<(Omit<WorkflowDto, "metadata"> & {
14102
+ metadata: WorkflowMetadata;
14103
+ }) | undefined>;
14104
+ list: () => Promise<ListResponse<Omit<WorkflowDto, "metadata"> & {
14105
+ metadata: WorkflowMetadata;
14106
+ }>>;
14107
+ update: (props: {
14108
+ id: string;
14109
+ data: any;
14110
+ version: any;
14111
+ metadata?: Partial<WorkflowMetadata>;
14112
+ }) => Promise<void>;
14113
+ };
13759
14114
  stacks: {
13760
14115
  create: (props?: {
13761
14116
  metadata?: StackMetadata;
@@ -13833,6 +14188,8 @@ interface StackMetadata {
13833
14188
  }
13834
14189
  interface PoseMetadata {
13835
14190
  }
14191
+ interface WorkflowMetadata {
14192
+ }
13836
14193
 
13837
14194
  type MethodsPermissions = {
13838
14195
  accounts: {
@@ -13875,6 +14232,7 @@ type MethodsPermissions = {
13875
14232
  read: boolean;
13876
14233
  };
13877
14234
  videos: {
14235
+ create: boolean;
13878
14236
  read: boolean;
13879
14237
  };
13880
14238
  operations: {
@@ -13950,4 +14308,4 @@ declare const createTokenSigner: (options: {
13950
14308
  }) => Promise<string>;
13951
14309
  };
13952
14310
 
13953
- export { AccessApi, AccessApiAxiosParamCreator, AccessApiFactory, AccessApiFp, type AccountEntity, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, AccountsControllerListAccountsV1OrderByEnum, type AddAccountToGroupControllerParamsDto, AddAccountToGroupControllerParamsDtoRoleEnum, type AddAccountToGroupParamsDto, AddAccountToGroupParamsDtoRoleEnum, type AddBalanceControllerParamsDto, type AddBalanceParamsDto, type AddItemsToCollectionControllerParamsDto, type AddItemsToCollectionParamsDto, type AddItemsToStackControllerParamsDto, type AddItemsToStackParamsDto, type AnimateCreatomateV1Input, type AnimateCreatomateV1InputTemplate, type AnimateCreatomateV1Request, type AnimateCreatomateV1Response, AnimateCreatomateV1ResponseKindEnum, AnimateCreatomateV1ResponseStatusEnum, type AnimateKling16ProV1Input, AnimateKling16ProV1InputAspectRatioEnum, AnimateKling16ProV1InputDurationEnum, type AnimateKling16ProV1Request, type AnimateKling16ProV1Response, AnimateKling16ProV1ResponseKindEnum, AnimateKling16ProV1ResponseStatusEnum, type AnimateKling21V1Input, AnimateKling21V1InputDurationEnum, type AnimateKling21V1Request, type AnimateKling21V1Response, AnimateKling21V1ResponseKindEnum, AnimateKling21V1ResponseStatusEnum, type AttachAccessControllerParamsDto, type AttachAccessParamsDto, type BalanceResultDto, BalancesApi, BalancesApiAxiosParamCreator, BalancesApiFactory, BalancesApiFp, CallApi, CallApiAxiosParamCreator, CallApiFactory, CallApiFp, type CollectionEntity, CollectionEntityKindEnum, type CollectionMetadata, CollectionsApi, CollectionsApiAxiosParamCreator, CollectionsApiFactory, CollectionsApiFp, CollectionsControllerListCollectionsV1OrderByEnum, CollectionsControllerListItemsV1KindEnum, CollectionsControllerListItemsV1OrderByEnum, type CompositeElement, CompositeElementBlendEnum, CompositeElementFitEnum, type CompositeV1Input, type CompositeV1Request, type CompositeV1Response, CompositeV1ResponseKindEnum, CompositeV1ResponseStatusEnum, Configuration, type ConfigurationParameters, type ContrastV1Input, type ContrastV1Request, type ContrastV1Response, ContrastV1ResponseKindEnum, ContrastV1ResponseStatusEnum, type CreateAccountParamsDto, type CreateCollectionParamsDto, type CreateImageParamsDto, type CreatePipelineParamsDto, type CreateStackParamsDto, type CreateStorageRecordParamsDto, type CreateWorkflowParamsDto, type CropV1Input, type CropV1Request, type CropV1Response, CropV1ResponseKindEnum, CropV1ResponseStatusEnum, type CutV1Input, type CutV1Request, type CutV1Response, CutV1ResponseKindEnum, CutV1ResponseStatusEnum, type DeleteParamsDto, type DeleteStorageParamsDto, type DetachAccessControllerParamsDto, type EchoV1Input, type EchoV1Request, type EchoV1Response, EchoV1ResponseKindEnum, EchoV1ResponseStatusEnum, type EditFluxKontextDevV1Input, type EditFluxKontextDevV1Request, type EditFluxKontextDevV1Response, EditFluxKontextDevV1ResponseKindEnum, EditFluxKontextDevV1ResponseStatusEnum, type GPTV1Input, GPTV1InputModelEnum, type GPTV2AssistantMessageDto, GPTV2AssistantMessageDtoRoleEnum, type GPTV2DeveloperMessageDto, GPTV2DeveloperMessageDtoRoleEnum, type GPTV2Input, type GPTV2InputMessagesInner, GPTV2InputModelEnum, type GPTV2InputResponseFormat, type GPTV2MessageToolCallDto, GPTV2MessageToolCallDtoTypeEnum, type GPTV2ResponseFormatJsonSchemaDetailsDto, type GPTV2ResponseFormatJsonSchemaDto, GPTV2ResponseFormatJsonSchemaDtoTypeEnum, type GPTV2ResponseFormatTextOrObjectDto, GPTV2ResponseFormatTextOrObjectDtoTypeEnum, type GPTV2SystemMessageDto, GPTV2SystemMessageDtoRoleEnum, type GPTV2ToolChoiceDto, GPTV2ToolChoiceDtoTypeEnum, type GPTV2ToolChoiceFunctionDto, type GPTV2ToolDto, GPTV2ToolDtoTypeEnum, type GPTV2ToolFunctionDto, type GPTV2ToolMessageDto, GPTV2ToolMessageDtoRoleEnum, type GPTV2UserMessageDto, GPTV2UserMessageDtoRoleEnum, type GetAccountParamsDto, type GetBalanceParamsDto, type GetCollectionParamsDto, type GetGroupParamsDto, type GetImageParamsDto, type GetImageRepresentationParamsDto, GetImageRepresentationParamsDtoTypeEnum, type GetOperationParamsDto, type GetOperationsParamsDto, type GetPoseParamsDto, type GetStackParamsDto, type GetStorageRecordParamsDto, type GetUrlsForImagesParamsDto, type GetVideoParamsDto, type GetVideosParamsDto, type GiseleVtonV1Input, GiseleVtonV1InputCategoryEnum, type GptV1Request, type GptV1Response, GptV1ResponseKindEnum, GptV1ResponseStatusEnum, type GptV2Request, type GptV2Response, GptV2ResponseKindEnum, GptV2ResponseStatusEnum, type GrantAccessControllerParams, GrantAccessControllerParamsPrincipalTypeEnum, type GroupEntity, GroupsApi, GroupsApiAxiosParamCreator, GroupsApiFactory, GroupsApiFp, type HauteLindaV1Request, type HauteLindaV1Response, HauteLindaV1ResponseKindEnum, HauteLindaV1ResponseStatusEnum, type HauteNaomiV1Request, type HauteNaomiV1Response, HauteNaomiV1ResponseKindEnum, HauteNaomiV1ResponseStatusEnum, type ImageEntity, ImageEntityKindEnum, type ImageRepresentationResponseDto, type ImageUrlResponseDto, ImagesApi, ImagesApiAxiosParamCreator, ImagesApiFactory, ImagesApiFp, type ImagineKateV1Request, type ImagineKateV1Response, ImagineKateV1ResponseKindEnum, ImagineKateV1ResponseStatusEnum, type InitializeImageUploadResultDto, type InpaintKateV1Request, type InpaintKateV1Response, InpaintKateV1ResponseKindEnum, InpaintKateV1ResponseStatusEnum, type KateImagineV1Input, KateImagineV1InputAspectRatioEnum, type KateInpaintV1Input, KateInpaintV1InputBranchEnum, type LindaHauteV1Input, LindaHauteV1InputAspectRatioEnum, type ListAccessControllerAttachmentsDto, type ListAccessControllerDto, type ListAccessControllerGrantsDto, ListAccessControllerGrantsDtoAccessEnum, type ListAccountsDto, type ListAccountsDtoPageInfo, type ListAccountsParamsDto, ListAccountsParamsDtoOrderByEnum, type ListCollectionItemsDto, type ListCollectionItemsParamsDto, ListCollectionItemsParamsDtoKindEnum, ListCollectionItemsParamsDtoOrderByEnum, type ListCollectionsDto, type ListCollectionsParamsDto, ListCollectionsParamsDtoOrderByEnum, type ListOperationsDto, type ListOperationsParamsDto, ListOperationsParamsDtoOrderByEnum, type ListPipelinesDto, type ListPipelinesDtoPageInfo, type ListPosesDto, type ListPosesParamsDto, ListPosesParamsDtoOrderByEnum, type ListProps, ListResponse, type ListStacksDto, type ListStacksParamsDto, ListStacksParamsDtoOrderByEnum, type ListWorkflowsDto, type ListWorkflowsDtoPageInfo, type MathV1Input, type MathV1Request, type MathV1Response, MathV1ResponseKindEnum, MathV1ResponseStatusEnum, type MethodsPermissions, type ModifyAccessParamsDto, ModifyAccessParamsDtoPrincipalTypeEnum, type NaomiHauteV1Input, NaomiHauteV1InputModeEnum, type NegateImageV1Input, type NegateImageV1Request, type NegateImageV1Response, NegateImageV1ResponseKindEnum, NegateImageV1ResponseStatusEnum, type NoiseV1Input, type NoiseV1Request, type NoiseV1Response, NoiseV1ResponseKindEnum, NoiseV1ResponseStatusEnum, type ObjectDetectionV1Input, type ObjectDetectionV1Request, type ObjectDetectionV1Response, ObjectDetectionV1ResponseKindEnum, ObjectDetectionV1ResponseStatusEnum, type OneCompilerV1Input, OneCompilerV1InputLanguageEnum, type OnecompilerV1Request, type OnecompilerV1Response, OnecompilerV1ResponseKindEnum, OnecompilerV1ResponseStatusEnum, type OperationEntity, OperationEntityKindEnum, OperationEntityStatusEnum, type OperationMetadata, type OperationOutputImageMultiple, OperationOutputImageMultipleKindEnum, type OperationOutputImageSingle, OperationOutputImageSingleKindEnum, type OperationOutputJSON, OperationOutputJSONKindEnum, type OperationOutputTextSingle, OperationOutputTextSingleKindEnum, type OperationOutputVideoSingle, OperationOutputVideoSingleKindEnum, OperationsApi, OperationsApiAxiosParamCreator, OperationsApiFactory, OperationsApiFp, OperationsControllerListOperationsV1OrderByEnum, PermissionsApi, PermissionsApiAxiosParamCreator, PermissionsApiFactory, PermissionsApiFp, type PipelineDto, PipelineDtoKindEnum, type PipelineDtoStateValue, PipelineDtoStateValueStatusEnum, PipelineDtoStatusEnum, type PipelineMetadata, type PipelinePreviewDto, PipelinePreviewDtoKindEnum, PipelinePreviewDtoStatusEnum, PipelinesApi, PipelinesApiAxiosParamCreator, PipelinesApiFactory, PipelinesApiFp, PipelinesControllerListPipelinesV1OrderByEnum, type PoseEntity, PoseEntityKindEnum, type PoseEstimationV1Input, type PoseEstimationV1Request, type PoseEstimationV1Response, PoseEstimationV1ResponseKindEnum, PoseEstimationV1ResponseStatusEnum, type PoseMetadata, PosesApi, PosesApiAxiosParamCreator, PosesApiFactory, PosesApiFp, PosesControllerListPosesV1OrderByEnum, type RemoveAccountFromGroupControllerParamsDto, RemoveAccountFromGroupControllerParamsDtoRoleEnum, type RemoveAccountFromGroupParamsDto, RemoveAccountFromGroupParamsDtoRoleEnum, type RemoveItemsFromCollectionControllerParamsDto, type RemoveItemsFromCollectionParamsDto, type RemoveItemsFromStackParamsDto, type ResizeV1Input, type ResizeV1Request, type ResizeV1Response, ResizeV1ResponseKindEnum, ResizeV1ResponseStatusEnum, type ResourceEntity, ResourceEntityKindEnum, type RevokeAccessControllerParamsDto, RevokeAccessControllerParamsDtoPrincipalTypeEnum, type RunWorkflowParamsDto, type RunWorkflowResponseDto, type SDK, type SDKOptions, type SegmentAnythingEmbeddingsV1Input, type SegmentAnythingEmbeddingsV1Request, type SegmentAnythingEmbeddingsV1Response, SegmentAnythingEmbeddingsV1ResponseKindEnum, SegmentAnythingEmbeddingsV1ResponseStatusEnum, type SegmentAnythingMaskV1Input, type SegmentAnythingMaskV1Request, type SegmentAnythingMaskV1Response, SegmentAnythingMaskV1ResponseKindEnum, SegmentAnythingMaskV1ResponseStatusEnum, type SetPosePreviewControllerParamsDto, type SetPosePreviewDto, type StackEntity, type StackEntityItemsInner, StackEntityKindEnum, type StackMetadata, StacksApi, StacksApiAxiosParamCreator, StacksApiFactory, StacksApiFp, StacksControllerListStacksV1OrderByEnum, StorageApi, StorageApiAxiosParamCreator, StorageApiFactory, StorageApiFp, type StorageEntity, StorageEntityKindEnum, type StorageRecordsResultDto, type StringsTemplateV1Input, type StringsTemplateV1Request, type StringsTemplateV1Response, StringsTemplateV1ResponseKindEnum, StringsTemplateV1ResponseStatusEnum, type SupportFile, type TaskDto, type TranslateV1Input, type TranslateV1Request, type TranslateV1Response, TranslateV1ResponseKindEnum, TranslateV1ResponseStatusEnum, type UpdateMetadataDto, type UpdateResourceMetadataDto, type UpdateStorageRecordParamsDto, type UpscaleV1Input, type UpscaleV1Request, type UpscaleV1Response, UpscaleV1ResponseKindEnum, UpscaleV1ResponseStatusEnum, type VariableDto, type VideoEntity, VideoEntityKindEnum, type VideoUrlResponseDto, VideosApi, VideosApiAxiosParamCreator, VideosApiFactory, VideosApiFp, type VtonGiseleV1Request, type VtonGiseleV1Response, VtonGiseleV1ResponseKindEnum, VtonGiseleV1ResponseStatusEnum, type WaitOperationParamsDto, WebsocketApi, WebsocketApiAxiosParamCreator, WebsocketApiFactory, WebsocketApiFp, type WorkflowDto, WorkflowsApi, WorkflowsApiAxiosParamCreator, WorkflowsApiFactory, WorkflowsApiFp, createSDK, createTokenSigner };
14311
+ export { AccessApi, AccessApiAxiosParamCreator, AccessApiFactory, AccessApiFp, type AccountEntity, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, AccountsControllerListAccountsV1OrderByEnum, type AddAccountToGroupControllerParamsDto, AddAccountToGroupControllerParamsDtoRoleEnum, type AddAccountToGroupParamsDto, AddAccountToGroupParamsDtoRoleEnum, type AddBalanceControllerParamsDto, type AddBalanceParamsDto, type AddItemsToCollectionControllerParamsDto, type AddItemsToCollectionParamsDto, type AddItemsToStackControllerParamsDto, type AddItemsToStackParamsDto, type AnimateCreatomateV1Input, type AnimateCreatomateV1InputTemplate, type AnimateCreatomateV1Request, type AnimateCreatomateV1Response, AnimateCreatomateV1ResponseKindEnum, AnimateCreatomateV1ResponseStatusEnum, type AnimateKling16ProV1Input, AnimateKling16ProV1InputAspectRatioEnum, AnimateKling16ProV1InputDurationEnum, type AnimateKling16ProV1Request, type AnimateKling16ProV1Response, AnimateKling16ProV1ResponseKindEnum, AnimateKling16ProV1ResponseStatusEnum, type AnimateKling21V1Input, AnimateKling21V1InputDurationEnum, type AnimateKling21V1Request, type AnimateKling21V1Response, AnimateKling21V1ResponseKindEnum, AnimateKling21V1ResponseStatusEnum, type AttachAccessControllerParamsDto, type AttachAccessParamsDto, type BalanceResultDto, BalancesApi, BalancesApiAxiosParamCreator, BalancesApiFactory, BalancesApiFp, CallApi, CallApiAxiosParamCreator, CallApiFactory, CallApiFp, type CollectionEntity, CollectionEntityKindEnum, type CollectionMetadata, CollectionsApi, CollectionsApiAxiosParamCreator, CollectionsApiFactory, CollectionsApiFp, CollectionsControllerListCollectionsV1OrderByEnum, CollectionsControllerListItemsV1KindEnum, CollectionsControllerListItemsV1OrderByEnum, type CompositeElement, CompositeElementBlendEnum, CompositeElementFitEnum, type CompositeV1Input, type CompositeV1Request, type CompositeV1Response, CompositeV1ResponseKindEnum, CompositeV1ResponseStatusEnum, Configuration, type ConfigurationParameters, type ContrastV1Input, type ContrastV1Request, type ContrastV1Response, ContrastV1ResponseKindEnum, ContrastV1ResponseStatusEnum, type CreateAccountParamsDto, type CreateCollectionParamsDto, type CreateImageParamsDto, type CreatePipelineParamsDto, type CreatePipelineTaskDto, type CreateStackParamsDto, type CreateStorageRecordParamsDto, type CreateVideoParamsDto, type CreateWorkflowParamsDto, type CropV1Input, type CropV1Request, type CropV1Response, CropV1ResponseKindEnum, CropV1ResponseStatusEnum, type CutV1Input, type CutV1Request, type CutV1Response, CutV1ResponseKindEnum, CutV1ResponseStatusEnum, type DeleteParamsDto, type DeleteStorageParamsDto, type DetachAccessControllerParamsDto, type EchoV1Input, type EchoV1Request, type EchoV1Response, EchoV1ResponseKindEnum, EchoV1ResponseStatusEnum, type EditFluxKontextDevV1Input, type EditFluxKontextDevV1Request, type EditFluxKontextDevV1Response, EditFluxKontextDevV1ResponseKindEnum, EditFluxKontextDevV1ResponseStatusEnum, type GPTV1Input, GPTV1InputModelEnum, type GPTV2AssistantMessageDto, GPTV2AssistantMessageDtoRoleEnum, type GPTV2DeveloperMessageDto, GPTV2DeveloperMessageDtoRoleEnum, type GPTV2Input, type GPTV2InputMessagesInner, GPTV2InputModelEnum, type GPTV2InputResponseFormat, type GPTV2MessageToolCallDto, GPTV2MessageToolCallDtoTypeEnum, type GPTV2ResponseFormatJsonSchemaDetailsDto, type GPTV2ResponseFormatJsonSchemaDto, GPTV2ResponseFormatJsonSchemaDtoTypeEnum, type GPTV2ResponseFormatTextOrObjectDto, GPTV2ResponseFormatTextOrObjectDtoTypeEnum, type GPTV2SystemMessageDto, GPTV2SystemMessageDtoRoleEnum, type GPTV2ToolChoiceDto, GPTV2ToolChoiceDtoTypeEnum, type GPTV2ToolChoiceFunctionDto, type GPTV2ToolDto, GPTV2ToolDtoTypeEnum, type GPTV2ToolFunctionDto, type GPTV2ToolMessageDto, GPTV2ToolMessageDtoRoleEnum, type GPTV2UserMessageDto, GPTV2UserMessageDtoRoleEnum, type GetAccountParamsDto, type GetBalanceParamsDto, type GetCollectionParamsDto, type GetGroupParamsDto, type GetImageParamsDto, type GetImageRepresentationParamsDto, GetImageRepresentationParamsDtoTypeEnum, type GetOperationParamsDto, type GetOperationsParamsDto, type GetPoseParamsDto, type GetStackParamsDto, type GetStorageRecordParamsDto, type GetUrlsForImagesParamsDto, type GetVideoParamsDto, type GetVideosParamsDto, type GiseleVtonV1Input, GiseleVtonV1InputCategoryEnum, type GptV1Request, type GptV1Response, GptV1ResponseKindEnum, GptV1ResponseStatusEnum, type GptV2Request, type GptV2Response, GptV2ResponseKindEnum, GptV2ResponseStatusEnum, type GrantAccessControllerParams, GrantAccessControllerParamsPrincipalTypeEnum, type GroupEntity, GroupsApi, GroupsApiAxiosParamCreator, GroupsApiFactory, GroupsApiFp, type HauteLindaV1Request, type HauteLindaV1Response, HauteLindaV1ResponseKindEnum, HauteLindaV1ResponseStatusEnum, type HauteNaomiV1Request, type HauteNaomiV1Response, HauteNaomiV1ResponseKindEnum, HauteNaomiV1ResponseStatusEnum, type ImageEntity, ImageEntityKindEnum, type ImageRepresentationResponseDto, type ImageUrlResponseDto, ImagesApi, ImagesApiAxiosParamCreator, ImagesApiFactory, ImagesApiFp, type ImagineKateV1Request, type ImagineKateV1Response, ImagineKateV1ResponseKindEnum, ImagineKateV1ResponseStatusEnum, type InitializeImageUploadResultDto, type InpaintKateV1Request, type InpaintKateV1Response, InpaintKateV1ResponseKindEnum, InpaintKateV1ResponseStatusEnum, type KateImagineV1Input, KateImagineV1InputAspectRatioEnum, type KateInpaintV1Input, KateInpaintV1InputBranchEnum, type LindaHauteV1Input, LindaHauteV1InputAspectRatioEnum, type ListAccessControllerAttachmentsDto, type ListAccessControllerDto, type ListAccessControllerGrantsDto, ListAccessControllerGrantsDtoAccessEnum, type ListAccountsDto, type ListAccountsDtoPageInfo, type ListAccountsParamsDto, ListAccountsParamsDtoOrderByEnum, type ListCollectionItemsDto, type ListCollectionItemsParamsDto, ListCollectionItemsParamsDtoKindEnum, ListCollectionItemsParamsDtoOrderByEnum, type ListCollectionsDto, type ListCollectionsParamsDto, ListCollectionsParamsDtoOrderByEnum, type ListOperationsDto, type ListOperationsParamsDto, ListOperationsParamsDtoOrderByEnum, type ListPipelinesDto, type ListPipelinesDtoPageInfo, type ListPosesDto, type ListPosesParamsDto, ListPosesParamsDtoOrderByEnum, type ListProps, ListResponse, type ListStacksDto, type ListStacksParamsDto, ListStacksParamsDtoOrderByEnum, type ListWorkflowsDto, type ListWorkflowsDtoPageInfo, type MathV1Input, type MathV1Request, type MathV1Response, MathV1ResponseKindEnum, MathV1ResponseStatusEnum, type MethodsPermissions, type ModifyAccessParamsDto, ModifyAccessParamsDtoPrincipalTypeEnum, type NaomiHauteV1Input, NaomiHauteV1InputModeEnum, type NegateImageV1Input, type NegateImageV1Request, type NegateImageV1Response, NegateImageV1ResponseKindEnum, NegateImageV1ResponseStatusEnum, type NoiseV1Input, type NoiseV1Request, type NoiseV1Response, NoiseV1ResponseKindEnum, NoiseV1ResponseStatusEnum, type ObjectDetectionV1Input, type ObjectDetectionV1Request, type ObjectDetectionV1Response, ObjectDetectionV1ResponseKindEnum, ObjectDetectionV1ResponseStatusEnum, type OneCompilerV1Input, OneCompilerV1InputLanguageEnum, type OnecompilerV1Request, type OnecompilerV1Response, OnecompilerV1ResponseKindEnum, OnecompilerV1ResponseStatusEnum, type OperationEntity, OperationEntityKindEnum, OperationEntityStatusEnum, type OperationMetadata, type OperationOutputImageMultiple, OperationOutputImageMultipleKindEnum, type OperationOutputImageSingle, OperationOutputImageSingleKindEnum, type OperationOutputJSON, OperationOutputJSONKindEnum, type OperationOutputTextSingle, OperationOutputTextSingleKindEnum, type OperationOutputVideoSingle, OperationOutputVideoSingleKindEnum, OperationsApi, OperationsApiAxiosParamCreator, OperationsApiFactory, OperationsApiFp, OperationsControllerListOperationsV1OrderByEnum, PermissionsApi, PermissionsApiAxiosParamCreator, PermissionsApiFactory, PermissionsApiFp, type PipelineDto, PipelineDtoKindEnum, type PipelineDtoStateValue, PipelineDtoStateValueStatusEnum, PipelineDtoStatusEnum, type PipelineMapV1Input, type PipelineMapV1Request, type PipelineMapV1Response, PipelineMapV1ResponseKindEnum, PipelineMapV1ResponseStatusEnum, type PipelineMetadata, type PipelinePreviewDto, PipelinePreviewDtoKindEnum, PipelinePreviewDtoStatusEnum, PipelinesApi, PipelinesApiAxiosParamCreator, PipelinesApiFactory, PipelinesApiFp, PipelinesControllerListPipelinesV1OrderByEnum, type PoseEntity, PoseEntityKindEnum, type PoseEstimationV1Input, type PoseEstimationV1Request, type PoseEstimationV1Response, PoseEstimationV1ResponseKindEnum, PoseEstimationV1ResponseStatusEnum, type PoseMetadata, PosesApi, PosesApiAxiosParamCreator, PosesApiFactory, PosesApiFp, PosesControllerListPosesV1OrderByEnum, type RemoveAccountFromGroupControllerParamsDto, RemoveAccountFromGroupControllerParamsDtoRoleEnum, type RemoveAccountFromGroupParamsDto, RemoveAccountFromGroupParamsDtoRoleEnum, type RemoveItemsFromCollectionControllerParamsDto, type RemoveItemsFromCollectionParamsDto, type RemoveItemsFromStackParamsDto, type ResizeV1Input, type ResizeV1Request, type ResizeV1Response, ResizeV1ResponseKindEnum, ResizeV1ResponseStatusEnum, type ResourceEntity, ResourceEntityKindEnum, type RevokeAccessControllerParamsDto, RevokeAccessControllerParamsDtoPrincipalTypeEnum, type RunWorkflowParamsDto, type RunWorkflowResponseDto, type SDK, type SDKOptions, type SegmentAnythingEmbeddingsV1Input, type SegmentAnythingEmbeddingsV1Request, type SegmentAnythingEmbeddingsV1Response, SegmentAnythingEmbeddingsV1ResponseKindEnum, SegmentAnythingEmbeddingsV1ResponseStatusEnum, type SegmentAnythingMaskV1Input, type SegmentAnythingMaskV1Request, type SegmentAnythingMaskV1Response, SegmentAnythingMaskV1ResponseKindEnum, SegmentAnythingMaskV1ResponseStatusEnum, type SetPosePreviewControllerParamsDto, type SetPosePreviewDto, type StackEntity, type StackEntityItemsInner, StackEntityKindEnum, type StackMetadata, StacksApi, StacksApiAxiosParamCreator, StacksApiFactory, StacksApiFp, StacksControllerListStacksV1OrderByEnum, StorageApi, StorageApiAxiosParamCreator, StorageApiFactory, StorageApiFp, type StorageEntity, StorageEntityKindEnum, type StorageRecordsResultDto, type StringsTemplateV1Input, type StringsTemplateV1Request, type StringsTemplateV1Response, StringsTemplateV1ResponseKindEnum, StringsTemplateV1ResponseStatusEnum, type SupportFile, type TaskDto, type TranslateV1Input, type TranslateV1Request, type TranslateV1Response, TranslateV1ResponseKindEnum, TranslateV1ResponseStatusEnum, type UpdateMetadataDto, type UpdateResourceMetadataDto, type UpdateStorageRecordParamsDto, type UpscaleV1Input, type UpscaleV1Request, type UpscaleV1Response, UpscaleV1ResponseKindEnum, UpscaleV1ResponseStatusEnum, type VariableDto, type VideoEntity, VideoEntityKindEnum, type VideoUrlResponseDto, VideosApi, VideosApiAxiosParamCreator, VideosApiFactory, VideosApiFp, type VtonGiseleV1Request, type VtonGiseleV1Response, VtonGiseleV1ResponseKindEnum, VtonGiseleV1ResponseStatusEnum, type WaitOperationParamsDto, WebsocketApi, WebsocketApiAxiosParamCreator, WebsocketApiFactory, WebsocketApiFp, type WorkflowDto, type WorkflowMetadata, WorkflowsApi, WorkflowsApiAxiosParamCreator, WorkflowsApiFactory, WorkflowsApiFp, createSDK, createTokenSigner };