@tripian/core 9.3.28 → 9.3.29

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
@@ -266,6 +266,18 @@ declare class API {
266
266
  */
267
267
  tourSearch: (request: Model.TourSearchRequest) => Promise<Model.TourSearchResult>;
268
268
  tourAvailability: (productId: string, request: Model.TourAvailabilityRequest) => Promise<Model.TourAvailabilityResponse>;
269
+ tourScheduleBulk: (request: {
270
+ items: string[];
271
+ date: string;
272
+ to?: string;
273
+ currency?: string;
274
+ lang?: string;
275
+ }) => Promise<Record<string, {
276
+ productId: string;
277
+ slots: unknown[];
278
+ dates: string[];
279
+ error: boolean;
280
+ }>>;
269
281
  tourCategories: (cityId?: string, providerId?: string) => Promise<Model.TourCategory[]>;
270
282
  /**
271
283
  * COMBO
@@ -138,5 +138,6 @@ interface ApiConstModel {
138
138
  TOUR_SEARCH: ApiConst;
139
139
  TOUR_CATEGORIES: ApiConst;
140
140
  TOUR_AVAILABILITY: ApiConst;
141
+ TOUR_SCHEDULE_BULK: ApiConst;
141
142
  }
142
143
  export { ApiConst, ApiConstModel };