@alicloud/websitebuild20250429 2.25.0 → 2.26.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 (69) hide show
  1. package/dist/client.d.ts +60 -0
  2. package/dist/client.js +198 -0
  3. package/dist/client.js.map +1 -1
  4. package/dist/models/AppInstanceAggregate.d.ts +1 -0
  5. package/dist/models/AppInstanceAggregate.js +2 -0
  6. package/dist/models/AppInstanceAggregate.js.map +1 -1
  7. package/dist/models/ConfirmAppInstanceRequest.d.ts +65 -0
  8. package/dist/models/ConfirmAppInstanceRequest.js +80 -0
  9. package/dist/models/ConfirmAppInstanceRequest.js.map +1 -0
  10. package/dist/models/ConfirmAppInstanceResponse.d.ts +19 -0
  11. package/dist/models/ConfirmAppInstanceResponse.js +69 -0
  12. package/dist/models/ConfirmAppInstanceResponse.js.map +1 -0
  13. package/dist/models/ConfirmAppInstanceResponseBody.d.ts +91 -0
  14. package/dist/models/ConfirmAppInstanceResponseBody.js +109 -0
  15. package/dist/models/ConfirmAppInstanceResponseBody.js.map +1 -0
  16. package/dist/models/DeleteAppFileRequest.d.ts +23 -0
  17. package/dist/models/DeleteAppFileRequest.js +60 -0
  18. package/dist/models/DeleteAppFileRequest.js.map +1 -0
  19. package/dist/models/DeleteAppFileResponse.d.ts +19 -0
  20. package/dist/models/DeleteAppFileResponse.js +69 -0
  21. package/dist/models/DeleteAppFileResponse.js.map +1 -0
  22. package/dist/models/DeleteAppFileResponseBody.d.ts +63 -0
  23. package/dist/models/DeleteAppFileResponseBody.js +81 -0
  24. package/dist/models/DeleteAppFileResponseBody.js.map +1 -0
  25. package/dist/models/GetOssUploadPolicyRequest.d.ts +18 -0
  26. package/dist/models/GetOssUploadPolicyRequest.js +58 -0
  27. package/dist/models/GetOssUploadPolicyRequest.js.map +1 -0
  28. package/dist/models/GetOssUploadPolicyResponse.d.ts +19 -0
  29. package/dist/models/GetOssUploadPolicyResponse.js +69 -0
  30. package/dist/models/GetOssUploadPolicyResponse.js.map +1 -0
  31. package/dist/models/GetOssUploadPolicyResponseBody.d.ts +117 -0
  32. package/dist/models/GetOssUploadPolicyResponseBody.js +117 -0
  33. package/dist/models/GetOssUploadPolicyResponseBody.js.map +1 -0
  34. package/dist/models/GetTempDownloadUrlRequest.d.ts +18 -0
  35. package/dist/models/GetTempDownloadUrlRequest.js +58 -0
  36. package/dist/models/GetTempDownloadUrlRequest.js.map +1 -0
  37. package/dist/models/GetTempDownloadUrlResponse.d.ts +19 -0
  38. package/dist/models/GetTempDownloadUrlResponse.js +69 -0
  39. package/dist/models/GetTempDownloadUrlResponse.js.map +1 -0
  40. package/dist/models/GetTempDownloadUrlResponseBody.d.ts +63 -0
  41. package/dist/models/GetTempDownloadUrlResponseBody.js +81 -0
  42. package/dist/models/GetTempDownloadUrlResponseBody.js.map +1 -0
  43. package/dist/models/ListAppPublishHistoryRequest.d.ts +1 -0
  44. package/dist/models/ListAppPublishHistoryRequest.js +2 -0
  45. package/dist/models/ListAppPublishHistoryRequest.js.map +1 -1
  46. package/dist/models/UpdateAppSeoStatusRequest.d.ts +5 -0
  47. package/dist/models/UpdateAppSeoStatusRequest.js +2 -0
  48. package/dist/models/UpdateAppSeoStatusRequest.js.map +1 -1
  49. package/dist/models/model.d.ts +14 -0
  50. package/dist/models/model.js +41 -12
  51. package/dist/models/model.js.map +1 -1
  52. package/package.json +1 -1
  53. package/src/client.ts +224 -0
  54. package/src/models/AppInstanceAggregate.ts +3 -0
  55. package/src/models/ConfirmAppInstanceRequest.ts +100 -0
  56. package/src/models/ConfirmAppInstanceResponse.ts +40 -0
  57. package/src/models/ConfirmAppInstanceResponseBody.ts +146 -0
  58. package/src/models/DeleteAppFileRequest.ts +38 -0
  59. package/src/models/DeleteAppFileResponse.ts +40 -0
  60. package/src/models/DeleteAppFileResponseBody.ts +99 -0
  61. package/src/models/GetOssUploadPolicyRequest.ts +31 -0
  62. package/src/models/GetOssUploadPolicyResponse.ts +40 -0
  63. package/src/models/GetOssUploadPolicyResponseBody.ts +180 -0
  64. package/src/models/GetTempDownloadUrlRequest.ts +31 -0
  65. package/src/models/GetTempDownloadUrlResponse.ts +40 -0
  66. package/src/models/GetTempDownloadUrlResponseBody.ts +99 -0
  67. package/src/models/ListAppPublishHistoryRequest.ts +3 -0
  68. package/src/models/UpdateAppSeoStatusRequest.ts +7 -0
  69. package/src/models/model.ts +14 -0
