clay-server 2.33.0-beta.1 → 2.33.0-beta.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.
|
@@ -496,7 +496,7 @@ export function addAuthRequiredMessage(msg) {
|
|
|
496
496
|
div.className = "auth-required-msg";
|
|
497
497
|
|
|
498
498
|
var vendor = msg.vendor || "claude";
|
|
499
|
-
var loginCmd = msg.loginCommand || (vendor === "codex" ? "codex login" : "claude login");
|
|
499
|
+
var loginCmd = msg.loginCommand || (vendor === "codex" ? "codex login --device-auth" : "claude login");
|
|
500
500
|
var vendorName = msg.text || "Claude Code is not logged in.";
|
|
501
501
|
|
|
502
502
|
var header = document.createElement("div");
|
package/lib/sdk-bridge.js
CHANGED
|
@@ -928,7 +928,7 @@ function createSDKBridge(opts) {
|
|
|
928
928
|
type: "auth_required",
|
|
929
929
|
text: vendorName + " is not logged in.",
|
|
930
930
|
vendor: session.vendor,
|
|
931
|
-
loginCommand: session.vendor === "codex" ? "codex login" : session.vendor + " login",
|
|
931
|
+
loginCommand: session.vendor === "codex" ? "codex login --device-auth" : session.vendor + " login",
|
|
932
932
|
linuxUser: authLinuxUser,
|
|
933
933
|
canAutoLogin: canAutoLogin,
|
|
934
934
|
});
|