@aprilium/tripsm_global-states 0.0.884 → 0.0.886

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 +7 -10
  2. package/package.json +3 -7
package/lib/index.d.ts CHANGED
@@ -100,9 +100,6 @@ import PassengerConversationSaga from "@aprilium/tripsm_passenger-conversation/l
100
100
  import ConversationOneToOneSaga from "@aprilium/tripsm_private-conversation/lib/packages/private-conversation/src/effects";
101
101
  import ReservationRequestUserSeenSaga from "@aprilium/tripsm_reservation-request-seen/lib/packages/reservation-request-seen/src/effects";
102
102
  import ReservationRequestPassengerLinkSaga from "@aprilium/tripsm_reservation-request-link/lib/packages/reservation-request-link/src/effects";
103
- import SupportConversationSaga from "@aprilium/tripsm_support-conversation/lib/packages/support-conversation/src/effects";
104
- import MessageSupportSaga from "@aprilium/tripsm_message-support/lib/packages/message-support/src/effects";
105
- import ConversationNotificationSaga from "@aprilium/tripsm_conversation-notification/lib/packages/conversation-notification/src/effects";
106
103
  export declare const sagaMiddleware: import("redux-saga").SagaMiddleware<object>;
107
104
  export declare const reducers: {
108
105
  passengersState: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_passenger/lib/packages/passenger/src/state").PassengerState>;
@@ -152,9 +149,9 @@ export declare const reducers: {
152
149
  reservationRequestUserSeen: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_reservation-request-seen/lib/packages/reservation-request-seen/src/state").ReservationRequestUserSeenState>;
153
150
  reservationRequestPassengerLink: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_reservation-request-link/lib/packages/reservation-request-link/src/state").ReservationRequestPassengerLinkState>;
154
151
  permission: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_permission/lib/packages/permission/src/state").PermissionState>;
155
- supportConversation: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_support-conversation/lib/packages/support-conversation/src/state").SupportConversationState>;
156
- messageSupport: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_message-support/lib/packages/message-support/src/state").MessageSupportState>;
157
- conversationNotification: import("immer-reducer").ImmerReducerFunction<typeof import("@aprilium/tripsm_conversation-notification/lib/packages/conversation-notification/src/state").ConversationNotificationState>;
152
+ supportConversation: any;
153
+ messageSupport: any;
154
+ conversationNotification: any;
158
155
  };
159
156
  export declare const initialSagas: {
160
157
  passenger: typeof passengerSaga;
@@ -204,9 +201,9 @@ export declare const initialSagas: {
204
201
  reservationRequestUserSeen: typeof ReservationRequestUserSeenSaga;
205
202
  reservationRequestPassengerLink: typeof ReservationRequestPassengerLinkSaga;
206
203
  permission: typeof PermissionSaga;
207
- supportConversation: typeof SupportConversationSaga;
208
- messageSupport: typeof MessageSupportSaga;
209
- conversationNotification: typeof ConversationNotificationSaga;
204
+ supportConversation: any;
205
+ messageSupport: any;
206
+ conversationNotification: any;
210
207
  };
211
208
  export type States = {
212
209
  passengersState: passengersState;
@@ -262,7 +259,7 @@ export type States = {
262
259
  };
263
260
  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" | "reservation-request-seen" | "private-message" | "private-conversation" | "reservation-request-link" | "permission" | "support-conversation" | "message-support" | "conversation-notification";
264
261
  export declare function setUrlConfig(coreApi: string, debugMode?: boolean): void;
265
- 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 MessageSaga | typeof MessageOneToOneSaga | typeof VisaRequestSaga | typeof IdentitySaga | typeof PassengerHotelSaga | typeof HotelSaga | typeof TicketSaga | typeof TripHotelSaga | typeof PassengerGroupSaga | typeof PassengerPackSaga | typeof TripFavorisSaga | typeof PackFavorisSaga | 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 hotelOptionsSaga | typeof PackHotelSaga | typeof PackTransportationSaga | typeof PassengerLocationSaga | typeof ReservationRequestSaga | typeof GuestExpoTokenSaga | typeof PassengerConversationSaga | typeof ConversationOneToOneSaga | typeof ReservationRequestUserSeenSaga | typeof ReservationRequestPassengerLinkSaga | typeof PermissionSaga | typeof SupportConversationSaga | typeof MessageSupportSaga | typeof ConversationNotificationSaga)[];
262
+ export declare const sagas: any[];
266
263
  export declare function initSagaMiddleware(extraSagas?: Array<Saga>, // local sagas from frontEnd Client
267
264
  waitForRehydrate?: boolean): void;
268
265
  declare function configStore(extraMiddleWares: any[] | undefined, // Adding other middlewares
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aprilium/tripsm_global-states",
3
3
 
4
- "version": "0.0.884",
4
+ "version": "0.0.886",
5
5
 
6
6
  "description": "global states",
7
7
  "main": "lib/index.js",
@@ -15,9 +15,9 @@
15
15
  },
16
16
  "dependencies": {
17
17
  "@aprilium/tripsm_common": "^0.0.15",
18
- "@aprilium/tripsm_constants": "^0.0.77",
18
+ "@aprilium/tripsm_constants": "^0.0.78",
19
19
  "@aprilium/tripsm_customer": "^0.0.5",
20
- "@aprilium/tripsm_guest": "^0.0.67",
20
+ "@aprilium/tripsm_guest": "^0.0.68",
21
21
  "@aprilium/tripsm_hotel": "^0.0.13",
22
22
  "@aprilium/tripsm_identity": "^0.0.31",
23
23
  "@aprilium/tripsm_identity-type": "^0.0.12",
@@ -65,10 +65,6 @@
65
65
  "@aprilium/tripsm_support-conversation": "^0.0.1",
66
66
  "@aprilium/tripsm_message-support": "^0.0.1",
67
67
  "@aprilium/tripsm_conversation-notification": "^0.0.2",
68
-
69
-
70
-
71
-
72
68
  "@types/react": "^17.0.0",
73
69
  "axios": "^0.21.1",
74
70
  "dotenv": "^16.4.5",