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