@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
|
@@ -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
|
|
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
|
|
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
|
|
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[];
|