@alicloud/websitebuild20250429 2.7.2 → 2.8.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.
- package/dist/client.d.ts +17 -2
- package/dist/client.js +47 -2
- package/dist/client.js.map +1 -1
- package/dist/models/CreateAppInstanceRequest.d.ts +33 -3
- package/dist/models/CreateAppInstanceRequest.js.map +1 -1
- package/dist/models/CreateAppInstanceResponseBody.d.ts +55 -2
- package/dist/models/CreateAppInstanceResponseBody.js.map +1 -1
- package/dist/models/RefundAppInstanceForPartnerRequest.d.ts +24 -0
- package/dist/models/RefundAppInstanceForPartnerRequest.js +62 -0
- package/dist/models/RefundAppInstanceForPartnerRequest.js.map +1 -0
- package/dist/models/RefundAppInstanceForPartnerResponse.d.ts +19 -0
- package/dist/models/RefundAppInstanceForPartnerResponse.js +69 -0
- package/dist/models/RefundAppInstanceForPartnerResponse.js.map +1 -0
- package/dist/models/RefundAppInstanceForPartnerResponseBody.d.ts +76 -0
- package/dist/models/RefundAppInstanceForPartnerResponseBody.js +103 -0
- package/dist/models/RefundAppInstanceForPartnerResponseBody.js.map +1 -0
- package/dist/models/model.d.ts +4 -0
- package/dist/models/model.js +11 -3
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +52 -2
- package/src/models/CreateAppInstanceRequest.ts +33 -3
- package/src/models/CreateAppInstanceResponseBody.ts +55 -2
- package/src/models/RefundAppInstanceForPartnerRequest.ts +41 -0
- package/src/models/RefundAppInstanceForPartnerResponse.ts +40 -0
- package/src/models/RefundAppInstanceForPartnerResponseBody.ts +125 -0
- package/src/models/model.ts +4 -0
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class RefundAppInstanceForPartnerRequest extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @example
|
|
8
|
+
* WD20250703155602000001
|
|
9
|
+
*/
|
|
10
|
+
bizId?: string;
|
|
11
|
+
refundReason?: string;
|
|
12
|
+
/**
|
|
13
|
+
* @example
|
|
14
|
+
* 123456
|
|
15
|
+
*/
|
|
16
|
+
userId?: string;
|
|
17
|
+
static names(): { [key: string]: string } {
|
|
18
|
+
return {
|
|
19
|
+
bizId: 'BizId',
|
|
20
|
+
refundReason: 'RefundReason',
|
|
21
|
+
userId: 'UserId',
|
|
22
|
+
};
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
static types(): { [key: string]: any } {
|
|
26
|
+
return {
|
|
27
|
+
bizId: 'string',
|
|
28
|
+
refundReason: 'string',
|
|
29
|
+
userId: 'string',
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
validate() {
|
|
34
|
+
super.validate();
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
constructor(map?: { [key: string]: any }) {
|
|
38
|
+
super(map);
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
import { RefundAppInstanceForPartnerResponseBody } from "./RefundAppInstanceForPartnerResponseBody";
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
export class RefundAppInstanceForPartnerResponse extends $dara.Model {
|
|
7
|
+
headers?: { [key: string]: string };
|
|
8
|
+
statusCode?: number;
|
|
9
|
+
body?: RefundAppInstanceForPartnerResponseBody;
|
|
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: RefundAppInstanceForPartnerResponseBody,
|
|
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,125 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class RefundAppInstanceForPartnerResponseBodyModule extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @example
|
|
8
|
+
* 250822465990301
|
|
9
|
+
*/
|
|
10
|
+
orderId?: string;
|
|
11
|
+
static names(): { [key: string]: string } {
|
|
12
|
+
return {
|
|
13
|
+
orderId: 'OrderId',
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
static types(): { [key: string]: any } {
|
|
18
|
+
return {
|
|
19
|
+
orderId: 'string',
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
validate() {
|
|
24
|
+
super.validate();
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
constructor(map?: { [key: string]: any }) {
|
|
28
|
+
super(map);
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
export class RefundAppInstanceForPartnerResponseBody extends $dara.Model {
|
|
33
|
+
/**
|
|
34
|
+
* @example
|
|
35
|
+
* {}
|
|
36
|
+
*/
|
|
37
|
+
accessDeniedDetail?: string;
|
|
38
|
+
/**
|
|
39
|
+
* @example
|
|
40
|
+
* False
|
|
41
|
+
*/
|
|
42
|
+
allowRetry?: boolean;
|
|
43
|
+
/**
|
|
44
|
+
* @example
|
|
45
|
+
* or
|
|
46
|
+
*/
|
|
47
|
+
appName?: string;
|
|
48
|
+
/**
|
|
49
|
+
* @example
|
|
50
|
+
* ERROR-oo1
|
|
51
|
+
*/
|
|
52
|
+
dynamicCode?: string;
|
|
53
|
+
/**
|
|
54
|
+
* @example
|
|
55
|
+
* https://check-result-file-sh.oss-cn-shanghai.aliyuncs.com/u6qw3gxzu3b7sbj/u6qw3gxzu3b7sbj.diff.zip?Expires=1740975709&OSSAccessKeyId=LTAI5tKUErVCETM4ev9SELNb&Signature=FP7dDnkrLlOZHmRRORVqbLOtv9c%3D
|
|
56
|
+
*/
|
|
57
|
+
dynamicMessage?: string;
|
|
58
|
+
errorArgs?: any[];
|
|
59
|
+
module?: RefundAppInstanceForPartnerResponseBodyModule;
|
|
60
|
+
/**
|
|
61
|
+
* @remarks
|
|
62
|
+
* Id of the request
|
|
63
|
+
*
|
|
64
|
+
* @example
|
|
65
|
+
* 6C6B99AC-39EC-5350-874C-204128C905E6
|
|
66
|
+
*/
|
|
67
|
+
requestId?: string;
|
|
68
|
+
/**
|
|
69
|
+
* @example
|
|
70
|
+
* SYSTEM.ERROR
|
|
71
|
+
*/
|
|
72
|
+
rootErrorCode?: string;
|
|
73
|
+
rootErrorMsg?: string;
|
|
74
|
+
/**
|
|
75
|
+
* @example
|
|
76
|
+
* True
|
|
77
|
+
*/
|
|
78
|
+
synchro?: boolean;
|
|
79
|
+
static names(): { [key: string]: string } {
|
|
80
|
+
return {
|
|
81
|
+
accessDeniedDetail: 'AccessDeniedDetail',
|
|
82
|
+
allowRetry: 'AllowRetry',
|
|
83
|
+
appName: 'AppName',
|
|
84
|
+
dynamicCode: 'DynamicCode',
|
|
85
|
+
dynamicMessage: 'DynamicMessage',
|
|
86
|
+
errorArgs: 'ErrorArgs',
|
|
87
|
+
module: 'Module',
|
|
88
|
+
requestId: 'RequestId',
|
|
89
|
+
rootErrorCode: 'RootErrorCode',
|
|
90
|
+
rootErrorMsg: 'RootErrorMsg',
|
|
91
|
+
synchro: 'Synchro',
|
|
92
|
+
};
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
static types(): { [key: string]: any } {
|
|
96
|
+
return {
|
|
97
|
+
accessDeniedDetail: 'string',
|
|
98
|
+
allowRetry: 'boolean',
|
|
99
|
+
appName: 'string',
|
|
100
|
+
dynamicCode: 'string',
|
|
101
|
+
dynamicMessage: 'string',
|
|
102
|
+
errorArgs: { 'type': 'array', 'itemType': 'any' },
|
|
103
|
+
module: RefundAppInstanceForPartnerResponseBodyModule,
|
|
104
|
+
requestId: 'string',
|
|
105
|
+
rootErrorCode: 'string',
|
|
106
|
+
rootErrorMsg: 'string',
|
|
107
|
+
synchro: 'boolean',
|
|
108
|
+
};
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
validate() {
|
|
112
|
+
if(Array.isArray(this.errorArgs)) {
|
|
113
|
+
$dara.Model.validateArray(this.errorArgs);
|
|
114
|
+
}
|
|
115
|
+
if(this.module && typeof (this.module as any).validate === 'function') {
|
|
116
|
+
(this.module as any).validate();
|
|
117
|
+
}
|
|
118
|
+
super.validate();
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
constructor(map?: { [key: string]: any }) {
|
|
122
|
+
super(map);
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
|
package/src/models/model.ts
CHANGED
|
@@ -32,6 +32,7 @@ export { ListAppInstanceDomainsResponseBodyModuleNext } from './ListAppInstanceD
|
|
|
32
32
|
export { ListAppInstanceDomainsResponseBodyModule } from './ListAppInstanceDomainsResponseBody';
|
|
33
33
|
export { ModifyAppInstanceSpecResponseBodyModule } from './ModifyAppInstanceSpecResponseBody';
|
|
34
34
|
export { RefreshAppInstanceTicketResponseBodyModule } from './RefreshAppInstanceTicketResponseBody';
|
|
35
|
+
export { RefundAppInstanceForPartnerResponseBodyModule } from './RefundAppInstanceForPartnerResponseBody';
|
|
35
36
|
export { RenewAppInstanceResponseBodyModule } from './RenewAppInstanceResponseBody';
|
|
36
37
|
export { SearchImageResponseBodyImageResponseImageList } from './SearchImageResponseBody';
|
|
37
38
|
export { SearchImageResponseBodyImageResponse } from './SearchImageResponseBody';
|
|
@@ -115,6 +116,9 @@ export { OperateAppServiceForPartnerResponse } from './OperateAppServiceForPartn
|
|
|
115
116
|
export { RefreshAppInstanceTicketRequest } from './RefreshAppInstanceTicketRequest';
|
|
116
117
|
export { RefreshAppInstanceTicketResponseBody } from './RefreshAppInstanceTicketResponseBody';
|
|
117
118
|
export { RefreshAppInstanceTicketResponse } from './RefreshAppInstanceTicketResponse';
|
|
119
|
+
export { RefundAppInstanceForPartnerRequest } from './RefundAppInstanceForPartnerRequest';
|
|
120
|
+
export { RefundAppInstanceForPartnerResponseBody } from './RefundAppInstanceForPartnerResponseBody';
|
|
121
|
+
export { RefundAppInstanceForPartnerResponse } from './RefundAppInstanceForPartnerResponse';
|
|
118
122
|
export { RenewAppInstanceRequest } from './RenewAppInstanceRequest';
|
|
119
123
|
export { RenewAppInstanceResponseBody } from './RenewAppInstanceResponseBody';
|
|
120
124
|
export { RenewAppInstanceResponse } from './RenewAppInstanceResponse';
|