@tripian/core 6.0.27 → 6.0.28

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
@@ -113,6 +113,7 @@ declare class API {
113
113
  tripAdd: (tripProfile: Model.TripProfile, minDayIndex?: number) => Promise<Model.Trip>;
114
114
  tripUpdate: (tripHash: string, tripProfile: Model.TripProfile, minDayIndex?: number) => Promise<Model.Trip>;
115
115
  tripDelete: (tripHash: string) => Promise<number>;
116
+ tripDownloadIcs: (tripHash: string) => Promise<void>;
116
117
  /**
117
118
  * Reservations
118
119
  */
@@ -58,6 +58,7 @@ interface ApiConstModel {
58
58
  TRIP_ADD: ApiConst;
59
59
  TRIP_UPDATE: ApiConst;
60
60
  TRIP_DELETE: ApiConst;
61
+ TRIP_DOWNLOAD_ICS: ApiConst;
61
62
  RESERVATIONS: ApiConst;
62
63
  RESERVATION_ADD: ApiConst;
63
64
  RESERVATION_UPDATE: ApiConst;