@jagota/interfaces 1.3.32 → 1.3.34

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.34",
4
4
  "type": "module",
5
5
  "description": "Interfaces for the Jagota Brothers project",
6
6
  "main": "src/index.ts",
@@ -178,8 +178,13 @@ export interface IBiddingByRid extends IBiddingQuotation, IBiddingPeriodDate, IB
178
178
  recordId: number;
179
179
  status: string;
180
180
  custAddress: string;
181
+ custEmail: string;
182
+ custContact: string;
181
183
  companyName: string;
182
184
  companyAddress: string;
185
+ createdBy: string;
186
+ createdEmail: string;
187
+ createdContact: string;
183
188
  }
184
189
  export interface IWinLoss {
185
190
  winLoss: "W" | "L" | null;
@@ -240,4 +245,11 @@ export interface IBiddingCustomerHistoryResponse extends IBaseResponse {
240
245
  }
241
246
  export interface IProductWinLossHistory extends IBiddingPeriodDate, IWinLoss {
242
247
  price: number;
248
+ }
249
+ export interface IMarketListCount {
250
+ totalMarketListCount: number;
251
+ matchedMarketListCount: number;
252
+ }
253
+ export interface IMarketListCountResponse extends IBaseResponse {
254
+ data: IMarketListCount;
243
255
  }