@aprilium/tripsm_global-states 0.0.424 → 0.0.426
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 +3 -3
package/lib/index.d.ts
CHANGED
|
@@ -38,12 +38,14 @@ import { State as packHotelState } from "@aprilium/tripsm_pack-hotel/lib/state";
|
|
|
38
38
|
import { State as packTransportationState } from "@aprilium/tripsm_pack-transportation/lib/state";
|
|
39
39
|
import constantsSaga from "@aprilium/tripsm_constants/lib/effects";
|
|
40
40
|
import userSaga from "@aprilium/tripsm_user/lib/effects";
|
|
41
|
+
import IdentitySaga from "@aprilium/tripsm_identity/lib/effects";
|
|
41
42
|
import PassengerHotelSaga from "@aprilium/tripsm_passenger-hotel/lib/effects";
|
|
42
43
|
import HotelSaga from "@aprilium/tripsm_hotel/lib/effects";
|
|
43
44
|
import TicketSaga from "@aprilium/tripsm_ticket/lib/effects";
|
|
44
45
|
import TripHotelSaga from "@aprilium/tripsm_trip-hotel/lib/effects";
|
|
45
46
|
import LuggageSaga from "@aprilium/tripsm_luggage/lib/effects";
|
|
46
47
|
import RelationSaga from "@aprilium/tripsm_relation/lib/effects";
|
|
48
|
+
import TripSaga from "@aprilium/tripsm_trip/lib/effects";
|
|
47
49
|
import TripTransportationSaga from "@aprilium/tripsm_trip-transportation/lib/effects";
|
|
48
50
|
import PassengerPathologySaga from "@aprilium/tripsm_passenger-pathology/lib/effects";
|
|
49
51
|
import packOptionSaga from "@aprilium/tripsm_pack-options/lib/effects";
|
|
@@ -53,7 +55,7 @@ export declare const sagaMiddleware: import("redux-saga").SagaMiddleware<object>
|
|
|
53
55
|
export declare const reducers: {
|
|
54
56
|
passengersState: any;
|
|
55
57
|
constants: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_constants/lib/state").ConstantState>;
|
|
56
|
-
trip:
|
|
58
|
+
trip: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_trip/lib/state").TripState>;
|
|
57
59
|
group: any;
|
|
58
60
|
user: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_user/lib/state").UserState>;
|
|
59
61
|
guest: any;
|
|
@@ -62,7 +64,7 @@ export declare const reducers: {
|
|
|
62
64
|
visaStatus: any;
|
|
63
65
|
visa: any;
|
|
64
66
|
visaRequest: any;
|
|
65
|
-
identity:
|
|
67
|
+
identity: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_identity/lib/state").IdentityState>;
|
|
66
68
|
passengerHotel: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_passenger-hotel/lib/state").PassengerHotelState>;
|
|
67
69
|
hotel: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_hotel/lib/state").HotelState>;
|
|
68
70
|
ticket: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_ticket/lib/state").TicketState>;
|
|
@@ -88,7 +90,7 @@ export declare const reducers: {
|
|
|
88
90
|
export declare const initialSagas: {
|
|
89
91
|
passenger: any;
|
|
90
92
|
constants: typeof constantsSaga;
|
|
91
|
-
trip:
|
|
93
|
+
trip: typeof TripSaga;
|
|
92
94
|
group: any;
|
|
93
95
|
user: typeof userSaga;
|
|
94
96
|
guest: any;
|
|
@@ -97,7 +99,7 @@ export declare const initialSagas: {
|
|
|
97
99
|
visaStatus: any;
|
|
98
100
|
visa: any;
|
|
99
101
|
visaRequest: any;
|
|
100
|
-
identity:
|
|
102
|
+
identity: typeof IdentitySaga;
|
|
101
103
|
passengerHotel: typeof PassengerHotelSaga;
|
|
102
104
|
hotel: typeof HotelSaga;
|
|
103
105
|
ticket: typeof TicketSaga;
|
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.426",
|
|
4
4
|
"description": "global states",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"@aprilium/tripsm_customer": "^0.0.2",
|
|
18
18
|
"@aprilium/tripsm_guest": "^0.0.1",
|
|
19
19
|
"@aprilium/tripsm_hotel": "^0.0.10",
|
|
20
|
-
"@aprilium/tripsm_identity": "^0.0.
|
|
20
|
+
"@aprilium/tripsm_identity": "^0.0.25",
|
|
21
21
|
"@aprilium/tripsm_trip": "^0.0.29",
|
|
22
22
|
"@aprilium/tripsm_trip-group": "^0.0.24",
|
|
23
23
|
"@aprilium/tripsm_identity-type": "^0.0.10",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"@aprilium/tripsm_ticket": "^0.0.26",
|
|
36
36
|
"@aprilium/tripsm_trip-hotel": "^0.0.18",
|
|
37
37
|
"@aprilium/tripsm_trip-transportation": "^0.0.12",
|
|
38
|
-
"@aprilium/tripsm_user": "^0.0.
|
|
38
|
+
"@aprilium/tripsm_user": "^0.0.27",
|
|
39
39
|
"@aprilium/tripsm_visa": "^0.0.12",
|
|
40
40
|
"@aprilium/tripsm_visa-category": "^0.0.6",
|
|
41
41
|
"@aprilium/tripsm_visa-request": "^0.0.12",
|