feat: add optional messageID to ShellInput (#20657)

This commit is contained in:
Noam Bressler
2026-04-02 10:18:16 -05:00
committed by GitHub
parent 57a5236e71
commit 291a857fb8
3 changed files with 5 additions and 1 deletions
+2
View File
@@ -2231,6 +2231,7 @@ export class Session2 extends HeyApiClient {
sessionID: string
directory?: string
workspace?: string
messageID?: string
agent?: string
model?: {
providerID: string
@@ -2248,6 +2249,7 @@ export class Session2 extends HeyApiClient {
{ in: "path", key: "sessionID" },
{ in: "query", key: "directory" },
{ in: "query", key: "workspace" },
{ in: "body", key: "messageID" },
{ in: "body", key: "agent" },
{ in: "body", key: "model" },
{ in: "body", key: "command" },
+1
View File
@@ -3815,6 +3815,7 @@ export type SessionCommandResponse = SessionCommandResponses[keyof SessionComman
export type SessionShellData = {
body?: {
messageID?: string
agent: string
model?: {
providerID: string