Merge branch 'main' into johnnyamancio/kilo-opencode-v1.2.25

This commit is contained in:
Johnny Amancio
2026-04-06 13:45:25 +02:00
228 changed files with 11007 additions and 815 deletions
+5 -1
View File
@@ -29,7 +29,11 @@ export const SessionTable = sqliteTable(
summary_additions: integer(),
summary_deletions: integer(),
summary_files: integer(),
summary_diffs: text({ mode: "json" }).$type<Snapshot.FileDiff[]>(),
// kilocode_change start - lightweight diff type (no file contents)
summary_diffs: text({ mode: "json" }).$type<
{ file: string; additions: number; deletions: number; status?: "added" | "deleted" | "modified" }[]
>(),
// kilocode_change end
revert: text({ mode: "json" }).$type<{ messageID: MessageID; partID?: PartID; snapshot?: string; diff?: string }>(),
permission: text({ mode: "json" }).$type<PermissionNext.Ruleset>(),
...Timestamps,