@platform-modules/civil-aviation-authority 2.3.215 → 2.3.220

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 (91) hide show
  1. package/.env +22 -7
  2. package/dist/index.d.ts +1 -0
  3. package/dist/index.js +1 -0
  4. package/dist/models/DocumentMetadataModel.d.ts +45 -0
  5. package/dist/models/DocumentMetadataModel.js +171 -0
  6. package/dist/models/DocumentationDepartmentsModel.d.ts +13 -0
  7. package/dist/models/DocumentationDepartmentsModel.js +53 -0
  8. package/dist/models/FolderModel.d.ts +16 -0
  9. package/dist/models/FolderModel.js +85 -0
  10. package/dist/models/ImportExportMaterialModels.d.ts +92 -0
  11. package/dist/models/ImportExportMaterialModels.js +307 -0
  12. package/dist/models/PermissionModel.d.ts +18 -0
  13. package/dist/models/PermissionModel.js +68 -0
  14. package/dist/models/SecurityAccessApprovalModel.d.ts +23 -0
  15. package/dist/models/SecurityAccessApprovalModel.js +82 -0
  16. package/dist/models/SecurityAccessAttachmentModel.d.ts +12 -0
  17. package/dist/models/SecurityAccessAttachmentModel.js +56 -0
  18. package/dist/models/SecurityAccessChatModel.d.ts +12 -0
  19. package/dist/models/SecurityAccessChatModel.js +56 -0
  20. package/dist/models/SecurityAccessRequestModel.d.ts +25 -0
  21. package/dist/models/SecurityAccessRequestModel.js +80 -0
  22. package/dist/models/SecurityAccessWorkflowModel.d.ts +24 -0
  23. package/dist/models/SecurityAccessWorkflowModel.js +84 -0
  24. package/dist/models/ServiceExtensionAfterAge60Models.d.ts +93 -0
  25. package/dist/models/ServiceExtensionAfterAge60Models.js +312 -0
  26. package/dist/models/ServiceSlaApprovalModel.js +8 -0
  27. package/dist/models/SlaRequestModel.d.ts +28 -0
  28. package/dist/models/SlaRequestModel.js +84 -0
  29. package/dist/models/UUIDBaseModel.d.ts +14 -0
  30. package/dist/models/UUIDBaseModel.js +66 -0
  31. package/dist/models/WorkingHoursExtensionModels.d.ts +88 -0
  32. package/dist/models/WorkingHoursExtensionModels.js +295 -0
  33. package/package.json +1 -1
  34. package/src/index.ts +464 -463
  35. package/src/models/AccessCardRequestModel.ts +135 -135
  36. package/src/models/AccommodationApprovalModel.ts +8 -8
  37. package/src/models/AccommodationRequestModel.ts +8 -8
  38. package/src/models/AirportEntryPermitModel.ts +276 -276
  39. package/src/models/AnnualIncrementRequestEmployeeModel.ts +65 -65
  40. package/src/models/AnnualIncrementRequestModel.ts +25 -25
  41. package/src/models/AnnualTrainingPlanRequestModel.ts +153 -153
  42. package/src/models/AppealAgainstAdministrativeDecisionRequestModel.ts +23 -23
  43. package/src/models/CAAServices.ts +33 -33
  44. package/src/models/CAASubServices.ts +33 -33
  45. package/src/models/CAIRatingMasterModel.ts +39 -39
  46. package/src/models/CSRMBusinessImpactRatingMasterModel.ts +25 -25
  47. package/src/models/CSRMLikelihoodMasterModel.ts +25 -25
  48. package/src/models/CashAllowanceLeaveRequestModel.ts +11 -11
  49. package/src/models/DepartmentsModel.ts +25 -25
  50. package/src/models/DocumentDriveModel.ts +28 -28
  51. package/src/models/DocumentFolderModel.ts +45 -45
  52. package/src/models/HousingContractCancelApprovalModel.ts +64 -64
  53. package/src/models/HousingContractCancelChatModel.ts +56 -56
  54. package/src/models/HousingContractRenewalApprovalModel.ts +64 -64
  55. package/src/models/HousingContractRenewalChatModel.ts +59 -59
  56. package/src/models/HrServiceRequestModel.ts +193 -193
  57. package/src/models/HumanResourceAnnualPlanningRequestModel.ts +84 -84
  58. package/src/models/ITRequestAttachmentModel.ts +73 -73
  59. package/src/models/ITRequestChatModel.ts +74 -74
  60. package/src/models/ItApprovalsModel.ts +84 -84
  61. package/src/models/ItWorkflowModel.ts +55 -55
  62. package/src/models/LegalConsultationApprovalModel.ts +65 -65
  63. package/src/models/MissionTravelPassportExpiryNotificationConfigModel.ts +36 -36
  64. package/src/models/PerformanceCyclePeriodModel.ts +26 -26
  65. package/src/models/PerformanceGoalMasterModel.ts +27 -27
  66. package/src/models/PerformanceManagementRequestGoalModel.ts +46 -46
  67. package/src/models/PerformanceManagementRequestModel.ts +14 -14
  68. package/src/models/PromotionRequestModel.ts +11 -11
  69. package/src/models/ResidentialUnitRentalApprovalModel.ts +143 -143
  70. package/src/models/ResidentialUnitRentalChatModel.ts +56 -56
  71. package/src/models/ResidentialUnitRentalRequestModel.ts +218 -218
  72. package/src/models/RespondToEnquiriesRequestModel.ts +31 -31
  73. package/src/models/ServiceSlaApprovalModel.ts +52 -44
  74. package/src/models/ServicesNotificationConfigModel.ts +55 -55
  75. package/src/models/SkillsEnhancementRequestModel.ts +17 -17
  76. package/src/models/SlaRequestModel.ts +64 -0
  77. package/src/models/StudyLeaveRequestModel.ts +144 -144
  78. package/src/models/TrainingRequestModel.ts +164 -164
  79. package/src/models/TrainingRoomBookingRequestModel.ts +142 -142
  80. package/src/models/TrainingRoomNotificationConfigModel.ts +30 -30
  81. package/src/models/UserSkillModel.ts +56 -56
  82. package/src/models/role.ts +34 -34
  83. package/src/models/user.ts +233 -233
  84. package/dist/models/ITApprovalSettings.d.ts +0 -7
  85. package/dist/models/ITApprovalSettings.js +0 -40
  86. package/dist/models/ITServicesTypesMuscatModel.d.ts +0 -6
  87. package/dist/models/ITServicesTypesMuscatModel.js +0 -34
  88. package/dist/models/ITServicesTypesSalalahModel.d.ts +0 -6
  89. package/dist/models/ITServicesTypesSalalahModel.js +0 -34
  90. package/dist/models/Workflows.d.ts +0 -9
  91. package/dist/models/Workflows.js +0 -31
