@platform-modules/civil-aviation-authority 2.2.208 → 2.2.209

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.
package/.env CHANGED
@@ -4,14 +4,14 @@
4
4
  # DB_PASS=123
5
5
  # DB_NAME=CAA
6
6
 
7
- # DB_HOST=164.52.222.169
8
- # DB_PORT=5432
9
- # DB_USER=postgres_admin_user
10
- # DB_PASS=pg_admin_user_pwd_caa_fa_$%^&OIukhjgcvbn
11
- # DB_NAME=CAA
12
-
13
- DB_HOST=216.48.187.46
7
+ DB_HOST=164.52.222.169
14
8
  DB_PORT=5432
15
- DB_USER=adminuser
16
- DB_PASS=postgres_caa_fm_qa_34567
17
- DB_NAME=CAA_QA
9
+ DB_USER=postgres_admin_user
10
+ DB_PASS=pg_admin_user_pwd_caa_fa_$%^&OIukhjgcvbn
11
+ DB_NAME=CAA
12
+
13
+ # DB_HOST=216.48.187.46
14
+ # DB_PORT=5432
15
+ # DB_USER=adminuser
16
+ # DB_PASS=postgres_caa_fm_qa_34567
17
+ # DB_NAME=CAA_QA
@@ -35,7 +35,7 @@ __decorate([
35
35
  __metadata("design:type", String)
36
36
  ], ServiceType.prototype, "name", void 0);
37
37
  __decorate([
38
- (0, typeorm_1.Column)({ nullable: true }),
38
+ (0, typeorm_1.Column)({ type: 'varchar', nullable: true }),
39
39
  __metadata("design:type", Object)
40
40
  ], ServiceType.prototype, "name_in_arabic", void 0);
41
41
  __decorate([
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platform-modules/civil-aviation-authority",
3
- "version": "2.2.208",
3
+ "version": "2.2.209",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {
@@ -11,7 +11,7 @@ export class ServiceType extends BaseModel {
11
11
  @Column({ nullable: false })
12
12
  name: string;
13
13
 
14
- @Column({ nullable: true })
14
+ @Column({type: 'varchar', nullable: true })
15
15
  name_in_arabic: string | null;
16
16
 
17
17
  @Column({ nullable: false })