@jagota/interfaces 1.2.46 → 1.2.47
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
|
@@ -102,11 +102,19 @@ export interface ISetBiddingPricelistResponse extends IBaseResponse {
|
|
|
102
102
|
}
|
|
103
103
|
}
|
|
104
104
|
|
|
105
|
-
export interface
|
|
105
|
+
export interface IBiddingStatusPayload {
|
|
106
106
|
recordId: number;
|
|
107
|
+
status: string;
|
|
108
|
+
}
|
|
109
|
+
export interface IBiddingStatusResponse extends IBaseResponse {
|
|
110
|
+
data: {
|
|
111
|
+
STATUS: string;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
export interface IBiddingList extends IBiddingStatusPayload{
|
|
107
116
|
periodFrom: string;
|
|
108
117
|
periodTo: string;
|
|
109
|
-
status: string;
|
|
110
118
|
winRate: number;
|
|
111
119
|
docType: string;
|
|
112
120
|
docBook: string;
|