@qite/tide-client 1.1.123 → 1.1.125

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.
@@ -0,0 +1,5 @@
1
+ import { BookingPackage, EntryLight } from "../..";
2
+ export interface BookingPackageWithEntry {
3
+ bookingPackage: BookingPackage;
4
+ entry: EntryLight;
5
+ }
@@ -6,6 +6,7 @@ export * from "./booking-option-group";
6
6
  export * from "./booking-option-pax";
7
7
  export * from "./booking-option-unit";
8
8
  export * from "./booking-package";
9
+ export * from "./booking-package-entry";
9
10
  export * from "./booking-package-availability";
10
11
  export * from "./booking-package-flight";
11
12
  export * from "./booking-package-flight-meta-data";
@@ -0,0 +1,29 @@
1
+ import { EntryLineMetaData } from ".";
2
+ export interface EntryLight {
3
+ id: number;
4
+ dossierId: number;
5
+ number: string;
6
+ items: EntryLineLight[];
7
+ }
8
+ export interface EntryLineLight {
9
+ id: number;
10
+ itemGuid: string;
11
+ order: number;
12
+ productCode: string;
13
+ productName: string;
14
+ foreignProductName: string;
15
+ accommodationCode: string;
16
+ accommodationName: string;
17
+ foreignAccommodationName: string;
18
+ regimeCode: string;
19
+ regimeName: string;
20
+ foreignRegimeName: string;
21
+ startDate: Date;
22
+ endDate: Date;
23
+ status: number;
24
+ unitSellingPrice?: number;
25
+ attention: string;
26
+ productType: number;
27
+ metaDatas: EntryLineMetaData;
28
+ isReturnFlight: boolean;
29
+ }
@@ -8,6 +8,7 @@ export * from "./dossier-default-product";
8
8
  export * from "./dossier-pax-item";
9
9
  export * from "./dossier-view-result";
10
10
  export * from "./entry";
11
+ export * from "./entry-light";
11
12
  export * from "./entry-check-response";
12
13
  export * from "./entry-line";
13
14
  export * from "./entry-line-meta-data";
@@ -20,6 +20,7 @@ import {
20
20
  BookingPackageSearchRequest,
21
21
  BookingPackageUpdateRequest,
22
22
  BookingPackageVoucherRequest,
23
+ BookingPackageWithEntry,
23
24
  BookingPriceDetails,
24
25
  BookingTravelAgent,
25
26
  BookingVoucherResult,
@@ -75,6 +76,12 @@ export declare const details: (
75
76
  signal?: AbortSignal | undefined,
76
77
  languageCode?: string | undefined
77
78
  ) => Promise<TideResponse<BookingPackage>>;
79
+ export declare const detailsWL: (
80
+ config: TideClientConfig,
81
+ request: BookingPackageRequest<BookingPackageDetailsRequest>,
82
+ signal?: AbortSignal | undefined,
83
+ languageCode?: string | undefined
84
+ ) => Promise<TideResponse<BookingPackageWithEntry>>;
78
85
  export declare const validateVoucher: (
79
86
  config: TideClientConfig,
80
87
  request: BookingPackageRequest<BookingPackageVoucherRequest>,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qite/tide-client",
3
- "version": "1.1.123",
3
+ "version": "1.1.125",
4
4
  "description": "Frontend client for Tide",
5
5
  "main": "build/index.js",
6
6
  "scripts": {