@arbidocs/sdk 0.3.39 → 0.3.40
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/dist/index.cjs +2 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -3655,7 +3655,8 @@ var FileConfigStore = class {
|
|
|
3655
3655
|
requireCredentials() {
|
|
3656
3656
|
const creds = this.getCredentials();
|
|
3657
3657
|
if (!creds) {
|
|
3658
|
-
|
|
3658
|
+
const hint = process.env.SUPPORT_API_KEY ? "Not logged in. Run: arbi agent-create --email agent-...@<domain> (or: arbi login)" : "Not logged in. Run: arbi login (or arbi quickstart)";
|
|
3659
|
+
throw new ArbiError(hint);
|
|
3659
3660
|
}
|
|
3660
3661
|
return creds;
|
|
3661
3662
|
}
|