@platform-modules/foreign-ministry 1.3.4 → 1.3.6
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/dist/models/GeneralServiceWorkFlowModel.d.ts +1 -0
- package/dist/models/GeneralServiceWorkFlowModel.js +4 -0
- package/dist/models/RegisterVacancyRequestModel.d.ts +1 -0
- package/dist/models/RegisterVacancyRequestModel.js +4 -0
- package/package.json +1 -1
- package/src/models/GeneralServiceWorkFlowModel.ts +3 -0
- package/src/models/RegisterVacancyRequestModel.ts +3 -0
|
@@ -17,5 +17,6 @@ export declare class GeneralServiceWorkFlow extends BaseModel {
|
|
|
17
17
|
service_id: number | null;
|
|
18
18
|
sub_service_id: number | null;
|
|
19
19
|
closure_reason: string | null;
|
|
20
|
+
level: number | null;
|
|
20
21
|
constructor(request_id: number, status: GeneralServiceWorkFlowStatus, approved_by_user_id: number, approved_by_role_id: number, content: string, service_id?: number | null, sub_service_id?: number | null);
|
|
21
22
|
}
|
|
@@ -74,6 +74,10 @@ __decorate([
|
|
|
74
74
|
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
75
75
|
__metadata("design:type", Object)
|
|
76
76
|
], GeneralServiceWorkFlow.prototype, "closure_reason", void 0);
|
|
77
|
+
__decorate([
|
|
78
|
+
(0, typeorm_1.Column)({ type: 'int', nullable: true }),
|
|
79
|
+
__metadata("design:type", Object)
|
|
80
|
+
], GeneralServiceWorkFlow.prototype, "level", void 0);
|
|
77
81
|
exports.GeneralServiceWorkFlow = GeneralServiceWorkFlow = __decorate([
|
|
78
82
|
(0, typeorm_1.Entity)({ name: 'general_service_work_flows' }),
|
|
79
83
|
__metadata("design:paramtypes", [Number, String, Number, Number, String, Object, Object])
|
|
@@ -16,6 +16,7 @@ export declare class RegisterVacancyRequests extends BaseModel {
|
|
|
16
16
|
no_of_positions: number;
|
|
17
17
|
description: string | null;
|
|
18
18
|
salary: string;
|
|
19
|
+
currency_type: string | null;
|
|
19
20
|
position_details: string;
|
|
20
21
|
status: RegisterVacancyStatus;
|
|
21
22
|
workflow_execution_id: string | null;
|
|
@@ -59,6 +59,10 @@ __decorate([
|
|
|
59
59
|
(0, typeorm_1.Column)({ type: 'varchar', nullable: false }),
|
|
60
60
|
__metadata("design:type", String)
|
|
61
61
|
], RegisterVacancyRequests.prototype, "salary", void 0);
|
|
62
|
+
__decorate([
|
|
63
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
|
|
64
|
+
__metadata("design:type", Object)
|
|
65
|
+
], RegisterVacancyRequests.prototype, "currency_type", void 0);
|
|
62
66
|
__decorate([
|
|
63
67
|
(0, typeorm_1.Column)({ type: 'text', nullable: false }),
|
|
64
68
|
__metadata("design:type", String)
|
package/package.json
CHANGED
|
@@ -54,6 +54,9 @@ export class GeneralServiceWorkFlow extends BaseModel {
|
|
|
54
54
|
@Column({ type: 'text', nullable: true })
|
|
55
55
|
closure_reason: string | null; // Reason for closure (requirement #12)
|
|
56
56
|
|
|
57
|
+
@Column({ type: 'int', nullable: true })
|
|
58
|
+
level: number | null;
|
|
59
|
+
|
|
57
60
|
|
|
58
61
|
constructor(
|
|
59
62
|
request_id: number,
|
|
@@ -40,6 +40,9 @@ export class RegisterVacancyRequests extends BaseModel {
|
|
|
40
40
|
@Column({ type: 'varchar', nullable: false })
|
|
41
41
|
salary: string;
|
|
42
42
|
|
|
43
|
+
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
44
|
+
currency_type: string | null;
|
|
45
|
+
|
|
43
46
|
@Column({ type: 'text', nullable: false })
|
|
44
47
|
position_details: string;
|
|
45
48
|
|