@platform-modules/civil-aviation-authority 2.3.172 → 2.3.173
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 +10 -10
- package/dist/data-source.js +2 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/models/ScholarshipAttendeeModel.d.ts +6 -0
- package/dist/models/{ITServicesTypesMuscatModel.js → ScholarshipAttendeeModel.js} +15 -17
- package/dist/models/ScholarshipRequestModel.d.ts +10 -0
- package/dist/models/ScholarshipRequestModel.js +36 -0
- package/dist/models/user.d.ts +3 -3
- package/dist/models/user.js +4 -4
- package/package.json +1 -1
- package/src/data-source.ts +2 -0
- package/src/index.ts +1 -0
- package/src/models/AccommodationApprovalModel.ts +8 -8
- package/src/models/AccommodationRequestModel.ts +8 -8
- package/src/models/AnnualIncrementRequestEmployeeModel.ts +65 -65
- package/src/models/AnnualIncrementRequestModel.ts +25 -25
- package/src/models/AppealAgainstAdministrativeDecisionRequestModel.ts +23 -23
- package/src/models/CAAServices.ts +33 -33
- package/src/models/CAASubServices.ts +33 -33
- package/src/models/CAIRatingMasterModel.ts +39 -39
- package/src/models/CSRMBusinessImpactRatingMasterModel.ts +25 -25
- package/src/models/CSRMLikelihoodMasterModel.ts +25 -25
- package/src/models/CashAllowanceLeaveRequestModel.ts +11 -11
- package/src/models/HrServiceRequestModel.ts +193 -193
- package/src/models/PerformanceCyclePeriodModel.ts +26 -26
- package/src/models/PerformanceGoalMasterModel.ts +27 -27
- package/src/models/PerformanceManagementRequestGoalModel.ts +46 -46
- package/src/models/PerformanceManagementRequestModel.ts +14 -14
- package/src/models/PromotionRequestModel.ts +11 -11
- package/src/models/ScholarshipAttendeeModel.ts +14 -0
- package/src/models/ScholarshipRequestModel.ts +28 -0
- package/src/models/UserSkillModel.ts +56 -56
- package/src/models/user.ts +5 -5
- package/dist/models/ITApprovalSettings.d.ts +0 -7
- package/dist/models/ITApprovalSettings.js +0 -40
- package/dist/models/ITServicesTypesMuscatModel.d.ts +0 -6
- package/dist/models/ITServicesTypesSalalahModel.d.ts +0 -6
- package/dist/models/ITServicesTypesSalalahModel.js +0 -34
- package/dist/models/Workflows.d.ts +0 -9
- package/dist/models/Workflows.js +0 -31
|
@@ -9,20 +9,20 @@ export class CAASubServices extends BaseModel {
|
|
|
9
9
|
@Column({ type: 'varchar', length: 64, nullable: true, unique: true })
|
|
10
10
|
code: string | null;
|
|
11
11
|
|
|
12
|
-
@Column({ nullable: false })
|
|
13
|
-
sub_service_name: string;
|
|
14
|
-
|
|
15
|
-
@Column({ type: "text", nullable: true })
|
|
16
|
-
arabic_name: string | null;
|
|
17
|
-
|
|
18
|
-
@Column({ nullable: false })
|
|
19
|
-
description: string;
|
|
20
|
-
|
|
21
|
-
@Column({ type: "text", nullable: true })
|
|
22
|
-
arabic_description: string | null;
|
|
23
|
-
|
|
24
|
-
@Column({ nullable: true })
|
|
25
|
-
service_id: number;
|
|
12
|
+
@Column({ nullable: false })
|
|
13
|
+
sub_service_name: string;
|
|
14
|
+
|
|
15
|
+
@Column({ type: "text", nullable: true })
|
|
16
|
+
arabic_name: string | null;
|
|
17
|
+
|
|
18
|
+
@Column({ nullable: false })
|
|
19
|
+
description: string;
|
|
20
|
+
|
|
21
|
+
@Column({ type: "text", nullable: true })
|
|
22
|
+
arabic_description: string | null;
|
|
23
|
+
|
|
24
|
+
@Column({ nullable: true })
|
|
25
|
+
service_id: number;
|
|
26
26
|
|
|
27
27
|
@ManyToOne(() => CAAServices)
|
|
28
28
|
@JoinColumn({ name: 'service_id' })
|
|
@@ -31,22 +31,22 @@ export class CAASubServices extends BaseModel {
|
|
|
31
31
|
@Column({ nullable: true })
|
|
32
32
|
logo_url: string;
|
|
33
33
|
|
|
34
|
-
constructor(
|
|
35
|
-
sub_service_name: string,
|
|
36
|
-
description: string,
|
|
37
|
-
arabic_name: string | null,
|
|
38
|
-
arabic_description: string | null,
|
|
39
|
-
service_id: number,
|
|
40
|
-
logo_url: string,
|
|
41
|
-
code: string | null = null
|
|
42
|
-
) {
|
|
43
|
-
super();
|
|
44
|
-
this.sub_service_name = sub_service_name
|
|
45
|
-
this.arabic_name = arabic_name || null;
|
|
46
|
-
this.description = description
|
|
47
|
-
this.arabic_description = arabic_description || null;
|
|
48
|
-
this.service_id = service_id
|
|
49
|
-
this.logo_url = logo_url
|
|
50
|
-
this.code = code
|
|
51
|
-
}
|
|
52
|
-
}
|
|
34
|
+
constructor(
|
|
35
|
+
sub_service_name: string,
|
|
36
|
+
description: string,
|
|
37
|
+
arabic_name: string | null,
|
|
38
|
+
arabic_description: string | null,
|
|
39
|
+
service_id: number,
|
|
40
|
+
logo_url: string,
|
|
41
|
+
code: string | null = null
|
|
42
|
+
) {
|
|
43
|
+
super();
|
|
44
|
+
this.sub_service_name = sub_service_name
|
|
45
|
+
this.arabic_name = arabic_name || null;
|
|
46
|
+
this.description = description
|
|
47
|
+
this.arabic_description = arabic_description || null;
|
|
48
|
+
this.service_id = service_id
|
|
49
|
+
this.logo_url = logo_url
|
|
50
|
+
this.code = code
|
|
51
|
+
}
|
|
52
|
+
}
|
|
@@ -1,39 +1,39 @@
|
|
|
1
|
-
import { Column, Entity } from "typeorm";
|
|
2
|
-
import { BaseModel } from "./BaseModel";
|
|
3
|
-
|
|
4
|
-
@Entity({ name: "cai_rating_master" })
|
|
5
|
-
export class CAIRatingMaster extends BaseModel {
|
|
6
|
-
@Column({ type: "text", nullable: false })
|
|
7
|
-
confidentiality: string;
|
|
8
|
-
|
|
9
|
-
@Column({ type: "text", nullable: false })
|
|
10
|
-
integrity: string;
|
|
11
|
-
|
|
12
|
-
@Column({ type: "text", nullable: false })
|
|
13
|
-
availability: string;
|
|
14
|
-
|
|
15
|
-
@Column({ type: "varchar", length: 100, nullable: false })
|
|
16
|
-
rating: string;
|
|
17
|
-
|
|
18
|
-
@Column({ type: "varchar", length: 100, nullable: false })
|
|
19
|
-
value: string;
|
|
20
|
-
|
|
21
|
-
@Column({ type: "boolean", default: true })
|
|
22
|
-
is_active: boolean;
|
|
23
|
-
|
|
24
|
-
constructor(
|
|
25
|
-
confidentiality: string,
|
|
26
|
-
integrity: string,
|
|
27
|
-
availability: string,
|
|
28
|
-
rating: string,
|
|
29
|
-
value: string
|
|
30
|
-
) {
|
|
31
|
-
super();
|
|
32
|
-
this.confidentiality = confidentiality;
|
|
33
|
-
this.integrity = integrity;
|
|
34
|
-
this.availability = availability;
|
|
35
|
-
this.rating = rating;
|
|
36
|
-
this.value = value;
|
|
37
|
-
this.is_active = true;
|
|
38
|
-
}
|
|
39
|
-
}
|
|
1
|
+
import { Column, Entity } from "typeorm";
|
|
2
|
+
import { BaseModel } from "./BaseModel";
|
|
3
|
+
|
|
4
|
+
@Entity({ name: "cai_rating_master" })
|
|
5
|
+
export class CAIRatingMaster extends BaseModel {
|
|
6
|
+
@Column({ type: "text", nullable: false })
|
|
7
|
+
confidentiality: string;
|
|
8
|
+
|
|
9
|
+
@Column({ type: "text", nullable: false })
|
|
10
|
+
integrity: string;
|
|
11
|
+
|
|
12
|
+
@Column({ type: "text", nullable: false })
|
|
13
|
+
availability: string;
|
|
14
|
+
|
|
15
|
+
@Column({ type: "varchar", length: 100, nullable: false })
|
|
16
|
+
rating: string;
|
|
17
|
+
|
|
18
|
+
@Column({ type: "varchar", length: 100, nullable: false })
|
|
19
|
+
value: string;
|
|
20
|
+
|
|
21
|
+
@Column({ type: "boolean", default: true })
|
|
22
|
+
is_active: boolean;
|
|
23
|
+
|
|
24
|
+
constructor(
|
|
25
|
+
confidentiality: string,
|
|
26
|
+
integrity: string,
|
|
27
|
+
availability: string,
|
|
28
|
+
rating: string,
|
|
29
|
+
value: string
|
|
30
|
+
) {
|
|
31
|
+
super();
|
|
32
|
+
this.confidentiality = confidentiality;
|
|
33
|
+
this.integrity = integrity;
|
|
34
|
+
this.availability = availability;
|
|
35
|
+
this.rating = rating;
|
|
36
|
+
this.value = value;
|
|
37
|
+
this.is_active = true;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
import { Column, Entity } from "typeorm";
|
|
2
|
-
import { BaseModel } from "./BaseModel";
|
|
3
|
-
|
|
4
|
-
@Entity({ name: "csrm_business_impact_rating_master" })
|
|
5
|
-
export class CSRMBusinessImpactRatingMaster extends BaseModel {
|
|
6
|
-
@Column({ type: "text", nullable: false })
|
|
7
|
-
guidelines: string;
|
|
8
|
-
|
|
9
|
-
@Column({ type: "varchar", length: 100, nullable: false })
|
|
10
|
-
rating: string;
|
|
11
|
-
|
|
12
|
-
@Column({ type: "varchar", length: 100, nullable: false })
|
|
13
|
-
value: string;
|
|
14
|
-
|
|
15
|
-
@Column({ type: "boolean", default: true })
|
|
16
|
-
is_active: boolean;
|
|
17
|
-
|
|
18
|
-
constructor(guidelines: string, rating: string, value: string) {
|
|
19
|
-
super();
|
|
20
|
-
this.guidelines = guidelines;
|
|
21
|
-
this.rating = rating;
|
|
22
|
-
this.value = value;
|
|
23
|
-
this.is_active = true;
|
|
24
|
-
}
|
|
25
|
-
}
|
|
1
|
+
import { Column, Entity } from "typeorm";
|
|
2
|
+
import { BaseModel } from "./BaseModel";
|
|
3
|
+
|
|
4
|
+
@Entity({ name: "csrm_business_impact_rating_master" })
|
|
5
|
+
export class CSRMBusinessImpactRatingMaster extends BaseModel {
|
|
6
|
+
@Column({ type: "text", nullable: false })
|
|
7
|
+
guidelines: string;
|
|
8
|
+
|
|
9
|
+
@Column({ type: "varchar", length: 100, nullable: false })
|
|
10
|
+
rating: string;
|
|
11
|
+
|
|
12
|
+
@Column({ type: "varchar", length: 100, nullable: false })
|
|
13
|
+
value: string;
|
|
14
|
+
|
|
15
|
+
@Column({ type: "boolean", default: true })
|
|
16
|
+
is_active: boolean;
|
|
17
|
+
|
|
18
|
+
constructor(guidelines: string, rating: string, value: string) {
|
|
19
|
+
super();
|
|
20
|
+
this.guidelines = guidelines;
|
|
21
|
+
this.rating = rating;
|
|
22
|
+
this.value = value;
|
|
23
|
+
this.is_active = true;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
import { Column, Entity } from "typeorm";
|
|
2
|
-
import { BaseModel } from "./BaseModel";
|
|
3
|
-
|
|
4
|
-
@Entity({ name: "csrm_likelihood_master" })
|
|
5
|
-
export class CSRMLikelihoodMaster extends BaseModel {
|
|
6
|
-
@Column({ type: "text", nullable: false })
|
|
7
|
-
guidelines: string;
|
|
8
|
-
|
|
9
|
-
@Column({ type: "varchar", length: 100, nullable: false })
|
|
10
|
-
rating: string;
|
|
11
|
-
|
|
12
|
-
@Column({ type: "varchar", length: 100, nullable: false })
|
|
13
|
-
value: string;
|
|
14
|
-
|
|
15
|
-
@Column({ type: "boolean", default: true })
|
|
16
|
-
is_active: boolean;
|
|
17
|
-
|
|
18
|
-
constructor(guidelines: string, rating: string, value: string) {
|
|
19
|
-
super();
|
|
20
|
-
this.guidelines = guidelines;
|
|
21
|
-
this.rating = rating;
|
|
22
|
-
this.value = value;
|
|
23
|
-
this.is_active = true;
|
|
24
|
-
}
|
|
25
|
-
}
|
|
1
|
+
import { Column, Entity } from "typeorm";
|
|
2
|
+
import { BaseModel } from "./BaseModel";
|
|
3
|
+
|
|
4
|
+
@Entity({ name: "csrm_likelihood_master" })
|
|
5
|
+
export class CSRMLikelihoodMaster extends BaseModel {
|
|
6
|
+
@Column({ type: "text", nullable: false })
|
|
7
|
+
guidelines: string;
|
|
8
|
+
|
|
9
|
+
@Column({ type: "varchar", length: 100, nullable: false })
|
|
10
|
+
rating: string;
|
|
11
|
+
|
|
12
|
+
@Column({ type: "varchar", length: 100, nullable: false })
|
|
13
|
+
value: string;
|
|
14
|
+
|
|
15
|
+
@Column({ type: "boolean", default: true })
|
|
16
|
+
is_active: boolean;
|
|
17
|
+
|
|
18
|
+
constructor(guidelines: string, rating: string, value: string) {
|
|
19
|
+
super();
|
|
20
|
+
this.guidelines = guidelines;
|
|
21
|
+
this.rating = rating;
|
|
22
|
+
this.value = value;
|
|
23
|
+
this.is_active = true;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
@@ -45,12 +45,12 @@ export class CashAllowanceLeaveRequest extends BaseModel {
|
|
|
45
45
|
@Column({ type: "timestamp", nullable: true })
|
|
46
46
|
assigned_at: Date | null;
|
|
47
47
|
|
|
48
|
-
@Column({ type: "varchar", length: 255, nullable: true })
|
|
49
|
-
workflow_execution_id: string | null;
|
|
50
|
-
|
|
51
|
-
@Column({ type: "varchar", length: 255, nullable: true })
|
|
52
|
-
reference_number: string | null;
|
|
53
|
-
|
|
48
|
+
@Column({ type: "varchar", length: 255, nullable: true })
|
|
49
|
+
workflow_execution_id: string | null;
|
|
50
|
+
|
|
51
|
+
@Column({ type: "varchar", length: 255, nullable: true })
|
|
52
|
+
reference_number: string | null;
|
|
53
|
+
|
|
54
54
|
// Cash Allowance for Leave specific fields
|
|
55
55
|
@Column({ type: "varchar", length: 255, nullable: false })
|
|
56
56
|
employee_name: string;
|
|
@@ -112,11 +112,11 @@ export class CashAllowanceLeaveRequest extends BaseModel {
|
|
|
112
112
|
this.req_user_position_id = req_user_position_id || null;
|
|
113
113
|
this.description = description || null;
|
|
114
114
|
this.reviewer_user_id = reviewer_user_id || null;
|
|
115
|
-
this.assigned_to_user_id = assigned_to_user_id || null;
|
|
116
|
-
this.assigned_at = assigned_at || null;
|
|
117
|
-
this.workflow_execution_id = workflow_execution_id || null;
|
|
118
|
-
this.reference_number = null;
|
|
119
|
-
this.employee_name = employee_name || "";
|
|
115
|
+
this.assigned_to_user_id = assigned_to_user_id || null;
|
|
116
|
+
this.assigned_at = assigned_at || null;
|
|
117
|
+
this.workflow_execution_id = workflow_execution_id || null;
|
|
118
|
+
this.reference_number = null;
|
|
119
|
+
this.employee_name = employee_name || "";
|
|
120
120
|
this.employee_id = employee_id || "";
|
|
121
121
|
this.job_title = job_title || "";
|
|
122
122
|
this.salary_grade = salary_grade || "";
|