@inkeep/agents-core 0.0.0-dev-20260126174131 → 0.0.0-dev-20260126181806
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/auth/auth-schema.d.ts +82 -82
- package/dist/auth/auth-validation-schemas.d.ts +129 -129
- package/dist/auth/auth.d.ts +22 -22
- package/dist/auth/permissions.d.ts +9 -9
- package/dist/client-exports.d.ts +3 -4
- package/dist/constants/execution-limits-shared/defaults.d.ts +1 -1
- package/dist/constants/execution-limits-shared/defaults.js +1 -1
- package/dist/constants/execution-limits-shared/index.d.ts +1 -1
- package/dist/data-access/manage/agents.d.ts +46 -46
- package/dist/data-access/manage/artifactComponents.d.ts +14 -14
- package/dist/data-access/manage/contextConfigs.d.ts +20 -20
- package/dist/data-access/manage/dataComponents.d.ts +6 -6
- package/dist/data-access/manage/functionTools.d.ts +18 -18
- package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +24 -24
- package/dist/data-access/manage/subAgentRelations.d.ts +34 -34
- package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +18 -18
- package/dist/data-access/manage/subAgents.d.ts +18 -18
- package/dist/data-access/manage/tools.d.ts +30 -30
- package/dist/data-access/manage/tools.js +27 -7
- package/dist/data-access/runtime/apiKeys.d.ts +20 -20
- package/dist/data-access/runtime/conversations.d.ts +20 -20
- package/dist/data-access/runtime/messages.d.ts +15 -15
- package/dist/data-access/runtime/tasks.d.ts +4 -4
- package/dist/db/manage/manage-schema.d.ts +377 -377
- package/dist/db/runtime/runtime-schema.d.ts +175 -175
- package/dist/types/utility.d.ts +1 -1
- package/dist/types/utility.js +2 -1
- package/dist/utils/mcp-client.d.ts +1 -1
- package/dist/utils/mcp-client.js +1 -1
- package/dist/validation/schemas.d.ts +1398 -1394
- package/package.json +1 -1
package/dist/types/utility.d.ts
CHANGED
|
@@ -188,7 +188,7 @@ interface ProjectResourceCounts {
|
|
|
188
188
|
contextConfigs: number;
|
|
189
189
|
externalAgents: number;
|
|
190
190
|
}
|
|
191
|
-
declare const TOOL_STATUS_VALUES: readonly ["healthy", "unhealthy", "unknown", "needs_auth"];
|
|
191
|
+
declare const TOOL_STATUS_VALUES: readonly ["healthy", "unhealthy", "unknown", "needs_auth", "unavailable"];
|
|
192
192
|
declare const VALID_RELATION_TYPES: readonly ["transfer", "delegate"];
|
|
193
193
|
declare const MCPTransportType: {
|
|
194
194
|
readonly streamableHttp: "streamable_http";
|
package/dist/types/utility.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { MCPTransportType } from "../types/utility.js";
|
|
2
|
+
import { ClientCapabilities } from "@modelcontextprotocol/sdk/types.js";
|
|
2
3
|
import { SSEClientTransportOptions } from "@modelcontextprotocol/sdk/client/sse.js";
|
|
3
4
|
import { StreamableHTTPClientTransportOptions } from "@modelcontextprotocol/sdk/client/streamableHttp.js";
|
|
4
|
-
import { ClientCapabilities } from "@modelcontextprotocol/sdk/types.js";
|
|
5
5
|
|
|
6
6
|
//#region src/utils/mcp-client.d.ts
|
|
7
7
|
interface SharedServerConfig {
|
package/dist/utils/mcp-client.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { MCPTransportType } from "../types/utility.js";
|
|
2
2
|
import { MCP_TOOL_CONNECTION_TIMEOUT_MS, MCP_TOOL_INITIAL_RECONNECTION_DELAY_MS, MCP_TOOL_MAX_RECONNECTION_DELAY_MS, MCP_TOOL_MAX_RETRIES, MCP_TOOL_RECONNECTION_DELAY_GROWTH_FACTOR } from "../constants/execution-limits-shared/index.js";
|
|
3
3
|
import { z } from "@hono/zod-openapi";
|
|
4
|
+
import { CallToolResultSchema } from "@modelcontextprotocol/sdk/types.js";
|
|
4
5
|
import { Client } from "@modelcontextprotocol/sdk/client/index.js";
|
|
5
6
|
import { SSEClientTransport } from "@modelcontextprotocol/sdk/client/sse.js";
|
|
6
7
|
import { StreamableHTTPClientTransport } from "@modelcontextprotocol/sdk/client/streamableHttp.js";
|
|
7
8
|
import { DEFAULT_REQUEST_TIMEOUT_MSEC } from "@modelcontextprotocol/sdk/shared/protocol.js";
|
|
8
|
-
import { CallToolResultSchema } from "@modelcontextprotocol/sdk/types.js";
|
|
9
9
|
import { tool } from "ai";
|
|
10
10
|
import { asyncExitHook, gracefulExit } from "exit-hook";
|
|
11
11
|
import { match } from "ts-pattern";
|