@jagota/interfaces 1.3.5 → 1.3.6

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.5",
3
+ "version": "1.3.6",
4
4
  "type": "module",
5
5
  "description": "Interfaces for the Jagota Brothers project",
6
6
  "main": "src/index.ts",
@@ -174,4 +174,12 @@ export interface IBiddingWinLoss {
174
174
  }
175
175
  export interface IBiddingWinLossResponse extends IBaseResponse {
176
176
  data: IBiddingWinLoss;
177
+ }
178
+
179
+ export interface ISetLossReason {
180
+ biddingDetailRid: number;
181
+ biddingReasonRid: number;
182
+ }
183
+ export interface IBiddingReasonByDetailRidResponse extends IBaseResponse {
184
+ data: IBiddingReason[];
177
185
  }