release: v0.10.2

This commit is contained in:
opencode
2025-09-19 15:18:11 +00:00
parent 2460108223
commit f57c3f7cf6
13 changed files with 28 additions and 28 deletions

View File

@@ -1,7 +1,7 @@
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@opencode-ai/sdk",
"version": "0.10.1",
"version": "0.10.2",
"type": "module",
"scripts": {
"typecheck": "tsc --noEmit",

View File

@@ -1105,13 +1105,6 @@ export type EventSessionError = {
}
}
export type EventServerConnected = {
type: "server.connected"
properties: {
[key: string]: unknown
}
}
export type EventFileWatcherUpdated = {
type: "file.watcher.updated"
properties: {
@@ -1120,6 +1113,13 @@ export type EventFileWatcherUpdated = {
}
}
export type EventServerConnected = {
type: "server.connected"
properties: {
[key: string]: unknown
}
}
export type EventIdeInstalled = {
type: "ide.installed"
properties: {
@@ -1142,8 +1142,8 @@ export type Event =
| EventSessionUpdated
| EventSessionDeleted
| EventSessionError
| EventServerConnected
| EventFileWatcherUpdated
| EventServerConnected
| EventIdeInstalled
export type ProjectListData = {