Dax Raad 4 luni în urmă
părinte
comite
4bd7646ccb
1 a modificat fișierele cu 11 adăugiri și 8 ștergeri
  1. 11 8
      packages/sdk/js/src/gen/types.gen.ts

+ 11 - 8
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