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.
- package/dist/cli.js +5 -3
- 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 =
|
|
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 =
|
|
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: "
|
|
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