@pulsecharterconnect/types 0.2.18 → 0.2.20

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.
@@ -56,6 +56,7 @@ export declare class CaseWorkflowStep implements ICaseWorkflowStep {
56
56
  export type TransportationRequestAdditionalDetail = {
57
57
  transportationRequestType: TransportRequestType;
58
58
  orDateTime: number;
59
+ orTimezone: string;
59
60
  numberOfPassengers: number;
60
61
  organTransportList: OrganTransport[];
61
62
  specialInstructions?: string;
@@ -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;
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulsecharterconnect/types",
3
- "version": "0.2.18",
3
+ "version": "0.2.20",
4
4
  "description": "A TypeScript library for enhanced type safety.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",