Skip to content
This repository was archived by the owner on Apr 24, 2025. It is now read-only.

Commit 1089bbd

Browse files
authored
Merge pull request #1598 from jovotech/v4/dev
🔖 Prepare latest release
2 parents a3430e3 + b8ed4cf commit 1089bbd

File tree

9 files changed

+28776
-2357
lines changed

9 files changed

+28776
-2357
lines changed

integrations/db-dynamodb/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
"author": "jovotech",
2323
"license": "Apache-2.0",
2424
"dependencies": {
25-
"@aws-sdk/client-dynamodb": "^3.18.0",
26-
"@aws-sdk/util-dynamodb": "^3.18.0"
25+
"@aws-sdk/client-dynamodb": "^3.433.0",
26+
"@aws-sdk/util-dynamodb": "^3.433.0"
2727
},
2828
"devDependencies": {
2929
"@jovotech/framework": "^4.5.15",

integrations/db-dynamodb/src/DynamoDb.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import {
22
CreateTableCommand,
3+
CreateTableCommandInput,
34
DescribeTableCommand,
45
DynamoDBClient,
56
DynamoDBClientConfig,
@@ -106,7 +107,7 @@ export class DynamoDb extends DbPlugin<DynamoDbConfig> {
106107
}
107108

108109
async createTable(): Promise<void> {
109-
const params = {
110+
const params: CreateTableCommandInput = {
110111
AttributeDefinitions: [
111112
{
112113
AttributeName: this.config.table.primaryKeyColumn,

0 commit comments

Comments
 (0)