@aws-sdk/client-dynamodb 3.775.0 → 3.782.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-types/commands/BatchExecuteStatementCommand.d.ts +1 -0
- package/dist-types/commands/BatchGetItemCommand.d.ts +27 -27
- package/dist-types/commands/BatchWriteItemCommand.d.ts +32 -29
- package/dist-types/commands/CreateBackupCommand.d.ts +1 -0
- package/dist-types/commands/CreateGlobalTableCommand.d.ts +1 -0
- package/dist-types/commands/CreateTableCommand.d.ts +1 -70
- package/dist-types/commands/DeleteBackupCommand.d.ts +1 -0
- package/dist-types/commands/DeleteItemCommand.d.ts +12 -12
- package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +1 -0
- package/dist-types/commands/DeleteTableCommand.d.ts +13 -13
- package/dist-types/commands/DescribeBackupCommand.d.ts +1 -0
- package/dist-types/commands/DescribeContinuousBackupsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeContributorInsightsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeEndpointsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeExportCommand.d.ts +1 -0
- package/dist-types/commands/DescribeGlobalTableCommand.d.ts +1 -0
- package/dist-types/commands/DescribeGlobalTableSettingsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeImportCommand.d.ts +1 -0
- package/dist-types/commands/DescribeKinesisStreamingDestinationCommand.d.ts +1 -0
- package/dist-types/commands/DescribeLimitsCommand.d.ts +8 -8
- package/dist-types/commands/DescribeTableCommand.d.ts +1 -47
- package/dist-types/commands/DescribeTableReplicaAutoScalingCommand.d.ts +1 -0
- package/dist-types/commands/DescribeTimeToLiveCommand.d.ts +1 -0
- package/dist-types/commands/DisableKinesisStreamingDestinationCommand.d.ts +1 -0
- package/dist-types/commands/EnableKinesisStreamingDestinationCommand.d.ts +1 -0
- package/dist-types/commands/ExecuteStatementCommand.d.ts +1 -0
- package/dist-types/commands/ExecuteTransactionCommand.d.ts +1 -0
- package/dist-types/commands/ExportTableToPointInTimeCommand.d.ts +1 -0
- package/dist-types/commands/GetItemCommand.d.ts +16 -16
- package/dist-types/commands/GetResourcePolicyCommand.d.ts +1 -0
- package/dist-types/commands/ImportTableCommand.d.ts +1 -0
- package/dist-types/commands/ListBackupsCommand.d.ts +1 -0
- package/dist-types/commands/ListContributorInsightsCommand.d.ts +1 -0
- package/dist-types/commands/ListExportsCommand.d.ts +1 -0
- package/dist-types/commands/ListGlobalTablesCommand.d.ts +1 -0
- package/dist-types/commands/ListImportsCommand.d.ts +1 -0
- package/dist-types/commands/ListTablesCommand.d.ts +5 -5
- package/dist-types/commands/ListTagsOfResourceCommand.d.ts +1 -0
- package/dist-types/commands/PutItemCommand.d.ts +15 -15
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +1 -0
- package/dist-types/commands/QueryCommand.d.ts +15 -15
- package/dist-types/commands/RestoreTableFromBackupCommand.d.ts +1 -0
- package/dist-types/commands/RestoreTableToPointInTimeCommand.d.ts +1 -0
- package/dist-types/commands/ScanCommand.d.ts +24 -24
- package/dist-types/commands/TagResourceCommand.d.ts +1 -0
- package/dist-types/commands/TransactGetItemsCommand.d.ts +1 -0
- package/dist-types/commands/TransactWriteItemsCommand.d.ts +1 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -0
- package/dist-types/commands/UpdateContinuousBackupsCommand.d.ts +1 -0
- package/dist-types/commands/UpdateContributorInsightsCommand.d.ts +1 -0
- package/dist-types/commands/UpdateGlobalTableCommand.d.ts +1 -0
- package/dist-types/commands/UpdateGlobalTableSettingsCommand.d.ts +1 -0
- package/dist-types/commands/UpdateItemCommand.d.ts +28 -28
- package/dist-types/commands/UpdateKinesisStreamingDestinationCommand.d.ts +1 -0
- package/dist-types/commands/UpdateTableCommand.d.ts +1 -52
- package/dist-types/commands/UpdateTableReplicaAutoScalingCommand.d.ts +1 -0
- package/dist-types/commands/UpdateTimeToLiveCommand.d.ts +1 -0
- package/package.json +5 -5
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-dynamodb",
|
|
3
3
|
"description": "AWS SDK for JavaScript Dynamodb Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.782.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-dynamodb",
|
|
@@ -21,17 +21,17 @@
|
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
23
|
"@aws-sdk/core": "3.775.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.782.0",
|
|
25
25
|
"@aws-sdk/middleware-endpoint-discovery": "3.775.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.775.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.775.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.775.0",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "3.782.0",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "3.775.0",
|
|
31
31
|
"@aws-sdk/types": "3.775.0",
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.782.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "3.775.0",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.782.0",
|
|
35
35
|
"@smithy/config-resolver": "^4.1.0",
|
|
36
36
|
"@smithy/core": "^3.2.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.0.2",
|