@jagota/interfaces 1.3.28 → 1.3.30

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.28",
3
+ "version": "1.3.30",
4
4
  "type": "module",
5
5
  "description": "Interfaces for the Jagota Brothers project",
6
6
  "main": "src/index.ts",
@@ -95,11 +95,14 @@ export interface IBiddingPeriodDate {
95
95
  export interface IBiddingPricelistPayload extends IBiddingPeriodDate, IBiddingCustCode {
96
96
  }
97
97
 
98
- export interface ISetBiddingPriceHPayload extends IBiddingPricelistPayload {
98
+ export interface IDays {
99
99
  submissionDay: number;
100
100
  tenderDay: number;
101
101
  }
102
102
 
103
+ export interface ISetBiddingPriceHPayload extends IDays, IBiddingPricelistPayload {
104
+ }
105
+
103
106
  export interface ISetBiddingPriceHResponse extends IBaseResponse {
104
107
  data: {
105
108
  RECORD_ID: number;
@@ -150,7 +153,7 @@ export interface IBiddingQuotation {
150
153
  quotationStatus?: string;
151
154
  }
152
155
 
153
- export interface IBiddingList extends IBiddingStatusPayload, IBiddingQuotation, IBiddingPeriodDate, ISetBiddingPriceHPayload {
156
+ export interface IBiddingList extends IBiddingStatusPayload, IBiddingQuotation, IBiddingPeriodDate, IDays {
154
157
  winRate: number;
155
158
  }
156
159
  export interface IBiddingListPayload extends IBiddingCustCode {