@aws-sdk/client-workdocs 3.54.1 → 3.58.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.
Files changed (56) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/dist-cjs/WorkDocsClient.js +13 -13
  3. package/dist-cjs/commands/AbortDocumentVersionUploadCommand.js +3 -3
  4. package/dist-cjs/commands/ActivateUserCommand.js +3 -3
  5. package/dist-cjs/commands/AddResourcePermissionsCommand.js +3 -3
  6. package/dist-cjs/commands/CreateCommentCommand.js +3 -3
  7. package/dist-cjs/commands/CreateCustomMetadataCommand.js +3 -3
  8. package/dist-cjs/commands/CreateFolderCommand.js +3 -3
  9. package/dist-cjs/commands/CreateLabelsCommand.js +3 -3
  10. package/dist-cjs/commands/CreateNotificationSubscriptionCommand.js +3 -3
  11. package/dist-cjs/commands/CreateUserCommand.js +3 -3
  12. package/dist-cjs/commands/DeactivateUserCommand.js +3 -3
  13. package/dist-cjs/commands/DeleteCommentCommand.js +3 -3
  14. package/dist-cjs/commands/DeleteCustomMetadataCommand.js +3 -3
  15. package/dist-cjs/commands/DeleteDocumentCommand.js +3 -3
  16. package/dist-cjs/commands/DeleteFolderCommand.js +3 -3
  17. package/dist-cjs/commands/DeleteFolderContentsCommand.js +3 -3
  18. package/dist-cjs/commands/DeleteLabelsCommand.js +3 -3
  19. package/dist-cjs/commands/DeleteNotificationSubscriptionCommand.js +3 -3
  20. package/dist-cjs/commands/DeleteUserCommand.js +3 -3
  21. package/dist-cjs/commands/DescribeActivitiesCommand.js +3 -3
  22. package/dist-cjs/commands/DescribeCommentsCommand.js +3 -3
  23. package/dist-cjs/commands/DescribeDocumentVersionsCommand.js +3 -3
  24. package/dist-cjs/commands/DescribeFolderContentsCommand.js +3 -3
  25. package/dist-cjs/commands/DescribeGroupsCommand.js +3 -3
  26. package/dist-cjs/commands/DescribeNotificationSubscriptionsCommand.js +3 -3
  27. package/dist-cjs/commands/DescribeResourcePermissionsCommand.js +3 -3
  28. package/dist-cjs/commands/DescribeRootFoldersCommand.js +3 -3
  29. package/dist-cjs/commands/DescribeUsersCommand.js +3 -3
  30. package/dist-cjs/commands/GetCurrentUserCommand.js +3 -3
  31. package/dist-cjs/commands/GetDocumentCommand.js +3 -3
  32. package/dist-cjs/commands/GetDocumentPathCommand.js +3 -3
  33. package/dist-cjs/commands/GetDocumentVersionCommand.js +3 -3
  34. package/dist-cjs/commands/GetFolderCommand.js +3 -3
  35. package/dist-cjs/commands/GetFolderPathCommand.js +3 -3
  36. package/dist-cjs/commands/GetResourcesCommand.js +3 -3
  37. package/dist-cjs/commands/InitiateDocumentVersionUploadCommand.js +3 -3
  38. package/dist-cjs/commands/RemoveAllResourcePermissionsCommand.js +3 -3
  39. package/dist-cjs/commands/RemoveResourcePermissionCommand.js +3 -3
  40. package/dist-cjs/commands/UpdateDocumentCommand.js +3 -3
  41. package/dist-cjs/commands/UpdateDocumentVersionCommand.js +3 -3
  42. package/dist-cjs/commands/UpdateFolderCommand.js +3 -3
  43. package/dist-cjs/commands/UpdateUserCommand.js +3 -3
  44. package/dist-cjs/endpoints.js +1 -1
  45. package/dist-cjs/protocols/Aws_restJson1.js +264 -264
  46. package/dist-cjs/runtimeConfig.browser.js +4 -4
  47. package/dist-cjs/runtimeConfig.js +9 -9
  48. package/dist-cjs/runtimeConfig.native.js +1 -1
  49. package/dist-es/WorkDocs.js +41 -41
  50. package/dist-es/pagination/DescribeDocumentVersionsPaginator.js +4 -4
  51. package/dist-es/pagination/DescribeFolderContentsPaginator.js +4 -4
  52. package/dist-es/pagination/DescribeUsersPaginator.js +4 -4
  53. package/dist-es/protocols/Aws_restJson1.js +41 -41
  54. package/dist-types/runtimeConfig.native.d.ts +2 -2
  55. package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -2
  56. package/package.json +34 -34
