@pulsecharterconnect/types 0.1.8 → 0.1.10

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.
@@ -122,6 +122,9 @@ export interface IAircraft {
122
122
  year: number;
123
123
  maxPassengers: number;
124
124
  insurance: IInsurance[];
125
+ typeOfAircraft: AirService;
126
+ wifiAvailable: boolean;
127
+ powerAvailable: boolean;
125
128
  }
126
129
  export interface ISystemAdminOrganization {
127
130
  }
@@ -147,6 +150,7 @@ export interface ITranportationOperatorOrganization {
147
150
  unosRegions?: number[];
148
151
  };
149
152
  safetyCertifications: SafetyCertifications[];
153
+ markupPercentage?: number;
150
154
  }
151
155
  export interface IOrganization {
152
156
  id: string;
@@ -7,3 +7,4 @@ export * from "./TransportationRequest";
7
7
  export * from "./Notification";
8
8
  export * from "./RequestForProposal";
9
9
  export * from "./Proposal";
10
+ export * from "./Trip";
@@ -23,3 +23,4 @@ __exportStar(require("./TransportationRequest"), exports);
23
23
  __exportStar(require("./Notification"), exports);
24
24
  __exportStar(require("./RequestForProposal"), exports);
25
25
  __exportStar(require("./Proposal"), exports);
26
+ __exportStar(require("./Trip"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulsecharterconnect/types",
3
- "version": "0.1.8",
3
+ "version": "0.1.10",
4
4
  "description": "A TypeScript library for enhanced type safety.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",