@aprilium/tripsm_global-states 0.0.122 → 0.0.124
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 +3 -3
- package/package.json +2 -2
package/lib/index.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ import { State as visaStatusState } from "@aprilium/tripsm_visa-status/lib/state
|
|
|
10
10
|
import { State as visaTypeState } from "@aprilium/tripsm_visa-type/lib/state";
|
|
11
11
|
import { State as passengerState } from "@aprilium/tripsm_passenger/lib/state";
|
|
12
12
|
import { State as constantState } from "@aprilium/tripsm_constants/lib/state";
|
|
13
|
-
import { State as
|
|
13
|
+
import { State as TripState } from "@aprilium/tripsm_trip/lib/state";
|
|
14
14
|
import { State as groupState } from "@aprilium/tripsm_trip-group/lib/state";
|
|
15
15
|
import { State as userState } from "@aprilium/tripsm_user/lib/state";
|
|
16
16
|
import { State as identityState } from "@aprilium/tripsm_identity/lib/state";
|
|
@@ -84,7 +84,7 @@ export type States = {
|
|
|
84
84
|
passenger: passengerState;
|
|
85
85
|
constants: constantState;
|
|
86
86
|
group: groupState;
|
|
87
|
-
trip:
|
|
87
|
+
trip: TripState;
|
|
88
88
|
user: userState;
|
|
89
89
|
visaType: visaTypeState;
|
|
90
90
|
visaStatus: visaStatusState;
|
|
@@ -100,7 +100,7 @@ export type States = {
|
|
|
100
100
|
luggage: luggageState;
|
|
101
101
|
identityType: identityTypeState;
|
|
102
102
|
};
|
|
103
|
-
export type StateName = "passenger" | "constants" | "
|
|
103
|
+
export type StateName = "passenger" | "constants" | "Trip" | "group" | "user" | "visaType" | "visaCategory" | "VisaStatus" | "visa" | "visaRequest" | "identity" | "PassengerHotel" | "hotel" | "ticket" | "PassengerGroup" | "luggage" | "IdentityType";
|
|
104
104
|
export declare function setUrlConfig(coreApi: string, debugMode?: boolean): void;
|
|
105
105
|
export declare const sagas: (typeof passengerSaga | typeof constantsSaga | typeof groupSaga | typeof userSaga | typeof visaTypeSaga | typeof visaCategorySaga | typeof VisaStatusSaga | typeof VisaSaga | typeof VisaRequestSaga | typeof IdentitySaga | typeof PassengerHotelSaga | typeof HotelSaga | typeof TicketSaga | typeof TripHotelSaga | typeof PassengerGroupSaga | typeof LuggageSaga | typeof IdentityTypeSaga | typeof TripSaga)[];
|
|
106
106
|
export declare function initSagaMiddleware(extraSagas?: Array<Saga>, // local sagas from frontEnd Client
|
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.124",
|
|
4
4
|
"description": "global states",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"build": "tsc"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@aprilium/tripsm_passenger": "^0.0.
|
|
15
|
+
"@aprilium/tripsm_passenger": "^0.0.54",
|
|
16
16
|
"@aprilium/tripsm_common": "^0.0.6",
|
|
17
17
|
"@aprilium/tripsm_constants": "^0.0.20",
|
|
18
18
|
"@aprilium/tripsm_trip": "^0.0.9",
|