@jagota/interfaces 1.3.2 → 1.3.5

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.2",
3
+ "version": "1.3.5",
4
4
  "type": "module",
5
5
  "description": "Interfaces for the Jagota Brothers project",
6
6
  "main": "src/index.ts",
@@ -155,7 +155,23 @@ export interface IBiddingDetail {
155
155
  productName: string;
156
156
  unit: string;
157
157
  price: number;
158
+ winLoss: string;
158
159
  }
159
160
  export interface IBiddingDetailResponse extends IBaseResponse {
160
161
  data: IBiddingDetail[];
162
+ }
163
+
164
+ export interface IBiddingReason {
165
+ recordId: number;
166
+ reason: string;
167
+ }
168
+ export interface IBiddingReasonResponse extends IBaseResponse {
169
+ data: IBiddingReason[];
170
+ }
171
+ export interface IBiddingWinLoss {
172
+ recordId: number;
173
+ winLoss: string;
174
+ }
175
+ export interface IBiddingWinLossResponse extends IBaseResponse {
176
+ data: IBiddingWinLoss;
161
177
  }