@aws-sdk/client-ec2 3.565.0 → 3.568.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 +8 -0
- package/dist-cjs/index.js +111 -13
- package/dist-es/EC2.js +2 -0
- package/dist-es/commands/GetInstanceTpmEkPubCommand.js +25 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_5.js +13 -5
- package/dist-es/models/models_6.js +5 -0
- package/dist-es/protocols/Aws_ec2.js +66 -7
- package/dist-types/EC2.d.ts +7 -0
- package/dist-types/EC2Client.d.ts +3 -2
- package/dist-types/commands/DeleteTransitGatewayRouteTableCommand.d.ts +2 -2
- package/dist-types/commands/GetInstanceTpmEkPubCommand.d.ts +66 -0
- package/dist-types/commands/GetIpamDiscoveredAccountsCommand.d.ts +1 -2
- package/dist-types/commands/ProvisionIpamPoolCidrCommand.d.ts +1 -1
- package/dist-types/commands/ProvisionPublicIpv4PoolCidrCommand.d.ts +1 -2
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_1.d.ts +4 -1
- package/dist-types/models/models_2.d.ts +12 -3
- package/dist-types/models/models_5.d.ts +89 -123
- package/dist-types/models/models_6.d.ts +124 -91
- package/dist-types/models/models_7.d.ts +91 -1
- package/dist-types/protocols/Aws_ec2.d.ts +9 -0
- package/dist-types/ts3.4/EC2.d.ts +17 -0
- package/dist-types/ts3.4/EC2Client.d.ts +6 -0
- package/dist-types/ts3.4/commands/GetInstanceTpmEkPubCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetIpamDiscoveredAccountsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/ProvisionIpamPoolCidrCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ProvisionPublicIpv4PoolCidrCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_5.d.ts +26 -26
- package/dist-types/ts3.4/models/models_6.d.ts +26 -22
- package/dist-types/ts3.4/models/models_7.d.ts +22 -0
- package/dist-types/ts3.4/protocols/Aws_ec2.d.ts +12 -0
- package/package.json +16 -17
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
EC2ClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../EC2Client";
|
|
8
|
+
import {
|
|
9
|
+
GetInstanceTpmEkPubRequest,
|
|
10
|
+
GetInstanceTpmEkPubResult,
|
|
11
|
+
} from "../models/models_5";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface GetInstanceTpmEkPubCommandInput
|
|
14
|
+
extends GetInstanceTpmEkPubRequest {}
|
|
15
|
+
export interface GetInstanceTpmEkPubCommandOutput
|
|
16
|
+
extends GetInstanceTpmEkPubResult,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const GetInstanceTpmEkPubCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: GetInstanceTpmEkPubCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
GetInstanceTpmEkPubCommandInput,
|
|
23
|
+
GetInstanceTpmEkPubCommandOutput,
|
|
24
|
+
EC2ClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: GetInstanceTpmEkPubCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
GetInstanceTpmEkPubCommandInput,
|
|
32
|
+
GetInstanceTpmEkPubCommandOutput,
|
|
33
|
+
EC2ClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class GetInstanceTpmEkPubCommand extends GetInstanceTpmEkPubCommand_base {}
|
|
@@ -5,8 +5,10 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../EC2Client";
|
|
8
|
-
import {
|
|
9
|
-
|
|
8
|
+
import {
|
|
9
|
+
GetIpamDiscoveredAccountsRequest,
|
|
10
|
+
GetIpamDiscoveredAccountsResult,
|
|
11
|
+
} from "../models/models_6";
|
|
10
12
|
export { __MetadataBearer, $Command };
|
|
11
13
|
export interface GetIpamDiscoveredAccountsCommandInput
|
|
12
14
|
extends GetIpamDiscoveredAccountsRequest {}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
ProvisionIpamPoolCidrRequest,
|
|
10
10
|
ProvisionIpamPoolCidrResult,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_7";
|
|
12
12
|
export { __MetadataBearer, $Command };
|
|
13
13
|
export interface ProvisionIpamPoolCidrCommandInput
|
|
14
14
|
extends ProvisionIpamPoolCidrRequest {}
|
|
@@ -5,8 +5,10 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../EC2Client";
|
|
8
|
-
import {
|
|
9
|
-
|
|
8
|
+
import {
|
|
9
|
+
ProvisionPublicIpv4PoolCidrRequest,
|
|
10
|
+
ProvisionPublicIpv4PoolCidrResult,
|
|
11
|
+
} from "../models/models_7";
|
|
10
12
|
export { __MetadataBearer, $Command };
|
|
11
13
|
export interface ProvisionPublicIpv4PoolCidrCommandInput
|
|
12
14
|
extends ProvisionPublicIpv4PoolCidrRequest {}
|
|
@@ -441,6 +441,7 @@ export * from "./GetGroupsForCapacityReservationCommand";
|
|
|
441
441
|
export * from "./GetHostReservationPurchasePreviewCommand";
|
|
442
442
|
export * from "./GetImageBlockPublicAccessStateCommand";
|
|
443
443
|
export * from "./GetInstanceMetadataDefaultsCommand";
|
|
444
|
+
export * from "./GetInstanceTpmEkPubCommand";
|
|
444
445
|
export * from "./GetInstanceTypesFromInstanceRequirementsCommand";
|
|
445
446
|
export * from "./GetInstanceUefiDataCommand";
|
|
446
447
|
export * from "./GetIpamAddressHistoryCommand";
|
|
@@ -1541,6 +1541,29 @@ export interface InstanceMetadataDefaultsResponse {
|
|
|
1541
1541
|
export interface GetInstanceMetadataDefaultsResult {
|
|
1542
1542
|
AccountLevel?: InstanceMetadataDefaultsResponse;
|
|
1543
1543
|
}
|
|
1544
|
+
export declare const EkPubKeyFormat: {
|
|
1545
|
+
readonly der: "der";
|
|
1546
|
+
readonly tpmt: "tpmt";
|
|
1547
|
+
};
|
|
1548
|
+
export type EkPubKeyFormat =
|
|
1549
|
+
(typeof EkPubKeyFormat)[keyof typeof EkPubKeyFormat];
|
|
1550
|
+
export declare const EkPubKeyType: {
|
|
1551
|
+
readonly ECC_SEC_P384: "ecc-sec-p384";
|
|
1552
|
+
readonly RSA_2048: "rsa-2048";
|
|
1553
|
+
};
|
|
1554
|
+
export type EkPubKeyType = (typeof EkPubKeyType)[keyof typeof EkPubKeyType];
|
|
1555
|
+
export interface GetInstanceTpmEkPubRequest {
|
|
1556
|
+
InstanceId: string | undefined;
|
|
1557
|
+
KeyType: EkPubKeyType | undefined;
|
|
1558
|
+
KeyFormat: EkPubKeyFormat | undefined;
|
|
1559
|
+
DryRun?: boolean;
|
|
1560
|
+
}
|
|
1561
|
+
export interface GetInstanceTpmEkPubResult {
|
|
1562
|
+
InstanceId?: string;
|
|
1563
|
+
KeyType?: EkPubKeyType;
|
|
1564
|
+
KeyFormat?: EkPubKeyFormat;
|
|
1565
|
+
KeyValue?: string;
|
|
1566
|
+
}
|
|
1544
1567
|
export interface GetInstanceTypesFromInstanceRequirementsRequest {
|
|
1545
1568
|
DryRun?: boolean;
|
|
1546
1569
|
ArchitectureTypes: ArchitectureType[] | undefined;
|
|
@@ -1615,32 +1638,6 @@ export interface GetIpamAddressHistoryResult {
|
|
|
1615
1638
|
HistoryRecords?: IpamAddressHistoryRecord[];
|
|
1616
1639
|
NextToken?: string;
|
|
1617
1640
|
}
|
|
1618
|
-
export interface GetIpamDiscoveredAccountsRequest {
|
|
1619
|
-
DryRun?: boolean;
|
|
1620
|
-
IpamResourceDiscoveryId: string | undefined;
|
|
1621
|
-
DiscoveryRegion: string | undefined;
|
|
1622
|
-
Filters?: Filter[];
|
|
1623
|
-
NextToken?: string;
|
|
1624
|
-
MaxResults?: number;
|
|
1625
|
-
}
|
|
1626
|
-
export declare const IpamDiscoveryFailureCode: {
|
|
1627
|
-
readonly assume_role_failure: "assume-role-failure";
|
|
1628
|
-
readonly throttling_failure: "throttling-failure";
|
|
1629
|
-
readonly unauthorized_failure: "unauthorized-failure";
|
|
1630
|
-
};
|
|
1631
|
-
export type IpamDiscoveryFailureCode =
|
|
1632
|
-
(typeof IpamDiscoveryFailureCode)[keyof typeof IpamDiscoveryFailureCode];
|
|
1633
|
-
export interface IpamDiscoveryFailureReason {
|
|
1634
|
-
Code?: IpamDiscoveryFailureCode;
|
|
1635
|
-
Message?: string;
|
|
1636
|
-
}
|
|
1637
|
-
export interface IpamDiscoveredAccount {
|
|
1638
|
-
AccountId?: string;
|
|
1639
|
-
DiscoveryRegion?: string;
|
|
1640
|
-
FailureReason?: IpamDiscoveryFailureReason;
|
|
1641
|
-
LastAttemptedDiscoveryTime?: Date;
|
|
1642
|
-
LastSuccessfulDiscoveryTime?: Date;
|
|
1643
|
-
}
|
|
1644
1641
|
export declare const DescribeVerifiedAccessTrustProvidersResultFilterSensitiveLog: (
|
|
1645
1642
|
obj: DescribeVerifiedAccessTrustProvidersResult
|
|
1646
1643
|
) => any;
|
|
@@ -1650,3 +1647,6 @@ export declare const DescribeVpnConnectionsResultFilterSensitiveLog: (
|
|
|
1650
1647
|
export declare const DetachVerifiedAccessTrustProviderResultFilterSensitiveLog: (
|
|
1651
1648
|
obj: DetachVerifiedAccessTrustProviderResult
|
|
1652
1649
|
) => any;
|
|
1650
|
+
export declare const GetInstanceTpmEkPubResultFilterSensitiveLog: (
|
|
1651
|
+
obj: GetInstanceTpmEkPubResult
|
|
1652
|
+
) => any;
|
|
@@ -137,7 +137,6 @@ import {
|
|
|
137
137
|
import {
|
|
138
138
|
InstanceFamilyCreditSpecification,
|
|
139
139
|
IpamComplianceStatus,
|
|
140
|
-
IpamDiscoveredAccount,
|
|
141
140
|
IpamOverlapStatus,
|
|
142
141
|
SnapshotBlockPublicAccessState,
|
|
143
142
|
TransitGatewayPropagationState,
|
|
@@ -145,6 +144,32 @@ import {
|
|
|
145
144
|
VerifiedAccessInstanceLoggingConfiguration,
|
|
146
145
|
VolumeModification,
|
|
147
146
|
} from "./models_5";
|
|
147
|
+
export interface GetIpamDiscoveredAccountsRequest {
|
|
148
|
+
DryRun?: boolean;
|
|
149
|
+
IpamResourceDiscoveryId: string | undefined;
|
|
150
|
+
DiscoveryRegion: string | undefined;
|
|
151
|
+
Filters?: Filter[];
|
|
152
|
+
NextToken?: string;
|
|
153
|
+
MaxResults?: number;
|
|
154
|
+
}
|
|
155
|
+
export declare const IpamDiscoveryFailureCode: {
|
|
156
|
+
readonly assume_role_failure: "assume-role-failure";
|
|
157
|
+
readonly throttling_failure: "throttling-failure";
|
|
158
|
+
readonly unauthorized_failure: "unauthorized-failure";
|
|
159
|
+
};
|
|
160
|
+
export type IpamDiscoveryFailureCode =
|
|
161
|
+
(typeof IpamDiscoveryFailureCode)[keyof typeof IpamDiscoveryFailureCode];
|
|
162
|
+
export interface IpamDiscoveryFailureReason {
|
|
163
|
+
Code?: IpamDiscoveryFailureCode;
|
|
164
|
+
Message?: string;
|
|
165
|
+
}
|
|
166
|
+
export interface IpamDiscoveredAccount {
|
|
167
|
+
AccountId?: string;
|
|
168
|
+
DiscoveryRegion?: string;
|
|
169
|
+
FailureReason?: IpamDiscoveryFailureReason;
|
|
170
|
+
LastAttemptedDiscoveryTime?: Date;
|
|
171
|
+
LastSuccessfulDiscoveryTime?: Date;
|
|
172
|
+
}
|
|
148
173
|
export interface GetIpamDiscoveredAccountsResult {
|
|
149
174
|
IpamDiscoveredAccounts?: IpamDiscoveredAccount[];
|
|
150
175
|
NextToken?: string;
|
|
@@ -1863,27 +1888,6 @@ export interface ProvisionIpamByoasnRequest {
|
|
|
1863
1888
|
export interface ProvisionIpamByoasnResult {
|
|
1864
1889
|
Byoasn?: Byoasn;
|
|
1865
1890
|
}
|
|
1866
|
-
export interface IpamCidrAuthorizationContext {
|
|
1867
|
-
Message?: string;
|
|
1868
|
-
Signature?: string;
|
|
1869
|
-
}
|
|
1870
|
-
export interface ProvisionIpamPoolCidrRequest {
|
|
1871
|
-
DryRun?: boolean;
|
|
1872
|
-
IpamPoolId: string | undefined;
|
|
1873
|
-
Cidr?: string;
|
|
1874
|
-
CidrAuthorizationContext?: IpamCidrAuthorizationContext;
|
|
1875
|
-
NetmaskLength?: number;
|
|
1876
|
-
ClientToken?: string;
|
|
1877
|
-
}
|
|
1878
|
-
export interface ProvisionIpamPoolCidrResult {
|
|
1879
|
-
IpamPoolCidr?: IpamPoolCidr;
|
|
1880
|
-
}
|
|
1881
|
-
export interface ProvisionPublicIpv4PoolCidrRequest {
|
|
1882
|
-
DryRun?: boolean;
|
|
1883
|
-
IpamPoolId: string | undefined;
|
|
1884
|
-
PoolId: string | undefined;
|
|
1885
|
-
NetmaskLength: number | undefined;
|
|
1886
|
-
}
|
|
1887
1891
|
export declare const GetLaunchTemplateDataResultFilterSensitiveLog: (
|
|
1888
1892
|
obj: GetLaunchTemplateDataResult
|
|
1889
1893
|
) => any;
|
|
@@ -45,6 +45,7 @@ import {
|
|
|
45
45
|
Filter,
|
|
46
46
|
ImdsSupportValues,
|
|
47
47
|
InstanceTagNotificationAttribute,
|
|
48
|
+
IpamPoolCidr,
|
|
48
49
|
TpmSupportValues,
|
|
49
50
|
} from "./models_3";
|
|
50
51
|
import {
|
|
@@ -72,6 +73,27 @@ import {
|
|
|
72
73
|
InstanceMonitoring,
|
|
73
74
|
Status,
|
|
74
75
|
} from "./models_6";
|
|
76
|
+
export interface IpamCidrAuthorizationContext {
|
|
77
|
+
Message?: string;
|
|
78
|
+
Signature?: string;
|
|
79
|
+
}
|
|
80
|
+
export interface ProvisionIpamPoolCidrRequest {
|
|
81
|
+
DryRun?: boolean;
|
|
82
|
+
IpamPoolId: string | undefined;
|
|
83
|
+
Cidr?: string;
|
|
84
|
+
CidrAuthorizationContext?: IpamCidrAuthorizationContext;
|
|
85
|
+
NetmaskLength?: number;
|
|
86
|
+
ClientToken?: string;
|
|
87
|
+
}
|
|
88
|
+
export interface ProvisionIpamPoolCidrResult {
|
|
89
|
+
IpamPoolCidr?: IpamPoolCidr;
|
|
90
|
+
}
|
|
91
|
+
export interface ProvisionPublicIpv4PoolCidrRequest {
|
|
92
|
+
DryRun?: boolean;
|
|
93
|
+
IpamPoolId: string | undefined;
|
|
94
|
+
PoolId: string | undefined;
|
|
95
|
+
NetmaskLength: number | undefined;
|
|
96
|
+
}
|
|
75
97
|
export interface ProvisionPublicIpv4PoolCidrResult {
|
|
76
98
|
PoolId?: string;
|
|
77
99
|
PoolAddressRange?: PublicIpv4PoolRange;
|
|
@@ -1775,6 +1775,10 @@ import {
|
|
|
1775
1775
|
GetInstanceMetadataDefaultsCommandInput,
|
|
1776
1776
|
GetInstanceMetadataDefaultsCommandOutput,
|
|
1777
1777
|
} from "../commands/GetInstanceMetadataDefaultsCommand";
|
|
1778
|
+
import {
|
|
1779
|
+
GetInstanceTpmEkPubCommandInput,
|
|
1780
|
+
GetInstanceTpmEkPubCommandOutput,
|
|
1781
|
+
} from "../commands/GetInstanceTpmEkPubCommand";
|
|
1778
1782
|
import {
|
|
1779
1783
|
GetInstanceTypesFromInstanceRequirementsCommandInput,
|
|
1780
1784
|
GetInstanceTypesFromInstanceRequirementsCommandOutput,
|
|
@@ -4255,6 +4259,10 @@ export declare const se_GetInstanceMetadataDefaultsCommand: (
|
|
|
4255
4259
|
input: GetInstanceMetadataDefaultsCommandInput,
|
|
4256
4260
|
context: __SerdeContext
|
|
4257
4261
|
) => Promise<__HttpRequest>;
|
|
4262
|
+
export declare const se_GetInstanceTpmEkPubCommand: (
|
|
4263
|
+
input: GetInstanceTpmEkPubCommandInput,
|
|
4264
|
+
context: __SerdeContext
|
|
4265
|
+
) => Promise<__HttpRequest>;
|
|
4258
4266
|
export declare const se_GetInstanceTypesFromInstanceRequirementsCommand: (
|
|
4259
4267
|
input: GetInstanceTypesFromInstanceRequirementsCommandInput,
|
|
4260
4268
|
context: __SerdeContext
|
|
@@ -6735,6 +6743,10 @@ export declare const de_GetInstanceMetadataDefaultsCommand: (
|
|
|
6735
6743
|
output: __HttpResponse,
|
|
6736
6744
|
context: __SerdeContext
|
|
6737
6745
|
) => Promise<GetInstanceMetadataDefaultsCommandOutput>;
|
|
6746
|
+
export declare const de_GetInstanceTpmEkPubCommand: (
|
|
6747
|
+
output: __HttpResponse,
|
|
6748
|
+
context: __SerdeContext
|
|
6749
|
+
) => Promise<GetInstanceTpmEkPubCommandOutput>;
|
|
6738
6750
|
export declare const de_GetInstanceTypesFromInstanceRequirementsCommand: (
|
|
6739
6751
|
output: __HttpResponse,
|
|
6740
6752
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ec2",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ec2 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.568.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-ec2",
|
|
@@ -20,18 +20,18 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-sdk-ec2": "3.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
31
|
-
"@aws-sdk/types": "3.
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.567.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.568.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.567.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.568.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.567.0",
|
|
28
|
+
"@aws-sdk/middleware-sdk-ec2": "3.567.0",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "3.567.0",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "3.567.0",
|
|
31
|
+
"@aws-sdk/types": "3.567.0",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.567.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "3.567.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.568.0",
|
|
35
35
|
"@smithy/config-resolver": "^2.2.0",
|
|
36
36
|
"@smithy/core": "^1.4.2",
|
|
37
37
|
"@smithy/fetch-http-handler": "^2.5.0",
|
|
@@ -62,9 +62,8 @@
|
|
|
62
62
|
"uuid": "^9.0.1"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
|
-
"@
|
|
66
|
-
"@
|
|
67
|
-
"@types/node": "^14.14.31",
|
|
65
|
+
"@tsconfig/node16": "16.1.3",
|
|
66
|
+
"@types/node": "^16.18.96",
|
|
68
67
|
"@types/uuid": "^9.0.4",
|
|
69
68
|
"concurrently": "7.0.0",
|
|
70
69
|
"downlevel-dts": "0.10.1",
|
|
@@ -72,7 +71,7 @@
|
|
|
72
71
|
"typescript": "~4.9.5"
|
|
73
72
|
},
|
|
74
73
|
"engines": {
|
|
75
|
-
"node": ">=
|
|
74
|
+
"node": ">=16.0.0"
|
|
76
75
|
},
|
|
77
76
|
"typesVersions": {
|
|
78
77
|
"<4.0": {
|