@platform-modules/civil-aviation-authority 2.3.218 → 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.
@@ -27,9 +27,22 @@ export declare class HumanResourceAnnualPlanningRequest extends BaseModel {
27
27
  assigned_at: Date | null;
28
28
  workflow_execution_id: string | null;
29
29
  description: string | null;
30
+ employee_name: string | null;
31
+ employee_id: string | null;
32
+ current_position: string | null;
33
+ skills: string | null;
34
+ work_experience: number | null;
35
+ productivity_rating: string | null;
36
+ productivity_other: string | null;
37
+ behavior_rating: string | null;
38
+ behavior_other: string | null;
39
+ leadership_rating: string | null;
40
+ leadership_other: string | null;
41
+ emotional_intelligence_rating: string | null;
42
+ emotional_intelligence_other: string | null;
30
43
  comment: string | null;
31
44
  extension_number: string | null;
32
45
  quarter: Quarter | null;
33
46
  year: number | null;
34
- constructor(user_id: number, status?: HumanResourceAnnualPlanningRequestStatus, 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, comment?: string | null, extension_number?: string | null, quarter?: Quarter | null, year?: number | null);
47
+ constructor(user_id: number, status?: HumanResourceAnnualPlanningRequestStatus, 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, employee_name?: string | null, employee_id?: string | null, current_position?: string | null, skills?: string | null, work_experience?: number | null, productivity_rating?: string | null, productivity_other?: string | null, behavior_rating?: string | null, behavior_other?: string | null, leadership_rating?: string | null, leadership_other?: string | null, emotional_intelligence_rating?: string | null, emotional_intelligence_other?: string | null, comment?: string | null, extension_number?: string | null, quarter?: Quarter | null, year?: number | null);
35
48
  }
@@ -30,7 +30,7 @@ var Quarter;
30
30
  Quarter["Q4"] = "Q4"; // Oct-Dec
31
31
  })(Quarter || (exports.Quarter = Quarter = {}));
