@alicloud/quanmiaolightapp20240801 2.7.1 → 2.8.1

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.
Files changed (53) hide show
  1. package/dist/client.d.ts +18 -0
  2. package/dist/client.js +48 -0
  3. package/dist/client.js.map +1 -1
  4. package/dist/models/HotNewsRecommendRequest.d.ts +14 -0
  5. package/dist/models/HotNewsRecommendRequest.js +58 -0
  6. package/dist/models/HotNewsRecommendRequest.js.map +1 -0
  7. package/dist/models/HotNewsRecommendResponse.d.ts +19 -0
  8. package/dist/models/HotNewsRecommendResponse.js +69 -0
  9. package/dist/models/HotNewsRecommendResponse.js.map +1 -0
  10. package/dist/models/HotNewsRecommendResponseBody.d.ts +35 -0
  11. package/dist/models/HotNewsRecommendResponseBody.js +70 -0
  12. package/dist/models/HotNewsRecommendResponseBody.js.map +1 -0
  13. package/dist/models/HotNewsRecommendResponseBodyData.d.ts +15 -0
  14. package/dist/models/HotNewsRecommendResponseBodyData.js +62 -0
  15. package/dist/models/HotNewsRecommendResponseBodyData.js.map +1 -0
  16. package/dist/models/HotNewsRecommendResponseBodyDataNews.d.ts +36 -0
  17. package/dist/models/HotNewsRecommendResponseBodyDataNews.js +73 -0
  18. package/dist/models/HotNewsRecommendResponseBodyDataNews.js.map +1 -0
  19. package/dist/models/ListAnalysisTagDetailByTaskIdResponseBodyData.d.ts +1 -0
  20. package/dist/models/ListAnalysisTagDetailByTaskIdResponseBodyData.js +5 -0
  21. package/dist/models/ListAnalysisTagDetailByTaskIdResponseBodyData.js.map +1 -1
  22. package/dist/models/RunEnterpriseVocAnalysisRequest.d.ts +1 -0
  23. package/dist/models/RunEnterpriseVocAnalysisRequest.js +2 -0
  24. package/dist/models/RunEnterpriseVocAnalysisRequest.js.map +1 -1
  25. package/dist/models/RunEnterpriseVocAnalysisResponseBodyPayloadOutput.d.ts +1 -0
  26. package/dist/models/RunEnterpriseVocAnalysisResponseBodyPayloadOutput.js +2 -0
  27. package/dist/models/RunEnterpriseVocAnalysisResponseBodyPayloadOutput.js.map +1 -1
  28. package/dist/models/RunEnterpriseVocAnalysisShrinkRequest.d.ts +1 -0
  29. package/dist/models/RunEnterpriseVocAnalysisShrinkRequest.js +2 -0
  30. package/dist/models/RunEnterpriseVocAnalysisShrinkRequest.js.map +1 -1
  31. package/dist/models/SubmitEnterpriseVocAnalysisTaskRequest.d.ts +1 -0
  32. package/dist/models/SubmitEnterpriseVocAnalysisTaskRequest.js +2 -0
  33. package/dist/models/SubmitEnterpriseVocAnalysisTaskRequest.js.map +1 -1
  34. package/dist/models/SubmitEnterpriseVocAnalysisTaskShrinkRequest.d.ts +1 -0
  35. package/dist/models/SubmitEnterpriseVocAnalysisTaskShrinkRequest.js +2 -0
  36. package/dist/models/SubmitEnterpriseVocAnalysisTaskShrinkRequest.js.map +1 -1
  37. package/dist/models/model.d.ts +5 -0
  38. package/dist/models/model.js +16 -5
  39. package/dist/models/model.js.map +1 -1
  40. package/package.json +1 -1
  41. package/src/client.ts +53 -0
  42. package/src/models/HotNewsRecommendRequest.ts +27 -0
  43. package/src/models/HotNewsRecommendResponse.ts +40 -0
  44. package/src/models/HotNewsRecommendResponseBody.ts +59 -0
  45. package/src/models/HotNewsRecommendResponseBodyData.ts +31 -0
  46. package/src/models/HotNewsRecommendResponseBodyDataNews.ts +64 -0
  47. package/src/models/ListAnalysisTagDetailByTaskIdResponseBodyData.ts +6 -0
  48. package/src/models/RunEnterpriseVocAnalysisRequest.ts +3 -0
  49. package/src/models/RunEnterpriseVocAnalysisResponseBodyPayloadOutput.ts +3 -0
  50. package/src/models/RunEnterpriseVocAnalysisShrinkRequest.ts +3 -0
  51. package/src/models/SubmitEnterpriseVocAnalysisTaskRequest.ts +3 -0
  52. package/src/models/SubmitEnterpriseVocAnalysisTaskShrinkRequest.ts +3 -0
  53. package/src/models/model.ts +5 -0
