airborne-core-cli 0.11.0 → 0.12.0
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/CHANGELOG.md +12 -0
- package/index.js +5 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.
|
|
3
3
|
|
|
4
4
|
- - -
|
|
5
|
+
## airborne_core_cli-v0.1.2 - 2025-10-28
|
|
6
|
+
#### Bug Fixes
|
|
7
|
+
- make CLI name dynamic in configure command - (13ab4b7) - Yash Rajput
|
|
8
|
+
|
|
9
|
+
- - -
|
|
10
|
+
|
|
11
|
+
## v0.11.1 - 2025-10-28
|
|
12
|
+
#### Miscellaneous Chores
|
|
13
|
+
- **(version)** v0.11.1 [skip ci] - (210c3f8) - Airborne Bot
|
|
14
|
+
|
|
15
|
+
- - -
|
|
16
|
+
|
|
5
17
|
## airborne_core_cli-v0.1.1 - 2025-10-17
|
|
6
18
|
#### Bug Fixes
|
|
7
19
|
- npm releases - (6d08891) - Yash Rajput
|
package/index.js
CHANGED
|
@@ -117,7 +117,7 @@ function printColoredJSON(obj, indent = 2) {
|
|
|
117
117
|
const program = new Command()
|
|
118
118
|
.name("airborne-core-cli")
|
|
119
119
|
.description("Command-line interface for Airborne OTA operations")
|
|
120
|
-
.version("0.
|
|
120
|
+
.version("0.12.0");
|
|
121
121
|
|
|
122
122
|
program
|
|
123
123
|
.command("CreateApplication")
|
|
@@ -1607,7 +1607,7 @@ program
|
|
|
1607
1607
|
It is typically the first command you should run before using any other commands.
|
|
1608
1608
|
|
|
1609
1609
|
Usage:
|
|
1610
|
-
$
|
|
1610
|
+
$ airborne-core-cli configure --base-url <api-url>
|
|
1611
1611
|
|
|
1612
1612
|
Parameters:
|
|
1613
1613
|
-u, --base-url <url> (required)
|
|
@@ -1617,13 +1617,13 @@ program
|
|
|
1617
1617
|
Examples:
|
|
1618
1618
|
|
|
1619
1619
|
1. Setting the base URL for production:
|
|
1620
|
-
$
|
|
1620
|
+
$ airborne-core-cli configure --base-url https://api.example.com
|
|
1621
1621
|
|
|
1622
1622
|
2. Setting the base URL for local development:
|
|
1623
|
-
$
|
|
1623
|
+
$ airborne-core-cli configure --base-url http://localhost:3000
|
|
1624
1624
|
|
|
1625
1625
|
3. Overriding an existing configuration:
|
|
1626
|
-
$
|
|
1626
|
+
$ airborne-core-cli configure -u https://staging.example.com
|
|
1627
1627
|
|
|
1628
1628
|
`)
|
|
1629
1629
|
.usage('--base-url <url>')
|