@common-stack/mobile-stack-react 6.0.6-alpha.86 → 6.0.6-alpha.88

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>;
@@ -1,8 +1,6 @@
1
- import {combineEpics,ofType}from'redux-observable';import {BehaviorSubject,mergeMap,takeUntil}from'rxjs';import features from'../modules.js';/* eslint-disable @typescript-eslint/no-unsafe-member-access */
2
- /* eslint-disable @typescript-eslint/no-unsafe-call */
3
- const epic$ = new BehaviorSubject(combineEpics(...features.epics));
1
+ import {combineEpics,ofType}from'redux-observable';import {BehaviorSubject,mergeMap,takeUntil}from'rxjs';import features from'../modules.js';const epic$ = new BehaviorSubject(combineEpics(...features.epics));
4
2
  // Since we're using mergeMap, by default any new
5
3
  // epic that comes in will be merged into the previous
6
4
  // one, unless an EPIC_END action is dispatched first,
7
5
  // which would cause the old one(s) to be unsubscribed
8
- 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/mobile-stack-react",
3
- "version": "6.0.6-alpha.86",
3
+ "version": "6.0.6-alpha.88",
4
4
  "description": "Client Module for mobile app",
5
5
  "homepage": "https://github.com/cdmbase/fullstack-pro#readme",
6
6
  "bugs": {
@@ -31,8 +31,8 @@
31
31
  "dependencies": {
32
32
  "@apollo/client": "^3.9.0",
33
33
  "@cdm-logger/client": "^9.0.3",
34
- "@common-stack/client-core": "6.0.6-alpha.86",
35
- "@common-stack/client-react": "6.0.6-alpha.86",
34
+ "@common-stack/client-core": "6.0.6-alpha.87",
35
+ "@common-stack/client-react": "6.0.6-alpha.87",
36
36
  "@common-stack/components-pro": "6.0.6-alpha.50",
37
37
  "@common-stack/core": "6.0.6-alpha.86",
38
38
  "@expo/vector-icons": "^14.0.3",
@@ -108,7 +108,7 @@
108
108
  "react-native-web-maps": "~0.3.0",
109
109
  "react-redux": "^9.1.1",
110
110
  "redux-logger": "^3.0.6",
111
- "redux-observable": "^1.2.0",
111
+ "redux-observable": "^3.0.0-rc.2",
112
112
  "redux-persist": "^6.0.0",
113
113
  "redux-thunk": "^2.3.0",
114
114
  "reflect-metadata": "^0.1.13",
@@ -131,5 +131,5 @@
131
131
  "typescript": {
132
132
  "definition": "lib/index.d.ts"
133
133
  },
134
- "gitHead": "c40c812388b7d264e164731664263c6597dc77e0"
134
+ "gitHead": "2046cc2f458c0372c4609792786732dc3f45a20f"
135
135
  }