@opencode-ai/sdk 0.0.0-opentui-202510220116 → 0.0.0-opentui-202510222250
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 +5 -0
- package/package.json +1 -1
package/dist/gen/types.gen.d.ts
CHANGED
|
@@ -576,6 +576,10 @@ export type UserMessage = {
|
|
|
576
576
|
time: {
|
|
577
577
|
created: number;
|
|
578
578
|
};
|
|
579
|
+
summary?: {
|
|
580
|
+
diffs: Array<FileDiff>;
|
|
581
|
+
text: string;
|
|
582
|
+
};
|
|
579
583
|
};
|
|
580
584
|
export type ProviderAuthError = {
|
|
581
585
|
name: "ProviderAuthError";
|
|
@@ -613,6 +617,7 @@ export type AssistantMessage = {
|
|
|
613
617
|
error?: ProviderAuthError | UnknownError | MessageOutputLengthError | MessageAbortedError;
|
|
614
618
|
system: Array<string>;
|
|
615
619
|
finish?: string;
|
|
620
|
+
parentID: string;
|
|
616
621
|
modelID: string;
|
|
617
622
|
providerID: string;
|
|
618
623
|
mode: string;
|
package/package.json
CHANGED