@aws-sdk/lib-dynamodb 3.427.0 → 3.429.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 (61) hide show
  1. package/dist-cjs/baseCommand/DynamoDBDocumentClientCommand.js +4 -1
  2. package/dist-cjs/commands/BatchExecuteStatementCommand.js +18 -4
  3. package/dist-cjs/commands/BatchGetCommand.js +20 -13
  4. package/dist-cjs/commands/BatchWriteCommand.js +30 -22
  5. package/dist-cjs/commands/DeleteCommand.js +15 -12
  6. package/dist-cjs/commands/ExecuteStatementCommand.js +10 -2
  7. package/dist-cjs/commands/ExecuteTransactionCommand.js +15 -2
  8. package/dist-cjs/commands/GetCommand.js +7 -2
  9. package/dist-cjs/commands/PutCommand.js +15 -12
  10. package/dist-cjs/commands/QueryCommand.js +17 -13
  11. package/dist-cjs/commands/ScanCommand.js +14 -9
  12. package/dist-cjs/commands/TransactGetCommand.js +17 -2
  13. package/dist-cjs/commands/TransactWriteCommand.js +29 -16
  14. package/dist-cjs/commands/UpdateCommand.js +18 -16
  15. package/dist-cjs/commands/utils.js +44 -19
  16. package/dist-es/baseCommand/DynamoDBDocumentClientCommand.js +3 -1
  17. package/dist-es/commands/BatchExecuteStatementCommand.js +18 -4
  18. package/dist-es/commands/BatchGetCommand.js +20 -13
  19. package/dist-es/commands/BatchWriteCommand.js +30 -22
  20. package/dist-es/commands/DeleteCommand.js +15 -12
  21. package/dist-es/commands/ExecuteStatementCommand.js +10 -2
  22. package/dist-es/commands/ExecuteTransactionCommand.js +15 -2
  23. package/dist-es/commands/GetCommand.js +7 -2
  24. package/dist-es/commands/PutCommand.js +15 -12
  25. package/dist-es/commands/QueryCommand.js +17 -13
  26. package/dist-es/commands/ScanCommand.js +14 -9
  27. package/dist-es/commands/TransactGetCommand.js +17 -2
  28. package/dist-es/commands/TransactWriteCommand.js +29 -16
  29. package/dist-es/commands/UpdateCommand.js +18 -16
  30. package/dist-es/commands/utils.js +43 -18
  31. package/dist-types/baseCommand/DynamoDBDocumentClientCommand.d.ts +3 -3
  32. package/dist-types/commands/BatchExecuteStatementCommand.d.ts +15 -16
  33. package/dist-types/commands/BatchGetCommand.d.ts +19 -17
  34. package/dist-types/commands/BatchWriteCommand.d.ts +31 -25
  35. package/dist-types/commands/DeleteCommand.d.ts +15 -19
  36. package/dist-types/commands/ExecuteStatementCommand.d.ts +7 -4
  37. package/dist-types/commands/ExecuteTransactionCommand.d.ts +12 -10
  38. package/dist-types/commands/GetCommand.d.ts +4 -4
  39. package/dist-types/commands/PutCommand.d.ts +15 -19
  40. package/dist-types/commands/QueryCommand.d.ts +18 -12
  41. package/dist-types/commands/ScanCommand.d.ts +13 -12
  42. package/dist-types/commands/TransactGetCommand.d.ts +14 -13
  43. package/dist-types/commands/TransactWriteCommand.d.ts +28 -14
  44. package/dist-types/commands/UpdateCommand.d.ts +20 -19
  45. package/dist-types/commands/utils.d.ts +32 -9
  46. package/dist-types/ts3.4/baseCommand/DynamoDBDocumentClientCommand.d.ts +3 -3
  47. package/dist-types/ts3.4/commands/BatchExecuteStatementCommand.d.ts +15 -19
  48. package/dist-types/ts3.4/commands/BatchGetCommand.d.ts +20 -21
  49. package/dist-types/ts3.4/commands/BatchWriteCommand.d.ts +31 -28
  50. package/dist-types/ts3.4/commands/DeleteCommand.d.ts +16 -26
  51. package/dist-types/ts3.4/commands/ExecuteStatementCommand.d.ts +7 -4
  52. package/dist-types/ts3.4/commands/ExecuteTransactionCommand.d.ts +12 -10
  53. package/dist-types/ts3.4/commands/GetCommand.d.ts +4 -4
  54. package/dist-types/ts3.4/commands/PutCommand.d.ts +16 -26
  55. package/dist-types/ts3.4/commands/QueryCommand.d.ts +19 -16
  56. package/dist-types/ts3.4/commands/ScanCommand.d.ts +14 -16
  57. package/dist-types/ts3.4/commands/TransactGetCommand.d.ts +14 -13
  58. package/dist-types/ts3.4/commands/TransactWriteCommand.d.ts +28 -14
  59. package/dist-types/ts3.4/commands/UpdateCommand.d.ts +21 -26
  60. package/dist-types/ts3.4/commands/utils.d.ts +8 -9
  61. package/package.json +7 -6
