@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.
@@ -1035,7 +1035,7 @@ export const leadToolDefinitions = [
1035
1035
  },
1036
1036
  targetLeadCount: {
1037
1037
  type: "number",
1038
- description: "Target lead count requested (used to validate completion when status is unavailable).",
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sellable/mcp",
3
- "version": "0.1.95",
3
+ "version": "0.1.96",
4
4
  "type": "module",
5
5
  "description": "Sellable MCP server for Claude Code and Codex campaign workflows",
6
6
  "main": "dist/index.js",