emberflow 1.1.8 → 1.1.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.
Files changed (2) hide show
  1. package/lib/types.d.ts +2 -2
  2. package/package.json +1 -1
package/lib/types.d.ts CHANGED
@@ -39,13 +39,13 @@ export interface LogicResultDoc {
39
39
  export interface LogicResult {
40
40
  name: string;
41
41
  status: "finished" | "error" | "partial-result";
42
- nextPage?: object;
42
+ nextPage?: AnyObject;
43
43
  message?: string;
44
44
  execTime?: number;
45
45
  timeFinished?: Timestamp;
46
46
  documents: LogicResultDoc[];
47
47
  }
48
- export type LogicFn = (action: Action, nextPage?: object) => Promise<LogicResult>;
48
+ export type LogicFn = (action: Action, nextPage?: AnyObject) => Promise<LogicResult>;
49
49
  export type LogicActionType = "create" | "update" | "delete";
50
50
  export interface LogicConfig {
51
51
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "emberflow",
3
- "version": "1.1.8",
3
+ "version": "1.1.9",
4
4
  "description": "A Firebase Cloud Functions library for handling document changes in a structured way",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.js",