UNPKG

atp-sdk

Version:

Official TypeScript SDK for Agent Trust Protocolâ„¢ - Build secure, verifiable, and trustworthy applications with decentralized identity, verifiable credentials, payment protocols (AP2/ACP), and robust access control

18 lines • 473 B
/** * Base Protocol Types for ATP SDK * * Defines core types for multi-protocol support including * MCP, OpenAI Swarm, Google ADK, and Agent2Agent protocols. */ /** * Supported AI Agent Protocols */ export var Protocol; (function (Protocol) { Protocol["MCP"] = "mcp"; Protocol["SWARM"] = "swarm"; Protocol["ADK"] = "adk"; Protocol["A2A"] = "a2a"; Protocol["UNKNOWN"] = "unknown"; })(Protocol || (Protocol = {})); //# sourceMappingURL=types.js.map