@qite/tide-client 2.0.11 → 2.0.13

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.
@@ -43,6 +43,8 @@ export interface PackagingEntryLine {
43
43
  accommodationCode?: string | null;
44
44
  regimeName?: string | null;
45
45
  regimeCode?: string | null;
46
+ vendor?: number | null;
47
+ externalVendorId?: number | null;
46
48
  country?: IdName | null;
47
49
  region?: IdName | null;
48
50
  oord?: IdName | null;
@@ -47,7 +47,7 @@ export interface PackagingTrajectNode {
47
47
  /** Try this hotel first; fall back to the cheapest available result when it has no availability. */
48
48
  preferredAccommodationCode?: string | null;
49
49
  preferredAccommodationName?: string | null;
50
- alternativeAccommodationCodes: string[];
50
+ alternatives: PackagingTrajectAlternative[];
51
51
  departureAirportCode?: string | null;
52
52
  arrivalAirportCode?: string | null;
53
53
  distanceInKm?: number | null;
@@ -55,3 +55,16 @@ export interface PackagingTrajectNode {
55
55
  from: string;
56
56
  to: string;
57
57
  }
58
+ export interface PackagingTrajectAlternative {
59
+ code: string;
60
+ name: string;
61
+ description?: string | null;
62
+ imageUrl?: string | null;
63
+ latitude?: number | null;
64
+ longitude?: number | null;
65
+ city?: string | null;
66
+ contentSource: number;
67
+ vendor?: number | null;
68
+ externalVendorId?: number | null;
69
+ isPreferred: boolean;
70
+ }
@@ -10,7 +10,7 @@ export interface FlightSearchRequest {
10
10
  arrivalAirportCode: string;
11
11
  returnAirportCode?: string | null;
12
12
  outward: FlightSearchRequestSpecification;
13
- return: FlightSearchRequestSpecification;
13
+ return?: FlightSearchRequestSpecification | null;
14
14
  travelClass?: number | null;
15
15
  maxStops?: number | null;
16
16
  luggageIncluded?: boolean | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qite/tide-client",
3
- "version": "2.0.11",
3
+ "version": "2.0.13",
4
4
  "description": "Frontend client for Tide",
5
5
  "main": "build/index.js",
6
6
  "scripts": {