@jagota/interfaces 1.3.22 → 1.3.24
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.
package/package.json
CHANGED
|
@@ -80,6 +80,7 @@ export interface IBiddingPricelist extends IBiddingCustomerProductList {
|
|
|
80
80
|
minPrice?: number;
|
|
81
81
|
centerPrice?: number;
|
|
82
82
|
price?: number;
|
|
83
|
+
reqMinNarration?: string;
|
|
83
84
|
winLossHistory: IProductWinLossHistory[];
|
|
84
85
|
}
|
|
85
86
|
|
|
@@ -105,6 +106,9 @@ export interface ISetBiddingPriceDPayload {
|
|
|
105
106
|
custProductCode: string;
|
|
106
107
|
productCode: string;
|
|
107
108
|
price?: number;
|
|
109
|
+
/**
|
|
110
|
+
* Optional narration with a maximum length of 300 characters.
|
|
111
|
+
*/
|
|
108
112
|
reqMinNarration?: string;
|
|
109
113
|
}
|
|
110
114
|
|