@pulsecharterconnect/types 0.1.50 → 0.1.51
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 +8 -0
- package/package.json +1 -1
package/dist/types/Trip.d.ts
CHANGED
|
@@ -98,6 +98,14 @@ export interface ITripAirSegment extends ITripSegment {
|
|
|
98
98
|
passengers: ITripParticipant[];
|
|
99
99
|
scheduledTailNumber?: string;
|
|
100
100
|
actualTailNumber?: string;
|
|
101
|
+
currentLocaton?: {
|
|
102
|
+
latitude: number;
|
|
103
|
+
longitude: number;
|
|
104
|
+
altitude: number;
|
|
105
|
+
groundspeed: number;
|
|
106
|
+
heading: number;
|
|
107
|
+
timestamp: number;
|
|
108
|
+
};
|
|
101
109
|
}
|
|
102
110
|
export declare enum TripParticipantRole {
|
|
103
111
|
SURGEON = "surgeon",
|