@jagota/interfaces 1.3.8 → 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.8",
3
+ "version": "1.3.10",
4
4
  "type": "module",
5
5
  "description": "Interfaces for the Jagota Brothers project",
6
6
  "main": "src/index.ts",
@@ -93,6 +93,12 @@ export interface ISetBiddingPriceHPayload extends IBiddingPricelistPayload{
93
93
  tenderDay: number;
94
94
  }
95
95
 
96
+ export interface ISetBiddingPriceHResponse extends IBaseResponse {
97
+ data: {
98
+ RECORD_ID: number;
99
+ }
100
+ }
101
+
96
102
  export interface ISetBiddingPriceDPayload {
97
103
  recordID: number;
98
104
  custProductCode: string;
@@ -100,6 +106,12 @@ export interface ISetBiddingPriceDPayload {
100
106
  price?: number;
101
107
  }
102
108
 
109
+ export interface ISetBiddingPriceDResponse extends IBaseResponse {
110
+ data: {
111
+ PRICE: number;
112
+ }
113
+ }
114
+
103
115
  export interface IGetBiddingPriceListResponse extends IBaseResponse {
104
116
  data: IBiddingPricelist[];
105
117
  }
@@ -190,4 +202,26 @@ export interface ISetLossReason {
190
202
  }
191
203
  export interface IBiddingReasonByDetailRidResponse extends IBaseResponse {
192
204
  data: IBiddingReason[];
205
+ }
206
+
207
+ export interface IBiddingCustomer {
208
+ custCode: string;
209
+ custName: string;
210
+ startDate: Date;
211
+ submissionDay: number;
212
+ }
213
+
214
+ export interface IBiddingCustomerWithPeriod extends IBiddingCustomer {
215
+ biddingTypeName: string;
216
+ }
217
+ export interface IBiddingCustomerWithPeriodResponse extends IBaseResponse {
218
+ data: IBiddingCustomerWithPeriod[];
219
+ }
220
+
221
+ export interface IBiddingCustomerHistory extends IBiddingCustomer{
222
+ recordId: number;
223
+ status: string;
224
+ }
225
+ export interface IBiddingCustomerHistoryResponse extends IBaseResponse {
226
+ data: IBiddingCustomerHistory[];
193
227
  }