@comate/zulu 0.8.2 → 0.8.3
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/comate-engine/node_modules/@comate/plugin-engine/dist/index.js +6 -6
- package/comate-engine/node_modules/@comate/plugin-host/dist/{index-DRjiQy-z.js → index-BHCZcLRN.js} +1 -1
- package/comate-engine/node_modules/@comate/plugin-host/dist/index.js +1 -1
- package/comate-engine/node_modules/@comate/plugin-host/dist/main.js +1 -1
- package/comate-engine/node_modules/@comate/plugin-host/dist/{user-NJTZ_OFu.js → user-Ck3t1LQN.js} +6 -6
- package/comate-engine/node_modules/@comate/plugin-shared-internals/dist/index.d.ts +28 -278
- package/comate-engine/node_modules/@comate/plugin-shared-internals/dist/index.js +7 -7
- package/comate-engine/package.json +2 -9
- package/comate-engine/plugins/demo-feature/dist/index.js +8 -10
- package/comate-engine/server.js +25 -123
- package/dist/bundle/index.js +2 -2
- package/package.json +1 -1
|
@@ -1372,7 +1372,6 @@ interface AgentWebSearchSite {
|
|
|
1372
1372
|
type AgentElements = AgentTextElement | AgentToolCallElement | AgentReasonElement | AgentTodoElement;
|
|
1373
1373
|
interface AssistantMessage {
|
|
1374
1374
|
id: string;
|
|
1375
|
-
v2?: boolean;
|
|
1376
1375
|
role: 'assistant';
|
|
1377
1376
|
status: AgentMessageStatus;
|
|
1378
1377
|
/** 是否被回滚了 */
|
|
@@ -1402,10 +1401,9 @@ declare enum AgentConversationType {
|
|
|
1402
1401
|
/** 端到端智能体 */
|
|
1403
1402
|
E2EBotConversation = "E2EBotConversation",
|
|
1404
1403
|
/** F2C智能体 */
|
|
1405
|
-
F2cBotConversation = "F2cBotConversation"
|
|
1406
|
-
/** 重构后的新智能体 */
|
|
1407
|
-
AgentConversation = "AgentConversation"
|
|
1404
|
+
F2cBotConversation = "F2cBotConversation"
|
|
1408
1405
|
}
|
|
1406
|
+
declare const AgentConversationTypeNames: Record<AgentConversationType, string>;
|
|
1409
1407
|
declare enum AgentConversationStatus {
|
|
1410
1408
|
/** 创建但未发生内容变化 */
|
|
1411
1409
|
Ready = "Ready",
|
|
@@ -1536,6 +1534,7 @@ interface ChatAgentConfig {
|
|
|
1536
1534
|
/** 项目级agent独有的字段,表示自定义指令 */
|
|
1537
1535
|
agentPrompt?: string;
|
|
1538
1536
|
/** 项目级agent独有的字段,表示策略 */
|
|
1537
|
+
strategy?: string;
|
|
1539
1538
|
/** 项目级agent独有的字段,表示是否是项目级agent */
|
|
1540
1539
|
isProjectAgent?: boolean;
|
|
1541
1540
|
}
|
|
@@ -2102,237 +2101,6 @@ declare const createAxiosInstance: (config?: CreateAxiosDefaults) => axios.Axios
|
|
|
2102
2101
|
declare const createAxiosCancelTokenSource: () => axios.CancelTokenSource;
|
|
2103
2102
|
declare const CanceledError: typeof axios.CanceledError;
|
|
2104
2103
|
|
|
2105
|
-
type ToolAcceptState = 'accepted' | 'rejected' | 'untouched';
|
|
2106
|
-
type ToolState = 'pending' | 'beforeExecute' | 'executing' | 'executed' | 'failed' | 'cancelled';
|
|
2107
|
-
declare namespace ITool {
|
|
2108
|
-
/**
|
|
2109
|
-
* 新的工具结果接口,用于替代 ToolResult 类
|
|
2110
|
-
*/
|
|
2111
|
-
interface Result<M extends object = Record<string, any>> {
|
|
2112
|
-
output: string;
|
|
2113
|
-
metadata?: M;
|
|
2114
|
-
}
|
|
2115
|
-
interface ToolParams {
|
|
2116
|
-
read_file: {
|
|
2117
|
-
target_file: string;
|
|
2118
|
-
offset?: number;
|
|
2119
|
-
limit?: number;
|
|
2120
|
-
};
|
|
2121
|
-
write_file: {
|
|
2122
|
-
path: string;
|
|
2123
|
-
content: string;
|
|
2124
|
-
};
|
|
2125
|
-
edit_file: {
|
|
2126
|
-
file_path: string;
|
|
2127
|
-
old_string: string;
|
|
2128
|
-
new_string: string;
|
|
2129
|
-
replace_all?: boolean;
|
|
2130
|
-
};
|
|
2131
|
-
delete_file: {
|
|
2132
|
-
file_path: string;
|
|
2133
|
-
};
|
|
2134
|
-
run_command: {
|
|
2135
|
-
command: string;
|
|
2136
|
-
path?: string;
|
|
2137
|
-
};
|
|
2138
|
-
list_dir: {
|
|
2139
|
-
target_directory: string;
|
|
2140
|
-
ignore_globs?: string[] | string;
|
|
2141
|
-
depth?: number;
|
|
2142
|
-
};
|
|
2143
|
-
web_search: {
|
|
2144
|
-
search_term: string;
|
|
2145
|
-
};
|
|
2146
|
-
grep_content: {
|
|
2147
|
-
pattern: string;
|
|
2148
|
-
path?: string;
|
|
2149
|
-
glob?: string;
|
|
2150
|
-
output_mode?: 'content' | 'files_with_matches' | 'count';
|
|
2151
|
-
'-B'?: number;
|
|
2152
|
-
'-A'?: number;
|
|
2153
|
-
'-C'?: number;
|
|
2154
|
-
'-n'?: boolean;
|
|
2155
|
-
'-i'?: boolean;
|
|
2156
|
-
type?: string;
|
|
2157
|
-
head_limit?: number;
|
|
2158
|
-
offset?: number;
|
|
2159
|
-
multiline?: boolean;
|
|
2160
|
-
};
|
|
2161
|
-
todo_write: {
|
|
2162
|
-
todos: Array<{
|
|
2163
|
-
content: string;
|
|
2164
|
-
status: 'pending' | 'in_progress' | 'completed';
|
|
2165
|
-
}>;
|
|
2166
|
-
};
|
|
2167
|
-
update_memory: {
|
|
2168
|
-
action: 'create' | 'update' | 'delete';
|
|
2169
|
-
memory_id?: string;
|
|
2170
|
-
memory_to_store?: string;
|
|
2171
|
-
topic?: string;
|
|
2172
|
-
};
|
|
2173
|
-
skill: {
|
|
2174
|
-
name: string;
|
|
2175
|
-
};
|
|
2176
|
-
glob_path: {
|
|
2177
|
-
pattern: string;
|
|
2178
|
-
target_directory?: string;
|
|
2179
|
-
};
|
|
2180
|
-
codebase_search: {
|
|
2181
|
-
query: string;
|
|
2182
|
-
};
|
|
2183
|
-
delegate_subtask: {
|
|
2184
|
-
agent_type: string;
|
|
2185
|
-
description: string;
|
|
2186
|
-
query: string;
|
|
2187
|
-
resume?: string;
|
|
2188
|
-
};
|
|
2189
|
-
mcp_tool: {
|
|
2190
|
-
[key: string]: any;
|
|
2191
|
-
};
|
|
2192
|
-
read_lints: {
|
|
2193
|
-
paths: string[];
|
|
2194
|
-
};
|
|
2195
|
-
unknown: any;
|
|
2196
|
-
}
|
|
2197
|
-
interface ResultMetadata {
|
|
2198
|
-
read_file: {
|
|
2199
|
-
absolutePath: string;
|
|
2200
|
-
startLine: number;
|
|
2201
|
-
endLine: number;
|
|
2202
|
-
};
|
|
2203
|
-
write_file: {
|
|
2204
|
-
absolutePath: string;
|
|
2205
|
-
originalContent: string | null;
|
|
2206
|
-
content: string;
|
|
2207
|
-
diff: {
|
|
2208
|
-
add: number;
|
|
2209
|
-
remove: number;
|
|
2210
|
-
};
|
|
2211
|
-
};
|
|
2212
|
-
edit_file: {
|
|
2213
|
-
absolutePath: string;
|
|
2214
|
-
originalContent: string | null;
|
|
2215
|
-
content: string;
|
|
2216
|
-
diff: {
|
|
2217
|
-
add: number;
|
|
2218
|
-
remove: number;
|
|
2219
|
-
};
|
|
2220
|
-
};
|
|
2221
|
-
delete_file: {
|
|
2222
|
-
absolutePath: string;
|
|
2223
|
-
};
|
|
2224
|
-
run_command: {
|
|
2225
|
-
output: string;
|
|
2226
|
-
cwd?: string;
|
|
2227
|
-
exitCode?: number;
|
|
2228
|
-
success: boolean;
|
|
2229
|
-
};
|
|
2230
|
-
list_dir: {
|
|
2231
|
-
targetDirectory: string;
|
|
2232
|
-
totalCount: number;
|
|
2233
|
-
isTruncated: boolean;
|
|
2234
|
-
};
|
|
2235
|
-
web_search: {
|
|
2236
|
-
sites: Array<{
|
|
2237
|
-
url: string;
|
|
2238
|
-
source: string;
|
|
2239
|
-
content: string;
|
|
2240
|
-
favicon: string;
|
|
2241
|
-
title: string;
|
|
2242
|
-
}>;
|
|
2243
|
-
};
|
|
2244
|
-
grep_content: {
|
|
2245
|
-
pattern: string;
|
|
2246
|
-
};
|
|
2247
|
-
todo_write: {
|
|
2248
|
-
todos: Array<{
|
|
2249
|
-
content: string;
|
|
2250
|
-
status: 'pending' | 'in_progress' | 'completed';
|
|
2251
|
-
}>;
|
|
2252
|
-
};
|
|
2253
|
-
update_memory: {
|
|
2254
|
-
memoryId: string;
|
|
2255
|
-
};
|
|
2256
|
-
skill: {
|
|
2257
|
-
skillName: string;
|
|
2258
|
-
skillPath: string;
|
|
2259
|
-
};
|
|
2260
|
-
glob_path: any;
|
|
2261
|
-
codebase_search: {
|
|
2262
|
-
files: Array<{
|
|
2263
|
-
path: string;
|
|
2264
|
-
match: string;
|
|
2265
|
-
start_line: number;
|
|
2266
|
-
end_line: number;
|
|
2267
|
-
}>;
|
|
2268
|
-
};
|
|
2269
|
-
delegate_subtask: object;
|
|
2270
|
-
mcp_tool: {
|
|
2271
|
-
toolName: string;
|
|
2272
|
-
serverId: string;
|
|
2273
|
-
};
|
|
2274
|
-
read_lints: {
|
|
2275
|
-
targetPath: string;
|
|
2276
|
-
lintCount: number;
|
|
2277
|
-
};
|
|
2278
|
-
unknown: any;
|
|
2279
|
-
}
|
|
2280
|
-
type ToolName = keyof ResultMetadata;
|
|
2281
|
-
}
|
|
2282
|
-
declare namespace IToolTurn {
|
|
2283
|
-
interface Element {
|
|
2284
|
-
id: string;
|
|
2285
|
-
error?: string;
|
|
2286
|
-
type: 'TEXT' | 'REASON' | 'TOOL' | 'EXCEPTION';
|
|
2287
|
-
}
|
|
2288
|
-
interface TextElement extends Element {
|
|
2289
|
-
type: 'TEXT';
|
|
2290
|
-
content: string;
|
|
2291
|
-
end: boolean;
|
|
2292
|
-
}
|
|
2293
|
-
interface ThinkElement extends Element {
|
|
2294
|
-
type: 'REASON';
|
|
2295
|
-
content: string;
|
|
2296
|
-
startTime: number;
|
|
2297
|
-
lastModifiedTime: number;
|
|
2298
|
-
end: boolean;
|
|
2299
|
-
}
|
|
2300
|
-
interface ExceptionElement extends Element {
|
|
2301
|
-
type: 'EXCEPTION';
|
|
2302
|
-
content: string;
|
|
2303
|
-
}
|
|
2304
|
-
interface ToolElement<K extends keyof ITool.ResultMetadata = 'unknown'> extends Element {
|
|
2305
|
-
type: 'TOOL';
|
|
2306
|
-
toolName: ITool.ToolName;
|
|
2307
|
-
params: ITool.ToolParams[K];
|
|
2308
|
-
toolState: ToolState;
|
|
2309
|
-
result?: ITool.Result<ITool.ResultMetadata[K]>;
|
|
2310
|
-
children?: Snapshot[];
|
|
2311
|
-
fs?: {
|
|
2312
|
-
accepted: boolean;
|
|
2313
|
-
absolutePath: string;
|
|
2314
|
-
relativePath: string;
|
|
2315
|
-
basename: string;
|
|
2316
|
-
diff?: {
|
|
2317
|
-
add: number;
|
|
2318
|
-
remove: number;
|
|
2319
|
-
};
|
|
2320
|
-
};
|
|
2321
|
-
}
|
|
2322
|
-
interface SubtaskElement extends ToolElement {
|
|
2323
|
-
type: 'TOOL';
|
|
2324
|
-
children: NonNullable<ToolElement['children']>;
|
|
2325
|
-
}
|
|
2326
|
-
interface FSToolElement extends ToolElement {
|
|
2327
|
-
fs: NonNullable<ToolElement['fs']>;
|
|
2328
|
-
}
|
|
2329
|
-
type Elements = Array<TextElement | ThinkElement | ExceptionElement | ToolElement | FSToolElement | SubtaskElement>;
|
|
2330
|
-
interface Snapshot {
|
|
2331
|
-
id: string;
|
|
2332
|
-
children: Elements;
|
|
2333
|
-
}
|
|
2334
|
-
}
|
|
2335
|
-
|
|
2336
2104
|
declare function readFileOrNull(filename: string): Promise<string>;
|
|
2337
2105
|
declare function getOsAppDataPath(): string;
|
|
2338
2106
|
/**
|
|
@@ -2507,7 +2275,7 @@ interface CloudKnowledgeSelectOption {
|
|
|
2507
2275
|
retrievalType: CloudKnowledgeRetrievalType;
|
|
2508
2276
|
}
|
|
2509
2277
|
|
|
2510
|
-
type FileCacheSource = 'extract_content_blocks' | 'write_file' | 'patch_file' | '
|
|
2278
|
+
type FileCacheSource = 'extract_content_blocks' | 'write_file' | 'patch_file' | 'delete_file' | 'check_file' | 'code_selection';
|
|
2511
2279
|
interface FileCacheEntry {
|
|
2512
2280
|
absolutePath: string;
|
|
2513
2281
|
content: string;
|
|
@@ -2538,6 +2306,10 @@ interface ChatSessionDetail extends ChatSession {
|
|
|
2538
2306
|
/** 文件内容缓存 */
|
|
2539
2307
|
fileCache?: FileCacheEntry[];
|
|
2540
2308
|
}
|
|
2309
|
+
interface ConversationTabModelConfig {
|
|
2310
|
+
modelId: string;
|
|
2311
|
+
enableMaxMode: boolean;
|
|
2312
|
+
}
|
|
2541
2313
|
/** Conversation Tab 相关类型定义 */
|
|
2542
2314
|
interface ConversationTab {
|
|
2543
2315
|
/** Tab 唯一标识 */
|
|
@@ -2548,6 +2320,10 @@ interface ConversationTab {
|
|
|
2548
2320
|
isTemporary?: boolean;
|
|
2549
2321
|
/** 关联的对话 ID */
|
|
2550
2322
|
conversationId?: string;
|
|
2323
|
+
isSpec?: boolean;
|
|
2324
|
+
agentId?: number;
|
|
2325
|
+
chatModelConfig?: ConversationTabModelConfig;
|
|
2326
|
+
specModelConfig?: ConversationTabModelConfig;
|
|
2551
2327
|
}
|
|
2552
2328
|
/** 单个工作区的 Tabs 数据 */
|
|
2553
2329
|
interface TabsWorkspaceData {
|
|
@@ -3231,6 +3007,21 @@ declare class VirtualEditor {
|
|
|
3231
3007
|
* 设置 Spec Editor 状态,控制 IDE 的 spec 页面显示
|
|
3232
3008
|
*/
|
|
3233
3009
|
setSpecEditorState(params: SpecEditorParams): Promise<{}>;
|
|
3010
|
+
/**
|
|
3011
|
+
* 显示系统级别通知
|
|
3012
|
+
* @param notificationId 通知的唯一标识符
|
|
3013
|
+
* @param options 通知选项
|
|
3014
|
+
*/
|
|
3015
|
+
showSystemNotification(params: {
|
|
3016
|
+
notificationId: string;
|
|
3017
|
+
options: {
|
|
3018
|
+
title: string;
|
|
3019
|
+
body: string;
|
|
3020
|
+
severity?: number;
|
|
3021
|
+
silent?: boolean;
|
|
3022
|
+
playSound?: boolean;
|
|
3023
|
+
};
|
|
3024
|
+
}): Promise<void>;
|
|
3234
3025
|
private sendToIDE;
|
|
3235
3026
|
private withReceivePromise;
|
|
3236
3027
|
private withReceiveEndPromise;
|
|
@@ -3336,47 +3127,6 @@ declare class CodeWrittenMetric {
|
|
|
3336
3127
|
clear(filePaths?: string[]): void;
|
|
3337
3128
|
}
|
|
3338
3129
|
|
|
3339
|
-
/** 成功定位后的结果 */
|
|
3340
|
-
interface NarrowBlockResult {
|
|
3341
|
-
/** 起始行号(0-based,包含) */
|
|
3342
|
-
start: number;
|
|
3343
|
-
/** 结束行号(0-based,**不含**) */
|
|
3344
|
-
end: number;
|
|
3345
|
-
/** 提取出的完整代码块(以 \n 拼接) */
|
|
3346
|
-
block: string;
|
|
3347
|
-
}
|
|
3348
|
-
/**
|
|
3349
|
-
* 根据“从头/从尾逐行收窄”的策略,在 `content` 中定位与 `snippet`
|
|
3350
|
-
* 最相关的连续区段。
|
|
3351
|
-
*
|
|
3352
|
-
* - 当 `snippet` 行数 ≤ 2 时直接返回 `null`(规则失效)。
|
|
3353
|
-
* - 若首行或末行无法命中,也返回 `null`。
|
|
3354
|
-
*/
|
|
3355
|
-
declare function searchNarrowedCode(content: string, snippet: string): NarrowBlockResult | null;
|
|
3356
|
-
|
|
3357
|
-
/** 允许调用方自定义的可选参数 */
|
|
3358
|
-
interface FindClosestBlockOptions {
|
|
3359
|
-
/** 锚点行与目标首行之间允许的最大行距(默认 4) */
|
|
3360
|
-
maxLineGap?: number;
|
|
3361
|
-
/** 接受匹配结果的最低相似度阈值(默认 0.92) */
|
|
3362
|
-
threshold?: number;
|
|
3363
|
-
}
|
|
3364
|
-
/** 匹配结果 */
|
|
3365
|
-
interface MatchResult {
|
|
3366
|
-
/** 代码块在原文件中起止行号 */
|
|
3367
|
-
start: number;
|
|
3368
|
-
end: number;
|
|
3369
|
-
/** `stringSimilarity` 计算得到的分数 ∈ [0, 1] */
|
|
3370
|
-
score: number;
|
|
3371
|
-
/** 实际匹配到的代码片段 */
|
|
3372
|
-
block: string;
|
|
3373
|
-
}
|
|
3374
|
-
/**
|
|
3375
|
-
* 在给定代码文本 `content` 中查找与 `targetCode` 最相似的代码块。
|
|
3376
|
-
* @returns 当找到相似度 ≥ threshold 的片段时返回其信息;否则返回 null。
|
|
3377
|
-
*/
|
|
3378
|
-
declare function searchSimiliarCode(sourceCode: string, searchCodeSnippet: string, opts?: FindClosestBlockOptions): MatchResult | null;
|
|
3379
|
-
|
|
3380
3130
|
declare const SUPPORTED_SUFFIX_CONFIG: Record<string, string[]>;
|
|
3381
3131
|
declare const SUFFIX_LANG_MAP: Record<any, string>;
|
|
3382
3132
|
|
|
@@ -4121,4 +3871,4 @@ declare function decodeBuffer(fileBuffer: Buffer): string;
|
|
|
4121
3871
|
declare function decodeFile(fileBuffer: Buffer): Promise<string>;
|
|
4122
3872
|
declare function encodeWithFileEncoding(content: string, absolutePath: string): Promise<Buffer>;
|
|
4123
3873
|
|
|
4124
|
-
export { type $features, ACTION_ASK_LLM, ACTION_ASK_LLM_STREAMING, ACTION_ASK_RAG, ACTION_BATCH_ACCEPT, ACTION_BRANCH_CHANGE, ACTION_CHAT_QUERY, ACTION_CHAT_SESSION_DELETE, ACTION_CHAT_SESSION_FIND, ACTION_CHAT_SESSION_LIST, ACTION_CHAT_SESSION_SAVE, ACTION_CHAT_TASK_PROGRESS, ACTION_CODE_SEARCH, ACTION_COMATE_ADD_AGENT_TASK, ACTION_COMATE_ADD_CACHE, ACTION_COMATE_GET_AGENT_TASKS, ACTION_COMATE_GET_CACHE, ACTION_COMATE_LSP_REMOTE_CONSOLE, ACTION_COMATE_LSP_WORKSPACE_FOLDERS, ACTION_COMATE_PLUS_AGENT_COMMAND, ACTION_COMATE_PLUS_AGENT_NOTIFICATION, ACTION_COMATE_PLUS_AISA_BUILD_PAYLOAD, ACTION_COMATE_PLUS_BATCH_ACCEPT, ACTION_COMATE_PLUS_CHAT_CANCEL, ACTION_COMATE_PLUS_CHAT_QUERY, ACTION_COMATE_PLUS_CODE_SEARCH, ACTION_COMATE_PLUS_CUSTOM_COMMAND, ACTION_COMATE_PLUS_DIAGNOSTIC_SCAN, ACTION_COMATE_PLUS_DRAW_CHAT_APPEND, ACTION_COMATE_PLUS_DRAW_CHAT_FAIL, ACTION_COMATE_PLUS_DRAW_CHAT_FINISH, ACTION_COMATE_PLUS_DRAW_CHAT_UPDATE, ACTION_COMATE_PLUS_INITIALIZED, ACTION_COMATE_PLUS_QUERY_SELECTOR, ACTION_COMATE_PLUS_RECREATE_INDEX, ACTION_COMATE_PLUS_REQUEST_PERMISSION, ACTION_COMATE_PLUS_SA_SCAN_DIAGNOSTIC, ACTION_COMATE_PLUS_SA_SCAN_INIT, ACTION_COMATE_PLUS_SECTION_CHAT_UPDATE, ACTION_COMATE_PLUS_WEBVIEW_INIT_DATA, ACTION_COMATE_SET_FOREGROUND_TASK, ACTION_COMATE_SMART_APPLY, ACTION_COMATE_SMART_APPLY_CANCEL, ACTION_COMATE_UPDATE_AGENT_TASK_MESSAGES, ACTION_COMPOSER, ACTION_CUSTOM_COMMAND, ACTION_DEBUG_TASK_PROCESS, ACTION_DIAGNOSTIC_SCAN, ACTION_DIAGNOSTIC_SCAN_TASK_COUNT, ACTION_DIAGNOSTIC_SCAN_TASK_PROGRESS, ACTION_ENGINE_PROCESS_START_SUCCESS, ACTION_GENERATE_MESSAGE, ACTION_GENERATE_MESSAGE_REPORT, ACTION_GET_PLUGIN_CONFIG, ACTION_INFORMATION_QUERY, ACTION_ISCAN_JOB_BUILD_ID, ACTION_ISCAN_RESULT, ACTION_LOG, ACTION_MOCK_VIRTUAL_EDITOR_EVENT, ACTION_PLUS_MODULE_LIST_FETCH, ACTION_PLUS_MODULE_LIST_RESULT, ACTION_PROMPTTEMPLATE_CREATE, ACTION_PROMPTTEMPLATE_DELETE, ACTION_PROMPTTEMPLATE_LIST, ACTION_PROMPTTEMPLATE_UPDATE, ACTION_QUERY_SELECTOR, ACTION_RELEASE_SCAN_TASK, ACTION_REQUEST_PERMISSION, ACTION_SA_SCAN_DIAGNOSTIC, ACTION_SA_SCAN_DIAGNOSTIC_RESULT, ACTION_SCAN_CACHE_COUNT, ACTION_SCAN_NOTIFICATION, ACTION_SCAN_QUERY, ACTION_SCAN_TASK, ACTION_SCAN_TASK_PROGRESS, ACTION_SECUBOT, ACTION_SECUBOT_TASK_PROGRESS, ACTION_SESSION_FINISH, ACTION_SESSION_START, ACTION_START_BACKGROUND_SERVICE, ACTION_START_ISCAN, ACTION_START_ISCAN_AND_GET_SEC_RESULT, ACTION_START_ISCAN_BY_SAVE, ACTION_UPDATE_ENGINE_CONFIG, ACTION_USER_DETAIL, ACTION_USER_DETAIL_ERROR, ACTION_V8_SNAP_SHOT, ACTION_WILL_SCAN, AGENT_DEBUG_CUSTOM_ACTION, type Accept, type AcceptMethod, AcceptProviderText, type AcceptWithDependentFiles, type ActionConfig, type ActionConfigs, type ActionSet, type ActionType, type Actions, type ActivationContext, type AssistantMessage as AgentAssistantMessage, type AgentComposerTask, type AgentConversationInfo, AgentConversationStatus, AgentConversationType, type AgentElements, type Message as AgentMessage, AgentMessageStatus, type AgentMetrics, type AgentPayload, type AgentReasonElement, type AgentTextElement, type AgentTodoElement, type AgentToolCallElement, type AgentToolCallType, type UserMessage as AgentUserMessage, type AgentWebSearchSite, type AlertTag, type ArchitectureReadIntentStrategy, AutoWorkText, type BatchAcceptPayload, type BatchAcceptPluginPayload, type BlockItem, type ButtonGroup, CanceledError, type CapabilityDescription, type Card, Channel, type ChannelImplement, type ChannelImplementMaybe, type ChatAgentConfig, type ChatAgentFormValues, ChatProviderText, type ChatQueryParsed, type ChatQueryPayload, type ChatSession, type ChatSessionDetail, ChatTipsProviderText, ChatTrialProviderText, type ChunkContent, type ChunkSelection, type CloudKnowledgeChunk, type CloudKnowledgeItem, type CloudKnowledgeRetrievalType, type CloudKnowledgeSelectOption, type CloudKnowledgeType, type CloudKnowledgeWorkspace, type CodeChunk, type CodeChunkType, type CodeSearchPayload, type CodeSearchPluginPayload, CodeSelectionActionsProviderText, CodeWrittenMetric, type CollapsePanel, ComatePlusText, type CommandButton, type CommandExecutionResult, CommandExecutionStatus, CommentProviderText, CompletionText, type ConfigSchemaObject, ContextType, type ContextsConfig, type ConversationTab, type CopyAcceptMethod, type CopyFile, type CurrentFileReadIntentStrategy, type CustomCommandInvokePayload, type CustomCommandPayload, DEFAULT_RULE_CONFIG_FOLDER, DEFAULT_WORKSPACE_CONFIG_FOLDER, DEFAULT_WORKSPACE_MEMORY_FILE, DEFAULT_WORKSPACE_RULE_FILE, type DebugAgentCodeContextItem, type DebugAgentPayload, type DebugAgentPluginPayload, type DebugAgentResponse, DecorationsText, type Deferred, type DiagnosticCacheValue, type DiagnosticInfo, type DiagnosticScanChangedFiles, type DiagnosticScanCountPayload, type DiagnosticScanInvokePayload, type DiagnosticScanPayload, type DiagnosticScanTaskProgressChunk, type DiagnosticScanTaskProgressPayload, type DiagnosticScanTypes, DiffProviderText, DocstringProviderText, type DocumentPosition, type DrawChunk, type DrawElement, type DynamicActionItems, type DynamicCodeChunks, type DynamicCodeGenSteps, type DynamicNotification, type DynamicRelativeFiles, type DynamicReminder, type DynamicSection, ENVIRONMENT, EmbeddingsServiceText, type Execution, ExplainProviderText, ExtensionText, type FailChunk, type FigmaFileItem, type FigmaSelection, type FileCacheEntry, type FileLink, type FileReadIntentStrategy, FixedLengthArray, type Flex, type FolderKeyIntentStrategy, type FolderReadIntentStrategy, type FolderRegexIntentStrategy, type FolderVectorIntentStrategy, type FunctionCall, type FunctionDefinition, FunctionModel, type FunctionParameterDefinition, type GenerateMessageResponse, type GetPluginConfigPayload, GlobalText, INTERNAL_API_HOST, INTERNAL_TEST_API_HOST, type IScanBuildResult, type IScanInvokePayload, type IScanJobBuildPayload, type IScanResult, type IScanResultPayload, ITool, IToolTurn, type IdeSideConfigPayload, type IdeSideConfigResponse, type IdeSideInformationPayload, type IdeSideInformationResponse, type IdeSideLlmPayload, type IdeSideLlmResponse, type IdeSideLlmStreamingResponse, type IdeSidePermissionPayload, type IdeSidePermissionResponse, type Information, type InformationPayload, InformationQueryType, InlineChatText, InlineChatTrialProviderText, InlineLogProviderText, type InputBoxMessageHistory, type IntentStrategy, IntentStrategyContextType, IntentStrategyRule, type KnowledgeChunk, type KnowledgeList, type KnowledgeOptions, type KnowledgeQueryWorkspace, type KnowledgeSet, type KnowledgeSetBase, LSP_ERROR_CODE, LanguageDetector, type LayeredSnapshot, type LicenseFullDetail, type LlmPayload, type LlmPayloadTypes, type LlmResponseTypes, LlmType, type Loading, type LogEntry, type LogLevel, type LogPayload, LogUploaderProvider, type MCPAudioContent, type MCPImageContent, type MCPResourceContent, type MCPServerForWebview, type MCPTextContent, MCP_GLOBAL_SETTINGS_FILE_PATH, MCP_LOCAL_SETTINGS_FILE_PATH, MCP_LOCAL_SETTINGS_RELATIVE_PATH, MCP_PROJECT_SETTINGS_RELATIVE_PATH, MCP_SETTINGS_DIR, MCP_SETTINGS_FILENAME, MCP_SETTINGS_FILE_PATH, MCP_SETTINGS_LOCAL_FILENAME, MEMORY_FORMAT_ERROR_CAUSE, MEMORY_FORMAT_VALIDATION_TOOLTIP_FOR_API, MEMORY_FORMAT_VALIDATION_TOOLTIP_FOR_WEBVIEW, type Markdown, type McpConfigResult, type McpConfigSource, type McpConfigUpdatePayload, type McpConfigUpdateRequest, type McpConnectionStatus, type McpServerBaseConfigRaw, type McpServerConfigParsed, type McpServerConfigParsedBase, type McpServerConfigRaw, type McpTool, type McpTransportType, type Memory, MemorySchema, MessageGenerateText, type Model, type ModelOptions, Nl2codeProviderText, type NotificationMessage, OpenPlatformText, OptimizeProviderText, PERSISTENT_STORAGE_EVENT, PLATFORM, PROMPTTEMPLATE_ROOT_PATH, type ParsedSettings, PatchContentConflictError, PatchFileDelimiterError, PermissionType, type PluginCapabilityType, type PluginConfig, type PluginConfigSection, type PluginConfigSet, type PluginDescription, type PluginMeta, type PlusConfigPayload, type PlusModuleListResultPayload, type Position, type ProviderCapabilityInfo, type QuerySelectorPayload, QuickFixText, type RAGPayload, RULE_PANEL_ACTION_EVENT, type Range$1 as Range, type RawSettings, RegexHoverText, type ReleaseScanTaskPayload, type RepairData, type ReplaceContentAcceptMethod, type ReplaceSelectionAcceptMethod, type RepoKeyIntentStrategy, type RepoRegexIntentStrategy, type RepoVectorIntentStrategy, type ReportWillScanPayload, type RequestPermissionPayload, RoleType, type RollbackMessageFileInfo, type RuleItem, type RuleMetadata, type RulePanelAction, type RulePanelActionParamsMap, SAAS_API_HOST, SAAS_TEST_API_HOST, type SADiagnosticScanInvokePayload, type SADiagnosticScanResultChunk, type SADiagnosticScanResultPayload, type SAScanDiagnosticConfig, type SAScanDiagnosticResult, type SAScanInitData, SECUBOT_DEFAULT_QUERY, SSEProcessor, SUCCESS_CODE, SUFFIX_LANG_MAP, SUPPORTED_SUFFIX_CONFIG, type ScanHandleGoal, type ScanQueryPayload, type ScanTaskPayload, SearchReplacePatchError, type SectionChunk, type SecubotAgentParsed, type SecubotFileFlaw, type SecubotFixData, type SecubotFlaw, type SecubotFlawDetail, type SecubotLink, type SecubotQueryPayload, Session, type SessionAssociation, type SessionInit, type SessionOptions, type SettingsSnapshot, type SimpleCodeBlock, SpecEditorIconState, SpecEditorSessionStatus, type SpecEditorTabInfo, SpecEditorTabStatus, SpecEditorTabType, type SpecSessionWithStatus, SplitProviderText, type SseMcpServerConfigParsed, type SseMcpServerConfigRaw, type StartBackgroundServicePayload, StatusBarText, type StdioMcpServerConfigParsed, type StdioMcpServerConfigRaw, type StreamableHttpMcpServerConfigParsed, type StreamableHttpMcpServerConfigRaw, type AgentConfig as SubAgentConfig, type Suggestion, type SystemInfoParsed, type TabsStorageData, type TabsWorkspaceData, type TaskProgressChunk, type TaskProgressPayload, TaskStatus, TextModel, type ToTerminalAcceptMethod, type TodoNode, type ToolAcceptState, type ToolCallMessageDisplayParams, type ToolCallMessageDisplayResult, type ToolState, type TranslationKey, UPDATE_RULE_PANEL_EVENT, UnitTestProviderText, type UserDetail, type UserLogLevel, type VirtualDocument, VirtualDocumentAction, type VirtualEditMethod, VirtualEditor, type VirtualEditorMethodCall, type VisibilitySelector, VisibilitySelectorMatcher, WEBVIEW_CONSUMER, type WillScanPayload, WorkflowStatus, ZuluText, allowedNativeElement, applyDiff, applySearchReplaceChunk, axiosInstance, canHandleChatQuery, canHandleQuerySelector, canShowToUser, createAxiosCancelTokenSource, createAxiosInstance, createDeferred, customLogger, decodeBuffer, decodeFile, detectEncoding, emptyDir, encodeWithFileEncoding, ensureDirectoryExist, extractChunkContent, extractCodeBlocks, extractListFromMarkdown, extractMentionFilesFromRuleConfig, findCodeChunkStartLineIndex, fixUdiffLineMarker, formatPrompt, getApiHost, getCurrentUserKnowledgeSet, getCurrentUserPluginConfigSet, getDeviceDisplayName, getKnowledgeQueryResult, getMcpSettingsFilePath, getOsAppDataPath, getPromptTemplatePath, getPromptTemplateRootPath, getPromptTemplateUuidFromPath, getUserLicenseType, isCapabilityMatch, isInteractiveContent, isNativeElement, isSectionChunk, isWrappedChunk, knowledgeServiceHealthy, localPluginConfig, logStorage, loggingMiddleware, mergePluginConfig, parseShellCommandName, patchEnvPath, pluginConfigDetail, readFileOrNull, readJson, readPluginDescription, remove, replacePathTextInMarkdown, searchNarrowedCode, searchSimiliarCode, setApiHost, setLanguage, setPlatform, setPlatformAndEnvironment, trimIllegalMarkdownTodo, writeJSON };
|
|
3874
|
+
export { type $features, ACTION_ASK_LLM, ACTION_ASK_LLM_STREAMING, ACTION_ASK_RAG, ACTION_BATCH_ACCEPT, ACTION_BRANCH_CHANGE, ACTION_CHAT_QUERY, ACTION_CHAT_SESSION_DELETE, ACTION_CHAT_SESSION_FIND, ACTION_CHAT_SESSION_LIST, ACTION_CHAT_SESSION_SAVE, ACTION_CHAT_TASK_PROGRESS, ACTION_CODE_SEARCH, ACTION_COMATE_ADD_AGENT_TASK, ACTION_COMATE_ADD_CACHE, ACTION_COMATE_GET_AGENT_TASKS, ACTION_COMATE_GET_CACHE, ACTION_COMATE_LSP_REMOTE_CONSOLE, ACTION_COMATE_LSP_WORKSPACE_FOLDERS, ACTION_COMATE_PLUS_AGENT_COMMAND, ACTION_COMATE_PLUS_AGENT_NOTIFICATION, ACTION_COMATE_PLUS_AISA_BUILD_PAYLOAD, ACTION_COMATE_PLUS_BATCH_ACCEPT, ACTION_COMATE_PLUS_CHAT_CANCEL, ACTION_COMATE_PLUS_CHAT_QUERY, ACTION_COMATE_PLUS_CODE_SEARCH, ACTION_COMATE_PLUS_CUSTOM_COMMAND, ACTION_COMATE_PLUS_DIAGNOSTIC_SCAN, ACTION_COMATE_PLUS_DRAW_CHAT_APPEND, ACTION_COMATE_PLUS_DRAW_CHAT_FAIL, ACTION_COMATE_PLUS_DRAW_CHAT_FINISH, ACTION_COMATE_PLUS_DRAW_CHAT_UPDATE, ACTION_COMATE_PLUS_INITIALIZED, ACTION_COMATE_PLUS_QUERY_SELECTOR, ACTION_COMATE_PLUS_RECREATE_INDEX, ACTION_COMATE_PLUS_REQUEST_PERMISSION, ACTION_COMATE_PLUS_SA_SCAN_DIAGNOSTIC, ACTION_COMATE_PLUS_SA_SCAN_INIT, ACTION_COMATE_PLUS_SECTION_CHAT_UPDATE, ACTION_COMATE_PLUS_WEBVIEW_INIT_DATA, ACTION_COMATE_SET_FOREGROUND_TASK, ACTION_COMATE_SMART_APPLY, ACTION_COMATE_SMART_APPLY_CANCEL, ACTION_COMATE_UPDATE_AGENT_TASK_MESSAGES, ACTION_COMPOSER, ACTION_CUSTOM_COMMAND, ACTION_DEBUG_TASK_PROCESS, ACTION_DIAGNOSTIC_SCAN, ACTION_DIAGNOSTIC_SCAN_TASK_COUNT, ACTION_DIAGNOSTIC_SCAN_TASK_PROGRESS, ACTION_ENGINE_PROCESS_START_SUCCESS, ACTION_GENERATE_MESSAGE, ACTION_GENERATE_MESSAGE_REPORT, ACTION_GET_PLUGIN_CONFIG, ACTION_INFORMATION_QUERY, ACTION_ISCAN_JOB_BUILD_ID, ACTION_ISCAN_RESULT, ACTION_LOG, ACTION_MOCK_VIRTUAL_EDITOR_EVENT, ACTION_PLUS_MODULE_LIST_FETCH, ACTION_PLUS_MODULE_LIST_RESULT, ACTION_PROMPTTEMPLATE_CREATE, ACTION_PROMPTTEMPLATE_DELETE, ACTION_PROMPTTEMPLATE_LIST, ACTION_PROMPTTEMPLATE_UPDATE, ACTION_QUERY_SELECTOR, ACTION_RELEASE_SCAN_TASK, ACTION_REQUEST_PERMISSION, ACTION_SA_SCAN_DIAGNOSTIC, ACTION_SA_SCAN_DIAGNOSTIC_RESULT, ACTION_SCAN_CACHE_COUNT, ACTION_SCAN_NOTIFICATION, ACTION_SCAN_QUERY, ACTION_SCAN_TASK, ACTION_SCAN_TASK_PROGRESS, ACTION_SECUBOT, ACTION_SECUBOT_TASK_PROGRESS, ACTION_SESSION_FINISH, ACTION_SESSION_START, ACTION_START_BACKGROUND_SERVICE, ACTION_START_ISCAN, ACTION_START_ISCAN_AND_GET_SEC_RESULT, ACTION_START_ISCAN_BY_SAVE, ACTION_UPDATE_ENGINE_CONFIG, ACTION_USER_DETAIL, ACTION_USER_DETAIL_ERROR, ACTION_V8_SNAP_SHOT, ACTION_WILL_SCAN, AGENT_DEBUG_CUSTOM_ACTION, type Accept, type AcceptMethod, AcceptProviderText, type AcceptWithDependentFiles, type ActionConfig, type ActionConfigs, type ActionSet, type ActionType, type Actions, type ActivationContext, type AssistantMessage as AgentAssistantMessage, type AgentComposerTask, type AgentConversationInfo, AgentConversationStatus, AgentConversationType, AgentConversationTypeNames, type AgentElements, type Message as AgentMessage, AgentMessageStatus, type AgentMetrics, type AgentPayload, type AgentReasonElement, type AgentTextElement, type AgentTodoElement, type AgentToolCallElement, type AgentToolCallType, type UserMessage as AgentUserMessage, type AgentWebSearchSite, type AlertTag, type ArchitectureReadIntentStrategy, AutoWorkText, type BatchAcceptPayload, type BatchAcceptPluginPayload, type BlockItem, type ButtonGroup, CanceledError, type CapabilityDescription, type Card, Channel, type ChannelImplement, type ChannelImplementMaybe, type ChatAgentConfig, type ChatAgentFormValues, ChatProviderText, type ChatQueryParsed, type ChatQueryPayload, type ChatSession, type ChatSessionDetail, ChatTipsProviderText, ChatTrialProviderText, type ChunkContent, type ChunkSelection, type CloudKnowledgeChunk, type CloudKnowledgeItem, type CloudKnowledgeRetrievalType, type CloudKnowledgeSelectOption, type CloudKnowledgeType, type CloudKnowledgeWorkspace, type CodeChunk, type CodeChunkType, type CodeSearchPayload, type CodeSearchPluginPayload, CodeSelectionActionsProviderText, CodeWrittenMetric, type CollapsePanel, ComatePlusText, type CommandButton, type CommandExecutionResult, CommandExecutionStatus, CommentProviderText, CompletionText, type ConfigSchemaObject, ContextType, type ContextsConfig, type ConversationTab, type CopyAcceptMethod, type CopyFile, type CurrentFileReadIntentStrategy, type CustomCommandInvokePayload, type CustomCommandPayload, DEFAULT_RULE_CONFIG_FOLDER, DEFAULT_WORKSPACE_CONFIG_FOLDER, DEFAULT_WORKSPACE_MEMORY_FILE, DEFAULT_WORKSPACE_RULE_FILE, type DebugAgentCodeContextItem, type DebugAgentPayload, type DebugAgentPluginPayload, type DebugAgentResponse, DecorationsText, type Deferred, type DiagnosticCacheValue, type DiagnosticInfo, type DiagnosticScanChangedFiles, type DiagnosticScanCountPayload, type DiagnosticScanInvokePayload, type DiagnosticScanPayload, type DiagnosticScanTaskProgressChunk, type DiagnosticScanTaskProgressPayload, type DiagnosticScanTypes, DiffProviderText, DocstringProviderText, type DocumentPosition, type DrawChunk, type DrawElement, type DynamicActionItems, type DynamicCodeChunks, type DynamicCodeGenSteps, type DynamicNotification, type DynamicRelativeFiles, type DynamicReminder, type DynamicSection, ENVIRONMENT, EmbeddingsServiceText, type Execution, ExplainProviderText, ExtensionText, type FailChunk, type FigmaFileItem, type FigmaSelection, type FileCacheEntry, type FileLink, type FileReadIntentStrategy, FixedLengthArray, type Flex, type FolderKeyIntentStrategy, type FolderReadIntentStrategy, type FolderRegexIntentStrategy, type FolderVectorIntentStrategy, type FunctionCall, type FunctionDefinition, FunctionModel, type FunctionParameterDefinition, type GenerateMessageResponse, type GetPluginConfigPayload, GlobalText, INTERNAL_API_HOST, INTERNAL_TEST_API_HOST, type IScanBuildResult, type IScanInvokePayload, type IScanJobBuildPayload, type IScanResult, type IScanResultPayload, type IdeSideConfigPayload, type IdeSideConfigResponse, type IdeSideInformationPayload, type IdeSideInformationResponse, type IdeSideLlmPayload, type IdeSideLlmResponse, type IdeSideLlmStreamingResponse, type IdeSidePermissionPayload, type IdeSidePermissionResponse, type Information, type InformationPayload, InformationQueryType, InlineChatText, InlineChatTrialProviderText, InlineLogProviderText, type InputBoxMessageHistory, type IntentStrategy, IntentStrategyContextType, IntentStrategyRule, type KnowledgeChunk, type KnowledgeList, type KnowledgeOptions, type KnowledgeQueryWorkspace, type KnowledgeSet, type KnowledgeSetBase, LSP_ERROR_CODE, LanguageDetector, type LayeredSnapshot, type LicenseFullDetail, type LlmPayload, type LlmPayloadTypes, type LlmResponseTypes, LlmType, type Loading, type LogEntry, type LogLevel, type LogPayload, LogUploaderProvider, type MCPAudioContent, type MCPImageContent, type MCPResourceContent, type MCPServerForWebview, type MCPTextContent, MCP_GLOBAL_SETTINGS_FILE_PATH, MCP_LOCAL_SETTINGS_FILE_PATH, MCP_LOCAL_SETTINGS_RELATIVE_PATH, MCP_PROJECT_SETTINGS_RELATIVE_PATH, MCP_SETTINGS_DIR, MCP_SETTINGS_FILENAME, MCP_SETTINGS_FILE_PATH, MCP_SETTINGS_LOCAL_FILENAME, MEMORY_FORMAT_ERROR_CAUSE, MEMORY_FORMAT_VALIDATION_TOOLTIP_FOR_API, MEMORY_FORMAT_VALIDATION_TOOLTIP_FOR_WEBVIEW, type Markdown, type McpConfigResult, type McpConfigSource, type McpConfigUpdatePayload, type McpConfigUpdateRequest, type McpConnectionStatus, type McpServerBaseConfigRaw, type McpServerConfigParsed, type McpServerConfigParsedBase, type McpServerConfigRaw, type McpTool, type McpTransportType, type Memory, MemorySchema, MessageGenerateText, type Model, type ModelOptions, Nl2codeProviderText, type NotificationMessage, OpenPlatformText, OptimizeProviderText, PERSISTENT_STORAGE_EVENT, PLATFORM, PROMPTTEMPLATE_ROOT_PATH, type ParsedSettings, PatchContentConflictError, PatchFileDelimiterError, PermissionType, type PluginCapabilityType, type PluginConfig, type PluginConfigSection, type PluginConfigSet, type PluginDescription, type PluginMeta, type PlusConfigPayload, type PlusModuleListResultPayload, type Position, type ProviderCapabilityInfo, type QuerySelectorPayload, QuickFixText, type RAGPayload, RULE_PANEL_ACTION_EVENT, type Range$1 as Range, type RawSettings, RegexHoverText, type ReleaseScanTaskPayload, type RepairData, type ReplaceContentAcceptMethod, type ReplaceSelectionAcceptMethod, type RepoKeyIntentStrategy, type RepoRegexIntentStrategy, type RepoVectorIntentStrategy, type ReportWillScanPayload, type RequestPermissionPayload, RoleType, type RollbackMessageFileInfo, type RuleItem, type RuleMetadata, type RulePanelAction, type RulePanelActionParamsMap, SAAS_API_HOST, SAAS_TEST_API_HOST, type SADiagnosticScanInvokePayload, type SADiagnosticScanResultChunk, type SADiagnosticScanResultPayload, type SAScanDiagnosticConfig, type SAScanDiagnosticResult, type SAScanInitData, SECUBOT_DEFAULT_QUERY, SSEProcessor, SUCCESS_CODE, SUFFIX_LANG_MAP, SUPPORTED_SUFFIX_CONFIG, type ScanHandleGoal, type ScanQueryPayload, type ScanTaskPayload, SearchReplacePatchError, type SectionChunk, type SecubotAgentParsed, type SecubotFileFlaw, type SecubotFixData, type SecubotFlaw, type SecubotFlawDetail, type SecubotLink, type SecubotQueryPayload, Session, type SessionAssociation, type SessionInit, type SessionOptions, type SettingsSnapshot, type SimpleCodeBlock, SpecEditorIconState, SpecEditorSessionStatus, type SpecEditorTabInfo, SpecEditorTabStatus, SpecEditorTabType, type SpecSessionWithStatus, SplitProviderText, type SseMcpServerConfigParsed, type SseMcpServerConfigRaw, type StartBackgroundServicePayload, StatusBarText, type StdioMcpServerConfigParsed, type StdioMcpServerConfigRaw, type StreamableHttpMcpServerConfigParsed, type StreamableHttpMcpServerConfigRaw, type AgentConfig as SubAgentConfig, type Suggestion, type SystemInfoParsed, type TabsStorageData, type TabsWorkspaceData, type TaskProgressChunk, type TaskProgressPayload, TaskStatus, TextModel, type ToTerminalAcceptMethod, type TodoNode, type ToolCallMessageDisplayParams, type ToolCallMessageDisplayResult, type TranslationKey, UPDATE_RULE_PANEL_EVENT, UnitTestProviderText, type UserDetail, type UserLogLevel, type VirtualDocument, VirtualDocumentAction, type VirtualEditMethod, VirtualEditor, type VirtualEditorMethodCall, type VisibilitySelector, VisibilitySelectorMatcher, WEBVIEW_CONSUMER, type WillScanPayload, WorkflowStatus, ZuluText, allowedNativeElement, applyDiff, applySearchReplaceChunk, axiosInstance, canHandleChatQuery, canHandleQuerySelector, canShowToUser, createAxiosCancelTokenSource, createAxiosInstance, createDeferred, customLogger, decodeBuffer, decodeFile, detectEncoding, emptyDir, encodeWithFileEncoding, ensureDirectoryExist, extractChunkContent, extractCodeBlocks, extractListFromMarkdown, extractMentionFilesFromRuleConfig, findCodeChunkStartLineIndex, fixUdiffLineMarker, formatPrompt, getApiHost, getCurrentUserKnowledgeSet, getCurrentUserPluginConfigSet, getDeviceDisplayName, getKnowledgeQueryResult, getMcpSettingsFilePath, getOsAppDataPath, getPromptTemplatePath, getPromptTemplateRootPath, getPromptTemplateUuidFromPath, getUserLicenseType, isCapabilityMatch, isInteractiveContent, isNativeElement, isSectionChunk, isWrappedChunk, knowledgeServiceHealthy, localPluginConfig, logStorage, loggingMiddleware, mergePluginConfig, parseShellCommandName, patchEnvPath, pluginConfigDetail, readFileOrNull, readJson, readPluginDescription, remove, replacePathTextInMarkdown, setApiHost, setLanguage, setPlatform, setPlatformAndEnvironment, trimIllegalMarkdownTodo, writeJSON };
|