@duffel/components 3.11.0 → 3.12.1

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.
@@ -19,14 +19,26 @@ export interface DuffelAncillariesCommonProps {
19
19
  defaultSeatSelectedServices?: WithSeatServiceInformation<CreateOrderService>[];
20
20
  }
21
21
  export interface DuffelAncillariesPropsWithOfferIdForFixture extends DuffelAncillariesCommonProps {
22
+ /**
23
+ * @deprecated The offer_id is deprecated. Instead fetch the offer and seat maps and pass them to the component as props.
24
+ */
22
25
  offer_id: `fixture_${string}`;
23
26
  }
24
27
  export interface DuffelAncillariesPropsWithClientKeyAndOfferId extends DuffelAncillariesCommonProps {
28
+ /**
29
+ * @deprecated The `offer_id` is deprecated. Instead fetch the offer and seat maps and pass them to the component as props.
30
+ */
25
31
  offer_id: string;
32
+ /**
33
+ * @deprecated The `client_key` is deprecated. Instead fetch the offer and seat maps and pass them to the component as props.
34
+ */
26
35
  client_key: string;
27
36
  }
28
37
  export interface DuffelAncillariesPropWithOfferAndClientKey extends DuffelAncillariesCommonProps {
29
38
  offer: Offer;
39
+ /**
40
+ * @deprecated The `client_key` is deprecated. Instead fetch the offer and seat maps and pass them to the component as props.
41
+ */
30
42
  client_key: string;
31
43
  }
32
44
  export interface DuffelAncillariesPropsWithOffersAndSeatMaps extends DuffelAncillariesCommonProps {