@aws-sdk/client-lex-models-v2 3.369.0 → 3.372.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 +56 -0
- package/dist-cjs/LexModelsV2.js +14 -0
- package/dist-cjs/commands/ListIntentMetricsCommand.js +46 -0
- package/dist-cjs/commands/ListIntentPathsCommand.js +46 -0
- package/dist-cjs/commands/ListIntentStageMetricsCommand.js +46 -0
- package/dist-cjs/commands/ListSessionAnalyticsDataCommand.js +46 -0
- package/dist-cjs/commands/ListSessionMetricsCommand.js +46 -0
- package/dist-cjs/commands/ListUtteranceAnalyticsDataCommand.js +46 -0
- package/dist-cjs/commands/ListUtteranceMetricsCommand.js +46 -0
- package/dist-cjs/commands/index.js +7 -0
- package/dist-cjs/models/models_0.js +153 -79
- package/dist-cjs/models/models_1.js +92 -1
- package/dist-cjs/pagination/ListIntentMetricsPaginator.js +29 -0
- package/dist-cjs/pagination/ListIntentStageMetricsPaginator.js +29 -0
- package/dist-cjs/pagination/ListSessionAnalyticsDataPaginator.js +29 -0
- package/dist-cjs/pagination/ListSessionMetricsPaginator.js +29 -0
- package/dist-cjs/pagination/ListUtteranceAnalyticsDataPaginator.js +29 -0
- package/dist-cjs/pagination/ListUtteranceMetricsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +6 -0
- package/dist-cjs/protocols/Aws_restJson1.js +767 -56
- package/dist-es/LexModelsV2.js +14 -0
- package/dist-es/commands/ListIntentMetricsCommand.js +42 -0
- package/dist-es/commands/ListIntentPathsCommand.js +42 -0
- package/dist-es/commands/ListIntentStageMetricsCommand.js +42 -0
- package/dist-es/commands/ListSessionAnalyticsDataCommand.js +42 -0
- package/dist-es/commands/ListSessionMetricsCommand.js +42 -0
- package/dist-es/commands/ListUtteranceAnalyticsDataCommand.js +42 -0
- package/dist-es/commands/ListUtteranceMetricsCommand.js +42 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/models/models_0.js +151 -77
- package/dist-es/models/models_1.js +91 -0
- package/dist-es/pagination/ListIntentMetricsPaginator.js +25 -0
- package/dist-es/pagination/ListIntentStageMetricsPaginator.js +25 -0
- package/dist-es/pagination/ListSessionAnalyticsDataPaginator.js +25 -0
- package/dist-es/pagination/ListSessionMetricsPaginator.js +25 -0
- package/dist-es/pagination/ListUtteranceAnalyticsDataPaginator.js +25 -0
- package/dist-es/pagination/ListUtteranceMetricsPaginator.js +25 -0
- package/dist-es/pagination/index.js +6 -0
- package/dist-es/protocols/Aws_restJson1.js +749 -52
- package/dist-types/LexModelsV2.d.ts +49 -0
- package/dist-types/LexModelsV2Client.d.ts +9 -2
- package/dist-types/commands/DescribeSlotTypeCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTestExecutionCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTestSetCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTestSetDiscrepancyReportCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTestSetGenerationCommand.d.ts +1 -1
- package/dist-types/commands/GetTestExecutionArtifactsUrlCommand.d.ts +1 -1
- package/dist-types/commands/ListAggregatedUtterancesCommand.d.ts +1 -1
- package/dist-types/commands/ListIntentMetricsCommand.d.ts +169 -0
- package/dist-types/commands/ListIntentPathsCommand.d.ts +124 -0
- package/dist-types/commands/ListIntentStageMetricsCommand.d.ts +169 -0
- package/dist-types/commands/ListSessionAnalyticsDataCommand.d.ts +140 -0
- package/dist-types/commands/ListSessionMetricsCommand.d.ts +169 -0
- package/dist-types/commands/ListUtteranceAnalyticsDataCommand.d.ts +161 -0
- package/dist-types/commands/ListUtteranceMetricsCommand.d.ts +179 -0
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/models/models_0.d.ts +4423 -3758
- package/dist-types/models/models_1.d.ts +2039 -53
- package/dist-types/pagination/ListIntentMetricsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListIntentStageMetricsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListSessionAnalyticsDataPaginator.d.ts +7 -0
- package/dist-types/pagination/ListSessionMetricsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListUtteranceAnalyticsDataPaginator.d.ts +7 -0
- package/dist-types/pagination/ListUtteranceMetricsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +6 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +63 -0
- package/dist-types/ts3.4/LexModelsV2.d.ts +119 -0
- package/dist-types/ts3.4/LexModelsV2Client.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribeSlotTypeCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTestExecutionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTestSetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTestSetDiscrepancyReportCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTestSetGenerationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetTestExecutionArtifactsUrlCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAggregatedUtterancesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListIntentMetricsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListIntentPathsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListIntentStageMetricsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListSessionAnalyticsDataCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListSessionMetricsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListUtteranceAnalyticsDataCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListUtteranceMetricsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +7 -0
- package/dist-types/ts3.4/models/models_0.d.ts +337 -333
- package/dist-types/ts3.4/models/models_1.d.ts +541 -19
- package/dist-types/ts3.4/pagination/ListIntentMetricsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListIntentStageMetricsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSessionAnalyticsDataPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSessionMetricsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListUtteranceAnalyticsDataPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListUtteranceMetricsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +6 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +84 -0
- package/package.json +16 -17
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListUtteranceMetricsCommandInput,
|
|
4
|
+
ListUtteranceMetricsCommandOutput,
|
|
5
|
+
} from "../commands/ListUtteranceMetricsCommand";
|
|
6
|
+
import { LexModelsV2PaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListUtteranceMetrics(
|
|
8
|
+
config: LexModelsV2PaginationConfiguration,
|
|
9
|
+
input: ListUtteranceMetricsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListUtteranceMetricsCommandOutput>;
|
|
@@ -10,11 +10,17 @@ export * from "./ListBuiltInSlotTypesPaginator";
|
|
|
10
10
|
export * from "./ListCustomVocabularyItemsPaginator";
|
|
11
11
|
export * from "./ListExportsPaginator";
|
|
12
12
|
export * from "./ListImportsPaginator";
|
|
13
|
+
export * from "./ListIntentMetricsPaginator";
|
|
14
|
+
export * from "./ListIntentStageMetricsPaginator";
|
|
13
15
|
export * from "./ListIntentsPaginator";
|
|
14
16
|
export * from "./ListRecommendedIntentsPaginator";
|
|
17
|
+
export * from "./ListSessionAnalyticsDataPaginator";
|
|
18
|
+
export * from "./ListSessionMetricsPaginator";
|
|
15
19
|
export * from "./ListSlotTypesPaginator";
|
|
16
20
|
export * from "./ListSlotsPaginator";
|
|
17
21
|
export * from "./ListTestExecutionResultItemsPaginator";
|
|
18
22
|
export * from "./ListTestExecutionsPaginator";
|
|
19
23
|
export * from "./ListTestSetRecordsPaginator";
|
|
20
24
|
export * from "./ListTestSetsPaginator";
|
|
25
|
+
export * from "./ListUtteranceAnalyticsDataPaginator";
|
|
26
|
+
export * from "./ListUtteranceMetricsPaginator";
|
|
@@ -235,14 +235,34 @@ import {
|
|
|
235
235
|
ListImportsCommandInput,
|
|
236
236
|
ListImportsCommandOutput,
|
|
237
237
|
} from "../commands/ListImportsCommand";
|
|
238
|
+
import {
|
|
239
|
+
ListIntentMetricsCommandInput,
|
|
240
|
+
ListIntentMetricsCommandOutput,
|
|
241
|
+
} from "../commands/ListIntentMetricsCommand";
|
|
242
|
+
import {
|
|
243
|
+
ListIntentPathsCommandInput,
|
|
244
|
+
ListIntentPathsCommandOutput,
|
|
245
|
+
} from "../commands/ListIntentPathsCommand";
|
|
238
246
|
import {
|
|
239
247
|
ListIntentsCommandInput,
|
|
240
248
|
ListIntentsCommandOutput,
|
|
241
249
|
} from "../commands/ListIntentsCommand";
|
|
250
|
+
import {
|
|
251
|
+
ListIntentStageMetricsCommandInput,
|
|
252
|
+
ListIntentStageMetricsCommandOutput,
|
|
253
|
+
} from "../commands/ListIntentStageMetricsCommand";
|
|
242
254
|
import {
|
|
243
255
|
ListRecommendedIntentsCommandInput,
|
|
244
256
|
ListRecommendedIntentsCommandOutput,
|
|
245
257
|
} from "../commands/ListRecommendedIntentsCommand";
|
|
258
|
+
import {
|
|
259
|
+
ListSessionAnalyticsDataCommandInput,
|
|
260
|
+
ListSessionAnalyticsDataCommandOutput,
|
|
261
|
+
} from "../commands/ListSessionAnalyticsDataCommand";
|
|
262
|
+
import {
|
|
263
|
+
ListSessionMetricsCommandInput,
|
|
264
|
+
ListSessionMetricsCommandOutput,
|
|
265
|
+
} from "../commands/ListSessionMetricsCommand";
|
|
246
266
|
import {
|
|
247
267
|
ListSlotsCommandInput,
|
|
248
268
|
ListSlotsCommandOutput,
|
|
@@ -271,6 +291,14 @@ import {
|
|
|
271
291
|
ListTestSetsCommandInput,
|
|
272
292
|
ListTestSetsCommandOutput,
|
|
273
293
|
} from "../commands/ListTestSetsCommand";
|
|
294
|
+
import {
|
|
295
|
+
ListUtteranceAnalyticsDataCommandInput,
|
|
296
|
+
ListUtteranceAnalyticsDataCommandOutput,
|
|
297
|
+
} from "../commands/ListUtteranceAnalyticsDataCommand";
|
|
298
|
+
import {
|
|
299
|
+
ListUtteranceMetricsCommandInput,
|
|
300
|
+
ListUtteranceMetricsCommandOutput,
|
|
301
|
+
} from "../commands/ListUtteranceMetricsCommand";
|
|
274
302
|
import {
|
|
275
303
|
SearchAssociatedTranscriptsCommandInput,
|
|
276
304
|
SearchAssociatedTranscriptsCommandOutput,
|
|
@@ -575,14 +603,34 @@ export declare const se_ListImportsCommand: (
|
|
|
575
603
|
input: ListImportsCommandInput,
|
|
576
604
|
context: __SerdeContext
|
|
577
605
|
) => Promise<__HttpRequest>;
|
|
606
|
+
export declare const se_ListIntentMetricsCommand: (
|
|
607
|
+
input: ListIntentMetricsCommandInput,
|
|
608
|
+
context: __SerdeContext
|
|
609
|
+
) => Promise<__HttpRequest>;
|
|
610
|
+
export declare const se_ListIntentPathsCommand: (
|
|
611
|
+
input: ListIntentPathsCommandInput,
|
|
612
|
+
context: __SerdeContext
|
|
613
|
+
) => Promise<__HttpRequest>;
|
|
578
614
|
export declare const se_ListIntentsCommand: (
|
|
579
615
|
input: ListIntentsCommandInput,
|
|
580
616
|
context: __SerdeContext
|
|
581
617
|
) => Promise<__HttpRequest>;
|
|
618
|
+
export declare const se_ListIntentStageMetricsCommand: (
|
|
619
|
+
input: ListIntentStageMetricsCommandInput,
|
|
620
|
+
context: __SerdeContext
|
|
621
|
+
) => Promise<__HttpRequest>;
|
|
582
622
|
export declare const se_ListRecommendedIntentsCommand: (
|
|
583
623
|
input: ListRecommendedIntentsCommandInput,
|
|
584
624
|
context: __SerdeContext
|
|
585
625
|
) => Promise<__HttpRequest>;
|
|
626
|
+
export declare const se_ListSessionAnalyticsDataCommand: (
|
|
627
|
+
input: ListSessionAnalyticsDataCommandInput,
|
|
628
|
+
context: __SerdeContext
|
|
629
|
+
) => Promise<__HttpRequest>;
|
|
630
|
+
export declare const se_ListSessionMetricsCommand: (
|
|
631
|
+
input: ListSessionMetricsCommandInput,
|
|
632
|
+
context: __SerdeContext
|
|
633
|
+
) => Promise<__HttpRequest>;
|
|
586
634
|
export declare const se_ListSlotsCommand: (
|
|
587
635
|
input: ListSlotsCommandInput,
|
|
588
636
|
context: __SerdeContext
|
|
@@ -611,6 +659,14 @@ export declare const se_ListTestSetsCommand: (
|
|
|
611
659
|
input: ListTestSetsCommandInput,
|
|
612
660
|
context: __SerdeContext
|
|
613
661
|
) => Promise<__HttpRequest>;
|
|
662
|
+
export declare const se_ListUtteranceAnalyticsDataCommand: (
|
|
663
|
+
input: ListUtteranceAnalyticsDataCommandInput,
|
|
664
|
+
context: __SerdeContext
|
|
665
|
+
) => Promise<__HttpRequest>;
|
|
666
|
+
export declare const se_ListUtteranceMetricsCommand: (
|
|
667
|
+
input: ListUtteranceMetricsCommandInput,
|
|
668
|
+
context: __SerdeContext
|
|
669
|
+
) => Promise<__HttpRequest>;
|
|
614
670
|
export declare const se_SearchAssociatedTranscriptsCommand: (
|
|
615
671
|
input: SearchAssociatedTranscriptsCommandInput,
|
|
616
672
|
context: __SerdeContext
|
|
@@ -915,14 +971,34 @@ export declare const de_ListImportsCommand: (
|
|
|
915
971
|
output: __HttpResponse,
|
|
916
972
|
context: __SerdeContext
|
|
917
973
|
) => Promise<ListImportsCommandOutput>;
|
|
974
|
+
export declare const de_ListIntentMetricsCommand: (
|
|
975
|
+
output: __HttpResponse,
|
|
976
|
+
context: __SerdeContext
|
|
977
|
+
) => Promise<ListIntentMetricsCommandOutput>;
|
|
978
|
+
export declare const de_ListIntentPathsCommand: (
|
|
979
|
+
output: __HttpResponse,
|
|
980
|
+
context: __SerdeContext
|
|
981
|
+
) => Promise<ListIntentPathsCommandOutput>;
|
|
918
982
|
export declare const de_ListIntentsCommand: (
|
|
919
983
|
output: __HttpResponse,
|
|
920
984
|
context: __SerdeContext
|
|
921
985
|
) => Promise<ListIntentsCommandOutput>;
|
|
986
|
+
export declare const de_ListIntentStageMetricsCommand: (
|
|
987
|
+
output: __HttpResponse,
|
|
988
|
+
context: __SerdeContext
|
|
989
|
+
) => Promise<ListIntentStageMetricsCommandOutput>;
|
|
922
990
|
export declare const de_ListRecommendedIntentsCommand: (
|
|
923
991
|
output: __HttpResponse,
|
|
924
992
|
context: __SerdeContext
|
|
925
993
|
) => Promise<ListRecommendedIntentsCommandOutput>;
|
|
994
|
+
export declare const de_ListSessionAnalyticsDataCommand: (
|
|
995
|
+
output: __HttpResponse,
|
|
996
|
+
context: __SerdeContext
|
|
997
|
+
) => Promise<ListSessionAnalyticsDataCommandOutput>;
|
|
998
|
+
export declare const de_ListSessionMetricsCommand: (
|
|
999
|
+
output: __HttpResponse,
|
|
1000
|
+
context: __SerdeContext
|
|
1001
|
+
) => Promise<ListSessionMetricsCommandOutput>;
|
|
926
1002
|
export declare const de_ListSlotsCommand: (
|
|
927
1003
|
output: __HttpResponse,
|
|
928
1004
|
context: __SerdeContext
|
|
@@ -951,6 +1027,14 @@ export declare const de_ListTestSetsCommand: (
|
|
|
951
1027
|
output: __HttpResponse,
|
|
952
1028
|
context: __SerdeContext
|
|
953
1029
|
) => Promise<ListTestSetsCommandOutput>;
|
|
1030
|
+
export declare const de_ListUtteranceAnalyticsDataCommand: (
|
|
1031
|
+
output: __HttpResponse,
|
|
1032
|
+
context: __SerdeContext
|
|
1033
|
+
) => Promise<ListUtteranceAnalyticsDataCommandOutput>;
|
|
1034
|
+
export declare const de_ListUtteranceMetricsCommand: (
|
|
1035
|
+
output: __HttpResponse,
|
|
1036
|
+
context: __SerdeContext
|
|
1037
|
+
) => Promise<ListUtteranceMetricsCommandOutput>;
|
|
954
1038
|
export declare const de_SearchAssociatedTranscriptsCommand: (
|
|
955
1039
|
output: __HttpResponse,
|
|
956
1040
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-lex-models-v2",
|
|
3
3
|
"description": "AWS SDK for JavaScript Lex Models V2 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.372.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",
|
|
@@ -21,29 +21,29 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-signing": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "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.
|
|
24
|
+
"@aws-sdk/client-sts": "3.370.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.370.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.370.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.370.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.370.0",
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.370.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.370.0",
|
|
31
|
+
"@aws-sdk/types": "3.370.0",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.370.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "3.370.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.370.0",
|
|
35
35
|
"@smithy/config-resolver": "^1.0.1",
|
|
36
36
|
"@smithy/fetch-http-handler": "^1.0.1",
|
|
37
37
|
"@smithy/hash-node": "^1.0.1",
|
|
38
38
|
"@smithy/invalid-dependency": "^1.0.1",
|
|
39
39
|
"@smithy/middleware-content-length": "^1.0.1",
|
|
40
|
-
"@smithy/middleware-endpoint": "^1.0.
|
|
41
|
-
"@smithy/middleware-retry": "^1.0.
|
|
40
|
+
"@smithy/middleware-endpoint": "^1.0.2",
|
|
41
|
+
"@smithy/middleware-retry": "^1.0.3",
|
|
42
42
|
"@smithy/middleware-serde": "^1.0.1",
|
|
43
43
|
"@smithy/middleware-stack": "^1.0.1",
|
|
44
44
|
"@smithy/node-config-provider": "^1.0.1",
|
|
45
45
|
"@smithy/node-http-handler": "^1.0.2",
|
|
46
|
-
"@smithy/protocol-http": "^1.0
|
|
46
|
+
"@smithy/protocol-http": "^1.1.0",
|
|
47
47
|
"@smithy/smithy-client": "^1.0.3",
|
|
48
48
|
"@smithy/types": "^1.1.0",
|
|
49
49
|
"@smithy/url-parser": "^1.0.1",
|
|
@@ -52,13 +52,12 @@
|
|
|
52
52
|
"@smithy/util-body-length-node": "^1.0.1",
|
|
53
53
|
"@smithy/util-defaults-mode-browser": "^1.0.1",
|
|
54
54
|
"@smithy/util-defaults-mode-node": "^1.0.1",
|
|
55
|
-
"@smithy/util-retry": "^1.0.
|
|
55
|
+
"@smithy/util-retry": "^1.0.3",
|
|
56
56
|
"@smithy/util-utf8": "^1.0.1",
|
|
57
57
|
"@smithy/util-waiter": "^1.0.1",
|
|
58
58
|
"tslib": "^2.5.0"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
|
-
"@aws-sdk/service-client-documentation-generator": "3.310.0",
|
|
62
61
|
"@smithy/service-client-documentation-generator": "^1.0.1",
|
|
63
62
|
"@tsconfig/node14": "1.0.3",
|
|
64
63
|
"@types/node": "^14.14.31",
|