@hectare/platform.clients.trading 1.1.171 → 1.1.173
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.
|
@@ -202,7 +202,7 @@ export type ListingDetail = {
|
|
|
202
202
|
customMeasures: boolean | null;
|
|
203
203
|
};
|
|
204
204
|
activeBids: number;
|
|
205
|
-
bidInfo
|
|
205
|
+
bidInfo: {
|
|
206
206
|
count: number;
|
|
207
207
|
acceptedCount: number;
|
|
208
208
|
activeCount: number;
|
|
@@ -240,8 +240,8 @@ export type ListingDetail = {
|
|
|
240
240
|
updatedAtUTC: string;
|
|
241
241
|
}>;
|
|
242
242
|
};
|
|
243
|
-
tradeRequestId
|
|
244
|
-
tradeRequestUserId
|
|
243
|
+
tradeRequestId: string | null;
|
|
244
|
+
tradeRequestUserId: string | null;
|
|
245
245
|
relistedFromListingId?: string;
|
|
246
246
|
preferences: Array<string>;
|
|
247
247
|
pending?: boolean;
|
|
@@ -273,7 +273,7 @@ export type ListingDetail = {
|
|
|
273
273
|
}> | null;
|
|
274
274
|
tags: Array<string>;
|
|
275
275
|
inventoryCount?: number;
|
|
276
|
-
acceptedBids
|
|
276
|
+
acceptedBids: Array<{
|
|
277
277
|
bidId: string;
|
|
278
278
|
organisationName: string;
|
|
279
279
|
weight: number;
|
|
@@ -65,7 +65,8 @@ export type TradeRequestDetail = {
|
|
|
65
65
|
organisationName?: string | null;
|
|
66
66
|
userId: string;
|
|
67
67
|
} | null;
|
|
68
|
-
createdAtUTC
|
|
68
|
+
createdAtUTC: string;
|
|
69
|
+
expiresAtUTC: string;
|
|
69
70
|
requestType?: 'everyone' | 'farms' | 'merchants';
|
|
70
71
|
guidePrice: {
|
|
71
72
|
amount: number;
|
|
@@ -66,7 +66,8 @@ export type TradeRequestSearchResultsSchema = {
|
|
|
66
66
|
organisationName?: string | null;
|
|
67
67
|
userId: string;
|
|
68
68
|
} | null;
|
|
69
|
-
createdAtUTC
|
|
69
|
+
createdAtUTC: string;
|
|
70
|
+
expiresAtUTC: string;
|
|
70
71
|
requestType?: 'everyone' | 'farms' | 'merchants';
|
|
71
72
|
guidePrice: {
|
|
72
73
|
amount: number;
|