@jagota/interfaces 1.3.16 → 1.3.17
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,7 +80,7 @@ export interface IBiddingPricelist extends IBiddingCustomerProductList {
|
|
|
80
80
|
minPrice?: number;
|
|
81
81
|
centerPrice?: number;
|
|
82
82
|
price?: number;
|
|
83
|
-
|
|
83
|
+
winLossHistory: IProductWinLossHistory[];
|
|
84
84
|
}
|
|
85
85
|
|
|
86
86
|
export interface IBiddingPricelistPayload {
|
|
@@ -178,7 +178,7 @@ export interface IBiddingDetail {
|
|
|
178
178
|
unit: string;
|
|
179
179
|
price: number;
|
|
180
180
|
winLoss: string;
|
|
181
|
-
|
|
181
|
+
winLossHistory: IProductWinLossHistory[];
|
|
182
182
|
}
|
|
183
183
|
export interface IBiddingDetailResponse extends IBaseResponse {
|
|
184
184
|
data: IBiddingDetail[];
|