Skip to content

Commit 239c7cc

Browse files
Merge "master" into "id-Node.js-2025-10-30-online-2263-2026_02_09_14_21_47"
Conflicts: meta.json
2 parents f1cf6f4 + ebf291f commit 239c7cc

File tree

110 files changed

+5995
-4
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

110 files changed

+5995
-4
lines changed

meta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"lasted": "1.0.6",
3-
"meta_commit": "fe0c47922d65fc18be997b8034f7393457e1f116"
3+
"meta_commit": "94108205a5072bdcdff51fb13907025c154c055b"
44
}

service/i18nopenapi/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@volcengine/i18nopenapi",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"description": "swagger client for @volcengine/i18nopenapi",
55
"license": "Apache-2.0",
66
"main": "./dist/cjs/index.js",

service/i18nopenapi/src/api.ts

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ import { VideoProjectSerialDubTaskCreateRequest } from './types/index';
3838
import { VideoProjectSerialDubTaskCreateResponse } from './types/index';
3939
import { VideoProjectSerialTaskCreateRequest } from './types/index';
4040
import { VideoProjectSerialTaskCreateResponse } from './types/index';
41+
import { VideoProjectSuppressionStartRequest } from './types/index';
42+
import { VideoProjectSuppressionStartResponse } from './types/index';
4143
import { VideoProjectTaskDetailRequest } from './types/index';
4244
import { VideoProjectTaskDetailResponse } from './types/index';
4345
import { VideoProjectTaskListRequest } from './types/index';
@@ -62,6 +64,7 @@ export type VideoProjectCreateCommandOutput = CommandOutput<VideoProjectCreateRe
6264
export type VideoProjectListCommandOutput = CommandOutput<VideoProjectListResponse>;
6365
export type VideoProjectSerialDubTaskCreateCommandOutput = CommandOutput<VideoProjectSerialDubTaskCreateResponse>;
6466
export type VideoProjectSerialTaskCreateCommandOutput = CommandOutput<VideoProjectSerialTaskCreateResponse>;
67+
export type VideoProjectSuppressionStartCommandOutput = CommandOutput<VideoProjectSuppressionStartResponse>;
6568
export type VideoProjectTaskDetailCommandOutput = CommandOutput<VideoProjectTaskDetailResponse>;
6669
export type VideoProjectTaskListCommandOutput = CommandOutput<VideoProjectTaskListResponse>;
6770
export type VideoResourceUploadCommandOutput = CommandOutput<VideoResourceUploadResponse>;
@@ -260,6 +263,21 @@ export class VideoProjectSerialTaskCreateCommand extends Command<
260263
this.requestConfig = buildRequestConfigFromMetaPath(VideoProjectSerialTaskCreateCommand.metaPath);
261264
}
262265
}
266+
/**
267+
* Command to VideoProjectSuppressionStart
268+
*/
269+
export class VideoProjectSuppressionStartCommand extends Command<
270+
VideoProjectSuppressionStartRequest,
271+
VideoProjectSuppressionStartCommandOutput,
272+
'VideoProjectSuppressionStartCommand'
273+
> {
274+
static readonly metaPath = '/VideoProjectSuppressionStart/2021-05-21/i18n_openapi/post/application_json/';
275+
276+
constructor(input: VideoProjectSuppressionStartRequest) {
277+
super(input);
278+
this.requestConfig = buildRequestConfigFromMetaPath(VideoProjectSuppressionStartCommand.metaPath);
279+
}
280+
}
263281
/**
264282
* Command to VideoProjectTaskDetail
265283
*/
@@ -335,6 +353,7 @@ export default {
335353
VideoProjectListCommand,
336354
VideoProjectSerialDubTaskCreateCommand,
337355
VideoProjectSerialTaskCreateCommand,
356+
VideoProjectSuppressionStartCommand,
338357
VideoProjectTaskDetailCommand,
339358
VideoProjectTaskListCommand,
340359
VideoResourceUploadCommand,

service/i18nopenapi/src/types/data-for-video-project-serial-dub-task-create-output.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
*/
1414

1515
import { BaseRespForVideoProjectSerialDubTaskCreateOutput } from './base-resp-for-video-project-serial-dub-task-create-output';
16+
import { SubtitleFileCheckReportForVideoProjectSerialDubTaskCreateOutput } from './subtitle-file-check-report-for-video-project-serial-dub-task-create-output';
1617
/**
1718
*
1819
*
@@ -27,6 +28,12 @@ export interface DataForVideoProjectSerialDubTaskCreateOutput {
2728
*/
2829
BaseResp?: BaseRespForVideoProjectSerialDubTaskCreateOutput;
2930

31+
/**
32+
* @type {Array<SubtitleFileCheckReportForVideoProjectSerialDubTaskCreateOutput>}
33+
* @memberof DataForVideoProjectSerialDubTaskCreateOutput
34+
*/
35+
SubtitleFileCheckReports?: Array<SubtitleFileCheckReportForVideoProjectSerialDubTaskCreateOutput>;
36+
3037
/**
3138
* @type {Array<string>}
3239
* @memberof DataForVideoProjectSerialDubTaskCreateOutput

service/i18nopenapi/src/types/data-for-video-project-serial-task-create-output.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
*/
1414

1515
import { BaseRespForVideoProjectSerialTaskCreateOutput } from './base-resp-for-video-project-serial-task-create-output';
16+
import { SubtitleFileCheckReportForVideoProjectSerialTaskCreateOutput } from './subtitle-file-check-report-for-video-project-serial-task-create-output';
1617
/**
1718
*
1819
*
@@ -27,6 +28,12 @@ export interface DataForVideoProjectSerialTaskCreateOutput {
2728
*/
2829
BaseResp?: BaseRespForVideoProjectSerialTaskCreateOutput;
2930

31+
/**
32+
* @type {Array<SubtitleFileCheckReportForVideoProjectSerialTaskCreateOutput>}
33+
* @memberof DataForVideoProjectSerialTaskCreateOutput
34+
*/
35+
SubtitleFileCheckReports?: Array<SubtitleFileCheckReportForVideoProjectSerialTaskCreateOutput>;
36+
3037
/**
3138
* @type {Array<string>}
3239
* @memberof DataForVideoProjectSerialTaskCreateOutput

service/i18nopenapi/src/types/index.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ export * from './data-for-video-resource-upload-output';
2525
export * from './extra-for-project-detail-output';
2626
export * from './extra-for-projects-output';
2727
export * from './extra-for-video-project-list-output';
28+
export * from './issue-for-video-project-serial-dub-task-create-output';
29+
export * from './issue-for-video-project-serial-task-create-output';
2830
export * from './pagination-for-project-namespaces-output';
2931
export * from './pagination-for-project-users-output';
3032
export * from './pagination-for-projects-output';
@@ -51,8 +53,12 @@ export * from './setting-for-projects-output';
5153
export * from './setting-for-video-project-list-output';
5254
export * from './source-subtitle-file-info-for-video-project-task-detail-output';
5355
export * from './sub-task-for-video-project-task-detail-output';
56+
export * from './subtitle-file-check-report-for-video-project-serial-dub-task-create-output';
57+
export * from './subtitle-file-check-report-for-video-project-serial-task-create-output';
5458
export * from './subtitle-for-video-project-serial-dub-task-create-input';
5559
export * from './subtitle-for-video-project-serial-task-create-input';
60+
export * from './suppression-params-for-video-project-serial-dub-task-create-input';
61+
export * from './suppression-params-for-video-project-serial-task-create-input';
5662
export * from './suppression-video-info-for-video-project-task-detail-output';
5763
export * from './target-style-map-for-video-project-serial-dub-task-create-input';
5864
export * from './target-style-map-for-video-project-serial-task-create-input';
@@ -77,6 +83,8 @@ export * from './video-project-serial-dub-task-create-request';
7783
export * from './video-project-serial-dub-task-create-response';
7884
export * from './video-project-serial-task-create-request';
7985
export * from './video-project-serial-task-create-response';
86+
export * from './video-project-suppression-start-request';
87+
export * from './video-project-suppression-start-response';
8088
export * from './video-project-task-detail-request';
8189
export * from './video-project-task-detail-response';
8290
export * from './video-project-task-list-request';
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
/* tslint:disable */
2+
/* eslint-disable */
3+
/**
4+
* i18n_openapi
5+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
6+
*
7+
* OpenAPI spec version: common-version
8+
*
9+
*
10+
* NOTE: This class is auto generated by the swagger code generator program.
11+
* https://github.com/swagger-api/swagger-codegen.git
12+
* Do not edit the class manually.
13+
*/
14+
15+
/**
16+
*
17+
*
18+
* @export
19+
* @interface IssueForVideoProjectSerialDubTaskCreateOutput
20+
*/
21+
export interface IssueForVideoProjectSerialDubTaskCreateOutput {
22+
23+
/**
24+
* @type {boolean}
25+
* @memberof IssueForVideoProjectSerialDubTaskCreateOutput
26+
*/
27+
CheckPass?: boolean;
28+
29+
/**
30+
* @type {number}
31+
* @memberof IssueForVideoProjectSerialDubTaskCreateOutput
32+
*/
33+
Code?: number;
34+
35+
/**
36+
* @type {string}
37+
* @memberof IssueForVideoProjectSerialDubTaskCreateOutput
38+
*/
39+
Msg?: string;
40+
}
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
/* tslint:disable */
2+
/* eslint-disable */
3+
/**
4+
* i18n_openapi
5+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
6+
*
7+
* OpenAPI spec version: common-version
8+
*
9+
*
10+
* NOTE: This class is auto generated by the swagger code generator program.
11+
* https://github.com/swagger-api/swagger-codegen.git
12+
* Do not edit the class manually.
13+
*/
14+
15+
/**
16+
*
17+
*
18+
* @export
19+
* @interface IssueForVideoProjectSerialTaskCreateOutput
20+
*/
21+
export interface IssueForVideoProjectSerialTaskCreateOutput {
22+
23+
/**
24+
* @type {boolean}
25+
* @memberof IssueForVideoProjectSerialTaskCreateOutput
26+
*/
27+
CheckPass?: boolean;
28+
29+
/**
30+
* @type {number}
31+
* @memberof IssueForVideoProjectSerialTaskCreateOutput
32+
*/
33+
Code?: number;
34+
35+
/**
36+
* @type {string}
37+
* @memberof IssueForVideoProjectSerialTaskCreateOutput
38+
*/
39+
Msg?: string;
40+
}
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
/* tslint:disable */
2+
/* eslint-disable */
3+
/**
4+
* i18n_openapi
5+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
6+
*
7+
* OpenAPI spec version: common-version
8+
*
9+
*
10+
* NOTE: This class is auto generated by the swagger code generator program.
11+
* https://github.com/swagger-api/swagger-codegen.git
12+
* Do not edit the class manually.
13+
*/
14+
15+
import { IssueForVideoProjectSerialDubTaskCreateOutput } from './issue-for-video-project-serial-dub-task-create-output';
16+
/**
17+
*
18+
*
19+
* @export
20+
* @interface SubtitleFileCheckReportForVideoProjectSerialDubTaskCreateOutput
21+
*/
22+
export interface SubtitleFileCheckReportForVideoProjectSerialDubTaskCreateOutput {
23+
24+
/**
25+
* @type {string}
26+
* @memberof SubtitleFileCheckReportForVideoProjectSerialDubTaskCreateOutput
27+
*/
28+
EpisodeNum?: string;
29+
30+
/**
31+
* @type {Array<IssueForVideoProjectSerialDubTaskCreateOutput>}
32+
* @memberof SubtitleFileCheckReportForVideoProjectSerialDubTaskCreateOutput
33+
*/
34+
Issues?: Array<IssueForVideoProjectSerialDubTaskCreateOutput>;
35+
36+
/**
37+
* @type {string}
38+
* @memberof SubtitleFileCheckReportForVideoProjectSerialDubTaskCreateOutput
39+
*/
40+
SourceLanguage?: string;
41+
42+
/**
43+
* @type {string}
44+
* @memberof SubtitleFileCheckReportForVideoProjectSerialDubTaskCreateOutput
45+
*/
46+
TargetLanguage?: string;
47+
}
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
/* tslint:disable */
2+
/* eslint-disable */
3+
/**
4+
* i18n_openapi
5+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
6+
*
7+
* OpenAPI spec version: common-version
8+
*
9+
*
10+
* NOTE: This class is auto generated by the swagger code generator program.
11+
* https://github.com/swagger-api/swagger-codegen.git
12+
* Do not edit the class manually.
13+
*/
14+
15+
import { IssueForVideoProjectSerialTaskCreateOutput } from './issue-for-video-project-serial-task-create-output';
16+
/**
17+
*
18+
*
19+
* @export
20+
* @interface SubtitleFileCheckReportForVideoProjectSerialTaskCreateOutput
21+
*/
22+
export interface SubtitleFileCheckReportForVideoProjectSerialTaskCreateOutput {
23+
24+
/**
25+
* @type {string}
26+
* @memberof SubtitleFileCheckReportForVideoProjectSerialTaskCreateOutput
27+
*/
28+
EpisodeNum?: string;
29+
30+
/**
31+
* @type {Array<IssueForVideoProjectSerialTaskCreateOutput>}
32+
* @memberof SubtitleFileCheckReportForVideoProjectSerialTaskCreateOutput
33+
*/
34+
Issues?: Array<IssueForVideoProjectSerialTaskCreateOutput>;
35+
36+
/**
37+
* @type {string}
38+
* @memberof SubtitleFileCheckReportForVideoProjectSerialTaskCreateOutput
39+
*/
40+
SourceLanguage?: string;
41+
42+
/**
43+
* @type {string}
44+
* @memberof SubtitleFileCheckReportForVideoProjectSerialTaskCreateOutput
45+
*/
46+
TargetLanguage?: string;
47+
}

0 commit comments

Comments
 (0)