kcommons 5.6.0 → 5.6.2

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
- // Commons
53
+ // Common
54
54
  __exportStar(require("./typings/common/paginationFilters.typings"), exports);
55
55
  // Classes
56
56
  __exportStar(require("./classes/asnWrapper.class"), exports);
@@ -4,7 +4,8 @@ import { INestedDepartment } from "./department.typings";
4
4
  import { GATE_INCLUDE } from "./grn.typings";
5
5
  import { INestedRole } from "./roles.typings";
6
6
  import { INestedStoreLocation } from "./storeLocation.typings";
7
- export interface IGate {
7
+ import { IAddress } from "./utils/address.typings";
8
+ export interface IGate extends IAddress {
8
9
  id: string;
9
10
  gate_code: string;
10
11
  gate_name: string;
@@ -12,14 +13,9 @@ export interface IGate {
12
13
  created_by_id: string;
13
14
  incharge_id: string;
14
15
  contact_person_id: string;
15
- pincode: string | null;
16
- area: string | null;
17
- state: string | null;
18
- country: string | null;
19
- address: string | null;
20
16
  is_enabled: boolean;
21
- is_deleted: boolean | null;
22
- deleted_at: string | null;
17
+ is_deleted?: boolean | null;
18
+ deleted_at?: string | null;
23
19
  created_at: string;
24
20
  updated_at: string;
25
21
  approval_configs?: INestedApprovalConfig[] | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kcommons",
3
- "version": "5.6.0",
3
+ "version": "5.6.2",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.js",