@platform-modules/foreign-ministry 1.3.161 → 1.3.163
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 +17 -3
- package/dist/models/AppointmentAttendeeModel.d.ts +2 -0
- package/dist/models/AppointmentAttendeeModel.js +8 -0
- package/dist/models/AppointmentRequestModel.d.ts +1 -0
- package/dist/models/AppointmentRequestModel.js +4 -0
- package/dist/models/HelpContentMappedCategoriesModel.d.ts +6 -0
- package/dist/models/HelpContentMappedCategoriesModel.js +34 -0
- package/dist/models/HelpContentMappedTagsModel.d.ts +6 -0
- package/dist/models/HelpContentMappedTagsModel.js +34 -0
- package/dist/models/HelpContentTagsModel.d.ts +5 -0
- package/dist/models/HelpContentTagsModel.js +29 -0
- package/dist/models/LMSExternalCourseParticipationRequestModel.d.ts +5 -0
- package/dist/models/LMSExternalCourseParticipationRequestModel.js +10 -1
- package/dist/models/MeetingAttendeeModel.d.ts +4 -0
- package/dist/models/MeetingAttendeeModel.js +16 -0
- package/dist/models/MeetingRequestModel.d.ts +1 -0
- package/dist/models/MeetingRequestModel.js +4 -0
- package/dist/models/questionTagsModel.d.ts +6 -0
- package/dist/models/questionTagsModel.js +34 -0
- package/package.json +1 -1
- package/src/models/AppointmentAttendeeModel.ts +6 -0
- package/src/models/AppointmentRequestModel.ts +3 -0
- package/src/models/LMSExternalCourseParticipationRequestModel.ts +8 -0
- package/src/models/MeetingAttendeeModel.ts +12 -0
- package/src/models/MeetingRequestModel.ts +3 -0
- package/src/models/RegisterCandidateRequestModel.ts +177 -177
- /package/src/models/{LeaveConfigGradesModel.Ts → LeaveConfigGradesModel.ts} +0 -0
package/.env
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
|
-
DB_HOST=localhost
|
|
1
|
+
# DB_HOST=localhost
|
|
2
|
+
# DB_PORT=5433
|
|
3
|
+
# DB_USER=postgres
|
|
4
|
+
# DB_PASS=123
|
|
5
|
+
# DB_NAME=FM
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
DB_HOST=164.52.222.169
|
|
2
10
|
DB_PORT=5432
|
|
3
|
-
DB_USER=
|
|
4
|
-
DB_PASS=
|
|
11
|
+
DB_USER=postgres_admin_user
|
|
12
|
+
DB_PASS=pg_admin_user_pwd_caa_fa_$%^&OIukhjgcvbn
|
|
5
13
|
DB_NAME=FM
|
|
14
|
+
|
|
15
|
+
# DB_HOST=216.48.187.46
|
|
16
|
+
# DB_PORT=5432
|
|
17
|
+
# DB_USER=adminuser
|
|
18
|
+
# DB_PASS=postgres_caa_fm_qa_34567
|
|
19
|
+
# DB_NAME=FM_QA
|
|
@@ -42,6 +42,14 @@ __decorate([
|
|
|
42
42
|
(0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
|
|
43
43
|
__metadata("design:type", Object)
|
|
44
44
|
], AppointmentAttendees.prototype, "attendee_name", void 0);
|
|
45
|
+
__decorate([
|
|
46
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
|
|
47
|
+
__metadata("design:type", Object)
|
|
48
|
+
], AppointmentAttendees.prototype, "attendee_mobile", void 0);
|
|
49
|
+
__decorate([
|
|
50
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
|
|
51
|
+
__metadata("design:type", Object)
|
|
52
|
+
], AppointmentAttendees.prototype, "attendee_position", void 0);
|
|
45
53
|
exports.AppointmentAttendees = AppointmentAttendees = __decorate([
|
|
46
54
|
(0, typeorm_1.Entity)({ name: 'appointment_attendees' })
|
|
47
55
|
], AppointmentAttendees);
|
|
@@ -41,6 +41,7 @@ export declare class AppointmentRequests extends BaseModel {
|
|
|
41
41
|
person_name: string | null;
|
|
42
42
|
contact_number: string | null;
|
|
43
43
|
agenda: string | null;
|
|
44
|
+
appointment_title: string | null;
|
|
44
45
|
appointment_location: AppointmentLocation | null;
|
|
45
46
|
status: AppointmentRequestStatus;
|
|
46
47
|
workflow_execution_id: string | null;
|
|
@@ -109,6 +109,10 @@ __decorate([
|
|
|
109
109
|
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
110
110
|
__metadata("design:type", Object)
|
|
111
111
|
], AppointmentRequests.prototype, "agenda", void 0);
|
|
112
|
+
__decorate([
|
|
113
|
+
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
114
|
+
__metadata("design:type", Object)
|
|
115
|
+
], AppointmentRequests.prototype, "appointment_title", void 0);
|
|
112
116
|
__decorate([
|
|
113
117
|
(0, typeorm_1.Column)({ type: 'enum', enum: AppointmentLocation, nullable: true }),
|
|
114
118
|
__metadata("design:type", Object)
|
|
@@ -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.HelpContentMappedCategories = void 0;
|
|
13
|
+
const typeorm_1 = require("typeorm");
|
|
14
|
+
const BaseModel_1 = require("./BaseModel");
|
|
15
|
+
let HelpContentMappedCategories = class HelpContentMappedCategories extends BaseModel_1.BaseModel {
|
|
16
|
+
constructor(help_content_category_Id, help_content_Id) {
|
|
17
|
+
super();
|
|
18
|
+
this.help_content_category_Id = help_content_category_Id,
|
|
19
|
+
this.help_content_Id = help_content_Id;
|
|
20
|
+
}
|
|
21
|
+
};
|
|
22
|
+
exports.HelpContentMappedCategories = HelpContentMappedCategories;
|
|
23
|
+
__decorate([
|
|
24
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
|
25
|
+
__metadata("design:type", Number)
|
|
26
|
+
], HelpContentMappedCategories.prototype, "help_content_category_Id", void 0);
|
|
27
|
+
__decorate([
|
|
28
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
|
29
|
+
__metadata("design:type", Number)
|
|
30
|
+
], HelpContentMappedCategories.prototype, "help_content_Id", void 0);
|
|
31
|
+
exports.HelpContentMappedCategories = HelpContentMappedCategories = __decorate([
|
|
32
|
+
(0, typeorm_1.Entity)({ name: 'help_content_mapped_categories' }),
|
|
33
|
+
__metadata("design:paramtypes", [Number, Number])
|
|
34
|
+
], HelpContentMappedCategories);
|
|
@@ -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.HelpContentMappedTags = void 0;
|
|
13
|
+
const typeorm_1 = require("typeorm");
|
|
14
|
+
const BaseModel_1 = require("./BaseModel");
|
|
15
|
+
let HelpContentMappedTags = class HelpContentMappedTags extends BaseModel_1.BaseModel {
|
|
16
|
+
constructor(help_content_tag_Id, help_content_Id) {
|
|
17
|
+
super();
|
|
18
|
+
this.help_content_tag_Id = help_content_tag_Id,
|
|
19
|
+
this.help_content_Id = help_content_Id;
|
|
20
|
+
}
|
|
21
|
+
};
|
|
22
|
+
exports.HelpContentMappedTags = HelpContentMappedTags;
|
|
23
|
+
__decorate([
|
|
24
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
|
25
|
+
__metadata("design:type", Number)
|
|
26
|
+
], HelpContentMappedTags.prototype, "help_content_tag_Id", void 0);
|
|
27
|
+
__decorate([
|
|
28
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
|
29
|
+
__metadata("design:type", Number)
|
|
30
|
+
], HelpContentMappedTags.prototype, "help_content_Id", void 0);
|
|
31
|
+
exports.HelpContentMappedTags = HelpContentMappedTags = __decorate([
|
|
32
|
+
(0, typeorm_1.Entity)({ name: 'help_content_mapped_tags' }),
|
|
33
|
+
__metadata("design:paramtypes", [Number, Number])
|
|
34
|
+
], HelpContentMappedTags);
|
|
@@ -0,0 +1,29 @@
|
|
|
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.HelpContentTags = void 0;
|
|
13
|
+
const typeorm_1 = require("typeorm");
|
|
14
|
+
const BaseModel_1 = require("./BaseModel");
|
|
15
|
+
let HelpContentTags = class HelpContentTags extends BaseModel_1.BaseModel {
|
|
16
|
+
constructor(name) {
|
|
17
|
+
super();
|
|
18
|
+
this.name = name;
|
|
19
|
+
}
|
|
20
|
+
};
|
|
21
|
+
exports.HelpContentTags = HelpContentTags;
|
|
22
|
+
__decorate([
|
|
23
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
|
24
|
+
__metadata("design:type", String)
|
|
25
|
+
], HelpContentTags.prototype, "name", void 0);
|
|
26
|
+
exports.HelpContentTags = HelpContentTags = __decorate([
|
|
27
|
+
(0, typeorm_1.Entity)({ name: 'help_content_tags' }),
|
|
28
|
+
__metadata("design:paramtypes", [String])
|
|
29
|
+
], HelpContentTags);
|
|
@@ -6,6 +6,10 @@ export declare enum LMSExternalCourseParticipationStatus {
|
|
|
6
6
|
APPROVED = "Approved",
|
|
7
7
|
REJECTED = "Rejected"
|
|
8
8
|
}
|
|
9
|
+
export declare enum IsExamRequired {
|
|
10
|
+
YES = "Yes",
|
|
11
|
+
NO = "No"
|
|
12
|
+
}
|
|
9
13
|
export declare class LMSExternalCourseParticipationRequests extends BaseModel {
|
|
10
14
|
req_user_department_id: number | null;
|
|
11
15
|
department_id: number | null;
|
|
@@ -26,4 +30,5 @@ export declare class LMSExternalCourseParticipationRequests extends BaseModel {
|
|
|
26
30
|
comment: string | null;
|
|
27
31
|
includePoliticalOpinion: string | null;
|
|
28
32
|
course_id: number | null;
|
|
33
|
+
is_exam_required: IsExamRequired | null;
|
|
29
34
|
}
|
|
@@ -9,7 +9,7 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
9
9
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
10
|
};
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.LMSExternalCourseParticipationRequests = exports.LMSExternalCourseParticipationStatus = void 0;
|
|
12
|
+
exports.LMSExternalCourseParticipationRequests = exports.IsExamRequired = exports.LMSExternalCourseParticipationStatus = void 0;
|
|
13
13
|
const typeorm_1 = require("typeorm");
|
|
14
14
|
const BaseModel_1 = require("./BaseModel");
|
|
15
15
|
var LMSExternalCourseParticipationStatus;
|
|
@@ -20,6 +20,11 @@ var LMSExternalCourseParticipationStatus;
|
|
|
20
20
|
LMSExternalCourseParticipationStatus["APPROVED"] = "Approved";
|
|
21
21
|
LMSExternalCourseParticipationStatus["REJECTED"] = "Rejected";
|
|
22
22
|
})(LMSExternalCourseParticipationStatus || (exports.LMSExternalCourseParticipationStatus = LMSExternalCourseParticipationStatus = {}));
|
|
23
|
+
var IsExamRequired;
|
|
24
|
+
(function (IsExamRequired) {
|
|
25
|
+
IsExamRequired["YES"] = "Yes";
|
|
26
|
+
IsExamRequired["NO"] = "No";
|
|
27
|
+
})(IsExamRequired || (exports.IsExamRequired = IsExamRequired = {}));
|
|
23
28
|
let LMSExternalCourseParticipationRequests = class LMSExternalCourseParticipationRequests extends BaseModel_1.BaseModel {
|
|
24
29
|
};
|
|
25
30
|
exports.LMSExternalCourseParticipationRequests = LMSExternalCourseParticipationRequests;
|
|
@@ -99,6 +104,10 @@ __decorate([
|
|
|
99
104
|
(0, typeorm_1.Column)({ type: 'int', nullable: true }),
|
|
100
105
|
__metadata("design:type", Object)
|
|
101
106
|
], LMSExternalCourseParticipationRequests.prototype, "course_id", void 0);
|
|
107
|
+
__decorate([
|
|
108
|
+
(0, typeorm_1.Column)({ type: 'enum', enum: IsExamRequired, nullable: true }),
|
|
109
|
+
__metadata("design:type", Object)
|
|
110
|
+
], LMSExternalCourseParticipationRequests.prototype, "is_exam_required", void 0);
|
|
102
111
|
exports.LMSExternalCourseParticipationRequests = LMSExternalCourseParticipationRequests = __decorate([
|
|
103
112
|
(0, typeorm_1.Entity)({ name: 'lms_external_course_participation_requests' })
|
|
104
113
|
], LMSExternalCourseParticipationRequests);
|
|
@@ -9,4 +9,8 @@ export declare class MeetingAttendees extends BaseModel {
|
|
|
9
9
|
attendee_id: number;
|
|
10
10
|
meeting_id: number;
|
|
11
11
|
status: MeetingAttendeeStatus;
|
|
12
|
+
attendee_email: string | null;
|
|
13
|
+
attendee_name: string | null;
|
|
14
|
+
attendee_mobile: string | null;
|
|
15
|
+
attendee_position: string | null;
|
|
12
16
|
}
|
|
@@ -34,6 +34,22 @@ __decorate([
|
|
|
34
34
|
(0, typeorm_1.Column)({ type: 'enum', enum: MeetingAttendeeStatus, default: MeetingAttendeeStatus.INVITED, nullable: false }),
|
|
35
35
|
__metadata("design:type", String)
|
|
36
36
|
], MeetingAttendees.prototype, "status", void 0);
|
|
37
|
+
__decorate([
|
|
38
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
|
|
39
|
+
__metadata("design:type", Object)
|
|
40
|
+
], MeetingAttendees.prototype, "attendee_email", void 0);
|
|
41
|
+
__decorate([
|
|
42
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
|
|
43
|
+
__metadata("design:type", Object)
|
|
44
|
+
], MeetingAttendees.prototype, "attendee_name", void 0);
|
|
45
|
+
__decorate([
|
|
46
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
|
|
47
|
+
__metadata("design:type", Object)
|
|
48
|
+
], MeetingAttendees.prototype, "attendee_mobile", void 0);
|
|
49
|
+
__decorate([
|
|
50
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
|
|
51
|
+
__metadata("design:type", Object)
|
|
52
|
+
], MeetingAttendees.prototype, "attendee_position", void 0);
|
|
37
53
|
exports.MeetingAttendees = MeetingAttendees = __decorate([
|
|
38
54
|
(0, typeorm_1.Entity)({ name: 'meeting_attendees' })
|
|
39
55
|
], MeetingAttendees);
|
|
@@ -63,6 +63,7 @@ export declare class MeetingRequests extends BaseModel {
|
|
|
63
63
|
online_meeting_details: OnlineMeetingDetails | null;
|
|
64
64
|
meeting_link: string | null;
|
|
65
65
|
agenda: string | null;
|
|
66
|
+
meeting_title: string | null;
|
|
66
67
|
meeting_location: MeetingLocation | null;
|
|
67
68
|
status: MeetingRequestStatus;
|
|
68
69
|
workflow_execution_id: string | null;
|
|
@@ -161,6 +161,10 @@ __decorate([
|
|
|
161
161
|
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
162
162
|
__metadata("design:type", Object)
|
|
163
163
|
], MeetingRequests.prototype, "agenda", void 0);
|
|
164
|
+
__decorate([
|
|
165
|
+
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
166
|
+
__metadata("design:type", Object)
|
|
167
|
+
], MeetingRequests.prototype, "meeting_title", void 0);
|
|
164
168
|
__decorate([
|
|
165
169
|
(0, typeorm_1.Column)({ type: 'enum', enum: MeetingLocation, nullable: true }),
|
|
166
170
|
__metadata("design:type", Object)
|
|
@@ -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.QuestionTags = void 0;
|
|
13
|
+
const typeorm_1 = require("typeorm");
|
|
14
|
+
const BaseModel_1 = require("./BaseModel");
|
|
15
|
+
let QuestionTags = class QuestionTags extends BaseModel_1.BaseModel {
|
|
16
|
+
constructor(name, question_Id) {
|
|
17
|
+
super();
|
|
18
|
+
this.name = name,
|
|
19
|
+
this.question_Id = question_Id;
|
|
20
|
+
}
|
|
21
|
+
};
|
|
22
|
+
exports.QuestionTags = QuestionTags;
|
|
23
|
+
__decorate([
|
|
24
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
|
25
|
+
__metadata("design:type", String)
|
|
26
|
+
], QuestionTags.prototype, "name", void 0);
|
|
27
|
+
__decorate([
|
|
28
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
|
29
|
+
__metadata("design:type", Number)
|
|
30
|
+
], QuestionTags.prototype, "question_Id", void 0);
|
|
31
|
+
exports.QuestionTags = QuestionTags = __decorate([
|
|
32
|
+
(0, typeorm_1.Entity)({ name: 'question_tags' }),
|
|
33
|
+
__metadata("design:paramtypes", [String, Number])
|
|
34
|
+
], QuestionTags);
|
package/package.json
CHANGED
|
@@ -24,5 +24,11 @@ export class AppointmentAttendees extends BaseModel {
|
|
|
24
24
|
|
|
25
25
|
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
26
26
|
attendee_name: string | null;
|
|
27
|
+
|
|
28
|
+
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
29
|
+
attendee_mobile: string | null
|
|
30
|
+
|
|
31
|
+
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
32
|
+
attendee_position: string | null
|
|
27
33
|
}
|
|
28
34
|
|
|
@@ -81,6 +81,9 @@ export class AppointmentRequests extends BaseModel {
|
|
|
81
81
|
@Column({ type: 'text', nullable: true })
|
|
82
82
|
agenda: string | null;
|
|
83
83
|
|
|
84
|
+
@Column({ type: 'text', nullable: true })
|
|
85
|
+
appointment_title: string | null;
|
|
86
|
+
|
|
84
87
|
@Column({ type: 'enum', enum: AppointmentLocation, nullable: true })
|
|
85
88
|
appointment_location: AppointmentLocation | null;
|
|
86
89
|
|
|
@@ -9,6 +9,11 @@ export enum LMSExternalCourseParticipationStatus {
|
|
|
9
9
|
REJECTED = "Rejected"
|
|
10
10
|
}
|
|
11
11
|
|
|
12
|
+
export enum IsExamRequired {
|
|
13
|
+
YES = "Yes",
|
|
14
|
+
NO = "No"
|
|
15
|
+
}
|
|
16
|
+
|
|
12
17
|
@Entity({ name: 'lms_external_course_participation_requests' })
|
|
13
18
|
export class LMSExternalCourseParticipationRequests extends BaseModel {
|
|
14
19
|
|
|
@@ -69,4 +74,7 @@ export class LMSExternalCourseParticipationRequests extends BaseModel {
|
|
|
69
74
|
|
|
70
75
|
@Column({ type: 'int', nullable: true })
|
|
71
76
|
course_id: number | null;
|
|
77
|
+
|
|
78
|
+
@Column({ type: 'enum', enum: IsExamRequired, nullable: true })
|
|
79
|
+
is_exam_required: IsExamRequired | null;
|
|
72
80
|
}
|
|
@@ -18,4 +18,16 @@ export class MeetingAttendees extends BaseModel {
|
|
|
18
18
|
|
|
19
19
|
@Column({ type: 'enum', enum: MeetingAttendeeStatus, default: MeetingAttendeeStatus.INVITED, nullable: false })
|
|
20
20
|
status: MeetingAttendeeStatus;
|
|
21
|
+
|
|
22
|
+
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
23
|
+
attendee_email: string | null;
|
|
24
|
+
|
|
25
|
+
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
26
|
+
attendee_name: string | null;
|
|
27
|
+
|
|
28
|
+
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
29
|
+
attendee_mobile: string | null
|
|
30
|
+
|
|
31
|
+
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
32
|
+
attendee_position: string | null
|
|
21
33
|
}
|
|
@@ -124,6 +124,9 @@ export class MeetingRequests extends BaseModel {
|
|
|
124
124
|
@Column({ type: 'text', nullable: true })
|
|
125
125
|
agenda: string | null;
|
|
126
126
|
|
|
127
|
+
@Column({ type: 'text', nullable: true })
|
|
128
|
+
meeting_title: string | null;
|
|
129
|
+
|
|
127
130
|
@Column({ type: 'enum', enum: MeetingLocation, nullable: true })
|
|
128
131
|
meeting_location: MeetingLocation | null;
|
|
129
132
|
|
|
@@ -1,177 +1,177 @@
|
|
|
1
|
-
import { Column, Entity, OneToMany } from "typeorm";
|
|
2
|
-
import { BaseModel } from './BaseModel';
|
|
3
|
-
import { RegisterCandidateExperienceActivity } from './RegisterCandidateExperienceActivityModel';
|
|
4
|
-
|
|
5
|
-
export enum RegisterCandidateStatus {
|
|
6
|
-
PENDING = "Pending",
|
|
7
|
-
ASSIGNED = "Assigned",
|
|
8
|
-
IN_PROGRESS = "In Progress",
|
|
9
|
-
APPROVED = "Approved",
|
|
10
|
-
REJECTED = "Rejected"
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
export enum CandidateStatusType {
|
|
14
|
-
SELECTED = "Selected",
|
|
15
|
-
REJECTED = "Rejected",
|
|
16
|
-
JOINED = "Joined",
|
|
17
|
-
NOT_JOINED = "Not Joined"
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
@Entity({ name: 'register_candidate_requests' })
|
|
21
|
-
export class RegisterCandidateRequests extends BaseModel {
|
|
22
|
-
|
|
23
|
-
// Common columns from register_vacancy_requests
|
|
24
|
-
@Column({ type: 'int', nullable: true })
|
|
25
|
-
req_user_department_id: number | null;
|
|
26
|
-
|
|
27
|
-
@Column({ type: 'int', nullable: true })
|
|
28
|
-
req_user_section_id: number | null;
|
|
29
|
-
|
|
30
|
-
@Column({ type: 'int', nullable: true })
|
|
31
|
-
service_id: number | null;
|
|
32
|
-
|
|
33
|
-
@Column({ type: 'int', nullable: true })
|
|
34
|
-
sub_service_id: number | null;
|
|
35
|
-
|
|
36
|
-
@Column({ type: 'int', nullable: false })
|
|
37
|
-
user_id: number;
|
|
38
|
-
|
|
39
|
-
// New columns - Personal Information
|
|
40
|
-
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
41
|
-
relationship: string | null;
|
|
42
|
-
|
|
43
|
-
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
44
|
-
place_of_birth: string | null;
|
|
45
|
-
|
|
46
|
-
@Column({ type: 'date', nullable: true })
|
|
47
|
-
date_of_birth: Date | null;
|
|
48
|
-
|
|
49
|
-
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
50
|
-
nationality: string | null;
|
|
51
|
-
|
|
52
|
-
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
53
|
-
religion_and_sect: string | null;
|
|
54
|
-
|
|
55
|
-
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
56
|
-
sub_religion_and_sect: string | null;
|
|
57
|
-
|
|
58
|
-
@Column({ type: 'text', nullable: true })
|
|
59
|
-
present_residence: string | null;
|
|
60
|
-
|
|
61
|
-
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
62
|
-
occupation_and_employer: string | null;
|
|
63
|
-
|
|
64
|
-
// Education Information
|
|
65
|
-
@Column({ type: 'text', nullable: true })
|
|
66
|
-
type_of_study_specializations_qualification: string | null;
|
|
67
|
-
|
|
68
|
-
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
69
|
-
educational_institute: string | null;
|
|
70
|
-
|
|
71
|
-
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
72
|
-
education_country: string | null;
|
|
73
|
-
|
|
74
|
-
@Column({ type: 'date', nullable: true })
|
|
75
|
-
education_period_from: Date | null;
|
|
76
|
-
|
|
77
|
-
@Column({ type: 'date', nullable: true })
|
|
78
|
-
education_period_to: Date | null;
|
|
79
|
-
|
|
80
|
-
// Note: Employment, Activity, and Charge Information fields have been moved to
|
|
81
|
-
// register_candidate_experience_activity table to support multiple experience records
|
|
82
|
-
|
|
83
|
-
// First Address
|
|
84
|
-
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
85
|
-
address1_country_state: string | null;
|
|
86
|
-
|
|
87
|
-
@Column({ type: 'varchar', length: 100, nullable: true })
|
|
88
|
-
address1_street_no: string | null;
|
|
89
|
-
|
|
90
|
-
@Column({ type: 'varchar', length: 100, nullable: true })
|
|
91
|
-
address1_road_no: string | null;
|
|
92
|
-
|
|
93
|
-
@Column({ type: 'varchar', length: 100, nullable: true })
|
|
94
|
-
address1_flat_building_no: string | null;
|
|
95
|
-
|
|
96
|
-
@Column({ type: 'text', nullable: true })
|
|
97
|
-
address1_po_box_telephone_fax: string | null;
|
|
98
|
-
|
|
99
|
-
// Second Address
|
|
100
|
-
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
101
|
-
address2_country_state: string | null;
|
|
102
|
-
|
|
103
|
-
@Column({ type: 'varchar', length: 100, nullable: true })
|
|
104
|
-
address2_street_no: string | null;
|
|
105
|
-
|
|
106
|
-
@Column({ type: 'varchar', length: 100, nullable: true })
|
|
107
|
-
address2_road_no: string | null;
|
|
108
|
-
|
|
109
|
-
@Column({ type: 'varchar', length: 100, nullable: true })
|
|
110
|
-
address2_flat_building_no: string | null;
|
|
111
|
-
|
|
112
|
-
@Column({ type: 'text', nullable: true })
|
|
113
|
-
address2_po_box_telephone_fax: string | null;
|
|
114
|
-
|
|
115
|
-
// Reference Information
|
|
116
|
-
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
117
|
-
reference_full_name: string | null;
|
|
118
|
-
|
|
119
|
-
@Column({ type: 'text', nullable: true })
|
|
120
|
-
reference_address_and_telephone: string | null;
|
|
121
|
-
|
|
122
|
-
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
123
|
-
telephone_number: string | null;
|
|
124
|
-
|
|
125
|
-
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
126
|
-
reference_employer: string | null;
|
|
127
|
-
|
|
128
|
-
// Vacancy Information
|
|
129
|
-
@Column({ type: 'int', nullable: true })
|
|
130
|
-
vacancy_id: number | null;
|
|
131
|
-
|
|
132
|
-
@Column({ type: 'text', nullable: true })
|
|
133
|
-
vacancy_description: string | null;
|
|
134
|
-
|
|
135
|
-
// Interview Information
|
|
136
|
-
@Column({ type: 'date', nullable: true })
|
|
137
|
-
interview_schedule_date: Date | null;
|
|
138
|
-
|
|
139
|
-
@Column({ type: 'time', nullable: true })
|
|
140
|
-
interview_schedule_time: string | null;
|
|
141
|
-
|
|
142
|
-
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
143
|
-
interviewer_name: string | null;
|
|
144
|
-
|
|
145
|
-
// Candidate Status
|
|
146
|
-
@Column({ type: 'enum', enum: CandidateStatusType, nullable: true })
|
|
147
|
-
candidate_status: CandidateStatusType | null;
|
|
148
|
-
|
|
149
|
-
@Column({ type: 'date', nullable: true })
|
|
150
|
-
joining_date: Date | null;
|
|
151
|
-
|
|
152
|
-
// Salary Information
|
|
153
|
-
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
154
|
-
salary: string | null;
|
|
155
|
-
|
|
156
|
-
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
157
|
-
currency: string | null;
|
|
158
|
-
|
|
159
|
-
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
160
|
-
expected_salary: string | null;
|
|
161
|
-
|
|
162
|
-
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
163
|
-
expected_currency: string | null;
|
|
164
|
-
|
|
165
|
-
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
166
|
-
currency_type: string | null;
|
|
167
|
-
|
|
168
|
-
@Column({ type: 'enum', enum: RegisterCandidateStatus, default: RegisterCandidateStatus.PENDING, nullable: false })
|
|
169
|
-
status: RegisterCandidateStatus;
|
|
170
|
-
|
|
171
|
-
@Column({ type: 'varchar', nullable: true })
|
|
172
|
-
workflow_execution_id: string | null;
|
|
173
|
-
|
|
174
|
-
@OneToMany(() => RegisterCandidateExperienceActivity, (experienceActivity) => experienceActivity.request)
|
|
175
|
-
experience_activities: RegisterCandidateExperienceActivity[];
|
|
176
|
-
|
|
177
|
-
}
|
|
1
|
+
import { Column, Entity, OneToMany } from "typeorm";
|
|
2
|
+
import { BaseModel } from './BaseModel';
|
|
3
|
+
import { RegisterCandidateExperienceActivity } from './RegisterCandidateExperienceActivityModel';
|
|
4
|
+
|
|
5
|
+
export enum RegisterCandidateStatus {
|
|
6
|
+
PENDING = "Pending",
|
|
7
|
+
ASSIGNED = "Assigned",
|
|
8
|
+
IN_PROGRESS = "In Progress",
|
|
9
|
+
APPROVED = "Approved",
|
|
10
|
+
REJECTED = "Rejected"
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export enum CandidateStatusType {
|
|
14
|
+
SELECTED = "Selected",
|
|
15
|
+
REJECTED = "Rejected",
|
|
16
|
+
JOINED = "Joined",
|
|
17
|
+
NOT_JOINED = "Not Joined"
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
@Entity({ name: 'register_candidate_requests' })
|
|
21
|
+
export class RegisterCandidateRequests extends BaseModel {
|
|
22
|
+
|
|
23
|
+
// Common columns from register_vacancy_requests
|
|
24
|
+
@Column({ type: 'int', nullable: true })
|
|
25
|
+
req_user_department_id: number | null;
|
|
26
|
+
|
|
27
|
+
@Column({ type: 'int', nullable: true })
|
|
28
|
+
req_user_section_id: number | null;
|
|
29
|
+
|
|
30
|
+
@Column({ type: 'int', nullable: true })
|
|
31
|
+
service_id: number | null;
|
|
32
|
+
|
|
33
|
+
@Column({ type: 'int', nullable: true })
|
|
34
|
+
sub_service_id: number | null;
|
|
35
|
+
|
|
36
|
+
@Column({ type: 'int', nullable: false })
|
|
37
|
+
user_id: number;
|
|
38
|
+
|
|
39
|
+
// New columns - Personal Information
|
|
40
|
+
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
41
|
+
relationship: string | null;
|
|
42
|
+
|
|
43
|
+
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
44
|
+
place_of_birth: string | null;
|
|
45
|
+
|
|
46
|
+
@Column({ type: 'date', nullable: true })
|
|
47
|
+
date_of_birth: Date | null;
|
|
48
|
+
|
|
49
|
+
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
50
|
+
nationality: string | null;
|
|
51
|
+
|
|
52
|
+
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
53
|
+
religion_and_sect: string | null;
|
|
54
|
+
|
|
55
|
+
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
56
|
+
sub_religion_and_sect: string | null;
|
|
57
|
+
|
|
58
|
+
@Column({ type: 'text', nullable: true })
|
|
59
|
+
present_residence: string | null;
|
|
60
|
+
|
|
61
|
+
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
62
|
+
occupation_and_employer: string | null;
|
|
63
|
+
|
|
64
|
+
// Education Information
|
|
65
|
+
@Column({ type: 'text', nullable: true })
|
|
66
|
+
type_of_study_specializations_qualification: string | null;
|
|
67
|
+
|
|
68
|
+
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
69
|
+
educational_institute: string | null;
|
|
70
|
+
|
|
71
|
+
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
72
|
+
education_country: string | null;
|
|
73
|
+
|
|
74
|
+
@Column({ type: 'date', nullable: true })
|
|
75
|
+
education_period_from: Date | null;
|
|
76
|
+
|
|
77
|
+
@Column({ type: 'date', nullable: true })
|
|
78
|
+
education_period_to: Date | null;
|
|
79
|
+
|
|
80
|
+
// Note: Employment, Activity, and Charge Information fields have been moved to
|
|
81
|
+
// register_candidate_experience_activity table to support multiple experience records
|
|
82
|
+
|
|
83
|
+
// First Address
|
|
84
|
+
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
85
|
+
address1_country_state: string | null;
|
|
86
|
+
|
|
87
|
+
@Column({ type: 'varchar', length: 100, nullable: true })
|
|
88
|
+
address1_street_no: string | null;
|
|
89
|
+
|
|
90
|
+
@Column({ type: 'varchar', length: 100, nullable: true })
|
|
91
|
+
address1_road_no: string | null;
|
|
92
|
+
|
|
93
|
+
@Column({ type: 'varchar', length: 100, nullable: true })
|
|
94
|
+
address1_flat_building_no: string | null;
|
|
95
|
+
|
|
96
|
+
@Column({ type: 'text', nullable: true })
|
|
97
|
+
address1_po_box_telephone_fax: string | null;
|
|
98
|
+
|
|
99
|
+
// Second Address
|
|
100
|
+
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
101
|
+
address2_country_state: string | null;
|
|
102
|
+
|
|
103
|
+
@Column({ type: 'varchar', length: 100, nullable: true })
|
|
104
|
+
address2_street_no: string | null;
|
|
105
|
+
|
|
106
|
+
@Column({ type: 'varchar', length: 100, nullable: true })
|
|
107
|
+
address2_road_no: string | null;
|
|
108
|
+
|
|
109
|
+
@Column({ type: 'varchar', length: 100, nullable: true })
|
|
110
|
+
address2_flat_building_no: string | null;
|
|
111
|
+
|
|
112
|
+
@Column({ type: 'text', nullable: true })
|
|
113
|
+
address2_po_box_telephone_fax: string | null;
|
|
114
|
+
|
|
115
|
+
// Reference Information
|
|
116
|
+
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
117
|
+
reference_full_name: string | null;
|
|
118
|
+
|
|
119
|
+
@Column({ type: 'text', nullable: true })
|
|
120
|
+
reference_address_and_telephone: string | null;
|
|
121
|
+
|
|
122
|
+
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
123
|
+
telephone_number: string | null;
|
|
124
|
+
|
|
125
|
+
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
126
|
+
reference_employer: string | null;
|
|
127
|
+
|
|
128
|
+
// Vacancy Information
|
|
129
|
+
@Column({ type: 'int', nullable: true })
|
|
130
|
+
vacancy_id: number | null;
|
|
131
|
+
|
|
132
|
+
@Column({ type: 'text', nullable: true })
|
|
133
|
+
vacancy_description: string | null;
|
|
134
|
+
|
|
135
|
+
// Interview Information
|
|
136
|
+
@Column({ type: 'date', nullable: true })
|
|
137
|
+
interview_schedule_date: Date | null;
|
|
138
|
+
|
|
139
|
+
@Column({ type: 'time', nullable: true })
|
|
140
|
+
interview_schedule_time: string | null;
|
|
141
|
+
|
|
142
|
+
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
143
|
+
interviewer_name: string | null;
|
|
144
|
+
|
|
145
|
+
// Candidate Status
|
|
146
|
+
@Column({ type: 'enum', enum: CandidateStatusType, nullable: true })
|
|
147
|
+
candidate_status: CandidateStatusType | null;
|
|
148
|
+
|
|
149
|
+
@Column({ type: 'date', nullable: true })
|
|
150
|
+
joining_date: Date | null;
|
|
151
|
+
|
|
152
|
+
// Salary Information
|
|
153
|
+
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
154
|
+
salary: string | null;
|
|
155
|
+
|
|
156
|
+
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
157
|
+
currency: string | null;
|
|
158
|
+
|
|
159
|
+
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
160
|
+
expected_salary: string | null;
|
|
161
|
+
|
|
162
|
+
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
163
|
+
expected_currency: string | null;
|
|
164
|
+
|
|
165
|
+
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
166
|
+
currency_type: string | null;
|
|
167
|
+
|
|
168
|
+
@Column({ type: 'enum', enum: RegisterCandidateStatus, default: RegisterCandidateStatus.PENDING, nullable: false })
|
|
169
|
+
status: RegisterCandidateStatus;
|
|
170
|
+
|
|
171
|
+
@Column({ type: 'varchar', nullable: true })
|
|
172
|
+
workflow_execution_id: string | null;
|
|
173
|
+
|
|
174
|
+
@OneToMany(() => RegisterCandidateExperienceActivity, (experienceActivity) => experienceActivity.request)
|
|
175
|
+
experience_activities: RegisterCandidateExperienceActivity[];
|
|
176
|
+
|
|
177
|
+
}
|
|
File without changes
|