@medyll/idae-idbql 0.143.0 → 0.145.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.
@@ -134,7 +134,7 @@ export class CollectionCore {
134
134
  objectStoreRequest.onsuccess = () => {
135
135
  idbqlEvent.registerEvent("delete", {
136
136
  collection: this._store,
137
- data: keyPathValue,
137
+ data: { [this.keyPath]: keyPathValue },
138
138
  keyPath: this.keyPath,
139
139
  });
140
140
  resolve(true);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@medyll/idae-idbql",
3
3
  "scope": "@medyll",
4
- "version": "0.143.0",
4
+ "version": "0.145.0",
5
5
  "description": "A powerful and flexible IndexedDB query library for TypeScript and JavaScript applications, offering a MongoDB-like query interface, strong TypeScript support, reactive state management, and easy integration with front-end frameworks like Svelte.",
6
6
  "scripts": {
7
7
  "dev": "vite dev",
@@ -46,6 +46,6 @@
46
46
  "types": "./dist/index.d.ts",
47
47
  "type": "module",
48
48
  "dependencies": {
49
- "@medyll/idae-query": "^0.144.0"
49
+ "@medyll/idae-query": "^0.146.0"
50
50
  }
51
51
  }