@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 +1 -0
- package/models/MarketingPlanDetailSchema.d.ts +3 -0
- package/models/MarketingPlanSearchResultsSchema.d.ts +3 -0
- package/models/MarketingPlanSummarySchema.d.ts +3 -0
- package/models/PatchMarketingPlanEmailDistributionListSchema.d.ts +3 -0
- package/models/PatchMarketingPlanEmailDistributionListSchema.js +1 -0
- package/package.json +1 -1
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 @@
|
|
|
1
|
+
export {};
|