@tripian/model 6.0.71 → 6.1.1
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.
|
@@ -1,33 +1,28 @@
|
|
|
1
|
-
export declare type
|
|
2
|
-
|
|
1
|
+
export declare type TravelInformation = {
|
|
2
|
+
adults: number;
|
|
3
|
+
nameOfProperty: string;
|
|
4
|
+
proofOfHolidayBookingUrl: string;
|
|
5
|
+
};
|
|
6
|
+
export declare type PersonalInformation = {
|
|
7
|
+
title: 'Mr' | 'Mrs' | 'Ms';
|
|
3
8
|
firstName: string;
|
|
4
9
|
lastName: string;
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
phoneNumber: string;
|
|
8
|
-
};
|
|
9
|
-
export declare type TravelDetails = {
|
|
10
|
-
arrivalDateTime: string;
|
|
11
|
-
departureDateTime: string;
|
|
10
|
+
arrivalDate: string;
|
|
11
|
+
departureDate: string;
|
|
12
12
|
departureDestination: string;
|
|
13
13
|
airline: string;
|
|
14
14
|
flightNumber: string;
|
|
15
15
|
passportNumber: string;
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
export declare type TravelAccommodation = {
|
|
20
|
-
typeOfAccommodation: 'Hotel' | 'Villa' | 'Rental';
|
|
21
|
-
nameOfProperty: string;
|
|
22
|
-
addressOfProperty: string;
|
|
16
|
+
dateOfBirth: string;
|
|
17
|
+
emailAddress: string;
|
|
18
|
+
phoneNumber: string;
|
|
23
19
|
};
|
|
24
20
|
export declare type MarketingQuestions = {
|
|
25
21
|
howDidYouHear: string;
|
|
26
22
|
howDidYouBookYourTrip: 'Online' | 'Travel Agent/ Tour Operator' | 'Direct with hotel';
|
|
27
23
|
};
|
|
28
24
|
export declare type CouponApplication = {
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
accommodation: TravelAccommodation;
|
|
25
|
+
travelInformation: TravelInformation;
|
|
26
|
+
personalInformations: PersonalInformation[];
|
|
32
27
|
marketingQuestions: MarketingQuestions;
|
|
33
28
|
};
|