@jagota/interfaces 1.3.14 → 1.3.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jagota/interfaces",
3
- "version": "1.3.14",
3
+ "version": "1.3.16",
4
4
  "type": "module",
5
5
  "description": "Interfaces for the Jagota Brothers project",
6
6
  "main": "src/index.ts",
@@ -80,6 +80,7 @@ export interface IBiddingPricelist extends IBiddingCustomerProductList {
80
80
  minPrice?: number;
81
81
  centerPrice?: number;
82
82
  price?: number;
83
+ winRateHistory: IProductWinLossHistory[];
83
84
  }
84
85
 
85
86
  export interface IBiddingPricelistPayload {
@@ -173,9 +174,11 @@ export interface IBiddingDetail {
173
174
  productCode: string;
174
175
  productShortCode: string;
175
176
  productName: string;
177
+ thumbnail: string;
176
178
  unit: string;
177
179
  price: number;
178
180
  winLoss: string;
181
+ winRateHistory: IProductWinLossHistory[];
179
182
  }
180
183
  export interface IBiddingDetailResponse extends IBaseResponse {
181
184
  data: IBiddingDetail[];
@@ -225,4 +228,9 @@ export interface IBiddingCustomerHistory extends IBiddingCustomerCommon {
225
228
  }
226
229
  export interface IBiddingCustomerHistoryResponse extends IBaseResponse {
227
230
  data: IBiddingCustomerHistory[];
231
+ }
232
+ export interface IProductWinLossHistory {
233
+ winLoss: string;
234
+ periodFrom: string;
235
+ periodTo: string;
228
236
  }