fix(core): use current workspace with /new; fix warping into local project (#25894)

This commit is contained in:
James Long 2026-05-05 16:39:37 -04:00 committed by GitHub
commit 12f3d1f505
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 28 additions and 7 deletions

View file

@ -1019,7 +1019,7 @@ export class Workspace extends HeyApiClient {
parameters?: {
directory?: string
workspace?: string
id?: string
id?: string | null
sessionID?: string
},
options?: Options<never, ThrowOnError>,

View file

@ -6656,7 +6656,7 @@ export type ExperimentalWorkspaceRemoveResponse =
export type ExperimentalWorkspaceWarpData = {
body?: {
id: string
id: string | null
sessionID: string
}
path?: never