@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/testing.cjs CHANGED
@@ -265,7 +265,11 @@ var FEDERATION_ERROR_CODES = {
265
265
  /** Message has already visited this system (loop detected) */
266
266
  FEDERATION_LOOP_DETECTED: 5010,
267
267
  /** Message exceeded maximum hop count */
268
- FEDERATION_MAX_HOPS_EXCEEDED: 5011
268
+ FEDERATION_MAX_HOPS_EXCEEDED: 5011,
269
+ /** DID document resolution failed (network error, invalid document, etc.) */
270
+ FEDERATION_DID_RESOLUTION_FAILED: 5004,
271
+ /** DID proof verification failed (bad signature, expired, wrong challenge, etc.) */
272
+ FEDERATION_DID_PROOF_INVALID: 5005
269
273
  };
270
274
  var MAIL_ERROR_CODES = {
271
275
  MAIL_CONVERSATION_NOT_FOUND: 1e4,