@aprilium/tripsm_global-states 0.0.385 → 0.0.386
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 +6 -4
- package/package.json +4 -4
package/lib/index.d.ts
CHANGED
|
@@ -37,7 +37,9 @@ import constantsSaga from "@aprilium/tripsm_constants/lib/effects";
|
|
|
37
37
|
import userSaga from "@aprilium/tripsm_user/lib/effects";
|
|
38
38
|
import HotelSaga from "@aprilium/tripsm_hotel/lib/effects";
|
|
39
39
|
import TicketSaga from "@aprilium/tripsm_ticket/lib/effects";
|
|
40
|
+
import TripHotelSaga from "@aprilium/tripsm_trip-hotel/lib/effects";
|
|
40
41
|
import RelationSaga from "@aprilium/tripsm_relation/lib/effects";
|
|
42
|
+
import TripTransportationSaga from "@aprilium/tripsm_trip-transportation/lib/effects";
|
|
41
43
|
import PassengerPathologySaga from "@aprilium/tripsm_passenger-pathology/lib/effects";
|
|
42
44
|
export declare const sagaMiddleware: import("redux-saga").SagaMiddleware<object>;
|
|
43
45
|
export declare const reducers: {
|
|
@@ -56,7 +58,7 @@ export declare const reducers: {
|
|
|
56
58
|
passengerHotel: any;
|
|
57
59
|
hotel: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_hotel/lib/state").HotelState>;
|
|
58
60
|
ticket: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_ticket/lib/state").TicketState>;
|
|
59
|
-
tripHotel:
|
|
61
|
+
tripHotel: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_trip-hotel/lib/state").TripHotelState>;
|
|
60
62
|
passengerGroup: any;
|
|
61
63
|
passengerPack: any;
|
|
62
64
|
luggage: any;
|
|
@@ -69,7 +71,7 @@ export declare const reducers: {
|
|
|
69
71
|
pack: any;
|
|
70
72
|
paymentHistory: any;
|
|
71
73
|
customer: any;
|
|
72
|
-
tripTransportation:
|
|
74
|
+
tripTransportation: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_trip-transportation/lib/state").TripTransportationState>;
|
|
73
75
|
passengerPathology: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_passenger-pathology/lib/state").PassengerPathologyState>;
|
|
74
76
|
};
|
|
75
77
|
export declare const initialSagas: {
|
|
@@ -88,7 +90,7 @@ export declare const initialSagas: {
|
|
|
88
90
|
passengerHotel: any;
|
|
89
91
|
hotel: typeof HotelSaga;
|
|
90
92
|
ticket: typeof TicketSaga;
|
|
91
|
-
tripHotel:
|
|
93
|
+
tripHotel: typeof TripHotelSaga;
|
|
92
94
|
passengerGroup: any;
|
|
93
95
|
passengerPack: any;
|
|
94
96
|
luggage: any;
|
|
@@ -101,7 +103,7 @@ export declare const initialSagas: {
|
|
|
101
103
|
pack: any;
|
|
102
104
|
paymentHistory: any;
|
|
103
105
|
customer: any;
|
|
104
|
-
tripTransportation:
|
|
106
|
+
tripTransportation: typeof TripTransportationSaga;
|
|
105
107
|
passengerPathology: typeof PassengerPathologySaga;
|
|
106
108
|
};
|
|
107
109
|
export type States = {
|
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.386",
|
|
4
4
|
"description": "global states",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
15
|
"@aprilium/tripsm_common": "^0.0.12",
|
|
16
|
-
"@aprilium/tripsm_constants": "^0.0.
|
|
16
|
+
"@aprilium/tripsm_constants": "^0.0.52",
|
|
17
17
|
"@aprilium/tripsm_customer": "^0.0.2",
|
|
18
18
|
"@aprilium/tripsm_guest": "^0.0.1",
|
|
19
19
|
"@aprilium/tripsm_hotel": "^0.0.10",
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
"@aprilium/tripsm_reservation": "^0.0.12",
|
|
34
34
|
"@aprilium/tripsm_room": "^0.0.8",
|
|
35
35
|
"@aprilium/tripsm_ticket": "^0.0.26",
|
|
36
|
-
"@aprilium/tripsm_trip-hotel": "^0.0.
|
|
37
|
-
"@aprilium/tripsm_trip-transportation": "^0.0.
|
|
36
|
+
"@aprilium/tripsm_trip-hotel": "^0.0.16",
|
|
37
|
+
"@aprilium/tripsm_trip-transportation": "^0.0.5",
|
|
38
38
|
"@aprilium/tripsm_user": "^0.0.24",
|
|
39
39
|
"@aprilium/tripsm_visa": "^0.0.12",
|
|
40
40
|
"@aprilium/tripsm_visa-category": "^0.0.6",
|