@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.cjs CHANGED
@@ -5524,8 +5524,6 @@ var vertexSchema = apiModelIdProviderModelSchema.extend({
5524
5524
  vertexJsonCredentials: import_zod8.z.string().optional(),
5525
5525
  vertexProjectId: import_zod8.z.string().optional(),
5526
5526
  vertexRegion: import_zod8.z.string().optional(),
5527
- enableUrlContext: import_zod8.z.boolean().optional(),
5528
- enableGrounding: import_zod8.z.boolean().optional(),
5529
5527
  vertex1MContext: import_zod8.z.boolean().optional()
5530
5528
  // Enable 'context-1m-2025-08-07' beta for 1M context window.
5531
5529
  });
@@ -5564,9 +5562,7 @@ var lmStudioSchema = baseProviderSettingsSchema.extend({
5564
5562
  });
5565
5563
  var geminiSchema = apiModelIdProviderModelSchema.extend({
5566
5564
  geminiApiKey: import_zod8.z.string().optional(),
5567
- googleGeminiBaseUrl: import_zod8.z.string().optional(),
5568
- enableUrlContext: import_zod8.z.boolean().optional(),
5569
- enableGrounding: import_zod8.z.boolean().optional()
5565
+ googleGeminiBaseUrl: import_zod8.z.string().optional()
5570
5566
  });
5571
5567
  var geminiCliSchema = apiModelIdProviderModelSchema.extend({
5572
5568
  geminiCliOAuthPath: import_zod8.z.string().optional(),
@@ -6568,7 +6564,12 @@ var globalSettingsSchema = import_zod14.z.object({
6568
6564
  * Whether to show the worktree selector in the home screen.
6569
6565
  * @default true
6570
6566
  */
6571
- showWorktreesInHomeScreen: import_zod14.z.boolean().optional()
6567
+ showWorktreesInHomeScreen: import_zod14.z.boolean().optional(),
6568
+ /**
6569
+ * List of native tool names to globally disable.
6570
+ * Tools in this list will be excluded from prompt generation and rejected at execution time.
6571
+ */
6572
+ disabledTools: import_zod14.z.array(toolNamesSchema).optional()
6572
6573
  });
6573
6574
  var GLOBAL_SETTINGS_KEYS = globalSettingsSchema.keyof().options;
6574
6575
  var rooCodeSettingsSchema = providerSettingsSchema.merge(globalSettingsSchema);
@@ -6746,7 +6747,8 @@ var organizationDefaultSettingsSchema = globalSettingsSchema.pick({
6746
6747
  terminalCommandDelay: true,
6747
6748
  terminalShellIntegrationDisabled: true,
6748
6749
  terminalShellIntegrationTimeout: true,
6749
- terminalZshClearEolMark: true
6750
+ terminalZshClearEolMark: true,
6751
+ disabledTools: true
6750
6752
  }).merge(
6751
6753
  import_zod16.z.object({
6752
6754
  maxOpenTabsContext: import_zod16.z.number().int().nonnegative().optional(),