sea-platform-helpers 1.5.13 → 1.5.14

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.
@@ -10,4 +10,8 @@ export declare enum ProgramStatuses {
10
10
  Done = "done"
11
11
  }
12
12
  export declare const ProgramStatusLabels: Record<ProgramStatuses, string>;
13
+ export declare const ProgramStatusOptions: {
14
+ label: string;
15
+ value: ProgramStatuses;
16
+ }[];
13
17
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/constants/strategy/program/index.ts"],"names":[],"mappings":"AAAA,oBAAY,kBAAkB;IAC5B,WAAW,gBAAgB;IAC3B,MAAM,WAAW;CAClB;AAED,oBAAY,eAAe;IACzB,IAAI,UAAU;IACd,UAAU,gBAAgB;IAC1B,QAAQ,cAAc;IACtB,OAAO,YAAY;IACnB,IAAI,SAAS;CACd;AAED,eAAO,MAAM,mBAAmB,EAAE,MAAM,CAAC,eAAe,EAAE,MAAM,CAM/D,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/constants/strategy/program/index.ts"],"names":[],"mappings":"AAAA,oBAAY,kBAAkB;IAC5B,WAAW,gBAAgB;IAC3B,MAAM,WAAW;CAClB;AAED,oBAAY,eAAe;IACzB,IAAI,UAAU;IACd,UAAU,gBAAgB;IAC1B,QAAQ,cAAc;IACtB,OAAO,YAAY;IACnB,IAAI,SAAS;CACd;AAED,eAAO,MAAM,mBAAmB,EAAE,MAAM,CAAC,eAAe,EAAE,MAAM,CAM/D,CAAC;AAEF,eAAO,MAAM,oBAAoB,EAAE;IACjC,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,eAAe,CAAC;CACxB,EAMA,CAAC"}
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ProgramStatusLabels = exports.ProgramStatuses = exports.ProgramMemberTypes = void 0;
3
+ exports.ProgramStatusOptions = exports.ProgramStatusLabels = exports.ProgramStatuses = exports.ProgramMemberTypes = void 0;
4
4
  var ProgramMemberTypes;
5
5
  (function (ProgramMemberTypes) {
6
6
  ProgramMemberTypes["Stakeholder"] = "Stakeholder";
@@ -21,3 +21,10 @@ exports.ProgramStatusLabels = {
21
21
  blocked: "Blocked",
22
22
  done: "Done",
23
23
  };
24
+ exports.ProgramStatusOptions = [
25
+ { label: "To Do", value: ProgramStatuses.ToDo },
26
+ { label: "In Progress", value: ProgramStatuses.InProgress },
27
+ { label: "In Review", value: ProgramStatuses.InReview },
28
+ { label: "Blocked", value: ProgramStatuses.Blocked },
29
+ { label: "Done", value: ProgramStatuses.Done },
30
+ ];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "sea-platform-helpers",
3
3
  "description": "SEA platform helpers library",
4
- "version": "1.5.13",
4
+ "version": "1.5.14",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
7
7
  "build": "tsc --build",