@sprucelabs/data-stores 19.1.28 → 19.1.29

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.
@@ -2,7 +2,7 @@ import { Schema, SchemaFieldNames, SchemaPublicValues, SchemaValues } from '@spr
2
2
  import StoreFactory from '../factories/StoreFactory';
3
3
  import { Database } from './database.types';
4
4
  export declare const saveOperations: readonly ["$push", "$inc", "$min", "$max", "$mul", "$push", "$pull", "$pop"];
5
- export type SaveOperation = typeof saveOperations[number];
5
+ export type SaveOperation = (typeof saveOperations)[number];
6
6
  export type SaveOperations = Partial<Record<SaveOperation, Record<string, any>>>;
7
7
  export interface UniversalStoreOptions {
8
8
  db: Database;
@@ -2,7 +2,7 @@ import { Schema, SchemaFieldNames, SchemaPublicValues, SchemaValues } from '@spr
2
2
  import StoreFactory from '../factories/StoreFactory';
3
3
  import { Database } from './database.types';
4
4
  export declare const saveOperations: readonly ["$push", "$inc", "$min", "$max", "$mul", "$push", "$pull", "$pop"];
5
- export type SaveOperation = typeof saveOperations[number];
5
+ export type SaveOperation = (typeof saveOperations)[number];
6
6
  export type SaveOperations = Partial<Record<SaveOperation, Record<string, any>>>;
7
7
  export interface UniversalStoreOptions {
8
8
  db: Database;
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "19.1.28",
6
+ "version": "19.1.29",
7
7
  "files": [
8
8
  "build/**/*",
9
9
  "!build/__tests__",