@alicloud/aimiaobi20230801 1.8.2 → 1.8.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alicloud/aimiaobi20230801",
3
- "version": "1.8.2",
3
+ "version": "1.8.3",
4
4
  "description": "",
5
5
  "main": "dist/client.js",
6
6
  "scripts": {
@@ -21,7 +21,7 @@
21
21
  "dependencies": {
22
22
  "@alicloud/tea-typescript": "^1.7.1",
23
23
  "@alicloud/tea-util": "^1.4.9",
24
- "@alicloud/openapi-client": "^0.4.11",
24
+ "@alicloud/openapi-client": "^0.4.12",
25
25
  "@alicloud/openapi-util": "^0.3.2",
26
26
  "@alicloud/endpoint-util": "^0.0.1"
27
27
  },
package/src/client.ts CHANGED
@@ -21103,12 +21103,35 @@ export class SubmitDocClusterTaskResponseBodyData extends $tea.Model {
21103
21103
  }
21104
21104
  }
21105
21105
 
21106
+ export class SubmitTopicSelectionPerspectiveAnalysisTaskRequestDocumentsComments extends $tea.Model {
21107
+ text?: string;
21108
+ username?: string;
21109
+ static names(): { [key: string]: string } {
21110
+ return {
21111
+ text: 'Text',
21112
+ username: 'Username',
21113
+ };
21114
+ }
21115
+
21116
+ static types(): { [key: string]: any } {
21117
+ return {
21118
+ text: 'string',
21119
+ username: 'string',
21120
+ };
21121
+ }
21122
+
21123
+ constructor(map?: { [key: string]: any }) {
21124
+ super(map);
21125
+ }
21126
+ }
21127
+
21106
21128
  export class SubmitTopicSelectionPerspectiveAnalysisTaskRequestDocuments extends $tea.Model {
21107
21129
  /**
21108
21130
  * @example
21109
21131
  * 作者
21110
21132
  */
21111
21133
  author?: string;
21134
+ comments?: SubmitTopicSelectionPerspectiveAnalysisTaskRequestDocumentsComments[];
21112
21135
  /**
21113
21136
  * @remarks
21114
21137
  * This parameter is required.
@@ -21145,6 +21168,7 @@ export class SubmitTopicSelectionPerspectiveAnalysisTaskRequestDocuments extends
21145
21168
  static names(): { [key: string]: string } {
21146
21169
  return {
21147
21170
  author: 'Author',
21171
+ comments: 'Comments',
21148
21172
  content: 'Content',
21149
21173
  pubTime: 'PubTime',
21150
21174
  source: 'Source',
@@ -21157,6 +21181,7 @@ export class SubmitTopicSelectionPerspectiveAnalysisTaskRequestDocuments extends
21157
21181
  static types(): { [key: string]: any } {
21158
21182
  return {
21159
21183
  author: 'string',
21184
+ comments: { 'type': 'array', 'itemType': SubmitTopicSelectionPerspectiveAnalysisTaskRequestDocumentsComments },
21160
21185
  content: 'string',
21161
21186
  pubTime: 'string',
21162
21187
  source: 'string',