@aws-sdk/lib-dynamodb 3.777.0 → 3.778.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.
package/dist-cjs/index.js CHANGED
@@ -154,7 +154,7 @@ var DynamoDBDocumentClientCommand = class _DynamoDBDocumentClientCommand extends
154
154
  this.clientCommand.middlewareStack.addRelativeTo(
155
155
  (next, context) => async (args) => {
156
156
  (0, import_core.setFeature)(context, "DDB_MAPPER", "d");
157
- args.input = marshallInput(this.input, this.inputKeyNodes, marshallOptions3);
157
+ args.input = marshallInput(args.input, this.inputKeyNodes, marshallOptions3);
158
158
  context.dynamoDbDocumentClientOptions = context.dynamoDbDocumentClientOptions || _DynamoDBDocumentClientCommand.defaultLogFilterOverrides;
159
159
  const input = args.input;
160
160
  context.dynamoDbDocumentClientOptions.overrideInputFilterSensitiveLog = () => {
@@ -12,7 +12,7 @@ export class DynamoDBDocumentClientCommand extends $Command {
12
12
  unmarshallOptions.convertWithoutMapWrapper = unmarshallOptions.convertWithoutMapWrapper ?? true;
13
13
  this.clientCommand.middlewareStack.addRelativeTo((next, context) => async (args) => {
14
14
  setFeature(context, "DDB_MAPPER", "d");
15
- args.input = marshallInput(this.input, this.inputKeyNodes, marshallOptions);
15
+ args.input = marshallInput(args.input, this.inputKeyNodes, marshallOptions);
16
16
  context.dynamoDbDocumentClientOptions =
17
17
  context.dynamoDbDocumentClientOptions || DynamoDBDocumentClientCommand.defaultLogFilterOverrides;
18
18
  const input = args.input;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/lib-dynamodb",
3
- "version": "3.777.0",
3
+ "version": "3.778.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",