feat: Integration Hub for external tool connectivity
- 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
This commit is contained in:
parent
24039e8a1a
commit
b5bc9000cf
28 changed files with 8186 additions and 1 deletions
12
src/integrations/sse/index.ts
Normal file
12
src/integrations/sse/index.ts
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
/**
|
||||
* SSE (Server-Sent Events) Integration Module
|
||||
*
|
||||
* Provides real-time streaming of Brainy events.
|
||||
* Works in all environments.
|
||||
*/
|
||||
|
||||
export {
|
||||
SSEIntegration,
|
||||
integration,
|
||||
type SSEConfig
|
||||
} from './SSEIntegration.js'
|
||||
Loading…
Add table
Add a link
Reference in a new issue