Merge FrenoCorp apps into ShieldAI packages/: - packages/api: merged routes (notifications), middleware (auth, rate-limit, error, logging), config, services (darkwatch, spamshield, voiceprint), tests - packages/web: new SolidJS web app stub - packages/mobile: new SolidJS mobile app stub - packages/shared-db: new Prisma DB package (separate from existing packages/db) - pnpm-workspace.yaml: restored (apps/* removed, already covered by packages/*) Next: reconcile packages/shared-db with packages/db, and fix server.ts correlationRoutes import
31 lines
543 B
TypeScript
31 lines
543 B
TypeScript
// Config
|
|
export {
|
|
voicePrintEnv,
|
|
VoicePrintSource,
|
|
AnalysisJobStatus,
|
|
DetectionType,
|
|
ConfidenceLevel,
|
|
audioPreprocessingConfig,
|
|
voicePrintFeatureFlags,
|
|
voicePrintRateLimits,
|
|
checkFlag,
|
|
isFeatureEnabled,
|
|
} from './voiceprint.config';
|
|
|
|
|
|
|
|
// Services
|
|
export {
|
|
AudioPreprocessor,
|
|
VoiceEnrollmentService,
|
|
AnalysisService,
|
|
BatchAnalysisService,
|
|
EmbeddingService,
|
|
FAISSIndex,
|
|
audioPreprocessor,
|
|
voiceEnrollmentService,
|
|
analysisService,
|
|
batchAnalysisService,
|
|
embeddingService,
|
|
} from './voiceprint.service';
|