@jagota/interfaces 1.3.32 → 1.3.33

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.32",
3
+ "version": "1.3.33",
4
4
  "type": "module",
5
5
  "description": "Interfaces for the Jagota Brothers project",
6
6
  "main": "src/index.ts",
@@ -240,4 +240,11 @@ export interface IBiddingCustomerHistoryResponse extends IBaseResponse {
240
240
  }
241
241
  export interface IProductWinLossHistory extends IBiddingPeriodDate, IWinLoss {
242
242
  price: number;
243
+ }
244
+ export interface IMarketListCount {
245
+ totalMarketListCount: number;
246
+ matchedMarketListCount: number;
247
+ }
248
+ export interface IMarketListCountResponse extends IBaseResponse {
249
+ data: IMarketListCount;
243
250
  }