@alicloud/aliding20230426 2.26.0 → 2.27.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 +15 -0
- package/dist/client.js +6 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +21 -0
package/dist/client.d.ts
CHANGED
|
@@ -27882,6 +27882,11 @@ export declare class CreateWorkspaceDocShrinkRequest extends $dara.Model {
|
|
|
27882
27882
|
});
|
|
27883
27883
|
}
|
|
27884
27884
|
export declare class CreateWorkspaceDocResponseBody extends $dara.Model {
|
|
27885
|
+
/**
|
|
27886
|
+
* @example
|
|
27887
|
+
* YRBcvy
|
|
27888
|
+
*/
|
|
27889
|
+
dentryUuid?: string;
|
|
27885
27890
|
/**
|
|
27886
27891
|
* @example
|
|
27887
27892
|
* QoJGq7xxx
|
|
@@ -27905,6 +27910,16 @@ export declare class CreateWorkspaceDocResponseBody extends $dara.Model {
|
|
|
27905
27910
|
* https://xxx/workspaceId/docs/nodeId
|
|
27906
27911
|
*/
|
|
27907
27912
|
url?: string;
|
|
27913
|
+
/**
|
|
27914
|
+
* @example
|
|
27915
|
+
* 0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX
|
|
27916
|
+
*/
|
|
27917
|
+
vendorRequestId?: string;
|
|
27918
|
+
/**
|
|
27919
|
+
* @example
|
|
27920
|
+
* dingtalk
|
|
27921
|
+
*/
|
|
27922
|
+
vendorType?: string;
|
|
27908
27923
|
/**
|
|
27909
27924
|
* @example
|
|
27910
27925
|
* YRBGvy
|
package/dist/client.js
CHANGED
|
@@ -27504,19 +27504,25 @@ exports.CreateWorkspaceDocShrinkRequest = CreateWorkspaceDocShrinkRequest;
|
|
|
27504
27504
|
class CreateWorkspaceDocResponseBody extends $dara.Model {
|
|
27505
27505
|
static names() {
|
|
27506
27506
|
return {
|
|
27507
|
+
dentryUuid: 'dentryUuid',
|
|
27507
27508
|
docKey: 'docKey',
|
|
27508
27509
|
nodeId: 'nodeId',
|
|
27509
27510
|
requestId: 'requestId',
|
|
27510
27511
|
url: 'url',
|
|
27512
|
+
vendorRequestId: 'vendorRequestId',
|
|
27513
|
+
vendorType: 'vendorType',
|
|
27511
27514
|
workspaceId: 'workspaceId',
|
|
27512
27515
|
};
|
|
27513
27516
|
}
|
|
27514
27517
|
static types() {
|
|
27515
27518
|
return {
|
|
27519
|
+
dentryUuid: 'string',
|
|
27516
27520
|
docKey: 'string',
|
|
27517
27521
|
nodeId: 'string',
|
|
27518
27522
|
requestId: 'string',
|
|
27519
27523
|
url: 'string',
|
|
27524
|
+
vendorRequestId: 'string',
|
|
27525
|
+
vendorType: 'string',
|
|
27520
27526
|
workspaceId: 'string',
|
|
27521
27527
|
};
|
|
27522
27528
|
}
|