@aws-sdk/client-workdocs 3.489.0 → 3.495.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-cjs/WorkDocs.js +1 -99
- package/dist-cjs/WorkDocsClient.js +1 -43
- package/dist-cjs/commands/AbortDocumentVersionUploadCommand.js +1 -29
- package/dist-cjs/commands/ActivateUserCommand.js +1 -29
- package/dist-cjs/commands/AddResourcePermissionsCommand.js +1 -29
- package/dist-cjs/commands/CreateCommentCommand.js +1 -29
- package/dist-cjs/commands/CreateCustomMetadataCommand.js +1 -29
- package/dist-cjs/commands/CreateFolderCommand.js +1 -29
- package/dist-cjs/commands/CreateLabelsCommand.js +1 -29
- package/dist-cjs/commands/CreateNotificationSubscriptionCommand.js +1 -28
- package/dist-cjs/commands/CreateUserCommand.js +1 -29
- package/dist-cjs/commands/DeactivateUserCommand.js +1 -29
- package/dist-cjs/commands/DeleteCommentCommand.js +1 -29
- package/dist-cjs/commands/DeleteCustomMetadataCommand.js +1 -29
- package/dist-cjs/commands/DeleteDocumentCommand.js +1 -29
- package/dist-cjs/commands/DeleteDocumentVersionCommand.js +1 -29
- package/dist-cjs/commands/DeleteFolderCommand.js +1 -29
- package/dist-cjs/commands/DeleteFolderContentsCommand.js +1 -29
- package/dist-cjs/commands/DeleteLabelsCommand.js +1 -29
- package/dist-cjs/commands/DeleteNotificationSubscriptionCommand.js +1 -28
- package/dist-cjs/commands/DeleteUserCommand.js +1 -29
- package/dist-cjs/commands/DescribeActivitiesCommand.js +1 -29
- package/dist-cjs/commands/DescribeCommentsCommand.js +1 -29
- package/dist-cjs/commands/DescribeDocumentVersionsCommand.js +1 -29
- package/dist-cjs/commands/DescribeFolderContentsCommand.js +1 -29
- package/dist-cjs/commands/DescribeGroupsCommand.js +1 -29
- package/dist-cjs/commands/DescribeNotificationSubscriptionsCommand.js +1 -28
- package/dist-cjs/commands/DescribeResourcePermissionsCommand.js +1 -29
- package/dist-cjs/commands/DescribeRootFoldersCommand.js +1 -29
- package/dist-cjs/commands/DescribeUsersCommand.js +1 -29
- package/dist-cjs/commands/GetCurrentUserCommand.js +1 -29
- package/dist-cjs/commands/GetDocumentCommand.js +1 -29
- package/dist-cjs/commands/GetDocumentPathCommand.js +1 -29
- package/dist-cjs/commands/GetDocumentVersionCommand.js +1 -29
- package/dist-cjs/commands/GetFolderCommand.js +1 -29
- package/dist-cjs/commands/GetFolderPathCommand.js +1 -29
- package/dist-cjs/commands/GetResourcesCommand.js +1 -29
- package/dist-cjs/commands/InitiateDocumentVersionUploadCommand.js +1 -29
- package/dist-cjs/commands/RemoveAllResourcePermissionsCommand.js +1 -29
- package/dist-cjs/commands/RemoveResourcePermissionCommand.js +1 -29
- package/dist-cjs/commands/RestoreDocumentVersionsCommand.js +1 -29
- package/dist-cjs/commands/SearchResourcesCommand.js +1 -29
- package/dist-cjs/commands/UpdateDocumentCommand.js +1 -29
- package/dist-cjs/commands/UpdateDocumentVersionCommand.js +1 -29
- package/dist-cjs/commands/UpdateFolderCommand.js +1 -29
- package/dist-cjs/commands/UpdateUserCommand.js +1 -29
- package/dist-cjs/commands/index.js +1 -47
- package/dist-cjs/endpoint/EndpointParameters.js +1 -18
- package/dist-cjs/extensionConfiguration.js +1 -2
- package/dist-cjs/index.js +5845 -11
- package/dist-cjs/models/WorkDocsServiceException.js +1 -12
- package/dist-cjs/models/index.js +1 -4
- package/dist-cjs/models/models_0.js +1 -1038
- package/dist-cjs/pagination/DescribeActivitiesPaginator.js +1 -7
- package/dist-cjs/pagination/DescribeCommentsPaginator.js +1 -7
- package/dist-cjs/pagination/DescribeDocumentVersionsPaginator.js +1 -7
- package/dist-cjs/pagination/DescribeFolderContentsPaginator.js +1 -7
- package/dist-cjs/pagination/DescribeGroupsPaginator.js +1 -7
- package/dist-cjs/pagination/DescribeNotificationSubscriptionsPaginator.js +1 -7
- package/dist-cjs/pagination/DescribeResourcePermissionsPaginator.js +1 -7
- package/dist-cjs/pagination/DescribeRootFoldersPaginator.js +1 -7
- package/dist-cjs/pagination/DescribeUsersPaginator.js +1 -7
- package/dist-cjs/pagination/Interfaces.js +1 -2
- package/dist-cjs/pagination/SearchResourcesPaginator.js +1 -7
- package/dist-cjs/pagination/index.js +1 -14
- package/dist-cjs/protocols/Aws_restJson1.js +1 -3502
- package/dist-cjs/runtimeExtensions.js +1 -22
- package/package.json +40 -40
|
@@ -1,12 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.WorkDocsServiceException = exports.__ServiceException = void 0;
|
|
4
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
-
Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
|
|
6
|
-
class WorkDocsServiceException extends smithy_client_1.ServiceException {
|
|
7
|
-
constructor(options) {
|
|
8
|
-
super(options);
|
|
9
|
-
Object.setPrototypeOf(this, WorkDocsServiceException.prototype);
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
exports.WorkDocsServiceException = WorkDocsServiceException;
|
|
1
|
+
module.exports = require("../index.js");
|
package/dist-cjs/models/index.js
CHANGED