@jagota/interfaces 1.3.6 → 1.3.8

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.6",
3
+ "version": "1.3.8",
4
4
  "type": "module",
5
5
  "description": "Interfaces for the Jagota Brothers project",
6
6
  "main": "src/index.ts",
@@ -81,12 +81,20 @@ export interface IBiddingPricelist extends IBiddingCustomerProductList {
81
81
  centerPrice?: number;
82
82
  price?: number;
83
83
  }
84
+
84
85
  export interface IBiddingPricelistPayload {
85
86
  custCode: string;
86
87
  periodFrom: string;
87
88
  periodTo: string;
88
89
  }
89
- export interface ISetBiddingPricelistPayload extends IBiddingPricelistPayload {
90
+
91
+ export interface ISetBiddingPriceHPayload extends IBiddingPricelistPayload{
92
+ submissionDay: number;
93
+ tenderDay: number;
94
+ }
95
+
96
+ export interface ISetBiddingPriceDPayload {
97
+ recordID: number;
90
98
  custProductCode: string;
91
99
  productCode: string;
92
100
  price?: number;
@@ -176,7 +184,7 @@ export interface IBiddingWinLossResponse extends IBaseResponse {
176
184
  data: IBiddingWinLoss;
177
185
  }
178
186
 
179
- export interface ISetLossReason {
187
+ export interface ISetLossReason {
180
188
  biddingDetailRid: number;
181
189
  biddingReasonRid: number;
182
190
  }