@pulsecharterconnect/types 0.1.12 → 0.1.14
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 +3 -4
- package/package.json +1 -1
package/dist/types/Trip.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Facility, GroundService } from "./Organization";
|
|
2
|
-
import {
|
|
2
|
+
import { IProposalSegment } from "./Proposal";
|
|
3
3
|
export declare enum TripStatus {
|
|
4
4
|
PREPARATION = "preparation",
|
|
5
5
|
IN_PROGRESS = "in-progress",
|
|
@@ -123,12 +123,11 @@ export interface ITripOrganRecoverySegment extends ITripSegment {
|
|
|
123
123
|
estimatedOrganRecoveryTime: number;
|
|
124
124
|
actualOrganRecoveryTime: number;
|
|
125
125
|
surgicalTeam: ITripParticipant[];
|
|
126
|
-
organRecoveryServices?: IGroundTransportationService[];
|
|
127
126
|
}
|
|
128
127
|
export interface ITrip {
|
|
129
128
|
id: string;
|
|
130
129
|
transportationRequestId: string;
|
|
131
|
-
tripSegments: Array<ITripGroundSegment | ITripAirSegment>;
|
|
130
|
+
tripSegments: Array<ITripGroundSegment | ITripAirSegment | ITripOrganRecoverySegment>;
|
|
132
131
|
scheduledStartTime: number;
|
|
133
132
|
scheduledCompletionTime: number;
|
|
134
133
|
participants: ITripParticipant[];
|
|
@@ -140,7 +139,7 @@ export interface ITrip {
|
|
|
140
139
|
export declare class Trip implements ITrip {
|
|
141
140
|
id: string;
|
|
142
141
|
transportationRequestId: string;
|
|
143
|
-
tripSegments: Array<ITripGroundSegment | ITripAirSegment>;
|
|
142
|
+
tripSegments: Array<ITripGroundSegment | ITripAirSegment | ITripOrganRecoverySegment>;
|
|
144
143
|
scheduledStartTime: number;
|
|
145
144
|
scheduledCompletionTime: number;
|
|
146
145
|
participants: ITripParticipant[];
|