@aws-sdk/client-secrets-manager 3.934.0 → 3.935.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 (43) hide show
  1. package/dist-cjs/index.js +72 -29
  2. package/dist-es/index.js +2 -1
  3. package/dist-es/models/enums.js +18 -0
  4. package/dist-es/models/errors.js +169 -0
  5. package/dist-es/models/models_0.js +1 -187
  6. package/dist-es/schemas/schemas_0.js +54 -12
  7. package/dist-types/commands/BatchGetSecretValueCommand.d.ts +17 -6
  8. package/dist-types/commands/CancelRotateSecretCommand.d.ts +11 -13
  9. package/dist-types/commands/CreateSecretCommand.d.ts +40 -30
  10. package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +5 -5
  11. package/dist-types/commands/DeleteSecretCommand.d.ts +25 -23
  12. package/dist-types/commands/DescribeSecretCommand.d.ts +13 -5
  13. package/dist-types/commands/GetRandomPasswordCommand.d.ts +10 -7
  14. package/dist-types/commands/GetResourcePolicyCommand.d.ts +5 -7
  15. package/dist-types/commands/GetSecretValueCommand.d.ts +12 -12
  16. package/dist-types/commands/ListSecretVersionIdsCommand.d.ts +6 -6
  17. package/dist-types/commands/ListSecretsCommand.d.ts +20 -7
  18. package/dist-types/commands/PutResourcePolicyCommand.d.ts +5 -6
  19. package/dist-types/commands/PutSecretValueCommand.d.ts +29 -25
  20. package/dist-types/commands/RemoveRegionsFromReplicationCommand.d.ts +5 -3
  21. package/dist-types/commands/ReplicateSecretToRegionsCommand.d.ts +8 -3
  22. package/dist-types/commands/RestoreSecretCommand.d.ts +5 -5
  23. package/dist-types/commands/RotateSecretCommand.d.ts +28 -13
  24. package/dist-types/commands/StopReplicationToReplicaCommand.d.ts +7 -5
  25. package/dist-types/commands/TagResourceCommand.d.ts +12 -11
  26. package/dist-types/commands/UntagResourceCommand.d.ts +8 -8
  27. package/dist-types/commands/UpdateSecretCommand.d.ts +35 -24
  28. package/dist-types/commands/UpdateSecretVersionStageCommand.d.ts +19 -16
  29. package/dist-types/commands/ValidateResourcePolicyCommand.d.ts +8 -6
  30. package/dist-types/index.d.ts +3 -1
  31. package/dist-types/models/enums.d.ts +42 -0
  32. package/dist-types/models/errors.d.ts +175 -0
  33. package/dist-types/models/models_0.d.ts +582 -588
  34. package/dist-types/schemas/schemas_0.d.ts +2 -0
  35. package/dist-types/ts3.4/index.d.ts +3 -1
  36. package/dist-types/ts3.4/models/enums.d.ts +22 -0
  37. package/dist-types/ts3.4/models/errors.d.ts +97 -0
  38. package/dist-types/ts3.4/models/models_0.d.ts +21 -119
  39. package/dist-types/ts3.4/schemas/schemas_0.d.ts +2 -0
  40. package/package.json +12 -12
  41. package/dist-es/models/index.js +0 -1
  42. package/dist-types/models/index.d.ts +0 -1
  43. package/dist-types/ts3.4/models/index.d.ts +0 -1
@@ -18,6 +18,7 @@ export declare var DeleteSecretResponse: StaticStructureSchema;
18
18
  export declare var DescribeSecretRequest: StaticStructureSchema;
19
19
  export declare var DescribeSecretResponse: StaticStructureSchema;
20
20
  export declare var EncryptionFailure: StaticErrorSchema;
21
+ export declare var ExternalSecretRotationMetadataItem: StaticStructureSchema;
21
22
  export declare var Filter: StaticStructureSchema;
22
23
  export declare var GetRandomPasswordRequest: StaticStructureSchema;
23
24
  export declare var GetRandomPasswordResponse: StaticStructureSchema;
