| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- export type SecretKey =
- | "apiKey"
- | "glamaApiKey"
- | "openRouterApiKey"
- | "awsAccessKey"
- | "awsSecretKey"
- | "awsSessionToken"
- | "openAiApiKey"
- | "geminiApiKey"
- | "openAiNativeApiKey"
- | "deepSeekApiKey"
- | "mistralApiKey"
- | "unboundApiKey"
- | "requestyApiKey"
- export type GlobalStateKey =
- | "apiProvider"
- | "apiModelId"
- | "glamaModelId"
- | "glamaModelInfo"
- | "awsRegion"
- | "awsUseCrossRegionInference"
- | "awsProfile"
- | "awsUseProfile"
- | "vertexProjectId"
- | "vertexRegion"
- | "lastShownAnnouncementId"
- | "customInstructions"
- | "alwaysAllowReadOnly"
- | "alwaysAllowWrite"
- | "alwaysAllowExecute"
- | "alwaysAllowBrowser"
- | "alwaysAllowMcp"
- | "alwaysAllowModeSwitch"
- | "taskHistory"
- | "openAiBaseUrl"
- | "openAiModelId"
- | "openAiCustomModelInfo"
- | "openAiUseAzure"
- | "ollamaModelId"
- | "ollamaBaseUrl"
- | "lmStudioModelId"
- | "lmStudioBaseUrl"
- | "anthropicBaseUrl"
- | "anthropicThinking"
- | "azureApiVersion"
- | "openAiStreamingEnabled"
- | "openRouterModelId"
- | "openRouterModelInfo"
- | "openRouterBaseUrl"
- | "openRouterUseMiddleOutTransform"
- | "allowedCommands"
- | "soundEnabled"
- | "soundVolume"
- | "diffEnabled"
- | "checkpointsEnabled"
- | "browserViewportSize"
- | "screenshotQuality"
- | "fuzzyMatchThreshold"
- | "preferredLanguage" // Language setting for Cline's communication
- | "writeDelayMs"
- | "terminalOutputLineLimit"
- | "mcpEnabled"
- | "enableMcpServerCreation"
- | "alwaysApproveResubmit"
- | "requestDelaySeconds"
- | "rateLimitSeconds"
- | "currentApiConfigName"
- | "listApiConfigMeta"
- | "vsCodeLmModelSelector"
- | "mode"
- | "modeApiConfigs"
- | "customModePrompts"
- | "customSupportPrompts"
- | "enhancementApiConfigId"
- | "experiments" // Map of experiment IDs to their enabled state
- | "autoApprovalEnabled"
- | "customModes" // Array of custom modes
- | "unboundModelId"
- | "requestyModelId"
- | "requestyModelInfo"
- | "unboundModelInfo"
- | "modelTemperature"
- | "mistralCodestralUrl"
- | "maxOpenTabsContext"
|