clay-server 2.11.0-beta.26 → 2.11.0-beta.28

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/lib/daemon.js CHANGED
@@ -734,6 +734,7 @@ var relay = createServer({
734
734
  slug: slug,
735
735
  visibility: config.projects[i].visibility || "public",
736
736
  allowedUsers: config.projects[i].allowedUsers || [],
737
+ ownerId: config.projects[i].ownerId || null,
737
738
  };
738
739
  }
739
740
  }
package/lib/public/app.js CHANGED
@@ -2525,10 +2525,9 @@ import { initAdmin, checkAdminAccess } from './modules/admin.js';
2525
2525
  addToMessages(div);
2526
2526
  scrollToBottom();
2527
2527
 
2528
- // Disable input on this session since it cannot be used
2529
- inputEl.disabled = true;
2530
- inputEl.placeholder = "Login required. Start a new session after logging in.";
2531
- sendBtn.disabled = true;
2528
+ // Hide input area on this session since it cannot be used
2529
+ var inputArea = document.getElementById("input-area");
2530
+ if (inputArea) inputArea.classList.add("hidden");
2532
2531
 
2533
2532
  // Only auto-open terminal on live events, not history replay
2534
2533
  if (!replayingHistory) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clay-server",
3
- "version": "2.11.0-beta.26",
3
+ "version": "2.11.0-beta.28",
4
4
  "description": "Web UI for Claude Code. Any device. Push notifications.",
5
5
  "bin": {
6
6
  "clay-server": "./bin/cli.js",