@alicloud/websitebuild20250429 2.36.0 → 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 +4 -4
- package/dist/client.js +16 -4
- 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/GetAppPublishStatusResponseBody.d.ts +7 -3
- package/dist/models/GetAppPublishStatusResponseBody.js +11 -0
- package/dist/models/GetAppPublishStatusResponseBody.js.map +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/ListAppPublishHistoryRequest.d.ts +1 -1
- package/dist/models/ListAppPublishHistoryResponseBody.d.ts +7 -3
- package/dist/models/ListAppPublishHistoryResponseBody.js +11 -0
- package/dist/models/ListAppPublishHistoryResponseBody.js.map +1 -1
- package/dist/models/QueryInspirationBalanceForPartnerRequest.d.ts +6 -0
- package/dist/models/QueryInspirationBalanceForPartnerRequest.js.map +1 -1
- package/dist/models/QueryInspirationBalanceForPartnerResponseBody.d.ts +54 -1
- package/dist/models/QueryInspirationBalanceForPartnerResponseBody.js.map +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 +20 -4
- 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/GetAppPublishStatusResponseBody.ts +18 -3
- 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/ListAppPublishHistoryRequest.ts +1 -1
- package/src/models/ListAppPublishHistoryResponseBody.ts +18 -3
- package/src/models/QueryInspirationBalanceForPartnerRequest.ts +6 -0
- package/src/models/QueryInspirationBalanceForPartnerResponseBody.ts +54 -1
- package/src/models/ReconnectAppChatRequest.ts +4 -1
|
@@ -20,6 +20,7 @@ export class ListAppPublishHistoryResponseBodyModuleHistory extends $dara.Model
|
|
|
20
20
|
* PRE_CHECK
|
|
21
21
|
*/
|
|
22
22
|
currentStep?: string;
|
|
23
|
+
currentStepCode?: string;
|
|
23
24
|
/**
|
|
24
25
|
* @remarks
|
|
25
26
|
* The deployment channel.
|
|
@@ -44,6 +45,7 @@ export class ListAppPublishHistoryResponseBodyModuleHistory extends $dara.Model
|
|
|
44
45
|
* error
|
|
45
46
|
*/
|
|
46
47
|
errorStep?: string;
|
|
48
|
+
errorStepCode?: string;
|
|
47
49
|
/**
|
|
48
50
|
* @remarks
|
|
49
51
|
* Indicates whether the task is complete.
|
|
@@ -51,7 +53,7 @@ export class ListAppPublishHistoryResponseBodyModuleHistory extends $dara.Model
|
|
|
51
53
|
isFinish?: boolean;
|
|
52
54
|
/**
|
|
53
55
|
* @remarks
|
|
54
|
-
* Indicates whether the resource allocation of the business unit is successful.
|
|
56
|
+
* Indicates whether the resource allocation of the business unit is successful. Valid values:
|
|
55
57
|
* - true: The allocation is successful.
|
|
56
58
|
* - false: The allocation failed.
|
|
57
59
|
*
|
|
@@ -75,6 +77,7 @@ export class ListAppPublishHistoryResponseBodyModuleHistory extends $dara.Model
|
|
|
75
77
|
* DESC
|
|
76
78
|
*/
|
|
77
79
|
orderType?: string;
|
|
80
|
+
orderTypeCode?: string;
|
|
78
81
|
/**
|
|
79
82
|
* @remarks
|
|
80
83
|
* The transcoding progress.
|
|
@@ -109,9 +112,10 @@ export class ListAppPublishHistoryResponseBodyModuleHistory extends $dara.Model
|
|
|
109
112
|
* 2026
|
|
110
113
|
*/
|
|
111
114
|
publishTime?: string;
|
|
115
|
+
stepCodes?: string[];
|
|
112
116
|
/**
|
|
113
117
|
* @remarks
|
|
114
|
-
* The
|
|
118
|
+
* The specific component configurations.
|
|
115
119
|
*/
|
|
116
120
|
steps?: string[];
|
|
117
121
|
subchannel?: string;
|
|
@@ -120,17 +124,21 @@ export class ListAppPublishHistoryResponseBodyModuleHistory extends $dara.Model
|
|
|
120
124
|
canQuickRevert: 'CanQuickRevert',
|
|
121
125
|
commitHash: 'CommitHash',
|
|
122
126
|
currentStep: 'CurrentStep',
|
|
127
|
+
currentStepCode: 'CurrentStepCode',
|
|
123
128
|
deployChannel: 'DeployChannel',
|
|
124
129
|
description: 'Description',
|
|
125
130
|
errorStep: 'ErrorStep',
|
|
131
|
+
errorStepCode: 'ErrorStepCode',
|
|
126
132
|
isFinish: 'IsFinish',
|
|
127
133
|
isSuccess: 'IsSuccess',
|
|
128
134
|
msg: 'Msg',
|
|
129
135
|
orderType: 'OrderType',
|
|
136
|
+
orderTypeCode: 'OrderTypeCode',
|
|
130
137
|
percent: 'Percent',
|
|
131
138
|
publishNumber: 'PublishNumber',
|
|
132
139
|
publishOrderId: 'PublishOrderId',
|
|
133
140
|
publishTime: 'PublishTime',
|
|
141
|
+
stepCodes: 'StepCodes',
|
|
134
142
|
steps: 'Steps',
|
|
135
143
|
subchannel: 'Subchannel',
|
|
136
144
|
};
|
|
@@ -141,23 +149,30 @@ export class ListAppPublishHistoryResponseBodyModuleHistory extends $dara.Model
|
|
|
141
149
|
canQuickRevert: 'string',
|
|
142
150
|
commitHash: 'string',
|
|
143
151
|
currentStep: 'string',
|
|
152
|
+
currentStepCode: 'string',
|
|
144
153
|
deployChannel: 'string',
|
|
145
154
|
description: 'string',
|
|
146
155
|
errorStep: 'string',
|
|
156
|
+
errorStepCode: 'string',
|
|
147
157
|
isFinish: 'boolean',
|
|
148
158
|
isSuccess: 'boolean',
|
|
149
159
|
msg: 'string',
|
|
150
160
|
orderType: 'string',
|
|
161
|
+
orderTypeCode: 'string',
|
|
151
162
|
percent: 'number',
|
|
152
163
|
publishNumber: 'string',
|
|
153
164
|
publishOrderId: 'number',
|
|
154
165
|
publishTime: 'string',
|
|
166
|
+
stepCodes: { 'type': 'array', 'itemType': 'string' },
|
|
155
167
|
steps: { 'type': 'array', 'itemType': 'string' },
|
|
156
168
|
subchannel: 'string',
|
|
157
169
|
};
|
|
158
170
|
}
|
|
159
171
|
|
|
160
172
|
validate() {
|
|
173
|
+
if(Array.isArray(this.stepCodes)) {
|
|
174
|
+
$dara.Model.validateArray(this.stepCodes);
|
|
175
|
+
}
|
|
161
176
|
if(Array.isArray(this.steps)) {
|
|
162
177
|
$dara.Model.validateArray(this.steps);
|
|
163
178
|
}
|
|
@@ -246,7 +261,7 @@ export class ListAppPublishHistoryResponseBodyModule extends $dara.Model {
|
|
|
246
261
|
export class ListAppPublishHistoryResponseBody extends $dara.Model {
|
|
247
262
|
/**
|
|
248
263
|
* @remarks
|
|
249
|
-
* The
|
|
264
|
+
* The detailed reason why access was denied.
|
|
250
265
|
*
|
|
251
266
|
* @example
|
|
252
267
|
* {}
|
|
@@ -4,11 +4,17 @@ import * as $dara from '@darabonba/typescript';
|
|
|
4
4
|
|
|
5
5
|
export class QueryInspirationBalanceForPartnerRequest extends $dara.Model {
|
|
6
6
|
/**
|
|
7
|
+
* @remarks
|
|
8
|
+
* The owner ID, which can be a website ID or an Alibaba Cloud account ID.
|
|
9
|
+
*
|
|
7
10
|
* @example
|
|
8
11
|
* 123456
|
|
9
12
|
*/
|
|
10
13
|
belongId?: string;
|
|
11
14
|
/**
|
|
15
|
+
* @remarks
|
|
16
|
+
* The type of the owner ID. Valid values: siteId and uid.
|
|
17
|
+
*
|
|
12
18
|
* @example
|
|
13
19
|
* USER
|
|
14
20
|
*/
|
|
@@ -4,31 +4,49 @@ import * as $dara from '@darabonba/typescript';
|
|
|
4
4
|
|
|
5
5
|
export class QueryInspirationBalanceForPartnerResponseBodyModule extends $dara.Model {
|
|
6
6
|
/**
|
|
7
|
+
* @remarks
|
|
8
|
+
* The remaining amount, calculated as totalQuota minus totalUsed.
|
|
9
|
+
*
|
|
7
10
|
* @example
|
|
8
11
|
* 8
|
|
9
12
|
*/
|
|
10
13
|
remaining?: number;
|
|
11
14
|
/**
|
|
15
|
+
* @remarks
|
|
16
|
+
* The remaining amount as a precise value. This field is of the String type and supports decimal display.
|
|
17
|
+
*
|
|
12
18
|
* @example
|
|
13
19
|
* 10
|
|
14
20
|
*/
|
|
15
21
|
remainingStr?: string;
|
|
16
22
|
/**
|
|
23
|
+
* @remarks
|
|
24
|
+
* The total quota, which is the sum of initQuota for all valid accounts.
|
|
25
|
+
*
|
|
17
26
|
* @example
|
|
18
27
|
* 10
|
|
19
28
|
*/
|
|
20
29
|
totalQuota?: number;
|
|
21
30
|
/**
|
|
31
|
+
* @remarks
|
|
32
|
+
* The total quota as a precise value. This field is of the String type and supports decimal display.
|
|
33
|
+
*
|
|
22
34
|
* @example
|
|
23
35
|
* 10
|
|
24
36
|
*/
|
|
25
37
|
totalQuotaStr?: string;
|
|
26
38
|
/**
|
|
39
|
+
* @remarks
|
|
40
|
+
* The total consumed amount, which is the sum of used for all valid accounts.
|
|
41
|
+
*
|
|
27
42
|
* @example
|
|
28
43
|
* 1
|
|
29
44
|
*/
|
|
30
45
|
totalUsed?: number;
|
|
31
46
|
/**
|
|
47
|
+
* @remarks
|
|
48
|
+
* The total consumed amount as a precise value. This field is of the String type and supports decimal display.
|
|
49
|
+
*
|
|
32
50
|
* @example
|
|
33
51
|
* 10
|
|
34
52
|
*/
|
|
@@ -66,48 +84,83 @@ export class QueryInspirationBalanceForPartnerResponseBodyModule extends $dara.M
|
|
|
66
84
|
|
|
67
85
|
export class QueryInspirationBalanceForPartnerResponseBody extends $dara.Model {
|
|
68
86
|
/**
|
|
87
|
+
* @remarks
|
|
88
|
+
* The access denied details.
|
|
89
|
+
*
|
|
69
90
|
* @example
|
|
70
91
|
* {}
|
|
71
92
|
*/
|
|
72
93
|
accessDeniedDetail?: string;
|
|
73
94
|
/**
|
|
95
|
+
* @remarks
|
|
96
|
+
* Indicates whether retry is allowed.
|
|
97
|
+
*
|
|
74
98
|
* @example
|
|
75
99
|
* False
|
|
76
100
|
*/
|
|
77
101
|
allowRetry?: boolean;
|
|
78
102
|
/**
|
|
103
|
+
* @remarks
|
|
104
|
+
* The application name.
|
|
105
|
+
*
|
|
79
106
|
* @example
|
|
80
107
|
* ish-intelligence-store-platform-admin-web
|
|
81
108
|
*/
|
|
82
109
|
appName?: string;
|
|
83
110
|
/**
|
|
111
|
+
* @remarks
|
|
112
|
+
* The dynamic error code.
|
|
113
|
+
*
|
|
84
114
|
* @example
|
|
85
115
|
* ERROR-oo1
|
|
86
116
|
*/
|
|
87
117
|
dynamicCode?: string;
|
|
88
118
|
/**
|
|
119
|
+
* @remarks
|
|
120
|
+
* The dynamic message.
|
|
121
|
+
*
|
|
89
122
|
* @example
|
|
90
123
|
* SYSTEM_ERROR
|
|
91
124
|
*/
|
|
92
125
|
dynamicMessage?: string;
|
|
126
|
+
/**
|
|
127
|
+
* @remarks
|
|
128
|
+
* The error parameters.
|
|
129
|
+
*/
|
|
93
130
|
errorArgs?: any[];
|
|
131
|
+
/**
|
|
132
|
+
* @remarks
|
|
133
|
+
* The response data.
|
|
134
|
+
*/
|
|
94
135
|
module?: QueryInspirationBalanceForPartnerResponseBodyModule;
|
|
95
136
|
/**
|
|
137
|
+
* @remarks
|
|
138
|
+
* Id of the request
|
|
139
|
+
*
|
|
96
140
|
* @example
|
|
97
141
|
* 6C6B99AC-39EC-5350-874C-204128C905E6
|
|
98
142
|
*/
|
|
99
143
|
requestId?: string;
|
|
100
144
|
/**
|
|
145
|
+
* @remarks
|
|
146
|
+
* The error code.
|
|
147
|
+
*
|
|
101
148
|
* @example
|
|
102
149
|
* SYSTEM.ERROR
|
|
103
150
|
*/
|
|
104
151
|
rootErrorCode?: string;
|
|
105
152
|
/**
|
|
153
|
+
* @remarks
|
|
154
|
+
* The error message.
|
|
155
|
+
*
|
|
106
156
|
* @example
|
|
107
|
-
*
|
|
157
|
+
* System exception
|
|
108
158
|
*/
|
|
109
159
|
rootErrorMsg?: string;
|
|
110
160
|
/**
|
|
161
|
+
* @remarks
|
|
162
|
+
* The reserved parameter.
|
|
163
|
+
*
|
|
111
164
|
* @example
|
|
112
165
|
* True
|
|
113
166
|
*/
|
|
@@ -21,17 +21,19 @@ export class ReconnectAppChatRequest extends $dara.Model {
|
|
|
21
21
|
conversationId?: string;
|
|
22
22
|
/**
|
|
23
23
|
* @remarks
|
|
24
|
-
* The
|
|
24
|
+
* The last event ID.
|
|
25
25
|
*
|
|
26
26
|
* @example
|
|
27
27
|
* event-71ece53b7d474e01b755a9b5fa5305e6
|
|
28
28
|
*/
|
|
29
29
|
lastEventId?: number;
|
|
30
|
+
latestMessageCreateTime?: string;
|
|
30
31
|
static names(): { [key: string]: string } {
|
|
31
32
|
return {
|
|
32
33
|
chatId: 'ChatId',
|
|
33
34
|
conversationId: 'ConversationId',
|
|
34
35
|
lastEventId: 'LastEventId',
|
|
36
|
+
latestMessageCreateTime: 'LatestMessageCreateTime',
|
|
35
37
|
};
|
|
36
38
|
}
|
|
37
39
|
|
|
@@ -40,6 +42,7 @@ export class ReconnectAppChatRequest extends $dara.Model {
|
|
|
40
42
|
chatId: 'string',
|
|
41
43
|
conversationId: 'string',
|
|
42
44
|
lastEventId: 'number',
|
|
45
|
+
latestMessageCreateTime: 'string',
|
|
43
46
|
};
|
|
44
47
|
}
|
|
45
48
|
|