- Copy apps/api (Fastify server with spamshield/voiceprint/darkwatch services) - Copy apps/web (SolidJS web app) - Copy apps/mobile (SolidJS mobile app) - Copy packages/shared-db (Prisma schema/models) - Add apps/* to pnpm-workspace.yaml
22 lines
323 B
TypeScript
22 lines
323 B
TypeScript
// Re-export Prisma client
|
|
export { prisma } from './client';
|
|
|
|
// Export types
|
|
export type {
|
|
User,
|
|
Account,
|
|
Session,
|
|
FamilyGroup,
|
|
FamilyGroupMember,
|
|
Subscription,
|
|
WatchlistItem,
|
|
Exposure,
|
|
Alert,
|
|
VoiceEnrollment,
|
|
VoiceAnalysis,
|
|
SpamFeedback,
|
|
SpamRule,
|
|
AuditLog,
|
|
KPISnapshot,
|
|
} from './client';
|