@hectare/platform.clients.trading 1.1.136 → 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.
@@ -44,6 +44,7 @@ export type BidDetail = {
44
44
  id: string | null;
45
45
  key?: string | null;
46
46
  body: 'RT' | 'SQC';
47
+ name?: string | null;
47
48
  location?: string | null;
48
49
  } | null;
49
50
  holdingNumber?: string;
@@ -279,6 +280,7 @@ export type BidDetail = {
279
280
  paymentDayType?: 'fixed' | 'dayOfMonth' | null;
280
281
  paymentType: 'base' | 'fixed' | 'unpriced' | 'premium';
281
282
  haulageType?: 'ex-farm' | 'delivered';
283
+ cropHome?: string | null;
282
284
  sellerNotes: string | null;
283
285
  deliveryPostcode: string | null;
284
286
  };
@@ -272,6 +272,7 @@ export type ContractDetail = {
272
272
  id: string | null;
273
273
  key?: string | null;
274
274
  body: 'RT' | 'SQC';
275
+ name?: string | null;
275
276
  location?: string | null;
276
277
  } | null;
277
278
  assuranceId?: string;
@@ -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;
@@ -41,6 +41,7 @@ export type ListingDetail = {
41
41
  id: string | null;
42
42
  key?: string | null;
43
43
  body: 'RT' | 'SQC';
44
+ name?: string | null;
44
45
  location?: string | null;
45
46
  } | null;
46
47
  holdingNumber?: string;
@@ -298,6 +299,7 @@ export type ListingDetail = {
298
299
  id: string | null;
299
300
  key?: string | null;
300
301
  body: 'RT' | 'SQC';
302
+ name?: string | null;
301
303
  location?: string | null;
302
304
  } | null;
303
305
  holdingNumber?: string;
@@ -533,6 +535,7 @@ export type ListingDetail = {
533
535
  paymentDayType?: 'fixed' | 'dayOfMonth' | null;
534
536
  paymentType: 'base' | 'fixed' | 'unpriced' | 'premium';
535
537
  haulageType?: 'ex-farm' | 'delivered';
538
+ cropHome?: string | null;
536
539
  sellerNotes: string | null;
537
540
  deliveryPostcode: string | null;
538
541
  };
@@ -41,6 +41,7 @@ export type ListingSummary = {
41
41
  id: string | null;
42
42
  key?: string | null;
43
43
  body: 'RT' | 'SQC';
44
+ name?: string | null;
44
45
  location?: string | null;
45
46
  } | null;
46
47
  holdingNumber?: string;
@@ -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
  };
@@ -45,6 +45,7 @@ export type SearchResultsBidSchema = {
45
45
  id: string | null;
46
46
  key?: string | null;
47
47
  body: 'RT' | 'SQC';
48
+ name?: string | null;
48
49
  location?: string | null;
49
50
  } | null;
50
51
  holdingNumber?: string;
@@ -280,6 +281,7 @@ export type SearchResultsBidSchema = {
280
281
  paymentDayType?: 'fixed' | 'dayOfMonth' | null;
281
282
  paymentType: 'base' | 'fixed' | 'unpriced' | 'premium';
282
283
  haulageType?: 'ex-farm' | 'delivered';
284
+ cropHome?: string | null;
283
285
  sellerNotes: string | null;
284
286
  deliveryPostcode: string | null;
285
287
  };
@@ -42,6 +42,7 @@ export type SearchResultsListingSchema = {
42
42
  id: string | null;
43
43
  key?: string | null;
44
44
  body: 'RT' | 'SQC';
45
+ name?: string | null;
45
46
  location?: string | null;
46
47
  } | null;
47
48
  holdingNumber?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hectare/platform.clients.trading",
3
- "version": "1.1.136",
3
+ "version": "1.1.138",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",