@octocodeai/octocode-tools-core 16.6.0 → 16.6.2
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/README.md +176 -248
- package/dist/direct.js +34 -35
- package/dist/errors/localToolErrors.d.ts +1 -0
- package/dist/index.js +39 -40
- package/dist/oql/adapters/local.d.ts +1 -0
- package/dist/oql/envelope.d.ts +2 -0
- package/dist/oql/index.d.ts +2 -1
- package/dist/oql/index.js +34 -34
- package/dist/oql/schemeText.d.ts +16 -0
- package/dist/oql/types.d.ts +7 -0
- package/dist/schema.d.ts +1 -1
- package/dist/schema.js +2 -1
- package/dist/shared/config/index.js +2 -2
- package/dist/shared/config/runtimeSurface.d.ts +5 -4
- package/dist/shared/credentials/envTokens.d.ts +1 -1
- package/dist/shared/credentials/index.js +1 -1
- package/dist/shared/credentials/types.d.ts +1 -1
- package/dist/shared/paths.d.ts +2 -1
- package/dist/shared/paths.js +1 -1
- package/dist/shared/session/index.js +1 -1
- package/dist/tools/directToolCatalog.meta.d.ts +1 -0
- package/dist/tools/github_fetch_content/scheme.d.ts +0 -82
- package/dist/tools/local_binary_inspect/binaryInspector.d.ts +0 -4
- package/dist/tools/lsp/semantic_content/scheme.d.ts +0 -14
- package/dist/tools/lsp/shared/semanticTypes.d.ts +2 -2
- package/dist/tools/package_search/execution.d.ts +23 -0
- package/dist/tools/package_search/scheme.d.ts +8 -0
- package/dist/tools/toolNames.d.ts +1 -1
- package/dist/types/server.d.ts +1 -1
- package/package.json +6 -3
|
@@ -10,6 +10,7 @@ export declare const LOCAL_TOOL_ERROR_CODES: {
|
|
|
10
10
|
readonly COMMAND_EXECUTION_FAILED: "commandExecutionFailed";
|
|
11
11
|
readonly COMMAND_TIMEOUT: "commandTimeout";
|
|
12
12
|
readonly TOOL_EXECUTION_FAILED: "toolExecutionFailed";
|
|
13
|
+
readonly LSP_SERVER_UNAVAILABLE: "lspServerUnavailable";
|
|
13
14
|
};
|
|
14
15
|
export type LocalToolErrorCode = (typeof LOCAL_TOOL_ERROR_CODES)[keyof typeof LOCAL_TOOL_ERROR_CODES];
|
|
15
16
|
export declare enum LocalToolErrorCategory {
|