@roo-code/types 1.26.0 → 1.27.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.d.ts CHANGED
@@ -161,6 +161,7 @@ declare const bedrockModels: {
161
161
  readonly supportsImages: true;
162
162
  readonly supportsComputerUse: true;
163
163
  readonly supportsPromptCache: true;
164
+ readonly supportsReasoningBudget: true;
164
165
  readonly inputPrice: 3;
165
166
  readonly outputPrice: 15;
166
167
  readonly cacheWritesPrice: 3.75;
@@ -175,6 +176,7 @@ declare const bedrockModels: {
175
176
  readonly supportsImages: true;
176
177
  readonly supportsComputerUse: true;
177
178
  readonly supportsPromptCache: true;
179
+ readonly supportsReasoningBudget: true;
178
180
  readonly inputPrice: 15;
179
181
  readonly outputPrice: 75;
180
182
  readonly cacheWritesPrice: 18.75;
@@ -189,6 +191,7 @@ declare const bedrockModels: {
189
191
  readonly supportsImages: true;
190
192
  readonly supportsComputerUse: true;
191
193
  readonly supportsPromptCache: true;
194
+ readonly supportsReasoningBudget: true;
192
195
  readonly inputPrice: 3;
193
196
  readonly outputPrice: 15;
194
197
  readonly cacheWritesPrice: 3.75;
@@ -1734,154 +1737,70 @@ declare const vscodeLlmModels: {
1734
1737
  type XAIModelId = keyof typeof xaiModels;
1735
1738
  declare const xaiDefaultModelId: XAIModelId;
1736
1739
  declare const xaiModels: {
1737
- readonly "grok-3-beta": {
1738
- readonly maxTokens: 8192;
1739
- readonly contextWindow: 131072;
1740
- readonly supportsImages: false;
1741
- readonly supportsPromptCache: false;
1742
- readonly inputPrice: 3;
1743
- readonly outputPrice: 15;
1744
- readonly description: "xAI's Grok-3 beta model with 131K context window";
1745
- };
1746
- readonly "grok-3-fast-beta": {
1747
- readonly maxTokens: 8192;
1748
- readonly contextWindow: 131072;
1749
- readonly supportsImages: false;
1750
- readonly supportsPromptCache: false;
1751
- readonly inputPrice: 5;
1752
- readonly outputPrice: 25;
1753
- readonly description: "xAI's Grok-3 fast beta model with 131K context window";
1754
- };
1755
- readonly "grok-3-mini-beta": {
1740
+ readonly "grok-2-1212": {
1756
1741
  readonly maxTokens: 8192;
1757
1742
  readonly contextWindow: 131072;
1758
1743
  readonly supportsImages: false;
1759
1744
  readonly supportsPromptCache: false;
1760
- readonly inputPrice: 0.3;
1761
- readonly outputPrice: 0.5;
1762
- readonly description: "xAI's Grok-3 mini beta model with 131K context window";
1763
- readonly supportsReasoningEffort: true;
1745
+ readonly inputPrice: 2;
1746
+ readonly outputPrice: 10;
1747
+ readonly description: "xAI's Grok-2 model (version 1212) with 128K context window";
1764
1748
  };
1765
- readonly "grok-3-mini-fast-beta": {
1749
+ readonly "grok-2-vision-1212": {
1766
1750
  readonly maxTokens: 8192;
1767
- readonly contextWindow: 131072;
1768
- readonly supportsImages: false;
1751
+ readonly contextWindow: 32768;
1752
+ readonly supportsImages: true;
1769
1753
  readonly supportsPromptCache: false;
1770
- readonly inputPrice: 0.6;
1771
- readonly outputPrice: 4;
1772
- readonly description: "xAI's Grok-3 mini fast beta model with 131K context window";
1773
- readonly supportsReasoningEffort: true;
1754
+ readonly inputPrice: 2;
1755
+ readonly outputPrice: 10;
1756
+ readonly description: "xAI's Grok-2 Vision model (version 1212) with image support and 32K context window";
1774
1757
  };
1775
1758
  readonly "grok-3": {
1776
1759
  readonly maxTokens: 8192;
1777
1760
  readonly contextWindow: 131072;
1778
1761
  readonly supportsImages: false;
1779
- readonly supportsPromptCache: false;
1762
+ readonly supportsPromptCache: true;
1780
1763
  readonly inputPrice: 3;
1781
1764
  readonly outputPrice: 15;
1782
- readonly description: "xAI's Grok-3 model with 131K context window";
1765
+ readonly cacheWritesPrice: 0.75;
1766
+ readonly cacheReadsPrice: 0.75;
1767
+ readonly description: "xAI's Grok-3 model with 128K context window";
1783
1768
  };
1784
1769
  readonly "grok-3-fast": {
1785
1770
  readonly maxTokens: 8192;
1786
1771
  readonly contextWindow: 131072;
1787
1772
  readonly supportsImages: false;
1788
- readonly supportsPromptCache: false;
1773
+ readonly supportsPromptCache: true;
1789
1774
  readonly inputPrice: 5;
1790
1775
  readonly outputPrice: 25;
1791
- readonly description: "xAI's Grok-3 fast model with 131K context window";
1776
+ readonly cacheWritesPrice: 1.25;
1777
+ readonly cacheReadsPrice: 1.25;
1778
+ readonly description: "xAI's Grok-3 fast model with 128K context window";
1792
1779
  };
1793
1780
  readonly "grok-3-mini": {
1794
1781
  readonly maxTokens: 8192;
1795
1782
  readonly contextWindow: 131072;
1796
1783
  readonly supportsImages: false;
1797
- readonly supportsPromptCache: false;
1784
+ readonly supportsPromptCache: true;
1798
1785
  readonly inputPrice: 0.3;
1799
1786
  readonly outputPrice: 0.5;
1800
- readonly description: "xAI's Grok-3 mini model with 131K context window";
1787
+ readonly cacheWritesPrice: 0.07;
1788
+ readonly cacheReadsPrice: 0.07;
1789
+ readonly description: "xAI's Grok-3 mini model with 128K context window";
1801
1790
  readonly supportsReasoningEffort: true;
1802
1791
  };
1803
1792
  readonly "grok-3-mini-fast": {
1804
1793
  readonly maxTokens: 8192;
1805
1794
  readonly contextWindow: 131072;
1806
1795
  readonly supportsImages: false;
1807
- readonly supportsPromptCache: false;
1796
+ readonly supportsPromptCache: true;
1808
1797
  readonly inputPrice: 0.6;
1809
1798
  readonly outputPrice: 4;
1810
- readonly description: "xAI's Grok-3 mini fast model with 131K context window";
1799
+ readonly cacheWritesPrice: 0.15;
1800
+ readonly cacheReadsPrice: 0.15;
1801
+ readonly description: "xAI's Grok-3 mini fast model with 128K context window";
1811
1802
  readonly supportsReasoningEffort: true;
1812
1803
  };
1813
- readonly "grok-2-latest": {
1814
- readonly maxTokens: 8192;
1815
- readonly contextWindow: 131072;
1816
- readonly supportsImages: false;
1817
- readonly supportsPromptCache: false;
1818
- readonly inputPrice: 2;
1819
- readonly outputPrice: 10;
1820
- readonly description: "xAI's Grok-2 model - latest version with 131K context window";
1821
- };
1822
- readonly "grok-2": {
1823
- readonly maxTokens: 8192;
1824
- readonly contextWindow: 131072;
1825
- readonly supportsImages: false;
1826
- readonly supportsPromptCache: false;
1827
- readonly inputPrice: 2;
1828
- readonly outputPrice: 10;
1829
- readonly description: "xAI's Grok-2 model with 131K context window";
1830
- };
1831
- readonly "grok-2-1212": {
1832
- readonly maxTokens: 8192;
1833
- readonly contextWindow: 131072;
1834
- readonly supportsImages: false;
1835
- readonly supportsPromptCache: false;
1836
- readonly inputPrice: 2;
1837
- readonly outputPrice: 10;
1838
- readonly description: "xAI's Grok-2 model (version 1212) with 131K context window";
1839
- };
1840
- readonly "grok-2-vision-latest": {
1841
- readonly maxTokens: 8192;
1842
- readonly contextWindow: 32768;
1843
- readonly supportsImages: true;
1844
- readonly supportsPromptCache: false;
1845
- readonly inputPrice: 2;
1846
- readonly outputPrice: 10;
1847
- readonly description: "xAI's Grok-2 Vision model - latest version with image support and 32K context window";
1848
- };
1849
- readonly "grok-2-vision": {
1850
- readonly maxTokens: 8192;
1851
- readonly contextWindow: 32768;
1852
- readonly supportsImages: true;
1853
- readonly supportsPromptCache: false;
1854
- readonly inputPrice: 2;
1855
- readonly outputPrice: 10;
1856
- readonly description: "xAI's Grok-2 Vision model with image support and 32K context window";
1857
- };
1858
- readonly "grok-2-vision-1212": {
1859
- readonly maxTokens: 8192;
1860
- readonly contextWindow: 32768;
1861
- readonly supportsImages: true;
1862
- readonly supportsPromptCache: false;
1863
- readonly inputPrice: 2;
1864
- readonly outputPrice: 10;
1865
- readonly description: "xAI's Grok-2 Vision model (version 1212) with image support and 32K context window";
1866
- };
1867
- readonly "grok-vision-beta": {
1868
- readonly maxTokens: 8192;
1869
- readonly contextWindow: 8192;
1870
- readonly supportsImages: true;
1871
- readonly supportsPromptCache: false;
1872
- readonly inputPrice: 5;
1873
- readonly outputPrice: 15;
1874
- readonly description: "xAI's Grok Vision Beta model with image support and 8K context window";
1875
- };
1876
- readonly "grok-beta": {
1877
- readonly maxTokens: 8192;
1878
- readonly contextWindow: 131072;
1879
- readonly supportsImages: false;
1880
- readonly supportsPromptCache: false;
1881
- readonly inputPrice: 5;
1882
- readonly outputPrice: 15;
1883
- readonly description: "xAI's Grok Beta model (legacy) with 131K context window";
1884
- };
1885
1804
  };
1886
1805
 
1887
1806
  /**
@@ -1891,11 +1810,6 @@ type Keys<T> = keyof T;
1891
1810
  type Values<T> = T[keyof T];
1892
1811
  type Equals<X, Y> = (<T>() => T extends X ? 1 : 2) extends <T>() => T extends Y ? 1 : 2 ? true : false;
1893
1812
  type AssertEqual<T extends true> = T;
1894
- /**
1895
- * Creates a type-safe keys array that enforces ALL keys from type T are present.
1896
- * Returns a compile-time error if any keys are missing or extra keys are provided.
1897
- */
1898
- declare function keysOf<T>(): <const U extends readonly (keyof T)[]>(keys: keyof T extends U[number] ? (U[number] extends keyof T ? U : never) : never) => U;
1899
1813
 
1900
1814
  /**
1901
1815
  * ProviderName
@@ -3476,7 +3390,7 @@ declare const providerSettingsSchema: z.ZodObject<{
3476
3390
  litellmModelId?: string | undefined;
3477
3391
  }>;
3478
3392
  type ProviderSettings = z.infer<typeof providerSettingsSchema>;
3479
- declare const PROVIDER_SETTINGS_KEYS: readonly ["apiProvider", "apiModelId", "apiKey", "anthropicBaseUrl", "anthropicUseAuthToken", "glamaModelId", "glamaApiKey", "openRouterApiKey", "openRouterModelId", "openRouterBaseUrl", "openRouterSpecificProvider", "openRouterUseMiddleOutTransform", "awsAccessKey", "awsSecretKey", "awsSessionToken", "awsRegion", "awsUseCrossRegionInference", "awsUsePromptCache", "awsProfile", "awsUseProfile", "awsCustomArn", "awsModelContextWindow", "awsBedrockEndpointEnabled", "awsBedrockEndpoint", "vertexKeyFile", "vertexJsonCredentials", "vertexProjectId", "vertexRegion", "openAiBaseUrl", "openAiApiKey", "openAiLegacyFormat", "openAiR1FormatEnabled", "openAiModelId", "openAiCustomModelInfo", "openAiUseAzure", "azureApiVersion", "openAiStreamingEnabled", "openAiHostHeader", "openAiHeaders", "ollamaModelId", "ollamaBaseUrl", "vsCodeLmModelSelector", "lmStudioModelId", "lmStudioBaseUrl", "lmStudioDraftModelId", "lmStudioSpeculativeDecodingEnabled", "geminiApiKey", "googleGeminiBaseUrl", "openAiNativeApiKey", "openAiNativeBaseUrl", "mistralApiKey", "mistralCodestralUrl", "deepSeekBaseUrl", "deepSeekApiKey", "unboundApiKey", "unboundModelId", "requestyApiKey", "requestyModelId", "codeIndexOpenAiKey", "codeIndexQdrantApiKey", "codebaseIndexOpenAiCompatibleBaseUrl", "codebaseIndexOpenAiCompatibleApiKey", "codebaseIndexOpenAiCompatibleModelDimension", "enableReasoningEffort", "reasoningEffort", "modelMaxTokens", "modelMaxThinkingTokens", "includeMaxTokens", "diffEnabled", "fuzzyMatchThreshold", "modelTemperature", "rateLimitSeconds", "fakeAi", "xaiApiKey", "groqApiKey", "chutesApiKey", "litellmBaseUrl", "litellmApiKey", "litellmModelId"];
3393
+ declare const PROVIDER_SETTINGS_KEYS: ["reasoningEffort", "codeIndexOpenAiKey", "codeIndexQdrantApiKey", "codebaseIndexOpenAiCompatibleBaseUrl", "codebaseIndexOpenAiCompatibleApiKey", "codebaseIndexOpenAiCompatibleModelDimension", "apiProvider", "includeMaxTokens", "diffEnabled", "fuzzyMatchThreshold", "modelTemperature", "rateLimitSeconds", "enableReasoningEffort", "modelMaxTokens", "modelMaxThinkingTokens", "apiModelId", "apiKey", "anthropicBaseUrl", "anthropicUseAuthToken", "glamaModelId", "glamaApiKey", "openRouterApiKey", "openRouterModelId", "openRouterBaseUrl", "openRouterSpecificProvider", "openRouterUseMiddleOutTransform", "awsAccessKey", "awsSecretKey", "awsSessionToken", "awsRegion", "awsUseCrossRegionInference", "awsUsePromptCache", "awsProfile", "awsUseProfile", "awsCustomArn", "awsModelContextWindow", "awsBedrockEndpointEnabled", "awsBedrockEndpoint", "vertexKeyFile", "vertexJsonCredentials", "vertexProjectId", "vertexRegion", "openAiBaseUrl", "openAiApiKey", "openAiLegacyFormat", "openAiR1FormatEnabled", "openAiModelId", "openAiCustomModelInfo", "openAiUseAzure", "azureApiVersion", "openAiStreamingEnabled", "openAiHostHeader", "openAiHeaders", "ollamaModelId", "ollamaBaseUrl", "vsCodeLmModelSelector", "lmStudioModelId", "lmStudioBaseUrl", "lmStudioDraftModelId", "lmStudioSpeculativeDecodingEnabled", "geminiApiKey", "googleGeminiBaseUrl", "openAiNativeApiKey", "openAiNativeBaseUrl", "mistralApiKey", "mistralCodestralUrl", "deepSeekBaseUrl", "deepSeekApiKey", "unboundApiKey", "unboundModelId", "requestyApiKey", "requestyModelId", "fakeAi", "xaiApiKey", "groqApiKey", "chutesApiKey", "litellmBaseUrl", "litellmApiKey", "litellmModelId"];
3480
3394
  declare const MODEL_ID_KEYS: Partial<keyof ProviderSettings>[];
3481
3395
  declare const getModelId: (settings: ProviderSettings) => string | undefined;
3482
3396
 
@@ -3545,6 +3459,7 @@ declare const globalSettingsSchema: z.ZodObject<{
3545
3459
  alwaysAllowReadOnlyOutsideWorkspace: z.ZodOptional<z.ZodBoolean>;
3546
3460
  alwaysAllowWrite: z.ZodOptional<z.ZodBoolean>;
3547
3461
  alwaysAllowWriteOutsideWorkspace: z.ZodOptional<z.ZodBoolean>;
3462
+ alwaysAllowWriteProtected: z.ZodOptional<z.ZodBoolean>;
3548
3463
  writeDelayMs: z.ZodOptional<z.ZodNumber>;
3549
3464
  alwaysAllowBrowser: z.ZodOptional<z.ZodBoolean>;
3550
3465
  alwaysApproveResubmit: z.ZodOptional<z.ZodBoolean>;
@@ -3587,20 +3502,20 @@ declare const globalSettingsSchema: z.ZodObject<{
3587
3502
  diffEnabled: z.ZodOptional<z.ZodBoolean>;
3588
3503
  fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
3589
3504
  experiments: z.ZodOptional<z.ZodObject<{
3590
- powerSteering: z.ZodBoolean;
3591
- marketplace: z.ZodBoolean;
3592
- concurrentFileReads: z.ZodBoolean;
3593
- disableCompletionCommand: z.ZodBoolean;
3505
+ powerSteering: z.ZodOptional<z.ZodBoolean>;
3506
+ disableCompletionCommand: z.ZodOptional<z.ZodBoolean>;
3507
+ marketplace: z.ZodOptional<z.ZodBoolean>;
3508
+ multiFileApplyDiff: z.ZodOptional<z.ZodBoolean>;
3594
3509
  }, "strip", z.ZodTypeAny, {
3595
- powerSteering: boolean;
3596
- marketplace: boolean;
3597
- concurrentFileReads: boolean;
3598
- disableCompletionCommand: boolean;
3510
+ powerSteering?: boolean | undefined;
3511
+ disableCompletionCommand?: boolean | undefined;
3512
+ marketplace?: boolean | undefined;
3513
+ multiFileApplyDiff?: boolean | undefined;
3599
3514
  }, {
3600
- powerSteering: boolean;
3601
- marketplace: boolean;
3602
- concurrentFileReads: boolean;
3603
- disableCompletionCommand: boolean;
3515
+ powerSteering?: boolean | undefined;
3516
+ disableCompletionCommand?: boolean | undefined;
3517
+ marketplace?: boolean | undefined;
3518
+ multiFileApplyDiff?: boolean | undefined;
3604
3519
  }>>;
3605
3520
  codebaseIndexModels: z.ZodOptional<z.ZodObject<{
3606
3521
  openai: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -3664,7 +3579,7 @@ declare const globalSettingsSchema: z.ZodObject<{
3664
3579
  codebaseIndexEmbedderBaseUrl?: string | undefined;
3665
3580
  codebaseIndexEmbedderModelId?: string | undefined;
3666
3581
  }>>;
3667
- language: z.ZodOptional<z.ZodEnum<["ca", "de", "en", "es", "fr", "hi", "it", "ja", "ko", "nl", "pl", "pt-BR", "ru", "tr", "vi", "zh-CN", "zh-TW"]>>;
3582
+ language: z.ZodOptional<z.ZodEnum<["ca", "de", "en", "es", "fr", "hi", "id", "it", "ja", "ko", "nl", "pl", "pt-BR", "ru", "tr", "vi", "zh-CN", "zh-TW"]>>;
3668
3583
  telemetrySetting: z.ZodOptional<z.ZodEnum<["unset", "enabled", "disabled"]>>;
3669
3584
  mcpEnabled: z.ZodOptional<z.ZodBoolean>;
3670
3585
  enableMcpServerCreation: z.ZodOptional<z.ZodBoolean>;
@@ -3736,7 +3651,7 @@ declare const globalSettingsSchema: z.ZodObject<{
3736
3651
  diffEnabled?: boolean | undefined;
3737
3652
  fuzzyMatchThreshold?: number | undefined;
3738
3653
  rateLimitSeconds?: number | undefined;
3739
- language?: "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
3654
+ language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
3740
3655
  mode?: string | undefined;
3741
3656
  customInstructions?: string | undefined;
3742
3657
  customModes?: {
@@ -3779,6 +3694,7 @@ declare const globalSettingsSchema: z.ZodObject<{
3779
3694
  alwaysAllowReadOnlyOutsideWorkspace?: boolean | undefined;
3780
3695
  alwaysAllowWrite?: boolean | undefined;
3781
3696
  alwaysAllowWriteOutsideWorkspace?: boolean | undefined;
3697
+ alwaysAllowWriteProtected?: boolean | undefined;
3782
3698
  writeDelayMs?: number | undefined;
3783
3699
  alwaysAllowBrowser?: boolean | undefined;
3784
3700
  alwaysApproveResubmit?: boolean | undefined;
@@ -3818,10 +3734,10 @@ declare const globalSettingsSchema: z.ZodObject<{
3818
3734
  terminalZdotdir?: boolean | undefined;
3819
3735
  terminalCompressProgressBar?: boolean | undefined;
3820
3736
  experiments?: {
3821
- powerSteering: boolean;
3822
- marketplace: boolean;
3823
- concurrentFileReads: boolean;
3824
- disableCompletionCommand: boolean;
3737
+ powerSteering?: boolean | undefined;
3738
+ disableCompletionCommand?: boolean | undefined;
3739
+ marketplace?: boolean | undefined;
3740
+ multiFileApplyDiff?: boolean | undefined;
3825
3741
  } | undefined;
3826
3742
  codebaseIndexModels?: {
3827
3743
  openai?: Record<string, {
@@ -3857,7 +3773,7 @@ declare const globalSettingsSchema: z.ZodObject<{
3857
3773
  diffEnabled?: boolean | undefined;
3858
3774
  fuzzyMatchThreshold?: number | undefined;
3859
3775
  rateLimitSeconds?: number | undefined;
3860
- language?: "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
3776
+ language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
3861
3777
  mode?: string | undefined;
3862
3778
  customInstructions?: string | undefined;
3863
3779
  customModes?: {
@@ -3900,6 +3816,7 @@ declare const globalSettingsSchema: z.ZodObject<{
3900
3816
  alwaysAllowReadOnlyOutsideWorkspace?: boolean | undefined;
3901
3817
  alwaysAllowWrite?: boolean | undefined;
3902
3818
  alwaysAllowWriteOutsideWorkspace?: boolean | undefined;
3819
+ alwaysAllowWriteProtected?: boolean | undefined;
3903
3820
  writeDelayMs?: number | undefined;
3904
3821
  alwaysAllowBrowser?: boolean | undefined;
3905
3822
  alwaysApproveResubmit?: boolean | undefined;
@@ -3939,10 +3856,10 @@ declare const globalSettingsSchema: z.ZodObject<{
3939
3856
  terminalZdotdir?: boolean | undefined;
3940
3857
  terminalCompressProgressBar?: boolean | undefined;
3941
3858
  experiments?: {
3942
- powerSteering: boolean;
3943
- marketplace: boolean;
3944
- concurrentFileReads: boolean;
3945
- disableCompletionCommand: boolean;
3859
+ powerSteering?: boolean | undefined;
3860
+ disableCompletionCommand?: boolean | undefined;
3861
+ marketplace?: boolean | undefined;
3862
+ multiFileApplyDiff?: boolean | undefined;
3946
3863
  } | undefined;
3947
3864
  codebaseIndexModels?: {
3948
3865
  openai?: Record<string, {
@@ -3976,7 +3893,7 @@ declare const globalSettingsSchema: z.ZodObject<{
3976
3893
  historyPreviewCollapsed?: boolean | undefined;
3977
3894
  }>;
3978
3895
  type GlobalSettings = z.infer<typeof globalSettingsSchema>;
3979
- declare const GLOBAL_SETTINGS_KEYS: readonly ["currentApiConfigName", "listApiConfigMeta", "pinnedApiConfigs", "lastShownAnnouncementId", "customInstructions", "taskHistory", "condensingApiConfigId", "customCondensingPrompt", "autoApprovalEnabled", "alwaysAllowReadOnly", "alwaysAllowReadOnlyOutsideWorkspace", "alwaysAllowWrite", "alwaysAllowWriteOutsideWorkspace", "writeDelayMs", "alwaysAllowBrowser", "alwaysApproveResubmit", "requestDelaySeconds", "alwaysAllowMcp", "alwaysAllowModeSwitch", "alwaysAllowSubtasks", "alwaysAllowExecute", "allowedCommands", "allowedMaxRequests", "autoCondenseContext", "autoCondenseContextPercent", "maxConcurrentFileReads", "browserToolEnabled", "browserViewportSize", "screenshotQuality", "remoteBrowserEnabled", "remoteBrowserHost", "enableCheckpoints", "ttsEnabled", "ttsSpeed", "soundEnabled", "soundVolume", "maxOpenTabsContext", "maxWorkspaceFiles", "showRooIgnoredFiles", "maxReadFileLine", "terminalOutputLineLimit", "terminalShellIntegrationTimeout", "terminalShellIntegrationDisabled", "terminalCommandDelay", "terminalPowershellCounter", "terminalZshClearEolMark", "terminalZshOhMy", "terminalZshP10k", "terminalZdotdir", "terminalCompressProgressBar", "rateLimitSeconds", "diffEnabled", "fuzzyMatchThreshold", "experiments", "codebaseIndexModels", "codebaseIndexConfig", "language", "telemetrySetting", "mcpEnabled", "enableMcpServerCreation", "mode", "modeApiConfigs", "customModes", "customModePrompts", "customSupportPrompts", "enhancementApiConfigId", "cachedChromeHostUrl", "historyPreviewCollapsed"];
3896
+ declare const GLOBAL_SETTINGS_KEYS: ["diffEnabled", "fuzzyMatchThreshold", "rateLimitSeconds", "language", "mode", "customInstructions", "customModes", "currentApiConfigName", "listApiConfigMeta", "pinnedApiConfigs", "lastShownAnnouncementId", "taskHistory", "condensingApiConfigId", "customCondensingPrompt", "autoApprovalEnabled", "alwaysAllowReadOnly", "alwaysAllowReadOnlyOutsideWorkspace", "alwaysAllowWrite", "alwaysAllowWriteOutsideWorkspace", "alwaysAllowWriteProtected", "writeDelayMs", "alwaysAllowBrowser", "alwaysApproveResubmit", "requestDelaySeconds", "alwaysAllowMcp", "alwaysAllowModeSwitch", "alwaysAllowSubtasks", "alwaysAllowExecute", "allowedCommands", "allowedMaxRequests", "autoCondenseContext", "autoCondenseContextPercent", "maxConcurrentFileReads", "browserToolEnabled", "browserViewportSize", "screenshotQuality", "remoteBrowserEnabled", "remoteBrowserHost", "cachedChromeHostUrl", "enableCheckpoints", "ttsEnabled", "ttsSpeed", "soundEnabled", "soundVolume", "maxOpenTabsContext", "maxWorkspaceFiles", "showRooIgnoredFiles", "maxReadFileLine", "terminalOutputLineLimit", "terminalShellIntegrationTimeout", "terminalShellIntegrationDisabled", "terminalCommandDelay", "terminalPowershellCounter", "terminalZshClearEolMark", "terminalZshOhMy", "terminalZshP10k", "terminalZdotdir", "terminalCompressProgressBar", "experiments", "codebaseIndexModels", "codebaseIndexConfig", "telemetrySetting", "mcpEnabled", "enableMcpServerCreation", "modeApiConfigs", "customModePrompts", "customSupportPrompts", "enhancementApiConfigId", "historyPreviewCollapsed"];
3980
3897
  /**
3981
3898
  * RooCodeSettings
3982
3899
  */
@@ -4227,6 +4144,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
4227
4144
  alwaysAllowReadOnlyOutsideWorkspace: z.ZodOptional<z.ZodBoolean>;
4228
4145
  alwaysAllowWrite: z.ZodOptional<z.ZodBoolean>;
4229
4146
  alwaysAllowWriteOutsideWorkspace: z.ZodOptional<z.ZodBoolean>;
4147
+ alwaysAllowWriteProtected: z.ZodOptional<z.ZodBoolean>;
4230
4148
  writeDelayMs: z.ZodOptional<z.ZodNumber>;
4231
4149
  alwaysAllowBrowser: z.ZodOptional<z.ZodBoolean>;
4232
4150
  alwaysApproveResubmit: z.ZodOptional<z.ZodBoolean>;
@@ -4269,20 +4187,20 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
4269
4187
  diffEnabled: z.ZodOptional<z.ZodBoolean>;
4270
4188
  fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
4271
4189
  experiments: z.ZodOptional<z.ZodObject<{
4272
- powerSteering: z.ZodBoolean;
4273
- marketplace: z.ZodBoolean;
4274
- concurrentFileReads: z.ZodBoolean;
4275
- disableCompletionCommand: z.ZodBoolean;
4190
+ powerSteering: z.ZodOptional<z.ZodBoolean>;
4191
+ disableCompletionCommand: z.ZodOptional<z.ZodBoolean>;
4192
+ marketplace: z.ZodOptional<z.ZodBoolean>;
4193
+ multiFileApplyDiff: z.ZodOptional<z.ZodBoolean>;
4276
4194
  }, "strip", z.ZodTypeAny, {
4277
- powerSteering: boolean;
4278
- marketplace: boolean;
4279
- concurrentFileReads: boolean;
4280
- disableCompletionCommand: boolean;
4195
+ powerSteering?: boolean | undefined;
4196
+ disableCompletionCommand?: boolean | undefined;
4197
+ marketplace?: boolean | undefined;
4198
+ multiFileApplyDiff?: boolean | undefined;
4281
4199
  }, {
4282
- powerSteering: boolean;
4283
- marketplace: boolean;
4284
- concurrentFileReads: boolean;
4285
- disableCompletionCommand: boolean;
4200
+ powerSteering?: boolean | undefined;
4201
+ disableCompletionCommand?: boolean | undefined;
4202
+ marketplace?: boolean | undefined;
4203
+ multiFileApplyDiff?: boolean | undefined;
4286
4204
  }>>;
4287
4205
  codebaseIndexModels: z.ZodOptional<z.ZodObject<{
4288
4206
  openai: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -4346,7 +4264,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
4346
4264
  codebaseIndexEmbedderBaseUrl?: string | undefined;
4347
4265
  codebaseIndexEmbedderModelId?: string | undefined;
4348
4266
  }>>;
4349
- language: z.ZodOptional<z.ZodEnum<["ca", "de", "en", "es", "fr", "hi", "it", "ja", "ko", "nl", "pl", "pt-BR", "ru", "tr", "vi", "zh-CN", "zh-TW"]>>;
4267
+ language: z.ZodOptional<z.ZodEnum<["ca", "de", "en", "es", "fr", "hi", "id", "it", "ja", "ko", "nl", "pl", "pt-BR", "ru", "tr", "vi", "zh-CN", "zh-TW"]>>;
4350
4268
  telemetrySetting: z.ZodOptional<z.ZodEnum<["unset", "enabled", "disabled"]>>;
4351
4269
  mcpEnabled: z.ZodOptional<z.ZodBoolean>;
4352
4270
  enableMcpServerCreation: z.ZodOptional<z.ZodBoolean>;
@@ -4526,7 +4444,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
4526
4444
  litellmBaseUrl?: string | undefined;
4527
4445
  litellmApiKey?: string | undefined;
4528
4446
  litellmModelId?: string | undefined;
4529
- language?: "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
4447
+ language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
4530
4448
  mode?: string | undefined;
4531
4449
  customInstructions?: string | undefined;
4532
4450
  customModes?: {
@@ -4569,6 +4487,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
4569
4487
  alwaysAllowReadOnlyOutsideWorkspace?: boolean | undefined;
4570
4488
  alwaysAllowWrite?: boolean | undefined;
4571
4489
  alwaysAllowWriteOutsideWorkspace?: boolean | undefined;
4490
+ alwaysAllowWriteProtected?: boolean | undefined;
4572
4491
  writeDelayMs?: number | undefined;
4573
4492
  alwaysAllowBrowser?: boolean | undefined;
4574
4493
  alwaysApproveResubmit?: boolean | undefined;
@@ -4608,10 +4527,10 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
4608
4527
  terminalZdotdir?: boolean | undefined;
4609
4528
  terminalCompressProgressBar?: boolean | undefined;
4610
4529
  experiments?: {
4611
- powerSteering: boolean;
4612
- marketplace: boolean;
4613
- concurrentFileReads: boolean;
4614
- disableCompletionCommand: boolean;
4530
+ powerSteering?: boolean | undefined;
4531
+ disableCompletionCommand?: boolean | undefined;
4532
+ marketplace?: boolean | undefined;
4533
+ multiFileApplyDiff?: boolean | undefined;
4615
4534
  } | undefined;
4616
4535
  codebaseIndexModels?: {
4617
4536
  openai?: Record<string, {
@@ -4755,7 +4674,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
4755
4674
  litellmBaseUrl?: string | undefined;
4756
4675
  litellmApiKey?: string | undefined;
4757
4676
  litellmModelId?: string | undefined;
4758
- language?: "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
4677
+ language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
4759
4678
  mode?: string | undefined;
4760
4679
  customInstructions?: string | undefined;
4761
4680
  customModes?: {
@@ -4798,6 +4717,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
4798
4717
  alwaysAllowReadOnlyOutsideWorkspace?: boolean | undefined;
4799
4718
  alwaysAllowWrite?: boolean | undefined;
4800
4719
  alwaysAllowWriteOutsideWorkspace?: boolean | undefined;
4720
+ alwaysAllowWriteProtected?: boolean | undefined;
4801
4721
  writeDelayMs?: number | undefined;
4802
4722
  alwaysAllowBrowser?: boolean | undefined;
4803
4723
  alwaysApproveResubmit?: boolean | undefined;
@@ -4837,10 +4757,10 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
4837
4757
  terminalZdotdir?: boolean | undefined;
4838
4758
  terminalCompressProgressBar?: boolean | undefined;
4839
4759
  experiments?: {
4840
- powerSteering: boolean;
4841
- marketplace: boolean;
4842
- concurrentFileReads: boolean;
4843
- disableCompletionCommand: boolean;
4760
+ powerSteering?: boolean | undefined;
4761
+ disableCompletionCommand?: boolean | undefined;
4762
+ marketplace?: boolean | undefined;
4763
+ multiFileApplyDiff?: boolean | undefined;
4844
4764
  } | undefined;
4845
4765
  codebaseIndexModels?: {
4846
4766
  openai?: Record<string, {
@@ -4877,8 +4797,8 @@ type RooCodeSettings = GlobalSettings & ProviderSettings;
4877
4797
  /**
4878
4798
  * SecretState
4879
4799
  */
4880
- type SecretState = Pick<ProviderSettings, "apiKey" | "glamaApiKey" | "openRouterApiKey" | "awsAccessKey" | "awsSecretKey" | "awsSessionToken" | "openAiApiKey" | "geminiApiKey" | "openAiNativeApiKey" | "deepSeekApiKey" | "mistralApiKey" | "unboundApiKey" | "requestyApiKey" | "xaiApiKey" | "groqApiKey" | "chutesApiKey" | "litellmApiKey" | "codeIndexOpenAiKey" | "codeIndexQdrantApiKey" | "codebaseIndexOpenAiCompatibleApiKey">;
4881
4800
  declare const SECRET_STATE_KEYS: readonly ["apiKey", "glamaApiKey", "openRouterApiKey", "awsAccessKey", "awsSecretKey", "awsSessionToken", "openAiApiKey", "geminiApiKey", "openAiNativeApiKey", "deepSeekApiKey", "mistralApiKey", "unboundApiKey", "requestyApiKey", "xaiApiKey", "groqApiKey", "chutesApiKey", "litellmApiKey", "codeIndexOpenAiKey", "codeIndexQdrantApiKey", "codebaseIndexOpenAiCompatibleApiKey"];
4801
+ type SecretState = Pick<ProviderSettings, (typeof SECRET_STATE_KEYS)[number]>;
4882
4802
  declare const isSecretStateKey: (key: string) => key is Keys<SecretState>;
4883
4803
  /**
4884
4804
  * GlobalState
@@ -4895,12 +4815,66 @@ declare const EVALS_TIMEOUT: number;
4895
4815
  /**
4896
4816
  * ClineAsk
4897
4817
  */
4818
+ /**
4819
+ * Array of possible ask types that the LLM can use to request user interaction or approval.
4820
+ * These represent different scenarios where the assistant needs user input to proceed.
4821
+ *
4822
+ * @constant
4823
+ * @readonly
4824
+ *
4825
+ * Ask type descriptions:
4826
+ * - `followup`: LLM asks a clarifying question to gather more information needed to complete the task
4827
+ * - `command`: Permission to execute a terminal/shell command
4828
+ * - `command_output`: Permission to read the output from a previously executed command
4829
+ * - `completion_result`: Task has been completed, awaiting user feedback or a new task
4830
+ * - `tool`: Permission to use a tool for file operations (read, write, search, etc.)
4831
+ * - `api_req_failed`: API request failed, asking user whether to retry
4832
+ * - `resume_task`: Confirmation needed to resume a previously paused task
4833
+ * - `resume_completed_task`: Confirmation needed to resume a task that was already marked as completed
4834
+ * - `mistake_limit_reached`: Too many errors encountered, needs user guidance on how to proceed
4835
+ * - `browser_action_launch`: Permission to open or interact with a browser
4836
+ * - `use_mcp_server`: Permission to use Model Context Protocol (MCP) server functionality
4837
+ * - `auto_approval_max_req_reached`: Auto-approval limit has been reached, manual approval required
4838
+ */
4898
4839
  declare const clineAsks: readonly ["followup", "command", "command_output", "completion_result", "tool", "api_req_failed", "resume_task", "resume_completed_task", "mistake_limit_reached", "browser_action_launch", "use_mcp_server", "auto_approval_max_req_reached"];
4899
4840
  declare const clineAskSchema: z.ZodEnum<["followup", "command", "command_output", "completion_result", "tool", "api_req_failed", "resume_task", "resume_completed_task", "mistake_limit_reached", "browser_action_launch", "use_mcp_server", "auto_approval_max_req_reached"]>;
4900
4841
  type ClineAsk = z.infer<typeof clineAskSchema>;
4901
4842
  /**
4902
4843
  * ClineSay
4903
4844
  */
4845
+ /**
4846
+ * Array of possible say types that represent different kinds of messages the assistant can send.
4847
+ * These are used to categorize and handle various types of communication from the LLM to the user.
4848
+ *
4849
+ * @constant
4850
+ * @readonly
4851
+ *
4852
+ * Say type descriptions:
4853
+ * - `error`: General error message
4854
+ * - `api_req_started`: Indicates an API request has been initiated
4855
+ * - `api_req_finished`: Indicates an API request has completed successfully
4856
+ * - `api_req_retried`: Indicates an API request is being retried after a failure
4857
+ * - `api_req_retry_delayed`: Indicates an API request retry has been delayed
4858
+ * - `api_req_deleted`: Indicates an API request has been deleted/cancelled
4859
+ * - `text`: General text message or assistant response
4860
+ * - `reasoning`: Assistant's reasoning or thought process (often hidden from user)
4861
+ * - `completion_result`: Final result of task completion
4862
+ * - `user_feedback`: Message containing user feedback
4863
+ * - `user_feedback_diff`: Diff-formatted feedback from user showing requested changes
4864
+ * - `command_output`: Output from an executed command
4865
+ * - `shell_integration_warning`: Warning about shell integration issues or limitations
4866
+ * - `browser_action`: Action performed in the browser
4867
+ * - `browser_action_result`: Result of a browser action
4868
+ * - `mcp_server_request_started`: MCP server request has been initiated
4869
+ * - `mcp_server_response`: Response received from MCP server
4870
+ * - `subtask_result`: Result of a completed subtask
4871
+ * - `checkpoint_saved`: Indicates a checkpoint has been saved
4872
+ * - `rooignore_error`: Error related to .rooignore file processing
4873
+ * - `diff_error`: Error occurred while applying a diff/patch
4874
+ * - `condense_context`: Context condensation/summarization has started
4875
+ * - `condense_context_error`: Error occurred during context condensation
4876
+ * - `codebase_search_result`: Results from searching the codebase
4877
+ */
4904
4878
  declare const clineSays: readonly ["error", "api_req_started", "api_req_finished", "api_req_retried", "api_req_retry_delayed", "api_req_deleted", "text", "reasoning", "completion_result", "user_feedback", "user_feedback_diff", "command_output", "shell_integration_warning", "browser_action", "browser_action_result", "mcp_server_request_started", "mcp_server_response", "subtask_result", "checkpoint_saved", "rooignore_error", "diff_error", "condense_context", "condense_context_error", "codebase_search_result"];
4905
4879
  declare const clineSaySchema: z.ZodEnum<["error", "api_req_started", "api_req_finished", "api_req_retried", "api_req_retry_delayed", "api_req_deleted", "text", "reasoning", "completion_result", "user_feedback", "user_feedback_diff", "command_output", "shell_integration_warning", "browser_action", "browser_action_result", "mcp_server_request_started", "mcp_server_response", "subtask_result", "checkpoint_saved", "rooignore_error", "diff_error", "condense_context", "condense_context_error", "codebase_search_result"]>;
4906
4880
  type ClineSay = z.infer<typeof clineSaySchema>;
@@ -4978,6 +4952,7 @@ declare const clineMessageSchema: z.ZodObject<{
4978
4952
  newContextTokens: number;
4979
4953
  summary: string;
4980
4954
  }>>;
4955
+ isProtected: z.ZodOptional<z.ZodBoolean>;
4981
4956
  }, "strip", z.ZodTypeAny, {
4982
4957
  type: "ask" | "say";
4983
4958
  ts: number;
@@ -4999,6 +4974,7 @@ declare const clineMessageSchema: z.ZodObject<{
4999
4974
  newContextTokens: number;
5000
4975
  summary: string;
5001
4976
  } | undefined;
4977
+ isProtected?: boolean | undefined;
5002
4978
  }, {
5003
4979
  type: "ask" | "say";
5004
4980
  ts: number;
@@ -5020,6 +4996,7 @@ declare const clineMessageSchema: z.ZodObject<{
5020
4996
  newContextTokens: number;
5021
4997
  summary: string;
5022
4998
  } | undefined;
4999
+ isProtected?: boolean | undefined;
5023
5000
  }>;
5024
5001
  type ClineMessage = z.infer<typeof clineMessageSchema>;
5025
5002
  /**
@@ -5136,6 +5113,7 @@ declare const rooCodeEventsSchema: z.ZodObject<{
5136
5113
  newContextTokens: number;
5137
5114
  summary: string;
5138
5115
  }>>;
5116
+ isProtected: z.ZodOptional<z.ZodBoolean>;
5139
5117
  }, "strip", z.ZodTypeAny, {
5140
5118
  type: "ask" | "say";
5141
5119
  ts: number;
@@ -5157,6 +5135,7 @@ declare const rooCodeEventsSchema: z.ZodObject<{
5157
5135
  newContextTokens: number;
5158
5136
  summary: string;
5159
5137
  } | undefined;
5138
+ isProtected?: boolean | undefined;
5160
5139
  }, {
5161
5140
  type: "ask" | "say";
5162
5141
  ts: number;
@@ -5178,6 +5157,7 @@ declare const rooCodeEventsSchema: z.ZodObject<{
5178
5157
  newContextTokens: number;
5179
5158
  summary: string;
5180
5159
  } | undefined;
5160
+ isProtected?: boolean | undefined;
5181
5161
  }>;
5182
5162
  }, "strip", z.ZodTypeAny, {
5183
5163
  message: {
@@ -5201,6 +5181,7 @@ declare const rooCodeEventsSchema: z.ZodObject<{
5201
5181
  newContextTokens: number;
5202
5182
  summary: string;
5203
5183
  } | undefined;
5184
+ isProtected?: boolean | undefined;
5204
5185
  };
5205
5186
  taskId: string;
5206
5187
  action: "created" | "updated";
@@ -5226,6 +5207,7 @@ declare const rooCodeEventsSchema: z.ZodObject<{
5226
5207
  newContextTokens: number;
5227
5208
  summary: string;
5228
5209
  } | undefined;
5210
+ isProtected?: boolean | undefined;
5229
5211
  };
5230
5212
  taskId: string;
5231
5213
  action: "created" | "updated";
@@ -5315,6 +5297,7 @@ declare const rooCodeEventsSchema: z.ZodObject<{
5315
5297
  newContextTokens: number;
5316
5298
  summary: string;
5317
5299
  } | undefined;
5300
+ isProtected?: boolean | undefined;
5318
5301
  };
5319
5302
  taskId: string;
5320
5303
  action: "created" | "updated";
@@ -5370,6 +5353,7 @@ declare const rooCodeEventsSchema: z.ZodObject<{
5370
5353
  newContextTokens: number;
5371
5354
  summary: string;
5372
5355
  } | undefined;
5356
+ isProtected?: boolean | undefined;
5373
5357
  };
5374
5358
  taskId: string;
5375
5359
  action: "created" | "updated";
@@ -5679,6 +5663,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
5679
5663
  alwaysAllowReadOnlyOutsideWorkspace: z.ZodOptional<z.ZodBoolean>;
5680
5664
  alwaysAllowWrite: z.ZodOptional<z.ZodBoolean>;
5681
5665
  alwaysAllowWriteOutsideWorkspace: z.ZodOptional<z.ZodBoolean>;
5666
+ alwaysAllowWriteProtected: z.ZodOptional<z.ZodBoolean>;
5682
5667
  writeDelayMs: z.ZodOptional<z.ZodNumber>;
5683
5668
  alwaysAllowBrowser: z.ZodOptional<z.ZodBoolean>;
5684
5669
  alwaysApproveResubmit: z.ZodOptional<z.ZodBoolean>;
@@ -5721,20 +5706,20 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
5721
5706
  diffEnabled: z.ZodOptional<z.ZodBoolean>;
5722
5707
  fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
5723
5708
  experiments: z.ZodOptional<z.ZodObject<{
5724
- powerSteering: z.ZodBoolean;
5725
- marketplace: z.ZodBoolean;
5726
- concurrentFileReads: z.ZodBoolean;
5727
- disableCompletionCommand: z.ZodBoolean;
5709
+ powerSteering: z.ZodOptional<z.ZodBoolean>;
5710
+ disableCompletionCommand: z.ZodOptional<z.ZodBoolean>;
5711
+ marketplace: z.ZodOptional<z.ZodBoolean>;
5712
+ multiFileApplyDiff: z.ZodOptional<z.ZodBoolean>;
5728
5713
  }, "strip", z.ZodTypeAny, {
5729
- powerSteering: boolean;
5730
- marketplace: boolean;
5731
- concurrentFileReads: boolean;
5732
- disableCompletionCommand: boolean;
5714
+ powerSteering?: boolean | undefined;
5715
+ disableCompletionCommand?: boolean | undefined;
5716
+ marketplace?: boolean | undefined;
5717
+ multiFileApplyDiff?: boolean | undefined;
5733
5718
  }, {
5734
- powerSteering: boolean;
5735
- marketplace: boolean;
5736
- concurrentFileReads: boolean;
5737
- disableCompletionCommand: boolean;
5719
+ powerSteering?: boolean | undefined;
5720
+ disableCompletionCommand?: boolean | undefined;
5721
+ marketplace?: boolean | undefined;
5722
+ multiFileApplyDiff?: boolean | undefined;
5738
5723
  }>>;
5739
5724
  codebaseIndexModels: z.ZodOptional<z.ZodObject<{
5740
5725
  openai: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -5798,7 +5783,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
5798
5783
  codebaseIndexEmbedderBaseUrl?: string | undefined;
5799
5784
  codebaseIndexEmbedderModelId?: string | undefined;
5800
5785
  }>>;
5801
- language: z.ZodOptional<z.ZodEnum<["ca", "de", "en", "es", "fr", "hi", "it", "ja", "ko", "nl", "pl", "pt-BR", "ru", "tr", "vi", "zh-CN", "zh-TW"]>>;
5786
+ language: z.ZodOptional<z.ZodEnum<["ca", "de", "en", "es", "fr", "hi", "id", "it", "ja", "ko", "nl", "pl", "pt-BR", "ru", "tr", "vi", "zh-CN", "zh-TW"]>>;
5802
5787
  telemetrySetting: z.ZodOptional<z.ZodEnum<["unset", "enabled", "disabled"]>>;
5803
5788
  mcpEnabled: z.ZodOptional<z.ZodBoolean>;
5804
5789
  enableMcpServerCreation: z.ZodOptional<z.ZodBoolean>;
@@ -5978,7 +5963,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
5978
5963
  litellmBaseUrl?: string | undefined;
5979
5964
  litellmApiKey?: string | undefined;
5980
5965
  litellmModelId?: string | undefined;
5981
- language?: "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
5966
+ language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
5982
5967
  mode?: string | undefined;
5983
5968
  customInstructions?: string | undefined;
5984
5969
  customModes?: {
@@ -6021,6 +6006,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
6021
6006
  alwaysAllowReadOnlyOutsideWorkspace?: boolean | undefined;
6022
6007
  alwaysAllowWrite?: boolean | undefined;
6023
6008
  alwaysAllowWriteOutsideWorkspace?: boolean | undefined;
6009
+ alwaysAllowWriteProtected?: boolean | undefined;
6024
6010
  writeDelayMs?: number | undefined;
6025
6011
  alwaysAllowBrowser?: boolean | undefined;
6026
6012
  alwaysApproveResubmit?: boolean | undefined;
@@ -6060,10 +6046,10 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
6060
6046
  terminalZdotdir?: boolean | undefined;
6061
6047
  terminalCompressProgressBar?: boolean | undefined;
6062
6048
  experiments?: {
6063
- powerSteering: boolean;
6064
- marketplace: boolean;
6065
- concurrentFileReads: boolean;
6066
- disableCompletionCommand: boolean;
6049
+ powerSteering?: boolean | undefined;
6050
+ disableCompletionCommand?: boolean | undefined;
6051
+ marketplace?: boolean | undefined;
6052
+ multiFileApplyDiff?: boolean | undefined;
6067
6053
  } | undefined;
6068
6054
  codebaseIndexModels?: {
6069
6055
  openai?: Record<string, {
@@ -6207,7 +6193,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
6207
6193
  litellmBaseUrl?: string | undefined;
6208
6194
  litellmApiKey?: string | undefined;
6209
6195
  litellmModelId?: string | undefined;
6210
- language?: "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
6196
+ language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
6211
6197
  mode?: string | undefined;
6212
6198
  customInstructions?: string | undefined;
6213
6199
  customModes?: {
@@ -6250,6 +6236,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
6250
6236
  alwaysAllowReadOnlyOutsideWorkspace?: boolean | undefined;
6251
6237
  alwaysAllowWrite?: boolean | undefined;
6252
6238
  alwaysAllowWriteOutsideWorkspace?: boolean | undefined;
6239
+ alwaysAllowWriteProtected?: boolean | undefined;
6253
6240
  writeDelayMs?: number | undefined;
6254
6241
  alwaysAllowBrowser?: boolean | undefined;
6255
6242
  alwaysApproveResubmit?: boolean | undefined;
@@ -6289,10 +6276,10 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
6289
6276
  terminalZdotdir?: boolean | undefined;
6290
6277
  terminalCompressProgressBar?: boolean | undefined;
6291
6278
  experiments?: {
6292
- powerSteering: boolean;
6293
- marketplace: boolean;
6294
- concurrentFileReads: boolean;
6295
- disableCompletionCommand: boolean;
6279
+ powerSteering?: boolean | undefined;
6280
+ disableCompletionCommand?: boolean | undefined;
6281
+ marketplace?: boolean | undefined;
6282
+ multiFileApplyDiff?: boolean | undefined;
6296
6283
  } | undefined;
6297
6284
  codebaseIndexModels?: {
6298
6285
  openai?: Record<string, {
@@ -6442,7 +6429,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
6442
6429
  litellmBaseUrl?: string | undefined;
6443
6430
  litellmApiKey?: string | undefined;
6444
6431
  litellmModelId?: string | undefined;
6445
- language?: "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
6432
+ language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
6446
6433
  mode?: string | undefined;
6447
6434
  customInstructions?: string | undefined;
6448
6435
  customModes?: {
@@ -6485,6 +6472,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
6485
6472
  alwaysAllowReadOnlyOutsideWorkspace?: boolean | undefined;
6486
6473
  alwaysAllowWrite?: boolean | undefined;
6487
6474
  alwaysAllowWriteOutsideWorkspace?: boolean | undefined;
6475
+ alwaysAllowWriteProtected?: boolean | undefined;
6488
6476
  writeDelayMs?: number | undefined;
6489
6477
  alwaysAllowBrowser?: boolean | undefined;
6490
6478
  alwaysApproveResubmit?: boolean | undefined;
@@ -6524,10 +6512,10 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
6524
6512
  terminalZdotdir?: boolean | undefined;
6525
6513
  terminalCompressProgressBar?: boolean | undefined;
6526
6514
  experiments?: {
6527
- powerSteering: boolean;
6528
- marketplace: boolean;
6529
- concurrentFileReads: boolean;
6530
- disableCompletionCommand: boolean;
6515
+ powerSteering?: boolean | undefined;
6516
+ disableCompletionCommand?: boolean | undefined;
6517
+ marketplace?: boolean | undefined;
6518
+ multiFileApplyDiff?: boolean | undefined;
6531
6519
  } | undefined;
6532
6520
  codebaseIndexModels?: {
6533
6521
  openai?: Record<string, {
@@ -6676,7 +6664,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
6676
6664
  litellmBaseUrl?: string | undefined;
6677
6665
  litellmApiKey?: string | undefined;
6678
6666
  litellmModelId?: string | undefined;
6679
- language?: "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
6667
+ language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
6680
6668
  mode?: string | undefined;
6681
6669
  customInstructions?: string | undefined;
6682
6670
  customModes?: {
@@ -6719,6 +6707,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
6719
6707
  alwaysAllowReadOnlyOutsideWorkspace?: boolean | undefined;
6720
6708
  alwaysAllowWrite?: boolean | undefined;
6721
6709
  alwaysAllowWriteOutsideWorkspace?: boolean | undefined;
6710
+ alwaysAllowWriteProtected?: boolean | undefined;
6722
6711
  writeDelayMs?: number | undefined;
6723
6712
  alwaysAllowBrowser?: boolean | undefined;
6724
6713
  alwaysApproveResubmit?: boolean | undefined;
@@ -6758,10 +6747,10 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
6758
6747
  terminalZdotdir?: boolean | undefined;
6759
6748
  terminalCompressProgressBar?: boolean | undefined;
6760
6749
  experiments?: {
6761
- powerSteering: boolean;
6762
- marketplace: boolean;
6763
- concurrentFileReads: boolean;
6764
- disableCompletionCommand: boolean;
6750
+ powerSteering?: boolean | undefined;
6751
+ disableCompletionCommand?: boolean | undefined;
6752
+ marketplace?: boolean | undefined;
6753
+ multiFileApplyDiff?: boolean | undefined;
6765
6754
  } | undefined;
6766
6755
  codebaseIndexModels?: {
6767
6756
  openai?: Record<string, {
@@ -6913,7 +6902,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
6913
6902
  litellmBaseUrl?: string | undefined;
6914
6903
  litellmApiKey?: string | undefined;
6915
6904
  litellmModelId?: string | undefined;
6916
- language?: "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
6905
+ language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
6917
6906
  mode?: string | undefined;
6918
6907
  customInstructions?: string | undefined;
6919
6908
  customModes?: {
@@ -6956,6 +6945,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
6956
6945
  alwaysAllowReadOnlyOutsideWorkspace?: boolean | undefined;
6957
6946
  alwaysAllowWrite?: boolean | undefined;
6958
6947
  alwaysAllowWriteOutsideWorkspace?: boolean | undefined;
6948
+ alwaysAllowWriteProtected?: boolean | undefined;
6959
6949
  writeDelayMs?: number | undefined;
6960
6950
  alwaysAllowBrowser?: boolean | undefined;
6961
6951
  alwaysApproveResubmit?: boolean | undefined;
@@ -6995,10 +6985,10 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
6995
6985
  terminalZdotdir?: boolean | undefined;
6996
6986
  terminalCompressProgressBar?: boolean | undefined;
6997
6987
  experiments?: {
6998
- powerSteering: boolean;
6999
- marketplace: boolean;
7000
- concurrentFileReads: boolean;
7001
- disableCompletionCommand: boolean;
6988
+ powerSteering?: boolean | undefined;
6989
+ disableCompletionCommand?: boolean | undefined;
6990
+ marketplace?: boolean | undefined;
6991
+ multiFileApplyDiff?: boolean | undefined;
7002
6992
  } | undefined;
7003
6993
  codebaseIndexModels?: {
7004
6994
  openai?: Record<string, {
@@ -7150,7 +7140,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
7150
7140
  litellmBaseUrl?: string | undefined;
7151
7141
  litellmApiKey?: string | undefined;
7152
7142
  litellmModelId?: string | undefined;
7153
- language?: "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
7143
+ language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
7154
7144
  mode?: string | undefined;
7155
7145
  customInstructions?: string | undefined;
7156
7146
  customModes?: {
@@ -7193,6 +7183,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
7193
7183
  alwaysAllowReadOnlyOutsideWorkspace?: boolean | undefined;
7194
7184
  alwaysAllowWrite?: boolean | undefined;
7195
7185
  alwaysAllowWriteOutsideWorkspace?: boolean | undefined;
7186
+ alwaysAllowWriteProtected?: boolean | undefined;
7196
7187
  writeDelayMs?: number | undefined;
7197
7188
  alwaysAllowBrowser?: boolean | undefined;
7198
7189
  alwaysApproveResubmit?: boolean | undefined;
@@ -7232,10 +7223,10 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
7232
7223
  terminalZdotdir?: boolean | undefined;
7233
7224
  terminalCompressProgressBar?: boolean | undefined;
7234
7225
  experiments?: {
7235
- powerSteering: boolean;
7236
- marketplace: boolean;
7237
- concurrentFileReads: boolean;
7238
- disableCompletionCommand: boolean;
7226
+ powerSteering?: boolean | undefined;
7227
+ disableCompletionCommand?: boolean | undefined;
7228
+ marketplace?: boolean | undefined;
7229
+ multiFileApplyDiff?: boolean | undefined;
7239
7230
  } | undefined;
7240
7231
  codebaseIndexModels?: {
7241
7232
  openai?: Record<string, {
@@ -7336,6 +7327,7 @@ declare const taskEventSchema: z.ZodDiscriminatedUnion<"eventName", [z.ZodObject
7336
7327
  newContextTokens: number;
7337
7328
  summary: string;
7338
7329
  }>>;
7330
+ isProtected: z.ZodOptional<z.ZodBoolean>;
7339
7331
  }, "strip", z.ZodTypeAny, {
7340
7332
  type: "ask" | "say";
7341
7333
  ts: number;
@@ -7357,6 +7349,7 @@ declare const taskEventSchema: z.ZodDiscriminatedUnion<"eventName", [z.ZodObject
7357
7349
  newContextTokens: number;
7358
7350
  summary: string;
7359
7351
  } | undefined;
7352
+ isProtected?: boolean | undefined;
7360
7353
  }, {
7361
7354
  type: "ask" | "say";
7362
7355
  ts: number;
@@ -7378,6 +7371,7 @@ declare const taskEventSchema: z.ZodDiscriminatedUnion<"eventName", [z.ZodObject
7378
7371
  newContextTokens: number;
7379
7372
  summary: string;
7380
7373
  } | undefined;
7374
+ isProtected?: boolean | undefined;
7381
7375
  }>;
7382
7376
  }, "strip", z.ZodTypeAny, {
7383
7377
  message: {
@@ -7401,6 +7395,7 @@ declare const taskEventSchema: z.ZodDiscriminatedUnion<"eventName", [z.ZodObject
7401
7395
  newContextTokens: number;
7402
7396
  summary: string;
7403
7397
  } | undefined;
7398
+ isProtected?: boolean | undefined;
7404
7399
  };
7405
7400
  taskId: string;
7406
7401
  action: "created" | "updated";
@@ -7426,6 +7421,7 @@ declare const taskEventSchema: z.ZodDiscriminatedUnion<"eventName", [z.ZodObject
7426
7421
  newContextTokens: number;
7427
7422
  summary: string;
7428
7423
  } | undefined;
7424
+ isProtected?: boolean | undefined;
7429
7425
  };
7430
7426
  taskId: string;
7431
7427
  action: "created" | "updated";
@@ -7455,6 +7451,7 @@ declare const taskEventSchema: z.ZodDiscriminatedUnion<"eventName", [z.ZodObject
7455
7451
  newContextTokens: number;
7456
7452
  summary: string;
7457
7453
  } | undefined;
7454
+ isProtected?: boolean | undefined;
7458
7455
  };
7459
7456
  taskId: string;
7460
7457
  action: "created" | "updated";
@@ -7484,6 +7481,7 @@ declare const taskEventSchema: z.ZodDiscriminatedUnion<"eventName", [z.ZodObject
7484
7481
  newContextTokens: number;
7485
7482
  summary: string;
7486
7483
  } | undefined;
7484
+ isProtected?: boolean | undefined;
7487
7485
  };
7488
7486
  taskId: string;
7489
7487
  action: "created" | "updated";
@@ -8032,6 +8030,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
8032
8030
  alwaysAllowReadOnlyOutsideWorkspace: z.ZodOptional<z.ZodBoolean>;
8033
8031
  alwaysAllowWrite: z.ZodOptional<z.ZodBoolean>;
8034
8032
  alwaysAllowWriteOutsideWorkspace: z.ZodOptional<z.ZodBoolean>;
8033
+ alwaysAllowWriteProtected: z.ZodOptional<z.ZodBoolean>;
8035
8034
  writeDelayMs: z.ZodOptional<z.ZodNumber>;
8036
8035
  alwaysAllowBrowser: z.ZodOptional<z.ZodBoolean>;
8037
8036
  alwaysApproveResubmit: z.ZodOptional<z.ZodBoolean>;
@@ -8074,20 +8073,20 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
8074
8073
  diffEnabled: z.ZodOptional<z.ZodBoolean>;
8075
8074
  fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
8076
8075
  experiments: z.ZodOptional<z.ZodObject<{
8077
- powerSteering: z.ZodBoolean;
8078
- marketplace: z.ZodBoolean;
8079
- concurrentFileReads: z.ZodBoolean;
8080
- disableCompletionCommand: z.ZodBoolean;
8076
+ powerSteering: z.ZodOptional<z.ZodBoolean>;
8077
+ disableCompletionCommand: z.ZodOptional<z.ZodBoolean>;
8078
+ marketplace: z.ZodOptional<z.ZodBoolean>;
8079
+ multiFileApplyDiff: z.ZodOptional<z.ZodBoolean>;
8081
8080
  }, "strip", z.ZodTypeAny, {
8082
- powerSteering: boolean;
8083
- marketplace: boolean;
8084
- concurrentFileReads: boolean;
8085
- disableCompletionCommand: boolean;
8081
+ powerSteering?: boolean | undefined;
8082
+ disableCompletionCommand?: boolean | undefined;
8083
+ marketplace?: boolean | undefined;
8084
+ multiFileApplyDiff?: boolean | undefined;
8086
8085
  }, {
8087
- powerSteering: boolean;
8088
- marketplace: boolean;
8089
- concurrentFileReads: boolean;
8090
- disableCompletionCommand: boolean;
8086
+ powerSteering?: boolean | undefined;
8087
+ disableCompletionCommand?: boolean | undefined;
8088
+ marketplace?: boolean | undefined;
8089
+ multiFileApplyDiff?: boolean | undefined;
8091
8090
  }>>;
8092
8091
  codebaseIndexModels: z.ZodOptional<z.ZodObject<{
8093
8092
  openai: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -8151,7 +8150,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
8151
8150
  codebaseIndexEmbedderBaseUrl?: string | undefined;
8152
8151
  codebaseIndexEmbedderModelId?: string | undefined;
8153
8152
  }>>;
8154
- language: z.ZodOptional<z.ZodEnum<["ca", "de", "en", "es", "fr", "hi", "it", "ja", "ko", "nl", "pl", "pt-BR", "ru", "tr", "vi", "zh-CN", "zh-TW"]>>;
8153
+ language: z.ZodOptional<z.ZodEnum<["ca", "de", "en", "es", "fr", "hi", "id", "it", "ja", "ko", "nl", "pl", "pt-BR", "ru", "tr", "vi", "zh-CN", "zh-TW"]>>;
8155
8154
  telemetrySetting: z.ZodOptional<z.ZodEnum<["unset", "enabled", "disabled"]>>;
8156
8155
  mcpEnabled: z.ZodOptional<z.ZodBoolean>;
8157
8156
  enableMcpServerCreation: z.ZodOptional<z.ZodBoolean>;
@@ -8331,7 +8330,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
8331
8330
  litellmBaseUrl?: string | undefined;
8332
8331
  litellmApiKey?: string | undefined;
8333
8332
  litellmModelId?: string | undefined;
8334
- language?: "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
8333
+ language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
8335
8334
  mode?: string | undefined;
8336
8335
  customInstructions?: string | undefined;
8337
8336
  customModes?: {
@@ -8374,6 +8373,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
8374
8373
  alwaysAllowReadOnlyOutsideWorkspace?: boolean | undefined;
8375
8374
  alwaysAllowWrite?: boolean | undefined;
8376
8375
  alwaysAllowWriteOutsideWorkspace?: boolean | undefined;
8376
+ alwaysAllowWriteProtected?: boolean | undefined;
8377
8377
  writeDelayMs?: number | undefined;
8378
8378
  alwaysAllowBrowser?: boolean | undefined;
8379
8379
  alwaysApproveResubmit?: boolean | undefined;
@@ -8413,10 +8413,10 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
8413
8413
  terminalZdotdir?: boolean | undefined;
8414
8414
  terminalCompressProgressBar?: boolean | undefined;
8415
8415
  experiments?: {
8416
- powerSteering: boolean;
8417
- marketplace: boolean;
8418
- concurrentFileReads: boolean;
8419
- disableCompletionCommand: boolean;
8416
+ powerSteering?: boolean | undefined;
8417
+ disableCompletionCommand?: boolean | undefined;
8418
+ marketplace?: boolean | undefined;
8419
+ multiFileApplyDiff?: boolean | undefined;
8420
8420
  } | undefined;
8421
8421
  codebaseIndexModels?: {
8422
8422
  openai?: Record<string, {
@@ -8560,7 +8560,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
8560
8560
  litellmBaseUrl?: string | undefined;
8561
8561
  litellmApiKey?: string | undefined;
8562
8562
  litellmModelId?: string | undefined;
8563
- language?: "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
8563
+ language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
8564
8564
  mode?: string | undefined;
8565
8565
  customInstructions?: string | undefined;
8566
8566
  customModes?: {
@@ -8603,6 +8603,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
8603
8603
  alwaysAllowReadOnlyOutsideWorkspace?: boolean | undefined;
8604
8604
  alwaysAllowWrite?: boolean | undefined;
8605
8605
  alwaysAllowWriteOutsideWorkspace?: boolean | undefined;
8606
+ alwaysAllowWriteProtected?: boolean | undefined;
8606
8607
  writeDelayMs?: number | undefined;
8607
8608
  alwaysAllowBrowser?: boolean | undefined;
8608
8609
  alwaysApproveResubmit?: boolean | undefined;
@@ -8642,10 +8643,10 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
8642
8643
  terminalZdotdir?: boolean | undefined;
8643
8644
  terminalCompressProgressBar?: boolean | undefined;
8644
8645
  experiments?: {
8645
- powerSteering: boolean;
8646
- marketplace: boolean;
8647
- concurrentFileReads: boolean;
8648
- disableCompletionCommand: boolean;
8646
+ powerSteering?: boolean | undefined;
8647
+ disableCompletionCommand?: boolean | undefined;
8648
+ marketplace?: boolean | undefined;
8649
+ multiFileApplyDiff?: boolean | undefined;
8649
8650
  } | undefined;
8650
8651
  codebaseIndexModels?: {
8651
8652
  openai?: Record<string, {
@@ -8795,7 +8796,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
8795
8796
  litellmBaseUrl?: string | undefined;
8796
8797
  litellmApiKey?: string | undefined;
8797
8798
  litellmModelId?: string | undefined;
8798
- language?: "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
8799
+ language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
8799
8800
  mode?: string | undefined;
8800
8801
  customInstructions?: string | undefined;
8801
8802
  customModes?: {
@@ -8838,6 +8839,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
8838
8839
  alwaysAllowReadOnlyOutsideWorkspace?: boolean | undefined;
8839
8840
  alwaysAllowWrite?: boolean | undefined;
8840
8841
  alwaysAllowWriteOutsideWorkspace?: boolean | undefined;
8842
+ alwaysAllowWriteProtected?: boolean | undefined;
8841
8843
  writeDelayMs?: number | undefined;
8842
8844
  alwaysAllowBrowser?: boolean | undefined;
8843
8845
  alwaysApproveResubmit?: boolean | undefined;
@@ -8877,10 +8879,10 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
8877
8879
  terminalZdotdir?: boolean | undefined;
8878
8880
  terminalCompressProgressBar?: boolean | undefined;
8879
8881
  experiments?: {
8880
- powerSteering: boolean;
8881
- marketplace: boolean;
8882
- concurrentFileReads: boolean;
8883
- disableCompletionCommand: boolean;
8882
+ powerSteering?: boolean | undefined;
8883
+ disableCompletionCommand?: boolean | undefined;
8884
+ marketplace?: boolean | undefined;
8885
+ multiFileApplyDiff?: boolean | undefined;
8884
8886
  } | undefined;
8885
8887
  codebaseIndexModels?: {
8886
8888
  openai?: Record<string, {
@@ -9029,7 +9031,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
9029
9031
  litellmBaseUrl?: string | undefined;
9030
9032
  litellmApiKey?: string | undefined;
9031
9033
  litellmModelId?: string | undefined;
9032
- language?: "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
9034
+ language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
9033
9035
  mode?: string | undefined;
9034
9036
  customInstructions?: string | undefined;
9035
9037
  customModes?: {
@@ -9072,6 +9074,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
9072
9074
  alwaysAllowReadOnlyOutsideWorkspace?: boolean | undefined;
9073
9075
  alwaysAllowWrite?: boolean | undefined;
9074
9076
  alwaysAllowWriteOutsideWorkspace?: boolean | undefined;
9077
+ alwaysAllowWriteProtected?: boolean | undefined;
9075
9078
  writeDelayMs?: number | undefined;
9076
9079
  alwaysAllowBrowser?: boolean | undefined;
9077
9080
  alwaysApproveResubmit?: boolean | undefined;
@@ -9111,10 +9114,10 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
9111
9114
  terminalZdotdir?: boolean | undefined;
9112
9115
  terminalCompressProgressBar?: boolean | undefined;
9113
9116
  experiments?: {
9114
- powerSteering: boolean;
9115
- marketplace: boolean;
9116
- concurrentFileReads: boolean;
9117
- disableCompletionCommand: boolean;
9117
+ powerSteering?: boolean | undefined;
9118
+ disableCompletionCommand?: boolean | undefined;
9119
+ marketplace?: boolean | undefined;
9120
+ multiFileApplyDiff?: boolean | undefined;
9118
9121
  } | undefined;
9119
9122
  codebaseIndexModels?: {
9120
9123
  openai?: Record<string, {
@@ -9266,7 +9269,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
9266
9269
  litellmBaseUrl?: string | undefined;
9267
9270
  litellmApiKey?: string | undefined;
9268
9271
  litellmModelId?: string | undefined;
9269
- language?: "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
9272
+ language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
9270
9273
  mode?: string | undefined;
9271
9274
  customInstructions?: string | undefined;
9272
9275
  customModes?: {
@@ -9309,6 +9312,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
9309
9312
  alwaysAllowReadOnlyOutsideWorkspace?: boolean | undefined;
9310
9313
  alwaysAllowWrite?: boolean | undefined;
9311
9314
  alwaysAllowWriteOutsideWorkspace?: boolean | undefined;
9315
+ alwaysAllowWriteProtected?: boolean | undefined;
9312
9316
  writeDelayMs?: number | undefined;
9313
9317
  alwaysAllowBrowser?: boolean | undefined;
9314
9318
  alwaysApproveResubmit?: boolean | undefined;
@@ -9348,10 +9352,10 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
9348
9352
  terminalZdotdir?: boolean | undefined;
9349
9353
  terminalCompressProgressBar?: boolean | undefined;
9350
9354
  experiments?: {
9351
- powerSteering: boolean;
9352
- marketplace: boolean;
9353
- concurrentFileReads: boolean;
9354
- disableCompletionCommand: boolean;
9355
+ powerSteering?: boolean | undefined;
9356
+ disableCompletionCommand?: boolean | undefined;
9357
+ marketplace?: boolean | undefined;
9358
+ multiFileApplyDiff?: boolean | undefined;
9355
9359
  } | undefined;
9356
9360
  codebaseIndexModels?: {
9357
9361
  openai?: Record<string, {
@@ -9503,7 +9507,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
9503
9507
  litellmBaseUrl?: string | undefined;
9504
9508
  litellmApiKey?: string | undefined;
9505
9509
  litellmModelId?: string | undefined;
9506
- language?: "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
9510
+ language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
9507
9511
  mode?: string | undefined;
9508
9512
  customInstructions?: string | undefined;
9509
9513
  customModes?: {
@@ -9546,6 +9550,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
9546
9550
  alwaysAllowReadOnlyOutsideWorkspace?: boolean | undefined;
9547
9551
  alwaysAllowWrite?: boolean | undefined;
9548
9552
  alwaysAllowWriteOutsideWorkspace?: boolean | undefined;
9553
+ alwaysAllowWriteProtected?: boolean | undefined;
9549
9554
  writeDelayMs?: number | undefined;
9550
9555
  alwaysAllowBrowser?: boolean | undefined;
9551
9556
  alwaysApproveResubmit?: boolean | undefined;
@@ -9585,10 +9590,10 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
9585
9590
  terminalZdotdir?: boolean | undefined;
9586
9591
  terminalCompressProgressBar?: boolean | undefined;
9587
9592
  experiments?: {
9588
- powerSteering: boolean;
9589
- marketplace: boolean;
9590
- concurrentFileReads: boolean;
9591
- disableCompletionCommand: boolean;
9593
+ powerSteering?: boolean | undefined;
9594
+ disableCompletionCommand?: boolean | undefined;
9595
+ marketplace?: boolean | undefined;
9596
+ multiFileApplyDiff?: boolean | undefined;
9592
9597
  } | undefined;
9593
9598
  codebaseIndexModels?: {
9594
9599
  openai?: Record<string, {
@@ -9762,7 +9767,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
9762
9767
  litellmBaseUrl?: string | undefined;
9763
9768
  litellmApiKey?: string | undefined;
9764
9769
  litellmModelId?: string | undefined;
9765
- language?: "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
9770
+ language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
9766
9771
  mode?: string | undefined;
9767
9772
  customInstructions?: string | undefined;
9768
9773
  customModes?: {
@@ -9805,6 +9810,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
9805
9810
  alwaysAllowReadOnlyOutsideWorkspace?: boolean | undefined;
9806
9811
  alwaysAllowWrite?: boolean | undefined;
9807
9812
  alwaysAllowWriteOutsideWorkspace?: boolean | undefined;
9813
+ alwaysAllowWriteProtected?: boolean | undefined;
9808
9814
  writeDelayMs?: number | undefined;
9809
9815
  alwaysAllowBrowser?: boolean | undefined;
9810
9816
  alwaysApproveResubmit?: boolean | undefined;
@@ -9844,10 +9850,10 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
9844
9850
  terminalZdotdir?: boolean | undefined;
9845
9851
  terminalCompressProgressBar?: boolean | undefined;
9846
9852
  experiments?: {
9847
- powerSteering: boolean;
9848
- marketplace: boolean;
9849
- concurrentFileReads: boolean;
9850
- disableCompletionCommand: boolean;
9853
+ powerSteering?: boolean | undefined;
9854
+ disableCompletionCommand?: boolean | undefined;
9855
+ marketplace?: boolean | undefined;
9856
+ multiFileApplyDiff?: boolean | undefined;
9851
9857
  } | undefined;
9852
9858
  codebaseIndexModels?: {
9853
9859
  openai?: Record<string, {
@@ -10010,7 +10016,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
10010
10016
  litellmBaseUrl?: string | undefined;
10011
10017
  litellmApiKey?: string | undefined;
10012
10018
  litellmModelId?: string | undefined;
10013
- language?: "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
10019
+ language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
10014
10020
  mode?: string | undefined;
10015
10021
  customInstructions?: string | undefined;
10016
10022
  customModes?: {
@@ -10053,6 +10059,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
10053
10059
  alwaysAllowReadOnlyOutsideWorkspace?: boolean | undefined;
10054
10060
  alwaysAllowWrite?: boolean | undefined;
10055
10061
  alwaysAllowWriteOutsideWorkspace?: boolean | undefined;
10062
+ alwaysAllowWriteProtected?: boolean | undefined;
10056
10063
  writeDelayMs?: number | undefined;
10057
10064
  alwaysAllowBrowser?: boolean | undefined;
10058
10065
  alwaysApproveResubmit?: boolean | undefined;
@@ -10092,10 +10099,10 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
10092
10099
  terminalZdotdir?: boolean | undefined;
10093
10100
  terminalCompressProgressBar?: boolean | undefined;
10094
10101
  experiments?: {
10095
- powerSteering: boolean;
10096
- marketplace: boolean;
10097
- concurrentFileReads: boolean;
10098
- disableCompletionCommand: boolean;
10102
+ powerSteering?: boolean | undefined;
10103
+ disableCompletionCommand?: boolean | undefined;
10104
+ marketplace?: boolean | undefined;
10105
+ multiFileApplyDiff?: boolean | undefined;
10099
10106
  } | undefined;
10100
10107
  codebaseIndexModels?: {
10101
10108
  openai?: Record<string, {
@@ -10185,6 +10192,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
10185
10192
  newContextTokens: number;
10186
10193
  summary: string;
10187
10194
  }>>;
10195
+ isProtected: z.ZodOptional<z.ZodBoolean>;
10188
10196
  }, "strip", z.ZodTypeAny, {
10189
10197
  type: "ask" | "say";
10190
10198
  ts: number;
@@ -10206,6 +10214,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
10206
10214
  newContextTokens: number;
10207
10215
  summary: string;
10208
10216
  } | undefined;
10217
+ isProtected?: boolean | undefined;
10209
10218
  }, {
10210
10219
  type: "ask" | "say";
10211
10220
  ts: number;
@@ -10227,6 +10236,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
10227
10236
  newContextTokens: number;
10228
10237
  summary: string;
10229
10238
  } | undefined;
10239
+ isProtected?: boolean | undefined;
10230
10240
  }>;
10231
10241
  }, "strip", z.ZodTypeAny, {
10232
10242
  message: {
@@ -10250,6 +10260,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
10250
10260
  newContextTokens: number;
10251
10261
  summary: string;
10252
10262
  } | undefined;
10263
+ isProtected?: boolean | undefined;
10253
10264
  };
10254
10265
  taskId: string;
10255
10266
  action: "created" | "updated";
@@ -10275,6 +10286,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
10275
10286
  newContextTokens: number;
10276
10287
  summary: string;
10277
10288
  } | undefined;
10289
+ isProtected?: boolean | undefined;
10278
10290
  };
10279
10291
  taskId: string;
10280
10292
  action: "created" | "updated";
@@ -10304,6 +10316,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
10304
10316
  newContextTokens: number;
10305
10317
  summary: string;
10306
10318
  } | undefined;
10319
+ isProtected?: boolean | undefined;
10307
10320
  };
10308
10321
  taskId: string;
10309
10322
  action: "created" | "updated";
@@ -10333,6 +10346,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
10333
10346
  newContextTokens: number;
10334
10347
  summary: string;
10335
10348
  } | undefined;
10349
+ isProtected?: boolean | undefined;
10336
10350
  };
10337
10351
  taskId: string;
10338
10352
  action: "created" | "updated";
@@ -10606,6 +10620,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
10606
10620
  newContextTokens: number;
10607
10621
  summary: string;
10608
10622
  } | undefined;
10623
+ isProtected?: boolean | undefined;
10609
10624
  };
10610
10625
  taskId: string;
10611
10626
  action: "created" | "updated";
@@ -10709,6 +10724,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
10709
10724
  newContextTokens: number;
10710
10725
  summary: string;
10711
10726
  } | undefined;
10727
+ isProtected?: boolean | undefined;
10712
10728
  };
10713
10729
  taskId: string;
10714
10730
  action: "created" | "updated";
@@ -11056,6 +11072,29 @@ interface CloudUserInfo {
11056
11072
  name?: string;
11057
11073
  email?: string;
11058
11074
  picture?: string;
11075
+ organizationId?: string;
11076
+ organizationName?: string;
11077
+ organizationRole?: string;
11078
+ }
11079
+ /**
11080
+ * CloudOrganization Types
11081
+ */
11082
+ interface CloudOrganization {
11083
+ id: string;
11084
+ name: string;
11085
+ slug?: string;
11086
+ image_url?: string;
11087
+ has_image?: boolean;
11088
+ created_at?: number;
11089
+ updated_at?: number;
11090
+ }
11091
+ interface CloudOrganizationMembership {
11092
+ id: string;
11093
+ organization: CloudOrganization;
11094
+ role: string;
11095
+ permissions?: string[];
11096
+ created_at?: number;
11097
+ updated_at?: number;
11059
11098
  }
11060
11099
  /**
11061
11100
  * OrganizationAllowList
@@ -11316,27 +11355,27 @@ type ShareResponse = z.infer<typeof shareResponseSchema>;
11316
11355
  /**
11317
11356
  * ExperimentId
11318
11357
  */
11319
- declare const experimentIds: readonly ["powerSteering", "marketplace", "concurrentFileReads", "disableCompletionCommand"];
11320
- declare const experimentIdsSchema: z.ZodEnum<["powerSteering", "marketplace", "concurrentFileReads", "disableCompletionCommand"]>;
11358
+ declare const experimentIds: readonly ["powerSteering", "disableCompletionCommand", "marketplace", "multiFileApplyDiff"];
11359
+ declare const experimentIdsSchema: z.ZodEnum<["powerSteering", "disableCompletionCommand", "marketplace", "multiFileApplyDiff"]>;
11321
11360
  type ExperimentId = z.infer<typeof experimentIdsSchema>;
11322
11361
  /**
11323
11362
  * Experiments
11324
11363
  */
11325
11364
  declare const experimentsSchema: z.ZodObject<{
11326
- powerSteering: z.ZodBoolean;
11327
- marketplace: z.ZodBoolean;
11328
- concurrentFileReads: z.ZodBoolean;
11329
- disableCompletionCommand: z.ZodBoolean;
11365
+ powerSteering: z.ZodOptional<z.ZodBoolean>;
11366
+ disableCompletionCommand: z.ZodOptional<z.ZodBoolean>;
11367
+ marketplace: z.ZodOptional<z.ZodBoolean>;
11368
+ multiFileApplyDiff: z.ZodOptional<z.ZodBoolean>;
11330
11369
  }, "strip", z.ZodTypeAny, {
11331
- powerSteering: boolean;
11332
- marketplace: boolean;
11333
- concurrentFileReads: boolean;
11334
- disableCompletionCommand: boolean;
11370
+ powerSteering?: boolean | undefined;
11371
+ disableCompletionCommand?: boolean | undefined;
11372
+ marketplace?: boolean | undefined;
11373
+ multiFileApplyDiff?: boolean | undefined;
11335
11374
  }, {
11336
- powerSteering: boolean;
11337
- marketplace: boolean;
11338
- concurrentFileReads: boolean;
11339
- disableCompletionCommand: boolean;
11375
+ powerSteering?: boolean | undefined;
11376
+ disableCompletionCommand?: boolean | undefined;
11377
+ marketplace?: boolean | undefined;
11378
+ multiFileApplyDiff?: boolean | undefined;
11340
11379
  }>;
11341
11380
  type Experiments = z.infer<typeof experimentsSchema>;
11342
11381
 
@@ -11382,6 +11421,462 @@ declare const historyItemSchema: z.ZodObject<{
11382
11421
  }>;
11383
11422
  type HistoryItem = z.infer<typeof historyItemSchema>;
11384
11423
 
11424
+ /**
11425
+ * Schema for MCP parameter definitions
11426
+ */
11427
+ declare const mcpParameterSchema: z.ZodObject<{
11428
+ name: z.ZodString;
11429
+ key: z.ZodString;
11430
+ placeholder: z.ZodOptional<z.ZodString>;
11431
+ optional: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
11432
+ }, "strip", z.ZodTypeAny, {
11433
+ name: string;
11434
+ key: string;
11435
+ optional: boolean;
11436
+ placeholder?: string | undefined;
11437
+ }, {
11438
+ name: string;
11439
+ key: string;
11440
+ placeholder?: string | undefined;
11441
+ optional?: boolean | undefined;
11442
+ }>;
11443
+ type McpParameter = z.infer<typeof mcpParameterSchema>;
11444
+ /**
11445
+ * Schema for MCP installation method with name
11446
+ */
11447
+ declare const mcpInstallationMethodSchema: z.ZodObject<{
11448
+ name: z.ZodString;
11449
+ content: z.ZodString;
11450
+ parameters: z.ZodOptional<z.ZodArray<z.ZodObject<{
11451
+ name: z.ZodString;
11452
+ key: z.ZodString;
11453
+ placeholder: z.ZodOptional<z.ZodString>;
11454
+ optional: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
11455
+ }, "strip", z.ZodTypeAny, {
11456
+ name: string;
11457
+ key: string;
11458
+ optional: boolean;
11459
+ placeholder?: string | undefined;
11460
+ }, {
11461
+ name: string;
11462
+ key: string;
11463
+ placeholder?: string | undefined;
11464
+ optional?: boolean | undefined;
11465
+ }>, "many">>;
11466
+ prerequisites: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
11467
+ }, "strip", z.ZodTypeAny, {
11468
+ name: string;
11469
+ content: string;
11470
+ parameters?: {
11471
+ name: string;
11472
+ key: string;
11473
+ optional: boolean;
11474
+ placeholder?: string | undefined;
11475
+ }[] | undefined;
11476
+ prerequisites?: string[] | undefined;
11477
+ }, {
11478
+ name: string;
11479
+ content: string;
11480
+ parameters?: {
11481
+ name: string;
11482
+ key: string;
11483
+ placeholder?: string | undefined;
11484
+ optional?: boolean | undefined;
11485
+ }[] | undefined;
11486
+ prerequisites?: string[] | undefined;
11487
+ }>;
11488
+ type McpInstallationMethod = z.infer<typeof mcpInstallationMethodSchema>;
11489
+ /**
11490
+ * Component type validation
11491
+ */
11492
+ declare const marketplaceItemTypeSchema: z.ZodEnum<["mode", "mcp"]>;
11493
+ type MarketplaceItemType = z.infer<typeof marketplaceItemTypeSchema>;
11494
+ /**
11495
+ * Type-specific schemas for YAML parsing (without type field, added programmatically)
11496
+ */
11497
+ declare const modeMarketplaceItemSchema: z.ZodObject<{
11498
+ id: z.ZodString;
11499
+ name: z.ZodString;
11500
+ description: z.ZodString;
11501
+ author: z.ZodOptional<z.ZodString>;
11502
+ authorUrl: z.ZodOptional<z.ZodString>;
11503
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
11504
+ prerequisites: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
11505
+ } & {
11506
+ content: z.ZodString;
11507
+ }, "strip", z.ZodTypeAny, {
11508
+ description: string;
11509
+ name: string;
11510
+ id: string;
11511
+ content: string;
11512
+ prerequisites?: string[] | undefined;
11513
+ author?: string | undefined;
11514
+ authorUrl?: string | undefined;
11515
+ tags?: string[] | undefined;
11516
+ }, {
11517
+ description: string;
11518
+ name: string;
11519
+ id: string;
11520
+ content: string;
11521
+ prerequisites?: string[] | undefined;
11522
+ author?: string | undefined;
11523
+ authorUrl?: string | undefined;
11524
+ tags?: string[] | undefined;
11525
+ }>;
11526
+ type ModeMarketplaceItem = z.infer<typeof modeMarketplaceItemSchema>;
11527
+ declare const mcpMarketplaceItemSchema: z.ZodObject<{
11528
+ id: z.ZodString;
11529
+ name: z.ZodString;
11530
+ description: z.ZodString;
11531
+ author: z.ZodOptional<z.ZodString>;
11532
+ authorUrl: z.ZodOptional<z.ZodString>;
11533
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
11534
+ prerequisites: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
11535
+ } & {
11536
+ url: z.ZodString;
11537
+ content: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodObject<{
11538
+ name: z.ZodString;
11539
+ content: z.ZodString;
11540
+ parameters: z.ZodOptional<z.ZodArray<z.ZodObject<{
11541
+ name: z.ZodString;
11542
+ key: z.ZodString;
11543
+ placeholder: z.ZodOptional<z.ZodString>;
11544
+ optional: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
11545
+ }, "strip", z.ZodTypeAny, {
11546
+ name: string;
11547
+ key: string;
11548
+ optional: boolean;
11549
+ placeholder?: string | undefined;
11550
+ }, {
11551
+ name: string;
11552
+ key: string;
11553
+ placeholder?: string | undefined;
11554
+ optional?: boolean | undefined;
11555
+ }>, "many">>;
11556
+ prerequisites: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
11557
+ }, "strip", z.ZodTypeAny, {
11558
+ name: string;
11559
+ content: string;
11560
+ parameters?: {
11561
+ name: string;
11562
+ key: string;
11563
+ optional: boolean;
11564
+ placeholder?: string | undefined;
11565
+ }[] | undefined;
11566
+ prerequisites?: string[] | undefined;
11567
+ }, {
11568
+ name: string;
11569
+ content: string;
11570
+ parameters?: {
11571
+ name: string;
11572
+ key: string;
11573
+ placeholder?: string | undefined;
11574
+ optional?: boolean | undefined;
11575
+ }[] | undefined;
11576
+ prerequisites?: string[] | undefined;
11577
+ }>, "many">]>;
11578
+ parameters: z.ZodOptional<z.ZodArray<z.ZodObject<{
11579
+ name: z.ZodString;
11580
+ key: z.ZodString;
11581
+ placeholder: z.ZodOptional<z.ZodString>;
11582
+ optional: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
11583
+ }, "strip", z.ZodTypeAny, {
11584
+ name: string;
11585
+ key: string;
11586
+ optional: boolean;
11587
+ placeholder?: string | undefined;
11588
+ }, {
11589
+ name: string;
11590
+ key: string;
11591
+ placeholder?: string | undefined;
11592
+ optional?: boolean | undefined;
11593
+ }>, "many">>;
11594
+ }, "strip", z.ZodTypeAny, {
11595
+ description: string;
11596
+ name: string;
11597
+ id: string;
11598
+ url: string;
11599
+ content: string | {
11600
+ name: string;
11601
+ content: string;
11602
+ parameters?: {
11603
+ name: string;
11604
+ key: string;
11605
+ optional: boolean;
11606
+ placeholder?: string | undefined;
11607
+ }[] | undefined;
11608
+ prerequisites?: string[] | undefined;
11609
+ }[];
11610
+ parameters?: {
11611
+ name: string;
11612
+ key: string;
11613
+ optional: boolean;
11614
+ placeholder?: string | undefined;
11615
+ }[] | undefined;
11616
+ prerequisites?: string[] | undefined;
11617
+ author?: string | undefined;
11618
+ authorUrl?: string | undefined;
11619
+ tags?: string[] | undefined;
11620
+ }, {
11621
+ description: string;
11622
+ name: string;
11623
+ id: string;
11624
+ url: string;
11625
+ content: string | {
11626
+ name: string;
11627
+ content: string;
11628
+ parameters?: {
11629
+ name: string;
11630
+ key: string;
11631
+ placeholder?: string | undefined;
11632
+ optional?: boolean | undefined;
11633
+ }[] | undefined;
11634
+ prerequisites?: string[] | undefined;
11635
+ }[];
11636
+ parameters?: {
11637
+ name: string;
11638
+ key: string;
11639
+ placeholder?: string | undefined;
11640
+ optional?: boolean | undefined;
11641
+ }[] | undefined;
11642
+ prerequisites?: string[] | undefined;
11643
+ author?: string | undefined;
11644
+ authorUrl?: string | undefined;
11645
+ tags?: string[] | undefined;
11646
+ }>;
11647
+ type McpMarketplaceItem = z.infer<typeof mcpMarketplaceItemSchema>;
11648
+ /**
11649
+ * Unified marketplace item schema using discriminated union
11650
+ */
11651
+ declare const marketplaceItemSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
11652
+ id: z.ZodString;
11653
+ name: z.ZodString;
11654
+ description: z.ZodString;
11655
+ author: z.ZodOptional<z.ZodString>;
11656
+ authorUrl: z.ZodOptional<z.ZodString>;
11657
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
11658
+ prerequisites: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
11659
+ } & {
11660
+ content: z.ZodString;
11661
+ } & {
11662
+ type: z.ZodLiteral<"mode">;
11663
+ }, "strip", z.ZodTypeAny, {
11664
+ type: "mode";
11665
+ description: string;
11666
+ name: string;
11667
+ id: string;
11668
+ content: string;
11669
+ prerequisites?: string[] | undefined;
11670
+ author?: string | undefined;
11671
+ authorUrl?: string | undefined;
11672
+ tags?: string[] | undefined;
11673
+ }, {
11674
+ type: "mode";
11675
+ description: string;
11676
+ name: string;
11677
+ id: string;
11678
+ content: string;
11679
+ prerequisites?: string[] | undefined;
11680
+ author?: string | undefined;
11681
+ authorUrl?: string | undefined;
11682
+ tags?: string[] | undefined;
11683
+ }>, z.ZodObject<{
11684
+ id: z.ZodString;
11685
+ name: z.ZodString;
11686
+ description: z.ZodString;
11687
+ author: z.ZodOptional<z.ZodString>;
11688
+ authorUrl: z.ZodOptional<z.ZodString>;
11689
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
11690
+ prerequisites: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
11691
+ } & {
11692
+ url: z.ZodString;
11693
+ content: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodObject<{
11694
+ name: z.ZodString;
11695
+ content: z.ZodString;
11696
+ parameters: z.ZodOptional<z.ZodArray<z.ZodObject<{
11697
+ name: z.ZodString;
11698
+ key: z.ZodString;
11699
+ placeholder: z.ZodOptional<z.ZodString>;
11700
+ optional: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
11701
+ }, "strip", z.ZodTypeAny, {
11702
+ name: string;
11703
+ key: string;
11704
+ optional: boolean;
11705
+ placeholder?: string | undefined;
11706
+ }, {
11707
+ name: string;
11708
+ key: string;
11709
+ placeholder?: string | undefined;
11710
+ optional?: boolean | undefined;
11711
+ }>, "many">>;
11712
+ prerequisites: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
11713
+ }, "strip", z.ZodTypeAny, {
11714
+ name: string;
11715
+ content: string;
11716
+ parameters?: {
11717
+ name: string;
11718
+ key: string;
11719
+ optional: boolean;
11720
+ placeholder?: string | undefined;
11721
+ }[] | undefined;
11722
+ prerequisites?: string[] | undefined;
11723
+ }, {
11724
+ name: string;
11725
+ content: string;
11726
+ parameters?: {
11727
+ name: string;
11728
+ key: string;
11729
+ placeholder?: string | undefined;
11730
+ optional?: boolean | undefined;
11731
+ }[] | undefined;
11732
+ prerequisites?: string[] | undefined;
11733
+ }>, "many">]>;
11734
+ parameters: z.ZodOptional<z.ZodArray<z.ZodObject<{
11735
+ name: z.ZodString;
11736
+ key: z.ZodString;
11737
+ placeholder: z.ZodOptional<z.ZodString>;
11738
+ optional: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
11739
+ }, "strip", z.ZodTypeAny, {
11740
+ name: string;
11741
+ key: string;
11742
+ optional: boolean;
11743
+ placeholder?: string | undefined;
11744
+ }, {
11745
+ name: string;
11746
+ key: string;
11747
+ placeholder?: string | undefined;
11748
+ optional?: boolean | undefined;
11749
+ }>, "many">>;
11750
+ } & {
11751
+ type: z.ZodLiteral<"mcp">;
11752
+ }, "strip", z.ZodTypeAny, {
11753
+ type: "mcp";
11754
+ description: string;
11755
+ name: string;
11756
+ id: string;
11757
+ url: string;
11758
+ content: string | {
11759
+ name: string;
11760
+ content: string;
11761
+ parameters?: {
11762
+ name: string;
11763
+ key: string;
11764
+ optional: boolean;
11765
+ placeholder?: string | undefined;
11766
+ }[] | undefined;
11767
+ prerequisites?: string[] | undefined;
11768
+ }[];
11769
+ parameters?: {
11770
+ name: string;
11771
+ key: string;
11772
+ optional: boolean;
11773
+ placeholder?: string | undefined;
11774
+ }[] | undefined;
11775
+ prerequisites?: string[] | undefined;
11776
+ author?: string | undefined;
11777
+ authorUrl?: string | undefined;
11778
+ tags?: string[] | undefined;
11779
+ }, {
11780
+ type: "mcp";
11781
+ description: string;
11782
+ name: string;
11783
+ id: string;
11784
+ url: string;
11785
+ content: string | {
11786
+ name: string;
11787
+ content: string;
11788
+ parameters?: {
11789
+ name: string;
11790
+ key: string;
11791
+ placeholder?: string | undefined;
11792
+ optional?: boolean | undefined;
11793
+ }[] | undefined;
11794
+ prerequisites?: string[] | undefined;
11795
+ }[];
11796
+ parameters?: {
11797
+ name: string;
11798
+ key: string;
11799
+ placeholder?: string | undefined;
11800
+ optional?: boolean | undefined;
11801
+ }[] | undefined;
11802
+ prerequisites?: string[] | undefined;
11803
+ author?: string | undefined;
11804
+ authorUrl?: string | undefined;
11805
+ tags?: string[] | undefined;
11806
+ }>]>;
11807
+ type MarketplaceItem = z.infer<typeof marketplaceItemSchema>;
11808
+ /**
11809
+ * Installation options for marketplace items
11810
+ */
11811
+ declare const installMarketplaceItemOptionsSchema: z.ZodObject<{
11812
+ target: z.ZodDefault<z.ZodOptional<z.ZodEnum<["global", "project"]>>>;
11813
+ parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
11814
+ }, "strip", z.ZodTypeAny, {
11815
+ target: "global" | "project";
11816
+ parameters?: Record<string, any> | undefined;
11817
+ }, {
11818
+ parameters?: Record<string, any> | undefined;
11819
+ target?: "global" | "project" | undefined;
11820
+ }>;
11821
+ type InstallMarketplaceItemOptions = z.infer<typeof installMarketplaceItemOptionsSchema>;
11822
+
11823
+ /**
11824
+ * McpExecutionStatus
11825
+ */
11826
+ declare const mcpExecutionStatusSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
11827
+ executionId: z.ZodString;
11828
+ status: z.ZodLiteral<"started">;
11829
+ serverName: z.ZodString;
11830
+ toolName: z.ZodString;
11831
+ }, "strip", z.ZodTypeAny, {
11832
+ status: "started";
11833
+ executionId: string;
11834
+ serverName: string;
11835
+ toolName: string;
11836
+ }, {
11837
+ status: "started";
11838
+ executionId: string;
11839
+ serverName: string;
11840
+ toolName: string;
11841
+ }>, z.ZodObject<{
11842
+ executionId: z.ZodString;
11843
+ status: z.ZodLiteral<"output">;
11844
+ response: z.ZodString;
11845
+ }, "strip", z.ZodTypeAny, {
11846
+ status: "output";
11847
+ executionId: string;
11848
+ response: string;
11849
+ }, {
11850
+ status: "output";
11851
+ executionId: string;
11852
+ response: string;
11853
+ }>, z.ZodObject<{
11854
+ executionId: z.ZodString;
11855
+ status: z.ZodLiteral<"completed">;
11856
+ response: z.ZodOptional<z.ZodString>;
11857
+ }, "strip", z.ZodTypeAny, {
11858
+ status: "completed";
11859
+ executionId: string;
11860
+ response?: string | undefined;
11861
+ }, {
11862
+ status: "completed";
11863
+ executionId: string;
11864
+ response?: string | undefined;
11865
+ }>, z.ZodObject<{
11866
+ executionId: z.ZodString;
11867
+ status: z.ZodLiteral<"error">;
11868
+ error: z.ZodOptional<z.ZodString>;
11869
+ }, "strip", z.ZodTypeAny, {
11870
+ status: "error";
11871
+ executionId: string;
11872
+ error?: string | undefined;
11873
+ }, {
11874
+ status: "error";
11875
+ executionId: string;
11876
+ error?: string | undefined;
11877
+ }>]>;
11878
+ type McpExecutionStatus = z.infer<typeof mcpExecutionStatusSchema>;
11879
+
11385
11880
  /**
11386
11881
  * GroupOptions
11387
11882
  */
@@ -11626,6 +12121,8 @@ declare enum TelemetryEventName {
11626
12121
  AUTHENTICATION_INITIATED = "Authentication Initiated",
11627
12122
  MARKETPLACE_ITEM_INSTALLED = "Marketplace Item Installed",
11628
12123
  MARKETPLACE_ITEM_REMOVED = "Marketplace Item Removed",
12124
+ MARKETPLACE_TAB_VIEWED = "Marketplace Tab Viewed",
12125
+ MARKETPLACE_INSTALL_BUTTON_CLICKED = "Marketplace Install Button Clicked",
11629
12126
  SCHEMA_VALIDATION_ERROR = "Schema Validation Error",
11630
12127
  DIFF_APPLICATION_ERROR = "Diff Application Error",
11631
12128
  SHELL_INTEGRATION_ERROR = "Shell Integration Error",
@@ -11844,6 +12341,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
11844
12341
  newContextTokens: number;
11845
12342
  summary: string;
11846
12343
  }>>;
12344
+ isProtected: z.ZodOptional<z.ZodBoolean>;
11847
12345
  }, "strip", z.ZodTypeAny, {
11848
12346
  type: "ask" | "say";
11849
12347
  ts: number;
@@ -11865,6 +12363,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
11865
12363
  newContextTokens: number;
11866
12364
  summary: string;
11867
12365
  } | undefined;
12366
+ isProtected?: boolean | undefined;
11868
12367
  }, {
11869
12368
  type: "ask" | "say";
11870
12369
  ts: number;
@@ -11886,6 +12385,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
11886
12385
  newContextTokens: number;
11887
12386
  summary: string;
11888
12387
  } | undefined;
12388
+ isProtected?: boolean | undefined;
11889
12389
  }>;
11890
12390
  apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "openai-native", "mistral", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm"]>>;
11891
12391
  modelId: z.ZodOptional<z.ZodString>;
@@ -11920,6 +12420,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
11920
12420
  newContextTokens: number;
11921
12421
  summary: string;
11922
12422
  } | undefined;
12423
+ isProtected?: boolean | undefined;
11923
12424
  };
