@alicloud/aimiaobi20230801 1.36.2 → 1.37.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 +91 -0
- package/dist/client.js +567 -204
- package/dist/client.js.map +1 -1
- package/dist/models/BindPptArtifactRequest.d.ts +37 -0
- package/dist/models/BindPptArtifactRequest.js +62 -0
- package/dist/models/BindPptArtifactRequest.js.map +1 -0
- package/dist/models/BindPptArtifactResponse.d.ts +19 -0
- package/dist/models/BindPptArtifactResponse.js +69 -0
- package/dist/models/BindPptArtifactResponse.js.map +1 -0
- package/dist/models/BindPptArtifactResponseBody.d.ts +59 -0
- package/dist/models/BindPptArtifactResponseBody.js +90 -0
- package/dist/models/BindPptArtifactResponseBody.js.map +1 -0
- package/dist/models/GetPptConfigRequest.d.ts +18 -0
- package/dist/models/GetPptConfigRequest.js +58 -0
- package/dist/models/GetPptConfigRequest.js.map +1 -0
- package/dist/models/GetPptConfigResponse.d.ts +19 -0
- package/dist/models/GetPptConfigResponse.js +69 -0
- package/dist/models/GetPptConfigResponse.js.map +1 -0
- package/dist/models/GetPptConfigResponseBody.d.ts +70 -0
- package/dist/models/GetPptConfigResponseBody.js +92 -0
- package/dist/models/GetPptConfigResponseBody.js.map +1 -0
- package/dist/models/InitiatePptCreationRequest.d.ts +27 -0
- package/dist/models/InitiatePptCreationRequest.js +62 -0
- package/dist/models/InitiatePptCreationRequest.js.map +1 -0
- package/dist/models/InitiatePptCreationResponse.d.ts +19 -0
- package/dist/models/InitiatePptCreationResponse.js +69 -0
- package/dist/models/InitiatePptCreationResponse.js.map +1 -0
- package/dist/models/InitiatePptCreationResponseBody.d.ts +70 -0
- package/dist/models/InitiatePptCreationResponseBody.js +92 -0
- package/dist/models/InitiatePptCreationResponseBody.js.map +1 -0
- package/dist/models/RunAiHelperWritingRequest.d.ts +66 -0
- package/dist/models/RunAiHelperWritingRequest.js +73 -0
- package/dist/models/RunAiHelperWritingRequest.js.map +1 -0
- package/dist/models/RunAiHelperWritingResponse.d.ts +19 -0
- package/dist/models/RunAiHelperWritingResponse.js +69 -0
- package/dist/models/RunAiHelperWritingResponse.js.map +1 -0
- package/dist/models/RunAiHelperWritingResponseBody.d.ts +219 -0
- package/dist/models/RunAiHelperWritingResponseBody.js +181 -0
- package/dist/models/RunAiHelperWritingResponseBody.js.map +1 -0
- package/dist/models/RunAiHelperWritingShrinkRequest.d.ts +64 -0
- package/dist/models/RunAiHelperWritingShrinkRequest.js +70 -0
- package/dist/models/RunAiHelperWritingShrinkRequest.js.map +1 -0
- package/dist/models/RunPptOutlineGenerationRequest.d.ts +26 -0
- package/dist/models/RunPptOutlineGenerationRequest.js +60 -0
- package/dist/models/RunPptOutlineGenerationRequest.js.map +1 -0
- package/dist/models/RunPptOutlineGenerationResponse.d.ts +19 -0
- package/dist/models/RunPptOutlineGenerationResponse.js +69 -0
- package/dist/models/RunPptOutlineGenerationResponse.js.map +1 -0
- package/dist/models/RunPptOutlineGenerationResponseBody.d.ts +113 -0
- package/dist/models/RunPptOutlineGenerationResponseBody.js +148 -0
- package/dist/models/RunPptOutlineGenerationResponseBody.js.map +1 -0
- package/dist/models/model.d.ts +26 -0
- package/dist/models/model.js +78 -26
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +382 -0
- package/src/models/BindPptArtifactRequest.ts +54 -0
- package/src/models/BindPptArtifactResponse.ts +40 -0
- package/src/models/BindPptArtifactResponseBody.ts +95 -0
- package/src/models/GetPptConfigRequest.ts +31 -0
- package/src/models/GetPptConfigResponse.ts +40 -0
- package/src/models/GetPptConfigResponseBody.ts +108 -0
- package/src/models/InitiatePptCreationRequest.ts +44 -0
- package/src/models/InitiatePptCreationResponse.ts +40 -0
- package/src/models/InitiatePptCreationResponseBody.ts +108 -0
- package/src/models/RunAiHelperWritingRequest.ts +92 -0
- package/src/models/RunAiHelperWritingResponse.ts +40 -0
- package/src/models/RunAiHelperWritingResponseBody.ts +317 -0
- package/src/models/RunAiHelperWritingShrinkRequest.ts +89 -0
- package/src/models/RunPptOutlineGenerationRequest.ts +41 -0
- package/src/models/RunPptOutlineGenerationResponse.ts +40 -0
- package/src/models/RunPptOutlineGenerationResponseBody.ts +189 -0
- package/src/models/model.ts +26 -0
|
@@ -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.RunPptOutlineGenerationRequest = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
class RunPptOutlineGenerationRequest extends $dara.Model {
|
|
40
|
+
static names() {
|
|
41
|
+
return {
|
|
42
|
+
prompt: 'Prompt',
|
|
43
|
+
workspaceId: 'WorkspaceId',
|
|
44
|
+
};
|
|
45
|
+
}
|
|
46
|
+
static types() {
|
|
47
|
+
return {
|
|
48
|
+
prompt: 'string',
|
|
49
|
+
workspaceId: 'string',
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
validate() {
|
|
53
|
+
super.validate();
|
|
54
|
+
}
|
|
55
|
+
constructor(map) {
|
|
56
|
+
super(map);
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
exports.RunPptOutlineGenerationRequest = RunPptOutlineGenerationRequest;
|
|
60
|
+
//# sourceMappingURL=RunPptOutlineGenerationRequest.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RunPptOutlineGenerationRequest.js","sourceRoot":"","sources":["../../src/models/RunPptOutlineGenerationRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,8BAA+B,SAAQ,KAAK,CAAC,KAAK;IAc7D,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;AAnCD,wEAmCC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
import { RunPptOutlineGenerationResponseBody } from "./RunPptOutlineGenerationResponseBody";
|
|
3
|
+
export declare class RunPptOutlineGenerationResponse extends $dara.Model {
|
|
4
|
+
headers?: {
|
|
5
|
+
[key: string]: string;
|
|
6
|
+
};
|
|
7
|
+
statusCode?: number;
|
|
8
|
+
body?: RunPptOutlineGenerationResponseBody;
|
|
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.RunPptOutlineGenerationResponse = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
const RunPptOutlineGenerationResponseBody_1 = require("./RunPptOutlineGenerationResponseBody");
|
|
40
|
+
class RunPptOutlineGenerationResponse 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: RunPptOutlineGenerationResponseBody_1.RunPptOutlineGenerationResponseBody,
|
|
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.RunPptOutlineGenerationResponse = RunPptOutlineGenerationResponse;
|
|
69
|
+
//# sourceMappingURL=RunPptOutlineGenerationResponse.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RunPptOutlineGenerationResponse.js","sourceRoot":"","sources":["../../src/models/RunPptOutlineGenerationResponse.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAC/C,+FAA4F;AAG5F,MAAa,+BAAgC,SAAQ,KAAK,CAAC,KAAK;IAI9D,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,yEAAmC;SAC1C,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,0EAiCC"}
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
export declare class RunPptOutlineGenerationResponseBodyHeader extends $dara.Model {
|
|
3
|
+
/**
|
|
4
|
+
* @example
|
|
5
|
+
* Success
|
|
6
|
+
*/
|
|
7
|
+
errorCode?: string;
|
|
8
|
+
/**
|
|
9
|
+
* @example
|
|
10
|
+
* xxx
|
|
11
|
+
*/
|
|
12
|
+
errorMessage?: string;
|
|
13
|
+
/**
|
|
14
|
+
* @example
|
|
15
|
+
* task-started
|
|
16
|
+
*/
|
|
17
|
+
event?: string;
|
|
18
|
+
/**
|
|
19
|
+
* @example
|
|
20
|
+
* 1a3d7c9f-3a6d-4e49-b176-2d8721a27397
|
|
21
|
+
*/
|
|
22
|
+
sessionId?: string;
|
|
23
|
+
/**
|
|
24
|
+
* @example
|
|
25
|
+
* 200
|
|
26
|
+
*/
|
|
27
|
+
statusCode?: number;
|
|
28
|
+
/**
|
|
29
|
+
* @example
|
|
30
|
+
* 8996314ce5514867943c71935e6a45af
|
|
31
|
+
*/
|
|
32
|
+
taskId?: string;
|
|
33
|
+
/**
|
|
34
|
+
* @example
|
|
35
|
+
* 0bc1ec3a17435601877224179ecc8a
|
|
36
|
+
*/
|
|
37
|
+
traceId?: string;
|
|
38
|
+
static names(): {
|
|
39
|
+
[key: string]: string;
|
|
40
|
+
};
|
|
41
|
+
static types(): {
|
|
42
|
+
[key: string]: any;
|
|
43
|
+
};
|
|
44
|
+
validate(): void;
|
|
45
|
+
constructor(map?: {
|
|
46
|
+
[key: string]: any;
|
|
47
|
+
});
|
|
48
|
+
}
|
|
49
|
+
export declare class RunPptOutlineGenerationResponseBodyPayloadOutput extends $dara.Model {
|
|
50
|
+
text?: string;
|
|
51
|
+
static names(): {
|
|
52
|
+
[key: string]: string;
|
|
53
|
+
};
|
|
54
|
+
static types(): {
|
|
55
|
+
[key: string]: any;
|
|
56
|
+
};
|
|
57
|
+
validate(): void;
|
|
58
|
+
constructor(map?: {
|
|
59
|
+
[key: string]: any;
|
|
60
|
+
});
|
|
61
|
+
}
|
|
62
|
+
export declare class RunPptOutlineGenerationResponseBodyPayload extends $dara.Model {
|
|
63
|
+
output?: RunPptOutlineGenerationResponseBodyPayloadOutput;
|
|
64
|
+
static names(): {
|
|
65
|
+
[key: string]: string;
|
|
66
|
+
};
|
|
67
|
+
static types(): {
|
|
68
|
+
[key: string]: any;
|
|
69
|
+
};
|
|
70
|
+
validate(): void;
|
|
71
|
+
constructor(map?: {
|
|
72
|
+
[key: string]: any;
|
|
73
|
+
});
|
|
74
|
+
}
|
|
75
|
+
export declare class RunPptOutlineGenerationResponseBody extends $dara.Model {
|
|
76
|
+
/**
|
|
77
|
+
* @example
|
|
78
|
+
* success
|
|
79
|
+
*/
|
|
80
|
+
code?: string;
|
|
81
|
+
header?: RunPptOutlineGenerationResponseBodyHeader;
|
|
82
|
+
/**
|
|
83
|
+
* @example
|
|
84
|
+
* 200
|
|
85
|
+
*/
|
|
86
|
+
httpStatusCode?: string;
|
|
87
|
+
/**
|
|
88
|
+
* @example
|
|
89
|
+
* successful
|
|
90
|
+
*/
|
|
91
|
+
message?: string;
|
|
92
|
+
payload?: RunPptOutlineGenerationResponseBodyPayload;
|
|
93
|
+
/**
|
|
94
|
+
* @example
|
|
95
|
+
* F2F366D6-E9FE-1006-BB70-2C650896AAB5
|
|
96
|
+
*/
|
|
97
|
+
requestId?: string;
|
|
98
|
+
/**
|
|
99
|
+
* @example
|
|
100
|
+
* true
|
|
101
|
+
*/
|
|
102
|
+
success?: boolean;
|
|
103
|
+
static names(): {
|
|
104
|
+
[key: string]: string;
|
|
105
|
+
};
|
|
106
|
+
static types(): {
|
|
107
|
+
[key: string]: any;
|
|
108
|
+
};
|
|
109
|
+
validate(): void;
|
|
110
|
+
constructor(map?: {
|
|
111
|
+
[key: string]: any;
|
|
112
|
+
});
|
|
113
|
+
}
|
|
@@ -0,0 +1,148 @@
|
|
|
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.RunPptOutlineGenerationResponseBody = exports.RunPptOutlineGenerationResponseBodyPayload = exports.RunPptOutlineGenerationResponseBodyPayloadOutput = exports.RunPptOutlineGenerationResponseBodyHeader = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
class RunPptOutlineGenerationResponseBodyHeader extends $dara.Model {
|
|
40
|
+
static names() {
|
|
41
|
+
return {
|
|
42
|
+
errorCode: 'ErrorCode',
|
|
43
|
+
errorMessage: 'ErrorMessage',
|
|
44
|
+
event: 'Event',
|
|
45
|
+
sessionId: 'SessionId',
|
|
46
|
+
statusCode: 'StatusCode',
|
|
47
|
+
taskId: 'TaskId',
|
|
48
|
+
traceId: 'TraceId',
|
|
49
|
+
};
|
|
50
|
+
}
|
|
51
|
+
static types() {
|
|
52
|
+
return {
|
|
53
|
+
errorCode: 'string',
|
|
54
|
+
errorMessage: 'string',
|
|
55
|
+
event: 'string',
|
|
56
|
+
sessionId: 'string',
|
|
57
|
+
statusCode: 'number',
|
|
58
|
+
taskId: 'string',
|
|
59
|
+
traceId: 'string',
|
|
60
|
+
};
|
|
61
|
+
}
|
|
62
|
+
validate() {
|
|
63
|
+
super.validate();
|
|
64
|
+
}
|
|
65
|
+
constructor(map) {
|
|
66
|
+
super(map);
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
exports.RunPptOutlineGenerationResponseBodyHeader = RunPptOutlineGenerationResponseBodyHeader;
|
|
70
|
+
class RunPptOutlineGenerationResponseBodyPayloadOutput extends $dara.Model {
|
|
71
|
+
static names() {
|
|
72
|
+
return {
|
|
73
|
+
text: 'Text',
|
|
74
|
+
};
|
|
75
|
+
}
|
|
76
|
+
static types() {
|
|
77
|
+
return {
|
|
78
|
+
text: 'string',
|
|
79
|
+
};
|
|
80
|
+
}
|
|
81
|
+
validate() {
|
|
82
|
+
super.validate();
|
|
83
|
+
}
|
|
84
|
+
constructor(map) {
|
|
85
|
+
super(map);
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
exports.RunPptOutlineGenerationResponseBodyPayloadOutput = RunPptOutlineGenerationResponseBodyPayloadOutput;
|
|
89
|
+
class RunPptOutlineGenerationResponseBodyPayload extends $dara.Model {
|
|
90
|
+
static names() {
|
|
91
|
+
return {
|
|
92
|
+
output: 'Output',
|
|
93
|
+
};
|
|
94
|
+
}
|
|
95
|
+
static types() {
|
|
96
|
+
return {
|
|
97
|
+
output: RunPptOutlineGenerationResponseBodyPayloadOutput,
|
|
98
|
+
};
|
|
99
|
+
}
|
|
100
|
+
validate() {
|
|
101
|
+
if (this.output && typeof this.output.validate === 'function') {
|
|
102
|
+
this.output.validate();
|
|
103
|
+
}
|
|
104
|
+
super.validate();
|
|
105
|
+
}
|
|
106
|
+
constructor(map) {
|
|
107
|
+
super(map);
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
exports.RunPptOutlineGenerationResponseBodyPayload = RunPptOutlineGenerationResponseBodyPayload;
|
|
111
|
+
class RunPptOutlineGenerationResponseBody extends $dara.Model {
|
|
112
|
+
static names() {
|
|
113
|
+
return {
|
|
114
|
+
code: 'Code',
|
|
115
|
+
header: 'Header',
|
|
116
|
+
httpStatusCode: 'HttpStatusCode',
|
|
117
|
+
message: 'Message',
|
|
118
|
+
payload: 'Payload',
|
|
119
|
+
requestId: 'RequestId',
|
|
120
|
+
success: 'Success',
|
|
121
|
+
};
|
|
122
|
+
}
|
|
123
|
+
static types() {
|
|
124
|
+
return {
|
|
125
|
+
code: 'string',
|
|
126
|
+
header: RunPptOutlineGenerationResponseBodyHeader,
|
|
127
|
+
httpStatusCode: 'string',
|
|
128
|
+
message: 'string',
|
|
129
|
+
payload: RunPptOutlineGenerationResponseBodyPayload,
|
|
130
|
+
requestId: 'string',
|
|
131
|
+
success: 'boolean',
|
|
132
|
+
};
|
|
133
|
+
}
|
|
134
|
+
validate() {
|
|
135
|
+
if (this.header && typeof this.header.validate === 'function') {
|
|
136
|
+
this.header.validate();
|
|
137
|
+
}
|
|
138
|
+
if (this.payload && typeof this.payload.validate === 'function') {
|
|
139
|
+
this.payload.validate();
|
|
140
|
+
}
|
|
141
|
+
super.validate();
|
|
142
|
+
}
|
|
143
|
+
constructor(map) {
|
|
144
|
+
super(map);
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
exports.RunPptOutlineGenerationResponseBody = RunPptOutlineGenerationResponseBody;
|
|
148
|
+
//# sourceMappingURL=RunPptOutlineGenerationResponseBody.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RunPptOutlineGenerationResponseBody.js","sourceRoot":"","sources":["../../src/models/RunPptOutlineGenerationResponseBody.ts"],"names":[],"mappings":"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"}
|
package/dist/models/model.d.ts
CHANGED
|
@@ -25,6 +25,7 @@ export { AsyncUploadVideoRequestVideoRoles } from './AsyncUploadVideoRequest';
|
|
|
25
25
|
export { AsyncUploadVideoResponseBodyDataVideoInfos } from './AsyncUploadVideoResponseBody';
|
|
26
26
|
export { AsyncUploadVideoResponseBodyData } from './AsyncUploadVideoResponseBody';
|
|
27
27
|
export { AsyncWritingBiddingDocResponseBodyData } from './AsyncWritingBiddingDocResponseBody';
|
|
28
|
+
export { BindPptArtifactResponseBodyData } from './BindPptArtifactResponseBody';
|
|
28
29
|
export { CancelDeepWriteTaskResponseBodyData } from './CancelDeepWriteTaskResponseBody';
|
|
29
30
|
export { ClearIntervenesResponseBodyData } from './ClearIntervenesResponseBody';
|
|
30
31
|
export { CreateDatasetRequestDatasetConfigSearchSourceConfigsSearchSourceRequestConfigHeaders } from './CreateDatasetRequest';
|
|
@@ -133,6 +134,7 @@ export { GetInterveneRuleDetailResponseBodyDataInterveneRuleDetail } from './Get
|
|
|
133
134
|
export { GetInterveneRuleDetailResponseBodyData } from './GetInterveneRuleDetailResponseBody';
|
|
134
135
|
export { GetInterveneTemplateFileUrlResponseBodyData } from './GetInterveneTemplateFileUrlResponseBody';
|
|
135
136
|
export { GetMaterialByIdResponseBodyData } from './GetMaterialByIdResponseBody';
|
|
137
|
+
export { GetPptConfigResponseBodyData } from './GetPptConfigResponseBody';
|
|
136
138
|
export { GetPropertiesResponseBodyDataConsoleConfig } from './GetPropertiesResponseBody';
|
|
137
139
|
export { GetPropertiesResponseBodyDataIntelligentSearchConfigCopilotPreciseSearchSources } from './GetPropertiesResponseBody';
|
|
138
140
|
export { GetPropertiesResponseBodyDataIntelligentSearchConfigSearchSamplesArticles } from './GetPropertiesResponseBody';
|
|
@@ -182,6 +184,7 @@ export { GetTopicSelectionPerspectiveAnalysisTaskResponseBodyDataWebReviewPoints
|
|
|
182
184
|
export { GetTopicSelectionPerspectiveAnalysisTaskResponseBodyData } from './GetTopicSelectionPerspectiveAnalysisTaskResponseBody';
|
|
183
185
|
export { ImportInterveneFileResponseBodyData } from './ImportInterveneFileResponseBody';
|
|
184
186
|
export { ImportInterveneFileAsyncResponseBodyData } from './ImportInterveneFileAsyncResponseBody';
|
|
187
|
+
export { InitiatePptCreationResponseBodyData } from './InitiatePptCreationResponseBody';
|
|
185
188
|
export { InsertInterveneGlobalReplyRequestReplyMessagList } from './InsertInterveneGlobalReplyRequest';
|
|
186
189
|
export { InsertInterveneGlobalReplyResponseBodyData } from './InsertInterveneGlobalReplyResponseBody';
|
|
187
190
|
export { InsertInterveneRuleRequestInterveneRuleConfigAnswerConfig } from './InsertInterveneRuleRequest';
|
|
@@ -268,6 +271,10 @@ export { RunAbbreviationContentResponseBodyHeader } from './RunAbbreviationConte
|
|
|
268
271
|
export { RunAbbreviationContentResponseBodyPayloadOutput } from './RunAbbreviationContentResponseBody';
|
|
269
272
|
export { RunAbbreviationContentResponseBodyPayloadUsage } from './RunAbbreviationContentResponseBody';
|
|
270
273
|
export { RunAbbreviationContentResponseBodyPayload } from './RunAbbreviationContentResponseBody';
|
|
274
|
+
export { RunAiHelperWritingResponseBodyHeader } from './RunAiHelperWritingResponseBody';
|
|
275
|
+
export { RunAiHelperWritingResponseBodyPayloadOutput } from './RunAiHelperWritingResponseBody';
|
|
276
|
+
export { RunAiHelperWritingResponseBodyPayloadUsage } from './RunAiHelperWritingResponseBody';
|
|
277
|
+
export { RunAiHelperWritingResponseBodyPayload } from './RunAiHelperWritingResponseBody';
|
|
271
278
|
export { RunBookBrainmapResponseBodyHeader } from './RunBookBrainmapResponseBody';
|
|
272
279
|
export { RunBookBrainmapResponseBodyPayloadOutput } from './RunBookBrainmapResponseBody';
|
|
273
280
|
export { RunBookBrainmapResponseBodyPayloadUsage } from './RunBookBrainmapResponseBody';
|
|
@@ -361,6 +368,9 @@ export { RunMultiDocIntroductionResponseBodyPayloadOutputKeyPoints } from './Run
|
|
|
361
368
|
export { RunMultiDocIntroductionResponseBodyPayloadOutput } from './RunMultiDocIntroductionResponseBody';
|
|
362
369
|
export { RunMultiDocIntroductionResponseBodyPayloadUsage } from './RunMultiDocIntroductionResponseBody';
|
|
363
370
|
export { RunMultiDocIntroductionResponseBodyPayload } from './RunMultiDocIntroductionResponseBody';
|
|
371
|
+
export { RunPptOutlineGenerationResponseBodyHeader } from './RunPptOutlineGenerationResponseBody';
|
|
372
|
+
export { RunPptOutlineGenerationResponseBodyPayloadOutput } from './RunPptOutlineGenerationResponseBody';
|
|
373
|
+
export { RunPptOutlineGenerationResponseBodyPayload } from './RunPptOutlineGenerationResponseBody';
|
|
364
374
|
export { RunQuickWritingRequestArticles } from './RunQuickWritingRequest';
|
|
365
375
|
export { RunQuickWritingRequestSearchSources } from './RunQuickWritingRequest';
|
|
366
376
|
export { RunQuickWritingResponseBodyHeader } from './RunQuickWritingResponseBody';
|
|
@@ -637,6 +647,9 @@ export { AsyncUploadVideoResponse } from './AsyncUploadVideoResponse';
|
|
|
637
647
|
export { AsyncWritingBiddingDocRequest } from './AsyncWritingBiddingDocRequest';
|
|
638
648
|
export { AsyncWritingBiddingDocResponseBody } from './AsyncWritingBiddingDocResponseBody';
|
|
639
649
|
export { AsyncWritingBiddingDocResponse } from './AsyncWritingBiddingDocResponse';
|
|
650
|
+
export { BindPptArtifactRequest } from './BindPptArtifactRequest';
|
|
651
|
+
export { BindPptArtifactResponseBody } from './BindPptArtifactResponseBody';
|
|
652
|
+
export { BindPptArtifactResponse } from './BindPptArtifactResponse';
|
|
640
653
|
export { CancelAsyncTaskRequest } from './CancelAsyncTaskRequest';
|
|
641
654
|
export { CancelAsyncTaskResponseBody } from './CancelAsyncTaskResponseBody';
|
|
642
655
|
export { CancelAsyncTaskResponse } from './CancelAsyncTaskResponse';
|
|
@@ -870,6 +883,9 @@ export { GetInterveneTemplateFileUrlResponse } from './GetInterveneTemplateFileU
|
|
|
870
883
|
export { GetMaterialByIdRequest } from './GetMaterialByIdRequest';
|
|
871
884
|
export { GetMaterialByIdResponseBody } from './GetMaterialByIdResponseBody';
|
|
872
885
|
export { GetMaterialByIdResponse } from './GetMaterialByIdResponse';
|
|
886
|
+
export { GetPptConfigRequest } from './GetPptConfigRequest';
|
|
887
|
+
export { GetPptConfigResponseBody } from './GetPptConfigResponseBody';
|
|
888
|
+
export { GetPptConfigResponse } from './GetPptConfigResponse';
|
|
873
889
|
export { GetPropertiesRequest } from './GetPropertiesRequest';
|
|
874
890
|
export { GetPropertiesResponseBody } from './GetPropertiesResponseBody';
|
|
875
891
|
export { GetPropertiesResponse } from './GetPropertiesResponse';
|
|
@@ -894,6 +910,9 @@ export { ImportInterveneFileResponse } from './ImportInterveneFileResponse';
|
|
|
894
910
|
export { ImportInterveneFileAsyncRequest } from './ImportInterveneFileAsyncRequest';
|
|
895
911
|
export { ImportInterveneFileAsyncResponseBody } from './ImportInterveneFileAsyncResponseBody';
|
|
896
912
|
export { ImportInterveneFileAsyncResponse } from './ImportInterveneFileAsyncResponse';
|
|
913
|
+
export { InitiatePptCreationRequest } from './InitiatePptCreationRequest';
|
|
914
|
+
export { InitiatePptCreationResponseBody } from './InitiatePptCreationResponseBody';
|
|
915
|
+
export { InitiatePptCreationResponse } from './InitiatePptCreationResponse';
|
|
897
916
|
export { InsertInterveneGlobalReplyRequest } from './InsertInterveneGlobalReplyRequest';
|
|
898
917
|
export { InsertInterveneGlobalReplyShrinkRequest } from './InsertInterveneGlobalReplyShrinkRequest';
|
|
899
918
|
export { InsertInterveneGlobalReplyResponseBody } from './InsertInterveneGlobalReplyResponseBody';
|
|
@@ -1029,6 +1048,10 @@ export { QueryAuditTaskResponse } from './QueryAuditTaskResponse';
|
|
|
1029
1048
|
export { RunAbbreviationContentRequest } from './RunAbbreviationContentRequest';
|
|
1030
1049
|
export { RunAbbreviationContentResponseBody } from './RunAbbreviationContentResponseBody';
|
|
1031
1050
|
export { RunAbbreviationContentResponse } from './RunAbbreviationContentResponse';
|
|
1051
|
+
export { RunAiHelperWritingRequest } from './RunAiHelperWritingRequest';
|
|
1052
|
+
export { RunAiHelperWritingShrinkRequest } from './RunAiHelperWritingShrinkRequest';
|
|
1053
|
+
export { RunAiHelperWritingResponseBody } from './RunAiHelperWritingResponseBody';
|
|
1054
|
+
export { RunAiHelperWritingResponse } from './RunAiHelperWritingResponse';
|
|
1032
1055
|
export { RunBookBrainmapRequest } from './RunBookBrainmapRequest';
|
|
1033
1056
|
export { RunBookBrainmapResponseBody } from './RunBookBrainmapResponseBody';
|
|
1034
1057
|
export { RunBookBrainmapResponse } from './RunBookBrainmapResponse';
|
|
@@ -1093,6 +1116,9 @@ export { RunMultiDocIntroductionRequest } from './RunMultiDocIntroductionRequest
|
|
|
1093
1116
|
export { RunMultiDocIntroductionShrinkRequest } from './RunMultiDocIntroductionShrinkRequest';
|
|
1094
1117
|
export { RunMultiDocIntroductionResponseBody } from './RunMultiDocIntroductionResponseBody';
|
|
1095
1118
|
export { RunMultiDocIntroductionResponse } from './RunMultiDocIntroductionResponse';
|
|
1119
|
+
export { RunPptOutlineGenerationRequest } from './RunPptOutlineGenerationRequest';
|
|
1120
|
+
export { RunPptOutlineGenerationResponseBody } from './RunPptOutlineGenerationResponseBody';
|
|
1121
|
+
export { RunPptOutlineGenerationResponse } from './RunPptOutlineGenerationResponse';
|
|
1096
1122
|
export { RunQuickWritingRequest } from './RunQuickWritingRequest';
|
|
1097
1123
|
export { RunQuickWritingShrinkRequest } from './RunQuickWritingShrinkRequest';
|
|
1098
1124
|
export { RunQuickWritingResponseBody } from './RunQuickWritingResponseBody';
|