@arbidocs/cli 0.3.15 → 0.3.16
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/dist/index.js +8 -8
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v0.3.16
|
|
4
|
+
|
|
5
|
+
[compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.15...HEAD)
|
|
6
|
+
|
|
7
|
+
### 🚀 Enhancements
|
|
8
|
+
|
|
9
|
+
- Handle arbi.message_queued SSE event in SDK and UI ([b5495225](https://github.com/arbicity/ARBI-frontend/commit/b5495225))
|
|
10
|
+
|
|
11
|
+
### 🏡 Chore
|
|
12
|
+
|
|
13
|
+
- Update OpenAPI schema with MessageQueuedEvent ([4b36ac65](https://github.com/arbicity/ARBI-frontend/commit/4b36ac65))
|
|
14
|
+
|
|
3
15
|
## v0.3.15
|
|
4
16
|
|
|
5
17
|
[compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.14...HEAD)
|
package/dist/index.js
CHANGED
|
@@ -3537,7 +3537,7 @@ function getLatestVersion(skipCache = false) {
|
|
|
3537
3537
|
}
|
|
3538
3538
|
}
|
|
3539
3539
|
function getCurrentVersion() {
|
|
3540
|
-
return "0.3.
|
|
3540
|
+
return "0.3.16";
|
|
3541
3541
|
}
|
|
3542
3542
|
function readChangelog(fromVersion, toVersion) {
|
|
3543
3543
|
try {
|
|
@@ -3590,17 +3590,17 @@ function showChangelog(fromVersion, toVersion) {
|
|
|
3590
3590
|
async function checkForUpdates(autoUpdate) {
|
|
3591
3591
|
try {
|
|
3592
3592
|
const latest = getLatestVersion();
|
|
3593
|
-
if (!latest || latest === "0.3.
|
|
3593
|
+
if (!latest || latest === "0.3.16") return;
|
|
3594
3594
|
if (autoUpdate) {
|
|
3595
3595
|
warn(`
|
|
3596
|
-
Your arbi version is out of date (${"0.3.
|
|
3596
|
+
Your arbi version is out of date (${"0.3.16"} \u2192 ${latest}). Updating...`);
|
|
3597
3597
|
child_process.execSync("npm install -g @arbidocs/cli@latest", { stdio: "inherit" });
|
|
3598
|
-
showChangelog("0.3.
|
|
3598
|
+
showChangelog("0.3.16", latest);
|
|
3599
3599
|
console.log(`Updated to ${latest}.`);
|
|
3600
3600
|
} else {
|
|
3601
3601
|
warn(
|
|
3602
3602
|
`
|
|
3603
|
-
Your arbi version is out of date (${"0.3.
|
|
3603
|
+
Your arbi version is out of date (${"0.3.16"} \u2192 ${latest}).
|
|
3604
3604
|
Run "arbi update" to upgrade, or "arbi update auto" to always stay up to date.`
|
|
3605
3605
|
);
|
|
3606
3606
|
}
|
|
@@ -3610,9 +3610,9 @@ Run "arbi update" to upgrade, or "arbi update auto" to always stay up to date.`
|
|
|
3610
3610
|
function hintUpdateOnError() {
|
|
3611
3611
|
try {
|
|
3612
3612
|
const cached = readCache();
|
|
3613
|
-
if (cached && cached.latest !== "0.3.
|
|
3613
|
+
if (cached && cached.latest !== "0.3.16") {
|
|
3614
3614
|
warn(
|
|
3615
|
-
`Your arbi version is out of date (${"0.3.
|
|
3615
|
+
`Your arbi version is out of date (${"0.3.16"} \u2192 ${cached.latest}). Run "arbi update".`
|
|
3616
3616
|
);
|
|
3617
3617
|
}
|
|
3618
3618
|
} catch {
|
|
@@ -6062,7 +6062,7 @@ console.info = (...args) => {
|
|
|
6062
6062
|
_origInfo(...args);
|
|
6063
6063
|
};
|
|
6064
6064
|
var program = new commander.Command();
|
|
6065
|
-
program.name("arbi").description("ARBI CLI \u2014 interact with ARBI from the terminal").version("0.3.
|
|
6065
|
+
program.name("arbi").description("ARBI CLI \u2014 interact with ARBI from the terminal").version("0.3.16");
|
|
6066
6066
|
registerConfigCommand(program);
|
|
6067
6067
|
registerLoginCommand(program);
|
|
6068
6068
|
registerRegisterCommand(program);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arbidocs/cli",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.16",
|
|
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": {
|
|
@@ -16,9 +16,9 @@
|
|
|
16
16
|
"typecheck": "tsc --noEmit"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@arbidocs/sdk": "0.3.
|
|
20
|
-
"@arbidocs/client": "0.3.
|
|
21
|
-
"@arbidocs/tui": "0.3.
|
|
19
|
+
"@arbidocs/sdk": "0.3.16",
|
|
20
|
+
"@arbidocs/client": "0.3.16",
|
|
21
|
+
"@arbidocs/tui": "0.3.16",
|
|
22
22
|
"@inquirer/prompts": "^8.2.0",
|
|
23
23
|
"chalk": "^5.6.2",
|
|
24
24
|
"commander": "^13.1.0"
|