@@ -1,193 +1,193 @@
1
- import { Column, Entity } from "typeorm";
2
- import { BaseModel } from "./BaseModel";
3
-
4
- export enum HrServiceRequestStatus {
5
- PENDING = "Pending",
6
- ASSIGNED = "Assigned",
7
- IN_PROGRESS = "In Progress",
8
- COMPLETED = "Completed",
9
- APPROVED = "Approved",
10
- REJECTED = "Rejected"
11
- }
12
-
13
- @Entity({ name: "hr_service_requests" })
14
- export class HrServiceRequest extends BaseModel {
15
- @Column({ type: "integer", nullable: true })
16
- req_user_department_id: number | null;
17
-
18
- @Column({ type: "integer", nullable: true })
19
- req_user_section_id: number | null;
20
-
21
- @Column({ type: "integer", nullable: true })
22
- req_user_position_id: number | null;
23
-
24
- @Column({ type: "integer", nullable: true })
25
- service_id: number | null;
26
-
27
- @Column({ type: "integer", nullable: true })
28
- sub_service_id: number | null;
29
-
30
- @Column({ type: "integer", nullable: false })
31
- user_id: number;
32
-
33
- @Column({ type: "text", nullable: true })
34
- description: string | null;
35
-
36
- @Column({ type: "enum", enum: HrServiceRequestStatus, default: HrServiceRequestStatus.PENDING, nullable: false })
37
- status: HrServiceRequestStatus;
38
-
39
- @Column({ type: "integer", nullable: true })
40
- reviewer_user_id: number | null;
41
-
42
- @Column({ type: "integer", nullable: true })
43
- assigned_to_user_id: number | null;
44
-
45
- @Column({ type: "timestamp", nullable: true })
46
- assigned_at: Date | null;
47
-
48
- @Column({ type: "varchar", length: 255, nullable: true })
49
- workflow_execution_id: string | null;
50
-
51
- // Assignment Decision specific fields
52
- @Column({ type: "varchar", length: 255, nullable: false })
53
- assigned_employee_name: string;
54
-
55
- @Column({ type: "varchar", length: 50, nullable: true })
56
- civil_id_card_number: string | null;
57
-
58
- @Column({ type: "varchar", length: 100, nullable: false })
59
- employee_id: string;
60
-
61
- @Column({ type: "varchar", length: 255, nullable: false })
62
- current_job_position: string;
63
-
64
- @Column({ type: "varchar", length: 255, nullable: false })
65
- assigned_job_position: string;
66
-
67
- @Column({ type: "date", nullable: false })
68
- start_date: Date;
69
-
70
- @Column({ type: "date", nullable: false })
71
- end_date: Date;
72
-
73
- @Column({ type: "decimal", precision: 5, scale: 2, nullable: true })
74
- assignment_allowance: number | null; // 0-100 percentage
75
-
76
- @Column({ type: "varchar", length: 20, nullable: false })
77
- phone_number: string;
78
-
79
- @Column({ type: "text", nullable: false })
80
- reason_for_request: string;
81
-
82
- // Replacement tracking fields - Store REPLACEMENT details (ORIGINAL details above remain unchanged)
83
- @Column({ type: "boolean", default: false, nullable: false })
84
- is_replaced: boolean;
85
-
86
- @Column({ type: "varchar", length: 255, nullable: true })
87
- replacement_employee_name: string | null;
88
-
89
- @Column({ type: "varchar", length: 100, nullable: true })
90
- replacement_employee_id: string | null;
91
-
92
- @Column({ type: "varchar", length: 50, nullable: true })
93
- replacement_civil_id_card_number: string | null;
94
-
95
- @Column({ type: "varchar", length: 255, nullable: true })
96
- replacement_current_job_position: string | null;
97
-
98
- @Column({ type: "varchar", length: 255, nullable: true })
99
- replacement_assigned_job_position: string | null;
100
-
101
- @Column({ type: "date", nullable: true })
102
- replacement_start_date: Date | null;
103
-
104
- @Column({ type: "date", nullable: true })
105
- replacement_end_date: Date | null;
106
-
107
- @Column({ type: "decimal", precision: 5, scale: 2, nullable: true })
108
- replacement_assignment_allowance: number | null;
109
-
110
- @Column({ type: "text", nullable: true })
111
- replacement_reason: string | null;
112
-
113
- @Column({ type: "integer", nullable: true })
114
- replaced_by_user_id: number | null;
115
-
116
- @Column({ type: "timestamp", nullable: true })
117
- replaced_at: Date | null;
118
-
119
- constructor(
120
- user_id: number,
121
- status: HrServiceRequestStatus = HrServiceRequestStatus.PENDING,
122
- service_id?: number | null,
123
- sub_service_id?: number | null,
124
- req_user_department_id?: number | null,
125
- req_user_section_id?: number | null,
126
- req_user_position_id?: number | null,
127
- description?: string | null,
128
- reviewer_user_id?: number | null,
129
- assigned_to_user_id?: number | null,
130
- assigned_at?: Date | null,
131
- workflow_execution_id?: string | null,
132
- assigned_employee_name?: string,
133
- civil_id_card_number?: string | null,
134
- employee_id?: string,
135
- current_job_position?: string,
136
- assigned_job_position?: string,
137
- start_date?: Date,
138
- end_date?: Date,
139
- assignment_allowance?: number | null,
140
- phone_number?: string,
141
- reason_for_request?: string,
142
- is_replaced?: boolean,
143
- replacement_employee_name?: string | null,
144
- replacement_employee_id?: string | null,
145
- replacement_civil_id_card_number?: string | null,
146
- replacement_current_job_position?: string | null,
147
- replacement_assigned_job_position?: string | null,
148
- replacement_start_date?: Date | null,
149
- replacement_end_date?: Date | null,
150
- replacement_assignment_allowance?: number | null,
151
- replacement_reason?: string | null,
152
- replaced_by_user_id?: number | null,
153
- replaced_at?: Date | null
154
- ) {
155
- super();
156
- this.user_id = user_id;
157
- this.status = status;
158
- this.service_id = service_id || null;
159
- this.sub_service_id = sub_service_id || null;
160
- this.req_user_department_id = req_user_department_id || null;
161
- this.req_user_section_id = req_user_section_id || null;
162
- this.req_user_position_id = req_user_position_id || null;
163
- this.description = description || null;
164
- this.reviewer_user_id = reviewer_user_id || null;
165
- this.assigned_to_user_id = assigned_to_user_id || null;
166
- this.assigned_at = assigned_at || null;
167
- this.workflow_execution_id = workflow_execution_id || null;
168
- this.assigned_employee_name = assigned_employee_name || "";
169
- this.civil_id_card_number = civil_id_card_number || null;
170
- this.employee_id = employee_id || "";
171
- this.current_job_position = current_job_position || "";
172
- this.assigned_job_position = assigned_job_position || "";
173
- this.start_date = start_date || new Date();
174
- this.end_date = end_date || new Date();
175
- this.assignment_allowance = assignment_allowance || null;
176
- this.phone_number = phone_number || "";
177
- this.reason_for_request = reason_for_request || "";
178
- // Replacement fields initialization
179
- this.is_replaced = is_replaced || false;
180
- this.replacement_employee_name = replacement_employee_name || null;
181
- this.replacement_employee_id = replacement_employee_id || null;
182
- this.replacement_civil_id_card_number = replacement_civil_id_card_number || null;
183
- this.replacement_current_job_position = replacement_current_job_position || null;
184
- this.replacement_assigned_job_position = replacement_assigned_job_position || null;
185
- this.replacement_start_date = replacement_start_date || null;
186
- this.replacement_end_date = replacement_end_date || null;
187
- this.replacement_assignment_allowance = replacement_assignment_allowance || null;
188
- this.replacement_reason = replacement_reason || null;
189
- this.replaced_by_user_id = replaced_by_user_id || null;
190
- this.replaced_at = replaced_at || null;
191
- }
192
- }
193
-
1
+ import { Column, Entity } from "typeorm";
2
+ import { BaseModel } from "./BaseModel";
3
+
4
+ export enum HrServiceRequestStatus {
5
+ PENDING = "Pending",
6
+ ASSIGNED = "Assigned",
7
+ IN_PROGRESS = "In Progress",
8
+ COMPLETED = "Completed",
9
+ APPROVED = "Approved",
10
+ REJECTED = "Rejected"
11
+ }
12
+
13
+ @Entity({ name: "hr_service_requests" })
14
+ export class HrServiceRequest extends BaseModel {
15
+ @Column({ type: "integer", nullable: true })
16
+ req_user_department_id: number | null;
17
+
18
+ @Column({ type: "integer", nullable: true })
19
+ req_user_section_id: number | null;
20
+
21
+ @Column({ type: "integer", nullable: true })
22
+ req_user_position_id: number | null;
23
+
24
+ @Column({ type: "integer", nullable: true })
25
+ service_id: number | null;
26
+
27
+ @Column({ type: "integer", nullable: true })
28
+ sub_service_id: number | null;
29
+
30
+ @Column({ type: "integer", nullable: false })
31
+ user_id: number;
32
+
33
+ @Column({ type: "text", nullable: true })
34
+ description: string | null;
35
+
36
+ @Column({ type: "enum", enum: HrServiceRequestStatus, default: HrServiceRequestStatus.PENDING, nullable: false })
37
+ status: HrServiceRequestStatus;
38
+
39
+ @Column({ type: "integer", nullable: true })
40
+ reviewer_user_id: number | null;
41
+
42
+ @Column({ type: "integer", nullable: true })
43
+ assigned_to_user_id: number | null;
44
+
45
+ @Column({ type: "timestamp", nullable: true })
46
+ assigned_at: Date | null;
47
+
48
+ @Column({ type: "varchar", length: 255, nullable: true })
49
+ workflow_execution_id: string | null;
50
+
51
+ // Assignment Decision specific fields
52
+ @Column({ type: "varchar", length: 255, nullable: false })
53
+ assigned_employee_name: string;
54
+
55
+ @Column({ type: "varchar", length: 50, nullable: true })
56
+ civil_id_card_number: string | null;
57
+
58
+ @Column({ type: "varchar", length: 100, nullable: false })
59
+ employee_id: string;
60
+
61
+ @Column({ type: "varchar", length: 255, nullable: false })
62
+ current_job_position: string;
63
+
64
+ @Column({ type: "varchar", length: 255, nullable: false })
65
+ assigned_job_position: string;
66
+
67
+ @Column({ type: "date", nullable: false })
68
+ start_date: Date;
69
+
70
+ @Column({ type: "date", nullable: false })
71
+ end_date: Date;
72
+
73
+ @Column({ type: "decimal", precision: 5, scale: 2, nullable: true })
74
+ assignment_allowance: number | null; // 0-100 percentage
75
+
76
+ @Column({ type: "varchar", length: 20, nullable: false })
77
+ phone_number: string;
78
+
79
+ @Column({ type: "text", nullable: false })
80
+ reason_for_request: string;
81
+
82
+ // Replacement tracking fields - Store REPLACEMENT details (ORIGINAL details above remain unchanged)
83
+ @Column({ type: "boolean", default: false, nullable: false })
84
+ is_replaced: boolean;
85
+
86
+ @Column({ type: "varchar", length: 255, nullable: true })
87
+ replacement_employee_name: string | null;
88
+
89
+ @Column({ type: "varchar", length: 100, nullable: true })
90
+ replacement_employee_id: string | null;
91
+
92
+ @Column({ type: "varchar", length: 50, nullable: true })
93
+ replacement_civil_id_card_number: string | null;
94
+
95
+ @Column({ type: "varchar", length: 255, nullable: true })
96
+ replacement_current_job_position: string | null;
97
+
98
+ @Column({ type: "varchar", length: 255, nullable: true })
99
+ replacement_assigned_job_position: string | null;
100
+
101
+ @Column({ type: "date", nullable: true })
102
+ replacement_start_date: Date | null;
103
+
104
+ @Column({ type: "date", nullable: true })
105
+ replacement_end_date: Date | null;
106
+
107
+ @Column({ type: "decimal", precision: 5, scale: 2, nullable: true })
108
+ replacement_assignment_allowance: number | null;
109
+
110
+ @Column({ type: "text", nullable: true })
111
+ replacement_reason: string | null;
112
+
113
+ @Column({ type: "integer", nullable: true })
114
+ replaced_by_user_id: number | null;
115
+
116
+ @Column({ type: "timestamp", nullable: true })
117
+ replaced_at: Date | null;
118
+
119
+ constructor(
120
+ user_id: number,
121
+ status: HrServiceRequestStatus = HrServiceRequestStatus.PENDING,
122
+ service_id?: number | null,
123
+ sub_service_id?: number | null,
124
+ req_user_department_id?: number | null,
125
+ req_user_section_id?: number | null,
126
+ req_user_position_id?: number | null,
127
+ description?: string | null,
128
+ reviewer_user_id?: number | null,
129
+ assigned_to_user_id?: number | null,
130
+ assigned_at?: Date | null,
131
+ workflow_execution_id?: string | null,
132
+ assigned_employee_name?: string,
133
+ civil_id_card_number?: string | null,
134
+ employee_id?: string,
135
+ current_job_position?: string,
136
+ assigned_job_position?: string,
137
+ start_date?: Date,
138
+ end_date?: Date,
139
+ assignment_allowance?: number | null,
140
+ phone_number?: string,
141
+ reason_for_request?: string,
142
+ is_replaced?: boolean,
143
+ replacement_employee_name?: string | null,
144
+ replacement_employee_id?: string | null,
145
+ replacement_civil_id_card_number?: string | null,
146
+ replacement_current_job_position?: string | null,
147
+ replacement_assigned_job_position?: string | null,
148
+ replacement_start_date?: Date | null,
149
+ replacement_end_date?: Date | null,
150
+ replacement_assignment_allowance?: number | null,
151
+ replacement_reason?: string | null,
152
+ replaced_by_user_id?: number | null,
153
+ replaced_at?: Date | null
154
+ ) {
155
+ super();
156
+ this.user_id = user_id;
157
+ this.status = status;
158
+ this.service_id = service_id || null;
159
+ this.sub_service_id = sub_service_id || null;
160
+ this.req_user_department_id = req_user_department_id || null;
161
+ this.req_user_section_id = req_user_section_id || null;
162
+ this.req_user_position_id = req_user_position_id || null;
163
+ this.description = description || null;
164
+ this.reviewer_user_id = reviewer_user_id || null;
165
+ this.assigned_to_user_id = assigned_to_user_id || null;
166
+ this.assigned_at = assigned_at || null;
167
+ this.workflow_execution_id = workflow_execution_id || null;
168
+ this.assigned_employee_name = assigned_employee_name || "";
169
+ this.civil_id_card_number = civil_id_card_number || null;
170
+ this.employee_id = employee_id || "";
171
+ this.current_job_position = current_job_position || "";
172
+ this.assigned_job_position = assigned_job_position || "";
173
+ this.start_date = start_date || new Date();
174
+ this.end_date = end_date || new Date();
175
+ this.assignment_allowance = assignment_allowance || null;
176
+ this.phone_number = phone_number || "";
177
+ this.reason_for_request = reason_for_request || "";
178
+ // Replacement fields initialization
179
+ this.is_replaced = is_replaced || false;
180
+ this.replacement_employee_name = replacement_employee_name || null;
181
+ this.replacement_employee_id = replacement_employee_id || null;
182
+ this.replacement_civil_id_card_number = replacement_civil_id_card_number || null;
183
+ this.replacement_current_job_position = replacement_current_job_position || null;
184
+ this.replacement_assigned_job_position = replacement_assigned_job_position || null;
185
+ this.replacement_start_date = replacement_start_date || null;
186
+ this.replacement_end_date = replacement_end_date || null;
187
+ this.replacement_assignment_allowance = replacement_assignment_allowance || null;
188
+ this.replacement_reason = replacement_reason || null;
189
+ this.replaced_by_user_id = replaced_by_user_id || null;
190
+ this.replaced_at = replaced_at || null;
191
+ }
192
+ }
193
+
@@ -53,51 +53,51 @@ export class HumanResourceAnnualPlanningRequest extends BaseModel {
53
53
  @Column({ type: "varchar", length: 255, nullable: true })
54
54
  workflow_execution_id: string | null;
55
55
 
56
- @Column({ type: "text", nullable: true })
57
- description: string | null;
58
-
59
- // HR Annual Planning specific fields
60
- @Column({ type: "varchar", length: 255, nullable: true })
61
- employee_name: string | null;
62
-
63
- @Column({ type: "varchar", length: 100, nullable: true })
64
- employee_id: string | null;
65
-
66
- @Column({ type: "varchar", length: 255, nullable: true })
67
- current_position: string | null;
68
-
69
- @Column({ type: "text", nullable: true })
70
- skills: string | null;
71
-
72
- @Column({ type: "decimal", precision: 10, scale: 2, nullable: true })
73
- work_experience: number | null;
74
-
75
- @Column({ type: "varchar", length: 20, nullable: true })
76
- productivity_rating: string | null;
77
-
78
- @Column({ type: "text", nullable: true })
79
- productivity_other: string | null;
80
-
81
- @Column({ type: "varchar", length: 20, nullable: true })
82
- behavior_rating: string | null;
83
-
84
- @Column({ type: "text", nullable: true })
85
- behavior_other: string | null;
86
-
87
- @Column({ type: "varchar", length: 20, nullable: true })
88
- leadership_rating: string | null;
89
-
90
- @Column({ type: "text", nullable: true })
91
- leadership_other: string | null;
92
-
93
- @Column({ type: "varchar", length: 20, nullable: true })
94
- emotional_intelligence_rating: string | null;
95
-
96
- @Column({ type: "text", nullable: true })
97
- emotional_intelligence_other: string | null;
98
-
99
- @Column({ type: "text", nullable: true })
100
- comment: string | null;
56
+ @Column({ type: "text", nullable: true })
57
+ description: string | null;
58
+
59
+ // HR Annual Planning specific fields
60
+ @Column({ type: "varchar", length: 255, nullable: true })
61
+ employee_name: string | null;
62
+
63
+ @Column({ type: "varchar", length: 100, nullable: true })
64
+ employee_id: string | null;
65
+
66
+ @Column({ type: "varchar", length: 255, nullable: true })
67
+ current_position: string | null;
68
+
69
+ @Column({ type: "text", nullable: true })
70
+ skills: string | null;
71
+
72
+ @Column({ type: "decimal", precision: 10, scale: 2, nullable: true })
73
+ work_experience: number | null;
74
+
75
+ @Column({ type: "varchar", length: 20, nullable: true })
76
+ productivity_rating: string | null;
77
+
78
+ @Column({ type: "text", nullable: true })
79
+ productivity_other: string | null;
80
+
81
+ @Column({ type: "varchar", length: 20, nullable: true })
82
+ behavior_rating: string | null;
83
+
84
+ @Column({ type: "text", nullable: true })
85
+ behavior_other: string | null;
86
+
87
+ @Column({ type: "varchar", length: 20, nullable: true })
88
+ leadership_rating: string | null;
89
+
90
+ @Column({ type: "text", nullable: true })
91
+ leadership_other: string | null;
92
+
93
+ @Column({ type: "varchar", length: 20, nullable: true })
94
+ emotional_intelligence_rating: string | null;
95
+
96
+ @Column({ type: "text", nullable: true })
97
+ emotional_intelligence_other: string | null;
98
+
99
+ @Column({ type: "text", nullable: true })
100
+ comment: string | null;
101
101
 
102
102
  @Column({ type: "varchar", length: 50, nullable: true })
103
103
  extension_number: string | null;
@@ -118,26 +118,26 @@ export class HumanResourceAnnualPlanningRequest extends BaseModel {
118
118
  req_user_position_id?: number | null,
119
119
  description?: string | null,
120
120
  reviewer_user_id?: number | null,
121
- assigned_to_user_id?: number | null,
122
- assigned_at?: Date | null,
123
- workflow_execution_id?: string | null,
124
- employee_name?: string | null,
125
- employee_id?: string | null,
126
- current_position?: string | null,
127
- skills?: string | null,
128
- work_experience?: number | null,
129
- productivity_rating?: string | null,
130
- productivity_other?: string | null,
131
- behavior_rating?: string | null,
132
- behavior_other?: string | null,
133
- leadership_rating?: string | null,
134
- leadership_other?: string | null,
135
- emotional_intelligence_rating?: string | null,
136
- emotional_intelligence_other?: string | null,
137
- comment?: string | null,
138
- extension_number?: string | null,
139
- quarter?: Quarter | null,
140
- year?: number | null
121
+ assigned_to_user_id?: number | null,
122
+ assigned_at?: Date | null,
123
+ workflow_execution_id?: string | null,
124
+ employee_name?: string | null,
125
+ employee_id?: string | null,
126
+ current_position?: string | null,
127
+ skills?: string | null,
128
+ work_experience?: number | null,
129
+ productivity_rating?: string | null,
130
+ productivity_other?: string | null,
131
+ behavior_rating?: string | null,
132
+ behavior_other?: string | null,
133
+ leadership_rating?: string | null,
134
+ leadership_other?: string | null,
135
+ emotional_intelligence_rating?: string | null,
136
+ emotional_intelligence_other?: string | null,
137
+ comment?: string | null,
138
+ extension_number?: string | null,
139
+ quarter?: Quarter | null,
140
+ year?: number | null
141
141
  ) {
142
142
  super();
143
143
  this.user_id = user_id;
@@ -150,24 +150,24 @@ export class HumanResourceAnnualPlanningRequest extends BaseModel {
150
150
  this.description = description || null;
151
151
  this.reviewer_user_id = reviewer_user_id || null;
152
152
  this.assigned_to_user_id = assigned_to_user_id || null;
153
- this.assigned_at = assigned_at || null;
154
- this.workflow_execution_id = workflow_execution_id || null;
155
- this.employee_name = employee_name || null;
156
- this.employee_id = employee_id || null;
157
- this.current_position = current_position || null;
158
- this.skills = skills || null;
159
- this.work_experience = work_experience || null;
160
- this.productivity_rating = productivity_rating || null;
161
- this.productivity_other = productivity_other || null;
162
- this.behavior_rating = behavior_rating || null;
163
- this.behavior_other = behavior_other || null;
164
- this.leadership_rating = leadership_rating || null;
165
- this.leadership_other = leadership_other || null;
166
- this.emotional_intelligence_rating = emotional_intelligence_rating || null;
167
- this.emotional_intelligence_other = emotional_intelligence_other || null;
168
- this.comment = comment || null;
169
- this.extension_number = extension_number || null;
170
- this.quarter = quarter || null;
171
- this.year = year || null;
153
+ this.assigned_at = assigned_at || null;
154
+ this.workflow_execution_id = workflow_execution_id || null;
155
+ this.employee_name = employee_name || null;
156
+ this.employee_id = employee_id || null;
157
+ this.current_position = current_position || null;
158
+ this.skills = skills || null;
159
+ this.work_experience = work_experience || null;
160
+ this.productivity_rating = productivity_rating || null;
161
+ this.productivity_other = productivity_other || null;
162
+ this.behavior_rating = behavior_rating || null;
163
+ this.behavior_other = behavior_other || null;
164
+ this.leadership_rating = leadership_rating || null;
165
+ this.leadership_other = leadership_other || null;
166
+ this.emotional_intelligence_rating = emotional_intelligence_rating || null;
167
+ this.emotional_intelligence_other = emotional_intelligence_other || null;
168
+ this.comment = comment || null;
169
+ this.extension_number = extension_number || null;
170
+ this.quarter = quarter || null;
171
+ this.year = year || null;
172
172
  }
173
173
  }