@tripian/core 9.1.8 → 9.1.11

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
@@ -142,7 +142,7 @@ declare class API {
142
142
  /**
143
143
  * Reservations
144
144
  */
145
- reservations: (cityId?: number, tripHash?: string, poiId?: string, provider?: string, startDate?: string, endDate?: string, limit?: number) => Promise<Model.UserReservation[]>;
145
+ reservations: (cityId?: number, tripHash?: string, poiId?: string, provider?: string, dateFrom?: string, dateTo?: string, limit?: number) => Promise<Model.UserReservation[]>;
146
146
  reservationAdd: (reservationRequest: Model.UserReservationRequest) => Promise<Model.UserReservation>;
147
147
  reservationUpdate: (reservation: Model.UserReservation) => Promise<Model.UserReservation>;
148
148
  reservationDelete: (reservationId: number) => Promise<number>;