@multi-agent-protocol/sdk 0.0.8 → 0.0.9
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/{index-BVvyY2kb.d.cts → index-J32EeqzO.d.cts} +412 -99
- package/dist/{index-BVvyY2kb.d.ts → index-J32EeqzO.d.ts} +412 -99
- package/dist/index.cjs +47 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +17 -9
- package/dist/index.d.ts +17 -9
- package/dist/index.js +47 -7
- package/dist/index.js.map +1 -1
- package/dist/testing.cjs +5 -1
- package/dist/testing.cjs.map +1 -1
- package/dist/testing.d.cts +1 -1
- package/dist/testing.d.ts +1 -1
- package/dist/testing.js +5 -1
- package/dist/testing.js.map +1 -1
- package/package.json +6 -2
package/dist/testing.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { P as ParticipantCapabilities,
|
|
1
|
+
import { P as ParticipantCapabilities, gY as SystemExposure, d as FederationRoutingConfig, S as Stream, cy as BaseConnection, f as SessionId, A as AgentId, n as Agent, m as ScopeId, o as Scope, c as Message, r as Event, k as ParticipantId, N as SubscriptionId, cF as ClientConnectionOptions, cE as ClientConnection, c3 as AgentsListRequestParams, fv as ScopesListRequestParams, q as SubscriptionFilter, fV as Subscription, e as EventType, bM as AgentConnectionOptions, X as AgentConnection } from './index-J32EeqzO.cjs';
|
|
2
2
|
import 'events';
|
|
3
3
|
|
|
4
4
|
/**
|
package/dist/testing.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { P as ParticipantCapabilities,
|
|
1
|
+
import { P as ParticipantCapabilities, gY as SystemExposure, d as FederationRoutingConfig, S as Stream, cy as BaseConnection, f as SessionId, A as AgentId, n as Agent, m as ScopeId, o as Scope, c as Message, r as Event, k as ParticipantId, N as SubscriptionId, cF as ClientConnectionOptions, cE as ClientConnection, c3 as AgentsListRequestParams, fv as ScopesListRequestParams, q as SubscriptionFilter, fV as Subscription, e as EventType, bM as AgentConnectionOptions, X as AgentConnection } from './index-J32EeqzO.js';
|
|
2
2
|
import 'events';
|
|
3
3
|
|
|
4
4
|
/**
|
package/dist/testing.js
CHANGED
|
@@ -263,7 +263,11 @@ var FEDERATION_ERROR_CODES = {
|
|
|
263
263
|
/** Message has already visited this system (loop detected) */
|
|
264
264
|
FEDERATION_LOOP_DETECTED: 5010,
|
|
265
265
|
/** Message exceeded maximum hop count */
|
|
266
|
-
FEDERATION_MAX_HOPS_EXCEEDED: 5011
|
|
266
|
+
FEDERATION_MAX_HOPS_EXCEEDED: 5011,
|
|
267
|
+
/** DID document resolution failed (network error, invalid document, etc.) */
|
|
268
|
+
FEDERATION_DID_RESOLUTION_FAILED: 5004,
|
|
269
|
+
/** DID proof verification failed (bad signature, expired, wrong challenge, etc.) */
|
|
270
|
+
FEDERATION_DID_PROOF_INVALID: 5005
|
|
267
271
|
};
|
|
268
272
|
var MAIL_ERROR_CODES = {
|
|
269
273
|
MAIL_CONVERSATION_NOT_FOUND: 1e4,
|