@depup/aws-sdk__client-dynamodb 3.1029.0-depup.0 → 3.1091.0-depup.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 +6 -5
- package/changes.json +12 -8
- package/dist-cjs/index.js +3733 -942
- package/dist-es/DynamoDB.js +1 -1
- package/dist-es/DynamoDBClient.js +7 -10
- package/dist-es/auth/httpAuthSchemeProvider.js +1 -1
- package/dist-es/commandBuilder.js +42 -0
- package/dist-es/commands/BatchExecuteStatementCommand.js +2 -14
- package/dist-es/commands/BatchGetItemCommand.js +2 -17
- package/dist-es/commands/BatchWriteItemCommand.js +2 -17
- package/dist-es/commands/CreateBackupCommand.js +2 -17
- package/dist-es/commands/CreateGlobalTableCommand.js +2 -17
- package/dist-es/commands/CreateTableCommand.js +2 -17
- package/dist-es/commands/DeleteBackupCommand.js +2 -17
- package/dist-es/commands/DeleteItemCommand.js +2 -17
- package/dist-es/commands/DeleteResourcePolicyCommand.js +2 -17
- package/dist-es/commands/DeleteTableCommand.js +2 -17
- package/dist-es/commands/DescribeBackupCommand.js +2 -17
- package/dist-es/commands/DescribeContinuousBackupsCommand.js +2 -17
- package/dist-es/commands/DescribeContributorInsightsCommand.js +2 -17
- package/dist-es/commands/DescribeEndpointsCommand.js +2 -14
- package/dist-es/commands/DescribeExportCommand.js +2 -17
- package/dist-es/commands/DescribeGlobalTableCommand.js +2 -17
- package/dist-es/commands/DescribeGlobalTableSettingsCommand.js +2 -17
- package/dist-es/commands/DescribeImportCommand.js +2 -17
- package/dist-es/commands/DescribeKinesisStreamingDestinationCommand.js +2 -17
- package/dist-es/commands/DescribeLimitsCommand.js +2 -14
- package/dist-es/commands/DescribeTableCommand.js +2 -17
- package/dist-es/commands/DescribeTableReplicaAutoScalingCommand.js +2 -17
- package/dist-es/commands/DescribeTimeToLiveCommand.js +2 -17
- package/dist-es/commands/DisableKinesisStreamingDestinationCommand.js +2 -17
- package/dist-es/commands/EnableKinesisStreamingDestinationCommand.js +2 -17
- package/dist-es/commands/ExecuteStatementCommand.js +2 -14
- package/dist-es/commands/ExecuteTransactionCommand.js +2 -14
- package/dist-es/commands/ExportTableToPointInTimeCommand.js +2 -17
- package/dist-es/commands/GetItemCommand.js +2 -17
- package/dist-es/commands/GetResourcePolicyCommand.js +2 -17
- package/dist-es/commands/ImportTableCommand.js +2 -17
- package/dist-es/commands/ListBackupsCommand.js +2 -17
- package/dist-es/commands/ListContributorInsightsCommand.js +2 -17
- package/dist-es/commands/ListExportsCommand.js +2 -17
- package/dist-es/commands/ListGlobalTablesCommand.js +2 -14
- package/dist-es/commands/ListImportsCommand.js +2 -17
- package/dist-es/commands/ListTablesCommand.js +2 -14
- package/dist-es/commands/ListTagsOfResourceCommand.js +2 -17
- package/dist-es/commands/PutItemCommand.js +2 -17
- package/dist-es/commands/PutResourcePolicyCommand.js +2 -17
- package/dist-es/commands/QueryCommand.js +2 -17
- package/dist-es/commands/RestoreTableFromBackupCommand.js +2 -17
- package/dist-es/commands/RestoreTableToPointInTimeCommand.js +2 -17
- package/dist-es/commands/ScanCommand.js +2 -17
- package/dist-es/commands/TagResourceCommand.js +2 -17
- package/dist-es/commands/TransactGetItemsCommand.js +2 -17
- package/dist-es/commands/TransactWriteItemsCommand.js +2 -17
- package/dist-es/commands/UntagResourceCommand.js +2 -17
- package/dist-es/commands/UpdateContinuousBackupsCommand.js +2 -17
- package/dist-es/commands/UpdateContributorInsightsCommand.js +2 -17
- package/dist-es/commands/UpdateGlobalTableCommand.js +2 -17
- package/dist-es/commands/UpdateGlobalTableSettingsCommand.js +2 -17
- package/dist-es/commands/UpdateItemCommand.js +2 -17
- package/dist-es/commands/UpdateKinesisStreamingDestinationCommand.js +2 -17
- package/dist-es/commands/UpdateTableCommand.js +2 -17
- package/dist-es/commands/UpdateTableReplicaAutoScalingCommand.js +2 -17
- package/dist-es/commands/UpdateTimeToLiveCommand.js +2 -17
- package/dist-es/endpoint/bdd.js +136 -0
- package/dist-es/endpoint/endpointResolver.js +4 -4
- package/dist-es/index.js +1 -0
- package/dist-es/models/DynamoDBServiceException.js +1 -1
- package/dist-es/runtimeConfig.browser.js +6 -10
- package/dist-es/runtimeConfig.js +6 -12
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +5 -11
- package/dist-es/runtimeExtensions.js +3 -3
- package/dist-es/waiters/waitForContributorInsightsEnabled.js +1 -1
- package/dist-es/waiters/waitForExportCompleted.js +2 -2
- package/dist-es/waiters/waitForImportCompleted.js +2 -2
- package/dist-es/waiters/waitForKinesisStreamingDestinationActive.js +1 -1
- package/dist-es/waiters/waitForTableExists.js +3 -3
- package/dist-es/waiters/waitForTableNotExists.js +3 -3
- package/dist-types/DynamoDB.d.ts +8 -7
- package/dist-types/DynamoDBClient.d.ts +6 -7
- package/dist-types/commandBuilder.d.ts +66 -0
- package/dist-types/commands/BatchExecuteStatementCommand.d.ts +3 -6
- package/dist-types/commands/BatchGetItemCommand.d.ts +3 -6
- package/dist-types/commands/BatchWriteItemCommand.d.ts +3 -6
- package/dist-types/commands/CreateBackupCommand.d.ts +3 -6
- package/dist-types/commands/CreateGlobalTableCommand.d.ts +3 -6
- package/dist-types/commands/CreateTableCommand.d.ts +3 -6
- package/dist-types/commands/DeleteBackupCommand.d.ts +3 -6
- package/dist-types/commands/DeleteItemCommand.d.ts +3 -6
- package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +3 -6
- package/dist-types/commands/DeleteTableCommand.d.ts +3 -6
- package/dist-types/commands/DescribeBackupCommand.d.ts +3 -6
- package/dist-types/commands/DescribeContinuousBackupsCommand.d.ts +3 -6
- package/dist-types/commands/DescribeContributorInsightsCommand.d.ts +3 -6
- package/dist-types/commands/DescribeEndpointsCommand.d.ts +3 -6
- package/dist-types/commands/DescribeExportCommand.d.ts +3 -6
- package/dist-types/commands/DescribeGlobalTableCommand.d.ts +3 -6
- package/dist-types/commands/DescribeGlobalTableSettingsCommand.d.ts +3 -6
- package/dist-types/commands/DescribeImportCommand.d.ts +3 -6
- package/dist-types/commands/DescribeKinesisStreamingDestinationCommand.d.ts +3 -6
- package/dist-types/commands/DescribeLimitsCommand.d.ts +3 -6
- package/dist-types/commands/DescribeTableCommand.d.ts +3 -6
- package/dist-types/commands/DescribeTableReplicaAutoScalingCommand.d.ts +3 -6
- package/dist-types/commands/DescribeTimeToLiveCommand.d.ts +3 -6
- package/dist-types/commands/DisableKinesisStreamingDestinationCommand.d.ts +3 -6
- package/dist-types/commands/EnableKinesisStreamingDestinationCommand.d.ts +3 -6
- package/dist-types/commands/ExecuteStatementCommand.d.ts +3 -6
- package/dist-types/commands/ExecuteTransactionCommand.d.ts +3 -6
- package/dist-types/commands/ExportTableToPointInTimeCommand.d.ts +3 -6
- package/dist-types/commands/GetItemCommand.d.ts +3 -6
- package/dist-types/commands/GetResourcePolicyCommand.d.ts +3 -6
- package/dist-types/commands/ImportTableCommand.d.ts +3 -6
- package/dist-types/commands/ListBackupsCommand.d.ts +3 -6
- package/dist-types/commands/ListContributorInsightsCommand.d.ts +3 -6
- package/dist-types/commands/ListExportsCommand.d.ts +3 -6
- package/dist-types/commands/ListGlobalTablesCommand.d.ts +3 -6
- package/dist-types/commands/ListImportsCommand.d.ts +3 -6
- package/dist-types/commands/ListTablesCommand.d.ts +3 -6
- package/dist-types/commands/ListTagsOfResourceCommand.d.ts +3 -6
- package/dist-types/commands/PutItemCommand.d.ts +3 -6
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +3 -6
- package/dist-types/commands/QueryCommand.d.ts +3 -6
- package/dist-types/commands/RestoreTableFromBackupCommand.d.ts +3 -6
- package/dist-types/commands/RestoreTableToPointInTimeCommand.d.ts +3 -6
- package/dist-types/commands/ScanCommand.d.ts +3 -6
- package/dist-types/commands/TagResourceCommand.d.ts +3 -6
- package/dist-types/commands/TransactGetItemsCommand.d.ts +3 -6
- package/dist-types/commands/TransactWriteItemsCommand.d.ts +3 -6
- package/dist-types/commands/UntagResourceCommand.d.ts +3 -6
- package/dist-types/commands/UpdateContinuousBackupsCommand.d.ts +3 -6
- package/dist-types/commands/UpdateContributorInsightsCommand.d.ts +3 -6
- package/dist-types/commands/UpdateGlobalTableCommand.d.ts +3 -6
- package/dist-types/commands/UpdateGlobalTableSettingsCommand.d.ts +3 -6
- package/dist-types/commands/UpdateItemCommand.d.ts +3 -6
- package/dist-types/commands/UpdateKinesisStreamingDestinationCommand.d.ts +3 -6
- package/dist-types/commands/UpdateTableCommand.d.ts +3 -6
- package/dist-types/commands/UpdateTableReplicaAutoScalingCommand.d.ts +3 -6
- package/dist-types/commands/UpdateTimeToLiveCommand.d.ts +3 -6
- package/dist-types/endpoint/bdd.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +1 -1
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/DynamoDBServiceException.d.ts +1 -1
- package/dist-types/models/errors.d.ts +1 -1
- package/dist-types/runtimeConfig.browser.d.ts +6 -6
- package/dist-types/runtimeConfig.d.ts +7 -7
- package/dist-types/runtimeConfig.native.d.ts +6 -6
- package/dist-types/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/DynamoDB.d.ts +204 -308
- package/dist-types/ts3.4/DynamoDBClient.d.ts +39 -98
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +52 -0
- package/dist-types/ts3.4/commands/BatchExecuteStatementCommand.d.ts +14 -26
- package/dist-types/ts3.4/commands/BatchGetItemCommand.d.ts +12 -21
- package/dist-types/ts3.4/commands/BatchWriteItemCommand.d.ts +12 -21
- package/dist-types/ts3.4/commands/CreateBackupCommand.d.ts +12 -21
- package/dist-types/ts3.4/commands/CreateGlobalTableCommand.d.ts +13 -25
- package/dist-types/ts3.4/commands/CreateTableCommand.d.ts +12 -21
- package/dist-types/ts3.4/commands/DeleteBackupCommand.d.ts +12 -21
- package/dist-types/ts3.4/commands/DeleteItemCommand.d.ts +12 -21
- package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +14 -26
- package/dist-types/ts3.4/commands/DeleteTableCommand.d.ts +12 -21
- package/dist-types/ts3.4/commands/DescribeBackupCommand.d.ts +12 -21
- package/dist-types/ts3.4/commands/DescribeContinuousBackupsCommand.d.ts +13 -22
- package/dist-types/ts3.4/commands/DescribeContributorInsightsCommand.d.ts +13 -22
- package/dist-types/ts3.4/commands/DescribeEndpointsCommand.d.ts +13 -25
- package/dist-types/ts3.4/commands/DescribeExportCommand.d.ts +12 -21
- package/dist-types/ts3.4/commands/DescribeGlobalTableCommand.d.ts +14 -26
- package/dist-types/ts3.4/commands/DescribeGlobalTableSettingsCommand.d.ts +13 -22
- package/dist-types/ts3.4/commands/DescribeImportCommand.d.ts +12 -21
- package/dist-types/ts3.4/commands/DescribeKinesisStreamingDestinationCommand.d.ts +13 -22
- package/dist-types/ts3.4/commands/DescribeLimitsCommand.d.ts +11 -20
- package/dist-types/ts3.4/commands/DescribeTableCommand.d.ts +12 -21
- package/dist-types/ts3.4/commands/DescribeTableReplicaAutoScalingCommand.d.ts +13 -22
- package/dist-types/ts3.4/commands/DescribeTimeToLiveCommand.d.ts +14 -26
- package/dist-types/ts3.4/commands/DisableKinesisStreamingDestinationCommand.d.ts +13 -22
- package/dist-types/ts3.4/commands/EnableKinesisStreamingDestinationCommand.d.ts +13 -22
- package/dist-types/ts3.4/commands/ExecuteStatementCommand.d.ts +13 -25
- package/dist-types/ts3.4/commands/ExecuteTransactionCommand.d.ts +14 -26
- package/dist-types/ts3.4/commands/ExportTableToPointInTimeCommand.d.ts +14 -26
- package/dist-types/ts3.4/commands/GetItemCommand.d.ts +13 -16
- package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +13 -25
- package/dist-types/ts3.4/commands/ImportTableCommand.d.ts +12 -21
- package/dist-types/ts3.4/commands/ListBackupsCommand.d.ts +11 -20
- package/dist-types/ts3.4/commands/ListContributorInsightsCommand.d.ts +13 -25
- package/dist-types/ts3.4/commands/ListExportsCommand.d.ts +11 -20
- package/dist-types/ts3.4/commands/ListGlobalTablesCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/ListImportsCommand.d.ts +11 -20
- package/dist-types/ts3.4/commands/ListTablesCommand.d.ts +11 -20
- package/dist-types/ts3.4/commands/ListTagsOfResourceCommand.d.ts +14 -26
- package/dist-types/ts3.4/commands/PutItemCommand.d.ts +13 -16
- package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +13 -25
- package/dist-types/ts3.4/commands/QueryCommand.d.ts +13 -16
- package/dist-types/ts3.4/commands/RestoreTableFromBackupCommand.d.ts +14 -26
- package/dist-types/ts3.4/commands/RestoreTableToPointInTimeCommand.d.ts +13 -22
- package/dist-types/ts3.4/commands/ScanCommand.d.ts +13 -16
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +11 -18
- package/dist-types/ts3.4/commands/TransactGetItemsCommand.d.ts +13 -25
- package/dist-types/ts3.4/commands/TransactWriteItemsCommand.d.ts +14 -26
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +11 -18
- package/dist-types/ts3.4/commands/UpdateContinuousBackupsCommand.d.ts +14 -26
- package/dist-types/ts3.4/commands/UpdateContributorInsightsCommand.d.ts +13 -22
- package/dist-types/ts3.4/commands/UpdateGlobalTableCommand.d.ts +13 -25
- package/dist-types/ts3.4/commands/UpdateGlobalTableSettingsCommand.d.ts +13 -22
- package/dist-types/ts3.4/commands/UpdateItemCommand.d.ts +12 -21
- package/dist-types/ts3.4/commands/UpdateKinesisStreamingDestinationCommand.d.ts +13 -22
- package/dist-types/ts3.4/commands/UpdateTableCommand.d.ts +12 -21
- package/dist-types/ts3.4/commands/UpdateTableReplicaAutoScalingCommand.d.ts +13 -22
- package/dist-types/ts3.4/commands/UpdateTimeToLiveCommand.d.ts +13 -25
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +3 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/DynamoDBServiceException.d.ts +1 -1
- package/dist-types/ts3.4/models/enums.d.ts +13 -26
- package/dist-types/ts3.4/models/errors.d.ts +37 -131
- package/dist-types/ts3.4/models/models_0.d.ts +40 -120
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/pagination/ListExportsPaginator.d.ts +1 -4
- package/dist-types/ts3.4/pagination/ListImportsPaginator.d.ts +1 -4
- package/dist-types/ts3.4/pagination/ListTablesPaginator.d.ts +1 -4
- package/dist-types/ts3.4/pagination/QueryPaginator.d.ts +1 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +16 -32
- package/dist-types/ts3.4/runtimeConfig.d.ts +15 -22
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +17 -33
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -5
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForContributorInsightsEnabled.d.ts +10 -6
- package/dist-types/ts3.4/waiters/waitForExportCompleted.d.ts +10 -6
- package/dist-types/ts3.4/waiters/waitForImportCompleted.d.ts +10 -6
- package/dist-types/ts3.4/waiters/waitForKinesisStreamingDestinationActive.d.ts +12 -6
- package/dist-types/ts3.4/waiters/waitForTableExists.d.ts +10 -6
- package/dist-types/ts3.4/waiters/waitForTableNotExists.d.ts +11 -6
- package/dist-types/waiters/waitForContributorInsightsEnabled.d.ts +5 -4
- package/dist-types/waiters/waitForExportCompleted.d.ts +5 -4
- package/dist-types/waiters/waitForImportCompleted.d.ts +5 -4
- package/dist-types/waiters/waitForKinesisStreamingDestinationActive.d.ts +5 -4
- package/dist-types/waiters/waitForTableExists.d.ts +5 -4
- package/dist-types/waiters/waitForTableNotExists.d.ts +6 -4
- package/package.json +66 -94
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -46
- package/dist-cjs/endpoint/endpointResolver.js +0 -27
- package/dist-cjs/endpoint/ruleset.js +0 -7
- package/dist-cjs/models/DynamoDBServiceException.js +0 -12
- package/dist-cjs/models/errors.js +0 -478
- package/dist-cjs/runtimeConfig.browser.js +0 -41
- package/dist-cjs/runtimeConfig.js +0 -58
- package/dist-cjs/runtimeConfig.native.js +0 -15
- package/dist-cjs/runtimeConfig.shared.js +0 -53
- package/dist-cjs/schemas/schemas_0.js +0 -2391
- package/dist-es/endpoint/ruleset.js +0 -4
- package/dist-types/endpoint/ruleset.d.ts +0 -2
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +0 -2
package/README.md
CHANGED
|
@@ -13,17 +13,18 @@ npm install @depup/aws-sdk__client-dynamodb
|
|
|
13
13
|
|
|
14
14
|
| Field | Value |
|
|
15
15
|
|-------|-------|
|
|
16
|
-
| Original | [@aws-sdk/client-dynamodb](https://www.npmjs.com/package/@aws-sdk/client-dynamodb) @ 3.
|
|
17
|
-
| Processed | 2026-
|
|
16
|
+
| Original | [@aws-sdk/client-dynamodb](https://www.npmjs.com/package/@aws-sdk/client-dynamodb) @ 3.1091.0 |
|
|
17
|
+
| Processed | 2026-07-21 |
|
|
18
18
|
| Smoke test | passed |
|
|
19
|
-
| Deps updated |
|
|
19
|
+
| Deps updated | 4 |
|
|
20
20
|
|
|
21
21
|
## Dependency Changes
|
|
22
22
|
|
|
23
23
|
| Dependency | From | To |
|
|
24
24
|
|------------|------|-----|
|
|
25
|
-
| @smithy/
|
|
26
|
-
| @smithy/
|
|
25
|
+
| @smithy/core | ^3.29.4 | ^3.29.6 |
|
|
26
|
+
| @smithy/fetch-http-handler | ^5.6.6 | ^5.6.8 |
|
|
27
|
+
| @smithy/node-http-handler | ^4.9.6 | ^4.9.8 |
|
|
27
28
|
| tslib | ^2.6.2 | ^2.8.1 |
|
|
28
29
|
|
|
29
30
|
---
|
package/changes.json
CHANGED
|
@@ -1,18 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"bumped": {
|
|
3
|
-
"@smithy/
|
|
4
|
-
"from": "^
|
|
5
|
-
"to": "^
|
|
3
|
+
"@smithy/core": {
|
|
4
|
+
"from": "^3.29.4",
|
|
5
|
+
"to": "^3.29.6"
|
|
6
6
|
},
|
|
7
|
-
"@smithy/
|
|
8
|
-
"from": "^
|
|
9
|
-
"to": "^
|
|
7
|
+
"@smithy/fetch-http-handler": {
|
|
8
|
+
"from": "^5.6.6",
|
|
9
|
+
"to": "^5.6.8"
|
|
10
|
+
},
|
|
11
|
+
"@smithy/node-http-handler": {
|
|
12
|
+
"from": "^4.9.6",
|
|
13
|
+
"to": "^4.9.8"
|
|
10
14
|
},
|
|
11
15
|
"tslib": {
|
|
12
16
|
"from": "^2.6.2",
|
|
13
17
|
"to": "^2.8.1"
|
|
14
18
|
}
|
|
15
19
|
},
|
|
16
|
-
"timestamp": "2026-
|
|
17
|
-
"totalUpdated":
|
|
20
|
+
"timestamp": "2026-07-21T16:02:13.849Z",
|
|
21
|
+
"totalUpdated": 4
|
|
18
22
|
}
|