mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
Bump @roo-code/types to v1.44.0 (#6675)
This commit is contained in:
parent
4e8b17486b
commit
c34e412771
3 changed files with 6 additions and 1 deletions
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@roo-code/types",
|
||||
"version": "1.43.0",
|
||||
"version": "1.44.0",
|
||||
"description": "TypeScript type definitions for Roo Code.",
|
||||
"publishConfig": {
|
||||
"access": "public",
|
||||
|
|
|
|||
|
|
@ -17,6 +17,7 @@ export interface CloudUserInfo {
|
|||
organizationName?: string
|
||||
organizationRole?: string
|
||||
organizationImageUrl?: string
|
||||
extensionBridgeEnabled?: boolean
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -134,6 +134,8 @@ export const globalSettingsSchema = z.object({
|
|||
mcpEnabled: z.boolean().optional(),
|
||||
enableMcpServerCreation: z.boolean().optional(),
|
||||
|
||||
remoteControlEnabled: z.boolean().optional(),
|
||||
|
||||
mode: z.string().optional(),
|
||||
modeApiConfigs: z.record(z.string(), z.string()).optional(),
|
||||
customModes: z.array(modeConfigSchema).optional(),
|
||||
|
|
@ -288,6 +290,8 @@ export const EVALS_SETTINGS: RooCodeSettings = {
|
|||
|
||||
mcpEnabled: false,
|
||||
|
||||
remoteControlEnabled: false,
|
||||
|
||||
mode: "code", // "architect",
|
||||
|
||||
customModes: [],
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue