@hectare/platform.clients.trading 1.1.188 → 1.1.190

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
@@ -35,6 +35,7 @@ export type { FeedItem } from './models/FeedItem.js';
35
35
  export type { InsightPrices } from './models/InsightPrices.js';
36
36
  export type { InsightsDailySpotPricesByDateRangeSchema } from './models/InsightsDailySpotPricesByDateRangeSchema.js';
37
37
  export type { InsightsDailySpotPricesSchema } from './models/InsightsDailySpotPricesSchema.js';
38
+ export type { InsightsFuturesContractComparisonPriceSchema } from './models/InsightsFuturesContractComparisonPriceSchema.js';
38
39
  export type { InsightsHistoricalFuturesPricesSchema } from './models/InsightsHistoricalFuturesPricesSchema.js';
39
40
  export type { InventoryDetailSchema } from './models/InventoryDetailSchema.js';
40
41
  export type { InventorySchema } from './models/InventorySchema.js';
@@ -12,7 +12,7 @@ export type CreateWantedAd = {
12
12
  asAvailable: boolean | null;
13
13
  };
14
14
  haulageTerms: {
15
- haulageType: 'ex-farm' | 'delivered' | null;
15
+ haulageType: 'ex-farm' | 'delivered' | 'both' | null;
16
16
  deliveryPostcode?: string | null;
17
17
  };
18
18
  weight: {
@@ -0,0 +1,7 @@
1
+ export type InsightsFuturesContractComparisonPriceSchema = {
2
+ date: string;
3
+ currentYearMovementMonth?: string;
4
+ previousYearMovementMonth?: string;
5
+ currentYearLastPrice?: number | null;
6
+ previousYearLastPrice?: number | null;
7
+ };
@@ -28,7 +28,7 @@ export type WantedAdDetailSchema = {
28
28
  asAvailable: boolean | null;
29
29
  };
30
30
  haulageTerms: {
31
- haulageType?: 'ex-farm' | 'delivered' | null;
31
+ haulageType?: 'ex-farm' | 'delivered' | 'both' | null;
32
32
  deliveryPostcode?: string | null;
33
33
  };
34
34
  weight: {
@@ -29,7 +29,7 @@ export type WantedAdSearchResultsSchema = {
29
29
  asAvailable: boolean | null;
30
30
  };
31
31
  haulageTerms: {
32
- haulageType?: 'ex-farm' | 'delivered' | null;
32
+ haulageType?: 'ex-farm' | 'delivered' | 'both' | null;
33
33
  deliveryPostcode?: string | null;
34
34
  };
35
35
  weight: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hectare/platform.clients.trading",
3
- "version": "1.1.188",
3
+ "version": "1.1.190",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",