@cellaware/utils 3.3.30 → 3.3.32

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.
@@ -125,7 +125,8 @@ export async function cosmosDelete(databaseId, collectionId, partitionKey, query
125
125
  query
126
126
  }).fetchAll();
127
127
  resources.forEach(doc => {
128
- container.item(doc.id, doc.clientId).delete();
128
+ console.log(doc);
129
+ container.item(doc.id, doc[partitionKey]).delete();
129
130
  });
130
131
  return true;
131
132
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cellaware/utils",
3
- "version": "3.3.30",
3
+ "version": "3.3.32",
4
4
  "description": "Cellaware Utilities for Node.js",
5
5
  "author": "Cellaware Technologies",
6
6
  "type": "module",