@common-stack/frontend-stack-react 6.0.6-alpha.87 → 6.0.6-alpha.89

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.
@@ -1,3 +1,3 @@
1
1
  import { BehaviorSubject } from 'rxjs';
2
- export declare const epic$: BehaviorSubject<any>;
3
- export declare const rootEpic: (action$: any, ...rest: any[]) => import("rxjs").Observable<unknown>;
2
+ export declare const epic$: BehaviorSubject<import("redux-observable").Epic<unknown, unknown, void, any>>;
3
+ export declare const rootEpic: (action$: any, state$: any, dependencies: any) => import("rxjs").Observable<unknown>;
@@ -3,4 +3,4 @@ import {combineEpics,ofType}from'redux-observable';import {BehaviorSubject,merge
3
3
  // epic that comes in will be merged into the previous
4
4
  // one, unless an EPIC_END action is dispatched first,
5
5
  // which would cause the old one(s) to be unsubscribed
6
- const rootEpic = (action$, ...rest) => epic$.pipe(mergeMap((epic) => epic(action$, ...rest).pipe(takeUntil(action$.pipe(ofType('EPIC_END'))))));export{epic$,rootEpic};
6
+ const rootEpic = (action$, state$, dependencies) => epic$.pipe(mergeMap((epic) => epic(action$, state$, dependencies).pipe(takeUntil(action$.pipe(ofType('EPIC_END'))))));export{epic$,rootEpic};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@common-stack/frontend-stack-react",
3
- "version": "6.0.6-alpha.87",
3
+ "version": "6.0.6-alpha.89",
4
4
  "description": "Client Module for react app",
5
5
  "homepage": "https://github.com/cdmbase/fullstack-pro#readme",
6
6
  "bugs": {
@@ -97,5 +97,5 @@
97
97
  "typescript": {
98
98
  "definition": "lib/index.d.ts"
99
99
  },
100
- "gitHead": "df025aeac7c11995ffea8a947dbea585e7fbff14"
100
+ "gitHead": "639f9c857d561bf614d696f81bee8a62b0bcdf2e"
101
101
  }