kcommons 3.1.1 → 3.1.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
@@ -13,6 +13,7 @@ export * from "./typings/includes/itemCategory.include";
13
13
  export * from "./typings/includes/approvalChain.include";
14
14
  export * from "./typings/includes/storeLocation.include";
15
15
  export * from "./typings/includes/purchaseLocation.include";
16
+ export * from "./typings/includes/indent.include";
16
17
  export * from "./constants/permission.constants";
17
18
  export * from "./constants/entityTypes.constants";
18
19
  export * from "./typings/indent/indent_priority";
package/build/index.js CHANGED
@@ -27,6 +27,7 @@ __exportStar(require("./typings/includes/itemCategory.include"), exports);
27
27
  __exportStar(require("./typings/includes/approvalChain.include"), exports);
28
28
  __exportStar(require("./typings/includes/storeLocation.include"), exports);
29
29
  __exportStar(require("./typings/includes/purchaseLocation.include"), exports);
30
+ __exportStar(require("./typings/includes/indent.include"), exports);
30
31
  // Constants
31
32
  __exportStar(require("./constants/permission.constants"), exports);
32
33
  __exportStar(require("./constants/entityTypes.constants"), exports);
@@ -0,0 +1,4 @@
1
+ export declare enum IndentInclude {
2
+ items = "items",
3
+ approval_chain = "approval_chain"
4
+ }
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.IndentInclude = void 0;
4
+ var IndentInclude;
5
+ (function (IndentInclude) {
6
+ IndentInclude["items"] = "items";
7
+ IndentInclude["approval_chain"] = "approval_chain";
8
+ })(IndentInclude = exports.IndentInclude || (exports.IndentInclude = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kcommons",
3
- "version": "3.1.1",
3
+ "version": "3.1.3",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.js",