summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorDax Raad <[email protected]>2025-10-23 16:33:00 -0400
committerDax Raad <[email protected]>2025-10-23 16:33:00 -0400
commit4bd7646ccbb94562760f263f2c465addbbe04eed (patch)
treef51fc007a5a14eb206081dbbc59d6b47786ca69d
parentcee7106054e36bc4cd7197e28fea953afd4d0e48 (diff)
downloadopencode-4bd7646ccbb94562760f263f2c465addbbe04eed.tar.gz
opencode-4bd7646ccbb94562760f263f2c465addbbe04eed.zip
regen sdk
-rw-r--r--packages/sdk/js/src/gen/types.gen.ts19
1 files changed, 11 insertions, 8 deletions
diff --git a/packages/sdk/js/src/gen/types.gen.ts b/packages/sdk/js/src/gen/types.gen.ts
index 46aa2475e..3dd785dd8 100644
--- a/packages/sdk/js/src/gen/types.gen.ts
+++ b/packages/sdk/js/src/gen/types.gen.ts
@@ -534,11 +534,22 @@ export type Path = {
directory: string
}
+export type FileDiff = {
+ file: string
+ before: string
+ after: string
+ additions: number
+ deletions: number
+}
+
export type Session = {
id: string
projectID: string
directory: string
parentID?: string
+ summary?: {
+ diffs: Array<FileDiff>
+ }
share?: {
url: string
}
@@ -583,14 +594,6 @@ export type Todo = {
id: string
}
-export type FileDiff = {
- file: string
- before: string
- after: string
- additions: number
- deletions: number
-}
-
export type UserMessage = {
id: string
sessionID: string