diff options
| author | Ravi Kumar <[email protected]> | 2025-11-23 03:56:46 +0530 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-11-22 16:26:46 -0600 |
| commit | b92e8510f961c0342c0d27d5324afb105c999c0f (patch) | |
| tree | 3cd7761b716b27099ef27399c819e189c60c335c /packages/sdk/js/src | |
| parent | 1b692ec7ebecd21cdca8b5b83b4b6e2ac79fb27e (diff) | |
| download | opencode-b92e8510f961c0342c0d27d5324afb105c999c0f.tar.gz opencode-b92e8510f961c0342c0d27d5324afb105c999c0f.zip | |
fix: auto upgrade toast message (#4625)
Co-authored-by: Dax Raad <[email protected]>
Co-authored-by: opencode <[email protected]>
Diffstat (limited to 'packages/sdk/js/src')
| -rw-r--r-- | packages/sdk/js/src/gen/types.gen.ts | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/packages/sdk/js/src/gen/types.gen.ts b/packages/sdk/js/src/gen/types.gen.ts index 4c1cb33fb..e2e611db1 100644 --- a/packages/sdk/js/src/gen/types.gen.ts +++ b/packages/sdk/js/src/gen/types.gen.ts @@ -7,6 +7,13 @@ export type EventInstallationUpdated = { } } +export type EventInstallationUpdateAvailable = { + type: "installation.update-available" + properties: { + version: string + } +} + export type EventLspClientDiagnostics = { type: "lsp.client.diagnostics" properties: { @@ -642,6 +649,7 @@ export type EventFileWatcherUpdated = { export type Event = | EventInstallationUpdated + | EventInstallationUpdateAvailable | EventLspClientDiagnostics | EventLspUpdated | EventMessageUpdated |
