UNPKG

@digitalsamba/embedded-api-mcp-server

Version:

Digital Samba Embedded API MCP Server - Model Context Protocol server for Digital Samba's Embedded API

21 lines 472 B
/** * Webhook-related types and interfaces for the Digital Samba API * * @module types/webhook */ export interface Webhook { id: string; endpoint: string; authorization_header?: string; name?: string; events?: string[]; created_at: string; updated_at: string; } export interface WebhookCreateSettings { endpoint: string; name?: string; authorization_header?: string; events: string[]; } //# sourceMappingURL=webhook.d.ts.map