@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.
@@ -59,7 +59,7 @@ export type CreateMarketingPlanSchema = {
59
59
  canListLowerWeight: boolean;
60
60
  }>;
61
61
  priceOfferReview: {
62
- type: 'first' | 'second' | 'third' | 'forth' | 'last' | 'every';
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' | 'forth' | 'last' | 'every';
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' | 'forth' | 'last' | 'every';
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' | 'forth' | 'last' | 'every';
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;
@@ -8,6 +8,7 @@ export type PatchMarketingPlanScheduleSchema = {
8
8
  endDateUTC: string;
9
9
  type: 'date' | 'month';
10
10
  };
11
- skipped: boolean | null;
11
+ skipped: boolean;
12
+ listingId?: string | null;
12
13
  }>;
13
14
  };
@@ -59,7 +59,7 @@ export type PatchMarketingPlanSchema = {
59
59
  canListLowerWeight: boolean;
60
60
  }>;
61
61
  priceOfferReview: {
62
- type: 'first' | 'second' | 'third' | 'forth' | 'last' | 'every';
62
+ type: 'first' | 'second' | 'third' | 'fourth' | 'last' | 'every';
63
63
  dayOfWeek: 1 | 2 | 3 | 4 | 5 | 6 | 7;
64
64
  hourOfDay: number;
65
65
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hectare/platform.clients.trading",
3
- "version": "1.1.111",
3
+ "version": "1.1.113",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",