Files
breakpilot-compliance/breakpilot-compliance-sdk/packages/core/src/index.ts
Benjamin Boenisch 4435e7ea0a Initial commit: breakpilot-compliance - Compliance SDK Platform
Services: Admin-Compliance, Backend-Compliance,
AI-Compliance-SDK, Consent-SDK, Developer-Portal,
PCA-Platform, DSMS

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-11 23:47:28 +01:00

42 lines
714 B
TypeScript

/**
* @breakpilot/compliance-sdk-core
*
* Core functionality for BreakPilot Compliance SDK
*/
// Client
export { ComplianceClient, type ComplianceClientOptions } from './client'
// State Management
export {
createStore,
sdkReducer,
initialState,
type SDKStore,
type SDKStoreOptions,
} from './state'
// Sync
export {
StateSyncManager,
createStateSyncManager,
type SyncOptions,
type SyncCallbacks,
} from './sync'
// Auth
export {
AuthProvider,
type AuthProviderOptions,
type AuthState,
} from './auth'
// Modules
export * from './modules/dsgvo'
export * from './modules/compliance'
export * from './modules/rag'
export * from './modules/security'
// Utils
export * from './utils'