@moicky/dynamodb 2.3.2 → 2.3.4

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/package.json +1 -1
  2. package/readme.md +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moicky/dynamodb",
3
- "version": "2.3.2",
3
+ "version": "2.3.4",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "description": "Contains a collection of convenience functions for working with AWS DynamoDB",
package/readme.md CHANGED
@@ -140,7 +140,7 @@ await getAllItems();
140
140
  ```ts
141
141
  import { deleteItem, deleteItems } from "@moicky/dynamodb";
142
142
 
143
- // Delete single item
143
+ // Delete a single item
144
144
  await deleteItem({
145
145
  PK: "User/1",
146
146
  SK: "Book/1",