@aws-sdk/lib-dynamodb 3.338.0 → 3.342.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/dist-cjs/DynamoDBDocumentClient.js +2 -1
- package/dist-cjs/commands/BatchExecuteStatementCommand.js +4 -1
- package/dist-cjs/commands/BatchGetCommand.js +4 -1
- package/dist-cjs/commands/BatchWriteCommand.js +4 -1
- package/dist-cjs/commands/DeleteCommand.js +4 -1
- package/dist-cjs/commands/ExecuteStatementCommand.js +4 -1
- package/dist-cjs/commands/ExecuteTransactionCommand.js +4 -1
- package/dist-cjs/commands/GetCommand.js +4 -1
- package/dist-cjs/commands/PutCommand.js +4 -1
- package/dist-cjs/commands/QueryCommand.js +4 -1
- package/dist-cjs/commands/ScanCommand.js +4 -1
- package/dist-cjs/commands/TransactGetCommand.js +4 -1
- package/dist-cjs/commands/TransactWriteCommand.js +4 -1
- package/dist-cjs/commands/UpdateCommand.js +4 -1
- package/dist-es/DynamoDBDocumentClient.js +1 -0
- package/dist-es/commands/BatchExecuteStatementCommand.js +2 -0
- package/dist-es/commands/BatchGetCommand.js +2 -0
- package/dist-es/commands/BatchWriteCommand.js +2 -0
- package/dist-es/commands/DeleteCommand.js +2 -0
- package/dist-es/commands/ExecuteStatementCommand.js +2 -0
- package/dist-es/commands/ExecuteTransactionCommand.js +2 -0
- package/dist-es/commands/GetCommand.js +2 -0
- package/dist-es/commands/PutCommand.js +2 -0
- package/dist-es/commands/QueryCommand.js +2 -0
- package/dist-es/commands/ScanCommand.js +2 -0
- package/dist-es/commands/TransactGetCommand.js +2 -0
- package/dist-es/commands/TransactWriteCommand.js +2 -0
- package/dist-es/commands/UpdateCommand.js +2 -0
- package/dist-types/DynamoDBDocument.d.ts +14 -14
- package/dist-types/DynamoDBDocumentClient.d.ts +19 -1
- package/dist-types/baseCommand/DynamoDBDocumentClientCommand.d.ts +2 -0
- package/dist-types/commands/BatchExecuteStatementCommand.d.ts +14 -1
- package/dist-types/commands/BatchGetCommand.d.ts +14 -1
- package/dist-types/commands/BatchWriteCommand.d.ts +14 -1
- package/dist-types/commands/DeleteCommand.d.ts +14 -1
- package/dist-types/commands/ExecuteStatementCommand.d.ts +14 -1
- package/dist-types/commands/ExecuteTransactionCommand.d.ts +14 -1
- package/dist-types/commands/GetCommand.d.ts +14 -1
- package/dist-types/commands/PutCommand.d.ts +14 -1
- package/dist-types/commands/QueryCommand.d.ts +14 -1
- package/dist-types/commands/ScanCommand.d.ts +14 -1
- package/dist-types/commands/TransactGetCommand.d.ts +14 -1
- package/dist-types/commands/TransactWriteCommand.d.ts +14 -1
- package/dist-types/commands/UpdateCommand.d.ts +14 -1
- package/dist-types/pagination/Interfaces.d.ts +7 -0
- package/dist-types/pagination/QueryPaginator.d.ts +11 -0
- package/dist-types/pagination/ScanPaginator.d.ts +11 -0
- package/dist-types/ts3.4/DynamoDBDocumentClient.d.ts +1 -0
- package/dist-types/ts3.4/commands/BatchExecuteStatementCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/BatchGetCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/BatchWriteCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DeleteCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ExecuteStatementCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ExecuteTransactionCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/PutCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/QueryCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ScanCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/TransactGetCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/TransactWriteCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UpdateCommand.d.ts +2 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -0
- package/dist-types/ts3.4/pagination/QueryPaginator.d.ts +1 -0
- package/dist-types/ts3.4/pagination/ScanPaginator.d.ts +1 -0
- package/package.json +5 -5
|
@@ -9,6 +9,7 @@ import {
|
|
|
9
9
|
TransactWriteItemsCommandOutput as __TransactWriteItemsCommandOutput,
|
|
10
10
|
Update,
|
|
11
11
|
} from "@aws-sdk/client-dynamodb";
|
|
12
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
12
13
|
import {
|
|
13
14
|
Handler,
|
|
14
15
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
@@ -21,6 +22,7 @@ import {
|
|
|
21
22
|
ServiceInputTypes,
|
|
22
23
|
ServiceOutputTypes,
|
|
23
24
|
} from "../DynamoDBDocumentClient";
|
|
25
|
+
export { DynamoDBDocumentClientCommand, $Command };
|
|
24
26
|
export type TransactWriteCommandInput = Pick<
|
|
25
27
|
__TransactWriteItemsCommandInput,
|
|
26
28
|
Exclude<keyof __TransactWriteItemsCommandInput, "TransactItems">
|
|
@@ -6,6 +6,7 @@ import {
|
|
|
6
6
|
UpdateItemCommandInput as __UpdateItemCommandInput,
|
|
7
7
|
UpdateItemCommandOutput as __UpdateItemCommandOutput,
|
|
8
8
|
} from "@aws-sdk/client-dynamodb";
|
|
9
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
9
10
|
import {
|
|
10
11
|
Handler,
|
|
11
12
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
@@ -18,6 +19,7 @@ import {
|
|
|
18
19
|
ServiceInputTypes,
|
|
19
20
|
ServiceOutputTypes,
|
|
20
21
|
} from "../DynamoDBDocumentClient";
|
|
22
|
+
export { DynamoDBDocumentClientCommand, $Command };
|
|
21
23
|
export type UpdateCommandInput = Pick<
|
|
22
24
|
__UpdateItemCommandInput,
|
|
23
25
|
Exclude<
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
2
|
import { DynamoDBDocument } from "../DynamoDBDocument";
|
|
3
3
|
import { DynamoDBDocumentClient } from "../DynamoDBDocumentClient";
|
|
4
|
+
export { PaginationConfiguration };
|
|
4
5
|
export interface DynamoDBDocumentPaginationConfiguration
|
|
5
6
|
extends PaginationConfiguration {
|
|
6
7
|
client: DynamoDBDocument | DynamoDBDocumentClient;
|
|
@@ -4,6 +4,7 @@ import {
|
|
|
4
4
|
QueryCommandOutput,
|
|
5
5
|
} from "../commands/QueryCommand";
|
|
6
6
|
import { DynamoDBDocumentPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export { Paginator };
|
|
7
8
|
export declare function paginateQuery(
|
|
8
9
|
config: DynamoDBDocumentPaginationConfiguration,
|
|
9
10
|
input: QueryCommandInput,
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ScanCommandInput, ScanCommandOutput } from "../commands/ScanCommand";
|
|
3
3
|
import { DynamoDBDocumentPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export { Paginator };
|
|
4
5
|
export declare function paginateScan(
|
|
5
6
|
config: DynamoDBDocumentPaginationConfiguration,
|
|
6
7
|
input: ScanCommandInput,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/lib-dynamodb",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.342.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",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
},
|
|
26
26
|
"license": "Apache-2.0",
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@aws-sdk/util-dynamodb": "3.
|
|
28
|
+
"@aws-sdk/util-dynamodb": "3.342.0",
|
|
29
29
|
"tslib": "^2.5.0"
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {
|
|
@@ -34,9 +34,9 @@
|
|
|
34
34
|
"@aws-sdk/types": "^3.0.0"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@aws-sdk/client-dynamodb": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
37
|
+
"@aws-sdk/client-dynamodb": "3.342.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.342.0",
|
|
39
|
+
"@aws-sdk/types": "3.342.0",
|
|
40
40
|
"@tsconfig/recommended": "1.0.1",
|
|
41
41
|
"@types/node": "^14.11.2",
|
|
42
42
|
"concurrently": "7.0.0",
|