@pulsecharterconnect/types 0.1.9 → 0.1.11

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,10 @@ export interface IAircraft {
122
122
  year: number;
123
123
  maxPassengers: number;
124
124
  insurance: IInsurance[];
125
+ typeOfAircraft: AirService;
126
+ wifiAvailable: boolean;
127
+ powerAvailable: boolean;
128
+ specialTypeCertification: boolean;
125
129
  }
126
130
  export interface ISystemAdminOrganization {
127
131
  }
@@ -147,6 +151,7 @@ export interface ITranportationOperatorOrganization {
147
151
  unosRegions?: number[];
148
152
  };
149
153
  safetyCertifications: SafetyCertifications[];
154
+ markupPercentage?: number;
150
155
  }
151
156
  export interface IOrganization {
152
157
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulsecharterconnect/types",
3
- "version": "0.1.9",
3
+ "version": "0.1.11",
4
4
  "description": "A TypeScript library for enhanced type safety.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",