@hectare/platform.clients.trading 1.1.110 → 1.1.112
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.
|
@@ -5,7 +5,7 @@ export type MarketingPlanDetailSchema = {
|
|
|
5
5
|
businessUnitName: string;
|
|
6
6
|
organisationId: string;
|
|
7
7
|
organisationName: string;
|
|
8
|
-
status: 'pending' | 'active' | 'completed';
|
|
8
|
+
status: 'pending' | 'active' | 'completed' | 'inactive';
|
|
9
9
|
inventory: {
|
|
10
10
|
type: 'crop' | 'produce';
|
|
11
11
|
harvestYear: string;
|
|
@@ -127,6 +127,7 @@ export type MarketingPlanDetailSchema = {
|
|
|
127
127
|
schedule?: Array<{
|
|
128
128
|
id?: number;
|
|
129
129
|
reviewDateUTC?: string;
|
|
130
|
+
listingId?: string;
|
|
130
131
|
weight?: {
|
|
131
132
|
name: string;
|
|
132
133
|
conversion: number;
|
|
@@ -6,7 +6,7 @@ export type MarketingPlanSearchResultsSchema = {
|
|
|
6
6
|
businessUnitName: string;
|
|
7
7
|
organisationId: string;
|
|
8
8
|
organisationName: string;
|
|
9
|
-
status: 'pending' | 'active' | 'completed';
|
|
9
|
+
status: 'pending' | 'active' | 'completed' | 'inactive';
|
|
10
10
|
inventory: {
|
|
11
11
|
type: 'crop' | 'produce';
|
|
12
12
|
harvestYear: string;
|
|
@@ -128,6 +128,7 @@ export type MarketingPlanSearchResultsSchema = {
|
|
|
128
128
|
schedule?: Array<{
|
|
129
129
|
id?: number;
|
|
130
130
|
reviewDateUTC?: string;
|
|
131
|
+
listingId?: string;
|
|
131
132
|
weight?: {
|
|
132
133
|
name: string;
|
|
133
134
|
conversion: number;
|
|
@@ -5,7 +5,7 @@ export type MarketingPlanSummarySchema = {
|
|
|
5
5
|
businessUnitName: string;
|
|
6
6
|
organisationId: string;
|
|
7
7
|
organisationName: string;
|
|
8
|
-
status: 'pending' | 'active' | 'completed';
|
|
8
|
+
status: 'pending' | 'active' | 'completed' | 'inactive';
|
|
9
9
|
inventory: {
|
|
10
10
|
type: 'crop' | 'produce';
|
|
11
11
|
harvestYear: string;
|
|
@@ -127,6 +127,7 @@ export type MarketingPlanSummarySchema = {
|
|
|
127
127
|
schedule?: Array<{
|
|
128
128
|
id?: number;
|
|
129
129
|
reviewDateUTC?: string;
|
|
130
|
+
listingId?: string;
|
|
130
131
|
weight?: {
|
|
131
132
|
name: string;
|
|
132
133
|
conversion: number;
|