@jagota/interfaces 1.3.9 → 1.3.10

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.9",
3
+ "version": "1.3.10",
4
4
  "type": "module",
5
5
  "description": "Interfaces for the Jagota Brothers project",
6
6
  "main": "src/index.ts",
@@ -209,7 +209,6 @@ export interface IBiddingCustomer {
209
209
  custName: string;
210
210
  startDate: Date;
211
211
  submissionDay: number;
212
- tenderDay: number;
213
212
  }
214
213
 
215
214
  export interface IBiddingCustomerWithPeriod extends IBiddingCustomer {
@@ -221,6 +220,7 @@ export interface IBiddingCustomerWithPeriodResponse extends IBaseResponse {
221
220
 
222
221
  export interface IBiddingCustomerHistory extends IBiddingCustomer{
223
222
  recordId: number;
223
+ status: string;
224
224
  }
225
225
  export interface IBiddingCustomerHistoryResponse extends IBaseResponse {
226
226
  data: IBiddingCustomerHistory[];