kcommons 5.11.5 → 5.11.7
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,4 +1,5 @@
|
|
|
1
1
|
import { INestedApprovalChainEntry } from "./approvalChain.typings";
|
|
2
|
+
import { INestedBOM } from "./bom.typings";
|
|
2
3
|
import { INestedCompany } from "./company.typings";
|
|
3
4
|
import { INestedCompanyVendors } from "./companyVendors.typings";
|
|
4
5
|
import { INestedPR, INestedPrItem } from "./pr.typings";
|
|
@@ -87,7 +88,8 @@ export declare enum RFQ_ITEM_INCLUDE {
|
|
|
87
88
|
created_by_user = "created_by_user",
|
|
88
89
|
parent_pr = "parent_pr",
|
|
89
90
|
corresponding_pr_item = "corresponding_pr_item",
|
|
90
|
-
associated_quote_items = "associated_quote_items"
|
|
91
|
+
associated_quote_items = "associated_quote_items",
|
|
92
|
+
parent_bom = "parent_bom"
|
|
91
93
|
}
|
|
92
94
|
export interface IRFQItem {
|
|
93
95
|
id: string;
|
|
@@ -113,6 +115,7 @@ export interface IRFQItem {
|
|
|
113
115
|
parent_pr?: INestedPR | null;
|
|
114
116
|
corresponding_pr_item?: INestedPrItem | null;
|
|
115
117
|
associated_quote_items?: INestedQuoteItems[] | null;
|
|
118
|
+
parent_bom?: INestedBOM | null;
|
|
116
119
|
}
|
|
117
|
-
export interface INestedRFQItem extends Omit<IRFQItem, "parent_rfq" | "created_by_user" | "parent_pr" | "corresponding_pr_item" | "associated_quote_items"> {
|
|
120
|
+
export interface INestedRFQItem extends Omit<IRFQItem, "parent_rfq" | "created_by_user" | "parent_pr" | "corresponding_pr_item" | "associated_quote_items" | "parent_bom"> {
|
|
118
121
|
}
|
|
@@ -45,4 +45,5 @@ var RFQ_ITEM_INCLUDE;
|
|
|
45
45
|
RFQ_ITEM_INCLUDE["parent_pr"] = "parent_pr";
|
|
46
46
|
RFQ_ITEM_INCLUDE["corresponding_pr_item"] = "corresponding_pr_item";
|
|
47
47
|
RFQ_ITEM_INCLUDE["associated_quote_items"] = "associated_quote_items";
|
|
48
|
+
RFQ_ITEM_INCLUDE["parent_bom"] = "parent_bom";
|
|
48
49
|
})(RFQ_ITEM_INCLUDE || (exports.RFQ_ITEM_INCLUDE = RFQ_ITEM_INCLUDE = {}));
|