@alicloud/websitebuild20250429 2.27.2 → 2.28.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 (43) hide show
  1. package/dist/client.d.ts +38 -8
  2. package/dist/client.js +86 -8
  3. package/dist/client.js.map +1 -1
  4. package/dist/models/GetAppWorkspaceDirectoryResponseBody.d.ts +2 -2
  5. package/dist/models/OfflineAppInstanceRequest.d.ts +21 -0
  6. package/dist/models/OfflineAppInstanceRequest.js +58 -0
  7. package/dist/models/OfflineAppInstanceRequest.js.map +1 -0
  8. package/dist/models/OfflineAppInstanceResponse.d.ts +19 -0
  9. package/dist/models/OfflineAppInstanceResponse.js +69 -0
  10. package/dist/models/OfflineAppInstanceResponse.js.map +1 -0
  11. package/dist/models/OfflineAppInstanceResponseBody.d.ts +100 -0
  12. package/dist/models/OfflineAppInstanceResponseBody.js +84 -0
  13. package/dist/models/OfflineAppInstanceResponseBody.js.map +1 -0
  14. package/dist/models/OnlineAppInstanceRequest.d.ts +21 -0
  15. package/dist/models/OnlineAppInstanceRequest.js +58 -0
  16. package/dist/models/OnlineAppInstanceRequest.js.map +1 -0
  17. package/dist/models/OnlineAppInstanceResponse.d.ts +19 -0
  18. package/dist/models/OnlineAppInstanceResponse.js +69 -0
  19. package/dist/models/OnlineAppInstanceResponse.js.map +1 -0
  20. package/dist/models/OnlineAppInstanceResponseBody.d.ts +100 -0
  21. package/dist/models/OnlineAppInstanceResponseBody.js +84 -0
  22. package/dist/models/OnlineAppInstanceResponseBody.js.map +1 -0
  23. package/dist/models/SaveAppRequirementRequest.d.ts +1 -1
  24. package/dist/models/SaveAppRequirementResponseBody.d.ts +6 -6
  25. package/dist/models/UpdateAppFileRequest.d.ts +3 -3
  26. package/dist/models/UpdateAppFileResponseBody.d.ts +11 -11
  27. package/dist/models/model.d.ts +6 -0
  28. package/dist/models/model.js +16 -4
  29. package/dist/models/model.js.map +1 -1
  30. package/package.json +1 -1
  31. package/src/client.ts +92 -8
  32. package/src/models/GetAppWorkspaceDirectoryResponseBody.ts +2 -2
  33. package/src/models/OfflineAppInstanceRequest.ts +34 -0
  34. package/src/models/OfflineAppInstanceResponse.ts +40 -0
  35. package/src/models/OfflineAppInstanceResponseBody.ts +137 -0
  36. package/src/models/OnlineAppInstanceRequest.ts +34 -0
  37. package/src/models/OnlineAppInstanceResponse.ts +40 -0
  38. package/src/models/OnlineAppInstanceResponseBody.ts +137 -0
  39. package/src/models/SaveAppRequirementRequest.ts +1 -1
  40. package/src/models/SaveAppRequirementResponseBody.ts +6 -6
  41. package/src/models/UpdateAppFileRequest.ts +3 -3
  42. package/src/models/UpdateAppFileResponseBody.ts +11 -11
  43. package/src/models/model.ts +6 -0
