aiguild 1.0.1 → 1.0.2
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/bin/aiguild.mjs +1 -1
- package/package.json +1 -1
- package/src/commands/auth.mjs +1 -1
package/bin/aiguild.mjs
CHANGED
|
@@ -8,7 +8,7 @@ import { registerList } from "../src/commands/list.mjs";
|
|
|
8
8
|
import { registerUpdate } from "../src/commands/update.mjs";
|
|
9
9
|
import { loadConfig } from "../src/config.mjs";
|
|
10
10
|
|
|
11
|
-
const pkg = { version: "1.0.
|
|
11
|
+
const pkg = { version: "1.0.2" };
|
|
12
12
|
|
|
13
13
|
const program = new Command();
|
|
14
14
|
|
package/package.json
CHANGED
package/src/commands/auth.mjs
CHANGED
|
@@ -66,7 +66,7 @@ export function registerAuth(program) {
|
|
|
66
66
|
|
|
67
67
|
auth
|
|
68
68
|
.command("set-url <url>")
|
|
69
|
-
.description("Override the AIGuild server URL (default: https://aiguild.
|
|
69
|
+
.description("Override the AIGuild server URL (default: https://api.aiguild.dev)")
|
|
70
70
|
.action((url) => {
|
|
71
71
|
saveConfig({ apiUrl: url });
|
|
72
72
|
console.log(`\x1b[32m✔\x1b[0m API URL set to \x1b[36m${url}\x1b[0m`);
|