salesprompter-cli 0.1.12 → 0.1.13

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.
Files changed (2) hide show
  1. package/dist/cli.js +5 -3
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -276,7 +276,8 @@ async function ensureWizardSession(options) {
276
276
  return result.session;
277
277
  }
278
278
  async function runVendorIcpWizard(rl) {
279
- const vendor = await promptChoice(rl, "Which product are you selling?", [{ value: "deel", label: "Deel", description: "Use Deel's built-in ICP template" }], "deel");
279
+ const vendor = "deel";
280
+ writeWizardLine("Using the built-in Deel ICP template.");
280
281
  writeWizardLine();
281
282
  const market = await promptChoice(rl, "Which market do you want to target?", [
282
283
  { value: "dach", label: "DACH", description: "Germany, Austria, Switzerland" },
@@ -390,7 +391,8 @@ async function runLeadGenerationWizard(rl) {
390
391
  await runVendorLookupWizard(rl);
391
392
  }
392
393
  async function runVendorLookupWizard(rl) {
393
- const vendor = await promptChoice(rl, "Which product are you selling?", [{ value: "deel", label: "Deel", description: "Use Deel's built-in ICP template" }], "deel");
394
+ const vendor = "deel";
395
+ writeWizardLine("Using the built-in Deel ICP template.");
394
396
  writeWizardLine();
395
397
  const market = await promptChoice(rl, "Which market should the BigQuery lookup target?", [
396
398
  { value: "dach", label: "DACH", description: "Germany, Austria, Switzerland" },
@@ -541,7 +543,7 @@ async function runWizard(options) {
541
543
  {
542
544
  value: "vendor-icp",
543
545
  label: "Define my ICP",
544
- description: "Example: I sell Deel and want the kind of companies Deel sells to"
546
+ description: "Build the kind of company profile your product sells to"
545
547
  },
546
548
  {
547
549
  value: "lead-generation",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "salesprompter-cli",
3
- "version": "0.1.12",
3
+ "version": "0.1.13",
4
4
  "description": "JSON-first sales prospecting CLI for ICP definition, lead generation, enrichment, scoring, and CRM/outreach sync.",
5
5
  "type": "module",
6
6
  "bin": {