@hectare/platform.clients.trading 1.1.214 → 1.1.216

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';
@@ -155,6 +155,9 @@ export type MarketingPlanDetailSchema = {
155
155
  asAvailable: boolean | null;
156
156
  };
157
157
  skipped?: boolean;
158
+ listingStatus?: 'active' | 'closed' | 'traded';
159
+ listingSubstatus?: 'unsold' | 'archived' | 'scheduled' | 'open' | 'in-review' | 'post-review' | null;
158
160
  }>;
161
+ emailDistributionList: Array<string>;
159
162
  tags?: Array<string>;
160
163
  };
@@ -156,7 +156,10 @@ export type MarketingPlanSearchResultsSchema = {
156
156
  asAvailable: boolean | null;
157
157
  };
158
158
  skipped?: boolean;
159
+ listingStatus?: 'active' | 'closed' | 'traded';
160
+ listingSubstatus?: 'unsold' | 'archived' | 'scheduled' | 'open' | 'in-review' | 'post-review' | null;
159
161
  }>;
162
+ emailDistributionList: Array<string>;
160
163
  tags?: Array<string>;
161
164
  }>;
162
165
  custom?: any;
@@ -155,6 +155,9 @@ export type MarketingPlanSummarySchema = {
155
155
  asAvailable: boolean | null;
156
156
  };
157
157
  skipped?: boolean;
158
+ listingStatus?: 'active' | 'closed' | 'traded';
159
+ listingSubstatus?: 'unsold' | 'archived' | 'scheduled' | 'open' | 'in-review' | 'post-review' | null;
158
160
  }>;
161
+ emailDistributionList: Array<string>;
159
162
  tags?: Array<string>;
160
163
  };
@@ -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.216",
4
4
  "main": "index.js",
5
5
  "exported": true,
6
6
  "types": "index.d.ts",