@odynn/awayz-hotels 0.6.25 → 0.6.26
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/dist/lib/main.d.ts +7 -6
- package/dist/main.js +19 -19
- package/package.json +1 -1
package/dist/lib/main.d.ts
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
|
-
import { IRoom, IRate } from './services/booking/BookingService.types';
|
|
2
1
|
import { IHotelDetails } from './components/HotelResult/HotelResult.types';
|
|
3
|
-
import {
|
|
4
|
-
import { checkNthNightFree } from './utilities/hotelUtils/freeNightUtils';
|
|
2
|
+
import { IRate, IRoom } from './services/booking/BookingService.types';
|
|
5
3
|
import { IAirlineProgram } from './services/wallet/WalletService.types';
|
|
4
|
+
import { checkNthNightFree } from './utilities/hotelUtils/freeNightUtils';
|
|
5
|
+
import { IPointsAsCash } from './utilities/pointsAsCashUtils';
|
|
6
6
|
export { ESearchType } from './services/hotel/HotelService.types';
|
|
7
|
+
export type { IStep, ITransferLink, ITransferPartner } from '@type-op/shared';
|
|
7
8
|
export * from './components';
|
|
8
|
-
export * from './hooks';
|
|
9
|
-
export * from './enums';
|
|
10
9
|
export * from './configs';
|
|
11
|
-
export
|
|
10
|
+
export * from './enums';
|
|
11
|
+
export * from './hooks';
|
|
12
|
+
export type { checkNthNightFree, IAirlineProgram, IHotelDetails, IPointsAsCash, IRate, IRoom };
|
package/dist/main.js
CHANGED
|
@@ -3,31 +3,31 @@ import { HotelResult as l } from "./components/HotelResult/HotelResult.js";
|
|
|
3
3
|
import { HotelResults as a } from "./components/HotelResults/HotelResults.js";
|
|
4
4
|
import { Legend as p } from "./components/Legend/Legend.js";
|
|
5
5
|
import { Ratings as m } from "./components/Banners/Ratings/Ratings.js";
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
6
|
+
import { defaultLocationSortOrder as u, defaultSimilarityThreshold as S, duffelTestHotelLocation as n } from "./configs/defaults.js";
|
|
7
|
+
import { EHotelSortOption as d, ESortingOrder as H } from "./enums/index.js";
|
|
8
|
+
import { useAvailabilityAlertNotifications as h } from "./hooks/useAvailabilityAlertNotifications/useAvailabilityAlertNotifications.js";
|
|
9
|
+
import { useAvailabilityAlerts as E } from "./hooks/useAvailabilityAlerts/useAvailabilityAlerts.js";
|
|
10
|
+
import { useHotelDetails as b } from "./hooks/useHotelDetails/useHotelDetails.js";
|
|
11
|
+
import { useHotelSearch as v } from "./hooks/useHotelSearch/useHotelSearch.js";
|
|
12
|
+
import { useHotelSort as R } from "./hooks/useHotelSort/useHotelSort.js";
|
|
13
|
+
import { useLocationSearch as D } from "./hooks/useLocationSearch/useLocationSearch.js";
|
|
14
14
|
import { EAvailabilityAlertStatus as j } from "./enums/EAvailabilityAlert.js";
|
|
15
15
|
export {
|
|
16
16
|
j as EAvailabilityAlertStatus,
|
|
17
|
-
|
|
17
|
+
d as EHotelSortOption,
|
|
18
18
|
e as ESearchType,
|
|
19
|
-
|
|
19
|
+
H as ESortingOrder,
|
|
20
20
|
l as HotelResult,
|
|
21
21
|
a as HotelResults,
|
|
22
22
|
p as Legend,
|
|
23
23
|
m as Ratings,
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
24
|
+
u as defaultLocationSortOrder,
|
|
25
|
+
S as defaultSimilarityThreshold,
|
|
26
|
+
n as duffelTestHotelLocation,
|
|
27
|
+
h as useAvailabilityAlertNotifications,
|
|
28
|
+
E as useAvailabilityAlerts,
|
|
29
|
+
b as useHotelDetails,
|
|
30
|
+
v as useHotelSearch,
|
|
31
|
+
R as useHotelSort,
|
|
32
|
+
D as useLocationSearch
|
|
33
33
|
};
|