@alicloud/websitebuild20250429 2.35.2 → 2.36.1
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 +15 -0
- package/dist/client.js +42 -0
- package/dist/client.js.map +1 -1
- package/dist/models/GetAppCodeWorkspaceDetailResponseBody.d.ts +2 -2
- 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/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 +29 -0
- package/dist/models/QueryInspirationBalanceForPartnerRequest.js +60 -0
- package/dist/models/QueryInspirationBalanceForPartnerRequest.js.map +1 -0
- package/dist/models/QueryInspirationBalanceForPartnerResponse.d.ts +19 -0
- package/dist/models/QueryInspirationBalanceForPartnerResponse.js +69 -0
- package/dist/models/QueryInspirationBalanceForPartnerResponse.js.map +1 -0
- package/dist/models/QueryInspirationBalanceForPartnerResponseBody.d.ts +155 -0
- package/dist/models/QueryInspirationBalanceForPartnerResponseBody.js +113 -0
- package/dist/models/QueryInspirationBalanceForPartnerResponseBody.js.map +1 -0
- package/dist/models/model.d.ts +4 -0
- package/dist/models/model.js +22 -13
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +46 -0
- package/src/models/GetAppCodeWorkspaceDetailResponseBody.ts +2 -2
- package/src/models/GetAppPublishStatusResponseBody.ts +18 -3
- package/src/models/ListAppPublishHistoryRequest.ts +1 -1
- package/src/models/ListAppPublishHistoryResponseBody.ts +18 -3
- package/src/models/QueryInspirationBalanceForPartnerRequest.ts +44 -0
- package/src/models/QueryInspirationBalanceForPartnerResponse.ts +40 -0
- package/src/models/QueryInspirationBalanceForPartnerResponseBody.ts +214 -0
- package/src/models/model.ts +4 -0
|
@@ -19,6 +19,7 @@ export class GetAppPublishStatusResponseBodyModule extends $dara.Model {
|
|
|
19
19
|
* PRE_CHECK
|
|
20
20
|
*/
|
|
21
21
|
currentStep?: string;
|
|
22
|
+
currentStepCode?: string;
|
|
22
23
|
/**
|
|
23
24
|
* @remarks
|
|
24
25
|
* The deployment channel.
|
|
@@ -43,9 +44,10 @@ export class GetAppPublishStatusResponseBodyModule extends $dara.Model {
|
|
|
43
44
|
* abc
|
|
44
45
|
*/
|
|
45
46
|
errorStep?: string;
|
|
47
|
+
errorStepCode?: string;
|
|
46
48
|
/**
|
|
47
49
|
* @remarks
|
|
48
|
-
* Indicates whether the task is
|
|
50
|
+
* Indicates whether the task is completed.
|
|
49
51
|
*/
|
|
50
52
|
isFinish?: boolean;
|
|
51
53
|
/**
|
|
@@ -76,6 +78,7 @@ export class GetAppPublishStatusResponseBodyModule extends $dara.Model {
|
|
|
76
78
|
* DESC
|
|
77
79
|
*/
|
|
78
80
|
orderType?: string;
|
|
81
|
+
orderTypeCode?: string;
|
|
79
82
|
/**
|
|
80
83
|
* @remarks
|
|
81
84
|
* The task completion percentage.
|
|
@@ -118,6 +121,7 @@ export class GetAppPublishStatusResponseBodyModule extends $dara.Model {
|
|
|
118
121
|
* 865181640657408
|
|
119
122
|
*/
|
|
120
123
|
siteId?: string;
|
|
124
|
+
stepCodes?: string[];
|
|
121
125
|
/**
|
|
122
126
|
* @remarks
|
|
123
127
|
* The error level. Valid values: FATAL, ERROR, WARNING, and CRITICAL.
|
|
@@ -128,18 +132,22 @@ export class GetAppPublishStatusResponseBodyModule extends $dara.Model {
|
|
|
128
132
|
return {
|
|
129
133
|
canQuickRevert: 'CanQuickRevert',
|
|
130
134
|
currentStep: 'CurrentStep',
|
|
135
|
+
currentStepCode: 'CurrentStepCode',
|
|
131
136
|
deployChannel: 'DeployChannel',
|
|
132
137
|
description: 'Description',
|
|
133
138
|
errorStep: 'ErrorStep',
|
|
139
|
+
errorStepCode: 'ErrorStepCode',
|
|
134
140
|
isFinish: 'IsFinish',
|
|
135
141
|
isSuccess: 'IsSuccess',
|
|
136
142
|
msg: 'Msg',
|
|
137
143
|
orderType: 'OrderType',
|
|
144
|
+
orderTypeCode: 'OrderTypeCode',
|
|
138
145
|
percent: 'Percent',
|
|
139
146
|
publishNumber: 'PublishNumber',
|
|
140
147
|
publishOrderId: 'PublishOrderId',
|
|
141
148
|
publishTime: 'PublishTime',
|
|
142
149
|
siteId: 'SiteId',
|
|
150
|
+
stepCodes: 'StepCodes',
|
|
143
151
|
steps: 'Steps',
|
|
144
152
|
subchannel: 'Subchannel',
|
|
145
153
|
};
|
|
@@ -149,24 +157,31 @@ export class GetAppPublishStatusResponseBodyModule extends $dara.Model {
|
|
|
149
157
|
return {
|
|
150
158
|
canQuickRevert: 'string',
|
|
151
159
|
currentStep: 'string',
|
|
160
|
+
currentStepCode: 'string',
|
|
152
161
|
deployChannel: 'string',
|
|
153
162
|
description: 'string',
|
|
154
163
|
errorStep: 'string',
|
|
164
|
+
errorStepCode: 'string',
|
|
155
165
|
isFinish: 'boolean',
|
|
156
166
|
isSuccess: 'boolean',
|
|
157
167
|
msg: 'string',
|
|
158
168
|
orderType: 'string',
|
|
169
|
+
orderTypeCode: 'string',
|
|
159
170
|
percent: 'number',
|
|
160
171
|
publishNumber: 'string',
|
|
161
172
|
publishOrderId: 'number',
|
|
162
173
|
publishTime: 'string',
|
|
163
174
|
siteId: 'string',
|
|
175
|
+
stepCodes: { 'type': 'array', 'itemType': 'string' },
|
|
164
176
|
steps: { 'type': 'array', 'itemType': 'string' },
|
|
165
177
|
subchannel: 'string',
|
|
166
178
|
};
|
|
167
179
|
}
|
|
168
180
|
|
|
169
181
|
validate() {
|
|
182
|
+
if(Array.isArray(this.stepCodes)) {
|
|
183
|
+
$dara.Model.validateArray(this.stepCodes);
|
|
184
|
+
}
|
|
170
185
|
if(Array.isArray(this.steps)) {
|
|
171
186
|
$dara.Model.validateArray(this.steps);
|
|
172
187
|
}
|
|
@@ -181,7 +196,7 @@ export class GetAppPublishStatusResponseBodyModule extends $dara.Model {
|
|
|
181
196
|
export class GetAppPublishStatusResponseBody extends $dara.Model {
|
|
182
197
|
/**
|
|
183
198
|
* @remarks
|
|
184
|
-
* The detailed reason
|
|
199
|
+
* The detailed reason for access denial.
|
|
185
200
|
*
|
|
186
201
|
* @example
|
|
187
202
|
* {}
|
|
@@ -250,7 +265,7 @@ export class GetAppPublishStatusResponseBody extends $dara.Model {
|
|
|
250
265
|
* The exception message.
|
|
251
266
|
*
|
|
252
267
|
* @example
|
|
253
|
-
*
|
|
268
|
+
* System exception
|
|
254
269
|
*/
|
|
255
270
|
rootErrorMsg?: string;
|
|
256
271
|
/**
|
|
@@ -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
|
* {}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class QueryInspirationBalanceForPartnerRequest extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @remarks
|
|
8
|
+
* The owner ID, which can be a website ID or an Alibaba Cloud account ID.
|
|
9
|
+
*
|
|
10
|
+
* @example
|
|
11
|
+
* 123456
|
|
12
|
+
*/
|
|
13
|
+
belongId?: string;
|
|
14
|
+
/**
|
|
15
|
+
* @remarks
|
|
16
|
+
* The type of the owner ID. Valid values: siteId and uid.
|
|
17
|
+
*
|
|
18
|
+
* @example
|
|
19
|
+
* USER
|
|
20
|
+
*/
|
|
21
|
+
belongIdType?: string;
|
|
22
|
+
static names(): { [key: string]: string } {
|
|
23
|
+
return {
|
|
24
|
+
belongId: 'BelongId',
|
|
25
|
+
belongIdType: 'BelongIdType',
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
static types(): { [key: string]: any } {
|
|
30
|
+
return {
|
|
31
|
+
belongId: 'string',
|
|
32
|
+
belongIdType: 'string',
|
|
33
|
+
};
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
validate() {
|
|
37
|
+
super.validate();
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
constructor(map?: { [key: string]: any }) {
|
|
41
|
+
super(map);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
import { QueryInspirationBalanceForPartnerResponseBody } from "./QueryInspirationBalanceForPartnerResponseBody";
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
export class QueryInspirationBalanceForPartnerResponse extends $dara.Model {
|
|
7
|
+
headers?: { [key: string]: string };
|
|
8
|
+
statusCode?: number;
|
|
9
|
+
body?: QueryInspirationBalanceForPartnerResponseBody;
|
|
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: QueryInspirationBalanceForPartnerResponseBody,
|
|
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,214 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class QueryInspirationBalanceForPartnerResponseBodyModule extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @remarks
|
|
8
|
+
* The remaining amount, calculated as totalQuota minus totalUsed.
|
|
9
|
+
*
|
|
10
|
+
* @example
|
|
11
|
+
* 8
|
|
12
|
+
*/
|
|
13
|
+
remaining?: number;
|
|
14
|
+
/**
|
|
15
|
+
* @remarks
|
|
16
|
+
* The remaining amount as a precise value. This field is of the String type and supports decimal display.
|
|
17
|
+
*
|
|
18
|
+
* @example
|
|
19
|
+
* 10
|
|
20
|
+
*/
|
|
21
|
+
remainingStr?: string;
|
|
22
|
+
/**
|
|
23
|
+
* @remarks
|
|
24
|
+
* The total quota, which is the sum of initQuota for all valid accounts.
|
|
25
|
+
*
|
|
26
|
+
* @example
|
|
27
|
+
* 10
|
|
28
|
+
*/
|
|
29
|
+
totalQuota?: number;
|
|
30
|
+
/**
|
|
31
|
+
* @remarks
|
|
32
|
+
* The total quota as a precise value. This field is of the String type and supports decimal display.
|
|
33
|
+
*
|
|
34
|
+
* @example
|
|
35
|
+
* 10
|
|
36
|
+
*/
|
|
37
|
+
totalQuotaStr?: string;
|
|
38
|
+
/**
|
|
39
|
+
* @remarks
|
|
40
|
+
* The total consumed amount, which is the sum of used for all valid accounts.
|
|
41
|
+
*
|
|
42
|
+
* @example
|
|
43
|
+
* 1
|
|
44
|
+
*/
|
|
45
|
+
totalUsed?: number;
|
|
46
|
+
/**
|
|
47
|
+
* @remarks
|
|
48
|
+
* The total consumed amount as a precise value. This field is of the String type and supports decimal display.
|
|
49
|
+
*
|
|
50
|
+
* @example
|
|
51
|
+
* 10
|
|
52
|
+
*/
|
|
53
|
+
totalUsedStr?: string;
|
|
54
|
+
static names(): { [key: string]: string } {
|
|
55
|
+
return {
|
|
56
|
+
remaining: 'Remaining',
|
|
57
|
+
remainingStr: 'RemainingStr',
|
|
58
|
+
totalQuota: 'TotalQuota',
|
|
59
|
+
totalQuotaStr: 'TotalQuotaStr',
|
|
60
|
+
totalUsed: 'TotalUsed',
|
|
61
|
+
totalUsedStr: 'TotalUsedStr',
|
|
62
|
+
};
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
static types(): { [key: string]: any } {
|
|
66
|
+
return {
|
|
67
|
+
remaining: 'number',
|
|
68
|
+
remainingStr: 'string',
|
|
69
|
+
totalQuota: 'number',
|
|
70
|
+
totalQuotaStr: 'string',
|
|
71
|
+
totalUsed: 'number',
|
|
72
|
+
totalUsedStr: 'string',
|
|
73
|
+
};
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
validate() {
|
|
77
|
+
super.validate();
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
constructor(map?: { [key: string]: any }) {
|
|
81
|
+
super(map);
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
export class QueryInspirationBalanceForPartnerResponseBody extends $dara.Model {
|
|
86
|
+
/**
|
|
87
|
+
* @remarks
|
|
88
|
+
* The access denied details.
|
|
89
|
+
*
|
|
90
|
+
* @example
|
|
91
|
+
* {}
|
|
92
|
+
*/
|
|
93
|
+
accessDeniedDetail?: string;
|
|
94
|
+
/**
|
|
95
|
+
* @remarks
|
|
96
|
+
* Indicates whether retry is allowed.
|
|
97
|
+
*
|
|
98
|
+
* @example
|
|
99
|
+
* False
|
|
100
|
+
*/
|
|
101
|
+
allowRetry?: boolean;
|
|
102
|
+
/**
|
|
103
|
+
* @remarks
|
|
104
|
+
* The application name.
|
|
105
|
+
*
|
|
106
|
+
* @example
|
|
107
|
+
* ish-intelligence-store-platform-admin-web
|
|
108
|
+
*/
|
|
109
|
+
appName?: string;
|
|
110
|
+
/**
|
|
111
|
+
* @remarks
|
|
112
|
+
* The dynamic error code.
|
|
113
|
+
*
|
|
114
|
+
* @example
|
|
115
|
+
* ERROR-oo1
|
|
116
|
+
*/
|
|
117
|
+
dynamicCode?: string;
|
|
118
|
+
/**
|
|
119
|
+
* @remarks
|
|
120
|
+
* The dynamic message.
|
|
121
|
+
*
|
|
122
|
+
* @example
|
|
123
|
+
* SYSTEM_ERROR
|
|
124
|
+
*/
|
|
125
|
+
dynamicMessage?: string;
|
|
126
|
+
/**
|
|
127
|
+
* @remarks
|
|
128
|
+
* The error parameters.
|
|
129
|
+
*/
|
|
130
|
+
errorArgs?: any[];
|
|
131
|
+
/**
|
|
132
|
+
* @remarks
|
|
133
|
+
* The response data.
|
|
134
|
+
*/
|
|
135
|
+
module?: QueryInspirationBalanceForPartnerResponseBodyModule;
|
|
136
|
+
/**
|
|
137
|
+
* @remarks
|
|
138
|
+
* Id of the request
|
|
139
|
+
*
|
|
140
|
+
* @example
|
|
141
|
+
* 6C6B99AC-39EC-5350-874C-204128C905E6
|
|
142
|
+
*/
|
|
143
|
+
requestId?: string;
|
|
144
|
+
/**
|
|
145
|
+
* @remarks
|
|
146
|
+
* The error code.
|
|
147
|
+
*
|
|
148
|
+
* @example
|
|
149
|
+
* SYSTEM.ERROR
|
|
150
|
+
*/
|
|
151
|
+
rootErrorCode?: string;
|
|
152
|
+
/**
|
|
153
|
+
* @remarks
|
|
154
|
+
* The error message.
|
|
155
|
+
*
|
|
156
|
+
* @example
|
|
157
|
+
* System exception
|
|
158
|
+
*/
|
|
159
|
+
rootErrorMsg?: string;
|
|
160
|
+
/**
|
|
161
|
+
* @remarks
|
|
162
|
+
* The reserved parameter.
|
|
163
|
+
*
|
|
164
|
+
* @example
|
|
165
|
+
* True
|
|
166
|
+
*/
|
|
167
|
+
synchro?: boolean;
|
|
168
|
+
static names(): { [key: string]: string } {
|
|
169
|
+
return {
|
|
170
|
+
accessDeniedDetail: 'AccessDeniedDetail',
|
|
171
|
+
allowRetry: 'AllowRetry',
|
|
172
|
+
appName: 'AppName',
|
|
173
|
+
dynamicCode: 'DynamicCode',
|
|
174
|
+
dynamicMessage: 'DynamicMessage',
|
|
175
|
+
errorArgs: 'ErrorArgs',
|
|
176
|
+
module: 'Module',
|
|
177
|
+
requestId: 'RequestId',
|
|
178
|
+
rootErrorCode: 'RootErrorCode',
|
|
179
|
+
rootErrorMsg: 'RootErrorMsg',
|
|
180
|
+
synchro: 'Synchro',
|
|
181
|
+
};
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
static types(): { [key: string]: any } {
|
|
185
|
+
return {
|
|
186
|
+
accessDeniedDetail: 'string',
|
|
187
|
+
allowRetry: 'boolean',
|
|
188
|
+
appName: 'string',
|
|
189
|
+
dynamicCode: 'string',
|
|
190
|
+
dynamicMessage: 'string',
|
|
191
|
+
errorArgs: { 'type': 'array', 'itemType': 'any' },
|
|
192
|
+
module: QueryInspirationBalanceForPartnerResponseBodyModule,
|
|
193
|
+
requestId: 'string',
|
|
194
|
+
rootErrorCode: 'string',
|
|
195
|
+
rootErrorMsg: 'string',
|
|
196
|
+
synchro: 'boolean',
|
|
197
|
+
};
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
validate() {
|
|
201
|
+
if(Array.isArray(this.errorArgs)) {
|
|
202
|
+
$dara.Model.validateArray(this.errorArgs);
|
|
203
|
+
}
|
|
204
|
+
if(this.module && typeof (this.module as any).validate === 'function') {
|
|
205
|
+
(this.module as any).validate();
|
|
206
|
+
}
|
|
207
|
+
super.validate();
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
constructor(map?: { [key: string]: any }) {
|
|
211
|
+
super(map);
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
|
package/src/models/model.ts
CHANGED
|
@@ -186,6 +186,7 @@ export { QueryInspirationAccountDetailsResponseBodyModuleData } from './QueryIns
|
|
|
186
186
|
export { QueryInspirationAccountDetailsResponseBodyModuleNext } from './QueryInspirationAccountDetailsResponseBody';
|
|
187
187
|
export { QueryInspirationAccountDetailsResponseBodyModule } from './QueryInspirationAccountDetailsResponseBody';
|
|
188
188
|
export { QueryInspirationBalanceResponseBodyModule } from './QueryInspirationBalanceResponseBody';
|
|
189
|
+
export { QueryInspirationBalanceForPartnerResponseBodyModule } from './QueryInspirationBalanceForPartnerResponseBody';
|
|
189
190
|
export { QueryInspirationConsumeRecordsResponseBodyModuleData } from './QueryInspirationConsumeRecordsResponseBody';
|
|
190
191
|
export { QueryInspirationConsumeRecordsResponseBodyModuleNext } from './QueryInspirationConsumeRecordsResponseBody';
|
|
191
192
|
export { QueryInspirationConsumeRecordsResponseBodyModule } from './QueryInspirationConsumeRecordsResponseBody';
|
|
@@ -644,6 +645,9 @@ export { QueryInspirationAccountDetailsResponseBody } from './QueryInspirationAc
|
|
|
644
645
|
export { QueryInspirationAccountDetailsResponse } from './QueryInspirationAccountDetailsResponse';
|
|
645
646
|
export { QueryInspirationBalanceResponseBody } from './QueryInspirationBalanceResponseBody';
|
|
646
647
|
export { QueryInspirationBalanceResponse } from './QueryInspirationBalanceResponse';
|
|
648
|
+
export { QueryInspirationBalanceForPartnerRequest } from './QueryInspirationBalanceForPartnerRequest';
|
|
649
|
+
export { QueryInspirationBalanceForPartnerResponseBody } from './QueryInspirationBalanceForPartnerResponseBody';
|
|
650
|
+
export { QueryInspirationBalanceForPartnerResponse } from './QueryInspirationBalanceForPartnerResponse';
|
|
647
651
|
export { QueryInspirationConsumeRecordsRequest } from './QueryInspirationConsumeRecordsRequest';
|
|
648
652
|
export { QueryInspirationConsumeRecordsResponseBody } from './QueryInspirationConsumeRecordsResponseBody';
|
|
649
653
|
export { QueryInspirationConsumeRecordsResponse } from './QueryInspirationConsumeRecordsResponse';
|