@boltic/cli 0.0.1 → 1.0.1
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/integration.js +2 -2
- 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/integration.js
CHANGED
|
@@ -538,9 +538,9 @@ async function handleCreate() {
|
|
|
538
538
|
// Create folder structure with the integration name
|
|
539
539
|
await createIntegrationFolderStructure(integration);
|
|
540
540
|
|
|
541
|
-
// Also share Documentation URL to the user: https://docs.boltic.io/docs/
|
|
541
|
+
// Also share Documentation URL to the user: https://docs.boltic.io/docs/integration-builder/develop/boilerplate
|
|
542
542
|
const documentationUrl =
|
|
543
|
-
"https://docs.boltic.io/docs/
|
|
543
|
+
"https://docs.boltic.io/docs/integration-builder/develop/boilerplate";
|
|
544
544
|
console.log(
|
|
545
545
|
chalk.cyan(
|
|
546
546
|
"\n📄 Documentation URL: " +
|