@arbidocs/cli 0.3.22 → 0.3.23

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,21 @@
1
1
  # Changelog
2
2
 
3
+ ## v0.3.23
4
+
5
+ [compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.22...HEAD)
6
+
7
+ ### 🚀 Enhancements
8
+
9
+ - Auto-select all documents when creating a new chat ([#526](https://github.com/arbicity/ARBI-frontend/pull/526))
10
+
11
+ ### 🩹 Fixes
12
+
13
+ - Conversation tab switching improvements and new chat document selection ([#524](https://github.com/arbicity/ARBI-frontend/pull/524))
14
+ - Display detailed API error message when document export fails ([#519](https://github.com/arbicity/ARBI-frontend/pull/519))
15
+ - Include current user in smart search history "By" column ([#521](https://github.com/arbicity/ARBI-frontend/pull/521))
16
+ - Increase SDK integration test streaming timeout to 120s ([#528](https://github.com/arbicity/ARBI-frontend/pull/528))
17
+ - Increase CLI integration test streaming timeout to 120s ([#529](https://github.com/arbicity/ARBI-frontend/pull/529))
18
+
3
19
  ## v0.3.22
4
20
 
5
21
  [compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.21...HEAD)
package/dist/index.js CHANGED
@@ -3637,7 +3637,7 @@ function getLatestVersion(skipCache = false) {
3637
3637
  }
3638
3638
  }
3639
3639
  function getCurrentVersion() {
3640
- return "0.3.22";
3640
+ return "0.3.23";
3641
3641
  }
3642
3642
  function readChangelog(fromVersion, toVersion) {
3643
3643
  try {
@@ -3690,17 +3690,17 @@ function showChangelog(fromVersion, toVersion) {
3690
3690
  async function checkForUpdates(autoUpdate) {
3691
3691
  try {
3692
3692
  const latest = getLatestVersion();
3693
- if (!latest || latest === "0.3.22") return;
3693
+ if (!latest || latest === "0.3.23") return;
3694
3694
  if (autoUpdate) {
3695
3695
  warn(`
3696
- Your arbi version is out of date (${"0.3.22"} \u2192 ${latest}). Updating...`);
3696
+ Your arbi version is out of date (${"0.3.23"} \u2192 ${latest}). Updating...`);
3697
3697
  child_process.execSync("npm install -g @arbidocs/cli@latest", { stdio: "inherit" });
3698
- showChangelog("0.3.22", latest);
3698
+ showChangelog("0.3.23", latest);
3699
3699
  console.log(`Updated to ${latest}.`);
3700
3700
  } else {
3701
3701
  warn(
3702
3702
  `
3703
- Your arbi version is out of date (${"0.3.22"} \u2192 ${latest}).
3703
+ Your arbi version is out of date (${"0.3.23"} \u2192 ${latest}).
3704
3704
  Run "arbi update" to upgrade, or "arbi update auto" to always stay up to date.`
3705
3705
  );
3706
3706
  }
@@ -3710,9 +3710,9 @@ Run "arbi update" to upgrade, or "arbi update auto" to always stay up to date.`
3710
3710
  function hintUpdateOnError() {
3711
3711
  try {
3712
3712
  const cached = readCache();
3713
- if (cached && cached.latest !== "0.3.22") {
3713
+ if (cached && cached.latest !== "0.3.23") {
3714
3714
  warn(
3715
- `Your arbi version is out of date (${"0.3.22"} \u2192 ${cached.latest}). Run "arbi update".`
3715
+ `Your arbi version is out of date (${"0.3.23"} \u2192 ${cached.latest}). Run "arbi update".`
3716
3716
  );
3717
3717
  }
3718
3718
  } catch {
@@ -7031,7 +7031,7 @@ console.info = (...args) => {
7031
7031
  _origInfo(...args);
7032
7032
  };
7033
7033
  var program = new commander.Command();
7034
- program.name("arbi").description("ARBI CLI \u2014 interact with ARBI from the terminal").version("0.3.22");
7034
+ program.name("arbi").description("ARBI CLI \u2014 interact with ARBI from the terminal").version("0.3.23");
7035
7035
  registerConfigCommand(program);
7036
7036
  registerLoginCommand(program);
7037
7037
  registerRegisterCommand(program);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arbidocs/cli",
3
- "version": "0.3.22",
3
+ "version": "0.3.23",
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": {
@@ -20,9 +20,9 @@
20
20
  "preuninstall": "node scripts/preuninstall.js"
21
21
  },
22
22
  "dependencies": {
23
- "@arbidocs/sdk": "0.3.22",
24
- "@arbidocs/client": "0.3.22",
25
- "@arbidocs/tui": "0.3.22",
23
+ "@arbidocs/sdk": "0.3.23",
24
+ "@arbidocs/client": "0.3.23",
25
+ "@arbidocs/tui": "0.3.23",
26
26
  "@inquirer/prompts": "^8.2.0",
27
27
  "chalk": "^5.6.2",
28
28
  "commander": "^13.1.0"