32
32
  let HumanResourceAnnualPlanningRequest = class HumanResourceAnnualPlanningRequest extends BaseModel_1.BaseModel {
33
- constructor(user_id, status = HumanResourceAnnualPlanningRequestStatus.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, comment, extension_number, quarter, year) {
33
+ constructor(user_id, status = HumanResourceAnnualPlanningRequestStatus.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, employee_name, employee_id, current_position, skills, work_experience, productivity_rating, productivity_other, behavior_rating, behavior_other, leadership_rating, leadership_other, emotional_intelligence_rating, emotional_intelligence_other, comment, extension_number, quarter, year) {
34
34
  super();
35
35
  this.user_id = user_id;
36
36
  this.status = status;
@@ -44,6 +44,19 @@ let HumanResourceAnnualPlanningRequest = class HumanResourceAnnualPlanningReques
44
44
  this.assigned_to_user_id = assigned_to_user_id || null;
45
45
  this.assigned_at = assigned_at || null;
46
46
  this.workflow_execution_id = workflow_execution_id || null;
47
+ this.employee_name = employee_name || null;
48
+ this.employee_id = employee_id || null;
49
+ this.current_position = current_position || null;
50
+ this.skills = skills || null;
51
+ this.work_experience = work_experience || null;
52
+ this.productivity_rating = productivity_rating || null;
53
+ this.productivity_other = productivity_other || null;
54
+ this.behavior_rating = behavior_rating || null;
55
+ this.behavior_other = behavior_other || null;
56
+ this.leadership_rating = leadership_rating || null;
57
+ this.leadership_other = leadership_other || null;
58
+ this.emotional_intelligence_rating = emotional_intelligence_rating || null;
59
+ this.emotional_intelligence_other = emotional_intelligence_other || null;
47
60
  this.comment = comment || null;
48
61
  this.extension_number = extension_number || null;
49
62
  this.quarter = quarter || null;
@@ -99,6 +112,58 @@ __decorate([
99
112
  (0, typeorm_1.Column)({ type: "text", nullable: true }),
100
113
  __metadata("design:type", Object)
101
114
  ], HumanResourceAnnualPlanningRequest.prototype, "description", void 0);
115
+ __decorate([
116
+ (0, typeorm_1.Column)({ type: "varchar", length: 255, nullable: true }),
117
+ __metadata("design:type", Object)
118
+ ], HumanResourceAnnualPlanningRequest.prototype, "employee_name", void 0);
119
+ __decorate([
120
+ (0, typeorm_1.Column)({ type: "varchar", length: 100, nullable: true }),
121
+ __metadata("design:type", Object)
122
+ ], HumanResourceAnnualPlanningRequest.prototype, "employee_id", void 0);
123
+ __decorate([
124
+ (0, typeorm_1.Column)({ type: "varchar", length: 255, nullable: true }),
125
+ __metadata("design:type", Object)
126
+ ], HumanResourceAnnualPlanningRequest.prototype, "current_position", void 0);
127
+ __decorate([
128
+ (0, typeorm_1.Column)({ type: "text", nullable: true }),
129
+ __metadata("design:type", Object)
130
+ ], HumanResourceAnnualPlanningRequest.prototype, "skills", void 0);
131
+ __decorate([
132
+ (0, typeorm_1.Column)({ type: "decimal", precision: 10, scale: 2, nullable: true }),
133
+ __metadata("design:type", Object)
134
+ ], HumanResourceAnnualPlanningRequest.prototype, "work_experience", void 0);
135
+ __decorate([
136
+ (0, typeorm_1.Column)({ type: "varchar", length: 20, nullable: true }),
137
+ __metadata("design:type", Object)
138
+ ], HumanResourceAnnualPlanningRequest.prototype, "productivity_rating", void 0);
139
+ __decorate([
140
+ (0, typeorm_1.Column)({ type: "text", nullable: true }),
141
+ __metadata("design:type", Object)
142
+ ], HumanResourceAnnualPlanningRequest.prototype, "productivity_other", void 0);
143
+ __decorate([
144
+ (0, typeorm_1.Column)({ type: "varchar", length: 20, nullable: true }),
145
+ __metadata("design:type", Object)
146
+ ], HumanResourceAnnualPlanningRequest.prototype, "behavior_rating", void 0);
147
+ __decorate([
148
+ (0, typeorm_1.Column)({ type: "text", nullable: true }),
149
+ __metadata("design:type", Object)
150
+ ], HumanResourceAnnualPlanningRequest.prototype, "behavior_other", void 0);
151
+ __decorate([
152
+ (0, typeorm_1.Column)({ type: "varchar", length: 20, nullable: true }),
153
+ __metadata("design:type", Object)
154
+ ], HumanResourceAnnualPlanningRequest.prototype, "leadership_rating", void 0);
155
+ __decorate([
156
+ (0, typeorm_1.Column)({ type: "text", nullable: true }),
157
+ __metadata("design:type", Object)
158
+ ], HumanResourceAnnualPlanningRequest.prototype, "leadership_other", void 0);
159
+ __decorate([
160
+ (0, typeorm_1.Column)({ type: "varchar", length: 20, nullable: true }),
161
+ __metadata("design:type", Object)
162
+ ], HumanResourceAnnualPlanningRequest.prototype, "emotional_intelligence_rating", void 0);
163
+ __decorate([
164
+ (0, typeorm_1.Column)({ type: "text", nullable: true }),
165
+ __metadata("design:type", Object)
166
+ ], HumanResourceAnnualPlanningRequest.prototype, "emotional_intelligence_other", void 0);
102
167
  __decorate([
103
168
  (0, typeorm_1.Column)({ type: "text", nullable: true }),
104
169
  __metadata("design:type", Object)
@@ -117,5 +182,5 @@ __decorate([
117
182
  ], HumanResourceAnnualPlanningRequest.prototype, "year", void 0);
118
183
  exports.HumanResourceAnnualPlanningRequest = HumanResourceAnnualPlanningRequest = __decorate([
119
184
  (0, typeorm_1.Entity)({ name: "human_resource_annual_planning_requests" }),
120
- __metadata("design:paramtypes", [Number, String, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object])
185
+ __metadata("design:paramtypes", [Number, String, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object])
121
186
  ], HumanResourceAnnualPlanningRequest);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platform-modules/civil-aviation-authority",
3
- "version": "2.3.218",
3
+ "version": "2.3.220",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {
@@ -57,6 +57,45 @@ export class HumanResourceAnnualPlanningRequest extends BaseModel {
57
57
  description: string | null;
58
58
 
59
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
+
60
99
  @Column({ type: "text", nullable: true })
61
100
  comment: string | null;
62
101
 
@@ -82,6 +121,19 @@ export class HumanResourceAnnualPlanningRequest extends BaseModel {
82
121
  assigned_to_user_id?: number | null,
83
122
  assigned_at?: Date | null,
84
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,
85
137
  comment?: string | null,
86
138
  extension_number?: string | null,
87
139
  quarter?: Quarter | null,
@@ -100,6 +152,19 @@ export class HumanResourceAnnualPlanningRequest extends BaseModel {
100
152
  this.assigned_to_user_id = assigned_to_user_id || null;
101
153
  this.assigned_at = assigned_at || null;
102
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;
103
168
  this.comment = comment || null;
104
169
  this.extension_number = extension_number || null;
105
170
  this.quarter = quarter || null;