@qite/tide-client 1.0.76 → 1.0.79
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/build/types/offer/booking-v2/request/booking-package-details-request.d.ts +2 -1
- package/build/types/offer/booking-v2/request/booking-package-search-request.d.ts +1 -0
- package/build/types/offer/booking-v2/request/index.d.ts +1 -0
- package/build/types/offer/booking-v2/request/selected-flight.d.ts +2 -0
- package/build/types/offer/booking-v2/request/selected-hotel.d.ts +5 -0
- package/build/types/offer/booking-v2/response/booking-package-item.d.ts +2 -0
- package/build/types/offer/booking-v2/response/booking-price-details.d.ts +2 -0
- package/build/types/offer/booking-v2/response/booking-product-notification.d.ts +6 -0
- package/build/types/offer/booking-v2/response/index.d.ts +1 -0
- package/package.json +1 -1
- package/src/types/offer/booking-v2/request/booking-package-details-request.ts +2 -1
- package/src/types/offer/booking-v2/request/booking-package-search-request.ts +1 -0
- package/src/types/offer/booking-v2/request/index.ts +1 -0
- package/src/types/offer/booking-v2/request/selected-flight.ts +2 -0
- package/src/types/offer/booking-v2/request/selected-hotel.ts +5 -0
- package/src/types/offer/booking-v2/response/booking-package-item.ts +2 -0
- package/src/types/offer/booking-v2/response/booking-price-details.ts +2 -0
- package/src/types/offer/booking-v2/response/booking-product-notification.ts +6 -0
- package/src/types/offer/booking-v2/response/index.ts +1 -0
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { BookingPackageRequestRoom } from "../shared/booking-package-request-room";
|
|
2
2
|
import { SelectedFlight } from "./selected-flight";
|
|
3
|
+
import { SelectedHotel } from "./selected-hotel";
|
|
3
4
|
export interface BookingPackageDetailsRequest {
|
|
4
5
|
catalogueId?: number;
|
|
5
6
|
rooms: BookingPackageRequestRoom[];
|
|
@@ -13,7 +14,7 @@ export interface BookingPackageDetailsRequest {
|
|
|
13
14
|
postNights?: number;
|
|
14
15
|
includeFlights?: boolean;
|
|
15
16
|
checkExternalAvailability?: boolean;
|
|
16
|
-
|
|
17
|
+
hotel?: SelectedHotel;
|
|
17
18
|
outwardFlight?: SelectedFlight;
|
|
18
19
|
returnFlight?: SelectedFlight;
|
|
19
20
|
}
|
|
@@ -14,10 +14,12 @@ export interface BookingPackageItem {
|
|
|
14
14
|
outwardFlightCode?: string;
|
|
15
15
|
outwardFlightNumbers?: string[];
|
|
16
16
|
outwardFlightStartDate?: string;
|
|
17
|
+
outwardFlightEndDate?: string;
|
|
17
18
|
price: number;
|
|
18
19
|
regimeCode?: string;
|
|
19
20
|
returnFlightCode?: string;
|
|
20
21
|
returnFlightNumbers?: string[];
|
|
22
|
+
returnFlightStartDate?: string;
|
|
21
23
|
returnFlightEndDate?: string;
|
|
22
24
|
flightDescription?: string;
|
|
23
25
|
tagIds: number[];
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { BookingPriceDetail } from "./booking-price-detail";
|
|
2
|
+
import { BookingProductNotification } from "./booking-product-notification";
|
|
2
3
|
import { ChangedLine } from "./changed-line";
|
|
3
4
|
export interface BookingPriceDetails {
|
|
4
5
|
details: BookingPriceDetail[];
|
|
5
6
|
changedLines: ChangedLine[];
|
|
7
|
+
notifications: BookingProductNotification[];
|
|
6
8
|
deposit?: number;
|
|
7
9
|
}
|
package/package.json
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { BookingPackageRequestRoom } from "../shared/booking-package-request-room";
|
|
2
2
|
import { SelectedFlight } from "./selected-flight";
|
|
3
|
+
import { SelectedHotel } from "./selected-hotel";
|
|
3
4
|
|
|
4
5
|
export interface BookingPackageDetailsRequest {
|
|
5
6
|
catalogueId?: number;
|
|
@@ -16,7 +17,7 @@ export interface BookingPackageDetailsRequest {
|
|
|
16
17
|
checkExternalAvailability?: boolean;
|
|
17
18
|
|
|
18
19
|
// lazy loading
|
|
19
|
-
|
|
20
|
+
hotel?: SelectedHotel;
|
|
20
21
|
outwardFlight?: SelectedFlight;
|
|
21
22
|
returnFlight?: SelectedFlight;
|
|
22
23
|
}
|
|
@@ -15,10 +15,12 @@ export interface BookingPackageItem {
|
|
|
15
15
|
outwardFlightCode?: string;
|
|
16
16
|
outwardFlightNumbers?: string[];
|
|
17
17
|
outwardFlightStartDate?: string;
|
|
18
|
+
outwardFlightEndDate?: string;
|
|
18
19
|
price: number;
|
|
19
20
|
regimeCode?: string;
|
|
20
21
|
returnFlightCode?: string;
|
|
21
22
|
returnFlightNumbers?: string[];
|
|
23
|
+
returnFlightStartDate?: string;
|
|
22
24
|
returnFlightEndDate?: string;
|
|
23
25
|
flightDescription?: string;
|
|
24
26
|
tagIds: number[];
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { BookingPriceDetail } from "./booking-price-detail";
|
|
2
|
+
import { BookingProductNotification } from "./booking-product-notification";
|
|
2
3
|
import { ChangedLine } from "./changed-line";
|
|
3
4
|
|
|
4
5
|
export interface BookingPriceDetails {
|
|
5
6
|
details: BookingPriceDetail[];
|
|
6
7
|
changedLines: ChangedLine[];
|
|
8
|
+
notifications: BookingProductNotification[];
|
|
7
9
|
deposit?: number;
|
|
8
10
|
}
|