@alicloud/aliding20230426 2.8.0 → 2.8.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 -0
- package/dist/client.js +7 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +10 -0
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -23486,12 +23486,14 @@ export class SyncDingTypeShrinkHeaders extends $tea.Model {
|
|
|
23486
23486
|
|
|
23487
23487
|
export class SyncDingTypeRequest extends $tea.Model {
|
|
23488
23488
|
dingType?: string;
|
|
23489
|
+
isDimission?: string;
|
|
23489
23490
|
source?: string;
|
|
23490
23491
|
tenantContext?: SyncDingTypeRequestTenantContext;
|
|
23491
23492
|
workNo?: string;
|
|
23492
23493
|
static names(): { [key: string]: string } {
|
|
23493
23494
|
return {
|
|
23494
23495
|
dingType: 'DingType',
|
|
23496
|
+
isDimission: 'IsDimission',
|
|
23495
23497
|
source: 'Source',
|
|
23496
23498
|
tenantContext: 'TenantContext',
|
|
23497
23499
|
workNo: 'WorkNo',
|
|
@@ -23501,6 +23503,7 @@ export class SyncDingTypeRequest extends $tea.Model {
|
|
|
23501
23503
|
static types(): { [key: string]: any } {
|
|
23502
23504
|
return {
|
|
23503
23505
|
dingType: 'string',
|
|
23506
|
+
isDimission: 'string',
|
|
23504
23507
|
source: 'string',
|
|
23505
23508
|
tenantContext: SyncDingTypeRequestTenantContext,
|
|
23506
23509
|
workNo: 'string',
|
|
@@ -23514,12 +23517,14 @@ export class SyncDingTypeRequest extends $tea.Model {
|
|
|
23514
23517
|
|
|
23515
23518
|
export class SyncDingTypeShrinkRequest extends $tea.Model {
|
|
23516
23519
|
dingType?: string;
|
|
23520
|
+
isDimission?: string;
|
|
23517
23521
|
source?: string;
|
|
23518
23522
|
tenantContextShrink?: string;
|
|
23519
23523
|
workNo?: string;
|
|
23520
23524
|
static names(): { [key: string]: string } {
|
|
23521
23525
|
return {
|
|
23522
23526
|
dingType: 'DingType',
|
|
23527
|
+
isDimission: 'IsDimission',
|
|
23523
23528
|
source: 'Source',
|
|
23524
23529
|
tenantContextShrink: 'TenantContext',
|
|
23525
23530
|
workNo: 'WorkNo',
|
|
@@ -23529,6 +23534,7 @@ export class SyncDingTypeShrinkRequest extends $tea.Model {
|
|
|
23529
23534
|
static types(): { [key: string]: any } {
|
|
23530
23535
|
return {
|
|
23531
23536
|
dingType: 'string',
|
|
23537
|
+
isDimission: 'string',
|
|
23532
23538
|
source: 'string',
|
|
23533
23539
|
tenantContextShrink: 'string',
|
|
23534
23540
|
workNo: 'string',
|
|
@@ -50995,6 +51001,10 @@ export default class Client extends OpenApi {
|
|
|
50995
51001
|
body["DingType"] = request.dingType;
|
|
50996
51002
|
}
|
|
50997
51003
|
|
|
51004
|
+
if (!Util.isUnset(request.isDimission)) {
|
|
51005
|
+
body["IsDimission"] = request.isDimission;
|
|
51006
|
+
}
|
|
51007
|
+
|
|
50998
51008
|
if (!Util.isUnset(request.source)) {
|
|
50999
51009
|
body["Source"] = request.source;
|
|
51000
51010
|
}
|