summaryrefslogtreecommitdiffhomepage
path: root/packages/sdk
diff options
context:
space:
mode:
authorKit Langton <[email protected]>2026-03-31 19:14:32 -0400
committerGitHub <[email protected]>2026-03-31 19:14:32 -0400
commit0c03a3ee10f6462a25f67fc847188b74ae76b42b (patch)
treefeee9d908a199fdaaf8955423269ec58b89a99d4 /packages/sdk
parent53330a518f44ca372e9706e7261d967e18ef2cda (diff)
downloadopencode-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.ts30
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