@boltic/cli 1.0.19 → 1.0.21
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 +4 -4
- package/package.json +19 -19
- package/templates/component-schemas.js +24 -2
package/README.md
CHANGED
|
@@ -94,7 +94,7 @@ npm install -g @boltic/cli
|
|
|
94
94
|
### Verify Installation
|
|
95
95
|
|
|
96
96
|
```bash
|
|
97
|
-
boltic
|
|
97
|
+
boltic version
|
|
98
98
|
```
|
|
99
99
|
|
|
100
100
|
---
|
|
@@ -478,7 +478,7 @@ boltic integration help
|
|
|
478
478
|
boltic login help
|
|
479
479
|
|
|
480
480
|
# Check CLI version
|
|
481
|
-
boltic
|
|
481
|
+
boltic version
|
|
482
482
|
```
|
|
483
483
|
|
|
484
484
|
**External resources**:
|
|
@@ -516,7 +516,7 @@ npm --version
|
|
|
516
516
|
npm install -g @boltic/cli@latest
|
|
517
517
|
|
|
518
518
|
# Verify installation
|
|
519
|
-
boltic
|
|
519
|
+
boltic version
|
|
520
520
|
```
|
|
521
521
|
|
|
522
522
|
#### 9. Emergency Recovery
|
|
@@ -540,7 +540,7 @@ boltic login
|
|
|
540
540
|
1. Check the [FAQ](https://docs.boltic.io/faq)
|
|
541
541
|
2. Search [existing issues](https://github.com/bolticio/cli/issues)
|
|
542
542
|
3. Create a new issue with:
|
|
543
|
-
- CLI version (`boltic
|
|
543
|
+
- CLI version (`boltic version`)
|
|
544
544
|
- Operating system
|
|
545
545
|
- Node.js version
|
|
546
546
|
- Complete error message
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@boltic/cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.21",
|
|
4
4
|
"description": "A powerful CLI tool for managing Boltic Workflow integrations - create, sync, test, and publish integrations with ease",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -104,30 +104,30 @@
|
|
|
104
104
|
}
|
|
105
105
|
},
|
|
106
106
|
"dependencies": {
|
|
107
|
-
"@inquirer/prompts": "^7.
|
|
108
|
-
"axios": "^1.
|
|
109
|
-
"chalk": "^5.
|
|
107
|
+
"@inquirer/prompts": "^7.8.0",
|
|
108
|
+
"axios": "^1.11.0",
|
|
109
|
+
"chalk": "^5.5.0",
|
|
110
110
|
"keytar": "^7.9.0",
|
|
111
|
-
"open": "^10.1.0",
|
|
112
|
-
"uuid": "^11.1.0",
|
|
113
111
|
"lodash.isempty": "^4.4.0",
|
|
114
|
-
"
|
|
112
|
+
"open": "^10.2.0",
|
|
113
|
+
"uuid": "^11.1.0"
|
|
115
114
|
},
|
|
116
115
|
"devDependencies": {
|
|
117
|
-
"@babel/core": "^7.
|
|
118
|
-
"@babel/preset-env": "^7.
|
|
119
|
-
"@commitlint/cli": "^19.
|
|
120
|
-
"@commitlint/config-conventional": "^19.
|
|
121
|
-
"@jest/globals": "^
|
|
116
|
+
"@babel/core": "^7.28.0",
|
|
117
|
+
"@babel/preset-env": "^7.28.0",
|
|
118
|
+
"@commitlint/cli": "^19.8.1",
|
|
119
|
+
"@commitlint/config-conventional": "^19.8.1",
|
|
120
|
+
"@jest/globals": "^30.0.5",
|
|
122
121
|
"axios-mock-adapter": "^2.1.0",
|
|
123
|
-
"babel-jest": "^
|
|
124
|
-
"eslint": "^9.
|
|
125
|
-
"eslint-config-prettier": "^10.
|
|
126
|
-
"eslint-plugin-prettier": "^5.
|
|
122
|
+
"babel-jest": "^30.0.5",
|
|
123
|
+
"eslint": "^9.32.0",
|
|
124
|
+
"eslint-config-prettier": "^10.1.8",
|
|
125
|
+
"eslint-plugin-prettier": "^5.5.3",
|
|
127
126
|
"husky": "^9.1.7",
|
|
128
|
-
"
|
|
129
|
-
"
|
|
130
|
-
"
|
|
127
|
+
"jest": "^30.0.5",
|
|
128
|
+
"lint-staged": "^16.1.4",
|
|
129
|
+
"nodemon": "^3.1.10",
|
|
130
|
+
"prettier": "^3.6.2"
|
|
131
131
|
},
|
|
132
132
|
"peerDependencies": {
|
|
133
133
|
"node": ">=18.0.0"
|
|
@@ -58,6 +58,7 @@ const number = {
|
|
|
58
58
|
showInfoIcon: false,
|
|
59
59
|
rightLabel: "",
|
|
60
60
|
rightLabelAlignment: "center",
|
|
61
|
+
allowDynamic: false,
|
|
61
62
|
},
|
|
62
63
|
validation: {
|
|
63
64
|
required: false,
|
|
@@ -160,6 +161,17 @@ const checkbox = {
|
|
|
160
161
|
value: false,
|
|
161
162
|
readOnly: false,
|
|
162
163
|
isDisabled: false,
|
|
164
|
+
multiple: false,
|
|
165
|
+
options: [
|
|
166
|
+
{
|
|
167
|
+
label: "Option 1",
|
|
168
|
+
value: "option1",
|
|
169
|
+
description: "Description 1",
|
|
170
|
+
},
|
|
171
|
+
],
|
|
172
|
+
htmlProps: {
|
|
173
|
+
allowDynamic: false,
|
|
174
|
+
},
|
|
163
175
|
validation: {
|
|
164
176
|
required: false,
|
|
165
177
|
requiredDetail: {
|
|
@@ -440,6 +452,7 @@ const file = {
|
|
|
440
452
|
accept: "*/*",
|
|
441
453
|
maxSize: 52428800,
|
|
442
454
|
maxFiles: 1,
|
|
455
|
+
allowDynamic: false,
|
|
443
456
|
preview: true,
|
|
444
457
|
},
|
|
445
458
|
validation: {
|
|
@@ -568,7 +581,7 @@ const code = {
|
|
|
568
581
|
showSuggestions: true,
|
|
569
582
|
showCopyToClipboard: true,
|
|
570
583
|
showHtmlPreview: false,
|
|
571
|
-
height: "
|
|
584
|
+
height: "auto",
|
|
572
585
|
},
|
|
573
586
|
validation: {
|
|
574
587
|
required: false,
|
|
@@ -696,6 +709,7 @@ const date = {
|
|
|
696
709
|
readOnly: false,
|
|
697
710
|
views: undefined,
|
|
698
711
|
timeSteps: { hours: 1, minutes: 5, seconds: 5 },
|
|
712
|
+
allowDynamic: false,
|
|
699
713
|
},
|
|
700
714
|
validation: {
|
|
701
715
|
required: false,
|
|
@@ -929,6 +943,7 @@ const phone = {
|
|
|
929
943
|
onlyCountries: [],
|
|
930
944
|
preferredCountries: ["US", "GB", "CA"],
|
|
931
945
|
continents: ["NA", "EU"],
|
|
946
|
+
allowDropdown: true,
|
|
932
947
|
},
|
|
933
948
|
validation: {
|
|
934
949
|
required: false,
|
|
@@ -1026,7 +1041,14 @@ const button = {
|
|
|
1026
1041
|
htmlProps: {
|
|
1027
1042
|
variant: "contained",
|
|
1028
1043
|
size: "medium",
|
|
1029
|
-
|
|
1044
|
+
style: {
|
|
1045
|
+
color: "inherit",
|
|
1046
|
+
backgroundColor: "primary",
|
|
1047
|
+
fontSize: "inherit",
|
|
1048
|
+
fontWeight: "normal",
|
|
1049
|
+
height: "auto",
|
|
1050
|
+
padding: "inherit",
|
|
1051
|
+
},
|
|
1030
1052
|
},
|
|
1031
1053
|
dependencies: {
|
|
1032
1054
|
logic: "AND",
|