@aws-sdk/client-verifiedpermissions 3.1012.0 → 3.1014.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/README.md +28 -0
- package/dist-cjs/index.js +67 -0
- package/dist-cjs/schemas/schemas_0.js +116 -30
- package/dist-es/VerifiedPermissions.js +10 -0
- package/dist-es/commands/CreatePolicyStoreAliasCommand.js +16 -0
- package/dist-es/commands/DeletePolicyStoreAliasCommand.js +16 -0
- package/dist-es/commands/GetPolicyStoreAliasCommand.js +16 -0
- package/dist-es/commands/ListPolicyStoreAliasesCommand.js +16 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/enums.js +6 -0
- package/dist-es/pagination/ListPolicyStoreAliasesPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +112 -26
- package/dist-types/VerifiedPermissions.d.ts +36 -0
- package/dist-types/VerifiedPermissionsClient.d.ts +6 -2
- package/dist-types/commands/BatchGetPolicyCommand.d.ts +58 -1
- package/dist-types/commands/CreateIdentitySourceCommand.d.ts +1 -1
- package/dist-types/commands/CreatePolicyCommand.d.ts +4 -35
- package/dist-types/commands/CreatePolicyStoreAliasCommand.d.ts +118 -0
- package/dist-types/commands/CreatePolicyStoreCommand.d.ts +1 -1
- package/dist-types/commands/CreatePolicyTemplateCommand.d.ts +3 -1
- package/dist-types/commands/DeleteIdentitySourceCommand.d.ts +1 -1
- package/dist-types/commands/DeletePolicyCommand.d.ts +1 -1
- package/dist-types/commands/DeletePolicyStoreAliasCommand.d.ts +100 -0
- package/dist-types/commands/DeletePolicyTemplateCommand.d.ts +1 -1
- package/dist-types/commands/GetPolicyCommand.d.ts +32 -0
- package/dist-types/commands/GetPolicyStoreAliasCommand.d.ts +112 -0
- package/dist-types/commands/GetPolicyTemplateCommand.d.ts +29 -0
- package/dist-types/commands/ListPoliciesCommand.d.ts +3 -0
- package/dist-types/commands/ListPolicyStoreAliasesCommand.d.ts +166 -0
- package/dist-types/commands/ListPolicyTemplatesCommand.d.ts +3 -0
- package/dist-types/commands/PutSchemaCommand.d.ts +1 -1
- package/dist-types/commands/UpdateIdentitySourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdatePolicyCommand.d.ts +3 -1
- package/dist-types/commands/UpdatePolicyStoreCommand.d.ts +1 -1
- package/dist-types/commands/UpdatePolicyTemplateCommand.d.ts +3 -1
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/enums.d.ts +14 -0
- package/dist-types/models/errors.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +250 -33
- package/dist-types/pagination/ListPolicyStoreAliasesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +14 -0
- package/dist-types/ts3.4/VerifiedPermissions.d.ts +76 -0
- package/dist-types/ts3.4/VerifiedPermissionsClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/CreatePolicyStoreAliasCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeletePolicyStoreAliasCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetPolicyStoreAliasCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListPolicyStoreAliasesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/enums.d.ts +7 -0
- package/dist-types/ts3.4/models/models_0.d.ts +53 -0
- package/dist-types/ts3.4/pagination/ListPolicyStoreAliasesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +14 -0
- package/package.json +12 -12
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import {
|
|
2
|
+
AliasState,
|
|
2
3
|
BatchGetPolicyErrorCode,
|
|
3
4
|
CedarVersion,
|
|
4
5
|
Decision,
|
|
@@ -72,6 +73,7 @@ export interface BatchGetPolicyOutputItem {
|
|
|
72
73
|
definition: PolicyDefinitionDetail | undefined;
|
|
73
74
|
createdDate: Date | undefined;
|
|
74
75
|
lastUpdatedDate: Date | undefined;
|
|
76
|
+
name?: string | undefined;
|
|
75
77
|
}
|
|
76
78
|
export interface BatchGetPolicyOutput {
|
|
77
79
|
results: BatchGetPolicyOutputItem[] | undefined;
|
|
@@ -386,6 +388,7 @@ export interface CreatePolicyInput {
|
|
|
386
388
|
clientToken?: string | undefined;
|
|
387
389
|
policyStoreId: string | undefined;
|
|
388
390
|
definition: PolicyDefinition | undefined;
|
|
391
|
+
name?: string | undefined;
|
|
389
392
|
}
|
|
390
393
|
export interface CreatePolicyOutput {
|
|
391
394
|
policyStoreId: string | undefined;
|
|
@@ -446,11 +449,22 @@ export interface CreatePolicyStoreOutput {
|
|
|
446
449
|
createdDate: Date | undefined;
|
|
447
450
|
lastUpdatedDate: Date | undefined;
|
|
448
451
|
}
|
|
452
|
+
export interface CreatePolicyStoreAliasInput {
|
|
453
|
+
aliasName: string | undefined;
|
|
454
|
+
policyStoreId: string | undefined;
|
|
455
|
+
}
|
|
456
|
+
export interface CreatePolicyStoreAliasOutput {
|
|
457
|
+
aliasName: string | undefined;
|
|
458
|
+
policyStoreId: string | undefined;
|
|
459
|
+
aliasArn: string | undefined;
|
|
460
|
+
createdAt: Date | undefined;
|
|
461
|
+
}
|
|
449
462
|
export interface CreatePolicyTemplateInput {
|
|
450
463
|
clientToken?: string | undefined;
|
|
451
464
|
policyStoreId: string | undefined;
|
|
452
465
|
description?: string | undefined;
|
|
453
466
|
statement: string | undefined;
|
|
467
|
+
name?: string | undefined;
|
|
454
468
|
}
|
|
455
469
|
export interface CreatePolicyTemplateOutput {
|
|
456
470
|
policyStoreId: string | undefined;
|
|
@@ -472,6 +486,10 @@ export interface DeletePolicyStoreInput {
|
|
|
472
486
|
policyStoreId: string | undefined;
|
|
473
487
|
}
|
|
474
488
|
export interface DeletePolicyStoreOutput {}
|
|
489
|
+
export interface DeletePolicyStoreAliasInput {
|
|
490
|
+
aliasName: string | undefined;
|
|
491
|
+
}
|
|
492
|
+
export interface DeletePolicyStoreAliasOutput {}
|
|
475
493
|
export interface DeletePolicyTemplateInput {
|
|
476
494
|
policyStoreId: string | undefined;
|
|
477
495
|
policyTemplateId: string | undefined;
|
|
@@ -567,6 +585,7 @@ export interface GetPolicyOutput {
|
|
|
567
585
|
createdDate: Date | undefined;
|
|
568
586
|
lastUpdatedDate: Date | undefined;
|
|
569
587
|
effect?: PolicyEffect | undefined;
|
|
588
|
+
name?: string | undefined;
|
|
570
589
|
}
|
|
571
590
|
export interface GetPolicyStoreInput {
|
|
572
591
|
policyStoreId: string | undefined;
|
|
@@ -584,6 +603,16 @@ export interface GetPolicyStoreOutput {
|
|
|
584
603
|
cedarVersion?: CedarVersion | undefined;
|
|
585
604
|
tags?: Record<string, string> | undefined;
|
|
586
605
|
}
|
|
606
|
+
export interface GetPolicyStoreAliasInput {
|
|
607
|
+
aliasName: string | undefined;
|
|
608
|
+
}
|
|
609
|
+
export interface GetPolicyStoreAliasOutput {
|
|
610
|
+
aliasName: string | undefined;
|
|
611
|
+
policyStoreId: string | undefined;
|
|
612
|
+
aliasArn: string | undefined;
|
|
613
|
+
createdAt: Date | undefined;
|
|
614
|
+
state: AliasState | undefined;
|
|
615
|
+
}
|
|
587
616
|
export interface GetPolicyTemplateInput {
|
|
588
617
|
policyStoreId: string | undefined;
|
|
589
618
|
policyTemplateId: string | undefined;
|
|
@@ -595,6 +624,7 @@ export interface GetPolicyTemplateOutput {
|
|
|
595
624
|
statement: string | undefined;
|
|
596
625
|
createdDate: Date | undefined;
|
|
597
626
|
lastUpdatedDate: Date | undefined;
|
|
627
|
+
name?: string | undefined;
|
|
598
628
|
}
|
|
599
629
|
export interface GetSchemaInput {
|
|
600
630
|
policyStoreId: string | undefined;
|
|
@@ -796,11 +826,31 @@ export interface PolicyItem {
|
|
|
796
826
|
createdDate: Date | undefined;
|
|
797
827
|
lastUpdatedDate: Date | undefined;
|
|
798
828
|
effect?: PolicyEffect | undefined;
|
|
829
|
+
name?: string | undefined;
|
|
799
830
|
}
|
|
800
831
|
export interface ListPoliciesOutput {
|
|
801
832
|
nextToken?: string | undefined;
|
|
802
833
|
policies: PolicyItem[] | undefined;
|
|
803
834
|
}
|
|
835
|
+
export interface PolicyStoreAliasFilter {
|
|
836
|
+
policyStoreId?: string | undefined;
|
|
837
|
+
}
|
|
838
|
+
export interface ListPolicyStoreAliasesInput {
|
|
839
|
+
nextToken?: string | undefined;
|
|
840
|
+
maxResults?: number | undefined;
|
|
841
|
+
filter?: PolicyStoreAliasFilter | undefined;
|
|
842
|
+
}
|
|
843
|
+
export interface PolicyStoreAliasItem {
|
|
844
|
+
aliasName: string | undefined;
|
|
845
|
+
policyStoreId: string | undefined;
|
|
846
|
+
aliasArn: string | undefined;
|
|
847
|
+
createdAt: Date | undefined;
|
|
848
|
+
state: AliasState | undefined;
|
|
849
|
+
}
|
|
850
|
+
export interface ListPolicyStoreAliasesOutput {
|
|
851
|
+
nextToken?: string | undefined;
|
|
852
|
+
policyStoreAliases: PolicyStoreAliasItem[] | undefined;
|
|
853
|
+
}
|
|
804
854
|
export interface ListPolicyStoresInput {
|
|
805
855
|
nextToken?: string | undefined;
|
|
806
856
|
maxResults?: number | undefined;
|
|
@@ -827,6 +877,7 @@ export interface PolicyTemplateItem {
|
|
|
827
877
|
description?: string | undefined;
|
|
828
878
|
createdDate: Date | undefined;
|
|
829
879
|
lastUpdatedDate: Date | undefined;
|
|
880
|
+
name?: string | undefined;
|
|
830
881
|
}
|
|
831
882
|
export interface ListPolicyTemplatesOutput {
|
|
832
883
|
nextToken?: string | undefined;
|
|
@@ -863,6 +914,7 @@ export interface UpdatePolicyInput {
|
|
|
863
914
|
policyStoreId: string | undefined;
|
|
864
915
|
policyId: string | undefined;
|
|
865
916
|
definition?: UpdatePolicyDefinition | undefined;
|
|
917
|
+
name?: string | undefined;
|
|
866
918
|
}
|
|
867
919
|
export interface UpdatePolicyOutput {
|
|
868
920
|
policyStoreId: string | undefined;
|
|
@@ -880,6 +932,7 @@ export interface UpdatePolicyTemplateInput {
|
|
|
880
932
|
policyTemplateId: string | undefined;
|
|
881
933
|
description?: string | undefined;
|
|
882
934
|
statement: string | undefined;
|
|
935
|
+
name?: string | undefined;
|
|
883
936
|
}
|
|
884
937
|
export interface UpdatePolicyTemplateOutput {
|
|
885
938
|
policyStoreId: string | undefined;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListPolicyStoreAliasesCommandInput,
|
|
4
|
+
ListPolicyStoreAliasesCommandOutput,
|
|
5
|
+
} from "../commands/ListPolicyStoreAliasesCommand";
|
|
6
|
+
import { VerifiedPermissionsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListPolicyStoreAliases: (
|
|
8
|
+
config: VerifiedPermissionsPaginationConfiguration,
|
|
9
|
+
input: ListPolicyStoreAliasesCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListPolicyStoreAliasesCommandOutput>;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
2
|
export * from "./ListIdentitySourcesPaginator";
|
|
3
3
|
export * from "./ListPoliciesPaginator";
|
|
4
|
+
export * from "./ListPolicyStoreAliasesPaginator";
|
|
4
5
|
export * from "./ListPolicyStoresPaginator";
|
|
5
6
|
export * from "./ListPolicyTemplatesPaginator";
|
|
@@ -40,6 +40,8 @@ export declare var CreateIdentitySourceInput$: StaticStructureSchema;
|
|
|
40
40
|
export declare var CreateIdentitySourceOutput$: StaticStructureSchema;
|
|
41
41
|
export declare var CreatePolicyInput$: StaticStructureSchema;
|
|
42
42
|
export declare var CreatePolicyOutput$: StaticStructureSchema;
|
|
43
|
+
export declare var CreatePolicyStoreAliasInput$: StaticStructureSchema;
|
|
44
|
+
export declare var CreatePolicyStoreAliasOutput$: StaticStructureSchema;
|
|
43
45
|
export declare var CreatePolicyStoreInput$: StaticStructureSchema;
|
|
44
46
|
export declare var CreatePolicyStoreOutput$: StaticStructureSchema;
|
|
45
47
|
export declare var CreatePolicyTemplateInput$: StaticStructureSchema;
|
|
@@ -48,6 +50,8 @@ export declare var DeleteIdentitySourceInput$: StaticStructureSchema;
|
|
|
48
50
|
export declare var DeleteIdentitySourceOutput$: StaticStructureSchema;
|
|
49
51
|
export declare var DeletePolicyInput$: StaticStructureSchema;
|
|
50
52
|
export declare var DeletePolicyOutput$: StaticStructureSchema;
|
|
53
|
+
export declare var DeletePolicyStoreAliasInput$: StaticStructureSchema;
|
|
54
|
+
export declare var DeletePolicyStoreAliasOutput$: StaticStructureSchema;
|
|
51
55
|
export declare var DeletePolicyStoreInput$: StaticStructureSchema;
|
|
52
56
|
export declare var DeletePolicyStoreOutput$: StaticStructureSchema;
|
|
53
57
|
export declare var DeletePolicyTemplateInput$: StaticStructureSchema;
|
|
@@ -60,6 +64,8 @@ export declare var GetIdentitySourceInput$: StaticStructureSchema;
|
|
|
60
64
|
export declare var GetIdentitySourceOutput$: StaticStructureSchema;
|
|
61
65
|
export declare var GetPolicyInput$: StaticStructureSchema;
|
|
62
66
|
export declare var GetPolicyOutput$: StaticStructureSchema;
|
|
67
|
+
export declare var GetPolicyStoreAliasInput$: StaticStructureSchema;
|
|
68
|
+
export declare var GetPolicyStoreAliasOutput$: StaticStructureSchema;
|
|
63
69
|
export declare var GetPolicyStoreInput$: StaticStructureSchema;
|
|
64
70
|
export declare var GetPolicyStoreOutput$: StaticStructureSchema;
|
|
65
71
|
export declare var GetPolicyTemplateInput$: StaticStructureSchema;
|
|
@@ -80,6 +86,8 @@ export declare var ListIdentitySourcesInput$: StaticStructureSchema;
|
|
|
80
86
|
export declare var ListIdentitySourcesOutput$: StaticStructureSchema;
|
|
81
87
|
export declare var ListPoliciesInput$: StaticStructureSchema;
|
|
82
88
|
export declare var ListPoliciesOutput$: StaticStructureSchema;
|
|
89
|
+
export declare var ListPolicyStoreAliasesInput$: StaticStructureSchema;
|
|
90
|
+
export declare var ListPolicyStoreAliasesOutput$: StaticStructureSchema;
|
|
83
91
|
export declare var ListPolicyStoresInput$: StaticStructureSchema;
|
|
84
92
|
export declare var ListPolicyStoresOutput$: StaticStructureSchema;
|
|
85
93
|
export declare var ListPolicyTemplatesInput$: StaticStructureSchema;
|
|
@@ -100,6 +108,8 @@ export declare var OpenIdConnectIdentityTokenConfigurationDetail$: StaticStructu
|
|
|
100
108
|
export declare var OpenIdConnectIdentityTokenConfigurationItem$: StaticStructureSchema;
|
|
101
109
|
export declare var PolicyFilter$: StaticStructureSchema;
|
|
102
110
|
export declare var PolicyItem$: StaticStructureSchema;
|
|
111
|
+
export declare var PolicyStoreAliasFilter$: StaticStructureSchema;
|
|
112
|
+
export declare var PolicyStoreAliasItem$: StaticStructureSchema;
|
|
103
113
|
export declare var PolicyStoreItem$: StaticStructureSchema;
|
|
104
114
|
export declare var PolicyTemplateItem$: StaticStructureSchema;
|
|
105
115
|
export declare var PutSchemaInput$: StaticStructureSchema;
|
|
@@ -158,20 +168,24 @@ export declare var BatchIsAuthorizedWithToken$: StaticOperationSchema;
|
|
|
158
168
|
export declare var CreateIdentitySource$: StaticOperationSchema;
|
|
159
169
|
export declare var CreatePolicy$: StaticOperationSchema;
|
|
160
170
|
export declare var CreatePolicyStore$: StaticOperationSchema;
|
|
171
|
+
export declare var CreatePolicyStoreAlias$: StaticOperationSchema;
|
|
161
172
|
export declare var CreatePolicyTemplate$: StaticOperationSchema;
|
|
162
173
|
export declare var DeleteIdentitySource$: StaticOperationSchema;
|
|
163
174
|
export declare var DeletePolicy$: StaticOperationSchema;
|
|
164
175
|
export declare var DeletePolicyStore$: StaticOperationSchema;
|
|
176
|
+
export declare var DeletePolicyStoreAlias$: StaticOperationSchema;
|
|
165
177
|
export declare var DeletePolicyTemplate$: StaticOperationSchema;
|
|
166
178
|
export declare var GetIdentitySource$: StaticOperationSchema;
|
|
167
179
|
export declare var GetPolicy$: StaticOperationSchema;
|
|
168
180
|
export declare var GetPolicyStore$: StaticOperationSchema;
|
|
181
|
+
export declare var GetPolicyStoreAlias$: StaticOperationSchema;
|
|
169
182
|
export declare var GetPolicyTemplate$: StaticOperationSchema;
|
|
170
183
|
export declare var GetSchema$: StaticOperationSchema;
|
|
171
184
|
export declare var IsAuthorized$: StaticOperationSchema;
|
|
172
185
|
export declare var IsAuthorizedWithToken$: StaticOperationSchema;
|
|
173
186
|
export declare var ListIdentitySources$: StaticOperationSchema;
|
|
174
187
|
export declare var ListPolicies$: StaticOperationSchema;
|
|
188
|
+
export declare var ListPolicyStoreAliases$: StaticOperationSchema;
|
|
175
189
|
export declare var ListPolicyStores$: StaticOperationSchema;
|
|
176
190
|
export declare var ListPolicyTemplates$: StaticOperationSchema;
|
|
177
191
|
export declare var ListTagsForResource$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-verifiedpermissions",
|
|
3
3
|
"description": "AWS SDK for JavaScript Verifiedpermissions Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1014.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-verifiedpermissions",
|
|
@@ -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.
|
|
24
|
+
"@aws-sdk/core": "^3.973.23",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.24",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "^3.972.8",
|
|
27
27
|
"@aws-sdk/middleware-logger": "^3.972.8",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "^3.972.8",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.24",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.9",
|
|
31
31
|
"@aws-sdk/types": "^3.973.6",
|
|
32
32
|
"@aws-sdk/util-endpoints": "^3.996.5",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "^3.972.8",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
35
|
-
"@smithy/config-resolver": "^4.4.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.973.10",
|
|
35
|
+
"@smithy/config-resolver": "^4.4.13",
|
|
36
36
|
"@smithy/core": "^3.23.12",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.15",
|
|
38
38
|
"@smithy/hash-node": "^4.2.12",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.12",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.12",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.27",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.44",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.15",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.12",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.12",
|
|
46
46
|
"@smithy/node-http-handler": "^4.5.0",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.12",
|
|
48
|
-
"@smithy/smithy-client": "^4.12.
|
|
48
|
+
"@smithy/smithy-client": "^4.12.7",
|
|
49
49
|
"@smithy/types": "^4.13.1",
|
|
50
50
|
"@smithy/url-parser": "^4.2.12",
|
|
51
51
|
"@smithy/util-base64": "^4.3.2",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.2",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.3",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.43",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.47",
|
|
56
56
|
"@smithy/util-endpoints": "^3.3.3",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.12",
|
|
58
58
|
"@smithy/util-retry": "^4.2.12",
|