@alicloud/aimiaobi20230801 1.26.5 → 1.27.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.
Files changed (73) hide show
  1. package/dist/client.d.ts +45 -0
  2. package/dist/client.js +140 -0
  3. package/dist/client.js.map +1 -1
  4. package/dist/models/ExportCustomSourceAnalysisTaskRequest.d.ts +29 -0
  5. package/dist/models/ExportCustomSourceAnalysisTaskRequest.js +60 -0
  6. package/dist/models/ExportCustomSourceAnalysisTaskRequest.js.map +1 -0
  7. package/dist/models/ExportCustomSourceAnalysisTaskResponse.d.ts +19 -0
  8. package/dist/models/ExportCustomSourceAnalysisTaskResponse.js +69 -0
  9. package/dist/models/ExportCustomSourceAnalysisTaskResponse.js.map +1 -0
  10. package/dist/models/ExportCustomSourceAnalysisTaskResponseBody.d.ts +43 -0
  11. package/dist/models/ExportCustomSourceAnalysisTaskResponseBody.js +68 -0
  12. package/dist/models/ExportCustomSourceAnalysisTaskResponseBody.js.map +1 -0
  13. package/dist/models/GetCustomSourceTopicAnalysisTaskRequest.d.ts +29 -0
  14. package/dist/models/GetCustomSourceTopicAnalysisTaskRequest.js +60 -0
  15. package/dist/models/GetCustomSourceTopicAnalysisTaskRequest.js.map +1 -0
  16. package/dist/models/GetCustomSourceTopicAnalysisTaskResponse.d.ts +19 -0
  17. package/dist/models/GetCustomSourceTopicAnalysisTaskResponse.js +69 -0
  18. package/dist/models/GetCustomSourceTopicAnalysisTaskResponse.js.map +1 -0
  19. package/dist/models/GetCustomSourceTopicAnalysisTaskResponseBody.d.ts +40 -0
  20. package/dist/models/GetCustomSourceTopicAnalysisTaskResponseBody.js +72 -0
  21. package/dist/models/GetCustomSourceTopicAnalysisTaskResponseBody.js.map +1 -0
  22. package/dist/models/GetCustomSourceTopicAnalysisTaskResponseBodyData.d.ts +40 -0
  23. package/dist/models/GetCustomSourceTopicAnalysisTaskResponseBodyData.js +72 -0
  24. package/dist/models/GetCustomSourceTopicAnalysisTaskResponseBodyData.js.map +1 -0
  25. package/dist/models/GetCustomSourceTopicAnalysisTaskResponseBodyDataClusterResults.d.ts +16 -0
  26. package/dist/models/GetCustomSourceTopicAnalysisTaskResponseBodyDataClusterResults.js +64 -0
  27. package/dist/models/GetCustomSourceTopicAnalysisTaskResponseBodyDataClusterResults.js.map +1 -0
  28. package/dist/models/GetCustomSourceTopicAnalysisTaskResponseBodyDataClusterResultsClusterNews.d.ts +19 -0
  29. package/dist/models/GetCustomSourceTopicAnalysisTaskResponseBodyDataClusterResultsClusterNews.js +60 -0
  30. package/dist/models/GetCustomSourceTopicAnalysisTaskResponseBodyDataClusterResultsClusterNews.js.map +1 -0
  31. package/dist/models/SubmitCustomSourceTopicAnalysisRequest.d.ts +38 -0
  32. package/dist/models/SubmitCustomSourceTopicAnalysisRequest.js +70 -0
  33. package/dist/models/SubmitCustomSourceTopicAnalysisRequest.js.map +1 -0
  34. package/dist/models/SubmitCustomSourceTopicAnalysisRequestNews.d.ts +27 -0
  35. package/dist/models/SubmitCustomSourceTopicAnalysisRequestNews.js +70 -0
  36. package/dist/models/SubmitCustomSourceTopicAnalysisRequestNews.js.map +1 -0
  37. package/dist/models/SubmitCustomSourceTopicAnalysisRequestNewsComments.d.ts +14 -0
  38. package/dist/models/SubmitCustomSourceTopicAnalysisRequestNewsComments.js +58 -0
  39. package/dist/models/SubmitCustomSourceTopicAnalysisRequestNewsComments.js.map +1 -0
  40. package/dist/models/SubmitCustomSourceTopicAnalysisResponse.d.ts +19 -0
  41. package/dist/models/SubmitCustomSourceTopicAnalysisResponse.js +69 -0
  42. package/dist/models/SubmitCustomSourceTopicAnalysisResponse.js.map +1 -0
  43. package/dist/models/SubmitCustomSourceTopicAnalysisResponseBody.d.ts +40 -0
  44. package/dist/models/SubmitCustomSourceTopicAnalysisResponseBody.js +72 -0
  45. package/dist/models/SubmitCustomSourceTopicAnalysisResponseBody.js.map +1 -0
  46. package/dist/models/SubmitCustomSourceTopicAnalysisResponseBodyData.d.ts +23 -0
  47. package/dist/models/SubmitCustomSourceTopicAnalysisResponseBodyData.js +60 -0
  48. package/dist/models/SubmitCustomSourceTopicAnalysisResponseBodyData.js.map +1 -0
  49. package/dist/models/SubmitCustomSourceTopicAnalysisShrinkRequest.d.ts +37 -0
  50. package/dist/models/SubmitCustomSourceTopicAnalysisShrinkRequest.js +66 -0
  51. package/dist/models/SubmitCustomSourceTopicAnalysisShrinkRequest.js.map +1 -0
  52. package/dist/models/model.d.ts +16 -0
  53. package/dist/models/model.js +52 -20
  54. package/dist/models/model.js.map +1 -1
  55. package/package.json +1 -1
  56. package/src/client.ts +156 -0
  57. package/src/models/ExportCustomSourceAnalysisTaskRequest.ts +44 -0
  58. package/src/models/ExportCustomSourceAnalysisTaskResponse.ts +40 -0
  59. package/src/models/ExportCustomSourceAnalysisTaskResponseBody.ts +66 -0
  60. package/src/models/GetCustomSourceTopicAnalysisTaskRequest.ts +44 -0
  61. package/src/models/GetCustomSourceTopicAnalysisTaskResponse.ts +40 -0
  62. package/src/models/GetCustomSourceTopicAnalysisTaskResponseBody.ts +66 -0
  63. package/src/models/GetCustomSourceTopicAnalysisTaskResponseBodyData.ts +66 -0
  64. package/src/models/GetCustomSourceTopicAnalysisTaskResponseBodyDataClusterResults.ts +34 -0
  65. package/src/models/GetCustomSourceTopicAnalysisTaskResponseBodyDataClusterResultsClusterNews.ts +34 -0
  66. package/src/models/SubmitCustomSourceTopicAnalysisRequest.ts +62 -0
  67. package/src/models/SubmitCustomSourceTopicAnalysisRequestNews.ts +51 -0
  68. package/src/models/SubmitCustomSourceTopicAnalysisRequestNewsComments.ts +27 -0
  69. package/src/models/SubmitCustomSourceTopicAnalysisResponse.ts +40 -0
  70. package/src/models/SubmitCustomSourceTopicAnalysisResponseBody.ts +66 -0
  71. package/src/models/SubmitCustomSourceTopicAnalysisResponseBodyData.ts +38 -0
  72. package/src/models/SubmitCustomSourceTopicAnalysisShrinkRequest.ts +58 -0
  73. package/src/models/model.ts +16 -0
