@platform-modules/civil-aviation-authority 2.3.177 → 2.3.179
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/ScholarshipApprovalModel.d.ts +5 -0
- package/dist/models/ScholarshipApprovalModel.js +4 -0
- package/dist/models/ScholarshipRequestModel.d.ts +2 -0
- package/dist/models/ScholarshipRequestModel.js +8 -0
- package/package.json +1 -1
- package/src/data-source.ts +385 -385
- package/src/index.ts +413 -413
- package/src/models/ScholarshipApprovalModel.ts +7 -0
- package/src/models/ScholarshipRequestModel.ts +6 -0
|
@@ -12,6 +12,11 @@ export declare class ScholarshipApprovalDetails extends BaseModel {
|
|
|
12
12
|
level: number;
|
|
13
13
|
/** Matches workflow_hierarchy.step_order / scholarship_workflows.step_order for this approval row */
|
|
14
14
|
workflow_step_order: number | null;
|
|
15
|
+
/**
|
|
16
|
+
* Conductor taskReferenceName for this approval step (set at request create).
|
|
17
|
+
* Approve API uses this to complete the correct HUMAN task for every level without guessing.
|
|
18
|
+
*/
|
|
19
|
+
conductor_task_reference_name: string | null;
|
|
15
20
|
approver_role_id: number | null;
|
|
16
21
|
department_id: number | null;
|
|
17
22
|
section_id: number | null;
|
|
@@ -42,6 +42,10 @@ __decorate([
|
|
|
42
42
|
(0, typeorm_1.Column)({ type: "integer", nullable: true }),
|
|
43
43
|
__metadata("design:type", Object)
|
|
44
44
|
], ScholarshipApprovalDetails.prototype, "workflow_step_order", void 0);
|
|
45
|
+
__decorate([
|
|
46
|
+
(0, typeorm_1.Column)({ type: "varchar", length: 255, nullable: true }),
|
|
47
|
+
__metadata("design:type", Object)
|
|
48
|
+
], ScholarshipApprovalDetails.prototype, "conductor_task_reference_name", void 0);
|
|
45
49
|
__decorate([
|
|
46
50
|
(0, typeorm_1.Column)({ type: "integer", nullable: true }),
|
|
47
51
|
__metadata("design:type", Object)
|
|
@@ -23,6 +23,8 @@ export declare class ScholarshipRequests extends BaseModel {
|
|
|
23
23
|
type: ScholarshipType;
|
|
24
24
|
/** Planned-flow only: whether amount exceeds threshold; Unplanned rows store null. */
|
|
25
25
|
is_amount_more_than_tenthousand: "Yes" | "No" | null;
|
|
26
|
+
amount: string | null;
|
|
27
|
+
currency_type: string | null;
|
|
26
28
|
reason: string | null;
|
|
27
29
|
description: string | null;
|
|
28
30
|
start_date: string | null;
|
|
@@ -69,6 +69,14 @@ __decorate([
|
|
|
69
69
|
(0, typeorm_1.Column)({ type: "varchar", length: 10, nullable: true }),
|
|
70
70
|
__metadata("design:type", Object)
|
|
71
71
|
], ScholarshipRequests.prototype, "is_amount_more_than_tenthousand", void 0);
|
|
72
|
+
__decorate([
|
|
73
|
+
(0, typeorm_1.Column)({ type: "varchar", length: 255, nullable: true }),
|
|
74
|
+
__metadata("design:type", Object)
|
|
75
|
+
], ScholarshipRequests.prototype, "amount", void 0);
|
|
76
|
+
__decorate([
|
|
77
|
+
(0, typeorm_1.Column)({ type: "varchar", length: 100, nullable: true }),
|
|
78
|
+
__metadata("design:type", Object)
|
|
79
|
+
], ScholarshipRequests.prototype, "currency_type", void 0);
|
|
72
80
|
__decorate([
|
|
73
81
|
(0, typeorm_1.Column)({ type: "text", nullable: true }),
|
|
74
82
|
__metadata("design:type", Object)
|