@opencode-ai/sdk 0.0.0-opentui-202510211538 → 0.0.0-opentui-202510211918
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 +4 -2
- package/package.json +1 -1
package/dist/gen/types.gen.d.ts
CHANGED
|
@@ -564,8 +564,10 @@ export type Todo = {
|
|
|
564
564
|
};
|
|
565
565
|
export type FileDiff = {
|
|
566
566
|
file: string;
|
|
567
|
-
|
|
568
|
-
|
|
567
|
+
before: string;
|
|
568
|
+
after: string;
|
|
569
|
+
additions: number;
|
|
570
|
+
deletions: number;
|
|
569
571
|
};
|
|
570
572
|
export type UserMessage = {
|
|
571
573
|
id: string;
|
package/package.json
CHANGED