@aws-sdk/client-workdocs 3.774.0 → 3.777.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/auth/httpAuthSchemeProvider.js +1 -3
- package/dist-cjs/index.js +17 -18
- package/dist-es/WorkDocsClient.js +2 -1
- package/dist-es/auth/httpAuthSchemeProvider.js +1 -3
- package/dist-es/endpoint/EndpointParameters.js +2 -3
- package/dist-es/runtimeExtensions.js +2 -14
- package/dist-types/commands/AbortDocumentVersionUploadCommand.d.ts +1 -0
- package/dist-types/commands/ActivateUserCommand.d.ts +1 -0
- package/dist-types/commands/AddResourcePermissionsCommand.d.ts +1 -0
- package/dist-types/commands/CreateCommentCommand.d.ts +1 -0
- package/dist-types/commands/CreateCustomMetadataCommand.d.ts +1 -0
- package/dist-types/commands/CreateFolderCommand.d.ts +1 -0
- package/dist-types/commands/CreateLabelsCommand.d.ts +1 -0
- package/dist-types/commands/CreateNotificationSubscriptionCommand.d.ts +1 -0
- package/dist-types/commands/CreateUserCommand.d.ts +1 -0
- package/dist-types/commands/DeactivateUserCommand.d.ts +1 -0
- package/dist-types/commands/DeleteCommentCommand.d.ts +1 -0
- package/dist-types/commands/DeleteCustomMetadataCommand.d.ts +1 -0
- package/dist-types/commands/DeleteDocumentCommand.d.ts +1 -0
- package/dist-types/commands/DeleteDocumentVersionCommand.d.ts +1 -0
- package/dist-types/commands/DeleteFolderCommand.d.ts +1 -0
- package/dist-types/commands/DeleteFolderContentsCommand.d.ts +1 -0
- package/dist-types/commands/DeleteLabelsCommand.d.ts +1 -0
- package/dist-types/commands/DeleteNotificationSubscriptionCommand.d.ts +1 -0
- package/dist-types/commands/DeleteUserCommand.d.ts +1 -0
- package/dist-types/commands/DescribeActivitiesCommand.d.ts +1 -0
- package/dist-types/commands/DescribeCommentsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeDocumentVersionsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeFolderContentsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeGroupsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeNotificationSubscriptionsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeResourcePermissionsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeRootFoldersCommand.d.ts +1 -0
- package/dist-types/commands/DescribeUsersCommand.d.ts +1 -0
- package/dist-types/commands/GetCurrentUserCommand.d.ts +1 -0
- package/dist-types/commands/GetDocumentCommand.d.ts +1 -0
- package/dist-types/commands/GetDocumentPathCommand.d.ts +1 -0
- package/dist-types/commands/GetDocumentVersionCommand.d.ts +1 -0
- package/dist-types/commands/GetFolderCommand.d.ts +1 -0
- package/dist-types/commands/GetFolderPathCommand.d.ts +1 -0
- package/dist-types/commands/GetResourcesCommand.d.ts +1 -0
- package/dist-types/commands/InitiateDocumentVersionUploadCommand.d.ts +1 -0
- package/dist-types/commands/RemoveAllResourcePermissionsCommand.d.ts +1 -0
- package/dist-types/commands/RemoveResourcePermissionCommand.d.ts +1 -0
- package/dist-types/commands/RestoreDocumentVersionsCommand.d.ts +1 -0
- package/dist-types/commands/SearchResourcesCommand.d.ts +1 -0
- package/dist-types/commands/UpdateDocumentCommand.d.ts +1 -0
- package/dist-types/commands/UpdateDocumentVersionCommand.d.ts +1 -0
- package/dist-types/commands/UpdateFolderCommand.d.ts +1 -0
- package/dist-types/commands/UpdateUserCommand.d.ts +1 -0
- package/package.json +33 -33
|
@@ -40,8 +40,6 @@ const defaultWorkDocsHttpAuthSchemeProvider = (authParameters) => {
|
|
|
40
40
|
exports.defaultWorkDocsHttpAuthSchemeProvider = defaultWorkDocsHttpAuthSchemeProvider;
|
|
41
41
|
const resolveHttpAuthSchemeConfig = (config) => {
|
|
42
42
|
const config_0 = (0, core_1.resolveAwsSdkSigV4Config)(config);
|
|
43
|
-
return {
|
|
44
|
-
...config_0,
|
|
45
|
-
};
|
|
43
|
+
return Object.assign(config_0, {});
|
|
46
44
|
};
|
|
47
45
|
exports.resolveHttpAuthSchemeConfig = resolveHttpAuthSchemeConfig;
|
package/dist-cjs/index.js
CHANGED
|
@@ -236,12 +236,11 @@ var import_httpAuthSchemeProvider = require("./auth/httpAuthSchemeProvider");
|
|
|
236
236
|
|
|
237
237
|
// src/endpoint/EndpointParameters.ts
|
|
238
238
|
var resolveClientEndpointParameters = /* @__PURE__ */ __name((options) => {
|
|
239
|
-
return {
|
|
240
|
-
...options,
|
|
239
|
+
return Object.assign(options, {
|
|
241
240
|
useDualstackEndpoint: options.useDualstackEndpoint ?? false,
|
|
242
241
|
useFipsEndpoint: options.useFipsEndpoint ?? false,
|
|
243
242
|
defaultSigningName: "workdocs"
|
|
244
|
-
};
|
|
243
|
+
});
|
|
245
244
|
}, "resolveClientEndpointParameters");
|
|
246
245
|
var commonParams = {
|
|
247
246
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -298,22 +297,21 @@ var resolveHttpAuthRuntimeConfig = /* @__PURE__ */ __name((config) => {
|
|
|
298
297
|
}, "resolveHttpAuthRuntimeConfig");
|
|
299
298
|
|
|
300
299
|
// src/runtimeExtensions.ts
|
|
301
|
-
var asPartial = /* @__PURE__ */ __name((t) => t, "asPartial");
|
|
302
300
|
var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions) => {
|
|
303
|
-
const extensionConfiguration =
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
301
|
+
const extensionConfiguration = Object.assign(
|
|
302
|
+
(0, import_region_config_resolver.getAwsRegionExtensionConfiguration)(runtimeConfig),
|
|
303
|
+
(0, import_smithy_client.getDefaultExtensionConfiguration)(runtimeConfig),
|
|
304
|
+
(0, import_protocol_http.getHttpHandlerExtensionConfiguration)(runtimeConfig),
|
|
305
|
+
getHttpAuthExtensionConfiguration(runtimeConfig)
|
|
306
|
+
);
|
|
309
307
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
310
|
-
return
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
308
|
+
return Object.assign(
|
|
309
|
+
runtimeConfig,
|
|
310
|
+
(0, import_region_config_resolver.resolveAwsRegionExtensionConfiguration)(extensionConfiguration),
|
|
311
|
+
(0, import_smithy_client.resolveDefaultRuntimeConfig)(extensionConfiguration),
|
|
312
|
+
(0, import_protocol_http.resolveHttpHandlerRuntimeConfig)(extensionConfiguration),
|
|
313
|
+
resolveHttpAuthRuntimeConfig(extensionConfiguration)
|
|
314
|
+
);
|
|
317
315
|
}, "resolveRuntimeExtensions");
|
|
318
316
|
|
|
319
317
|
// src/WorkDocsClient.ts
|
|
@@ -327,6 +325,8 @@ var WorkDocsClient = class extends import_smithy_client.Client {
|
|
|
327
325
|
config;
|
|
328
326
|
constructor(...[configuration]) {
|
|
329
327
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
328
|
+
super(_config_0);
|
|
329
|
+
this.initConfig = _config_0;
|
|
330
330
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
331
331
|
const _config_2 = (0, import_middleware_user_agent.resolveUserAgentConfig)(_config_1);
|
|
332
332
|
const _config_3 = (0, import_middleware_retry.resolveRetryConfig)(_config_2);
|
|
@@ -335,7 +335,6 @@ var WorkDocsClient = class extends import_smithy_client.Client {
|
|
|
335
335
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
336
336
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
337
337
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
338
|
-
super(_config_8);
|
|
339
338
|
this.config = _config_8;
|
|
340
339
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
341
340
|
this.middlewareStack.use((0, import_middleware_retry.getRetryPlugin)(this.config));
|
|
@@ -17,6 +17,8 @@ export class WorkDocsClient extends __Client {
|
|
|
17
17
|
config;
|
|
18
18
|
constructor(...[configuration]) {
|
|
19
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
20
|
+
super(_config_0);
|
|
21
|
+
this.initConfig = _config_0;
|
|
20
22
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
21
23
|
const _config_2 = resolveUserAgentConfig(_config_1);
|
|
22
24
|
const _config_3 = resolveRetryConfig(_config_2);
|
|
@@ -25,7 +27,6 @@ export class WorkDocsClient extends __Client {
|
|
|
25
27
|
const _config_6 = resolveEndpointConfig(_config_5);
|
|
26
28
|
const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
|
|
27
29
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
28
|
-
super(_config_8);
|
|
29
30
|
this.config = _config_8;
|
|
30
31
|
this.middlewareStack.use(getUserAgentPlugin(this.config));
|
|
31
32
|
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
@@ -35,7 +35,5 @@ export const defaultWorkDocsHttpAuthSchemeProvider = (authParameters) => {
|
|
|
35
35
|
};
|
|
36
36
|
export const resolveHttpAuthSchemeConfig = (config) => {
|
|
37
37
|
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
38
|
-
return {
|
|
39
|
-
...config_0,
|
|
40
|
-
};
|
|
38
|
+
return Object.assign(config_0, {});
|
|
41
39
|
};
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
export const resolveClientEndpointParameters = (options) => {
|
|
2
|
-
return {
|
|
3
|
-
...options,
|
|
2
|
+
return Object.assign(options, {
|
|
4
3
|
useDualstackEndpoint: options.useDualstackEndpoint ?? false,
|
|
5
4
|
useFipsEndpoint: options.useFipsEndpoint ?? false,
|
|
6
5
|
defaultSigningName: "workdocs",
|
|
7
|
-
};
|
|
6
|
+
});
|
|
8
7
|
};
|
|
9
8
|
export const commonParams = {
|
|
10
9
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -2,20 +2,8 @@ import { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfigurat
|
|
|
2
2
|
import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } from "@smithy/protocol-http";
|
|
3
3
|
import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client";
|
|
4
4
|
import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration";
|
|
5
|
-
const asPartial = (t) => t;
|
|
6
5
|
export const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
|
|
7
|
-
const extensionConfiguration =
|
|
8
|
-
...asPartial(getAwsRegionExtensionConfiguration(runtimeConfig)),
|
|
9
|
-
...asPartial(getDefaultExtensionConfiguration(runtimeConfig)),
|
|
10
|
-
...asPartial(getHttpHandlerExtensionConfiguration(runtimeConfig)),
|
|
11
|
-
...asPartial(getHttpAuthExtensionConfiguration(runtimeConfig)),
|
|
12
|
-
};
|
|
6
|
+
const extensionConfiguration = Object.assign(getAwsRegionExtensionConfiguration(runtimeConfig), getDefaultExtensionConfiguration(runtimeConfig), getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));
|
|
13
7
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
14
|
-
return
|
|
15
|
-
...runtimeConfig,
|
|
16
|
-
...resolveAwsRegionExtensionConfiguration(extensionConfiguration),
|
|
17
|
-
...resolveDefaultRuntimeConfig(extensionConfiguration),
|
|
18
|
-
...resolveHttpHandlerRuntimeConfig(extensionConfiguration),
|
|
19
|
-
...resolveHttpAuthRuntimeConfig(extensionConfiguration),
|
|
20
|
-
};
|
|
8
|
+
return Object.assign(runtimeConfig, resolveAwsRegionExtensionConfiguration(extensionConfiguration), resolveDefaultRuntimeConfig(extensionConfiguration), resolveHttpHandlerRuntimeConfig(extensionConfiguration), resolveHttpAuthRuntimeConfig(extensionConfiguration));
|
|
21
9
|
};
|
|
@@ -80,6 +80,7 @@ declare const AbortDocumentVersionUploadCommand_base: {
|
|
|
80
80
|
* @throws {@link WorkDocsServiceException}
|
|
81
81
|
* <p>Base exception class for all service exceptions from WorkDocs service.</p>
|
|
82
82
|
*
|
|
83
|
+
*
|
|
83
84
|
* @public
|
|
84
85
|
*/
|
|
85
86
|
export declare class AbortDocumentVersionUploadCommand extends AbortDocumentVersionUploadCommand_base {
|
|
@@ -95,6 +95,7 @@ declare const ActivateUserCommand_base: {
|
|
|
95
95
|
* @throws {@link WorkDocsServiceException}
|
|
96
96
|
* <p>Base exception class for all service exceptions from WorkDocs service.</p>
|
|
97
97
|
*
|
|
98
|
+
*
|
|
98
99
|
* @public
|
|
99
100
|
*/
|
|
100
101
|
export declare class ActivateUserCommand extends ActivateUserCommand_base {
|
|
@@ -94,6 +94,7 @@ declare const AddResourcePermissionsCommand_base: {
|
|
|
94
94
|
* @throws {@link WorkDocsServiceException}
|
|
95
95
|
* <p>Base exception class for all service exceptions from WorkDocs service.</p>
|
|
96
96
|
*
|
|
97
|
+
*
|
|
97
98
|
* @public
|
|
98
99
|
*/
|
|
99
100
|
export declare class AddResourcePermissionsCommand extends AddResourcePermissionsCommand_base {
|
|
@@ -120,6 +120,7 @@ declare const CreateCommentCommand_base: {
|
|
|
120
120
|
* @throws {@link WorkDocsServiceException}
|
|
121
121
|
* <p>Base exception class for all service exceptions from WorkDocs service.</p>
|
|
122
122
|
*
|
|
123
|
+
*
|
|
123
124
|
* @public
|
|
124
125
|
*/
|
|
125
126
|
export declare class CreateCommentCommand extends CreateCommentCommand_base {
|
|
@@ -82,6 +82,7 @@ declare const CreateCustomMetadataCommand_base: {
|
|
|
82
82
|
* @throws {@link WorkDocsServiceException}
|
|
83
83
|
* <p>Base exception class for all service exceptions from WorkDocs service.</p>
|
|
84
84
|
*
|
|
85
|
+
*
|
|
85
86
|
* @public
|
|
86
87
|
*/
|
|
87
88
|
export declare class CreateCustomMetadataCommand extends CreateCustomMetadataCommand_base {
|
|
@@ -102,6 +102,7 @@ declare const CreateFolderCommand_base: {
|
|
|
102
102
|
* @throws {@link WorkDocsServiceException}
|
|
103
103
|
* <p>Base exception class for all service exceptions from WorkDocs service.</p>
|
|
104
104
|
*
|
|
105
|
+
*
|
|
105
106
|
* @public
|
|
106
107
|
*/
|
|
107
108
|
export declare class CreateFolderCommand extends CreateFolderCommand_base {
|
|
@@ -78,6 +78,7 @@ declare const CreateLabelsCommand_base: {
|
|
|
78
78
|
* @throws {@link WorkDocsServiceException}
|
|
79
79
|
* <p>Base exception class for all service exceptions from WorkDocs service.</p>
|
|
80
80
|
*
|
|
81
|
+
*
|
|
81
82
|
* @public
|
|
82
83
|
*/
|
|
83
84
|
export declare class CreateLabelsCommand extends CreateLabelsCommand_base {
|
|
@@ -77,6 +77,7 @@ declare const CreateNotificationSubscriptionCommand_base: {
|
|
|
77
77
|
* @throws {@link WorkDocsServiceException}
|
|
78
78
|
* <p>Base exception class for all service exceptions from WorkDocs service.</p>
|
|
79
79
|
*
|
|
80
|
+
*
|
|
80
81
|
* @public
|
|
81
82
|
*/
|
|
82
83
|
export declare class CreateNotificationSubscriptionCommand extends CreateNotificationSubscriptionCommand_base {
|
|
@@ -105,6 +105,7 @@ declare const CreateUserCommand_base: {
|
|
|
105
105
|
* @throws {@link WorkDocsServiceException}
|
|
106
106
|
* <p>Base exception class for all service exceptions from WorkDocs service.</p>
|
|
107
107
|
*
|
|
108
|
+
*
|
|
108
109
|
* @public
|
|
109
110
|
*/
|
|
110
111
|
export declare class CreateUserCommand extends CreateUserCommand_base {
|
|
@@ -71,6 +71,7 @@ declare const DeactivateUserCommand_base: {
|
|
|
71
71
|
* @throws {@link WorkDocsServiceException}
|
|
72
72
|
* <p>Base exception class for all service exceptions from WorkDocs service.</p>
|
|
73
73
|
*
|
|
74
|
+
*
|
|
74
75
|
* @public
|
|
75
76
|
*/
|
|
76
77
|
export declare class DeactivateUserCommand extends DeactivateUserCommand_base {
|
|
@@ -79,6 +79,7 @@ declare const DeleteCommentCommand_base: {
|
|
|
79
79
|
* @throws {@link WorkDocsServiceException}
|
|
80
80
|
* <p>Base exception class for all service exceptions from WorkDocs service.</p>
|
|
81
81
|
*
|
|
82
|
+
*
|
|
82
83
|
* @public
|
|
83
84
|
*/
|
|
84
85
|
export declare class DeleteCommentCommand extends DeleteCommentCommand_base {
|
|
@@ -78,6 +78,7 @@ declare const DeleteCustomMetadataCommand_base: {
|
|
|
78
78
|
* @throws {@link WorkDocsServiceException}
|
|
79
79
|
* <p>Base exception class for all service exceptions from WorkDocs service.</p>
|
|
80
80
|
*
|
|
81
|
+
*
|
|
81
82
|
* @public
|
|
82
83
|
*/
|
|
83
84
|
export declare class DeleteCustomMetadataCommand extends DeleteCustomMetadataCommand_base {
|
|
@@ -82,6 +82,7 @@ declare const DeleteDocumentCommand_base: {
|
|
|
82
82
|
* @throws {@link WorkDocsServiceException}
|
|
83
83
|
* <p>Base exception class for all service exceptions from WorkDocs service.</p>
|
|
84
84
|
*
|
|
85
|
+
*
|
|
85
86
|
* @public
|
|
86
87
|
*/
|
|
87
88
|
export declare class DeleteDocumentCommand extends DeleteDocumentCommand_base {
|
|
@@ -81,6 +81,7 @@ declare const DeleteDocumentVersionCommand_base: {
|
|
|
81
81
|
* @throws {@link WorkDocsServiceException}
|
|
82
82
|
* <p>Base exception class for all service exceptions from WorkDocs service.</p>
|
|
83
83
|
*
|
|
84
|
+
*
|
|
84
85
|
* @public
|
|
85
86
|
*/
|
|
86
87
|
export declare class DeleteDocumentVersionCommand extends DeleteDocumentVersionCommand_base {
|
|
@@ -82,6 +82,7 @@ declare const DeleteFolderCommand_base: {
|
|
|
82
82
|
* @throws {@link WorkDocsServiceException}
|
|
83
83
|
* <p>Base exception class for all service exceptions from WorkDocs service.</p>
|
|
84
84
|
*
|
|
85
|
+
*
|
|
85
86
|
* @public
|
|
86
87
|
*/
|
|
87
88
|
export declare class DeleteFolderCommand extends DeleteFolderCommand_base {
|
|
@@ -76,6 +76,7 @@ declare const DeleteFolderContentsCommand_base: {
|
|
|
76
76
|
* @throws {@link WorkDocsServiceException}
|
|
77
77
|
* <p>Base exception class for all service exceptions from WorkDocs service.</p>
|
|
78
78
|
*
|
|
79
|
+
*
|
|
79
80
|
* @public
|
|
80
81
|
*/
|
|
81
82
|
export declare class DeleteFolderContentsCommand extends DeleteFolderContentsCommand_base {
|
|
@@ -77,6 +77,7 @@ declare const DeleteLabelsCommand_base: {
|
|
|
77
77
|
* @throws {@link WorkDocsServiceException}
|
|
78
78
|
* <p>Base exception class for all service exceptions from WorkDocs service.</p>
|
|
79
79
|
*
|
|
80
|
+
*
|
|
80
81
|
* @public
|
|
81
82
|
*/
|
|
82
83
|
export declare class DeleteLabelsCommand extends DeleteLabelsCommand_base {
|
|
@@ -65,6 +65,7 @@ declare const DeleteNotificationSubscriptionCommand_base: {
|
|
|
65
65
|
* @throws {@link WorkDocsServiceException}
|
|
66
66
|
* <p>Base exception class for all service exceptions from WorkDocs service.</p>
|
|
67
67
|
*
|
|
68
|
+
*
|
|
68
69
|
* @public
|
|
69
70
|
*/
|
|
70
71
|
export declare class DeleteNotificationSubscriptionCommand extends DeleteNotificationSubscriptionCommand_base {
|
|
@@ -73,6 +73,7 @@ declare const DeleteUserCommand_base: {
|
|
|
73
73
|
* @throws {@link WorkDocsServiceException}
|
|
74
74
|
* <p>Base exception class for all service exceptions from WorkDocs service.</p>
|
|
75
75
|
*
|
|
76
|
+
*
|
|
76
77
|
* @public
|
|
77
78
|
*/
|
|
78
79
|
export declare class DeleteUserCommand extends DeleteUserCommand_base {
|
|
@@ -160,6 +160,7 @@ declare const DescribeActivitiesCommand_base: {
|
|
|
160
160
|
* @throws {@link WorkDocsServiceException}
|
|
161
161
|
* <p>Base exception class for all service exceptions from WorkDocs service.</p>
|
|
162
162
|
*
|
|
163
|
+
*
|
|
163
164
|
* @public
|
|
164
165
|
*/
|
|
165
166
|
export declare class DescribeActivitiesCommand extends DescribeActivitiesCommand_base {
|
|
@@ -113,6 +113,7 @@ declare const DescribeCommentsCommand_base: {
|
|
|
113
113
|
* @throws {@link WorkDocsServiceException}
|
|
114
114
|
* <p>Base exception class for all service exceptions from WorkDocs service.</p>
|
|
115
115
|
*
|
|
116
|
+
*
|
|
116
117
|
* @public
|
|
117
118
|
*/
|
|
118
119
|
export declare class DescribeCommentsCommand extends DescribeCommentsCommand_base {
|
|
@@ -107,6 +107,7 @@ declare const DescribeDocumentVersionsCommand_base: {
|
|
|
107
107
|
* @throws {@link WorkDocsServiceException}
|
|
108
108
|
* <p>Base exception class for all service exceptions from WorkDocs service.</p>
|
|
109
109
|
*
|
|
110
|
+
*
|
|
110
111
|
* @public
|
|
111
112
|
*/
|
|
112
113
|
export declare class DescribeDocumentVersionsCommand extends DescribeDocumentVersionsCommand_base {
|
|
@@ -135,6 +135,7 @@ declare const DescribeFolderContentsCommand_base: {
|
|
|
135
135
|
* @throws {@link WorkDocsServiceException}
|
|
136
136
|
* <p>Base exception class for all service exceptions from WorkDocs service.</p>
|
|
137
137
|
*
|
|
138
|
+
*
|
|
138
139
|
* @public
|
|
139
140
|
*/
|
|
140
141
|
export declare class DescribeFolderContentsCommand extends DescribeFolderContentsCommand_base {
|
|
@@ -79,6 +79,7 @@ declare const DescribeGroupsCommand_base: {
|
|
|
79
79
|
* @throws {@link WorkDocsServiceException}
|
|
80
80
|
* <p>Base exception class for all service exceptions from WorkDocs service.</p>
|
|
81
81
|
*
|
|
82
|
+
*
|
|
82
83
|
* @public
|
|
83
84
|
*/
|
|
84
85
|
export declare class DescribeGroupsCommand extends DescribeGroupsCommand_base {
|
|
@@ -72,6 +72,7 @@ declare const DescribeNotificationSubscriptionsCommand_base: {
|
|
|
72
72
|
* @throws {@link WorkDocsServiceException}
|
|
73
73
|
* <p>Base exception class for all service exceptions from WorkDocs service.</p>
|
|
74
74
|
*
|
|
75
|
+
*
|
|
75
76
|
* @public
|
|
76
77
|
*/
|
|
77
78
|
export declare class DescribeNotificationSubscriptionsCommand extends DescribeNotificationSubscriptionsCommand_base {
|
|
@@ -87,6 +87,7 @@ declare const DescribeResourcePermissionsCommand_base: {
|
|
|
87
87
|
* @throws {@link WorkDocsServiceException}
|
|
88
88
|
* <p>Base exception class for all service exceptions from WorkDocs service.</p>
|
|
89
89
|
*
|
|
90
|
+
*
|
|
90
91
|
* @public
|
|
91
92
|
*/
|
|
92
93
|
export declare class DescribeResourcePermissionsCommand extends DescribeResourcePermissionsCommand_base {
|
|
@@ -98,6 +98,7 @@ declare const DescribeRootFoldersCommand_base: {
|
|
|
98
98
|
* @throws {@link WorkDocsServiceException}
|
|
99
99
|
* <p>Base exception class for all service exceptions from WorkDocs service.</p>
|
|
100
100
|
*
|
|
101
|
+
*
|
|
101
102
|
* @public
|
|
102
103
|
*/
|
|
103
104
|
export declare class DescribeRootFoldersCommand extends DescribeRootFoldersCommand_base {
|
|
@@ -116,6 +116,7 @@ declare const DescribeUsersCommand_base: {
|
|
|
116
116
|
* @throws {@link WorkDocsServiceException}
|
|
117
117
|
* <p>Base exception class for all service exceptions from WorkDocs service.</p>
|
|
118
118
|
*
|
|
119
|
+
*
|
|
119
120
|
* @public
|
|
120
121
|
*/
|
|
121
122
|
export declare class DescribeUsersCommand extends DescribeUsersCommand_base {
|
|
@@ -99,6 +99,7 @@ declare const GetCurrentUserCommand_base: {
|
|
|
99
99
|
* @throws {@link WorkDocsServiceException}
|
|
100
100
|
* <p>Base exception class for all service exceptions from WorkDocs service.</p>
|
|
101
101
|
*
|
|
102
|
+
*
|
|
102
103
|
* @public
|
|
103
104
|
*/
|
|
104
105
|
export declare class GetCurrentUserCommand extends GetCurrentUserCommand_base {
|
|
@@ -111,6 +111,7 @@ declare const GetDocumentCommand_base: {
|
|
|
111
111
|
* @throws {@link WorkDocsServiceException}
|
|
112
112
|
* <p>Base exception class for all service exceptions from WorkDocs service.</p>
|
|
113
113
|
*
|
|
114
|
+
*
|
|
114
115
|
* @public
|
|
115
116
|
*/
|
|
116
117
|
export declare class GetDocumentCommand extends GetDocumentCommand_base {
|
|
@@ -87,6 +87,7 @@ declare const GetDocumentPathCommand_base: {
|
|
|
87
87
|
* @throws {@link WorkDocsServiceException}
|
|
88
88
|
* <p>Base exception class for all service exceptions from WorkDocs service.</p>
|
|
89
89
|
*
|
|
90
|
+
*
|
|
90
91
|
* @public
|
|
91
92
|
*/
|
|
92
93
|
export declare class GetDocumentPathCommand extends GetDocumentPathCommand_base {
|
|
@@ -102,6 +102,7 @@ declare const GetDocumentVersionCommand_base: {
|
|
|
102
102
|
* @throws {@link WorkDocsServiceException}
|
|
103
103
|
* <p>Base exception class for all service exceptions from WorkDocs service.</p>
|
|
104
104
|
*
|
|
105
|
+
*
|
|
105
106
|
* @public
|
|
106
107
|
*/
|
|
107
108
|
export declare class GetDocumentVersionCommand extends GetDocumentVersionCommand_base {
|
|
@@ -96,6 +96,7 @@ declare const GetFolderCommand_base: {
|
|
|
96
96
|
* @throws {@link WorkDocsServiceException}
|
|
97
97
|
* <p>Base exception class for all service exceptions from WorkDocs service.</p>
|
|
98
98
|
*
|
|
99
|
+
*
|
|
99
100
|
* @public
|
|
100
101
|
*/
|
|
101
102
|
export declare class GetFolderCommand extends GetFolderCommand_base {
|
|
@@ -87,6 +87,7 @@ declare const GetFolderPathCommand_base: {
|
|
|
87
87
|
* @throws {@link WorkDocsServiceException}
|
|
88
88
|
* <p>Base exception class for all service exceptions from WorkDocs service.</p>
|
|
89
89
|
*
|
|
90
|
+
*
|
|
90
91
|
* @public
|
|
91
92
|
*/
|
|
92
93
|
export declare class GetFolderPathCommand extends GetFolderPathCommand_base {
|
|
@@ -125,6 +125,7 @@ declare const GetResourcesCommand_base: {
|
|
|
125
125
|
* @throws {@link WorkDocsServiceException}
|
|
126
126
|
* <p>Base exception class for all service exceptions from WorkDocs service.</p>
|
|
127
127
|
*
|
|
128
|
+
*
|
|
128
129
|
* @public
|
|
129
130
|
*/
|
|
130
131
|
export declare class GetResourcesCommand extends GetResourcesCommand_base {
|
|
@@ -146,6 +146,7 @@ declare const InitiateDocumentVersionUploadCommand_base: {
|
|
|
146
146
|
* @throws {@link WorkDocsServiceException}
|
|
147
147
|
* <p>Base exception class for all service exceptions from WorkDocs service.</p>
|
|
148
148
|
*
|
|
149
|
+
*
|
|
149
150
|
* @public
|
|
150
151
|
*/
|
|
151
152
|
export declare class InitiateDocumentVersionUploadCommand extends InitiateDocumentVersionUploadCommand_base {
|
|
@@ -67,6 +67,7 @@ declare const RemoveAllResourcePermissionsCommand_base: {
|
|
|
67
67
|
* @throws {@link WorkDocsServiceException}
|
|
68
68
|
* <p>Base exception class for all service exceptions from WorkDocs service.</p>
|
|
69
69
|
*
|
|
70
|
+
*
|
|
70
71
|
* @public
|
|
71
72
|
*/
|
|
72
73
|
export declare class RemoveAllResourcePermissionsCommand extends RemoveAllResourcePermissionsCommand_base {
|
|
@@ -70,6 +70,7 @@ declare const RemoveResourcePermissionCommand_base: {
|
|
|
70
70
|
* @throws {@link WorkDocsServiceException}
|
|
71
71
|
* <p>Base exception class for all service exceptions from WorkDocs service.</p>
|
|
72
72
|
*
|
|
73
|
+
*
|
|
73
74
|
* @public
|
|
74
75
|
*/
|
|
75
76
|
export declare class RemoveResourcePermissionCommand extends RemoveResourcePermissionCommand_base {
|
|
@@ -79,6 +79,7 @@ declare const RestoreDocumentVersionsCommand_base: {
|
|
|
79
79
|
* @throws {@link WorkDocsServiceException}
|
|
80
80
|
* <p>Base exception class for all service exceptions from WorkDocs service.</p>
|
|
81
81
|
*
|
|
82
|
+
*
|
|
82
83
|
* @public
|
|
83
84
|
*/
|
|
84
85
|
export declare class RestoreDocumentVersionsCommand extends RestoreDocumentVersionsCommand_base {
|
|
@@ -222,6 +222,7 @@ declare const SearchResourcesCommand_base: {
|
|
|
222
222
|
* @throws {@link WorkDocsServiceException}
|
|
223
223
|
* <p>Base exception class for all service exceptions from WorkDocs service.</p>
|
|
224
224
|
*
|
|
225
|
+
*
|
|
225
226
|
* @public
|
|
226
227
|
*/
|
|
227
228
|
export declare class SearchResourcesCommand extends SearchResourcesCommand_base {
|
|
@@ -89,6 +89,7 @@ declare const UpdateDocumentCommand_base: {
|
|
|
89
89
|
* @throws {@link WorkDocsServiceException}
|
|
90
90
|
* <p>Base exception class for all service exceptions from WorkDocs service.</p>
|
|
91
91
|
*
|
|
92
|
+
*
|
|
92
93
|
* @public
|
|
93
94
|
*/
|
|
94
95
|
export declare class UpdateDocumentCommand extends UpdateDocumentCommand_base {
|
|
@@ -84,6 +84,7 @@ declare const UpdateDocumentVersionCommand_base: {
|
|
|
84
84
|
* @throws {@link WorkDocsServiceException}
|
|
85
85
|
* <p>Base exception class for all service exceptions from WorkDocs service.</p>
|
|
86
86
|
*
|
|
87
|
+
*
|
|
87
88
|
* @public
|
|
88
89
|
*/
|
|
89
90
|
export declare class UpdateDocumentVersionCommand extends UpdateDocumentVersionCommand_base {
|
|
@@ -89,6 +89,7 @@ declare const UpdateFolderCommand_base: {
|
|
|
89
89
|
* @throws {@link WorkDocsServiceException}
|
|
90
90
|
* <p>Base exception class for all service exceptions from WorkDocs service.</p>
|
|
91
91
|
*
|
|
92
|
+
*
|
|
92
93
|
* @public
|
|
93
94
|
*/
|
|
94
95
|
export declare class UpdateFolderCommand extends UpdateFolderCommand_base {
|
|
@@ -117,6 +117,7 @@ declare const UpdateUserCommand_base: {
|
|
|
117
117
|
* @throws {@link WorkDocsServiceException}
|
|
118
118
|
* <p>Base exception class for all service exceptions from WorkDocs service.</p>
|
|
119
119
|
*
|
|
120
|
+
*
|
|
120
121
|
* @public
|
|
121
122
|
*/
|
|
122
123
|
export declare class UpdateUserCommand extends UpdateUserCommand_base {
|
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.777.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.
|
|
34
|
-
"@smithy/config-resolver": "^4.0
|
|
35
|
-
"@smithy/core": "^3.
|
|
36
|
-
"@smithy/fetch-http-handler": "^5.0.
|
|
37
|
-
"@smithy/hash-node": "^4.0.
|
|
38
|
-
"@smithy/invalid-dependency": "^4.0.
|
|
39
|
-
"@smithy/middleware-content-length": "^4.0.
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.0
|
|
41
|
-
"@smithy/middleware-retry": "^4.0
|
|
42
|
-
"@smithy/middleware-serde": "^4.0.
|
|
43
|
-
"@smithy/middleware-stack": "^4.0.
|
|
44
|
-
"@smithy/node-config-provider": "^4.0.
|
|
45
|
-
"@smithy/node-http-handler": "^4.0.
|
|
46
|
-
"@smithy/protocol-http": "^5.0
|
|
47
|
-
"@smithy/smithy-client": "^4.
|
|
48
|
-
"@smithy/types": "^4.
|
|
49
|
-
"@smithy/url-parser": "^4.0.
|
|
23
|
+
"@aws-sdk/core": "3.775.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.777.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.775.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.775.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.775.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.775.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.775.0",
|
|
30
|
+
"@aws-sdk/types": "3.775.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.775.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.775.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.775.0",
|
|
34
|
+
"@smithy/config-resolver": "^4.1.0",
|
|
35
|
+
"@smithy/core": "^3.2.0",
|
|
36
|
+
"@smithy/fetch-http-handler": "^5.0.2",
|
|
37
|
+
"@smithy/hash-node": "^4.0.2",
|
|
38
|
+
"@smithy/invalid-dependency": "^4.0.2",
|
|
39
|
+
"@smithy/middleware-content-length": "^4.0.2",
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.1.0",
|
|
41
|
+
"@smithy/middleware-retry": "^4.1.0",
|
|
42
|
+
"@smithy/middleware-serde": "^4.0.3",
|
|
43
|
+
"@smithy/middleware-stack": "^4.0.2",
|
|
44
|
+
"@smithy/node-config-provider": "^4.0.2",
|
|
45
|
+
"@smithy/node-http-handler": "^4.0.4",
|
|
46
|
+
"@smithy/protocol-http": "^5.1.0",
|
|
47
|
+
"@smithy/smithy-client": "^4.2.0",
|
|
48
|
+
"@smithy/types": "^4.2.0",
|
|
49
|
+
"@smithy/url-parser": "^4.0.2",
|
|
50
50
|
"@smithy/util-base64": "^4.0.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.0.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.0.0",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.0.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.0.
|
|
55
|
-
"@smithy/util-endpoints": "^3.0.
|
|
56
|
-
"@smithy/util-middleware": "^4.0.
|
|
57
|
-
"@smithy/util-retry": "^4.0.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.0.8",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.0.8",
|
|
55
|
+
"@smithy/util-endpoints": "^3.0.2",
|
|
56
|
+
"@smithy/util-middleware": "^4.0.2",
|
|
57
|
+
"@smithy/util-retry": "^4.0.2",
|
|
58
58
|
"@smithy/util-utf8": "^4.0.0",
|
|
59
59
|
"tslib": "^2.6.2"
|
|
60
60
|
},
|