@alicloud/websitebuild20250429 2.36.0 → 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 +2 -2
- package/dist/client.js +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 +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/package.json +1 -1
- package/src/client.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 +6 -0
- package/src/models/QueryInspirationBalanceForPartnerResponseBody.ts +54 -1
package/dist/client.d.ts
CHANGED
|
@@ -2487,7 +2487,7 @@ export default class Client extends OpenApi {
|
|
|
2487
2487
|
*/
|
|
2488
2488
|
queryInspirationBalance(): Promise<$_model.QueryInspirationBalanceResponse>;
|
|
2489
2489
|
/**
|
|
2490
|
-
*
|
|
2490
|
+
* Queries the inspiration value for service providers.
|
|
2491
2491
|
*
|
|
2492
2492
|
* @param request - QueryInspirationBalanceForPartnerRequest
|
|
2493
2493
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -2495,7 +2495,7 @@ export default class Client extends OpenApi {
|
|
|
2495
2495
|
*/
|
|
2496
2496
|
queryInspirationBalanceForPartnerWithOptions(request: $_model.QueryInspirationBalanceForPartnerRequest, runtime: $dara.RuntimeOptions): Promise<$_model.QueryInspirationBalanceForPartnerResponse>;
|
|
2497
2497
|
/**
|
|
2498
|
-
*
|
|
2498
|
+
* Queries the inspiration value for service providers.
|
|
2499
2499
|
*
|
|
2500
2500
|
* @param request - QueryInspirationBalanceForPartnerRequest
|
|
2501
2501
|
* @returns QueryInspirationBalanceForPartnerResponse
|
package/dist/client.js
CHANGED
|
@@ -6803,7 +6803,7 @@ class Client extends openapi_core_1.default {
|
|
|
6803
6803
|
return await this.queryInspirationBalanceWithOptions(runtime);
|
|
6804
6804
|
}
|
|
6805
6805
|
/**
|
|
6806
|
-
*
|
|
6806
|
+
* Queries the inspiration value for service providers.
|
|
6807
6807
|
*
|
|
6808
6808
|
* @param request - QueryInspirationBalanceForPartnerRequest
|
|
6809
6809
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -6835,7 +6835,7 @@ class Client extends openapi_core_1.default {
|
|
|
6835
6835
|
return $dara.cast(await this.callApi(params, req, runtime), new $_model.QueryInspirationBalanceForPartnerResponse({}));
|
|
6836
6836
|
}
|
|
6837
6837
|
/**
|
|
6838
|
-
*
|
|
6838
|
+
* Queries the inspiration value for service providers.
|
|
6839
6839
|
*
|
|
6840
6840
|
* @param request - QueryInspirationBalanceForPartnerRequest
|
|
6841
6841
|
* @returns QueryInspirationBalanceForPartnerResponse
|
|
@@ -16,6 +16,7 @@ export declare class GetAppPublishStatusResponseBodyModule extends $dara.Model {
|
|
|
16
16
|
* PRE_CHECK
|
|
17
17
|
*/
|
|
18
18
|
currentStep?: string;
|
|
19
|
+
currentStepCode?: string;
|
|
19
20
|
/**
|
|
20
21
|
* @remarks
|
|
21
22
|
* The deployment channel.
|
|
@@ -40,9 +41,10 @@ export declare class GetAppPublishStatusResponseBodyModule extends $dara.Model {
|
|
|
40
41
|
* abc
|
|
41
42
|
*/
|
|
42
43
|
errorStep?: string;
|
|
44
|
+
errorStepCode?: string;
|
|
43
45
|
/**
|
|
44
46
|
* @remarks
|
|
45
|
-
* Indicates whether the task is
|
|
47
|
+
* Indicates whether the task is completed.
|
|
46
48
|
*/
|
|
47
49
|
isFinish?: boolean;
|
|
48
50
|
/**
|
|
@@ -73,6 +75,7 @@ export declare class GetAppPublishStatusResponseBodyModule extends $dara.Model {
|
|
|
73
75
|
* DESC
|
|
74
76
|
*/
|
|
75
77
|
orderType?: string;
|
|
78
|
+
orderTypeCode?: string;
|
|
76
79
|
/**
|
|
77
80
|
* @remarks
|
|
78
81
|
* The task completion percentage.
|
|
@@ -115,6 +118,7 @@ export declare class GetAppPublishStatusResponseBodyModule extends $dara.Model {
|
|
|
115
118
|
* 865181640657408
|
|
116
119
|
*/
|
|
117
120
|
siteId?: string;
|
|
121
|
+
stepCodes?: string[];
|
|
118
122
|
/**
|
|
119
123
|
* @remarks
|
|
120
124
|
* The error level. Valid values: FATAL, ERROR, WARNING, and CRITICAL.
|
|
@@ -135,7 +139,7 @@ export declare class GetAppPublishStatusResponseBodyModule extends $dara.Model {
|
|
|
135
139
|
export declare class GetAppPublishStatusResponseBody extends $dara.Model {
|
|
136
140
|
/**
|
|
137
141
|
* @remarks
|
|
138
|
-
* The detailed reason
|
|
142
|
+
* The detailed reason for access denial.
|
|
139
143
|
*
|
|
140
144
|
* @example
|
|
141
145
|
* {}
|
|
@@ -204,7 +208,7 @@ export declare class GetAppPublishStatusResponseBody extends $dara.Model {
|
|
|
204
208
|
* The exception message.
|
|
205
209
|
*
|
|
206
210
|
* @example
|
|
207
|
-
*
|
|
211
|
+
* System exception
|
|
208
212
|
*/
|
|
209
213
|
rootErrorMsg?: string;
|
|
210
214
|
/**
|
|
@@ -41,18 +41,22 @@ class GetAppPublishStatusResponseBodyModule extends $dara.Model {
|
|
|
41
41
|
return {
|
|
42
42
|
canQuickRevert: 'CanQuickRevert',
|
|
43
43
|
currentStep: 'CurrentStep',
|
|
44
|
+
currentStepCode: 'CurrentStepCode',
|
|
44
45
|
deployChannel: 'DeployChannel',
|
|
45
46
|
description: 'Description',
|
|
46
47
|
errorStep: 'ErrorStep',
|
|
48
|
+
errorStepCode: 'ErrorStepCode',
|
|
47
49
|
isFinish: 'IsFinish',
|
|
48
50
|
isSuccess: 'IsSuccess',
|
|
49
51
|
msg: 'Msg',
|
|
50
52
|
orderType: 'OrderType',
|
|
53
|
+
orderTypeCode: 'OrderTypeCode',
|
|
51
54
|
percent: 'Percent',
|
|
52
55
|
publishNumber: 'PublishNumber',
|
|
53
56
|
publishOrderId: 'PublishOrderId',
|
|
54
57
|
publishTime: 'PublishTime',
|
|
55
58
|
siteId: 'SiteId',
|
|
59
|
+
stepCodes: 'StepCodes',
|
|
56
60
|
steps: 'Steps',
|
|
57
61
|
subchannel: 'Subchannel',
|
|
58
62
|
};
|
|
@@ -61,23 +65,30 @@ class GetAppPublishStatusResponseBodyModule extends $dara.Model {
|
|
|
61
65
|
return {
|
|
62
66
|
canQuickRevert: 'string',
|
|
63
67
|
currentStep: 'string',
|
|
68
|
+
currentStepCode: 'string',
|
|
64
69
|
deployChannel: 'string',
|
|
65
70
|
description: 'string',
|
|
66
71
|
errorStep: 'string',
|
|
72
|
+
errorStepCode: 'string',
|
|
67
73
|
isFinish: 'boolean',
|
|
68
74
|
isSuccess: 'boolean',
|
|
69
75
|
msg: 'string',
|
|
70
76
|
orderType: 'string',
|
|
77
|
+
orderTypeCode: 'string',
|
|
71
78
|
percent: 'number',
|
|
72
79
|
publishNumber: 'string',
|
|
73
80
|
publishOrderId: 'number',
|
|
74
81
|
publishTime: 'string',
|
|
75
82
|
siteId: 'string',
|
|
83
|
+
stepCodes: { 'type': 'array', 'itemType': 'string' },
|
|
76
84
|
steps: { 'type': 'array', 'itemType': 'string' },
|
|
77
85
|
subchannel: 'string',
|
|
78
86
|
};
|
|
79
87
|
}
|
|
80
88
|
validate() {
|
|
89
|
+
if (Array.isArray(this.stepCodes)) {
|
|
90
|
+
$dara.Model.validateArray(this.stepCodes);
|
|
91
|
+
}
|
|
81
92
|
if (Array.isArray(this.steps)) {
|
|
82
93
|
$dara.Model.validateArray(this.steps);
|
|
83
94
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GetAppPublishStatusResponseBody.js","sourceRoot":"","sources":["../../src/models/GetAppPublishStatusResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,qCAAsC,SAAQ,KAAK,CAAC,KAAK;
|
|
1
|
+
{"version":3,"file":"GetAppPublishStatusResponseBody.js","sourceRoot":"","sources":["../../src/models/GetAppPublishStatusResponseBody.ts"],"names":[],"mappings":"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"}
|
|
@@ -17,6 +17,7 @@ export declare class ListAppPublishHistoryResponseBodyModuleHistory extends $dar
|
|
|
17
17
|
* PRE_CHECK
|
|
18
18
|
*/
|
|
19
19
|
currentStep?: string;
|
|
20
|
+
currentStepCode?: string;
|
|
20
21
|
/**
|
|
21
22
|
* @remarks
|
|
22
23
|
* The deployment channel.
|
|
@@ -41,6 +42,7 @@ export declare class ListAppPublishHistoryResponseBodyModuleHistory extends $dar
|
|
|
41
42
|
* error
|
|
42
43
|
*/
|
|
43
44
|
errorStep?: string;
|
|
45
|
+
errorStepCode?: string;
|
|
44
46
|
/**
|
|
45
47
|
* @remarks
|
|
46
48
|
* Indicates whether the task is complete.
|
|
@@ -48,7 +50,7 @@ export declare class ListAppPublishHistoryResponseBodyModuleHistory extends $dar
|
|
|
48
50
|
isFinish?: boolean;
|
|
49
51
|
/**
|
|
50
52
|
* @remarks
|
|
51
|
-
* Indicates whether the resource allocation of the business unit is successful.
|
|
53
|
+
* Indicates whether the resource allocation of the business unit is successful. Valid values:
|
|
52
54
|
* - true: The allocation is successful.
|
|
53
55
|
* - false: The allocation failed.
|
|
54
56
|
*
|
|
@@ -72,6 +74,7 @@ export declare class ListAppPublishHistoryResponseBodyModuleHistory extends $dar
|
|
|
72
74
|
* DESC
|
|
73
75
|
*/
|
|
74
76
|
orderType?: string;
|
|
77
|
+
orderTypeCode?: string;
|
|
75
78
|
/**
|
|
76
79
|
* @remarks
|
|
77
80
|
* The transcoding progress.
|
|
@@ -106,9 +109,10 @@ export declare class ListAppPublishHistoryResponseBodyModuleHistory extends $dar
|
|
|
106
109
|
* 2026
|
|
107
110
|
*/
|
|
108
111
|
publishTime?: string;
|
|
112
|
+
stepCodes?: string[];
|
|
109
113
|
/**
|
|
110
114
|
* @remarks
|
|
111
|
-
* The
|
|
115
|
+
* The specific component configurations.
|
|
112
116
|
*/
|
|
113
117
|
steps?: string[];
|
|
114
118
|
subchannel?: string;
|
|
@@ -179,7 +183,7 @@ export declare class ListAppPublishHistoryResponseBodyModule extends $dara.Model
|
|
|
179
183
|
export declare class ListAppPublishHistoryResponseBody extends $dara.Model {
|
|
180
184
|
/**
|
|
181
185
|
* @remarks
|
|
182
|
-
* The
|
|
186
|
+
* The detailed reason why access was denied.
|
|
183
187
|
*
|
|
184
188
|
* @example
|
|
185
189
|
* {}
|
|
@@ -42,17 +42,21 @@ class ListAppPublishHistoryResponseBodyModuleHistory extends $dara.Model {
|
|
|
42
42
|
canQuickRevert: 'CanQuickRevert',
|
|
43
43
|
commitHash: 'CommitHash',
|
|
44
44
|
currentStep: 'CurrentStep',
|
|
45
|
+
currentStepCode: 'CurrentStepCode',
|
|
45
46
|
deployChannel: 'DeployChannel',
|
|
46
47
|
description: 'Description',
|
|
47
48
|
errorStep: 'ErrorStep',
|
|
49
|
+
errorStepCode: 'ErrorStepCode',
|
|
48
50
|
isFinish: 'IsFinish',
|
|
49
51
|
isSuccess: 'IsSuccess',
|
|
50
52
|
msg: 'Msg',
|
|
51
53
|
orderType: 'OrderType',
|
|
54
|
+
orderTypeCode: 'OrderTypeCode',
|
|
52
55
|
percent: 'Percent',
|
|
53
56
|
publishNumber: 'PublishNumber',
|
|
54
57
|
publishOrderId: 'PublishOrderId',
|
|
55
58
|
publishTime: 'PublishTime',
|
|
59
|
+
stepCodes: 'StepCodes',
|
|
56
60
|
steps: 'Steps',
|
|
57
61
|
subchannel: 'Subchannel',
|
|
58
62
|
};
|
|
@@ -62,22 +66,29 @@ class ListAppPublishHistoryResponseBodyModuleHistory extends $dara.Model {
|
|
|
62
66
|
canQuickRevert: 'string',
|
|
63
67
|
commitHash: 'string',
|
|
64
68
|
currentStep: 'string',
|
|
69
|
+
currentStepCode: 'string',
|
|
65
70
|
deployChannel: 'string',
|
|
66
71
|
description: 'string',
|
|
67
72
|
errorStep: 'string',
|
|
73
|
+
errorStepCode: 'string',
|
|
68
74
|
isFinish: 'boolean',
|
|
69
75
|
isSuccess: 'boolean',
|
|
70
76
|
msg: 'string',
|
|
71
77
|
orderType: 'string',
|
|
78
|
+
orderTypeCode: 'string',
|
|
72
79
|
percent: 'number',
|
|
73
80
|
publishNumber: 'string',
|
|
74
81
|
publishOrderId: 'number',
|
|
75
82
|
publishTime: 'string',
|
|
83
|
+
stepCodes: { 'type': 'array', 'itemType': 'string' },
|
|
76
84
|
steps: { 'type': 'array', 'itemType': 'string' },
|
|
77
85
|
subchannel: 'string',
|
|
78
86
|
};
|
|
79
87
|
}
|
|
80
88
|
validate() {
|
|
89
|
+
if (Array.isArray(this.stepCodes)) {
|
|
90
|
+
$dara.Model.validateArray(this.stepCodes);
|
|
91
|
+
}
|
|
81
92
|
if (Array.isArray(this.steps)) {
|
|
82
93
|
$dara.Model.validateArray(this.steps);
|
|
83
94
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ListAppPublishHistoryResponseBody.js","sourceRoot":"","sources":["../../src/models/ListAppPublishHistoryResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,8CAA+C,SAAQ,KAAK,CAAC,KAAK;
|
|
1
|
+
{"version":3,"file":"ListAppPublishHistoryResponseBody.js","sourceRoot":"","sources":["../../src/models/ListAppPublishHistoryResponseBody.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
import * as $dara from '@darabonba/typescript';
|
|
2
2
|
export declare class QueryInspirationBalanceForPartnerRequest extends $dara.Model {
|
|
3
3
|
/**
|
|
4
|
+
* @remarks
|
|
5
|
+
* The owner ID, which can be a website ID or an Alibaba Cloud account ID.
|
|
6
|
+
*
|
|
4
7
|
* @example
|
|
5
8
|
* 123456
|
|
6
9
|
*/
|
|
7
10
|
belongId?: string;
|
|
8
11
|
/**
|
|
12
|
+
* @remarks
|
|
13
|
+
* The type of the owner ID. Valid values: siteId and uid.
|
|
14
|
+
*
|
|
9
15
|
* @example
|
|
10
16
|
* USER
|
|
11
17
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"QueryInspirationBalanceForPartnerRequest.js","sourceRoot":"","sources":["../../src/models/QueryInspirationBalanceForPartnerRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,wCAAyC,SAAQ,KAAK,CAAC,KAAK;
|
|
1
|
+
{"version":3,"file":"QueryInspirationBalanceForPartnerRequest.js","sourceRoot":"","sources":["../../src/models/QueryInspirationBalanceForPartnerRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,wCAAyC,SAAQ,KAAK,CAAC,KAAK;IAiBvE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,QAAQ,EAAE,UAAU;YACpB,YAAY,EAAE,cAAc;SAC7B,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,QAAQ,EAAE,QAAQ;YAClB,YAAY,EAAE,QAAQ;SACvB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAtCD,4FAsCC"}
|
|
@@ -1,31 +1,49 @@
|
|
|
1
1
|
import * as $dara from '@darabonba/typescript';
|
|
2
2
|
export declare class QueryInspirationBalanceForPartnerResponseBodyModule extends $dara.Model {
|
|
3
3
|
/**
|
|
4
|
+
* @remarks
|
|
5
|
+
* The remaining amount, calculated as totalQuota minus totalUsed.
|
|
6
|
+
*
|
|
4
7
|
* @example
|
|
5
8
|
* 8
|
|
6
9
|
*/
|
|
7
10
|
remaining?: number;
|
|
8
11
|
/**
|
|
12
|
+
* @remarks
|
|
13
|
+
* The remaining amount as a precise value. This field is of the String type and supports decimal display.
|
|
14
|
+
*
|
|
9
15
|
* @example
|
|
10
16
|
* 10
|
|
11
17
|
*/
|
|
12
18
|
remainingStr?: string;
|
|
13
19
|
/**
|
|
20
|
+
* @remarks
|
|
21
|
+
* The total quota, which is the sum of initQuota for all valid accounts.
|
|
22
|
+
*
|
|
14
23
|
* @example
|
|
15
24
|
* 10
|
|
16
25
|
*/
|
|
17
26
|
totalQuota?: number;
|
|
18
27
|
/**
|
|
28
|
+
* @remarks
|
|
29
|
+
* The total quota as a precise value. This field is of the String type and supports decimal display.
|
|
30
|
+
*
|
|
19
31
|
* @example
|
|
20
32
|
* 10
|
|
21
33
|
*/
|
|
22
34
|
totalQuotaStr?: string;
|
|
23
35
|
/**
|
|
36
|
+
* @remarks
|
|
37
|
+
* The total consumed amount, which is the sum of used for all valid accounts.
|
|
38
|
+
*
|
|
24
39
|
* @example
|
|
25
40
|
* 1
|
|
26
41
|
*/
|
|
27
42
|
totalUsed?: number;
|
|
28
43
|
/**
|
|
44
|
+
* @remarks
|
|
45
|
+
* The total consumed amount as a precise value. This field is of the String type and supports decimal display.
|
|
46
|
+
*
|
|
29
47
|
* @example
|
|
30
48
|
* 10
|
|
31
49
|
*/
|
|
@@ -43,48 +61,83 @@ export declare class QueryInspirationBalanceForPartnerResponseBodyModule extends
|
|
|
43
61
|
}
|
|
44
62
|
export declare class QueryInspirationBalanceForPartnerResponseBody extends $dara.Model {
|
|
45
63
|
/**
|
|
64
|
+
* @remarks
|
|
65
|
+
* The access denied details.
|
|
66
|
+
*
|
|
46
67
|
* @example
|
|
47
68
|
* {}
|
|
48
69
|
*/
|
|
49
70
|
accessDeniedDetail?: string;
|
|
50
71
|
/**
|
|
72
|
+
* @remarks
|
|
73
|
+
* Indicates whether retry is allowed.
|
|
74
|
+
*
|
|
51
75
|
* @example
|
|
52
76
|
* False
|
|
53
77
|
*/
|
|
54
78
|
allowRetry?: boolean;
|
|
55
79
|
/**
|
|
80
|
+
* @remarks
|
|
81
|
+
* The application name.
|
|
82
|
+
*
|
|
56
83
|
* @example
|
|
57
84
|
* ish-intelligence-store-platform-admin-web
|
|
58
85
|
*/
|
|
59
86
|
appName?: string;
|
|
60
87
|
/**
|
|
88
|
+
* @remarks
|
|
89
|
+
* The dynamic error code.
|
|
90
|
+
*
|
|
61
91
|
* @example
|
|
62
92
|
* ERROR-oo1
|
|
63
93
|
*/
|
|
64
94
|
dynamicCode?: string;
|
|
65
95
|
/**
|
|
96
|
+
* @remarks
|
|
97
|
+
* The dynamic message.
|
|
98
|
+
*
|
|
66
99
|
* @example
|
|
67
100
|
* SYSTEM_ERROR
|
|
68
101
|
*/
|
|
69
102
|
dynamicMessage?: string;
|
|
103
|
+
/**
|
|
104
|
+
* @remarks
|
|
105
|
+
* The error parameters.
|
|
106
|
+
*/
|
|
70
107
|
errorArgs?: any[];
|
|
108
|
+
/**
|
|
109
|
+
* @remarks
|
|
110
|
+
* The response data.
|
|
111
|
+
*/
|
|
71
112
|
module?: QueryInspirationBalanceForPartnerResponseBodyModule;
|
|
72
113
|
/**
|
|
114
|
+
* @remarks
|
|
115
|
+
* Id of the request
|
|
116
|
+
*
|
|
73
117
|
* @example
|
|
74
118
|
* 6C6B99AC-39EC-5350-874C-204128C905E6
|
|
75
119
|
*/
|
|
76
120
|
requestId?: string;
|
|
77
121
|
/**
|
|
122
|
+
* @remarks
|
|
123
|
+
* The error code.
|
|
124
|
+
*
|
|
78
125
|
* @example
|
|
79
126
|
* SYSTEM.ERROR
|
|
80
127
|
*/
|
|
81
128
|
rootErrorCode?: string;
|
|
82
129
|
/**
|
|
130
|
+
* @remarks
|
|
131
|
+
* The error message.
|
|
132
|
+
*
|
|
83
133
|
* @example
|
|
84
|
-
*
|
|
134
|
+
* System exception
|
|
85
135
|
*/
|
|
86
136
|
rootErrorMsg?: string;
|
|
87
137
|
/**
|
|
138
|
+
* @remarks
|
|
139
|
+
* The reserved parameter.
|
|
140
|
+
*
|
|
88
141
|
* @example
|
|
89
142
|
* True
|
|
90
143
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"QueryInspirationBalanceForPartnerResponseBody.js","sourceRoot":"","sources":["../../src/models/QueryInspirationBalanceForPartnerResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,mDAAoD,SAAQ,KAAK,CAAC,KAAK;
|
|
1
|
+
{"version":3,"file":"QueryInspirationBalanceForPartnerResponseBody.js","sourceRoot":"","sources":["../../src/models/QueryInspirationBalanceForPartnerResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,mDAAoD,SAAQ,KAAK,CAAC,KAAK;IAiDlF,MAAM,CAAC,KAAK;QACV,OAAO;YACL,SAAS,EAAE,WAAW;YACtB,YAAY,EAAE,cAAc;YAC5B,UAAU,EAAE,YAAY;YACxB,aAAa,EAAE,eAAe;YAC9B,SAAS,EAAE,WAAW;YACtB,YAAY,EAAE,cAAc;SAC7B,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,SAAS,EAAE,QAAQ;YACnB,YAAY,EAAE,QAAQ;YACtB,UAAU,EAAE,QAAQ;YACpB,aAAa,EAAE,QAAQ;YACvB,SAAS,EAAE,QAAQ;YACnB,YAAY,EAAE,QAAQ;SACvB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AA9ED,kHA8EC;AAED,MAAa,6CAA8C,SAAQ,KAAK,CAAC,KAAK;IAmF5E,MAAM,CAAC,KAAK;QACV,OAAO;YACL,kBAAkB,EAAE,oBAAoB;YACxC,UAAU,EAAE,YAAY;YACxB,OAAO,EAAE,SAAS;YAClB,WAAW,EAAE,aAAa;YAC1B,cAAc,EAAE,gBAAgB;YAChC,SAAS,EAAE,WAAW;YACtB,MAAM,EAAE,QAAQ;YAChB,SAAS,EAAE,WAAW;YACtB,aAAa,EAAE,eAAe;YAC9B,YAAY,EAAE,cAAc;YAC5B,OAAO,EAAE,SAAS;SACnB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,kBAAkB,EAAE,QAAQ;YAC5B,UAAU,EAAE,SAAS;YACrB,OAAO,EAAE,QAAQ;YACjB,WAAW,EAAE,QAAQ;YACrB,cAAc,EAAE,QAAQ;YACxB,SAAS,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,KAAK,EAAE;YACjD,MAAM,EAAE,mDAAmD;YAC3D,SAAS,EAAE,QAAQ;YACnB,aAAa,EAAE,QAAQ;YACvB,YAAY,EAAE,QAAQ;YACtB,OAAO,EAAE,SAAS;SACnB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,SAAS,CAAC,EAAE,CAAC;YACjC,KAAK,CAAC,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;QAC5C,CAAC;QACD,IAAG,IAAI,CAAC,MAAM,IAAI,OAAQ,IAAI,CAAC,MAAc,CAAC,QAAQ,KAAK,UAAU,EAAE,CAAC;YACrE,IAAI,CAAC,MAAc,CAAC,QAAQ,EAAE,CAAC;QAClC,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAhID,sGAgIC"}
|
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -7491,7 +7491,7 @@ export default class Client extends OpenApi {
|
|
|
7491
7491
|
}
|
|
7492
7492
|
|
|
7493
7493
|
/**
|
|
7494
|
-
*
|
|
7494
|
+
* Queries the inspiration value for service providers.
|
|
7495
7495
|
*
|
|
7496
7496
|
* @param request - QueryInspirationBalanceForPartnerRequest
|
|
7497
7497
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -7526,7 +7526,7 @@ export default class Client extends OpenApi {
|
|
|
7526
7526
|
}
|
|
7527
7527
|
|
|
7528
7528
|
/**
|
|
7529
|
-
*
|
|
7529
|
+
* Queries the inspiration value for service providers.
|
|
7530
7530
|
*
|
|
7531
7531
|
* @param request - QueryInspirationBalanceForPartnerRequest
|
|
7532
7532
|
* @returns QueryInspirationBalanceForPartnerResponse
|
|
@@ -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
|
* {}
|
|
@@ -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
|
*/
|