Skip to content

Commit

Permalink
Integrate Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Viserion77 authored Feb 19, 2024
2 parents 15a4f69 + 7426643 commit 5b5d3d6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "adapcon-utils-js",
"version": "1.1.2",
"version": "1.1.3",
"description": "Utils library for Javascript",
"keywords": [],
"author": {
Expand Down
4 changes: 3 additions & 1 deletion src/dao/dynamo/dao.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ const getOptions = () => {
return { region: 'sa-east-1' }
}
const dynamoInstance = new DynamoDB(getOptions())
const documentInstance = DynamoDBDocument.from(dynamoInstance)
const documentInstance = DynamoDBDocument.from(dynamoInstance, {
marshallOptions: { removeUndefinedValues: true }
})

const get = async ({
params,
Expand Down

0 comments on commit 5b5d3d6

Please sign in to comment.