@platform-modules/civil-aviation-authority 2.3.141 → 2.3.142

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 CHANGED
@@ -1,12 +1,12 @@
1
- # DB_HOST=164.52.222.169
2
- # DB_PORT=5432
3
- # DB_USER=postgres_admin_user
4
- # DB_PASS=pg_admin_user_pwd_caa_fa_$%^&OIukhjgcvbn
5
- # DB_NAME=CAA
1
+ DB_HOST=164.52.222.169
2
+ DB_PORT=5432
3
+ DB_USER=postgres_admin_user
4
+ DB_PASS=pg_admin_user_pwd_caa_fa_$%^&OIukhjgcvbn
5
+ DB_NAME=CAA
6
6
 
7
7
 
8
- DB_HOST=localhost
9
- DB_PORT=5432
10
- DB_USER=postgres
11
- DB_PASS=stevejobs
12
- DB_NAME=CAA
8
+ # DB_HOST=localhost
9
+ # DB_PORT=5432
10
+ # DB_USER=postgres
11
+ # DB_PASS=stevejobs
12
+ # DB_NAME=CAA
@@ -10,6 +10,8 @@ export declare class ScholarshipApprovalDetails extends BaseModel {
10
10
  service_id: number | null;
11
11
  sub_service_id: number | null;
12
12
  level: number;
13
+ /** Matches workflow_hierarchy.step_order / scholarship_workflows.step_order for this approval row */
14
+ workflow_step_order: number | null;
13
15
  approver_role_id: number | null;
14
16
  department_id: number | null;
15
17
  section_id: number | null;
@@ -38,6 +38,10 @@ __decorate([
38
38
  (0, typeorm_1.Column)({ type: "integer", nullable: false }),
39
39
  __metadata("design:type", Number)
40
40
  ], ScholarshipApprovalDetails.prototype, "level", void 0);
41
+ __decorate([
42
+ (0, typeorm_1.Column)({ type: "integer", nullable: true }),
43
+ __metadata("design:type", Object)
44
+ ], ScholarshipApprovalDetails.prototype, "workflow_step_order", void 0);
41
45
  __decorate([
42
46
  (0, typeorm_1.Column)({ type: "integer", nullable: true }),
43
47
  __metadata("design:type", Object)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platform-modules/civil-aviation-authority",
3
- "version": "2.3.141",
3
+ "version": "2.3.142",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {
@@ -22,6 +22,10 @@ export class ScholarshipApprovalDetails extends BaseModel {
22
22
  @Column({ type: "integer", nullable: false })
23
23
  level: number;
24
24
 
25
+ /** Matches workflow_hierarchy.step_order / scholarship_workflows.step_order for this approval row */
26
+ @Column({ type: "integer", nullable: true })
27
+ workflow_step_order: number | null;
28
+
25
29
  @Column({ type: "integer", nullable: true })
26
30
  approver_role_id: number | null;
27
31