@@ -0,0 +1,34 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+
4
+
5
+ export class OfflineAppInstanceRequest extends $dara.Model {
6
+ /**
7
+ * @remarks
8
+ * The business ID of the application instance.
9
+ *
10
+ * @example
11
+ * WD20250814102215000001
12
+ */
13
+ bizId?: string;
14
+ static names(): { [key: string]: string } {
15
+ return {
16
+ bizId: 'BizId',
17
+ };
18
+ }
19
+
20
+ static types(): { [key: string]: any } {
21
+ return {
22
+ bizId: 'string',
23
+ };
24
+ }
25
+
26
+ validate() {
27
+ super.validate();
28
+ }
29
+
30
+ constructor(map?: { [key: string]: any }) {
31
+ super(map);
32
+ }
33
+ }
34
+
@@ -0,0 +1,40 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+ import { OfflineAppInstanceResponseBody } from "./OfflineAppInstanceResponseBody";
4
+
5
+
6
+ export class OfflineAppInstanceResponse extends $dara.Model {
7
+ headers?: { [key: string]: string };
8
+ statusCode?: number;
9
+ body?: OfflineAppInstanceResponseBody;
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: OfflineAppInstanceResponseBody,
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,137 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+
4
+
5
+ export class OfflineAppInstanceResponseBody extends $dara.Model {
6
+ /**
7
+ * @remarks
8
+ * The deprecated parameter. You can ignore this parameter.
9
+ *
10
+ * @example
11
+ * None
12
+ */
13
+ accessDeniedDetail?: string;
14
+ /**
15
+ * @remarks
16
+ * Indicates whether retry is allowed.
17
+ *
18
+ * @example
19
+ * False
20
+ */
21
+ allowRetry?: boolean;
22
+ /**
23
+ * @remarks
24
+ * The application name.
25
+ *
26
+ * @example
27
+ * DocdbSortingCode
28
+ */
29
+ appName?: string;
30
+ /**
31
+ * @remarks
32
+ * The dynamic error code.
33
+ *
34
+ * @example
35
+ * ERROR-oo1
36
+ */
37
+ dynamicCode?: string;
38
+ /**
39
+ * @remarks
40
+ * The dynamic message.
41
+ *
42
+ * @example
43
+ * abc
44
+ */
45
+ dynamicMessage?: string;
46
+ /**
47
+ * @remarks
48
+ * The error parameters.
49
+ */
50
+ errorArgs?: any[];
51
+ /**
52
+ * @remarks
53
+ * Indicates whether the shift was successful.
54
+ *
55
+ * @example
56
+ * {\\"TotalPageNum\\": 1, \\"ResultLimit\\": False, \\"CurrentPageNum\\": 0, \\"PageSize\\": 0, \\"TotalItemNum\\": 0}
57
+ */
58
+ module?: { [key: string]: any };
59
+ /**
60
+ * @remarks
61
+ * Id of the request
62
+ *
63
+ * @example
64
+ * 6C6B99AC-39EC-5350-874C-204128C905E6
65
+ */
66
+ requestId?: string;
67
+ /**
68
+ * @remarks
69
+ * The error code.
70
+ *
71
+ * @example
72
+ * SYSTEM.ERROR
73
+ */
74
+ rootErrorCode?: string;
75
+ /**
76
+ * @remarks
77
+ * The error message.
78
+ *
79
+ * @example
80
+ * 系统异常
81
+ */
82
+ rootErrorMsg?: string;
83
+ /**
84
+ * @remarks
85
+ * The reserved parameter.
86
+ *
87
+ * @example
88
+ * True
89
+ */
90
+ synchro?: boolean;
91
+ static names(): { [key: string]: string } {
92
+ return {
93
+ accessDeniedDetail: 'AccessDeniedDetail',
94
+ allowRetry: 'AllowRetry',
95
+ appName: 'AppName',
96
+ dynamicCode: 'DynamicCode',
97
+ dynamicMessage: 'DynamicMessage',
98
+ errorArgs: 'ErrorArgs',
99
+ module: 'Module',
100
+ requestId: 'RequestId',
101
+ rootErrorCode: 'RootErrorCode',
102
+ rootErrorMsg: 'RootErrorMsg',
103
+ synchro: 'Synchro',
104
+ };
105
+ }
106
+
107
+ static types(): { [key: string]: any } {
108
+ return {
109
+ accessDeniedDetail: 'string',
110
+ allowRetry: 'boolean',
111
+ appName: 'string',
112
+ dynamicCode: 'string',
113
+ dynamicMessage: 'string',
114
+ errorArgs: { 'type': 'array', 'itemType': 'any' },
115
+ module: { 'type': 'map', 'keyType': 'string', 'valueType': 'any' },
116
+ requestId: 'string',
117
+ rootErrorCode: 'string',
118
+ rootErrorMsg: 'string',
119
+ synchro: 'boolean',
120
+ };
121
+ }
122
+
123
+ validate() {
124
+ if(Array.isArray(this.errorArgs)) {
125
+ $dara.Model.validateArray(this.errorArgs);
126
+ }
127
+ if(this.module) {
128
+ $dara.Model.validateMap(this.module);
129
+ }
130
+ super.validate();
131
+ }
132
+
133
+ constructor(map?: { [key: string]: any }) {
134
+ super(map);
135
+ }
136
+ }
137
+
@@ -0,0 +1,34 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+
4
+
5
+ export class OnlineAppInstanceRequest extends $dara.Model {
6
+ /**
7
+ * @remarks
8
+ * The business ID of the application instance.
9
+ *
10
+ * @example
11
+ * WS20250801154628000001
12
+ */
13
+ bizId?: string;
14
+ static names(): { [key: string]: string } {
15
+ return {
16
+ bizId: 'BizId',
17
+ };
18
+ }
19
+
20
+ static types(): { [key: string]: any } {
21
+ return {
22
+ bizId: 'string',
23
+ };
24
+ }
25
+
26
+ validate() {
27
+ super.validate();
28
+ }
29
+
30
+ constructor(map?: { [key: string]: any }) {
31
+ super(map);
32
+ }
33
+ }
34
+
@@ -0,0 +1,40 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+ import { OnlineAppInstanceResponseBody } from "./OnlineAppInstanceResponseBody";
4
+
5
+
6
+ export class OnlineAppInstanceResponse extends $dara.Model {
7
+ headers?: { [key: string]: string };
8
+ statusCode?: number;
9
+ body?: OnlineAppInstanceResponseBody;
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: OnlineAppInstanceResponseBody,
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,137 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+
4
+
5
+ export class OnlineAppInstanceResponseBody extends $dara.Model {
6
+ /**
7
+ * @remarks
8
+ * The authentication failure details.
9
+ *
10
+ * @example
11
+ * {}
12
+ */
13
+ accessDeniedDetail?: string;
14
+ /**
15
+ * @remarks
16
+ * Indicates whether retries are allowed.
17
+ *
18
+ * @example
19
+ * False
20
+ */
21
+ allowRetry?: boolean;
22
+ /**
23
+ * @remarks
24
+ * The application name. The name can contain digits, letters, and hyphens (-). It must start with a letter and cannot end with a hyphen (-). The name can be up to 36 characters in length.
25
+ *
26
+ * @example
27
+ * stg.mlp_finance_cap_refund_hi
28
+ */
29
+ appName?: string;
30
+ /**
31
+ * @remarks
32
+ * The dynamic error code. This parameter will be deprecated.
33
+ *
34
+ * @example
35
+ * ERROR-oo1
36
+ */
37
+ dynamicCode?: string;
38
+ /**
39
+ * @remarks
40
+ * The placeholder in the dynamic error message.
41
+ *
42
+ * @example
43
+ * xxxxx
44
+ */
45
+ dynamicMessage?: string;
46
+ /**
47
+ * @remarks
48
+ * The error parameters.
49
+ */
50
+ errorArgs?: any[];
51
+ /**
52
+ * @remarks
53
+ * The application module.
54
+ *
55
+ * @example
56
+ * {\\"StorageSize\\": \\"3.29 MB\\", \\"FileNum\\": 30}
57
+ */
58
+ module?: { [key: string]: any };
59
+ /**
60
+ * @remarks
61
+ * The request ID.
62
+ *
63
+ * @example
64
+ * CAB8FBB7-F93D-596D-8BA9-FB278ADF9C22
65
+ */
66
+ requestId?: string;
67
+ /**
68
+ * @remarks
69
+ * The error code.
70
+ *
71
+ * @example
72
+ * SYSTEM.ERROR
73
+ */
74
+ rootErrorCode?: string;
75
+ /**
76
+ * @remarks
77
+ * The exception message.
78
+ *
79
+ * @example
80
+ * 系统异常
81
+ */
82
+ rootErrorMsg?: string;
83
+ /**
84
+ * @remarks
85
+ * Indicates whether the request is processed synchronously.
86
+ *
87
+ * @example
88
+ * True
89
+ */
90
+ synchro?: boolean;
91
+ static names(): { [key: string]: string } {
92
+ return {
93
+ accessDeniedDetail: 'AccessDeniedDetail',
94
+ allowRetry: 'AllowRetry',
95
+ appName: 'AppName',
96
+ dynamicCode: 'DynamicCode',
97
+ dynamicMessage: 'DynamicMessage',
98
+ errorArgs: 'ErrorArgs',
99
+ module: 'Module',
100
+ requestId: 'RequestId',
101
+ rootErrorCode: 'RootErrorCode',
102
+ rootErrorMsg: 'RootErrorMsg',
103
+ synchro: 'Synchro',
104
+ };
105
+ }
106
+
107
+ static types(): { [key: string]: any } {
108
+ return {
109
+ accessDeniedDetail: 'string',
110
+ allowRetry: 'boolean',
111
+ appName: 'string',
112
+ dynamicCode: 'string',
113
+ dynamicMessage: 'string',
114
+ errorArgs: { 'type': 'array', 'itemType': 'any' },
115
+ module: { 'type': 'map', 'keyType': 'string', 'valueType': 'any' },
116
+ requestId: 'string',
117
+ rootErrorCode: 'string',
118
+ rootErrorMsg: 'string',
119
+ synchro: 'boolean',
120
+ };
121
+ }
122
+
123
+ validate() {
124
+ if(Array.isArray(this.errorArgs)) {
125
+ $dara.Model.validateArray(this.errorArgs);
126
+ }
127
+ if(this.module) {
128
+ $dara.Model.validateMap(this.module);
129
+ }
130
+ super.validate();
131
+ }
132
+
133
+ constructor(map?: { [key: string]: any }) {
134
+ super(map);
135
+ }
136
+ }
137
+
@@ -5,7 +5,7 @@ import * as $dara from '@darabonba/typescript';
5
5
  export class SaveAppRequirementRequest extends $dara.Model {
6
6
  /**
7
7
  * @remarks
8
- * Session ID
8
+ * Conversation ID
9
9
  *
10
10
  * @example
11
11
  * 5b7105a2-2999-430b-ba23-ba09149d5434
@@ -13,7 +13,7 @@ export class SaveAppRequirementResponseBody extends $dara.Model {
13
13
  accessDeniedDetail?: string;
14
14
  /**
15
15
  * @remarks
16
- * Indicates whether retry is allowed.
16
+ * Whether retry is allowed
17
17
  *
18
18
  * @example
19
19
  * False
@@ -21,7 +21,7 @@ export class SaveAppRequirementResponseBody extends $dara.Model {
21
21
  allowRetry?: boolean;
22
22
  /**
23
23
  * @remarks
24
- * Application name. Query the application with this name.
24
+ * Application name, used to query the application with this name
25
25
  *
26
26
  * @example
27
27
  * ish-intelligence-store-platform-admin-web
@@ -37,8 +37,8 @@ export class SaveAppRequirementResponseBody extends $dara.Model {
37
37
  dynamicCode?: string;
38
38
  /**
39
39
  * @remarks
40
- * Dynamic error message used to replace the `%s` placeholder in the **ErrMessage** error message in the response.
41
- * > If **ErrMessage** returns **The Value of Input Parameter %s is not valid** and **DynamicMessage** returns **DtsJobId**, it indicates that the request parameter **DtsJobId** provided is invalid.
40
+ * Dynamic error message, used to replace the `%s` in the **ErrMessage** error message.
41
+ * > If **ErrMessage** returns **The Value of Input Parameter %s is not valid** and **DynamicMessage** returns **DtsJobId**, it indicates that the request parameter **DtsJobId** is invalid.
42
42
  *
43
43
  * @example
44
44
  * SYSTEM_ERROR
@@ -75,7 +75,7 @@ export class SaveAppRequirementResponseBody extends $dara.Model {
75
75
  rootErrorCode?: string;
76
76
  /**
77
77
  * @remarks
78
- * Abnormal message
78
+ * Exception message
79
79
  *
80
80
  * @example
81
81
  * 系统异常
@@ -83,7 +83,7 @@ export class SaveAppRequirementResponseBody extends $dara.Model {
83
83
  rootErrorMsg?: string;
84
84
  /**
85
85
  * @remarks
86
- * Backup parameter.
86
+ * Reserved parameter.
87
87
  *
88
88
  * @example
89
89
  * True
@@ -5,7 +5,7 @@ import * as $dara from '@darabonba/typescript';
5
5
  export class UpdateAppFileRequest extends $dara.Model {
6
6
  /**
7
7
  * @remarks
8
- * File content
8
+ * The file content.
9
9
  *
10
10
  * @example
11
11
  * verify_46630893e2b5efde444c82b4e3707adb
@@ -13,7 +13,7 @@ export class UpdateAppFileRequest extends $dara.Model {
13
13
  content?: string;
14
14
  /**
15
15
  * @remarks
16
- * Session ID
16
+ * The session ID.
17
17
  *
18
18
  * @example
19
19
  * 593fe1a2-d0b4-4fde-a2b0-78ad6a438d41
@@ -21,7 +21,7 @@ export class UpdateAppFileRequest extends $dara.Model {
21
21
  conversationId?: string;
22
22
  /**
23
23
  * @remarks
24
- * File Path
24
+ * The file path.
25
25
  *
26
26
  * @example
27
27
  * pt3/01/31/pengpeixin.png
@@ -5,7 +5,7 @@ import * as $dara from '@darabonba/typescript';
5
5
  export class UpdateAppFileResponseBody extends $dara.Model {
6
6
  /**
7
7
  * @remarks
8
- * Detailed reason for access denial.
8
+ * The details about the access denial.
9
9
  *
10
10
  * @example
11
11
  * {}
@@ -13,7 +13,7 @@ export class UpdateAppFileResponseBody extends $dara.Model {
13
13
  accessDeniedDetail?: string;
14
14
  /**
15
15
  * @remarks
16
- * Indicates whether retry is allowed
16
+ * Indicates whether retries are allowed.
17
17
  *
18
18
  * @example
19
19
  * False
@@ -21,7 +21,7 @@ export class UpdateAppFileResponseBody extends $dara.Model {
21
21
  allowRetry?: boolean;
22
22
  /**
23
23
  * @remarks
24
- * Application name. It can contain digits, letters, and hyphens (-). It must start with a letter, must not end with a hyphen (-), and must not exceed 36 characters.
24
+ * The application name. The name can contain digits, letters, and hyphens (-). It must start with a letter, cannot end with a hyphen (-), and cannot exceed 36 characters in length.
25
25
  *
26
26
  * @example
27
27
  * watermark
@@ -29,7 +29,7 @@ export class UpdateAppFileResponseBody extends $dara.Model {
29
29
  appName?: string;
30
30
  /**
31
31
  * @remarks
32
- * Dynamic code. Not currently used. Ignore this field.
32
+ * The dynamic code. This parameter is not in use. Ignore this parameter.
33
33
  *
34
34
  * @example
35
35
  * ERROR-oo1
@@ -37,8 +37,8 @@ export class UpdateAppFileResponseBody extends $dara.Model {
37
37
  dynamicCode?: string;
38
38
  /**
39
39
  * @remarks
40
- * Dynamic error message used to replace the `%s` placeholder in the **ErrMessage** error message.
41
- * > If **ErrMessage** returns **The Value of Input Parameter %s is not valid** and **DynamicMessage** returns **DtsJobId**, it indicates that the provided request parameter **DtsJobId** is invalid.
40
+ * The dynamic error message, which is used to replace the `%s` variable in the **ErrMessage** parameter.
41
+ * > If **ErrMessage** returns **The Value of Input Parameter %s is not valid** and **DynamicMessage** returns **DtsJobId**, the value of the **DtsJobId** request parameter is invalid.
42
42
  *
43
43
  * @example
44
44
  * abc
@@ -46,12 +46,12 @@ export class UpdateAppFileResponseBody extends $dara.Model {
46
46
  dynamicMessage?: string;
47
47
  /**
48
48
  * @remarks
49
- * Invalid parameters.
49
+ * The error parameters.
50
50
  */
51
51
  errorArgs?: any[];
52
52
  /**
53
53
  * @remarks
54
- * Indicates whether the shift succeeded
54
+ * Indicates whether the move operation is successful.
55
55
  *
56
56
  * @example
57
57
  * true
@@ -67,7 +67,7 @@ export class UpdateAppFileResponseBody extends $dara.Model {
67
67
  requestId?: string;
68
68
  /**
69
69
  * @remarks
70
- * Error code
70
+ * The error code.
71
71
  *
72
72
  * @example
73
73
  * SYSTEM.ERROR
@@ -75,7 +75,7 @@ export class UpdateAppFileResponseBody extends $dara.Model {
75
75
  rootErrorCode?: string;
76
76
  /**
77
77
  * @remarks
78
- * Abnormal message
78
+ * The exception message.
79
79
  *
80
80
  * @example
81
81
  * 系统异常
@@ -83,7 +83,7 @@ export class UpdateAppFileResponseBody extends $dara.Model {
83
83
  rootErrorMsg?: string;
84
84
  /**
85
85
  * @remarks
86
- * Indicates whether processing is synchronous
86
+ * Indicates whether the request is synchronously processed.
87
87
  *
88
88
  * @example
89
89
  * True
@@ -478,6 +478,12 @@ export { MoveMaterialFileResponse } from './MoveMaterialFileResponse';
478
478
  export { NotifyAppNotificationForAdminRequest } from './NotifyAppNotificationForAdminRequest';
479
479
  export { NotifyAppNotificationForAdminResponseBody } from './NotifyAppNotificationForAdminResponseBody';
480
480
  export { NotifyAppNotificationForAdminResponse } from './NotifyAppNotificationForAdminResponse';
481
+ export { OfflineAppInstanceRequest } from './OfflineAppInstanceRequest';
482
+ export { OfflineAppInstanceResponseBody } from './OfflineAppInstanceResponseBody';
483
+ export { OfflineAppInstanceResponse } from './OfflineAppInstanceResponse';
484
+ export { OnlineAppInstanceRequest } from './OnlineAppInstanceRequest';
485
+ export { OnlineAppInstanceResponseBody } from './OnlineAppInstanceResponseBody';
486
+ export { OnlineAppInstanceResponse } from './OnlineAppInstanceResponse';
481
487
  export { OperateAppInstanceForPartnerRequest } from './OperateAppInstanceForPartnerRequest';
482
488
  export { OperateAppInstanceForPartnerResponseBody } from './OperateAppInstanceForPartnerResponseBody';
483
489
  export { OperateAppInstanceForPartnerResponse } from './OperateAppInstanceForPartnerResponse';