inlaweb-lib-dynamodb 1.0.9 → 1.0.10

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/index.js +1 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -257,7 +257,7 @@ class DynamoLib {
257
257
  }
258
258
  items.forEach((item, index) => {
259
259
  const currentIndex = Math.ceil((index + 1) / limit);
260
- executions[currentIndex - 1].push({ Put: { Item: item } });
260
+ executions[currentIndex - 1].push(item);
261
261
  });
262
262
  return executions;
263
263
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "inlaweb-lib-dynamodb",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/types/index.d.ts",
6
6
  "scripts": {