@hectare/platform.clients.trading 1.1.263 → 1.1.264

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/index.d.ts CHANGED
@@ -32,6 +32,7 @@ export type { InsightsRegionalPricesPredictionSchema } from './models/InsightsRe
32
32
  export type { InventoryDetailSchema } from './models/InventoryDetailSchema.js';
33
33
  export type { InventorySchema } from './models/InventorySchema.js';
34
34
  export type { InventorySummarySchema } from './models/InventorySummarySchema.js';
35
+ export type { InventoryTonnageLocationSchema } from './models/InventoryTonnageLocationSchema.js';
35
36
  export type { ListingBidInfoBid } from './models/ListingBidInfoBid.js';
36
37
  export type { ListingDetail } from './models/ListingDetail.js';
37
38
  export type { ListingDuplicateSchema } from './models/ListingDuplicateSchema.js';
@@ -32,6 +32,11 @@ export type HarvestSummarySchema = {
32
32
  updatedAtUTC: string;
33
33
  businessId: string;
34
34
  businessName: string;
35
+ regionISO: string;
36
+ coordinates: {
37
+ lat?: number;
38
+ lon?: number;
39
+ };
35
40
  organisationId: string;
36
41
  organisationName: string;
37
42
  status: 'active' | 'deleted';
@@ -4,6 +4,11 @@ export type InventoryDetailSchema = {
4
4
  updatedAtUTC: string;
5
5
  businessId: string;
6
6
  businessName: string;
7
+ regionISO: string;
8
+ coordinates: {
9
+ lat?: number;
10
+ lon?: number;
11
+ };
7
12
  organisationId: string;
8
13
  organisationName: string;
9
14
  status: 'active' | 'deleted';
@@ -0,0 +1,8 @@
1
+ export type InventoryTonnageLocationSchema = {
2
+ commodity: string | null;
3
+ lat: number;
4
+ lon: number;
5
+ region: string;
6
+ totalTonnes: number;
7
+ hexCode: string;
8
+ };
@@ -0,0 +1 @@
1
+ export {};
@@ -5,6 +5,11 @@ export type SearchResultsInventorySchema = {
5
5
  updatedAtUTC: string;
6
6
  businessId: string;
7
7
  businessName: string;
8
+ regionISO: string;
9
+ coordinates: {
10
+ lat?: number;
11
+ lon?: number;
12
+ };
8
13
  organisationId: string;
9
14
  organisationName: string;
10
15
  status: 'active' | 'deleted';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hectare/platform.clients.trading",
3
- "version": "1.1.263",
3
+ "version": "1.1.264",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",