@hectare/platform.clients.trading 1.1.120 → 1.1.122

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.
@@ -6,6 +6,7 @@ export type InventorySearchResultsSchema = {
6
6
  businessUnitName: string;
7
7
  organisationId: string;
8
8
  organisationName: string;
9
+ inventoryId: string;
9
10
  status: 'pending' | 'active' | 'completed' | 'inactive';
10
11
  crop: {
11
12
  type: 'crop' | 'produce';
@@ -129,8 +130,8 @@ export type InventorySearchResultsSchema = {
129
130
  schedule?: Array<{
130
131
  id?: number;
131
132
  deadlineId?: number;
132
- minTonnes?: number;
133
- maxTonnes?: number;
133
+ minWeight?: number;
134
+ maxWeight?: number;
134
135
  reviewDateUTC?: string;
135
136
  listingId?: string;
136
137
  weight?: {
@@ -5,6 +5,7 @@ export type MarketingPlanDetailSchema = {
5
5
  businessUnitName: string;
6
6
  organisationId: string;
7
7
  organisationName: string;
8
+ inventoryId: string;
8
9
  status: 'pending' | 'active' | 'completed' | 'inactive';
9
10
  crop: {
10
11
  type: 'crop' | 'produce';
@@ -128,8 +129,8 @@ export type MarketingPlanDetailSchema = {
128
129
  schedule?: Array<{
129
130
  id?: number;
130
131
  deadlineId?: number;
131
- minTonnes?: number;
132
- maxTonnes?: number;
132
+ minWeight?: number;
133
+ maxWeight?: number;
133
134
  reviewDateUTC?: string;
134
135
  listingId?: string;
135
136
  weight?: {
@@ -6,6 +6,7 @@ export type MarketingPlanSearchResultsSchema = {
6
6
  businessUnitName: string;
7
7
  organisationId: string;
8
8
  organisationName: string;
9
+ inventoryId: string;
9
10
  status: 'pending' | 'active' | 'completed' | 'inactive';
10
11
  crop: {
11
12
  type: 'crop' | 'produce';
@@ -129,8 +130,8 @@ export type MarketingPlanSearchResultsSchema = {
129
130
  schedule?: Array<{
130
131
  id?: number;
131
132
  deadlineId?: number;
132
- minTonnes?: number;
133
- maxTonnes?: number;
133
+ minWeight?: number;
134
+ maxWeight?: number;
134
135
  reviewDateUTC?: string;
135
136
  listingId?: string;
136
137
  weight?: {
@@ -5,6 +5,7 @@ export type MarketingPlanSummarySchema = {
5
5
  businessUnitName: string;
6
6
  organisationId: string;
7
7
  organisationName: string;
8
+ inventoryId: string;
8
9
  status: 'pending' | 'active' | 'completed' | 'inactive';
9
10
  crop: {
10
11
  type: 'crop' | 'produce';
@@ -128,8 +129,8 @@ export type MarketingPlanSummarySchema = {
128
129
  schedule?: Array<{
129
130
  id?: number;
130
131
  deadlineId?: number;
131
- minTonnes?: number;
132
- maxTonnes?: number;
132
+ minWeight?: number;
133
+ maxWeight?: number;
133
134
  reviewDateUTC?: string;
134
135
  listingId?: string;
135
136
  weight?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hectare/platform.clients.trading",
3
- "version": "1.1.120",
3
+ "version": "1.1.122",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",