@dexwox-labs/a2a-client
Version:
TypeScript client implementation for Google's Agent-to-Agent (A2A) protocol - includes HTTP/WebSocket communication, circuit breakers and error handling
23 lines • 657 B
JavaScript
;
/**
* @module ClientTypes
* @description Type definitions for the A2A client package
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.TASK_FAILED = exports.TASK_COMPLETED = exports.TASK_UPDATED = void 0;
/**
* Event emitted when a task is updated with new status or progress
* @constant {string}
*/
exports.TASK_UPDATED = 'taskUpdated';
/**
* Event emitted when a task is successfully completed
* @constant {string}
*/
exports.TASK_COMPLETED = 'taskCompleted';
/**
* Event emitted when a task fails with an error
* @constant {string}
*/
exports.TASK_FAILED = 'taskFailed';
//# sourceMappingURL=types.js.map