Update app-server schema fixtures for realtime mode

This commit is contained in:
Ahmed Ibrahim
2026-02-26 20:43:03 -08:00
parent faeec29511
commit 1cd8d5b717
5 changed files with 5 additions and 1 deletions

View File

@@ -885,6 +885,7 @@
"description": "Initial collaboration mode to use when the TUI starts.",
"enum": [
"plan",
"realtime",
"default"
],
"type": "string"

View File

@@ -3817,6 +3817,7 @@
"description": "Initial collaboration mode to use when the TUI starts.",
"enum": [
"plan",
"realtime",
"default"
],
"type": "string"

View File

@@ -10219,6 +10219,7 @@
"description": "Initial collaboration mode to use when the TUI starts.",
"enum": [
"plan",
"realtime",
"default"
],
"type": "string"

View File

@@ -86,6 +86,7 @@
"description": "Initial collaboration mode to use when the TUI starts.",
"enum": [
"plan",
"realtime",
"default"
],
"type": "string"

View File

@@ -5,4 +5,4 @@
/**
* Initial collaboration mode to use when the TUI starts.
*/
export type ModeKind = "plan" | "default";
export type ModeKind = "plan" | "realtime" | "default";