11924
12425
  appName: string;
11925
12426
  appVersion: string;
@@ -11955,6 +12456,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
11955
12456
  newContextTokens: number;
11956
12457
  summary: string;
11957
12458
  } | undefined;
12459
+ isProtected?: boolean | undefined;
11958
12460
  };
11959
12461
  appName: string;
11960
12462
  appVersion: string;
@@ -11993,6 +12495,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
11993
12495
  newContextTokens: number;
11994
12496
  summary: string;
11995
12497
  } | undefined;
12498
+ isProtected?: boolean | undefined;
11996
12499
  };
11997
12500
  appName: string;
11998
12501
  appVersion: string;
@@ -12031,6 +12534,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
12031
12534
  newContextTokens: number;
12032
12535
  summary: string;
12033
12536
  } | undefined;
12537
+ isProtected?: boolean | undefined;
12034
12538
  };
12035
12539
  appName: string;
12036
12540
  appVersion: string;
@@ -12249,9 +12753,9 @@ type CommandId = (typeof commandIds)[number];
12249
12753
  /**
12250
12754
  * Language
12251
12755
  */
12252
- declare const languages: readonly ["ca", "de", "en", "es", "fr", "hi", "it", "ja", "ko", "nl", "pl", "pt-BR", "ru", "tr", "vi", "zh-CN", "zh-TW"];
12253
- declare const languagesSchema: z.ZodEnum<["ca", "de", "en", "es", "fr", "hi", "it", "ja", "ko", "nl", "pl", "pt-BR", "ru", "tr", "vi", "zh-CN", "zh-TW"]>;
12756
+ declare const languages: readonly ["ca", "de", "en", "es", "fr", "hi", "id", "it", "ja", "ko", "nl", "pl", "pt-BR", "ru", "tr", "vi", "zh-CN", "zh-TW"];
12757
+ declare const languagesSchema: z.ZodEnum<["ca", "de", "en", "es", "fr", "hi", "id", "it", "ja", "ko", "nl", "pl", "pt-BR", "ru", "tr", "vi", "zh-CN", "zh-TW"]>;
12254
12758
  type Language = z.infer<typeof languagesSchema>;
