File tree Expand file tree Collapse file tree 1 file changed +0
-13
lines changed
site/src/xServices/workspace Expand file tree Collapse file tree 1 file changed +0
-13
lines changed Original file line number Diff line number Diff line change @@ -47,9 +47,6 @@ export type WorkspaceEvent =
47
47
| {
48
48
type : "REFRESH_TIMELINE" ;
49
49
}
50
- | { type : "EVENT_SOURCE_ERROR" ; error : unknown }
51
- | { type : "INCREASE_DEADLINE" ; hours : number }
52
- | { type : "DECREASE_DEADLINE" ; hours : number }
53
50
| { type : "RETRY_BUILD" }
54
51
| { type : "ACTIVATE" } ;
55
52
@@ -83,15 +80,6 @@ export const workspaceMachine = createMachine(
83
80
activateWorkspace : {
84
81
data : TypesGen . Response ;
85
82
} ;
86
- listening : {
87
- data : TypesGen . ServerSentEvent ;
88
- } ;
89
- getBuilds : {
90
- data : TypesGen . WorkspaceBuild [ ] ;
91
- } ;
92
- getSSHPrefix : {
93
- data : TypesGen . SSHConfigResponse ;
94
- } ;
95
83
} ,
96
84
} ,
97
85
initial : "ready" ,
@@ -459,7 +447,6 @@ export const workspaceMachine = createMachine(
459
447
throw Error ( "Cannot activate workspace without workspace id" ) ;
460
448
}
461
449
} ,
462
-
463
450
} ,
464
451
} ,
465
452
) ;
You can’t perform that action at this time.
0 commit comments