@primate/core 0.9.8 → 0.9.9

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.
@@ -97,6 +97,7 @@ type ReadSort = Dict<"asc" | "desc">;
97
97
  export default class Store<T extends StoreInput, N extends string = string> implements Serializable {
98
98
  #private;
99
99
  [brand]: boolean;
100
+ readonly Insert: Insertable<T>;
100
101
  readonly Schema: Schema<T>;
101
102
  static is(x: unknown): x is Store<any, any>;
102
103
  constructor(init: Init<T, N>);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@primate/core",
3
- "version": "0.9.8",
3
+ "version": "0.9.9",
4
4
  "description": "The universal web framework",
5
5
  "homepage": "https://primate.run",
6
6
  "bugs": "https://github.com/primate-run/primate/issues",