package/src/client.ts CHANGED
@@ -415,6 +415,51 @@ export default class Client extends OpenApi {
415
415
  return await this.getVideoAnalysisTaskWithOptions(workspaceId, request, headers, runtime);
416
416
  }
417
417
 
418
+ /**
419
+ * 热点新闻推荐
420
+ *
421
+ * @param request - HotNewsRecommendRequest
422
+ * @param headers - map
423
+ * @param runtime - runtime options for this request RuntimeOptions
424
+ * @returns HotNewsRecommendResponse
425
+ */
426
+ async hotNewsRecommendWithOptions(workspaceId: string, request: $_model.HotNewsRecommendRequest, headers: {[key: string ]: string}, runtime: $dara.RuntimeOptions): Promise<$_model.HotNewsRecommendResponse> {
427
+ request.validate();
428
+ let body : {[key: string ]: any} = { };
429
+ if (!$dara.isNull(request.prompt)) {
430
+ body["prompt"] = request.prompt;
431
+ }
432
+
433
+ let req = new $OpenApiUtil.OpenApiRequest({
434
+ headers: headers,
435
+ body: OpenApiUtil.parseToMap(body),
436
+ });
437
+ let params = new $OpenApiUtil.Params({
438
+ action: "HotNewsRecommend",
439
+ version: "2024-08-01",
440
+ protocol: "HTTPS",
441
+ pathname: `/${$dara.URL.percentEncode(workspaceId)}/quanmiao/lightapp/hotNewsRecommend`,
442
+ method: "POST",
443
+ authType: "AK",
444
+ style: "ROA",
445
+ reqBodyType: "formData",
446
+ bodyType: "json",
447
+ });
448
+ return $dara.cast<$_model.HotNewsRecommendResponse>(await this.callApi(params, req, runtime), new $_model.HotNewsRecommendResponse({}));
449
+ }
450
+
451
+ /**
452
+ * 热点新闻推荐
453
+ *
454
+ * @param request - HotNewsRecommendRequest
455
+ * @returns HotNewsRecommendResponse
456
+ */
457
+ async hotNewsRecommend(workspaceId: string, request: $_model.HotNewsRecommendRequest): Promise<$_model.HotNewsRecommendResponse> {
458
+ let runtime = new $dara.RuntimeOptions({ });
459
+ let headers : {[key: string ]: string} = { };
460
+ return await this.hotNewsRecommendWithOptions(workspaceId, request, headers, runtime);
461
+ }
462
+
418
463
  /**
419
464
  * 获取挖掘分析结果明细列表
420
465
  *
@@ -578,6 +623,10 @@ export default class Client extends OpenApi {
578
623
  body["outputFormat"] = request.outputFormat;
579
624
  }
580
625
 
626
+ if (!$dara.isNull(request.sourceTrace)) {
627
+ body["sourceTrace"] = request.sourceTrace;
628
+ }
629
+
581
630
  if (!$dara.isNull(request.tagsShrink)) {
582
631
  body["tags"] = request.tagsShrink;
583
632
  }
@@ -1571,6 +1620,10 @@ export default class Client extends OpenApi {
1571
1620
  body["outputFormat"] = request.outputFormat;
1572
1621
  }
1573
1622
 
1623
+ if (!$dara.isNull(request.sourceTrace)) {
1624
+ body["sourceTrace"] = request.sourceTrace;
1625
+ }
1626
+
1574
1627
  if (!$dara.isNull(request.tagsShrink)) {
1575
1628
  body["tags"] = request.tagsShrink;
1576
1629
  }
@@ -0,0 +1,27 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+
4
+
5
+ export class HotNewsRecommendRequest extends $dara.Model {
6
+ prompt?: string;
7
+ static names(): { [key: string]: string } {
8
+ return {
9
+ prompt: 'prompt',
10
+ };
11
+ }
12
+
13
+ static types(): { [key: string]: any } {
14
+ return {
15
+ prompt: 'string',
16
+ };
17
+ }
18
+
19
+ validate() {
20
+ super.validate();
21
+ }
22
+
23
+ constructor(map?: { [key: string]: any }) {
24
+ super(map);
25
+ }
26
+ }
27
+
@@ -0,0 +1,40 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+ import { HotNewsRecommendResponseBody } from "./HotNewsRecommendResponseBody";
4
+
5
+
6
+ export class HotNewsRecommendResponse extends $dara.Model {
7
+ headers?: { [key: string]: string };
8
+ statusCode?: number;
9
+ body?: HotNewsRecommendResponseBody;
10
+ static names(): { [key: string]: string } {
11
+ return {
12
+ headers: 'headers',
13
+ statusCode: 'statusCode',
14
+ body: 'body',
15
+ };
16
+ }
17
+
18
+ static types(): { [key: string]: any } {
19
+ return {
20
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
21
+ statusCode: 'number',
22
+ body: HotNewsRecommendResponseBody,
23
+ };
24
+ }
25
+
26
+ validate() {
27
+ if(this.headers) {
28
+ $dara.Model.validateMap(this.headers);
29
+ }
30
+ if(this.body && typeof (this.body as any).validate === 'function') {
31
+ (this.body as any).validate();
32
+ }
33
+ super.validate();
34
+ }
35
+
36
+ constructor(map?: { [key: string]: any }) {
37
+ super(map);
38
+ }
39
+ }
40
+
@@ -0,0 +1,59 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+ import { HotNewsRecommendResponseBodyData } from "./HotNewsRecommendResponseBodyData";
4
+
5
+
6
+ export class HotNewsRecommendResponseBody extends $dara.Model {
7
+ /**
8
+ * @example
9
+ * 200
10
+ */
11
+ code?: string;
12
+ data?: HotNewsRecommendResponseBodyData;
13
+ /**
14
+ * @example
15
+ * ok
16
+ */
17
+ message?: string;
18
+ /**
19
+ * @example
20
+ * 575D5893-01DB-5C81-A899-74F67616762A
21
+ */
22
+ requestId?: string;
23
+ /**
24
+ * @example
25
+ * True
26
+ */
27
+ success?: boolean;
28
+ static names(): { [key: string]: string } {
29
+ return {
30
+ code: 'code',
31
+ data: 'data',
32
+ message: 'message',
33
+ requestId: 'requestId',
34
+ success: 'success',
35
+ };
36
+ }
37
+
38
+ static types(): { [key: string]: any } {
39
+ return {
40
+ code: 'string',
41
+ data: HotNewsRecommendResponseBodyData,
42
+ message: 'string',
43
+ requestId: 'string',
44
+ success: 'boolean',
45
+ };
46
+ }
47
+
48
+ validate() {
49
+ if(this.data && typeof (this.data as any).validate === 'function') {
50
+ (this.data as any).validate();
51
+ }
52
+ super.validate();
53
+ }
54
+
55
+ constructor(map?: { [key: string]: any }) {
56
+ super(map);
57
+ }
58
+ }
59
+
@@ -0,0 +1,31 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+ import { HotNewsRecommendResponseBodyDataNews } from "./HotNewsRecommendResponseBodyDataNews";
4
+
5
+
6
+ export class HotNewsRecommendResponseBodyData extends $dara.Model {
7
+ news?: HotNewsRecommendResponseBodyDataNews[];
8
+ static names(): { [key: string]: string } {
9
+ return {
10
+ news: 'news',
11
+ };
12
+ }
13
+
14
+ static types(): { [key: string]: any } {
15
+ return {
16
+ news: { 'type': 'array', 'itemType': HotNewsRecommendResponseBodyDataNews },
17
+ };
18
+ }
19
+
20
+ validate() {
21
+ if(Array.isArray(this.news)) {
22
+ $dara.Model.validateArray(this.news);
23
+ }
24
+ super.validate();
25
+ }
26
+
27
+ constructor(map?: { [key: string]: any }) {
28
+ super(map);
29
+ }
30
+ }
31
+
@@ -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
+
@@ -11,11 +11,13 @@ export class ListAnalysisTagDetailByTaskIdResponseBodyData extends $dara.Model {
11
11
  content?: string;
12
12
  contentTags?: ListAnalysisTagDetailByTaskIdResponseBodyDataContentTags[];
13
13
  originResponse?: string;
14
+ sourceList?: string[];
14
15
  static names(): { [key: string]: string } {
15
16
  return {
16
17
  content: 'content',
17
18
  contentTags: 'contentTags',
18
19
  originResponse: 'originResponse',
20
+ sourceList: 'sourceList',
19
21
  };
20
22
  }
21
23
 
@@ -24,6 +26,7 @@ export class ListAnalysisTagDetailByTaskIdResponseBodyData extends $dara.Model {
24
26
  content: 'string',
25
27
  contentTags: { 'type': 'array', 'itemType': ListAnalysisTagDetailByTaskIdResponseBodyDataContentTags },
26
28
  originResponse: 'string',
29
+ sourceList: { 'type': 'array', 'itemType': 'string' },
27
30
  };
28
31
  }
