@roomstay/core 0.1.67-2 → 0.1.67-3
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/node.js.LICENSE.txt +7 -0
- package/dist/node.js.map +1 -0
- package/dist/types/Booking/IBookingCreateErrorResponse.d.ts +11 -0
- package/dist/types/Booking/IBookingExtraFields.type.d.ts +5 -0
- package/dist/types/Booking/IBookingStatus.type.d.ts +5 -0
- package/dist/types/Booking/IPrice.type.d.ts +7 -0
- package/dist/types/Booking/PlaceBooking.types.d.ts +2 -0
- package/dist/types/components/DateRangePicker/DateRangePicker.d.ts +15 -0
- package/dist/types/components/DateRangePicker/DateRangePicker.type.d.ts +8 -0
- package/dist/types/components/DateRangePicker/DateRangePickerContext.d.ts +16 -0
- package/dist/types/components/DateRangePicker/DateRangePickerDay.d.ts +22 -0
- package/dist/types/components/DateRangePicker/DateRangePickerDays.d.ts +7 -0
- package/dist/types/components/DateRangePicker/DateRangePickerMonth.d.ts +8 -0
- package/dist/types/components/DateRangePicker/FloatingDateRangePicker.d.ts +25 -0
- package/dist/types/components/DateRangePicker/index.d.ts +3 -0
- package/dist/types/components/Icon/Icon.d.ts +88 -0
- package/dist/types/components/Icon/index.d.ts +1 -0
- package/dist/types/components/Overlay/Overlay.d.ts +20 -0
- package/dist/types/components/Overlay/index.d.ts +1 -0
- package/dist/types/components/Portal/Portal.d.ts +7 -0
- package/dist/types/components/Portal/index.d.ts +1 -0
- package/dist/types/components/Text/Text.d.ts +15 -0
- package/dist/types/components/Text/Text.type.d.ts +14 -0
- package/dist/types/components/Text/index.d.ts +2 -0
- package/dist/types/components/animations/Fade.d.ts +13 -0
- package/dist/types/components/animations/index.d.ts +1 -0
- package/dist/types/components/index.d.ts +6 -0
- package/dist/types/hooks/BodyClickHook.d.ts +8 -0
- package/dist/types/hooks/index.d.ts +1 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/index.node.d.ts +2 -0
- package/dist/types/index.web.d.ts +4 -0
- package/dist/types/models/Client/Hotel/WeekdayStartsOn.types.d.ts +4 -0
- package/dist/types/models/Client/Hotel/index.d.ts +1 -0
- package/dist/types/models/Client/index.d.ts +1 -0
- package/dist/types/models/index.d.ts +1 -0
- package/dist/types/stories/DateRangePicker.stories.d.ts +8 -0
- package/dist/types/stories/FloatingDateRangePicker.stories.d.ts +5 -0
- package/dist/types/types/Booking/IBookingCreateErrorResponse.d.ts +11 -0
- package/dist/types/types/Booking/IBookingPayment.type.d.ts +42 -0
- package/dist/types/types/Booking/IBookingQuote.type.d.ts +29 -0
- package/dist/types/types/Booking/IBookingStatus.type.d.ts +5 -0
- package/dist/types/types/Booking/IPrice.type.d.ts +7 -0
- package/dist/types/types/Company/ECompanyProvider.enum.d.ts +6 -0
- package/dist/types/types/Company/IAdminCompany.type.d.ts +31 -0
- package/dist/types/types/Events/IRoomstayEvent.type.d.ts +48 -0
- package/dist/types/types/Hotel/EHotelPriceModel.enum.d.ts +5 -0
- package/dist/types/types/Hotel/EHotelWeekdayStartsOn.enum.d.ts +4 -0
- package/dist/types/types/Hotel/IAuxiliaryFilter.type.d.ts +20 -0
- package/dist/types/types/Hotel/IHotelColorScheme.type.d.ts +11 -0
- package/dist/types/types/Hotel/IHotelOverrides.type.d.ts +18 -0
- package/dist/types/types/Hotel/IHotelReplica.type.d.ts +53 -0
- package/dist/types/types/Hotel/IHotelService.type.d.ts +6 -0
- package/dist/types/types/Image/IRoomstayImage.type.d.ts +8 -0
- package/dist/types/types/Member/IRoomstayCognitoMember.type.d.ts +4 -0
- package/dist/types/types/Member/IRoomstayMember.type.d.ts +17 -0
- package/dist/types/types/Member/IRoomstayMemberBooking.type.d.ts +28 -0
- package/dist/types/types/Member/IRoomstayMemberBookingAddress.type.d.ts +9 -0
- package/dist/types/types/Member/IRoomstayMemberBookingItem.type.d.ts +25 -0
- package/dist/types/types/Member/IRoomstayMemberBookingProfile.type.d.ts +11 -0
- package/dist/types/types/Member/IRoomstayMemberCards.type.d.ts +12 -0
- package/dist/types/types/Member/ISession.type.d.ts +4 -0
- package/dist/types/types/Policies/EGuaranteePolicy.enum.d.ts +5 -0
- package/dist/types/types/RMS/ERMSDiscountType.enum.d.ts +5 -0
- package/dist/types/types/RMS/IRMSPropertyDiscount.type.d.ts +28 -0
- package/dist/types/types/RMS/IRMSRequirement.type.d.ts +19 -0
- package/dist/types/types/Room/IRoomGroup.type.d.ts +11 -0
- package/dist/types/types/index.d.ts +56 -0
- package/dist/types/utils/bookingTotal.d.ts +7 -0
- package/dist/types/utils/calendarHelper.d.ts +16 -0
- package/dist/types/utils/color.d.ts +20 -0
- package/dist/types/utils/index.node.d.ts +2 -0
- package/dist/types/utils/index.web.d.ts +4 -0
- package/dist/types/utils/roomstayImageResize.d.ts +14 -0
- package/dist/types/utils/uppercaseString.d.ts +1 -0
- package/dist/web.js.LICENSE.txt +7 -0
- package/dist/web.js.map +1 -0
- package/package.json +1 -1
- package/dist/types/Addon/Addon.enum.d.ts +0 -14
- package/dist/types/Addon/Addon.type.d.ts +0 -24
package/dist/node.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"node.js","sources":["../src/types/Booking/IBookingStatus.type.ts","../src/types/Booking/IBookingPayment.type.ts","../src/types/Company/ECompanyProvider.enum.ts","../src/types/Hotel/IHotelOverrides.type.ts","../src/types/Hotel/EHotelPriceModel.enum.ts","../src/types/Hotel/EHotelWeekdayStartsOn.enum.ts","../src/types/RMS/ERMSDiscountType.enum.ts","../src/types/Image/IRoomstayImage.type.ts","../src/types/Policies/EGuaranteePolicy.enum.ts","../src/utils/bookingTotal.ts","../src/utils/uppercaseString.ts"],"sourcesContent":[null,null,null,null,null,null,null,null,null,null,null],"names":["IBookingStatus","EBookingPaymentMethod","EHotelCardProcessor","EPlanpayBookingStatus","ECompanyProvider","EDistanceUnitType","EHotelPriceModel","EHotelWeekdayStartsOn","ERMSDiscountType","ERoomstayImageSize","EGuarantyPolicyPrepaymentType","reservation","total","itinerary","Object","values","item","nightsArray","keys","nights","night","toUppercase","toUpperCase"],"mappings":"aAAA,IAAYA,ECAAC,EAUAC,EAOAC,ECjBAC,ECAAC,ECAAC,ECAAC,ECAAC,ECAAC,ECAAC,ERAAV,QAIXA,oBAAA,GAJWA,EAAAA,QAAcA,iBAAdA,uBAIX,CAAA,IAHC,QAAA,UACAA,EAAA,UAAA,YACAA,EAAA,UAAA,YCHUC,QAKXA,2BAAA,GALWA,EAAAA,gCAAAA,QAAAA,sBAKX,CAAA,IAJG,KAAA,OACAA,EAAA,UAAA,YACAA,EAAA,QAAA,UACAA,EAAA,MAAA,QAMQC,QAKXA,yBAAA,GALWA,EAAAA,8BAAAA,QAAAA,oBAKX,CAAA,IAJG,YAAA,cACAA,EAAA,MAAA,QACAA,EAAA,KAAA,OACAA,EAAA,OAAA,SAGQC,QAOXA,2BAAA,GAPWA,EAAAA,QAAqBA,wBAArBA,8BAOX,CAAA,IANC,QAAA,UACAA,EAAA,OAAA,SACAA,EAAA,SAAA,WACAA,EAAA,UAAA,YACAA,EAAA,SAAA,WACAA,EAAA,SAAA,WCvBUC,QAKXA,sBAAA,GALWA,EAAAA,QAAgBA,mBAAhBA,yBAKX,CAAA,IAJG,OAAA,SACAA,EAAA,SAAA,WACAA,EAAA,IAAA,MACAA,EAAA,WAAA,aCJQC,QAGXA,uBAAA,GAHWA,EAAAA,QAAiBA,oBAAjBA,0BAGX,CAAA,IAFC,OAAA,SACAA,EAAA,SAAA,WCFUC,QAIXA,sBAAA,GAJWA,EAAAA,QAAgBA,mBAAhBA,yBAIX,CAAA,IAHC,UAAA,YACAA,EAAA,OAAA,SACAA,EAAA,aAAA,eCHUC,QAGXA,2BAAA,GAHWA,EAAAA,QAAqBA,wBAArBA,8BAGX,CAAA,IAFC,OAAA,SACAA,EAAA,OAAA,SCFUC,QAIXA,sBAAA,GAJWA,EAAAA,QAAgBA,mBAAhBA,yBAIX,CAAA,IAHG,WAAA,aACAA,EAAA,OAAA,SACAA,EAAA,KAAA,OCHQC,QAOXA,wBAAA,GAPWA,EAAAA,QAAkBA,qBAAlBA,2BAOX,CAAA,IANGA,EAAA,KAAA,KAAA,OACAA,EAAAA,EAAA,KAAA,KAAA,OACAA,EAAAA,EAAA,MAAA,KAAA,QACAA,EAAAA,EAAA,OAAA,KAAA,SACAA,EAAAA,EAAA,MAAA,MAAA,QACAA,EAAAA,EAAA,WAAA,MAAA,aCNQC,QAIXA,mCAAA,GAJWA,EAAAA,QAA6BA,gCAA7BA,sCAIX,CAAA,IAHG,YAAA,QACAA,EAAA,WAAA,aACAA,EAAA,OAAA,gDCKFC,IAEA,IAAIC,EAAQ,EAEZ,MAAMC,EAAYC,OAAOC,OAAOJ,EAAYE,WAE5C,IAAK,MAAMG,KAAQH,EAAW,CAC5B,MAAMI,EAAcH,OAAOI,KAAKF,EAAKG,QAErC,IAAK,MAAMC,KAASH,EAClBL,GAASI,EAAKG,OAAOC,GAAOR,KAE/B,CAED,OAAOA,CAAK,0BCtBR,SAA0BS,GAC9B,OAAOA,EAAYC,aACrB"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This is the response body that comes down if a booking fails anywhere in the booking flow.
|
|
3
|
+
*
|
|
4
|
+
* Object will contain a public message only, with partial reservation data to be able to attempt to "resume" the booking
|
|
5
|
+
*/
|
|
6
|
+
export type IBookingCreateErrorResponse = {
|
|
7
|
+
canRetryPayment: boolean;
|
|
8
|
+
isPaymentTaken: boolean;
|
|
9
|
+
publicMessage: string;
|
|
10
|
+
roomstayId: string;
|
|
11
|
+
};
|
|
@@ -2,6 +2,7 @@ import { IRoomstayMemberJWTData } from '../Member/IRoomstayMemberJWTData.type';
|
|
|
2
2
|
import { IBookingPayment } from './IBookingPayment.type';
|
|
3
3
|
import { ItineraryResponse } from './Itinerary.types';
|
|
4
4
|
import { ICommonQueryParameters } from './ICommonQueryParameters.type';
|
|
5
|
+
import { IBookingExtraFields } from './IBookingExtraFields.type';
|
|
5
6
|
export type IPlaceBookingRequest = {
|
|
6
7
|
rooms: IPlaceBookingRoomsDTO[];
|
|
7
8
|
services: IPlaceBookingServicesDTO[];
|
|
@@ -18,6 +19,7 @@ export type IPlaceBookingRequest = {
|
|
|
18
19
|
} & IPlaceBookingGCLIDAndUTM;
|
|
19
20
|
payment: IBookingPayment;
|
|
20
21
|
frontendMember?: IRoomstayMemberJWTData;
|
|
22
|
+
extraFields?: IBookingExtraFields;
|
|
21
23
|
} & ICommonQueryParameters;
|
|
22
24
|
export type IRepeatPaymentRequest = IPlaceBookingRequest & {
|
|
23
25
|
roomstayId: string;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import dayjs from "dayjs";
|
|
3
|
+
import { EDateRangePickerTheme } from "./DateRangePicker.type";
|
|
4
|
+
export interface DateRangePickerProps {
|
|
5
|
+
selectedStartDate?: dayjs.Dayjs | null;
|
|
6
|
+
selectedEndDate?: dayjs.Dayjs | null;
|
|
7
|
+
showArrows?: boolean;
|
|
8
|
+
small?: boolean;
|
|
9
|
+
onStartDateChanged?: (date: dayjs.Dayjs) => void;
|
|
10
|
+
onEndDateChanged?: (date: dayjs.Dayjs) => void;
|
|
11
|
+
fixedStartDate?: boolean;
|
|
12
|
+
showMultipleMonths?: boolean;
|
|
13
|
+
theme?: EDateRangePickerTheme;
|
|
14
|
+
}
|
|
15
|
+
export declare function DateRangePicker(props: DateRangePickerProps): React.JSX.Element;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { Dayjs } from "dayjs";
|
|
3
|
+
import { EDateRangePickerTheme } from "./DateRangePicker.type";
|
|
4
|
+
export interface DateRangePickerContextProps {
|
|
5
|
+
todayInUnix: number;
|
|
6
|
+
today: Dayjs | null;
|
|
7
|
+
startDate: Dayjs | null;
|
|
8
|
+
endDate: Dayjs | null;
|
|
9
|
+
hoveredMonth: Dayjs | null;
|
|
10
|
+
currentMonth: Dayjs | null;
|
|
11
|
+
onHoverOver: (date: Dayjs) => void;
|
|
12
|
+
onDayClicked: (date: Dayjs) => void;
|
|
13
|
+
fixedStartDate: boolean;
|
|
14
|
+
theme?: EDateRangePickerTheme;
|
|
15
|
+
}
|
|
16
|
+
export declare const DateRangePickerContext: React.Context<DateRangePickerContextProps>;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { FC } from "react";
|
|
2
|
+
import dayjs from "dayjs";
|
|
3
|
+
import { Color } from "@utils/color";
|
|
4
|
+
interface DatePickerDayProps {
|
|
5
|
+
text: any;
|
|
6
|
+
day?: dayjs.Dayjs | any;
|
|
7
|
+
unix: number;
|
|
8
|
+
price?: Promise<number>;
|
|
9
|
+
statuses?: DatePickerDayStatus[];
|
|
10
|
+
selectable?: boolean;
|
|
11
|
+
onClick?: (day: string) => void;
|
|
12
|
+
onHover?: (day: string, status: boolean) => void;
|
|
13
|
+
color?: Color;
|
|
14
|
+
}
|
|
15
|
+
export declare enum DatePickerDayStatus {
|
|
16
|
+
Inactive = 0,
|
|
17
|
+
Selecting = "--selecting",
|
|
18
|
+
Loading = "--loading",
|
|
19
|
+
Selected = "--selected"
|
|
20
|
+
}
|
|
21
|
+
declare const DateRangePickerDay: FC<DatePickerDayProps>;
|
|
22
|
+
export { DateRangePickerDay };
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import dayjs from "dayjs";
|
|
3
|
+
import { Placement } from "@popperjs/core";
|
|
4
|
+
import { DateRangePickerProps } from "./index";
|
|
5
|
+
export interface FloatingDateRangePickerProps extends Omit<DateRangePickerProps, "selectedStartDate" | "selectedEndDate" | "onStartDateChanged" | "onEndDateChanged"> {
|
|
6
|
+
children?: React.ReactNode;
|
|
7
|
+
startDate?: dayjs.Dayjs | null;
|
|
8
|
+
endDate?: dayjs.Dayjs | null;
|
|
9
|
+
overlayOffset?: [number, number];
|
|
10
|
+
fixedStartDate?: boolean;
|
|
11
|
+
container?: HTMLElement;
|
|
12
|
+
selectedDateChanged?: (startDate: dayjs.Dayjs, endDate: dayjs.Dayjs) => void;
|
|
13
|
+
className?: string;
|
|
14
|
+
overlay?: {
|
|
15
|
+
placement?: Placement;
|
|
16
|
+
fallbackPlacements?: Placement;
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
export interface FloatingDateRangePickerHandle {
|
|
20
|
+
closePicker: () => void;
|
|
21
|
+
openPicker: () => void;
|
|
22
|
+
toggle: () => void;
|
|
23
|
+
}
|
|
24
|
+
declare const FloatingDateRangePicker: React.ForwardRefExoticComponent<FloatingDateRangePickerProps & React.RefAttributes<FloatingDateRangePickerHandle>>;
|
|
25
|
+
export { FloatingDateRangePicker };
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
import { Color } from "@utils/color";
|
|
2
|
+
import React from "react";
|
|
3
|
+
export declare enum IconType {
|
|
4
|
+
Email = "Email",
|
|
5
|
+
Degrees = "Degrees",
|
|
6
|
+
Hotel = "Hotel",
|
|
7
|
+
Hotel2 = "Hotel-2",
|
|
8
|
+
Map = "Map",
|
|
9
|
+
Info = "Info",
|
|
10
|
+
Deal = "Deal",
|
|
11
|
+
Money = "Money",
|
|
12
|
+
Lock = "Lock",
|
|
13
|
+
Check = "Check",
|
|
14
|
+
CheckCircled = "Check-Circled",
|
|
15
|
+
Bed = "Bed",
|
|
16
|
+
ApplePay = "Apple-Pay",
|
|
17
|
+
PayPal = "PayPal",
|
|
18
|
+
Person = "Person",
|
|
19
|
+
ChildFriendly = "Child-Friendly",
|
|
20
|
+
Fridge = "Fridge",
|
|
21
|
+
Smoking = "Smoking",
|
|
22
|
+
Gym = "Gym",
|
|
23
|
+
Bar = "Bar",
|
|
24
|
+
Laundry = "Laundry",
|
|
25
|
+
Breakfast = "Breakfast",
|
|
26
|
+
Snacks = "Snacks",
|
|
27
|
+
Phone = "Phone",
|
|
28
|
+
ViewMonth = "View-Month",
|
|
29
|
+
Ovolo = "Ovolo",
|
|
30
|
+
ViewWeek = "View-Week",
|
|
31
|
+
AirCon = "Air-Con",
|
|
32
|
+
WiFi = "Wifi",
|
|
33
|
+
Time = "Time",
|
|
34
|
+
People = "People",
|
|
35
|
+
Calendar = "Calendar",
|
|
36
|
+
CreditCard = "Credit-Card",
|
|
37
|
+
Spinner = "Spinner",
|
|
38
|
+
Fullscreen = "Fullscreen",
|
|
39
|
+
Star = "Star",
|
|
40
|
+
ArrowRight = "Arrow-Right",
|
|
41
|
+
ArrowLeft = "Arrow-Left",
|
|
42
|
+
ArrowUp = "Arrow-Up",
|
|
43
|
+
ArrowDown = "Arrow-Down",
|
|
44
|
+
ArrowLeft2 = "Arrow-2-Left",
|
|
45
|
+
ArrowUp2 = "Arrow-2-Up",
|
|
46
|
+
ArrowRight2 = "Arrow-2-Right",
|
|
47
|
+
ArrowDown2 = "Arrow-2-Down",
|
|
48
|
+
Close = "Close",
|
|
49
|
+
Remove = "Remove",
|
|
50
|
+
Add = "Add",
|
|
51
|
+
Dropdown = "Dropdown",
|
|
52
|
+
Train = "Train",
|
|
53
|
+
Taxi = "Taxi",
|
|
54
|
+
Share = "Share",
|
|
55
|
+
Print = "Print",
|
|
56
|
+
LogOut = "Log-Out",
|
|
57
|
+
Error = "Error",
|
|
58
|
+
Edit = "Edit",
|
|
59
|
+
Bus = "Bus",
|
|
60
|
+
Airplane = "Airplane",
|
|
61
|
+
Menu = "Menu",
|
|
62
|
+
LootBag = "loot-bag",
|
|
63
|
+
LateCheckout = "Late-Checkout",
|
|
64
|
+
RoomSize = "Room-Size",
|
|
65
|
+
RoomUpgrade = "Room-Upgrade",
|
|
66
|
+
Champagne = "Champagne",
|
|
67
|
+
Eye = "Eye",
|
|
68
|
+
EyeBlocked = "EyeBlocked",
|
|
69
|
+
Delete = "Delete",
|
|
70
|
+
ArrowLeft3 = "Arrow-3-Left",
|
|
71
|
+
ArrowUp3 = "Arrow-3-Up",
|
|
72
|
+
ArrowRight3 = "Arrow-3-Right",
|
|
73
|
+
ArrowDown3 = "Arrow-3-Down"
|
|
74
|
+
}
|
|
75
|
+
export interface IconProps {
|
|
76
|
+
icon: IconType;
|
|
77
|
+
size?: string;
|
|
78
|
+
name?: string;
|
|
79
|
+
color?: Color;
|
|
80
|
+
backgroundColor?: Color;
|
|
81
|
+
noPadding?: boolean;
|
|
82
|
+
onClick?: () => void;
|
|
83
|
+
borderRadius?: "oval" | "round";
|
|
84
|
+
className?: string;
|
|
85
|
+
}
|
|
86
|
+
export declare function IconDropdown(): React.JSX.Element;
|
|
87
|
+
export declare function IconDropdownFilled(): React.JSX.Element;
|
|
88
|
+
export declare function Icon(props: IconProps): React.JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./Icon";
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import React, { LegacyRef, ReactNode } from "react";
|
|
2
|
+
import { Placement, PositioningStrategy } from "@popperjs/core";
|
|
3
|
+
export type OverlayProps = {
|
|
4
|
+
children: ReactNode | ReactNode[];
|
|
5
|
+
open: boolean;
|
|
6
|
+
usePortal?: boolean;
|
|
7
|
+
container?: HTMLElement | null;
|
|
8
|
+
followElement?: Element | null;
|
|
9
|
+
className?: string;
|
|
10
|
+
containerClassName?: string;
|
|
11
|
+
hideStyles?: boolean;
|
|
12
|
+
placement?: Placement;
|
|
13
|
+
fallbackPlacements?: Placement;
|
|
14
|
+
strategy?: PositioningStrategy;
|
|
15
|
+
onClose?: (e: Event) => void;
|
|
16
|
+
offset?: [number, number];
|
|
17
|
+
overlayRef?: LegacyRef<HTMLDivElement>;
|
|
18
|
+
preventScroll?: boolean;
|
|
19
|
+
};
|
|
20
|
+
export declare const Overlay: (props: OverlayProps) => React.JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./Overlay";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./Portal";
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import React, { FC } from "react";
|
|
2
|
+
import { TextAlign, TextTransform, TextType } from "./Text.type";
|
|
3
|
+
import { Color } from "@utils/color";
|
|
4
|
+
export type TextProps = React.JSX.IntrinsicElements["p"] & {
|
|
5
|
+
type?: TextType;
|
|
6
|
+
color?: Color;
|
|
7
|
+
align?: TextAlign;
|
|
8
|
+
transforms?: TextTransform[];
|
|
9
|
+
inline?: boolean;
|
|
10
|
+
bold?: boolean;
|
|
11
|
+
preformatted?: boolean;
|
|
12
|
+
lineThrough?: boolean;
|
|
13
|
+
};
|
|
14
|
+
declare const Text: FC<TextProps>;
|
|
15
|
+
export { Text };
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export declare enum TextType {
|
|
2
|
+
Body = "body",
|
|
3
|
+
Small = "small",
|
|
4
|
+
Caption = "caption",
|
|
5
|
+
Label = "label"
|
|
6
|
+
}
|
|
7
|
+
export declare enum TextTransform {
|
|
8
|
+
Uppercase = "u-uppercase"
|
|
9
|
+
}
|
|
10
|
+
export declare enum TextAlign {
|
|
11
|
+
Center = "u-align-center",
|
|
12
|
+
Right = "u-align-right",
|
|
13
|
+
Left = "u-align-left"
|
|
14
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
interface FadeProps {
|
|
3
|
+
children?: React.ReactElement;
|
|
4
|
+
open: boolean;
|
|
5
|
+
onEnter?: () => void;
|
|
6
|
+
onExited?: () => void;
|
|
7
|
+
/**
|
|
8
|
+
* Callback on complete animation of exit action
|
|
9
|
+
*/
|
|
10
|
+
onExitCompletely?: () => void;
|
|
11
|
+
}
|
|
12
|
+
export declare const FadeAnimation: React.ForwardRefExoticComponent<FadeProps & React.RefAttributes<HTMLDivElement>>;
|
|
13
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./Fade";
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export declare const useBodyClick: () => {
|
|
2
|
+
onBodyClick: (event: EventListener, target?: HTMLElement | Document | null) => {
|
|
3
|
+
remove: () => void;
|
|
4
|
+
};
|
|
5
|
+
onBodyClickExcept: (event: EventListener, ignore: HTMLElement, target?: HTMLElement | Document | null) => {
|
|
6
|
+
remove: () => void;
|
|
7
|
+
};
|
|
8
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./BodyClickHook";
|
package/dist/types/index.d.ts
CHANGED
|
@@ -15,6 +15,7 @@ export * from './Booking/ICommonQueryParameters.type';
|
|
|
15
15
|
export * from './Booking/Itinerary.types';
|
|
16
16
|
export * from './Booking/PencilReservation.types';
|
|
17
17
|
export * from './Booking/PlaceBooking.types';
|
|
18
|
+
export * from './Booking/IBookingExtraFields.type';
|
|
18
19
|
/**
|
|
19
20
|
* Company
|
|
20
21
|
*/
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./WeekdayStartsOn.types";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./Hotel/index";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./Client/index";
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { DateRangePickerProps } from "@components/DateRangePicker/DateRangePicker";
|
|
3
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, DateRangePickerProps>;
|
|
4
|
+
export default _default;
|
|
5
|
+
export declare const Primary: (args: DateRangePickerProps) => React.JSX.Element;
|
|
6
|
+
export declare const StartDatePopulated: (args: DateRangePickerProps) => React.JSX.Element;
|
|
7
|
+
export declare const MultipleMonths: (args: DateRangePickerProps) => React.JSX.Element;
|
|
8
|
+
export declare const ThemeSpecific: (args: DateRangePickerProps) => React.JSX.Element;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0fc72a6d").R, import("@components").FloatingDateRangePickerProps & React.RefAttributes<import("@components").FloatingDateRangePickerHandle>>;
|
|
3
|
+
export default _default;
|
|
4
|
+
export declare const Primary: () => React.JSX.Element;
|
|
5
|
+
export declare const ThemeSpecific: () => React.JSX.Element;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This is the response body that comes down if a booking fails anywhere in the booking flow.
|
|
3
|
+
*
|
|
4
|
+
* Object will contain a public message only, with partial reservation data to be able to attempt to "resume" the booking
|
|
5
|
+
*/
|
|
6
|
+
export type IBookingCreateErrorResponse = {
|
|
7
|
+
canRetryPayment: boolean;
|
|
8
|
+
isPaymentTaken: boolean;
|
|
9
|
+
publicMessage: string;
|
|
10
|
+
roomstayId: string;
|
|
11
|
+
};
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
export declare enum EBookingPaymentMethod {
|
|
2
|
+
Card = "Card",
|
|
3
|
+
SavedCard = "SavedCard",
|
|
4
|
+
Planpay = "Planpay",
|
|
5
|
+
Adyen = "Adyen"
|
|
6
|
+
}
|
|
7
|
+
/**
|
|
8
|
+
* This enum decides what the function of the default payment input is (additionals like Planpay, or perhaps crypto in the future are other options, this only governs the default card input)
|
|
9
|
+
*/
|
|
10
|
+
export declare enum EHotelCardProcessor {
|
|
11
|
+
Passthrough = "Passthrough",
|
|
12
|
+
Adyen = "Adyen",
|
|
13
|
+
Till = "Till",
|
|
14
|
+
RMSPay = "RMSPay"
|
|
15
|
+
}
|
|
16
|
+
export declare enum EPlanpayBookingStatus {
|
|
17
|
+
Unknown = "unknown",// incase plan.deposit.status is unavailable
|
|
18
|
+
Unpaid = "unpaid",
|
|
19
|
+
Accepted = "accepted",
|
|
20
|
+
Cancelled = "cancelled",
|
|
21
|
+
Refunded = "refunded",
|
|
22
|
+
Rejected = "rejected"
|
|
23
|
+
}
|
|
24
|
+
export type IBookingPaymentTokenizedCard = {
|
|
25
|
+
Type: string;
|
|
26
|
+
Number: string;
|
|
27
|
+
Expiry: number;
|
|
28
|
+
CVV: string;
|
|
29
|
+
Name: string;
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* Booking payment attached to a booking.
|
|
33
|
+
*
|
|
34
|
+
* Could be either Card or Planpay
|
|
35
|
+
*/
|
|
36
|
+
export type IBookingPayment = {
|
|
37
|
+
Method: EBookingPaymentMethod;
|
|
38
|
+
SavedCardID?: string;
|
|
39
|
+
PlanpayCheckoutId?: string;
|
|
40
|
+
PaymentCard?: IBookingPaymentTokenizedCard;
|
|
41
|
+
RedirectUrl?: string;
|
|
42
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
export type IBookingQuoteRequest = {
|
|
2
|
+
rows: {
|
|
3
|
+
rowId: string;
|
|
4
|
+
rateCode: string;
|
|
5
|
+
roomCode: string;
|
|
6
|
+
adults?: number;
|
|
7
|
+
children?: number;
|
|
8
|
+
infants?: number;
|
|
9
|
+
promoCode?: string;
|
|
10
|
+
/**
|
|
11
|
+
* Example format "2023-10-22 10:00:00"
|
|
12
|
+
*/
|
|
13
|
+
checkIn: string;
|
|
14
|
+
/**
|
|
15
|
+
* Example format "2023-10-22 10:00:00"
|
|
16
|
+
*/
|
|
17
|
+
checkOut: string;
|
|
18
|
+
memberNumber?: string;
|
|
19
|
+
}[];
|
|
20
|
+
};
|
|
21
|
+
export type IBookingQuoteResponse = {
|
|
22
|
+
rows: {
|
|
23
|
+
rowId: string;
|
|
24
|
+
totalRate: number;
|
|
25
|
+
totalDeposit: number;
|
|
26
|
+
totalFees: number;
|
|
27
|
+
quoteId: number;
|
|
28
|
+
}[];
|
|
29
|
+
} | null;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import type { ECompanyProvider } from '../../index.js';
|
|
2
|
+
export interface IAdminCompany {
|
|
3
|
+
id: number;
|
|
4
|
+
name: string;
|
|
5
|
+
provider: ECompanyProvider;
|
|
6
|
+
providerLogin: string;
|
|
7
|
+
providerPassword: string;
|
|
8
|
+
hotels: {
|
|
9
|
+
name: string;
|
|
10
|
+
label: string;
|
|
11
|
+
id: string;
|
|
12
|
+
rms?: {
|
|
13
|
+
clientId: number;
|
|
14
|
+
clientPassword: string;
|
|
15
|
+
useTrainingDb: boolean;
|
|
16
|
+
apiUrl: string;
|
|
17
|
+
};
|
|
18
|
+
}[];
|
|
19
|
+
}
|
|
20
|
+
export type IAdminGetCompaiesResponse = IAdminCompany[];
|
|
21
|
+
/** What the API expects */
|
|
22
|
+
export type IAdminFetchRMSHotelsRequest = {
|
|
23
|
+
/** Passing this field will apply changes */
|
|
24
|
+
confirm?: boolean;
|
|
25
|
+
};
|
|
26
|
+
/** Response type of the Fetch RMS hotels endpoint. This endpoint will contact RMS and fetch Hotel's details directly from their database.
|
|
27
|
+
* On initial call the data won't be applied, you must call this API again and set {@link IAdminFetchRMSHotelsRequest.confirm} to true to apply the data */
|
|
28
|
+
export type IAdminFetchRMSHotelsResponse = {
|
|
29
|
+
/** If the hotels have in fact been synced, this will be true */
|
|
30
|
+
hasConfirmed: boolean;
|
|
31
|
+
};
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
type IRoomstayEventAvailabilityPrice = {
|
|
2
|
+
currency: string;
|
|
3
|
+
majorValue: string;
|
|
4
|
+
value: number;
|
|
5
|
+
};
|
|
6
|
+
export type IRoomstayEvent = {
|
|
7
|
+
eventId: string;
|
|
8
|
+
source: "eventbrite" | string;
|
|
9
|
+
name: string;
|
|
10
|
+
summary: string;
|
|
11
|
+
description: string;
|
|
12
|
+
image: {
|
|
13
|
+
background?: string;
|
|
14
|
+
url: string;
|
|
15
|
+
isRoomstay?: boolean;
|
|
16
|
+
id?: string;
|
|
17
|
+
};
|
|
18
|
+
checkoutUrl: string;
|
|
19
|
+
url: string;
|
|
20
|
+
endDate: string;
|
|
21
|
+
startDate: string;
|
|
22
|
+
/**
|
|
23
|
+
* Used to override the startDate (if event is repeating for example, say every thursday at 6pm)
|
|
24
|
+
*/
|
|
25
|
+
eventTimeDescription: string;
|
|
26
|
+
unixStartTime: number;
|
|
27
|
+
timezone: string;
|
|
28
|
+
searchCity: string[];
|
|
29
|
+
latitude: number;
|
|
30
|
+
longitude: number;
|
|
31
|
+
isPermanent?: boolean;
|
|
32
|
+
address: {
|
|
33
|
+
line1: string;
|
|
34
|
+
line2: string;
|
|
35
|
+
city: string;
|
|
36
|
+
country: string;
|
|
37
|
+
region: string;
|
|
38
|
+
};
|
|
39
|
+
availability: {
|
|
40
|
+
isSoldOut: boolean;
|
|
41
|
+
hasAvailableTickets: boolean;
|
|
42
|
+
isFree: boolean;
|
|
43
|
+
minPrice: IRoomstayEventAvailabilityPrice;
|
|
44
|
+
maxPrice: IRoomstayEventAvailabilityPrice;
|
|
45
|
+
};
|
|
46
|
+
tags: any;
|
|
47
|
+
};
|
|
48
|
+
export {};
|