@@ -0,0 +1,38 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+
4
+
5
+ export class DeleteAppFileRequest extends $dara.Model {
6
+ /**
7
+ * @example
8
+ * 593fe1a2-d0b4-4fde-a2b0-78ad6a438d41
9
+ */
10
+ conversationId?: string;
11
+ /**
12
+ * @example
13
+ * pt3/01/31/pengpeixin.png
14
+ */
15
+ filePath?: string;
16
+ static names(): { [key: string]: string } {
17
+ return {
18
+ conversationId: 'ConversationId',
19
+ filePath: 'FilePath',
20
+ };
21
+ }
22
+
23
+ static types(): { [key: string]: any } {
24
+ return {
25
+ conversationId: 'string',
26
+ filePath: 'string',
27
+ };
28
+ }
29
+
30
+ validate() {
31
+ super.validate();
32
+ }
33
+
34
+ constructor(map?: { [key: string]: any }) {
35
+ super(map);
36
+ }
37
+ }
38
+
@@ -0,0 +1,40 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+ import { DeleteAppFileResponseBody } from "./DeleteAppFileResponseBody";
4
+
5
+
6
+ export class DeleteAppFileResponse extends $dara.Model {
7
+ headers?: { [key: string]: string };
8
+ statusCode?: number;
9
+ body?: DeleteAppFileResponseBody;
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: DeleteAppFileResponseBody,
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,99 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+
4
+
5
+ export class DeleteAppFileResponseBody extends $dara.Model {
6
+ /**
7
+ * @example
8
+ * {}
9
+ */
10
+ accessDeniedDetail?: string;
11
+ /**
12
+ * @example
13
+ * False
14
+ */
15
+ allowRetry?: boolean;
16
+ /**
17
+ * @example
18
+ * spring-cloud-b
19
+ */
20
+ appName?: string;
21
+ /**
22
+ * @example
23
+ * ERROR-oo1
24
+ */
25
+ dynamicCode?: string;
26
+ /**
27
+ * @example
28
+ * SYSTEM_ERROR
29
+ */
30
+ dynamicMessage?: string;
31
+ errorArgs?: any[];
32
+ /**
33
+ * @example
34
+ * true
35
+ */
36
+ module?: boolean;
37
+ /**
38
+ * @remarks
39
+ * Id of the request
40
+ *
41
+ * @example
42
+ * 6C6B99AC-39EC-5350-874C-204128C905E6
43
+ */
44
+ requestId?: string;
45
+ /**
46
+ * @example
47
+ * SYSTEM.ERROR
48
+ */
49
+ rootErrorCode?: string;
50
+ rootErrorMsg?: string;
51
+ /**
52
+ * @example
53
+ * True
54
+ */
55
+ synchro?: boolean;
56
+ static names(): { [key: string]: string } {
57
+ return {
58
+ accessDeniedDetail: 'AccessDeniedDetail',
59
+ allowRetry: 'AllowRetry',
60
+ appName: 'AppName',
61
+ dynamicCode: 'DynamicCode',
62
+ dynamicMessage: 'DynamicMessage',
63
+ errorArgs: 'ErrorArgs',
64
+ module: 'Module',
65
+ requestId: 'RequestId',
66
+ rootErrorCode: 'RootErrorCode',
67
+ rootErrorMsg: 'RootErrorMsg',
68
+ synchro: 'Synchro',
69
+ };
70
+ }
71
+
72
+ static types(): { [key: string]: any } {
73
+ return {
74
+ accessDeniedDetail: 'string',
75
+ allowRetry: 'boolean',
76
+ appName: 'string',
77
+ dynamicCode: 'string',
78
+ dynamicMessage: 'string',
79
+ errorArgs: { 'type': 'array', 'itemType': 'any' },
80
+ module: 'boolean',
81
+ requestId: 'string',
82
+ rootErrorCode: 'string',
83
+ rootErrorMsg: 'string',
84
+ synchro: 'boolean',
85
+ };
86
+ }
87
+
88
+ validate() {
89
+ if(Array.isArray(this.errorArgs)) {
90
+ $dara.Model.validateArray(this.errorArgs);
91
+ }
92
+ super.validate();
93
+ }
94
+
95
+ constructor(map?: { [key: string]: any }) {
96
+ super(map);
97
+ }
98
+ }
99
+
@@ -0,0 +1,31 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+
4
+
5
+ export class GetOssUploadPolicyRequest extends $dara.Model {
6
+ /**
7
+ * @example
8
+ * default
9
+ */
10
+ scenario?: string;
11
+ static names(): { [key: string]: string } {
12
+ return {
13
+ scenario: 'Scenario',
14
+ };
15
+ }
16
+
17
+ static types(): { [key: string]: any } {
18
+ return {
19
+ scenario: 'string',
20
+ };
21
+ }
22
+
23
+ validate() {
24
+ super.validate();
25
+ }
26
+
27
+ constructor(map?: { [key: string]: any }) {
28
+ super(map);
29
+ }
30
+ }
31
+
@@ -0,0 +1,40 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+ import { GetOssUploadPolicyResponseBody } from "./GetOssUploadPolicyResponseBody";
4
+
5
+
6
+ export class GetOssUploadPolicyResponse extends $dara.Model {
7
+ headers?: { [key: string]: string };
8
+ statusCode?: number;
9
+ body?: GetOssUploadPolicyResponseBody;
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: GetOssUploadPolicyResponseBody,
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,180 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+
4
+
5
+ export class GetOssUploadPolicyResponseBodyModule extends $dara.Model {
6
+ /**
7
+ * @example
8
+ * pano_src/100070-2679478/images/
9
+ */
10
+ dir?: string;
11
+ /**
12
+ * @example
13
+ * *.com
14
+ */
15
+ host?: string;
16
+ /**
17
+ * @example
18
+ * Accept
19
+ */
20
+ policy?: string;
21
+ /**
22
+ * @example
23
+ * ***
24
+ */
25
+ securityToken?: string;
26
+ /**
27
+ * @example
28
+ * ****************************
29
+ */
30
+ signature?: string;
31
+ /**
32
+ * @example
33
+ * 2019-04-02
34
+ */
35
+ version?: string;
36
+ /**
37
+ * @remarks
38
+ * x-oss-credential
39
+ *
40
+ * @example
41
+ * 123123
42
+ */
43
+ xossCredential?: string;
44
+ /**
45
+ * @remarks
46
+ * x-oss-date
47
+ *
48
+ * @example
49
+ * 20260101
50
+ */
51
+ xossDate?: string;
52
+ static names(): { [key: string]: string } {
53
+ return {
54
+ dir: 'Dir',
55
+ host: 'Host',
56
+ policy: 'Policy',
57
+ securityToken: 'SecurityToken',
58
+ signature: 'Signature',
59
+ version: 'Version',
60
+ xossCredential: 'XossCredential',
61
+ xossDate: 'XossDate',
62
+ };
63
+ }
64
+
65
+ static types(): { [key: string]: any } {
66
+ return {
67
+ dir: 'string',
68
+ host: 'string',
69
+ policy: 'string',
70
+ securityToken: 'string',
71
+ signature: 'string',
72
+ version: 'string',
73
+ xossCredential: 'string',
74
+ xossDate: 'string',
75
+ };
76
+ }
77
+
78
+ validate() {
79
+ super.validate();
80
+ }
81
+
82
+ constructor(map?: { [key: string]: any }) {
83
+ super(map);
84
+ }
85
+ }
86
+
87
+ export class GetOssUploadPolicyResponseBody extends $dara.Model {
88
+ /**
89
+ * @example
90
+ * {}
91
+ */
92
+ accessDeniedDetail?: string;
93
+ /**
94
+ * @example
95
+ * False
96
+ */
97
+ allowRetry?: boolean;
98
+ /**
99
+ * @example
100
+ * ish-intelligence-store-platform-admin-web
101
+ */
102
+ appName?: string;
103
+ /**
104
+ * @example
105
+ * ERROR-oo1
106
+ */
107
+ dynamicCode?: string;
108
+ /**
109
+ * @example
110
+ * SYSTEM_ERROR
111
+ */
112
+ dynamicMessage?: string;
113
+ errorArgs?: any[];
114
+ module?: GetOssUploadPolicyResponseBodyModule;
115
+ /**
116
+ * @remarks
117
+ * Id of the request
118
+ *
119
+ * @example
120
+ * 6C6B99AC-39EC-5350-874C-204128C905E6
121
+ */
122
+ requestId?: string;
123
+ /**
124
+ * @example
125
+ * SYSTEM.ERROR
126
+ */
127
+ rootErrorCode?: string;
128
+ rootErrorMsg?: string;
129
+ /**
130
+ * @example
131
+ * True
132
+ */
133
+ synchro?: boolean;
134
+ static names(): { [key: string]: string } {
135
+ return {
136
+ accessDeniedDetail: 'AccessDeniedDetail',
137
+ allowRetry: 'AllowRetry',
138
+ appName: 'AppName',
139
+ dynamicCode: 'DynamicCode',
140
+ dynamicMessage: 'DynamicMessage',
141
+ errorArgs: 'ErrorArgs',
142
+ module: 'Module',
143
+ requestId: 'RequestId',
144
+ rootErrorCode: 'RootErrorCode',
145
+ rootErrorMsg: 'RootErrorMsg',
146
+ synchro: 'Synchro',
147
+ };
148
+ }
149
+
150
+ static types(): { [key: string]: any } {
151
+ return {
152
+ accessDeniedDetail: 'string',
153
+ allowRetry: 'boolean',
154
+ appName: 'string',
155
+ dynamicCode: 'string',
156
+ dynamicMessage: 'string',
157
+ errorArgs: { 'type': 'array', 'itemType': 'any' },
158
+ module: GetOssUploadPolicyResponseBodyModule,
159
+ requestId: 'string',
160
+ rootErrorCode: 'string',
161
+ rootErrorMsg: 'string',
162
+ synchro: 'boolean',
163
+ };
164
+ }
165
+
166
+ validate() {
167
+ if(Array.isArray(this.errorArgs)) {
168
+ $dara.Model.validateArray(this.errorArgs);
169
+ }
170
+ if(this.module && typeof (this.module as any).validate === 'function') {
171
+ (this.module as any).validate();
172
+ }
173
+ super.validate();
174
+ }
175
+
176
+ constructor(map?: { [key: string]: any }) {
177
+ super(map);
178
+ }
179
+ }
180
+
@@ -0,0 +1,31 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+
4
+
5
+ export class GetTempDownloadUrlRequest extends $dara.Model {
6
+ /**
7
+ * @example
8
+ * backend/detection/objects/r-0008ujvfksltf5j45n81/task-000hckiuwyau0gwn17vq.jpg
9
+ */
10
+ ossKey?: string;
11
+ static names(): { [key: string]: string } {
12
+ return {
13
+ ossKey: 'OssKey',
14
+ };
15
+ }
16
+
17
+ static types(): { [key: string]: any } {
18
+ return {
19
+ ossKey: 'string',
20
+ };
21
+ }
22
+
23
+ validate() {
24
+ super.validate();
25
+ }
26
+
27
+ constructor(map?: { [key: string]: any }) {
28
+ super(map);
29
+ }
30
+ }
31
+
@@ -0,0 +1,40 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+ import { GetTempDownloadUrlResponseBody } from "./GetTempDownloadUrlResponseBody";
4
+
5
+
6
+ export class GetTempDownloadUrlResponse extends $dara.Model {
7
+ headers?: { [key: string]: string };
8
+ statusCode?: number;
9
+ body?: GetTempDownloadUrlResponseBody;
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: GetTempDownloadUrlResponseBody,
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,99 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+
4
+
5
+ export class GetTempDownloadUrlResponseBody extends $dara.Model {
6
+ /**
7
+ * @example
8
+ * {}
9
+ */
10
+ accessDeniedDetail?: string;
11
+ /**
12
+ * @example
13
+ * False
14
+ */
15
+ allowRetry?: boolean;
16
+ /**
17
+ * @example
18
+ * spring-cloud-b
19
+ */
20
+ appName?: string;
21
+ /**
22
+ * @example
23
+ * ERROR-oo1
24
+ */
25
+ dynamicCode?: string;
26
+ /**
27
+ * @example
28
+ * SYSTEM_ERROR
29
+ */
30
+ dynamicMessage?: string;
31
+ errorArgs?: any[];
32
+ /**
33
+ * @example
34
+ * true
35
+ */
36
+ module?: string;
37
+ /**
38
+ * @remarks
39
+ * Id of the request
40
+ *
41
+ * @example
42
+ * 6C6B99AC-39EC-5350-874C-204128C905E6
43
+ */
44
+ requestId?: string;
45
+ /**
46
+ * @example
47
+ * SYSTEM.ERROR
48
+ */
49
+ rootErrorCode?: string;
50
+ rootErrorMsg?: string;
51
+ /**
52
+ * @example
53
+ * True
54
+ */
55
+ synchro?: boolean;
56
+ static names(): { [key: string]: string } {
57
+ return {
58
+ accessDeniedDetail: 'AccessDeniedDetail',
59
+ allowRetry: 'AllowRetry',
60
+ appName: 'AppName',
61
+ dynamicCode: 'DynamicCode',
62
+ dynamicMessage: 'DynamicMessage',
63
+ errorArgs: 'ErrorArgs',
64
+ module: 'Module',
65
+ requestId: 'RequestId',
66
+ rootErrorCode: 'RootErrorCode',
67
+ rootErrorMsg: 'RootErrorMsg',
68
+ synchro: 'Synchro',
69
+ };
70
+ }
71
+
72
+ static types(): { [key: string]: any } {
73
+ return {
74
+ accessDeniedDetail: 'string',
75
+ allowRetry: 'boolean',
76
+ appName: 'string',
77
+ dynamicCode: 'string',
78
+ dynamicMessage: 'string',
79
+ errorArgs: { 'type': 'array', 'itemType': 'any' },
80
+ module: 'string',
81
+ requestId: 'string',
82
+ rootErrorCode: 'string',
83
+ rootErrorMsg: 'string',
84
+ synchro: 'boolean',
85
+ };
86
+ }
87
+
88
+ validate() {
89
+ if(Array.isArray(this.errorArgs)) {
90
+ $dara.Model.validateArray(this.errorArgs);
91
+ }
92
+ super.validate();
93
+ }
94
+
95
+ constructor(map?: { [key: string]: any }) {
96
+ super(map);
97
+ }
98
+ }
99
+
@@ -8,6 +8,7 @@ export class ListAppPublishHistoryRequest extends $dara.Model {
8
8
  * WD20250703155602000001
9
9
  */
10
10
  bizId?: string;
11
+ deployChannel?: string;
11
12
  keyword?: string;
12
13
  /**
13
14
  * @example
@@ -47,6 +48,7 @@ export class ListAppPublishHistoryRequest extends $dara.Model {
47
48
  static names(): { [key: string]: string } {
48
49
  return {
49
50
  bizId: 'BizId',
51
+ deployChannel: 'DeployChannel',
50
52
  keyword: 'Keyword',
51
53
  maxResults: 'MaxResults',
52
54
  nextToken: 'NextToken',
@@ -61,6 +63,7 @@ export class ListAppPublishHistoryRequest extends $dara.Model {
61
63
  static types(): { [key: string]: any } {
62
64
  return {
63
65
  bizId: 'string',
66
+ deployChannel: 'string',
64
67
  keyword: 'string',
65
68
  maxResults: 'number',
66
69
  nextToken: 'string',
@@ -19,6 +19,11 @@ export class UpdateAppSeoStatusRequest extends $dara.Model {
19
19
  * yjdw.bpu.edu.cn-waf
20
20
  */
21
21
  domain?: string;
22
+ /**
23
+ * @example
24
+ * 123123
25
+ */
26
+ seAuthInfo?: string;
22
27
  /**
23
28
  * @remarks
24
29
  * Search Engine Type
@@ -31,6 +36,7 @@ export class UpdateAppSeoStatusRequest extends $dara.Model {
31
36
  return {
32
37
  bizId: 'BizId',
33
38
  domain: 'Domain',
39
+ seAuthInfo: 'SeAuthInfo',
34
40
  seType: 'SeType',
35
41
  };
36
42
  }
@@ -39,6 +45,7 @@ export class UpdateAppSeoStatusRequest extends $dara.Model {
39
45
  return {
40
46
  bizId: 'string',
41
47
  domain: 'string',
48
+ seAuthInfo: 'string',
42
49
  seType: 'string',
43
50
  };
44
51
  }
@@ -17,6 +17,7 @@ export { BatchCheckResourceMeasureResponseBodyModule } from './BatchCheckResourc
17
17
  export { BindAppDomainResponseBodyModule } from './BindAppDomainResponseBody';
18
18
  export { CheckResourceMeasureResponseBodyModule } from './CheckResourceMeasureResponseBody';
19
19
  export { CheckUserResourceMeasureResponseBodyModule } from './CheckUserResourceMeasureResponseBody';
20
+ export { ConfirmAppInstanceResponseBodyModule } from './ConfirmAppInstanceResponseBody';
20
21
  export { CreateAIStaffChatRequestMessages } from './CreateAistaffChatRequest';
21
22
  export { CreateAIStaffConversationResponseBodyModule } from './CreateAistaffConversationResponseBody';
22
23
  export { CreateAppAssistantAgentResponseBodyModuleCredential } from './CreateAppAssistantAgentResponseBody';
@@ -83,6 +84,7 @@ export { GetLlmProxyConfigForAdminResponseBodyModule } from './GetLlmProxyConfig
83
84
  export { GetMiniAppAuthUrlResponseBodyData } from './GetMiniAppAuthUrlResponseBody';
84
85
  export { GetMiniAppBindingResponseBodyData } from './GetMiniAppBindingResponseBody';
85
86
  export { GetMiniAppBindingForAdminResponseBodyData } from './GetMiniAppBindingForAdminResponseBody';
87
+ export { GetOssUploadPolicyResponseBodyModule } from './GetOssUploadPolicyResponseBody';
86
88
  export { GetUserAccessTokenForPartnerResponseBodyModule } from './GetUserAccessTokenForPartnerResponseBody';
87
89
  export { GetUserTmpIdentityForPartnerResponseBodyDataCredentials } from './GetUserTmpIdentityForPartnerResponseBody';
88
90
  export { GetUserTmpIdentityForPartnerResponseBodyData } from './GetUserTmpIdentityForPartnerResponseBody';
@@ -205,6 +207,9 @@ export { CheckResourceMeasureResponse } from './CheckResourceMeasureResponse';
205
207
  export { CheckUserResourceMeasureRequest } from './CheckUserResourceMeasureRequest';
206
208
  export { CheckUserResourceMeasureResponseBody } from './CheckUserResourceMeasureResponseBody';
207
209
  export { CheckUserResourceMeasureResponse } from './CheckUserResourceMeasureResponse';
210
+ export { ConfirmAppInstanceRequest } from './ConfirmAppInstanceRequest';
211
+ export { ConfirmAppInstanceResponseBody } from './ConfirmAppInstanceResponseBody';
212
+ export { ConfirmAppInstanceResponse } from './ConfirmAppInstanceResponse';
208
213
  export { CopyAppPluginConfigRequest } from './CopyAppPluginConfigRequest';
209
214
  export { CopyAppPluginConfigResponseBody } from './CopyAppPluginConfigResponseBody';
210
215
  export { CopyAppPluginConfigResponse } from './CopyAppPluginConfigResponse';
@@ -247,6 +252,9 @@ export { DeleteAppDomainCertificateResponse } from './DeleteAppDomainCertificate
247
252
  export { DeleteAppDomainRedirectRequest } from './DeleteAppDomainRedirectRequest';
248
253
  export { DeleteAppDomainRedirectResponseBody } from './DeleteAppDomainRedirectResponseBody';
249
254
  export { DeleteAppDomainRedirectResponse } from './DeleteAppDomainRedirectResponse';
255
+ export { DeleteAppFileRequest } from './DeleteAppFileRequest';
256
+ export { DeleteAppFileResponseBody } from './DeleteAppFileResponseBody';
257
+ export { DeleteAppFileResponse } from './DeleteAppFileResponse';
250
258
  export { DeleteAppInstanceFileRequest } from './DeleteAppInstanceFileRequest';
251
259
  export { DeleteAppInstanceFileResponseBody } from './DeleteAppInstanceFileResponseBody';
252
260
  export { DeleteAppInstanceFileResponse } from './DeleteAppInstanceFileResponse';
@@ -369,6 +377,12 @@ export { GetMiniAppBindingResponse } from './GetMiniAppBindingResponse';
369
377
  export { GetMiniAppBindingForAdminRequest } from './GetMiniAppBindingForAdminRequest';
370
378
  export { GetMiniAppBindingForAdminResponseBody } from './GetMiniAppBindingForAdminResponseBody';
371
379
  export { GetMiniAppBindingForAdminResponse } from './GetMiniAppBindingForAdminResponse';
380
+ export { GetOssUploadPolicyRequest } from './GetOssUploadPolicyRequest';
381
+ export { GetOssUploadPolicyResponseBody } from './GetOssUploadPolicyResponseBody';
382
+ export { GetOssUploadPolicyResponse } from './GetOssUploadPolicyResponse';
383
+ export { GetTempDownloadUrlRequest } from './GetTempDownloadUrlRequest';
384
+ export { GetTempDownloadUrlResponseBody } from './GetTempDownloadUrlResponseBody';
385
+ export { GetTempDownloadUrlResponse } from './GetTempDownloadUrlResponse';
372
386
  export { GetUserAccessTokenForPartnerRequest } from './GetUserAccessTokenForPartnerRequest';
373
387
  export { GetUserAccessTokenForPartnerResponseBody } from './GetUserAccessTokenForPartnerResponseBody';
374
388
  export { GetUserAccessTokenForPartnerResponse } from './GetUserAccessTokenForPartnerResponse';