@alicloud/websitebuild20250429 2.34.0 → 2.35.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.
@@ -0,0 +1,49 @@
1
+ import * as $dara from '@darabonba/typescript';
2
+ export declare class UploadMaterialFileForAdminRequest extends $dara.Model {
3
+ /**
4
+ * @remarks
5
+ * The ID of the owner.
6
+ *
7
+ * @example
8
+ * 123456
9
+ */
10
+ belongId?: string;
11
+ /**
12
+ * @remarks
13
+ * The business instance ID.
14
+ *
15
+ * This parameter is required.
16
+ *
17
+ * @example
18
+ * WS20250814102215000001
19
+ */
20
+ bizId?: string;
21
+ /**
22
+ * @remarks
23
+ * The file URL.
24
+ *
25
+ * This parameter is required.
26
+ *
27
+ * @example
28
+ * http://docmind-api-cn-hangzhou.oss-cn-hangzhou.aliyuncs.com/4a7f_209934244261306272_14fd429b731245a79f291c64acf3ac77
29
+ */
30
+ fileUrl?: string;
31
+ /**
32
+ * @remarks
33
+ * The file name.
34
+ *
35
+ * @example
36
+ * Video.
37
+ */
38
+ name?: string;
39
+ static names(): {
40
+ [key: string]: string;
41
+ };
42
+ static types(): {
43
+ [key: string]: any;
44
+ };
45
+ validate(): void;
46
+ constructor(map?: {
47
+ [key: string]: any;
48
+ });
49
+ }
@@ -0,0 +1,64 @@
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.UploadMaterialFileForAdminRequest = void 0;
37
+ // This file is auto-generated, don't edit it
38
+ const $dara = __importStar(require("@darabonba/typescript"));
39
+ class UploadMaterialFileForAdminRequest extends $dara.Model {
40
+ static names() {
41
+ return {
42
+ belongId: 'BelongId',
43
+ bizId: 'BizId',
44
+ fileUrl: 'FileUrl',
45
+ name: 'Name',
46
+ };
47
+ }
48
+ static types() {
49
+ return {
50
+ belongId: 'string',
51
+ bizId: 'string',
52
+ fileUrl: 'string',
53
+ name: 'string',
54
+ };
55
+ }
56
+ validate() {
57
+ super.validate();
58
+ }
59
+ constructor(map) {
60
+ super(map);
61
+ }
62
+ }
63
+ exports.UploadMaterialFileForAdminRequest = UploadMaterialFileForAdminRequest;
64
+ //# sourceMappingURL=UploadMaterialFileForAdminRequest.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UploadMaterialFileForAdminRequest.js","sourceRoot":"","sources":["../../src/models/UploadMaterialFileForAdminRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,iCAAkC,SAAQ,KAAK,CAAC,KAAK;IAqChE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,QAAQ,EAAE,UAAU;YACpB,KAAK,EAAE,OAAO;YACd,OAAO,EAAE,SAAS;YAClB,IAAI,EAAE,MAAM;SACb,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,QAAQ,EAAE,QAAQ;YAClB,KAAK,EAAE,QAAQ;YACf,OAAO,EAAE,QAAQ;YACjB,IAAI,EAAE,QAAQ;SACf,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;AA9DD,8EA8DC"}
@@ -0,0 +1,19 @@
1
+ import * as $dara from '@darabonba/typescript';
2
+ import { UploadMaterialFileForAdminResponseBody } from "./UploadMaterialFileForAdminResponseBody";
3
+ export declare class UploadMaterialFileForAdminResponse extends $dara.Model {
4
+ headers?: {
5
+ [key: string]: string;
6
+ };
7
+ statusCode?: number;
8
+ body?: UploadMaterialFileForAdminResponseBody;
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.UploadMaterialFileForAdminResponse = void 0;
37
+ // This file is auto-generated, don't edit it
38
+ const $dara = __importStar(require("@darabonba/typescript"));
39
+ const UploadMaterialFileForAdminResponseBody_1 = require("./UploadMaterialFileForAdminResponseBody");
40
+ class UploadMaterialFileForAdminResponse 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: UploadMaterialFileForAdminResponseBody_1.UploadMaterialFileForAdminResponseBody,
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.UploadMaterialFileForAdminResponse = UploadMaterialFileForAdminResponse;
69
+ //# sourceMappingURL=UploadMaterialFileForAdminResponse.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UploadMaterialFileForAdminResponse.js","sourceRoot":"","sources":["../../src/models/UploadMaterialFileForAdminResponse.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAC/C,qGAAkG;AAGlG,MAAa,kCAAmC,SAAQ,KAAK,CAAC,KAAK;IAIjE,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,+EAAsC;SAC7C,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,gFAiCC"}
@@ -0,0 +1,219 @@
1
+ import * as $dara from '@darabonba/typescript';
2
+ export declare class UploadMaterialFileForAdminResponseBodyModule extends $dara.Model {
3
+ /**
4
+ * @remarks
5
+ * The business instance ID.
6
+ *
7
+ * @example
8
+ * WD20250703155602000001
9
+ */
10
+ bizId?: string;
11
+ /**
12
+ * @remarks
13
+ * The file content type.
14
+ *
15
+ * @example
16
+ * image/png
17
+ */
18
+ contentType?: string;
19
+ /**
20
+ * @remarks
21
+ * The creation time.
22
+ *
23
+ * @example
24
+ * 2025-11-03 02:05:01
25
+ */
26
+ createTime?: string;
27
+ /**
28
+ * @remarks
29
+ * The time when the file was moved to the recycle bin or deleted.
30
+ *
31
+ * @example
32
+ * 2025-11-03 02:05:01
33
+ */
34
+ deletedTime?: string;
35
+ /**
36
+ * @remarks
37
+ * The directory ID.
38
+ *
39
+ * @example
40
+ * ddddwww
41
+ */
42
+ directoryId?: string;
43
+ /**
44
+ * @remarks
45
+ * The unique ID of the file.
46
+ *
47
+ * @example
48
+ * d75e1e9693cc460da218419d67735567
49
+ */
50
+ fileId?: string;
51
+ /**
52
+ * @remarks
53
+ * The file path.
54
+ *
55
+ * @example
56
+ * https://xxx.xxx.cn/original-data/pdf/mndj_report/cd649b2cc2102c0df57bfa1ae62931d6.zip
57
+ */
58
+ fileUrl?: string;
59
+ /**
60
+ * @remarks
61
+ * The height.
62
+ *
63
+ * @example
64
+ * 1280
65
+ */
66
+ height?: number;
67
+ /**
68
+ * @remarks
69
+ * The file name.
70
+ *
71
+ * @example
72
+ * FileName.
73
+ */
74
+ name?: string;
75
+ /**
76
+ * @remarks
77
+ * The file status.
78
+ *
79
+ * @example
80
+ * RUNNING
81
+ */
82
+ status?: string;
83
+ /**
84
+ * @remarks
85
+ * The file size.
86
+ *
87
+ * @example
88
+ * 23M
89
+ */
90
+ storageSize?: string;
91
+ /**
92
+ * @remarks
93
+ * The file suffix.
94
+ *
95
+ * @example
96
+ * png
97
+ */
98
+ suffix?: string;
99
+ /**
100
+ * @remarks
101
+ * The file type.
102
+ *
103
+ * @example
104
+ * IMAGE
105
+ */
106
+ type?: string;
107
+ /**
108
+ * @remarks
109
+ * The width.
110
+ *
111
+ * @example
112
+ * 1920
113
+ */
114
+ width?: number;
115
+ static names(): {
116
+ [key: string]: string;
117
+ };
118
+ static types(): {
119
+ [key: string]: any;
120
+ };
121
+ validate(): void;
122
+ constructor(map?: {
123
+ [key: string]: any;
124
+ });
125
+ }
126
+ export declare class UploadMaterialFileForAdminResponseBody extends $dara.Model {
127
+ /**
128
+ * @remarks
129
+ * The detailed reason why access is denied.
130
+ *
131
+ * @example
132
+ * {}
133
+ */
134
+ accessDeniedDetail?: string;
135
+ /**
136
+ * @remarks
137
+ * Indicates whether a retry is allowed.
138
+ *
139
+ * @example
140
+ * False
141
+ */
142
+ allowRetry?: boolean;
143
+ /**
144
+ * @remarks
145
+ * The application name.
146
+ *
147
+ * @example
148
+ * or
149
+ */
150
+ appName?: string;
151
+ /**
152
+ * @remarks
153
+ * The dynamic error code.
154
+ *
155
+ * @example
156
+ * ERROR-oo1
157
+ */
158
+ dynamicCode?: string;
159
+ /**
160
+ * @remarks
161
+ * The dynamic message.
162
+ *
163
+ * @example
164
+ * SYSTEM_ERROR
165
+ */
166
+ dynamicMessage?: string;
167
+ /**
168
+ * @remarks
169
+ * The error parameters returned.
170
+ */
171
+ errorArgs?: any[];
172
+ /**
173
+ * @remarks
174
+ * The file object.
175
+ */
176
+ module?: UploadMaterialFileForAdminResponseBodyModule;
177
+ /**
178
+ * @remarks
179
+ * Id of the request
180
+ *
181
+ * @example
182
+ * 6C6B99AC-39EC-5350-874C-204128C905E6
183
+ */
184
+ requestId?: string;
185
+ /**
186
+ * @remarks
187
+ * The error code.
188
+ *
189
+ * @example
190
+ * SYSTEM.ERROR
191
+ */
192
+ rootErrorCode?: string;
193
+ /**
194
+ * @remarks
195
+ * The error message.
196
+ *
197
+ * @example
198
+ * System exception.
199
+ */
200
+ rootErrorMsg?: string;
201
+ /**
202
+ * @remarks
203
+ * Indicates whether the request is processed synchronously.
204
+ *
205
+ * @example
206
+ * True
207
+ */
208
+ synchro?: boolean;
209
+ static names(): {
210
+ [key: string]: string;
211
+ };
212
+ static types(): {
213
+ [key: string]: any;
214
+ };
215
+ validate(): void;
216
+ constructor(map?: {
217
+ [key: string]: any;
218
+ });
219
+ }
@@ -0,0 +1,129 @@
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.UploadMaterialFileForAdminResponseBody = exports.UploadMaterialFileForAdminResponseBodyModule = void 0;
37
+ // This file is auto-generated, don't edit it
38
+ const $dara = __importStar(require("@darabonba/typescript"));
39
+ class UploadMaterialFileForAdminResponseBodyModule extends $dara.Model {
40
+ static names() {
41
+ return {
42
+ bizId: 'BizId',
43
+ contentType: 'ContentType',
44
+ createTime: 'CreateTime',
45
+ deletedTime: 'DeletedTime',
46
+ directoryId: 'DirectoryId',
47
+ fileId: 'FileId',
48
+ fileUrl: 'FileUrl',
49
+ height: 'Height',
50
+ name: 'Name',
51
+ status: 'Status',
52
+ storageSize: 'StorageSize',
53
+ suffix: 'Suffix',
54
+ type: 'Type',
55
+ width: 'Width',
56
+ };
57
+ }
58
+ static types() {
59
+ return {
60
+ bizId: 'string',
61
+ contentType: 'string',
62
+ createTime: 'string',
63
+ deletedTime: 'string',
64
+ directoryId: 'string',
65
+ fileId: 'string',
66
+ fileUrl: 'string',
67
+ height: 'number',
68
+ name: 'string',
69
+ status: 'string',
70
+ storageSize: 'string',
71
+ suffix: 'string',
72
+ type: 'string',
73
+ width: 'number',
74
+ };
75
+ }
76
+ validate() {
77
+ super.validate();
78
+ }
79
+ constructor(map) {
80
+ super(map);
81
+ }
82
+ }
83
+ exports.UploadMaterialFileForAdminResponseBodyModule = UploadMaterialFileForAdminResponseBodyModule;
84
+ class UploadMaterialFileForAdminResponseBody extends $dara.Model {
85
+ static names() {
86
+ return {
87
+ accessDeniedDetail: 'AccessDeniedDetail',
88
+ allowRetry: 'AllowRetry',
89
+ appName: 'AppName',
90
+ dynamicCode: 'DynamicCode',
91
+ dynamicMessage: 'DynamicMessage',
92
+ errorArgs: 'ErrorArgs',
93
+ module: 'Module',
94
+ requestId: 'RequestId',
95
+ rootErrorCode: 'RootErrorCode',
96
+ rootErrorMsg: 'RootErrorMsg',
97
+ synchro: 'Synchro',
98
+ };
99
+ }
100
+ static types() {
101
+ return {
102
+ accessDeniedDetail: 'string',
103
+ allowRetry: 'boolean',
104
+ appName: 'string',
105
+ dynamicCode: 'string',
106
+ dynamicMessage: 'string',
107
+ errorArgs: { 'type': 'array', 'itemType': 'any' },
108
+ module: UploadMaterialFileForAdminResponseBodyModule,
109
+ requestId: 'string',
110
+ rootErrorCode: 'string',
111
+ rootErrorMsg: 'string',
112
+ synchro: 'boolean',
113
+ };
114
+ }
115
+ validate() {
116
+ if (Array.isArray(this.errorArgs)) {
117
+ $dara.Model.validateArray(this.errorArgs);
118
+ }
119
+ if (this.module && typeof this.module.validate === 'function') {
120
+ this.module.validate();
121
+ }
122
+ super.validate();
123
+ }
124
+ constructor(map) {
125
+ super(map);
126
+ }
127
+ }
128
+ exports.UploadMaterialFileForAdminResponseBody = UploadMaterialFileForAdminResponseBody;
129
+ //# sourceMappingURL=UploadMaterialFileForAdminResponseBody.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UploadMaterialFileForAdminResponseBody.js","sourceRoot":"","sources":["../../src/models/UploadMaterialFileForAdminResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,4CAA6C,SAAQ,KAAK,CAAC,KAAK;IAiH3E,MAAM,CAAC,KAAK;QACV,OAAO;YACL,KAAK,EAAE,OAAO;YACd,WAAW,EAAE,aAAa;YAC1B,UAAU,EAAE,YAAY;YACxB,WAAW,EAAE,aAAa;YAC1B,WAAW,EAAE,aAAa;YAC1B,MAAM,EAAE,QAAQ;YAChB,OAAO,EAAE,SAAS;YAClB,MAAM,EAAE,QAAQ;YAChB,IAAI,EAAE,MAAM;YACZ,MAAM,EAAE,QAAQ;YAChB,WAAW,EAAE,aAAa;YAC1B,MAAM,EAAE,QAAQ;YAChB,IAAI,EAAE,MAAM;YACZ,KAAK,EAAE,OAAO;SACf,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,KAAK,EAAE,QAAQ;YACf,WAAW,EAAE,QAAQ;YACrB,UAAU,EAAE,QAAQ;YACpB,WAAW,EAAE,QAAQ;YACrB,WAAW,EAAE,QAAQ;YACrB,MAAM,EAAE,QAAQ;YAChB,OAAO,EAAE,QAAQ;YACjB,MAAM,EAAE,QAAQ;YAChB,IAAI,EAAE,QAAQ;YACd,MAAM,EAAE,QAAQ;YAChB,WAAW,EAAE,QAAQ;YACrB,MAAM,EAAE,QAAQ;YAChB,IAAI,EAAE,QAAQ;YACd,KAAK,EAAE,QAAQ;SAChB,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;AA9JD,oGA8JC;AAED,MAAa,sCAAuC,SAAQ,KAAK,CAAC,KAAK;IAmFrE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,kBAAkB,EAAE,oBAAoB;YACxC,UAAU,EAAE,YAAY;YACxB,OAAO,EAAE,SAAS;YAClB,WAAW,EAAE,aAAa;YAC1B,cAAc,EAAE,gBAAgB;YAChC,SAAS,EAAE,WAAW;YACtB,MAAM,EAAE,QAAQ;YAChB,SAAS,EAAE,WAAW;YACtB,aAAa,EAAE,eAAe;YAC9B,YAAY,EAAE,cAAc;YAC5B,OAAO,EAAE,SAAS;SACnB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,kBAAkB,EAAE,QAAQ;YAC5B,UAAU,EAAE,SAAS;YACrB,OAAO,EAAE,QAAQ;YACjB,WAAW,EAAE,QAAQ;YACrB,cAAc,EAAE,QAAQ;YACxB,SAAS,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,KAAK,EAAE;YACjD,MAAM,EAAE,4CAA4C;YACpD,SAAS,EAAE,QAAQ;YACnB,aAAa,EAAE,QAAQ;YACvB,YAAY,EAAE,QAAQ;YACtB,OAAO,EAAE,SAAS;SACnB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,SAAS,CAAC,EAAE,CAAC;YACjC,KAAK,CAAC,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;QAC5C,CAAC;QACD,IAAG,IAAI,CAAC,MAAM,IAAI,OAAQ,IAAI,CAAC,MAAc,CAAC,QAAQ,KAAK,UAAU,EAAE,CAAC;YACrE,IAAI,CAAC,MAAc,CAAC,QAAQ,EAAE,CAAC;QAClC,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAhID,wFAgIC"}
@@ -227,6 +227,7 @@ export { UpdateAppInstanceResponseBodyModule } from './UpdateAppInstanceResponse
227
227
  export { UpdateAppPluginResponseBodyModule } from './UpdateAppPluginResponseBody';
228
228
  export { UpdateMiniAppBindingResponseBodyData } from './UpdateMiniAppBindingResponseBody';
229
229
  export { UploadAppPluginVersionResponseBodyModule } from './UploadAppPluginVersionResponseBody';
230
+ export { UploadMaterialFileForAdminResponseBodyModule } from './UploadMaterialFileForAdminResponseBody';
230
231
  export { AppAiStaff } from './AppAiStaff';
231
232
  export { AppInstance } from './AppInstance';
232
233
  export { AppInstanceAggregate } from './AppInstanceAggregate';
@@ -792,3 +793,6 @@ export { UploadAppSiteValidationFileResponse } from './UploadAppSiteValidationFi
792
793
  export { UploadMaterialFileRequest } from './UploadMaterialFileRequest';
793
794
  export { UploadMaterialFileResponseBody } from './UploadMaterialFileResponseBody';
794
795
  export { UploadMaterialFileResponse } from './UploadMaterialFileResponse';
796
+ export { UploadMaterialFileForAdminRequest } from './UploadMaterialFileForAdminRequest';
797
+ export { UploadMaterialFileForAdminResponseBody } from './UploadMaterialFileForAdminResponseBody';
798
+ export { UploadMaterialFileForAdminResponse } from './UploadMaterialFileForAdminResponse';