@alicloud/aliding20230426 2.3.3 → 2.3.5
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 +3 -1
- package/dist/client.js +6 -2
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +9 -3
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -12429,12 +12429,16 @@ export class ListEventsResponseBody extends $tea.Model {
|
|
|
12429
12429
|
nextToken?: string;
|
|
12430
12430
|
requestId?: string;
|
|
12431
12431
|
syncToken?: string;
|
|
12432
|
+
vendorRequestId?: string;
|
|
12433
|
+
vendorType?: string;
|
|
12432
12434
|
static names(): { [key: string]: string } {
|
|
12433
12435
|
return {
|
|
12434
12436
|
events: 'events',
|
|
12435
12437
|
nextToken: 'nextToken',
|
|
12436
12438
|
requestId: 'requestId',
|
|
12437
12439
|
syncToken: 'syncToken',
|
|
12440
|
+
vendorRequestId: 'vendorRequestId',
|
|
12441
|
+
vendorType: 'vendorType',
|
|
12438
12442
|
};
|
|
12439
12443
|
}
|
|
12440
12444
|
|
|
@@ -12444,6 +12448,8 @@ export class ListEventsResponseBody extends $tea.Model {
|
|
|
12444
12448
|
nextToken: 'string',
|
|
12445
12449
|
requestId: 'string',
|
|
12446
12450
|
syncToken: 'string',
|
|
12451
|
+
vendorRequestId: 'string',
|
|
12452
|
+
vendorType: 'string',
|
|
12447
12453
|
};
|
|
12448
12454
|
}
|
|
12449
12455
|
|
|
@@ -23225,16 +23231,16 @@ export class CommentListReportResponseBodyComments extends $tea.Model {
|
|
|
23225
23231
|
}
|
|
23226
23232
|
|
|
23227
23233
|
export class CreateDeliveryPlanHeadersAccountContext extends $tea.Model {
|
|
23228
|
-
|
|
23234
|
+
userToken?: string;
|
|
23229
23235
|
static names(): { [key: string]: string } {
|
|
23230
23236
|
return {
|
|
23231
|
-
|
|
23237
|
+
userToken: 'userToken',
|
|
23232
23238
|
};
|
|
23233
23239
|
}
|
|
23234
23240
|
|
|
23235
23241
|
static types(): { [key: string]: any } {
|
|
23236
23242
|
return {
|
|
23237
|
-
|
|
23243
|
+
userToken: 'string',
|
|
23238
23244
|
};
|
|
23239
23245
|
}
|
|
23240
23246
|
|