@aws-sdk/client-wickr 3.974.0 → 3.978.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/index.js +27 -17
- package/dist-es/Wickr.js +19 -1
- package/dist-types/Wickr.d.ts +57 -1
- package/dist-types/ts3.4/Wickr.d.ts +61 -1
- package/package.json +17 -17
package/dist-cjs/index.js
CHANGED
|
@@ -1884,6 +1884,22 @@ class UpdateUserCommand extends smithyClient.Command
|
|
|
1884
1884
|
.build() {
|
|
1885
1885
|
}
|
|
1886
1886
|
|
|
1887
|
+
const paginateListBlockedGuestUsers = core.createPaginator(WickrClient, ListBlockedGuestUsersCommand, "nextToken", "nextToken", "maxResults");
|
|
1888
|
+
|
|
1889
|
+
const paginateListBots = core.createPaginator(WickrClient, ListBotsCommand, "nextToken", "nextToken", "maxResults");
|
|
1890
|
+
|
|
1891
|
+
const paginateListDevicesForUser = core.createPaginator(WickrClient, ListDevicesForUserCommand, "nextToken", "nextToken", "maxResults");
|
|
1892
|
+
|
|
1893
|
+
const paginateListGuestUsers = core.createPaginator(WickrClient, ListGuestUsersCommand, "nextToken", "nextToken", "maxResults");
|
|
1894
|
+
|
|
1895
|
+
const paginateListNetworks = core.createPaginator(WickrClient, ListNetworksCommand, "nextToken", "nextToken", "maxResults");
|
|
1896
|
+
|
|
1897
|
+
const paginateListSecurityGroups = core.createPaginator(WickrClient, ListSecurityGroupsCommand, "nextToken", "nextToken", "maxResults");
|
|
1898
|
+
|
|
1899
|
+
const paginateListSecurityGroupUsers = core.createPaginator(WickrClient, ListSecurityGroupUsersCommand, "nextToken", "nextToken", "maxResults");
|
|
1900
|
+
|
|
1901
|
+
const paginateListUsers = core.createPaginator(WickrClient, ListUsersCommand, "nextToken", "nextToken", "maxResults");
|
|
1902
|
+
|
|
1887
1903
|
const commands = {
|
|
1888
1904
|
BatchCreateUserCommand,
|
|
1889
1905
|
BatchDeleteUserCommand,
|
|
@@ -1928,25 +1944,19 @@ const commands = {
|
|
|
1928
1944
|
UpdateSecurityGroupCommand,
|
|
1929
1945
|
UpdateUserCommand,
|
|
1930
1946
|
};
|
|
1947
|
+
const paginators = {
|
|
1948
|
+
paginateListBlockedGuestUsers,
|
|
1949
|
+
paginateListBots,
|
|
1950
|
+
paginateListDevicesForUser,
|
|
1951
|
+
paginateListGuestUsers,
|
|
1952
|
+
paginateListNetworks,
|
|
1953
|
+
paginateListSecurityGroups,
|
|
1954
|
+
paginateListSecurityGroupUsers,
|
|
1955
|
+
paginateListUsers,
|
|
1956
|
+
};
|
|
1931
1957
|
class Wickr extends WickrClient {
|
|
1932
1958
|
}
|
|
1933
|
-
smithyClient.createAggregatedClient(commands, Wickr);
|
|
1934
|
-
|
|
1935
|
-
const paginateListBlockedGuestUsers = core.createPaginator(WickrClient, ListBlockedGuestUsersCommand, "nextToken", "nextToken", "maxResults");
|
|
1936
|
-
|
|
1937
|
-
const paginateListBots = core.createPaginator(WickrClient, ListBotsCommand, "nextToken", "nextToken", "maxResults");
|
|
1938
|
-
|
|
1939
|
-
const paginateListDevicesForUser = core.createPaginator(WickrClient, ListDevicesForUserCommand, "nextToken", "nextToken", "maxResults");
|
|
1940
|
-
|
|
1941
|
-
const paginateListGuestUsers = core.createPaginator(WickrClient, ListGuestUsersCommand, "nextToken", "nextToken", "maxResults");
|
|
1942
|
-
|
|
1943
|
-
const paginateListNetworks = core.createPaginator(WickrClient, ListNetworksCommand, "nextToken", "nextToken", "maxResults");
|
|
1944
|
-
|
|
1945
|
-
const paginateListSecurityGroups = core.createPaginator(WickrClient, ListSecurityGroupsCommand, "nextToken", "nextToken", "maxResults");
|
|
1946
|
-
|
|
1947
|
-
const paginateListSecurityGroupUsers = core.createPaginator(WickrClient, ListSecurityGroupUsersCommand, "nextToken", "nextToken", "maxResults");
|
|
1948
|
-
|
|
1949
|
-
const paginateListUsers = core.createPaginator(WickrClient, ListUsersCommand, "nextToken", "nextToken", "maxResults");
|
|
1959
|
+
smithyClient.createAggregatedClient(commands, Wickr, { paginators });
|
|
1950
1960
|
|
|
1951
1961
|
const AccessLevel = {
|
|
1952
1962
|
PREMIUM: "PREMIUM",
|
package/dist-es/Wickr.js
CHANGED
|
@@ -41,6 +41,14 @@ import { UpdateNetworkCommand, } from "./commands/UpdateNetworkCommand";
|
|
|
41
41
|
import { UpdateNetworkSettingsCommand, } from "./commands/UpdateNetworkSettingsCommand";
|
|
42
42
|
import { UpdateSecurityGroupCommand, } from "./commands/UpdateSecurityGroupCommand";
|
|
43
43
|
import { UpdateUserCommand } from "./commands/UpdateUserCommand";
|
|
44
|
+
import { paginateListBlockedGuestUsers } from "./pagination/ListBlockedGuestUsersPaginator";
|
|
45
|
+
import { paginateListBots } from "./pagination/ListBotsPaginator";
|
|
46
|
+
import { paginateListDevicesForUser } from "./pagination/ListDevicesForUserPaginator";
|
|
47
|
+
import { paginateListGuestUsers } from "./pagination/ListGuestUsersPaginator";
|
|
48
|
+
import { paginateListNetworks } from "./pagination/ListNetworksPaginator";
|
|
49
|
+
import { paginateListSecurityGroups } from "./pagination/ListSecurityGroupsPaginator";
|
|
50
|
+
import { paginateListSecurityGroupUsers } from "./pagination/ListSecurityGroupUsersPaginator";
|
|
51
|
+
import { paginateListUsers } from "./pagination/ListUsersPaginator";
|
|
44
52
|
import { WickrClient } from "./WickrClient";
|
|
45
53
|
const commands = {
|
|
46
54
|
BatchCreateUserCommand,
|
|
@@ -86,6 +94,16 @@ const commands = {
|
|
|
86
94
|
UpdateSecurityGroupCommand,
|
|
87
95
|
UpdateUserCommand,
|
|
88
96
|
};
|
|
97
|
+
const paginators = {
|
|
98
|
+
paginateListBlockedGuestUsers,
|
|
99
|
+
paginateListBots,
|
|
100
|
+
paginateListDevicesForUser,
|
|
101
|
+
paginateListGuestUsers,
|
|
102
|
+
paginateListNetworks,
|
|
103
|
+
paginateListSecurityGroups,
|
|
104
|
+
paginateListSecurityGroupUsers,
|
|
105
|
+
paginateListUsers,
|
|
106
|
+
};
|
|
89
107
|
export class Wickr extends WickrClient {
|
|
90
108
|
}
|
|
91
|
-
createAggregatedClient(commands, Wickr);
|
|
109
|
+
createAggregatedClient(commands, Wickr, { paginators });
|
package/dist-types/Wickr.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
1
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
2
2
|
import { BatchCreateUserCommandInput, BatchCreateUserCommandOutput } from "./commands/BatchCreateUserCommand";
|
|
3
3
|
import { BatchDeleteUserCommandInput, BatchDeleteUserCommandOutput } from "./commands/BatchDeleteUserCommand";
|
|
4
4
|
import { BatchLookupUserUnameCommandInput, BatchLookupUserUnameCommandOutput } from "./commands/BatchLookupUserUnameCommand";
|
|
@@ -296,6 +296,62 @@ export interface Wickr {
|
|
|
296
296
|
updateUser(args: UpdateUserCommandInput, options?: __HttpHandlerOptions): Promise<UpdateUserCommandOutput>;
|
|
297
297
|
updateUser(args: UpdateUserCommandInput, cb: (err: any, data?: UpdateUserCommandOutput) => void): void;
|
|
298
298
|
updateUser(args: UpdateUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateUserCommandOutput) => void): void;
|
|
299
|
+
/**
|
|
300
|
+
* @see {@link ListBlockedGuestUsersCommand}
|
|
301
|
+
* @param args - command input.
|
|
302
|
+
* @param paginationConfig - optional pagination config.
|
|
303
|
+
* @returns AsyncIterable of {@link ListBlockedGuestUsersCommandOutput}.
|
|
304
|
+
*/
|
|
305
|
+
paginateListBlockedGuestUsers(args: ListBlockedGuestUsersCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListBlockedGuestUsersCommandOutput>;
|
|
306
|
+
/**
|
|
307
|
+
* @see {@link ListBotsCommand}
|
|
308
|
+
* @param args - command input.
|
|
309
|
+
* @param paginationConfig - optional pagination config.
|
|
310
|
+
* @returns AsyncIterable of {@link ListBotsCommandOutput}.
|
|
311
|
+
*/
|
|
312
|
+
paginateListBots(args: ListBotsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListBotsCommandOutput>;
|
|
313
|
+
/**
|
|
314
|
+
* @see {@link ListDevicesForUserCommand}
|
|
315
|
+
* @param args - command input.
|
|
316
|
+
* @param paginationConfig - optional pagination config.
|
|
317
|
+
* @returns AsyncIterable of {@link ListDevicesForUserCommandOutput}.
|
|
318
|
+
*/
|
|
319
|
+
paginateListDevicesForUser(args: ListDevicesForUserCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListDevicesForUserCommandOutput>;
|
|
320
|
+
/**
|
|
321
|
+
* @see {@link ListGuestUsersCommand}
|
|
322
|
+
* @param args - command input.
|
|
323
|
+
* @param paginationConfig - optional pagination config.
|
|
324
|
+
* @returns AsyncIterable of {@link ListGuestUsersCommandOutput}.
|
|
325
|
+
*/
|
|
326
|
+
paginateListGuestUsers(args: ListGuestUsersCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListGuestUsersCommandOutput>;
|
|
327
|
+
/**
|
|
328
|
+
* @see {@link ListNetworksCommand}
|
|
329
|
+
* @param args - command input.
|
|
330
|
+
* @param paginationConfig - optional pagination config.
|
|
331
|
+
* @returns AsyncIterable of {@link ListNetworksCommandOutput}.
|
|
332
|
+
*/
|
|
333
|
+
paginateListNetworks(args?: ListNetworksCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListNetworksCommandOutput>;
|
|
334
|
+
/**
|
|
335
|
+
* @see {@link ListSecurityGroupsCommand}
|
|
336
|
+
* @param args - command input.
|
|
337
|
+
* @param paginationConfig - optional pagination config.
|
|
338
|
+
* @returns AsyncIterable of {@link ListSecurityGroupsCommandOutput}.
|
|
339
|
+
*/
|
|
340
|
+
paginateListSecurityGroups(args: ListSecurityGroupsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListSecurityGroupsCommandOutput>;
|
|
341
|
+
/**
|
|
342
|
+
* @see {@link ListSecurityGroupUsersCommand}
|
|
343
|
+
* @param args - command input.
|
|
344
|
+
* @param paginationConfig - optional pagination config.
|
|
345
|
+
* @returns AsyncIterable of {@link ListSecurityGroupUsersCommandOutput}.
|
|
346
|
+
*/
|
|
347
|
+
paginateListSecurityGroupUsers(args: ListSecurityGroupUsersCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListSecurityGroupUsersCommandOutput>;
|
|
348
|
+
/**
|
|
349
|
+
* @see {@link ListUsersCommand}
|
|
350
|
+
* @param args - command input.
|
|
351
|
+
* @param paginationConfig - optional pagination config.
|
|
352
|
+
* @returns AsyncIterable of {@link ListUsersCommandOutput}.
|
|
353
|
+
*/
|
|
354
|
+
paginateListUsers(args: ListUsersCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListUsersCommandOutput>;
|
|
299
355
|
}
|
|
300
356
|
/**
|
|
301
357
|
* <p>Welcome to the <i>Amazon Web Services Wickr API Reference</i>.</p> <p>The Amazon Web Services Wickr application programming interface (API) is designed for administrators to perform key tasks, such as creating and managing Amazon Web Services Wickr, networks, users, security groups, bots and more. This guide provides detailed information about the Amazon Web Services Wickr API, including operations, types, inputs and outputs, and error codes. You can use an Amazon Web Services SDK, the Amazon Web Services Command Line Interface (Amazon Web Services CLI, or the REST API to make API calls for Amazon Web Services Wickr. </p> <p> <i>Using Amazon Web Services SDK</i> </p> <p>The SDK clients authenticate your requests by using access keys that you provide. For more information, see <a href="https://docs.aws.amazon.com/sdkref/latest/guide/access.html">Authentication and access using Amazon Web Services SDKs and tools</a> in the <i>Amazon Web Services SDKs and Tools Reference Guide</i>. </p> <p> <i>Using Amazon Web Services CLI</i> </p> <p>Use your access keys with the Amazon Web Services CLI to make API calls. For more information about setting up the Amazon Web Services CLI, see <a href="https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-getting-started.html">Getting started with the Amazon Web Services CLI</a> in the <i>Amazon Web Services Command Line Interface User Guide for Version 2</i>. </p> <p> <i>Using REST APIs</i> </p> <p>If you use REST to make API calls, you must authenticate your request by providing a signature. Amazon Web Services Wickr supports Signature Version 4. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_sigv.html">Amazon Web Services Signature Version 4 for API requests</a> in the <i>Amazon Web Services Identity and Access Management User Guide</i>. </p> <p>Access and permissions to the APIs can be controlled by Amazon Web Services Identity and Access Management. The managed policy <a href="https://docs.aws.amazon.com/wickr/latest/adminguide/security-iam-awsmanpol.html#security-iam-awsmanpol-AWSWickrFullAccess">Amazon Web ServicesWickrFullAccess</a> grants full administrative permission to the Amazon Web Services Wickr service APIs. For more information on restricting access to specific operations, see <a href="https://docs.aws.amazon.com/wickr/latest/adminguide/security-iam.html">Identity and access management for Amazon Web Services Wickr </a> in the <i>Amazon Web Services Wickr Administration Guide</i>. </p> <p> <i>Types of Errors</i>:</p> <p>The Amazon Web Services Wickr APIs provide an HTTP interface. HTTP defines ranges of HTTP Status Codes for different types of error responses.</p> <ol> <li> <p>Client errors are indicated by HTTP Status Code class of 4xx</p> </li> <li> <p>Service errors are indicated by HTTP Status Code class of 5xx</p> </li> </ol> <p>In this reference guide, the documentation for each API has an Errors section that includes a brief discussion about HTTP status codes. We recommend looking there as part of your investigation when you get an error.</p>
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
PaginationConfiguration,
|
|
4
|
+
Paginator,
|
|
5
|
+
} from "@smithy/types";
|
|
2
6
|
import {
|
|
3
7
|
BatchCreateUserCommandInput,
|
|
4
8
|
BatchCreateUserCommandOutput,
|
|
@@ -716,5 +720,61 @@ export interface Wickr {
|
|
|
716
720
|
options: __HttpHandlerOptions,
|
|
717
721
|
cb: (err: any, data?: UpdateUserCommandOutput) => void
|
|
718
722
|
): void;
|
|
723
|
+
paginateListBlockedGuestUsers(
|
|
724
|
+
args: ListBlockedGuestUsersCommandInput,
|
|
725
|
+
paginationConfig?: Pick<
|
|
726
|
+
PaginationConfiguration,
|
|
727
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
728
|
+
>
|
|
729
|
+
): Paginator<ListBlockedGuestUsersCommandOutput>;
|
|
730
|
+
paginateListBots(
|
|
731
|
+
args: ListBotsCommandInput,
|
|
732
|
+
paginationConfig?: Pick<
|
|
733
|
+
PaginationConfiguration,
|
|
734
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
735
|
+
>
|
|
736
|
+
): Paginator<ListBotsCommandOutput>;
|
|
737
|
+
paginateListDevicesForUser(
|
|
738
|
+
args: ListDevicesForUserCommandInput,
|
|
739
|
+
paginationConfig?: Pick<
|
|
740
|
+
PaginationConfiguration,
|
|
741
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
742
|
+
>
|
|
743
|
+
): Paginator<ListDevicesForUserCommandOutput>;
|
|
744
|
+
paginateListGuestUsers(
|
|
745
|
+
args: ListGuestUsersCommandInput,
|
|
746
|
+
paginationConfig?: Pick<
|
|
747
|
+
PaginationConfiguration,
|
|
748
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
749
|
+
>
|
|
750
|
+
): Paginator<ListGuestUsersCommandOutput>;
|
|
751
|
+
paginateListNetworks(
|
|
752
|
+
args?: ListNetworksCommandInput,
|
|
753
|
+
paginationConfig?: Pick<
|
|
754
|
+
PaginationConfiguration,
|
|
755
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
756
|
+
>
|
|
757
|
+
): Paginator<ListNetworksCommandOutput>;
|
|
758
|
+
paginateListSecurityGroups(
|
|
759
|
+
args: ListSecurityGroupsCommandInput,
|
|
760
|
+
paginationConfig?: Pick<
|
|
761
|
+
PaginationConfiguration,
|
|
762
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
763
|
+
>
|
|
764
|
+
): Paginator<ListSecurityGroupsCommandOutput>;
|
|
765
|
+
paginateListSecurityGroupUsers(
|
|
766
|
+
args: ListSecurityGroupUsersCommandInput,
|
|
767
|
+
paginationConfig?: Pick<
|
|
768
|
+
PaginationConfiguration,
|
|
769
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
770
|
+
>
|
|
771
|
+
): Paginator<ListSecurityGroupUsersCommandOutput>;
|
|
772
|
+
paginateListUsers(
|
|
773
|
+
args: ListUsersCommandInput,
|
|
774
|
+
paginationConfig?: Pick<
|
|
775
|
+
PaginationConfiguration,
|
|
776
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
777
|
+
>
|
|
778
|
+
): Paginator<ListUsersCommandOutput>;
|
|
719
779
|
}
|
|
720
780
|
export declare class Wickr extends WickrClient implements Wickr {}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-wickr",
|
|
3
3
|
"description": "AWS SDK for JavaScript Wickr Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.978.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-wickr",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
27
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
31
|
-
"@aws-sdk/types": "^3.973.
|
|
24
|
+
"@aws-sdk/core": "^3.973.4",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.2",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "^3.972.2",
|
|
27
|
+
"@aws-sdk/middleware-logger": "^3.972.2",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.2",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.4",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.2",
|
|
31
|
+
"@aws-sdk/types": "^3.973.1",
|
|
32
32
|
"@aws-sdk/util-endpoints": "3.972.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.2",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.2",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
-
"@smithy/core": "^3.
|
|
36
|
+
"@smithy/core": "^3.22.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
38
|
"@smithy/hash-node": "^4.2.8",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.29",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.9",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.8",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.8",
|
|
46
46
|
"@smithy/node-http-handler": "^4.4.8",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
-
"@smithy/smithy-client": "^4.
|
|
48
|
+
"@smithy/smithy-client": "^4.11.1",
|
|
49
49
|
"@smithy/types": "^4.12.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.8",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.28",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.31",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.8",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.8",
|
|
58
58
|
"@smithy/util-retry": "^4.2.8",
|