@hectare/platform.clients.trading 1.1.115 → 1.1.116
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,7 @@ export type MarketingPlanDetailSchema = {
|
|
|
126
127
|
};
|
|
127
128
|
schedule?: Array<{
|
|
128
129
|
id?: number;
|
|
130
|
+
deadlineId?: number;
|
|
129
131
|
reviewDateUTC?: string;
|
|
130
132
|
listingId?: string;
|
|
131
133
|
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,7 @@ export type MarketingPlanSearchResultsSchema = {
|
|
|
127
128
|
};
|
|
128
129
|
schedule?: Array<{
|
|
129
130
|
id?: number;
|
|
131
|
+
deadlineId?: number;
|
|
130
132
|
reviewDateUTC?: string;
|
|
131
133
|
listingId?: string;
|
|
132
134
|
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,7 @@ export type MarketingPlanSummarySchema = {
|
|
|
126
127
|
};
|
|
127
128
|
schedule?: Array<{
|
|
128
129
|
id?: number;
|
|
130
|
+
deadlineId?: number;
|
|
129
131
|
reviewDateUTC?: string;
|
|
130
132
|
listingId?: string;
|
|
131
133
|
weight?: {
|