@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/dist/client.d.ts
CHANGED
|
@@ -13849,6 +13849,7 @@ export declare class SyncDingTypeShrinkHeaders extends $tea.Model {
|
|
|
13849
13849
|
}
|
|
13850
13850
|
export declare class SyncDingTypeRequest extends $tea.Model {
|
|
13851
13851
|
dingType?: string;
|
|
13852
|
+
isDimission?: string;
|
|
13852
13853
|
source?: string;
|
|
13853
13854
|
tenantContext?: SyncDingTypeRequestTenantContext;
|
|
13854
13855
|
workNo?: string;
|
|
@@ -13864,6 +13865,7 @@ export declare class SyncDingTypeRequest extends $tea.Model {
|
|
|
13864
13865
|
}
|
|
13865
13866
|
export declare class SyncDingTypeShrinkRequest extends $tea.Model {
|
|
13866
13867
|
dingType?: string;
|
|
13868
|
+
isDimission?: string;
|
|
13867
13869
|
source?: string;
|
|
13868
13870
|
tenantContextShrink?: string;
|
|
13869
13871
|
workNo?: string;
|
package/dist/client.js
CHANGED
|
@@ -18685,6 +18685,7 @@ class SyncDingTypeRequest extends $tea.Model {
|
|
|
18685
18685
|
static names() {
|
|
18686
18686
|
return {
|
|
18687
18687
|
dingType: 'DingType',
|
|
18688
|
+
isDimission: 'IsDimission',
|
|
18688
18689
|
source: 'Source',
|
|
18689
18690
|
tenantContext: 'TenantContext',
|
|
18690
18691
|
workNo: 'WorkNo',
|
|
@@ -18693,6 +18694,7 @@ class SyncDingTypeRequest extends $tea.Model {
|
|
|
18693
18694
|
static types() {
|
|
18694
18695
|
return {
|
|
18695
18696
|
dingType: 'string',
|
|
18697
|
+
isDimission: 'string',
|
|
18696
18698
|
source: 'string',
|
|
18697
18699
|
tenantContext: SyncDingTypeRequestTenantContext,
|
|
18698
18700
|
workNo: 'string',
|
|
@@ -18707,6 +18709,7 @@ class SyncDingTypeShrinkRequest extends $tea.Model {
|
|
|
18707
18709
|
static names() {
|
|
18708
18710
|
return {
|
|
18709
18711
|
dingType: 'DingType',
|
|
18712
|
+
isDimission: 'IsDimission',
|
|
18710
18713
|
source: 'Source',
|
|
18711
18714
|
tenantContextShrink: 'TenantContext',
|
|
18712
18715
|
workNo: 'WorkNo',
|
|
@@ -18715,6 +18718,7 @@ class SyncDingTypeShrinkRequest extends $tea.Model {
|
|
|
18715
18718
|
static types() {
|
|
18716
18719
|
return {
|
|
18717
18720
|
dingType: 'string',
|
|
18721
|
+
isDimission: 'string',
|
|
18718
18722
|
source: 'string',
|
|
18719
18723
|
tenantContextShrink: 'string',
|
|
18720
18724
|
workNo: 'string',
|
|
@@ -41108,6 +41112,9 @@ class Client extends openapi_client_1.default {
|
|
|
41108
41112
|
if (!tea_util_1.default.isUnset(request.dingType)) {
|
|
41109
41113
|
body["DingType"] = request.dingType;
|
|
41110
41114
|
}
|
|
41115
|
+
if (!tea_util_1.default.isUnset(request.isDimission)) {
|
|
41116
|
+
body["IsDimission"] = request.isDimission;
|
|
41117
|
+
}
|
|
41111
41118
|
if (!tea_util_1.default.isUnset(request.source)) {
|
|
41112
41119
|
body["Source"] = request.source;
|
|
41113
41120
|
}
|