@alicloud/aliding20230426 2.23.0 → 2.23.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 CHANGED
@@ -14280,6 +14280,11 @@ export declare class GetOrgOrWebOpenDocContentTaskIdRequest extends $tea.Model {
14280
14280
  */
14281
14281
  dentryUuid?: string;
14282
14282
  generateCp?: boolean;
14283
+ /**
14284
+ * @example
14285
+ * 0
14286
+ */
14287
+ scopeType?: number;
14283
14288
  /**
14284
14289
  * @example
14285
14290
  * markdown
@@ -14306,6 +14311,11 @@ export declare class GetOrgOrWebOpenDocContentTaskIdShrinkRequest extends $tea.M
14306
14311
  */
14307
14312
  dentryUuid?: string;
14308
14313
  generateCp?: boolean;
14314
+ /**
14315
+ * @example
14316
+ * 0
14317
+ */
14318
+ scopeType?: number;
14309
14319
  /**
14310
14320
  * @example
14311
14321
  * markdown
package/dist/client.js CHANGED
@@ -12515,6 +12515,7 @@ class GetOrgOrWebOpenDocContentTaskIdRequest extends $tea.Model {
12515
12515
  return {
12516
12516
  dentryUuid: 'DentryUuid',
12517
12517
  generateCp: 'GenerateCp',
12518
+ scopeType: 'ScopeType',
12518
12519
  targetFormat: 'TargetFormat',
12519
12520
  tenantContext: 'TenantContext',
12520
12521
  };
@@ -12523,6 +12524,7 @@ class GetOrgOrWebOpenDocContentTaskIdRequest extends $tea.Model {
12523
12524
  return {
12524
12525
  dentryUuid: 'string',
12525
12526
  generateCp: 'boolean',
12527
+ scopeType: 'number',
12526
12528
  targetFormat: 'string',
12527
12529
  tenantContext: GetOrgOrWebOpenDocContentTaskIdRequestTenantContext,
12528
12530
  };
@@ -12537,6 +12539,7 @@ class GetOrgOrWebOpenDocContentTaskIdShrinkRequest extends $tea.Model {
12537
12539
  return {
12538
12540
  dentryUuid: 'DentryUuid',
12539
12541
  generateCp: 'GenerateCp',
12542
+ scopeType: 'ScopeType',
12540
12543
  targetFormat: 'TargetFormat',
12541
12544
  tenantContextShrink: 'TenantContext',
12542
12545
  };
@@ -12545,6 +12548,7 @@ class GetOrgOrWebOpenDocContentTaskIdShrinkRequest extends $tea.Model {
12545
12548
  return {
12546
12549
  dentryUuid: 'string',
12547
12550
  generateCp: 'boolean',
12551
+ scopeType: 'number',
12548
12552
  targetFormat: 'string',
12549
12553
  tenantContextShrink: 'string',
12550
12554
  };
@@ -49381,6 +49385,9 @@ class Client extends openapi_client_1.default {
49381
49385
  if (!tea_util_1.default.isUnset(request.generateCp)) {
49382
49386
  body["GenerateCp"] = request.generateCp;
49383
49387
  }
49388
+ if (!tea_util_1.default.isUnset(request.scopeType)) {
49389
+ body["ScopeType"] = request.scopeType;
49390
+ }
49384
49391
  if (!tea_util_1.default.isUnset(request.targetFormat)) {
49385
49392
  body["TargetFormat"] = request.targetFormat;
49386
49393
  }