@jagota/interfaces 1.2.41 → 1.2.42
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
|
@@ -58,4 +58,13 @@ export interface IBiddingMarketList extends IBiddingCustomerProductList {
|
|
|
58
58
|
productName: string;
|
|
59
59
|
thumbnail: string;
|
|
60
60
|
status: string;
|
|
61
|
+
}
|
|
62
|
+
export interface IBiddingMarketPayloadItem extends IBiddingCustomerProductList {
|
|
63
|
+
recordId: number;
|
|
64
|
+
productCode: string;
|
|
65
|
+
status: string;
|
|
66
|
+
}
|
|
67
|
+
export interface IBiddingMarketPayload extends IBiddingCustomerProductList {
|
|
68
|
+
custCode: string;
|
|
69
|
+
list: IBiddingMarketPayloadItem[];
|
|
61
70
|
}
|