@roo-code/types 1.91.0 → 1.92.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +48 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +69 -47
- package/dist/index.d.ts +69 -47
- package/dist/index.js +46 -5
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1458,6 +1458,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
1458
1458
|
awsBedrockEndpointEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
1459
1459
|
awsBedrockEndpoint: z.ZodOptional<z.ZodString>;
|
|
1460
1460
|
awsBedrock1MContext: z.ZodOptional<z.ZodBoolean>;
|
|
1461
|
+
awsBedrockServiceTier: z.ZodOptional<z.ZodEnum<["STANDARD", "FLEX", "PRIORITY"]>>;
|
|
1461
1462
|
} & {
|
|
1462
1463
|
apiProvider: z.ZodLiteral<"bedrock">;
|
|
1463
1464
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1492,6 +1493,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
1492
1493
|
awsBedrockEndpointEnabled?: boolean | undefined;
|
|
1493
1494
|
awsBedrockEndpoint?: string | undefined;
|
|
1494
1495
|
awsBedrock1MContext?: boolean | undefined;
|
|
1496
|
+
awsBedrockServiceTier?: "STANDARD" | "FLEX" | "PRIORITY" | undefined;
|
|
1495
1497
|
}, {
|
|
1496
1498
|
apiProvider: "bedrock";
|
|
1497
1499
|
reasoningEffort?: "low" | "medium" | "high" | "minimal" | "none" | "xhigh" | "disable" | undefined;
|
|
@@ -1524,6 +1526,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
1524
1526
|
awsBedrockEndpointEnabled?: boolean | undefined;
|
|
1525
1527
|
awsBedrockEndpoint?: string | undefined;
|
|
1526
1528
|
awsBedrock1MContext?: boolean | undefined;
|
|
1529
|
+
awsBedrockServiceTier?: "STANDARD" | "FLEX" | "PRIORITY" | undefined;
|
|
1527
1530
|
}>, z.ZodObject<{
|
|
1528
1531
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
1529
1532
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3906,6 +3909,7 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3906
3909
|
awsBedrockEndpointEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3907
3910
|
awsBedrockEndpoint: z.ZodOptional<z.ZodString>;
|
|
3908
3911
|
awsBedrock1MContext: z.ZodOptional<z.ZodBoolean>;
|
|
3912
|
+
awsBedrockServiceTier: z.ZodOptional<z.ZodEnum<["STANDARD", "FLEX", "PRIORITY"]>>;
|
|
3909
3913
|
openRouterApiKey: z.ZodOptional<z.ZodString>;
|
|
3910
3914
|
openRouterModelId: z.ZodOptional<z.ZodString>;
|
|
3911
3915
|
openRouterBaseUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -3970,6 +3974,7 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3970
3974
|
awsBedrockEndpointEnabled?: boolean | undefined;
|
|
3971
3975
|
awsBedrockEndpoint?: string | undefined;
|
|
3972
3976
|
awsBedrock1MContext?: boolean | undefined;
|
|
3977
|
+
awsBedrockServiceTier?: "STANDARD" | "FLEX" | "PRIORITY" | undefined;
|
|
3973
3978
|
vertexKeyFile?: string | undefined;
|
|
3974
3979
|
vertexJsonCredentials?: string | undefined;
|
|
3975
3980
|
vertexProjectId?: string | undefined;
|
|
@@ -4142,6 +4147,7 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
4142
4147
|
awsBedrockEndpointEnabled?: boolean | undefined;
|
|
4143
4148
|
awsBedrockEndpoint?: string | undefined;
|
|
4144
4149
|
awsBedrock1MContext?: boolean | undefined;
|
|
4150
|
+
awsBedrockServiceTier?: "STANDARD" | "FLEX" | "PRIORITY" | undefined;
|
|
4145
4151
|
vertexKeyFile?: string | undefined;
|
|
4146
4152
|
vertexJsonCredentials?: string | undefined;
|
|
4147
4153
|
vertexProjectId?: string | undefined;
|
|
@@ -4530,6 +4536,7 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
4530
4536
|
awsBedrockEndpointEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
4531
4537
|
awsBedrockEndpoint: z.ZodOptional<z.ZodString>;
|
|
4532
4538
|
awsBedrock1MContext: z.ZodOptional<z.ZodBoolean>;
|
|
4539
|
+
awsBedrockServiceTier: z.ZodOptional<z.ZodEnum<["STANDARD", "FLEX", "PRIORITY"]>>;
|
|
4533
4540
|
openRouterApiKey: z.ZodOptional<z.ZodString>;
|
|
4534
4541
|
openRouterModelId: z.ZodOptional<z.ZodString>;
|
|
4535
4542
|
openRouterBaseUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -4597,6 +4604,7 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
4597
4604
|
awsBedrockEndpointEnabled?: boolean | undefined;
|
|
4598
4605
|
awsBedrockEndpoint?: string | undefined;
|
|
4599
4606
|
awsBedrock1MContext?: boolean | undefined;
|
|
4607
|
+
awsBedrockServiceTier?: "STANDARD" | "FLEX" | "PRIORITY" | undefined;
|
|
4600
4608
|
vertexKeyFile?: string | undefined;
|
|
4601
4609
|
vertexJsonCredentials?: string | undefined;
|
|
4602
4610
|
vertexProjectId?: string | undefined;
|
|
@@ -4770,6 +4778,7 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
4770
4778
|
awsBedrockEndpointEnabled?: boolean | undefined;
|
|
4771
4779
|
awsBedrockEndpoint?: string | undefined;
|
|
4772
4780
|
awsBedrock1MContext?: boolean | undefined;
|
|
4781
|
+
awsBedrockServiceTier?: "STANDARD" | "FLEX" | "PRIORITY" | undefined;
|
|
4773
4782
|
vertexKeyFile?: string | undefined;
|
|
4774
4783
|
vertexJsonCredentials?: string | undefined;
|
|
4775
4784
|
vertexProjectId?: string | undefined;
|
|
@@ -5106,6 +5115,7 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
|
|
|
5106
5115
|
awsBedrockEndpointEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
5107
5116
|
awsBedrockEndpoint: z.ZodOptional<z.ZodString>;
|
|
5108
5117
|
awsBedrock1MContext: z.ZodOptional<z.ZodBoolean>;
|
|
5118
|
+
awsBedrockServiceTier: z.ZodOptional<z.ZodEnum<["STANDARD", "FLEX", "PRIORITY"]>>;
|
|
5109
5119
|
} & {
|
|
5110
5120
|
apiProvider: z.ZodLiteral<"bedrock">;
|
|
5111
5121
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5140,6 +5150,7 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
|
|
|
5140
5150
|
awsBedrockEndpointEnabled?: boolean | undefined;
|
|
5141
5151
|
awsBedrockEndpoint?: string | undefined;
|
|
5142
5152
|
awsBedrock1MContext?: boolean | undefined;
|
|
5153
|
+
awsBedrockServiceTier?: "STANDARD" | "FLEX" | "PRIORITY" | undefined;
|
|
5143
5154
|
}, {
|
|
5144
5155
|
apiProvider: "bedrock";
|
|
5145
5156
|
reasoningEffort?: "low" | "medium" | "high" | "minimal" | "none" | "xhigh" | "disable" | undefined;
|
|
@@ -5172,6 +5183,7 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
|
|
|
5172
5183
|
awsBedrockEndpointEnabled?: boolean | undefined;
|
|
5173
5184
|
awsBedrockEndpoint?: string | undefined;
|
|
5174
5185
|
awsBedrock1MContext?: boolean | undefined;
|
|
5186
|
+
awsBedrockServiceTier?: "STANDARD" | "FLEX" | "PRIORITY" | undefined;
|
|
5175
5187
|
}>, z.ZodObject<{
|
|
5176
5188
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
5177
5189
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -7295,7 +7307,7 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
|
|
|
7295
7307
|
id?: string | undefined;
|
|
7296
7308
|
}>>;
|
|
7297
7309
|
type ProviderSettingsWithId = z.infer<typeof providerSettingsWithIdSchema>;
|
|
7298
|
-
declare const PROVIDER_SETTINGS_KEYS: ["reasoningEffort", "codebaseIndexOpenAiCompatibleBaseUrl", "codebaseIndexOpenAiCompatibleModelDimension", "codeIndexOpenAiKey", "codeIndexQdrantApiKey", "codebaseIndexOpenAiCompatibleApiKey", "codebaseIndexGeminiApiKey", "codebaseIndexMistralApiKey", "codebaseIndexVercelAiGatewayApiKey", "codebaseIndexOpenRouterApiKey", "apiProvider", "includeMaxTokens", "diffEnabled", "todoListEnabled", "fuzzyMatchThreshold", "modelTemperature", "rateLimitSeconds", "consecutiveMistakeLimit", "enableReasoningEffort", "modelMaxTokens", "modelMaxThinkingTokens", "verbosity", "toolProtocol", "apiModelId", "apiKey", "anthropicBaseUrl", "anthropicUseAuthToken", "anthropicBeta1MContext", "claudeCodePath", "claudeCodeMaxOutputTokens", "openRouterApiKey", "openRouterModelId", "openRouterBaseUrl", "openRouterSpecificProvider", "openRouterUseMiddleOutTransform", "awsAccessKey", "awsSecretKey", "awsSessionToken", "awsRegion", "awsUseCrossRegionInference", "awsUseGlobalInference", "awsUsePromptCache", "awsProfile", "awsUseProfile", "awsApiKey", "awsUseApiKey", "awsCustomArn", "awsModelContextWindow", "awsBedrockEndpointEnabled", "awsBedrockEndpoint", "awsBedrock1MContext", "vertexKeyFile", "vertexJsonCredentials", "vertexProjectId", "vertexRegion", "enableUrlContext", "enableGrounding", "openAiBaseUrl", "openAiApiKey", "openAiLegacyFormat", "openAiR1FormatEnabled", "openAiModelId", "openAiCustomModelInfo", "openAiUseAzure", "azureApiVersion", "openAiStreamingEnabled", "openAiHostHeader", "openAiHeaders", "ollamaModelId", "ollamaBaseUrl", "ollamaApiKey", "ollamaNumCtx", "vsCodeLmModelSelector", "lmStudioModelId", "lmStudioBaseUrl", "lmStudioDraftModelId", "lmStudioSpeculativeDecodingEnabled", "geminiApiKey", "googleGeminiBaseUrl", "geminiCliOAuthPath", "geminiCliProjectId", "openAiNativeApiKey", "openAiNativeBaseUrl", "openAiNativeServiceTier", "mistralApiKey", "mistralCodestralUrl", "deepSeekBaseUrl", "deepSeekApiKey", "deepInfraBaseUrl", "deepInfraApiKey", "deepInfraModelId", "doubaoBaseUrl", "doubaoApiKey", "moonshotBaseUrl", "moonshotApiKey", "minimaxBaseUrl", "minimaxApiKey", "unboundApiKey", "unboundModelId", "requestyBaseUrl", "requestyApiKey", "requestyModelId", "fakeAi", "xaiApiKey", "groqApiKey", "huggingFaceApiKey", "huggingFaceModelId", "huggingFaceInferenceProvider", "chutesApiKey", "litellmBaseUrl", "litellmApiKey", "litellmModelId", "litellmUsePromptCache", "cerebrasApiKey", "sambaNovaApiKey", "zaiApiKey", "zaiApiLine", "fireworksApiKey", "featherlessApiKey", "ioIntelligenceModelId", "ioIntelligenceApiKey", "qwenCodeOauthPath", "vercelAiGatewayApiKey", "vercelAiGatewayModelId", "basetenApiKey"];
|
|
7310
|
+
declare const PROVIDER_SETTINGS_KEYS: ["reasoningEffort", "codebaseIndexOpenAiCompatibleBaseUrl", "codebaseIndexOpenAiCompatibleModelDimension", "codeIndexOpenAiKey", "codeIndexQdrantApiKey", "codebaseIndexOpenAiCompatibleApiKey", "codebaseIndexGeminiApiKey", "codebaseIndexMistralApiKey", "codebaseIndexVercelAiGatewayApiKey", "codebaseIndexOpenRouterApiKey", "apiProvider", "includeMaxTokens", "diffEnabled", "todoListEnabled", "fuzzyMatchThreshold", "modelTemperature", "rateLimitSeconds", "consecutiveMistakeLimit", "enableReasoningEffort", "modelMaxTokens", "modelMaxThinkingTokens", "verbosity", "toolProtocol", "apiModelId", "apiKey", "anthropicBaseUrl", "anthropicUseAuthToken", "anthropicBeta1MContext", "claudeCodePath", "claudeCodeMaxOutputTokens", "openRouterApiKey", "openRouterModelId", "openRouterBaseUrl", "openRouterSpecificProvider", "openRouterUseMiddleOutTransform", "awsAccessKey", "awsSecretKey", "awsSessionToken", "awsRegion", "awsUseCrossRegionInference", "awsUseGlobalInference", "awsUsePromptCache", "awsProfile", "awsUseProfile", "awsApiKey", "awsUseApiKey", "awsCustomArn", "awsModelContextWindow", "awsBedrockEndpointEnabled", "awsBedrockEndpoint", "awsBedrock1MContext", "awsBedrockServiceTier", "vertexKeyFile", "vertexJsonCredentials", "vertexProjectId", "vertexRegion", "enableUrlContext", "enableGrounding", "openAiBaseUrl", "openAiApiKey", "openAiLegacyFormat", "openAiR1FormatEnabled", "openAiModelId", "openAiCustomModelInfo", "openAiUseAzure", "azureApiVersion", "openAiStreamingEnabled", "openAiHostHeader", "openAiHeaders", "ollamaModelId", "ollamaBaseUrl", "ollamaApiKey", "ollamaNumCtx", "vsCodeLmModelSelector", "lmStudioModelId", "lmStudioBaseUrl", "lmStudioDraftModelId", "lmStudioSpeculativeDecodingEnabled", "geminiApiKey", "googleGeminiBaseUrl", "geminiCliOAuthPath", "geminiCliProjectId", "openAiNativeApiKey", "openAiNativeBaseUrl", "openAiNativeServiceTier", "mistralApiKey", "mistralCodestralUrl", "deepSeekBaseUrl", "deepSeekApiKey", "deepInfraBaseUrl", "deepInfraApiKey", "deepInfraModelId", "doubaoBaseUrl", "doubaoApiKey", "moonshotBaseUrl", "moonshotApiKey", "minimaxBaseUrl", "minimaxApiKey", "unboundApiKey", "unboundModelId", "requestyBaseUrl", "requestyApiKey", "requestyModelId", "fakeAi", "xaiApiKey", "groqApiKey", "huggingFaceApiKey", "huggingFaceModelId", "huggingFaceInferenceProvider", "chutesApiKey", "litellmBaseUrl", "litellmApiKey", "litellmModelId", "litellmUsePromptCache", "cerebrasApiKey", "sambaNovaApiKey", "zaiApiKey", "zaiApiLine", "fireworksApiKey", "featherlessApiKey", "ioIntelligenceModelId", "ioIntelligenceApiKey", "qwenCodeOauthPath", "vercelAiGatewayApiKey", "vercelAiGatewayModelId", "basetenApiKey"];
|
|
7299
7311
|
/**
|
|
7300
7312
|
* ModelIdKey
|
|
7301
7313
|
*/
|
|
@@ -7448,7 +7460,6 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
7448
7460
|
alwaysAllowWriteProtected: z.ZodOptional<z.ZodBoolean>;
|
|
7449
7461
|
writeDelayMs: z.ZodOptional<z.ZodNumber>;
|
|
7450
7462
|
alwaysAllowBrowser: z.ZodOptional<z.ZodBoolean>;
|
|
7451
|
-
alwaysApproveResubmit: z.ZodOptional<z.ZodBoolean>;
|
|
7452
7463
|
requestDelaySeconds: z.ZodOptional<z.ZodNumber>;
|
|
7453
7464
|
alwaysAllowMcp: z.ZodOptional<z.ZodBoolean>;
|
|
7454
7465
|
alwaysAllowModeSwitch: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -7456,7 +7467,6 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
7456
7467
|
alwaysAllowExecute: z.ZodOptional<z.ZodBoolean>;
|
|
7457
7468
|
alwaysAllowFollowupQuestions: z.ZodOptional<z.ZodBoolean>;
|
|
7458
7469
|
followupAutoApproveTimeoutMs: z.ZodOptional<z.ZodNumber>;
|
|
7459
|
-
alwaysAllowUpdateTodoList: z.ZodOptional<z.ZodBoolean>;
|
|
7460
7470
|
allowedCommands: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
7461
7471
|
deniedCommands: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
7462
7472
|
commandExecutionTimeout: z.ZodOptional<z.ZodNumber>;
|
|
@@ -7851,7 +7861,6 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
7851
7861
|
alwaysAllowWriteProtected?: boolean | undefined;
|
|
7852
7862
|
writeDelayMs?: number | undefined;
|
|
7853
7863
|
alwaysAllowBrowser?: boolean | undefined;
|
|
7854
|
-
alwaysApproveResubmit?: boolean | undefined;
|
|
7855
7864
|
requestDelaySeconds?: number | undefined;
|
|
7856
7865
|
alwaysAllowMcp?: boolean | undefined;
|
|
7857
7866
|
alwaysAllowModeSwitch?: boolean | undefined;
|
|
@@ -7859,7 +7868,6 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
7859
7868
|
alwaysAllowExecute?: boolean | undefined;
|
|
7860
7869
|
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
7861
7870
|
followupAutoApproveTimeoutMs?: number | undefined;
|
|
7862
|
-
alwaysAllowUpdateTodoList?: boolean | undefined;
|
|
7863
7871
|
allowedCommands?: string[] | undefined;
|
|
7864
7872
|
deniedCommands?: string[] | undefined;
|
|
7865
7873
|
commandExecutionTimeout?: number | undefined;
|
|
@@ -8039,7 +8047,6 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
8039
8047
|
alwaysAllowWriteProtected?: boolean | undefined;
|
|
8040
8048
|
writeDelayMs?: number | undefined;
|
|
8041
8049
|
alwaysAllowBrowser?: boolean | undefined;
|
|
8042
|
-
alwaysApproveResubmit?: boolean | undefined;
|
|
8043
8050
|
requestDelaySeconds?: number | undefined;
|
|
8044
8051
|
alwaysAllowMcp?: boolean | undefined;
|
|
8045
8052
|
alwaysAllowModeSwitch?: boolean | undefined;
|
|
@@ -8047,7 +8054,6 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
8047
8054
|
alwaysAllowExecute?: boolean | undefined;
|
|
8048
8055
|
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
8049
8056
|
followupAutoApproveTimeoutMs?: number | undefined;
|
|
8050
|
-
alwaysAllowUpdateTodoList?: boolean | undefined;
|
|
8051
8057
|
allowedCommands?: string[] | undefined;
|
|
8052
8058
|
deniedCommands?: string[] | undefined;
|
|
8053
8059
|
commandExecutionTimeout?: number | undefined;
|
|
@@ -8164,7 +8170,7 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
8164
8170
|
lastModeImportPath?: string | undefined;
|
|
8165
8171
|
}>;
|
|
8166
8172
|
type GlobalSettings = z.infer<typeof globalSettingsSchema>;
|
|
8167
|
-
declare const GLOBAL_SETTINGS_KEYS: ["diffEnabled", "fuzzyMatchThreshold", "rateLimitSeconds", "language", "mode", "customInstructions", "customModes", "currentApiConfigName", "listApiConfigMeta", "pinnedApiConfigs", "lastShownAnnouncementId", "taskHistory", "dismissedUpsells", "imageGenerationProvider", "openRouterImageApiKey", "openRouterImageGenerationSelectedModel", "condensingApiConfigId", "customCondensingPrompt", "autoApprovalEnabled", "alwaysAllowReadOnly", "alwaysAllowReadOnlyOutsideWorkspace", "alwaysAllowWrite", "alwaysAllowWriteOutsideWorkspace", "alwaysAllowWriteProtected", "writeDelayMs", "alwaysAllowBrowser", "
|
|
8173
|
+
declare const GLOBAL_SETTINGS_KEYS: ["diffEnabled", "fuzzyMatchThreshold", "rateLimitSeconds", "language", "mode", "customInstructions", "customModes", "currentApiConfigName", "listApiConfigMeta", "pinnedApiConfigs", "lastShownAnnouncementId", "taskHistory", "dismissedUpsells", "imageGenerationProvider", "openRouterImageApiKey", "openRouterImageGenerationSelectedModel", "condensingApiConfigId", "customCondensingPrompt", "autoApprovalEnabled", "alwaysAllowReadOnly", "alwaysAllowReadOnlyOutsideWorkspace", "alwaysAllowWrite", "alwaysAllowWriteOutsideWorkspace", "alwaysAllowWriteProtected", "writeDelayMs", "alwaysAllowBrowser", "requestDelaySeconds", "alwaysAllowMcp", "alwaysAllowModeSwitch", "alwaysAllowSubtasks", "alwaysAllowExecute", "alwaysAllowFollowupQuestions", "followupAutoApproveTimeoutMs", "allowedCommands", "deniedCommands", "commandExecutionTimeout", "commandTimeoutAllowlist", "preventCompletionWithOpenTodos", "allowedMaxRequests", "allowedMaxCost", "autoCondenseContext", "autoCondenseContextPercent", "maxConcurrentFileReads", "includeCurrentTime", "includeCurrentCost", "maxGitStatusFiles", "includeDiagnosticMessages", "maxDiagnosticMessages", "browserToolEnabled", "browserViewportSize", "screenshotQuality", "remoteBrowserEnabled", "remoteBrowserHost", "cachedChromeHostUrl", "enableCheckpoints", "checkpointTimeout", "ttsEnabled", "ttsSpeed", "soundEnabled", "soundVolume", "maxOpenTabsContext", "maxWorkspaceFiles", "showRooIgnoredFiles", "maxReadFileLine", "maxImageFileSize", "maxTotalImageSize", "terminalOutputLineLimit", "terminalOutputCharacterLimit", "terminalShellIntegrationTimeout", "terminalShellIntegrationDisabled", "terminalCommandDelay", "terminalPowershellCounter", "terminalZshClearEolMark", "terminalZshOhMy", "terminalZshP10k", "terminalZdotdir", "terminalCompressProgressBar", "diagnosticsEnabled", "experiments", "codebaseIndexModels", "codebaseIndexConfig", "telemetrySetting", "mcpEnabled", "enableMcpServerCreation", "modeApiConfigs", "customModePrompts", "customSupportPrompts", "enhancementApiConfigId", "includeTaskHistoryInEnhance", "historyPreviewCollapsed", "reasoningBlockCollapsed", "enterBehavior", "profileThresholds", "hasOpenedModeSelector", "lastModeExportPath", "lastModeImportPath"];
|
|
8168
8174
|
/**
|
|
8169
8175
|
* RooCodeSettings
|
|
8170
8176
|
*/
|
|
@@ -8431,6 +8437,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
8431
8437
|
awsBedrockEndpointEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
8432
8438
|
awsBedrockEndpoint: z.ZodOptional<z.ZodString>;
|
|
8433
8439
|
awsBedrock1MContext: z.ZodOptional<z.ZodBoolean>;
|
|
8440
|
+
awsBedrockServiceTier: z.ZodOptional<z.ZodEnum<["STANDARD", "FLEX", "PRIORITY"]>>;
|
|
8434
8441
|
openRouterApiKey: z.ZodOptional<z.ZodString>;
|
|
8435
8442
|
openRouterModelId: z.ZodOptional<z.ZodString>;
|
|
8436
8443
|
openRouterBaseUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -8542,7 +8549,6 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
8542
8549
|
alwaysAllowWriteProtected: z.ZodOptional<z.ZodBoolean>;
|
|
8543
8550
|
writeDelayMs: z.ZodOptional<z.ZodNumber>;
|
|
8544
8551
|
alwaysAllowBrowser: z.ZodOptional<z.ZodBoolean>;
|
|
8545
|
-
alwaysApproveResubmit: z.ZodOptional<z.ZodBoolean>;
|
|
8546
8552
|
requestDelaySeconds: z.ZodOptional<z.ZodNumber>;
|
|
8547
8553
|
alwaysAllowMcp: z.ZodOptional<z.ZodBoolean>;
|
|
8548
8554
|
alwaysAllowModeSwitch: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -8550,7 +8556,6 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
8550
8556
|
alwaysAllowExecute: z.ZodOptional<z.ZodBoolean>;
|
|
8551
8557
|
alwaysAllowFollowupQuestions: z.ZodOptional<z.ZodBoolean>;
|
|
8552
8558
|
followupAutoApproveTimeoutMs: z.ZodOptional<z.ZodNumber>;
|
|
8553
|
-
alwaysAllowUpdateTodoList: z.ZodOptional<z.ZodBoolean>;
|
|
8554
8559
|
allowedCommands: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
8555
8560
|
deniedCommands: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
8556
8561
|
commandExecutionTimeout: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8906,6 +8911,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
8906
8911
|
awsBedrockEndpointEnabled?: boolean | undefined;
|
|
8907
8912
|
awsBedrockEndpoint?: string | undefined;
|
|
8908
8913
|
awsBedrock1MContext?: boolean | undefined;
|
|
8914
|
+
awsBedrockServiceTier?: "STANDARD" | "FLEX" | "PRIORITY" | undefined;
|
|
8909
8915
|
vertexKeyFile?: string | undefined;
|
|
8910
8916
|
vertexJsonCredentials?: string | undefined;
|
|
8911
8917
|
vertexProjectId?: string | undefined;
|
|
@@ -9086,7 +9092,6 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
9086
9092
|
alwaysAllowWriteProtected?: boolean | undefined;
|
|
9087
9093
|
writeDelayMs?: number | undefined;
|
|
9088
9094
|
alwaysAllowBrowser?: boolean | undefined;
|
|
9089
|
-
alwaysApproveResubmit?: boolean | undefined;
|
|
9090
9095
|
requestDelaySeconds?: number | undefined;
|
|
9091
9096
|
alwaysAllowMcp?: boolean | undefined;
|
|
9092
9097
|
alwaysAllowModeSwitch?: boolean | undefined;
|
|
@@ -9094,7 +9099,6 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
9094
9099
|
alwaysAllowExecute?: boolean | undefined;
|
|
9095
9100
|
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
9096
9101
|
followupAutoApproveTimeoutMs?: number | undefined;
|
|
9097
|
-
alwaysAllowUpdateTodoList?: boolean | undefined;
|
|
9098
9102
|
allowedCommands?: string[] | undefined;
|
|
9099
9103
|
deniedCommands?: string[] | undefined;
|
|
9100
9104
|
commandExecutionTimeout?: number | undefined;
|
|
@@ -9262,6 +9266,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
9262
9266
|
awsBedrockEndpointEnabled?: boolean | undefined;
|
|
9263
9267
|
awsBedrockEndpoint?: string | undefined;
|
|
9264
9268
|
awsBedrock1MContext?: boolean | undefined;
|
|
9269
|
+
awsBedrockServiceTier?: "STANDARD" | "FLEX" | "PRIORITY" | undefined;
|
|
9265
9270
|
vertexKeyFile?: string | undefined;
|
|
9266
9271
|
vertexJsonCredentials?: string | undefined;
|
|
9267
9272
|
vertexProjectId?: string | undefined;
|
|
@@ -9442,7 +9447,6 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
9442
9447
|
alwaysAllowWriteProtected?: boolean | undefined;
|
|
9443
9448
|
writeDelayMs?: number | undefined;
|
|
9444
9449
|
alwaysAllowBrowser?: boolean | undefined;
|
|
9445
|
-
alwaysApproveResubmit?: boolean | undefined;
|
|
9446
9450
|
requestDelaySeconds?: number | undefined;
|
|
9447
9451
|
alwaysAllowMcp?: boolean | undefined;
|
|
9448
9452
|
alwaysAllowModeSwitch?: boolean | undefined;
|
|
@@ -9450,7 +9454,6 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
9450
9454
|
alwaysAllowExecute?: boolean | undefined;
|
|
9451
9455
|
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
9452
9456
|
followupAutoApproveTimeoutMs?: number | undefined;
|
|
9453
|
-
alwaysAllowUpdateTodoList?: boolean | undefined;
|
|
9454
9457
|
allowedCommands?: string[] | undefined;
|
|
9455
9458
|
deniedCommands?: string[] | undefined;
|
|
9456
9459
|
commandExecutionTimeout?: number | undefined;
|
|
@@ -9903,6 +9906,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9903
9906
|
awsBedrockEndpointEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
9904
9907
|
awsBedrockEndpoint: z.ZodOptional<z.ZodString>;
|
|
9905
9908
|
awsBedrock1MContext: z.ZodOptional<z.ZodBoolean>;
|
|
9909
|
+
awsBedrockServiceTier: z.ZodOptional<z.ZodEnum<["STANDARD", "FLEX", "PRIORITY"]>>;
|
|
9906
9910
|
openRouterApiKey: z.ZodOptional<z.ZodString>;
|
|
9907
9911
|
openRouterModelId: z.ZodOptional<z.ZodString>;
|
|
9908
9912
|
openRouterBaseUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -10014,7 +10018,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10014
10018
|
alwaysAllowWriteProtected: z.ZodOptional<z.ZodBoolean>;
|
|
10015
10019
|
writeDelayMs: z.ZodOptional<z.ZodNumber>;
|
|
10016
10020
|
alwaysAllowBrowser: z.ZodOptional<z.ZodBoolean>;
|
|
10017
|
-
alwaysApproveResubmit: z.ZodOptional<z.ZodBoolean>;
|
|
10018
10021
|
requestDelaySeconds: z.ZodOptional<z.ZodNumber>;
|
|
10019
10022
|
alwaysAllowMcp: z.ZodOptional<z.ZodBoolean>;
|
|
10020
10023
|
alwaysAllowModeSwitch: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -10022,7 +10025,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10022
10025
|
alwaysAllowExecute: z.ZodOptional<z.ZodBoolean>;
|
|
10023
10026
|
alwaysAllowFollowupQuestions: z.ZodOptional<z.ZodBoolean>;
|
|
10024
10027
|
followupAutoApproveTimeoutMs: z.ZodOptional<z.ZodNumber>;
|
|
10025
|
-
alwaysAllowUpdateTodoList: z.ZodOptional<z.ZodBoolean>;
|
|
10026
10028
|
allowedCommands: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
10027
10029
|
deniedCommands: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
10028
10030
|
commandExecutionTimeout: z.ZodOptional<z.ZodNumber>;
|
|
@@ -10378,6 +10380,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10378
10380
|
awsBedrockEndpointEnabled?: boolean | undefined;
|
|
10379
10381
|
awsBedrockEndpoint?: string | undefined;
|
|
10380
10382
|
awsBedrock1MContext?: boolean | undefined;
|
|
10383
|
+
awsBedrockServiceTier?: "STANDARD" | "FLEX" | "PRIORITY" | undefined;
|
|
10381
10384
|
vertexKeyFile?: string | undefined;
|
|
10382
10385
|
vertexJsonCredentials?: string | undefined;
|
|
10383
10386
|
vertexProjectId?: string | undefined;
|
|
@@ -10558,7 +10561,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10558
10561
|
alwaysAllowWriteProtected?: boolean | undefined;
|
|
10559
10562
|
writeDelayMs?: number | undefined;
|
|
10560
10563
|
alwaysAllowBrowser?: boolean | undefined;
|
|
10561
|
-
alwaysApproveResubmit?: boolean | undefined;
|
|
10562
10564
|
requestDelaySeconds?: number | undefined;
|
|
10563
10565
|
alwaysAllowMcp?: boolean | undefined;
|
|
10564
10566
|
alwaysAllowModeSwitch?: boolean | undefined;
|
|
@@ -10566,7 +10568,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10566
10568
|
alwaysAllowExecute?: boolean | undefined;
|
|
10567
10569
|
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
10568
10570
|
followupAutoApproveTimeoutMs?: number | undefined;
|
|
10569
|
-
alwaysAllowUpdateTodoList?: boolean | undefined;
|
|
10570
10571
|
allowedCommands?: string[] | undefined;
|
|
10571
10572
|
deniedCommands?: string[] | undefined;
|
|
10572
10573
|
commandExecutionTimeout?: number | undefined;
|
|
@@ -10734,6 +10735,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10734
10735
|
awsBedrockEndpointEnabled?: boolean | undefined;
|
|
10735
10736
|
awsBedrockEndpoint?: string | undefined;
|
|
10736
10737
|
awsBedrock1MContext?: boolean | undefined;
|
|
10738
|
+
awsBedrockServiceTier?: "STANDARD" | "FLEX" | "PRIORITY" | undefined;
|
|
10737
10739
|
vertexKeyFile?: string | undefined;
|
|
10738
10740
|
vertexJsonCredentials?: string | undefined;
|
|
10739
10741
|
vertexProjectId?: string | undefined;
|
|
@@ -10914,7 +10916,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10914
10916
|
alwaysAllowWriteProtected?: boolean | undefined;
|
|
10915
10917
|
writeDelayMs?: number | undefined;
|
|
10916
10918
|
alwaysAllowBrowser?: boolean | undefined;
|
|
10917
|
-
alwaysApproveResubmit?: boolean | undefined;
|
|
10918
10919
|
requestDelaySeconds?: number | undefined;
|
|
10919
10920
|
alwaysAllowMcp?: boolean | undefined;
|
|
10920
10921
|
alwaysAllowModeSwitch?: boolean | undefined;
|
|
@@ -10922,7 +10923,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10922
10923
|
alwaysAllowExecute?: boolean | undefined;
|
|
10923
10924
|
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
10924
10925
|
followupAutoApproveTimeoutMs?: number | undefined;
|
|
10925
|
-
alwaysAllowUpdateTodoList?: boolean | undefined;
|
|
10926
10926
|
allowedCommands?: string[] | undefined;
|
|
10927
10927
|
deniedCommands?: string[] | undefined;
|
|
10928
10928
|
commandExecutionTimeout?: number | undefined;
|
|
@@ -11096,6 +11096,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
11096
11096
|
awsBedrockEndpointEnabled?: boolean | undefined;
|
|
11097
11097
|
awsBedrockEndpoint?: string | undefined;
|
|
11098
11098
|
awsBedrock1MContext?: boolean | undefined;
|
|
11099
|
+
awsBedrockServiceTier?: "STANDARD" | "FLEX" | "PRIORITY" | undefined;
|
|
11099
11100
|
vertexKeyFile?: string | undefined;
|
|
11100
11101
|
vertexJsonCredentials?: string | undefined;
|
|
11101
11102
|
vertexProjectId?: string | undefined;
|
|
@@ -11276,7 +11277,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
11276
11277
|
alwaysAllowWriteProtected?: boolean | undefined;
|
|
11277
11278
|
writeDelayMs?: number | undefined;
|
|
11278
11279
|
alwaysAllowBrowser?: boolean | undefined;
|
|
11279
|
-
alwaysApproveResubmit?: boolean | undefined;
|
|
11280
11280
|
requestDelaySeconds?: number | undefined;
|
|
11281
11281
|
alwaysAllowMcp?: boolean | undefined;
|
|
11282
11282
|
alwaysAllowModeSwitch?: boolean | undefined;
|
|
@@ -11284,7 +11284,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
11284
11284
|
alwaysAllowExecute?: boolean | undefined;
|
|
11285
11285
|
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
11286
11286
|
followupAutoApproveTimeoutMs?: number | undefined;
|
|
11287
|
-
alwaysAllowUpdateTodoList?: boolean | undefined;
|
|
11288
11287
|
allowedCommands?: string[] | undefined;
|
|
11289
11288
|
deniedCommands?: string[] | undefined;
|
|
11290
11289
|
commandExecutionTimeout?: number | undefined;
|
|
@@ -11457,6 +11456,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
11457
11456
|
awsBedrockEndpointEnabled?: boolean | undefined;
|
|
11458
11457
|
awsBedrockEndpoint?: string | undefined;
|
|
11459
11458
|
awsBedrock1MContext?: boolean | undefined;
|
|
11459
|
+
awsBedrockServiceTier?: "STANDARD" | "FLEX" | "PRIORITY" | undefined;
|
|
11460
11460
|
vertexKeyFile?: string | undefined;
|
|
11461
11461
|
vertexJsonCredentials?: string | undefined;
|
|
11462
11462
|
vertexProjectId?: string | undefined;
|
|
@@ -11637,7 +11637,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
11637
11637
|
alwaysAllowWriteProtected?: boolean | undefined;
|
|
11638
11638
|
writeDelayMs?: number | undefined;
|
|
11639
11639
|
alwaysAllowBrowser?: boolean | undefined;
|
|
11640
|
-
alwaysApproveResubmit?: boolean | undefined;
|
|
11641
11640
|
requestDelaySeconds?: number | undefined;
|
|
11642
11641
|
alwaysAllowMcp?: boolean | undefined;
|
|
11643
11642
|
alwaysAllowModeSwitch?: boolean | undefined;
|
|
@@ -11645,7 +11644,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
11645
11644
|
alwaysAllowExecute?: boolean | undefined;
|
|
11646
11645
|
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
11647
11646
|
followupAutoApproveTimeoutMs?: number | undefined;
|
|
11648
|
-
alwaysAllowUpdateTodoList?: boolean | undefined;
|
|
11649
11647
|
allowedCommands?: string[] | undefined;
|
|
11650
11648
|
deniedCommands?: string[] | undefined;
|
|
11651
11649
|
commandExecutionTimeout?: number | undefined;
|
|
@@ -11820,6 +11818,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
11820
11818
|
awsBedrockEndpointEnabled?: boolean | undefined;
|
|
11821
11819
|
awsBedrockEndpoint?: string | undefined;
|
|
11822
11820
|
awsBedrock1MContext?: boolean | undefined;
|
|
11821
|
+
awsBedrockServiceTier?: "STANDARD" | "FLEX" | "PRIORITY" | undefined;
|
|
11823
11822
|
vertexKeyFile?: string | undefined;
|
|
11824
11823
|
vertexJsonCredentials?: string | undefined;
|
|
11825
11824
|
vertexProjectId?: string | undefined;
|
|
@@ -12000,7 +11999,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
12000
11999
|
alwaysAllowWriteProtected?: boolean | undefined;
|
|
12001
12000
|
writeDelayMs?: number | undefined;
|
|
12002
12001
|
alwaysAllowBrowser?: boolean | undefined;
|
|
12003
|
-
alwaysApproveResubmit?: boolean | undefined;
|
|
12004
12002
|
requestDelaySeconds?: number | undefined;
|
|
12005
12003
|
alwaysAllowMcp?: boolean | undefined;
|
|
12006
12004
|
alwaysAllowModeSwitch?: boolean | undefined;
|
|
@@ -12008,7 +12006,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
12008
12006
|
alwaysAllowExecute?: boolean | undefined;
|
|
12009
12007
|
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
12010
12008
|
followupAutoApproveTimeoutMs?: number | undefined;
|
|
12011
|
-
alwaysAllowUpdateTodoList?: boolean | undefined;
|
|
12012
12009
|
allowedCommands?: string[] | undefined;
|
|
12013
12010
|
deniedCommands?: string[] | undefined;
|
|
12014
12011
|
commandExecutionTimeout?: number | undefined;
|
|
@@ -12184,6 +12181,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
12184
12181
|
awsBedrockEndpointEnabled?: boolean | undefined;
|
|
12185
12182
|
awsBedrockEndpoint?: string | undefined;
|
|
12186
12183
|
awsBedrock1MContext?: boolean | undefined;
|
|
12184
|
+
awsBedrockServiceTier?: "STANDARD" | "FLEX" | "PRIORITY" | undefined;
|
|
12187
12185
|
vertexKeyFile?: string | undefined;
|
|
12188
12186
|
vertexJsonCredentials?: string | undefined;
|
|
12189
12187
|
vertexProjectId?: string | undefined;
|
|
@@ -12364,7 +12362,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
12364
12362
|
alwaysAllowWriteProtected?: boolean | undefined;
|
|
12365
12363
|
writeDelayMs?: number | undefined;
|
|
12366
12364
|
alwaysAllowBrowser?: boolean | undefined;
|
|
12367
|
-
alwaysApproveResubmit?: boolean | undefined;
|
|
12368
12365
|
requestDelaySeconds?: number | undefined;
|
|
12369
12366
|
alwaysAllowMcp?: boolean | undefined;
|
|
12370
12367
|
alwaysAllowModeSwitch?: boolean | undefined;
|
|
@@ -12372,7 +12369,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
12372
12369
|
alwaysAllowExecute?: boolean | undefined;
|
|
12373
12370
|
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
12374
12371
|
followupAutoApproveTimeoutMs?: number | undefined;
|
|
12375
|
-
alwaysAllowUpdateTodoList?: boolean | undefined;
|
|
12376
12372
|
allowedCommands?: string[] | undefined;
|
|
12377
12373
|
deniedCommands?: string[] | undefined;
|
|
12378
12374
|
commandExecutionTimeout?: number | undefined;
|
|
@@ -12850,6 +12846,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12850
12846
|
awsBedrockEndpointEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
12851
12847
|
awsBedrockEndpoint: z.ZodOptional<z.ZodString>;
|
|
12852
12848
|
awsBedrock1MContext: z.ZodOptional<z.ZodBoolean>;
|
|
12849
|
+
awsBedrockServiceTier: z.ZodOptional<z.ZodEnum<["STANDARD", "FLEX", "PRIORITY"]>>;
|
|
12853
12850
|
openRouterApiKey: z.ZodOptional<z.ZodString>;
|
|
12854
12851
|
openRouterModelId: z.ZodOptional<z.ZodString>;
|
|
12855
12852
|
openRouterBaseUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -12961,7 +12958,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12961
12958
|
alwaysAllowWriteProtected: z.ZodOptional<z.ZodBoolean>;
|
|
12962
12959
|
writeDelayMs: z.ZodOptional<z.ZodNumber>;
|
|
12963
12960
|
alwaysAllowBrowser: z.ZodOptional<z.ZodBoolean>;
|
|
12964
|
-
alwaysApproveResubmit: z.ZodOptional<z.ZodBoolean>;
|
|
12965
12961
|
requestDelaySeconds: z.ZodOptional<z.ZodNumber>;
|
|
12966
12962
|
alwaysAllowMcp: z.ZodOptional<z.ZodBoolean>;
|
|
12967
12963
|
alwaysAllowModeSwitch: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -12969,7 +12965,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12969
12965
|
alwaysAllowExecute: z.ZodOptional<z.ZodBoolean>;
|
|
12970
12966
|
alwaysAllowFollowupQuestions: z.ZodOptional<z.ZodBoolean>;
|
|
12971
12967
|
followupAutoApproveTimeoutMs: z.ZodOptional<z.ZodNumber>;
|
|
12972
|
-
alwaysAllowUpdateTodoList: z.ZodOptional<z.ZodBoolean>;
|
|
12973
12968
|
allowedCommands: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
12974
12969
|
deniedCommands: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
12975
12970
|
commandExecutionTimeout: z.ZodOptional<z.ZodNumber>;
|
|
@@ -13325,6 +13320,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13325
13320
|
awsBedrockEndpointEnabled?: boolean | undefined;
|
|
13326
13321
|
awsBedrockEndpoint?: string | undefined;
|
|
13327
13322
|
awsBedrock1MContext?: boolean | undefined;
|
|
13323
|
+
awsBedrockServiceTier?: "STANDARD" | "FLEX" | "PRIORITY" | undefined;
|
|
13328
13324
|
vertexKeyFile?: string | undefined;
|
|
13329
13325
|
vertexJsonCredentials?: string | undefined;
|
|
13330
13326
|
vertexProjectId?: string | undefined;
|
|
@@ -13505,7 +13501,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13505
13501
|
alwaysAllowWriteProtected?: boolean | undefined;
|
|
13506
13502
|
writeDelayMs?: number | undefined;
|
|
13507
13503
|
alwaysAllowBrowser?: boolean | undefined;
|
|
13508
|
-
alwaysApproveResubmit?: boolean | undefined;
|
|
13509
13504
|
requestDelaySeconds?: number | undefined;
|
|
13510
13505
|
alwaysAllowMcp?: boolean | undefined;
|
|
13511
13506
|
alwaysAllowModeSwitch?: boolean | undefined;
|
|
@@ -13513,7 +13508,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13513
13508
|
alwaysAllowExecute?: boolean | undefined;
|
|
13514
13509
|
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
13515
13510
|
followupAutoApproveTimeoutMs?: number | undefined;
|
|
13516
|
-
alwaysAllowUpdateTodoList?: boolean | undefined;
|
|
13517
13511
|
allowedCommands?: string[] | undefined;
|
|
13518
13512
|
deniedCommands?: string[] | undefined;
|
|
13519
13513
|
commandExecutionTimeout?: number | undefined;
|
|
@@ -13681,6 +13675,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13681
13675
|
awsBedrockEndpointEnabled?: boolean | undefined;
|
|
13682
13676
|
awsBedrockEndpoint?: string | undefined;
|
|
13683
13677
|
awsBedrock1MContext?: boolean | undefined;
|
|
13678
|
+
awsBedrockServiceTier?: "STANDARD" | "FLEX" | "PRIORITY" | undefined;
|
|
13684
13679
|
vertexKeyFile?: string | undefined;
|
|
13685
13680
|
vertexJsonCredentials?: string | undefined;
|
|
13686
13681
|
vertexProjectId?: string | undefined;
|
|
@@ -13861,7 +13856,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13861
13856
|
alwaysAllowWriteProtected?: boolean | undefined;
|
|
13862
13857
|
writeDelayMs?: number | undefined;
|
|
13863
13858
|
alwaysAllowBrowser?: boolean | undefined;
|
|
13864
|
-
alwaysApproveResubmit?: boolean | undefined;
|
|
13865
13859
|
requestDelaySeconds?: number | undefined;
|
|
13866
13860
|
alwaysAllowMcp?: boolean | undefined;
|
|
13867
13861
|
alwaysAllowModeSwitch?: boolean | undefined;
|
|
@@ -13869,7 +13863,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13869
13863
|
alwaysAllowExecute?: boolean | undefined;
|
|
13870
13864
|
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
13871
13865
|
followupAutoApproveTimeoutMs?: number | undefined;
|
|
13872
|
-
alwaysAllowUpdateTodoList?: boolean | undefined;
|
|
13873
13866
|
allowedCommands?: string[] | undefined;
|
|
13874
13867
|
deniedCommands?: string[] | undefined;
|
|
13875
13868
|
commandExecutionTimeout?: number | undefined;
|
|
@@ -14043,6 +14036,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
14043
14036
|
awsBedrockEndpointEnabled?: boolean | undefined;
|
|
14044
14037
|
awsBedrockEndpoint?: string | undefined;
|
|
14045
14038
|
awsBedrock1MContext?: boolean | undefined;
|
|
14039
|
+
awsBedrockServiceTier?: "STANDARD" | "FLEX" | "PRIORITY" | undefined;
|
|
14046
14040
|
vertexKeyFile?: string | undefined;
|
|
14047
14041
|
vertexJsonCredentials?: string | undefined;
|
|
14048
14042
|
vertexProjectId?: string | undefined;
|
|
@@ -14223,7 +14217,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
14223
14217
|
alwaysAllowWriteProtected?: boolean | undefined;
|
|
14224
14218
|
writeDelayMs?: number | undefined;
|
|
14225
14219
|
alwaysAllowBrowser?: boolean | undefined;
|
|
14226
|
-
alwaysApproveResubmit?: boolean | undefined;
|
|
14227
14220
|
requestDelaySeconds?: number | undefined;
|
|
14228
14221
|
alwaysAllowMcp?: boolean | undefined;
|
|
14229
14222
|
alwaysAllowModeSwitch?: boolean | undefined;
|
|
@@ -14231,7 +14224,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
14231
14224
|
alwaysAllowExecute?: boolean | undefined;
|
|
14232
14225
|
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
14233
14226
|
followupAutoApproveTimeoutMs?: number | undefined;
|
|
14234
|
-
alwaysAllowUpdateTodoList?: boolean | undefined;
|
|
14235
14227
|
allowedCommands?: string[] | undefined;
|
|
14236
14228
|
deniedCommands?: string[] | undefined;
|
|
14237
14229
|
commandExecutionTimeout?: number | undefined;
|
|
@@ -14404,6 +14396,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
14404
14396
|
awsBedrockEndpointEnabled?: boolean | undefined;
|
|
14405
14397
|
awsBedrockEndpoint?: string | undefined;
|
|
14406
14398
|
awsBedrock1MContext?: boolean | undefined;
|
|
14399
|
+
awsBedrockServiceTier?: "STANDARD" | "FLEX" | "PRIORITY" | undefined;
|
|
14407
14400
|
vertexKeyFile?: string | undefined;
|
|
14408
14401
|
vertexJsonCredentials?: string | undefined;
|
|
14409
14402
|
vertexProjectId?: string | undefined;
|
|
@@ -14584,7 +14577,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
14584
14577
|
alwaysAllowWriteProtected?: boolean | undefined;
|
|
14585
14578
|
writeDelayMs?: number | undefined;
|
|
14586
14579
|
alwaysAllowBrowser?: boolean | undefined;
|
|
14587
|
-
alwaysApproveResubmit?: boolean | undefined;
|
|
14588
14580
|
requestDelaySeconds?: number | undefined;
|
|
14589
14581
|
alwaysAllowMcp?: boolean | undefined;
|
|
14590
14582
|
alwaysAllowModeSwitch?: boolean | undefined;
|
|
@@ -14592,7 +14584,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
14592
14584
|
alwaysAllowExecute?: boolean | undefined;
|
|
14593
14585
|
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
14594
14586
|
followupAutoApproveTimeoutMs?: number | undefined;
|
|
14595
|
-
alwaysAllowUpdateTodoList?: boolean | undefined;
|
|
14596
14587
|
allowedCommands?: string[] | undefined;
|
|
14597
14588
|
deniedCommands?: string[] | undefined;
|
|
14598
14589
|
commandExecutionTimeout?: number | undefined;
|
|
@@ -14767,6 +14758,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
14767
14758
|
awsBedrockEndpointEnabled?: boolean | undefined;
|
|
14768
14759
|
awsBedrockEndpoint?: string | undefined;
|
|
14769
14760
|
awsBedrock1MContext?: boolean | undefined;
|
|
14761
|
+
awsBedrockServiceTier?: "STANDARD" | "FLEX" | "PRIORITY" | undefined;
|
|
14770
14762
|
vertexKeyFile?: string | undefined;
|
|
14771
14763
|
vertexJsonCredentials?: string | undefined;
|
|
14772
14764
|
vertexProjectId?: string | undefined;
|
|
@@ -14947,7 +14939,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
14947
14939
|
alwaysAllowWriteProtected?: boolean | undefined;
|
|
14948
14940
|
writeDelayMs?: number | undefined;
|
|
14949
14941
|
alwaysAllowBrowser?: boolean | undefined;
|
|
14950
|
-
alwaysApproveResubmit?: boolean | undefined;
|
|
14951
14942
|
requestDelaySeconds?: number | undefined;
|
|
14952
14943
|
alwaysAllowMcp?: boolean | undefined;
|
|
14953
14944
|
alwaysAllowModeSwitch?: boolean | undefined;
|
|
@@ -14955,7 +14946,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
14955
14946
|
alwaysAllowExecute?: boolean | undefined;
|
|
14956
14947
|
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
14957
14948
|
followupAutoApproveTimeoutMs?: number | undefined;
|
|
14958
|
-
alwaysAllowUpdateTodoList?: boolean | undefined;
|
|
14959
14949
|
allowedCommands?: string[] | undefined;
|
|
14960
14950
|
deniedCommands?: string[] | undefined;
|
|
14961
14951
|
commandExecutionTimeout?: number | undefined;
|
|
@@ -15131,6 +15121,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
15131
15121
|
awsBedrockEndpointEnabled?: boolean | undefined;
|
|
15132
15122
|
awsBedrockEndpoint?: string | undefined;
|
|
15133
15123
|
awsBedrock1MContext?: boolean | undefined;
|
|
15124
|
+
awsBedrockServiceTier?: "STANDARD" | "FLEX" | "PRIORITY" | undefined;
|
|
15134
15125
|
vertexKeyFile?: string | undefined;
|
|
15135
15126
|
vertexJsonCredentials?: string | undefined;
|
|
15136
15127
|
vertexProjectId?: string | undefined;
|
|
@@ -15311,7 +15302,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
15311
15302
|
alwaysAllowWriteProtected?: boolean | undefined;
|
|
15312
15303
|
writeDelayMs?: number | undefined;
|
|
15313
15304
|
alwaysAllowBrowser?: boolean | undefined;
|
|
15314
|
-
alwaysApproveResubmit?: boolean | undefined;
|
|
15315
15305
|
requestDelaySeconds?: number | undefined;
|
|
15316
15306
|
alwaysAllowMcp?: boolean | undefined;
|
|
15317
15307
|
alwaysAllowModeSwitch?: boolean | undefined;
|
|
@@ -15319,7 +15309,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
15319
15309
|
alwaysAllowExecute?: boolean | undefined;
|
|
15320
15310
|
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
15321
15311
|
followupAutoApproveTimeoutMs?: number | undefined;
|
|
15322
|
-
alwaysAllowUpdateTodoList?: boolean | undefined;
|
|
15323
15312
|
allowedCommands?: string[] | undefined;
|
|
15324
15313
|
deniedCommands?: string[] | undefined;
|
|
15325
15314
|
commandExecutionTimeout?: number | undefined;
|
|
@@ -15549,6 +15538,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
15549
15538
|
awsBedrockEndpointEnabled?: boolean | undefined;
|
|
15550
15539
|
awsBedrockEndpoint?: string | undefined;
|
|
15551
15540
|
awsBedrock1MContext?: boolean | undefined;
|
|
15541
|
+
awsBedrockServiceTier?: "STANDARD" | "FLEX" | "PRIORITY" | undefined;
|
|
15552
15542
|
vertexKeyFile?: string | undefined;
|
|
15553
15543
|
vertexJsonCredentials?: string | undefined;
|
|
15554
15544
|
vertexProjectId?: string | undefined;
|
|
@@ -15729,7 +15719,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
15729
15719
|
alwaysAllowWriteProtected?: boolean | undefined;
|
|
15730
15720
|
writeDelayMs?: number | undefined;
|
|
15731
15721
|
alwaysAllowBrowser?: boolean | undefined;
|
|
15732
|
-
alwaysApproveResubmit?: boolean | undefined;
|
|
15733
15722
|
requestDelaySeconds?: number | undefined;
|
|
15734
15723
|
alwaysAllowMcp?: boolean | undefined;
|
|
15735
15724
|
alwaysAllowModeSwitch?: boolean | undefined;
|
|
@@ -15737,7 +15726,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
15737
15726
|
alwaysAllowExecute?: boolean | undefined;
|
|
15738
15727
|
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
15739
15728
|
followupAutoApproveTimeoutMs?: number | undefined;
|
|
15740
|
-
alwaysAllowUpdateTodoList?: boolean | undefined;
|
|
15741
15729
|
allowedCommands?: string[] | undefined;
|
|
15742
15730
|
deniedCommands?: string[] | undefined;
|
|
15743
15731
|
commandExecutionTimeout?: number | undefined;
|
|
@@ -15933,6 +15921,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
15933
15921
|
awsBedrockEndpointEnabled?: boolean | undefined;
|
|
15934
15922
|
awsBedrockEndpoint?: string | undefined;
|
|
15935
15923
|
awsBedrock1MContext?: boolean | undefined;
|
|
15924
|
+
awsBedrockServiceTier?: "STANDARD" | "FLEX" | "PRIORITY" | undefined;
|
|
15936
15925
|
vertexKeyFile?: string | undefined;
|
|
15937
15926
|
vertexJsonCredentials?: string | undefined;
|
|
15938
15927
|
vertexProjectId?: string | undefined;
|
|
@@ -16113,7 +16102,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
16113
16102
|
alwaysAllowWriteProtected?: boolean | undefined;
|
|
16114
16103
|
writeDelayMs?: number | undefined;
|
|
16115
16104
|
alwaysAllowBrowser?: boolean | undefined;
|
|
16116
|
-
alwaysApproveResubmit?: boolean | undefined;
|
|
16117
16105
|
requestDelaySeconds?: number | undefined;
|
|
16118
16106
|
alwaysAllowMcp?: boolean | undefined;
|
|
16119
16107
|
alwaysAllowModeSwitch?: boolean | undefined;
|
|
@@ -16121,7 +16109,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
16121
16109
|
alwaysAllowExecute?: boolean | undefined;
|
|
16122
16110
|
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
16123
16111
|
followupAutoApproveTimeoutMs?: number | undefined;
|
|
16124
|
-
alwaysAllowUpdateTodoList?: boolean | undefined;
|
|
16125
16112
|
allowedCommands?: string[] | undefined;
|
|
16126
16113
|
deniedCommands?: string[] | undefined;
|
|
16127
16114
|
commandExecutionTimeout?: number | undefined;
|
|
@@ -19324,18 +19311,21 @@ type WorkspaceTaskVisibility = z.infer<typeof workspaceTaskVisibilitySchema>;
|
|
|
19324
19311
|
declare const organizationCloudSettingsSchema: z.ZodObject<{
|
|
19325
19312
|
recordTaskMessages: z.ZodOptional<z.ZodBoolean>;
|
|
19326
19313
|
enableTaskSharing: z.ZodOptional<z.ZodBoolean>;
|
|
19314
|
+
allowPublicTaskSharing: z.ZodOptional<z.ZodBoolean>;
|
|
19327
19315
|
taskShareExpirationDays: z.ZodOptional<z.ZodNumber>;
|
|
19328
19316
|
allowMembersViewAllTasks: z.ZodOptional<z.ZodBoolean>;
|
|
19329
19317
|
workspaceTaskVisibility: z.ZodOptional<z.ZodEnum<["all", "list-only", "full-lockdown"]>>;
|
|
19330
19318
|
}, "strip", z.ZodTypeAny, {
|
|
19331
19319
|
recordTaskMessages?: boolean | undefined;
|
|
19332
19320
|
enableTaskSharing?: boolean | undefined;
|
|
19321
|
+
allowPublicTaskSharing?: boolean | undefined;
|
|
19333
19322
|
taskShareExpirationDays?: number | undefined;
|
|
19334
19323
|
allowMembersViewAllTasks?: boolean | undefined;
|
|
19335
19324
|
workspaceTaskVisibility?: "all" | "list-only" | "full-lockdown" | undefined;
|
|
19336
19325
|
}, {
|
|
19337
19326
|
recordTaskMessages?: boolean | undefined;
|
|
19338
19327
|
enableTaskSharing?: boolean | undefined;
|
|
19328
|
+
allowPublicTaskSharing?: boolean | undefined;
|
|
19339
19329
|
taskShareExpirationDays?: number | undefined;
|
|
19340
19330
|
allowMembersViewAllTasks?: boolean | undefined;
|
|
19341
19331
|
workspaceTaskVisibility?: "all" | "list-only" | "full-lockdown" | undefined;
|
|
@@ -19360,18 +19350,21 @@ declare const organizationSettingsSchema: z.ZodObject<{
|
|
|
19360
19350
|
cloudSettings: z.ZodOptional<z.ZodObject<{
|
|
19361
19351
|
recordTaskMessages: z.ZodOptional<z.ZodBoolean>;
|
|
19362
19352
|
enableTaskSharing: z.ZodOptional<z.ZodBoolean>;
|
|
19353
|
+
allowPublicTaskSharing: z.ZodOptional<z.ZodBoolean>;
|
|
19363
19354
|
taskShareExpirationDays: z.ZodOptional<z.ZodNumber>;
|
|
19364
19355
|
allowMembersViewAllTasks: z.ZodOptional<z.ZodBoolean>;
|
|
19365
19356
|
workspaceTaskVisibility: z.ZodOptional<z.ZodEnum<["all", "list-only", "full-lockdown"]>>;
|
|
19366
19357
|
}, "strip", z.ZodTypeAny, {
|
|
19367
19358
|
recordTaskMessages?: boolean | undefined;
|
|
19368
19359
|
enableTaskSharing?: boolean | undefined;
|
|
19360
|
+
allowPublicTaskSharing?: boolean | undefined;
|
|
19369
19361
|
taskShareExpirationDays?: number | undefined;
|
|
19370
19362
|
allowMembersViewAllTasks?: boolean | undefined;
|
|
19371
19363
|
workspaceTaskVisibility?: "all" | "list-only" | "full-lockdown" | undefined;
|
|
19372
19364
|
}, {
|
|
19373
19365
|
recordTaskMessages?: boolean | undefined;
|
|
19374
19366
|
enableTaskSharing?: boolean | undefined;
|
|
19367
|
+
allowPublicTaskSharing?: boolean | undefined;
|
|
19375
19368
|
taskShareExpirationDays?: number | undefined;
|
|
19376
19369
|
allowMembersViewAllTasks?: boolean | undefined;
|
|
19377
19370
|
workspaceTaskVisibility?: "all" | "list-only" | "full-lockdown" | undefined;
|
|
@@ -19837,6 +19830,7 @@ declare const organizationSettingsSchema: z.ZodObject<{
|
|
|
19837
19830
|
awsBedrockEndpointEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
19838
19831
|
awsBedrockEndpoint: z.ZodOptional<z.ZodString>;
|
|
19839
19832
|
awsBedrock1MContext: z.ZodOptional<z.ZodBoolean>;
|
|
19833
|
+
awsBedrockServiceTier: z.ZodOptional<z.ZodEnum<["STANDARD", "FLEX", "PRIORITY"]>>;
|
|
19840
19834
|
openRouterApiKey: z.ZodOptional<z.ZodString>;
|
|
19841
19835
|
openRouterModelId: z.ZodOptional<z.ZodString>;
|
|
19842
19836
|
openRouterBaseUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -19904,6 +19898,7 @@ declare const organizationSettingsSchema: z.ZodObject<{
|
|
|
19904
19898
|
awsBedrockEndpointEnabled?: boolean | undefined;
|
|
19905
19899
|
awsBedrockEndpoint?: string | undefined;
|
|
19906
19900
|
awsBedrock1MContext?: boolean | undefined;
|
|
19901
|
+
awsBedrockServiceTier?: "STANDARD" | "FLEX" | "PRIORITY" | undefined;
|
|
19907
19902
|
vertexKeyFile?: string | undefined;
|
|
19908
19903
|
vertexJsonCredentials?: string | undefined;
|
|
19909
19904
|
vertexProjectId?: string | undefined;
|
|
@@ -20077,6 +20072,7 @@ declare const organizationSettingsSchema: z.ZodObject<{
|
|
|
20077
20072
|
awsBedrockEndpointEnabled?: boolean | undefined;
|
|
20078
20073
|
awsBedrockEndpoint?: string | undefined;
|
|
20079
20074
|
awsBedrock1MContext?: boolean | undefined;
|
|
20075
|
+
awsBedrockServiceTier?: "STANDARD" | "FLEX" | "PRIORITY" | undefined;
|
|
20080
20076
|
vertexKeyFile?: string | undefined;
|
|
20081
20077
|
vertexJsonCredentials?: string | undefined;
|
|
20082
20078
|
vertexProjectId?: string | undefined;
|
|
@@ -20224,6 +20220,7 @@ declare const organizationSettingsSchema: z.ZodObject<{
|
|
|
20224
20220
|
cloudSettings?: {
|
|
20225
20221
|
recordTaskMessages?: boolean | undefined;
|
|
20226
20222
|
enableTaskSharing?: boolean | undefined;
|
|
20223
|
+
allowPublicTaskSharing?: boolean | undefined;
|
|
20227
20224
|
taskShareExpirationDays?: number | undefined;
|
|
20228
20225
|
allowMembersViewAllTasks?: boolean | undefined;
|
|
20229
20226
|
workspaceTaskVisibility?: "all" | "list-only" | "full-lockdown" | undefined;
|
|
@@ -20313,6 +20310,7 @@ declare const organizationSettingsSchema: z.ZodObject<{
|
|
|
20313
20310
|
awsBedrockEndpointEnabled?: boolean | undefined;
|
|
20314
20311
|
awsBedrockEndpoint?: string | undefined;
|
|
20315
20312
|
awsBedrock1MContext?: boolean | undefined;
|
|
20313
|
+
awsBedrockServiceTier?: "STANDARD" | "FLEX" | "PRIORITY" | undefined;
|
|
20316
20314
|
vertexKeyFile?: string | undefined;
|
|
20317
20315
|
vertexJsonCredentials?: string | undefined;
|
|
20318
20316
|
vertexProjectId?: string | undefined;
|
|
@@ -20460,6 +20458,7 @@ declare const organizationSettingsSchema: z.ZodObject<{
|
|
|
20460
20458
|
cloudSettings?: {
|
|
20461
20459
|
recordTaskMessages?: boolean | undefined;
|
|
20462
20460
|
enableTaskSharing?: boolean | undefined;
|
|
20461
|
+
allowPublicTaskSharing?: boolean | undefined;
|
|
20463
20462
|
taskShareExpirationDays?: number | undefined;
|
|
20464
20463
|
allowMembersViewAllTasks?: boolean | undefined;
|
|
20465
20464
|
workspaceTaskVisibility?: "all" | "list-only" | "full-lockdown" | undefined;
|
|
@@ -20549,6 +20548,7 @@ declare const organizationSettingsSchema: z.ZodObject<{
|
|
|
20549
20548
|
awsBedrockEndpointEnabled?: boolean | undefined;
|
|
20550
20549
|
awsBedrockEndpoint?: string | undefined;
|
|
20551
20550
|
awsBedrock1MContext?: boolean | undefined;
|
|
20551
|
+
awsBedrockServiceTier?: "STANDARD" | "FLEX" | "PRIORITY" | undefined;
|
|
20552
20552
|
vertexKeyFile?: string | undefined;
|
|
20553
20553
|
vertexJsonCredentials?: string | undefined;
|
|
20554
20554
|
vertexProjectId?: string | undefined;
|
|
@@ -45814,6 +45814,21 @@ declare const bedrockModels: {
|
|
|
45814
45814
|
readonly maxCachePoints: 1;
|
|
45815
45815
|
readonly cachableFields: ["system"];
|
|
45816
45816
|
};
|
|
45817
|
+
readonly "amazon.nova-2-lite-v1:0": {
|
|
45818
|
+
readonly maxTokens: 65535;
|
|
45819
|
+
readonly contextWindow: 1000000;
|
|
45820
|
+
readonly supportsImages: true;
|
|
45821
|
+
readonly supportsPromptCache: true;
|
|
45822
|
+
readonly supportsNativeTools: true;
|
|
45823
|
+
readonly inputPrice: 0.33;
|
|
45824
|
+
readonly outputPrice: 2.75;
|
|
45825
|
+
readonly cacheWritesPrice: 0;
|
|
45826
|
+
readonly cacheReadsPrice: 0.0825;
|
|
45827
|
+
readonly minTokensPerCachePoint: 1;
|
|
45828
|
+
readonly maxCachePoints: 1;
|
|
45829
|
+
readonly cachableFields: ["system"];
|
|
45830
|
+
readonly description: "Amazon Nova 2 Lite - Comparable to Claude Haiku 4.5";
|
|
45831
|
+
};
|
|
45817
45832
|
readonly "amazon.nova-micro-v1:0": {
|
|
45818
45833
|
readonly maxTokens: 5000;
|
|
45819
45834
|
readonly contextWindow: 128000;
|
|
@@ -46242,6 +46257,13 @@ declare const BEDROCK_REGIONS: {
|
|
|
46242
46257
|
}[];
|
|
46243
46258
|
declare const BEDROCK_1M_CONTEXT_MODEL_IDS: readonly ["anthropic.claude-sonnet-4-20250514-v1:0", "anthropic.claude-sonnet-4-5-20250929-v1:0"];
|
|
46244
46259
|
declare const BEDROCK_GLOBAL_INFERENCE_MODEL_IDS: readonly ["anthropic.claude-sonnet-4-20250514-v1:0", "anthropic.claude-sonnet-4-5-20250929-v1:0", "anthropic.claude-haiku-4-5-20251001-v1:0", "anthropic.claude-opus-4-5-20251101-v1:0"];
|
|
46260
|
+
type BedrockServiceTier = "STANDARD" | "FLEX" | "PRIORITY";
|
|
46261
|
+
declare const BEDROCK_SERVICE_TIER_MODEL_IDS: readonly ["amazon.nova-lite-v1:0", "amazon.nova-2-lite-v1:0", "amazon.nova-pro-v1:0", "amazon.nova-pro-latency-optimized-v1:0", "deepseek.r1-v1:0", "qwen.qwen3-next-80b-a3b", "qwen.qwen3-coder-480b-a35b-v1:0", "openai.gpt-oss-20b-1:0", "openai.gpt-oss-120b-1:0"];
|
|
46262
|
+
declare const BEDROCK_SERVICE_TIER_PRICING: {
|
|
46263
|
+
readonly STANDARD: 1;
|
|
46264
|
+
readonly FLEX: 0.5;
|
|
46265
|
+
readonly PRIORITY: 1.75;
|
|
46266
|
+
};
|
|
46245
46267
|
|
|
46246
46268
|
type CerebrasModelId = keyof typeof cerebrasModels;
|
|
46247
46269
|
declare const cerebrasDefaultModelId: CerebrasModelId;
|
|
@@ -49630,4 +49652,4 @@ declare function getProviderDefaultModelId(provider: ProviderName, options?: {
|
|
|
49630
49652
|
isChina?: boolean;
|
|
49631
49653
|
}): string;
|
|
49632
49654
|
|
|
49633
|
-
export { ANTHROPIC_DEFAULT_MAX_TOKENS, ANTHROPIC_STYLE_PROVIDERS, AWS_INFERENCE_PROFILE_MAPPING, type Ack, type AnthropicModelId, ApiProviderError, type AppProperties, type AssertEqual, type AuthService, type AuthServiceEvents, type AuthState, BEDROCK_1M_CONTEXT_MODEL_IDS, BEDROCK_DEFAULT_CONTEXT, BEDROCK_DEFAULT_TEMPERATURE, BEDROCK_GLOBAL_INFERENCE_MODEL_IDS, BEDROCK_MAX_TOKENS, BEDROCK_REGIONS, type BasetenModelId, type BedrockModelId, type BrowserActionParams, CLAUDE_CODE_DEFAULT_MAX_OUTPUT_TOKENS, CODEBASE_INDEX_DEFAULTS, CONSENT_COOKIE_NAME, CONTEXT_MANAGEMENT_EVENTS, COOKIE_CONSENT_EVENTS, type CerebrasModelId, type ChutesModelId, type ClaudeCodeModelId, type ClineAsk, type ClineMessage, type ClineSay, type CloudAppProperties, type CloudOrganization, type CloudOrganizationMembership, type CloudServiceEvents, type CloudUserInfo, type CodeActionId, type CodeActionName, type CodebaseIndexConfig, type CodebaseIndexModels, type CodebaseIndexProvider, type CommandExecutionStatus, type CommandId, ConnectionState, type ConsentCookieValue, type ContextCondense, type ContextManagementEvent, type ContextTruncation, type Coordinate, type CreateTaskOptions, type CustomModePrompts, type CustomModesSettings, type CustomProvider, type CustomSupportPrompts, DEEP_SEEK_DEFAULT_TEMPERATURE, DEFAULT_CHECKPOINT_TIMEOUT_SECONDS, DEFAULT_CONSECUTIVE_MISTAKE_LIMIT, DEFAULT_MODES, DEFAULT_TERMINAL_OUTPUT_CHARACTER_LIMIT, DEFAULT_WRITE_DELAY_MS, DOUBAO_API_BASE_URL, DOUBAO_API_CHAT_PATH, type DeepSeekModelId, type DynamicAppProperties, type DynamicProvider, EVALS_SETTINGS, EVALS_TIMEOUT, EXPECTED_API_ERROR_CODES, type Equals, type ExperimentId, type Experiments, type ExtensionBridgeCommand, ExtensionBridgeCommandName, type ExtensionBridgeEvent, ExtensionBridgeEventName, type ExtensionInstance, ExtensionSocketEvents, type ExtensionTask, type FauxProvider, type FeatherlessModelId, type FileEntry, type FireworksModelId, type FollowUpData, type FollowUpDataType, GLOBAL_SECRET_KEYS, GLOBAL_SETTINGS_KEYS, GLOBAL_STATE_KEYS, type GeminiModelId, type GenerateImageParams, type GitProperties, type GlobalSettings, type GlobalState, type GroqModelId, type GroupEntry, type GroupOptions, HEARTBEAT_INTERVAL_MS, HUGGINGFACE_API_URL, HUGGINGFACE_CACHE_DURATION, HUGGINGFACE_DEFAULT_CONTEXT_WINDOW, HUGGINGFACE_DEFAULT_MAX_TOKENS, HUGGINGFACE_MAX_TOKENS_FALLBACK, HUGGINGFACE_SLIDER_MIN, HUGGINGFACE_SLIDER_STEP, HUGGINGFACE_TEMPERATURE_MAX_VALUE, type HistoryItem, IMAGE_GENERATION_MODELS, IMAGE_GENERATION_MODEL_IDS, INSTANCE_TTL_SECONDS, type IOIntelligenceModelId, IO_INTELLIGENCE_CACHE_DURATION, type IdleAsk, type ImageGenerationApiMethod, type ImageGenerationModel, type ImageGenerationProvider, type InstallMarketplaceItemOptions, type InteractiveAsk, type InternalProvider, type InternationalZAiModelId, type IpcClientEvents, type IpcMessage, IpcMessageType, IpcOrigin, type IpcServerEvents, type JWTPayload, type JoinResponse, type Keys, LMSTUDIO_DEFAULT_TEMPERATURE, type Language, type LeaveResponse, type LineRange, type LocalProvider, MAX_CHECKPOINT_TIMEOUT_SECONDS, MINIMAX_DEFAULT_MAX_TOKENS, MINIMAX_DEFAULT_TEMPERATURE, MIN_CHECKPOINT_TIMEOUT_SECONDS, MISTRAL_DEFAULT_TEMPERATURE, MODELS_BY_PROVIDER, MOONSHOT_DEFAULT_TEMPERATURE, type MainlandZAiModelId, type MarketplaceItem, type MarketplaceItemType, type McpExecutionStatus, type McpInstallationMethod, type McpMarketplaceItem, type McpParameter, type McpServerUse, type MinimaxModelId, type MistralModelId, type ModeConfig, type ModeMarketplaceItem, type ModelIdKey, type ModelInfo, type ModelParameter, type MoonshotModelId, type NonBlockingAsk, OPENAI_AZURE_AI_INFERENCE_PATH, OPENAI_NATIVE_DEFAULT_TEMPERATURE, OPENROUTER_DEFAULT_PROVIDER_NAME, 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 OrganizationFeatures, type OrganizationSettings, PROVIDER_SETTINGS_KEYS, type PromptComponent, type ProviderName, type ProviderSettings, type ProviderSettingsEntry, type ProviderSettingsWithId, type QueuedMessage, type QwenCodeModelId, type ReasoningEffort, type ReasoningEffortExtended, type ReasoningEffortWithMinimal, type ResumableAsk, type RetryConfig, type RooCodeAPI, type RooCodeAPIEvents, RooCodeEventName, type RooCodeEvents, type RooCodeIpcServer, type RooCodeSettings, type RooCodeTelemetryEvent, type RooModel, RooModelSchema, type RooModelsResponse, RooModelsResponseSchema, RooPricingSchema, SECRET_STATE_KEYS, type SambaNovaModelId, type SecretState, type ServiceTier, type SettingsService, type SettingsServiceEvents, type ShareResponse, type ShareVisibility, type Size, type StaticAppProperties, type SuggestionItem, TOOL_PROTOCOL, type TaskBridgeCommand, TaskBridgeCommandName, type TaskBridgeEvent, TaskBridgeEventName, type TaskCommand, TaskCommandName, type TaskEvent, type TaskEvents, type TaskLike, type TaskMetadata, type TaskProperties, type TaskProviderEvents, type TaskProviderLike, TaskSocketEvents, TaskStatus, type TelemetryClient, type TelemetryEvent, TelemetryEventName, type TelemetryEventSubscription, type TelemetryProperties, type TelemetryPropertiesProvider, type TelemetrySetting, type TerminalActionId, type TerminalActionName, type TerminalActionPromptType, type TodoItem, type TodoStatus, type TokenUsage, type ToolGroup, type ToolName, type ToolProgressStatus, type ToolProtocol, type ToolUsage, type TypicalProvider, type UsageStats, type UserFeatures, type UserSettingsConfig, type UserSettingsData, VERCEL_AI_GATEWAY_DEFAULT_TEMPERATURE, VERCEL_AI_GATEWAY_PROMPT_CACHING_MODELS, VERCEL_AI_GATEWAY_VISION_AND_TOOLS_MODELS, VERCEL_AI_GATEWAY_VISION_ONLY_MODELS, VERTEX_REGIONS, type Values, type VerbosityLevel, type VertexModelId, type VscodeLlmModelId, type WorkspaceTaskVisibility, type XAIModelId, ZAI_DEFAULT_TEMPERATURE, type ZaiApiLine, ackSchema, anthropicDefaultModelId, anthropicModels, appPropertiesSchema, azureOpenAiDefaultApiVersion, basetenDefaultModelId, basetenModels, bedrockDefaultModelId, bedrockDefaultPromptRouterModelId, bedrockModels, cerebrasDefaultModelId, cerebrasModels, chutesDefaultModelId, chutesDefaultModelInfo, chutesModels, claudeCodeDefaultModelId, claudeCodeModels, clineAskSchema, clineAsks, clineMessageSchema, clineSaySchema, clineSays, cloudAppPropertiesSchema, codeActionIds, codebaseIndexConfigSchema, codebaseIndexModelsSchema, codebaseIndexProviderSchema, commandExecutionStatusSchema, commandIds, contextCondenseSchema, contextTruncationSchema, convertModelNameForVertex, customModePromptsSchema, customModesSettingsSchema, customProviders, customSupportPromptsSchema, deepInfraDefaultModelId, deepInfraDefaultModelInfo, deepSeekDefaultModelId, deepSeekModels, discriminatedProviderSettingsWithIdSchema, doubaoDefaultModelId, doubaoDefaultModelInfo, doubaoModels, dynamicAppPropertiesSchema, dynamicProviders, experimentIds, experimentIdsSchema, experimentsSchema, extensionBridgeCommandSchema, extensionBridgeEventSchema, extensionInstanceSchema, extractApiProviderErrorProperties, fauxProviders, featherlessDefaultModelId, featherlessModels, fireworksDefaultModelId, fireworksModels, followUpDataSchema, geminiDefaultModelId, geminiModels, getApiProtocol, getClaudeCodeModelId, getEffectiveProtocol, getErrorMessage, getErrorStatusCode, getImageGenerationProvider, getModelId, getProviderDefaultModelId, gitPropertiesSchema, globalSettingsSchema, groqDefaultModelId, groqModels, groupEntrySchema, groupOptionsSchema, historyItemSchema, idleAsks, installMarketplaceItemOptionsSchema, interactiveAsks, internalProviders, internationalZAiDefaultModelId, internationalZAiModels, ioIntelligenceDefaultBaseUrl, ioIntelligenceDefaultModelId, ioIntelligenceModels, ipcMessageSchema, isApiProviderError, isContextManagementEvent, isCustomProvider, isDynamicProvider, isFauxProvider, isGlobalStateKey, isIdleAsk, isInteractiveAsk, isInternalProvider, isLanguage, isLocalProvider, isModelParameter, isNativeProtocol, isNonBlockingAsk, isProviderName, isResumableAsk, isSecretStateKey, isTypicalProvider, lMStudioDefaultModelId, lMStudioDefaultModelInfo, languages, languagesSchema, litellmDefaultModelId, litellmDefaultModelInfo, localProviders, mainlandZAiDefaultModelId, mainlandZAiModels, marketplaceItemSchema, marketplaceItemTypeSchema, mcpExecutionStatusSchema, mcpInstallationMethodSchema, mcpMarketplaceItemSchema, mcpParameterSchema, minimaxDefaultModelId, minimaxDefaultModelInfo, minimaxModels, mistralDefaultModelId, mistralModels, modeConfigSchema, modeMarketplaceItemSchema, modelIdKeys, modelIdKeysByProvider, modelInfoSchema, modelParameters, modelParametersSchema, moonshotDefaultModelId, moonshotModels, nonBlockingAsks, ollamaDefaultModelId, ollamaDefaultModelInfo, openAiModelInfoSaneDefaults, openAiNativeDefaultModelId, openAiNativeModels, openRouterDefaultModelId, openRouterDefaultModelInfo, organizationAllowListSchema, organizationCloudSettingsSchema, organizationDefaultSettingsSchema, organizationFeaturesSchema, organizationSettingsSchema, promptComponentSchema, providerNames, providerNamesSchema, providerSettingsEntrySchema, providerSettingsSchema, providerSettingsSchemaDiscriminated, providerSettingsWithIdSchema, queuedMessageSchema, qwenCodeDefaultModelId, qwenCodeModels, reasoningEffortExtendedSchema, reasoningEffortSettingSchema, reasoningEffortSettingValues, reasoningEffortWithMinimalSchema, reasoningEfforts, reasoningEffortsExtended, reasoningEffortsSchema, requestyDefaultModelId, requestyDefaultModelInfo, resumableAsks, rooCodeEventsSchema, rooCodeSettingsSchema, rooCodeTelemetryEventSchema, rooDefaultModelId, rooModels, sambaNovaDefaultModelId, sambaNovaModels, serviceTierSchema, serviceTiers, shareResponseSchema, shouldReportApiErrorToTelemetry, shouldUseSingleFileRead, staticAppPropertiesSchema, suggestionItemSchema, taskBridgeCommandSchema, taskBridgeEventSchema, taskCommandSchema, taskEventSchema, taskMetadataSchema, taskPropertiesSchema, telemetryPropertiesSchema, telemetrySettings, telemetrySettingsSchema, terminalActionIds, todoItemSchema, todoStatusSchema, tokenUsageSchema, toolGroups, toolGroupsSchema, toolNames, toolNamesSchema, toolProgressStatusSchema, toolUsageSchema, unboundDefaultModelId, unboundDefaultModelInfo, usageStatsSchema, userFeaturesSchema, userSettingsConfigSchema, userSettingsDataSchema, verbosityLevels, verbosityLevelsSchema, vercelAiGatewayDefaultModelId, vercelAiGatewayDefaultModelInfo, vertexDefaultModelId, vertexModels, vscodeLlmDefaultModelId, vscodeLlmModels, xaiDefaultModelId, xaiModels, zaiApiLineConfigs, zaiApiLineSchema };
|
|
49655
|
+
export { ANTHROPIC_DEFAULT_MAX_TOKENS, ANTHROPIC_STYLE_PROVIDERS, AWS_INFERENCE_PROFILE_MAPPING, type Ack, type AnthropicModelId, ApiProviderError, type AppProperties, type AssertEqual, type AuthService, type AuthServiceEvents, type AuthState, BEDROCK_1M_CONTEXT_MODEL_IDS, BEDROCK_DEFAULT_CONTEXT, BEDROCK_DEFAULT_TEMPERATURE, BEDROCK_GLOBAL_INFERENCE_MODEL_IDS, BEDROCK_MAX_TOKENS, BEDROCK_REGIONS, BEDROCK_SERVICE_TIER_MODEL_IDS, BEDROCK_SERVICE_TIER_PRICING, type BasetenModelId, type BedrockModelId, type BedrockServiceTier, type BrowserActionParams, CLAUDE_CODE_DEFAULT_MAX_OUTPUT_TOKENS, CODEBASE_INDEX_DEFAULTS, CONSENT_COOKIE_NAME, CONTEXT_MANAGEMENT_EVENTS, COOKIE_CONSENT_EVENTS, type CerebrasModelId, type ChutesModelId, type ClaudeCodeModelId, type ClineAsk, type ClineMessage, type ClineSay, type CloudAppProperties, type CloudOrganization, type CloudOrganizationMembership, type CloudServiceEvents, type CloudUserInfo, type CodeActionId, type CodeActionName, type CodebaseIndexConfig, type CodebaseIndexModels, type CodebaseIndexProvider, type CommandExecutionStatus, type CommandId, ConnectionState, type ConsentCookieValue, type ContextCondense, type ContextManagementEvent, type ContextTruncation, type Coordinate, type CreateTaskOptions, type CustomModePrompts, type CustomModesSettings, type CustomProvider, type CustomSupportPrompts, DEEP_SEEK_DEFAULT_TEMPERATURE, DEFAULT_CHECKPOINT_TIMEOUT_SECONDS, DEFAULT_CONSECUTIVE_MISTAKE_LIMIT, DEFAULT_MODES, DEFAULT_TERMINAL_OUTPUT_CHARACTER_LIMIT, DEFAULT_WRITE_DELAY_MS, DOUBAO_API_BASE_URL, DOUBAO_API_CHAT_PATH, type DeepSeekModelId, type DynamicAppProperties, type DynamicProvider, EVALS_SETTINGS, EVALS_TIMEOUT, EXPECTED_API_ERROR_CODES, type Equals, type ExperimentId, type Experiments, type ExtensionBridgeCommand, ExtensionBridgeCommandName, type ExtensionBridgeEvent, ExtensionBridgeEventName, type ExtensionInstance, ExtensionSocketEvents, type ExtensionTask, type FauxProvider, type FeatherlessModelId, type FileEntry, type FireworksModelId, type FollowUpData, type FollowUpDataType, GLOBAL_SECRET_KEYS, GLOBAL_SETTINGS_KEYS, GLOBAL_STATE_KEYS, type GeminiModelId, type GenerateImageParams, type GitProperties, type GlobalSettings, type GlobalState, type GroqModelId, type GroupEntry, type GroupOptions, HEARTBEAT_INTERVAL_MS, HUGGINGFACE_API_URL, HUGGINGFACE_CACHE_DURATION, HUGGINGFACE_DEFAULT_CONTEXT_WINDOW, HUGGINGFACE_DEFAULT_MAX_TOKENS, HUGGINGFACE_MAX_TOKENS_FALLBACK, HUGGINGFACE_SLIDER_MIN, HUGGINGFACE_SLIDER_STEP, HUGGINGFACE_TEMPERATURE_MAX_VALUE, type HistoryItem, IMAGE_GENERATION_MODELS, IMAGE_GENERATION_MODEL_IDS, INSTANCE_TTL_SECONDS, type IOIntelligenceModelId, IO_INTELLIGENCE_CACHE_DURATION, type IdleAsk, type ImageGenerationApiMethod, type ImageGenerationModel, type ImageGenerationProvider, type InstallMarketplaceItemOptions, type InteractiveAsk, type InternalProvider, type InternationalZAiModelId, type IpcClientEvents, type IpcMessage, IpcMessageType, IpcOrigin, type IpcServerEvents, type JWTPayload, type JoinResponse, type Keys, LMSTUDIO_DEFAULT_TEMPERATURE, type Language, type LeaveResponse, type LineRange, type LocalProvider, MAX_CHECKPOINT_TIMEOUT_SECONDS, MINIMAX_DEFAULT_MAX_TOKENS, MINIMAX_DEFAULT_TEMPERATURE, MIN_CHECKPOINT_TIMEOUT_SECONDS, MISTRAL_DEFAULT_TEMPERATURE, MODELS_BY_PROVIDER, MOONSHOT_DEFAULT_TEMPERATURE, type MainlandZAiModelId, type MarketplaceItem, type MarketplaceItemType, type McpExecutionStatus, type McpInstallationMethod, type McpMarketplaceItem, type McpParameter, type McpServerUse, type MinimaxModelId, type MistralModelId, type ModeConfig, type ModeMarketplaceItem, type ModelIdKey, type ModelInfo, type ModelParameter, type MoonshotModelId, type NonBlockingAsk, OPENAI_AZURE_AI_INFERENCE_PATH, OPENAI_NATIVE_DEFAULT_TEMPERATURE, OPENROUTER_DEFAULT_PROVIDER_NAME, 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 OrganizationFeatures, type OrganizationSettings, PROVIDER_SETTINGS_KEYS, type PromptComponent, type ProviderName, type ProviderSettings, type ProviderSettingsEntry, type ProviderSettingsWithId, type QueuedMessage, type QwenCodeModelId, type ReasoningEffort, type ReasoningEffortExtended, type ReasoningEffortWithMinimal, type ResumableAsk, type RetryConfig, type RooCodeAPI, type RooCodeAPIEvents, RooCodeEventName, type RooCodeEvents, type RooCodeIpcServer, type RooCodeSettings, type RooCodeTelemetryEvent, type RooModel, RooModelSchema, type RooModelsResponse, RooModelsResponseSchema, RooPricingSchema, SECRET_STATE_KEYS, type SambaNovaModelId, type SecretState, type ServiceTier, type SettingsService, type SettingsServiceEvents, type ShareResponse, type ShareVisibility, type Size, type StaticAppProperties, type SuggestionItem, TOOL_PROTOCOL, type TaskBridgeCommand, TaskBridgeCommandName, type TaskBridgeEvent, TaskBridgeEventName, type TaskCommand, TaskCommandName, type TaskEvent, type TaskEvents, type TaskLike, type TaskMetadata, type TaskProperties, type TaskProviderEvents, type TaskProviderLike, TaskSocketEvents, TaskStatus, type TelemetryClient, type TelemetryEvent, TelemetryEventName, type TelemetryEventSubscription, type TelemetryProperties, type TelemetryPropertiesProvider, type TelemetrySetting, type TerminalActionId, type TerminalActionName, type TerminalActionPromptType, type TodoItem, type TodoStatus, type TokenUsage, type ToolGroup, type ToolName, type ToolProgressStatus, type ToolProtocol, type ToolUsage, type TypicalProvider, type UsageStats, type UserFeatures, type UserSettingsConfig, type UserSettingsData, VERCEL_AI_GATEWAY_DEFAULT_TEMPERATURE, VERCEL_AI_GATEWAY_PROMPT_CACHING_MODELS, VERCEL_AI_GATEWAY_VISION_AND_TOOLS_MODELS, VERCEL_AI_GATEWAY_VISION_ONLY_MODELS, VERTEX_REGIONS, type Values, type VerbosityLevel, type VertexModelId, type VscodeLlmModelId, type WorkspaceTaskVisibility, type XAIModelId, ZAI_DEFAULT_TEMPERATURE, type ZaiApiLine, ackSchema, anthropicDefaultModelId, anthropicModels, appPropertiesSchema, azureOpenAiDefaultApiVersion, basetenDefaultModelId, basetenModels, bedrockDefaultModelId, bedrockDefaultPromptRouterModelId, bedrockModels, cerebrasDefaultModelId, cerebrasModels, chutesDefaultModelId, chutesDefaultModelInfo, chutesModels, claudeCodeDefaultModelId, claudeCodeModels, clineAskSchema, clineAsks, clineMessageSchema, clineSaySchema, clineSays, cloudAppPropertiesSchema, codeActionIds, codebaseIndexConfigSchema, codebaseIndexModelsSchema, codebaseIndexProviderSchema, commandExecutionStatusSchema, commandIds, contextCondenseSchema, contextTruncationSchema, convertModelNameForVertex, customModePromptsSchema, customModesSettingsSchema, customProviders, customSupportPromptsSchema, deepInfraDefaultModelId, deepInfraDefaultModelInfo, deepSeekDefaultModelId, deepSeekModels, discriminatedProviderSettingsWithIdSchema, doubaoDefaultModelId, doubaoDefaultModelInfo, doubaoModels, dynamicAppPropertiesSchema, dynamicProviders, experimentIds, experimentIdsSchema, experimentsSchema, extensionBridgeCommandSchema, extensionBridgeEventSchema, extensionInstanceSchema, extractApiProviderErrorProperties, fauxProviders, featherlessDefaultModelId, featherlessModels, fireworksDefaultModelId, fireworksModels, followUpDataSchema, geminiDefaultModelId, geminiModels, getApiProtocol, getClaudeCodeModelId, getEffectiveProtocol, getErrorMessage, getErrorStatusCode, getImageGenerationProvider, getModelId, getProviderDefaultModelId, gitPropertiesSchema, globalSettingsSchema, groqDefaultModelId, groqModels, groupEntrySchema, groupOptionsSchema, historyItemSchema, idleAsks, installMarketplaceItemOptionsSchema, interactiveAsks, internalProviders, internationalZAiDefaultModelId, internationalZAiModels, ioIntelligenceDefaultBaseUrl, ioIntelligenceDefaultModelId, ioIntelligenceModels, ipcMessageSchema, isApiProviderError, isContextManagementEvent, isCustomProvider, isDynamicProvider, isFauxProvider, isGlobalStateKey, isIdleAsk, isInteractiveAsk, isInternalProvider, isLanguage, isLocalProvider, isModelParameter, isNativeProtocol, isNonBlockingAsk, isProviderName, isResumableAsk, isSecretStateKey, isTypicalProvider, lMStudioDefaultModelId, lMStudioDefaultModelInfo, languages, languagesSchema, litellmDefaultModelId, litellmDefaultModelInfo, localProviders, mainlandZAiDefaultModelId, mainlandZAiModels, marketplaceItemSchema, marketplaceItemTypeSchema, mcpExecutionStatusSchema, mcpInstallationMethodSchema, mcpMarketplaceItemSchema, mcpParameterSchema, minimaxDefaultModelId, minimaxDefaultModelInfo, minimaxModels, mistralDefaultModelId, mistralModels, modeConfigSchema, modeMarketplaceItemSchema, modelIdKeys, modelIdKeysByProvider, modelInfoSchema, modelParameters, modelParametersSchema, moonshotDefaultModelId, moonshotModels, nonBlockingAsks, ollamaDefaultModelId, ollamaDefaultModelInfo, openAiModelInfoSaneDefaults, openAiNativeDefaultModelId, openAiNativeModels, openRouterDefaultModelId, openRouterDefaultModelInfo, organizationAllowListSchema, organizationCloudSettingsSchema, organizationDefaultSettingsSchema, organizationFeaturesSchema, organizationSettingsSchema, promptComponentSchema, providerNames, providerNamesSchema, providerSettingsEntrySchema, providerSettingsSchema, providerSettingsSchemaDiscriminated, providerSettingsWithIdSchema, queuedMessageSchema, qwenCodeDefaultModelId, qwenCodeModels, reasoningEffortExtendedSchema, reasoningEffortSettingSchema, reasoningEffortSettingValues, reasoningEffortWithMinimalSchema, reasoningEfforts, reasoningEffortsExtended, reasoningEffortsSchema, requestyDefaultModelId, requestyDefaultModelInfo, resumableAsks, rooCodeEventsSchema, rooCodeSettingsSchema, rooCodeTelemetryEventSchema, rooDefaultModelId, rooModels, sambaNovaDefaultModelId, sambaNovaModels, serviceTierSchema, serviceTiers, shareResponseSchema, shouldReportApiErrorToTelemetry, shouldUseSingleFileRead, staticAppPropertiesSchema, suggestionItemSchema, taskBridgeCommandSchema, taskBridgeEventSchema, taskCommandSchema, taskEventSchema, taskMetadataSchema, taskPropertiesSchema, telemetryPropertiesSchema, telemetrySettings, telemetrySettingsSchema, terminalActionIds, todoItemSchema, todoStatusSchema, tokenUsageSchema, toolGroups, toolGroupsSchema, toolNames, toolNamesSchema, toolProgressStatusSchema, toolUsageSchema, unboundDefaultModelId, unboundDefaultModelInfo, usageStatsSchema, userFeaturesSchema, userSettingsConfigSchema, userSettingsDataSchema, verbosityLevels, verbosityLevelsSchema, vercelAiGatewayDefaultModelId, vercelAiGatewayDefaultModelInfo, vertexDefaultModelId, vertexModels, vscodeLlmDefaultModelId, vscodeLlmModels, xaiDefaultModelId, xaiModels, zaiApiLineConfigs, zaiApiLineSchema };
|