Skip to content

Commit 7a97553

Browse files
committed
do not convert empty vals to null, since ddb supports empty vals for non key attr
1 parent 013f798 commit 7a97553

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dynadash.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export type { QueryOutput, QueryInput, BatchWriteItemOutput, BatchGetItemOutput
3131

3232
export const BATCH_WRITE_RETRY_THRESHOLD = 10;
3333

34-
export const DEFAULT_MARSHALL_OPTIONS = { removeUndefinedValues: true, convertEmptyValues: true };
34+
export const DEFAULT_MARSHALL_OPTIONS = { removeUndefinedValues: true };
3535

3636
export let ddbClientInstance: DynamoDBClient | null = null;
3737

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dynadash",
3-
"version": "1.7.1",
3+
"version": "1.7.2",
44
"description": "DynamoDb helpers",
55
"main": "dist/dynadash.js",
66
"typings": "dist/types/dynadash.d.ts",

0 commit comments

Comments
 (0)