@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.
@@ -26,6 +26,13 @@ export class ScholarshipApprovalDetails extends BaseModel {
26
26
  @Column({ type: "integer", nullable: true })
27
27
  workflow_step_order: number | null;
28
28
 
29
+ /**
30
+ * Conductor taskReferenceName for this approval step (set at request create).
31
+ * Approve API uses this to complete the correct HUMAN task for every level without guessing.
32
+ */
33
+ @Column({ type: "varchar", length: 255, nullable: true })
34
+ conductor_task_reference_name: string | null;
35
+
29
36
  @Column({ type: "integer", nullable: true })
30
37
  approver_role_id: number | null;
31
38
 
@@ -48,6 +48,12 @@ export class ScholarshipRequests extends BaseModel {
48
48
  @Column({ type: "varchar", length: 10, nullable: true })
49
49
  is_amount_more_than_tenthousand: "Yes" | "No" | null;
50
50
 
51
+ @Column({ type: "varchar", length: 255, nullable: true })
52
+ amount: string | null;
53
+
54
+ @Column({ type: "varchar", length: 100, nullable: true })
55
+ currency_type: string | null;
56
+
51
57
  @Column({ type: "text", nullable: true })
52
58
  reason: string | null;
53
59