@hectare/platform.clients.trading 1.1.102 → 1.1.104
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.
|
@@ -107,5 +107,19 @@ export type MarketingPlanDetailSchema = {
|
|
|
107
107
|
currency: string;
|
|
108
108
|
} | null;
|
|
109
109
|
};
|
|
110
|
+
schedule?: Array<{
|
|
111
|
+
id?: number;
|
|
112
|
+
reviewDateUTC?: string;
|
|
113
|
+
weight?: {
|
|
114
|
+
name: string;
|
|
115
|
+
conversion: number;
|
|
116
|
+
weight?: number;
|
|
117
|
+
};
|
|
118
|
+
movementPeriod?: {
|
|
119
|
+
startDateUTC: string;
|
|
120
|
+
endDateUTC: string;
|
|
121
|
+
type: 'date' | 'month';
|
|
122
|
+
};
|
|
123
|
+
}>;
|
|
110
124
|
tags?: Array<string>;
|
|
111
125
|
};
|
|
@@ -108,6 +108,20 @@ export type MarketingPlanSearchResultsSchema = {
|
|
|
108
108
|
currency: string;
|
|
109
109
|
} | null;
|
|
110
110
|
};
|
|
111
|
+
schedule?: Array<{
|
|
112
|
+
id?: number;
|
|
113
|
+
reviewDateUTC?: string;
|
|
114
|
+
weight?: {
|
|
115
|
+
name: string;
|
|
116
|
+
conversion: number;
|
|
117
|
+
weight?: number;
|
|
118
|
+
};
|
|
119
|
+
movementPeriod?: {
|
|
120
|
+
startDateUTC: string;
|
|
121
|
+
endDateUTC: string;
|
|
122
|
+
type: 'date' | 'month';
|
|
123
|
+
};
|
|
124
|
+
}>;
|
|
111
125
|
tags?: Array<string>;
|
|
112
126
|
}>;
|
|
113
127
|
custom?: any;
|
|
@@ -107,5 +107,19 @@ export type MarketingPlanSummarySchema = {
|
|
|
107
107
|
currency: string;
|
|
108
108
|
} | null;
|
|
109
109
|
};
|
|
110
|
+
schedule?: Array<{
|
|
111
|
+
id?: number;
|
|
112
|
+
reviewDateUTC?: string;
|
|
113
|
+
weight?: {
|
|
114
|
+
name: string;
|
|
115
|
+
conversion: number;
|
|
116
|
+
weight?: number;
|
|
117
|
+
};
|
|
118
|
+
movementPeriod?: {
|
|
119
|
+
startDateUTC: string;
|
|
120
|
+
endDateUTC: string;
|
|
121
|
+
type: 'date' | 'month';
|
|
122
|
+
};
|
|
123
|
+
}>;
|
|
110
124
|
tags?: Array<string>;
|
|
111
125
|
};
|