@qite/tide-client 1.1.168 → 1.1.169
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.
|
@@ -11,6 +11,7 @@ export interface PackagingEntry {
|
|
|
11
11
|
pax: PackagingEntryPax[];
|
|
12
12
|
lines: PackagingEntryLine[];
|
|
13
13
|
address: PackagingEntryAddress;
|
|
14
|
+
redirectUrl?: string;
|
|
14
15
|
}
|
|
15
16
|
export interface PackagingEntryPax {
|
|
16
17
|
id: number;
|
|
@@ -89,4 +90,5 @@ export interface PackagingEntryAddress {
|
|
|
89
90
|
travelAgentId?: number;
|
|
90
91
|
phone?: string;
|
|
91
92
|
email?: string;
|
|
93
|
+
remarks?: string;
|
|
92
94
|
}
|
|
@@ -8,6 +8,7 @@ import {
|
|
|
8
8
|
ClientPortalItinerary,
|
|
9
9
|
FlightSearchRequest,
|
|
10
10
|
PackagingFlightResponse,
|
|
11
|
+
BookingPackageDossier,
|
|
11
12
|
} from "../types";
|
|
12
13
|
import { PackagingRequestBase } from "../types/booking-v2/request/packaging/packaging-request-base";
|
|
13
14
|
export declare const startTransaction: (
|
|
@@ -44,3 +45,8 @@ export declare const getItinerary: (
|
|
|
44
45
|
request: PackagingRequestBase<PackagingEntry>,
|
|
45
46
|
signal?: AbortSignal | undefined
|
|
46
47
|
) => Promise<ClientPortalItinerary>;
|
|
48
|
+
export declare const bookPackagingEntry: (
|
|
49
|
+
config: TideClientConfig,
|
|
50
|
+
request: PackagingRequestBase<PackagingEntry>,
|
|
51
|
+
signal?: AbortSignal | undefined
|
|
52
|
+
) => Promise<BookingPackageDossier>;
|