@jagota/interfaces 1.3.9 → 1.3.11

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.11",
4
4
  "type": "module",
5
5
  "description": "Interfaces for the Jagota Brothers project",
6
6
  "main": "src/index.ts",
@@ -88,7 +88,7 @@ export interface IBiddingPricelistPayload {
88
88
  periodTo: string;
89
89
  }
90
90
 
91
- export interface ISetBiddingPriceHPayload extends IBiddingPricelistPayload{
91
+ export interface ISetBiddingPriceHPayload extends IBiddingPricelistPayload {
92
92
  submissionDay: number;
93
93
  tenderDay: number;
94
94
  }
@@ -204,23 +204,23 @@ export interface IBiddingReasonByDetailRidResponse extends IBaseResponse {
204
204
  data: IBiddingReason[];
205
205
  }
206
206
 
207
- export interface IBiddingCustomer {
207
+ export interface IBiddingCustomerCommon {
208
208
  custCode: string;
209
209
  custName: string;
210
210
  startDate: Date;
211
211
  submissionDay: number;
212
- tenderDay: number;
213
212
  }
214
213
 
215
- export interface IBiddingCustomerWithPeriod extends IBiddingCustomer {
214
+ export interface IBiddingCustomerWithPeriod extends IBiddingCustomerCommon {
216
215
  biddingTypeName: string;
217
216
  }
218
217
  export interface IBiddingCustomerWithPeriodResponse extends IBaseResponse {
219
218
  data: IBiddingCustomerWithPeriod[];
220
219
  }
221
220
 
222
- export interface IBiddingCustomerHistory extends IBiddingCustomer{
221
+ export interface IBiddingCustomerHistory extends IBiddingCustomerCommon {
223
222
  recordId: number;
223
+ status: string;
224
224
  }
225
225
  export interface IBiddingCustomerHistoryResponse extends IBaseResponse {
226
226
  data: IBiddingCustomerHistory[];