@team-agent/installer 0.1.7 → 0.1.10

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.
@@ -196,7 +196,7 @@ def _check_runtime(runtime: Any, errors: list[str]) -> None:
196
196
  return
197
197
  if runtime.get("backend") not in {"tmux", "pty"}:
198
198
  errors.append("/runtime/backend: invalid backend")
199
- if runtime.get("display_backend") not in {"none", "tmux_attach", "iterm", "ghostty", "ghostty_window"}:
199
+ if runtime.get("display_backend") not in {"none", "tmux_attach", "iterm", "ghostty", "ghostty_window", "ghostty_workspace"}:
200
200
  errors.append("/runtime/display_backend: invalid display backend")
201
201
  if "dangerous_auto_approve" in runtime and not isinstance(runtime["dangerous_auto_approve"], bool):
202
202
  errors.append("/runtime/dangerous_auto_approve: must be a boolean")