kcommons 18.0.3 → 18.0.5
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.
|
@@ -108,7 +108,9 @@ export interface INestedComparativeItem extends Omit<IComparativeItem, "company"
|
|
|
108
108
|
}
|
|
109
109
|
export interface IComparativeMetafields {
|
|
110
110
|
items_data: INestedItem[] | null;
|
|
111
|
+
early_access_user_data: INestedComparativeEarlyAccessRequest[] | null;
|
|
111
112
|
}
|
|
112
113
|
export declare enum COMPARATIVE_METAFIELDS_INCLUDE {
|
|
113
|
-
items_data = 0
|
|
114
|
+
items_data = 0,
|
|
115
|
+
early_access_user_data = "early_access_user_data"
|
|
114
116
|
}
|
|
@@ -46,4 +46,5 @@ var COMPARATIVE_METAFIELDS_INCLUDE;
|
|
|
46
46
|
(function (COMPARATIVE_METAFIELDS_INCLUDE) {
|
|
47
47
|
COMPARATIVE_METAFIELDS_INCLUDE[COMPARATIVE_METAFIELDS_INCLUDE["items_data"] = 0] = "items_data";
|
|
48
48
|
// quotes_data_for_comparative = "quotes_data_for_comparative",
|
|
49
|
+
COMPARATIVE_METAFIELDS_INCLUDE["early_access_user_data"] = "early_access_user_data";
|
|
49
50
|
})(COMPARATIVE_METAFIELDS_INCLUDE || (exports.COMPARATIVE_METAFIELDS_INCLUDE = COMPARATIVE_METAFIELDS_INCLUDE = {}));
|
|
@@ -112,6 +112,7 @@ export interface IRFQ {
|
|
|
112
112
|
approved_at?: string | null;
|
|
113
113
|
created_at?: string | null;
|
|
114
114
|
updated_at?: string | null;
|
|
115
|
+
is_target_value_visible?: boolean | null;
|
|
115
116
|
company?: INestedCompany | null;
|
|
116
117
|
parent_purchase_location?: INestedPurchaseLocation | null;
|
|
117
118
|
created_by_user?: INestedUser | null;
|
|
@@ -164,6 +165,7 @@ export interface IRFQItem {
|
|
|
164
165
|
corresponding_pr_item_id?: string | null;
|
|
165
166
|
target_delivery_date?: string | null;
|
|
166
167
|
target_price?: number | null;
|
|
168
|
+
gst?: number | null;
|
|
167
169
|
is_deleted: boolean;
|
|
168
170
|
deleted_at: string | null;
|
|
169
171
|
created_at?: string | null;
|