@aws-sdk/client-secrets-manager 3.40.0 → 3.41.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/CHANGELOG.md +11 -0
- package/dist-cjs/endpoints.js +8 -0
- package/dist-es/endpoints.js +8 -0
- package/dist-types/commands/CancelRotateSecretCommand.d.ts +1 -1
- package/dist-types/commands/CreateSecretCommand.d.ts +1 -1
- package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +1 -1
- package/dist-types/commands/DeleteSecretCommand.d.ts +1 -1
- package/dist-types/commands/DescribeSecretCommand.d.ts +1 -1
- package/dist-types/commands/GetRandomPasswordCommand.d.ts +1 -1
- package/dist-types/commands/GetResourcePolicyCommand.d.ts +1 -1
- package/dist-types/commands/GetSecretValueCommand.d.ts +1 -1
- package/dist-types/commands/ListSecretVersionIdsCommand.d.ts +1 -1
- package/dist-types/commands/ListSecretsCommand.d.ts +1 -1
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +1 -1
- package/dist-types/commands/PutSecretValueCommand.d.ts +1 -1
- package/dist-types/commands/RemoveRegionsFromReplicationCommand.d.ts +1 -1
- package/dist-types/commands/ReplicateSecretToRegionsCommand.d.ts +1 -1
- package/dist-types/commands/RestoreSecretCommand.d.ts +1 -1
- package/dist-types/commands/RotateSecretCommand.d.ts +1 -1
- package/dist-types/commands/StopReplicationToReplicaCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateSecretCommand.d.ts +1 -1
- package/dist-types/commands/UpdateSecretVersionStageCommand.d.ts +1 -1
- package/dist-types/commands/ValidateResourcePolicyCommand.d.ts +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.41.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.40.1...v3.41.0) (2021-11-11)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **clients:** update clients as of 2021/11/11 ([#3015](https://github.com/aws/aws-sdk-js-v3/issues/3015)) ([3d82c4e](https://github.com/aws/aws-sdk-js-v3/commit/3d82c4e3c4d174533f46ce35495cf5cffabdb35a))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [3.40.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.39.0...v3.40.0) (2021-11-05)
|
|
7
18
|
|
|
8
19
|
|
package/dist-cjs/endpoints.js
CHANGED
|
@@ -155,6 +155,10 @@ const partitionHash = {
|
|
|
155
155
|
hostname: "secretsmanager.{region}.c2s.ic.gov",
|
|
156
156
|
tags: [],
|
|
157
157
|
},
|
|
158
|
+
{
|
|
159
|
+
hostname: "secretsmanager-fips.{region}.c2s.ic.gov",
|
|
160
|
+
tags: ["fips"],
|
|
161
|
+
},
|
|
158
162
|
],
|
|
159
163
|
},
|
|
160
164
|
"aws-iso-b": {
|
|
@@ -165,6 +169,10 @@ const partitionHash = {
|
|
|
165
169
|
hostname: "secretsmanager.{region}.sc2s.sgov.gov",
|
|
166
170
|
tags: [],
|
|
167
171
|
},
|
|
172
|
+
{
|
|
173
|
+
hostname: "secretsmanager-fips.{region}.sc2s.sgov.gov",
|
|
174
|
+
tags: ["fips"],
|
|
175
|
+
},
|
|
168
176
|
],
|
|
169
177
|
},
|
|
170
178
|
"aws-us-gov": {
|
package/dist-es/endpoints.js
CHANGED
|
@@ -153,6 +153,10 @@ var partitionHash = {
|
|
|
153
153
|
hostname: "secretsmanager.{region}.c2s.ic.gov",
|
|
154
154
|
tags: [],
|
|
155
155
|
},
|
|
156
|
+
{
|
|
157
|
+
hostname: "secretsmanager-fips.{region}.c2s.ic.gov",
|
|
158
|
+
tags: ["fips"],
|
|
159
|
+
},
|
|
156
160
|
],
|
|
157
161
|
},
|
|
158
162
|
"aws-iso-b": {
|
|
@@ -163,6 +167,10 @@ var partitionHash = {
|
|
|
163
167
|
hostname: "secretsmanager.{region}.sc2s.sgov.gov",
|
|
164
168
|
tags: [],
|
|
165
169
|
},
|
|
170
|
+
{
|
|
171
|
+
hostname: "secretsmanager-fips.{region}.sc2s.sgov.gov",
|
|
172
|
+
tags: ["fips"],
|
|
173
|
+
},
|
|
166
174
|
],
|
|
167
175
|
},
|
|
168
176
|
"aws-us-gov": {
|
|
@@ -72,7 +72,7 @@ export interface CancelRotateSecretCommandOutput extends CancelRotateSecretRespo
|
|
|
72
72
|
*
|
|
73
73
|
* @see {@link CancelRotateSecretCommandInput} for command's `input` shape.
|
|
74
74
|
* @see {@link CancelRotateSecretCommandOutput} for command's `response` shape.
|
|
75
|
-
* @see {@link SecretsManagerClientResolvedConfig | config} for
|
|
75
|
+
* @see {@link SecretsManagerClientResolvedConfig | config} for SecretsManagerClient's `config` shape.
|
|
76
76
|
*
|
|
77
77
|
*/
|
|
78
78
|
export declare class CancelRotateSecretCommand extends $Command<CancelRotateSecretCommandInput, CancelRotateSecretCommandOutput, SecretsManagerClientResolvedConfig> {
|
|
@@ -107,7 +107,7 @@ export interface CreateSecretCommandOutput extends CreateSecretResponse, __Metad
|
|
|
107
107
|
*
|
|
108
108
|
* @see {@link CreateSecretCommandInput} for command's `input` shape.
|
|
109
109
|
* @see {@link CreateSecretCommandOutput} for command's `response` shape.
|
|
110
|
-
* @see {@link SecretsManagerClientResolvedConfig | config} for
|
|
110
|
+
* @see {@link SecretsManagerClientResolvedConfig | config} for SecretsManagerClient's `config` shape.
|
|
111
111
|
*
|
|
112
112
|
*/
|
|
113
113
|
export declare class CreateSecretCommand extends $Command<CreateSecretCommandInput, CreateSecretCommandOutput, SecretsManagerClientResolvedConfig> {
|
|
@@ -43,7 +43,7 @@ export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyR
|
|
|
43
43
|
*
|
|
44
44
|
* @see {@link DeleteResourcePolicyCommandInput} for command's `input` shape.
|
|
45
45
|
* @see {@link DeleteResourcePolicyCommandOutput} for command's `response` shape.
|
|
46
|
-
* @see {@link SecretsManagerClientResolvedConfig | config} for
|
|
46
|
+
* @see {@link SecretsManagerClientResolvedConfig | config} for SecretsManagerClient's `config` shape.
|
|
47
47
|
*
|
|
48
48
|
*/
|
|
49
49
|
export declare class DeleteResourcePolicyCommand extends $Command<DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput, SecretsManagerClientResolvedConfig> {
|
|
@@ -65,7 +65,7 @@ export interface DeleteSecretCommandOutput extends DeleteSecretResponse, __Metad
|
|
|
65
65
|
*
|
|
66
66
|
* @see {@link DeleteSecretCommandInput} for command's `input` shape.
|
|
67
67
|
* @see {@link DeleteSecretCommandOutput} for command's `response` shape.
|
|
68
|
-
* @see {@link SecretsManagerClientResolvedConfig | config} for
|
|
68
|
+
* @see {@link SecretsManagerClientResolvedConfig | config} for SecretsManagerClient's `config` shape.
|
|
69
69
|
*
|
|
70
70
|
*/
|
|
71
71
|
export declare class DeleteSecretCommand extends $Command<DeleteSecretCommandInput, DeleteSecretCommandOutput, SecretsManagerClientResolvedConfig> {
|
|
@@ -47,7 +47,7 @@ export interface DescribeSecretCommandOutput extends DescribeSecretResponse, __M
|
|
|
47
47
|
*
|
|
48
48
|
* @see {@link DescribeSecretCommandInput} for command's `input` shape.
|
|
49
49
|
* @see {@link DescribeSecretCommandOutput} for command's `response` shape.
|
|
50
|
-
* @see {@link SecretsManagerClientResolvedConfig | config} for
|
|
50
|
+
* @see {@link SecretsManagerClientResolvedConfig | config} for SecretsManagerClient's `config` shape.
|
|
51
51
|
*
|
|
52
52
|
*/
|
|
53
53
|
export declare class DescribeSecretCommand extends $Command<DescribeSecretCommandInput, DescribeSecretCommandOutput, SecretsManagerClientResolvedConfig> {
|
|
@@ -32,7 +32,7 @@ export interface GetRandomPasswordCommandOutput extends GetRandomPasswordRespons
|
|
|
32
32
|
*
|
|
33
33
|
* @see {@link GetRandomPasswordCommandInput} for command's `input` shape.
|
|
34
34
|
* @see {@link GetRandomPasswordCommandOutput} for command's `response` shape.
|
|
35
|
-
* @see {@link SecretsManagerClientResolvedConfig | config} for
|
|
35
|
+
* @see {@link SecretsManagerClientResolvedConfig | config} for SecretsManagerClient's `config` shape.
|
|
36
36
|
*
|
|
37
37
|
*/
|
|
38
38
|
export declare class GetRandomPasswordCommand extends $Command<GetRandomPasswordCommandInput, GetRandomPasswordCommandOutput, SecretsManagerClientResolvedConfig> {
|
|
@@ -46,7 +46,7 @@ export interface GetResourcePolicyCommandOutput extends GetResourcePolicyRespons
|
|
|
46
46
|
*
|
|
47
47
|
* @see {@link GetResourcePolicyCommandInput} for command's `input` shape.
|
|
48
48
|
* @see {@link GetResourcePolicyCommandOutput} for command's `response` shape.
|
|
49
|
-
* @see {@link SecretsManagerClientResolvedConfig | config} for
|
|
49
|
+
* @see {@link SecretsManagerClientResolvedConfig | config} for SecretsManagerClient's `config` shape.
|
|
50
50
|
*
|
|
51
51
|
*/
|
|
52
52
|
export declare class GetResourcePolicyCommand extends $Command<GetResourcePolicyCommandInput, GetResourcePolicyCommandOutput, SecretsManagerClientResolvedConfig> {
|
|
@@ -47,7 +47,7 @@ export interface GetSecretValueCommandOutput extends GetSecretValueResponse, __M
|
|
|
47
47
|
*
|
|
48
48
|
* @see {@link GetSecretValueCommandInput} for command's `input` shape.
|
|
49
49
|
* @see {@link GetSecretValueCommandOutput} for command's `response` shape.
|
|
50
|
-
* @see {@link SecretsManagerClientResolvedConfig | config} for
|
|
50
|
+
* @see {@link SecretsManagerClientResolvedConfig | config} for SecretsManagerClient's `config` shape.
|
|
51
51
|
*
|
|
52
52
|
*/
|
|
53
53
|
export declare class GetSecretValueCommand extends $Command<GetSecretValueCommandInput, GetSecretValueCommandOutput, SecretsManagerClientResolvedConfig> {
|
|
@@ -48,7 +48,7 @@ export interface ListSecretVersionIdsCommandOutput extends ListSecretVersionIdsR
|
|
|
48
48
|
*
|
|
49
49
|
* @see {@link ListSecretVersionIdsCommandInput} for command's `input` shape.
|
|
50
50
|
* @see {@link ListSecretVersionIdsCommandOutput} for command's `response` shape.
|
|
51
|
-
* @see {@link SecretsManagerClientResolvedConfig | config} for
|
|
51
|
+
* @see {@link SecretsManagerClientResolvedConfig | config} for SecretsManagerClient's `config` shape.
|
|
52
52
|
*
|
|
53
53
|
*/
|
|
54
54
|
export declare class ListSecretVersionIdsCommand extends $Command<ListSecretVersionIdsCommandInput, ListSecretVersionIdsCommandOutput, SecretsManagerClientResolvedConfig> {
|
|
@@ -49,7 +49,7 @@ export interface ListSecretsCommandOutput extends ListSecretsResponse, __Metadat
|
|
|
49
49
|
*
|
|
50
50
|
* @see {@link ListSecretsCommandInput} for command's `input` shape.
|
|
51
51
|
* @see {@link ListSecretsCommandOutput} for command's `response` shape.
|
|
52
|
-
* @see {@link SecretsManagerClientResolvedConfig | config} for
|
|
52
|
+
* @see {@link SecretsManagerClientResolvedConfig | config} for SecretsManagerClient's `config` shape.
|
|
53
53
|
*
|
|
54
54
|
*/
|
|
55
55
|
export declare class ListSecretsCommand extends $Command<ListSecretsCommandInput, ListSecretsCommandOutput, SecretsManagerClientResolvedConfig> {
|
|
@@ -51,7 +51,7 @@ export interface PutResourcePolicyCommandOutput extends PutResourcePolicyRespons
|
|
|
51
51
|
*
|
|
52
52
|
* @see {@link PutResourcePolicyCommandInput} for command's `input` shape.
|
|
53
53
|
* @see {@link PutResourcePolicyCommandOutput} for command's `response` shape.
|
|
54
|
-
* @see {@link SecretsManagerClientResolvedConfig | config} for
|
|
54
|
+
* @see {@link SecretsManagerClientResolvedConfig | config} for SecretsManagerClient's `config` shape.
|
|
55
55
|
*
|
|
56
56
|
*/
|
|
57
57
|
export declare class PutResourcePolicyCommand extends $Command<PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput, SecretsManagerClientResolvedConfig> {
|
|
@@ -108,7 +108,7 @@ export interface PutSecretValueCommandOutput extends PutSecretValueResponse, __M
|
|
|
108
108
|
*
|
|
109
109
|
* @see {@link PutSecretValueCommandInput} for command's `input` shape.
|
|
110
110
|
* @see {@link PutSecretValueCommandOutput} for command's `response` shape.
|
|
111
|
-
* @see {@link SecretsManagerClientResolvedConfig | config} for
|
|
111
|
+
* @see {@link SecretsManagerClientResolvedConfig | config} for SecretsManagerClient's `config` shape.
|
|
112
112
|
*
|
|
113
113
|
*/
|
|
114
114
|
export declare class PutSecretValueCommand extends $Command<PutSecretValueCommandInput, PutSecretValueCommandOutput, SecretsManagerClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface RemoveRegionsFromReplicationCommandOutput extends RemoveRegions
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link RemoveRegionsFromReplicationCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link RemoveRegionsFromReplicationCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link SecretsManagerClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link SecretsManagerClientResolvedConfig | config} for SecretsManagerClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class RemoveRegionsFromReplicationCommand extends $Command<RemoveRegionsFromReplicationCommandInput, RemoveRegionsFromReplicationCommandOutput, SecretsManagerClientResolvedConfig> {
|
|
@@ -21,7 +21,7 @@ export interface ReplicateSecretToRegionsCommandOutput extends ReplicateSecretTo
|
|
|
21
21
|
*
|
|
22
22
|
* @see {@link ReplicateSecretToRegionsCommandInput} for command's `input` shape.
|
|
23
23
|
* @see {@link ReplicateSecretToRegionsCommandOutput} for command's `response` shape.
|
|
24
|
-
* @see {@link SecretsManagerClientResolvedConfig | config} for
|
|
24
|
+
* @see {@link SecretsManagerClientResolvedConfig | config} for SecretsManagerClient's `config` shape.
|
|
25
25
|
*
|
|
26
26
|
*/
|
|
27
27
|
export declare class ReplicateSecretToRegionsCommand extends $Command<ReplicateSecretToRegionsCommandInput, ReplicateSecretToRegionsCommandOutput, SecretsManagerClientResolvedConfig> {
|
|
@@ -38,7 +38,7 @@ export interface RestoreSecretCommandOutput extends RestoreSecretResponse, __Met
|
|
|
38
38
|
*
|
|
39
39
|
* @see {@link RestoreSecretCommandInput} for command's `input` shape.
|
|
40
40
|
* @see {@link RestoreSecretCommandOutput} for command's `response` shape.
|
|
41
|
-
* @see {@link SecretsManagerClientResolvedConfig | config} for
|
|
41
|
+
* @see {@link SecretsManagerClientResolvedConfig | config} for SecretsManagerClient's `config` shape.
|
|
42
42
|
*
|
|
43
43
|
*/
|
|
44
44
|
export declare class RestoreSecretCommand extends $Command<RestoreSecretCommandInput, RestoreSecretCommandOutput, SecretsManagerClientResolvedConfig> {
|
|
@@ -81,7 +81,7 @@ export interface RotateSecretCommandOutput extends RotateSecretResponse, __Metad
|
|
|
81
81
|
*
|
|
82
82
|
* @see {@link RotateSecretCommandInput} for command's `input` shape.
|
|
83
83
|
* @see {@link RotateSecretCommandOutput} for command's `response` shape.
|
|
84
|
-
* @see {@link SecretsManagerClientResolvedConfig | config} for
|
|
84
|
+
* @see {@link SecretsManagerClientResolvedConfig | config} for SecretsManagerClient's `config` shape.
|
|
85
85
|
*
|
|
86
86
|
*/
|
|
87
87
|
export declare class RotateSecretCommand extends $Command<RotateSecretCommandInput, RotateSecretCommandOutput, SecretsManagerClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface StopReplicationToReplicaCommandOutput extends StopReplicationTo
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link StopReplicationToReplicaCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link StopReplicationToReplicaCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link SecretsManagerClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link SecretsManagerClientResolvedConfig | config} for SecretsManagerClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class StopReplicationToReplicaCommand extends $Command<StopReplicationToReplicaCommandInput, StopReplicationToReplicaCommandOutput, SecretsManagerClientResolvedConfig> {
|
|
@@ -75,7 +75,7 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
|
|
|
75
75
|
*
|
|
76
76
|
* @see {@link TagResourceCommandInput} for command's `input` shape.
|
|
77
77
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
78
|
-
* @see {@link SecretsManagerClientResolvedConfig | config} for
|
|
78
|
+
* @see {@link SecretsManagerClientResolvedConfig | config} for SecretsManagerClient's `config` shape.
|
|
79
79
|
*
|
|
80
80
|
*/
|
|
81
81
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, SecretsManagerClientResolvedConfig> {
|
|
@@ -48,7 +48,7 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
|
48
48
|
*
|
|
49
49
|
* @see {@link UntagResourceCommandInput} for command's `input` shape.
|
|
50
50
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
51
|
-
* @see {@link SecretsManagerClientResolvedConfig | config} for
|
|
51
|
+
* @see {@link SecretsManagerClientResolvedConfig | config} for SecretsManagerClient's `config` shape.
|
|
52
52
|
*
|
|
53
53
|
*/
|
|
54
54
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, SecretsManagerClientResolvedConfig> {
|
|
@@ -109,7 +109,7 @@ export interface UpdateSecretCommandOutput extends UpdateSecretResponse, __Metad
|
|
|
109
109
|
*
|
|
110
110
|
* @see {@link UpdateSecretCommandInput} for command's `input` shape.
|
|
111
111
|
* @see {@link UpdateSecretCommandOutput} for command's `response` shape.
|
|
112
|
-
* @see {@link SecretsManagerClientResolvedConfig | config} for
|
|
112
|
+
* @see {@link SecretsManagerClientResolvedConfig | config} for SecretsManagerClient's `config` shape.
|
|
113
113
|
*
|
|
114
114
|
*/
|
|
115
115
|
export declare class UpdateSecretCommand extends $Command<UpdateSecretCommandInput, UpdateSecretCommandOutput, SecretsManagerClientResolvedConfig> {
|
|
@@ -56,7 +56,7 @@ export interface UpdateSecretVersionStageCommandOutput extends UpdateSecretVersi
|
|
|
56
56
|
*
|
|
57
57
|
* @see {@link UpdateSecretVersionStageCommandInput} for command's `input` shape.
|
|
58
58
|
* @see {@link UpdateSecretVersionStageCommandOutput} for command's `response` shape.
|
|
59
|
-
* @see {@link SecretsManagerClientResolvedConfig | config} for
|
|
59
|
+
* @see {@link SecretsManagerClientResolvedConfig | config} for SecretsManagerClient's `config` shape.
|
|
60
60
|
*
|
|
61
61
|
*/
|
|
62
62
|
export declare class UpdateSecretVersionStageCommand extends $Command<UpdateSecretVersionStageCommandInput, UpdateSecretVersionStageCommandOutput, SecretsManagerClientResolvedConfig> {
|
|
@@ -54,7 +54,7 @@ export interface ValidateResourcePolicyCommandOutput extends ValidateResourcePol
|
|
|
54
54
|
*
|
|
55
55
|
* @see {@link ValidateResourcePolicyCommandInput} for command's `input` shape.
|
|
56
56
|
* @see {@link ValidateResourcePolicyCommandOutput} for command's `response` shape.
|
|
57
|
-
* @see {@link SecretsManagerClientResolvedConfig | config} for
|
|
57
|
+
* @see {@link SecretsManagerClientResolvedConfig | config} for SecretsManagerClient's `config` shape.
|
|
58
58
|
*
|
|
59
59
|
*/
|
|
60
60
|
export declare class ValidateResourcePolicyCommand extends $Command<ValidateResourcePolicyCommandInput, ValidateResourcePolicyCommandOutput, SecretsManagerClientResolvedConfig> {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-secrets-manager",
|
|
3
3
|
"description": "AWS SDK for JavaScript Secrets Manager Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.41.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "yarn build:cjs && yarn build:es && yarn build:types",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.41.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.40.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.41.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.40.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.40.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.40.0",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@aws-sdk/node-config-provider": "3.40.0",
|
|
39
39
|
"@aws-sdk/node-http-handler": "3.40.0",
|
|
40
40
|
"@aws-sdk/protocol-http": "3.40.0",
|
|
41
|
-
"@aws-sdk/smithy-client": "3.
|
|
41
|
+
"@aws-sdk/smithy-client": "3.41.0",
|
|
42
42
|
"@aws-sdk/types": "3.40.0",
|
|
43
43
|
"@aws-sdk/url-parser": "3.40.0",
|
|
44
44
|
"@aws-sdk/util-base64-browser": "3.37.0",
|