@hautechai/sdk 1.8.0 → 1.10.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 +176 -28
- package/dist/index.d.ts +176 -28
- package/dist/index.js +141 -41
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +139 -41
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -139,7 +139,36 @@ interface AccountEntity {
|
|
|
139
139
|
* @memberof AccountEntity
|
|
140
140
|
*/
|
|
141
141
|
'id': string;
|
|
142
|
+
/**
|
|
143
|
+
*
|
|
144
|
+
* @type {object}
|
|
145
|
+
* @memberof AccountEntity
|
|
146
|
+
*/
|
|
147
|
+
'balance': object;
|
|
148
|
+
/**
|
|
149
|
+
*
|
|
150
|
+
* @type {string}
|
|
151
|
+
* @memberof AccountEntity
|
|
152
|
+
*/
|
|
153
|
+
'createdAt': string;
|
|
154
|
+
/**
|
|
155
|
+
*
|
|
156
|
+
* @type {string}
|
|
157
|
+
* @memberof AccountEntity
|
|
158
|
+
*/
|
|
159
|
+
'alias'?: string;
|
|
160
|
+
/**
|
|
161
|
+
*
|
|
162
|
+
* @type {string}
|
|
163
|
+
* @memberof AccountEntity
|
|
164
|
+
*/
|
|
165
|
+
'type': AccountEntityTypeEnum;
|
|
142
166
|
}
|
|
167
|
+
declare const AccountEntityTypeEnum: {
|
|
168
|
+
readonly Root: "root";
|
|
169
|
+
readonly User: "user";
|
|
170
|
+
};
|
|
171
|
+
type AccountEntityTypeEnum = typeof AccountEntityTypeEnum[keyof typeof AccountEntityTypeEnum];
|
|
143
172
|
/**
|
|
144
173
|
*
|
|
145
174
|
* @export
|
|
@@ -3685,6 +3714,18 @@ interface ListAccountsParamsDto {
|
|
|
3685
3714
|
* @memberof ListAccountsParamsDto
|
|
3686
3715
|
*/
|
|
3687
3716
|
'limit'?: number;
|
|
3717
|
+
/**
|
|
3718
|
+
*
|
|
3719
|
+
* @type {Array<string>}
|
|
3720
|
+
* @memberof ListAccountsParamsDto
|
|
3721
|
+
*/
|
|
3722
|
+
'ids'?: Array<string>;
|
|
3723
|
+
/**
|
|
3724
|
+
*
|
|
3725
|
+
* @type {Array<string>}
|
|
3726
|
+
* @memberof ListAccountsParamsDto
|
|
3727
|
+
*/
|
|
3728
|
+
'aliases'?: Array<string>;
|
|
3688
3729
|
/**
|
|
3689
3730
|
*
|
|
3690
3731
|
* @type {string}
|
|
@@ -6076,6 +6117,54 @@ declare const SegmentAnythingMaskV1ResponseStatusEnum: {
|
|
|
6076
6117
|
readonly Failed: "failed";
|
|
6077
6118
|
};
|
|
6078
6119
|
type SegmentAnythingMaskV1ResponseStatusEnum = typeof SegmentAnythingMaskV1ResponseStatusEnum[keyof typeof SegmentAnythingMaskV1ResponseStatusEnum];
|
|
6120
|
+
/**
|
|
6121
|
+
*
|
|
6122
|
+
* @export
|
|
6123
|
+
* @interface SelfAccountDto
|
|
6124
|
+
*/
|
|
6125
|
+
interface SelfAccountDto {
|
|
6126
|
+
/**
|
|
6127
|
+
*
|
|
6128
|
+
* @type {string}
|
|
6129
|
+
* @memberof SelfAccountDto
|
|
6130
|
+
*/
|
|
6131
|
+
'id': string;
|
|
6132
|
+
/**
|
|
6133
|
+
*
|
|
6134
|
+
* @type {string}
|
|
6135
|
+
* @memberof SelfAccountDto
|
|
6136
|
+
*/
|
|
6137
|
+
'alias'?: string;
|
|
6138
|
+
/**
|
|
6139
|
+
*
|
|
6140
|
+
* @type {object}
|
|
6141
|
+
* @memberof SelfAccountDto
|
|
6142
|
+
*/
|
|
6143
|
+
'permissions': object;
|
|
6144
|
+
/**
|
|
6145
|
+
*
|
|
6146
|
+
* @type {string}
|
|
6147
|
+
* @memberof SelfAccountDto
|
|
6148
|
+
*/
|
|
6149
|
+
'balance': string;
|
|
6150
|
+
/**
|
|
6151
|
+
*
|
|
6152
|
+
* @type {string}
|
|
6153
|
+
* @memberof SelfAccountDto
|
|
6154
|
+
*/
|
|
6155
|
+
'type': SelfAccountDtoTypeEnum;
|
|
6156
|
+
/**
|
|
6157
|
+
*
|
|
6158
|
+
* @type {string}
|
|
6159
|
+
* @memberof SelfAccountDto
|
|
6160
|
+
*/
|
|
6161
|
+
'createdAt': string;
|
|
6162
|
+
}
|
|
6163
|
+
declare const SelfAccountDtoTypeEnum: {
|
|
6164
|
+
readonly Root: "root";
|
|
6165
|
+
readonly User: "user";
|
|
6166
|
+
};
|
|
6167
|
+
type SelfAccountDtoTypeEnum = typeof SelfAccountDtoTypeEnum[keyof typeof SelfAccountDtoTypeEnum];
|
|
6079
6168
|
/**
|
|
6080
6169
|
*
|
|
6081
6170
|
* @export
|
|
@@ -6542,6 +6631,19 @@ declare const TranslateV1ResponseStatusEnum: {
|
|
|
6542
6631
|
readonly Failed: "failed";
|
|
6543
6632
|
};
|
|
6544
6633
|
type TranslateV1ResponseStatusEnum = typeof TranslateV1ResponseStatusEnum[keyof typeof TranslateV1ResponseStatusEnum];
|
|
6634
|
+
/**
|
|
6635
|
+
*
|
|
6636
|
+
* @export
|
|
6637
|
+
* @interface UpdateAccountParamsDto
|
|
6638
|
+
*/
|
|
6639
|
+
interface UpdateAccountParamsDto {
|
|
6640
|
+
/**
|
|
6641
|
+
*
|
|
6642
|
+
* @type {string}
|
|
6643
|
+
* @memberof UpdateAccountParamsDto
|
|
6644
|
+
*/
|
|
6645
|
+
'alias'?: string;
|
|
6646
|
+
}
|
|
6545
6647
|
/**
|
|
6546
6648
|
*
|
|
6547
6649
|
* @export
|
|
@@ -7228,11 +7330,21 @@ declare const AccountsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
7228
7330
|
*
|
|
7229
7331
|
* @param {AccountsControllerListAccountsV1OrderByEnum} [orderBy]
|
|
7230
7332
|
* @param {number} [limit]
|
|
7333
|
+
* @param {Array<string>} [ids]
|
|
7334
|
+
* @param {Array<string>} [aliases]
|
|
7231
7335
|
* @param {string} [cursor]
|
|
7232
7336
|
* @param {*} [options] Override http request option.
|
|
7233
7337
|
* @throws {RequiredError}
|
|
7234
7338
|
*/
|
|
7235
|
-
accountsControllerListAccountsV1: (orderBy?: AccountsControllerListAccountsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7339
|
+
accountsControllerListAccountsV1: (orderBy?: AccountsControllerListAccountsV1OrderByEnum, limit?: number, ids?: Array<string>, aliases?: Array<string>, cursor?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7340
|
+
/**
|
|
7341
|
+
*
|
|
7342
|
+
* @param {string} id
|
|
7343
|
+
* @param {UpdateAccountParamsDto} updateAccountParamsDto
|
|
7344
|
+
* @param {*} [options] Override http request option.
|
|
7345
|
+
* @throws {RequiredError}
|
|
7346
|
+
*/
|
|
7347
|
+
accountsControllerUpdateAccountV1: (id: string, updateAccountParamsDto: UpdateAccountParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7236
7348
|
};
|
|
7237
7349
|
/**
|
|
7238
7350
|
* AccountsApi - functional programming interface
|
|
@@ -7265,16 +7377,26 @@ declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
7265
7377
|
* @param {*} [options] Override http request option.
|
|
7266
7378
|
* @throws {RequiredError}
|
|
7267
7379
|
*/
|
|
7268
|
-
accountsControllerGetSelfV1(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
7380
|
+
accountsControllerGetSelfV1(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SelfAccountDto>>;
|
|
7269
7381
|
/**
|
|
7270
7382
|
*
|
|
7271
7383
|
* @param {AccountsControllerListAccountsV1OrderByEnum} [orderBy]
|
|
7272
7384
|
* @param {number} [limit]
|
|
7385
|
+
* @param {Array<string>} [ids]
|
|
7386
|
+
* @param {Array<string>} [aliases]
|
|
7273
7387
|
* @param {string} [cursor]
|
|
7274
7388
|
* @param {*} [options] Override http request option.
|
|
7275
7389
|
* @throws {RequiredError}
|
|
7276
7390
|
*/
|
|
7277
|
-
accountsControllerListAccountsV1(orderBy?: AccountsControllerListAccountsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListAccountsDto>>;
|
|
7391
|
+
accountsControllerListAccountsV1(orderBy?: AccountsControllerListAccountsV1OrderByEnum, limit?: number, ids?: Array<string>, aliases?: Array<string>, cursor?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListAccountsDto>>;
|
|
7392
|
+
/**
|
|
7393
|
+
*
|
|
7394
|
+
* @param {string} id
|
|
7395
|
+
* @param {UpdateAccountParamsDto} updateAccountParamsDto
|
|
7396
|
+
* @param {*} [options] Override http request option.
|
|
7397
|
+
* @throws {RequiredError}
|
|
7398
|
+
*/
|
|
7399
|
+
accountsControllerUpdateAccountV1(id: string, updateAccountParamsDto: UpdateAccountParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountEntity>>;
|
|
7278
7400
|
};
|
|
7279
7401
|
/**
|
|
7280
7402
|
* AccountsApi - factory interface
|
|
@@ -7307,16 +7429,26 @@ declare const AccountsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
7307
7429
|
* @param {*} [options] Override http request option.
|
|
7308
7430
|
* @throws {RequiredError}
|
|
7309
7431
|
*/
|
|
7310
|
-
accountsControllerGetSelfV1(options?: RawAxiosRequestConfig): AxiosPromise<
|
|
7432
|
+
accountsControllerGetSelfV1(options?: RawAxiosRequestConfig): AxiosPromise<SelfAccountDto>;
|
|
7311
7433
|
/**
|
|
7312
7434
|
*
|
|
7313
7435
|
* @param {AccountsControllerListAccountsV1OrderByEnum} [orderBy]
|
|
7314
7436
|
* @param {number} [limit]
|
|
7437
|
+
* @param {Array<string>} [ids]
|
|
7438
|
+
* @param {Array<string>} [aliases]
|
|
7315
7439
|
* @param {string} [cursor]
|
|
7316
7440
|
* @param {*} [options] Override http request option.
|
|
7317
7441
|
* @throws {RequiredError}
|
|
7318
7442
|
*/
|
|
7319
|
-
accountsControllerListAccountsV1(orderBy?: AccountsControllerListAccountsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListAccountsDto>;
|
|
7443
|
+
accountsControllerListAccountsV1(orderBy?: AccountsControllerListAccountsV1OrderByEnum, limit?: number, ids?: Array<string>, aliases?: Array<string>, cursor?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListAccountsDto>;
|
|
7444
|
+
/**
|
|
7445
|
+
*
|
|
7446
|
+
* @param {string} id
|
|
7447
|
+
* @param {UpdateAccountParamsDto} updateAccountParamsDto
|
|
7448
|
+
* @param {*} [options] Override http request option.
|
|
7449
|
+
* @throws {RequiredError}
|
|
7450
|
+
*/
|
|
7451
|
+
accountsControllerUpdateAccountV1(id: string, updateAccountParamsDto: UpdateAccountParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<AccountEntity>;
|
|
7320
7452
|
};
|
|
7321
7453
|
/**
|
|
7322
7454
|
* AccountsApi - object-oriented interface
|
|
@@ -7355,17 +7487,28 @@ declare class AccountsApi extends BaseAPI {
|
|
|
7355
7487
|
* @throws {RequiredError}
|
|
7356
7488
|
* @memberof AccountsApi
|
|
7357
7489
|
*/
|
|
7358
|
-
accountsControllerGetSelfV1(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
7490
|
+
accountsControllerGetSelfV1(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<SelfAccountDto, any>>;
|
|
7359
7491
|
/**
|
|
7360
7492
|
*
|
|
7361
7493
|
* @param {AccountsControllerListAccountsV1OrderByEnum} [orderBy]
|
|
7362
7494
|
* @param {number} [limit]
|
|
7495
|
+
* @param {Array<string>} [ids]
|
|
7496
|
+
* @param {Array<string>} [aliases]
|
|
7363
7497
|
* @param {string} [cursor]
|
|
7364
7498
|
* @param {*} [options] Override http request option.
|
|
7365
7499
|
* @throws {RequiredError}
|
|
7366
7500
|
* @memberof AccountsApi
|
|
7367
7501
|
*/
|
|
7368
|
-
accountsControllerListAccountsV1(orderBy?: AccountsControllerListAccountsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListAccountsDto, any>>;
|
|
7502
|
+
accountsControllerListAccountsV1(orderBy?: AccountsControllerListAccountsV1OrderByEnum, limit?: number, ids?: Array<string>, aliases?: Array<string>, cursor?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListAccountsDto, any>>;
|
|
7503
|
+
/**
|
|
7504
|
+
*
|
|
7505
|
+
* @param {string} id
|
|
7506
|
+
* @param {UpdateAccountParamsDto} updateAccountParamsDto
|
|
7507
|
+
* @param {*} [options] Override http request option.
|
|
7508
|
+
* @throws {RequiredError}
|
|
7509
|
+
* @memberof AccountsApi
|
|
7510
|
+
*/
|
|
7511
|
+
accountsControllerUpdateAccountV1(id: string, updateAccountParamsDto: UpdateAccountParamsDto, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<AccountEntity, any>>;
|
|
7369
7512
|
}
|
|
7370
7513
|
/**
|
|
7371
7514
|
* @export
|
|
@@ -8079,7 +8222,7 @@ declare const CallApiFp: (configuration?: Configuration) => {
|
|
|
8079
8222
|
* @param {*} [options] Override http request option.
|
|
8080
8223
|
* @throws {RequiredError}
|
|
8081
8224
|
*/
|
|
8082
|
-
callControllerCallAccountsSelfV1(body: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
8225
|
+
callControllerCallAccountsSelfV1(body: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SelfAccountDto>>;
|
|
8083
8226
|
/**
|
|
8084
8227
|
*
|
|
8085
8228
|
* @param {CreateCollectionParamsDto} createCollectionParamsDto
|
|
@@ -8603,7 +8746,7 @@ declare const CallApiFactory: (configuration?: Configuration, basePath?: string,
|
|
|
8603
8746
|
* @param {*} [options] Override http request option.
|
|
8604
8747
|
* @throws {RequiredError}
|
|
8605
8748
|
*/
|
|
8606
|
-
callControllerCallAccountsSelfV1(body: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
8749
|
+
callControllerCallAccountsSelfV1(body: string, options?: RawAxiosRequestConfig): AxiosPromise<SelfAccountDto>;
|
|
8607
8750
|
/**
|
|
8608
8751
|
*
|
|
8609
8752
|
* @param {CreateCollectionParamsDto} createCollectionParamsDto
|
|
@@ -9138,7 +9281,7 @@ declare class CallApi extends BaseAPI {
|
|
|
9138
9281
|
* @throws {RequiredError}
|
|
9139
9282
|
* @memberof CallApi
|
|
9140
9283
|
*/
|
|
9141
|
-
callControllerCallAccountsSelfV1(body: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<
|
|
9284
|
+
callControllerCallAccountsSelfV1(body: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<SelfAccountDto, any>>;
|
|
9142
9285
|
/**
|
|
9143
9286
|
*
|
|
9144
9287
|
* @param {CreateCollectionParamsDto} createCollectionParamsDto
|
|
@@ -12047,18 +12190,18 @@ declare const VideosApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
12047
12190
|
videosControllerFinalizeUploadV1: (createVideoParamsDto: CreateVideoParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12048
12191
|
/**
|
|
12049
12192
|
*
|
|
12050
|
-
* @param {
|
|
12193
|
+
* @param {string} id
|
|
12051
12194
|
* @param {*} [options] Override http request option.
|
|
12052
12195
|
* @throws {RequiredError}
|
|
12053
12196
|
*/
|
|
12054
|
-
|
|
12197
|
+
videosControllerGetVideoByIdV1: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12055
12198
|
/**
|
|
12056
12199
|
*
|
|
12057
|
-
* @param {string}
|
|
12200
|
+
* @param {Array<string>} ids
|
|
12058
12201
|
* @param {*} [options] Override http request option.
|
|
12059
12202
|
* @throws {RequiredError}
|
|
12060
12203
|
*/
|
|
12061
|
-
|
|
12204
|
+
videosControllerGetVideosV1: (ids: Array<string>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12062
12205
|
/**
|
|
12063
12206
|
*
|
|
12064
12207
|
* @param {*} [options] Override http request option.
|
|
@@ -12080,18 +12223,18 @@ declare const VideosApiFp: (configuration?: Configuration) => {
|
|
|
12080
12223
|
videosControllerFinalizeUploadV1(createVideoParamsDto: CreateVideoParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VideoEntity>>;
|
|
12081
12224
|
/**
|
|
12082
12225
|
*
|
|
12083
|
-
* @param {
|
|
12226
|
+
* @param {string} id
|
|
12084
12227
|
* @param {*} [options] Override http request option.
|
|
12085
12228
|
* @throws {RequiredError}
|
|
12086
12229
|
*/
|
|
12087
|
-
|
|
12230
|
+
videosControllerGetVideoByIdV1(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VideoEntity>>;
|
|
12088
12231
|
/**
|
|
12089
12232
|
*
|
|
12090
|
-
* @param {string}
|
|
12233
|
+
* @param {Array<string>} ids
|
|
12091
12234
|
* @param {*} [options] Override http request option.
|
|
12092
12235
|
* @throws {RequiredError}
|
|
12093
12236
|
*/
|
|
12094
|
-
|
|
12237
|
+
videosControllerGetVideosV1(ids: Array<string>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<VideoEntity>>>;
|
|
12095
12238
|
/**
|
|
12096
12239
|
*
|
|
12097
12240
|
* @param {*} [options] Override http request option.
|
|
@@ -12113,18 +12256,18 @@ declare const VideosApiFactory: (configuration?: Configuration, basePath?: strin
|
|
|
12113
12256
|
videosControllerFinalizeUploadV1(createVideoParamsDto: CreateVideoParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<VideoEntity>;
|
|
12114
12257
|
/**
|
|
12115
12258
|
*
|
|
12116
|
-
* @param {
|
|
12259
|
+
* @param {string} id
|
|
12117
12260
|
* @param {*} [options] Override http request option.
|
|
12118
12261
|
* @throws {RequiredError}
|
|
12119
12262
|
*/
|
|
12120
|
-
|
|
12263
|
+
videosControllerGetVideoByIdV1(id: string, options?: RawAxiosRequestConfig): AxiosPromise<VideoEntity>;
|
|
12121
12264
|
/**
|
|
12122
12265
|
*
|
|
12123
|
-
* @param {string}
|
|
12266
|
+
* @param {Array<string>} ids
|
|
12124
12267
|
* @param {*} [options] Override http request option.
|
|
12125
12268
|
* @throws {RequiredError}
|
|
12126
12269
|
*/
|
|
12127
|
-
|
|
12270
|
+
videosControllerGetVideosV1(ids: Array<string>, options?: RawAxiosRequestConfig): AxiosPromise<Array<VideoEntity>>;
|
|
12128
12271
|
/**
|
|
12129
12272
|
*
|
|
12130
12273
|
* @param {*} [options] Override http request option.
|
|
@@ -12149,20 +12292,20 @@ declare class VideosApi extends BaseAPI {
|
|
|
12149
12292
|
videosControllerFinalizeUploadV1(createVideoParamsDto: CreateVideoParamsDto, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<VideoEntity, any>>;
|
|
12150
12293
|
/**
|
|
12151
12294
|
*
|
|
12152
|
-
* @param {
|
|
12295
|
+
* @param {string} id
|
|
12153
12296
|
* @param {*} [options] Override http request option.
|
|
12154
12297
|
* @throws {RequiredError}
|
|
12155
12298
|
* @memberof VideosApi
|
|
12156
12299
|
*/
|
|
12157
|
-
|
|
12300
|
+
videosControllerGetVideoByIdV1(id: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<VideoEntity, any>>;
|
|
12158
12301
|
/**
|
|
12159
12302
|
*
|
|
12160
|
-
* @param {string}
|
|
12303
|
+
* @param {Array<string>} ids
|
|
12161
12304
|
* @param {*} [options] Override http request option.
|
|
12162
12305
|
* @throws {RequiredError}
|
|
12163
12306
|
* @memberof VideosApi
|
|
12164
12307
|
*/
|
|
12165
|
-
|
|
12308
|
+
videosControllerGetVideosV1(ids: Array<string>, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<VideoEntity[], any>>;
|
|
12166
12309
|
/**
|
|
12167
12310
|
*
|
|
12168
12311
|
* @param {*} [options] Override http request option.
|
|
@@ -12507,10 +12650,14 @@ declare const createSDK: (options: SDKOptions) => {
|
|
|
12507
12650
|
create: (props?: {
|
|
12508
12651
|
alias?: string;
|
|
12509
12652
|
}) => Promise<AccountEntity>;
|
|
12653
|
+
edit: (props: {
|
|
12654
|
+
id: string;
|
|
12655
|
+
alias?: string;
|
|
12656
|
+
}) => Promise<AccountEntity>;
|
|
12510
12657
|
get: (props: {
|
|
12511
12658
|
id: string;
|
|
12512
12659
|
}) => Promise<AccountEntity | undefined>;
|
|
12513
|
-
self: () => Promise<
|
|
12660
|
+
self: () => Promise<SelfAccountDto | undefined>;
|
|
12514
12661
|
getByAlias: (props: {
|
|
12515
12662
|
alias: string;
|
|
12516
12663
|
}) => Promise<AccountEntity | undefined>;
|
|
@@ -14179,6 +14326,7 @@ type MethodsPermissions = {
|
|
|
14179
14326
|
create: boolean;
|
|
14180
14327
|
read: boolean;
|
|
14181
14328
|
list: boolean;
|
|
14329
|
+
update: boolean;
|
|
14182
14330
|
};
|
|
14183
14331
|
balances: {
|
|
14184
14332
|
read: boolean;
|
|
@@ -14291,4 +14439,4 @@ declare const createTokenSigner: (options: {
|
|
|
14291
14439
|
}) => Promise<string>;
|
|
14292
14440
|
};
|
|
14293
14441
|
|
|
14294
|
-
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 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, WorkflowsControllerListWorkflowsV1OrderByEnum, createSDK, createTokenSigner };
|
|
14442
|
+
export { AccessApi, AccessApiAxiosParamCreator, AccessApiFactory, AccessApiFp, type AccountEntity, AccountEntityTypeEnum, 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 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 SelfAccountDto, SelfAccountDtoTypeEnum, 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 UpdateAccountParamsDto, 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, WorkflowsControllerListWorkflowsV1OrderByEnum, createSDK, createTokenSigner };
|