kcommons 5.6.3 → 5.6.5

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.js CHANGED
@@ -50,7 +50,7 @@ __exportStar(require("./constants/documentStatus.typings"), exports);
50
50
  __exportStar(require("./constants/form.constants"), exports);
51
51
  //Vendor
52
52
  __exportStar(require("./typings/quote.typings"), exports);
53
- // Common
53
+ // Commons
54
54
  __exportStar(require("./typings/common/paginationFilters.typings"), exports);
55
55
  // Classes
56
56
  __exportStar(require("./classes/asnWrapper.class"), exports);
@@ -1,11 +1,18 @@
1
1
  import { INestedApprovalConfig } from "./approvalConfig.typings";
2
2
  import { IPaginationFilters } from "./common/paginationFilters.typings";
3
3
  import { INestedDepartment } from "./department.typings";
4
- import { GATE_INCLUDE } from "./grn.typings";
5
4
  import { INestedRole } from "./roles.typings";
6
5
  import { INestedStoreLocation } from "./storeLocation.typings";
7
6
  import { INestedUser } from "./user.typings";
8
7
  import { IAddress } from "./utils/address.typings";
8
+ export declare enum GATE_INCLUDE {
9
+ approval_configs = "approval_configs",
10
+ departments = "departments",
11
+ roles = "roles",
12
+ target_store_locations = "target_store_locations",
13
+ incharge = "incharge",
14
+ contact_person = "contact_person"
15
+ }
9
16
  export interface IGate extends IAddress {
10
17
  id: string;
11
18
  gate_code: string;
@@ -1,2 +1,12 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GATE_INCLUDE = void 0;
4
+ var GATE_INCLUDE;
5
+ (function (GATE_INCLUDE) {
6
+ GATE_INCLUDE["approval_configs"] = "approval_configs";
7
+ GATE_INCLUDE["departments"] = "departments";
8
+ GATE_INCLUDE["roles"] = "roles";
9
+ GATE_INCLUDE["target_store_locations"] = "target_store_locations";
10
+ GATE_INCLUDE["incharge"] = "incharge";
11
+ GATE_INCLUDE["contact_person"] = "contact_person";
12
+ })(GATE_INCLUDE || (exports.GATE_INCLUDE = GATE_INCLUDE = {}));
@@ -1,9 +1,3 @@
1
- export declare enum GATE_INCLUDE {
2
- approval_configs = "approval_configs",
3
- departments = "departments",
4
- roles = "roles",
5
- target_store_locations = "target_store_locations"
6
- }
7
1
  export interface IGRN {
8
2
  id: string;
9
3
  }
@@ -1,10 +1,2 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GATE_INCLUDE = void 0;
4
- var GATE_INCLUDE;
5
- (function (GATE_INCLUDE) {
6
- GATE_INCLUDE["approval_configs"] = "approval_configs";
7
- GATE_INCLUDE["departments"] = "departments";
8
- GATE_INCLUDE["roles"] = "roles";
9
- GATE_INCLUDE["target_store_locations"] = "target_store_locations";
10
- })(GATE_INCLUDE || (exports.GATE_INCLUDE = GATE_INCLUDE = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kcommons",
3
- "version": "5.6.3",
3
+ "version": "5.6.5",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.js",