@aws-sdk/lib-dynamodb 3.36.1 → 3.40.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 +32 -0
- package/dist-cjs/commands/index.js +16 -0
- package/dist-cjs/index.js +2 -14
- package/dist-es/commands/index.js +13 -0
- package/dist-es/index.js +2 -14
- package/dist-types/commands/index.d.ts +13 -0
- package/dist-types/index.d.ts +2 -14
- package/dist-types/ts3.4/commands/index.d.ts +13 -0
- package/dist-types/ts3.4/index.d.ts +2 -14
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,38 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.40.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.39.0...v3.40.0) (2021-11-05)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/lib-dynamodb
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.39.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.38.0...v3.39.0) (2021-10-29)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/lib-dynamodb
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
# [3.38.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.37.0...v3.38.0) (2021-10-22)
|
|
23
|
+
|
|
24
|
+
**Note:** Version bump only for package @aws-sdk/lib-dynamodb
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
# [3.37.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.36.1...v3.37.0) (2021-10-15)
|
|
31
|
+
|
|
32
|
+
**Note:** Version bump only for package @aws-sdk/lib-dynamodb
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
6
38
|
## [3.36.1](https://github.com/aws/aws-sdk-js-v3/compare/v3.36.0...v3.36.1) (2021-10-12)
|
|
7
39
|
|
|
8
40
|
**Note:** Version bump only for package @aws-sdk/lib-dynamodb
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
tslib_1.__exportStar(require("./BatchExecuteStatementCommand"), exports);
|
|
5
|
+
tslib_1.__exportStar(require("./BatchGetCommand"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./BatchWriteCommand"), exports);
|
|
7
|
+
tslib_1.__exportStar(require("./DeleteCommand"), exports);
|
|
8
|
+
tslib_1.__exportStar(require("./ExecuteStatementCommand"), exports);
|
|
9
|
+
tslib_1.__exportStar(require("./ExecuteTransactionCommand"), exports);
|
|
10
|
+
tslib_1.__exportStar(require("./GetCommand"), exports);
|
|
11
|
+
tslib_1.__exportStar(require("./PutCommand"), exports);
|
|
12
|
+
tslib_1.__exportStar(require("./QueryCommand"), exports);
|
|
13
|
+
tslib_1.__exportStar(require("./ScanCommand"), exports);
|
|
14
|
+
tslib_1.__exportStar(require("./TransactGetCommand"), exports);
|
|
15
|
+
tslib_1.__exportStar(require("./TransactWriteCommand"), exports);
|
|
16
|
+
tslib_1.__exportStar(require("./UpdateCommand"), exports);
|
package/dist-cjs/index.js
CHANGED
|
@@ -1,18 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const tslib_1 = require("tslib");
|
|
4
|
-
tslib_1.__exportStar(require("./commands/BatchExecuteStatementCommand"), exports);
|
|
5
|
-
tslib_1.__exportStar(require("./commands/BatchGetCommand"), exports);
|
|
6
|
-
tslib_1.__exportStar(require("./commands/BatchWriteCommand"), exports);
|
|
7
|
-
tslib_1.__exportStar(require("./commands/DeleteCommand"), exports);
|
|
8
|
-
tslib_1.__exportStar(require("./commands/ExecuteStatementCommand"), exports);
|
|
9
|
-
tslib_1.__exportStar(require("./commands/ExecuteTransactionCommand"), exports);
|
|
10
|
-
tslib_1.__exportStar(require("./commands/GetCommand"), exports);
|
|
11
|
-
tslib_1.__exportStar(require("./commands/PutCommand"), exports);
|
|
12
|
-
tslib_1.__exportStar(require("./commands/QueryCommand"), exports);
|
|
13
|
-
tslib_1.__exportStar(require("./commands/ScanCommand"), exports);
|
|
14
|
-
tslib_1.__exportStar(require("./commands/TransactGetCommand"), exports);
|
|
15
|
-
tslib_1.__exportStar(require("./commands/TransactWriteCommand"), exports);
|
|
16
|
-
tslib_1.__exportStar(require("./commands/UpdateCommand"), exports);
|
|
17
|
-
tslib_1.__exportStar(require("./DynamoDBDocumentClient"), exports);
|
|
18
4
|
tslib_1.__exportStar(require("./DynamoDBDocument"), exports);
|
|
5
|
+
tslib_1.__exportStar(require("./DynamoDBDocumentClient"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./commands"), exports);
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export * from "./BatchExecuteStatementCommand";
|
|
2
|
+
export * from "./BatchGetCommand";
|
|
3
|
+
export * from "./BatchWriteCommand";
|
|
4
|
+
export * from "./DeleteCommand";
|
|
5
|
+
export * from "./ExecuteStatementCommand";
|
|
6
|
+
export * from "./ExecuteTransactionCommand";
|
|
7
|
+
export * from "./GetCommand";
|
|
8
|
+
export * from "./PutCommand";
|
|
9
|
+
export * from "./QueryCommand";
|
|
10
|
+
export * from "./ScanCommand";
|
|
11
|
+
export * from "./TransactGetCommand";
|
|
12
|
+
export * from "./TransactWriteCommand";
|
|
13
|
+
export * from "./UpdateCommand";
|
package/dist-es/index.js
CHANGED
|
@@ -1,15 +1,3 @@
|
|
|
1
|
-
export * from "./commands/BatchExecuteStatementCommand";
|
|
2
|
-
export * from "./commands/BatchGetCommand";
|
|
3
|
-
export * from "./commands/BatchWriteCommand";
|
|
4
|
-
export * from "./commands/DeleteCommand";
|
|
5
|
-
export * from "./commands/ExecuteStatementCommand";
|
|
6
|
-
export * from "./commands/ExecuteTransactionCommand";
|
|
7
|
-
export * from "./commands/GetCommand";
|
|
8
|
-
export * from "./commands/PutCommand";
|
|
9
|
-
export * from "./commands/QueryCommand";
|
|
10
|
-
export * from "./commands/ScanCommand";
|
|
11
|
-
export * from "./commands/TransactGetCommand";
|
|
12
|
-
export * from "./commands/TransactWriteCommand";
|
|
13
|
-
export * from "./commands/UpdateCommand";
|
|
14
|
-
export * from "./DynamoDBDocumentClient";
|
|
15
1
|
export * from "./DynamoDBDocument";
|
|
2
|
+
export * from "./DynamoDBDocumentClient";
|
|
3
|
+
export * from "./commands";
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export * from "./BatchExecuteStatementCommand";
|
|
2
|
+
export * from "./BatchGetCommand";
|
|
3
|
+
export * from "./BatchWriteCommand";
|
|
4
|
+
export * from "./DeleteCommand";
|
|
5
|
+
export * from "./ExecuteStatementCommand";
|
|
6
|
+
export * from "./ExecuteTransactionCommand";
|
|
7
|
+
export * from "./GetCommand";
|
|
8
|
+
export * from "./PutCommand";
|
|
9
|
+
export * from "./QueryCommand";
|
|
10
|
+
export * from "./ScanCommand";
|
|
11
|
+
export * from "./TransactGetCommand";
|
|
12
|
+
export * from "./TransactWriteCommand";
|
|
13
|
+
export * from "./UpdateCommand";
|
package/dist-types/index.d.ts
CHANGED
|
@@ -1,15 +1,3 @@
|
|
|
1
|
-
export * from "./commands/BatchExecuteStatementCommand";
|
|
2
|
-
export * from "./commands/BatchGetCommand";
|
|
3
|
-
export * from "./commands/BatchWriteCommand";
|
|
4
|
-
export * from "./commands/DeleteCommand";
|
|
5
|
-
export * from "./commands/ExecuteStatementCommand";
|
|
6
|
-
export * from "./commands/ExecuteTransactionCommand";
|
|
7
|
-
export * from "./commands/GetCommand";
|
|
8
|
-
export * from "./commands/PutCommand";
|
|
9
|
-
export * from "./commands/QueryCommand";
|
|
10
|
-
export * from "./commands/ScanCommand";
|
|
11
|
-
export * from "./commands/TransactGetCommand";
|
|
12
|
-
export * from "./commands/TransactWriteCommand";
|
|
13
|
-
export * from "./commands/UpdateCommand";
|
|
14
|
-
export * from "./DynamoDBDocumentClient";
|
|
15
1
|
export * from "./DynamoDBDocument";
|
|
2
|
+
export * from "./DynamoDBDocumentClient";
|
|
3
|
+
export * from "./commands";
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export * from "./BatchExecuteStatementCommand";
|
|
2
|
+
export * from "./BatchGetCommand";
|
|
3
|
+
export * from "./BatchWriteCommand";
|
|
4
|
+
export * from "./DeleteCommand";
|
|
5
|
+
export * from "./ExecuteStatementCommand";
|
|
6
|
+
export * from "./ExecuteTransactionCommand";
|
|
7
|
+
export * from "./GetCommand";
|
|
8
|
+
export * from "./PutCommand";
|
|
9
|
+
export * from "./QueryCommand";
|
|
10
|
+
export * from "./ScanCommand";
|
|
11
|
+
export * from "./TransactGetCommand";
|
|
12
|
+
export * from "./TransactWriteCommand";
|
|
13
|
+
export * from "./UpdateCommand";
|
|
@@ -1,15 +1,3 @@
|
|
|
1
|
-
export * from "./commands/BatchExecuteStatementCommand";
|
|
2
|
-
export * from "./commands/BatchGetCommand";
|
|
3
|
-
export * from "./commands/BatchWriteCommand";
|
|
4
|
-
export * from "./commands/DeleteCommand";
|
|
5
|
-
export * from "./commands/ExecuteStatementCommand";
|
|
6
|
-
export * from "./commands/ExecuteTransactionCommand";
|
|
7
|
-
export * from "./commands/GetCommand";
|
|
8
|
-
export * from "./commands/PutCommand";
|
|
9
|
-
export * from "./commands/QueryCommand";
|
|
10
|
-
export * from "./commands/ScanCommand";
|
|
11
|
-
export * from "./commands/TransactGetCommand";
|
|
12
|
-
export * from "./commands/TransactWriteCommand";
|
|
13
|
-
export * from "./commands/UpdateCommand";
|
|
14
|
-
export * from "./DynamoDBDocumentClient";
|
|
15
1
|
export * from "./DynamoDBDocument";
|
|
2
|
+
export * from "./DynamoDBDocumentClient";
|
|
3
|
+
export * from "./commands";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/lib-dynamodb",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.40.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",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
},
|
|
23
23
|
"license": "Apache-2.0",
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@aws-sdk/util-dynamodb": "3.
|
|
25
|
+
"@aws-sdk/util-dynamodb": "3.40.0",
|
|
26
26
|
"tslib": "^2.3.0"
|
|
27
27
|
},
|
|
28
28
|
"peerDependencies": {
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
"@aws-sdk/types": "^3.0.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@aws-sdk/client-dynamodb": "3.
|
|
35
|
-
"@aws-sdk/smithy-client": "3.
|
|
36
|
-
"@aws-sdk/types": "3.
|
|
34
|
+
"@aws-sdk/client-dynamodb": "3.40.0",
|
|
35
|
+
"@aws-sdk/smithy-client": "3.40.0",
|
|
36
|
+
"@aws-sdk/types": "3.40.0",
|
|
37
37
|
"@types/jest": "^26.0.4",
|
|
38
38
|
"@types/node": "^14.11.2",
|
|
39
39
|
"jest": "^26.4.2",
|