@aprilium/tripsm_global-states 0.0.183 → 0.0.184
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.
- package/lib/index.d.ts +2 -2
- package/lib/index.js +2 -2
- package/package.json +2 -2
package/lib/index.d.ts
CHANGED
|
@@ -49,7 +49,7 @@ import TripsSaga from "@aprilium/tripsm_trips/lib/effects";
|
|
|
49
49
|
import PassengerGroupsSaga from "@aprilium/tripsm_passenger-groups/lib/effects";
|
|
50
50
|
export declare const sagaMiddleware: import("redux-saga").SagaMiddleware<object>;
|
|
51
51
|
export declare const reducers: {
|
|
52
|
-
|
|
52
|
+
passengersState: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_passenger/lib/state").PassengerState>;
|
|
53
53
|
constants: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_constants/lib/state").ConstantState>;
|
|
54
54
|
trip: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_trip/lib/state").TripState>;
|
|
55
55
|
group: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_trip-group/lib/state").GroupState>;
|
|
@@ -73,7 +73,7 @@ export declare const reducers: {
|
|
|
73
73
|
passengerGroups: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_passenger-groups/lib/state").PassengerGroupsState>;
|
|
74
74
|
};
|
|
75
75
|
export declare const initialSagas: {
|
|
76
|
-
|
|
76
|
+
passengersState: typeof passengerSaga;
|
|
77
77
|
constants: typeof constantsSaga;
|
|
78
78
|
trip: typeof TripSaga;
|
|
79
79
|
group: typeof groupSaga;
|
package/lib/index.js
CHANGED
|
@@ -126,7 +126,7 @@ var effects_22 = __importDefault(require("@aprilium/tripsm_trips/lib/effects"));
|
|
|
126
126
|
var effects_23 = __importDefault(require("@aprilium/tripsm_passenger-groups/lib/effects"));
|
|
127
127
|
exports.sagaMiddleware = (0, redux_saga_1.default)();
|
|
128
128
|
exports.reducers = {
|
|
129
|
-
|
|
129
|
+
passengersState: state_21.passengerReducerFunction,
|
|
130
130
|
constants: state_6.ConstantsReducerFunction,
|
|
131
131
|
trip: state_7.TripReducerFunction,
|
|
132
132
|
group: state_8.GroupReducerFunction,
|
|
@@ -150,7 +150,7 @@ exports.reducers = {
|
|
|
150
150
|
passengerGroups: state_22.PassengerGroupsReducerFunction,
|
|
151
151
|
};
|
|
152
152
|
exports.initialSagas = {
|
|
153
|
-
|
|
153
|
+
passengersState: effects_2.default,
|
|
154
154
|
constants: effects_4.default,
|
|
155
155
|
trip: effects_5.default,
|
|
156
156
|
group: effects_6.default,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aprilium/tripsm_global-states",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.184",
|
|
4
4
|
"description": "global states",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"build": "tsc"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@aprilium/tripsm_passenger": "^0.0.
|
|
15
|
+
"@aprilium/tripsm_passenger": "^0.0.64",
|
|
16
16
|
"@aprilium/tripsm_common": "^0.0.6",
|
|
17
17
|
"@aprilium/tripsm_constants": "^0.0.28",
|
|
18
18
|
"@aprilium/tripsm_trip": "^0.0.19",
|