@boltic/cli 1.0.3 → 1.0.4
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/commands/integration.js +7 -0
- package/package.json +1 -1
package/commands/integration.js
CHANGED
|
@@ -504,6 +504,12 @@ async function handleCreate() {
|
|
|
504
504
|
return;
|
|
505
505
|
}
|
|
506
506
|
|
|
507
|
+
const create_catalogue = await confirm({
|
|
508
|
+
message:
|
|
509
|
+
"Would you like to create authentication form for this integration?",
|
|
510
|
+
default: true,
|
|
511
|
+
});
|
|
512
|
+
|
|
507
513
|
// Create the integration
|
|
508
514
|
try {
|
|
509
515
|
const integration = await saveIntegration(
|
|
@@ -527,6 +533,7 @@ async function handleCreate() {
|
|
|
527
533
|
trigger: trigger_ai_description || "",
|
|
528
534
|
},
|
|
529
535
|
},
|
|
536
|
+
create_catalogue: create_catalogue,
|
|
530
537
|
}
|
|
531
538
|
);
|
|
532
539
|
|