summaryrefslogtreecommitdiffhomepage
path: root/packages/sdk/js
diff options
context:
space:
mode:
authoropencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com>2026-03-25 14:48:44 +0000
committeropencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com>2026-03-25 14:48:44 +0000
commit971383661a5eb1bef1a9348f2db3960449a422b4 (patch)
treeb9d812ca227003e7ab8223ead0d3356d77f5964d /packages/sdk/js
parentb0017bf1b96ef14fc1ecf91c0b9c4b18e2dfea71 (diff)
downloadopencode-971383661a5eb1bef1a9348f2db3960449a422b4.tar.gz
opencode-971383661a5eb1bef1a9348f2db3960449a422b4.zip
chore: generate
Diffstat (limited to 'packages/sdk/js')
-rw-r--r--packages/sdk/js/src/v2/gen/types.gen.ts36
1 files changed, 18 insertions, 18 deletions
diff --git a/packages/sdk/js/src/v2/gen/types.gen.ts b/packages/sdk/js/src/v2/gen/types.gen.ts
index 43ce02921..fcdf4c29d 100644
--- a/packages/sdk/js/src/v2/gen/types.gen.ts
+++ b/packages/sdk/js/src/v2/gen/types.gen.ts
@@ -1068,36 +1068,36 @@ export type SyncEventSessionUpdated = {
data: {
sessionID: string
info: {
- id?: string
- slug?: string
- projectID?: string
- workspaceID?: string
- directory?: string
- parentID?: string
- summary?: {
+ id: string | null
+ slug: string | null
+ projectID: string | null
+ workspaceID: string | null
+ directory: string | null
+ parentID: string | null
+ summary: {
additions: number
deletions: number
files: number
diffs?: Array<FileDiff>
- }
+ } | null
share?: {
- url?: string
+ url: string | null
}
- title?: string
- version?: string
+ title: string | null
+ version: string | null
time?: {
- created?: number
- updated?: number
- compacting?: number
- archived?: number
+ created: number | null
+ updated: number | null
+ compacting: number | null
+ archived: number | null
}
- permission?: PermissionRuleset
- revert?: {
+ permission: PermissionRuleset | null
+ revert: {
messageID: string
partID?: string
snapshot?: string
diff?: string
- }
+ } | null
}
}
}