@hectare/platform.clients.trading 1.1.115 → 1.1.117
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.
|
@@ -78,6 +78,7 @@ export type MarketingPlanDetailSchema = {
|
|
|
78
78
|
startDateUTC: string;
|
|
79
79
|
endDateUTC: string;
|
|
80
80
|
deadlines: Array<{
|
|
81
|
+
id: number;
|
|
81
82
|
endDateUTC: string;
|
|
82
83
|
weight: {
|
|
83
84
|
name: string;
|
|
@@ -126,6 +127,9 @@ export type MarketingPlanDetailSchema = {
|
|
|
126
127
|
};
|
|
127
128
|
schedule?: Array<{
|
|
128
129
|
id?: number;
|
|
130
|
+
deadlineId?: number;
|
|
131
|
+
minTonnes?: number;
|
|
132
|
+
maxTonnes?: number;
|
|
129
133
|
reviewDateUTC?: string;
|
|
130
134
|
listingId?: string;
|
|
131
135
|
weight?: {
|
|
@@ -79,6 +79,7 @@ export type MarketingPlanSearchResultsSchema = {
|
|
|
79
79
|
startDateUTC: string;
|
|
80
80
|
endDateUTC: string;
|
|
81
81
|
deadlines: Array<{
|
|
82
|
+
id: number;
|
|
82
83
|
endDateUTC: string;
|
|
83
84
|
weight: {
|
|
84
85
|
name: string;
|
|
@@ -127,6 +128,9 @@ export type MarketingPlanSearchResultsSchema = {
|
|
|
127
128
|
};
|
|
128
129
|
schedule?: Array<{
|
|
129
130
|
id?: number;
|
|
131
|
+
deadlineId?: number;
|
|
132
|
+
minTonnes?: number;
|
|
133
|
+
maxTonnes?: number;
|
|
130
134
|
reviewDateUTC?: string;
|
|
131
135
|
listingId?: string;
|
|
132
136
|
weight?: {
|
|
@@ -78,6 +78,7 @@ export type MarketingPlanSummarySchema = {
|
|
|
78
78
|
startDateUTC: string;
|
|
79
79
|
endDateUTC: string;
|
|
80
80
|
deadlines: Array<{
|
|
81
|
+
id: number;
|
|
81
82
|
endDateUTC: string;
|
|
82
83
|
weight: {
|
|
83
84
|
name: string;
|
|
@@ -126,6 +127,9 @@ export type MarketingPlanSummarySchema = {
|
|
|
126
127
|
};
|
|
127
128
|
schedule?: Array<{
|
|
128
129
|
id?: number;
|
|
130
|
+
deadlineId?: number;
|
|
131
|
+
minTonnes?: number;
|
|
132
|
+
maxTonnes?: number;
|
|
129
133
|
reviewDateUTC?: string;
|
|
130
134
|
listingId?: string;
|
|
131
135
|
weight?: {
|