@gojinko/api-client 2.25.0 → 2.26.0

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.
@@ -11709,6 +11709,20 @@ export interface components {
11709
11709
  cabin_class?: "economy" | "premium_economy" | "business" | "first";
11710
11710
  /** @example false */
11711
11711
  direct_only?: boolean;
11712
+ /**
11713
+ * @description Keep only itineraries whose VALIDATING (ticketing) carrier is in this list — the only carrier field the flight cache carries, unlike the marketing-carrier match on flight_search. 2-3 character IATA/ICAO codes. Must not overlap `exclude_carriers`.
11714
+ * @example [
11715
+ * "UA"
11716
+ * ]
11717
+ */
11718
+ include_carriers?: string[];
11719
+ /**
11720
+ * @description Drop itineraries whose VALIDATING (ticketing) carrier is in this list. Same semantics as `include_carriers`; must not overlap it.
11721
+ * @example [
11722
+ * "NK"
11723
+ * ]
11724
+ */
11725
+ exclude_carriers?: string[];
11712
11726
  /** @example 1 */
11713
11727
  adults?: number;
11714
11728
  children?: number;
@@ -11741,6 +11755,15 @@ export interface components {
11741
11755
  itineraries: components["schemas"]["Itinerary"][];
11742
11756
  /** @example eyJvZmZzZXQiOjIwfQ== */
11743
11757
  next_page_token?: string;
11758
+ /**
11759
+ * @description VALIDATING (ticketing) carrier codes present across the WHOLE cached match set — not just this page — ordered by itinerary count descending. Lets a caller discover which airlines are available (e.g. to retry with `include_carriers`) without paging through every result. Absent when the platform reports no facet data.
11760
+ * @example [
11761
+ * "UA",
11762
+ * "DL",
11763
+ * "AA"
11764
+ * ]
11765
+ */
11766
+ available_airlines?: string[];
11744
11767
  };
11745
11768
  /**
11746
11769
  * @example {
@@ -11818,6 +11841,20 @@ export interface components {
11818
11841
  cabin_class?: "economy" | "premium_economy" | "business" | "first";
11819
11842
  /** @example false */
11820
11843
  direct_only?: boolean;
11844
+ /**
11845
+ * @description Keep only itineraries whose VALIDATING (ticketing) carrier is in this list — the only carrier field the flight cache carries, unlike the marketing-carrier match on flight_search. 2-3 character IATA/ICAO codes. Must not overlap `exclude_carriers`.
11846
+ * @example [
11847
+ * "UA"
11848
+ * ]
11849
+ */
11850
+ include_carriers?: string[];
11851
+ /**
11852
+ * @description Drop itineraries whose VALIDATING (ticketing) carrier is in this list. Same semantics as `include_carriers`; must not overlap it.
11853
+ * @example [
11854
+ * "NK"
11855
+ * ]
11856
+ */
11857
+ exclude_carriers?: string[];
11821
11858
  /** @example 1 */
11822
11859
  adults?: number;
11823
11860
  children?: number;