@aws-sdk/client-workdocs 3.890.0 → 3.893.0
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-types/commands/AbortDocumentVersionUploadCommand.d.ts +2 -0
- package/dist-types/commands/ActivateUserCommand.d.ts +2 -0
- package/dist-types/commands/AddResourcePermissionsCommand.d.ts +2 -0
- package/dist-types/commands/CreateCommentCommand.d.ts +2 -0
- package/dist-types/commands/CreateCustomMetadataCommand.d.ts +2 -0
- package/dist-types/commands/CreateFolderCommand.d.ts +2 -0
- package/dist-types/commands/CreateLabelsCommand.d.ts +2 -0
- package/dist-types/commands/CreateNotificationSubscriptionCommand.d.ts +2 -0
- package/dist-types/commands/CreateUserCommand.d.ts +2 -0
- package/dist-types/commands/DeactivateUserCommand.d.ts +2 -0
- package/dist-types/commands/DeleteCommentCommand.d.ts +2 -0
- package/dist-types/commands/DeleteCustomMetadataCommand.d.ts +2 -0
- package/dist-types/commands/DeleteDocumentCommand.d.ts +2 -0
- package/dist-types/commands/DeleteDocumentVersionCommand.d.ts +2 -0
- package/dist-types/commands/DeleteFolderCommand.d.ts +2 -0
- package/dist-types/commands/DeleteFolderContentsCommand.d.ts +2 -0
- package/dist-types/commands/DeleteLabelsCommand.d.ts +2 -0
- package/dist-types/commands/DeleteNotificationSubscriptionCommand.d.ts +2 -0
- package/dist-types/commands/DeleteUserCommand.d.ts +2 -0
- package/dist-types/commands/DescribeActivitiesCommand.d.ts +2 -0
- package/dist-types/commands/DescribeCommentsCommand.d.ts +2 -0
- package/dist-types/commands/DescribeDocumentVersionsCommand.d.ts +2 -0
- package/dist-types/commands/DescribeFolderContentsCommand.d.ts +2 -0
- package/dist-types/commands/DescribeGroupsCommand.d.ts +2 -0
- package/dist-types/commands/DescribeNotificationSubscriptionsCommand.d.ts +2 -0
- package/dist-types/commands/DescribeResourcePermissionsCommand.d.ts +2 -0
- package/dist-types/commands/DescribeRootFoldersCommand.d.ts +2 -0
- package/dist-types/commands/DescribeUsersCommand.d.ts +2 -0
- package/dist-types/commands/GetCurrentUserCommand.d.ts +2 -0
- package/dist-types/commands/GetDocumentCommand.d.ts +2 -0
- package/dist-types/commands/GetDocumentPathCommand.d.ts +2 -0
- package/dist-types/commands/GetDocumentVersionCommand.d.ts +2 -0
- package/dist-types/commands/GetFolderCommand.d.ts +2 -0
- package/dist-types/commands/GetFolderPathCommand.d.ts +2 -0
- package/dist-types/commands/GetResourcesCommand.d.ts +2 -0
- package/dist-types/commands/InitiateDocumentVersionUploadCommand.d.ts +2 -0
- package/dist-types/commands/RemoveAllResourcePermissionsCommand.d.ts +2 -0
- package/dist-types/commands/RemoveResourcePermissionCommand.d.ts +2 -0
- package/dist-types/commands/RestoreDocumentVersionsCommand.d.ts +2 -0
- package/dist-types/commands/SearchResourcesCommand.d.ts +2 -0
- package/dist-types/commands/UpdateDocumentCommand.d.ts +2 -0
- package/dist-types/commands/UpdateDocumentVersionCommand.d.ts +2 -0
- package/dist-types/commands/UpdateFolderCommand.d.ts +2 -0
- package/dist-types/commands/UpdateUserCommand.d.ts +2 -0
- package/package.json +19 -19
|
@@ -36,6 +36,8 @@ declare const AbortDocumentVersionUploadCommand_base: {
|
|
|
36
36
|
* ```javascript
|
|
37
37
|
* import { WorkDocsClient, AbortDocumentVersionUploadCommand } from "@aws-sdk/client-workdocs"; // ES Modules import
|
|
38
38
|
* // const { WorkDocsClient, AbortDocumentVersionUploadCommand } = require("@aws-sdk/client-workdocs"); // CommonJS import
|
|
39
|
+
* // import type { WorkDocsClientConfig } from "@aws-sdk/client-workdocs";
|
|
40
|
+
* const config = {}; // type is WorkDocsClientConfig
|
|
39
41
|
* const client = new WorkDocsClient(config);
|
|
40
42
|
* const input = { // AbortDocumentVersionUploadRequest
|
|
41
43
|
* AuthenticationToken: "STRING_VALUE",
|
|
@@ -34,6 +34,8 @@ declare const ActivateUserCommand_base: {
|
|
|
34
34
|
* ```javascript
|
|
35
35
|
* import { WorkDocsClient, ActivateUserCommand } from "@aws-sdk/client-workdocs"; // ES Modules import
|
|
36
36
|
* // const { WorkDocsClient, ActivateUserCommand } = require("@aws-sdk/client-workdocs"); // CommonJS import
|
|
37
|
+
* // import type { WorkDocsClientConfig } from "@aws-sdk/client-workdocs";
|
|
38
|
+
* const config = {}; // type is WorkDocsClientConfig
|
|
37
39
|
* const client = new WorkDocsClient(config);
|
|
38
40
|
* const input = { // ActivateUserRequest
|
|
39
41
|
* UserId: "STRING_VALUE", // required
|
|
@@ -35,6 +35,8 @@ declare const AddResourcePermissionsCommand_base: {
|
|
|
35
35
|
* ```javascript
|
|
36
36
|
* import { WorkDocsClient, AddResourcePermissionsCommand } from "@aws-sdk/client-workdocs"; // ES Modules import
|
|
37
37
|
* // const { WorkDocsClient, AddResourcePermissionsCommand } = require("@aws-sdk/client-workdocs"); // CommonJS import
|
|
38
|
+
* // import type { WorkDocsClientConfig } from "@aws-sdk/client-workdocs";
|
|
39
|
+
* const config = {}; // type is WorkDocsClientConfig
|
|
38
40
|
* const client = new WorkDocsClient(config);
|
|
39
41
|
* const input = { // AddResourcePermissionsRequest
|
|
40
42
|
* AuthenticationToken: "STRING_VALUE",
|
|
@@ -33,6 +33,8 @@ declare const CreateCommentCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { WorkDocsClient, CreateCommentCommand } from "@aws-sdk/client-workdocs"; // ES Modules import
|
|
35
35
|
* // const { WorkDocsClient, CreateCommentCommand } = require("@aws-sdk/client-workdocs"); // CommonJS import
|
|
36
|
+
* // import type { WorkDocsClientConfig } from "@aws-sdk/client-workdocs";
|
|
37
|
+
* const config = {}; // type is WorkDocsClientConfig
|
|
36
38
|
* const client = new WorkDocsClient(config);
|
|
37
39
|
* const input = { // CreateCommentRequest
|
|
38
40
|
* AuthenticationToken: "STRING_VALUE",
|
|
@@ -34,6 +34,8 @@ declare const CreateCustomMetadataCommand_base: {
|
|
|
34
34
|
* ```javascript
|
|
35
35
|
* import { WorkDocsClient, CreateCustomMetadataCommand } from "@aws-sdk/client-workdocs"; // ES Modules import
|
|
36
36
|
* // const { WorkDocsClient, CreateCustomMetadataCommand } = require("@aws-sdk/client-workdocs"); // CommonJS import
|
|
37
|
+
* // import type { WorkDocsClientConfig } from "@aws-sdk/client-workdocs";
|
|
38
|
+
* const config = {}; // type is WorkDocsClientConfig
|
|
37
39
|
* const client = new WorkDocsClient(config);
|
|
38
40
|
* const input = { // CreateCustomMetadataRequest
|
|
39
41
|
* AuthenticationToken: "STRING_VALUE",
|
|
@@ -33,6 +33,8 @@ declare const CreateFolderCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { WorkDocsClient, CreateFolderCommand } from "@aws-sdk/client-workdocs"; // ES Modules import
|
|
35
35
|
* // const { WorkDocsClient, CreateFolderCommand } = require("@aws-sdk/client-workdocs"); // CommonJS import
|
|
36
|
+
* // import type { WorkDocsClientConfig } from "@aws-sdk/client-workdocs";
|
|
37
|
+
* const config = {}; // type is WorkDocsClientConfig
|
|
36
38
|
* const client = new WorkDocsClient(config);
|
|
37
39
|
* const input = { // CreateFolderRequest
|
|
38
40
|
* AuthenticationToken: "STRING_VALUE",
|
|
@@ -34,6 +34,8 @@ declare const CreateLabelsCommand_base: {
|
|
|
34
34
|
* ```javascript
|
|
35
35
|
* import { WorkDocsClient, CreateLabelsCommand } from "@aws-sdk/client-workdocs"; // ES Modules import
|
|
36
36
|
* // const { WorkDocsClient, CreateLabelsCommand } = require("@aws-sdk/client-workdocs"); // CommonJS import
|
|
37
|
+
* // import type { WorkDocsClientConfig } from "@aws-sdk/client-workdocs";
|
|
38
|
+
* const config = {}; // type is WorkDocsClientConfig
|
|
37
39
|
* const client = new WorkDocsClient(config);
|
|
38
40
|
* const input = { // CreateLabelsRequest
|
|
39
41
|
* ResourceId: "STRING_VALUE", // required
|
|
@@ -36,6 +36,8 @@ declare const CreateNotificationSubscriptionCommand_base: {
|
|
|
36
36
|
* ```javascript
|
|
37
37
|
* import { WorkDocsClient, CreateNotificationSubscriptionCommand } from "@aws-sdk/client-workdocs"; // ES Modules import
|
|
38
38
|
* // const { WorkDocsClient, CreateNotificationSubscriptionCommand } = require("@aws-sdk/client-workdocs"); // CommonJS import
|
|
39
|
+
* // import type { WorkDocsClientConfig } from "@aws-sdk/client-workdocs";
|
|
40
|
+
* const config = {}; // type is WorkDocsClientConfig
|
|
39
41
|
* const client = new WorkDocsClient(config);
|
|
40
42
|
* const input = { // CreateNotificationSubscriptionRequest
|
|
41
43
|
* OrganizationId: "STRING_VALUE", // required
|
|
@@ -34,6 +34,8 @@ declare const CreateUserCommand_base: {
|
|
|
34
34
|
* ```javascript
|
|
35
35
|
* import { WorkDocsClient, CreateUserCommand } from "@aws-sdk/client-workdocs"; // ES Modules import
|
|
36
36
|
* // const { WorkDocsClient, CreateUserCommand } = require("@aws-sdk/client-workdocs"); // CommonJS import
|
|
37
|
+
* // import type { WorkDocsClientConfig } from "@aws-sdk/client-workdocs";
|
|
38
|
+
* const config = {}; // type is WorkDocsClientConfig
|
|
37
39
|
* const client = new WorkDocsClient(config);
|
|
38
40
|
* const input = { // CreateUserRequest
|
|
39
41
|
* OrganizationId: "STRING_VALUE",
|
|
@@ -34,6 +34,8 @@ declare const DeactivateUserCommand_base: {
|
|
|
34
34
|
* ```javascript
|
|
35
35
|
* import { WorkDocsClient, DeactivateUserCommand } from "@aws-sdk/client-workdocs"; // ES Modules import
|
|
36
36
|
* // const { WorkDocsClient, DeactivateUserCommand } = require("@aws-sdk/client-workdocs"); // CommonJS import
|
|
37
|
+
* // import type { WorkDocsClientConfig } from "@aws-sdk/client-workdocs";
|
|
38
|
+
* const config = {}; // type is WorkDocsClientConfig
|
|
37
39
|
* const client = new WorkDocsClient(config);
|
|
38
40
|
* const input = { // DeactivateUserRequest
|
|
39
41
|
* UserId: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const DeleteCommentCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { WorkDocsClient, DeleteCommentCommand } from "@aws-sdk/client-workdocs"; // ES Modules import
|
|
35
35
|
* // const { WorkDocsClient, DeleteCommentCommand } = require("@aws-sdk/client-workdocs"); // CommonJS import
|
|
36
|
+
* // import type { WorkDocsClientConfig } from "@aws-sdk/client-workdocs";
|
|
37
|
+
* const config = {}; // type is WorkDocsClientConfig
|
|
36
38
|
* const client = new WorkDocsClient(config);
|
|
37
39
|
* const input = { // DeleteCommentRequest
|
|
38
40
|
* AuthenticationToken: "STRING_VALUE",
|
|
@@ -33,6 +33,8 @@ declare const DeleteCustomMetadataCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { WorkDocsClient, DeleteCustomMetadataCommand } from "@aws-sdk/client-workdocs"; // ES Modules import
|
|
35
35
|
* // const { WorkDocsClient, DeleteCustomMetadataCommand } = require("@aws-sdk/client-workdocs"); // CommonJS import
|
|
36
|
+
* // import type { WorkDocsClientConfig } from "@aws-sdk/client-workdocs";
|
|
37
|
+
* const config = {}; // type is WorkDocsClientConfig
|
|
36
38
|
* const client = new WorkDocsClient(config);
|
|
37
39
|
* const input = { // DeleteCustomMetadataRequest
|
|
38
40
|
* AuthenticationToken: "STRING_VALUE",
|
|
@@ -33,6 +33,8 @@ declare const DeleteDocumentCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { WorkDocsClient, DeleteDocumentCommand } from "@aws-sdk/client-workdocs"; // ES Modules import
|
|
35
35
|
* // const { WorkDocsClient, DeleteDocumentCommand } = require("@aws-sdk/client-workdocs"); // CommonJS import
|
|
36
|
+
* // import type { WorkDocsClientConfig } from "@aws-sdk/client-workdocs";
|
|
37
|
+
* const config = {}; // type is WorkDocsClientConfig
|
|
36
38
|
* const client = new WorkDocsClient(config);
|
|
37
39
|
* const input = { // DeleteDocumentRequest
|
|
38
40
|
* AuthenticationToken: "STRING_VALUE",
|
|
@@ -33,6 +33,8 @@ declare const DeleteDocumentVersionCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { WorkDocsClient, DeleteDocumentVersionCommand } from "@aws-sdk/client-workdocs"; // ES Modules import
|
|
35
35
|
* // const { WorkDocsClient, DeleteDocumentVersionCommand } = require("@aws-sdk/client-workdocs"); // CommonJS import
|
|
36
|
+
* // import type { WorkDocsClientConfig } from "@aws-sdk/client-workdocs";
|
|
37
|
+
* const config = {}; // type is WorkDocsClientConfig
|
|
36
38
|
* const client = new WorkDocsClient(config);
|
|
37
39
|
* const input = { // DeleteDocumentVersionRequest
|
|
38
40
|
* AuthenticationToken: "STRING_VALUE",
|
|
@@ -33,6 +33,8 @@ declare const DeleteFolderCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { WorkDocsClient, DeleteFolderCommand } from "@aws-sdk/client-workdocs"; // ES Modules import
|
|
35
35
|
* // const { WorkDocsClient, DeleteFolderCommand } = require("@aws-sdk/client-workdocs"); // CommonJS import
|
|
36
|
+
* // import type { WorkDocsClientConfig } from "@aws-sdk/client-workdocs";
|
|
37
|
+
* const config = {}; // type is WorkDocsClientConfig
|
|
36
38
|
* const client = new WorkDocsClient(config);
|
|
37
39
|
* const input = { // DeleteFolderRequest
|
|
38
40
|
* AuthenticationToken: "STRING_VALUE",
|
|
@@ -33,6 +33,8 @@ declare const DeleteFolderContentsCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { WorkDocsClient, DeleteFolderContentsCommand } from "@aws-sdk/client-workdocs"; // ES Modules import
|
|
35
35
|
* // const { WorkDocsClient, DeleteFolderContentsCommand } = require("@aws-sdk/client-workdocs"); // CommonJS import
|
|
36
|
+
* // import type { WorkDocsClientConfig } from "@aws-sdk/client-workdocs";
|
|
37
|
+
* const config = {}; // type is WorkDocsClientConfig
|
|
36
38
|
* const client = new WorkDocsClient(config);
|
|
37
39
|
* const input = { // DeleteFolderContentsRequest
|
|
38
40
|
* AuthenticationToken: "STRING_VALUE",
|
|
@@ -33,6 +33,8 @@ declare const DeleteLabelsCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { WorkDocsClient, DeleteLabelsCommand } from "@aws-sdk/client-workdocs"; // ES Modules import
|
|
35
35
|
* // const { WorkDocsClient, DeleteLabelsCommand } = require("@aws-sdk/client-workdocs"); // CommonJS import
|
|
36
|
+
* // import type { WorkDocsClientConfig } from "@aws-sdk/client-workdocs";
|
|
37
|
+
* const config = {}; // type is WorkDocsClientConfig
|
|
36
38
|
* const client = new WorkDocsClient(config);
|
|
37
39
|
* const input = { // DeleteLabelsRequest
|
|
38
40
|
* ResourceId: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const DeleteNotificationSubscriptionCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { WorkDocsClient, DeleteNotificationSubscriptionCommand } from "@aws-sdk/client-workdocs"; // ES Modules import
|
|
35
35
|
* // const { WorkDocsClient, DeleteNotificationSubscriptionCommand } = require("@aws-sdk/client-workdocs"); // CommonJS import
|
|
36
|
+
* // import type { WorkDocsClientConfig } from "@aws-sdk/client-workdocs";
|
|
37
|
+
* const config = {}; // type is WorkDocsClientConfig
|
|
36
38
|
* const client = new WorkDocsClient(config);
|
|
37
39
|
* const input = { // DeleteNotificationSubscriptionRequest
|
|
38
40
|
* SubscriptionId: "STRING_VALUE", // required
|
|
@@ -36,6 +36,8 @@ declare const DeleteUserCommand_base: {
|
|
|
36
36
|
* ```javascript
|
|
37
37
|
* import { WorkDocsClient, DeleteUserCommand } from "@aws-sdk/client-workdocs"; // ES Modules import
|
|
38
38
|
* // const { WorkDocsClient, DeleteUserCommand } = require("@aws-sdk/client-workdocs"); // CommonJS import
|
|
39
|
+
* // import type { WorkDocsClientConfig } from "@aws-sdk/client-workdocs";
|
|
40
|
+
* const config = {}; // type is WorkDocsClientConfig
|
|
39
41
|
* const client = new WorkDocsClient(config);
|
|
40
42
|
* const input = { // DeleteUserRequest
|
|
41
43
|
* AuthenticationToken: "STRING_VALUE",
|
|
@@ -33,6 +33,8 @@ declare const DescribeActivitiesCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { WorkDocsClient, DescribeActivitiesCommand } from "@aws-sdk/client-workdocs"; // ES Modules import
|
|
35
35
|
* // const { WorkDocsClient, DescribeActivitiesCommand } = require("@aws-sdk/client-workdocs"); // CommonJS import
|
|
36
|
+
* // import type { WorkDocsClientConfig } from "@aws-sdk/client-workdocs";
|
|
37
|
+
* const config = {}; // type is WorkDocsClientConfig
|
|
36
38
|
* const client = new WorkDocsClient(config);
|
|
37
39
|
* const input = { // DescribeActivitiesRequest
|
|
38
40
|
* AuthenticationToken: "STRING_VALUE",
|
|
@@ -33,6 +33,8 @@ declare const DescribeCommentsCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { WorkDocsClient, DescribeCommentsCommand } from "@aws-sdk/client-workdocs"; // ES Modules import
|
|
35
35
|
* // const { WorkDocsClient, DescribeCommentsCommand } = require("@aws-sdk/client-workdocs"); // CommonJS import
|
|
36
|
+
* // import type { WorkDocsClientConfig } from "@aws-sdk/client-workdocs";
|
|
37
|
+
* const config = {}; // type is WorkDocsClientConfig
|
|
36
38
|
* const client = new WorkDocsClient(config);
|
|
37
39
|
* const input = { // DescribeCommentsRequest
|
|
38
40
|
* AuthenticationToken: "STRING_VALUE",
|
|
@@ -34,6 +34,8 @@ declare const DescribeDocumentVersionsCommand_base: {
|
|
|
34
34
|
* ```javascript
|
|
35
35
|
* import { WorkDocsClient, DescribeDocumentVersionsCommand } from "@aws-sdk/client-workdocs"; // ES Modules import
|
|
36
36
|
* // const { WorkDocsClient, DescribeDocumentVersionsCommand } = require("@aws-sdk/client-workdocs"); // CommonJS import
|
|
37
|
+
* // import type { WorkDocsClientConfig } from "@aws-sdk/client-workdocs";
|
|
38
|
+
* const config = {}; // type is WorkDocsClientConfig
|
|
37
39
|
* const client = new WorkDocsClient(config);
|
|
38
40
|
* const input = { // DescribeDocumentVersionsRequest
|
|
39
41
|
* AuthenticationToken: "STRING_VALUE",
|
|
@@ -38,6 +38,8 @@ declare const DescribeFolderContentsCommand_base: {
|
|
|
38
38
|
* ```javascript
|
|
39
39
|
* import { WorkDocsClient, DescribeFolderContentsCommand } from "@aws-sdk/client-workdocs"; // ES Modules import
|
|
40
40
|
* // const { WorkDocsClient, DescribeFolderContentsCommand } = require("@aws-sdk/client-workdocs"); // CommonJS import
|
|
41
|
+
* // import type { WorkDocsClientConfig } from "@aws-sdk/client-workdocs";
|
|
42
|
+
* const config = {}; // type is WorkDocsClientConfig
|
|
41
43
|
* const client = new WorkDocsClient(config);
|
|
42
44
|
* const input = { // DescribeFolderContentsRequest
|
|
43
45
|
* AuthenticationToken: "STRING_VALUE",
|
|
@@ -34,6 +34,8 @@ declare const DescribeGroupsCommand_base: {
|
|
|
34
34
|
* ```javascript
|
|
35
35
|
* import { WorkDocsClient, DescribeGroupsCommand } from "@aws-sdk/client-workdocs"; // ES Modules import
|
|
36
36
|
* // const { WorkDocsClient, DescribeGroupsCommand } = require("@aws-sdk/client-workdocs"); // CommonJS import
|
|
37
|
+
* // import type { WorkDocsClientConfig } from "@aws-sdk/client-workdocs";
|
|
38
|
+
* const config = {}; // type is WorkDocsClientConfig
|
|
37
39
|
* const client = new WorkDocsClient(config);
|
|
38
40
|
* const input = { // DescribeGroupsRequest
|
|
39
41
|
* AuthenticationToken: "STRING_VALUE",
|
|
@@ -33,6 +33,8 @@ declare const DescribeNotificationSubscriptionsCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { WorkDocsClient, DescribeNotificationSubscriptionsCommand } from "@aws-sdk/client-workdocs"; // ES Modules import
|
|
35
35
|
* // const { WorkDocsClient, DescribeNotificationSubscriptionsCommand } = require("@aws-sdk/client-workdocs"); // CommonJS import
|
|
36
|
+
* // import type { WorkDocsClientConfig } from "@aws-sdk/client-workdocs";
|
|
37
|
+
* const config = {}; // type is WorkDocsClientConfig
|
|
36
38
|
* const client = new WorkDocsClient(config);
|
|
37
39
|
* const input = { // DescribeNotificationSubscriptionsRequest
|
|
38
40
|
* OrganizationId: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const DescribeResourcePermissionsCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { WorkDocsClient, DescribeResourcePermissionsCommand } from "@aws-sdk/client-workdocs"; // ES Modules import
|
|
35
35
|
* // const { WorkDocsClient, DescribeResourcePermissionsCommand } = require("@aws-sdk/client-workdocs"); // CommonJS import
|
|
36
|
+
* // import type { WorkDocsClientConfig } from "@aws-sdk/client-workdocs";
|
|
37
|
+
* const config = {}; // type is WorkDocsClientConfig
|
|
36
38
|
* const client = new WorkDocsClient(config);
|
|
37
39
|
* const input = { // DescribeResourcePermissionsRequest
|
|
38
40
|
* AuthenticationToken: "STRING_VALUE",
|
|
@@ -41,6 +41,8 @@ declare const DescribeRootFoldersCommand_base: {
|
|
|
41
41
|
* ```javascript
|
|
42
42
|
* import { WorkDocsClient, DescribeRootFoldersCommand } from "@aws-sdk/client-workdocs"; // ES Modules import
|
|
43
43
|
* // const { WorkDocsClient, DescribeRootFoldersCommand } = require("@aws-sdk/client-workdocs"); // CommonJS import
|
|
44
|
+
* // import type { WorkDocsClientConfig } from "@aws-sdk/client-workdocs";
|
|
45
|
+
* const config = {}; // type is WorkDocsClientConfig
|
|
44
46
|
* const client = new WorkDocsClient(config);
|
|
45
47
|
* const input = { // DescribeRootFoldersRequest
|
|
46
48
|
* AuthenticationToken: "STRING_VALUE", // required
|
|
@@ -37,6 +37,8 @@ declare const DescribeUsersCommand_base: {
|
|
|
37
37
|
* ```javascript
|
|
38
38
|
* import { WorkDocsClient, DescribeUsersCommand } from "@aws-sdk/client-workdocs"; // ES Modules import
|
|
39
39
|
* // const { WorkDocsClient, DescribeUsersCommand } = require("@aws-sdk/client-workdocs"); // CommonJS import
|
|
40
|
+
* // import type { WorkDocsClientConfig } from "@aws-sdk/client-workdocs";
|
|
41
|
+
* const config = {}; // type is WorkDocsClientConfig
|
|
40
42
|
* const client = new WorkDocsClient(config);
|
|
41
43
|
* const input = { // DescribeUsersRequest
|
|
42
44
|
* AuthenticationToken: "STRING_VALUE",
|
|
@@ -39,6 +39,8 @@ declare const GetCurrentUserCommand_base: {
|
|
|
39
39
|
* ```javascript
|
|
40
40
|
* import { WorkDocsClient, GetCurrentUserCommand } from "@aws-sdk/client-workdocs"; // ES Modules import
|
|
41
41
|
* // const { WorkDocsClient, GetCurrentUserCommand } = require("@aws-sdk/client-workdocs"); // CommonJS import
|
|
42
|
+
* // import type { WorkDocsClientConfig } from "@aws-sdk/client-workdocs";
|
|
43
|
+
* const config = {}; // type is WorkDocsClientConfig
|
|
42
44
|
* const client = new WorkDocsClient(config);
|
|
43
45
|
* const input = { // GetCurrentUserRequest
|
|
44
46
|
* AuthenticationToken: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const GetDocumentCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { WorkDocsClient, GetDocumentCommand } from "@aws-sdk/client-workdocs"; // ES Modules import
|
|
35
35
|
* // const { WorkDocsClient, GetDocumentCommand } = require("@aws-sdk/client-workdocs"); // CommonJS import
|
|
36
|
+
* // import type { WorkDocsClientConfig } from "@aws-sdk/client-workdocs";
|
|
37
|
+
* const config = {}; // type is WorkDocsClientConfig
|
|
36
38
|
* const client = new WorkDocsClient(config);
|
|
37
39
|
* const input = { // GetDocumentRequest
|
|
38
40
|
* AuthenticationToken: "STRING_VALUE",
|
|
@@ -38,6 +38,8 @@ declare const GetDocumentPathCommand_base: {
|
|
|
38
38
|
* ```javascript
|
|
39
39
|
* import { WorkDocsClient, GetDocumentPathCommand } from "@aws-sdk/client-workdocs"; // ES Modules import
|
|
40
40
|
* // const { WorkDocsClient, GetDocumentPathCommand } = require("@aws-sdk/client-workdocs"); // CommonJS import
|
|
41
|
+
* // import type { WorkDocsClientConfig } from "@aws-sdk/client-workdocs";
|
|
42
|
+
* const config = {}; // type is WorkDocsClientConfig
|
|
41
43
|
* const client = new WorkDocsClient(config);
|
|
42
44
|
* const input = { // GetDocumentPathRequest
|
|
43
45
|
* AuthenticationToken: "STRING_VALUE",
|
|
@@ -33,6 +33,8 @@ declare const GetDocumentVersionCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { WorkDocsClient, GetDocumentVersionCommand } from "@aws-sdk/client-workdocs"; // ES Modules import
|
|
35
35
|
* // const { WorkDocsClient, GetDocumentVersionCommand } = require("@aws-sdk/client-workdocs"); // CommonJS import
|
|
36
|
+
* // import type { WorkDocsClientConfig } from "@aws-sdk/client-workdocs";
|
|
37
|
+
* const config = {}; // type is WorkDocsClientConfig
|
|
36
38
|
* const client = new WorkDocsClient(config);
|
|
37
39
|
* const input = { // GetDocumentVersionRequest
|
|
38
40
|
* AuthenticationToken: "STRING_VALUE",
|
|
@@ -33,6 +33,8 @@ declare const GetFolderCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { WorkDocsClient, GetFolderCommand } from "@aws-sdk/client-workdocs"; // ES Modules import
|
|
35
35
|
* // const { WorkDocsClient, GetFolderCommand } = require("@aws-sdk/client-workdocs"); // CommonJS import
|
|
36
|
+
* // import type { WorkDocsClientConfig } from "@aws-sdk/client-workdocs";
|
|
37
|
+
* const config = {}; // type is WorkDocsClientConfig
|
|
36
38
|
* const client = new WorkDocsClient(config);
|
|
37
39
|
* const input = { // GetFolderRequest
|
|
38
40
|
* AuthenticationToken: "STRING_VALUE",
|
|
@@ -38,6 +38,8 @@ declare const GetFolderPathCommand_base: {
|
|
|
38
38
|
* ```javascript
|
|
39
39
|
* import { WorkDocsClient, GetFolderPathCommand } from "@aws-sdk/client-workdocs"; // ES Modules import
|
|
40
40
|
* // const { WorkDocsClient, GetFolderPathCommand } = require("@aws-sdk/client-workdocs"); // CommonJS import
|
|
41
|
+
* // import type { WorkDocsClientConfig } from "@aws-sdk/client-workdocs";
|
|
42
|
+
* const config = {}; // type is WorkDocsClientConfig
|
|
41
43
|
* const client = new WorkDocsClient(config);
|
|
42
44
|
* const input = { // GetFolderPathRequest
|
|
43
45
|
* AuthenticationToken: "STRING_VALUE",
|
|
@@ -34,6 +34,8 @@ declare const GetResourcesCommand_base: {
|
|
|
34
34
|
* ```javascript
|
|
35
35
|
* import { WorkDocsClient, GetResourcesCommand } from "@aws-sdk/client-workdocs"; // ES Modules import
|
|
36
36
|
* // const { WorkDocsClient, GetResourcesCommand } = require("@aws-sdk/client-workdocs"); // CommonJS import
|
|
37
|
+
* // import type { WorkDocsClientConfig } from "@aws-sdk/client-workdocs";
|
|
38
|
+
* const config = {}; // type is WorkDocsClientConfig
|
|
37
39
|
* const client = new WorkDocsClient(config);
|
|
38
40
|
* const input = { // GetResourcesRequest
|
|
39
41
|
* AuthenticationToken: "STRING_VALUE",
|
|
@@ -38,6 +38,8 @@ declare const InitiateDocumentVersionUploadCommand_base: {
|
|
|
38
38
|
* ```javascript
|
|
39
39
|
* import { WorkDocsClient, InitiateDocumentVersionUploadCommand } from "@aws-sdk/client-workdocs"; // ES Modules import
|
|
40
40
|
* // const { WorkDocsClient, InitiateDocumentVersionUploadCommand } = require("@aws-sdk/client-workdocs"); // CommonJS import
|
|
41
|
+
* // import type { WorkDocsClientConfig } from "@aws-sdk/client-workdocs";
|
|
42
|
+
* const config = {}; // type is WorkDocsClientConfig
|
|
41
43
|
* const client = new WorkDocsClient(config);
|
|
42
44
|
* const input = { // InitiateDocumentVersionUploadRequest
|
|
43
45
|
* AuthenticationToken: "STRING_VALUE",
|
|
@@ -33,6 +33,8 @@ declare const RemoveAllResourcePermissionsCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { WorkDocsClient, RemoveAllResourcePermissionsCommand } from "@aws-sdk/client-workdocs"; // ES Modules import
|
|
35
35
|
* // const { WorkDocsClient, RemoveAllResourcePermissionsCommand } = require("@aws-sdk/client-workdocs"); // CommonJS import
|
|
36
|
+
* // import type { WorkDocsClientConfig } from "@aws-sdk/client-workdocs";
|
|
37
|
+
* const config = {}; // type is WorkDocsClientConfig
|
|
36
38
|
* const client = new WorkDocsClient(config);
|
|
37
39
|
* const input = { // RemoveAllResourcePermissionsRequest
|
|
38
40
|
* AuthenticationToken: "STRING_VALUE",
|
|
@@ -34,6 +34,8 @@ declare const RemoveResourcePermissionCommand_base: {
|
|
|
34
34
|
* ```javascript
|
|
35
35
|
* import { WorkDocsClient, RemoveResourcePermissionCommand } from "@aws-sdk/client-workdocs"; // ES Modules import
|
|
36
36
|
* // const { WorkDocsClient, RemoveResourcePermissionCommand } = require("@aws-sdk/client-workdocs"); // CommonJS import
|
|
37
|
+
* // import type { WorkDocsClientConfig } from "@aws-sdk/client-workdocs";
|
|
38
|
+
* const config = {}; // type is WorkDocsClientConfig
|
|
37
39
|
* const client = new WorkDocsClient(config);
|
|
38
40
|
* const input = { // RemoveResourcePermissionRequest
|
|
39
41
|
* AuthenticationToken: "STRING_VALUE",
|
|
@@ -33,6 +33,8 @@ declare const RestoreDocumentVersionsCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { WorkDocsClient, RestoreDocumentVersionsCommand } from "@aws-sdk/client-workdocs"; // ES Modules import
|
|
35
35
|
* // const { WorkDocsClient, RestoreDocumentVersionsCommand } = require("@aws-sdk/client-workdocs"); // CommonJS import
|
|
36
|
+
* // import type { WorkDocsClientConfig } from "@aws-sdk/client-workdocs";
|
|
37
|
+
* const config = {}; // type is WorkDocsClientConfig
|
|
36
38
|
* const client = new WorkDocsClient(config);
|
|
37
39
|
* const input = { // RestoreDocumentVersionsRequest
|
|
38
40
|
* AuthenticationToken: "STRING_VALUE",
|
|
@@ -33,6 +33,8 @@ declare const SearchResourcesCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { WorkDocsClient, SearchResourcesCommand } from "@aws-sdk/client-workdocs"; // ES Modules import
|
|
35
35
|
* // const { WorkDocsClient, SearchResourcesCommand } = require("@aws-sdk/client-workdocs"); // CommonJS import
|
|
36
|
+
* // import type { WorkDocsClientConfig } from "@aws-sdk/client-workdocs";
|
|
37
|
+
* const config = {}; // type is WorkDocsClientConfig
|
|
36
38
|
* const client = new WorkDocsClient(config);
|
|
37
39
|
* const input = { // SearchResourcesRequest
|
|
38
40
|
* AuthenticationToken: "STRING_VALUE",
|
|
@@ -34,6 +34,8 @@ declare const UpdateDocumentCommand_base: {
|
|
|
34
34
|
* ```javascript
|
|
35
35
|
* import { WorkDocsClient, UpdateDocumentCommand } from "@aws-sdk/client-workdocs"; // ES Modules import
|
|
36
36
|
* // const { WorkDocsClient, UpdateDocumentCommand } = require("@aws-sdk/client-workdocs"); // CommonJS import
|
|
37
|
+
* // import type { WorkDocsClientConfig } from "@aws-sdk/client-workdocs";
|
|
38
|
+
* const config = {}; // type is WorkDocsClientConfig
|
|
37
39
|
* const client = new WorkDocsClient(config);
|
|
38
40
|
* const input = { // UpdateDocumentRequest
|
|
39
41
|
* AuthenticationToken: "STRING_VALUE",
|
|
@@ -36,6 +36,8 @@ declare const UpdateDocumentVersionCommand_base: {
|
|
|
36
36
|
* ```javascript
|
|
37
37
|
* import { WorkDocsClient, UpdateDocumentVersionCommand } from "@aws-sdk/client-workdocs"; // ES Modules import
|
|
38
38
|
* // const { WorkDocsClient, UpdateDocumentVersionCommand } = require("@aws-sdk/client-workdocs"); // CommonJS import
|
|
39
|
+
* // import type { WorkDocsClientConfig } from "@aws-sdk/client-workdocs";
|
|
40
|
+
* const config = {}; // type is WorkDocsClientConfig
|
|
39
41
|
* const client = new WorkDocsClient(config);
|
|
40
42
|
* const input = { // UpdateDocumentVersionRequest
|
|
41
43
|
* AuthenticationToken: "STRING_VALUE",
|
|
@@ -34,6 +34,8 @@ declare const UpdateFolderCommand_base: {
|
|
|
34
34
|
* ```javascript
|
|
35
35
|
* import { WorkDocsClient, UpdateFolderCommand } from "@aws-sdk/client-workdocs"; // ES Modules import
|
|
36
36
|
* // const { WorkDocsClient, UpdateFolderCommand } = require("@aws-sdk/client-workdocs"); // CommonJS import
|
|
37
|
+
* // import type { WorkDocsClientConfig } from "@aws-sdk/client-workdocs";
|
|
38
|
+
* const config = {}; // type is WorkDocsClientConfig
|
|
37
39
|
* const client = new WorkDocsClient(config);
|
|
38
40
|
* const input = { // UpdateFolderRequest
|
|
39
41
|
* AuthenticationToken: "STRING_VALUE",
|
|
@@ -34,6 +34,8 @@ declare const UpdateUserCommand_base: {
|
|
|
34
34
|
* ```javascript
|
|
35
35
|
* import { WorkDocsClient, UpdateUserCommand } from "@aws-sdk/client-workdocs"; // ES Modules import
|
|
36
36
|
* // const { WorkDocsClient, UpdateUserCommand } = require("@aws-sdk/client-workdocs"); // CommonJS import
|
|
37
|
+
* // import type { WorkDocsClientConfig } from "@aws-sdk/client-workdocs";
|
|
38
|
+
* const config = {}; // type is WorkDocsClientConfig
|
|
37
39
|
* const client = new WorkDocsClient(config);
|
|
38
40
|
* const input = { // UpdateUserRequest
|
|
39
41
|
* AuthenticationToken: "STRING_VALUE",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-workdocs",
|
|
3
3
|
"description": "AWS SDK for JavaScript Workdocs Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.893.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-workdocs",
|
|
@@ -20,41 +20,41 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.893.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.893.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.893.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.893.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.893.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.893.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.893.0",
|
|
30
|
+
"@aws-sdk/types": "3.893.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.893.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.893.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.893.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.2.2",
|
|
35
|
-
"@smithy/core": "^3.11.
|
|
35
|
+
"@smithy/core": "^3.11.1",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.2.1",
|
|
37
37
|
"@smithy/hash-node": "^4.1.1",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.1.1",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.1.1",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.2.
|
|
41
|
-
"@smithy/middleware-retry": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.2.3",
|
|
41
|
+
"@smithy/middleware-retry": "^4.2.4",
|
|
42
42
|
"@smithy/middleware-serde": "^4.1.1",
|
|
43
43
|
"@smithy/middleware-stack": "^4.1.1",
|
|
44
44
|
"@smithy/node-config-provider": "^4.2.2",
|
|
45
45
|
"@smithy/node-http-handler": "^4.2.1",
|
|
46
46
|
"@smithy/protocol-http": "^5.2.1",
|
|
47
|
-
"@smithy/smithy-client": "^4.6.
|
|
47
|
+
"@smithy/smithy-client": "^4.6.3",
|
|
48
48
|
"@smithy/types": "^4.5.0",
|
|
49
49
|
"@smithy/url-parser": "^4.1.1",
|
|
50
50
|
"@smithy/util-base64": "^4.1.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.1.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.1.0",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.1.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.1.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.1.3",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.1.3",
|
|
55
55
|
"@smithy/util-endpoints": "^3.1.2",
|
|
56
56
|
"@smithy/util-middleware": "^4.1.1",
|
|
57
|
-
"@smithy/util-retry": "^4.1.
|
|
57
|
+
"@smithy/util-retry": "^4.1.2",
|
|
58
58
|
"@smithy/util-utf8": "^4.1.0",
|
|
59
59
|
"tslib": "^2.6.2"
|
|
60
60
|
},
|