@multi-agent-protocol/sdk 0.0.12 → 0.1.0
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-BojLgS6o.d.cts → index-OkNSW4wR.d.cts} +200 -4
- package/dist/{index-BojLgS6o.d.ts → index-OkNSW4wR.d.ts} +200 -4
- package/dist/index.cjs +56 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +39 -39
- package/dist/index.d.ts +39 -39
- package/dist/index.js +55 -5
- package/dist/index.js.map +1 -1
- package/dist/testing.cjs +9 -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 +9 -1
- package/dist/testing.js.map +1 -1
- package/package.json +1 -1
package/dist/testing.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { P as ParticipantCapabilities,
|
|
1
|
+
import { P as ParticipantCapabilities, hm 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, cG as ClientConnectionOptions, cF as ClientConnection, c3 as AgentsListRequestParams, fw as ScopesListRequestParams, q as SubscriptionFilter, fW as Subscription, e as EventType, bM as AgentConnectionOptions, X as AgentConnection } from './index-OkNSW4wR.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, hm 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, cG as ClientConnectionOptions, cF as ClientConnection, c3 as AgentsListRequestParams, fw as ScopesListRequestParams, q as SubscriptionFilter, fW as Subscription, e as EventType, bM as AgentConnectionOptions, X as AgentConnection } from './index-OkNSW4wR.js';
|
|
2
2
|
import 'events';
|
|
3
3
|
|
|
4
4
|
/**
|
package/dist/testing.js
CHANGED
|
@@ -282,6 +282,13 @@ var MAIL_ERROR_CODES = {
|
|
|
282
282
|
MAIL_HISTORY_ACCESS_DENIED: 10009,
|
|
283
283
|
MAIL_PARENT_CONVERSATION_NOT_FOUND: 10010
|
|
284
284
|
};
|
|
285
|
+
var TRAJECTORY_ERROR_CODES = {
|
|
286
|
+
TRAJECTORY_NOT_ENABLED: 13e3,
|
|
287
|
+
TRAJECTORY_CHECKPOINT_NOT_FOUND: 13001,
|
|
288
|
+
TRAJECTORY_CONTENT_UNAVAILABLE: 13002,
|
|
289
|
+
TRAJECTORY_STREAM_FAILED: 13003,
|
|
290
|
+
TRAJECTORY_PERMISSION_DENIED: 13004
|
|
291
|
+
};
|
|
285
292
|
var ERROR_CODES = {
|
|
286
293
|
...PROTOCOL_ERROR_CODES,
|
|
287
294
|
...AUTH_ERROR_CODES,
|
|
@@ -289,7 +296,8 @@ var ERROR_CODES = {
|
|
|
289
296
|
...AGENT_ERROR_CODES,
|
|
290
297
|
...RESOURCE_ERROR_CODES,
|
|
291
298
|
...FEDERATION_ERROR_CODES,
|
|
292
|
-
...MAIL_ERROR_CODES
|
|
299
|
+
...MAIL_ERROR_CODES,
|
|
300
|
+
...TRAJECTORY_ERROR_CODES
|
|
293
301
|
};
|
|
294
302
|
var PROTOCOL_VERSION = 1;
|
|
295
303
|
|