@volcengine/i18nopenapi 1.0.1 → 1.0.2
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/.turbo/turbo-build.log +7 -7
- package/dist/cjs/index.js +10 -0
- package/dist/esm/api.d.ts +11 -0
- package/dist/esm/api.d.ts.map +1 -1
- package/dist/esm/index.mjs +8 -1
- package/dist/esm/types/base-resp-for-video-project-serial-dub-task-create-output.d.ts +30 -0
- package/dist/esm/types/base-resp-for-video-project-serial-dub-task-create-output.d.ts.map +1 -0
- package/dist/esm/types/convertsubtitle-for-video-project-serial-dub-task-create-input.d.ts +50 -0
- package/dist/esm/types/convertsubtitle-for-video-project-serial-dub-task-create-input.d.ts.map +1 -0
- package/dist/esm/types/convertsubtitle-for-video-project-serial-task-create-input.d.ts +50 -0
- package/dist/esm/types/convertsubtitle-for-video-project-serial-task-create-input.d.ts.map +1 -0
- package/dist/esm/types/data-for-video-project-serial-dub-task-create-output.d.ts +31 -0
- package/dist/esm/types/data-for-video-project-serial-dub-task-create-output.d.ts.map +1 -0
- package/dist/esm/types/index.d.ts +12 -0
- package/dist/esm/types/index.d.ts.map +1 -1
- package/dist/esm/types/pure-video-for-video-project-serial-dub-task-create-input.d.ts +35 -0
- package/dist/esm/types/pure-video-for-video-project-serial-dub-task-create-input.d.ts.map +1 -0
- package/dist/esm/types/serial-info-for-video-project-serial-dub-task-create-input.d.ts +49 -0
- package/dist/esm/types/serial-info-for-video-project-serial-dub-task-create-input.d.ts.map +1 -0
- package/dist/esm/types/serial-info-for-video-project-serial-task-create-input.d.ts +6 -0
- package/dist/esm/types/serial-info-for-video-project-serial-task-create-input.d.ts.map +1 -1
- package/dist/esm/types/subtitle-for-video-project-serial-dub-task-create-input.d.ts +45 -0
- package/dist/esm/types/subtitle-for-video-project-serial-dub-task-create-input.d.ts.map +1 -0
- package/dist/esm/types/target-style-map-for-video-project-serial-dub-task-create-input.d.ts +25 -0
- package/dist/esm/types/target-style-map-for-video-project-serial-dub-task-create-input.d.ts.map +1 -0
- package/dist/esm/types/task-info-for-video-project-serial-dub-task-create-input.d.ts +116 -0
- package/dist/esm/types/task-info-for-video-project-serial-dub-task-create-input.d.ts.map +1 -0
- package/dist/esm/types/video-for-video-project-serial-dub-task-create-input.d.ts +35 -0
- package/dist/esm/types/video-for-video-project-serial-dub-task-create-input.d.ts.map +1 -0
- package/dist/esm/types/video-project-serial-dub-task-create-request.d.ts +37 -0
- package/dist/esm/types/video-project-serial-dub-task-create-request.d.ts.map +1 -0
- package/dist/esm/types/video-project-serial-dub-task-create-response.d.ts +26 -0
- package/dist/esm/types/video-project-serial-dub-task-create-response.d.ts.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/api.ts +19 -1
- package/src/types/base-resp-for-video-project-serial-dub-task-create-output.ts +34 -0
- package/src/types/convertsubtitle-for-video-project-serial-dub-task-create-input.ts +58 -0
- package/src/types/convertsubtitle-for-video-project-serial-task-create-input.ts +58 -0
- package/src/types/data-for-video-project-serial-dub-task-create-output.ts +35 -0
- package/src/types/index.ts +12 -0
- package/src/types/pure-video-for-video-project-serial-dub-task-create-input.ts +40 -0
- package/src/types/serial-info-for-video-project-serial-dub-task-create-input.ts +56 -0
- package/src/types/serial-info-for-video-project-serial-task-create-input.ts +7 -0
- package/src/types/subtitle-for-video-project-serial-dub-task-create-input.ts +52 -0
- package/src/types/target-style-map-for-video-project-serial-dub-task-create-input.ts +28 -0
- package/src/types/task-info-for-video-project-serial-dub-task-create-input.ts +137 -0
- package/src/types/video-for-video-project-serial-dub-task-create-input.ts +40 -0
- package/src/types/video-project-serial-dub-task-create-request.ts +42 -0
- package/src/types/video-project-serial-dub-task-create-response.ts +29 -0
package/src/api.ts
CHANGED
|
@@ -34,6 +34,8 @@ import { VideoProjectCreateRequest } from './types/index';
|
|
|
34
34
|
import { VideoProjectCreateResponse } from './types/index';
|
|
35
35
|
import { VideoProjectListRequest } from './types/index';
|
|
36
36
|
import { VideoProjectListResponse } from './types/index';
|
|
37
|
+
import { VideoProjectSerialDubTaskCreateRequest } from './types/index';
|
|
38
|
+
import { VideoProjectSerialDubTaskCreateResponse } from './types/index';
|
|
37
39
|
import { VideoProjectSerialTaskCreateRequest } from './types/index';
|
|
38
40
|
import { VideoProjectSerialTaskCreateResponse } from './types/index';
|
|
39
41
|
import { VideoProjectTaskDetailRequest } from './types/index';
|
|
@@ -58,13 +60,13 @@ export type ProjectUsersCommandOutput = CommandOutput<ProjectUsersResponse>;
|
|
|
58
60
|
export type ProjectsCommandOutput = CommandOutput<ProjectsResponse>;
|
|
59
61
|
export type VideoProjectCreateCommandOutput = CommandOutput<VideoProjectCreateResponse>;
|
|
60
62
|
export type VideoProjectListCommandOutput = CommandOutput<VideoProjectListResponse>;
|
|
63
|
+
export type VideoProjectSerialDubTaskCreateCommandOutput = CommandOutput<VideoProjectSerialDubTaskCreateResponse>;
|
|
61
64
|
export type VideoProjectSerialTaskCreateCommandOutput = CommandOutput<VideoProjectSerialTaskCreateResponse>;
|
|
62
65
|
export type VideoProjectTaskDetailCommandOutput = CommandOutput<VideoProjectTaskDetailResponse>;
|
|
63
66
|
export type VideoProjectTaskListCommandOutput = CommandOutput<VideoProjectTaskListResponse>;
|
|
64
67
|
export type VideoResourceUploadCommandOutput = CommandOutput<VideoResourceUploadResponse>;
|
|
65
68
|
export type WebhooksCreateCommandOutput = CommandOutput<WebhooksCreateResponse>;
|
|
66
69
|
|
|
67
|
-
|
|
68
70
|
/**
|
|
69
71
|
* I18NOPENAPIClient Service Client
|
|
70
72
|
*/
|
|
@@ -228,6 +230,21 @@ export class VideoProjectListCommand extends Command<
|
|
|
228
230
|
this.requestConfig = buildRequestConfigFromMetaPath(VideoProjectListCommand.metaPath);
|
|
229
231
|
}
|
|
230
232
|
}
|
|
233
|
+
/**
|
|
234
|
+
* Command to VideoProjectSerialDubTaskCreate
|
|
235
|
+
*/
|
|
236
|
+
export class VideoProjectSerialDubTaskCreateCommand extends Command<
|
|
237
|
+
VideoProjectSerialDubTaskCreateRequest,
|
|
238
|
+
VideoProjectSerialDubTaskCreateCommandOutput,
|
|
239
|
+
'VideoProjectSerialDubTaskCreateCommand'
|
|
240
|
+
> {
|
|
241
|
+
static readonly metaPath = '/VideoProjectSerialDubTaskCreate/2021-05-21/i18n_openapi/post/application_json/';
|
|
242
|
+
|
|
243
|
+
constructor(input: VideoProjectSerialDubTaskCreateRequest) {
|
|
244
|
+
super(input);
|
|
245
|
+
this.requestConfig = buildRequestConfigFromMetaPath(VideoProjectSerialDubTaskCreateCommand.metaPath);
|
|
246
|
+
}
|
|
247
|
+
}
|
|
231
248
|
/**
|
|
232
249
|
* Command to VideoProjectSerialTaskCreate
|
|
233
250
|
*/
|
|
@@ -316,6 +333,7 @@ export default {
|
|
|
316
333
|
ProjectsCommand,
|
|
317
334
|
VideoProjectCreateCommand,
|
|
318
335
|
VideoProjectListCommand,
|
|
336
|
+
VideoProjectSerialDubTaskCreateCommand,
|
|
319
337
|
VideoProjectSerialTaskCreateCommand,
|
|
320
338
|
VideoProjectTaskDetailCommand,
|
|
321
339
|
VideoProjectTaskListCommand,
|
|
@@ -0,0 +1,34 @@
|
|
|
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 BaseRespForVideoProjectSerialDubTaskCreateOutput
|
|
20
|
+
*/
|
|
21
|
+
export interface BaseRespForVideoProjectSerialDubTaskCreateOutput {
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* @type {number}
|
|
25
|
+
* @memberof BaseRespForVideoProjectSerialDubTaskCreateOutput
|
|
26
|
+
*/
|
|
27
|
+
StatusCode?: number;
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof BaseRespForVideoProjectSerialDubTaskCreateOutput
|
|
32
|
+
*/
|
|
33
|
+
StatusMessage?: string;
|
|
34
|
+
}
|
|
@@ -0,0 +1,58 @@
|
|
|
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 ConvertsubtitleForVideoProjectSerialDubTaskCreateInput
|
|
20
|
+
*/
|
|
21
|
+
export interface ConvertsubtitleForVideoProjectSerialDubTaskCreateInput {
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* @type {number}
|
|
25
|
+
* @memberof ConvertsubtitleForVideoProjectSerialDubTaskCreateInput
|
|
26
|
+
*/
|
|
27
|
+
arrangement?: number;
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* @type {number}
|
|
31
|
+
* @memberof ConvertsubtitleForVideoProjectSerialDubTaskCreateInput
|
|
32
|
+
*/
|
|
33
|
+
fileType?: number;
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* @type {string}
|
|
37
|
+
* @memberof ConvertsubtitleForVideoProjectSerialDubTaskCreateInput
|
|
38
|
+
*/
|
|
39
|
+
name?: string;
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* @type {number}
|
|
43
|
+
* @memberof ConvertsubtitleForVideoProjectSerialDubTaskCreateInput
|
|
44
|
+
*/
|
|
45
|
+
subtitleLang?: number;
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* @type {string}
|
|
49
|
+
* @memberof ConvertsubtitleForVideoProjectSerialDubTaskCreateInput
|
|
50
|
+
*/
|
|
51
|
+
targetLang?: string;
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
* @type {string}
|
|
55
|
+
* @memberof ConvertsubtitleForVideoProjectSerialDubTaskCreateInput
|
|
56
|
+
*/
|
|
57
|
+
uri?: string;
|
|
58
|
+
}
|
|
@@ -0,0 +1,58 @@
|
|
|
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 ConvertsubtitleForVideoProjectSerialTaskCreateInput
|
|
20
|
+
*/
|
|
21
|
+
export interface ConvertsubtitleForVideoProjectSerialTaskCreateInput {
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* @type {number}
|
|
25
|
+
* @memberof ConvertsubtitleForVideoProjectSerialTaskCreateInput
|
|
26
|
+
*/
|
|
27
|
+
arrangement?: number;
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* @type {number}
|
|
31
|
+
* @memberof ConvertsubtitleForVideoProjectSerialTaskCreateInput
|
|
32
|
+
*/
|
|
33
|
+
fileType?: number;
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* @type {string}
|
|
37
|
+
* @memberof ConvertsubtitleForVideoProjectSerialTaskCreateInput
|
|
38
|
+
*/
|
|
39
|
+
name?: string;
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* @type {number}
|
|
43
|
+
* @memberof ConvertsubtitleForVideoProjectSerialTaskCreateInput
|
|
44
|
+
*/
|
|
45
|
+
subtitleLang?: number;
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* @type {string}
|
|
49
|
+
* @memberof ConvertsubtitleForVideoProjectSerialTaskCreateInput
|
|
50
|
+
*/
|
|
51
|
+
targetLang?: string;
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
* @type {string}
|
|
55
|
+
* @memberof ConvertsubtitleForVideoProjectSerialTaskCreateInput
|
|
56
|
+
*/
|
|
57
|
+
uri?: string;
|
|
58
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
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 { BaseRespForVideoProjectSerialDubTaskCreateOutput } from './base-resp-for-video-project-serial-dub-task-create-output';
|
|
16
|
+
/**
|
|
17
|
+
*
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface DataForVideoProjectSerialDubTaskCreateOutput
|
|
21
|
+
*/
|
|
22
|
+
export interface DataForVideoProjectSerialDubTaskCreateOutput {
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
* @type {BaseRespForVideoProjectSerialDubTaskCreateOutput}
|
|
26
|
+
* @memberof DataForVideoProjectSerialDubTaskCreateOutput
|
|
27
|
+
*/
|
|
28
|
+
BaseResp?: BaseRespForVideoProjectSerialDubTaskCreateOutput;
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* @type {Array<string>}
|
|
32
|
+
* @memberof DataForVideoProjectSerialDubTaskCreateOutput
|
|
33
|
+
*/
|
|
34
|
+
TaskIDs?: Array<string>;
|
|
35
|
+
}
|
package/src/types/index.ts
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
export * from './auto-fill-target-text-for-project-detail-output';
|
|
2
2
|
export * from './auto-fill-target-text-for-projects-output';
|
|
3
3
|
export * from './auto-fill-target-text-for-video-project-list-output';
|
|
4
|
+
export * from './base-resp-for-video-project-serial-dub-task-create-output';
|
|
4
5
|
export * from './base-resp-for-video-project-serial-task-create-output';
|
|
6
|
+
export * from './convertsubtitle-for-video-project-serial-dub-task-create-input';
|
|
7
|
+
export * from './convertsubtitle-for-video-project-serial-task-create-input';
|
|
5
8
|
export * from './create-video-create-request';
|
|
6
9
|
export * from './create-video-create-response';
|
|
7
10
|
export * from './creator-for-video-project-task-detail-output';
|
|
@@ -14,6 +17,7 @@ export * from './data-for-project-users-output';
|
|
|
14
17
|
export * from './data-for-projects-output';
|
|
15
18
|
export * from './data-for-video-project-create-output';
|
|
16
19
|
export * from './data-for-video-project-list-output';
|
|
20
|
+
export * from './data-for-video-project-serial-dub-task-create-output';
|
|
17
21
|
export * from './data-for-video-project-serial-task-create-output';
|
|
18
22
|
export * from './data-for-video-project-task-detail-output';
|
|
19
23
|
export * from './data-for-video-project-task-list-output';
|
|
@@ -38,31 +42,39 @@ export * from './project-users-request';
|
|
|
38
42
|
export * from './project-users-response';
|
|
39
43
|
export * from './projects-request';
|
|
40
44
|
export * from './projects-response';
|
|
45
|
+
export * from './pure-video-for-video-project-serial-dub-task-create-input';
|
|
41
46
|
export * from './pure-video-for-video-project-serial-task-create-input';
|
|
47
|
+
export * from './serial-info-for-video-project-serial-dub-task-create-input';
|
|
42
48
|
export * from './serial-info-for-video-project-serial-task-create-input';
|
|
43
49
|
export * from './setting-for-project-detail-output';
|
|
44
50
|
export * from './setting-for-projects-output';
|
|
45
51
|
export * from './setting-for-video-project-list-output';
|
|
46
52
|
export * from './source-subtitle-file-info-for-video-project-task-detail-output';
|
|
47
53
|
export * from './sub-task-for-video-project-task-detail-output';
|
|
54
|
+
export * from './subtitle-for-video-project-serial-dub-task-create-input';
|
|
48
55
|
export * from './subtitle-for-video-project-serial-task-create-input';
|
|
49
56
|
export * from './suppression-video-info-for-video-project-task-detail-output';
|
|
57
|
+
export * from './target-style-map-for-video-project-serial-dub-task-create-input';
|
|
50
58
|
export * from './target-style-map-for-video-project-serial-task-create-input';
|
|
51
59
|
export * from './target-subtitle-file-info-for-video-project-task-detail-output';
|
|
52
60
|
export * from './task-for-video-project-task-detail-output';
|
|
53
61
|
export * from './task-for-video-project-task-list-output';
|
|
62
|
+
export * from './task-info-for-video-project-serial-dub-task-create-input';
|
|
54
63
|
export * from './task-info-for-video-project-serial-task-create-input';
|
|
55
64
|
export * from './text-validate-for-project-detail-output';
|
|
56
65
|
export * from './text-validate-for-projects-output';
|
|
57
66
|
export * from './text-validate-for-video-project-list-output';
|
|
58
67
|
export * from './video-detail-for-video-project-task-detail-output';
|
|
59
68
|
export * from './video-details-with-ai-remove-for-video-project-task-detail-output';
|
|
69
|
+
export * from './video-for-video-project-serial-dub-task-create-input';
|
|
60
70
|
export * from './video-for-video-project-serial-task-create-input';
|
|
61
71
|
export * from './video-meta-for-video-resource-upload-output';
|
|
62
72
|
export * from './video-project-create-request';
|
|
63
73
|
export * from './video-project-create-response';
|
|
64
74
|
export * from './video-project-list-request';
|
|
65
75
|
export * from './video-project-list-response';
|
|
76
|
+
export * from './video-project-serial-dub-task-create-request';
|
|
77
|
+
export * from './video-project-serial-dub-task-create-response';
|
|
66
78
|
export * from './video-project-serial-task-create-request';
|
|
67
79
|
export * from './video-project-serial-task-create-response';
|
|
68
80
|
export * from './video-project-task-detail-request';
|
|
@@ -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 PureVideoForVideoProjectSerialDubTaskCreateInput
|
|
20
|
+
*/
|
|
21
|
+
export interface PureVideoForVideoProjectSerialDubTaskCreateInput {
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof PureVideoForVideoProjectSerialDubTaskCreateInput
|
|
26
|
+
*/
|
|
27
|
+
name?: string;
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof PureVideoForVideoProjectSerialDubTaskCreateInput
|
|
32
|
+
*/
|
|
33
|
+
vid?: string;
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* @type {string}
|
|
37
|
+
* @memberof PureVideoForVideoProjectSerialDubTaskCreateInput
|
|
38
|
+
*/
|
|
39
|
+
videoUrl?: string;
|
|
40
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
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 { ConvertsubtitleForVideoProjectSerialDubTaskCreateInput } from './convertsubtitle-for-video-project-serial-dub-task-create-input';
|
|
16
|
+
import { PureVideoForVideoProjectSerialDubTaskCreateInput } from './pure-video-for-video-project-serial-dub-task-create-input';
|
|
17
|
+
import { SubtitleForVideoProjectSerialDubTaskCreateInput } from './subtitle-for-video-project-serial-dub-task-create-input';
|
|
18
|
+
import { VideoForVideoProjectSerialDubTaskCreateInput } from './video-for-video-project-serial-dub-task-create-input';
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface SerialInfoForVideoProjectSerialDubTaskCreateInput
|
|
24
|
+
*/
|
|
25
|
+
export interface SerialInfoForVideoProjectSerialDubTaskCreateInput {
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* @type {number}
|
|
29
|
+
* @memberof SerialInfoForVideoProjectSerialDubTaskCreateInput
|
|
30
|
+
*/
|
|
31
|
+
episode?: number;
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* @type {PureVideoForVideoProjectSerialDubTaskCreateInput}
|
|
35
|
+
* @memberof SerialInfoForVideoProjectSerialDubTaskCreateInput
|
|
36
|
+
*/
|
|
37
|
+
pureVideo?: PureVideoForVideoProjectSerialDubTaskCreateInput;
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* @type {SubtitleForVideoProjectSerialDubTaskCreateInput}
|
|
41
|
+
* @memberof SerialInfoForVideoProjectSerialDubTaskCreateInput
|
|
42
|
+
*/
|
|
43
|
+
subtitle?: SubtitleForVideoProjectSerialDubTaskCreateInput;
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* @type {Array<ConvertsubtitleForVideoProjectSerialDubTaskCreateInput>}
|
|
47
|
+
* @memberof SerialInfoForVideoProjectSerialDubTaskCreateInput
|
|
48
|
+
*/
|
|
49
|
+
subtitles?: Array<ConvertsubtitleForVideoProjectSerialDubTaskCreateInput>;
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* @type {VideoForVideoProjectSerialDubTaskCreateInput}
|
|
53
|
+
* @memberof SerialInfoForVideoProjectSerialDubTaskCreateInput
|
|
54
|
+
*/
|
|
55
|
+
video?: VideoForVideoProjectSerialDubTaskCreateInput;
|
|
56
|
+
}
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
* Do not edit the class manually.
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
|
+
import { ConvertsubtitleForVideoProjectSerialTaskCreateInput } from './convertsubtitle-for-video-project-serial-task-create-input';
|
|
15
16
|
import { PureVideoForVideoProjectSerialTaskCreateInput } from './pure-video-for-video-project-serial-task-create-input';
|
|
16
17
|
import { SubtitleForVideoProjectSerialTaskCreateInput } from './subtitle-for-video-project-serial-task-create-input';
|
|
17
18
|
import { VideoForVideoProjectSerialTaskCreateInput } from './video-for-video-project-serial-task-create-input';
|
|
@@ -41,6 +42,12 @@ export interface SerialInfoForVideoProjectSerialTaskCreateInput {
|
|
|
41
42
|
*/
|
|
42
43
|
subtitle?: SubtitleForVideoProjectSerialTaskCreateInput;
|
|
43
44
|
|
|
45
|
+
/**
|
|
46
|
+
* @type {Array<ConvertsubtitleForVideoProjectSerialTaskCreateInput>}
|
|
47
|
+
* @memberof SerialInfoForVideoProjectSerialTaskCreateInput
|
|
48
|
+
*/
|
|
49
|
+
subtitles?: Array<ConvertsubtitleForVideoProjectSerialTaskCreateInput>;
|
|
50
|
+
|
|
44
51
|
/**
|
|
45
52
|
* @type {VideoForVideoProjectSerialTaskCreateInput}
|
|
46
53
|
* @memberof SerialInfoForVideoProjectSerialTaskCreateInput
|
|
@@ -0,0 +1,52 @@
|
|
|
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 SubtitleForVideoProjectSerialDubTaskCreateInput
|
|
20
|
+
*/
|
|
21
|
+
export interface SubtitleForVideoProjectSerialDubTaskCreateInput {
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* @type {number}
|
|
25
|
+
* @memberof SubtitleForVideoProjectSerialDubTaskCreateInput
|
|
26
|
+
*/
|
|
27
|
+
arrangement?: number;
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* @type {number}
|
|
31
|
+
* @memberof SubtitleForVideoProjectSerialDubTaskCreateInput
|
|
32
|
+
*/
|
|
33
|
+
fileType?: number;
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* @type {string}
|
|
37
|
+
* @memberof SubtitleForVideoProjectSerialDubTaskCreateInput
|
|
38
|
+
*/
|
|
39
|
+
name?: string;
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* @type {number}
|
|
43
|
+
* @memberof SubtitleForVideoProjectSerialDubTaskCreateInput
|
|
44
|
+
*/
|
|
45
|
+
subtitleLang?: number;
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* @type {string}
|
|
49
|
+
* @memberof SubtitleForVideoProjectSerialDubTaskCreateInput
|
|
50
|
+
*/
|
|
51
|
+
uri?: string;
|
|
52
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
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 TargetStyleMapForVideoProjectSerialDubTaskCreateInput
|
|
20
|
+
*/
|
|
21
|
+
export interface TargetStyleMapForVideoProjectSerialDubTaskCreateInput {
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof TargetStyleMapForVideoProjectSerialDubTaskCreateInput
|
|
26
|
+
*/
|
|
27
|
+
af?: string;
|
|
28
|
+
}
|
|
@@ -0,0 +1,137 @@
|
|
|
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 { TargetStyleMapForVideoProjectSerialDubTaskCreateInput } from './target-style-map-for-video-project-serial-dub-task-create-input';
|
|
16
|
+
/**
|
|
17
|
+
*
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface TaskInfoForVideoProjectSerialDubTaskCreateInput
|
|
21
|
+
*/
|
|
22
|
+
export interface TaskInfoForVideoProjectSerialDubTaskCreateInput {
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof TaskInfoForVideoProjectSerialDubTaskCreateInput
|
|
27
|
+
*/
|
|
28
|
+
aiRemoveType?: string;
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof TaskInfoForVideoProjectSerialDubTaskCreateInput
|
|
33
|
+
*/
|
|
34
|
+
asrModel?: number;
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* @type {number}
|
|
38
|
+
* @memberof TaskInfoForVideoProjectSerialDubTaskCreateInput
|
|
39
|
+
*/
|
|
40
|
+
bgmPolicy?: number;
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof TaskInfoForVideoProjectSerialDubTaskCreateInput
|
|
45
|
+
*/
|
|
46
|
+
comment?: string;
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* @type {number}
|
|
50
|
+
* @memberof TaskInfoForVideoProjectSerialDubTaskCreateInput
|
|
51
|
+
*/
|
|
52
|
+
deadline?: number;
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof TaskInfoForVideoProjectSerialDubTaskCreateInput
|
|
57
|
+
*/
|
|
58
|
+
dramaCoverUrl?: string;
|
|
59
|
+
|
|
60
|
+
/**
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof TaskInfoForVideoProjectSerialDubTaskCreateInput
|
|
63
|
+
*/
|
|
64
|
+
dramaDescription?: string;
|
|
65
|
+
|
|
66
|
+
/**
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof TaskInfoForVideoProjectSerialDubTaskCreateInput
|
|
69
|
+
*/
|
|
70
|
+
dramaTitle?: string;
|
|
71
|
+
|
|
72
|
+
/**
|
|
73
|
+
* @type {boolean}
|
|
74
|
+
* @memberof TaskInfoForVideoProjectSerialDubTaskCreateInput
|
|
75
|
+
*/
|
|
76
|
+
isDub?: boolean;
|
|
77
|
+
|
|
78
|
+
/**
|
|
79
|
+
* @type {boolean}
|
|
80
|
+
* @memberof TaskInfoForVideoProjectSerialDubTaskCreateInput
|
|
81
|
+
*/
|
|
82
|
+
needTranslateCover?: boolean;
|
|
83
|
+
|
|
84
|
+
/**
|
|
85
|
+
* @type {boolean}
|
|
86
|
+
* @memberof TaskInfoForVideoProjectSerialDubTaskCreateInput
|
|
87
|
+
*/
|
|
88
|
+
needTranslateDesc?: boolean;
|
|
89
|
+
|
|
90
|
+
/**
|
|
91
|
+
* @type {boolean}
|
|
92
|
+
* @memberof TaskInfoForVideoProjectSerialDubTaskCreateInput
|
|
93
|
+
*/
|
|
94
|
+
needTranslateTitle?: boolean;
|
|
95
|
+
|
|
96
|
+
/**
|
|
97
|
+
* @type {boolean}
|
|
98
|
+
* @memberof TaskInfoForVideoProjectSerialDubTaskCreateInput
|
|
99
|
+
*/
|
|
100
|
+
needTranslateTitleAndDesc?: boolean;
|
|
101
|
+
|
|
102
|
+
/**
|
|
103
|
+
* @type {number}
|
|
104
|
+
* @memberof TaskInfoForVideoProjectSerialDubTaskCreateInput
|
|
105
|
+
*/
|
|
106
|
+
serialNumber?: number;
|
|
107
|
+
|
|
108
|
+
/**
|
|
109
|
+
* @type {string}
|
|
110
|
+
* @memberof TaskInfoForVideoProjectSerialDubTaskCreateInput
|
|
111
|
+
*/
|
|
112
|
+
sourceLang?: string;
|
|
113
|
+
|
|
114
|
+
/**
|
|
115
|
+
* @type {Array<string>}
|
|
116
|
+
* @memberof TaskInfoForVideoProjectSerialDubTaskCreateInput
|
|
117
|
+
*/
|
|
118
|
+
targetLangs?: Array<string>;
|
|
119
|
+
|
|
120
|
+
/**
|
|
121
|
+
* @type {TargetStyleMapForVideoProjectSerialDubTaskCreateInput}
|
|
122
|
+
* @memberof TaskInfoForVideoProjectSerialDubTaskCreateInput
|
|
123
|
+
*/
|
|
124
|
+
targetStyleMap?: TargetStyleMapForVideoProjectSerialDubTaskCreateInput;
|
|
125
|
+
|
|
126
|
+
/**
|
|
127
|
+
* @type {string}
|
|
128
|
+
* @memberof TaskInfoForVideoProjectSerialDubTaskCreateInput
|
|
129
|
+
*/
|
|
130
|
+
taskName?: string;
|
|
131
|
+
|
|
132
|
+
/**
|
|
133
|
+
* @type {boolean}
|
|
134
|
+
* @memberof TaskInfoForVideoProjectSerialDubTaskCreateInput
|
|
135
|
+
*/
|
|
136
|
+
useMT?: boolean;
|
|
137
|
+
}
|
|
@@ -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 VideoForVideoProjectSerialDubTaskCreateInput
|
|
20
|
+
*/
|
|
21
|
+
export interface VideoForVideoProjectSerialDubTaskCreateInput {
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof VideoForVideoProjectSerialDubTaskCreateInput
|
|
26
|
+
*/
|
|
27
|
+
name?: string;
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof VideoForVideoProjectSerialDubTaskCreateInput
|
|
32
|
+
*/
|
|
33
|
+
vid?: string;
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* @type {string}
|
|
37
|
+
* @memberof VideoForVideoProjectSerialDubTaskCreateInput
|
|
38
|
+
*/
|
|
39
|
+
videoUrl?: string;
|
|
40
|
+
}
|