@platform-modules/civil-aviation-authority 2.0.50 → 2.0.52

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
@@ -1,5 +1,5 @@
1
- DB_HOST=localhost
1
+ DB_HOST=164.52.222.169
2
2
  DB_PORT=5432
3
- DB_USER=postgres
4
- DB_PASS=stevejobs
3
+ DB_USER=postgres_admin_user
4
+ DB_PASS=pg_admin_user_pwd_caa_fa_$%^&OIukhjgcvbn
5
5
  DB_NAME=CAA
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platform-modules/civil-aviation-authority",
3
- "version": "2.0.50",
3
+ "version": "2.0.52",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {
@@ -50,6 +50,12 @@ export class ITHelpDeskRequests extends BaseModel {
50
50
  @Column({ nullable: false })
51
51
  contact_num: string;
52
52
 
53
+ @Column({ type: 'varchar', length: 255, nullable: true })
54
+ person_name: string | null;
55
+
56
+ @Column({ type: 'varchar', length: 20, nullable: true })
57
+ person_contact_number: string | null;
58
+
53
59
  @Column({ type: "date", nullable: false })
54
60
  request_date: Date;
55
61
 
@@ -81,7 +87,9 @@ export class ITHelpDeskRequests extends BaseModel {
81
87
  workflow_execution_id?: string,
82
88
  req_user_department_id?: number | null,
83
89
  req_user_section_id?: number | null,
84
- service_type_id?: number | null
90
+ service_type_id?: number | null,
91
+ person_name?: string | null,
92
+ person_contact_number?: string | null
85
93
  ) {
86
94
  super();
87
95
  this.service_id = service_id;
@@ -91,6 +99,8 @@ export class ITHelpDeskRequests extends BaseModel {
91
99
  this.description = description;
92
100
  this.extn_num = extn_num;
93
101
  this.contact_num = contact_num;
102
+ this.person_name = person_name || null;
103
+ this.person_contact_number = person_contact_number || null;
94
104
  this.request_date = request_date;
95
105
  this.status = status;
96
106
  this.workflow_execution_id = workflow_execution_id || null;