@tryarcanist/cli 0.1.212 → 0.1.213
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.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1937,7 +1937,7 @@ var CODEX_SUBSCRIPTION_ENABLED_PATH = "/api/settings/codex-subscription/enabled"
|
|
|
1937
1937
|
function describeCredentialStatus(credential) {
|
|
1938
1938
|
if (!credential.isSet) return null;
|
|
1939
1939
|
if (credential.lastValidationStatus === "invalid") {
|
|
1940
|
-
return "Expired.
|
|
1940
|
+
return "Expired. Upload a fresh auth.json in Settings, or run `arcanist codex login` if the Codex CLI is installed. `arcanist codex use off` falls back to your OpenAI key.";
|
|
1941
1941
|
}
|
|
1942
1942
|
if (credential.lastValidationStatus === "validated") return "Verified with OpenAI.";
|
|
1943
1943
|
return "Saved, but not verified with OpenAI yet.";
|