flongo 1.0.1 → 1.0.2

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.
Files changed (2) hide show
  1. package/dist/types.d.ts +1 -1
  2. package/package.json +1 -1
package/dist/types.d.ts CHANGED
@@ -36,7 +36,7 @@ export declare enum EventName {
36
36
  export type Event<T> = {
37
37
  name: T;
38
38
  identity?: string;
39
- value: any;
39
+ value?: any;
40
40
  };
41
41
  export type EventRecord<T extends EventName = any> = DbRecord<Event<T>>;
42
42
  export declare enum Logic {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flongo",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Firestore-like fluent query API for MongoDB",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",