@hectare/platform.clients.trading 1.1.214 → 1.1.215

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
@@ -67,6 +67,7 @@ export type { PatchContractRequest } from './models/PatchContractRequest.js';
67
67
  export type { PatchListingAdjustTradeSchema } from './models/PatchListingAdjustTradeSchema.js';
68
68
  export type { PatchListingSchema } from './models/PatchListingSchema.js';
69
69
  export type { PatchListingSubstatusSchema } from './models/PatchListingSubstatusSchema.js';
70
+ export type { PatchMarketingPlanEmailDistributionListSchema } from './models/PatchMarketingPlanEmailDistributionListSchema.js';
70
71
  export type { PatchMarketingPlanScheduleSchema } from './models/PatchMarketingPlanScheduleSchema.js';
71
72
  export type { PatchMarketingPlanSchema } from './models/PatchMarketingPlanSchema.js';
72
73
  export type { PatchMarketUpdateRequest } from './models/PatchMarketUpdateRequest.js';
@@ -156,5 +156,6 @@ export type MarketingPlanDetailSchema = {
156
156
  };
157
157
  skipped?: boolean;
158
158
  }>;
159
+ emailDistributionList: Array<string>;
159
160
  tags?: Array<string>;
160
161
  };
@@ -157,6 +157,7 @@ export type MarketingPlanSearchResultsSchema = {
157
157
  };
158
158
  skipped?: boolean;
159
159
  }>;
160
+ emailDistributionList: Array<string>;
160
161
  tags?: Array<string>;
161
162
  }>;
162
163
  custom?: any;
@@ -156,5 +156,6 @@ export type MarketingPlanSummarySchema = {
156
156
  };
157
157
  skipped?: boolean;
158
158
  }>;
159
+ emailDistributionList: Array<string>;
159
160
  tags?: Array<string>;
160
161
  };
@@ -0,0 +1,3 @@
1
+ export type PatchMarketingPlanEmailDistributionListSchema = {
2
+ emailDistributionList: Array<string>;
3
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hectare/platform.clients.trading",
3
- "version": "1.1.214",
3
+ "version": "1.1.215",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",