kcommons 5.26.4 → 5.26.6

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.
@@ -16,28 +16,28 @@ export interface IIndent {
16
16
  created_by_user_id: string;
17
17
  target_store_location_id: string;
18
18
  sent_to_store_location: boolean;
19
- location?: string | null;
20
- application_reason?: string | null;
21
- custom_fields?: string | null;
22
- budget_code_id?: string | null;
23
- priority_date?: string | null;
24
- attachment_link?: string | null;
25
- remarks?: string | null;
26
- deleted_at?: string | null;
19
+ location: string | null;
20
+ custom_fields: string | null;
21
+ budget_code_id: string | null;
22
+ priority_date: string | null;
23
+ attachment_link: string | null;
24
+ application_reason: string | null;
25
+ remarks: string | null;
26
+ deleted_at: string | null;
27
27
  sent_to_store_location_at: string | null;
28
28
  approved_at: string | null;
29
29
  is_enabled: boolean;
30
30
  is_deleted: boolean;
31
31
  created_at: string;
32
32
  updated_at: string;
33
- items?: INestedIndentItem[] | null;
34
- department?: INestedDepartment | null;
35
- company?: INestedCompany | null;
36
- created_by_user?: INestedUser | null;
37
- target_store_location?: INestedStoreLocation | null;
38
- corresponding_mis?: INestedMI[] | null;
39
- prs?: INestedPR[] | null;
40
- approval_chain?: INestedApprovalChainEntry[] | null;
33
+ items: INestedIndentItem[] | null;
34
+ department: INestedDepartment | null;
35
+ company: INestedCompany | null;
36
+ created_by_user: INestedUser | null;
37
+ target_store_location: INestedStoreLocation | null;
38
+ corresponding_mis: INestedMI[] | null;
39
+ prs: INestedPR[] | null;
40
+ approval_chain: INestedApprovalChainEntry[] | null;
41
41
  }
42
42
  export interface INestedIndent extends Omit<IIndent, "department" | "company" | "budget_code" | "created_by_user" | "target_store_location" | "items" | "approval_chain" | "corresponding_mis" | "prs"> {
43
43
  }
@@ -3,7 +3,6 @@ import { INestedCompany } from "./company.typings";
3
3
  import { INestedDepartment } from "./department.typings";
4
4
  import { IDocItem } from "./docItems.typings";
5
5
  import { INestedIndent } from "./indent.typings";
6
- import { INestedItem } from "./item.typings";
7
6
  import { INestedStoreLocation } from "./storeLocation.typings";
8
7
  import { INestedUser } from "./user.typings";
9
8
  export interface IMI {
@@ -26,7 +25,7 @@ export interface IMI {
26
25
  parent_department?: INestedDepartment | null;
27
26
  created_by_user?: INestedUser | null;
28
27
  parent_indent?: INestedIndent | null;
29
- items?: INestedItem[] | null;
28
+ items?: INestedMIItem[] | null;
30
29
  approval_chain?: INestedApprovalChainEntry[] | null;
31
30
  store_location?: INestedStoreLocation | null;
32
31
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kcommons",
3
- "version": "5.26.4",
3
+ "version": "5.26.6",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.js",