@hectare/platform.clients.trading 1.1.108 → 1.1.109

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/index.d.ts CHANGED
@@ -61,6 +61,7 @@ export type { PatchContractRequest } from './models/PatchContractRequest.js';
61
61
  export type { PatchListingAdjustTradeSchema } from './models/PatchListingAdjustTradeSchema.js';
62
62
  export type { PatchListingSchema } from './models/PatchListingSchema.js';
63
63
  export type { PatchListingSubstatusSchema } from './models/PatchListingSubstatusSchema.js';
64
+ export type { PatchMarketingPlanScheduleSchema } from './models/PatchMarketingPlanScheduleSchema.js';
64
65
  export type { PatchMarketingPlanSchema } from './models/PatchMarketingPlanSchema.js';
65
66
  export type { PatchMarketUpdateRequest } from './models/PatchMarketUpdateRequest.js';
66
67
  export type { PriceScoreSchema } from './models/PriceScoreSchema.js';
@@ -137,6 +137,7 @@ export type MarketingPlanDetailSchema = {
137
137
  endDateUTC: string;
138
138
  type: 'date' | 'month';
139
139
  };
140
+ skipped?: boolean;
140
141
  }>;
141
142
  tags?: Array<string>;
142
143
  };
@@ -138,6 +138,7 @@ export type MarketingPlanSearchResultsSchema = {
138
138
  endDateUTC: string;
139
139
  type: 'date' | 'month';
140
140
  };
141
+ skipped?: boolean;
141
142
  }>;
142
143
  tags?: Array<string>;
143
144
  }>;
@@ -137,6 +137,7 @@ export type MarketingPlanSummarySchema = {
137
137
  endDateUTC: string;
138
138
  type: 'date' | 'month';
139
139
  };
140
+ skipped?: boolean;
140
141
  }>;
141
142
  tags?: Array<string>;
142
143
  };
@@ -0,0 +1,13 @@
1
+ export type PatchMarketingPlanScheduleSchema = {
2
+ schedule: Array<{
3
+ id: number;
4
+ reviewDateUTC: string;
5
+ weight: number;
6
+ movementPeriod: {
7
+ startDateUTC: string;
8
+ endDateUTC: string;
9
+ type: 'date' | 'month';
10
+ };
11
+ skipped: boolean | null;
12
+ }>;
13
+ };
@@ -0,0 +1 @@
1
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hectare/platform.clients.trading",
3
- "version": "1.1.108",
3
+ "version": "1.1.109",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",