@@ -11,7 +11,7 @@ class DescribeResourcePermissionsCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "WorkDocsClient";
@@ -27,10 +27,10 @@ class DescribeResourcePermissionsCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_restJson1_1.serializeAws_restJson1DescribeResourcePermissionsCommand(input, context);
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1DescribeResourcePermissionsCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_restJson1_1.deserializeAws_restJson1DescribeResourcePermissionsCommand(output, context);
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1DescribeResourcePermissionsCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.DescribeResourcePermissionsCommand = DescribeResourcePermissionsCommand;
@@ -11,7 +11,7 @@ class DescribeRootFoldersCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "WorkDocsClient";
@@ -27,10 +27,10 @@ class DescribeRootFoldersCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_restJson1_1.serializeAws_restJson1DescribeRootFoldersCommand(input, context);
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1DescribeRootFoldersCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_restJson1_1.deserializeAws_restJson1DescribeRootFoldersCommand(output, context);
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1DescribeRootFoldersCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.DescribeRootFoldersCommand = DescribeRootFoldersCommand;
@@ -11,7 +11,7 @@ class DescribeUsersCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "WorkDocsClient";
@@ -27,10 +27,10 @@ class DescribeUsersCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_restJson1_1.serializeAws_restJson1DescribeUsersCommand(input, context);
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1DescribeUsersCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_restJson1_1.deserializeAws_restJson1DescribeUsersCommand(output, context);
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1DescribeUsersCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.DescribeUsersCommand = DescribeUsersCommand;
@@ -11,7 +11,7 @@ class GetCurrentUserCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "WorkDocsClient";
@@ -27,10 +27,10 @@ class GetCurrentUserCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_restJson1_1.serializeAws_restJson1GetCurrentUserCommand(input, context);
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1GetCurrentUserCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_restJson1_1.deserializeAws_restJson1GetCurrentUserCommand(output, context);
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1GetCurrentUserCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.GetCurrentUserCommand = GetCurrentUserCommand;
@@ -11,7 +11,7 @@ class GetDocumentCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "WorkDocsClient";
@@ -27,10 +27,10 @@ class GetDocumentCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_restJson1_1.serializeAws_restJson1GetDocumentCommand(input, context);
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1GetDocumentCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_restJson1_1.deserializeAws_restJson1GetDocumentCommand(output, context);
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1GetDocumentCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.GetDocumentCommand = GetDocumentCommand;
@@ -11,7 +11,7 @@ class GetDocumentPathCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "WorkDocsClient";
@@ -27,10 +27,10 @@ class GetDocumentPathCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_restJson1_1.serializeAws_restJson1GetDocumentPathCommand(input, context);
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1GetDocumentPathCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_restJson1_1.deserializeAws_restJson1GetDocumentPathCommand(output, context);
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1GetDocumentPathCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.GetDocumentPathCommand = GetDocumentPathCommand;
@@ -11,7 +11,7 @@ class GetDocumentVersionCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "WorkDocsClient";
@@ -27,10 +27,10 @@ class GetDocumentVersionCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_restJson1_1.serializeAws_restJson1GetDocumentVersionCommand(input, context);
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1GetDocumentVersionCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_restJson1_1.deserializeAws_restJson1GetDocumentVersionCommand(output, context);
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1GetDocumentVersionCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.GetDocumentVersionCommand = GetDocumentVersionCommand;
@@ -11,7 +11,7 @@ class GetFolderCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "WorkDocsClient";
@@ -27,10 +27,10 @@ class GetFolderCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_restJson1_1.serializeAws_restJson1GetFolderCommand(input, context);
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1GetFolderCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_restJson1_1.deserializeAws_restJson1GetFolderCommand(output, context);
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1GetFolderCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.GetFolderCommand = GetFolderCommand;
@@ -11,7 +11,7 @@ class GetFolderPathCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "WorkDocsClient";
@@ -27,10 +27,10 @@ class GetFolderPathCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_restJson1_1.serializeAws_restJson1GetFolderPathCommand(input, context);
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1GetFolderPathCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_restJson1_1.deserializeAws_restJson1GetFolderPathCommand(output, context);
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1GetFolderPathCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.GetFolderPathCommand = GetFolderPathCommand;
@@ -11,7 +11,7 @@ class GetResourcesCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "WorkDocsClient";
@@ -27,10 +27,10 @@ class GetResourcesCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_restJson1_1.serializeAws_restJson1GetResourcesCommand(input, context);
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1GetResourcesCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_restJson1_1.deserializeAws_restJson1GetResourcesCommand(output, context);
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1GetResourcesCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.GetResourcesCommand = GetResourcesCommand;
@@ -11,7 +11,7 @@ class InitiateDocumentVersionUploadCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "WorkDocsClient";
@@ -27,10 +27,10 @@ class InitiateDocumentVersionUploadCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_restJson1_1.serializeAws_restJson1InitiateDocumentVersionUploadCommand(input, context);
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1InitiateDocumentVersionUploadCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_restJson1_1.deserializeAws_restJson1InitiateDocumentVersionUploadCommand(output, context);
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1InitiateDocumentVersionUploadCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.InitiateDocumentVersionUploadCommand = InitiateDocumentVersionUploadCommand;
@@ -11,7 +11,7 @@ class RemoveAllResourcePermissionsCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "WorkDocsClient";
@@ -27,10 +27,10 @@ class RemoveAllResourcePermissionsCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_restJson1_1.serializeAws_restJson1RemoveAllResourcePermissionsCommand(input, context);
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1RemoveAllResourcePermissionsCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_restJson1_1.deserializeAws_restJson1RemoveAllResourcePermissionsCommand(output, context);
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1RemoveAllResourcePermissionsCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.RemoveAllResourcePermissionsCommand = RemoveAllResourcePermissionsCommand;
@@ -11,7 +11,7 @@ class RemoveResourcePermissionCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "WorkDocsClient";
@@ -27,10 +27,10 @@ class RemoveResourcePermissionCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_restJson1_1.serializeAws_restJson1RemoveResourcePermissionCommand(input, context);
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1RemoveResourcePermissionCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_restJson1_1.deserializeAws_restJson1RemoveResourcePermissionCommand(output, context);
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1RemoveResourcePermissionCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.RemoveResourcePermissionCommand = RemoveResourcePermissionCommand;
@@ -11,7 +11,7 @@ class UpdateDocumentCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "WorkDocsClient";
@@ -27,10 +27,10 @@ class UpdateDocumentCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_restJson1_1.serializeAws_restJson1UpdateDocumentCommand(input, context);
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1UpdateDocumentCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_restJson1_1.deserializeAws_restJson1UpdateDocumentCommand(output, context);
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1UpdateDocumentCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.UpdateDocumentCommand = UpdateDocumentCommand;
@@ -11,7 +11,7 @@ class UpdateDocumentVersionCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "WorkDocsClient";
@@ -27,10 +27,10 @@ class UpdateDocumentVersionCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_restJson1_1.serializeAws_restJson1UpdateDocumentVersionCommand(input, context);
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1UpdateDocumentVersionCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_restJson1_1.deserializeAws_restJson1UpdateDocumentVersionCommand(output, context);
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1UpdateDocumentVersionCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.UpdateDocumentVersionCommand = UpdateDocumentVersionCommand;
@@ -11,7 +11,7 @@ class UpdateFolderCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "WorkDocsClient";
@@ -27,10 +27,10 @@ class UpdateFolderCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_restJson1_1.serializeAws_restJson1UpdateFolderCommand(input, context);
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1UpdateFolderCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_restJson1_1.deserializeAws_restJson1UpdateFolderCommand(output, context);
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1UpdateFolderCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.UpdateFolderCommand = UpdateFolderCommand;
@@ -11,7 +11,7 @@ class UpdateUserCommand extends smithy_client_1.Command {
11
11
  this.input = input;
12
12
  }
