@pulsecharterconnect/types 0.1.13 → 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 +2 -2
- package/package.json +1 -1
package/dist/types/Trip.d.ts
CHANGED
|
@@ -127,7 +127,7 @@ export interface ITripOrganRecoverySegment extends ITripSegment {
|
|
|
127
127
|
export interface ITrip {
|
|
128
128
|
id: string;
|
|
129
129
|
transportationRequestId: string;
|
|
130
|
-
tripSegments: Array<ITripGroundSegment | ITripAirSegment>;
|
|
130
|
+
tripSegments: Array<ITripGroundSegment | ITripAirSegment | ITripOrganRecoverySegment>;
|
|
131
131
|
scheduledStartTime: number;
|
|
132
132
|
scheduledCompletionTime: number;
|
|
133
133
|
participants: ITripParticipant[];
|
|
@@ -139,7 +139,7 @@ export interface ITrip {
|
|
|
139
139
|
export declare class Trip implements ITrip {
|
|
140
140
|
id: string;
|
|
141
141
|
transportationRequestId: string;
|
|
142
|
-
tripSegments: Array<ITripGroundSegment | ITripAirSegment>;
|
|
142
|
+
tripSegments: Array<ITripGroundSegment | ITripAirSegment | ITripOrganRecoverySegment>;
|
|
143
143
|
scheduledStartTime: number;
|
|
144
144
|
scheduledCompletionTime: number;
|
|
145
145
|
participants: ITripParticipant[];
|