File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed
Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ export interface CloudUserInfo {
1717 organizationName ?: string
1818 organizationRole ?: string
1919 organizationImageUrl ?: string
20+ extensionBridgeEnabled ?: boolean
2021}
2122
2223/**
Original file line number Diff line number Diff line change @@ -134,6 +134,8 @@ export const globalSettingsSchema = z.object({
134134 mcpEnabled : z . boolean ( ) . optional ( ) ,
135135 enableMcpServerCreation : z . boolean ( ) . optional ( ) ,
136136
137+ remoteControlEnabled : z . boolean ( ) . optional ( ) ,
138+
137139 mode : z . string ( ) . optional ( ) ,
138140 modeApiConfigs : z . record ( z . string ( ) , z . string ( ) ) . optional ( ) ,
139141 customModes : z . array ( modeConfigSchema ) . optional ( ) ,
@@ -288,6 +290,8 @@ export const EVALS_SETTINGS: RooCodeSettings = {
288290
289291 mcpEnabled : false ,
290292
293+ remoteControlEnabled : false ,
294+
291295 mode : "code" , // "architect",
292296
293297 customModes : [ ] ,
You can’t perform that action at this time.
0 commit comments