@tripian/core 9.2.4 → 9.2.6

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
@@ -156,6 +156,7 @@ declare class API {
156
156
  timelineStepReplace: (stepId: number, newPoiId: string) => Promise<Model.TimelineStep>;
157
157
  timelineStepDelete: (stepId: number) => Promise<number>;
158
158
  timelineUpdate: (tripHash: string, tripProfile: Model.TimelineSegmentRequest) => Promise<Model.DeleteUpdateResponse>;
159
+ timelineGetShared: (tripHash: string) => Promise<Model.TimelineTrip>;
159
160
  /**
160
161
  * Reservations
161
162
  */
@@ -133,5 +133,6 @@ interface ApiConstModel {
133
133
  TIMELINE_STEP_UPDATE: ApiConst;
134
134
  TIMELINE_STEP_DELETE: ApiConst;
135
135
  TIMELINE_UPDATE: ApiConst;
136
+ TIMELINE_GET_SHARED: ApiConst;
136
137
  }
137
138
  export { ApiConst, ApiConstModel };