@odynn/awayz-hotels 0.6.9 → 0.6.10
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/hooks/index.js +10 -8
- package/dist/lib/hooks/index.d.ts +4 -3
- package/dist/main.js +19 -17
- package/package.json +1 -1
package/dist/hooks/index.js
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { useAvailabilityAlertNotifications as t } from "./useAvailabilityAlertNotifications/useAvailabilityAlertNotifications.js";
|
|
2
|
+
import { useAvailabilityAlerts as i } from "./useAvailabilityAlerts/useAvailabilityAlerts.js";
|
|
3
3
|
import { useHotelDetails as a } from "./useHotelDetails/useHotelDetails.js";
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
4
|
+
import { useHotelSearch as f } from "./useHotelSearch/useHotelSearch.js";
|
|
5
|
+
import { useHotelSort as p } from "./useHotelSort/useHotelSort.js";
|
|
6
|
+
import { useLocationSearch as x } from "./useLocationSearch/useLocationSearch.js";
|
|
6
7
|
export {
|
|
7
|
-
|
|
8
|
+
t as useAvailabilityAlertNotifications,
|
|
9
|
+
i as useAvailabilityAlerts,
|
|
8
10
|
a as useHotelDetails,
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
11
|
+
f as useHotelSearch,
|
|
12
|
+
p as useHotelSort,
|
|
13
|
+
x as useLocationSearch
|
|
12
14
|
};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
export {
|
|
2
|
-
export {
|
|
1
|
+
export { useAvailabilityAlertNotifications } from './useAvailabilityAlertNotifications/useAvailabilityAlertNotifications';
|
|
2
|
+
export { useAvailabilityAlerts } from './useAvailabilityAlerts/useAvailabilityAlerts';
|
|
3
3
|
export { useHotelDetails } from './useHotelDetails/useHotelDetails';
|
|
4
|
+
export { useHotelSearch } from './useHotelSearch/useHotelSearch';
|
|
4
5
|
export { useHotelSort } from './useHotelSort/useHotelSort';
|
|
5
|
-
export {
|
|
6
|
+
export { useLocationSearch } from './useLocationSearch/useLocationSearch';
|
|
6
7
|
export * from './useHotelDetails/useHotelDetails.types';
|
package/dist/main.js
CHANGED
|
@@ -2,28 +2,30 @@ import { ESearchType as t } from "./services/hotel/HotelService.types.js";
|
|
|
2
2
|
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
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import { useHotelDetails as
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
5
|
+
import { useAvailabilityAlertNotifications as m } from "./hooks/useAvailabilityAlertNotifications/useAvailabilityAlertNotifications.js";
|
|
6
|
+
import { useAvailabilityAlerts as u } from "./hooks/useAvailabilityAlerts/useAvailabilityAlerts.js";
|
|
7
|
+
import { useHotelDetails as c } from "./hooks/useHotelDetails/useHotelDetails.js";
|
|
8
|
+
import { useHotelSearch as n } from "./hooks/useHotelSearch/useHotelSearch.js";
|
|
9
|
+
import { useHotelSort as A } from "./hooks/useHotelSort/useHotelSort.js";
|
|
10
|
+
import { useLocationSearch as y } from "./hooks/useLocationSearch/useLocationSearch.js";
|
|
11
|
+
import { EHotelSortOption as L, ESortingOrder as b } from "./enums/index.js";
|
|
12
|
+
import { defaultLocationSortOrder as O, defaultSimilarityThreshold as T, duffelTestHotelLocation as g } from "./configs/defaults.js";
|
|
13
|
+
import { EAvailabilityAlertStatus as D } from "./enums/EAvailabilityAlert.js";
|
|
13
14
|
export {
|
|
14
|
-
|
|
15
|
-
|
|
15
|
+
D as EAvailabilityAlertStatus,
|
|
16
|
+
L as EHotelSortOption,
|
|
16
17
|
t as ESearchType,
|
|
17
|
-
|
|
18
|
+
b as ESortingOrder,
|
|
18
19
|
l as HotelResult,
|
|
19
20
|
a as HotelResults,
|
|
20
21
|
p as Legend,
|
|
21
22
|
O as defaultLocationSortOrder,
|
|
22
23
|
T as defaultSimilarityThreshold,
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
24
|
+
g as duffelTestHotelLocation,
|
|
25
|
+
m as useAvailabilityAlertNotifications,
|
|
26
|
+
u as useAvailabilityAlerts,
|
|
27
|
+
c as useHotelDetails,
|
|
28
|
+
n as useHotelSearch,
|
|
29
|
+
A as useHotelSort,
|
|
30
|
+
y as useLocationSearch
|
|
29
31
|
};
|