@sabstravtech/obtservices 0.2.2412061515 → 0.2.2412101445

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.
@@ -277,6 +277,7 @@ export declare class FlightEnterpriseSearch<FQ_Q extends FlightQuoteFetcherType,
277
277
  gmtSearch(query: SearchFlightsV2QueryVariables): Observable<FlightAllQuoteResult>;
278
278
  getRecentSearchQuery(query: IFlightSearchArgs): SaveRecentSearchMutationVariables;
279
279
  startRecentSearch(recentSearch: RecentSearch): Promise<void>;
280
+ setHotelParams(startSearches?: boolean): void;
280
281
  updateMultiDestination(fav: any): Promise<void>;
281
282
  private makeDepartureTimeWindow;
282
283
  private makeArrivalTimeWindow;
@@ -238,4 +238,6 @@ export declare class HotelEnterpriseSearch<HQ_Q extends HotelQuoteFetcherType, H
238
238
  private checkAndUpdateFilter;
239
239
  processRoomFiltersToDisplay(hotel: HotelDetails): void;
240
240
  get fetching(): boolean;
241
+ checkForHotelReminder(hotelsearchRequested?: boolean): boolean;
242
+ checkDiffBetweenDates(outBoundDate: moment.Moment, inboundDate: moment.Moment, type: ServiceType, chosenSearchType?: string): boolean;
241
243
  }
@@ -163,4 +163,5 @@ export interface FlightEnterpriseSearchInterface extends BaseEnterpriseSearch<Fl
163
163
  repriceFlight(flight: FlightItineraryWithExtensions): Promise<FlightItineraryWithExtensions>;
164
164
  updateFlightSeatMap(user: string, flightId: string, flightHash: string, seats: any): Observable<BasketDetails>;
165
165
  showMixedCabin(flights: FlightJourney[]): boolean;
166
+ setHotelParams(): void;
166
167
  }
@@ -212,4 +212,5 @@ export interface HotelEnterpriseSearchInterface extends BaseEnterpriseSearch<Hot
212
212
  hasChain(hotel: HotelDetails): boolean;
213
213
  fetching: boolean;
214
214
  backToType: ServiceType;
215
+ checkForHotelReminder(hotelsearchRequested?: boolean): boolean;
215
216
  }
@@ -427,7 +427,7 @@ export declare class BaseEnterpriseSearchService<SP_Q extends SearchPostcodesQuo
427
427
  getFlightFareRules(flight: FlightJourney, sourceId: number): Observable<GetFlightFareRulesResultArray>;
428
428
  getFlightBrandedFares(outboundFlights: graphqlTypes.InputFlightJourney[], inboundFlights: graphqlTypes.InputFlightJourney[], specificFareInfo: graphqlTypes.InputSpecificFareInfo[], serviceId: number): Observable<GetFlightBrandedFaresResultArray>;
429
429
  getRailLiveDepartures(station: string, dateTime?: string): Observable<SearchRailLiveDeparturesResult>;
430
- getFlightSeatMap(flights: graphqlTypes.InputFlightJourney[], supplier: string, loyaltyCode?: string, userId?: string, isGuest?: boolean, guestDob?: string): Observable<FlightSeatMapResult>;
430
+ getFlightSeatMap(flights: graphqlTypes.InputFlightJourney[], supplier: string, loyaltyCode?: string, userId?: string, isGuest?: boolean, dob?: string): Observable<FlightSeatMapResult>;
431
431
  saveFavouriteSearch(search: graphqlTypes.SaveFavouriteSearchMutationVariables): Observable<SaveFavouriteSearchResult>;
432
432
  getConfermaRoomImages(hotelId: string): Observable<string[]>;
433
433
  emailBasket(id: string, emails?: string[]): Observable<graphqlTypes.Basket>;