File tree Expand file tree Collapse file tree 1 file changed +14
-14
lines changed
packages/sdk/js/src/v2/gen Expand file tree Collapse file tree 1 file changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -557,6 +557,19 @@ export type EventCommandExecuted = {
557557 }
558558}
559559
560+ export type EventTuiToastShow = {
561+ type : "tui.toast.show"
562+ properties : {
563+ title ?: string
564+ message : string
565+ variant : "info" | "success" | "warning" | "error"
566+ /**
567+ * Duration in milliseconds
568+ */
569+ duration ?: number
570+ }
571+ }
572+
560573export type Session = {
561574 id : string
562575 projectID : string
@@ -668,19 +681,6 @@ export type EventTuiCommandExecute = {
668681 }
669682}
670683
671- export type EventTuiToastShow = {
672- type : "tui.toast.show"
673- properties : {
674- title ?: string
675- message : string
676- variant : "info" | "success" | "warning" | "error"
677- /**
678- * Duration in milliseconds
679- */
680- duration ?: number
681- }
682- }
683-
684684export type Pty = {
685685 id : string
686686 title : string
@@ -753,6 +753,7 @@ export type Event =
753753 | EventSessionIdle
754754 | EventSessionCompacted
755755 | EventCommandExecuted
756+ | EventTuiToastShow
756757 | EventSessionCreated
757758 | EventSessionUpdated
758759 | EventSessionDeleted
@@ -762,7 +763,6 @@ export type Event =
762763 | EventVcsBranchUpdated
763764 | EventTuiPromptAppend
764765 | EventTuiCommandExecute
765- | EventTuiToastShow
766766 | EventPtyCreated
767767 | EventPtyUpdated
768768 | EventPtyExited
You can’t perform that action at this time.
0 commit comments