@boltic/cli 1.0.20 → 1.0.22

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 CHANGED
@@ -94,7 +94,7 @@ npm install -g @boltic/cli
94
94
  ### Verify Installation
95
95
 
96
96
  ```bash
97
- boltic --version
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 --version
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 --version
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 --version`)
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.20",
3
+ "version": "1.0.22",
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": {
@@ -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,
@@ -451,6 +452,7 @@ const file = {
451
452
  accept: "*/*",
452
453
  maxSize: 52428800,
453
454
  maxFiles: 1,
455
+ allowDynamic: false,
454
456
  preview: true,
455
457
  },
456
458
  validation: {
@@ -707,6 +709,7 @@ const date = {
707
709
  readOnly: false,
708
710
  views: undefined,
709
711
  timeSteps: { hours: 1, minutes: 5, seconds: 5 },
712
+ allowDynamic: false,
710
713
  },
711
714
  validation: {
712
715
  required: false,
@@ -940,6 +943,7 @@ const phone = {
940
943
  onlyCountries: [],
941
944
  preferredCountries: ["US", "GB", "CA"],
942
945
  continents: ["NA", "EU"],
946
+ allowDynamic: true,
943
947
  },
944
948
  validation: {
945
949
  required: false,