@opencode-ai/sdk 0.0.0-opentui-202510310637 → 0.0.0-opentui-202510311539
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 +8 -0
- package/package.json +1 -1
package/dist/gen/types.gen.d.ts
CHANGED
|
@@ -970,6 +970,10 @@ export type EventTuiToastShow = {
|
|
|
970
970
|
title?: string;
|
|
971
971
|
message: string;
|
|
972
972
|
variant: "info" | "success" | "warning" | "error";
|
|
973
|
+
/**
|
|
974
|
+
* Duration in milliseconds
|
|
975
|
+
*/
|
|
976
|
+
duration?: number;
|
|
973
977
|
};
|
|
974
978
|
};
|
|
975
979
|
export type OAuth = {
|
|
@@ -2289,6 +2293,10 @@ export type TuiShowToastData = {
|
|
|
2289
2293
|
title?: string;
|
|
2290
2294
|
message: string;
|
|
2291
2295
|
variant: "info" | "success" | "warning" | "error";
|
|
2296
|
+
/**
|
|
2297
|
+
* Duration in milliseconds
|
|
2298
|
+
*/
|
|
2299
|
+
duration?: number;
|
|
2292
2300
|
};
|
|
2293
2301
|
path?: never;
|
|
2294
2302
|
query?: {
|
package/package.json
CHANGED