12255
12759
  declare const isLanguage: (value: string) => value is Language;
12256
12760
 
12257
- export { ANTHROPIC_DEFAULT_MAX_TOKENS, type Ack, type AnthropicModelId, type AssertEqual, BEDROCK_DEFAULT_CONTEXT, BEDROCK_DEFAULT_TEMPERATURE, BEDROCK_MAX_TOKENS, BEDROCK_REGIONS, BEDROCK_REGION_INFO, type BedrockModelId, type ChutesModelId, type ClineAsk, type ClineMessage, type ClineSay, type CloudUserInfo, type CodeActionId, type CodeActionName, type CodebaseIndexConfig, type CodebaseIndexModels, type CodebaseIndexProvider, type CommandExecutionStatus, type CommandId, type ContextCondense, type CustomModePrompts, type CustomModesSettings, type CustomSupportPrompts, DEEP_SEEK_DEFAULT_TEMPERATURE, type DeepSeekModelId, EVALS_SETTINGS, EVALS_TIMEOUT, type Equals, type ExperimentId, type Experiments, GLAMA_DEFAULT_TEMPERATURE, GLOBAL_SETTINGS_KEYS, GLOBAL_STATE_KEYS, type GeminiModelId, type GlobalSettings, type GlobalState, type GroqModelId, type GroupEntry, type GroupOptions, type HistoryItem, type IpcClientEvents, type IpcMessage, IpcMessageType, IpcOrigin, type IpcServerEvents, type Keys, LITELLM_COMPUTER_USE_MODELS, LMSTUDIO_DEFAULT_TEMPERATURE, type Language, MISTRAL_DEFAULT_TEMPERATURE, MODEL_ID_KEYS, type MistralModelId, type ModeConfig, type ModelInfo, type ModelParameter, OPENAI_AZURE_AI_INFERENCE_PATH, OPENAI_NATIVE_DEFAULT_TEMPERATURE, OPENROUTER_DEFAULT_PROVIDER_NAME, OPEN_ROUTER_COMPUTER_USE_MODELS, OPEN_ROUTER_PROMPT_CACHING_MODELS, OPEN_ROUTER_REASONING_BUDGET_MODELS, OPEN_ROUTER_REQUIRED_REASONING_BUDGET_MODELS, ORGANIZATION_ALLOW_ALL, ORGANIZATION_DEFAULT, type OpenAiNativeModelId, type OrganizationAllowList, type OrganizationCloudSettings, type OrganizationDefaultSettings, type OrganizationSettings, PROVIDER_SETTINGS_KEYS, type PromptComponent, type ProviderName, type ProviderSettings, type ProviderSettingsEntry, type ReasoningEffort, type RooCodeAPI, type RooCodeAPIEvents, RooCodeEventName, type RooCodeEvents, type RooCodeIpcServer, type RooCodeSettings, type RooCodeTelemetryEvent, SECRET_STATE_KEYS, type SecretState, type ShareResponse, type TaskCommand, TaskCommandName, type TaskEvent, type TelemetryClient, type TelemetryEvent, TelemetryEventName, type TelemetryEventSubscription, type TelemetryProperties, type TelemetryPropertiesProvider, type TelemetrySetting, type TerminalActionId, type TerminalActionName, type TerminalActionPromptType, type TokenUsage, type ToolGroup, type ToolName, type ToolProgressStatus, type ToolUsage, VERTEX_REGIONS, type Values, type VertexModelId, type VscodeLlmModelId, type XAIModelId, ackSchema, anthropicDefaultModelId, anthropicModels, appPropertiesSchema, azureOpenAiDefaultApiVersion, bedrockDefaultModelId, bedrockDefaultPromptRouterModelId, bedrockModels, chutesDefaultModelId, chutesModels, clineAskSchema, clineAsks, clineMessageSchema, clineSaySchema, clineSays, codeActionIds, codebaseIndexConfigSchema, codebaseIndexModelsSchema, codebaseIndexProviderSchema, commandExecutionStatusSchema, commandIds, contextCondenseSchema, customModePromptsSchema, customModesSettingsSchema, customSupportPromptsSchema, deepSeekDefaultModelId, deepSeekModels, experimentIds, experimentIdsSchema, experimentsSchema, geminiDefaultModelId, geminiModels, getModelId, glamaDefaultModelId, glamaDefaultModelInfo, globalSettingsSchema, groqDefaultModelId, groqModels, groupEntrySchema, groupOptionsSchema, historyItemSchema, ipcMessageSchema, isGlobalStateKey, isLanguage, isModelParameter, isSecretStateKey, keysOf, languages, languagesSchema, litellmDefaultModelId, litellmDefaultModelInfo, mistralDefaultModelId, mistralModels, modeConfigSchema, modelInfoSchema, modelParameters, modelParametersSchema, openAiModelInfoSaneDefaults, openAiNativeDefaultModelId, openAiNativeModels, openRouterDefaultModelId, openRouterDefaultModelInfo, organizationAllowListSchema, organizationCloudSettingsSchema, organizationDefaultSettingsSchema, organizationSettingsSchema, promptComponentSchema, providerNames, providerNamesSchema, providerSettingsEntrySchema, providerSettingsSchema, providerSettingsSchemaDiscriminated, reasoningEfforts, reasoningEffortsSchema, requestyDefaultModelId, requestyDefaultModelInfo, rooCodeEventsSchema, rooCodeSettingsSchema, rooCodeTelemetryEventSchema, shareResponseSchema, taskCommandSchema, taskEventSchema, taskPropertiesSchema, telemetryPropertiesSchema, telemetrySettings, telemetrySettingsSchema, terminalActionIds, tokenUsageSchema, toolGroups, toolGroupsSchema, toolNames, toolNamesSchema, toolProgressStatusSchema, toolUsageSchema, unboundDefaultModelId, unboundDefaultModelInfo, vertexDefaultModelId, vertexModels, vscodeLlmDefaultModelId, vscodeLlmModels, xaiDefaultModelId, xaiModels };
12761
+ export { ANTHROPIC_DEFAULT_MAX_TOKENS, type Ack, type AnthropicModelId, type AssertEqual, BEDROCK_DEFAULT_CONTEXT, BEDROCK_DEFAULT_TEMPERATURE, BEDROCK_MAX_TOKENS, BEDROCK_REGIONS, BEDROCK_REGION_INFO, type BedrockModelId, type ChutesModelId, type ClineAsk, type ClineMessage, type ClineSay, type CloudOrganization, type CloudOrganizationMembership, type CloudUserInfo, type CodeActionId, type CodeActionName, type CodebaseIndexConfig, type CodebaseIndexModels, type CodebaseIndexProvider, type CommandExecutionStatus, type CommandId, type ContextCondense, type CustomModePrompts, type CustomModesSettings, type CustomSupportPrompts, DEEP_SEEK_DEFAULT_TEMPERATURE, type DeepSeekModelId, EVALS_SETTINGS, EVALS_TIMEOUT, type Equals, type ExperimentId, type Experiments, GLAMA_DEFAULT_TEMPERATURE, GLOBAL_SETTINGS_KEYS, GLOBAL_STATE_KEYS, type GeminiModelId, type GlobalSettings, type GlobalState, type GroqModelId, type GroupEntry, type GroupOptions, type HistoryItem, type InstallMarketplaceItemOptions, type IpcClientEvents, type IpcMessage, IpcMessageType, IpcOrigin, type IpcServerEvents, type Keys, LITELLM_COMPUTER_USE_MODELS, LMSTUDIO_DEFAULT_TEMPERATURE, type Language, MISTRAL_DEFAULT_TEMPERATURE, MODEL_ID_KEYS, type MarketplaceItem, type MarketplaceItemType, type McpExecutionStatus, type McpInstallationMethod, type McpMarketplaceItem, type McpParameter, type MistralModelId, type ModeConfig, type ModeMarketplaceItem, type ModelInfo, type ModelParameter, OPENAI_AZURE_AI_INFERENCE_PATH, OPENAI_NATIVE_DEFAULT_TEMPERATURE, OPENROUTER_DEFAULT_PROVIDER_NAME, OPEN_ROUTER_COMPUTER_USE_MODELS, OPEN_ROUTER_PROMPT_CACHING_MODELS, OPEN_ROUTER_REASONING_BUDGET_MODELS, OPEN_ROUTER_REQUIRED_REASONING_BUDGET_MODELS, ORGANIZATION_ALLOW_ALL, ORGANIZATION_DEFAULT, type OpenAiNativeModelId, type OrganizationAllowList, type OrganizationCloudSettings, type OrganizationDefaultSettings, type OrganizationSettings, PROVIDER_SETTINGS_KEYS, type PromptComponent, type ProviderName, type ProviderSettings, type ProviderSettingsEntry, type ReasoningEffort, type RooCodeAPI, type RooCodeAPIEvents, RooCodeEventName, type RooCodeEvents, type RooCodeIpcServer, type RooCodeSettings, type RooCodeTelemetryEvent, SECRET_STATE_KEYS, type SecretState, type ShareResponse, type TaskCommand, TaskCommandName, type TaskEvent, type TelemetryClient, type TelemetryEvent, TelemetryEventName, type TelemetryEventSubscription, type TelemetryProperties, type TelemetryPropertiesProvider, type TelemetrySetting, type TerminalActionId, type TerminalActionName, type TerminalActionPromptType, type TokenUsage, type ToolGroup, type ToolName, type ToolProgressStatus, type ToolUsage, VERTEX_REGIONS, type Values, type VertexModelId, type VscodeLlmModelId, type XAIModelId, ackSchema, anthropicDefaultModelId, anthropicModels, appPropertiesSchema, azureOpenAiDefaultApiVersion, bedrockDefaultModelId, bedrockDefaultPromptRouterModelId, bedrockModels, chutesDefaultModelId, chutesModels, clineAskSchema, clineAsks, clineMessageSchema, clineSaySchema, clineSays, codeActionIds, codebaseIndexConfigSchema, codebaseIndexModelsSchema, codebaseIndexProviderSchema, commandExecutionStatusSchema, commandIds, contextCondenseSchema, customModePromptsSchema, customModesSettingsSchema, customSupportPromptsSchema, deepSeekDefaultModelId, deepSeekModels, experimentIds, experimentIdsSchema, experimentsSchema, geminiDefaultModelId, geminiModels, getModelId, glamaDefaultModelId, glamaDefaultModelInfo, globalSettingsSchema, groqDefaultModelId, groqModels, groupEntrySchema, groupOptionsSchema, historyItemSchema, installMarketplaceItemOptionsSchema, ipcMessageSchema, isGlobalStateKey, isLanguage, isModelParameter, isSecretStateKey, languages, languagesSchema, litellmDefaultModelId, litellmDefaultModelInfo, marketplaceItemSchema, marketplaceItemTypeSchema, mcpExecutionStatusSchema, mcpInstallationMethodSchema, mcpMarketplaceItemSchema, mcpParameterSchema, mistralDefaultModelId, mistralModels, modeConfigSchema, modeMarketplaceItemSchema, modelInfoSchema, modelParameters, modelParametersSchema, openAiModelInfoSaneDefaults, openAiNativeDefaultModelId, openAiNativeModels, openRouterDefaultModelId, openRouterDefaultModelInfo, organizationAllowListSchema, organizationCloudSettingsSchema, organizationDefaultSettingsSchema, organizationSettingsSchema, promptComponentSchema, providerNames, providerNamesSchema, providerSettingsEntrySchema, providerSettingsSchema, providerSettingsSchemaDiscriminated, reasoningEfforts, reasoningEffortsSchema, requestyDefaultModelId, requestyDefaultModelInfo, rooCodeEventsSchema, rooCodeSettingsSchema, rooCodeTelemetryEventSchema, shareResponseSchema, taskCommandSchema, taskEventSchema, taskPropertiesSchema, telemetryPropertiesSchema, telemetrySettings, telemetrySettingsSchema, terminalActionIds, tokenUsageSchema, toolGroups, toolGroupsSchema, toolNames, toolNamesSchema, toolProgressStatusSchema, toolUsageSchema, unboundDefaultModelId, unboundDefaultModelInfo, vertexDefaultModelId, vertexModels, vscodeLlmDefaultModelId, vscodeLlmModels, xaiDefaultModelId, xaiModels };