kcommons 14.23.5 → 14.25.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.
|
@@ -58,7 +58,7 @@ export declare enum PRICING_PLANS {
|
|
|
58
58
|
ADVANCE = "ADVANCE"
|
|
59
59
|
}
|
|
60
60
|
export interface IVendorOnboardingCompaniesFilter extends IPaginationFilters {
|
|
61
|
-
|
|
61
|
+
name?: string;
|
|
62
62
|
}
|
|
63
63
|
export declare enum COMPANY_INCLUDE {
|
|
64
64
|
associated_purchase_locations = "associated_purchase_locations",
|
|
@@ -106,6 +106,7 @@ export interface IOPEN_QUOTE_TOKEN_PAYLOAD {
|
|
|
106
106
|
}
|
|
107
107
|
export interface IQuoteFilters {
|
|
108
108
|
company_id?: string;
|
|
109
|
+
name?: string;
|
|
109
110
|
include?: QUOTE_INCLUDES[];
|
|
110
111
|
}
|
|
111
112
|
export interface IQuoteFiltersWithPagination extends IPaginationFilters, IQuoteFilters {
|
|
@@ -206,9 +206,25 @@ export interface IOpenRFQApprovalData {
|
|
|
206
206
|
userData: IUser;
|
|
207
207
|
rfqCompanyVendors: ICompanyVendor[];
|
|
208
208
|
}
|
|
209
|
+
export interface IRFQVendorMetafieldsData {
|
|
210
|
+
vendor_tradename: string | null;
|
|
211
|
+
vendor_contact: string | null;
|
|
212
|
+
vendor_email: string | null;
|
|
213
|
+
vendor_type: RFQVendorType | null;
|
|
214
|
+
has_quoted: boolean | null;
|
|
215
|
+
quoted_at: string | null;
|
|
216
|
+
vendor_profile: string | null;
|
|
217
|
+
/** @description Will be included in the response if vendor is present in the Company's Vendor Master */
|
|
218
|
+
vendor_code: string | null;
|
|
219
|
+
/** @description Will be included in the response if the vendor is present in Company's Vendor Master */
|
|
220
|
+
company_vendor_id: string | null;
|
|
221
|
+
vendor_id: string | null;
|
|
222
|
+
}
|
|
209
223
|
export interface IRFQMetafields {
|
|
210
224
|
items_data: INestedItem[] | null;
|
|
225
|
+
rfq_vendors_data: IRFQVendorMetafieldsData[] | null;
|
|
211
226
|
}
|
|
212
227
|
export declare enum RFQ_METAFIELDS_INCLUDE {
|
|
213
|
-
items_data = "items_data"
|
|
228
|
+
items_data = "items_data",
|
|
229
|
+
rfq_vendors_data = "rfq_vendors_data"
|
|
214
230
|
}
|
|
@@ -85,4 +85,5 @@ var RFQ_BOM_INCLUDE;
|
|
|
85
85
|
var RFQ_METAFIELDS_INCLUDE;
|
|
86
86
|
(function (RFQ_METAFIELDS_INCLUDE) {
|
|
87
87
|
RFQ_METAFIELDS_INCLUDE["items_data"] = "items_data";
|
|
88
|
+
RFQ_METAFIELDS_INCLUDE["rfq_vendors_data"] = "rfq_vendors_data";
|
|
88
89
|
})(RFQ_METAFIELDS_INCLUDE || (exports.RFQ_METAFIELDS_INCLUDE = RFQ_METAFIELDS_INCLUDE = {}));
|