@hectare/platform.clients.trading 1.1.137 → 1.1.138
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/models/BidDetail.d.ts
CHANGED
|
@@ -280,6 +280,7 @@ export type BidDetail = {
|
|
|
280
280
|
paymentDayType?: 'fixed' | 'dayOfMonth' | null;
|
|
281
281
|
paymentType: 'base' | 'fixed' | 'unpriced' | 'premium';
|
|
282
282
|
haulageType?: 'ex-farm' | 'delivered';
|
|
283
|
+
cropHome?: string | null;
|
|
283
284
|
sellerNotes: string | null;
|
|
284
285
|
deliveryPostcode: string | null;
|
|
285
286
|
};
|
package/models/CreateBid.d.ts
CHANGED
|
@@ -535,6 +535,7 @@ export type ListingDetail = {
|
|
|
535
535
|
paymentDayType?: 'fixed' | 'dayOfMonth' | null;
|
|
536
536
|
paymentType: 'base' | 'fixed' | 'unpriced' | 'premium';
|
|
537
537
|
haulageType?: 'ex-farm' | 'delivered';
|
|
538
|
+
cropHome?: string | null;
|
|
538
539
|
sellerNotes: string | null;
|
|
539
540
|
deliveryPostcode: string | null;
|
|
540
541
|
};
|
package/models/PatchBid.d.ts
CHANGED
|
@@ -281,6 +281,7 @@ export type SearchResultsBidSchema = {
|
|
|
281
281
|
paymentDayType?: 'fixed' | 'dayOfMonth' | null;
|
|
282
282
|
paymentType: 'base' | 'fixed' | 'unpriced' | 'premium';
|
|
283
283
|
haulageType?: 'ex-farm' | 'delivered';
|
|
284
|
+
cropHome?: string | null;
|
|
284
285
|
sellerNotes: string | null;
|
|
285
286
|
deliveryPostcode: string | null;
|
|
286
287
|
};
|