kcommons 5.9.8 → 5.9.9

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.
@@ -4,6 +4,7 @@ import { INestedDepartment } from "./department.typings";
4
4
  import { IDocItem } from "./docItems.typings";
5
5
  import { INestedIndent } from "./indent.typings";
6
6
  import { INestedItem } from "./item.typings";
7
+ import { INestedStoreLocation } from "./storeLocation.typings";
7
8
  import { INestedUser } from "./user.typings";
8
9
  export interface IMI {
9
10
  id: string;
@@ -27,8 +28,9 @@ export interface IMI {
27
28
  parent_indent?: INestedIndent | null;
28
29
  items?: INestedItem[] | null;
29
30
  approval_chain?: INestedApprovalChainEntry[] | null;
31
+ store_location?: INestedStoreLocation | null;
30
32
  }
31
- export interface INestedMI extends Omit<IMI, "store_location" | "company" | "paretn_department" | "created_by_user" | "parent_indent" | "items" | "approval_chain"> {
33
+ export interface INestedMI extends Omit<IMI, "store_location" | "company" | "paretn_department" | "created_by_user" | "parent_indent" | "items" | "approval_chain" | "store_location"> {
32
34
  }
33
35
  export declare enum MI_STATUS {
34
36
  DRAFT = "DRAFT",
@@ -43,7 +45,8 @@ export declare enum MI_INCLUDE {
43
45
  created_by_user = "created_by_user",
44
46
  parent_indent = "parent_indent",
45
47
  approval_chain = "approval_chain",
46
- items = "items"
48
+ items = "items",
49
+ store_location = "store_location"
47
50
  }
48
51
  export interface IMIItems extends IDocItem {
49
52
  mi_id: string;
@@ -17,4 +17,5 @@ var MI_INCLUDE;
17
17
  MI_INCLUDE["parent_indent"] = "parent_indent";
18
18
  MI_INCLUDE["approval_chain"] = "approval_chain";
19
19
  MI_INCLUDE["items"] = "items";
20
+ MI_INCLUDE["store_location"] = "store_location";
20
21
  })(MI_INCLUDE || (exports.MI_INCLUDE = MI_INCLUDE = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kcommons",
3
- "version": "5.9.8",
3
+ "version": "5.9.9",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.js",