feat(app): complete playable branch sessions
verify / verify (push) Has been cancelled

This commit is contained in:
Codex
2026-07-28 04:42:40 -04:00
parent 449515fcfe
commit 1f935a3206
26 changed files with 3472 additions and 67 deletions
@@ -0,0 +1,21 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "RenameBranchRequest",
"type": "object",
"properties": {
"branchId": {
"type": "string"
},
"name": {
"type": "string"
},
"storyId": {
"type": "string"
}
},
"required": [
"storyId",
"branchId",
"name"
]
}