@pulsecharterconnect/types 0.1.46 → 0.1.48

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.
@@ -71,12 +71,16 @@ export interface ITripGroundSegment extends ITripSegment {
71
71
  export interface ITripAirSegment extends ITripSegment {
72
72
  transportationOperatorId: string;
73
73
  scheduledDepartureAirportCode: string;
74
- scheudledDepartureAirportLocation: {
74
+ scheduledDepartureAirportLocation: {
75
75
  lat: number;
76
76
  lng: number;
77
77
  };
78
78
  scheduledDepartureFBO?: Facility;
79
79
  scheduledArrivalAirportCode: string;
80
+ scheduledArrivalAirportLocation: {
81
+ lat: number;
82
+ lng: number;
83
+ };
80
84
  scheduledArrivalFBO?: Facility;
81
85
  actualDepartureAirportCode?: string;
82
86
  actualDepartureAirportLocation?: {
@@ -85,6 +89,10 @@ export interface ITripAirSegment extends ITripSegment {
85
89
  };
86
90
  actualDepartureFBO?: Facility;
87
91
  actualArrivalAirportCode?: string;
92
+ actualArrivalAirportLocation?: {
93
+ lat: number;
94
+ lng: number;
95
+ };
88
96
  actualArrivalFBO?: Facility;
89
97
  crew?: ITripParticipant[];
90
98
  passengers: ITripParticipant[];
@@ -148,6 +156,7 @@ export declare class Participant implements IParticipant {
148
156
  export interface ITripParticipant {
149
157
  participantRole: TripParticipantRole;
150
158
  participant: IParticipant;
159
+ isPassenger?: boolean;
151
160
  pilotTimeout?: number;
152
161
  pilotTimeoutTimezone?: string;
153
162
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulsecharterconnect/types",
3
- "version": "0.1.46",
3
+ "version": "0.1.48",
4
4
  "description": "A TypeScript library for enhanced type safety.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",