29
32
 
@@ -31,6 +34,9 @@ export class ListAnalysisTagDetailByTaskIdResponseBodyData extends $dara.Model {
31
34
  if(Array.isArray(this.contentTags)) {
32
35
  $dara.Model.validateArray(this.contentTags);
33
36
  }
37
+ if(Array.isArray(this.sourceList)) {
38
+ $dara.Model.validateArray(this.sourceList);
39
+ }
34
40
  super.validate();
35
41
  }
36
42
 
@@ -34,6 +34,7 @@ export class RunEnterpriseVocAnalysisRequest extends $dara.Model {
34
34
  * 按照如下格式输出:{"text1": "xxxx", "text2": "xxxx"}
35
35
  */
36
36
  outputFormat?: string;
37
+ sourceTrace?: boolean;
37
38
  /**
38
39
  * @remarks
39
40
  * 业务标签体系,用于对文本内容进行分类和分析。
@@ -59,6 +60,7 @@ export class RunEnterpriseVocAnalysisRequest extends $dara.Model {
59
60
  filterTags: 'filterTags',
60
61
  modelId: 'modelId',
61
62
  outputFormat: 'outputFormat',
63
+ sourceTrace: 'sourceTrace',
62
64
  tags: 'tags',
63
65
  taskDescription: 'taskDescription',
64
66
  };
@@ -73,6 +75,7 @@ export class RunEnterpriseVocAnalysisRequest extends $dara.Model {
73
75
  filterTags: { 'type': 'array', 'itemType': RunEnterpriseVocAnalysisRequestFilterTags },
74
76
  modelId: 'string',
75
77
  outputFormat: 'string',
78
+ sourceTrace: 'boolean',
76
79
  tags: { 'type': 'array', 'itemType': RunEnterpriseVocAnalysisRequestTags },
77
80
  taskDescription: 'string',
78
81
  };
@@ -5,10 +5,12 @@ import { RunEnterpriseVocAnalysisResponseBodyPayloadOutputFilterResult } from ".
5
5
 
6
6
  export class RunEnterpriseVocAnalysisResponseBodyPayloadOutput extends $dara.Model {
7
7
  filterResult?: RunEnterpriseVocAnalysisResponseBodyPayloadOutputFilterResult;
8
+ reasonContent?: string;
8
9
  text?: string;
9
10
  static names(): { [key: string]: string } {
10
11
  return {
11
12
  filterResult: 'filterResult',
13
+ reasonContent: 'reasonContent',
12
14
  text: 'text',
13
15
  };
14
16
  }
@@ -16,6 +18,7 @@ export class RunEnterpriseVocAnalysisResponseBodyPayloadOutput extends $dara.Mod
16
18
  static types(): { [key: string]: any } {
17
19
  return {
18
20
  filterResult: RunEnterpriseVocAnalysisResponseBodyPayloadOutputFilterResult,
21
+ reasonContent: 'string',
19
22
  text: 'string',
20
23
  };
21
24
  }
@@ -32,6 +32,7 @@ export class RunEnterpriseVocAnalysisShrinkRequest extends $dara.Model {
32
32
  * 按照如下格式输出:{"text1": "xxxx", "text2": "xxxx"}
33
33
  */
34
34
  outputFormat?: string;
35
+ sourceTrace?: boolean;
35
36
  /**
36
37
  * @remarks
37
38
  * 业务标签体系,用于对文本内容进行分类和分析。
@@ -57,6 +58,7 @@ export class RunEnterpriseVocAnalysisShrinkRequest extends $dara.Model {
57
58
  filterTagsShrink: 'filterTags',
58
59
  modelId: 'modelId',
59
60
  outputFormat: 'outputFormat',
61
+ sourceTrace: 'sourceTrace',
60
62
  tagsShrink: 'tags',
61
63
  taskDescription: 'taskDescription',
62
64
  };
@@ -71,6 +73,7 @@ export class RunEnterpriseVocAnalysisShrinkRequest extends $dara.Model {
71
73
  filterTagsShrink: 'string',
72
74
  modelId: 'string',
73
75
  outputFormat: 'string',
76
+ sourceTrace: 'boolean',
74
77
  tagsShrink: 'string',
75
78
  taskDescription: 'string',
76
79
  };
@@ -21,6 +21,7 @@ export class SubmitEnterpriseVocAnalysisTaskRequest extends $dara.Model {
21
21
  */
22
22
  modelId?: string;
23
23
  outputFormat?: string;
24
+ sourceTrace?: boolean;
24
25
  tags?: SubmitEnterpriseVocAnalysisTaskRequestTags[];
25
26
  taskDescription?: string;
26
27
  /**
@@ -37,6 +38,7 @@ export class SubmitEnterpriseVocAnalysisTaskRequest extends $dara.Model {
37
38
  filterTags: 'filterTags',
38
39
  modelId: 'modelId',
39
40
  outputFormat: 'outputFormat',
41
+ sourceTrace: 'sourceTrace',
40
42
  tags: 'tags',
41
43
  taskDescription: 'taskDescription',
42
44
  url: 'url',
@@ -52,6 +54,7 @@ export class SubmitEnterpriseVocAnalysisTaskRequest extends $dara.Model {
52
54
  filterTags: { 'type': 'array', 'itemType': SubmitEnterpriseVocAnalysisTaskRequestFilterTags },
53
55
  modelId: 'string',
54
56
  outputFormat: 'string',
57
+ sourceTrace: 'boolean',
55
58
  tags: { 'type': 'array', 'itemType': SubmitEnterpriseVocAnalysisTaskRequestTags },
56
59
  taskDescription: 'string',
57
60
  url: 'string',
@@ -18,6 +18,7 @@ export class SubmitEnterpriseVocAnalysisTaskShrinkRequest extends $dara.Model {
18
18
  */
19
19
  modelId?: string;
20
20
  outputFormat?: string;
21
+ sourceTrace?: boolean;
21
22
  tagsShrink?: string;
22
23
  taskDescription?: string;
23
24
  /**
@@ -34,6 +35,7 @@ export class SubmitEnterpriseVocAnalysisTaskShrinkRequest extends $dara.Model {
34
35
  filterTagsShrink: 'filterTags',
35
36
  modelId: 'modelId',
36
37
  outputFormat: 'outputFormat',
38
+ sourceTrace: 'sourceTrace',
37
39
  tagsShrink: 'tags',
38
40
  taskDescription: 'taskDescription',
39
41
  url: 'url',
@@ -49,6 +51,7 @@ export class SubmitEnterpriseVocAnalysisTaskShrinkRequest extends $dara.Model {
49
51
  filterTagsShrink: 'string',
50
52
  modelId: 'string',
51
53
  outputFormat: 'string',
54
+ sourceTrace: 'boolean',
52
55
  tagsShrink: 'string',
53
56
  taskDescription: 'string',
54
57
  url: 'string',
@@ -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';