@cline/core 0.0.57 → 0.0.58-nightly.1783394305
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/extensions/tools/helpers.d.ts +6 -0
- package/dist/hub/daemon/entry.js +130 -130
- package/dist/hub/index.js +118 -118
- package/dist/index.js +123 -123
- package/package.json +4 -4
|
@@ -14,6 +14,12 @@ export declare class TimeoutError extends Error {
|
|
|
14
14
|
export declare function withTimeout<T>(promise: Promise<T>, ms: number, message: string): Promise<T>;
|
|
15
15
|
export declare function formatReadFileQuery(request: ReadFileRequest): string;
|
|
16
16
|
export declare function getReadFileRangeError(request: ReadFileRequest): string | null;
|
|
17
|
+
/**
|
|
18
|
+
* Some models emit a file's line range as a separate array element instead of
|
|
19
|
+
* placing start_line/end_line on the same object as its path. Fold such
|
|
20
|
+
* orphan range entries into the preceding file entry before validation.
|
|
21
|
+
*/
|
|
22
|
+
export declare function coalesceOrphanReadRanges(input: unknown): unknown;
|
|
17
23
|
export declare function normalizeRunCommandsInput(input: unknown): Array<string | StructuredCommandInput>;
|
|
18
24
|
export declare function formatRunCommandQuery(command: string | StructuredCommandInput): string;
|
|
19
25
|
/**
|