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>
This commit is contained in:
41
breakpilot-compliance-sdk/packages/core/src/index.ts
Normal file
41
breakpilot-compliance-sdk/packages/core/src/index.ts
Normal file
@@ -0,0 +1,41 @@
|
||||
/**
|
||||
* @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'
|
||||
Reference in New Issue
Block a user