Skip to content

Commit c34e412

Browse files
authored
Bump @roo-code/types to v1.44.0 (#6675)
1 parent 4e8b174 commit c34e412

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

packages/types/npm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@roo-code/types",
3-
"version": "1.43.0",
3+
"version": "1.44.0",
44
"description": "TypeScript type definitions for Roo Code.",
55
"publishConfig": {
66
"access": "public",

packages/types/src/cloud.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ export interface CloudUserInfo {
1717
organizationName?: string
1818
organizationRole?: string
1919
organizationImageUrl?: string
20+
extensionBridgeEnabled?: boolean
2021
}
2122

2223
/**

packages/types/src/global-settings.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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: [],

0 commit comments

Comments
 (0)