@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.
Files changed (31) hide show
  1. package/dist/auth/auth-schema.d.ts +82 -82
  2. package/dist/auth/auth-validation-schemas.d.ts +129 -129
  3. package/dist/auth/auth.d.ts +22 -22
  4. package/dist/auth/permissions.d.ts +9 -9
  5. package/dist/client-exports.d.ts +3 -4
  6. package/dist/constants/execution-limits-shared/defaults.d.ts +1 -1
  7. package/dist/constants/execution-limits-shared/defaults.js +1 -1
  8. package/dist/constants/execution-limits-shared/index.d.ts +1 -1
  9. package/dist/data-access/manage/agents.d.ts +46 -46
  10. package/dist/data-access/manage/artifactComponents.d.ts +14 -14
  11. package/dist/data-access/manage/contextConfigs.d.ts +20 -20
  12. package/dist/data-access/manage/dataComponents.d.ts +6 -6
  13. package/dist/data-access/manage/functionTools.d.ts +18 -18
  14. package/dist/data-access/manage/subAgentExternalAgentRelations.d.ts +24 -24
  15. package/dist/data-access/manage/subAgentRelations.d.ts +34 -34
  16. package/dist/data-access/manage/subAgentTeamAgentRelations.d.ts +18 -18
  17. package/dist/data-access/manage/subAgents.d.ts +18 -18
  18. package/dist/data-access/manage/tools.d.ts +30 -30
  19. package/dist/data-access/manage/tools.js +27 -7
  20. package/dist/data-access/runtime/apiKeys.d.ts +20 -20
  21. package/dist/data-access/runtime/conversations.d.ts +20 -20
  22. package/dist/data-access/runtime/messages.d.ts +15 -15
  23. package/dist/data-access/runtime/tasks.d.ts +4 -4
  24. package/dist/db/manage/manage-schema.d.ts +377 -377
  25. package/dist/db/runtime/runtime-schema.d.ts +175 -175
  26. package/dist/types/utility.d.ts +1 -1
  27. package/dist/types/utility.js +2 -1
  28. package/dist/utils/mcp-client.d.ts +1 -1
  29. package/dist/utils/mcp-client.js +1 -1
  30. package/dist/validation/schemas.d.ts +1398 -1394
  31. package/package.json +1 -1
@@ -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";
@@ -3,7 +3,8 @@ const TOOL_STATUS_VALUES = [
3
3
  "healthy",
4
4
  "unhealthy",
5
5
  "unknown",
6
- "needs_auth"
6
+ "needs_auth",
7
+ "unavailable"
7
8
  ];
8
9
  const VALID_RELATION_TYPES = ["transfer", "delegate"];
9
10
  const MCPTransportType = {
@@ -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 {
@@ -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";