kcommons 2.0.13 → 2.1.0

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
@@ -11,6 +11,7 @@ export * from "./typings/includes/storeInventory.include";
11
11
  export * from "./typings/includes/user.include";
12
12
  export * from "./typings/includes/itemCategory.include";
13
13
  export * from "./typings/includes/approvalChain.include";
14
+ export * from "./typings/includes/storeLocation.include";
14
15
  export * from "./constants/permission.constants";
15
16
  export * from "./constants/entityTypes.constants";
16
17
  export * from "./typings/indent/indent_priority";
package/build/index.js CHANGED
@@ -25,6 +25,7 @@ __exportStar(require("./typings/includes/storeInventory.include"), exports);
25
25
  __exportStar(require("./typings/includes/user.include"), exports);
26
26
  __exportStar(require("./typings/includes/itemCategory.include"), exports);
27
27
  __exportStar(require("./typings/includes/approvalChain.include"), exports);
28
+ __exportStar(require("./typings/includes/storeLocation.include"), exports);
28
29
  // Constants
29
30
  __exportStar(require("./constants/permission.constants"), exports);
30
31
  __exportStar(require("./constants/entityTypes.constants"), exports);
@@ -1,4 +1,4 @@
1
1
  export declare enum DepartmentInclude {
2
2
  subdepartments = "subdepartments",
3
- employees = "employees"
3
+ roles = "roles"
4
4
  }
@@ -4,5 +4,5 @@ exports.DepartmentInclude = void 0;
4
4
  var DepartmentInclude;
5
5
  (function (DepartmentInclude) {
6
6
  DepartmentInclude["subdepartments"] = "subdepartments";
7
- DepartmentInclude["employees"] = "employees";
7
+ DepartmentInclude["roles"] = "roles";
8
8
  })(DepartmentInclude = exports.DepartmentInclude || (exports.DepartmentInclude = {}));
@@ -0,0 +1,8 @@
1
+ export declare enum StoreLocationInclude {
2
+ approval_configs = "approval_configs",
3
+ inventory_entries = "inventory_entries",
4
+ departments = "departments",
5
+ roles = "roles",
6
+ target_offices = "target_offices",
7
+ served_by_purchase_locations = "served_by_purchase_locations"
8
+ }
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.StoreLocationInclude = void 0;
4
+ var StoreLocationInclude;
5
+ (function (StoreLocationInclude) {
6
+ StoreLocationInclude["approval_configs"] = "approval_configs";
7
+ StoreLocationInclude["inventory_entries"] = "inventory_entries";
8
+ StoreLocationInclude["departments"] = "departments";
9
+ StoreLocationInclude["roles"] = "roles";
10
+ StoreLocationInclude["target_offices"] = "target_offices";
11
+ StoreLocationInclude["served_by_purchase_locations"] = "served_by_purchase_locations";
12
+ })(StoreLocationInclude = exports.StoreLocationInclude || (exports.StoreLocationInclude = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kcommons",
3
- "version": "2.0.13",
3
+ "version": "2.1.0",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.js",