@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.
@@ -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
  };
@@ -25,6 +25,7 @@ export type CreateBid = {
25
25
  paymentType: 'base' | 'fixed' | 'unpriced' | 'premium';
26
26
  haulageType?: 'ex-farm' | 'delivered';
27
27
  deliveryPostcode?: string | null;
28
+ cropHome?: string | null;
28
29
  sellerNotes?: string | null;
29
30
  };
30
31
  reference?: string | null;
@@ -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
  };
@@ -23,6 +23,7 @@ export type PatchBid = {
23
23
  paymentType: 'base' | 'fixed' | 'unpriced' | 'premium';
24
24
  haulageType?: 'ex-farm' | 'delivered';
25
25
  deliveryPostcode?: string | null;
26
+ cropHome?: string | null;
26
27
  sellerNotes?: string | null;
27
28
  };
28
29
  };
@@ -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
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hectare/platform.clients.trading",
3
- "version": "1.1.137",
3
+ "version": "1.1.138",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",