@jagota/interfaces 1.3.19 → 1.3.20

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.19",
3
+ "version": "1.3.20",
4
4
  "type": "module",
5
5
  "description": "Interfaces for the Jagota Brothers project",
6
6
  "main": "src/index.ts",
@@ -178,7 +178,7 @@ export interface IBiddingDetail {
178
178
  thumbnail: string;
179
179
  unit: string;
180
180
  price: number;
181
- winLoss: string;
181
+ winLoss: "W" | "L" | null;
182
182
  winLossHistory: IProductWinLossHistory[];
183
183
  lossReasons: IBiddingReason[];
184
184
  }
@@ -195,7 +195,7 @@ export interface IBiddingReasonResponse extends IBaseResponse {
195
195
  }
196
196
  export interface IBiddingWinLoss {
197
197
  recordId: number;
198
- winLoss: string;
198
+ winLoss: "W" | "L" | null;
199
199
  }
200
200
  export interface IBiddingWinLossResponse extends IBaseResponse {
201
201
  data: IBiddingWinLoss;
@@ -232,7 +232,7 @@ export interface IBiddingCustomerHistoryResponse extends IBaseResponse {
232
232
  data: IBiddingCustomerHistory[];
233
233
  }
234
234
  export interface IProductWinLossHistory {
235
- winLoss: string;
235
+ winLoss: "W" | "L" | null;
236
236
  periodFrom: string;
237
237
  periodTo: string;
238
238
  }