@platform-modules/civil-aviation-authority 2.3.130 → 2.3.131

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.
Files changed (51) hide show
  1. package/.env +9 -17
  2. package/dist/models/AccommodationApprovalModel.d.ts +1 -0
  3. package/dist/models/AccommodationApprovalModel.js +4 -0
  4. package/dist/models/CyberSecurityAuditRequestModel.d.ts +3 -1
  5. package/dist/models/CyberSecurityAuditRequestModel.js +12 -2
  6. package/dist/models/ITApprovalSettings.d.ts +7 -0
  7. package/dist/models/ITApprovalSettings.js +40 -0
  8. package/dist/models/ITServicesTypesMuscatModel.d.ts +6 -0
  9. package/dist/models/ITServicesTypesMuscatModel.js +34 -0
  10. package/dist/models/ITServicesTypesSalalahModel.d.ts +6 -0
  11. package/dist/models/ITServicesTypesSalalahModel.js +34 -0
  12. package/dist/models/Workflows.d.ts +9 -0
  13. package/dist/models/Workflows.js +31 -0
  14. package/package.json +1 -1
  15. package/src/data-source.ts +307 -307
  16. package/src/models/AccommodationApprovalModel.ts +8 -5
  17. package/src/models/AnnualIncrementRequestEmployeeModel.ts +65 -65
  18. package/src/models/AnnualIncrementRequestModel.ts +25 -25
  19. package/src/models/AnnualTrainingPlanRequestModel.ts +153 -153
  20. package/src/models/CashAllowanceLeaveRequestModel.ts +11 -11
  21. package/src/models/CyberSecurityAuditRequestModel.ts +32 -22
  22. package/src/models/DepartmentsModel.ts +25 -25
  23. package/src/models/DocumentDriveModel.ts +28 -28
  24. package/src/models/DocumentFolderModel.ts +45 -45
  25. package/src/models/HousingContractCancelChatModel.ts +56 -56
  26. package/src/models/HousingContractRenewalChatModel.ts +59 -59
  27. package/src/models/HrServiceRequestModel.ts +193 -193
  28. package/src/models/ITRequestChatModel.ts +62 -62
  29. package/src/models/ItApprovalsModel.ts +84 -84
  30. package/src/models/ItWorkflowModel.ts +55 -55
  31. package/src/models/MissionTravelPassportExpiryNotificationConfigModel.ts +36 -36
  32. package/src/models/PerformanceCyclePeriodModel.ts +23 -23
  33. package/src/models/PerformanceGoalMasterModel.ts +27 -27
  34. package/src/models/PerformanceManagementRequestGoalModel.ts +36 -36
  35. package/src/models/PerformanceManagementRequestModel.ts +14 -14
  36. package/src/models/PromotionRequestModel.ts +11 -11
  37. package/src/models/ResidentialUnitRentalChatModel.ts +56 -56
  38. package/src/models/ServicesNotificationConfigModel.ts +55 -55
  39. package/src/models/StudyLeaveRequestModel.ts +144 -144
  40. package/src/models/TrainingRoomBookingRequestModel.ts +142 -142
  41. package/src/models/TrainingRoomNotificationConfigModel.ts +30 -30
  42. package/dist/models/DocumentMetadataModel.d.ts +0 -45
  43. package/dist/models/DocumentMetadataModel.js +0 -171
  44. package/dist/models/DocumentationDepartmentsModel.d.ts +0 -13
  45. package/dist/models/DocumentationDepartmentsModel.js +0 -53
  46. package/dist/models/FolderModel.d.ts +0 -16
  47. package/dist/models/FolderModel.js +0 -85
  48. package/dist/models/PermissionModel.d.ts +0 -18
  49. package/dist/models/PermissionModel.js +0 -68
  50. package/dist/models/UUIDBaseModel.d.ts +0 -14
  51. package/dist/models/UUIDBaseModel.js +0 -66
package/.env CHANGED
@@ -1,20 +1,12 @@
1
- DB_HOST=164.52.222.169
2
- DB_PORT=5432
3
- DB_USER=postgres_admin_user
4
- DB_PASS=pg_admin_user_pwd_caa_fa_$%^&OIukhjgcvbn
5
- DB_NAME=CAA
6
-
7
- # DB_HOST=216.48.187.46
1
+ # DB_HOST=164.52.222.169
8
2
  # DB_PORT=5432
9
- # DB_USER=adminuser
10
- # DB_PASS=postgres_caa_fm_qa_34567
11
- # DB_NAME=CAA_QA
12
-
3
+ # DB_USER=postgres_admin_user
4
+ # DB_PASS=pg_admin_user_pwd_caa_fa_$%^&OIukhjgcvbn
5
+ # DB_NAME=CAA
13
6
 
