kcommons 18.0.15 → 18.0.16
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.
|
@@ -168,7 +168,16 @@ export interface IFetchParentDocumentForGRNResponse {
|
|
|
168
168
|
}
|
|
169
169
|
export interface IGRNMetafields {
|
|
170
170
|
items_data: INestedItem[] | null;
|
|
171
|
+
vendor_quote_item_custom_uom_data: IGRNVendorQuoteItemCustomUOM[] | null;
|
|
171
172
|
}
|
|
172
173
|
export declare enum GRN_METAFIELDS_INCLUDE {
|
|
173
|
-
items_data = "items_data"
|
|
174
|
+
items_data = "items_data",
|
|
175
|
+
vendor_quote_item_custom_uom_data = "vendor_quote_item_custom_uom_data"
|
|
176
|
+
}
|
|
177
|
+
export interface IGRNVendorQuoteItemCustomUOM {
|
|
178
|
+
quote_item_id: string | null;
|
|
179
|
+
vendor_quote_item_name: string | null;
|
|
180
|
+
custom_uom_name: string | null;
|
|
181
|
+
custom_uom_abbrevation: string | null;
|
|
182
|
+
conversion_factor: number | null;
|
|
174
183
|
}
|
|
@@ -65,4 +65,5 @@ var GRN_ITEM_INCLUDE;
|
|
|
65
65
|
var GRN_METAFIELDS_INCLUDE;
|
|
66
66
|
(function (GRN_METAFIELDS_INCLUDE) {
|
|
67
67
|
GRN_METAFIELDS_INCLUDE["items_data"] = "items_data";
|
|
68
|
+
GRN_METAFIELDS_INCLUDE["vendor_quote_item_custom_uom_data"] = "vendor_quote_item_custom_uom_data";
|
|
68
69
|
})(GRN_METAFIELDS_INCLUDE || (exports.GRN_METAFIELDS_INCLUDE = GRN_METAFIELDS_INCLUDE = {}));
|
|
@@ -162,9 +162,11 @@ export interface INestedMRNItem extends Omit<IMRNItem, "parent_mrn" | "company"
|
|
|
162
162
|
}
|
|
163
163
|
export interface IMRNMetafields {
|
|
164
164
|
items_data: INestedItem[] | null;
|
|
165
|
+
vendor_quote_item_custom_uom_data: IMRNVendorQuoteItemCustomUOM[] | null;
|
|
165
166
|
}
|
|
166
167
|
export declare enum MRN_METAFIELDS_INCLUDE {
|
|
167
|
-
items_data = "items_data"
|
|
168
|
+
items_data = "items_data",
|
|
169
|
+
vendor_quote_item_custom_uom_data = "vendor_quote_item_custom_uom_data"
|
|
168
170
|
}
|
|
169
171
|
export interface IMRNItemUpperboundData {
|
|
170
172
|
item_id: string;
|
|
@@ -180,3 +182,10 @@ export interface IResolveDisputedMRNInputs extends Pick<IMRNFilters, "include">
|
|
|
180
182
|
/** @description This field is required if the MRN Resolution for company is set to USER_DECIDED_RESOLUTION */
|
|
181
183
|
resolution_method: ALLOWED_DISPUTED_MRN_RESOLUTION_METHOD | null;
|
|
182
184
|
}
|
|
185
|
+
export interface IMRNVendorQuoteItemCustomUOM {
|
|
186
|
+
quote_item_id: string | null;
|
|
187
|
+
vendor_quote_item_name: string | null;
|
|
188
|
+
custom_uom_name: string | null;
|
|
189
|
+
custom_uom_abbrevation: string | null;
|
|
190
|
+
conversion_factor: number | null;
|
|
191
|
+
}
|
|
@@ -72,4 +72,5 @@ var MRN_ITEM_INCLUDE;
|
|
|
72
72
|
var MRN_METAFIELDS_INCLUDE;
|
|
73
73
|
(function (MRN_METAFIELDS_INCLUDE) {
|
|
74
74
|
MRN_METAFIELDS_INCLUDE["items_data"] = "items_data";
|
|
75
|
+
MRN_METAFIELDS_INCLUDE["vendor_quote_item_custom_uom_data"] = "vendor_quote_item_custom_uom_data";
|
|
75
76
|
})(MRN_METAFIELDS_INCLUDE || (exports.MRN_METAFIELDS_INCLUDE = MRN_METAFIELDS_INCLUDE = {}));
|