kcommons 1.0.10 → 1.0.12

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
@@ -1,9 +1,10 @@
1
1
  export * from "./typings/item/item_types";
2
2
  export * from "./typings/item/item_uoms";
3
3
  export * from "./typings/item/item_tax_preference";
4
+ export * from "./typings/includes/roles.include";
4
5
  export * from "./typings/includes/companyVendors.inlcude";
5
6
  export * from "./typings/includes/department.include";
6
7
  export * from "./typings/includes/offices.include";
7
8
  export * from "./typings/includes/storeInventory.include";
8
9
  export * from "./typings/includes/user.include";
9
- export * from "./typings/includes/roles.include";
10
+ export * from "./typings/includes/itemCategory.include";
package/build/index.js CHANGED
@@ -14,9 +14,10 @@ __exportStar(require("./typings/item/item_types"), exports);
14
14
  __exportStar(require("./typings/item/item_uoms"), exports);
15
15
  __exportStar(require("./typings/item/item_tax_preference"), exports);
16
16
  // Includes
17
+ __exportStar(require("./typings/includes/roles.include"), exports);
17
18
  __exportStar(require("./typings/includes/companyVendors.inlcude"), exports);
18
19
  __exportStar(require("./typings/includes/department.include"), exports);
19
20
  __exportStar(require("./typings/includes/offices.include"), exports);
20
21
  __exportStar(require("./typings/includes/storeInventory.include"), exports);
21
22
  __exportStar(require("./typings/includes/user.include"), exports);
22
- __exportStar(require("./typings/includes/roles.include"), exports);
23
+ __exportStar(require("./typings/includes/itemCategory.include"), exports);
@@ -0,0 +1,3 @@
1
+ export declare enum ItemCategoryInclude {
2
+ subcategories = "subcategories"
3
+ }
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ItemCategoryInclude = void 0;
4
+ var ItemCategoryInclude;
5
+ (function (ItemCategoryInclude) {
6
+ ItemCategoryInclude["subcategories"] = "subcategories";
7
+ })(ItemCategoryInclude = exports.ItemCategoryInclude || (exports.ItemCategoryInclude = {}));
@@ -0,0 +1,3 @@
1
+ export declare enum ItemSubcategoryInclude {
2
+ subcategories = "subcategories"
3
+ }
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ItemSubcategoryInclude = void 0;
4
+ var ItemSubcategoryInclude;
5
+ (function (ItemSubcategoryInclude) {
6
+ ItemSubcategoryInclude["subcategories"] = "subcategories";
7
+ })(ItemSubcategoryInclude = exports.ItemSubcategoryInclude || (exports.ItemSubcategoryInclude = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kcommons",
3
- "version": "1.0.10",
3
+ "version": "1.0.12",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.js",