@arbidocs/cli 0.3.62 → 0.3.63

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
@@ -1,5 +1,18 @@
1
1
  # Changelog
2
2
 
3
+ ## v0.3.63
4
+
5
+ [compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.62...HEAD)
6
+
7
+ ### 🚀 Enhancements
8
+
9
+ - **conversation:** Clean ARBI Phase 3 PR1 — inline drafted-document card ([#710](https://github.com/arbicity/ARBI-frontend/pull/710))
10
+ - Add MCP OAuth consent page (/mcp-connect) ([#733](https://github.com/arbicity/ARBI-frontend/pull/733))
11
+
12
+ ### 🩹 Fixes
13
+
14
+ - Regenerate package-lock.json for npm 11 / node:26-alpine ([#734](https://github.com/arbicity/ARBI-frontend/pull/734))
15
+
3
16
  ## v0.3.62
4
17
 
5
18
  [compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.60...HEAD)
package/dist/index.js CHANGED
@@ -3641,7 +3641,7 @@ function getLatestVersion(skipCache = false) {
3641
3641
  }
3642
3642
  }
3643
3643
  function getCurrentVersion() {
3644
- return "0.3.62";
3644
+ return "0.3.63";
3645
3645
  }
3646
3646
  function readChangelog(fromVersion, toVersion) {
3647
3647
  try {
@@ -3694,17 +3694,17 @@ function showChangelog(fromVersion, toVersion) {
3694
3694
  async function checkForUpdates(autoUpdate) {
3695
3695
  try {
3696
3696
  const latest = getLatestVersion();
3697
- if (!latest || latest === "0.3.62") return;
3697
+ if (!latest || latest === "0.3.63") return;
3698
3698
  if (autoUpdate) {
3699
3699
  warn(`
3700
- Your arbi version is out of date (${"0.3.62"} \u2192 ${latest}). Updating...`);
3700
+ Your arbi version is out of date (${"0.3.63"} \u2192 ${latest}). Updating...`);
3701
3701
  child_process.execSync("npm install -g @arbidocs/cli@latest", { stdio: "inherit" });
3702
- showChangelog("0.3.62", latest);
3702
+ showChangelog("0.3.63", latest);
3703
3703
  console.log(`Updated to ${latest}.`);
3704
3704
  } else {
3705
3705
  warn(
3706
3706
  `
3707
- Your arbi version is out of date (${"0.3.62"} \u2192 ${latest}).
3707
+ Your arbi version is out of date (${"0.3.63"} \u2192 ${latest}).
3708
3708
  Run "arbi update" to upgrade, or "arbi update auto" to always stay up to date.`
3709
3709
  );
3710
3710
  }
@@ -3714,9 +3714,9 @@ Run "arbi update" to upgrade, or "arbi update auto" to always stay up to date.`
3714
3714
  function hintUpdateOnError() {
3715
3715
  try {
3716
3716
  const cached = readCache();
3717
- if (cached && cached.latest !== "0.3.62") {
3717
+ if (cached && cached.latest !== "0.3.63") {
3718
3718
  warn(
3719
- `Your arbi version is out of date (${"0.3.62"} \u2192 ${cached.latest}). Run "arbi update".`
3719
+ `Your arbi version is out of date (${"0.3.63"} \u2192 ${cached.latest}). Run "arbi update".`
3720
3720
  );
3721
3721
  }
3722
3722
  } catch {
@@ -8753,7 +8753,7 @@ console.info = (...args) => {
8753
8753
  _origInfo(...args);
8754
8754
  };
8755
8755
  var program = new commander.Command();
8756
- program.name("arbi").description("ARBI CLI \u2014 interact with ARBI from the terminal").version("0.3.62");
8756
+ program.name("arbi").description("ARBI CLI \u2014 interact with ARBI from the terminal").version("0.3.63");
8757
8757
  registerConfigCommand(program);
8758
8758
  registerLoginCommand(program);
8759
8759
  registerRegisterCommand(program);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arbidocs/cli",
3
- "version": "0.3.62",
3
+ "version": "0.3.63",
4
4
  "description": "CLI tool for interacting with ARBI — login, manage workspaces, upload documents, query the RAG assistant",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -21,9 +21,9 @@
21
21
  "preuninstall": "node scripts/preuninstall.js"
22
22
  },
23
23
  "dependencies": {
24
- "@arbidocs/sdk": "0.3.62",
25
- "@arbidocs/client": "0.3.62",
26
- "@arbidocs/tui": "0.3.62",
24
+ "@arbidocs/sdk": "0.3.63",
25
+ "@arbidocs/client": "0.3.63",
26
+ "@arbidocs/tui": "0.3.63",
27
27
  "@inquirer/prompts": "^8.4.3",
28
28
  "chalk": "^5.6.2",
29
29
  "commander": "^14.0.3"