@@ -73,6 +74,7 @@ export declare var __Unit: "unit";
73
74
  export declare var SecretsManagerServiceException: StaticErrorSchema;
74
75
  export declare var AddReplicaRegionListType: StaticListSchema;
75
76
  export declare var APIErrorListType: StaticListSchema;
77
+ export declare var ExternalSecretRotationMetadataType: StaticListSchema;
76
78
  export declare var FiltersListType: StaticListSchema;
77
79
  export declare var FilterValuesStringList: number;
78
80
  export declare var KmsKeyIdListType: number;
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { SecretsManagerExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
7
  export * from "./pagination";
8
- export * from "./models";
8
+ export * from "./models/enums";
9
+ export * from "./models/errors";
10
+ export * from "./models/models_0";
9
11
  export { SecretsManagerServiceException } from "./models/SecretsManagerServiceException";
@@ -0,0 +1,22 @@
1
+ export declare const FilterNameStringType: {
2
+ readonly all: "all";
3
+ readonly description: "description";
4
+ readonly name: "name";
5
+ readonly owning_service: "owning-service";
6
+ readonly primary_region: "primary-region";
7
+ readonly tag_key: "tag-key";
8
+ readonly tag_value: "tag-value";
9
+ };
10
+ export type FilterNameStringType =
11
+ (typeof FilterNameStringType)[keyof typeof FilterNameStringType];
12
+ export declare const StatusType: {
13
+ readonly Failed: "Failed";
14
+ readonly InProgress: "InProgress";
15
+ readonly InSync: "InSync";
16
+ };
17
+ export type StatusType = (typeof StatusType)[keyof typeof StatusType];
18
+ export declare const SortOrderType: {
19
+ readonly asc: "asc";
20
+ readonly desc: "desc";
21
+ };
22
+ export type SortOrderType = (typeof SortOrderType)[keyof typeof SortOrderType];
@@ -0,0 +1,97 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { SecretsManagerServiceException as __BaseException } from "./SecretsManagerServiceException";
3
+ export declare class DecryptionFailure extends __BaseException {
4
+ readonly name: "DecryptionFailure";
5
+ readonly $fault: "client";
6
+ Message?: string | undefined;
7
+ constructor(opts: __ExceptionOptionType<DecryptionFailure, __BaseException>);
8
+ }
9
+ export declare class InternalServiceError extends __BaseException {
10
+ readonly name: "InternalServiceError";
11
+ readonly $fault: "server";
12
+ Message?: string | undefined;
13
+ constructor(
14
+ opts: __ExceptionOptionType<InternalServiceError, __BaseException>
15
+ );
16
+ }
17
+ export declare class InvalidNextTokenException extends __BaseException {
18
+ readonly name: "InvalidNextTokenException";
19
+ readonly $fault: "client";
20
+ Message?: string | undefined;
21
+ constructor(
22
+ opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>
23
+ );
24
+ }
25
+ export declare class InvalidParameterException extends __BaseException {
26
+ readonly name: "InvalidParameterException";
27
+ readonly $fault: "client";
28
+ Message?: string | undefined;
29
+ constructor(
30
+ opts: __ExceptionOptionType<InvalidParameterException, __BaseException>
31
+ );
32
+ }
33
+ export declare class InvalidRequestException extends __BaseException {
34
+ readonly name: "InvalidRequestException";
35
+ readonly $fault: "client";
36
+ Message?: string | undefined;
37
+ constructor(
38
+ opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
39
+ );
40
+ }
41
+ export declare class ResourceNotFoundException extends __BaseException {
42
+ readonly name: "ResourceNotFoundException";
43
+ readonly $fault: "client";
44
+ Message?: string | undefined;
45
+ constructor(
46
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
47
+ );
48
+ }
49
+ export declare class EncryptionFailure extends __BaseException {
50
+ readonly name: "EncryptionFailure";
51
+ readonly $fault: "client";
52
+ Message?: string | undefined;
53
+ constructor(opts: __ExceptionOptionType<EncryptionFailure, __BaseException>);
54
+ }
55
+ export declare class LimitExceededException extends __BaseException {
56
+ readonly name: "LimitExceededException";
57
+ readonly $fault: "client";
58
+ Message?: string | undefined;
59
+ constructor(
60
+ opts: __ExceptionOptionType<LimitExceededException, __BaseException>
61
+ );
62
+ }
63
+ export declare class MalformedPolicyDocumentException extends __BaseException {
64
+ readonly name: "MalformedPolicyDocumentException";
65
+ readonly $fault: "client";
66
+ Message?: string | undefined;
67
+ constructor(
68
+ opts: __ExceptionOptionType<
69
+ MalformedPolicyDocumentException,
70
+ __BaseException
71
+ >
72
+ );
73
+ }
74
+ export declare class PreconditionNotMetException extends __BaseException {
75
+ readonly name: "PreconditionNotMetException";
76
+ readonly $fault: "client";
77
+ Message?: string | undefined;
78
+ constructor(
79
+ opts: __ExceptionOptionType<PreconditionNotMetException, __BaseException>
80
+ );
81
+ }
82
+ export declare class ResourceExistsException extends __BaseException {
83
+ readonly name: "ResourceExistsException";
84
+ readonly $fault: "client";
85
+ Message?: string | undefined;
86
+ constructor(
87
+ opts: __ExceptionOptionType<ResourceExistsException, __BaseException>
88
+ );
89
+ }
90
+ export declare class PublicPolicyException extends __BaseException {
91
+ readonly name: "PublicPolicyException";
92
+ readonly $fault: "client";
93
+ Message?: string | undefined;
94
+ constructor(
95
+ opts: __ExceptionOptionType<PublicPolicyException, __BaseException>
96
+ );
97
+ }
@@ -1,5 +1,4 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { SecretsManagerServiceException as __BaseException } from "./SecretsManagerServiceException";
1
+ import { FilterNameStringType, SortOrderType, StatusType } from "./enums";
3
2
  export interface ReplicaRegionType {
4
3
  Region?: string | undefined;
5
4
  KmsKeyId?: string | undefined;
@@ -9,17 +8,6 @@ export interface APIErrorType {
9
8
  ErrorCode?: string | undefined;
10
9
  Message?: string | undefined;
11
10
  }
12
- export declare const FilterNameStringType: {
13
- readonly all: "all";
14
- readonly description: "description";
15
- readonly name: "name";
16
- readonly owning_service: "owning-service";
17
- readonly primary_region: "primary-region";
18
- readonly tag_key: "tag-key";
19
- readonly tag_value: "tag-value";
20
- };
21
- export type FilterNameStringType =
22
- (typeof FilterNameStringType)[keyof typeof FilterNameStringType];
23
11
  export interface Filter {
24
12
  Key?: FilterNameStringType | undefined;
25
13
  Values?: string[] | undefined;
@@ -44,52 +32,6 @@ export interface BatchGetSecretValueResponse {
44
32
  NextToken?: string | undefined;
45
33
  Errors?: APIErrorType[] | undefined;
46
34
  }
47
- export declare class DecryptionFailure extends __BaseException {
48
- readonly name: "DecryptionFailure";
49
- readonly $fault: "client";
50
- Message?: string | undefined;
51
- constructor(opts: __ExceptionOptionType<DecryptionFailure, __BaseException>);
52
- }
53
- export declare class InternalServiceError extends __BaseException {
54
- readonly name: "InternalServiceError";
55
- readonly $fault: "server";
56
- Message?: string | undefined;
57
- constructor(
58
- opts: __ExceptionOptionType<InternalServiceError, __BaseException>
59
- );
60
- }
61
- export declare class InvalidNextTokenException extends __BaseException {
62
- readonly name: "InvalidNextTokenException";
63
- readonly $fault: "client";
64
- Message?: string | undefined;
65
- constructor(
66
- opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>
67
- );
68
- }
69
- export declare class InvalidParameterException extends __BaseException {
70
- readonly name: "InvalidParameterException";
71
- readonly $fault: "client";
72
- Message?: string | undefined;
73
- constructor(
74
- opts: __ExceptionOptionType<InvalidParameterException, __BaseException>
75
- );
76
- }
77
- export declare class InvalidRequestException extends __BaseException {
78
- readonly name: "InvalidRequestException";
79
- readonly $fault: "client";
80
- Message?: string | undefined;
81
- constructor(
82
- opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
83
- );
84
- }
85
- export declare class ResourceNotFoundException extends __BaseException {
86
- readonly name: "ResourceNotFoundException";
87
- readonly $fault: "client";
88
- Message?: string | undefined;
89
- constructor(
90
- opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
91
- );
92
- }
93
35
  export interface CancelRotateSecretRequest {
94
36
  SecretId: string | undefined;
95
37
  }
@@ -112,13 +54,8 @@ export interface CreateSecretRequest {
112
54
  Tags?: Tag[] | undefined;
113
55
  AddReplicaRegions?: ReplicaRegionType[] | undefined;
114
56
  ForceOverwriteReplicaSecret?: boolean | undefined;
57
+ Type?: string | undefined;
115
58
  }
116
- export declare const StatusType: {
117
- readonly Failed: "Failed";
118
- readonly InProgress: "InProgress";
119
- readonly InSync: "InSync";
120
- };
121
- export type StatusType = (typeof StatusType)[keyof typeof StatusType];
122
59
  export interface ReplicationStatusType {
123
60
  Region?: string | undefined;
124
61
  KmsKeyId?: string | undefined;
@@ -132,47 +69,6 @@ export interface CreateSecretResponse {
132
69
  VersionId?: string | undefined;
133
70
  ReplicationStatus?: ReplicationStatusType[] | undefined;
134
71
  }
135
- export declare class EncryptionFailure extends __BaseException {
136
- readonly name: "EncryptionFailure";
137
- readonly $fault: "client";
138
- Message?: string | undefined;
139
- constructor(opts: __ExceptionOptionType<EncryptionFailure, __BaseException>);
140
- }
141
- export declare class LimitExceededException extends __BaseException {
142
- readonly name: "LimitExceededException";
143
- readonly $fault: "client";
144
- Message?: string | undefined;
145
- constructor(
146
- opts: __ExceptionOptionType<LimitExceededException, __BaseException>
147
- );
148
- }
149
- export declare class MalformedPolicyDocumentException extends __BaseException {
150
- readonly name: "MalformedPolicyDocumentException";
151
- readonly $fault: "client";
152
- Message?: string | undefined;
153
- constructor(
154
- opts: __ExceptionOptionType<
155
- MalformedPolicyDocumentException,
156
- __BaseException
157
- >
158
- );
159
- }
160
- export declare class PreconditionNotMetException extends __BaseException {
161
- readonly name: "PreconditionNotMetException";
162
- readonly $fault: "client";
163
- Message?: string | undefined;
164
- constructor(
165
- opts: __ExceptionOptionType<PreconditionNotMetException, __BaseException>
166
- );
167
- }
168
- export declare class ResourceExistsException extends __BaseException {
169
- readonly name: "ResourceExistsException";
170
- readonly $fault: "client";
171
- Message?: string | undefined;
172
- constructor(
173
- opts: __ExceptionOptionType<ResourceExistsException, __BaseException>
174
- );
175
- }
176
72
  export interface DeleteResourcePolicyRequest {
177
73
  SecretId: string | undefined;
178
74
  }
@@ -193,6 +89,10 @@ export interface DeleteSecretResponse {
193
89
  export interface DescribeSecretRequest {
194
90
  SecretId: string | undefined;
195
91
  }
92
+ export interface ExternalSecretRotationMetadataItem {
93
+ Key?: string | undefined;
94
+ Value?: string | undefined;
95
+ }
196
96
  export interface RotationRulesType {
197
97
  AutomaticallyAfterDays?: number | undefined;
198
98
  Duration?: string | undefined;
@@ -201,11 +101,16 @@ export interface RotationRulesType {
201
101
  export interface DescribeSecretResponse {
202
102
  ARN?: string | undefined;
203
103
  Name?: string | undefined;
104
+ Type?: string | undefined;
204
105
  Description?: string | undefined;
205
106
  KmsKeyId?: string | undefined;
206
107
  RotationEnabled?: boolean | undefined;
207
108
  RotationLambdaARN?: string | undefined;
208
109
  RotationRules?: RotationRulesType | undefined;
110
+ ExternalSecretRotationMetadata?:
111
+ | ExternalSecretRotationMetadataItem[]
112
+ | undefined;
113
+ ExternalSecretRotationRoleArn?: string | undefined;
209
114
  LastRotatedDate?: Date | undefined;
210
115
  LastChangedDate?: Date | undefined;
211
116
  LastAccessedDate?: Date | undefined;
@@ -253,11 +158,6 @@ export interface GetSecretValueResponse {
253
158
  VersionStages?: string[] | undefined;
254
159
  CreatedDate?: Date | undefined;
255
160
  }
256
- export declare const SortOrderType: {
257
- readonly asc: "asc";
258
- readonly desc: "desc";
259
- };
260
- export type SortOrderType = (typeof SortOrderType)[keyof typeof SortOrderType];
261
161
  export interface ListSecretsRequest {
262
162
  IncludePlannedDeletion?: boolean | undefined;
263
163
  MaxResults?: number | undefined;
@@ -268,11 +168,16 @@ export interface ListSecretsRequest {
268
168
  export interface SecretListEntry {
269
169
  ARN?: string | undefined;
270
170
  Name?: string | undefined;
171
+ Type?: string | undefined;
271
172
  Description?: string | undefined;
272
173
  KmsKeyId?: string | undefined;
273
174
  RotationEnabled?: boolean | undefined;
274
175
  RotationLambdaARN?: string | undefined;
275
176
  RotationRules?: RotationRulesType | undefined;
177
+ ExternalSecretRotationMetadata?:
178
+ | ExternalSecretRotationMetadataItem[]
179
+ | undefined;
180
+ ExternalSecretRotationRoleArn?: string | undefined;
276
181
  LastRotatedDate?: Date | undefined;
277
182
  LastChangedDate?: Date | undefined;
278
183
  LastAccessedDate?: Date | undefined;
@@ -307,14 +212,6 @@ export interface ListSecretVersionIdsResponse {
307
212
  ARN?: string | undefined;
308
213
  Name?: string | undefined;
309
214
  }
310
- export declare class PublicPolicyException extends __BaseException {
311
- readonly name: "PublicPolicyException";
312
- readonly $fault: "client";
313
- Message?: string | undefined;
314
- constructor(
315
- opts: __ExceptionOptionType<PublicPolicyException, __BaseException>
316
- );
317
- }
318
215
  export interface PutResourcePolicyRequest {
319
216
  SecretId: string | undefined;
320
217
  ResourcePolicy: string | undefined;
@@ -367,6 +264,10 @@ export interface RotateSecretRequest {
367
264
  ClientRequestToken?: string | undefined;
368
265
  RotationLambdaARN?: string | undefined;
369
266
  RotationRules?: RotationRulesType | undefined;
267
+ ExternalSecretRotationMetadata?:
268
+ | ExternalSecretRotationMetadataItem[]
269
+ | undefined;
270
+ ExternalSecretRotationRoleArn?: string | undefined;
370
271
  RotateImmediately?: boolean | undefined;
371
272
  }
372
273
  export interface RotateSecretResponse {
@@ -395,6 +296,7 @@ export interface UpdateSecretRequest {
395
296
  KmsKeyId?: string | undefined;
396
297
  SecretBinary?: Uint8Array | undefined;
397
298
  SecretString?: string | undefined;
299
+ Type?: string | undefined;
398
300
  }
399
301
  export interface UpdateSecretResponse {
400
302
  ARN?: string | undefined;
@@ -25,6 +25,7 @@ export declare var DeleteSecretResponse: StaticStructureSchema;
25
25
  export declare var DescribeSecretRequest: StaticStructureSchema;
26
26
  export declare var DescribeSecretResponse: StaticStructureSchema;
27
27
  export declare var EncryptionFailure: StaticErrorSchema;
28
+ export declare var ExternalSecretRotationMetadataItem: StaticStructureSchema;
28
29
  export declare var Filter: StaticStructureSchema;
29
30
  export declare var GetRandomPasswordRequest: StaticStructureSchema;
30
31
  export declare var GetRandomPasswordResponse: StaticStructureSchema;
@@ -80,6 +81,7 @@ export declare var __Unit: "unit";
80
81
  export declare var SecretsManagerServiceException: StaticErrorSchema;
81
82
  export declare var AddReplicaRegionListType: StaticListSchema;
82
83
  export declare var APIErrorListType: StaticListSchema;
84
+ export declare var ExternalSecretRotationMetadataType: StaticListSchema;
83
85
  export declare var FiltersListType: StaticListSchema;
84
86
  export declare var FilterValuesStringList: number;
85
87
  export declare var KmsKeyIdListType: number;
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.934.0",
4
+ "version": "3.935.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-secrets-manager",
@@ -20,38 +20,38 @@
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.934.0",
24
- "@aws-sdk/credential-provider-node": "3.934.0",
23
+ "@aws-sdk/core": "3.935.0",
24
+ "@aws-sdk/credential-provider-node": "3.935.0",
25
25
  "@aws-sdk/middleware-host-header": "3.930.0",
26
26
  "@aws-sdk/middleware-logger": "3.930.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.933.0",
28
- "@aws-sdk/middleware-user-agent": "3.934.0",
28
+ "@aws-sdk/middleware-user-agent": "3.935.0",
29
29
  "@aws-sdk/region-config-resolver": "3.930.0",
30
30
  "@aws-sdk/types": "3.930.0",
31
31
  "@aws-sdk/util-endpoints": "3.930.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.930.0",
33
- "@aws-sdk/util-user-agent-node": "3.934.0",
33
+ "@aws-sdk/util-user-agent-node": "3.935.0",
34
34
  "@smithy/config-resolver": "^4.4.3",
35
- "@smithy/core": "^3.18.2",
35
+ "@smithy/core": "^3.18.5",
36
36
  "@smithy/fetch-http-handler": "^5.3.6",
37
37
  "@smithy/hash-node": "^4.2.5",
38
38
  "@smithy/invalid-dependency": "^4.2.5",
39
39
  "@smithy/middleware-content-length": "^4.2.5",
40
- "@smithy/middleware-endpoint": "^4.3.9",
41
- "@smithy/middleware-retry": "^4.4.9",
42
- "@smithy/middleware-serde": "^4.2.5",
40
+ "@smithy/middleware-endpoint": "^4.3.12",
41
+ "@smithy/middleware-retry": "^4.4.12",
42
+ "@smithy/middleware-serde": "^4.2.6",
43
43
  "@smithy/middleware-stack": "^4.2.5",
44
44
  "@smithy/node-config-provider": "^4.3.5",
45
45
  "@smithy/node-http-handler": "^4.4.5",
46
46
  "@smithy/protocol-http": "^5.3.5",
47
- "@smithy/smithy-client": "^4.9.5",
47
+ "@smithy/smithy-client": "^4.9.8",
48
48
  "@smithy/types": "^4.9.0",
49
49
  "@smithy/url-parser": "^4.2.5",
50
50
  "@smithy/util-base64": "^4.3.0",
51
51
  "@smithy/util-body-length-browser": "^4.2.0",
52
52
  "@smithy/util-body-length-node": "^4.2.1",
53
- "@smithy/util-defaults-mode-browser": "^4.3.8",
54
- "@smithy/util-defaults-mode-node": "^4.2.11",
53
+ "@smithy/util-defaults-mode-browser": "^4.3.11",
54
+ "@smithy/util-defaults-mode-node": "^4.2.14",
55
55
  "@smithy/util-endpoints": "^3.2.5",
56
56
  "@smithy/util-middleware": "^4.2.5",
57
57
  "@smithy/util-retry": "^4.2.5",
@@ -1 +0,0 @@
1
- export * from "./models_0";
@@ -1 +0,0 @@
1
- export * from "./models_0";
@@ -1 +0,0 @@
1
- export * from "./models_0";