diff options
| author | Kit Langton <[email protected]> | 2026-03-31 19:14:32 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-03-31 19:14:32 -0400 |
| commit | 0c03a3ee10f6462a25f67fc847188b74ae76b42b (patch) | |
| tree | feee9d908a199fdaaf8955423269ec58b89a99d4 /packages/sdk | |
| parent | 53330a518f44ca372e9706e7261d967e18ef2cda (diff) | |
| download | opencode-0c03a3ee10f6462a25f67fc847188b74ae76b42b.tar.gz opencode-0c03a3ee10f6462a25f67fc847188b74ae76b42b.zip | |
test: migrate prompt tests to HTTP mock LLM server (#20304)
Diffstat (limited to 'packages/sdk')
| -rw-r--r-- | packages/sdk/js/src/v2/gen/types.gen.ts | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/packages/sdk/js/src/v2/gen/types.gen.ts b/packages/sdk/js/src/v2/gen/types.gen.ts index 318b8907a..290c6fd5e 100644 --- a/packages/sdk/js/src/v2/gen/types.gen.ts +++ b/packages/sdk/js/src/v2/gen/types.gen.ts @@ -4,20 +4,6 @@ export type ClientOptions = { baseUrl: `${string}://${string}` | (string & {}) } -export type EventInstallationUpdated = { - type: "installation.updated" - properties: { - version: string - } -} - -export type EventInstallationUpdateAvailable = { - type: "installation.update-available" - properties: { - version: string - } -} - export type Project = { id: string worktree: string @@ -47,6 +33,20 @@ export type EventProjectUpdated = { properties: Project } +export type EventInstallationUpdated = { + type: "installation.updated" + properties: { + version: string + } +} + +export type EventInstallationUpdateAvailable = { + type: "installation.update-available" + properties: { + version: string + } +} + export type EventServerInstanceDisposed = { type: "server.instance.disposed" properties: { @@ -964,9 +964,9 @@ export type EventSessionDeleted = { } export type Event = + | EventProjectUpdated | EventInstallationUpdated | EventInstallationUpdateAvailable - | EventProjectUpdated | EventServerInstanceDisposed | EventServerConnected | EventGlobalDisposed |
