@qite/tide-client 1.1.154 → 1.1.155
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/index.js +7 -0
- package/build/index.js.map +1 -1
- package/build/types/booking-v2/request/packaging/packaging-accommodation-request.d.ts +1 -0
- package/build/types/booking-v2/response/index.d.ts +1 -0
- package/build/types/booking-v2/response/packaging/packaging-entry.d.ts +2 -0
- package/build/types/booking-v2/response/packaging/packaging-transaction.d.ts +4 -0
- package/build/utils/packaging-client.d.ts +5 -0
- package/package.json +1 -1
|
@@ -31,3 +31,4 @@ export * from "./booking-package-entryline-flight-meta-data";
|
|
|
31
31
|
export * from "./flight-lines-by-allotment";
|
|
32
32
|
export * from "./packaging/packaging-accommodation-response";
|
|
33
33
|
export * from "./packaging/packaging-entry";
|
|
34
|
+
export * from "./packaging/packaging-transaction";
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { EntryStatus } from "../../../enums";
|
|
2
2
|
export interface PackagingEntry {
|
|
3
|
+
transactionId: string;
|
|
3
4
|
dossierNumber: string;
|
|
4
5
|
status: EntryStatus;
|
|
5
6
|
bookingDate?: string | null;
|
|
@@ -37,6 +38,7 @@ export interface PackagingEntryLine {
|
|
|
37
38
|
latitude?: number | null;
|
|
38
39
|
pax: PackagingEntryLinePax[];
|
|
39
40
|
flightInformation?: PackagingEntryLineFlightInformation | null;
|
|
41
|
+
isChanged: boolean;
|
|
40
42
|
}
|
|
41
43
|
export interface PackagingEntryLinePax {
|
|
42
44
|
paxId: number;
|
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
import { TideClientConfig } from "..";
|
|
2
2
|
import {
|
|
3
|
+
PackagingTransaction,
|
|
3
4
|
PackagingAccommodationRequest,
|
|
4
5
|
PackagingAccommodationResponse,
|
|
5
6
|
PackagingEntry,
|
|
6
7
|
} from "../types";
|
|
8
|
+
export declare const startTransaction: (
|
|
9
|
+
config: TideClientConfig,
|
|
10
|
+
signal?: AbortSignal | undefined
|
|
11
|
+
) => Promise<PackagingTransaction>;
|
|
7
12
|
export declare const searchPackagingAccommodations: (
|
|
8
13
|
config: TideClientConfig,
|
|
9
14
|
request: PackagingAccommodationRequest,
|