@hectare/platform.clients.trading 1.1.101 → 1.1.103
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.
|
@@ -86,7 +86,7 @@ export type MarketingPlanDetailSchema = {
|
|
|
86
86
|
};
|
|
87
87
|
priceOfferReview: {
|
|
88
88
|
type: 'first' | 'last' | 'every';
|
|
89
|
-
dayOfWeek:
|
|
89
|
+
dayOfWeek: 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
90
90
|
hourOfDay: number;
|
|
91
91
|
};
|
|
92
92
|
};
|
|
@@ -107,5 +107,18 @@ export type MarketingPlanDetailSchema = {
|
|
|
107
107
|
currency: string;
|
|
108
108
|
} | null;
|
|
109
109
|
};
|
|
110
|
+
schedule?: Array<{
|
|
111
|
+
reviewDateUTC?: string;
|
|
112
|
+
weight?: {
|
|
113
|
+
name: string;
|
|
114
|
+
conversion: number;
|
|
115
|
+
weight?: number;
|
|
116
|
+
};
|
|
117
|
+
movementPeriod?: {
|
|
118
|
+
startDateUTC: string;
|
|
119
|
+
endDateUTC: string;
|
|
120
|
+
type: 'date' | 'month';
|
|
121
|
+
};
|
|
122
|
+
}>;
|
|
110
123
|
tags?: Array<string>;
|
|
111
124
|
};
|
|
@@ -87,7 +87,7 @@ export type MarketingPlanSearchResultsSchema = {
|
|
|
87
87
|
};
|
|
88
88
|
priceOfferReview: {
|
|
89
89
|
type: 'first' | 'last' | 'every';
|
|
90
|
-
dayOfWeek:
|
|
90
|
+
dayOfWeek: 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
91
91
|
hourOfDay: number;
|
|
92
92
|
};
|
|
93
93
|
};
|
|
@@ -108,6 +108,19 @@ export type MarketingPlanSearchResultsSchema = {
|
|
|
108
108
|
currency: string;
|
|
109
109
|
} | null;
|
|
110
110
|
};
|
|
111
|
+
schedule?: Array<{
|
|
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
|
+
}>;
|
|
111
124
|
tags?: Array<string>;
|
|
112
125
|
}>;
|
|
113
126
|
custom?: any;
|
|
@@ -86,7 +86,7 @@ export type MarketingPlanSummarySchema = {
|
|
|
86
86
|
};
|
|
87
87
|
priceOfferReview: {
|
|
88
88
|
type: 'first' | 'last' | 'every';
|
|
89
|
-
dayOfWeek:
|
|
89
|
+
dayOfWeek: 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
90
90
|
hourOfDay: number;
|
|
91
91
|
};
|
|
92
92
|
};
|
|
@@ -107,5 +107,18 @@ export type MarketingPlanSummarySchema = {
|
|
|
107
107
|
currency: string;
|
|
108
108
|
} | null;
|
|
109
109
|
};
|
|
110
|
+
schedule?: Array<{
|
|
111
|
+
reviewDateUTC?: string;
|
|
112
|
+
weight?: {
|
|
113
|
+
name: string;
|
|
114
|
+
conversion: number;
|
|
115
|
+
weight?: number;
|
|
116
|
+
};
|
|
117
|
+
movementPeriod?: {
|
|
118
|
+
startDateUTC: string;
|
|
119
|
+
endDateUTC: string;
|
|
120
|
+
type: 'date' | 'month';
|
|
121
|
+
};
|
|
122
|
+
}>;
|
|
110
123
|
tags?: Array<string>;
|
|
111
124
|
};
|