@tripian/core 6.1.9 → 6.2.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.
package/api/API.d.ts CHANGED
@@ -143,6 +143,7 @@ declare class API {
143
143
  */
144
144
  productTypes: () => Promise<Model.OfferProductType[]>;
145
145
  offerSearch: (dateFrom: string, dateTo: string, boundary: string) => Promise<Model.Poi[]>;
146
+ offerSearchCampaign: (campaignId: number) => Promise<Model.Poi[]>;
146
147
  offerSearchNew: (dateFrom: string, dateTo: string, boundary: string) => Promise<Model.DataPayload<Model.Poi[]>>;
147
148
  offers: (dateFrom?: string, dateTo?: string) => Promise<Model.Poi[]>;
148
149
  offerUpdateOptIn: (offerId: number, optInDate: string) => Promise<Model.DeleteUpdateResponse>;