@jagota/interfaces 1.3.10 → 1.3.12

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.10",
3
+ "version": "1.3.12",
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,21 +204,21 @@ 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
212
  }
213
213
 
214
- export interface IBiddingCustomerWithPeriod extends IBiddingCustomer {
214
+ export interface IBiddingCustomerWithPeriod extends IBiddingCustomerCommon {
215
215
  biddingTypeName: string;
216
216
  }
217
217
  export interface IBiddingCustomerWithPeriodResponse extends IBaseResponse {
218
218
  data: IBiddingCustomerWithPeriod[];
219
219
  }
220
220
 
221
- export interface IBiddingCustomerHistory extends IBiddingCustomer{
221
+ export interface IBiddingCustomerHistory extends IBiddingCustomerCommon {
222
222
  recordId: number;
223
223
  status: string;
224
224
  }