@hectare/platform.clients.trading 1.1.130 → 1.1.132

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.
@@ -113,6 +113,7 @@ export type BidDetail = {
113
113
  } | null;
114
114
  isBasePremOnly: boolean;
115
115
  haulageType: 'ex-farm' | 'delivered' | null;
116
+ haulageTypeTASCC?: boolean | null;
116
117
  };
117
118
  inventory: {
118
119
  type: 'crop' | 'produce';
@@ -3,7 +3,9 @@ export type CreateInventorySchema = {
3
3
  organisationName?: string;
4
4
  businessUnitId: string | null;
5
5
  businessUnitName: string;
6
- weight: number;
6
+ harvestWeight?: number | null;
7
+ preHarvestWeight?: number | null;
8
+ offPlatformWeight?: number | null;
7
9
  crop: {
8
10
  type: 'crop' | 'produce';
9
11
  harvestYear: string;
@@ -39,6 +39,7 @@ export type CreateListing = {
39
39
  startDateUTC?: string | null;
40
40
  endDateUTC?: string | null;
41
41
  haulageType?: 'ex-farm' | 'delivered' | null;
42
+ haulageTypeTASCC?: boolean | null;
42
43
  };
43
44
  inventory: {
44
45
  type: 'crop' | 'produce';
@@ -58,7 +58,17 @@ export type InventoryDetailSchema = {
58
58
  } | null>;
59
59
  };
60
60
  summary: {
61
- weight?: {
61
+ harvestWeight?: {
62
+ name: string;
63
+ conversion: number;
64
+ weight?: number;
65
+ } | null;
66
+ preHarvestWeight?: {
67
+ name: string;
68
+ conversion: number;
69
+ weight?: number;
70
+ } | null;
71
+ offPlatformWeight?: {
62
72
  name: string;
63
73
  conversion: number;
64
74
  weight?: number;
@@ -59,7 +59,17 @@ export type InventorySearchResultsSchema = {
59
59
  } | null>;
60
60
  };
61
61
  summary: {
62
- weight?: {
62
+ harvestWeight?: {
63
+ name: string;
64
+ conversion: number;
65
+ weight?: number;
66
+ } | null;
67
+ preHarvestWeight?: {
68
+ name: string;
69
+ conversion: number;
70
+ weight?: number;
71
+ } | null;
72
+ offPlatformWeight?: {
63
73
  name: string;
64
74
  conversion: number;
65
75
  weight?: number;
@@ -110,6 +110,7 @@ export type ListingDetail = {
110
110
  } | null;
111
111
  isBasePremOnly: boolean;
112
112
  haulageType: 'ex-farm' | 'delivered' | null;
113
+ haulageTypeTASCC?: boolean | null;
113
114
  };
114
115
  inventory: {
115
116
  type: 'crop' | 'produce';
@@ -365,6 +366,7 @@ export type ListingDetail = {
365
366
  } | null;
366
367
  isBasePremOnly: boolean;
367
368
  haulageType: 'ex-farm' | 'delivered' | null;
369
+ haulageTypeTASCC?: boolean | null;
368
370
  };
369
371
  inventory: {
370
372
  type: 'crop' | 'produce';
@@ -110,6 +110,7 @@ export type ListingSummary = {
110
110
  } | null;
111
111
  isBasePremOnly: boolean;
112
112
  haulageType: 'ex-farm' | 'delivered' | null;
113
+ haulageTypeTASCC?: boolean | null;
113
114
  };
114
115
  inventory: {
115
116
  type: 'crop' | 'produce';
@@ -30,6 +30,7 @@ export type PatchListingSchema = {
30
30
  startDateUTC?: string | null;
31
31
  endDateUTC?: string | null;
32
32
  haulageType?: 'ex-farm' | 'delivered' | null;
33
+ haulageTypeTASCC?: boolean | null;
33
34
  };
34
35
  inventory?: {
35
36
  type?: 'crop' | 'produce';
@@ -114,6 +114,7 @@ export type SearchResultsBidSchema = {
114
114
  } | null;
115
115
  isBasePremOnly: boolean;
116
116
  haulageType: 'ex-farm' | 'delivered' | null;
117
+ haulageTypeTASCC?: boolean | null;
117
118
  };
118
119
  inventory: {
119
120
  type: 'crop' | 'produce';
@@ -111,6 +111,7 @@ export type SearchResultsListingSchema = {
111
111
  } | null;
112
112
  isBasePremOnly: boolean;
113
113
  haulageType: 'ex-farm' | 'delivered' | null;
114
+ haulageTypeTASCC?: boolean | null;
114
115
  };
115
116
  inventory: {
116
117
  type: 'crop' | 'produce';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hectare/platform.clients.trading",
3
- "version": "1.1.130",
3
+ "version": "1.1.132",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",