@tripian/core 9.1.1 → 9.1.3

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
@@ -134,6 +134,7 @@ declare class API {
134
134
  tripReferences: Model.TripReference[];
135
135
  }>;
136
136
  tripUpdate: (tripHash: string, tripProfile: Model.TripProfile, minDayIndex?: number) => Promise<Model.Trip>;
137
+ tripNameUpdate: (tripHash: string, tripProfile: Model.TripProfile) => Promise<Model.Trip>;
137
138
  tripDelete: (tripHash: string) => Promise<number>;
138
139
  tripDownloadIcs: (tripHash: string) => Promise<void>;
139
140
  tripGetShared: (tripHash: string, delay?: boolean) => Promise<Model.Trip>;