13
13
  resolveMiddleware(clientStack, configuration, options) {
14
- this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
14
+ this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
15
15
  const stack = clientStack.concat(this.middlewareStack);
16
16
  const { logger } = configuration;
17
17
  const clientName = "WorkDocsClient";
@@ -27,10 +27,10 @@ class UpdateUserCommand extends smithy_client_1.Command {
27
27
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
28
28
  }
29
29
  serialize(input, context) {
30
- return Aws_restJson1_1.serializeAws_restJson1UpdateUserCommand(input, context);
30
+ return (0, Aws_restJson1_1.serializeAws_restJson1UpdateUserCommand)(input, context);
31
31
  }
32
32
  deserialize(output, context) {
33
- return Aws_restJson1_1.deserializeAws_restJson1UpdateUserCommand(output, context);
33
+ return (0, Aws_restJson1_1.deserializeAws_restJson1UpdateUserCommand)(output, context);
34
34
  }
35
35
  }
36
36
  exports.UpdateUserCommand = UpdateUserCommand;
@@ -141,7 +141,7 @@ const partitionHash = {
141
141
  ],
142
142
  },
143
143
  };
144
- const defaultRegionInfoProvider = async (region, options) => config_resolver_1.getRegionInfo(region, {
144
+ const defaultRegionInfoProvider = async (region, options) => (0, config_resolver_1.getRegionInfo)(region, {
145
145
  ...options,
146
146
  signingService: "workdocs",
147
147
  regionHash,