@hectare/platform.clients.trading 1.1.135 → 1.1.137

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;
@@ -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;
@@ -7,4 +7,13 @@ export type InventorySummarySchema = {
7
7
  grade: string;
8
8
  tags: string;
9
9
  varieties: string;
10
+ contract: {
11
+ contractType: 'base' | 'fixed' | 'unpriced' | 'premium' | null;
12
+ haulageType: 'ex-farm' | 'delivered' | null;
13
+ buyerNotes: string | null;
14
+ movement: {
15
+ months: Array<string>;
16
+ asAvailable: boolean;
17
+ };
18
+ };
10
19
  };
@@ -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;
@@ -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;
@@ -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;
@@ -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.135",
3
+ "version": "1.1.137",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",