@alicloud/aimiaobi20230801 1.8.1 → 1.8.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/dist/client.d.ts +5 -0
- package/dist/client.js +10 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +15 -0
package/dist/client.d.ts
CHANGED
|
@@ -10046,6 +10046,7 @@ export declare class GetTopicSelectionPerspectiveAnalysisTaskResponseBodyDataFre
|
|
|
10046
10046
|
});
|
|
10047
10047
|
}
|
|
10048
10048
|
export declare class GetTopicSelectionPerspectiveAnalysisTaskResponseBodyDataHotViewPointsResultAttitudesNews extends $tea.Model {
|
|
10049
|
+
content?: string;
|
|
10049
10050
|
/**
|
|
10050
10051
|
* @example
|
|
10051
10052
|
* 9957175DEDCF49C5ACF7A956B4FD67B2
|
|
@@ -10061,16 +10062,20 @@ export declare class GetTopicSelectionPerspectiveAnalysisTaskResponseBodyDataHot
|
|
|
10061
10062
|
* https://www.example.com/aaa.png
|
|
10062
10063
|
*/
|
|
10063
10064
|
imageUrls?: string[];
|
|
10065
|
+
source?: string;
|
|
10066
|
+
summary?: string;
|
|
10064
10067
|
/**
|
|
10065
10068
|
* @example
|
|
10066
10069
|
* ["标签1","标签2"]
|
|
10067
10070
|
*/
|
|
10068
10071
|
tags?: string[];
|
|
10072
|
+
title?: string;
|
|
10069
10073
|
/**
|
|
10070
10074
|
* @example
|
|
10071
10075
|
* 文章主题
|
|
10072
10076
|
*/
|
|
10073
10077
|
topic?: string;
|
|
10078
|
+
url?: string;
|
|
10074
10079
|
static names(): {
|
|
10075
10080
|
[key: string]: string;
|
|
10076
10081
|
};
|
package/dist/client.js
CHANGED
|
@@ -7799,20 +7799,30 @@ exports.GetTopicSelectionPerspectiveAnalysisTaskResponseBodyDataFreshViewPointsR
|
|
|
7799
7799
|
class GetTopicSelectionPerspectiveAnalysisTaskResponseBodyDataHotViewPointsResultAttitudesNews extends $tea.Model {
|
|
7800
7800
|
static names() {
|
|
7801
7801
|
return {
|
|
7802
|
+
content: 'Content',
|
|
7802
7803
|
docId: 'DocId',
|
|
7803
7804
|
docUuid: 'DocUuid',
|
|
7804
7805
|
imageUrls: 'ImageUrls',
|
|
7806
|
+
source: 'Source',
|
|
7807
|
+
summary: 'Summary',
|
|
7805
7808
|
tags: 'Tags',
|
|
7809
|
+
title: 'Title',
|
|
7806
7810
|
topic: 'Topic',
|
|
7811
|
+
url: 'Url',
|
|
7807
7812
|
};
|
|
7808
7813
|
}
|
|
7809
7814
|
static types() {
|
|
7810
7815
|
return {
|
|
7816
|
+
content: 'string',
|
|
7811
7817
|
docId: 'string',
|
|
7812
7818
|
docUuid: 'string',
|
|
7813
7819
|
imageUrls: { 'type': 'array', 'itemType': 'string' },
|
|
7820
|
+
source: 'string',
|
|
7821
|
+
summary: 'string',
|
|
7814
7822
|
tags: { 'type': 'array', 'itemType': 'string' },
|
|
7823
|
+
title: 'string',
|
|
7815
7824
|
topic: 'string',
|
|
7825
|
+
url: 'string',
|
|
7816
7826
|
};
|
|
7817
7827
|
}
|
|
7818
7828
|
constructor(map) {
|