@@ -0,0 +1,29 @@
1
+ import * as $dara from '@darabonba/typescript';
2
+ export declare class ExportCustomSourceAnalysisTaskRequest extends $dara.Model {
3
+ /**
4
+ * @remarks
5
+ * This parameter is required.
6
+ *
7
+ * @example
8
+ * c9f226b02cca4f42a84c5e955c39dfd2
9
+ */
10
+ taskId?: string;
11
+ /**
12
+ * @remarks
13
+ * This parameter is required.
14
+ *
15
+ * @example
16
+ * xxxxx_p_efm
17
+ */
18
+ workspaceId?: string;
19
+ static names(): {
20
+ [key: string]: string;
21
+ };
22
+ static types(): {
23
+ [key: string]: any;
24
+ };
25
+ validate(): void;
26
+ constructor(map?: {
27
+ [key: string]: any;
28
+ });
29
+ }
@@ -0,0 +1,60 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ exports.ExportCustomSourceAnalysisTaskRequest = void 0;
37
+ // This file is auto-generated, don't edit it
38
+ const $dara = __importStar(require("@darabonba/typescript"));
39
+ class ExportCustomSourceAnalysisTaskRequest extends $dara.Model {
40
+ static names() {
41
+ return {
42
+ taskId: 'TaskId',
43
+ workspaceId: 'WorkspaceId',
44
+ };
45
+ }
46
+ static types() {
47
+ return {
48
+ taskId: 'string',
49
+ workspaceId: 'string',
50
+ };
51
+ }
52
+ validate() {
53
+ super.validate();
54
+ }
55
+ constructor(map) {
56
+ super(map);
57
+ }
58
+ }
59
+ exports.ExportCustomSourceAnalysisTaskRequest = ExportCustomSourceAnalysisTaskRequest;
60
+ //# sourceMappingURL=ExportCustomSourceAnalysisTaskRequest.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ExportCustomSourceAnalysisTaskRequest.js","sourceRoot":"","sources":["../../src/models/ExportCustomSourceAnalysisTaskRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,qCAAsC,SAAQ,KAAK,CAAC,KAAK;IAiBpE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,MAAM,EAAE,QAAQ;YAChB,WAAW,EAAE,aAAa;SAC3B,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,MAAM,EAAE,QAAQ;YAChB,WAAW,EAAE,QAAQ;SACtB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAtCD,sFAsCC"}
@@ -0,0 +1,19 @@
1
+ import * as $dara from '@darabonba/typescript';
2
+ import { ExportCustomSourceAnalysisTaskResponseBody } from "./ExportCustomSourceAnalysisTaskResponseBody";
3
+ export declare class ExportCustomSourceAnalysisTaskResponse extends $dara.Model {
4
+ headers?: {
5
+ [key: string]: string;
6
+ };
7
+ statusCode?: number;
8
+ body?: ExportCustomSourceAnalysisTaskResponseBody;
9
+ static names(): {
10
+ [key: string]: string;
11
+ };
12
+ static types(): {
13
+ [key: string]: any;
14
+ };
15
+ validate(): void;
16
+ constructor(map?: {
17
+ [key: string]: any;
18
+ });
19
+ }
@@ -0,0 +1,69 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ exports.ExportCustomSourceAnalysisTaskResponse = void 0;
37
+ // This file is auto-generated, don't edit it
38
+ const $dara = __importStar(require("@darabonba/typescript"));
39
+ const ExportCustomSourceAnalysisTaskResponseBody_1 = require("./ExportCustomSourceAnalysisTaskResponseBody");
40
+ class ExportCustomSourceAnalysisTaskResponse extends $dara.Model {
41
+ static names() {
42
+ return {
43
+ headers: 'headers',
44
+ statusCode: 'statusCode',
45
+ body: 'body',
46
+ };
47
+ }
48
+ static types() {
49
+ return {
50
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
51
+ statusCode: 'number',
52
+ body: ExportCustomSourceAnalysisTaskResponseBody_1.ExportCustomSourceAnalysisTaskResponseBody,
53
+ };
54
+ }
55
+ validate() {
56
+ if (this.headers) {
57
+ $dara.Model.validateMap(this.headers);
58
+ }
59
+ if (this.body && typeof this.body.validate === 'function') {
60
+ this.body.validate();
61
+ }
62
+ super.validate();
63
+ }
64
+ constructor(map) {
65
+ super(map);
66
+ }
67
+ }
68
+ exports.ExportCustomSourceAnalysisTaskResponse = ExportCustomSourceAnalysisTaskResponse;
69
+ //# sourceMappingURL=ExportCustomSourceAnalysisTaskResponse.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ExportCustomSourceAnalysisTaskResponse.js","sourceRoot":"","sources":["../../src/models/ExportCustomSourceAnalysisTaskResponse.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAC/C,6GAA0G;AAG1G,MAAa,sCAAuC,SAAQ,KAAK,CAAC,KAAK;IAIrE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,SAAS;YAClB,UAAU,EAAE,YAAY;YACxB,IAAI,EAAE,MAAM;SACb,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,EAAE,MAAM,EAAE,KAAK,EAAE,SAAS,EAAE,QAAQ,EAAE,WAAW,EAAE,QAAQ,EAAE;YACtE,UAAU,EAAE,QAAQ;YACpB,IAAI,EAAE,uFAA0C;SACjD,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,IAAI,CAAC,OAAO,EAAE,CAAC;YAChB,KAAK,CAAC,KAAK,CAAC,WAAW,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QACxC,CAAC;QACD,IAAG,IAAI,CAAC,IAAI,IAAI,OAAQ,IAAI,CAAC,IAAY,CAAC,QAAQ,KAAK,UAAU,EAAE,CAAC;YACjE,IAAI,CAAC,IAAY,CAAC,QAAQ,EAAE,CAAC;QAChC,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAjCD,wFAiCC"}
@@ -0,0 +1,43 @@
1
+ import * as $dara from '@darabonba/typescript';
2
+ export declare class ExportCustomSourceAnalysisTaskResponseBody extends $dara.Model {
3
+ /**
4
+ * @example
5
+ * NoData
6
+ */
7
+ code?: string;
8
+ /**
9
+ * @example
10
+ * http://www.example.com/xxx.jsonLine
11
+ */
12
+ data?: string;
13
+ /**
14
+ * @example
15
+ * 200
16
+ */
17
+ httpStatusCode?: number;
18
+ /**
19
+ * @example
20
+ * success
21
+ */
22
+ message?: string;
23
+ /**
24
+ * @example
25
+ * 1813ceee-7fe5-41b4-87e5-982a4d18cca5
26
+ */
27
+ requestId?: string;
28
+ /**
29
+ * @example
30
+ * true
31
+ */
32
+ success?: boolean;
33
+ static names(): {
34
+ [key: string]: string;
35
+ };
36
+ static types(): {
37
+ [key: string]: any;
38
+ };
39
+ validate(): void;
40
+ constructor(map?: {
41
+ [key: string]: any;
42
+ });
43
+ }
@@ -0,0 +1,68 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ exports.ExportCustomSourceAnalysisTaskResponseBody = void 0;
37
+ // This file is auto-generated, don't edit it
38
+ const $dara = __importStar(require("@darabonba/typescript"));
39
+ class ExportCustomSourceAnalysisTaskResponseBody extends $dara.Model {
40
+ static names() {
41
+ return {
42
+ code: 'Code',
43
+ data: 'Data',
44
+ httpStatusCode: 'HttpStatusCode',
45
+ message: 'Message',
46
+ requestId: 'RequestId',
47
+ success: 'Success',
48
+ };
49
+ }
50
+ static types() {
51
+ return {
52
+ code: 'string',
53
+ data: 'string',
54
+ httpStatusCode: 'number',
55
+ message: 'string',
56
+ requestId: 'string',
57
+ success: 'boolean',
58
+ };
59
+ }
60
+ validate() {
61
+ super.validate();
62
+ }
63
+ constructor(map) {
64
+ super(map);
65
+ }
66
+ }
67
+ exports.ExportCustomSourceAnalysisTaskResponseBody = ExportCustomSourceAnalysisTaskResponseBody;
68
+ //# sourceMappingURL=ExportCustomSourceAnalysisTaskResponseBody.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ExportCustomSourceAnalysisTaskResponseBody.js","sourceRoot":"","sources":["../../src/models/ExportCustomSourceAnalysisTaskResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,0CAA2C,SAAQ,KAAK,CAAC,KAAK;IA+BzE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,IAAI,EAAE,MAAM;YACZ,IAAI,EAAE,MAAM;YACZ,cAAc,EAAE,gBAAgB;YAChC,OAAO,EAAE,SAAS;YAClB,SAAS,EAAE,WAAW;YACtB,OAAO,EAAE,SAAS;SACnB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,IAAI,EAAE,QAAQ;YACd,IAAI,EAAE,QAAQ;YACd,cAAc,EAAE,QAAQ;YACxB,OAAO,EAAE,QAAQ;YACjB,SAAS,EAAE,QAAQ;YACnB,OAAO,EAAE,SAAS;SACnB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AA5DD,gGA4DC"}
@@ -0,0 +1,29 @@
1
+ import * as $dara from '@darabonba/typescript';
2
+ export declare class GetCustomSourceTopicAnalysisTaskRequest extends $dara.Model {
3
+ /**
4
+ * @remarks
5
+ * This parameter is required.
6
+ *
7
+ * @example
8
+ * c9f226b02cca4f42a84c5e955c39dfd2
9
+ */
10
+ taskId?: string;
11
+ /**
12
+ * @remarks
13
+ * This parameter is required.
14
+ *
15
+ * @example
16
+ * xxxxx_p_efm
17
+ */
18
+ workspaceId?: string;
19
+ static names(): {
20
+ [key: string]: string;
21
+ };
22
+ static types(): {
23
+ [key: string]: any;
24
+ };
25
+ validate(): void;
26
+ constructor(map?: {
27
+ [key: string]: any;
28
+ });
29
+ }
@@ -0,0 +1,60 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ exports.GetCustomSourceTopicAnalysisTaskRequest = void 0;
37
+ // This file is auto-generated, don't edit it
38
+ const $dara = __importStar(require("@darabonba/typescript"));
39
+ class GetCustomSourceTopicAnalysisTaskRequest extends $dara.Model {
40
+ static names() {
41
+ return {
42
+ taskId: 'TaskId',
43
+ workspaceId: 'WorkspaceId',
44
+ };
45
+ }
46
+ static types() {
47
+ return {
48
+ taskId: 'string',
49
+ workspaceId: 'string',
50
+ };
51
+ }
52
+ validate() {
53
+ super.validate();
54
+ }
55
+ constructor(map) {
56
+ super(map);
57
+ }
58
+ }
59
+ exports.GetCustomSourceTopicAnalysisTaskRequest = GetCustomSourceTopicAnalysisTaskRequest;
60
+ //# sourceMappingURL=GetCustomSourceTopicAnalysisTaskRequest.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"GetCustomSourceTopicAnalysisTaskRequest.js","sourceRoot":"","sources":["../../src/models/GetCustomSourceTopicAnalysisTaskRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,uCAAwC,SAAQ,KAAK,CAAC,KAAK;IAiBtE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,MAAM,EAAE,QAAQ;YAChB,WAAW,EAAE,aAAa;SAC3B,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,MAAM,EAAE,QAAQ;YAChB,WAAW,EAAE,QAAQ;SACtB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAtCD,0FAsCC"}
@@ -0,0 +1,19 @@
1
+ import * as $dara from '@darabonba/typescript';
2
+ import { GetCustomSourceTopicAnalysisTaskResponseBody } from "./GetCustomSourceTopicAnalysisTaskResponseBody";
3
+ export declare class GetCustomSourceTopicAnalysisTaskResponse extends $dara.Model {
4
+ headers?: {
5
+ [key: string]: string;
6
+ };
7
+ statusCode?: number;
8
+ body?: GetCustomSourceTopicAnalysisTaskResponseBody;
9
+ static names(): {
10
+ [key: string]: string;
11
+ };
12
+ static types(): {
13
+ [key: string]: any;
14
+ };
15
+ validate(): void;
16
+ constructor(map?: {
17
+ [key: string]: any;
18
+ });
19
+ }
@@ -0,0 +1,69 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ exports.GetCustomSourceTopicAnalysisTaskResponse = void 0;
37
+ // This file is auto-generated, don't edit it
38
+ const $dara = __importStar(require("@darabonba/typescript"));
39
+ const GetCustomSourceTopicAnalysisTaskResponseBody_1 = require("./GetCustomSourceTopicAnalysisTaskResponseBody");
40
+ class GetCustomSourceTopicAnalysisTaskResponse extends $dara.Model {
41
+ static names() {
42
+ return {
43
+ headers: 'headers',
44
+ statusCode: 'statusCode',
45
+ body: 'body',
46
+ };
47
+ }
48
+ static types() {
49
+ return {
50
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
51
+ statusCode: 'number',
52
+ body: GetCustomSourceTopicAnalysisTaskResponseBody_1.GetCustomSourceTopicAnalysisTaskResponseBody,
53
+ };
54
+ }
55
+ validate() {
56
+ if (this.headers) {
57
+ $dara.Model.validateMap(this.headers);
58
+ }
59
+ if (this.body && typeof this.body.validate === 'function') {
60
+ this.body.validate();
61
+ }
62
+ super.validate();
63
+ }
64
+ constructor(map) {
65
+ super(map);
66
+ }
67
+ }
68
+ exports.GetCustomSourceTopicAnalysisTaskResponse = GetCustomSourceTopicAnalysisTaskResponse;
69
+ //# sourceMappingURL=GetCustomSourceTopicAnalysisTaskResponse.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"GetCustomSourceTopicAnalysisTaskResponse.js","sourceRoot":"","sources":["../../src/models/GetCustomSourceTopicAnalysisTaskResponse.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAC/C,iHAA8G;AAG9G,MAAa,wCAAyC,SAAQ,KAAK,CAAC,KAAK;IAIvE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,SAAS;YAClB,UAAU,EAAE,YAAY;YACxB,IAAI,EAAE,MAAM;SACb,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,EAAE,MAAM,EAAE,KAAK,EAAE,SAAS,EAAE,QAAQ,EAAE,WAAW,EAAE,QAAQ,EAAE;YACtE,UAAU,EAAE,QAAQ;YACpB,IAAI,EAAE,2FAA4C;SACnD,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,IAAI,CAAC,OAAO,EAAE,CAAC;YAChB,KAAK,CAAC,KAAK,CAAC,WAAW,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QACxC,CAAC;QACD,IAAG,IAAI,CAAC,IAAI,IAAI,OAAQ,IAAI,CAAC,IAAY,CAAC,QAAQ,KAAK,UAAU,EAAE,CAAC;YACjE,IAAI,CAAC,IAAY,CAAC,QAAQ,EAAE,CAAC;QAChC,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAjCD,4FAiCC"}
@@ -0,0 +1,40 @@
1
+ import * as $dara from '@darabonba/typescript';
2
+ import { GetCustomSourceTopicAnalysisTaskResponseBodyData } from "./GetCustomSourceTopicAnalysisTaskResponseBodyData";
3
+ export declare class GetCustomSourceTopicAnalysisTaskResponseBody extends $dara.Model {
4
+ /**
5
+ * @example
6
+ * NoData
7
+ */
8
+ code?: string;
9
+ data?: GetCustomSourceTopicAnalysisTaskResponseBodyData;
10
+ /**
11
+ * @example
12
+ * 200
13
+ */
14
+ httpStatusCode?: number;
15
+ /**
16
+ * @example
17
+ * success
18
+ */
19
+ message?: string;
20
+ /**
21
+ * @example
22
+ * 1813ceee-7fe5-41b4-87e5-982a4d18cca5
23
+ */
24
+ requestId?: string;
25
+ /**
26
+ * @example
27
+ * true
28
+ */
29
+ success?: boolean;
30
+ static names(): {
31
+ [key: string]: string;
32
+ };
33
+ static types(): {
34
+ [key: string]: any;
35
+ };
36
+ validate(): void;
37
+ constructor(map?: {
38
+ [key: string]: any;
39
+ });
40
+ }
@@ -0,0 +1,72 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ exports.GetCustomSourceTopicAnalysisTaskResponseBody = void 0;
37
+ // This file is auto-generated, don't edit it
38
+ const $dara = __importStar(require("@darabonba/typescript"));
39
+ const GetCustomSourceTopicAnalysisTaskResponseBodyData_1 = require("./GetCustomSourceTopicAnalysisTaskResponseBodyData");
40
+ class GetCustomSourceTopicAnalysisTaskResponseBody extends $dara.Model {
41
+ static names() {
42
+ return {
43
+ code: 'Code',
44
+ data: 'Data',
45
+ httpStatusCode: 'HttpStatusCode',
46
+ message: 'Message',
47
+ requestId: 'RequestId',
48
+ success: 'Success',
49
+ };
50
+ }
51
+ static types() {
52
+ return {
53
+ code: 'string',
54
+ data: GetCustomSourceTopicAnalysisTaskResponseBodyData_1.GetCustomSourceTopicAnalysisTaskResponseBodyData,
55
+ httpStatusCode: 'number',
56
+ message: 'string',
57
+ requestId: 'string',
58
+ success: 'boolean',
59
+ };
60
+ }
61
+ validate() {
62
+ if (this.data && typeof this.data.validate === 'function') {
63
+ this.data.validate();
64
+ }
65
+ super.validate();
66
+ }
67
+ constructor(map) {
68
+ super(map);
69
+ }
70
+ }
71
+ exports.GetCustomSourceTopicAnalysisTaskResponseBody = GetCustomSourceTopicAnalysisTaskResponseBody;
72
+ //# sourceMappingURL=GetCustomSourceTopicAnalysisTaskResponseBody.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"GetCustomSourceTopicAnalysisTaskResponseBody.js","sourceRoot":"","sources":["../../src/models/GetCustomSourceTopicAnalysisTaskResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAC/C,yHAAsH;AAGtH,MAAa,4CAA6C,SAAQ,KAAK,CAAC,KAAK;IA2B3E,MAAM,CAAC,KAAK;QACV,OAAO;YACL,IAAI,EAAE,MAAM;YACZ,IAAI,EAAE,MAAM;YACZ,cAAc,EAAE,gBAAgB;YAChC,OAAO,EAAE,SAAS;YAClB,SAAS,EAAE,WAAW;YACtB,OAAO,EAAE,SAAS;SACnB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,IAAI,EAAE,QAAQ;YACd,IAAI,EAAE,mGAAgD;YACtD,cAAc,EAAE,QAAQ;YACxB,OAAO,EAAE,QAAQ;YACjB,SAAS,EAAE,QAAQ;YACnB,OAAO,EAAE,SAAS;SACnB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,IAAI,CAAC,IAAI,IAAI,OAAQ,IAAI,CAAC,IAAY,CAAC,QAAQ,KAAK,UAAU,EAAE,CAAC;YACjE,IAAI,CAAC,IAAY,CAAC,QAAQ,EAAE,CAAC;QAChC,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AA3DD,oGA2DC"}
@@ -0,0 +1,40 @@
1
+ import * as $dara from '@darabonba/typescript';
2
+ import { GetCustomSourceTopicAnalysisTaskResponseBodyDataClusterResults } from "./GetCustomSourceTopicAnalysisTaskResponseBodyDataClusterResults";
3
+ export declare class GetCustomSourceTopicAnalysisTaskResponseBodyData extends $dara.Model {
4
+ /**
5
+ * @example
6
+ * 5
7
+ */
8
+ clusterCount?: number;
9
+ clusterResults?: GetCustomSourceTopicAnalysisTaskResponseBodyDataClusterResults[];
10
+ /**
11
+ * @example
12
+ * 错误信息
13
+ */
14
+ errorMessage?: string;
15
+ /**
16
+ * @example
17
+ * 8
18
+ */
19
+ maxClusteredTopicNewsSize?: number;
20
+ /**
21
+ * @example
22
+ * 10
23
+ */
24
+ parsedNewsSize?: number;
25
+ /**
26
+ * @example
27
+ * SUCCESSED
28
+ */
29
+ status?: string;
30
+ static names(): {
31
+ [key: string]: string;
32
+ };
33
+ static types(): {
34
+ [key: string]: any;
35
+ };
36
+ validate(): void;
37
+ constructor(map?: {
38
+ [key: string]: any;
39
+ });
40
+ }