salesprompter-cli 0.1.10 → 0.1.11
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/cli.js +16 -4
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -459,10 +459,22 @@ async function runWizard(options) {
|
|
|
459
459
|
output: process.stdout
|
|
460
460
|
});
|
|
461
461
|
try {
|
|
462
|
-
const flow = await promptChoice(rl, "What do you want
|
|
463
|
-
{
|
|
464
|
-
|
|
465
|
-
|
|
462
|
+
const flow = await promptChoice(rl, "What do you want help with?", [
|
|
463
|
+
{
|
|
464
|
+
value: "vendor-icp",
|
|
465
|
+
label: "Define my ICP",
|
|
466
|
+
description: "Example: I sell Deel and want the kind of companies Deel sells to"
|
|
467
|
+
},
|
|
468
|
+
{
|
|
469
|
+
value: "target-account",
|
|
470
|
+
label: "Find people at a specific company",
|
|
471
|
+
description: "Example: find contacts at deel.com"
|
|
472
|
+
},
|
|
473
|
+
{
|
|
474
|
+
value: "vendor-lookup",
|
|
475
|
+
label: "Search BigQuery for matching leads",
|
|
476
|
+
description: "Best if your lead data is already in BigQuery and you want SQL or results"
|
|
477
|
+
}
|
|
466
478
|
], "vendor-icp");
|
|
467
479
|
writeWizardLine();
|
|
468
480
|
if (flow === "vendor-icp") {
|
package/package.json
CHANGED