@aws-sdk/util-dynamodb 3.699.0 → 3.705.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.
@@ -10,7 +10,11 @@ export interface marshallOptions {
10
10
  */
11
11
  convertEmptyValues?: boolean;
12
12
  /**
13
- * Whether to remove undefined values while marshalling.
13
+ * Whether to remove undefined values from JS arrays/Sets/objects
14
+ * when marshalling to DynamoDB lists/sets/maps respectively.
15
+ *
16
+ * A DynamoDB item is not itself considered a map. Only
17
+ * attributes of an item are examined.
14
18
  */
15
19
  removeUndefinedValues?: boolean;
16
20
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/util-dynamodb",
3
- "version": "3.699.0",
3
+ "version": "3.705.0",
4
4
  "scripts": {
5
5
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
6
6
  "build:cjs": "node ../../scripts/compilation/inline util-dynamodb",
@@ -25,7 +25,7 @@
25
25
  "tslib": "^2.6.2"
26
26
  },
27
27
  "devDependencies": {
28
- "@aws-sdk/client-dynamodb": "3.699.0",
28
+ "@aws-sdk/client-dynamodb": "3.705.0",
29
29
  "@tsconfig/recommended": "1.0.1",
30
30
  "concurrently": "7.0.0",
31
31
  "downlevel-dts": "0.10.1",
@@ -33,7 +33,7 @@
33
33
  "typescript": "~4.9.5"
34
34
  },
35
35
  "peerDependencies": {
36
- "@aws-sdk/client-dynamodb": "^3.699.0"
36
+ "@aws-sdk/client-dynamodb": "^3.705.0"
37
37
  },
38
38
  "engines": {
39
39
  "node": ">=16.0.0"