@hectare/platform.clients.trading 1.1.111 → 1.1.113
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.
- package/models/CreateMarketingPlanSchema.d.ts +1 -1
- package/models/MarketingPlanDetailSchema.d.ts +2 -1
- package/models/MarketingPlanSearchResultsSchema.d.ts +2 -1
- package/models/MarketingPlanSummarySchema.d.ts +2 -1
- package/models/PatchMarketingPlanScheduleSchema.d.ts +2 -1
- package/models/PatchMarketingPlanSchema.d.ts +1 -1
- package/package.json +1 -1
|
@@ -59,7 +59,7 @@ export type CreateMarketingPlanSchema = {
|
|
|
59
59
|
canListLowerWeight: boolean;
|
|
60
60
|
}>;
|
|
61
61
|
priceOfferReview: {
|
|
62
|
-
type: 'first' | 'second' | 'third' | '
|
|
62
|
+
type: 'first' | 'second' | 'third' | 'fourth' | 'last' | 'every';
|
|
63
63
|
dayOfWeek: 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
64
64
|
hourOfDay: number;
|
|
65
65
|
};
|
|
@@ -102,7 +102,7 @@ export type MarketingPlanDetailSchema = {
|
|
|
102
102
|
canListLowerWeight: boolean;
|
|
103
103
|
}>;
|
|
104
104
|
priceOfferReview: {
|
|
105
|
-
type: 'first' | 'second' | 'third' | '
|
|
105
|
+
type: 'first' | 'second' | 'third' | 'fourth' | 'last' | 'every';
|
|
106
106
|
dayOfWeek: 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
107
107
|
hourOfDay: number;
|
|
108
108
|
};
|
|
@@ -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;
|
|
@@ -103,7 +103,7 @@ export type MarketingPlanSearchResultsSchema = {
|
|
|
103
103
|
canListLowerWeight: boolean;
|
|
104
104
|
}>;
|
|
105
105
|
priceOfferReview: {
|
|
106
|
-
type: 'first' | 'second' | 'third' | '
|
|
106
|
+
type: 'first' | 'second' | 'third' | 'fourth' | 'last' | 'every';
|
|
107
107
|
dayOfWeek: 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
108
108
|
hourOfDay: number;
|
|
109
109
|
};
|
|
@@ -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;
|
|
@@ -102,7 +102,7 @@ export type MarketingPlanSummarySchema = {
|
|
|
102
102
|
canListLowerWeight: boolean;
|
|
103
103
|
}>;
|
|
104
104
|
priceOfferReview: {
|
|
105
|
-
type: 'first' | 'second' | 'third' | '
|
|
105
|
+
type: 'first' | 'second' | 'third' | 'fourth' | 'last' | 'every';
|
|
106
106
|
dayOfWeek: 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
107
107
|
hourOfDay: number;
|
|
108
108
|
};
|
|
@@ -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;
|
|
@@ -59,7 +59,7 @@ export type PatchMarketingPlanSchema = {
|
|
|
59
59
|
canListLowerWeight: boolean;
|
|
60
60
|
}>;
|
|
61
61
|
priceOfferReview: {
|
|
62
|
-
type: 'first' | 'second' | 'third' | '
|
|
62
|
+
type: 'first' | 'second' | 'third' | 'fourth' | 'last' | 'every';
|
|
63
63
|
dayOfWeek: 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
64
64
|
hourOfDay: number;
|
|
65
65
|
};
|