kcommons 4.4.1 → 4.4.3

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,6 +17,7 @@ export * from "./typings/vendor.typings";
17
17
  export * from "./typings/vendorGroup.typings";
18
18
  export * from "./typings/item.typings";
19
19
  export * from "./typings/documentTaxes.typings";
20
+ export * from "./typings/po.typings";
20
21
  export * from "./constants/permission.constants";
21
22
  export * from "./constants/entityTypes.constants";
22
23
  export * from "./constants/documentStatus.typings";
package/build/index.js CHANGED
@@ -30,6 +30,7 @@ __exportStar(require("./typings/vendor.typings"), exports);
30
30
  __exportStar(require("./typings/vendorGroup.typings"), exports);
31
31
  __exportStar(require("./typings/item.typings"), exports);
32
32
  __exportStar(require("./typings/documentTaxes.typings"), exports);
33
+ __exportStar(require("./typings/po.typings"), exports);
33
34
  // Constants
34
35
  __exportStar(require("./constants/permission.constants"), exports);
35
36
  __exportStar(require("./constants/entityTypes.constants"), exports);
@@ -0,0 +1,4 @@
1
+ export declare enum PO_INCLUDE {
2
+ approval_chain = "approval_chain",
3
+ taxes = "taxes"
4
+ }
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PO_INCLUDE = void 0;
4
+ var PO_INCLUDE;
5
+ (function (PO_INCLUDE) {
6
+ PO_INCLUDE["approval_chain"] = "approval_chain";
7
+ PO_INCLUDE["taxes"] = "taxes";
8
+ })(PO_INCLUDE = exports.PO_INCLUDE || (exports.PO_INCLUDE = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kcommons",
3
- "version": "4.4.1",
3
+ "version": "4.4.3",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.js",