@sellable/mcp 0.1.157 → 0.1.158
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 +5 -0
- package/package.json +1 -1
package/dist/tools/leads.js
CHANGED
|
@@ -2324,11 +2324,16 @@ export async function importLeads(input) {
|
|
|
2324
2324
|
const sourcingSteps = new Set([
|
|
2325
2325
|
null,
|
|
2326
2326
|
"pick-provider",
|
|
2327
|
+
"contact-search",
|
|
2327
2328
|
"apollo",
|
|
2329
|
+
"apollo-select-leads",
|
|
2328
2330
|
"sales-nav",
|
|
2331
|
+
"sales-nav-select-leads",
|
|
2329
2332
|
"prospeo",
|
|
2333
|
+
"prospeo-select-leads",
|
|
2330
2334
|
"signal-discovery",
|
|
2331
2335
|
"signal-discovery-results",
|
|
2336
|
+
"leads",
|
|
2332
2337
|
]);
|
|
2333
2338
|
const shouldDefaultStep = currentStep === undefined && sourcingSteps.has(campaignCurrentStep ?? null);
|
|
2334
2339
|
const effectiveCurrentStep = shouldDefaultStep
|