@tripian/core 9.3.8 → 9.3.9

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
@@ -265,6 +265,7 @@ declare class API {
265
265
  * Tour API
266
266
  */
267
267
  tourSearch: (request: Model.TourSearchRequest) => Promise<Model.TourSearchResult>;
268
+ tourAvailability: (productId: string, request: Model.TourAvailabilityRequest) => Promise<Model.TourAvailabilityResponse>;
268
269
  tourCategories: (cityId?: string, providerId?: string) => Promise<Model.TourCategory[]>;
269
270
  /**
270
271
  * COMBO
@@ -137,5 +137,6 @@ interface ApiConstModel {
137
137
  TIMELINE_DELETE: ApiConst;
138
138
  TOUR_SEARCH: ApiConst;
139
139
  TOUR_CATEGORIES: ApiConst;
140
+ TOUR_AVAILABILITY: ApiConst;
140
141
  }
141
142
  export { ApiConst, ApiConstModel };