@opencode-ai/sdk 1.0.24 → 1.0.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/gen/types.gen.d.ts +8 -8
- package/package.json +1 -1
package/dist/gen/types.gen.d.ts
CHANGED
|
@@ -1122,13 +1122,6 @@ export type EventFileEdited = {
|
|
|
1122
1122
|
file: string;
|
|
1123
1123
|
};
|
|
1124
1124
|
};
|
|
1125
|
-
export type EventFileWatcherUpdated = {
|
|
1126
|
-
type: "file.watcher.updated";
|
|
1127
|
-
properties: {
|
|
1128
|
-
file: string;
|
|
1129
|
-
event: "add" | "change" | "unlink";
|
|
1130
|
-
};
|
|
1131
|
-
};
|
|
1132
1125
|
export type EventTodoUpdated = {
|
|
1133
1126
|
type: "todo.updated";
|
|
1134
1127
|
properties: {
|
|
@@ -1182,7 +1175,14 @@ export type EventServerConnected = {
|
|
|
1182
1175
|
[key: string]: unknown;
|
|
1183
1176
|
};
|
|
1184
1177
|
};
|
|
1185
|
-
export type
|
|
1178
|
+
export type EventFileWatcherUpdated = {
|
|
1179
|
+
type: "file.watcher.updated";
|
|
1180
|
+
properties: {
|
|
1181
|
+
file: string;
|
|
1182
|
+
event: "add" | "change" | "unlink";
|
|
1183
|
+
};
|
|
1184
|
+
};
|
|
1185
|
+
export type Event = EventInstallationUpdated | EventLspClientDiagnostics | EventLspUpdated | EventMessageUpdated | EventMessageRemoved | EventMessagePartUpdated | EventMessagePartRemoved | EventSessionCompacted | EventPermissionUpdated | EventPermissionReplied | EventFileEdited | EventTodoUpdated | EventCommandExecuted | EventSessionIdle | EventSessionCreated | EventSessionUpdated | EventSessionDeleted | EventSessionError | EventTuiPromptAppend | EventTuiCommandExecute | EventTuiToastShow | EventServerConnected | EventFileWatcherUpdated;
|
|
1186
1186
|
export type ProjectListData = {
|
|
1187
1187
|
body?: never;
|
|
1188
1188
|
path?: never;
|