@platform-modules/foreign-ministry 1.1.7 → 1.1.8

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.
@@ -4,7 +4,8 @@ export declare enum FinancialWorkFlowStatus {
4
4
  COMPLETED = "Completed",
5
5
  NOT_YET_STARTED = "Not Yet Started",
6
6
  PENDING = "Pending",
7
- IN_PROGRESS = "In Progress"
7
+ IN_PROGRESS = "In Progress",
8
+ FAILED = "Failed"
8
9
  }
9
10
  export declare class FinancialWorkFlow extends BaseModel {
10
11
  financial_request_id: number;
@@ -19,6 +19,7 @@ var FinancialWorkFlowStatus;
19
19
  FinancialWorkFlowStatus["NOT_YET_STARTED"] = "Not Yet Started";
20
20
  FinancialWorkFlowStatus["PENDING"] = "Pending";
21
21
  FinancialWorkFlowStatus["IN_PROGRESS"] = "In Progress";
22
+ FinancialWorkFlowStatus["FAILED"] = "Failed";
22
23
  })(FinancialWorkFlowStatus || (exports.FinancialWorkFlowStatus = FinancialWorkFlowStatus = {}));
23
24
  let FinancialWorkFlow = class FinancialWorkFlow extends BaseModel_1.BaseModel {
24
25
  constructor(financial_request_id, status, approved_by_user_id, content) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platform-modules/foreign-ministry",
3
- "version": "1.1.7",
3
+ "version": "1.1.8",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {
@@ -6,7 +6,8 @@ export enum FinancialWorkFlowStatus {
6
6
  COMPLETED = "Completed",
7
7
  NOT_YET_STARTED = "Not Yet Started",
8
8
  PENDING = "Pending",
9
- IN_PROGRESS = "In Progress"
9
+ IN_PROGRESS = "In Progress",
10
+ FAILED = "Failed"
10
11
  }
11
12
 
12
13
  @Entity({ name: 'financial_work_flows' })