14
7
 
15
-
16
- # DB_HOST=localhost
17
- # DB_PORT=5432
18
- # DB_USER=postgres
19
- # DB_PASS=stevejobs
20
- # DB_NAME=CAA
8
+ DB_HOST=localhost
9
+ DB_PORT=5432
10
+ DB_USER=postgres
11
+ DB_PASS=stevejobs
12
+ DB_NAME=CAA
@@ -16,6 +16,7 @@ export declare class AccommodationApproval extends BaseModel {
16
16
  approved_by: number;
17
17
  department_id: number;
18
18
  section_id: number;
19
+ is_allowed: boolean;
19
20
  level: number;
20
21
  approval_status: AccommodationApprovalStatus;
21
22
  comment: string;
@@ -62,6 +62,10 @@ __decorate([
62
62
  (0, typeorm_1.Column)({ type: 'int', nullable: true }),
63
63
  __metadata("design:type", Number)
64
64
  ], AccommodationApproval.prototype, "section_id", void 0);
65
+ __decorate([
66
+ (0, typeorm_1.Column)({ type: 'boolean', nullable: false, default: true }),
67
+ __metadata("design:type", Boolean)
68
+ ], AccommodationApproval.prototype, "is_allowed", void 0);
65
69
  __decorate([
66
70
  (0, typeorm_1.Column)({ type: 'int', nullable: false }),
67
71
  __metadata("design:type", Number)
@@ -20,6 +20,8 @@ export declare enum CyberSecurityAuditApplicationType {
20
20
  export declare class CyberSecurityAuditRequest extends BaseModel {
21
21
  req_user_department_id: number | null;
22
22
  req_user_section_id: number | null;
23
+ requesting_to_department_id: number | null;
24
+ requesting_to_section_id: number | null;
23
25
  req_user_position_id: number | null;
24
26
  service_id: number | null;
25
27
  sub_service_id: number | null;
@@ -35,5 +37,5 @@ export declare class CyberSecurityAuditRequest extends BaseModel {
35
37
  application_to_be_audited: CyberSecurityAuditApplicationType;
36
38
  application_to_be_audited_other: string | null;
37
39
  submission_date: Date;
38
- constructor(user_id: number, request_classification: CyberSecurityAuditClassification, application_to_be_audited: CyberSecurityAuditApplicationType, submission_date: Date, status?: CyberSecurityAuditRequestStatus, service_id?: number | null, sub_service_id?: number | null, req_user_department_id?: number | null, req_user_section_id?: number | null, req_user_position_id?: number | null, description?: string | null, reviewer_user_id?: number | null, assigned_to_user_id?: number | null, assigned_at?: Date | null, workflow_execution_id?: string | null, request_id?: string | null, application_to_be_audited_other?: string | null);
40
+ constructor(user_id: number, request_classification: CyberSecurityAuditClassification, application_to_be_audited: CyberSecurityAuditApplicationType, submission_date: Date, status?: CyberSecurityAuditRequestStatus, service_id?: number | null, sub_service_id?: number | null, req_user_department_id?: number | null, req_user_section_id?: number | null, requesting_to_department_id?: number | null, requesting_to_section_id?: number | null, req_user_position_id?: number | null, description?: string | null, reviewer_user_id?: number | null, assigned_to_user_id?: number | null, assigned_at?: Date | null, workflow_execution_id?: string | null, request_id?: string | null, application_to_be_audited_other?: string | null);
39
41
  }
@@ -34,7 +34,7 @@ var CyberSecurityAuditApplicationType;
34
34
  CyberSecurityAuditApplicationType["OTHERS"] = "Others";
35
35
  })(CyberSecurityAuditApplicationType || (exports.CyberSecurityAuditApplicationType = CyberSecurityAuditApplicationType = {}));
36
36
  let CyberSecurityAuditRequest = class CyberSecurityAuditRequest extends BaseModel_1.BaseModel {
37
- constructor(user_id, request_classification, application_to_be_audited, submission_date, status = CyberSecurityAuditRequestStatus.PENDING, service_id, sub_service_id, req_user_department_id, req_user_section_id, req_user_position_id, description, reviewer_user_id, assigned_to_user_id, assigned_at, workflow_execution_id, request_id, application_to_be_audited_other) {
37
+ constructor(user_id, request_classification, application_to_be_audited, submission_date, status = CyberSecurityAuditRequestStatus.PENDING, service_id, sub_service_id, req_user_department_id, req_user_section_id, requesting_to_department_id, requesting_to_section_id, req_user_position_id, description, reviewer_user_id, assigned_to_user_id, assigned_at, workflow_execution_id, request_id, application_to_be_audited_other) {
38
38
  super();
39
39
  this.user_id = user_id;
40
40
  this.request_classification = request_classification;
@@ -45,6 +45,8 @@ let CyberSecurityAuditRequest = class CyberSecurityAuditRequest extends BaseMode
45
45
  this.sub_service_id = sub_service_id || null;
46
46
  this.req_user_department_id = req_user_department_id || null;
47
47
  this.req_user_section_id = req_user_section_id || null;
48
+ this.requesting_to_department_id = requesting_to_department_id || null;
49
+ this.requesting_to_section_id = requesting_to_section_id || null;
48
50
  this.req_user_position_id = req_user_position_id || null;
49
51
  this.description = description || null;
50
52
  this.reviewer_user_id = reviewer_user_id || null;
@@ -64,6 +66,14 @@ __decorate([
64
66
  (0, typeorm_1.Column)({ type: "integer", nullable: true }),
65
67
  __metadata("design:type", Object)
66
68
  ], CyberSecurityAuditRequest.prototype, "req_user_section_id", void 0);
69
+ __decorate([
70
+ (0, typeorm_1.Column)({ type: "integer", nullable: true }),
71
+ __metadata("design:type", Object)
72
+ ], CyberSecurityAuditRequest.prototype, "requesting_to_department_id", void 0);
73
+ __decorate([
74
+ (0, typeorm_1.Column)({ type: "integer", nullable: true }),
75
+ __metadata("design:type", Object)
76
+ ], CyberSecurityAuditRequest.prototype, "requesting_to_section_id", void 0);
67
77
  __decorate([
68
78
  (0, typeorm_1.Column)({ type: "integer", nullable: true }),
69
79
  __metadata("design:type", Object)
@@ -126,5 +136,5 @@ __decorate([
126
136
  ], CyberSecurityAuditRequest.prototype, "submission_date", void 0);
127
137
  exports.CyberSecurityAuditRequest = CyberSecurityAuditRequest = __decorate([
128
138
  (0, typeorm_1.Entity)({ name: "cyber_security_audit_requests" }),
129
- __metadata("design:paramtypes", [Number, String, String, Date, String, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object])
139
+ __metadata("design:paramtypes", [Number, String, String, Date, String, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object])
130
140
  ], CyberSecurityAuditRequest);
@@ -0,0 +1,7 @@
1
+ import { BaseModel } from './BaseModel';
2
+ export declare class ITApprovalSettings extends BaseModel {
3
+ level: number;
4
+ approval_role_id: number;
5
+ workflow_id: number;
6
+ constructor(level: number, approval_role_id: number, workflow_id: number);
7
+ }
@@ -0,0 +1,40 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.ITApprovalSettings = void 0;
13
+ const typeorm_1 = require("typeorm");
14
+ const BaseModel_1 = require("./BaseModel");
15
+ let ITApprovalSettings = class ITApprovalSettings extends BaseModel_1.BaseModel {
16
+ constructor(level, approval_role_id, workflow_id) {
17
+ super();
18
+ this.level = level;
19
+ this.approval_role_id = approval_role_id;
20
+ this.workflow_id = workflow_id;
21
+ }
22
+ };
23
+ exports.ITApprovalSettings = ITApprovalSettings;
24
+ __decorate([
25
+ (0, typeorm_1.Column)({ type: 'int', nullable: false }),
26
+ __metadata("design:type", Number)
27
+ ], ITApprovalSettings.prototype, "level", void 0);
28
+ __decorate([
29
+ (0, typeorm_1.Column)({ type: 'int', nullable: false }),
30
+ __metadata("design:type", Number)
31
+ ], ITApprovalSettings.prototype, "approval_role_id", void 0);
32
+ __decorate([
33
+ (0, typeorm_1.Column)({ type: 'int', nullable: false }),
34
+ __metadata("design:type", Number)
35
+ ], ITApprovalSettings.prototype, "workflow_id", void 0);
36
+ exports.ITApprovalSettings = ITApprovalSettings = __decorate([
37
+ (0, typeorm_1.Entity)({ name: 'it_approval_settings' }),
38
+ (0, typeorm_1.Unique)(['workflow_id', 'level']),
39
+ __metadata("design:paramtypes", [Number, Number, Number])
40
+ ], ITApprovalSettings);
@@ -0,0 +1,6 @@
1
+ import { BaseModel } from './BaseModel';
2
+ export declare class ITServicesTypesMuscat extends BaseModel {
3
+ name: string;
4
+ name_in_arabic: string;
5
+ constructor(name: string, name_in_arabic: string);
6
+ }
@@ -0,0 +1,34 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.ITServicesTypesMuscat = void 0;
13
+ const typeorm_1 = require("typeorm");
14
+ const BaseModel_1 = require("./BaseModel");
15
+ let ITServicesTypesMuscat = class ITServicesTypesMuscat extends BaseModel_1.BaseModel {
16
+ constructor(name, name_in_arabic) {
17
+ super();
18
+ this.name = name;
19
+ this.name_in_arabic = name_in_arabic;
20
+ }
21
+ };
22
+ exports.ITServicesTypesMuscat = ITServicesTypesMuscat;
23
+ __decorate([
24
+ (0, typeorm_1.Column)({ nullable: false }),
25
+ __metadata("design:type", String)
26
+ ], ITServicesTypesMuscat.prototype, "name", void 0);
27
+ __decorate([
28
+ (0, typeorm_1.Column)({ nullable: false }),
29
+ __metadata("design:type", String)
30
+ ], ITServicesTypesMuscat.prototype, "name_in_arabic", void 0);
31
+ exports.ITServicesTypesMuscat = ITServicesTypesMuscat = __decorate([
32
+ (0, typeorm_1.Entity)({ name: 'it_services_types_muscat' }),
33
+ __metadata("design:paramtypes", [String, String])
34
+ ], ITServicesTypesMuscat);
@@ -0,0 +1,6 @@
1
+ import { BaseModel } from './BaseModel';
2
+ export declare class ITServicesTypesSalalah extends BaseModel {
3
+ name: string;
4
+ name_in_arabic: string;
5
+ constructor(name: string, name_in_arabic: string);
6
+ }
@@ -0,0 +1,34 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.ITServicesTypesSalalah = void 0;
13
+ const typeorm_1 = require("typeorm");
14
+ const BaseModel_1 = require("./BaseModel");
15
+ let ITServicesTypesSalalah = class ITServicesTypesSalalah extends BaseModel_1.BaseModel {
16
+ constructor(name, name_in_arabic) {
17
+ super();
18
+ this.name = name;
19
+ this.name_in_arabic = name_in_arabic;
20
+ }
21
+ };
22
+ exports.ITServicesTypesSalalah = ITServicesTypesSalalah;
23
+ __decorate([
24
+ (0, typeorm_1.Column)({ nullable: false }),
25
+ __metadata("design:type", String)
26
+ ], ITServicesTypesSalalah.prototype, "name", void 0);
27
+ __decorate([
28
+ (0, typeorm_1.Column)({ nullable: false }),
29
+ __metadata("design:type", String)
30
+ ], ITServicesTypesSalalah.prototype, "name_in_arabic", void 0);
31
+ exports.ITServicesTypesSalalah = ITServicesTypesSalalah = __decorate([
32
+ (0, typeorm_1.Entity)({ name: 'it_services_types_salalah' }),
33
+ __metadata("design:paramtypes", [String, String])
34
+ ], ITServicesTypesSalalah);
@@ -0,0 +1,9 @@
1
+ import { BaseModel } from './BaseModel';
2
+ export declare class Workflows extends BaseModel {
3
+ name: string;
4
+ service_id: number;
5
+ sub_service_id: number;
6
+ request_for: string;
7
+ levels: number;
8
+ constructor(name: string, service_id: number, sub_service_id: number, request_for: string, levels: number);
9
+ }
@@ -0,0 +1,31 @@
1
+ "use strict";
2
+ // import { Column, Entity, Unique } from "typeorm";
3
+ // import { BaseModel } from './BaseModel';
4
+ // @Entity({ name: 'workflows' })
5
+ // @Unique(['service_id', 'sub_service_id', 'request_for'])
6
+ // export class Workflows extends BaseModel {
7
+ // @Column({ type: 'varchar', length: 100, nullable: false })
8
+ // name: string;
9
+ // @Column({ type: 'bigint', nullable: false })
10
+ // service_id: number;
11
+ // @Column({ type: 'bigint', nullable: false })
12
+ // sub_service_id: number;
13
+ // @Column({ type: 'varchar', length: 20, nullable: false })
14
+ // request_for: string; // 'Self' | 'Behalf of' | 'Internal'
15
+ // @Column({ type: 'int', nullable: false })
16
+ // levels: number;
17
+ // constructor(
18
+ // name: string,
19
+ // service_id: number,
20
+ // sub_service_id: number,
21
+ // request_for: string,
22
+ // levels: number,
23
+ // ) {
24
+ // super();
25
+ // this.name = name;
26
+ // this.service_id = service_id;
27
+ // this.sub_service_id = sub_service_id;
28
+ // this.request_for = request_for;
29
+ // this.levels = levels;
30
+ // }
31
+ // }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platform-modules/civil-aviation-authority",
3
- "version": "2.3.130",
3
+ "version": "2.3.131",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {