@jagota/interfaces 1.2.48 → 1.2.49
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
|
@@ -128,4 +128,16 @@ export interface IBiddingListResponse extends IBaseResponse {
|
|
|
128
128
|
}
|
|
129
129
|
export interface IBiddingByRidPayload {
|
|
130
130
|
recordId: string;
|
|
131
|
+
}
|
|
132
|
+
export interface IBiddingByRid {
|
|
133
|
+
recordId: number;
|
|
134
|
+
status: string;
|
|
135
|
+
periodFrom: string;
|
|
136
|
+
periodTo: string;
|
|
137
|
+
docType: string;
|
|
138
|
+
docBook: string;
|
|
139
|
+
docNo: string;
|
|
140
|
+
custCode: string;
|
|
141
|
+
custName: string;
|
|
142
|
+
address: string;
|
|
131
143
|
}
|