@alicloud/quanmiaolightapp20240801 2.7.0 → 2.8.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/client.d.ts +18 -0
- package/dist/client.js +42 -0
- package/dist/client.js.map +1 -1
- package/dist/models/HotNewsRecommendRequest.d.ts +14 -0
- package/dist/models/HotNewsRecommendRequest.js +58 -0
- package/dist/models/HotNewsRecommendRequest.js.map +1 -0
- package/dist/models/HotNewsRecommendResponse.d.ts +19 -0
- package/dist/models/HotNewsRecommendResponse.js +69 -0
- package/dist/models/HotNewsRecommendResponse.js.map +1 -0
- package/dist/models/HotNewsRecommendResponseBody.d.ts +35 -0
- package/dist/models/HotNewsRecommendResponseBody.js +70 -0
- package/dist/models/HotNewsRecommendResponseBody.js.map +1 -0
- package/dist/models/HotNewsRecommendResponseBodyData.d.ts +15 -0
- package/dist/models/HotNewsRecommendResponseBodyData.js +62 -0
- package/dist/models/HotNewsRecommendResponseBodyData.js.map +1 -0
- package/dist/models/HotNewsRecommendResponseBodyDataNews.d.ts +36 -0
- package/dist/models/HotNewsRecommendResponseBodyDataNews.js +73 -0
- package/dist/models/HotNewsRecommendResponseBodyDataNews.js.map +1 -0
- package/dist/models/RunVideoAnalysisRequestVideoCaptionInfo.d.ts +5 -0
- package/dist/models/RunVideoAnalysisRequestVideoCaptionInfo.js +2 -0
- package/dist/models/RunVideoAnalysisRequestVideoCaptionInfo.js.map +1 -1
- package/dist/models/SubmitVideoAnalysisTaskRequestVideoCaptionInfo.d.ts +5 -0
- package/dist/models/SubmitVideoAnalysisTaskRequestVideoCaptionInfo.js +2 -0
- package/dist/models/SubmitVideoAnalysisTaskRequestVideoCaptionInfo.js.map +1 -1
- package/dist/models/model.d.ts +5 -0
- package/dist/models/model.js +16 -5
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +45 -0
- package/src/models/HotNewsRecommendRequest.ts +27 -0
- package/src/models/HotNewsRecommendResponse.ts +40 -0
- package/src/models/HotNewsRecommendResponseBody.ts +59 -0
- package/src/models/HotNewsRecommendResponseBodyData.ts +31 -0
- package/src/models/HotNewsRecommendResponseBodyDataNews.ts +64 -0
- package/src/models/RunVideoAnalysisRequestVideoCaptionInfo.ts +7 -0
- package/src/models/SubmitVideoAnalysisTaskRequestVideoCaptionInfo.ts +7 -0
- package/src/models/model.ts +5 -0
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class HotNewsRecommendResponseBodyDataNews extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @example
|
|
8
|
+
* xx
|
|
9
|
+
*/
|
|
10
|
+
content?: string;
|
|
11
|
+
imageUrls?: string[];
|
|
12
|
+
/**
|
|
13
|
+
* @example
|
|
14
|
+
* 2024-09-10 15:32:00
|
|
15
|
+
*/
|
|
16
|
+
pubTime?: string;
|
|
17
|
+
searchSource?: string;
|
|
18
|
+
source?: string;
|
|
19
|
+
/**
|
|
20
|
+
* @example
|
|
21
|
+
* xx
|
|
22
|
+
*/
|
|
23
|
+
title?: string;
|
|
24
|
+
/**
|
|
25
|
+
* @example
|
|
26
|
+
* http://xxx
|
|
27
|
+
*/
|
|
28
|
+
url?: string;
|
|
29
|
+
static names(): { [key: string]: string } {
|
|
30
|
+
return {
|
|
31
|
+
content: 'content',
|
|
32
|
+
imageUrls: 'imageUrls',
|
|
33
|
+
pubTime: 'pubTime',
|
|
34
|
+
searchSource: 'searchSource',
|
|
35
|
+
source: 'source',
|
|
36
|
+
title: 'title',
|
|
37
|
+
url: 'url',
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
static types(): { [key: string]: any } {
|
|
42
|
+
return {
|
|
43
|
+
content: 'string',
|
|
44
|
+
imageUrls: { 'type': 'array', 'itemType': 'string' },
|
|
45
|
+
pubTime: 'string',
|
|
46
|
+
searchSource: 'string',
|
|
47
|
+
source: 'string',
|
|
48
|
+
title: 'string',
|
|
49
|
+
url: 'string',
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
validate() {
|
|
54
|
+
if(Array.isArray(this.imageUrls)) {
|
|
55
|
+
$dara.Model.validateArray(this.imageUrls);
|
|
56
|
+
}
|
|
57
|
+
super.validate();
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
constructor(map?: { [key: string]: any }) {
|
|
61
|
+
super(map);
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
|
|
@@ -4,15 +4,22 @@ import { RunVideoAnalysisRequestVideoCaptionInfoVideoCaptions } from "./RunVideo
|
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
export class RunVideoAnalysisRequestVideoCaptionInfo extends $dara.Model {
|
|
7
|
+
/**
|
|
8
|
+
* @example
|
|
9
|
+
* oss:// | http://
|
|
10
|
+
*/
|
|
11
|
+
videoCaptionFileUrl?: string;
|
|
7
12
|
videoCaptions?: RunVideoAnalysisRequestVideoCaptionInfoVideoCaptions[];
|
|
8
13
|
static names(): { [key: string]: string } {
|
|
9
14
|
return {
|
|
15
|
+
videoCaptionFileUrl: 'videoCaptionFileUrl',
|
|
10
16
|
videoCaptions: 'videoCaptions',
|
|
11
17
|
};
|
|
12
18
|
}
|
|
13
19
|
|
|
14
20
|
static types(): { [key: string]: any } {
|
|
15
21
|
return {
|
|
22
|
+
videoCaptionFileUrl: 'string',
|
|
16
23
|
videoCaptions: { 'type': 'array', 'itemType': RunVideoAnalysisRequestVideoCaptionInfoVideoCaptions },
|
|
17
24
|
};
|
|
18
25
|
}
|
|
@@ -4,15 +4,22 @@ import { SubmitVideoAnalysisTaskRequestVideoCaptionInfoVideoCaptions } from "./S
|
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
export class SubmitVideoAnalysisTaskRequestVideoCaptionInfo extends $dara.Model {
|
|
7
|
+
/**
|
|
8
|
+
* @example
|
|
9
|
+
* oss:// | http://
|
|
10
|
+
*/
|
|
11
|
+
videoCaptionFileUrl?: string;
|
|
7
12
|
videoCaptions?: SubmitVideoAnalysisTaskRequestVideoCaptionInfoVideoCaptions[];
|
|
8
13
|
static names(): { [key: string]: string } {
|
|
9
14
|
return {
|
|
15
|
+
videoCaptionFileUrl: 'videoCaptionFileUrl',
|
|
10
16
|
videoCaptions: 'videoCaptions',
|
|
11
17
|
};
|
|
12
18
|
}
|
|
13
19
|
|
|
14
20
|
static types(): { [key: string]: any } {
|
|
15
21
|
return {
|
|
22
|
+
videoCaptionFileUrl: 'string',
|
|
16
23
|
videoCaptions: { 'type': 'array', 'itemType': SubmitVideoAnalysisTaskRequestVideoCaptionInfoVideoCaptions },
|
|
17
24
|
};
|
|
18
25
|
}
|
package/src/models/model.ts
CHANGED
|
@@ -40,6 +40,8 @@ export { GetVideoAnalysisTaskResponseBodyDataPayloadUsage } from './GetVideoAnal
|
|
|
40
40
|
export { GetVideoAnalysisTaskResponseBodyDataPayload } from './GetVideoAnalysisTaskResponseBodyDataPayload';
|
|
41
41
|
export { GetVideoAnalysisTaskResponseBodyDataTaskRunInfo } from './GetVideoAnalysisTaskResponseBodyDataTaskRunInfo';
|
|
42
42
|
export { GetVideoAnalysisTaskResponseBodyData } from './GetVideoAnalysisTaskResponseBodyData';
|
|
43
|
+
export { HotNewsRecommendResponseBodyDataNews } from './HotNewsRecommendResponseBodyDataNews';
|
|
44
|
+
export { HotNewsRecommendResponseBodyData } from './HotNewsRecommendResponseBodyData';
|
|
43
45
|
export { ListAnalysisTagDetailByTaskIdResponseBodyDataContentTags } from './ListAnalysisTagDetailByTaskIdResponseBodyDataContentTags';
|
|
44
46
|
export { ListAnalysisTagDetailByTaskIdResponseBodyData } from './ListAnalysisTagDetailByTaskIdResponseBodyData';
|
|
45
47
|
export { ListHotTopicSummariesResponseBodyDataNewsComments } from './ListHotTopicSummariesResponseBodyDataNewsComments';
|
|
@@ -176,6 +178,9 @@ export { GetVideoAnalysisConfigResponse } from './GetVideoAnalysisConfigResponse
|
|
|
176
178
|
export { GetVideoAnalysisTaskRequest } from './GetVideoAnalysisTaskRequest';
|
|
177
179
|
export { GetVideoAnalysisTaskResponseBody } from './GetVideoAnalysisTaskResponseBody';
|
|
178
180
|
export { GetVideoAnalysisTaskResponse } from './GetVideoAnalysisTaskResponse';
|
|
181
|
+
export { HotNewsRecommendRequest } from './HotNewsRecommendRequest';
|
|
182
|
+
export { HotNewsRecommendResponseBody } from './HotNewsRecommendResponseBody';
|
|
183
|
+
export { HotNewsRecommendResponse } from './HotNewsRecommendResponse';
|
|
179
184
|
export { ListAnalysisTagDetailByTaskIdRequest } from './ListAnalysisTagDetailByTaskIdRequest';
|
|
180
185
|
export { ListAnalysisTagDetailByTaskIdResponseBody } from './ListAnalysisTagDetailByTaskIdResponseBody';
|
|
181
186
|
export { ListAnalysisTagDetailByTaskIdResponse } from './ListAnalysisTagDetailByTaskIdResponse';
|