kcommons 3.1.4 → 3.2.1

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/build/index.d.ts CHANGED
@@ -17,5 +17,6 @@ export * from "./typings/includes/indent.include";
17
17
  export * from "./constants/permission.constants";
18
18
  export * from "./constants/entityTypes.constants";
19
19
  export * from "./typings/indent/indent_priority";
20
+ export * from "./typings/indent/indent.typings";
20
21
  export * from "./typings/pr/pr_priority";
21
22
  export * from "./typings/dept-type/deptType.typings";
package/build/index.js CHANGED
@@ -33,6 +33,7 @@ __exportStar(require("./constants/permission.constants"), exports);
33
33
  __exportStar(require("./constants/entityTypes.constants"), exports);
34
34
  // Indent
35
35
  __exportStar(require("./typings/indent/indent_priority"), exports);
36
+ __exportStar(require("./typings/indent/indent.typings"), exports);
36
37
  // PR
37
38
  __exportStar(require("./typings/pr/pr_priority"), exports);
38
39
  // dept types
@@ -2,3 +2,4 @@ export declare enum IndentInclude {
2
2
  items = "items",
3
3
  approval_chain = "approval_chain"
4
4
  }
5
+ export declare const test = "test";
@@ -1,8 +1,9 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.IndentInclude = void 0;
3
+ exports.test = exports.IndentInclude = void 0;
4
4
  var IndentInclude;
5
5
  (function (IndentInclude) {
6
6
  IndentInclude["items"] = "items";
7
7
  IndentInclude["approval_chain"] = "approval_chain";
8
8
  })(IndentInclude = exports.IndentInclude || (exports.IndentInclude = {}));
9
+ exports.test = "test";
@@ -0,0 +1,7 @@
1
+ export declare enum IndentStatus {
2
+ DRAFT = "DRAFT",
3
+ SENT_FOR_APPROVAL = "SENT_FOR_APPROVAL",
4
+ APPROVED = "APPROVED",
5
+ REJECTED = "REJECTED",
6
+ SENT_TO_VENDOR = "SENT_TO_VENDOR"
7
+ }
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.IndentStatus = void 0;
4
+ var IndentStatus;
5
+ (function (IndentStatus) {
6
+ IndentStatus["DRAFT"] = "DRAFT";
7
+ IndentStatus["SENT_FOR_APPROVAL"] = "SENT_FOR_APPROVAL";
8
+ IndentStatus["APPROVED"] = "APPROVED";
9
+ IndentStatus["REJECTED"] = "REJECTED";
10
+ IndentStatus["SENT_TO_VENDOR"] = "SENT_TO_VENDOR";
11
+ })(IndentStatus = exports.IndentStatus || (exports.IndentStatus = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kcommons",
3
- "version": "3.1.4",
3
+ "version": "3.2.1",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.js",
@@ -13,6 +13,7 @@
13
13
  "author": "",
14
14
  "license": "ISC",
15
15
  "dependencies": {
16
+ "kcommons": "^3.2.0",
16
17
  "np": "^10.0.7"
17
18
  }
18
19
  }