@aws-sdk/client-fms 3.55.0 → 3.60.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 +27 -0
- package/README.md +6 -6
- package/dist-cjs/FMS.js +60 -0
- package/dist-cjs/commands/AssociateThirdPartyFirewallCommand.js +36 -0
- package/dist-cjs/commands/DisassociateThirdPartyFirewallCommand.js +36 -0
- package/dist-cjs/commands/GetThirdPartyFirewallAssociationStatusCommand.js +36 -0
- package/dist-cjs/commands/ListThirdPartyFirewallFirewallPoliciesCommand.js +36 -0
- package/dist-cjs/commands/index.js +4 -0
- package/dist-cjs/models/models_0.js +108 -3
- package/dist-cjs/pagination/ListThirdPartyFirewallFirewallPoliciesPaginator.js +35 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_json1_1.js +356 -2
- package/dist-es/FMS.js +60 -0
- package/dist-es/commands/AssociateThirdPartyFirewallCommand.js +39 -0
- package/dist-es/commands/DisassociateThirdPartyFirewallCommand.js +39 -0
- package/dist-es/commands/GetThirdPartyFirewallAssociationStatusCommand.js +39 -0
- package/dist-es/commands/ListThirdPartyFirewallFirewallPoliciesCommand.js +39 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/models_0.js +77 -0
- package/dist-es/pagination/ListThirdPartyFirewallFirewallPoliciesPaginator.js +74 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +414 -1
- package/dist-types/FMS.d.ts +84 -59
- package/dist-types/FMSClient.d.ts +12 -8
- package/dist-types/commands/AssociateAdminAccountCommand.d.ts +4 -5
- package/dist-types/commands/AssociateThirdPartyFirewallCommand.d.ts +35 -0
- package/dist-types/commands/DeleteNotificationChannelCommand.d.ts +2 -2
- package/dist-types/commands/DisassociateAdminAccountCommand.d.ts +3 -3
- package/dist-types/commands/DisassociateThirdPartyFirewallCommand.d.ts +35 -0
- package/dist-types/commands/GetAdminAccountCommand.d.ts +2 -2
- package/dist-types/commands/GetComplianceDetailCommand.d.ts +13 -13
- package/dist-types/commands/GetNotificationChannelCommand.d.ts +2 -2
- package/dist-types/commands/GetProtectionStatusCommand.d.ts +1 -2
- package/dist-types/commands/GetThirdPartyFirewallAssociationStatusCommand.d.ts +35 -0
- package/dist-types/commands/GetViolationDetailsCommand.d.ts +1 -2
- package/dist-types/commands/ListComplianceStatusCommand.d.ts +2 -2
- package/dist-types/commands/ListMemberAccountsCommand.d.ts +2 -2
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ListThirdPartyFirewallFirewallPoliciesCommand.d.ts +35 -0
- package/dist-types/commands/PutNotificationChannelCommand.d.ts +5 -6
- package/dist-types/commands/PutPolicyCommand.d.ts +12 -11
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +808 -518
- package/dist-types/pagination/ListThirdPartyFirewallFirewallPoliciesPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +12 -0
- package/dist-types/ts3.4/FMS.d.ts +20 -0
- package/dist-types/ts3.4/FMSClient.d.ts +6 -2
- package/dist-types/ts3.4/commands/AssociateThirdPartyFirewallCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DisassociateThirdPartyFirewallCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetThirdPartyFirewallAssociationStatusCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListThirdPartyFirewallFirewallPoliciesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +183 -1
- package/dist-types/ts3.4/pagination/ListThirdPartyFirewallFirewallPoliciesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +12 -0
- package/package.json +18 -18
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
2
2
|
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
3
3
|
import { AssociateAdminAccountCommandInput, AssociateAdminAccountCommandOutput } from "../commands/AssociateAdminAccountCommand";
|
|
4
|
+
import { AssociateThirdPartyFirewallCommandInput, AssociateThirdPartyFirewallCommandOutput } from "../commands/AssociateThirdPartyFirewallCommand";
|
|
4
5
|
import { DeleteAppsListCommandInput, DeleteAppsListCommandOutput } from "../commands/DeleteAppsListCommand";
|
|
5
6
|
import { DeleteNotificationChannelCommandInput, DeleteNotificationChannelCommandOutput } from "../commands/DeleteNotificationChannelCommand";
|
|
6
7
|
import { DeletePolicyCommandInput, DeletePolicyCommandOutput } from "../commands/DeletePolicyCommand";
|
|
7
8
|
import { DeleteProtocolsListCommandInput, DeleteProtocolsListCommandOutput } from "../commands/DeleteProtocolsListCommand";
|
|
8
9
|
import { DisassociateAdminAccountCommandInput, DisassociateAdminAccountCommandOutput } from "../commands/DisassociateAdminAccountCommand";
|
|
10
|
+
import { DisassociateThirdPartyFirewallCommandInput, DisassociateThirdPartyFirewallCommandOutput } from "../commands/DisassociateThirdPartyFirewallCommand";
|
|
9
11
|
import { GetAdminAccountCommandInput, GetAdminAccountCommandOutput } from "../commands/GetAdminAccountCommand";
|
|
10
12
|
import { GetAppsListCommandInput, GetAppsListCommandOutput } from "../commands/GetAppsListCommand";
|
|
11
13
|
import { GetComplianceDetailCommandInput, GetComplianceDetailCommandOutput } from "../commands/GetComplianceDetailCommand";
|
|
@@ -13,6 +15,7 @@ import { GetNotificationChannelCommandInput, GetNotificationChannelCommandOutput
|
|
|
13
15
|
import { GetPolicyCommandInput, GetPolicyCommandOutput } from "../commands/GetPolicyCommand";
|
|
14
16
|
import { GetProtectionStatusCommandInput, GetProtectionStatusCommandOutput } from "../commands/GetProtectionStatusCommand";
|
|
15
17
|
import { GetProtocolsListCommandInput, GetProtocolsListCommandOutput } from "../commands/GetProtocolsListCommand";
|
|
18
|
+
import { GetThirdPartyFirewallAssociationStatusCommandInput, GetThirdPartyFirewallAssociationStatusCommandOutput } from "../commands/GetThirdPartyFirewallAssociationStatusCommand";
|
|
16
19
|
import { GetViolationDetailsCommandInput, GetViolationDetailsCommandOutput } from "../commands/GetViolationDetailsCommand";
|
|
17
20
|
import { ListAppsListsCommandInput, ListAppsListsCommandOutput } from "../commands/ListAppsListsCommand";
|
|
18
21
|
import { ListComplianceStatusCommandInput, ListComplianceStatusCommandOutput } from "../commands/ListComplianceStatusCommand";
|
|
@@ -20,6 +23,7 @@ import { ListMemberAccountsCommandInput, ListMemberAccountsCommandOutput } from
|
|
|
20
23
|
import { ListPoliciesCommandInput, ListPoliciesCommandOutput } from "../commands/ListPoliciesCommand";
|
|
21
24
|
import { ListProtocolsListsCommandInput, ListProtocolsListsCommandOutput } from "../commands/ListProtocolsListsCommand";
|
|
22
25
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
26
|
+
import { ListThirdPartyFirewallFirewallPoliciesCommandInput, ListThirdPartyFirewallFirewallPoliciesCommandOutput } from "../commands/ListThirdPartyFirewallFirewallPoliciesCommand";
|
|
23
27
|
import { PutAppsListCommandInput, PutAppsListCommandOutput } from "../commands/PutAppsListCommand";
|
|
24
28
|
import { PutNotificationChannelCommandInput, PutNotificationChannelCommandOutput } from "../commands/PutNotificationChannelCommand";
|
|
25
29
|
import { PutPolicyCommandInput, PutPolicyCommandOutput } from "../commands/PutPolicyCommand";
|
|
@@ -27,11 +31,13 @@ import { PutProtocolsListCommandInput, PutProtocolsListCommandOutput } from "../
|
|
|
27
31
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
28
32
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
29
33
|
export declare const serializeAws_json1_1AssociateAdminAccountCommand: (input: AssociateAdminAccountCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
34
|
+
export declare const serializeAws_json1_1AssociateThirdPartyFirewallCommand: (input: AssociateThirdPartyFirewallCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
30
35
|
export declare const serializeAws_json1_1DeleteAppsListCommand: (input: DeleteAppsListCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
31
36
|
export declare const serializeAws_json1_1DeleteNotificationChannelCommand: (input: DeleteNotificationChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
32
37
|
export declare const serializeAws_json1_1DeletePolicyCommand: (input: DeletePolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
33
38
|
export declare const serializeAws_json1_1DeleteProtocolsListCommand: (input: DeleteProtocolsListCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
34
39
|
export declare const serializeAws_json1_1DisassociateAdminAccountCommand: (input: DisassociateAdminAccountCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
40
|
+
export declare const serializeAws_json1_1DisassociateThirdPartyFirewallCommand: (input: DisassociateThirdPartyFirewallCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
35
41
|
export declare const serializeAws_json1_1GetAdminAccountCommand: (input: GetAdminAccountCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
36
42
|
export declare const serializeAws_json1_1GetAppsListCommand: (input: GetAppsListCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
37
43
|
export declare const serializeAws_json1_1GetComplianceDetailCommand: (input: GetComplianceDetailCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -39,6 +45,7 @@ export declare const serializeAws_json1_1GetNotificationChannelCommand: (input:
|
|
|
39
45
|
export declare const serializeAws_json1_1GetPolicyCommand: (input: GetPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
40
46
|
export declare const serializeAws_json1_1GetProtectionStatusCommand: (input: GetProtectionStatusCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
41
47
|
export declare const serializeAws_json1_1GetProtocolsListCommand: (input: GetProtocolsListCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
48
|
+
export declare const serializeAws_json1_1GetThirdPartyFirewallAssociationStatusCommand: (input: GetThirdPartyFirewallAssociationStatusCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
42
49
|
export declare const serializeAws_json1_1GetViolationDetailsCommand: (input: GetViolationDetailsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
43
50
|
export declare const serializeAws_json1_1ListAppsListsCommand: (input: ListAppsListsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
44
51
|
export declare const serializeAws_json1_1ListComplianceStatusCommand: (input: ListComplianceStatusCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -46,6 +53,7 @@ export declare const serializeAws_json1_1ListMemberAccountsCommand: (input: List
|
|
|
46
53
|
export declare const serializeAws_json1_1ListPoliciesCommand: (input: ListPoliciesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
47
54
|
export declare const serializeAws_json1_1ListProtocolsListsCommand: (input: ListProtocolsListsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
48
55
|
export declare const serializeAws_json1_1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
56
|
+
export declare const serializeAws_json1_1ListThirdPartyFirewallFirewallPoliciesCommand: (input: ListThirdPartyFirewallFirewallPoliciesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
49
57
|
export declare const serializeAws_json1_1PutAppsListCommand: (input: PutAppsListCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
50
58
|
export declare const serializeAws_json1_1PutNotificationChannelCommand: (input: PutNotificationChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
51
59
|
export declare const serializeAws_json1_1PutPolicyCommand: (input: PutPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -53,11 +61,13 @@ export declare const serializeAws_json1_1PutProtocolsListCommand: (input: PutPro
|
|
|
53
61
|
export declare const serializeAws_json1_1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
54
62
|
export declare const serializeAws_json1_1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
55
63
|
export declare const deserializeAws_json1_1AssociateAdminAccountCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateAdminAccountCommandOutput>;
|
|
64
|
+
export declare const deserializeAws_json1_1AssociateThirdPartyFirewallCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateThirdPartyFirewallCommandOutput>;
|
|
56
65
|
export declare const deserializeAws_json1_1DeleteAppsListCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAppsListCommandOutput>;
|
|
57
66
|
export declare const deserializeAws_json1_1DeleteNotificationChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteNotificationChannelCommandOutput>;
|
|
58
67
|
export declare const deserializeAws_json1_1DeletePolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeletePolicyCommandOutput>;
|
|
59
68
|
export declare const deserializeAws_json1_1DeleteProtocolsListCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteProtocolsListCommandOutput>;
|
|
60
69
|
export declare const deserializeAws_json1_1DisassociateAdminAccountCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateAdminAccountCommandOutput>;
|
|
70
|
+
export declare const deserializeAws_json1_1DisassociateThirdPartyFirewallCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateThirdPartyFirewallCommandOutput>;
|
|
61
71
|
export declare const deserializeAws_json1_1GetAdminAccountCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAdminAccountCommandOutput>;
|
|
62
72
|
export declare const deserializeAws_json1_1GetAppsListCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAppsListCommandOutput>;
|
|
63
73
|
export declare const deserializeAws_json1_1GetComplianceDetailCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetComplianceDetailCommandOutput>;
|
|
@@ -65,6 +75,7 @@ export declare const deserializeAws_json1_1GetNotificationChannelCommand: (outpu
|
|
|
65
75
|
export declare const deserializeAws_json1_1GetPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetPolicyCommandOutput>;
|
|
66
76
|
export declare const deserializeAws_json1_1GetProtectionStatusCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetProtectionStatusCommandOutput>;
|
|
67
77
|
export declare const deserializeAws_json1_1GetProtocolsListCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetProtocolsListCommandOutput>;
|
|
78
|
+
export declare const deserializeAws_json1_1GetThirdPartyFirewallAssociationStatusCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetThirdPartyFirewallAssociationStatusCommandOutput>;
|
|
68
79
|
export declare const deserializeAws_json1_1GetViolationDetailsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetViolationDetailsCommandOutput>;
|
|
69
80
|
export declare const deserializeAws_json1_1ListAppsListsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAppsListsCommandOutput>;
|
|
70
81
|
export declare const deserializeAws_json1_1ListComplianceStatusCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListComplianceStatusCommandOutput>;
|
|
@@ -72,6 +83,7 @@ export declare const deserializeAws_json1_1ListMemberAccountsCommand: (output: _
|
|
|
72
83
|
export declare const deserializeAws_json1_1ListPoliciesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPoliciesCommandOutput>;
|
|
73
84
|
export declare const deserializeAws_json1_1ListProtocolsListsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListProtocolsListsCommandOutput>;
|
|
74
85
|
export declare const deserializeAws_json1_1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
86
|
+
export declare const deserializeAws_json1_1ListThirdPartyFirewallFirewallPoliciesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListThirdPartyFirewallFirewallPoliciesCommandOutput>;
|
|
75
87
|
export declare const deserializeAws_json1_1PutAppsListCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutAppsListCommandOutput>;
|
|
76
88
|
export declare const deserializeAws_json1_1PutNotificationChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutNotificationChannelCommandOutput>;
|
|
77
89
|
export declare const deserializeAws_json1_1PutPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutPolicyCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-fms",
|
|
3
3
|
"description": "AWS SDK for JavaScript Fms Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.60.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,40 +18,40 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.58.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.58.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.58.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.58.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.55.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.55.0",
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.58.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.58.0",
|
|
29
29
|
"@aws-sdk/middleware-logger": "3.55.0",
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.58.0",
|
|
31
31
|
"@aws-sdk/middleware-serde": "3.55.0",
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.58.0",
|
|
33
33
|
"@aws-sdk/middleware-stack": "3.55.0",
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.58.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.58.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.58.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.58.0",
|
|
38
38
|
"@aws-sdk/smithy-client": "3.55.0",
|
|
39
39
|
"@aws-sdk/types": "3.55.0",
|
|
40
40
|
"@aws-sdk/url-parser": "3.55.0",
|
|
41
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
41
|
+
"@aws-sdk/util-base64-browser": "3.58.0",
|
|
42
42
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
43
43
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
44
44
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
45
45
|
"@aws-sdk/util-defaults-mode-browser": "3.55.0",
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.58.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.58.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.58.0",
|
|
49
49
|
"@aws-sdk/util-utf8-browser": "3.55.0",
|
|
50
50
|
"@aws-sdk/util-utf8-node": "3.55.0",
|
|
51
51
|
"tslib": "^2.3.1"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
54
|
+
"@aws-sdk/service-client-documentation-generator": "3.58.0",
|
|
55
55
|
"@tsconfig/recommended": "1.0.1",
|
|
56
56
|
"@types/node": "^12.7.5",
|
|
57
57
|
"concurrently": "7.0.0",
|