@platform-modules/civil-aviation-authority 2.3.55 → 2.3.57

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.
@@ -20,15 +20,17 @@ export declare enum AirportEntryPermitLocation {
20
20
  MUKHAZINA = "Mukhazina"
21
21
  }
22
22
  export declare enum AirportEntryPermitArea {
23
- PURPLE = "VIP building",
24
- HEAVENLY = "Cargo Building with import and export sections",
25
- ORANGE = "[ Arrivals Hall] and Arrivals building",
26
- GREEN = "[departures Hall ] and departures building",
27
- YELLOW = "Information centre and control tower building",
28
- BLUE = "Vehicle, Aircraft building, Aircraft parking area, fire station and fuel filling stations, repair shop",
29
- PINK = "Baggage sorting area",
30
- GRAY = "Supply building",
31
- ALL_CIVIL_AIRPORTS = "All Civil Airports"
23
+ PURPLE = "VIP Building",
24
+ HEAVENLY = "Cargo Building (Imports & Exports)",
25
+ ORANGE = "Arrivals Hall / Arrivals Building",
26
+ GREEN = "Departures Hall / Departures Building",
27
+ YELLOW = "Information Center / Control Tower",
28
+ BLUE = "Aircraft Parking Area, Aircraft Maintenance Building, Vehicle Repair Workshop, Fire Station, and Fueling Stations",
29
+ PINK = "Baggage Sorting Area",
30
+ GRAY = "Catering Building",
31
+ BLACK = "Aircraft Maintenance Building",
32
+ GOLD = "Gold Building",
33
+ RED = "All Civil Airports"
32
34
  }
33
35
  export declare enum AirportEntryPermitStatus {
34
36
  PENDING = "Pending",
@@ -37,15 +37,17 @@ var AirportEntryPermitLocation;
37
37
  })(AirportEntryPermitLocation || (exports.AirportEntryPermitLocation = AirportEntryPermitLocation = {}));
38
38
  var AirportEntryPermitArea;
39
39
  (function (AirportEntryPermitArea) {
40
- AirportEntryPermitArea["PURPLE"] = "VIP building";
41
- AirportEntryPermitArea["HEAVENLY"] = "Cargo Building with import and export sections";
42
- AirportEntryPermitArea["ORANGE"] = "[ Arrivals Hall] and Arrivals building";
43
- AirportEntryPermitArea["GREEN"] = "[departures Hall ] and departures building";
44
- AirportEntryPermitArea["YELLOW"] = "Information centre and control tower building";
45
- AirportEntryPermitArea["BLUE"] = "Vehicle, Aircraft building, Aircraft parking area, fire station and fuel filling stations, repair shop";
46
- AirportEntryPermitArea["PINK"] = "Baggage sorting area";
47
- AirportEntryPermitArea["GRAY"] = "Supply building";
48
- AirportEntryPermitArea["ALL_CIVIL_AIRPORTS"] = "All Civil Airports";
40
+ AirportEntryPermitArea["PURPLE"] = "VIP Building";
41
+ AirportEntryPermitArea["HEAVENLY"] = "Cargo Building (Imports & Exports)";
42
+ AirportEntryPermitArea["ORANGE"] = "Arrivals Hall / Arrivals Building";
43
+ AirportEntryPermitArea["GREEN"] = "Departures Hall / Departures Building";
44
+ AirportEntryPermitArea["YELLOW"] = "Information Center / Control Tower";
45
+ AirportEntryPermitArea["BLUE"] = "Aircraft Parking Area, Aircraft Maintenance Building, Vehicle Repair Workshop, Fire Station, and Fueling Stations";
46
+ AirportEntryPermitArea["PINK"] = "Baggage Sorting Area";
47
+ AirportEntryPermitArea["GRAY"] = "Catering Building";
48
+ AirportEntryPermitArea["BLACK"] = "Aircraft Maintenance Building";
49
+ AirportEntryPermitArea["GOLD"] = "Gold Building";
50
+ AirportEntryPermitArea["RED"] = "All Civil Airports";
49
51
  })(AirportEntryPermitArea || (exports.AirportEntryPermitArea = AirportEntryPermitArea = {}));
50
52
  var AirportEntryPermitStatus;
51
53
  (function (AirportEntryPermitStatus) {
@@ -101,7 +101,7 @@ __decorate([
101
101
  __metadata("design:type", Number)
102
102
  ], HotelReservation.prototype, "user_id", void 0);
103
103
  __decorate([
104
- (0, typeorm_1.Column)({ type: 'varchar', length: 255 }),
104
+ (0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
105
105
  __metadata("design:type", String)
106
106
  ], HotelReservation.prototype, "type_of_accommodation", void 0);
107
107
  __decorate([
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platform-modules/civil-aviation-authority",
3
- "version": "2.3.55",
3
+ "version": "2.3.57",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {
@@ -25,15 +25,17 @@ export enum AirportEntryPermitLocation {
25
25
  }
26
26
 
27
27
  export enum AirportEntryPermitArea {
28
- PURPLE = "VIP building",
29
- HEAVENLY = "Cargo Building with import and export sections",
30
- ORANGE = "[ Arrivals Hall] and Arrivals building",
31
- GREEN = "[departures Hall ] and departures building",
32
- YELLOW = "Information centre and control tower building",
33
- BLUE = "Vehicle, Aircraft building, Aircraft parking area, fire station and fuel filling stations, repair shop",
34
- PINK = "Baggage sorting area",
35
- GRAY = "Supply building",
36
- ALL_CIVIL_AIRPORTS = "All Civil Airports"
28
+ PURPLE = "VIP Building",
29
+ HEAVENLY = "Cargo Building (Imports & Exports)",
30
+ ORANGE = "Arrivals Hall / Arrivals Building",
31
+ GREEN = "Departures Hall / Departures Building",
32
+ YELLOW = "Information Center / Control Tower",
33
+ BLUE = "Aircraft Parking Area, Aircraft Maintenance Building, Vehicle Repair Workshop, Fire Station, and Fueling Stations",
34
+ PINK = "Baggage Sorting Area",
35
+ GRAY = "Catering Building",
36
+ BLACK = "Aircraft Maintenance Building",
37
+ GOLD = "Gold Building",
38
+ RED = "All Civil Airports"
37
39
  }
38
40
 
39
41
  export enum AirportEntryPermitStatus {
@@ -52,7 +52,7 @@ export class HotelReservation extends BaseModel {
52
52
  user_id: number;
53
53
 
54
54
  // Hotel reservation specific fields
55
- @Column({ type: 'varchar', length: 255 })
55
+ @Column({ type: 'varchar', length: 255, nullable: true })
56
56
  type_of_accommodation: string;
57
57
 
58
58
  @Column({ type: 'decimal', precision: 10, scale: 2, nullable: false })