@@ -52,29 +52,28 @@ export declare class BatchGetCommand extends DynamoDBDocumentClientCommand<
52
52
  > {
53
53
  readonly input: BatchGetCommandInput;
54
54
  protected readonly inputKeyNodes: {
55
- key: string;
56
- children: {
57
- children: {
58
- key: string;
59
- }[];
60
- };
61
- }[];
62
- protected readonly outputKeyNodes: (
63
- | {
64
- key: string;
65
- children: {
66
- children?: undefined;
55
+ RequestItems: {
56
+ "*": {
57
+ Keys: {
58
+ "*": import("../commands/utils").KeyNodeChildren;
67
59
  };
68
- }
69
- | {
70
- key: string;
71
- children: {
72
- children: {
73
- key: string;
74
- }[];
60
+ };
61
+ };
62
+ };
63
+ protected readonly outputKeyNodes: {
64
+ Responses: {
65
+ "*": {
66
+ "*": import("../commands/utils").KeyNodeChildren;
67
+ };
68
+ };
69
+ UnprocessedKeys: {
70
+ "*": {
71
+ Keys: {
72
+ "*": import("../commands/utils").KeyNodeChildren;
75
73
  };
76
- }
77
- )[];
74
+ };
75
+ };
76
+ };
78
77
  protected readonly clientCommand: __BatchGetItemCommand;
79
78
  readonly middlewareStack: MiddlewareStack<
80
79
  BatchGetCommandInput | __BatchGetItemCommandInput,
@@ -88,37 +88,40 @@ export declare class BatchWriteCommand extends DynamoDBDocumentClientCommand<
88
88
  > {
89
89
  readonly input: BatchWriteCommandInput;
90
90
  protected readonly inputKeyNodes: {
91
- key: string;
92
- children: {
93
- children: {
94
- key: string;
95
- children: {
96
- key: string;
97
- }[];
98
- }[];
91
+ RequestItems: {
92
+ "*": {
93
+ "*": {
94
+ PutRequest: {
95
+ Item: import("../commands/utils").KeyNodeChildren;
96
+ };
97
+ DeleteRequest: {
98
+ Key: import("../commands/utils").KeyNodeChildren;
99
+ };
100
+ };
101
+ };
99
102
  };
100
- }[];
101
- protected readonly outputKeyNodes: (
102
- | {
103
- key: string;
104
- children: {
105
- children: {
106
- key: string;
107
- children: {
108
- key: string;
109
- }[];
110
- }[];
103
+ };
104
+ protected readonly outputKeyNodes: {
105
+ UnprocessedItems: {
106
+ "*": {
107
+ "*": {
108
+ PutRequest: {
109
+ Item: import("../commands/utils").KeyNodeChildren;
110
+ };
111
+ DeleteRequest: {
112
+ Key: import("../commands/utils").KeyNodeChildren;
113
+ };
111
114
  };
112
- }
113
- | {
114
- key: string;
115
- children: {
116
- children: {
117
- key: string;
118
- }[];
115
+ };
116
+ };
117
+ ItemCollectionMetrics: {
118
+ "*": {
119
+ "*": {
120
+ ItemCollectionKey: import("../commands/utils").KeyNodeChildren;
119
121
  };
120
- }
121
- )[];
122
+ };
123
+ };
124
+ };
122
125
  protected readonly clientCommand: __BatchWriteItemCommand;
123
126
  readonly middlewareStack: MiddlewareStack<
124
127
  BatchWriteCommandInput | __BatchWriteItemCommandInput,
@@ -62,32 +62,22 @@ export declare class DeleteCommand extends DynamoDBDocumentClientCommand<
62
62
  DynamoDBDocumentClientResolvedConfig
63
63
  > {
64
64
  readonly input: DeleteCommandInput;
65
- protected readonly inputKeyNodes: (
66
- | {
67
- key: string;
68
- children?: undefined;
69
- }
70
- | {
71
- key: string;
72
- children: {
73
- children: {
74
- key: string;
75
- }[];
76
- };
77
- }
78
- )[];
79
- protected readonly outputKeyNodes: (
80
- | {
81
- key: string;
82
- children?: undefined;
83
- }
84
- | {
85
- key: string;
86
- children: {
87
- key: string;
88
- }[];
89
- }
90
- )[];
65
+ protected readonly inputKeyNodes: {
66
+ Key: import("../commands/utils").KeyNodeChildren;
67
+ Expected: {
68
+ "*": {
69
+ Value: null;
70
+ AttributeValueList: import("../commands/utils").KeyNodeChildren;
71
+ };
72
+ };
73
+ ExpressionAttributeValues: import("../commands/utils").KeyNodeChildren;
74
+ };
75
+ protected readonly outputKeyNodes: {
76
+ Attributes: import("../commands/utils").KeyNodeChildren;
77
+ ItemCollectionMetrics: {
78
+ ItemCollectionKey: import("../commands/utils").KeyNodeChildren;
79
+ };
80
+ };
91
81
  protected readonly clientCommand: __DeleteItemCommand;
92
82
  readonly middlewareStack: MiddlewareStack<
93
83
  DeleteCommandInput | __DeleteItemCommandInput,
@@ -39,11 +39,14 @@ export declare class ExecuteStatementCommand extends DynamoDBDocumentClientComma
39
39
  > {
40
40
  readonly input: ExecuteStatementCommandInput;
41
41
  protected readonly inputKeyNodes: {
42
- key: string;
43
- }[];
42
+ Parameters: import("../commands/utils").KeyNodeChildren;
43
+ };
44
44
  protected readonly outputKeyNodes: {
45
- key: string;
46
- }[];
45
+ Items: {
46
+ "*": import("../commands/utils").KeyNodeChildren;
47
+ };
48
+ LastEvaluatedKey: import("../commands/utils").KeyNodeChildren;
49
+ };
47
50
  protected readonly clientCommand: __ExecuteStatementCommand;
48
51
  readonly middlewareStack: MiddlewareStack<
49
52
  ExecuteStatementCommandInput | __ExecuteStatementCommandInput,
@@ -49,17 +49,19 @@ export declare class ExecuteTransactionCommand extends DynamoDBDocumentClientCom
49
49
  > {
50
50
  readonly input: ExecuteTransactionCommandInput;
51
51
  protected readonly inputKeyNodes: {
52
- key: string;
53
- children: {
54
- key: string;
55
- }[];
56
- }[];
52
+ TransactStatements: {
53
+ "*": {
54
+ Parameters: import("../commands/utils").KeyNodeChildren;
55
+ };
56
+ };
57
+ };
57
58
  protected readonly outputKeyNodes: {
58
- key: string;
59
- children: {
60
- key: string;
61
- }[];
62
- }[];
59
+ Responses: {
60
+ "*": {
61
+ Item: import("../commands/utils").KeyNodeChildren;
62
+ };
63
+ };
64
+ };
63
65
  protected readonly clientCommand: __ExecuteTransactionCommand;
64
66
  readonly middlewareStack: MiddlewareStack<
65
67
  ExecuteTransactionCommandInput | __ExecuteTransactionCommandInput,
@@ -38,11 +38,11 @@ export declare class GetCommand extends DynamoDBDocumentClientCommand<
38
38
  > {
39
39
  readonly input: GetCommandInput;
40
40
  protected readonly inputKeyNodes: {
41
- key: string;
42
- }[];
41
+ Key: import("../commands/utils").KeyNodeChildren;
42
+ };
43
43
  protected readonly outputKeyNodes: {
44
- key: string;
45
- }[];
44
+ Item: import("../commands/utils").KeyNodeChildren;
45
+ };
46
46
  protected readonly clientCommand: __GetItemCommand;
47
47
  readonly middlewareStack: MiddlewareStack<
48
48
  GetCommandInput | __GetItemCommandInput,
@@ -59,32 +59,22 @@ export declare class PutCommand extends DynamoDBDocumentClientCommand<
59
59
  DynamoDBDocumentClientResolvedConfig
60
60
  > {
61
61
  readonly input: PutCommandInput;
62
- protected readonly inputKeyNodes: (
63
- | {
64
- key: string;
65
- children?: undefined;
66
- }
67
- | {
68
- key: string;
69
- children: {
70
- children: {
71
- key: string;
72
- }[];
73
- };
74
- }
75
- )[];
76
- protected readonly outputKeyNodes: (
77
- | {
78
- key: string;
79
- children?: undefined;
80
- }
81
- | {
82
- key: string;
83
- children: {
84
- key: string;
85
- }[];
86
- }
87
- )[];
62
+ protected readonly inputKeyNodes: {
63
+ Item: import("../commands/utils").KeyNodeChildren;
64
+ Expected: {
65
+ "*": {
66
+ Value: null;
67
+ AttributeValueList: import("../commands/utils").KeyNodeChildren;
68
+ };
69
+ };
70
+ ExpressionAttributeValues: import("../commands/utils").KeyNodeChildren;
71
+ };
72
+ protected readonly outputKeyNodes: {
73
+ Attributes: import("../commands/utils").KeyNodeChildren;
74
+ ItemCollectionMetrics: {
75
+ ItemCollectionKey: import("../commands/utils").KeyNodeChildren;
76
+ };
77
+ };
88
78
  protected readonly clientCommand: __PutItemCommand;
89
79
  readonly middlewareStack: MiddlewareStack<
90
80
  PutCommandInput | __PutItemCommandInput,
@@ -58,23 +58,26 @@ export declare class QueryCommand extends DynamoDBDocumentClientCommand<
58
58
  DynamoDBDocumentClientResolvedConfig
59
59
  > {
60
60
  readonly input: QueryCommandInput;
61
- protected readonly inputKeyNodes: (
62
- | {
63
- key: string;
64
- children: {
65
- children: {
66
- key: string;
67
- }[];
68
- };
69
- }
70
- | {
71
- key: string;
72
- children?: undefined;
73
- }
74
- )[];
61
+ protected readonly inputKeyNodes: {
62
+ KeyConditions: {
63
+ "*": {
64
+ AttributeValueList: import("../commands/utils").KeyNodeChildren;
65
+ };
66
+ };
67
+ QueryFilter: {
68
+ "*": {
69
+ AttributeValueList: import("../commands/utils").KeyNodeChildren;
70
+ };
71
+ };
72
+ ExclusiveStartKey: import("../commands/utils").KeyNodeChildren;
73
+ ExpressionAttributeValues: import("../commands/utils").KeyNodeChildren;
74
+ };
75
75
  protected readonly outputKeyNodes: {
76
- key: string;
77
- }[];
76
+ Items: {
77
+ "*": import("../commands/utils").KeyNodeChildren;
78
+ };
79
+ LastEvaluatedKey: import("../commands/utils").KeyNodeChildren;
80
+ };
78
81
  protected readonly clientCommand: __QueryCommand;
79
82
  readonly middlewareStack: MiddlewareStack<
80
83
  QueryCommandInput | __QueryCommandInput,
@@ -49,23 +49,21 @@ export declare class ScanCommand extends DynamoDBDocumentClientCommand<
49
49
  DynamoDBDocumentClientResolvedConfig
50
50
  > {
51
51
  readonly input: ScanCommandInput;
52
- protected readonly inputKeyNodes: (
53
- | {
54
- key: string;
55
- children: {
56
- children: {
57
- key: string;
58
- }[];
59
- };
60
- }
61
- | {
62
- key: string;
63
- children?: undefined;
64
- }
65
- )[];
52
+ protected readonly inputKeyNodes: {
53
+ ScanFilter: {
54
+ "*": {
55
+ AttributeValueList: import("../commands/utils").KeyNodeChildren;
56
+ };
57
+ };
58
+ ExclusiveStartKey: import("../commands/utils").KeyNodeChildren;
59
+ ExpressionAttributeValues: import("../commands/utils").KeyNodeChildren;
60
+ };
66
61
  protected readonly outputKeyNodes: {
67
- key: string;
68
- }[];
62
+ Items: {
63
+ "*": import("../commands/utils").KeyNodeChildren;
64
+ };
65
+ LastEvaluatedKey: import("../commands/utils").KeyNodeChildren;
66
+ };
69
67
  protected readonly clientCommand: __ScanCommand;
70
68
  readonly middlewareStack: MiddlewareStack<
71
69
  ScanCommandInput | __ScanCommandInput,
@@ -51,20 +51,21 @@ export declare class TransactGetCommand extends DynamoDBDocumentClientCommand<
51
51
  > {
52
52
  readonly input: TransactGetCommandInput;
53
53
  protected readonly inputKeyNodes: {
54
- key: string;
55
- children: {
56
- key: string;
57
- children: {
58
- key: string;
59
- }[];
60
- }[];
61
- }[];
54
+ TransactItems: {
55
+ "*": {
56
+ Get: {
57
+ Key: import("../commands/utils").KeyNodeChildren;
58
+ };
59
+ };
60
+ };
61
+ };
62
62
  protected readonly outputKeyNodes: {
63
- key: string;
64
- children: {
65
- key: string;
66
- }[];
67
- }[];
63
+ Responses: {
64
+ "*": {
65
+ Item: import("../commands/utils").KeyNodeChildren;
66
+ };
67
+ };
68
+ };
68
69
  protected readonly clientCommand: __TransactGetItemsCommand;
69
70
  readonly middlewareStack: MiddlewareStack<
70
71
  TransactGetCommandInput | __TransactGetItemsCommandInput,
@@ -89,22 +89,36 @@ export declare class TransactWriteCommand extends DynamoDBDocumentClientCommand<
89
89
  > {
90
90
  readonly input: TransactWriteCommandInput;
91
91
  protected readonly inputKeyNodes: {
92
- key: string;
93
- children: {
94
- key: string;
95
- children: {
96
- key: string;
97
- }[];
98
- }[];
99
- }[];
92
+ TransactItems: {
93
+ "*": {
94
+ ConditionCheck: {
95
+ Key: import("../commands/utils").KeyNodeChildren;
96
+ ExpressionAttributeValues: import("../commands/utils").KeyNodeChildren;
97
+ };
98
+ Put: {
99
+ Item: import("../commands/utils").KeyNodeChildren;
100
+ ExpressionAttributeValues: import("../commands/utils").KeyNodeChildren;
101
+ };
102
+ Delete: {
103
+ Key: import("../commands/utils").KeyNodeChildren;
104
+ ExpressionAttributeValues: import("../commands/utils").KeyNodeChildren;
105
+ };
106
+ Update: {
107
+ Key: import("../commands/utils").KeyNodeChildren;
108
+ ExpressionAttributeValues: import("../commands/utils").KeyNodeChildren;
109
+ };
110
+ };
111
+ };
112
+ };
100
113
  protected readonly outputKeyNodes: {
101
- key: string;
102
- children: {
103
- children: {
104
- key: string;
105
- }[];
114
+ ItemCollectionMetrics: {
115
+ "*": {
116
+ "*": {
117
+ ItemCollectionKey: import("../commands/utils").KeyNodeChildren;
118
+ };
119
+ };
106
120
  };
107
- }[];
121
+ };
108
122
  protected readonly clientCommand: __TransactWriteItemsCommand;
109
123
  readonly middlewareStack: MiddlewareStack<
110
124
  TransactWriteCommandInput | __TransactWriteItemsCommandInput,
@@ -69,32 +69,27 @@ export declare class UpdateCommand extends DynamoDBDocumentClientCommand<
69
69
  DynamoDBDocumentClientResolvedConfig
70
70
  > {
71
71
  readonly input: UpdateCommandInput;
72
- protected readonly inputKeyNodes: (
73
- | {
74
- key: string;
75
- children?: undefined;
76
- }
77
- | {
78
- key: string;
79
- children: {
80
- children: {
81
- key: string;
82
- }[];
83
- };
84
- }
85
- )[];
86
- protected readonly outputKeyNodes: (
87
- | {
88
- key: string;
89
- children?: undefined;
90
- }
91
- | {
92
- key: string;
93
- children: {
94
- key: string;
95
- }[];
96
- }
97
- )[];
72
+ protected readonly inputKeyNodes: {
73
+ Key: import("../commands/utils").KeyNodeChildren;
74
+ AttributeUpdates: {
75
+ "*": {
76
+ Value: null;
77
+ };
78
+ };
79
+ Expected: {
80
+ "*": {
81
+ Value: null;
82
+ AttributeValueList: import("../commands/utils").KeyNodeChildren;
83
+ };
84
+ };
85
+ ExpressionAttributeValues: import("../commands/utils").KeyNodeChildren;
86
+ };
87
+ protected readonly outputKeyNodes: {
88
+ Attributes: import("../commands/utils").KeyNodeChildren;
89
+ ItemCollectionMetrics: {
90
+ ItemCollectionKey: import("../commands/utils").KeyNodeChildren;
91
+ };
92
+ };
98
93
  protected readonly clientCommand: __UpdateItemCommand;
99
94
  readonly middlewareStack: MiddlewareStack<
100
95
  UpdateCommandInput | __UpdateItemCommandInput,
@@ -1,18 +1,17 @@
1
1
  import { marshallOptions, unmarshallOptions } from "@aws-sdk/util-dynamodb";
2
- export type KeyNode = {
3
- key: string;
4
- children?: KeyNode[] | AllNodes;
5
- };
6
- export type AllNodes = {
7
- children?: KeyNode[] | AllNodes;
8
- };
2
+ export type KeyNodeSelf = null;
3
+ export declare const SELF: KeyNodeSelf;
4
+ export type KeyNodeChildren = Record<string, any>;
5
+ export declare const ALL_VALUES: KeyNodeChildren;
6
+ export declare const ALL_MEMBERS: KeyNodeChildren;
7
+ export type KeyNodes = KeyNodeSelf | KeyNodeChildren;
9
8
  export declare const marshallInput: (
10
9
  obj: any,
11
- keyNodes: KeyNode[],
10
+ keyNodes: KeyNodeChildren,
12
11
  options?: marshallOptions
13
12
  ) => any;
14
13
  export declare const unmarshallOutput: (
15
14
  obj: any,
16
- keyNodes: KeyNode[],
15
+ keyNodes: KeyNodeChildren,
17
16
  options?: unmarshallOptions
18
17
  ) => any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/lib-dynamodb",
3
- "version": "3.427.0",
3
+ "version": "3.429.0",
4
4
  "description": "The document client simplifies working with items in Amazon DynamoDB by abstracting away the notion of attribute values.",
5
5
  "main": "./dist-cjs/index.js",
6
6
  "module": "./dist-es/index.js",
@@ -14,7 +14,8 @@
14
14
  "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
15
15
  "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
16
16
  "extract:docs": "api-extractor run --local",
17
- "test": "jest"
17
+ "test": "jest",
18
+ "test:e2e": "jest --config jest.config.e2e.js"
18
19
  },
19
20
  "engines": {
20
21
  "node": ">=14.0.0"
@@ -25,16 +26,16 @@
25
26
  },
26
27
  "license": "Apache-2.0",
27
28
  "dependencies": {
28
- "@aws-sdk/util-dynamodb": "3.427.0",
29
+ "@aws-sdk/util-dynamodb": "3.429.0",
29
30
  "tslib": "^2.5.0"
30
31
  },
31
32
  "peerDependencies": {
32
33
  "@aws-sdk/client-dynamodb": "^3.0.0"
33
34
  },
34
35
  "devDependencies": {
35
- "@aws-sdk/client-dynamodb": "3.427.0",
36
- "@smithy/smithy-client": "^2.1.9",
37
- "@smithy/types": "^2.3.4",
36
+ "@aws-sdk/client-dynamodb": "3.429.0",
37
+ "@smithy/smithy-client": "^2.1.11",
38
+ "@smithy/types": "^2.3.5",
38
39
  "@tsconfig/recommended": "1.0.1",
39
40
  "@types/node": "^14.14.31",
40
41
  "concurrently": "7.0.0",