- Add native config option: `new Brainy({ integrations: true })`
- OData integration for Excel Power Query and Power BI
- Google Sheets integration with Apps Script
- Server-Sent Events (SSE) for real-time streaming
- Webhooks for push notifications
- Zero-config with sensible defaults
- Full tree-shaking when disabled
12 lines
219 B
TypeScript
12 lines
219 B
TypeScript
/**
|
|
* Webhook Integration Module
|
|
*
|
|
* Push events to external URLs via HTTP POST.
|
|
* Works in all environments.
|
|
*/
|
|
|
|
export {
|
|
WebhookIntegration,
|
|
integration,
|
|
type WebhookConfig
|
|
} from './WebhookIntegration.js'
|