@boltic/cli 1.0.4 → 1.0.5
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 +1 -7
- package/package.json +1 -1
package/commands/integration.js
CHANGED
|
@@ -504,12 +504,6 @@ 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
|
-
|
|
513
507
|
// Create the integration
|
|
514
508
|
try {
|
|
515
509
|
const integration = await saveIntegration(
|
|
@@ -533,7 +527,7 @@ async function handleCreate() {
|
|
|
533
527
|
trigger: trigger_ai_description || "",
|
|
534
528
|
},
|
|
535
529
|
},
|
|
536
|
-
create_catalogue:
|
|
530
|
+
create_catalogue: true,
|
|
537
531
|
}
|
|
538
532
|
);
|
|
539
533
|
|