feat(core): global form support (#35959)

This commit is contained in:
Aiden Cline 2026-07-08 17:25:34 -05:00 committed by GitHub
parent 79415f625a
commit b44a981eef
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
17 changed files with 493 additions and 93 deletions

View file

@ -10,7 +10,7 @@ function ok<T>(data: T) {
}
function form(id: string, sessionID: string): FormInfo {
return { id, sessionID, mode: "form", fields: [] }
return { id, sessionID, title: "Input requested", mode: "form", fields: [] }
}
function formCreated(info: FormInfo): V2Event {