@roo-code/types 1.109.0 → 1.110.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -5184,8 +5184,6 @@ var vertexSchema = apiModelIdProviderModelSchema.extend({
5184
5184
  vertexJsonCredentials: z8.string().optional(),
5185
5185
  vertexProjectId: z8.string().optional(),
5186
5186
  vertexRegion: z8.string().optional(),
5187
- enableUrlContext: z8.boolean().optional(),
5188
- enableGrounding: z8.boolean().optional(),
5189
5187
  vertex1MContext: z8.boolean().optional()
5190
5188
  // Enable 'context-1m-2025-08-07' beta for 1M context window.
5191
5189
  });
@@ -5224,9 +5222,7 @@ var lmStudioSchema = baseProviderSettingsSchema.extend({
5224
5222
  });
5225
5223
  var geminiSchema = apiModelIdProviderModelSchema.extend({
5226
5224
  geminiApiKey: z8.string().optional(),
5227
- googleGeminiBaseUrl: z8.string().optional(),
5228
- enableUrlContext: z8.boolean().optional(),
5229
- enableGrounding: z8.boolean().optional()
5225
+ googleGeminiBaseUrl: z8.string().optional()
5230
5226
  });
5231
5227
  var geminiCliSchema = apiModelIdProviderModelSchema.extend({
5232
5228
  geminiCliOAuthPath: z8.string().optional(),
@@ -6228,7 +6224,12 @@ var globalSettingsSchema = z14.object({
6228
6224
  * Whether to show the worktree selector in the home screen.
6229
6225
  * @default true
6230
6226
  */
6231
- showWorktreesInHomeScreen: z14.boolean().optional()
6227
+ showWorktreesInHomeScreen: z14.boolean().optional(),
6228
+ /**
6229
+ * List of native tool names to globally disable.
6230
+ * Tools in this list will be excluded from prompt generation and rejected at execution time.
6231
+ */
6232
+ disabledTools: z14.array(toolNamesSchema).optional()
6232
6233
  });
6233
6234
  var GLOBAL_SETTINGS_KEYS = globalSettingsSchema.keyof().options;
6234
6235
  var rooCodeSettingsSchema = providerSettingsSchema.merge(globalSettingsSchema);
@@ -6406,7 +6407,8 @@ var organizationDefaultSettingsSchema = globalSettingsSchema.pick({
6406
6407
  terminalCommandDelay: true,
6407
6408
  terminalShellIntegrationDisabled: true,
6408
6409
  terminalShellIntegrationTimeout: true,
6409
- terminalZshClearEolMark: true
6410
+ terminalZshClearEolMark: true,
6411
+ disabledTools: true
6410
6412
  }).merge(
6411
6413
  z16.object({
6412
6414
  maxOpenTabsContext: z16.number().int().nonnegative().optional(),