@aprilium/tripsm_global-states 0.0.752 → 0.0.754
Sign up to get free protection for your applications and to get access to all the features.
- package/lib/index.d.ts +7 -10
- package/package.json +3 -3
package/lib/index.d.ts
CHANGED
@@ -54,7 +54,6 @@ import guestSaga from "@aprilium/tripsm_guest/lib/packages/guest/src/effects";
|
|
54
54
|
import visaCategorySaga from "@aprilium/tripsm_visa-category/lib/packages/visa-category/src/effects";
|
55
55
|
import VisaStatusSaga from "@aprilium/tripsm_visa-status/lib/packages/visa-status/src/effects";
|
56
56
|
import VisaSaga from "@aprilium/tripsm_visa/lib/packages/visa/src/effects";
|
57
|
-
import MessageSaga from "@aprilium/tripsm_message/lib/packages/message/src/effects";
|
58
57
|
import VisaRequestSaga from "@aprilium/tripsm_visa-request/lib/packages/visa-request/src/effects";
|
59
58
|
import IdentitySaga from "@aprilium/tripsm_identity/lib/packages/identity/src/effects";
|
60
59
|
import PassengerHotelSaga from "@aprilium/tripsm_passenger-hotel/lib/packages/passenger-hotel/src/effects";
|
@@ -80,13 +79,11 @@ import RoomSaga from "@aprilium/tripsm_room/lib/packages/room/src/effects";
|
|
80
79
|
import PackSaga from "@aprilium/tripsm_pack/lib/packages/pack/src/effects";
|
81
80
|
import PassengerPathologySaga from "@aprilium/tripsm_passenger-pathology/lib/packages/passenger-pathology/src/effects";
|
82
81
|
import packOptionSaga from "@aprilium/tripsm_pack-options/lib/packages/pack-options/src/effects";
|
83
|
-
import hotelOptionsSaga from "@aprilium/tripsm_hotel-options/lib/packages/hotel-options/src/effects";
|
84
82
|
import PackHotelSaga from "@aprilium/tripsm_pack-hotel/lib/packages/pack-hotel/src/effects";
|
85
83
|
import PackTransportationSaga from "@aprilium/tripsm_pack-transportation/lib/packages/pack-transportation/src/effects";
|
86
84
|
import PassengerLocationSaga from "@aprilium/tripsm_passengers-location/lib/packages/passengers-location/src/effects";
|
87
85
|
import ReservationRequestSaga from "@aprilium/tripsm_reservation-request/lib/packages/reservation-request/src/effects";
|
88
86
|
import GuestExpoTokenSaga from "@aprilium/tripsm_guest-expo-token/lib/packages/guest-expo-token/src/effects";
|
89
|
-
import PassengerConversationSaga from "@aprilium/tripsm_passenger-conversation/lib/packages/passenger-conversation/src/effects";
|
90
87
|
export declare const sagaMiddleware: import("redux-saga").SagaMiddleware<object>;
|
91
88
|
export declare const reducers: {
|
92
89
|
passengersState: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_passenger/lib/packages/passenger/src/state").PassengerState>;
|
@@ -100,7 +97,7 @@ export declare const reducers: {
|
|
100
97
|
visaCategory: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_visa-category/lib/packages/visa-category/src/state").VisaCategoryState>;
|
101
98
|
visaStatus: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_visa-status/lib/packages/visa-status/src/state").VisaStatusState>;
|
102
99
|
visa: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_visa/lib/packages/visa/src/state").VisaState>;
|
103
|
-
message:
|
100
|
+
message: any;
|
104
101
|
visaRequest: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_visa-request/lib/packages/visa-request/src/state").VisaRequestState>;
|
105
102
|
identity: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_identity/lib/packages/identity/src/state").IdentityState>;
|
106
103
|
passengerHotel: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_passenger-hotel/lib/packages/passenger-hotel/src/state").PassengerHotelState>;
|
@@ -124,10 +121,10 @@ export declare const reducers: {
|
|
124
121
|
tripTransportation: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_trip-transportation/lib/packages/trip-transportation/src/state").TripTransportationState>;
|
125
122
|
passengerPathology: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_passenger-pathology/lib/packages/passenger-pathology/src/state").PassengerPathologyState>;
|
126
123
|
packOption: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_pack-options/lib/packages/pack-options/src/state").PackOptionState>;
|
127
|
-
hotelOptions:
|
124
|
+
hotelOptions: any;
|
128
125
|
packHotel: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_pack-hotel/lib/packages/pack-hotel/src/state").PackHotelState>;
|
129
126
|
packTransportation: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_pack-transportation/lib/packages/pack-transportation/src/state").PackTransportationState>;
|
130
|
-
passengerConversation:
|
127
|
+
passengerConversation: any;
|
131
128
|
passengerLocation: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_passengers-location/lib/packages/passengers-location/src/state").PassengerLocationState>;
|
132
129
|
reservationRequest: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_reservation-request/lib/packages/reservation-request/src/state").ReservationRequestState>;
|
133
130
|
guestExpoToken: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_guest-expo-token/lib/packages/guest-expo-token/src/state").GuestExpoTokenState>;
|
@@ -144,7 +141,7 @@ export declare const initialSagas: {
|
|
144
141
|
visaCategory: typeof visaCategorySaga;
|
145
142
|
visaStatus: typeof VisaStatusSaga;
|
146
143
|
visa: typeof VisaSaga;
|
147
|
-
message:
|
144
|
+
message: any;
|
148
145
|
visaRequest: typeof VisaRequestSaga;
|
149
146
|
identity: typeof IdentitySaga;
|
150
147
|
passengerHotel: typeof PassengerHotelSaga;
|
@@ -168,13 +165,13 @@ export declare const initialSagas: {
|
|
168
165
|
tripTransportation: typeof TripTransportationSaga;
|
169
166
|
passengerPathology: typeof PassengerPathologySaga;
|
170
167
|
packOption: typeof packOptionSaga;
|
171
|
-
hotelOptions:
|
168
|
+
hotelOptions: any;
|
172
169
|
packHotel: typeof PackHotelSaga;
|
173
170
|
packTransportation: typeof PackTransportationSaga;
|
174
171
|
passengerLocation: typeof PassengerLocationSaga;
|
175
172
|
reservationRequest: typeof ReservationRequestSaga;
|
176
173
|
guestExpoToken: typeof GuestExpoTokenSaga;
|
177
|
-
passengerConversation:
|
174
|
+
passengerConversation: any;
|
178
175
|
};
|
179
176
|
export type States = {
|
180
177
|
passengersState: passengersState;
|
@@ -222,7 +219,7 @@ export type States = {
|
|
222
219
|
};
|
223
220
|
export type StateName = "passenger-pack" | "room" | "pack" | "guest" | "passengersState" | "constants" | "group" | "user" | "visaType" | "visaCategory" | "VisaStatus" | "visa" | "visaRequest" | "identity" | "passengerHotel" | "tripHotel" | "hotel" | "ticket" | "passenger-group" | "luggage" | "luggage-tracking" | "identity-type" | "relation" | "trip" | "trip-picture" | "payment-state" | "payment-history" | "customer" | "reservation" | "trip-transportation" | "passenger-pathology" | "packOption" | "hotelOptions" | "pack-hotel" | "pack-transportation" | "passenger-location" | "reservation-request" | "trip-favoris" | "guest-expo-token" | "favoris-pack" | "visa" | "passenger-conversation" | "message";
|
224
221
|
export declare function setUrlConfig(coreApi: string, debugMode?: boolean): void;
|
225
|
-
export declare const sagas:
|
222
|
+
export declare const sagas: any[];
|
226
223
|
export declare function initSagaMiddleware(extraSagas?: Array<Saga>, // local sagas from frontEnd Client
|
227
224
|
waitForRehydrate?: boolean): void;
|
228
225
|
declare function configStore(extraMiddleWares: any[] | undefined, // Adding other middlewares
|
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.754",
|
4
4
|
"description": "global states",
|
5
5
|
"main": "lib/index.js",
|
6
6
|
"types": "lib/index.d.ts",
|
@@ -25,7 +25,7 @@
|
|
25
25
|
"@aprilium/tripsm_favoris-pack": "^0.0.4",
|
26
26
|
"@aprilium/tripsm_passenger": "^0.0.122",
|
27
27
|
"@aprilium/tripsm_passenger-group": "^0.0.23",
|
28
|
-
"@aprilium/tripsm_passenger-hotel": "^0.0.
|
28
|
+
"@aprilium/tripsm_passenger-hotel": "^0.0.21",
|
29
29
|
"@aprilium/tripsm_passenger-pathology": "^0.0.11",
|
30
30
|
"@aprilium/tripsm_passengers-location": "^0.0.6",
|
31
31
|
"@aprilium/tripsm_payment-history": "^0.0.8",
|
@@ -48,7 +48,7 @@
|
|
48
48
|
"@aprilium/tripsm_pack-hotel": "^0.0.14",
|
49
49
|
"@aprilium/tripsm_pack-options": "^0.0.12",
|
50
50
|
"@aprilium/tripsm_pack-transportation": "^0.0.5",
|
51
|
-
"@aprilium/tripsm_passenger-pack": "^0.0.
|
51
|
+
"@aprilium/tripsm_passenger-pack": "^0.0.18",
|
52
52
|
"@aprilium/tripsm_trip-group": "^0.0.33",
|
53
53
|
"@aprilium/tripsm_guest-expo-token": "^0.0.3",
|
54
54
|
"@aprilium/tripsm_passenger-conversation": "^0.0.1",
|