@alicloud/websitebuild20250429 2.2.0 → 2.3.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 +30 -0
- package/dist/client.js +93 -0
- package/dist/client.js.map +1 -1
- package/dist/models/GetIcpFilingInfoForPartnerRequest.d.ts +23 -0
- package/dist/models/GetIcpFilingInfoForPartnerRequest.js +60 -0
- package/dist/models/GetIcpFilingInfoForPartnerRequest.js.map +1 -0
- package/dist/models/GetIcpFilingInfoForPartnerResponse.d.ts +19 -0
- package/dist/models/GetIcpFilingInfoForPartnerResponse.js +69 -0
- package/dist/models/GetIcpFilingInfoForPartnerResponse.js.map +1 -0
- package/dist/models/GetIcpFilingInfoForPartnerResponseBody.d.ts +37 -0
- package/dist/models/GetIcpFilingInfoForPartnerResponseBody.js +86 -0
- package/dist/models/GetIcpFilingInfoForPartnerResponseBody.js.map +1 -0
- package/dist/models/GetUserTmpIdentityForPartnerRequest.d.ts +34 -0
- package/dist/models/GetUserTmpIdentityForPartnerRequest.js +66 -0
- package/dist/models/GetUserTmpIdentityForPartnerRequest.js.map +1 -0
- package/dist/models/GetUserTmpIdentityForPartnerResponse.d.ts +19 -0
- package/dist/models/GetUserTmpIdentityForPartnerResponse.js +69 -0
- package/dist/models/GetUserTmpIdentityForPartnerResponse.js.map +1 -0
- package/dist/models/GetUserTmpIdentityForPartnerResponseBody.d.ts +83 -0
- package/dist/models/GetUserTmpIdentityForPartnerResponseBody.js +118 -0
- package/dist/models/GetUserTmpIdentityForPartnerResponseBody.js.map +1 -0
- package/dist/models/model.d.ts +9 -0
- package/dist/models/model.js +19 -1
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +104 -0
- package/src/models/GetIcpFilingInfoForPartnerRequest.ts +38 -0
- package/src/models/GetIcpFilingInfoForPartnerResponse.ts +40 -0
- package/src/models/GetIcpFilingInfoForPartnerResponseBody.ts +69 -0
- package/src/models/GetUserTmpIdentityForPartnerRequest.ts +55 -0
- package/src/models/GetUserTmpIdentityForPartnerResponse.ts +40 -0
- package/src/models/GetUserTmpIdentityForPartnerResponseBody.ts +138 -0
- package/src/models/model.ts +9 -0
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
import { GetUserTmpIdentityForPartnerResponseBody } from "./GetUserTmpIdentityForPartnerResponseBody";
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
export class GetUserTmpIdentityForPartnerResponse extends $dara.Model {
|
|
7
|
+
headers?: { [key: string]: string };
|
|
8
|
+
statusCode?: number;
|
|
9
|
+
body?: GetUserTmpIdentityForPartnerResponseBody;
|
|
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: GetUserTmpIdentityForPartnerResponseBody,
|
|
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,138 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class GetUserTmpIdentityForPartnerResponseBodyDataCredentials extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @example
|
|
8
|
+
* 7t2Rzt37ND7-xxx
|
|
9
|
+
*/
|
|
10
|
+
encryptedAccessKeyId?: string;
|
|
11
|
+
/**
|
|
12
|
+
* @example
|
|
13
|
+
* 7t2Rzt37ND7-xxx
|
|
14
|
+
*/
|
|
15
|
+
encryptedAccessKeySecret?: string;
|
|
16
|
+
/**
|
|
17
|
+
* @example
|
|
18
|
+
* 7t2Rzt37ND7-xxx
|
|
19
|
+
*/
|
|
20
|
+
encryptedSecurityToken?: string;
|
|
21
|
+
/**
|
|
22
|
+
* @example
|
|
23
|
+
* 2025-04-29T14:00:00Z
|
|
24
|
+
*/
|
|
25
|
+
expiration?: string;
|
|
26
|
+
static names(): { [key: string]: string } {
|
|
27
|
+
return {
|
|
28
|
+
encryptedAccessKeyId: 'EncryptedAccessKeyId',
|
|
29
|
+
encryptedAccessKeySecret: 'EncryptedAccessKeySecret',
|
|
30
|
+
encryptedSecurityToken: 'EncryptedSecurityToken',
|
|
31
|
+
expiration: 'Expiration',
|
|
32
|
+
};
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
static types(): { [key: string]: any } {
|
|
36
|
+
return {
|
|
37
|
+
encryptedAccessKeyId: 'string',
|
|
38
|
+
encryptedAccessKeySecret: 'string',
|
|
39
|
+
encryptedSecurityToken: 'string',
|
|
40
|
+
expiration: 'string',
|
|
41
|
+
};
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
validate() {
|
|
45
|
+
super.validate();
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
constructor(map?: { [key: string]: any }) {
|
|
49
|
+
super(map);
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
export class GetUserTmpIdentityForPartnerResponseBodyData extends $dara.Model {
|
|
54
|
+
credentials?: GetUserTmpIdentityForPartnerResponseBodyDataCredentials;
|
|
55
|
+
hasCustomRoleAuth?: boolean;
|
|
56
|
+
static names(): { [key: string]: string } {
|
|
57
|
+
return {
|
|
58
|
+
credentials: 'Credentials',
|
|
59
|
+
hasCustomRoleAuth: 'HasCustomRoleAuth',
|
|
60
|
+
};
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
static types(): { [key: string]: any } {
|
|
64
|
+
return {
|
|
65
|
+
credentials: GetUserTmpIdentityForPartnerResponseBodyDataCredentials,
|
|
66
|
+
hasCustomRoleAuth: 'boolean',
|
|
67
|
+
};
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
validate() {
|
|
71
|
+
if(this.credentials && typeof (this.credentials as any).validate === 'function') {
|
|
72
|
+
(this.credentials as any).validate();
|
|
73
|
+
}
|
|
74
|
+
super.validate();
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
constructor(map?: { [key: string]: any }) {
|
|
78
|
+
super(map);
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
export class GetUserTmpIdentityForPartnerResponseBody extends $dara.Model {
|
|
83
|
+
data?: GetUserTmpIdentityForPartnerResponseBodyData;
|
|
84
|
+
/**
|
|
85
|
+
* @example
|
|
86
|
+
* 0
|
|
87
|
+
*/
|
|
88
|
+
errorCode?: string;
|
|
89
|
+
/**
|
|
90
|
+
* @example
|
|
91
|
+
* aliuid:1998006665794443 assumeRole not exist,serviceName:realtimelogpush.dcdnservices.aliyuncs.com
|
|
92
|
+
*/
|
|
93
|
+
errorMsg?: string;
|
|
94
|
+
/**
|
|
95
|
+
* @remarks
|
|
96
|
+
* Id of the request
|
|
97
|
+
*
|
|
98
|
+
* @example
|
|
99
|
+
* 6C6B99AC-39EC-5350-874C-204128C905E6
|
|
100
|
+
*/
|
|
101
|
+
requestId?: string;
|
|
102
|
+
/**
|
|
103
|
+
* @example
|
|
104
|
+
* true
|
|
105
|
+
*/
|
|
106
|
+
success?: boolean;
|
|
107
|
+
static names(): { [key: string]: string } {
|
|
108
|
+
return {
|
|
109
|
+
data: 'Data',
|
|
110
|
+
errorCode: 'ErrorCode',
|
|
111
|
+
errorMsg: 'ErrorMsg',
|
|
112
|
+
requestId: 'RequestId',
|
|
113
|
+
success: 'Success',
|
|
114
|
+
};
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
static types(): { [key: string]: any } {
|
|
118
|
+
return {
|
|
119
|
+
data: GetUserTmpIdentityForPartnerResponseBodyData,
|
|
120
|
+
errorCode: 'string',
|
|
121
|
+
errorMsg: 'string',
|
|
122
|
+
requestId: 'string',
|
|
123
|
+
success: 'boolean',
|
|
124
|
+
};
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
validate() {
|
|
128
|
+
if(this.data && typeof (this.data as any).validate === 'function') {
|
|
129
|
+
(this.data as any).validate();
|
|
130
|
+
}
|
|
131
|
+
super.validate();
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
constructor(map?: { [key: string]: any }) {
|
|
135
|
+
super(map);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
package/src/models/model.ts
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
export { GetCreateLogoTaskResponseBodyTask } from './GetCreateLogoTaskResponseBody';
|
|
2
|
+
export { GetIcpFilingInfoForPartnerResponseBodyData } from './GetIcpFilingInfoForPartnerResponseBody';
|
|
3
|
+
export { GetUserTmpIdentityForPartnerResponseBodyDataCredentials } from './GetUserTmpIdentityForPartnerResponseBody';
|
|
4
|
+
export { GetUserTmpIdentityForPartnerResponseBodyData } from './GetUserTmpIdentityForPartnerResponseBody';
|
|
2
5
|
export { SearchImageResponseBodyImageResponseImageList } from './SearchImageResponseBody';
|
|
3
6
|
export { SearchImageResponseBodyImageResponse } from './SearchImageResponseBody';
|
|
4
7
|
export { SyncAppInstanceForPartnerRequestAppInstanceProfile } from './SyncAppInstanceForPartnerRequest';
|
|
@@ -11,6 +14,12 @@ export { CreateLogoTaskResponse } from './CreateLogoTaskResponse';
|
|
|
11
14
|
export { GetCreateLogoTaskRequest } from './GetCreateLogoTaskRequest';
|
|
12
15
|
export { GetCreateLogoTaskResponseBody } from './GetCreateLogoTaskResponseBody';
|
|
13
16
|
export { GetCreateLogoTaskResponse } from './GetCreateLogoTaskResponse';
|
|
17
|
+
export { GetIcpFilingInfoForPartnerRequest } from './GetIcpFilingInfoForPartnerRequest';
|
|
18
|
+
export { GetIcpFilingInfoForPartnerResponseBody } from './GetIcpFilingInfoForPartnerResponseBody';
|
|
19
|
+
export { GetIcpFilingInfoForPartnerResponse } from './GetIcpFilingInfoForPartnerResponse';
|
|
20
|
+
export { GetUserTmpIdentityForPartnerRequest } from './GetUserTmpIdentityForPartnerRequest';
|
|
21
|
+
export { GetUserTmpIdentityForPartnerResponseBody } from './GetUserTmpIdentityForPartnerResponseBody';
|
|
22
|
+
export { GetUserTmpIdentityForPartnerResponse } from './GetUserTmpIdentityForPartnerResponse';
|
|
14
23
|
export { OperateAppInstanceForPartnerRequest } from './OperateAppInstanceForPartnerRequest';
|
|
15
24
|
export { OperateAppInstanceForPartnerResponseBody } from './OperateAppInstanceForPartnerResponseBody';
|
|
16
25
|
export { OperateAppInstanceForPartnerResponse } from './OperateAppInstanceForPartnerResponse';
|