@roo-code/types 1.50.0 → 1.52.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 +66 -12
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +130 -11
- package/dist/index.d.ts +130 -11
- package/dist/index.js +59 -10
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -13,6 +13,8 @@ declare enum RooCodeEventName {
|
|
|
13
13
|
TaskFocused = "taskFocused",
|
|
14
14
|
TaskUnfocused = "taskUnfocused",
|
|
15
15
|
TaskActive = "taskActive",
|
|
16
|
+
TaskInteractive = "taskInteractive",
|
|
17
|
+
TaskResumable = "taskResumable",
|
|
16
18
|
TaskIdle = "taskIdle",
|
|
17
19
|
TaskPaused = "taskPaused",
|
|
18
20
|
TaskUnpaused = "taskUnpaused",
|
|
@@ -72,6 +74,8 @@ declare const rooCodeEventsSchema: z.ZodObject<{
|
|
|
72
74
|
taskFocused: z.ZodTuple<[z.ZodString], null>;
|
|
73
75
|
taskUnfocused: z.ZodTuple<[z.ZodString], null>;
|
|
74
76
|
taskActive: z.ZodTuple<[z.ZodString], null>;
|
|
77
|
+
taskInteractive: z.ZodTuple<[z.ZodString], null>;
|
|
78
|
+
taskResumable: z.ZodTuple<[z.ZodString], null>;
|
|
75
79
|
taskIdle: z.ZodTuple<[z.ZodString], null>;
|
|
76
80
|
taskPaused: z.ZodTuple<[z.ZodString], null>;
|
|
77
81
|
taskUnpaused: z.ZodTuple<[z.ZodString], null>;
|
|
@@ -320,6 +324,8 @@ declare const rooCodeEventsSchema: z.ZodObject<{
|
|
|
320
324
|
taskFocused: [string];
|
|
321
325
|
taskUnfocused: [string];
|
|
322
326
|
taskActive: [string];
|
|
327
|
+
taskInteractive: [string];
|
|
328
|
+
taskResumable: [string];
|
|
323
329
|
taskIdle: [string];
|
|
324
330
|
taskPaused: [string];
|
|
325
331
|
taskUnpaused: [string];
|
|
@@ -390,6 +396,8 @@ declare const rooCodeEventsSchema: z.ZodObject<{
|
|
|
390
396
|
taskFocused: [string];
|
|
391
397
|
taskUnfocused: [string];
|
|
392
398
|
taskActive: [string];
|
|
399
|
+
taskInteractive: [string];
|
|
400
|
+
taskResumable: [string];
|
|
393
401
|
taskIdle: [string];
|
|
394
402
|
taskPaused: [string];
|
|
395
403
|
taskUnpaused: [string];
|
|
@@ -589,6 +597,30 @@ declare const taskEventSchema: z.ZodDiscriminatedUnion<"eventName", [z.ZodObject
|
|
|
589
597
|
eventName: RooCodeEventName.TaskActive;
|
|
590
598
|
payload: [string];
|
|
591
599
|
taskId?: number | undefined;
|
|
600
|
+
}>, z.ZodObject<{
|
|
601
|
+
eventName: z.ZodLiteral<RooCodeEventName.TaskInteractive>;
|
|
602
|
+
payload: z.ZodTuple<[z.ZodString], null>;
|
|
603
|
+
taskId: z.ZodOptional<z.ZodNumber>;
|
|
604
|
+
}, "strip", z.ZodTypeAny, {
|
|
605
|
+
eventName: RooCodeEventName.TaskInteractive;
|
|
606
|
+
payload: [string];
|
|
607
|
+
taskId?: number | undefined;
|
|
608
|
+
}, {
|
|
609
|
+
eventName: RooCodeEventName.TaskInteractive;
|
|
610
|
+
payload: [string];
|
|
611
|
+
taskId?: number | undefined;
|
|
612
|
+
}>, z.ZodObject<{
|
|
613
|
+
eventName: z.ZodLiteral<RooCodeEventName.TaskResumable>;
|
|
614
|
+
payload: z.ZodTuple<[z.ZodString], null>;
|
|
615
|
+
taskId: z.ZodOptional<z.ZodNumber>;
|
|
616
|
+
}, "strip", z.ZodTypeAny, {
|
|
617
|
+
eventName: RooCodeEventName.TaskResumable;
|
|
618
|
+
payload: [string];
|
|
619
|
+
taskId?: number | undefined;
|
|
620
|
+
}, {
|
|
621
|
+
eventName: RooCodeEventName.TaskResumable;
|
|
622
|
+
payload: [string];
|
|
623
|
+
taskId?: number | undefined;
|
|
592
624
|
}>, z.ZodObject<{
|
|
593
625
|
eventName: z.ZodLiteral<RooCodeEventName.TaskIdle>;
|
|
594
626
|
payload: z.ZodTuple<[z.ZodString], null>;
|
|
@@ -13322,6 +13354,30 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13322
13354
|
eventName: RooCodeEventName.TaskActive;
|
|
13323
13355
|
payload: [string];
|
|
13324
13356
|
taskId?: number | undefined;
|
|
13357
|
+
}>, z.ZodObject<{
|
|
13358
|
+
eventName: z.ZodLiteral<RooCodeEventName.TaskInteractive>;
|
|
13359
|
+
payload: z.ZodTuple<[z.ZodString], null>;
|
|
13360
|
+
taskId: z.ZodOptional<z.ZodNumber>;
|
|
13361
|
+
}, "strip", z.ZodTypeAny, {
|
|
13362
|
+
eventName: RooCodeEventName.TaskInteractive;
|
|
13363
|
+
payload: [string];
|
|
13364
|
+
taskId?: number | undefined;
|
|
13365
|
+
}, {
|
|
13366
|
+
eventName: RooCodeEventName.TaskInteractive;
|
|
13367
|
+
payload: [string];
|
|
13368
|
+
taskId?: number | undefined;
|
|
13369
|
+
}>, z.ZodObject<{
|
|
13370
|
+
eventName: z.ZodLiteral<RooCodeEventName.TaskResumable>;
|
|
13371
|
+
payload: z.ZodTuple<[z.ZodString], null>;
|
|
13372
|
+
taskId: z.ZodOptional<z.ZodNumber>;
|
|
13373
|
+
}, "strip", z.ZodTypeAny, {
|
|
13374
|
+
eventName: RooCodeEventName.TaskResumable;
|
|
13375
|
+
payload: [string];
|
|
13376
|
+
taskId?: number | undefined;
|
|
13377
|
+
}, {
|
|
13378
|
+
eventName: RooCodeEventName.TaskResumable;
|
|
13379
|
+
payload: [string];
|
|
13380
|
+
taskId?: number | undefined;
|
|
13325
13381
|
}>, z.ZodObject<{
|
|
13326
13382
|
eventName: z.ZodLiteral<RooCodeEventName.TaskIdle>;
|
|
13327
13383
|
payload: z.ZodTuple<[z.ZodString], null>;
|
|
@@ -13798,6 +13854,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13798
13854
|
eventName: RooCodeEventName.TaskActive;
|
|
13799
13855
|
payload: [string];
|
|
13800
13856
|
taskId?: number | undefined;
|
|
13857
|
+
} | {
|
|
13858
|
+
eventName: RooCodeEventName.TaskInteractive;
|
|
13859
|
+
payload: [string];
|
|
13860
|
+
taskId?: number | undefined;
|
|
13861
|
+
} | {
|
|
13862
|
+
eventName: RooCodeEventName.TaskResumable;
|
|
13863
|
+
payload: [string];
|
|
13864
|
+
taskId?: number | undefined;
|
|
13801
13865
|
} | {
|
|
13802
13866
|
eventName: RooCodeEventName.TaskIdle;
|
|
13803
13867
|
payload: [string];
|
|
@@ -13928,6 +13992,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13928
13992
|
eventName: RooCodeEventName.TaskActive;
|
|
13929
13993
|
payload: [string];
|
|
13930
13994
|
taskId?: number | undefined;
|
|
13995
|
+
} | {
|
|
13996
|
+
eventName: RooCodeEventName.TaskInteractive;
|
|
13997
|
+
payload: [string];
|
|
13998
|
+
taskId?: number | undefined;
|
|
13999
|
+
} | {
|
|
14000
|
+
eventName: RooCodeEventName.TaskResumable;
|
|
14001
|
+
payload: [string];
|
|
14002
|
+
taskId?: number | undefined;
|
|
13931
14003
|
} | {
|
|
13932
14004
|
eventName: RooCodeEventName.TaskIdle;
|
|
13933
14005
|
payload: [string];
|
|
@@ -14941,11 +15013,29 @@ declare const clineAsks: readonly ["followup", "command", "command_output", "com
|
|
|
14941
15013
|
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"]>;
|
|
14942
15014
|
type ClineAsk = z.infer<typeof clineAskSchema>;
|
|
14943
15015
|
/**
|
|
14944
|
-
*
|
|
15016
|
+
* IdleAsk
|
|
15017
|
+
*
|
|
15018
|
+
* Asks that put the task into an "idle" state.
|
|
15019
|
+
*/
|
|
15020
|
+
declare const idleAsks: readonly ["completion_result", "api_req_failed", "resume_completed_task", "mistake_limit_reached", "auto_approval_max_req_reached"];
|
|
15021
|
+
type IdleAsk = (typeof idleAsks)[number];
|
|
15022
|
+
declare function isIdleAsk(ask: ClineAsk): ask is IdleAsk;
|
|
15023
|
+
/**
|
|
15024
|
+
* ResumableAsk
|
|
15025
|
+
*
|
|
15026
|
+
* Asks that put the task into an "resumable" state.
|
|
15027
|
+
*/
|
|
15028
|
+
declare const resumableAsks: readonly ["resume_task"];
|
|
15029
|
+
type ResumableAsk = (typeof resumableAsks)[number];
|
|
15030
|
+
declare function isResumableAsk(ask: ClineAsk): ask is ResumableAsk;
|
|
15031
|
+
/**
|
|
15032
|
+
* InteractiveAsk
|
|
15033
|
+
*
|
|
15034
|
+
* Asks that put the task into an "user interaction required" state.
|
|
14945
15035
|
*/
|
|
14946
|
-
declare const
|
|
14947
|
-
type
|
|
14948
|
-
declare function
|
|
15036
|
+
declare const interactiveAsks: readonly ["command", "tool", "browser_action_launch", "use_mcp_server"];
|
|
15037
|
+
type InteractiveAsk = (typeof interactiveAsks)[number];
|
|
15038
|
+
declare function isInteractiveAsk(ask: ClineAsk): ask is InteractiveAsk;
|
|
14949
15039
|
/**
|
|
14950
15040
|
* ClineSay
|
|
14951
15041
|
*/
|
|
@@ -16571,6 +16661,7 @@ interface TaskProviderLike {
|
|
|
16571
16661
|
createTask(text?: string, images?: string[], parentTask?: TaskLike): Promise<TaskLike>;
|
|
16572
16662
|
cancelTask(): Promise<void>;
|
|
16573
16663
|
clearTask(): Promise<void>;
|
|
16664
|
+
resumeTask(taskId: string): void;
|
|
16574
16665
|
getState(): Promise<TaskProviderState>;
|
|
16575
16666
|
postStateToWebview(): Promise<void>;
|
|
16576
16667
|
postMessageToWebview(message: unknown): Promise<void>;
|
|
@@ -16586,33 +16677,47 @@ type TaskProviderEvents = {
|
|
|
16586
16677
|
[RooCodeEventName.TaskFocused]: [taskId: string];
|
|
16587
16678
|
[RooCodeEventName.TaskUnfocused]: [taskId: string];
|
|
16588
16679
|
[RooCodeEventName.TaskActive]: [taskId: string];
|
|
16680
|
+
[RooCodeEventName.TaskInteractive]: [taskId: string];
|
|
16681
|
+
[RooCodeEventName.TaskResumable]: [taskId: string];
|
|
16589
16682
|
[RooCodeEventName.TaskIdle]: [taskId: string];
|
|
16590
16683
|
};
|
|
16591
16684
|
/**
|
|
16592
16685
|
* TaskLike
|
|
16593
16686
|
*/
|
|
16687
|
+
declare enum TaskStatus {
|
|
16688
|
+
Running = "running",
|
|
16689
|
+
Interactive = "interactive",
|
|
16690
|
+
Resumable = "resumable",
|
|
16691
|
+
Idle = "idle",
|
|
16692
|
+
None = "none"
|
|
16693
|
+
}
|
|
16594
16694
|
declare const taskMetadataSchema: z.ZodObject<{
|
|
16595
|
-
taskId: z.ZodString;
|
|
16596
16695
|
task: z.ZodOptional<z.ZodString>;
|
|
16597
16696
|
images: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
16598
16697
|
}, "strip", z.ZodTypeAny, {
|
|
16599
|
-
taskId: string;
|
|
16600
16698
|
images?: string[] | undefined;
|
|
16601
16699
|
task?: string | undefined;
|
|
16602
16700
|
}, {
|
|
16603
|
-
taskId: string;
|
|
16604
16701
|
images?: string[] | undefined;
|
|
16605
16702
|
task?: string | undefined;
|
|
16606
16703
|
}>;
|
|
16607
16704
|
type TaskMetadata = z.infer<typeof taskMetadataSchema>;
|
|
16608
16705
|
interface TaskLike {
|
|
16609
16706
|
readonly taskId: string;
|
|
16610
|
-
readonly
|
|
16611
|
-
readonly
|
|
16707
|
+
readonly taskStatus: TaskStatus;
|
|
16708
|
+
readonly taskAsk: ClineMessage | undefined;
|
|
16612
16709
|
readonly metadata: TaskMetadata;
|
|
16710
|
+
readonly rootTask?: TaskLike;
|
|
16613
16711
|
on<K extends keyof TaskEvents>(event: K, listener: (...args: TaskEvents[K]) => void | Promise<void>): this;
|
|
16614
16712
|
off<K extends keyof TaskEvents>(event: K, listener: (...args: TaskEvents[K]) => void | Promise<void>): this;
|
|
16615
|
-
|
|
16713
|
+
approveAsk(options?: {
|
|
16714
|
+
text?: string;
|
|
16715
|
+
images?: string[];
|
|
16716
|
+
}): void;
|
|
16717
|
+
denyAsk(options?: {
|
|
16718
|
+
text?: string;
|
|
16719
|
+
images?: string[];
|
|
16720
|
+
}): void;
|
|
16616
16721
|
submitUserMessage(text: string, images?: string[]): void;
|
|
16617
16722
|
}
|
|
16618
16723
|
type TaskEvents = {
|
|
@@ -16622,6 +16727,8 @@ type TaskEvents = {
|
|
|
16622
16727
|
[RooCodeEventName.TaskFocused]: [];
|
|
16623
16728
|
[RooCodeEventName.TaskUnfocused]: [];
|
|
16624
16729
|
[RooCodeEventName.TaskActive]: [taskId: string];
|
|
16730
|
+
[RooCodeEventName.TaskInteractive]: [taskId: string];
|
|
16731
|
+
[RooCodeEventName.TaskResumable]: [taskId: string];
|
|
16625
16732
|
[RooCodeEventName.TaskIdle]: [taskId: string];
|
|
16626
16733
|
[RooCodeEventName.TaskPaused]: [];
|
|
16627
16734
|
[RooCodeEventName.TaskUnpaused]: [];
|
|
@@ -18257,6 +18364,18 @@ declare const ollamaDefaultModelInfo: ModelInfo;
|
|
|
18257
18364
|
type OpenAiNativeModelId = keyof typeof openAiNativeModels;
|
|
18258
18365
|
declare const openAiNativeDefaultModelId: OpenAiNativeModelId;
|
|
18259
18366
|
declare const openAiNativeModels: {
|
|
18367
|
+
readonly "gpt-5-chat-latest": {
|
|
18368
|
+
readonly maxTokens: 128000;
|
|
18369
|
+
readonly contextWindow: 400000;
|
|
18370
|
+
readonly supportsImages: true;
|
|
18371
|
+
readonly supportsPromptCache: true;
|
|
18372
|
+
readonly supportsReasoningEffort: false;
|
|
18373
|
+
readonly inputPrice: 1.25;
|
|
18374
|
+
readonly outputPrice: 10;
|
|
18375
|
+
readonly cacheReadsPrice: 0.13;
|
|
18376
|
+
readonly description: "GPT-5 Chat Latest: Optimized for conversational AI and non-reasoning tasks";
|
|
18377
|
+
readonly supportsVerbosity: true;
|
|
18378
|
+
};
|
|
18260
18379
|
readonly "gpt-5-2025-08-07": {
|
|
18261
18380
|
readonly maxTokens: 128000;
|
|
18262
18381
|
readonly contextWindow: 400000;
|
|
@@ -19305,4 +19424,4 @@ declare const fireworksModels: {
|
|
|
19305
19424
|
};
|
|
19306
19425
|
};
|
|
19307
19426
|
|
|
19308
|
-
export { ANTHROPIC_DEFAULT_MAX_TOKENS, ANTHROPIC_STYLE_PROVIDERS, AWS_INFERENCE_PROFILE_MAPPING, type Ack, type AnthropicModelId, type AppProperties, type AssertEqual, BEDROCK_CLAUDE_SONNET_4_MODEL_ID, BEDROCK_DEFAULT_CONTEXT, BEDROCK_DEFAULT_TEMPERATURE, BEDROCK_MAX_TOKENS, BEDROCK_REGIONS, type BedrockModelId,
|
|
19427
|
+
export { ANTHROPIC_DEFAULT_MAX_TOKENS, ANTHROPIC_STYLE_PROVIDERS, AWS_INFERENCE_PROFILE_MAPPING, type Ack, type AnthropicModelId, type AppProperties, type AssertEqual, BEDROCK_CLAUDE_SONNET_4_MODEL_ID, BEDROCK_DEFAULT_CONTEXT, BEDROCK_DEFAULT_TEMPERATURE, BEDROCK_MAX_TOKENS, BEDROCK_REGIONS, type BedrockModelId, CLAUDE_CODE_DEFAULT_MAX_OUTPUT_TOKENS, CODEBASE_INDEX_DEFAULTS, type CerebrasModelId, type ChutesModelId, type ClaudeCodeModelId, type ClineAsk, type ClineMessage, type ClineSay, type CloudAppProperties, 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, 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, EVALS_SETTINGS, EVALS_TIMEOUT, type Equals, type ExperimentId, type Experiments, type FireworksModelId, type FollowUpData, type FollowUpDataType, GLAMA_DEFAULT_TEMPERATURE, GLOBAL_SETTINGS_KEYS, GLOBAL_STATE_KEYS, GPT5_DEFAULT_TEMPERATURE, type GeminiModelId, type GitProperties, type GlobalSettings, type GlobalState, type GroqModelId, type GroupEntry, type GroupOptions, 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, type IOIntelligenceModelId, IO_INTELLIGENCE_CACHE_DURATION, type IdleAsk, type InstallMarketplaceItemOptions, type InteractiveAsk, type InternationalZAiModelId, 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, MOONSHOT_DEFAULT_TEMPERATURE, type MainlandZAiModelId, type MarketplaceItem, type MarketplaceItemType, type McpExecutionStatus, type McpInstallationMethod, type McpMarketplaceItem, type McpParameter, type MistralModelId, type ModeConfig, type ModeMarketplaceItem, type ModelInfo, type ModelParameter, type MoonshotModelId, 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, type OpenAiNativeModelId, PROVIDER_SETTINGS_KEYS, type PromptComponent, type ProviderName, type ProviderSettings, type ProviderSettingsEntry, type ProviderSettingsWithId, type QueuedMessage, type ReasoningEffort, type ReasoningEffortWithMinimal, type ResumableAsk, type RooCodeAPI, type RooCodeAPIEvents, RooCodeEventName, type RooCodeEvents, type RooCodeIpcServer, type RooCodeSettings, type RooCodeTelemetryEvent, SECRET_STATE_KEYS, type SambaNovaModelId, type SecretState, type StaticAppProperties, type SuggestionItem, type TaskCommand, TaskCommandName, type TaskEvent, type TaskEvents, type TaskLike, type TaskMetadata, type TaskProperties, type TaskProviderEvents, type TaskProviderLike, type TaskProviderState, 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 ToolUsage, VERTEX_REGIONS, type Values, type VerbosityLevel, type VertexModelId, type VscodeLlmModelId, type XAIModelId, ZAI_DEFAULT_TEMPERATURE, ackSchema, anthropicDefaultModelId, anthropicModels, appPropertiesSchema, azureOpenAiDefaultApiVersion, bedrockDefaultModelId, bedrockDefaultPromptRouterModelId, bedrockModels, cerebrasDefaultModelId, cerebrasModels, chutesDefaultModelId, chutesModels, claudeCodeDefaultModelId, claudeCodeModels, clineAskSchema, clineAsks, clineMessageSchema, clineSaySchema, clineSays, cloudAppPropertiesSchema, codeActionIds, codebaseIndexConfigSchema, codebaseIndexModelsSchema, codebaseIndexProviderSchema, commandExecutionStatusSchema, commandIds, contextCondenseSchema, convertModelNameForVertex, customModePromptsSchema, customModesSettingsSchema, customSupportPromptsSchema, deepSeekDefaultModelId, deepSeekModels, discriminatedProviderSettingsWithIdSchema, doubaoDefaultModelId, doubaoDefaultModelInfo, doubaoModels, dynamicAppPropertiesSchema, experimentIds, experimentIdsSchema, experimentsSchema, extendedReasoningEffortsSchema, fireworksDefaultModelId, fireworksModels, followUpDataSchema, geminiDefaultModelId, geminiModels, getApiProtocol, getClaudeCodeModelId, getModelId, gitPropertiesSchema, glamaDefaultModelId, glamaDefaultModelInfo, globalSettingsSchema, groqDefaultModelId, groqModels, groupEntrySchema, groupOptionsSchema, historyItemSchema, idleAsks, installMarketplaceItemOptionsSchema, interactiveAsks, internationalZAiDefaultModelId, internationalZAiModels, ioIntelligenceDefaultBaseUrl, ioIntelligenceDefaultModelId, ioIntelligenceModels, ipcMessageSchema, isGlobalStateKey, isIdleAsk, isInteractiveAsk, isLanguage, isModelParameter, isResumableAsk, isSecretStateKey, lMStudioDefaultModelId, lMStudioDefaultModelInfo, languages, languagesSchema, litellmDefaultModelId, litellmDefaultModelInfo, mainlandZAiDefaultModelId, mainlandZAiModels, marketplaceItemSchema, marketplaceItemTypeSchema, mcpExecutionStatusSchema, mcpInstallationMethodSchema, mcpMarketplaceItemSchema, mcpParameterSchema, mistralDefaultModelId, mistralModels, modeConfigSchema, modeMarketplaceItemSchema, modelInfoSchema, modelParameters, modelParametersSchema, moonshotDefaultModelId, moonshotModels, ollamaDefaultModelId, ollamaDefaultModelInfo, openAiModelInfoSaneDefaults, openAiNativeDefaultModelId, openAiNativeModels, openRouterDefaultModelId, openRouterDefaultModelInfo, promptComponentSchema, providerNames, providerNamesSchema, providerSettingsEntrySchema, providerSettingsSchema, providerSettingsSchemaDiscriminated, providerSettingsWithIdSchema, reasoningEfforts, reasoningEffortsSchema, requestyDefaultModelId, requestyDefaultModelInfo, resumableAsks, rooCodeEventsSchema, rooCodeSettingsSchema, rooCodeTelemetryEventSchema, sambaNovaDefaultModelId, sambaNovaModels, staticAppPropertiesSchema, suggestionItemSchema, taskCommandSchema, taskEventSchema, taskMetadataSchema, taskPropertiesSchema, telemetryPropertiesSchema, telemetrySettings, telemetrySettingsSchema, terminalActionIds, todoItemSchema, todoStatusSchema, tokenUsageSchema, toolGroups, toolGroupsSchema, toolNames, toolNamesSchema, toolProgressStatusSchema, toolUsageSchema, unboundDefaultModelId, unboundDefaultModelInfo, verbosityLevels, verbosityLevelsSchema, vertexDefaultModelId, vertexModels, vscodeLlmDefaultModelId, vscodeLlmModels, xaiDefaultModelId, xaiModels };
|
package/dist/index.d.ts
CHANGED
|
@@ -13,6 +13,8 @@ declare enum RooCodeEventName {
|
|
|
13
13
|
TaskFocused = "taskFocused",
|
|
14
14
|
TaskUnfocused = "taskUnfocused",
|
|
15
15
|
TaskActive = "taskActive",
|
|
16
|
+
TaskInteractive = "taskInteractive",
|
|
17
|
+
TaskResumable = "taskResumable",
|
|
16
18
|
TaskIdle = "taskIdle",
|
|
17
19
|
TaskPaused = "taskPaused",
|
|
18
20
|
TaskUnpaused = "taskUnpaused",
|
|
@@ -72,6 +74,8 @@ declare const rooCodeEventsSchema: z.ZodObject<{
|
|
|
72
74
|
taskFocused: z.ZodTuple<[z.ZodString], null>;
|
|
73
75
|
taskUnfocused: z.ZodTuple<[z.ZodString], null>;
|
|
74
76
|
taskActive: z.ZodTuple<[z.ZodString], null>;
|
|
77
|
+
taskInteractive: z.ZodTuple<[z.ZodString], null>;
|
|
78
|
+
taskResumable: z.ZodTuple<[z.ZodString], null>;
|
|
75
79
|
taskIdle: z.ZodTuple<[z.ZodString], null>;
|
|
76
80
|
taskPaused: z.ZodTuple<[z.ZodString], null>;
|
|
77
81
|
taskUnpaused: z.ZodTuple<[z.ZodString], null>;
|
|
@@ -320,6 +324,8 @@ declare const rooCodeEventsSchema: z.ZodObject<{
|
|
|
320
324
|
taskFocused: [string];
|
|
321
325
|
taskUnfocused: [string];
|
|
322
326
|
taskActive: [string];
|
|
327
|
+
taskInteractive: [string];
|
|
328
|
+
taskResumable: [string];
|
|
323
329
|
taskIdle: [string];
|
|
324
330
|
taskPaused: [string];
|
|
325
331
|
taskUnpaused: [string];
|
|
@@ -390,6 +396,8 @@ declare const rooCodeEventsSchema: z.ZodObject<{
|
|
|
390
396
|
taskFocused: [string];
|
|
391
397
|
taskUnfocused: [string];
|
|
392
398
|
taskActive: [string];
|
|
399
|
+
taskInteractive: [string];
|
|
400
|
+
taskResumable: [string];
|
|
393
401
|
taskIdle: [string];
|
|
394
402
|
taskPaused: [string];
|
|
395
403
|
taskUnpaused: [string];
|
|
@@ -589,6 +597,30 @@ declare const taskEventSchema: z.ZodDiscriminatedUnion<"eventName", [z.ZodObject
|
|
|
589
597
|
eventName: RooCodeEventName.TaskActive;
|
|
590
598
|
payload: [string];
|
|
591
599
|
taskId?: number | undefined;
|
|
600
|
+
}>, z.ZodObject<{
|
|
601
|
+
eventName: z.ZodLiteral<RooCodeEventName.TaskInteractive>;
|
|
602
|
+
payload: z.ZodTuple<[z.ZodString], null>;
|
|
603
|
+
taskId: z.ZodOptional<z.ZodNumber>;
|
|
604
|
+
}, "strip", z.ZodTypeAny, {
|
|
605
|
+
eventName: RooCodeEventName.TaskInteractive;
|
|
606
|
+
payload: [string];
|
|
607
|
+
taskId?: number | undefined;
|
|
608
|
+
}, {
|
|
609
|
+
eventName: RooCodeEventName.TaskInteractive;
|
|
610
|
+
payload: [string];
|
|
611
|
+
taskId?: number | undefined;
|
|
612
|
+
}>, z.ZodObject<{
|
|
613
|
+
eventName: z.ZodLiteral<RooCodeEventName.TaskResumable>;
|
|
614
|
+
payload: z.ZodTuple<[z.ZodString], null>;
|
|
615
|
+
taskId: z.ZodOptional<z.ZodNumber>;
|
|
616
|
+
}, "strip", z.ZodTypeAny, {
|
|
617
|
+
eventName: RooCodeEventName.TaskResumable;
|
|
618
|
+
payload: [string];
|
|
619
|
+
taskId?: number | undefined;
|
|
620
|
+
}, {
|
|
621
|
+
eventName: RooCodeEventName.TaskResumable;
|
|
622
|
+
payload: [string];
|
|
623
|
+
taskId?: number | undefined;
|
|
592
624
|
}>, z.ZodObject<{
|
|
593
625
|
eventName: z.ZodLiteral<RooCodeEventName.TaskIdle>;
|
|
594
626
|
payload: z.ZodTuple<[z.ZodString], null>;
|
|
@@ -13322,6 +13354,30 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13322
13354
|
eventName: RooCodeEventName.TaskActive;
|
|
13323
13355
|
payload: [string];
|
|
13324
13356
|
taskId?: number | undefined;
|
|
13357
|
+
}>, z.ZodObject<{
|
|
13358
|
+
eventName: z.ZodLiteral<RooCodeEventName.TaskInteractive>;
|
|
13359
|
+
payload: z.ZodTuple<[z.ZodString], null>;
|
|
13360
|
+
taskId: z.ZodOptional<z.ZodNumber>;
|
|
13361
|
+
}, "strip", z.ZodTypeAny, {
|
|
13362
|
+
eventName: RooCodeEventName.TaskInteractive;
|
|
13363
|
+
payload: [string];
|
|
13364
|
+
taskId?: number | undefined;
|
|
13365
|
+
}, {
|
|
13366
|
+
eventName: RooCodeEventName.TaskInteractive;
|
|
13367
|
+
payload: [string];
|
|
13368
|
+
taskId?: number | undefined;
|
|
13369
|
+
}>, z.ZodObject<{
|
|
13370
|
+
eventName: z.ZodLiteral<RooCodeEventName.TaskResumable>;
|
|
13371
|
+
payload: z.ZodTuple<[z.ZodString], null>;
|
|
13372
|
+
taskId: z.ZodOptional<z.ZodNumber>;
|
|
13373
|
+
}, "strip", z.ZodTypeAny, {
|
|
13374
|
+
eventName: RooCodeEventName.TaskResumable;
|
|
13375
|
+
payload: [string];
|
|
13376
|
+
taskId?: number | undefined;
|
|
13377
|
+
}, {
|
|
13378
|
+
eventName: RooCodeEventName.TaskResumable;
|
|
13379
|
+
payload: [string];
|
|
13380
|
+
taskId?: number | undefined;
|
|
13325
13381
|
}>, z.ZodObject<{
|
|
13326
13382
|
eventName: z.ZodLiteral<RooCodeEventName.TaskIdle>;
|
|
13327
13383
|
payload: z.ZodTuple<[z.ZodString], null>;
|
|
@@ -13798,6 +13854,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13798
13854
|
eventName: RooCodeEventName.TaskActive;
|
|
13799
13855
|
payload: [string];
|
|
13800
13856
|
taskId?: number | undefined;
|
|
13857
|
+
} | {
|
|
13858
|
+
eventName: RooCodeEventName.TaskInteractive;
|
|
13859
|
+
payload: [string];
|
|
13860
|
+
taskId?: number | undefined;
|
|
13861
|
+
} | {
|
|
13862
|
+
eventName: RooCodeEventName.TaskResumable;
|
|
13863
|
+
payload: [string];
|
|
13864
|
+
taskId?: number | undefined;
|
|
13801
13865
|
} | {
|
|
13802
13866
|
eventName: RooCodeEventName.TaskIdle;
|
|
13803
13867
|
payload: [string];
|
|
@@ -13928,6 +13992,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13928
13992
|
eventName: RooCodeEventName.TaskActive;
|
|
13929
13993
|
payload: [string];
|
|
13930
13994
|
taskId?: number | undefined;
|
|
13995
|
+
} | {
|
|
13996
|
+
eventName: RooCodeEventName.TaskInteractive;
|
|
13997
|
+
payload: [string];
|
|
13998
|
+
taskId?: number | undefined;
|
|
13999
|
+
} | {
|
|
14000
|
+
eventName: RooCodeEventName.TaskResumable;
|
|
14001
|
+
payload: [string];
|
|
14002
|
+
taskId?: number | undefined;
|
|
13931
14003
|
} | {
|
|
13932
14004
|
eventName: RooCodeEventName.TaskIdle;
|
|
13933
14005
|
payload: [string];
|
|
@@ -14941,11 +15013,29 @@ declare const clineAsks: readonly ["followup", "command", "command_output", "com
|
|
|
14941
15013
|
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"]>;
|
|
14942
15014
|
type ClineAsk = z.infer<typeof clineAskSchema>;
|
|
14943
15015
|
/**
|
|
14944
|
-
*
|
|
15016
|
+
* IdleAsk
|
|
15017
|
+
*
|
|
15018
|
+
* Asks that put the task into an "idle" state.
|
|
15019
|
+
*/
|
|
15020
|
+
declare const idleAsks: readonly ["completion_result", "api_req_failed", "resume_completed_task", "mistake_limit_reached", "auto_approval_max_req_reached"];
|
|
15021
|
+
type IdleAsk = (typeof idleAsks)[number];
|
|
15022
|
+
declare function isIdleAsk(ask: ClineAsk): ask is IdleAsk;
|
|
15023
|
+
/**
|
|
15024
|
+
* ResumableAsk
|
|
15025
|
+
*
|
|
15026
|
+
* Asks that put the task into an "resumable" state.
|
|
15027
|
+
*/
|
|
15028
|
+
declare const resumableAsks: readonly ["resume_task"];
|
|
15029
|
+
type ResumableAsk = (typeof resumableAsks)[number];
|
|
15030
|
+
declare function isResumableAsk(ask: ClineAsk): ask is ResumableAsk;
|
|
15031
|
+
/**
|
|
15032
|
+
* InteractiveAsk
|
|
15033
|
+
*
|
|
15034
|
+
* Asks that put the task into an "user interaction required" state.
|
|
14945
15035
|
*/
|
|
14946
|
-
declare const
|
|
14947
|
-
type
|
|
14948
|
-
declare function
|
|
15036
|
+
declare const interactiveAsks: readonly ["command", "tool", "browser_action_launch", "use_mcp_server"];
|
|
15037
|
+
type InteractiveAsk = (typeof interactiveAsks)[number];
|
|
15038
|
+
declare function isInteractiveAsk(ask: ClineAsk): ask is InteractiveAsk;
|
|
14949
15039
|
/**
|
|
14950
15040
|
* ClineSay
|
|
14951
15041
|
*/
|
|
@@ -16571,6 +16661,7 @@ interface TaskProviderLike {
|
|
|
16571
16661
|
createTask(text?: string, images?: string[], parentTask?: TaskLike): Promise<TaskLike>;
|
|
16572
16662
|
cancelTask(): Promise<void>;
|
|
16573
16663
|
clearTask(): Promise<void>;
|
|
16664
|
+
resumeTask(taskId: string): void;
|
|
16574
16665
|
getState(): Promise<TaskProviderState>;
|
|
16575
16666
|
postStateToWebview(): Promise<void>;
|
|
16576
16667
|
postMessageToWebview(message: unknown): Promise<void>;
|
|
@@ -16586,33 +16677,47 @@ type TaskProviderEvents = {
|
|
|
16586
16677
|
[RooCodeEventName.TaskFocused]: [taskId: string];
|
|
16587
16678
|
[RooCodeEventName.TaskUnfocused]: [taskId: string];
|
|
16588
16679
|
[RooCodeEventName.TaskActive]: [taskId: string];
|
|
16680
|
+
[RooCodeEventName.TaskInteractive]: [taskId: string];
|
|
16681
|
+
[RooCodeEventName.TaskResumable]: [taskId: string];
|
|
16589
16682
|
[RooCodeEventName.TaskIdle]: [taskId: string];
|
|
16590
16683
|
};
|
|
16591
16684
|
/**
|
|
16592
16685
|
* TaskLike
|
|
16593
16686
|
*/
|
|
16687
|
+
declare enum TaskStatus {
|
|
16688
|
+
Running = "running",
|
|
16689
|
+
Interactive = "interactive",
|
|
16690
|
+
Resumable = "resumable",
|
|
16691
|
+
Idle = "idle",
|
|
16692
|
+
None = "none"
|
|
16693
|
+
}
|
|
16594
16694
|
declare const taskMetadataSchema: z.ZodObject<{
|
|
16595
|
-
taskId: z.ZodString;
|
|
16596
16695
|
task: z.ZodOptional<z.ZodString>;
|
|
16597
16696
|
images: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
16598
16697
|
}, "strip", z.ZodTypeAny, {
|
|
16599
|
-
taskId: string;
|
|
16600
16698
|
images?: string[] | undefined;
|
|
16601
16699
|
task?: string | undefined;
|
|
16602
16700
|
}, {
|
|
16603
|
-
taskId: string;
|
|
16604
16701
|
images?: string[] | undefined;
|
|
16605
16702
|
task?: string | undefined;
|
|
16606
16703
|
}>;
|
|
16607
16704
|
type TaskMetadata = z.infer<typeof taskMetadataSchema>;
|
|
16608
16705
|
interface TaskLike {
|
|
16609
16706
|
readonly taskId: string;
|
|
16610
|
-
readonly
|
|
16611
|
-
readonly
|
|
16707
|
+
readonly taskStatus: TaskStatus;
|
|
16708
|
+
readonly taskAsk: ClineMessage | undefined;
|
|
16612
16709
|
readonly metadata: TaskMetadata;
|
|
16710
|
+
readonly rootTask?: TaskLike;
|
|
16613
16711
|
on<K extends keyof TaskEvents>(event: K, listener: (...args: TaskEvents[K]) => void | Promise<void>): this;
|
|
16614
16712
|
off<K extends keyof TaskEvents>(event: K, listener: (...args: TaskEvents[K]) => void | Promise<void>): this;
|
|
16615
|
-
|
|
16713
|
+
approveAsk(options?: {
|
|
16714
|
+
text?: string;
|
|
16715
|
+
images?: string[];
|
|
16716
|
+
}): void;
|
|
16717
|
+
denyAsk(options?: {
|
|
16718
|
+
text?: string;
|
|
16719
|
+
images?: string[];
|
|
16720
|
+
}): void;
|
|
16616
16721
|
submitUserMessage(text: string, images?: string[]): void;
|
|
16617
16722
|
}
|
|
16618
16723
|
type TaskEvents = {
|
|
@@ -16622,6 +16727,8 @@ type TaskEvents = {
|
|
|
16622
16727
|
[RooCodeEventName.TaskFocused]: [];
|
|
16623
16728
|
[RooCodeEventName.TaskUnfocused]: [];
|
|
16624
16729
|
[RooCodeEventName.TaskActive]: [taskId: string];
|
|
16730
|
+
[RooCodeEventName.TaskInteractive]: [taskId: string];
|
|
16731
|
+
[RooCodeEventName.TaskResumable]: [taskId: string];
|
|
16625
16732
|
[RooCodeEventName.TaskIdle]: [taskId: string];
|
|
16626
16733
|
[RooCodeEventName.TaskPaused]: [];
|
|
16627
16734
|
[RooCodeEventName.TaskUnpaused]: [];
|
|
@@ -18257,6 +18364,18 @@ declare const ollamaDefaultModelInfo: ModelInfo;
|
|
|
18257
18364
|
type OpenAiNativeModelId = keyof typeof openAiNativeModels;
|
|
18258
18365
|
declare const openAiNativeDefaultModelId: OpenAiNativeModelId;
|
|
18259
18366
|
declare const openAiNativeModels: {
|
|
18367
|
+
readonly "gpt-5-chat-latest": {
|
|
18368
|
+
readonly maxTokens: 128000;
|
|
18369
|
+
readonly contextWindow: 400000;
|
|
18370
|
+
readonly supportsImages: true;
|
|
18371
|
+
readonly supportsPromptCache: true;
|
|
18372
|
+
readonly supportsReasoningEffort: false;
|
|
18373
|
+
readonly inputPrice: 1.25;
|
|
18374
|
+
readonly outputPrice: 10;
|
|
18375
|
+
readonly cacheReadsPrice: 0.13;
|
|
18376
|
+
readonly description: "GPT-5 Chat Latest: Optimized for conversational AI and non-reasoning tasks";
|
|
18377
|
+
readonly supportsVerbosity: true;
|
|
18378
|
+
};
|
|
18260
18379
|
readonly "gpt-5-2025-08-07": {
|
|
18261
18380
|
readonly maxTokens: 128000;
|
|
18262
18381
|
readonly contextWindow: 400000;
|
|
@@ -19305,4 +19424,4 @@ declare const fireworksModels: {
|
|
|
19305
19424
|
};
|
|
19306
19425
|
};
|
|
19307
19426
|
|
|
19308
|
-
export { ANTHROPIC_DEFAULT_MAX_TOKENS, ANTHROPIC_STYLE_PROVIDERS, AWS_INFERENCE_PROFILE_MAPPING, type Ack, type AnthropicModelId, type AppProperties, type AssertEqual, BEDROCK_CLAUDE_SONNET_4_MODEL_ID, BEDROCK_DEFAULT_CONTEXT, BEDROCK_DEFAULT_TEMPERATURE, BEDROCK_MAX_TOKENS, BEDROCK_REGIONS, type BedrockModelId,
|
|
19427
|
+
export { ANTHROPIC_DEFAULT_MAX_TOKENS, ANTHROPIC_STYLE_PROVIDERS, AWS_INFERENCE_PROFILE_MAPPING, type Ack, type AnthropicModelId, type AppProperties, type AssertEqual, BEDROCK_CLAUDE_SONNET_4_MODEL_ID, BEDROCK_DEFAULT_CONTEXT, BEDROCK_DEFAULT_TEMPERATURE, BEDROCK_MAX_TOKENS, BEDROCK_REGIONS, type BedrockModelId, CLAUDE_CODE_DEFAULT_MAX_OUTPUT_TOKENS, CODEBASE_INDEX_DEFAULTS, type CerebrasModelId, type ChutesModelId, type ClaudeCodeModelId, type ClineAsk, type ClineMessage, type ClineSay, type CloudAppProperties, 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, 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, EVALS_SETTINGS, EVALS_TIMEOUT, type Equals, type ExperimentId, type Experiments, type FireworksModelId, type FollowUpData, type FollowUpDataType, GLAMA_DEFAULT_TEMPERATURE, GLOBAL_SETTINGS_KEYS, GLOBAL_STATE_KEYS, GPT5_DEFAULT_TEMPERATURE, type GeminiModelId, type GitProperties, type GlobalSettings, type GlobalState, type GroqModelId, type GroupEntry, type GroupOptions, 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, type IOIntelligenceModelId, IO_INTELLIGENCE_CACHE_DURATION, type IdleAsk, type InstallMarketplaceItemOptions, type InteractiveAsk, type InternationalZAiModelId, 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, MOONSHOT_DEFAULT_TEMPERATURE, type MainlandZAiModelId, type MarketplaceItem, type MarketplaceItemType, type McpExecutionStatus, type McpInstallationMethod, type McpMarketplaceItem, type McpParameter, type MistralModelId, type ModeConfig, type ModeMarketplaceItem, type ModelInfo, type ModelParameter, type MoonshotModelId, 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, type OpenAiNativeModelId, PROVIDER_SETTINGS_KEYS, type PromptComponent, type ProviderName, type ProviderSettings, type ProviderSettingsEntry, type ProviderSettingsWithId, type QueuedMessage, type ReasoningEffort, type ReasoningEffortWithMinimal, type ResumableAsk, type RooCodeAPI, type RooCodeAPIEvents, RooCodeEventName, type RooCodeEvents, type RooCodeIpcServer, type RooCodeSettings, type RooCodeTelemetryEvent, SECRET_STATE_KEYS, type SambaNovaModelId, type SecretState, type StaticAppProperties, type SuggestionItem, type TaskCommand, TaskCommandName, type TaskEvent, type TaskEvents, type TaskLike, type TaskMetadata, type TaskProperties, type TaskProviderEvents, type TaskProviderLike, type TaskProviderState, 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 ToolUsage, VERTEX_REGIONS, type Values, type VerbosityLevel, type VertexModelId, type VscodeLlmModelId, type XAIModelId, ZAI_DEFAULT_TEMPERATURE, ackSchema, anthropicDefaultModelId, anthropicModels, appPropertiesSchema, azureOpenAiDefaultApiVersion, bedrockDefaultModelId, bedrockDefaultPromptRouterModelId, bedrockModels, cerebrasDefaultModelId, cerebrasModels, chutesDefaultModelId, chutesModels, claudeCodeDefaultModelId, claudeCodeModels, clineAskSchema, clineAsks, clineMessageSchema, clineSaySchema, clineSays, cloudAppPropertiesSchema, codeActionIds, codebaseIndexConfigSchema, codebaseIndexModelsSchema, codebaseIndexProviderSchema, commandExecutionStatusSchema, commandIds, contextCondenseSchema, convertModelNameForVertex, customModePromptsSchema, customModesSettingsSchema, customSupportPromptsSchema, deepSeekDefaultModelId, deepSeekModels, discriminatedProviderSettingsWithIdSchema, doubaoDefaultModelId, doubaoDefaultModelInfo, doubaoModels, dynamicAppPropertiesSchema, experimentIds, experimentIdsSchema, experimentsSchema, extendedReasoningEffortsSchema, fireworksDefaultModelId, fireworksModels, followUpDataSchema, geminiDefaultModelId, geminiModels, getApiProtocol, getClaudeCodeModelId, getModelId, gitPropertiesSchema, glamaDefaultModelId, glamaDefaultModelInfo, globalSettingsSchema, groqDefaultModelId, groqModels, groupEntrySchema, groupOptionsSchema, historyItemSchema, idleAsks, installMarketplaceItemOptionsSchema, interactiveAsks, internationalZAiDefaultModelId, internationalZAiModels, ioIntelligenceDefaultBaseUrl, ioIntelligenceDefaultModelId, ioIntelligenceModels, ipcMessageSchema, isGlobalStateKey, isIdleAsk, isInteractiveAsk, isLanguage, isModelParameter, isResumableAsk, isSecretStateKey, lMStudioDefaultModelId, lMStudioDefaultModelInfo, languages, languagesSchema, litellmDefaultModelId, litellmDefaultModelInfo, mainlandZAiDefaultModelId, mainlandZAiModels, marketplaceItemSchema, marketplaceItemTypeSchema, mcpExecutionStatusSchema, mcpInstallationMethodSchema, mcpMarketplaceItemSchema, mcpParameterSchema, mistralDefaultModelId, mistralModels, modeConfigSchema, modeMarketplaceItemSchema, modelInfoSchema, modelParameters, modelParametersSchema, moonshotDefaultModelId, moonshotModels, ollamaDefaultModelId, ollamaDefaultModelInfo, openAiModelInfoSaneDefaults, openAiNativeDefaultModelId, openAiNativeModels, openRouterDefaultModelId, openRouterDefaultModelInfo, promptComponentSchema, providerNames, providerNamesSchema, providerSettingsEntrySchema, providerSettingsSchema, providerSettingsSchemaDiscriminated, providerSettingsWithIdSchema, reasoningEfforts, reasoningEffortsSchema, requestyDefaultModelId, requestyDefaultModelInfo, resumableAsks, rooCodeEventsSchema, rooCodeSettingsSchema, rooCodeTelemetryEventSchema, sambaNovaDefaultModelId, sambaNovaModels, staticAppPropertiesSchema, suggestionItemSchema, taskCommandSchema, taskEventSchema, taskMetadataSchema, taskPropertiesSchema, telemetryPropertiesSchema, telemetrySettings, telemetrySettingsSchema, terminalActionIds, todoItemSchema, todoStatusSchema, tokenUsageSchema, toolGroups, toolGroupsSchema, toolNames, toolNamesSchema, toolProgressStatusSchema, toolUsageSchema, unboundDefaultModelId, unboundDefaultModelInfo, verbosityLevels, verbosityLevelsSchema, vertexDefaultModelId, vertexModels, vscodeLlmDefaultModelId, vscodeLlmModels, xaiDefaultModelId, xaiModels };
|