@platform-modules/civil-aviation-authority 2.3.246 → 2.3.248

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.
@@ -2,7 +2,8 @@ import { BaseModel } from './BaseModel';
2
2
  export declare enum AssetMaintenanceCategory {
3
3
  BUILDING = "Building",
4
4
  EQUIPMENT = "Equipment",
5
- RESIDENTIAL = "Residential"
5
+ RESIDENTIAL = "Residential",
6
+ STATION = "Station"
6
7
  }
7
8
  export declare enum AssetMaintenanceSubCategory {
8
9
  ELECTRICAL = "Electrical",
@@ -17,6 +17,7 @@ var AssetMaintenanceCategory;
17
17
  AssetMaintenanceCategory["BUILDING"] = "Building";
18
18
  AssetMaintenanceCategory["EQUIPMENT"] = "Equipment";
19
19
  AssetMaintenanceCategory["RESIDENTIAL"] = "Residential";
20
+ AssetMaintenanceCategory["STATION"] = "Station";
20
21
  })(AssetMaintenanceCategory || (exports.MaintenanceCategory = exports.AssetMaintenanceCategory = AssetMaintenanceCategory = {}));
21
22
  var AssetMaintenanceSubCategory;
22
23
  (function (AssetMaintenanceSubCategory) {
@@ -1,6 +1,7 @@
1
1
  import { BaseModel } from './BaseModel';
2
2
  export declare class StationMaster extends BaseModel {
3
3
  station_name: string;
4
+ station_arabic_name: string | null;
4
5
  station_code: string;
5
6
  location: string | null;
6
7
  description: string | null;
@@ -24,6 +24,10 @@ __decorate([
24
24
  (0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: false }),
25
25
  __metadata("design:type", String)
26
26
  ], StationMaster.prototype, "station_name", void 0);
27
+ __decorate([
28
+ (0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
29
+ __metadata("design:type", Object)
30
+ ], StationMaster.prototype, "station_arabic_name", void 0);
27
31
  __decorate([
28
32
  (0, typeorm_1.Column)({ type: 'varchar', length: 50, nullable: false }),
29
33
  __metadata("design:type", String)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platform-modules/civil-aviation-authority",
3
- "version": "2.3.246",
3
+ "version": "2.3.248",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {
@@ -11,6 +11,7 @@
11
11
  "access": "public"
12
12
  },
13
13
  "dependencies": {
14
+ "@platform-modules/civil-aviation-authority": "^2.3.246",
14
15
  "moment-timezone": "^0.6.0",
15
16
  "pg": "^8.16.0",
16
17
  "typeorm": "^0.3.17"
@@ -5,6 +5,7 @@ export enum AssetMaintenanceCategory {
5
5
  BUILDING = 'Building',
6
6
  EQUIPMENT = 'Equipment',
7
7
  RESIDENTIAL = 'Residential',
8
+ STATION = 'Station',
8
9
  }
9
10
 
10
11
  export enum AssetMaintenanceSubCategory {
@@ -6,6 +6,9 @@ export class StationMaster extends BaseModel {
6
6
  @Column({ type: 'varchar', length: 255, nullable: false })
7
7
  station_name: string;
8
8
 
9
+ @Column({ type: 'varchar', length: 255, nullable: true })
10
+ station_arabic_name: string | null;
11
+
9
12
  @Column({ type: 'varchar', length: 50, nullable: false })
10
13
  station_code: string;
11
14