@jagota/interfaces 1.3.18 → 1.3.19

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.18",
3
+ "version": "1.3.19",
4
4
  "type": "module",
5
5
  "description": "Interfaces for the Jagota Brothers project",
6
6
  "main": "src/index.ts",
@@ -180,6 +180,7 @@ export interface IBiddingDetail {
180
180
  price: number;
181
181
  winLoss: string;
182
182
  winLossHistory: IProductWinLossHistory[];
183
+ lossReasons: IBiddingReason[];
183
184
  }
184
185
  export interface IBiddingDetailResponse extends IBaseResponse {
185
186
  data: IBiddingDetail[];