@platform-modules/civil-aviation-authority 1.0.48 → 1.0.49

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,7 +1,7 @@
1
1
  import { BaseModel } from './BaseModel';
2
2
  export declare class ContactInfo extends BaseModel {
3
3
  id: number;
4
- category: "FM" | "Embassy";
4
+ category: "CAA" | "Embassy";
5
5
  name: string;
6
6
  business_email: string;
7
7
  business_phone: string;
@@ -20,7 +20,7 @@ __decorate([
20
20
  __metadata("design:type", Number)
21
21
  ], ContactInfo.prototype, "id", void 0);
22
22
  __decorate([
23
- (0, typeorm_1.Column)({ type: "enum", enum: ["FM", "Embassy"], nullable: false }),
23
+ (0, typeorm_1.Column)({ type: "enum", enum: ["CAA", "Embassy"], nullable: false }),
24
24
  __metadata("design:type", String)
25
25
  ], ContactInfo.prototype, "category", void 0);
26
26
  __decorate([
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platform-modules/civil-aviation-authority",
3
- "version": "1.0.48",
3
+ "version": "1.0.49",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {
@@ -7,8 +7,8 @@ export class ContactInfo extends BaseModel {
7
7
  id: number;
8
8
 
9
9
  // General Information
10
- @Column({ type: "enum", enum: ["FM", "Embassy"], nullable: false })
11
- category: "FM" | "Embassy"; // Mandatory
10
+ @Column({ type: "enum", enum: ["CAA", "Embassy"], nullable: false })
11
+ category: "CAA" | "Embassy"; // Mandatory
12
12
 
13
13
  @Column({ type: "varchar", length: 255, nullable: false })
14
14
  name: string;