@alicloud/websitebuild20250429 2.19.1 → 2.20.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 +60 -0
- package/dist/client.js +189 -0
- package/dist/client.js.map +1 -1
- package/dist/models/CheckUserResourceMeasureRequest.d.ts +48 -0
- package/dist/models/CheckUserResourceMeasureRequest.js +70 -0
- package/dist/models/CheckUserResourceMeasureRequest.js.map +1 -0
- package/dist/models/CheckUserResourceMeasureResponse.d.ts +19 -0
- package/dist/models/CheckUserResourceMeasureResponse.js +69 -0
- package/dist/models/CheckUserResourceMeasureResponse.js.map +1 -0
- package/dist/models/CheckUserResourceMeasureResponseBody.d.ts +91 -0
- package/dist/models/CheckUserResourceMeasureResponseBody.js +109 -0
- package/dist/models/CheckUserResourceMeasureResponseBody.js.map +1 -0
- package/dist/models/CreateAppAssistantAgentRequest.d.ts +24 -0
- package/dist/models/CreateAppAssistantAgentRequest.js +62 -0
- package/dist/models/CreateAppAssistantAgentRequest.js.map +1 -0
- package/dist/models/CreateAppAssistantAgentResponse.d.ts +19 -0
- package/dist/models/CreateAppAssistantAgentResponse.js +69 -0
- package/dist/models/CreateAppAssistantAgentResponse.js.map +1 -0
- package/dist/models/CreateAppAssistantAgentResponseBody.d.ts +153 -0
- package/dist/models/CreateAppAssistantAgentResponseBody.js +182 -0
- package/dist/models/CreateAppAssistantAgentResponseBody.js.map +1 -0
- package/dist/models/CreateAppAssistantAgentSsoLoginRequest.d.ts +28 -0
- package/dist/models/CreateAppAssistantAgentSsoLoginRequest.js +62 -0
- package/dist/models/CreateAppAssistantAgentSsoLoginRequest.js.map +1 -0
- package/dist/models/CreateAppAssistantAgentSsoLoginResponse.d.ts +19 -0
- package/dist/models/CreateAppAssistantAgentSsoLoginResponse.js +69 -0
- package/dist/models/CreateAppAssistantAgentSsoLoginResponse.js.map +1 -0
- package/dist/models/CreateAppAssistantAgentSsoLoginResponseBody.d.ts +89 -0
- package/dist/models/CreateAppAssistantAgentSsoLoginResponseBody.js +112 -0
- package/dist/models/CreateAppAssistantAgentSsoLoginResponseBody.js.map +1 -0
- package/dist/models/ListAppAssistantAgentsRequest.d.ts +23 -0
- package/dist/models/ListAppAssistantAgentsRequest.js +60 -0
- package/dist/models/ListAppAssistantAgentsRequest.js.map +1 -0
- package/dist/models/ListAppAssistantAgentsResponse.d.ts +19 -0
- package/dist/models/ListAppAssistantAgentsResponse.js +69 -0
- package/dist/models/ListAppAssistantAgentsResponse.js.map +1 -0
- package/dist/models/ListAppAssistantAgentsResponseBody.d.ts +174 -0
- package/dist/models/ListAppAssistantAgentsResponseBody.js +188 -0
- package/dist/models/ListAppAssistantAgentsResponseBody.js.map +1 -0
- package/dist/models/model.d.ts +20 -0
- package/dist/models/model.js +48 -7
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +212 -0
- package/src/models/CheckUserResourceMeasureRequest.ts +73 -0
- package/src/models/CheckUserResourceMeasureResponse.ts +40 -0
- package/src/models/CheckUserResourceMeasureResponseBody.ts +146 -0
- package/src/models/CreateAppAssistantAgentRequest.ts +41 -0
- package/src/models/CreateAppAssistantAgentResponse.ts +40 -0
- package/src/models/CreateAppAssistantAgentResponseBody.ts +257 -0
- package/src/models/CreateAppAssistantAgentSsoLoginRequest.ts +45 -0
- package/src/models/CreateAppAssistantAgentSsoLoginResponse.ts +40 -0
- package/src/models/CreateAppAssistantAgentSsoLoginResponseBody.ts +145 -0
- package/src/models/ListAppAssistantAgentsRequest.ts +38 -0
- package/src/models/ListAppAssistantAgentsResponse.ts +40 -0
- package/src/models/ListAppAssistantAgentsResponseBody.ts +284 -0
- package/src/models/model.ts +20 -0
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class ListAppAssistantAgentsRequest extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @example
|
|
8
|
+
* WD20250703155602000001
|
|
9
|
+
*/
|
|
10
|
+
bizId?: string;
|
|
11
|
+
/**
|
|
12
|
+
* @example
|
|
13
|
+
* ChannelOps
|
|
14
|
+
*/
|
|
15
|
+
platformType?: string;
|
|
16
|
+
static names(): { [key: string]: string } {
|
|
17
|
+
return {
|
|
18
|
+
bizId: 'BizId',
|
|
19
|
+
platformType: 'PlatformType',
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
static types(): { [key: string]: any } {
|
|
24
|
+
return {
|
|
25
|
+
bizId: 'string',
|
|
26
|
+
platformType: 'string',
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
validate() {
|
|
31
|
+
super.validate();
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
constructor(map?: { [key: string]: any }) {
|
|
35
|
+
super(map);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
import { ListAppAssistantAgentsResponseBody } from "./ListAppAssistantAgentsResponseBody";
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
export class ListAppAssistantAgentsResponse extends $dara.Model {
|
|
7
|
+
headers?: { [key: string]: string };
|
|
8
|
+
statusCode?: number;
|
|
9
|
+
body?: ListAppAssistantAgentsResponseBody;
|
|
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: ListAppAssistantAgentsResponseBody,
|
|
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,284 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class ListAppAssistantAgentsResponseBodyModuleCredential extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @remarks
|
|
8
|
+
* API Key
|
|
9
|
+
*
|
|
10
|
+
* @example
|
|
11
|
+
* akm-xxxxxxx
|
|
12
|
+
*/
|
|
13
|
+
apiKey?: string;
|
|
14
|
+
/**
|
|
15
|
+
* @remarks
|
|
16
|
+
* API Secret
|
|
17
|
+
*
|
|
18
|
+
* @example
|
|
19
|
+
* sk-xxxxxx
|
|
20
|
+
*/
|
|
21
|
+
apiSecret?: string;
|
|
22
|
+
extra?: { [key: string]: string };
|
|
23
|
+
/**
|
|
24
|
+
* @example
|
|
25
|
+
* ***
|
|
26
|
+
*/
|
|
27
|
+
password?: string;
|
|
28
|
+
/**
|
|
29
|
+
* @example
|
|
30
|
+
* Test
|
|
31
|
+
*/
|
|
32
|
+
username?: string;
|
|
33
|
+
static names(): { [key: string]: string } {
|
|
34
|
+
return {
|
|
35
|
+
apiKey: 'ApiKey',
|
|
36
|
+
apiSecret: 'ApiSecret',
|
|
37
|
+
extra: 'Extra',
|
|
38
|
+
password: 'Password',
|
|
39
|
+
username: 'Username',
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
static types(): { [key: string]: any } {
|
|
44
|
+
return {
|
|
45
|
+
apiKey: 'string',
|
|
46
|
+
apiSecret: 'string',
|
|
47
|
+
extra: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
48
|
+
password: 'string',
|
|
49
|
+
username: 'string',
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
validate() {
|
|
54
|
+
if(this.extra) {
|
|
55
|
+
$dara.Model.validateMap(this.extra);
|
|
56
|
+
}
|
|
57
|
+
super.validate();
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
constructor(map?: { [key: string]: any }) {
|
|
61
|
+
super(map);
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
export class ListAppAssistantAgentsResponseBodyModuleEmbedConfig extends $dara.Model {
|
|
66
|
+
extra?: { [key: string]: string };
|
|
67
|
+
rawScript?: string;
|
|
68
|
+
static names(): { [key: string]: string } {
|
|
69
|
+
return {
|
|
70
|
+
extra: 'Extra',
|
|
71
|
+
rawScript: 'RawScript',
|
|
72
|
+
};
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
static types(): { [key: string]: any } {
|
|
76
|
+
return {
|
|
77
|
+
extra: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
78
|
+
rawScript: 'string',
|
|
79
|
+
};
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
validate() {
|
|
83
|
+
if(this.extra) {
|
|
84
|
+
$dara.Model.validateMap(this.extra);
|
|
85
|
+
}
|
|
86
|
+
super.validate();
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
constructor(map?: { [key: string]: any }) {
|
|
90
|
+
super(map);
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
export class ListAppAssistantAgentsResponseBodyModule extends $dara.Model {
|
|
95
|
+
/**
|
|
96
|
+
* @example
|
|
97
|
+
* liyang1_v@soulapp
|
|
98
|
+
*/
|
|
99
|
+
agentId?: string;
|
|
100
|
+
agentName?: string;
|
|
101
|
+
/**
|
|
102
|
+
* @example
|
|
103
|
+
* WD20250703155602000001
|
|
104
|
+
*/
|
|
105
|
+
bizId?: string;
|
|
106
|
+
credential?: ListAppAssistantAgentsResponseBodyModuleCredential;
|
|
107
|
+
embedConfig?: ListAppAssistantAgentsResponseBodyModuleEmbedConfig;
|
|
108
|
+
extraParams?: { [key: string]: string };
|
|
109
|
+
/**
|
|
110
|
+
* @example
|
|
111
|
+
* 1740479834
|
|
112
|
+
*/
|
|
113
|
+
gmtCreate?: string;
|
|
114
|
+
/**
|
|
115
|
+
* @example
|
|
116
|
+
* 2025-08-28T02:25:41Z
|
|
117
|
+
*/
|
|
118
|
+
gmtModified?: string;
|
|
119
|
+
/**
|
|
120
|
+
* @example
|
|
121
|
+
* WA12313123131
|
|
122
|
+
*/
|
|
123
|
+
platformAppId?: string;
|
|
124
|
+
/**
|
|
125
|
+
* @example
|
|
126
|
+
* VMWARE
|
|
127
|
+
*/
|
|
128
|
+
platformType?: string;
|
|
129
|
+
/**
|
|
130
|
+
* @example
|
|
131
|
+
* NORMAL
|
|
132
|
+
*/
|
|
133
|
+
status?: string;
|
|
134
|
+
/**
|
|
135
|
+
* @example
|
|
136
|
+
* 1231311312
|
|
137
|
+
*/
|
|
138
|
+
userId?: string;
|
|
139
|
+
static names(): { [key: string]: string } {
|
|
140
|
+
return {
|
|
141
|
+
agentId: 'AgentId',
|
|
142
|
+
agentName: 'AgentName',
|
|
143
|
+
bizId: 'BizId',
|
|
144
|
+
credential: 'Credential',
|
|
145
|
+
embedConfig: 'EmbedConfig',
|
|
146
|
+
extraParams: 'ExtraParams',
|
|
147
|
+
gmtCreate: 'GmtCreate',
|
|
148
|
+
gmtModified: 'GmtModified',
|
|
149
|
+
platformAppId: 'PlatformAppId',
|
|
150
|
+
platformType: 'PlatformType',
|
|
151
|
+
status: 'Status',
|
|
152
|
+
userId: 'UserId',
|
|
153
|
+
};
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
static types(): { [key: string]: any } {
|
|
157
|
+
return {
|
|
158
|
+
agentId: 'string',
|
|
159
|
+
agentName: 'string',
|
|
160
|
+
bizId: 'string',
|
|
161
|
+
credential: ListAppAssistantAgentsResponseBodyModuleCredential,
|
|
162
|
+
embedConfig: ListAppAssistantAgentsResponseBodyModuleEmbedConfig,
|
|
163
|
+
extraParams: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
164
|
+
gmtCreate: 'string',
|
|
165
|
+
gmtModified: 'string',
|
|
166
|
+
platformAppId: 'string',
|
|
167
|
+
platformType: 'string',
|
|
168
|
+
status: 'string',
|
|
169
|
+
userId: 'string',
|
|
170
|
+
};
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
validate() {
|
|
174
|
+
if(this.credential && typeof (this.credential as any).validate === 'function') {
|
|
175
|
+
(this.credential as any).validate();
|
|
176
|
+
}
|
|
177
|
+
if(this.embedConfig && typeof (this.embedConfig as any).validate === 'function') {
|
|
178
|
+
(this.embedConfig as any).validate();
|
|
179
|
+
}
|
|
180
|
+
if(this.extraParams) {
|
|
181
|
+
$dara.Model.validateMap(this.extraParams);
|
|
182
|
+
}
|
|
183
|
+
super.validate();
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
constructor(map?: { [key: string]: any }) {
|
|
187
|
+
super(map);
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
export class ListAppAssistantAgentsResponseBody extends $dara.Model {
|
|
192
|
+
/**
|
|
193
|
+
* @example
|
|
194
|
+
* {}
|
|
195
|
+
*/
|
|
196
|
+
accessDeniedDetail?: string;
|
|
197
|
+
/**
|
|
198
|
+
* @example
|
|
199
|
+
* False
|
|
200
|
+
*/
|
|
201
|
+
allowRetry?: boolean;
|
|
202
|
+
/**
|
|
203
|
+
* @example
|
|
204
|
+
* spring-cloud-b
|
|
205
|
+
*/
|
|
206
|
+
appName?: string;
|
|
207
|
+
/**
|
|
208
|
+
* @example
|
|
209
|
+
* ERROR-oo1
|
|
210
|
+
*/
|
|
211
|
+
dynamicCode?: string;
|
|
212
|
+
/**
|
|
213
|
+
* @example
|
|
214
|
+
* SYSTEM_ERROR
|
|
215
|
+
*/
|
|
216
|
+
dynamicMessage?: string;
|
|
217
|
+
errorArgs?: any[];
|
|
218
|
+
module?: ListAppAssistantAgentsResponseBodyModule[];
|
|
219
|
+
/**
|
|
220
|
+
* @remarks
|
|
221
|
+
* Id of the request
|
|
222
|
+
*
|
|
223
|
+
* @example
|
|
224
|
+
* 6C6B99AC-39EC-5350-874C-204128C905E6
|
|
225
|
+
*/
|
|
226
|
+
requestId?: string;
|
|
227
|
+
/**
|
|
228
|
+
* @example
|
|
229
|
+
* SYSTEM.ERROR
|
|
230
|
+
*/
|
|
231
|
+
rootErrorCode?: string;
|
|
232
|
+
rootErrorMsg?: string;
|
|
233
|
+
/**
|
|
234
|
+
* @example
|
|
235
|
+
* True
|
|
236
|
+
*/
|
|
237
|
+
synchro?: boolean;
|
|
238
|
+
static names(): { [key: string]: string } {
|
|
239
|
+
return {
|
|
240
|
+
accessDeniedDetail: 'AccessDeniedDetail',
|
|
241
|
+
allowRetry: 'AllowRetry',
|
|
242
|
+
appName: 'AppName',
|
|
243
|
+
dynamicCode: 'DynamicCode',
|
|
244
|
+
dynamicMessage: 'DynamicMessage',
|
|
245
|
+
errorArgs: 'ErrorArgs',
|
|
246
|
+
module: 'Module',
|
|
247
|
+
requestId: 'RequestId',
|
|
248
|
+
rootErrorCode: 'RootErrorCode',
|
|
249
|
+
rootErrorMsg: 'RootErrorMsg',
|
|
250
|
+
synchro: 'Synchro',
|
|
251
|
+
};
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
static types(): { [key: string]: any } {
|
|
255
|
+
return {
|
|
256
|
+
accessDeniedDetail: 'string',
|
|
257
|
+
allowRetry: 'boolean',
|
|
258
|
+
appName: 'string',
|
|
259
|
+
dynamicCode: 'string',
|
|
260
|
+
dynamicMessage: 'string',
|
|
261
|
+
errorArgs: { 'type': 'array', 'itemType': 'any' },
|
|
262
|
+
module: { 'type': 'array', 'itemType': ListAppAssistantAgentsResponseBodyModule },
|
|
263
|
+
requestId: 'string',
|
|
264
|
+
rootErrorCode: 'string',
|
|
265
|
+
rootErrorMsg: 'string',
|
|
266
|
+
synchro: 'boolean',
|
|
267
|
+
};
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
validate() {
|
|
271
|
+
if(Array.isArray(this.errorArgs)) {
|
|
272
|
+
$dara.Model.validateArray(this.errorArgs);
|
|
273
|
+
}
|
|
274
|
+
if(Array.isArray(this.module)) {
|
|
275
|
+
$dara.Model.validateArray(this.module);
|
|
276
|
+
}
|
|
277
|
+
super.validate();
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
constructor(map?: { [key: string]: any }) {
|
|
281
|
+
super(map);
|
|
282
|
+
}
|
|
283
|
+
}
|
|
284
|
+
|
package/src/models/model.ts
CHANGED
|
@@ -16,6 +16,11 @@ export { AllocateSupabaseForAdminResponseBodyModule } from './AllocateSupabaseFo
|
|
|
16
16
|
export { BatchCheckResourceMeasureResponseBodyModule } from './BatchCheckResourceMeasureResponseBody';
|
|
17
17
|
export { BindAppDomainResponseBodyModule } from './BindAppDomainResponseBody';
|
|
18
18
|
export { CheckResourceMeasureResponseBodyModule } from './CheckResourceMeasureResponseBody';
|
|
19
|
+
export { CheckUserResourceMeasureResponseBodyModule } from './CheckUserResourceMeasureResponseBody';
|
|
20
|
+
export { CreateAppAssistantAgentResponseBodyModuleCredential } from './CreateAppAssistantAgentResponseBody';
|
|
21
|
+
export { CreateAppAssistantAgentResponseBodyModuleEmbedConfig } from './CreateAppAssistantAgentResponseBody';
|
|
22
|
+
export { CreateAppAssistantAgentResponseBodyModule } from './CreateAppAssistantAgentResponseBody';
|
|
23
|
+
export { CreateAppAssistantAgentSsoLoginResponseBodyModule } from './CreateAppAssistantAgentSsoLoginResponseBody';
|
|
19
24
|
export { CreateAppInstanceRequestTags } from './CreateAppInstanceRequest';
|
|
20
25
|
export { CreateAppInstanceResponseBodyModule } from './CreateAppInstanceResponseBody';
|
|
21
26
|
export { CreateAppInstanceTicketResponseBodyModule } from './CreateAppInstanceTicketResponseBody';
|
|
@@ -56,6 +61,9 @@ export { GetUserAccessTokenForPartnerResponseBodyModule } from './GetUserAccessT
|
|
|
56
61
|
export { GetUserTmpIdentityForPartnerResponseBodyDataCredentials } from './GetUserTmpIdentityForPartnerResponseBody';
|
|
57
62
|
export { GetUserTmpIdentityForPartnerResponseBodyData } from './GetUserTmpIdentityForPartnerResponseBody';
|
|
58
63
|
export { IntrospectAppInstanceTicketForPreviewResponseBodyModule } from './IntrospectAppInstanceTicketForPreviewResponseBody';
|
|
64
|
+
export { ListAppAssistantAgentsResponseBodyModuleCredential } from './ListAppAssistantAgentsResponseBody';
|
|
65
|
+
export { ListAppAssistantAgentsResponseBodyModuleEmbedConfig } from './ListAppAssistantAgentsResponseBody';
|
|
66
|
+
export { ListAppAssistantAgentsResponseBodyModule } from './ListAppAssistantAgentsResponseBody';
|
|
59
67
|
export { ListAppCommoditySpecificationsForPartnerResponseBodyModule } from './ListAppCommoditySpecificationsForPartnerResponseBody';
|
|
60
68
|
export { ListAppCommoditySpecificationsV2ForPartnerResponseBodyModuleData } from './ListAppCommoditySpecificationsV2forPartnerResponseBody';
|
|
61
69
|
export { ListAppCommoditySpecificationsV2ForPartnerResponseBodyModuleNext } from './ListAppCommoditySpecificationsV2forPartnerResponseBody';
|
|
@@ -142,6 +150,15 @@ export { BindAppDomainResponse } from './BindAppDomainResponse';
|
|
|
142
150
|
export { CheckResourceMeasureRequest } from './CheckResourceMeasureRequest';
|
|
143
151
|
export { CheckResourceMeasureResponseBody } from './CheckResourceMeasureResponseBody';
|
|
144
152
|
export { CheckResourceMeasureResponse } from './CheckResourceMeasureResponse';
|
|
153
|
+
export { CheckUserResourceMeasureRequest } from './CheckUserResourceMeasureRequest';
|
|
154
|
+
export { CheckUserResourceMeasureResponseBody } from './CheckUserResourceMeasureResponseBody';
|
|
155
|
+
export { CheckUserResourceMeasureResponse } from './CheckUserResourceMeasureResponse';
|
|
156
|
+
export { CreateAppAssistantAgentRequest } from './CreateAppAssistantAgentRequest';
|
|
157
|
+
export { CreateAppAssistantAgentResponseBody } from './CreateAppAssistantAgentResponseBody';
|
|
158
|
+
export { CreateAppAssistantAgentResponse } from './CreateAppAssistantAgentResponse';
|
|
159
|
+
export { CreateAppAssistantAgentSsoLoginRequest } from './CreateAppAssistantAgentSsoLoginRequest';
|
|
160
|
+
export { CreateAppAssistantAgentSsoLoginResponseBody } from './CreateAppAssistantAgentSsoLoginResponseBody';
|
|
161
|
+
export { CreateAppAssistantAgentSsoLoginResponse } from './CreateAppAssistantAgentSsoLoginResponse';
|
|
145
162
|
export { CreateAppInstanceRequest } from './CreateAppInstanceRequest';
|
|
146
163
|
export { CreateAppInstanceShrinkRequest } from './CreateAppInstanceShrinkRequest';
|
|
147
164
|
export { CreateAppInstanceResponseBody } from './CreateAppInstanceResponseBody';
|
|
@@ -219,6 +236,9 @@ export { GetUserTmpIdentityForPartnerResponse } from './GetUserTmpIdentityForPar
|
|
|
219
236
|
export { IntrospectAppInstanceTicketForPreviewRequest } from './IntrospectAppInstanceTicketForPreviewRequest';
|
|
220
237
|
export { IntrospectAppInstanceTicketForPreviewResponseBody } from './IntrospectAppInstanceTicketForPreviewResponseBody';
|
|
221
238
|
export { IntrospectAppInstanceTicketForPreviewResponse } from './IntrospectAppInstanceTicketForPreviewResponse';
|
|
239
|
+
export { ListAppAssistantAgentsRequest } from './ListAppAssistantAgentsRequest';
|
|
240
|
+
export { ListAppAssistantAgentsResponseBody } from './ListAppAssistantAgentsResponseBody';
|
|
241
|
+
export { ListAppAssistantAgentsResponse } from './ListAppAssistantAgentsResponse';
|
|
222
242
|
export { ListAppCommoditySpecificationsForPartnerResponseBody } from './ListAppCommoditySpecificationsForPartnerResponseBody';
|
|
223
243
|
export { ListAppCommoditySpecificationsForPartnerResponse } from './ListAppCommoditySpecificationsForPartnerResponse';
|
|
224
244
|
export { ListAppCommoditySpecificationsV2ForPartnerRequest } from './ListAppCommoditySpecificationsV2forPartnerRequest';
|