@boltic/cli 1.0.0 → 1.0.2
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/README.md +6 -4
- package/commands/login.js +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -40,11 +40,13 @@ boltic integration create
|
|
|
40
40
|
|
|
41
41
|
You’ll be prompted to enter:
|
|
42
42
|
|
|
43
|
-
- **Name
|
|
44
|
-
- **Icon
|
|
45
|
-
- **Integration Type
|
|
43
|
+
- **Name**: Letters and underscores only (e.g., My_Integration)
|
|
44
|
+
- **Icon**: Select an SVG file from your computer
|
|
45
|
+
- **Integration Type**:
|
|
46
46
|
|
|
47
|
-
- Workflow Activity
|
|
47
|
+
- Workflow Activity: Reusable components that perform specific tasks
|
|
48
|
+
- Workflow Trigger: Components that start your workflow based on external events
|
|
49
|
+
- You can choose to create both types for the same integration
|
|
48
50
|
|
|
49
51
|
- **Descriptions**
|
|
50
52
|
|
package/commands/login.js
CHANGED
|
@@ -55,6 +55,7 @@ async function handleLogin(args) {
|
|
|
55
55
|
loginPage.searchParams.append("state", JSON.stringify(state));
|
|
56
56
|
|
|
57
57
|
console.log(chalk.cyan("\n🌐 Opening browser for login..."));
|
|
58
|
+
console.log(chalk.cyan("\n" + loginPage.toString() + "\n"));
|
|
58
59
|
try {
|
|
59
60
|
await open(loginPage.toString());
|
|
60
61
|
console.log(chalk.cyan("✅ Browser launched successfully"));
|