@aprilium/tripsm_global-states 0.0.238 → 0.0.239

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.
Files changed (2) hide show
  1. package/lib/index.d.ts +5 -5
  2. package/package.json +4 -4
package/lib/index.d.ts CHANGED
@@ -24,9 +24,9 @@ import { State as relationState } from "@aprilium/tripsm_relation/lib/state";
24
24
  import { State as tripState } from "@aprilium/tripsm_trip/lib/state";
25
25
  import { State as passengersState } from "@aprilium/tripsm_passenger/lib/state";
26
26
  import { State as paymentState } from "@aprilium/tripsm_payment/lib/state";
27
- import { State as ReservationsState } from "@aprilium/tripsm_reservation/lib/state";
27
+ import { State as reservationState } from "@aprilium/tripsm_reservation/lib/state";
28
28
  import { State as paymentHistorysState } from "@aprilium/tripsm_payment-history/lib/state";
29
- import { State as customersState } from "@aprilium/tripsm_customer/lib/state";
29
+ import { State as customerState } from "@aprilium/tripsm_customer/lib/state";
30
30
  import passengerSaga from "@aprilium/tripsm_passenger/lib/effects";
31
31
  import visaTypeSaga from "@aprilium/tripsm_visa-type/lib/effects";
32
32
  import constantsSaga from "@aprilium/tripsm_constants/lib/effects";
@@ -127,10 +127,10 @@ export type States = {
127
127
  relation: relationState;
128
128
  payment: paymentState;
129
129
  paymentHistory: paymentHistorysState;
130
- customer: customersState;
131
- reservation: ReservationsState;
130
+ customer: customerState;
131
+ reservation: reservationState;
132
132
  };
133
- export type StateName = "passengersState" | "constants" | "group" | "user" | "visaType" | "visaCategory" | "VisaStatus" | "visa" | "visaRequest" | "identity" | "passengerHotel" | "tripHotel" | "hotel" | "ticket" | "passenger-group" | "luggage" | "luggage-tracking" | "identity-type" | "relation" | "trip" | "passengers" | "payment-state" | "PaymentHistorysState" | "customersState" | "ReservationsState";
133
+ export type StateName = "passengersState" | "constants" | "group" | "user" | "visaType" | "visaCategory" | "VisaStatus" | "visa" | "visaRequest" | "identity" | "passengerHotel" | "tripHotel" | "hotel" | "ticket" | "passenger-group" | "luggage" | "luggage-tracking" | "identity-type" | "relation" | "trip" | "passengers" | "payment-state" | "payment-history" | "customer" | "reservation";
134
134
  export declare function setUrlConfig(coreApi: string, debugMode?: boolean): void;
135
135
  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 LuggageTrackingSaga | typeof IdentityTypeSaga | typeof RelationSaga | typeof TripSaga | typeof PaymentSaga | typeof ReservationSaga | typeof PaymentHistorySaga | typeof CustomerSaga)[];
136
136
  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.238",
3
+ "version": "0.0.239",
4
4
  "description": "global states",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -34,9 +34,9 @@
34
34
  "@aprilium/tripsm_visa-request": "^0.0.12",
35
35
  "@aprilium/tripsm_relation": "^0.0.2",
36
36
  "@aprilium/tripsm_payment": "^0.0.3",
37
- "@aprilium/tripsm_reservation": "^0.0.1",
38
- "@aprilium/tripsm_payment-history":"^0.0.1",
39
- "@aprilium/tripsm_customer": "^0.0.1",
37
+ "@aprilium/tripsm_reservation": "^0.0.2",
38
+ "@aprilium/tripsm_payment-history":"^0.0.2",
39
+ "@aprilium/tripsm_customer": "^0.0.2",
40
40
 
41
41
 
42
42