@aws-sdk/lib-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.
Files changed (2) hide show
  1. package/README.md +5 -1
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -105,7 +105,11 @@ export interface marshallOptions {
105
105
  */
106
106
  convertEmptyValues?: boolean;
107
107
  /**
108
- * Whether to remove undefined values while marshalling.
108
+ * Whether to remove undefined values from JS arrays/Sets/objects
109
+ * when marshalling to DynamoDB lists/sets/maps respectively.
110
+ *
111
+ * A DynamoDB item is not itself considered a map. Only
112
+ * attributes of an item are examined.
109
113
  */
110
114
  removeUndefinedValues?: boolean;
111
115
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/lib-dynamodb",
3
- "version": "3.699.0",
3
+ "version": "3.705.0",
4
4
  "description": "The document client simplifies working with items in Amazon DynamoDB by abstracting away the notion of attribute values.",
5
5
  "main": "./dist-cjs/index.js",
6
6
  "module": "./dist-es/index.js",
@@ -29,17 +29,17 @@
29
29
  "license": "Apache-2.0",
30
30
  "dependencies": {
31
31
  "@aws-sdk/core": "3.696.0",
32
- "@aws-sdk/util-dynamodb": "3.699.0",
32
+ "@aws-sdk/util-dynamodb": "3.705.0",
33
33
  "@smithy/core": "^2.5.3",
34
34
  "@smithy/smithy-client": "^3.4.4",
35
35
  "@smithy/types": "^3.7.1",
36
36
  "tslib": "^2.6.2"
37
37
  },
38
38
  "peerDependencies": {
39
- "@aws-sdk/client-dynamodb": "^3.699.0"
39
+ "@aws-sdk/client-dynamodb": "^3.705.0"
40
40
  },
41
41
  "devDependencies": {
42
- "@aws-sdk/client-dynamodb": "3.699.0",
42
+ "@aws-sdk/client-dynamodb": "3.705.0",
43
43
  "@tsconfig/recommended": "1.0.1",
44
44
  "@types/node": "^16.18.96",
45
45
  "concurrently": "7.0.0",