@aprilium/tripsm_global-states 0.0.514 → 0.0.515
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 +54 -33
- package/lib/index.js +10 -0
- package/package.json +14 -12
package/lib/index.d.ts
CHANGED
|
@@ -38,10 +38,17 @@ import { State as packOptionState } from "@aprilium/tripsm_pack-options/lib/stat
|
|
|
38
38
|
import { State as packHotelState } from "@aprilium/tripsm_pack-hotel/lib/state";
|
|
39
39
|
import { State as packTransportationState } from "@aprilium/tripsm_pack-transportation/lib/state";
|
|
40
40
|
import { State as passengerLocationState } from "@aprilium/tripsm_passengers-location/lib/state";
|
|
41
|
+
import { State as reservationRequestState } from "@aprilium/tripsm_reservation-request/lib/state";
|
|
41
42
|
import passengerSaga from "@aprilium/tripsm_passenger/lib/effects";
|
|
43
|
+
import visaTypeSaga from "@aprilium/tripsm_visa-type/lib/effects";
|
|
42
44
|
import constantsSaga from "@aprilium/tripsm_constants/lib/effects";
|
|
45
|
+
import groupSaga from "@aprilium/tripsm_trip-group/lib/effects";
|
|
43
46
|
import userSaga from "@aprilium/tripsm_user/lib/effects";
|
|
44
47
|
import guestSaga from "@aprilium/tripsm_guest/lib/effects";
|
|
48
|
+
import visaCategorySaga from "@aprilium/tripsm_visa-category/lib/effects";
|
|
49
|
+
import VisaStatusSaga from "@aprilium/tripsm_visa-status/lib/effects";
|
|
50
|
+
import VisaSaga from "@aprilium/tripsm_visa/lib/effects";
|
|
51
|
+
import VisaRequestSaga from "@aprilium/tripsm_visa-request/lib/effects";
|
|
45
52
|
import IdentitySaga from "@aprilium/tripsm_identity/lib/effects";
|
|
46
53
|
import PassengerHotelSaga from "@aprilium/tripsm_passenger-hotel/lib/effects";
|
|
47
54
|
import HotelSaga from "@aprilium/tripsm_hotel/lib/effects";
|
|
@@ -49,28 +56,39 @@ import TicketSaga from "@aprilium/tripsm_ticket/lib/effects";
|
|
|
49
56
|
import TripHotelSaga from "@aprilium/tripsm_trip-hotel/lib/effects";
|
|
50
57
|
import PassengerGroupSaga from "@aprilium/tripsm_passenger-group/lib/effects";
|
|
51
58
|
import PassengerPackSaga from "@aprilium/tripsm_passenger-pack/lib/effects";
|
|
59
|
+
import LuggageSaga from "@aprilium/tripsm_luggage/lib/effects";
|
|
60
|
+
import LuggageTrackingSaga from "@aprilium/tripsm_luggage-tracking/lib/effects";
|
|
61
|
+
import IdentityTypeSaga from "@aprilium/tripsm_identity-type/lib/effects";
|
|
52
62
|
import RelationSaga from "@aprilium/tripsm_relation/lib/effects";
|
|
53
63
|
import TripSaga from "@aprilium/tripsm_trip/lib/effects";
|
|
54
64
|
import TripPictureSaga from "@aprilium/tripsm_trip-picture/lib/effects";
|
|
65
|
+
import PaymentSaga from "@aprilium/tripsm_payment/lib/effects";
|
|
66
|
+
import ReservationSaga from "@aprilium/tripsm_reservation/lib/effects";
|
|
67
|
+
import PaymentHistorySaga from "@aprilium/tripsm_payment-history/lib/effects";
|
|
68
|
+
import CustomerSaga from "@aprilium/tripsm_customer/lib/effects";
|
|
55
69
|
import TripTransportationSaga from "@aprilium/tripsm_trip-transportation/lib/effects";
|
|
70
|
+
import RoomSaga from "@aprilium/tripsm_room/lib/effects";
|
|
71
|
+
import PackSaga from "@aprilium/tripsm_pack/lib/effects";
|
|
56
72
|
import PassengerPathologySaga from "@aprilium/tripsm_passenger-pathology/lib/effects";
|
|
57
73
|
import packOptionSaga from "@aprilium/tripsm_pack-options/lib/effects";
|
|
58
74
|
import PackHotelSaga from "@aprilium/tripsm_pack-hotel/lib/effects";
|
|
59
75
|
import PackTransportationSaga from "@aprilium/tripsm_pack-transportation/lib/effects";
|
|
76
|
+
import PassengerLocationSaga from "@aprilium/tripsm_passengers-location/lib/effects";
|
|
77
|
+
import ReservationRequestSaga from "@aprilium/tripsm_reservation-request/lib/effects";
|
|
60
78
|
export declare const sagaMiddleware: import("redux-saga").SagaMiddleware<object>;
|
|
61
79
|
export declare const reducers: {
|
|
62
80
|
passengersState: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_passenger/lib/state").PassengerState>;
|
|
63
81
|
constants: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_constants/lib/state").ConstantState>;
|
|
64
82
|
trip: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_trip/lib/state").TripState>;
|
|
65
83
|
tripPicture: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_trip-picture/lib/state").TripPictureState>;
|
|
66
|
-
group:
|
|
84
|
+
group: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_trip-group/lib/state").GroupState>;
|
|
67
85
|
user: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_user/lib/state").UserState>;
|
|
68
86
|
guest: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_guest/lib/state").GuestState>;
|
|
69
|
-
visaType:
|
|
70
|
-
visaCategory:
|
|
71
|
-
visaStatus:
|
|
72
|
-
visa:
|
|
73
|
-
visaRequest:
|
|
87
|
+
visaType: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_visa-type/lib/state").VisaTypeState>;
|
|
88
|
+
visaCategory: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_visa-category/lib/state").VisaCategoryState>;
|
|
89
|
+
visaStatus: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_visa-status/lib/state").VisaStatusState>;
|
|
90
|
+
visa: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_visa/lib/state").VisaState>;
|
|
91
|
+
visaRequest: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_visa-request/lib/state").VisaRequestState>;
|
|
74
92
|
identity: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_identity/lib/state").IdentityState>;
|
|
75
93
|
passengerHotel: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_passenger-hotel/lib/state").PassengerHotelState>;
|
|
76
94
|
hotel: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_hotel/lib/state").HotelState>;
|
|
@@ -78,36 +96,37 @@ export declare const reducers: {
|
|
|
78
96
|
tripHotel: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_trip-hotel/lib/state").TripHotelState>;
|
|
79
97
|
passengerGroup: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_passenger-group/lib/state").PassengerGroupState>;
|
|
80
98
|
passengerPack: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_passenger-pack/lib/state").PassengerPackState>;
|
|
81
|
-
luggage:
|
|
82
|
-
luggageTracking:
|
|
83
|
-
identityType:
|
|
99
|
+
luggage: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_luggage/lib/state").LuggageState>;
|
|
100
|
+
luggageTracking: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_luggage-tracking/lib/state").LuggageTrackingState>;
|
|
101
|
+
identityType: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_identity-type/lib/state").IdentityTypeState>;
|
|
84
102
|
relation: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_relation/lib/state").RelationState>;
|
|
85
|
-
payment:
|
|
86
|
-
reservation:
|
|
87
|
-
room:
|
|
88
|
-
pack:
|
|
89
|
-
paymentHistory:
|
|
90
|
-
customer:
|
|
103
|
+
payment: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_payment/lib/state").PaymentState>;
|
|
104
|
+
reservation: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_reservation/lib/state").ReservationState>;
|
|
105
|
+
room: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_room/lib/state").RoomState>;
|
|
106
|
+
pack: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_pack/lib/state").PackState>;
|
|
107
|
+
paymentHistory: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_payment-history/lib/state").PaymentHistoryState>;
|
|
108
|
+
customer: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_customer/lib/state").CustomerState>;
|
|
91
109
|
tripTransportation: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_trip-transportation/lib/state").TripTransportationState>;
|
|
92
110
|
passengerPathology: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_passenger-pathology/lib/state").PassengerPathologyState>;
|
|
93
111
|
packOption: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_pack-options/lib/state").PackOptionState>;
|
|
94
112
|
packHotel: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_pack-hotel/lib/state").PackHotelState>;
|
|
95
113
|
packTransportation: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_pack-transportation/lib/state").PackTransportationState>;
|
|
96
|
-
passengerLocation:
|
|
114
|
+
passengerLocation: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_passengers-location/lib/state").PassengerLocationState>;
|
|
115
|
+
reservationRequest: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_reservation-request/lib/state").ReservationRequestState>;
|
|
97
116
|
};
|
|
98
117
|
export declare const initialSagas: {
|
|
99
118
|
passenger: typeof passengerSaga;
|
|
100
119
|
constants: typeof constantsSaga;
|
|
101
120
|
trip: typeof TripSaga;
|
|
102
121
|
tripPicture: typeof TripPictureSaga;
|
|
103
|
-
group:
|
|
122
|
+
group: typeof groupSaga;
|
|
104
123
|
user: typeof userSaga;
|
|
105
124
|
guest: typeof guestSaga;
|
|
106
|
-
visaType:
|
|
107
|
-
visaCategory:
|
|
108
|
-
visaStatus:
|
|
109
|
-
visa:
|
|
110
|
-
visaRequest:
|
|
125
|
+
visaType: typeof visaTypeSaga;
|
|
126
|
+
visaCategory: typeof visaCategorySaga;
|
|
127
|
+
visaStatus: typeof VisaStatusSaga;
|
|
128
|
+
visa: typeof VisaSaga;
|
|
129
|
+
visaRequest: typeof VisaRequestSaga;
|
|
111
130
|
identity: typeof IdentitySaga;
|
|
112
131
|
passengerHotel: typeof PassengerHotelSaga;
|
|
113
132
|
hotel: typeof HotelSaga;
|
|
@@ -115,22 +134,23 @@ export declare const initialSagas: {
|
|
|
115
134
|
tripHotel: typeof TripHotelSaga;
|
|
116
135
|
passengerGroup: typeof PassengerGroupSaga;
|
|
117
136
|
passengerPack: typeof PassengerPackSaga;
|
|
118
|
-
luggage:
|
|
119
|
-
luggageTracking:
|
|
120
|
-
identityType:
|
|
137
|
+
luggage: typeof LuggageSaga;
|
|
138
|
+
luggageTracking: typeof LuggageTrackingSaga;
|
|
139
|
+
identityType: typeof IdentityTypeSaga;
|
|
121
140
|
relation: typeof RelationSaga;
|
|
122
|
-
payment:
|
|
123
|
-
reservation:
|
|
124
|
-
room:
|
|
125
|
-
pack:
|
|
126
|
-
paymentHistory:
|
|
127
|
-
customer:
|
|
141
|
+
payment: typeof PaymentSaga;
|
|
142
|
+
reservation: typeof ReservationSaga;
|
|
143
|
+
room: typeof RoomSaga;
|
|
144
|
+
pack: typeof PackSaga;
|
|
145
|
+
paymentHistory: typeof PaymentHistorySaga;
|
|
146
|
+
customer: typeof CustomerSaga;
|
|
128
147
|
tripTransportation: typeof TripTransportationSaga;
|
|
129
148
|
passengerPathology: typeof PassengerPathologySaga;
|
|
130
149
|
packOption: typeof packOptionSaga;
|
|
131
150
|
packHotel: typeof PackHotelSaga;
|
|
132
151
|
packTransportation: typeof PackTransportationSaga;
|
|
133
|
-
passengerLocation:
|
|
152
|
+
passengerLocation: typeof PassengerLocationSaga;
|
|
153
|
+
reservationRequest: typeof ReservationRequestSaga;
|
|
134
154
|
};
|
|
135
155
|
export type States = {
|
|
136
156
|
passengersState: passengersState;
|
|
@@ -168,10 +188,11 @@ export type States = {
|
|
|
168
188
|
packHotel: packHotelState;
|
|
169
189
|
packTransportation: packTransportationState;
|
|
170
190
|
passengerLocation: passengerLocationState;
|
|
191
|
+
reservationRequest: reservationRequestState;
|
|
171
192
|
};
|
|
172
193
|
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" | "pack-hotel" | "pack-transportation" | "passenger-location";
|
|
173
194
|
export declare function setUrlConfig(coreApi: string, debugMode?: boolean): void;
|
|
174
|
-
export declare const sagas:
|
|
195
|
+
export declare const sagas: (typeof passengerSaga | typeof constantsSaga | typeof TripSaga | typeof TripPictureSaga | typeof groupSaga | typeof userSaga | typeof guestSaga | typeof visaTypeSaga | typeof visaCategorySaga | typeof VisaStatusSaga | typeof VisaSaga | typeof VisaRequestSaga | typeof IdentitySaga | typeof PassengerHotelSaga | typeof HotelSaga | typeof TicketSaga | typeof TripHotelSaga | typeof PassengerGroupSaga | typeof PassengerPackSaga | typeof LuggageSaga | typeof LuggageTrackingSaga | typeof IdentityTypeSaga | typeof RelationSaga | typeof PaymentSaga | typeof ReservationSaga | typeof RoomSaga | typeof PackSaga | typeof PaymentHistorySaga | typeof CustomerSaga | typeof TripTransportationSaga | typeof PassengerPathologySaga | typeof packOptionSaga | typeof PackHotelSaga | typeof PackTransportationSaga | typeof PassengerLocationSaga | typeof ReservationRequestSaga)[];
|
|
175
196
|
export declare function initSagaMiddleware(extraSagas?: Array<Saga>, // local sagas from frontEnd Client
|
|
176
197
|
waitForRehydrate?: boolean): void;
|
|
177
198
|
declare function configStore(extraMiddleWares: any[] | undefined, // Adding other middlewares
|
package/lib/index.js
CHANGED
|
@@ -92,6 +92,7 @@ var lib_33 = require("@aprilium/tripsm_pack-options/lib");
|
|
|
92
92
|
var lib_34 = require("@aprilium/tripsm_pack-hotel/lib");
|
|
93
93
|
var lib_35 = require("@aprilium/tripsm_pack-transportation/lib");
|
|
94
94
|
var lib_36 = require("@aprilium/tripsm_passengers-location/lib");
|
|
95
|
+
var lib_37 = require("@aprilium/tripsm_reservation-request/lib");
|
|
95
96
|
var state_1 = require("@aprilium/tripsm_visa/lib/state");
|
|
96
97
|
var state_2 = require("@aprilium/tripsm_visa-request/lib/state");
|
|
97
98
|
var state_3 = require("@aprilium/tripsm_visa-category/lib/state");
|
|
@@ -127,6 +128,7 @@ var state_32 = require("@aprilium/tripsm_pack-options/lib/state");
|
|
|
127
128
|
var state_33 = require("@aprilium/tripsm_pack-hotel/lib/state");
|
|
128
129
|
var state_34 = require("@aprilium/tripsm_pack-transportation/lib/state");
|
|
129
130
|
var state_35 = require("@aprilium/tripsm_passengers-location/lib/state");
|
|
131
|
+
var state_36 = require("@aprilium/tripsm_reservation-request/lib/state");
|
|
130
132
|
//import sagas
|
|
131
133
|
var effects_2 = __importDefault(require("@aprilium/tripsm_passenger/lib/effects"));
|
|
132
134
|
var effects_3 = __importDefault(require("@aprilium/tripsm_visa-type/lib/effects"));
|
|
@@ -163,6 +165,7 @@ var effects_33 = __importDefault(require("@aprilium/tripsm_pack-options/lib/effe
|
|
|
163
165
|
var effects_34 = __importDefault(require("@aprilium/tripsm_pack-hotel/lib/effects"));
|
|
164
166
|
var effects_35 = __importDefault(require("@aprilium/tripsm_pack-transportation/lib/effects"));
|
|
165
167
|
var effects_36 = __importDefault(require("@aprilium/tripsm_passengers-location/lib/effects"));
|
|
168
|
+
var effects_37 = __importDefault(require("@aprilium/tripsm_reservation-request/lib/effects"));
|
|
166
169
|
exports.sagaMiddleware = (0, redux_saga_1.default)();
|
|
167
170
|
exports.reducers = {
|
|
168
171
|
passengersState: state_23.passengerReducerFunction,
|
|
@@ -200,6 +203,7 @@ exports.reducers = {
|
|
|
200
203
|
packHotel: state_33.PackHotelReducerFunction,
|
|
201
204
|
packTransportation: state_34.PackTransportationReducerFunction,
|
|
202
205
|
passengerLocation: state_35.PassengerLocationReducerFunction,
|
|
206
|
+
reservationRequest: state_36.ReservationRequestReducerFunction,
|
|
203
207
|
};
|
|
204
208
|
exports.initialSagas = {
|
|
205
209
|
passenger: effects_2.default,
|
|
@@ -237,7 +241,9 @@ exports.initialSagas = {
|
|
|
237
241
|
packHotel: effects_34.default,
|
|
238
242
|
packTransportation: effects_35.default,
|
|
239
243
|
passengerLocation: effects_36.default,
|
|
244
|
+
reservationRequest: effects_37.default,
|
|
240
245
|
};
|
|
246
|
+
"reservation-request";
|
|
241
247
|
function setUrlConfig(coreApi, debugMode) {
|
|
242
248
|
if (debugMode === void 0) { debugMode = false; }
|
|
243
249
|
lib_1.urlsConfig.setURls({
|
|
@@ -384,6 +390,10 @@ function setUrlConfig(coreApi, debugMode) {
|
|
|
384
390
|
CORE_BASE_URL: coreApi,
|
|
385
391
|
DEBUG_MODE: debugMode,
|
|
386
392
|
});
|
|
393
|
+
lib_37.urlsConfig.setURls({
|
|
394
|
+
CORE_BASE_URL: coreApi,
|
|
395
|
+
DEBUG_MODE: debugMode,
|
|
396
|
+
});
|
|
387
397
|
}
|
|
388
398
|
exports.setUrlConfig = setUrlConfig;
|
|
389
399
|
exports.sagas = Object.keys(exports.initialSagas).map(function (key) { return exports.initialSagas[key]; });
|
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.515",
|
|
4
4
|
"description": "global states",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -18,42 +18,44 @@
|
|
|
18
18
|
"@aprilium/tripsm_guest": "^0.0.8",
|
|
19
19
|
"@aprilium/tripsm_hotel": "^0.0.11",
|
|
20
20
|
"@aprilium/tripsm_identity": "^0.0.27",
|
|
21
|
-
"@aprilium/tripsm_trip": "^0.0.40",
|
|
22
|
-
"@aprilium/tripsm_trip-group": "^0.0.24",
|
|
23
21
|
"@aprilium/tripsm_identity-type": "^0.0.10",
|
|
24
22
|
"@aprilium/tripsm_luggage": "^0.0.14",
|
|
25
23
|
"@aprilium/tripsm_luggage-tracking": "^0.0.10",
|
|
26
|
-
"@aprilium/
|
|
24
|
+
"@aprilium/tripsm_pack": "^0.0.21",
|
|
25
|
+
"@aprilium/tripsm_pack-hotel": "^0.0.8",
|
|
26
|
+
"@aprilium/tripsm_pack-options": "^0.0.7",
|
|
27
|
+
"@aprilium/tripsm_pack-transportation": "^0.0.3",
|
|
28
|
+
"@aprilium/tripsm_passenger": "^0.0.102",
|
|
27
29
|
"@aprilium/tripsm_passenger-group": "^0.0.16",
|
|
28
30
|
"@aprilium/tripsm_passenger-hotel": "^0.0.16",
|
|
29
31
|
"@aprilium/tripsm_passenger-pack": "^0.0.13",
|
|
32
|
+
"@aprilium/tripsm_passenger-pathology": "^0.0.6",
|
|
33
|
+
"@aprilium/tripsm_passengers-location": "^0.0.3",
|
|
30
34
|
"@aprilium/tripsm_payment": "^0.0.7",
|
|
31
35
|
"@aprilium/tripsm_payment-history": "^0.0.4",
|
|
32
36
|
"@aprilium/tripsm_relation": "^0.0.8",
|
|
33
37
|
"@aprilium/tripsm_reservation": "^0.0.12",
|
|
34
38
|
"@aprilium/tripsm_room": "^0.0.8",
|
|
35
39
|
"@aprilium/tripsm_ticket": "^0.0.26",
|
|
40
|
+
"@aprilium/tripsm_trip": "^0.0.40",
|
|
41
|
+
"@aprilium/tripsm_trip-group": "^0.0.24",
|
|
36
42
|
"@aprilium/tripsm_trip-hotel": "^0.0.18",
|
|
37
|
-
"@aprilium/tripsm_trip-transportation": "^0.0.12",
|
|
38
43
|
"@aprilium/tripsm_trip-picture": "^0.0.9",
|
|
44
|
+
"@aprilium/tripsm_trip-transportation": "^0.0.12",
|
|
39
45
|
"@aprilium/tripsm_user": "^0.0.27",
|
|
40
46
|
"@aprilium/tripsm_visa": "^0.0.12",
|
|
41
47
|
"@aprilium/tripsm_visa-category": "^0.0.6",
|
|
42
48
|
"@aprilium/tripsm_visa-request": "^0.0.12",
|
|
43
49
|
"@aprilium/tripsm_visa-status": "^0.0.9",
|
|
44
50
|
"@aprilium/tripsm_visa-type": "^0.0.7",
|
|
45
|
-
"@aprilium/tripsm_pack": "^0.0.21",
|
|
46
|
-
"@aprilium/tripsm_passenger-pathology": "^0.0.6",
|
|
47
|
-
"@aprilium/tripsm_pack-options": "^0.0.7",
|
|
48
|
-
"@aprilium/tripsm_pack-hotel": "^0.0.8",
|
|
49
|
-
"@aprilium/tripsm_pack-transportation": "^0.0.3",
|
|
50
|
-
"@aprilium/tripsm_passengers-location": "^0.0.3",
|
|
51
51
|
"@aprilium/tripsm_reservation-request": "^0.0.1",
|
|
52
52
|
"@types/react": "^17.0.0",
|
|
53
53
|
"axios": "^0.21.1",
|
|
54
|
+
"dotenv": "^16.4.5",
|
|
54
55
|
"immer": "^9.0.15",
|
|
55
56
|
"immer-reducer": "^0.7.13",
|
|
56
57
|
"querystring": "^0.2.1",
|
|
58
|
+
"react-native-dotenv": "^3.4.11",
|
|
57
59
|
"redux": "^4.1.0",
|
|
58
60
|
"redux-persist": "^6.0.0",
|
|
59
61
|
"redux-saga": "^1.3.0",
|
|
@@ -62,4 +64,4 @@
|
|
|
62
64
|
},
|
|
63
65
|
"author": "Jomma",
|
|
64
66
|
"license": "ISC"
|
|
65
|
-
}
|
|
67
|
+
}
|