@aprilium/tripsm_global-states 0.0.344 → 0.0.346
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 +2 -2
package/lib/index.d.ts
CHANGED
|
@@ -32,8 +32,10 @@ import { State as customerState } from "@aprilium/tripsm_customer/lib/state";
|
|
|
32
32
|
import { State as tripTransportationState } from "@aprilium/tripsm_trip-transportation/lib/state";
|
|
33
33
|
import { State as roomState } from "@aprilium/tripsm_room/lib/state";
|
|
34
34
|
import constantsSaga from "@aprilium/tripsm_constants/lib/effects";
|
|
35
|
+
import HotelSaga from "@aprilium/tripsm_hotel/lib/effects";
|
|
35
36
|
import TicketSaga from "@aprilium/tripsm_ticket/lib/effects";
|
|
36
37
|
import RelationSaga from "@aprilium/tripsm_relation/lib/effects";
|
|
38
|
+
import RoomSaga from "@aprilium/tripsm_room/lib/effects";
|
|
37
39
|
export declare const sagaMiddleware: import("redux-saga").SagaMiddleware<object>;
|
|
38
40
|
export declare const reducers: {
|
|
39
41
|
passengersState: any;
|
|
@@ -49,7 +51,7 @@ export declare const reducers: {
|
|
|
49
51
|
visaRequest: any;
|
|
50
52
|
identity: any;
|
|
51
53
|
passengerHotel: any;
|
|
52
|
-
hotel:
|
|
54
|
+
hotel: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_hotel/lib/state").HotelState>;
|
|
53
55
|
ticket: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_ticket/lib/state").TicketState>;
|
|
54
56
|
tripHotel: any;
|
|
55
57
|
passengerGroup: any;
|
|
@@ -60,7 +62,7 @@ export declare const reducers: {
|
|
|
60
62
|
relation: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_relation/lib/state").RelationState>;
|
|
61
63
|
payment: any;
|
|
62
64
|
reservation: any;
|
|
63
|
-
room:
|
|
65
|
+
room: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_room/lib/state").RoomState>;
|
|
64
66
|
paymentHistory: any;
|
|
65
67
|
customer: any;
|
|
66
68
|
tripTransportation: any;
|
|
@@ -79,7 +81,7 @@ export declare const initialSagas: {
|
|
|
79
81
|
visaRequest: any;
|
|
80
82
|
identity: any;
|
|
81
83
|
passengerHotel: any;
|
|
82
|
-
hotel:
|
|
84
|
+
hotel: typeof HotelSaga;
|
|
83
85
|
ticket: typeof TicketSaga;
|
|
84
86
|
tripHotel: any;
|
|
85
87
|
passengerGroup: any;
|
|
@@ -90,7 +92,7 @@ export declare const initialSagas: {
|
|
|
90
92
|
relation: typeof RelationSaga;
|
|
91
93
|
payment: any;
|
|
92
94
|
reservation: any;
|
|
93
|
-
room:
|
|
95
|
+
room: typeof RoomSaga;
|
|
94
96
|
paymentHistory: any;
|
|
95
97
|
customer: any;
|
|
96
98
|
tripTransportation: any;
|
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.346",
|
|
4
4
|
"description": "global states",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"@aprilium/tripsm_visa-status": "^0.0.8",
|
|
35
35
|
"@aprilium/tripsm_visa-type": "^0.0.6",
|
|
36
36
|
"@aprilium/tripsm_visa-request": "^0.0.12",
|
|
37
|
-
"@aprilium/tripsm_relation": "^0.0.
|
|
37
|
+
"@aprilium/tripsm_relation": "^0.0.8",
|
|
38
38
|
"@aprilium/tripsm_payment": "^0.0.7",
|
|
39
39
|
"@aprilium/tripsm_reservation": "^0.0.11",
|
|
40
40
|
"@aprilium/tripsm_payment-history": "^0.0.4",
|