@pulsecharterconnect/types 0.2.18 → 0.2.19
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/dist/types/Trip.d.ts +2 -0
- package/dist/types/Trip.js +1 -0
- package/package.json +1 -1
package/dist/types/Trip.d.ts
CHANGED
|
@@ -191,6 +191,7 @@ export interface ITrip {
|
|
|
191
191
|
organTypes: OrganType[];
|
|
192
192
|
recipientFacility: Facility;
|
|
193
193
|
recoveryLocation: Facility;
|
|
194
|
+
pickupLocation?: Facility;
|
|
194
195
|
tripDistanceInMiles?: number;
|
|
195
196
|
recoveryType: RecoveryType;
|
|
196
197
|
currentSegmentNumber?: number;
|
|
@@ -215,6 +216,7 @@ export declare class Trip implements ITrip {
|
|
|
215
216
|
organTypes: OrganType[];
|
|
216
217
|
recipientFacility: Facility;
|
|
217
218
|
recoveryLocation: Facility;
|
|
219
|
+
pickupLocation?: Facility | undefined;
|
|
218
220
|
tripDistanceInMiles?: number;
|
|
219
221
|
recoveryType: RecoveryType;
|
|
220
222
|
currentSegmentNumber?: number;
|
package/dist/types/Trip.js
CHANGED
|
@@ -144,6 +144,7 @@ class Trip {
|
|
|
144
144
|
this.organTypes = trip.organTypes || [];
|
|
145
145
|
this.recipientFacility = trip.recipientFacility;
|
|
146
146
|
this.recoveryLocation = trip.recoveryLocation;
|
|
147
|
+
this.pickupLocation = trip.pickupLocation || undefined;
|
|
147
148
|
this.tripDistanceInMiles = trip.tripDistanceInMiles;
|
|
148
149
|
this.recoveryType = trip.recoveryType;
|
|
149
150
|
this.currentSegmentNumber = trip.currentSegmentNumber || 0;
|