@hectare/platform.clients.trading 1.1.319 → 1.1.320

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
@@ -24,8 +24,6 @@ export type { CropProfileStatsSchema } from './models/CropProfileStatsSchema.js'
24
24
  export type { DeleteContractSchema } from './models/DeleteContractSchema.js';
25
25
  export type { DeleteMarketingPlanSchema } from './models/DeleteMarketingPlanSchema.js';
26
26
  export type { ExFarmPriceCommodity } from './models/ExFarmPriceCommodity.js';
27
- export type { ExFarmPricesRegionSchema } from './models/ExFarmPricesRegionSchema.js';
28
- export type { ExFarmPricesSchema } from './models/ExFarmPricesSchema.js';
29
27
  export type { ExpiredBidOffer } from './models/ExpiredBidOffer.js';
30
28
  export type { FeedItem } from './models/FeedItem.js';
31
29
  export type { HarvestSummarySchema } from './models/HarvestSummarySchema.js';
@@ -38,6 +36,7 @@ export type { InsightsHistoricalFuturesPricesSchema } from './models/InsightsHis
38
36
  export type { InsightsRecommendedForwardSellingPremiumPredictionSchema } from './models/InsightsRecommendedForwardSellingPremiumPredictionSchema.js';
39
37
  export type { InsightsRegionalPricesPredictionSchema } from './models/InsightsRegionalPricesPredictionSchema.js';
40
38
  export type { InventoryDetailSchema } from './models/InventoryDetailSchema.js';
39
+ export type { InventoryOrganisationsSchema } from './models/InventoryOrganisationsSchema.js';
41
40
  export type { InventorySchema } from './models/InventorySchema.js';
42
41
  export type { InventorySummarySchema } from './models/InventorySummarySchema.js';
43
42
  export type { InventoryTonnageLocationSchema } from './models/InventoryTonnageLocationSchema.js';
@@ -65,7 +64,6 @@ export type { PatchMarketingPlanScheduleSchema } from './models/PatchMarketingPl
65
64
  export type { PatchMarketingPlanSchema } from './models/PatchMarketingPlanSchema.js';
66
65
  export type { PatchWantedAdSchema } from './models/PatchWantedAdSchema.js';
67
66
  export type { PriceScoreSchema } from './models/PriceScoreSchema.js';
68
- export type { PublishExFarmPricingSchema } from './models/PublishExFarmPricingSchema.js';
69
67
  export type { RecordContractMovementMovedSchema } from './models/RecordContractMovementMovedSchema.js';
70
68
  export type { SearchResultsBidSchema } from './models/SearchResultsBidSchema.js';
71
69
  export type { SearchResultsContractSchema } from './models/SearchResultsContractSchema.js';
@@ -0,0 +1,4 @@
1
+ export type InventoryOrganisationsSchema = {
2
+ organisationIds: Array<string>;
3
+ truncated: boolean;
4
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hectare/platform.clients.trading",
3
- "version": "1.1.319",
3
+ "version": "1.1.320",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",
@@ -1,13 +0,0 @@
1
- export type ExFarmPricesRegionSchema = {
2
- region: string;
3
- prices: Array<{
4
- id?: number;
5
- commodity?: 'Milling Wheat' | 'Feed Wheat' | 'Feed Barley' | 'Oilseed Rape';
6
- date?: string | null;
7
- price?: number;
8
- delta?: number;
9
- commodityId?: number | null;
10
- commodityGrades?: Array<number> | null;
11
- default?: boolean | null;
12
- }>;
13
- };
@@ -1,45 +0,0 @@
1
- export type ExFarmPricesSchema = {
2
- updatedAtUTC: string;
3
- configuration: {
4
- commodities: Array<{
5
- commodity: 'Milling Wheat' | 'Feed Wheat' | 'Feed Barley' | 'Oilseed Rape';
6
- price: number;
7
- }>;
8
- dates: Array<{
9
- commodity: 'Milling Wheat' | 'Feed Wheat' | 'Feed Barley' | 'Oilseed Rape';
10
- date: string;
11
- carryPrice: number;
12
- }>;
13
- regionGroups: Array<{
14
- commodity: 'Milling Wheat' | 'Feed Wheat' | 'Feed Barley' | 'Oilseed Rape';
15
- groups: Array<string>;
16
- differentialPrice: number;
17
- }>;
18
- };
19
- groups: Array<{
20
- group: string;
21
- prices: Array<{
22
- id?: number;
23
- commodity?: 'Milling Wheat' | 'Feed Wheat' | 'Feed Barley' | 'Oilseed Rape';
24
- date?: string | null;
25
- price?: number;
26
- delta?: number;
27
- commodityId?: number | null;
28
- commodityGrades?: Array<number> | null;
29
- default?: boolean | null;
30
- }>;
31
- }>;
32
- regions: Array<{
33
- region: string;
34
- prices: Array<{
35
- id?: number;
36
- commodity?: 'Milling Wheat' | 'Feed Wheat' | 'Feed Barley' | 'Oilseed Rape';
37
- date?: string | null;
38
- price?: number;
39
- delta?: number;
40
- commodityId?: number | null;
41
- commodityGrades?: Array<number> | null;
42
- default?: boolean | null;
43
- }>;
44
- }>;
45
- };
@@ -1 +0,0 @@
1
- export {};
@@ -1,16 +0,0 @@
1
- export type PublishExFarmPricingSchema = {
2
- commodities: Array<{
3
- commodity: 'Milling Wheat' | 'Feed Wheat' | 'Feed Barley' | 'Oilseed Rape';
4
- price: number;
5
- }>;
6
- dates: Array<{
7
- commodity: 'Milling Wheat' | 'Feed Wheat' | 'Feed Barley' | 'Oilseed Rape';
8
- date: string;
9
- carryPrice: number;
10
- }>;
11
- regionGroups: Array<{
12
- commodity: 'Milling Wheat' | 'Feed Wheat' | 'Feed Barley' | 'Oilseed Rape';
13
- groups: Array<string>;
14
- differentialPrice: number;
15
- }>;
16
- };
@@ -1 +0,0 @@
1
- export {};