@agentforge-io/core 2.0.0 → 2.0.1
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/services/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { ToolRegistryService, type Logger } from './tool-registry.service';
|
|
1
|
+
export { ToolRegistryService, type Logger, type ToolDescription, } from './tool-registry.service';
|
|
2
2
|
export { AgentRunnerService } from './agent-runner.service';
|
|
3
3
|
export { PreparedStreamService, PreparedStreamError, } from './prepared-stream.service';
|
|
4
4
|
export { InMemoryPreparedStreamStore } from './in-memory-prepared-stream.store';
|
|
@@ -39,4 +39,13 @@ export interface ToolDescription {
|
|
|
39
39
|
description: string;
|
|
40
40
|
inputSchema: Record<string, unknown>;
|
|
41
41
|
agents?: string[];
|
|
42
|
+
/**
|
|
43
|
+
* Set when this tool comes from an OAuth connector (Gmail, Drive, …)
|
|
44
|
+
* rather than the global built-in registry. The UI groups the picker
|
|
45
|
+
* by this id so operators can see at a glance which provider each
|
|
46
|
+
* tool belongs to. Built-in tools leave this undefined.
|
|
47
|
+
*/
|
|
48
|
+
connectorId?: string;
|
|
49
|
+
/** Human-readable connector label paired with `connectorId`. */
|
|
50
|
+
connectorName?: string;
|
|
42
51
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentforge-io/core",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "Framework-free AI runtime SDK. Owns: agent loop (Anthropic), conversations, tools, streaming, agent-job queue, SdkHooks. Identity, billing, infra (email/uploads/secrets) live in the host's modules — not here.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/index.js",
|