@sellable/mcp 0.1.95 → 0.1.96
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/dist/tools/leads.js +2 -1
- package/package.json +1 -1
package/dist/tools/leads.js
CHANGED
|
@@ -1035,7 +1035,7 @@ export const leadToolDefinitions = [
|
|
|
1035
1035
|
},
|
|
1036
1036
|
targetLeadCount: {
|
|
1037
1037
|
type: "number",
|
|
1038
|
-
description: "Target lead count requested
|
|
1038
|
+
description: "Target lead count requested. Also caps the campaign-table clone for bounded review batches.",
|
|
1039
1039
|
},
|
|
1040
1040
|
confirmed: {
|
|
1041
1041
|
type: "boolean",
|
|
@@ -2262,6 +2262,7 @@ export async function confirmLeadList(input) {
|
|
|
2262
2262
|
campaignOfferId,
|
|
2263
2263
|
campaignName,
|
|
2264
2264
|
keepInSync,
|
|
2265
|
+
...(typeof targetLeadCount === "number" ? { targetLeadCount } : {}),
|
|
2265
2266
|
...(shouldSetCurrentStep ? { currentStep: effectiveCurrentStep } : {}),
|
|
2266
2267
|
});
|
|
2267
2268
|
const campaignTableId = importResult.workflowTableId ?? importResult.campaignTableId;
|