@arbidocs/cli 0.3.166 → 0.3.168

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,12 +1,48 @@
1
1
  # Changelog
2
2
 
3
- ## v0.3.166
3
+ ## v0.3.168
4
+
5
+ [compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.167...HEAD)
6
+
7
+ ### 💅 Refactors
8
+
9
+ - **remote-control:** Consume the generated WS message type ([99b96028e](https://github.com/arbicity/ARBI-frontend/commit/99b96028e))
10
+
11
+ ### 🏡 Chore
12
+
13
+ - Sync OpenAPI schema — adds RemoteControlMessage WS type ([b37f4dafe](https://github.com/arbicity/ARBI-frontend/commit/b37f4dafe))
14
+
15
+ ## v0.3.167
4
16
 
5
17
  [compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.165...HEAD)
6
18
 
19
+ ### 🚀 Enhancements
20
+
21
+ - **settings:** Add Active Sessions dialog to view and end individual sessions ([c8ab8ec9e](https://github.com/arbicity/ARBI-frontend/commit/c8ab8ec9e))
22
+
7
23
  ### 🏡 Chore
8
24
 
9
- - Release v0.3.165 [skip ci] ([319e340d7](https://github.com/arbicity/ARBI-frontend/commit/319e340d7))
25
+ - **schema:** Sync client types for PATCH /v1/user/sessions/{session_id} ([a3b50f5db](https://github.com/arbicity/ARBI-frontend/commit/a3b50f5db))
26
+
27
+ ## v0.3.165
28
+
29
+ [compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.164...HEAD)
30
+
31
+ ### 🚀 Enhancements
32
+
33
+ - **tips:** Guided-cursor engine that walks the real UI for Show me ([f6d20fcb1](https://github.com/arbicity/ARBI-frontend/commit/f6d20fcb1))
34
+ - **documents:** In-input tri-state filter + field picker, sort-arrow inside ([3c9ae9fa5](https://github.com/arbicity/ARBI-frontend/commit/3c9ae9fa5))
35
+ - **workspace:** Welcome message, content-width header, safe icon, create→dashboard ([2f64143d2](https://github.com/arbicity/ARBI-frontend/commit/2f64143d2))
36
+ - **subscription:** Unify plan/usage on the UsageMeter widget ([697f7ae6a](https://github.com/arbicity/ARBI-frontend/commit/697f7ae6a))
37
+
38
+ ### 🩹 Fixes
39
+
40
+ - **session:** Land on the workspace picker + pin the sidebar on login ([5f60108f0](https://github.com/arbicity/ARBI-frontend/commit/5f60108f0))
41
+ - **chat:** Focus the message input from anywhere in its frame ([c583d2088](https://github.com/arbicity/ARBI-frontend/commit/c583d2088))
42
+
43
+ ### 🎨 Styles
44
+
45
+ - **react:** Soften placeholder text to text-muted-foreground/60 ([c3f59e2fa](https://github.com/arbicity/ARBI-frontend/commit/c3f59e2fa))
10
46
 
11
47
  ## v0.3.164
12
48
 
package/dist/index.js CHANGED
@@ -3694,7 +3694,7 @@ function getLatestVersion(skipCache = false) {
3694
3694
  }
3695
3695
  }
3696
3696
  function getCurrentVersion() {
3697
- return "0.3.166";
3697
+ return "0.3.168";
3698
3698
  }
3699
3699
  function readChangelog(fromVersion, toVersion) {
3700
3700
  try {
@@ -3747,17 +3747,17 @@ function showChangelog(fromVersion, toVersion) {
3747
3747
  async function checkForUpdates(autoUpdate) {
3748
3748
  try {
3749
3749
  const latest = getLatestVersion();
3750
- if (!latest || latest === "0.3.166") return;
3750
+ if (!latest || latest === "0.3.168") return;
3751
3751
  if (autoUpdate) {
3752
3752
  warn(`
3753
- Your arbi version is out of date (${"0.3.166"} \u2192 ${latest}). Updating...`);
3753
+ Your arbi version is out of date (${"0.3.168"} \u2192 ${latest}). Updating...`);
3754
3754
  child_process.execSync("npm install -g @arbidocs/cli@latest", { stdio: "inherit" });
3755
- showChangelog("0.3.166", latest);
3755
+ showChangelog("0.3.168", latest);
3756
3756
  console.log(`Updated to ${latest}.`);
3757
3757
  } else {
3758
3758
  warn(
3759
3759
  `
3760
- Your arbi version is out of date (${"0.3.166"} \u2192 ${latest}).
3760
+ Your arbi version is out of date (${"0.3.168"} \u2192 ${latest}).
3761
3761
  Run "arbi update" to upgrade, or "arbi update auto" to always stay up to date.`
3762
3762
  );
3763
3763
  }
@@ -3789,10 +3789,10 @@ function markNagShown(latest) {
3789
3789
  function hintUpdateOnError() {
3790
3790
  try {
3791
3791
  const cached = readCache();
3792
- if (!cached || cached.latest === "0.3.166") return;
3792
+ if (!cached || cached.latest === "0.3.168") return;
3793
3793
  if (!shouldShowNag(cached.latest)) return;
3794
3794
  warn(
3795
- `Your arbi version is out of date (${"0.3.166"} \u2192 ${cached.latest}). Run "arbi update".`
3795
+ `Your arbi version is out of date (${"0.3.168"} \u2192 ${cached.latest}). Run "arbi update".`
3796
3796
  );
3797
3797
  markNagShown(cached.latest);
3798
3798
  } catch {
@@ -10653,7 +10653,7 @@ console.info = (...args) => {
10653
10653
  _origInfo(...args);
10654
10654
  };
10655
10655
  var program = new commander.Command();
10656
- program.name("arbi").description("ARBI CLI \u2014 interact with ARBI from the terminal").version("0.3.166").showHelpAfterError(true).showSuggestionAfterError(true);
10656
+ program.name("arbi").description("ARBI CLI \u2014 interact with ARBI from the terminal").version("0.3.168").showHelpAfterError(true).showSuggestionAfterError(true);
10657
10657
  registerConfigCommand(program);
10658
10658
  registerLoginCommand(program);
10659
10659
  registerRegisterCommand(program);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arbidocs/cli",
3
- "version": "0.3.166",
3
+ "version": "0.3.168",
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.166",
25
- "@arbidocs/client": "0.3.166",
26
- "@arbidocs/tui": "0.3.166",
24
+ "@arbidocs/sdk": "0.3.168",
25
+ "@arbidocs/client": "0.3.168",
26
+ "@arbidocs/tui": "0.3.168",
27
27
  "@inquirer/prompts": "^8.5.2",
28
28
  "chalk": "^5.6.2",
29
29
  "commander": "^15.0.0"