@pulsecharterconnect/types 0.1.17 → 0.1.18
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
|
@@ -135,6 +135,7 @@ export interface ITripOrganRecoverySegment extends ITripSegment {
|
|
|
135
135
|
}
|
|
136
136
|
export interface ITrip {
|
|
137
137
|
id: string;
|
|
138
|
+
status: TripStatus;
|
|
138
139
|
transportationRequestId: string;
|
|
139
140
|
tripSegments: Array<ITripGroundSegment | ITripAirSegment | ITripOrganRecoverySegment>;
|
|
140
141
|
scheduledStartTime: number;
|
|
@@ -147,6 +148,7 @@ export interface ITrip {
|
|
|
147
148
|
}
|
|
148
149
|
export declare class Trip implements ITrip {
|
|
149
150
|
id: string;
|
|
151
|
+
status: TripStatus;
|
|
150
152
|
transportationRequestId: string;
|
|
151
153
|
tripSegments: Array<ITripGroundSegment | ITripAirSegment | ITripOrganRecoverySegment>;
|
|
152
154
|
scheduledStartTime: number;
|
package/dist/types/Trip.js
CHANGED
|
@@ -81,6 +81,7 @@ exports.Participant = Participant;
|
|
|
81
81
|
class Trip {
|
|
82
82
|
constructor(trip) {
|
|
83
83
|
this.id = trip.id;
|
|
84
|
+
this.status = trip.status;
|
|
84
85
|
this.transportationRequestId = trip.transportationRequestId;
|
|
85
86
|
this.tripSegments = trip.tripSegments || [];
|
|
86
87
|
this.scheduledStartTime = trip.scheduledStartTime;
|