@tanstack/db 0.0.18 → 0.0.19

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.
@@ -44,7 +44,7 @@ export interface PendingMutation<T extends object = Record<string, unknown>, TOp
44
44
  syncMetadata: Record<string, unknown>;
45
45
  createdAt: Date;
46
46
  updatedAt: Date;
47
- collection: Collection<T, any>;
47
+ collection: Collection<T, any, any>;
48
48
  }
49
49
  /**
50
50
  * Configuration options for creating a new transaction
@@ -44,7 +44,7 @@ export interface PendingMutation<T extends object = Record<string, unknown>, TOp
44
44
  syncMetadata: Record<string, unknown>;
45
45
  createdAt: Date;
46
46
  updatedAt: Date;
47
- collection: Collection<T, any>;
47
+ collection: Collection<T, any, any>;
48
48
  }
49
49
  /**
50
50
  * Configuration options for creating a new transaction
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tanstack/db",
3
3
  "description": "A reactive client store for building super fast apps on sync",
4
- "version": "0.0.18",
4
+ "version": "0.0.19",
5
5
  "dependencies": {
6
6
  "@electric-sql/d2mini": "^0.1.6",
7
7
  "@standard-schema/spec": "^1.0.0"
package/src/types.ts CHANGED
@@ -71,7 +71,7 @@ export interface PendingMutation<
71
71
  syncMetadata: Record<string, unknown>
72
72
  createdAt: Date
73
73
  updatedAt: Date
74
- collection: Collection<T, any>
74
+ collection: Collection<T, any, any>
75
75
  }
76
76
 
77
77
  /**