@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.
@@ -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;
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulsecharterconnect/types",
3
- "version": "0.1.17",
3
+ "version": "0.1.18",
4
4
  "description": "A TypeScript library for enhanced type safety.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",