@platform-modules/civil-aviation-authority 2.0.18 → 2.0.19

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.
@@ -1,9 +1,8 @@
1
1
  import { BaseModel } from './BaseModel';
2
2
  export declare enum Foreign_Purpose_of_Travel {
3
- AIRPORT_PICKUP = "Airport Pickup/Drop-off",
4
- OFFICIAL_MEETING = "Official Meeting",
5
- SITE_VISIT = "Site Visit",
6
- CONFERENCE = "Conference/Event",
3
+ SITE = "Site Visit",
4
+ AIRPORT = "Airport Duty",
5
+ OFFICIAL = "Official Meeting",
7
6
  OTHER = "Other"
8
7
  }
9
8
  export declare enum Foreign_Vehicle_Required_Location {
@@ -14,10 +14,9 @@ const typeorm_1 = require("typeorm");
14
14
  const BaseModel_1 = require("./BaseModel");
15
15
  var Foreign_Purpose_of_Travel;
16
16
  (function (Foreign_Purpose_of_Travel) {
17
- Foreign_Purpose_of_Travel["AIRPORT_PICKUP"] = "Airport Pickup/Drop-off";
18
- Foreign_Purpose_of_Travel["OFFICIAL_MEETING"] = "Official Meeting";
19
- Foreign_Purpose_of_Travel["SITE_VISIT"] = "Site Visit";
20
- Foreign_Purpose_of_Travel["CONFERENCE"] = "Conference/Event";
17
+ Foreign_Purpose_of_Travel["SITE"] = "Site Visit";
18
+ Foreign_Purpose_of_Travel["AIRPORT"] = "Airport Duty";
19
+ Foreign_Purpose_of_Travel["OFFICIAL"] = "Official Meeting";
21
20
  Foreign_Purpose_of_Travel["OTHER"] = "Other";
22
21
  })(Foreign_Purpose_of_Travel || (exports.Foreign_Purpose_of_Travel = Foreign_Purpose_of_Travel = {}));
23
22
  var Foreign_Vehicle_Required_Location;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platform-modules/civil-aviation-authority",
3
- "version": "2.0.18",
3
+ "version": "2.0.19",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {
@@ -2,10 +2,9 @@ import { Column, Entity } from "typeorm";
2
2
  import { BaseModel } from './BaseModel';
3
3
 
4
4
  export enum Foreign_Purpose_of_Travel {
5
- AIRPORT_PICKUP = "Airport Pickup/Drop-off",
6
- OFFICIAL_MEETING = "Official Meeting",
7
- SITE_VISIT = "Site Visit",
8
- CONFERENCE = "Conference/Event",
5
+ SITE = "Site Visit",
6
+ AIRPORT = "Airport Duty",
7
+ OFFICIAL = "Official Meeting",
9
8
  OTHER = "Other"
10
9
  }
11
10