@aprilium/tripsm_global-states 0.0.423 → 0.0.424
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 +41 -61
- package/package.json +2 -2
package/lib/index.d.ts
CHANGED
|
@@ -36,69 +36,49 @@ import { State as passengerPathologyState } from "@aprilium/tripsm_passenger-pat
|
|
|
36
36
|
import { State as packOptionState } from "@aprilium/tripsm_pack-options/lib/state";
|
|
37
37
|
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
|
-
import passengerSaga from "@aprilium/tripsm_passenger/lib/effects";
|
|
40
|
-
import visaTypeSaga from "@aprilium/tripsm_visa-type/lib/effects";
|
|
41
39
|
import constantsSaga from "@aprilium/tripsm_constants/lib/effects";
|
|
42
|
-
import groupSaga from "@aprilium/tripsm_trip-group/lib/effects";
|
|
43
40
|
import userSaga from "@aprilium/tripsm_user/lib/effects";
|
|
44
|
-
import guestSaga from "@aprilium/tripsm_guest/lib/effects";
|
|
45
|
-
import visaCategorySaga from "@aprilium/tripsm_visa-category/lib/effects";
|
|
46
|
-
import VisaStatusSaga from "@aprilium/tripsm_visa-status/lib/effects";
|
|
47
|
-
import VisaSaga from "@aprilium/tripsm_visa/lib/effects";
|
|
48
|
-
import VisaRequestSaga from "@aprilium/tripsm_visa-request/lib/effects";
|
|
49
|
-
import IdentitySaga from "@aprilium/tripsm_identity/lib/effects";
|
|
50
41
|
import PassengerHotelSaga from "@aprilium/tripsm_passenger-hotel/lib/effects";
|
|
51
42
|
import HotelSaga from "@aprilium/tripsm_hotel/lib/effects";
|
|
52
43
|
import TicketSaga from "@aprilium/tripsm_ticket/lib/effects";
|
|
53
44
|
import TripHotelSaga from "@aprilium/tripsm_trip-hotel/lib/effects";
|
|
54
|
-
import PassengerGroupSaga from "@aprilium/tripsm_passenger-group/lib/effects";
|
|
55
|
-
import PassengerPackSaga from "@aprilium/tripsm_passenger-pack/lib/effects";
|
|
56
45
|
import LuggageSaga from "@aprilium/tripsm_luggage/lib/effects";
|
|
57
|
-
import LuggageTrackingSaga from "@aprilium/tripsm_luggage-tracking/lib/effects";
|
|
58
|
-
import IdentityTypeSaga from "@aprilium/tripsm_identity-type/lib/effects";
|
|
59
46
|
import RelationSaga from "@aprilium/tripsm_relation/lib/effects";
|
|
60
|
-
import TripSaga from "@aprilium/tripsm_trip/lib/effects";
|
|
61
|
-
import PaymentSaga from "@aprilium/tripsm_payment/lib/effects";
|
|
62
|
-
import ReservationSaga from "@aprilium/tripsm_reservation/lib/effects";
|
|
63
|
-
import PaymentHistorySaga from "@aprilium/tripsm_payment-history/lib/effects";
|
|
64
|
-
import CustomerSaga from "@aprilium/tripsm_customer/lib/effects";
|
|
65
47
|
import TripTransportationSaga from "@aprilium/tripsm_trip-transportation/lib/effects";
|
|
66
|
-
import RoomSaga from "@aprilium/tripsm_room/lib/effects";
|
|
67
|
-
import PackSaga from "@aprilium/tripsm_pack/lib/effects";
|
|
68
48
|
import PassengerPathologySaga from "@aprilium/tripsm_passenger-pathology/lib/effects";
|
|
69
49
|
import packOptionSaga from "@aprilium/tripsm_pack-options/lib/effects";
|
|
70
50
|
import PackHotelSaga from "@aprilium/tripsm_pack-hotel/lib/effects";
|
|
71
51
|
import PackTransportationSaga from "@aprilium/tripsm_pack-transportation/lib/effects";
|
|
72
52
|
export declare const sagaMiddleware: import("redux-saga").SagaMiddleware<object>;
|
|
73
53
|
export declare const reducers: {
|
|
74
|
-
passengersState:
|
|
54
|
+
passengersState: any;
|
|
75
55
|
constants: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_constants/lib/state").ConstantState>;
|
|
76
|
-
trip:
|
|
77
|
-
group:
|
|
56
|
+
trip: any;
|
|
57
|
+
group: any;
|
|
78
58
|
user: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_user/lib/state").UserState>;
|
|
79
|
-
guest:
|
|
80
|
-
visaType:
|
|
81
|
-
visaCategory:
|
|
82
|
-
visaStatus:
|
|
83
|
-
visa:
|
|
84
|
-
visaRequest:
|
|
85
|
-
identity:
|
|
59
|
+
guest: any;
|
|
60
|
+
visaType: any;
|
|
61
|
+
visaCategory: any;
|
|
62
|
+
visaStatus: any;
|
|
63
|
+
visa: any;
|
|
64
|
+
visaRequest: any;
|
|
65
|
+
identity: any;
|
|
86
66
|
passengerHotel: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_passenger-hotel/lib/state").PassengerHotelState>;
|
|
87
67
|
hotel: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_hotel/lib/state").HotelState>;
|
|
88
68
|
ticket: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_ticket/lib/state").TicketState>;
|
|
89
69
|
tripHotel: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_trip-hotel/lib/state").TripHotelState>;
|
|
90
|
-
passengerGroup:
|
|
91
|
-
passengerPack:
|
|
70
|
+
passengerGroup: any;
|
|
71
|
+
passengerPack: any;
|
|
92
72
|
luggage: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_luggage/lib/state").LuggageState>;
|
|
93
|
-
luggageTracking:
|
|
94
|
-
identityType:
|
|
73
|
+
luggageTracking: any;
|
|
74
|
+
identityType: any;
|
|
95
75
|
relation: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_relation/lib/state").RelationState>;
|
|
96
|
-
payment:
|
|
97
|
-
reservation:
|
|
98
|
-
room:
|
|
99
|
-
pack:
|
|
100
|
-
paymentHistory:
|
|
101
|
-
customer:
|
|
76
|
+
payment: any;
|
|
77
|
+
reservation: any;
|
|
78
|
+
room: any;
|
|
79
|
+
pack: any;
|
|
80
|
+
paymentHistory: any;
|
|
81
|
+
customer: any;
|
|
102
82
|
tripTransportation: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_trip-transportation/lib/state").TripTransportationState>;
|
|
103
83
|
passengerPathology: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_passenger-pathology/lib/state").PassengerPathologyState>;
|
|
104
84
|
packOption: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_pack-options/lib/state").PackOptionState>;
|
|
@@ -106,34 +86,34 @@ export declare const reducers: {
|
|
|
106
86
|
packTransportation: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_pack-transportation/lib/state").PackTransportationState>;
|
|
107
87
|
};
|
|
108
88
|
export declare const initialSagas: {
|
|
109
|
-
passenger:
|
|
89
|
+
passenger: any;
|
|
110
90
|
constants: typeof constantsSaga;
|
|
111
|
-
trip:
|
|
112
|
-
group:
|
|
91
|
+
trip: any;
|
|
92
|
+
group: any;
|
|
113
93
|
user: typeof userSaga;
|
|
114
|
-
guest:
|
|
115
|
-
visaType:
|
|
116
|
-
visaCategory:
|
|
117
|
-
visaStatus:
|
|
118
|
-
visa:
|
|
119
|
-
visaRequest:
|
|
120
|
-
identity:
|
|
94
|
+
guest: any;
|
|
95
|
+
visaType: any;
|
|
96
|
+
visaCategory: any;
|
|
97
|
+
visaStatus: any;
|
|
98
|
+
visa: any;
|
|
99
|
+
visaRequest: any;
|
|
100
|
+
identity: any;
|
|
121
101
|
passengerHotel: typeof PassengerHotelSaga;
|
|
122
102
|
hotel: typeof HotelSaga;
|
|
123
103
|
ticket: typeof TicketSaga;
|
|
124
104
|
tripHotel: typeof TripHotelSaga;
|
|
125
|
-
passengerGroup:
|
|
126
|
-
passengerPack:
|
|
105
|
+
passengerGroup: any;
|
|
106
|
+
passengerPack: any;
|
|
127
107
|
luggage: typeof LuggageSaga;
|
|
128
|
-
luggageTracking:
|
|
129
|
-
identityType:
|
|
108
|
+
luggageTracking: any;
|
|
109
|
+
identityType: any;
|
|
130
110
|
relation: typeof RelationSaga;
|
|
131
|
-
payment:
|
|
132
|
-
reservation:
|
|
133
|
-
room:
|
|
134
|
-
pack:
|
|
135
|
-
paymentHistory:
|
|
136
|
-
customer:
|
|
111
|
+
payment: any;
|
|
112
|
+
reservation: any;
|
|
113
|
+
room: any;
|
|
114
|
+
pack: any;
|
|
115
|
+
paymentHistory: any;
|
|
116
|
+
customer: any;
|
|
137
117
|
tripTransportation: typeof TripTransportationSaga;
|
|
138
118
|
passengerPathology: typeof PassengerPathologySaga;
|
|
139
119
|
packOption: typeof packOptionSaga;
|
|
@@ -177,7 +157,7 @@ export type States = {
|
|
|
177
157
|
};
|
|
178
158
|
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" | "payment-state" | "payment-history" | "customer" | "reservation" | "trip-transportation" | "passenger-pathology" | "packOption" | "pack-hotel" | "pack-transportation";
|
|
179
159
|
export declare function setUrlConfig(coreApi: string, debugMode?: boolean): void;
|
|
180
|
-
export declare const sagas:
|
|
160
|
+
export declare const sagas: any[];
|
|
181
161
|
export declare function initSagaMiddleware(extraSagas?: Array<Saga>, // local sagas from frontEnd Client
|
|
182
162
|
waitForRehydrate?: boolean): void;
|
|
183
163
|
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.424",
|
|
4
4
|
"description": "global states",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"@aprilium/tripsm_guest": "^0.0.1",
|
|
19
19
|
"@aprilium/tripsm_hotel": "^0.0.10",
|
|
20
20
|
"@aprilium/tripsm_identity": "^0.0.24",
|
|
21
|
-
"@aprilium/tripsm_trip": "^0.0.
|
|
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",
|
|
24
24
|
"@aprilium/tripsm_luggage": "^0.0.11",
|