@hautechai/sdk 0.3.23 → 0.3.25
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/autogenerated/api.d.ts +103 -0
- package/dist/autogenerated/api.js +126 -0
- package/dist/sdk/index.d.ts +60 -0
- package/dist/sdk/pipelines/index.d.ts +60 -0
- package/dist/sdk/pipelines/index.js +9 -0
- package/package.json +1 -1
|
@@ -1432,6 +1432,32 @@ export interface GetUrlsForImagesParamsDto {
|
|
|
1432
1432
|
*/
|
|
1433
1433
|
'ids': Array<string>;
|
|
1434
1434
|
}
|
|
1435
|
+
/**
|
|
1436
|
+
*
|
|
1437
|
+
* @export
|
|
1438
|
+
* @interface GetVideoParamsDto
|
|
1439
|
+
*/
|
|
1440
|
+
export interface GetVideoParamsDto {
|
|
1441
|
+
/**
|
|
1442
|
+
*
|
|
1443
|
+
* @type {string}
|
|
1444
|
+
* @memberof GetVideoParamsDto
|
|
1445
|
+
*/
|
|
1446
|
+
'id': string;
|
|
1447
|
+
}
|
|
1448
|
+
/**
|
|
1449
|
+
*
|
|
1450
|
+
* @export
|
|
1451
|
+
* @interface GetVideosParamsDto
|
|
1452
|
+
*/
|
|
1453
|
+
export interface GetVideosParamsDto {
|
|
1454
|
+
/**
|
|
1455
|
+
*
|
|
1456
|
+
* @type {Array<string>}
|
|
1457
|
+
* @memberof GetVideosParamsDto
|
|
1458
|
+
*/
|
|
1459
|
+
'ids': Array<string>;
|
|
1460
|
+
}
|
|
1435
1461
|
/**
|
|
1436
1462
|
*
|
|
1437
1463
|
* @export
|
|
@@ -4942,6 +4968,25 @@ export declare const VideoEntityKindEnum: {
|
|
|
4942
4968
|
readonly Pipeline: "pipeline";
|
|
4943
4969
|
};
|
|
4944
4970
|
export type VideoEntityKindEnum = typeof VideoEntityKindEnum[keyof typeof VideoEntityKindEnum];
|
|
4971
|
+
/**
|
|
4972
|
+
*
|
|
4973
|
+
* @export
|
|
4974
|
+
* @interface VideoUrlResponseDto
|
|
4975
|
+
*/
|
|
4976
|
+
export interface VideoUrlResponseDto {
|
|
4977
|
+
/**
|
|
4978
|
+
*
|
|
4979
|
+
* @type {string}
|
|
4980
|
+
* @memberof VideoUrlResponseDto
|
|
4981
|
+
*/
|
|
4982
|
+
'id': string;
|
|
4983
|
+
/**
|
|
4984
|
+
*
|
|
4985
|
+
* @type {string}
|
|
4986
|
+
* @memberof VideoUrlResponseDto
|
|
4987
|
+
*/
|
|
4988
|
+
'url': string;
|
|
4989
|
+
}
|
|
4945
4990
|
/**
|
|
4946
4991
|
*
|
|
4947
4992
|
* @export
|
|
@@ -5998,6 +6043,20 @@ export declare const CallApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
5998
6043
|
* @throws {RequiredError}
|
|
5999
6044
|
*/
|
|
6000
6045
|
callControllerCallStorageUpdateV1: (updateStorageRecordParamsDto: UpdateStorageRecordParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6046
|
+
/**
|
|
6047
|
+
*
|
|
6048
|
+
* @param {GetVideosParamsDto} getVideosParamsDto
|
|
6049
|
+
* @param {*} [options] Override http request option.
|
|
6050
|
+
* @throws {RequiredError}
|
|
6051
|
+
*/
|
|
6052
|
+
callControllerCallVideosGetManyV1: (getVideosParamsDto: GetVideosParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6053
|
+
/**
|
|
6054
|
+
*
|
|
6055
|
+
* @param {GetVideoParamsDto} getVideoParamsDto
|
|
6056
|
+
* @param {*} [options] Override http request option.
|
|
6057
|
+
* @throws {RequiredError}
|
|
6058
|
+
*/
|
|
6059
|
+
callControllerCallVideosGetV1: (getVideoParamsDto: GetVideoParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6001
6060
|
};
|
|
6002
6061
|
/**
|
|
6003
6062
|
* CallApi - functional programming interface
|
|
@@ -6459,6 +6518,20 @@ export declare const CallApiFp: (configuration?: Configuration) => {
|
|
|
6459
6518
|
* @throws {RequiredError}
|
|
6460
6519
|
*/
|
|
6461
6520
|
callControllerCallStorageUpdateV1(updateStorageRecordParamsDto: UpdateStorageRecordParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StorageEntity>>;
|
|
6521
|
+
/**
|
|
6522
|
+
*
|
|
6523
|
+
* @param {GetVideosParamsDto} getVideosParamsDto
|
|
6524
|
+
* @param {*} [options] Override http request option.
|
|
6525
|
+
* @throws {RequiredError}
|
|
6526
|
+
*/
|
|
6527
|
+
callControllerCallVideosGetManyV1(getVideosParamsDto: GetVideosParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<VideoUrlResponseDto>>>;
|
|
6528
|
+
/**
|
|
6529
|
+
*
|
|
6530
|
+
* @param {GetVideoParamsDto} getVideoParamsDto
|
|
6531
|
+
* @param {*} [options] Override http request option.
|
|
6532
|
+
* @throws {RequiredError}
|
|
6533
|
+
*/
|
|
6534
|
+
callControllerCallVideosGetV1(getVideoParamsDto: GetVideoParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VideoEntity>>;
|
|
6462
6535
|
};
|
|
6463
6536
|
/**
|
|
6464
6537
|
* CallApi - factory interface
|
|
@@ -6920,6 +6993,20 @@ export declare const CallApiFactory: (configuration?: Configuration, basePath?:
|
|
|
6920
6993
|
* @throws {RequiredError}
|
|
6921
6994
|
*/
|
|
6922
6995
|
callControllerCallStorageUpdateV1(updateStorageRecordParamsDto: UpdateStorageRecordParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<StorageEntity>;
|
|
6996
|
+
/**
|
|
6997
|
+
*
|
|
6998
|
+
* @param {GetVideosParamsDto} getVideosParamsDto
|
|
6999
|
+
* @param {*} [options] Override http request option.
|
|
7000
|
+
* @throws {RequiredError}
|
|
7001
|
+
*/
|
|
7002
|
+
callControllerCallVideosGetManyV1(getVideosParamsDto: GetVideosParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<VideoUrlResponseDto>>;
|
|
7003
|
+
/**
|
|
7004
|
+
*
|
|
7005
|
+
* @param {GetVideoParamsDto} getVideoParamsDto
|
|
7006
|
+
* @param {*} [options] Override http request option.
|
|
7007
|
+
* @throws {RequiredError}
|
|
7008
|
+
*/
|
|
7009
|
+
callControllerCallVideosGetV1(getVideoParamsDto: GetVideoParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<VideoEntity>;
|
|
6923
7010
|
};
|
|
6924
7011
|
/**
|
|
6925
7012
|
* CallApi - object-oriented interface
|
|
@@ -7448,6 +7535,22 @@ export declare class CallApi extends BaseAPI {
|
|
|
7448
7535
|
* @memberof CallApi
|
|
7449
7536
|
*/
|
|
7450
7537
|
callControllerCallStorageUpdateV1(updateStorageRecordParamsDto: UpdateStorageRecordParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StorageEntity, any>>;
|
|
7538
|
+
/**
|
|
7539
|
+
*
|
|
7540
|
+
* @param {GetVideosParamsDto} getVideosParamsDto
|
|
7541
|
+
* @param {*} [options] Override http request option.
|
|
7542
|
+
* @throws {RequiredError}
|
|
7543
|
+
* @memberof CallApi
|
|
7544
|
+
*/
|
|
7545
|
+
callControllerCallVideosGetManyV1(getVideosParamsDto: GetVideosParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VideoUrlResponseDto[], any>>;
|
|
7546
|
+
/**
|
|
7547
|
+
*
|
|
7548
|
+
* @param {GetVideoParamsDto} getVideoParamsDto
|
|
7549
|
+
* @param {*} [options] Override http request option.
|
|
7550
|
+
* @throws {RequiredError}
|
|
7551
|
+
* @memberof CallApi
|
|
7552
|
+
*/
|
|
7553
|
+
callControllerCallVideosGetV1(getVideoParamsDto: GetVideoParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VideoEntity, any>>;
|
|
7451
7554
|
}
|
|
7452
7555
|
/**
|
|
7453
7556
|
* CollectionsApi - axios parameter creator
|
|
@@ -3476,6 +3476,70 @@ export const CallApiAxiosParamCreator = function (configuration) {
|
|
|
3476
3476
|
options: localVarRequestOptions,
|
|
3477
3477
|
};
|
|
3478
3478
|
},
|
|
3479
|
+
/**
|
|
3480
|
+
*
|
|
3481
|
+
* @param {GetVideosParamsDto} getVideosParamsDto
|
|
3482
|
+
* @param {*} [options] Override http request option.
|
|
3483
|
+
* @throws {RequiredError}
|
|
3484
|
+
*/
|
|
3485
|
+
callControllerCallVideosGetManyV1: async (getVideosParamsDto, options = {}) => {
|
|
3486
|
+
// verify required parameter 'getVideosParamsDto' is not null or undefined
|
|
3487
|
+
assertParamExists('callControllerCallVideosGetManyV1', 'getVideosParamsDto', getVideosParamsDto);
|
|
3488
|
+
const localVarPath = `/v1/call/videos.getMany`;
|
|
3489
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3490
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3491
|
+
let baseOptions;
|
|
3492
|
+
if (configuration) {
|
|
3493
|
+
baseOptions = configuration.baseOptions;
|
|
3494
|
+
}
|
|
3495
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
|
|
3496
|
+
const localVarHeaderParameter = {};
|
|
3497
|
+
const localVarQueryParameter = {};
|
|
3498
|
+
// authentication bearer required
|
|
3499
|
+
// http bearer authentication required
|
|
3500
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3501
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
3502
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3503
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3504
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3505
|
+
localVarRequestOptions.data = serializeDataIfNeeded(getVideosParamsDto, localVarRequestOptions, configuration);
|
|
3506
|
+
return {
|
|
3507
|
+
url: toPathString(localVarUrlObj),
|
|
3508
|
+
options: localVarRequestOptions,
|
|
3509
|
+
};
|
|
3510
|
+
},
|
|
3511
|
+
/**
|
|
3512
|
+
*
|
|
3513
|
+
* @param {GetVideoParamsDto} getVideoParamsDto
|
|
3514
|
+
* @param {*} [options] Override http request option.
|
|
3515
|
+
* @throws {RequiredError}
|
|
3516
|
+
*/
|
|
3517
|
+
callControllerCallVideosGetV1: async (getVideoParamsDto, options = {}) => {
|
|
3518
|
+
// verify required parameter 'getVideoParamsDto' is not null or undefined
|
|
3519
|
+
assertParamExists('callControllerCallVideosGetV1', 'getVideoParamsDto', getVideoParamsDto);
|
|
3520
|
+
const localVarPath = `/v1/call/videos.get`;
|
|
3521
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3522
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3523
|
+
let baseOptions;
|
|
3524
|
+
if (configuration) {
|
|
3525
|
+
baseOptions = configuration.baseOptions;
|
|
3526
|
+
}
|
|
3527
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
|
|
3528
|
+
const localVarHeaderParameter = {};
|
|
3529
|
+
const localVarQueryParameter = {};
|
|
3530
|
+
// authentication bearer required
|
|
3531
|
+
// http bearer authentication required
|
|
3532
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3533
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
3534
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3535
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3536
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
3537
|
+
localVarRequestOptions.data = serializeDataIfNeeded(getVideoParamsDto, localVarRequestOptions, configuration);
|
|
3538
|
+
return {
|
|
3539
|
+
url: toPathString(localVarUrlObj),
|
|
3540
|
+
options: localVarRequestOptions,
|
|
3541
|
+
};
|
|
3542
|
+
},
|
|
3479
3543
|
};
|
|
3480
3544
|
};
|
|
3481
3545
|
/**
|
|
@@ -4265,6 +4329,30 @@ export const CallApiFp = function (configuration) {
|
|
|
4265
4329
|
const localVarOperationServerBasePath = operationServerMap['CallApi.callControllerCallStorageUpdateV1']?.[localVarOperationServerIndex]?.url;
|
|
4266
4330
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4267
4331
|
},
|
|
4332
|
+
/**
|
|
4333
|
+
*
|
|
4334
|
+
* @param {GetVideosParamsDto} getVideosParamsDto
|
|
4335
|
+
* @param {*} [options] Override http request option.
|
|
4336
|
+
* @throws {RequiredError}
|
|
4337
|
+
*/
|
|
4338
|
+
async callControllerCallVideosGetManyV1(getVideosParamsDto, options) {
|
|
4339
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.callControllerCallVideosGetManyV1(getVideosParamsDto, options);
|
|
4340
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4341
|
+
const localVarOperationServerBasePath = operationServerMap['CallApi.callControllerCallVideosGetManyV1']?.[localVarOperationServerIndex]?.url;
|
|
4342
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4343
|
+
},
|
|
4344
|
+
/**
|
|
4345
|
+
*
|
|
4346
|
+
* @param {GetVideoParamsDto} getVideoParamsDto
|
|
4347
|
+
* @param {*} [options] Override http request option.
|
|
4348
|
+
* @throws {RequiredError}
|
|
4349
|
+
*/
|
|
4350
|
+
async callControllerCallVideosGetV1(getVideoParamsDto, options) {
|
|
4351
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.callControllerCallVideosGetV1(getVideoParamsDto, options);
|
|
4352
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4353
|
+
const localVarOperationServerBasePath = operationServerMap['CallApi.callControllerCallVideosGetV1']?.[localVarOperationServerIndex]?.url;
|
|
4354
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4355
|
+
},
|
|
4268
4356
|
};
|
|
4269
4357
|
};
|
|
4270
4358
|
/**
|
|
@@ -4859,6 +4947,24 @@ export const CallApiFactory = function (configuration, basePath, axios) {
|
|
|
4859
4947
|
callControllerCallStorageUpdateV1(updateStorageRecordParamsDto, options) {
|
|
4860
4948
|
return localVarFp.callControllerCallStorageUpdateV1(updateStorageRecordParamsDto, options).then((request) => request(axios, basePath));
|
|
4861
4949
|
},
|
|
4950
|
+
/**
|
|
4951
|
+
*
|
|
4952
|
+
* @param {GetVideosParamsDto} getVideosParamsDto
|
|
4953
|
+
* @param {*} [options] Override http request option.
|
|
4954
|
+
* @throws {RequiredError}
|
|
4955
|
+
*/
|
|
4956
|
+
callControllerCallVideosGetManyV1(getVideosParamsDto, options) {
|
|
4957
|
+
return localVarFp.callControllerCallVideosGetManyV1(getVideosParamsDto, options).then((request) => request(axios, basePath));
|
|
4958
|
+
},
|
|
4959
|
+
/**
|
|
4960
|
+
*
|
|
4961
|
+
* @param {GetVideoParamsDto} getVideoParamsDto
|
|
4962
|
+
* @param {*} [options] Override http request option.
|
|
4963
|
+
* @throws {RequiredError}
|
|
4964
|
+
*/
|
|
4965
|
+
callControllerCallVideosGetV1(getVideoParamsDto, options) {
|
|
4966
|
+
return localVarFp.callControllerCallVideosGetV1(getVideoParamsDto, options).then((request) => request(axios, basePath));
|
|
4967
|
+
},
|
|
4862
4968
|
};
|
|
4863
4969
|
};
|
|
4864
4970
|
/**
|
|
@@ -5518,6 +5624,26 @@ export class CallApi extends BaseAPI {
|
|
|
5518
5624
|
callControllerCallStorageUpdateV1(updateStorageRecordParamsDto, options) {
|
|
5519
5625
|
return CallApiFp(this.configuration).callControllerCallStorageUpdateV1(updateStorageRecordParamsDto, options).then((request) => request(this.axios, this.basePath));
|
|
5520
5626
|
}
|
|
5627
|
+
/**
|
|
5628
|
+
*
|
|
5629
|
+
* @param {GetVideosParamsDto} getVideosParamsDto
|
|
5630
|
+
* @param {*} [options] Override http request option.
|
|
5631
|
+
* @throws {RequiredError}
|
|
5632
|
+
* @memberof CallApi
|
|
5633
|
+
*/
|
|
5634
|
+
callControllerCallVideosGetManyV1(getVideosParamsDto, options) {
|
|
5635
|
+
return CallApiFp(this.configuration).callControllerCallVideosGetManyV1(getVideosParamsDto, options).then((request) => request(this.axios, this.basePath));
|
|
5636
|
+
}
|
|
5637
|
+
/**
|
|
5638
|
+
*
|
|
5639
|
+
* @param {GetVideoParamsDto} getVideoParamsDto
|
|
5640
|
+
* @param {*} [options] Override http request option.
|
|
5641
|
+
* @throws {RequiredError}
|
|
5642
|
+
* @memberof CallApi
|
|
5643
|
+
*/
|
|
5644
|
+
callControllerCallVideosGetV1(getVideoParamsDto, options) {
|
|
5645
|
+
return CallApiFp(this.configuration).callControllerCallVideosGetV1(getVideoParamsDto, options).then((request) => request(this.axios, this.basePath));
|
|
5646
|
+
}
|
|
5521
5647
|
}
|
|
5522
5648
|
/**
|
|
5523
5649
|
* CollectionsApi - axios parameter creator
|
package/dist/sdk/index.d.ts
CHANGED
|
@@ -360,6 +360,14 @@ export declare const createSDK: (options: SDKOptions) => {
|
|
|
360
360
|
__taskOutput__?: never;
|
|
361
361
|
}) => Promise<import("../autogenerated").ImageUrlResponseDto[]>;
|
|
362
362
|
};
|
|
363
|
+
videos: {
|
|
364
|
+
get: (params: import("../autogenerated").GetVideoParamsDto & {
|
|
365
|
+
__taskOutput__?: never;
|
|
366
|
+
}) => Promise<import("../autogenerated").VideoEntity>;
|
|
367
|
+
getUrls: (params: import("../autogenerated").GetVideosParamsDto & {
|
|
368
|
+
__taskOutput__?: never;
|
|
369
|
+
}) => Promise<import("../autogenerated").VideoUrlResponseDto[]>;
|
|
370
|
+
};
|
|
363
371
|
operations: {
|
|
364
372
|
get: (params: import("../autogenerated").GetOperationParamsDto & {
|
|
365
373
|
__taskOutput__?: never;
|
|
@@ -371,6 +379,13 @@ export declare const createSDK: (options: SDKOptions) => {
|
|
|
371
379
|
__taskOutput__?: never;
|
|
372
380
|
}) => Promise<import("../types").OperationEntity>;
|
|
373
381
|
run: {
|
|
382
|
+
animate: {
|
|
383
|
+
kling_1_6_pro: {
|
|
384
|
+
v1: (params: import("../autogenerated").AnimateKling16ProV1Request & {
|
|
385
|
+
__taskOutput__?: never;
|
|
386
|
+
}) => Promise<import("../autogenerated").AnimateKling16ProV1Response>;
|
|
387
|
+
};
|
|
388
|
+
};
|
|
374
389
|
haute: {
|
|
375
390
|
linda: {
|
|
376
391
|
v1: (params: import("../autogenerated").HauteLindaV1Request & {
|
|
@@ -608,6 +623,14 @@ export declare const createSDK: (options: SDKOptions) => {
|
|
|
608
623
|
__taskOutput__?: never;
|
|
609
624
|
}) => Promise<import("../autogenerated").ImageUrlResponseDto[]>;
|
|
610
625
|
};
|
|
626
|
+
videos: {
|
|
627
|
+
get: (params: import("../autogenerated").GetVideoParamsDto & {
|
|
628
|
+
__taskOutput__?: never;
|
|
629
|
+
}) => Promise<import("../autogenerated").VideoEntity>;
|
|
630
|
+
getUrls: (params: import("../autogenerated").GetVideosParamsDto & {
|
|
631
|
+
__taskOutput__?: never;
|
|
632
|
+
}) => Promise<import("../autogenerated").VideoUrlResponseDto[]>;
|
|
633
|
+
};
|
|
611
634
|
operations: {
|
|
612
635
|
get: (params: import("../autogenerated").GetOperationParamsDto & {
|
|
613
636
|
__taskOutput__?: never;
|
|
@@ -619,6 +642,13 @@ export declare const createSDK: (options: SDKOptions) => {
|
|
|
619
642
|
__taskOutput__?: never;
|
|
620
643
|
}) => Promise<import("../types").OperationEntity>;
|
|
621
644
|
run: {
|
|
645
|
+
animate: {
|
|
646
|
+
kling_1_6_pro: {
|
|
647
|
+
v1: (params: import("../autogenerated").AnimateKling16ProV1Request & {
|
|
648
|
+
__taskOutput__?: never;
|
|
649
|
+
}) => Promise<import("../autogenerated").AnimateKling16ProV1Response>;
|
|
650
|
+
};
|
|
651
|
+
};
|
|
622
652
|
haute: {
|
|
623
653
|
linda: {
|
|
624
654
|
v1: (params: import("../autogenerated").HauteLindaV1Request & {
|
|
@@ -856,6 +886,14 @@ export declare const createSDK: (options: SDKOptions) => {
|
|
|
856
886
|
__taskOutput__?: never;
|
|
857
887
|
}) => Promise<import("../autogenerated").ImageUrlResponseDto[]>;
|
|
858
888
|
};
|
|
889
|
+
videos: {
|
|
890
|
+
get: (params: import("../autogenerated").GetVideoParamsDto & {
|
|
891
|
+
__taskOutput__?: never;
|
|
892
|
+
}) => Promise<import("../autogenerated").VideoEntity>;
|
|
893
|
+
getUrls: (params: import("../autogenerated").GetVideosParamsDto & {
|
|
894
|
+
__taskOutput__?: never;
|
|
895
|
+
}) => Promise<import("../autogenerated").VideoUrlResponseDto[]>;
|
|
896
|
+
};
|
|
859
897
|
operations: {
|
|
860
898
|
get: (params: import("../autogenerated").GetOperationParamsDto & {
|
|
861
899
|
__taskOutput__?: never;
|
|
@@ -867,6 +905,13 @@ export declare const createSDK: (options: SDKOptions) => {
|
|
|
867
905
|
__taskOutput__?: never;
|
|
868
906
|
}) => Promise<import("../types").OperationEntity>;
|
|
869
907
|
run: {
|
|
908
|
+
animate: {
|
|
909
|
+
kling_1_6_pro: {
|
|
910
|
+
v1: (params: import("../autogenerated").AnimateKling16ProV1Request & {
|
|
911
|
+
__taskOutput__?: never;
|
|
912
|
+
}) => Promise<import("../autogenerated").AnimateKling16ProV1Response>;
|
|
913
|
+
};
|
|
914
|
+
};
|
|
870
915
|
haute: {
|
|
871
916
|
linda: {
|
|
872
917
|
v1: (params: import("../autogenerated").HauteLindaV1Request & {
|
|
@@ -1107,6 +1152,14 @@ export declare const createSDK: (options: SDKOptions) => {
|
|
|
1107
1152
|
__taskOutput__?: never;
|
|
1108
1153
|
}) => Promise<import("../autogenerated").ImageUrlResponseDto[]>;
|
|
1109
1154
|
};
|
|
1155
|
+
videos: {
|
|
1156
|
+
get: (params: import("../autogenerated").GetVideoParamsDto & {
|
|
1157
|
+
__taskOutput__?: never;
|
|
1158
|
+
}) => Promise<import("../autogenerated").VideoEntity>;
|
|
1159
|
+
getUrls: (params: import("../autogenerated").GetVideosParamsDto & {
|
|
1160
|
+
__taskOutput__?: never;
|
|
1161
|
+
}) => Promise<import("../autogenerated").VideoUrlResponseDto[]>;
|
|
1162
|
+
};
|
|
1110
1163
|
operations: {
|
|
1111
1164
|
get: (params: import("../autogenerated").GetOperationParamsDto & {
|
|
1112
1165
|
__taskOutput__?: never;
|
|
@@ -1118,6 +1171,13 @@ export declare const createSDK: (options: SDKOptions) => {
|
|
|
1118
1171
|
__taskOutput__?: never;
|
|
1119
1172
|
}) => Promise<import("../types").OperationEntity>;
|
|
1120
1173
|
run: {
|
|
1174
|
+
animate: {
|
|
1175
|
+
kling_1_6_pro: {
|
|
1176
|
+
v1: (params: import("../autogenerated").AnimateKling16ProV1Request & {
|
|
1177
|
+
__taskOutput__?: never;
|
|
1178
|
+
}) => Promise<import("../autogenerated").AnimateKling16ProV1Response>;
|
|
1179
|
+
};
|
|
1180
|
+
};
|
|
1121
1181
|
haute: {
|
|
1122
1182
|
linda: {
|
|
1123
1183
|
v1: (params: import("../autogenerated").HauteLindaV1Request & {
|
|
@@ -88,6 +88,14 @@ declare const pipelines: (options: SDKOptions) => {
|
|
|
88
88
|
__taskOutput__?: never;
|
|
89
89
|
}) => Promise<import("../../autogenerated").ImageUrlResponseDto[]>;
|
|
90
90
|
};
|
|
91
|
+
videos: {
|
|
92
|
+
get: (params: import("../../autogenerated").GetVideoParamsDto & {
|
|
93
|
+
__taskOutput__?: never;
|
|
94
|
+
}) => Promise<import("../../autogenerated").VideoEntity>;
|
|
95
|
+
getUrls: (params: import("../../autogenerated").GetVideosParamsDto & {
|
|
96
|
+
__taskOutput__?: never;
|
|
97
|
+
}) => Promise<import("../../autogenerated").VideoUrlResponseDto[]>;
|
|
98
|
+
};
|
|
91
99
|
operations: {
|
|
92
100
|
get: (params: import("../../autogenerated").GetOperationParamsDto & {
|
|
93
101
|
__taskOutput__?: never;
|
|
@@ -99,6 +107,13 @@ declare const pipelines: (options: SDKOptions) => {
|
|
|
99
107
|
__taskOutput__?: never;
|
|
100
108
|
}) => Promise<import("../../autogenerated").OperationEntity>;
|
|
101
109
|
run: {
|
|
110
|
+
animate: {
|
|
111
|
+
kling_1_6_pro: {
|
|
112
|
+
v1: (params: import("../../autogenerated").AnimateKling16ProV1Request & {
|
|
113
|
+
__taskOutput__?: never;
|
|
114
|
+
}) => Promise<import("../../autogenerated").AnimateKling16ProV1Response>;
|
|
115
|
+
};
|
|
116
|
+
};
|
|
102
117
|
haute: {
|
|
103
118
|
linda: {
|
|
104
119
|
v1: (params: import("../../autogenerated").HauteLindaV1Request & {
|
|
@@ -336,6 +351,14 @@ declare const pipelines: (options: SDKOptions) => {
|
|
|
336
351
|
__taskOutput__?: never;
|
|
337
352
|
}) => Promise<import("../../autogenerated").ImageUrlResponseDto[]>;
|
|
338
353
|
};
|
|
354
|
+
videos: {
|
|
355
|
+
get: (params: import("../../autogenerated").GetVideoParamsDto & {
|
|
356
|
+
__taskOutput__?: never;
|
|
357
|
+
}) => Promise<import("../../autogenerated").VideoEntity>;
|
|
358
|
+
getUrls: (params: import("../../autogenerated").GetVideosParamsDto & {
|
|
359
|
+
__taskOutput__?: never;
|
|
360
|
+
}) => Promise<import("../../autogenerated").VideoUrlResponseDto[]>;
|
|
361
|
+
};
|
|
339
362
|
operations: {
|
|
340
363
|
get: (params: import("../../autogenerated").GetOperationParamsDto & {
|
|
341
364
|
__taskOutput__?: never;
|
|
@@ -347,6 +370,13 @@ declare const pipelines: (options: SDKOptions) => {
|
|
|
347
370
|
__taskOutput__?: never;
|
|
348
371
|
}) => Promise<import("../../autogenerated").OperationEntity>;
|
|
349
372
|
run: {
|
|
373
|
+
animate: {
|
|
374
|
+
kling_1_6_pro: {
|
|
375
|
+
v1: (params: import("../../autogenerated").AnimateKling16ProV1Request & {
|
|
376
|
+
__taskOutput__?: never;
|
|
377
|
+
}) => Promise<import("../../autogenerated").AnimateKling16ProV1Response>;
|
|
378
|
+
};
|
|
379
|
+
};
|
|
350
380
|
haute: {
|
|
351
381
|
linda: {
|
|
352
382
|
v1: (params: import("../../autogenerated").HauteLindaV1Request & {
|
|
@@ -584,6 +614,14 @@ declare const pipelines: (options: SDKOptions) => {
|
|
|
584
614
|
__taskOutput__?: never;
|
|
585
615
|
}) => Promise<import("../../autogenerated").ImageUrlResponseDto[]>;
|
|
586
616
|
};
|
|
617
|
+
videos: {
|
|
618
|
+
get: (params: import("../../autogenerated").GetVideoParamsDto & {
|
|
619
|
+
__taskOutput__?: never;
|
|
620
|
+
}) => Promise<import("../../autogenerated").VideoEntity>;
|
|
621
|
+
getUrls: (params: import("../../autogenerated").GetVideosParamsDto & {
|
|
622
|
+
__taskOutput__?: never;
|
|
623
|
+
}) => Promise<import("../../autogenerated").VideoUrlResponseDto[]>;
|
|
624
|
+
};
|
|
587
625
|
operations: {
|
|
588
626
|
get: (params: import("../../autogenerated").GetOperationParamsDto & {
|
|
589
627
|
__taskOutput__?: never;
|
|
@@ -595,6 +633,13 @@ declare const pipelines: (options: SDKOptions) => {
|
|
|
595
633
|
__taskOutput__?: never;
|
|
596
634
|
}) => Promise<import("../../autogenerated").OperationEntity>;
|
|
597
635
|
run: {
|
|
636
|
+
animate: {
|
|
637
|
+
kling_1_6_pro: {
|
|
638
|
+
v1: (params: import("../../autogenerated").AnimateKling16ProV1Request & {
|
|
639
|
+
__taskOutput__?: never;
|
|
640
|
+
}) => Promise<import("../../autogenerated").AnimateKling16ProV1Response>;
|
|
641
|
+
};
|
|
642
|
+
};
|
|
598
643
|
haute: {
|
|
599
644
|
linda: {
|
|
600
645
|
v1: (params: import("../../autogenerated").HauteLindaV1Request & {
|
|
@@ -835,6 +880,14 @@ declare const pipelines: (options: SDKOptions) => {
|
|
|
835
880
|
__taskOutput__?: never;
|
|
836
881
|
}) => Promise<import("../../autogenerated").ImageUrlResponseDto[]>;
|
|
837
882
|
};
|
|
883
|
+
videos: {
|
|
884
|
+
get: (params: import("../../autogenerated").GetVideoParamsDto & {
|
|
885
|
+
__taskOutput__?: never;
|
|
886
|
+
}) => Promise<import("../../autogenerated").VideoEntity>;
|
|
887
|
+
getUrls: (params: import("../../autogenerated").GetVideosParamsDto & {
|
|
888
|
+
__taskOutput__?: never;
|
|
889
|
+
}) => Promise<import("../../autogenerated").VideoUrlResponseDto[]>;
|
|
890
|
+
};
|
|
838
891
|
operations: {
|
|
839
892
|
get: (params: import("../../autogenerated").GetOperationParamsDto & {
|
|
840
893
|
__taskOutput__?: never;
|
|
@@ -846,6 +899,13 @@ declare const pipelines: (options: SDKOptions) => {
|
|
|
846
899
|
__taskOutput__?: never;
|
|
847
900
|
}) => Promise<import("../../autogenerated").OperationEntity>;
|
|
848
901
|
run: {
|
|
902
|
+
animate: {
|
|
903
|
+
kling_1_6_pro: {
|
|
904
|
+
v1: (params: import("../../autogenerated").AnimateKling16ProV1Request & {
|
|
905
|
+
__taskOutput__?: never;
|
|
906
|
+
}) => Promise<import("../../autogenerated").AnimateKling16ProV1Response>;
|
|
907
|
+
};
|
|
908
|
+
};
|
|
849
909
|
haute: {
|
|
850
910
|
linda: {
|
|
851
911
|
v1: (params: import("../../autogenerated").HauteLindaV1Request & {
|
|
@@ -49,11 +49,20 @@ const pipelines = (options) => {
|
|
|
49
49
|
get: callMethod((methods) => methods.callControllerCallImagesGetV1),
|
|
50
50
|
getUrls: callMethod((methods) => methods.callControllerCallImagesGetManyV1),
|
|
51
51
|
},
|
|
52
|
+
videos: {
|
|
53
|
+
get: callMethod((methods) => methods.callControllerCallVideosGetV1),
|
|
54
|
+
getUrls: callMethod((methods) => methods.callControllerCallVideosGetManyV1),
|
|
55
|
+
},
|
|
52
56
|
operations: {
|
|
53
57
|
get: callMethod((methods) => methods.callControllerCallOperationsGetV1),
|
|
54
58
|
list: callMethod((methods) => methods.callControllerCallOperationsListV1),
|
|
55
59
|
updateMetadata: callMethod((methods) => methods.callControllerCallOperationsMetadataUpdateV1),
|
|
56
60
|
run: {
|
|
61
|
+
animate: {
|
|
62
|
+
kling_1_6_pro: {
|
|
63
|
+
v1: callMethod((methods) => methods.callControllerCallOperationsRunAnimateKling16ProV1V1),
|
|
64
|
+
},
|
|
65
|
+
},
|
|
57
66
|
haute: {
|
|
58
67
|
linda: {
|
|
59
68
|
v1: callMethod((methods) => methods.callControllerCallOperationsRunHauteLindaV1V1),
|