@stdiobus/workers-registry 1.4.6 → 1.4.8
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/out/dist/workers-registry/acp-registry/index.js +1 -1
- package/out/dist/workers-registry/acp-registry/index.js.map +2 -2
- package/out/dist/workers-registry/acp-worker/index.js +1 -1
- package/out/dist/workers-registry/acp-worker/index.js.map +2 -2
- package/out/tsc/workers-registry/acp-worker/src/registry-launcher/router/message-router.d.ts +2 -2
- package/package.json +1 -1
package/out/tsc/workers-registry/acp-worker/src/registry-launcher/router/message-router.d.ts
CHANGED
|
@@ -85,7 +85,7 @@ export declare class MessageRouter {
|
|
|
85
85
|
private readonly writeCallback;
|
|
86
86
|
/** API keys for agent authentication */
|
|
87
87
|
private readonly apiKeys;
|
|
88
|
-
/** Map of request ID to pending request info for correlation */
|
|
88
|
+
/** Map of request ID (as string) to pending request info for correlation */
|
|
89
89
|
private readonly pendingRequests;
|
|
90
90
|
/** Map of agent ID to authentication state */
|
|
91
91
|
private readonly authState;
|
|
@@ -114,7 +114,7 @@ export declare class MessageRouter {
|
|
|
114
114
|
*
|
|
115
115
|
* Intercepts initialize responses to trigger automatic authentication.
|
|
116
116
|
* Tracks sessionId mapping for proper notification routing.
|
|
117
|
-
* Forwards all responses to stdout.
|
|
117
|
+
* Forwards all responses to stdout with proper sessionId for stdio Bus routing.
|
|
118
118
|
*
|
|
119
119
|
* @param agentId - The agent that sent the response
|
|
120
120
|
* @param response - The response object from the agent
|
package/package.json
CHANGED