airborne-devkit 0.18.1 → 0.18.3

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 CHANGED
@@ -2,6 +2,24 @@
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_cli-v0.1.8 - 2026-01-06
6
+ #### Bug Fixes
7
+ - support Google OAuth in personal access token flow - (4737bd0) - Yash Rajput
8
+
9
+ - - -
10
+
11
+ ## v0.18.1 - 2026-01-06
12
+ #### Miscellaneous Chores
13
+ - **(version)** v0.18.1 [skip ci] - (8327914) - Airborne Bot
14
+
15
+ - - -
16
+
17
+ ## v0.18.0 - 2026-01-06
18
+ #### Miscellaneous Chores
19
+ - **(version)** v0.18.0 [skip ci] - (46c02c7) - Airborne Bot
20
+
21
+ - - -
22
+
5
23
  ## airborne_cli-v0.1.7 - 2026-01-05
6
24
  #### Bug Fixes
7
25
  - added .git to repository url - (4a35c5a) - Yaswanth
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "airborne-devkit",
3
- "version": "0.18.1",
3
+ "version": "0.18.3",
4
4
  "description": "Cli for Airborne",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
package/src/index.js CHANGED
@@ -26,7 +26,7 @@ const program = new Command();
26
26
  program
27
27
  .name("airborne-devkit")
28
28
  .description("Command-line interface for Airborne operations")
29
- .version("0.18.1");
29
+ .version("0.18.3");
30
30
 
31
31
  coreCli.commands.forEach((cmd, i) => {
32
32
  if (cmd._name !== "PostLogin") {
@@ -715,11 +715,7 @@ Troubleshooting:
715
715
 
716
716
  const result = await PostLoginAction(null, loginOptions);
717
717
  console.log("✅ Login successful");
718
- saveToken(
719
- result.user_token.access_token,
720
- result.user_token.refresh_token,
721
- directoryPath
722
- );
718
+ saveToken(result.access_token, result.refresh_token, directoryPath);
723
719
  process.exit(0);
724
720
  } catch (err) {
725
721
  console.error("❌ Login error:", err.message);