kcommons 5.15.2 → 5.16.0

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.
@@ -1,10 +1,10 @@
1
- import { IApprovalChainEntry } from "./approvalChain.typings";
2
1
  import { INestedBOM } from "./bom.typings";
3
2
  import { INestedCompany } from "./company.typings";
4
3
  import { INestedCompanyVendors } from "./companyVendors.typings";
5
4
  import { INestedComparative } from "./comparative.typings";
6
5
  import { ITaxRelatedItemInputs } from "./docItems.typings";
7
6
  import { INestedDocumentTaxes } from "./documentTaxes.typings";
7
+ import { INestedEntityApprovalChainEntry } from "./entityApprovalChainEntry.typings";
8
8
  import { INestedItem } from "./item.typings";
9
9
  import { INestedPurchaseLocation } from "./purchaseLocation.typings";
10
10
  import { INestedQuote } from "./quote.typings";
@@ -66,7 +66,7 @@ export interface IPurchaseOrder {
66
66
  comparative: INestedComparative | null;
67
67
  items: INestedPOItem[] | null;
68
68
  boms: INestedPOBom[] | null;
69
- approval_chain: IApprovalChainEntry[] | null;
69
+ approval_chain: INestedEntityApprovalChainEntry[] | null;
70
70
  taxes: INestedDocumentTaxes[] | null;
71
71
  }
72
72
  export interface INestedPo extends Omit<IPurchaseOrder, "company" | "purchase_location" | "shipping_store_location" | "created_by_user" | "company_vendor" | "contact_person" | "sent_for_approval_by" | "sent_to_vendor_by" | "parent_quote" | "comparative" | "items" | "boms" | "approval_chain" | "taxes"> {
@@ -108,6 +108,8 @@ export interface IRFQItem {
108
108
  uom: string;
109
109
  code_sku: string;
110
110
  quantity: number;
111
+ pending_qnty: number;
112
+ processing_qnty: number;
111
113
  created_by_user_id: string;
112
114
  item_description?: string | null;
113
115
  remarks?: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kcommons",
3
- "version": "5.15.2",
3
+ "version": "5.16.0",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.js",