@alicloud/websitebuild20250429 2.36.1 → 2.36.2
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 +2 -2
- package/dist/client.js +14 -2
- package/dist/client.js.map +1 -1
- package/dist/models/AppInstanceProfile.d.ts +4 -3
- package/dist/models/AppInstanceProfile.js +2 -0
- package/dist/models/AppInstanceProfile.js.map +1 -1
- package/dist/models/BindAppDomainRequest.d.ts +12 -2
- package/dist/models/BindAppDomainRequest.js +2 -0
- package/dist/models/BindAppDomainRequest.js.map +1 -1
- package/dist/models/BindAppDomainResponseBody.d.ts +42 -10
- package/dist/models/BindAppDomainResponseBody.js.map +1 -1
- package/dist/models/GetAppInstanceResponseBody.d.ts +1 -1
- package/dist/models/ListAppConversationsRequest.d.ts +2 -2
- package/dist/models/ListAppConversationsResponseBody.d.ts +7 -7
- package/dist/models/ListAppInstanceDomainsRequest.d.ts +17 -4
- package/dist/models/ListAppInstanceDomainsRequest.js +2 -0
- package/dist/models/ListAppInstanceDomainsRequest.js.map +1 -1
- package/dist/models/ListAppInstanceDomainsResponseBody.d.ts +138 -34
- package/dist/models/ListAppInstanceDomainsResponseBody.js +4 -0
- package/dist/models/ListAppInstanceDomainsResponseBody.js.map +1 -1
- package/dist/models/ListAppInstancesResponseBody.d.ts +1 -1
- package/dist/models/ReconnectAppChatRequest.d.ts +2 -1
- package/dist/models/ReconnectAppChatRequest.js +2 -0
- package/dist/models/ReconnectAppChatRequest.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +18 -2
- package/src/models/AppInstanceProfile.ts +6 -3
- package/src/models/BindAppDomainRequest.ts +14 -2
- package/src/models/BindAppDomainResponseBody.ts +42 -10
- package/src/models/GetAppInstanceResponseBody.ts +1 -1
- package/src/models/ListAppConversationsRequest.ts +2 -2
- package/src/models/ListAppConversationsResponseBody.ts +7 -7
- package/src/models/ListAppInstanceDomainsRequest.ts +19 -4
- package/src/models/ListAppInstanceDomainsResponseBody.ts +142 -34
- package/src/models/ListAppInstancesResponseBody.ts +1 -1
- package/src/models/ReconnectAppChatRequest.ts +4 -1
|
@@ -10,7 +10,7 @@ export class AppInstanceProfile extends $dara.Model {
|
|
|
10
10
|
applicationType?: string;
|
|
11
11
|
/**
|
|
12
12
|
* @remarks
|
|
13
|
-
* The text description
|
|
13
|
+
* The application type text description.
|
|
14
14
|
*/
|
|
15
15
|
applicationTypeText?: string;
|
|
16
16
|
/**
|
|
@@ -63,6 +63,7 @@ export class AppInstanceProfile extends $dara.Model {
|
|
|
63
63
|
* The SEO site information.
|
|
64
64
|
*/
|
|
65
65
|
seoSite?: string;
|
|
66
|
+
shareRenderWatermark?: string;
|
|
66
67
|
/**
|
|
67
68
|
* @remarks
|
|
68
69
|
* The site version code.
|
|
@@ -70,7 +71,7 @@ export class AppInstanceProfile extends $dara.Model {
|
|
|
70
71
|
siteVersion?: string;
|
|
71
72
|
/**
|
|
72
73
|
* @remarks
|
|
73
|
-
* The text description
|
|
74
|
+
* The site version text description.
|
|
74
75
|
*/
|
|
75
76
|
siteVersionText?: string;
|
|
76
77
|
/**
|
|
@@ -80,7 +81,7 @@ export class AppInstanceProfile extends $dara.Model {
|
|
|
80
81
|
source?: string;
|
|
81
82
|
/**
|
|
82
83
|
* @remarks
|
|
83
|
-
* The ETag
|
|
84
|
+
* The template ETag identifier.
|
|
84
85
|
*/
|
|
85
86
|
templateEtag?: string;
|
|
86
87
|
/**
|
|
@@ -106,6 +107,7 @@ export class AppInstanceProfile extends $dara.Model {
|
|
|
106
107
|
payTime: 'PayTime',
|
|
107
108
|
previewUrl: 'PreviewUrl',
|
|
108
109
|
seoSite: 'SeoSite',
|
|
110
|
+
shareRenderWatermark: 'ShareRenderWatermark',
|
|
109
111
|
siteVersion: 'SiteVersion',
|
|
110
112
|
siteVersionText: 'SiteVersionText',
|
|
111
113
|
source: 'Source',
|
|
@@ -132,6 +134,7 @@ export class AppInstanceProfile extends $dara.Model {
|
|
|
132
134
|
payTime: 'string',
|
|
133
135
|
previewUrl: 'string',
|
|
134
136
|
seoSite: 'string',
|
|
137
|
+
shareRenderWatermark: 'string',
|
|
135
138
|
siteVersion: 'string',
|
|
136
139
|
siteVersionText: 'string',
|
|
137
140
|
source: 'string',
|
|
@@ -19,17 +19,27 @@ export class BindAppDomainRequest extends $dara.Model {
|
|
|
19
19
|
* xiaoniu.link
|
|
20
20
|
*/
|
|
21
21
|
domainName?: string;
|
|
22
|
+
/**
|
|
23
|
+
* @remarks
|
|
24
|
+
* The domain management type. Valid values:
|
|
25
|
+
*
|
|
26
|
+
* - CUSTOM
|
|
27
|
+
* - PLATFORM_PREFIX
|
|
28
|
+
*
|
|
29
|
+
* Default value: CUSTOM.
|
|
30
|
+
*/
|
|
31
|
+
domainType?: string;
|
|
22
32
|
/**
|
|
23
33
|
* @remarks
|
|
24
34
|
* The extended information (OverwriteExistingRecord).
|
|
25
35
|
*
|
|
26
36
|
* @example
|
|
27
|
-
* {
|
|
37
|
+
* {"deliveryNodeName":"Website acceptance","deliveryNodeStatus":"Reject","deliveryOperatorRole":"Customer"}
|
|
28
38
|
*/
|
|
29
39
|
extend?: string;
|
|
30
40
|
/**
|
|
31
41
|
* @remarks
|
|
32
|
-
* The operation type for domain
|
|
42
|
+
* The operation type for domain binding.
|
|
33
43
|
*
|
|
34
44
|
* @example
|
|
35
45
|
* vul_fix
|
|
@@ -39,6 +49,7 @@ export class BindAppDomainRequest extends $dara.Model {
|
|
|
39
49
|
return {
|
|
40
50
|
bizId: 'BizId',
|
|
41
51
|
domainName: 'DomainName',
|
|
52
|
+
domainType: 'DomainType',
|
|
42
53
|
extend: 'Extend',
|
|
43
54
|
operateType: 'OperateType',
|
|
44
55
|
};
|
|
@@ -48,6 +59,7 @@ export class BindAppDomainRequest extends $dara.Model {
|
|
|
48
59
|
return {
|
|
49
60
|
bizId: 'string',
|
|
50
61
|
domainName: 'string',
|
|
62
|
+
domainType: 'string',
|
|
51
63
|
extend: 'string',
|
|
52
64
|
operateType: 'string',
|
|
53
65
|
};
|
|
@@ -3,9 +3,21 @@ import * as $dara from '@darabonba/typescript';
|
|
|
3
3
|
|
|
4
4
|
|
|
5
5
|
export class BindAppDomainResponseBodyModuleDnsConflictRecords extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @remarks
|
|
8
|
+
* The host record.
|
|
9
|
+
*/
|
|
6
10
|
host?: string;
|
|
11
|
+
/**
|
|
12
|
+
* @remarks
|
|
13
|
+
* The record type.
|
|
14
|
+
*/
|
|
7
15
|
recordType?: string;
|
|
8
16
|
status?: string;
|
|
17
|
+
/**
|
|
18
|
+
* @remarks
|
|
19
|
+
* The record value.
|
|
20
|
+
*/
|
|
9
21
|
value?: string;
|
|
10
22
|
static names(): { [key: string]: string } {
|
|
11
23
|
return {
|
|
@@ -35,9 +47,25 @@ export class BindAppDomainResponseBodyModuleDnsConflictRecords extends $dara.Mod
|
|
|
35
47
|
}
|
|
36
48
|
|
|
37
49
|
export class BindAppDomainResponseBodyModuleDnsConflict extends $dara.Model {
|
|
50
|
+
/**
|
|
51
|
+
* @remarks
|
|
52
|
+
* Indicates whether automatic override is supported. The value is true for the current Alibaba Cloud account and false for other accounts.
|
|
53
|
+
*/
|
|
38
54
|
canAutoResolve?: boolean;
|
|
55
|
+
/**
|
|
56
|
+
* @remarks
|
|
57
|
+
* Indicates whether a conflict exists.
|
|
58
|
+
*/
|
|
39
59
|
hasConflict?: boolean;
|
|
60
|
+
/**
|
|
61
|
+
* @remarks
|
|
62
|
+
* The user-facing prompt message. Different guidance messages are generated based on the scenario.
|
|
63
|
+
*/
|
|
40
64
|
message?: string;
|
|
65
|
+
/**
|
|
66
|
+
* @remarks
|
|
67
|
+
* The list of conflicting DNS records (reusing the existing AppDomainDnsRecordDTO).
|
|
68
|
+
*/
|
|
41
69
|
records?: BindAppDomainResponseBodyModuleDnsConflictRecords[];
|
|
42
70
|
static names(): { [key: string]: string } {
|
|
43
71
|
return {
|
|
@@ -70,6 +98,10 @@ export class BindAppDomainResponseBodyModuleDnsConflict extends $dara.Model {
|
|
|
70
98
|
}
|
|
71
99
|
|
|
72
100
|
export class BindAppDomainResponseBodyModule extends $dara.Model {
|
|
101
|
+
/**
|
|
102
|
+
* @remarks
|
|
103
|
+
* The DNS conflict information. This parameter is returned when a conflict is detected during synchronous verification.
|
|
104
|
+
*/
|
|
73
105
|
dnsConflict?: BindAppDomainResponseBodyModuleDnsConflict;
|
|
74
106
|
/**
|
|
75
107
|
* @remarks
|
|
@@ -140,8 +172,8 @@ export class BindAppDomainResponseBody extends $dara.Model {
|
|
|
140
172
|
dynamicCode?: string;
|
|
141
173
|
/**
|
|
142
174
|
* @remarks
|
|
143
|
-
* The dynamic error message
|
|
144
|
-
* >
|
|
175
|
+
* The dynamic error message used to replace the **%s** variable in the **ErrMessage** parameter.
|
|
176
|
+
* > For example, if **ErrMessage** returns **The Value of Input Parameter %s is not valid** and **DynamicMessage** returns **DtsJobId**, the request parameter **DtsJobId** is invalid.
|
|
145
177
|
*
|
|
146
178
|
* @example
|
|
147
179
|
* SYSTEM_ERROR
|
|
@@ -149,18 +181,18 @@ export class BindAppDomainResponseBody extends $dara.Model {
|
|
|
149
181
|
dynamicMessage?: string;
|
|
150
182
|
/**
|
|
151
183
|
* @remarks
|
|
152
|
-
* The error parameters
|
|
184
|
+
* The error parameters.
|
|
153
185
|
*/
|
|
154
186
|
errorArgs?: any[];
|
|
155
187
|
/**
|
|
156
188
|
* @remarks
|
|
157
189
|
* The data table module. Valid values:
|
|
158
190
|
*
|
|
159
|
-
* - ABTest: experiment data table
|
|
191
|
+
* - ABTest: experiment data table.
|
|
160
192
|
*
|
|
161
|
-
* - ExperimentTool: experiment tool table
|
|
193
|
+
* - ExperimentTool: experiment tool table.
|
|
162
194
|
*
|
|
163
|
-
* - DataDiagnosis: data
|
|
195
|
+
* - DataDiagnosis: data diagnostics.
|
|
164
196
|
*/
|
|
165
197
|
module?: BindAppDomainResponseBodyModule;
|
|
166
198
|
/**
|
|
@@ -173,7 +205,7 @@ export class BindAppDomainResponseBody extends $dara.Model {
|
|
|
173
205
|
requestId?: string;
|
|
174
206
|
/**
|
|
175
207
|
* @remarks
|
|
176
|
-
* The error code.
|
|
208
|
+
* The root error code.
|
|
177
209
|
*
|
|
178
210
|
* @example
|
|
179
211
|
* SYSTEM.EROR
|
|
@@ -181,15 +213,15 @@ export class BindAppDomainResponseBody extends $dara.Model {
|
|
|
181
213
|
rootErrorCode?: string;
|
|
182
214
|
/**
|
|
183
215
|
* @remarks
|
|
184
|
-
* The
|
|
216
|
+
* The root error message.
|
|
185
217
|
*
|
|
186
218
|
* @example
|
|
187
|
-
*
|
|
219
|
+
* System exception
|
|
188
220
|
*/
|
|
189
221
|
rootErrorMsg?: string;
|
|
190
222
|
/**
|
|
191
223
|
* @remarks
|
|
192
|
-
* Indicates whether the request is synchronously
|
|
224
|
+
* Indicates whether the request is processed synchronously.
|
|
193
225
|
*
|
|
194
226
|
* @example
|
|
195
227
|
* True
|
|
@@ -38,7 +38,7 @@ export class GetAppInstanceResponseBody extends $dara.Model {
|
|
|
38
38
|
dynamicCode?: string;
|
|
39
39
|
/**
|
|
40
40
|
* @remarks
|
|
41
|
-
* The dynamic error message, which is used to replace the `%s`
|
|
41
|
+
* The dynamic error message, which is used to replace the `%s` placeholder in the **ErrMessage** parameter.
|
|
42
42
|
* > If **ErrMessage** returns **The Value of Input Parameter %s is not valid** and **DynamicMessage** returns **DtsJobId**, the request parameter **DtsJobId** is invalid.
|
|
43
43
|
*
|
|
44
44
|
* @example
|
|
@@ -21,7 +21,7 @@ export class ListAppConversationsRequest extends $dara.Model {
|
|
|
21
21
|
endModifyTime?: string;
|
|
22
22
|
/**
|
|
23
23
|
* @remarks
|
|
24
|
-
* The
|
|
24
|
+
* The number of results returned per query.
|
|
25
25
|
*
|
|
26
26
|
* Valid values: 10 to 100. Default value: 20.
|
|
27
27
|
*
|
|
@@ -31,7 +31,7 @@ export class ListAppConversationsRequest extends $dara.Model {
|
|
|
31
31
|
maxResults?: number;
|
|
32
32
|
/**
|
|
33
33
|
* @remarks
|
|
34
|
-
* The token for the next query. This parameter is empty if no more results
|
|
34
|
+
* The token for the next query. This parameter is empty if no more results are available.
|
|
35
35
|
*
|
|
36
36
|
* @example
|
|
37
37
|
* 0l45bkwM022Dt+rOvPi/oQ==
|
|
@@ -81,7 +81,7 @@ export class ListAppConversationsResponseBodyModuleData extends $dara.Model {
|
|
|
81
81
|
siteId?: string;
|
|
82
82
|
/**
|
|
83
83
|
* @remarks
|
|
84
|
-
* The current viewpoint,
|
|
84
|
+
* The current viewpoint, equivalent to the news title.
|
|
85
85
|
*
|
|
86
86
|
* @example
|
|
87
87
|
* Sometimes When We Touch
|
|
@@ -139,7 +139,7 @@ export class ListAppConversationsResponseBodyModuleData extends $dara.Model {
|
|
|
139
139
|
export class ListAppConversationsResponseBodyModule extends $dara.Model {
|
|
140
140
|
/**
|
|
141
141
|
* @remarks
|
|
142
|
-
* The request
|
|
142
|
+
* The request results.
|
|
143
143
|
*/
|
|
144
144
|
data?: ListAppConversationsResponseBodyModuleData[];
|
|
145
145
|
/**
|
|
@@ -160,7 +160,7 @@ export class ListAppConversationsResponseBodyModule extends $dara.Model {
|
|
|
160
160
|
pageSize?: number;
|
|
161
161
|
/**
|
|
162
162
|
* @remarks
|
|
163
|
-
* The resource count that matches the conditional filter
|
|
163
|
+
* The resource count that matches the conditional filter.
|
|
164
164
|
*
|
|
165
165
|
* @example
|
|
166
166
|
* 30
|
|
@@ -215,7 +215,7 @@ export class ListAppConversationsResponseBody extends $dara.Model {
|
|
|
215
215
|
allowRetry?: boolean;
|
|
216
216
|
/**
|
|
217
217
|
* @remarks
|
|
218
|
-
* The application name.
|
|
218
|
+
* The application name. Queries the application with this name.
|
|
219
219
|
*
|
|
220
220
|
* @example
|
|
221
221
|
* dewuApp
|
|
@@ -244,7 +244,7 @@ export class ListAppConversationsResponseBody extends $dara.Model {
|
|
|
244
244
|
errorArgs?: any[];
|
|
245
245
|
/**
|
|
246
246
|
* @remarks
|
|
247
|
-
* The
|
|
247
|
+
* The number of results returned per query.
|
|
248
248
|
*
|
|
249
249
|
* Valid values: 10 to 100. Default value: 20.
|
|
250
250
|
*
|
|
@@ -259,7 +259,7 @@ export class ListAppConversationsResponseBody extends $dara.Model {
|
|
|
259
259
|
module?: ListAppConversationsResponseBodyModule;
|
|
260
260
|
/**
|
|
261
261
|
* @remarks
|
|
262
|
-
* The token for the next query. This parameter is empty if no more results
|
|
262
|
+
* The token for the next query. This parameter is empty if no more results are available.
|
|
263
263
|
*
|
|
264
264
|
* @example
|
|
265
265
|
* AAAAARbaCuN6hiD08qrLdwJ9Fh3BFw8paIJ7ylB6A7Qn9JjM
|
|
@@ -286,7 +286,7 @@ export class ListAppConversationsResponseBody extends $dara.Model {
|
|
|
286
286
|
* The exception message.
|
|
287
287
|
*
|
|
288
288
|
* @example
|
|
289
|
-
*
|
|
289
|
+
* System exception
|
|
290
290
|
*/
|
|
291
291
|
rootErrorMsg?: string;
|
|
292
292
|
/**
|
|
@@ -11,12 +11,23 @@ export class ListAppInstanceDomainsRequest extends $dara.Model {
|
|
|
11
11
|
* WD20250718165839000001
|
|
12
12
|
*/
|
|
13
13
|
bizId?: string;
|
|
14
|
+
/**
|
|
15
|
+
* @remarks
|
|
16
|
+
* The domain name keyword. This parameter is optional and used for fuzzy match.
|
|
17
|
+
*/
|
|
14
18
|
domainKeyword?: string;
|
|
15
19
|
/**
|
|
16
20
|
* @remarks
|
|
17
|
-
* The
|
|
21
|
+
* The domain management type. Valid values:
|
|
22
|
+
* - CUSTOM
|
|
23
|
+
* - PLATFORM_PREFIX
|
|
18
24
|
*
|
|
19
|
-
*
|
|
25
|
+
* Default value: CUSTOM.
|
|
26
|
+
*/
|
|
27
|
+
domainType?: string;
|
|
28
|
+
/**
|
|
29
|
+
* @remarks
|
|
30
|
+
* The maximum number of entries returned per query.
|
|
20
31
|
*
|
|
21
32
|
* @example
|
|
22
33
|
* 50
|
|
@@ -24,7 +35,7 @@ export class ListAppInstanceDomainsRequest extends $dara.Model {
|
|
|
24
35
|
maxResults?: number;
|
|
25
36
|
/**
|
|
26
37
|
* @remarks
|
|
27
|
-
* The token for the next query. This parameter is empty if no more results
|
|
38
|
+
* The token for the next query. This parameter is empty if no more results are available.
|
|
28
39
|
*
|
|
29
40
|
* @example
|
|
30
41
|
* 0l45bkwM022Dt+rOvPi/oQ==
|
|
@@ -40,7 +51,9 @@ export class ListAppInstanceDomainsRequest extends $dara.Model {
|
|
|
40
51
|
orderColumn?: string;
|
|
41
52
|
/**
|
|
42
53
|
* @remarks
|
|
43
|
-
* The sort type. Valid values:
|
|
54
|
+
* The sort type. Valid values:
|
|
55
|
+
* - ASC
|
|
56
|
+
* - DESC
|
|
44
57
|
*
|
|
45
58
|
* @example
|
|
46
59
|
* BUY
|
|
@@ -66,6 +79,7 @@ export class ListAppInstanceDomainsRequest extends $dara.Model {
|
|
|
66
79
|
return {
|
|
67
80
|
bizId: 'BizId',
|
|
68
81
|
domainKeyword: 'DomainKeyword',
|
|
82
|
+
domainType: 'DomainType',
|
|
69
83
|
maxResults: 'MaxResults',
|
|
70
84
|
nextToken: 'NextToken',
|
|
71
85
|
orderColumn: 'OrderColumn',
|
|
@@ -79,6 +93,7 @@ export class ListAppInstanceDomainsRequest extends $dara.Model {
|
|
|
79
93
|
return {
|
|
80
94
|
bizId: 'string',
|
|
81
95
|
domainKeyword: 'string',
|
|
96
|
+
domainType: 'string',
|
|
82
97
|
maxResults: 'number',
|
|
83
98
|
nextToken: 'string',
|
|
84
99
|
orderColumn: 'string',
|