@duffel/components 3.7.29 → 3.7.31

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.
@@ -9,6 +9,14 @@ export interface DuffelAncillariesCommonProps {
9
9
  markup?: DuffelAncillariesMarkup;
10
10
  priceFormatters?: DuffelAncillariesPriceFormatters;
11
11
  debug?: boolean;
12
+ /**
13
+ * If you pass default selected baggage services, they will be used to initiate the state when the component mounts. Any further updates will be ignored.
14
+ */
15
+ defaultBaggageSelectedServices?: WithBaggageServiceInformation<CreateOrderService>[];
16
+ /**
17
+ * If you pass default selected seat services, they will be used to initiate the state when the component mounts. Any further updates will be ignored.
18
+ */
19
+ defaultSeatSelectedServices?: WithSeatServiceInformation<CreateOrderService>[];
12
20
  }
13
21
  export interface DuffelAncillariesPropsWithOfferIdForFixture extends DuffelAncillariesCommonProps {
14
22
  offer_id: `fixture_${string}`;