@arbidocs/sdk 0.3.39 → 0.3.41
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.js
CHANGED
|
@@ -3646,7 +3646,8 @@ var FileConfigStore = class {
|
|
|
3646
3646
|
requireCredentials() {
|
|
3647
3647
|
const creds = this.getCredentials();
|
|
3648
3648
|
if (!creds) {
|
|
3649
|
-
|
|
3649
|
+
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)";
|
|
3650
|
+
throw new ArbiError(hint);
|
|
3650
3651
|
}
|
|
3651
3652
|
return creds;
|
|
3652
3653
|
}
|