Auto-commit 2026-05-02 09:37

This commit is contained in:
2026-05-02 09:37:34 -04:00
parent b7600fa937
commit 35d004cde3
3809 changed files with 2315945 additions and 106 deletions

View File

@@ -26,12 +26,13 @@ model User {
accounts Account[]
sessions Session[]
familyGroups FamilyGroupMember[]
subscriptions Subscription[]
watchlist WatchlistItem[]
exposures Exposure[]
alerts Alert[]
familyGroupOwned FamilyGroup[] @relation("FamilyGroupOwner")
subscriptions Subscription[]
alerts Alert[]
voiceEnrollments VoiceEnrollment[]
spamFeedback SpamFeedback[]
voiceAnalyses VoiceAnalysis[]
spamFeedback SpamFeedback[]
spamRules SpamRule[]
// Audit
createdAt DateTime @default(now())

View File

@@ -1,4 +1,4 @@
import { PrismaClient } from './generated/client';
import { PrismaClient } from '@prisma/client';
// Singleton pattern for Prisma Client
const globalForPrisma = globalThis as unknown as {
@@ -45,6 +45,6 @@ export type {
FeedbackType,
RuleType,
RuleAction,
} from './generated/client';
} from '@prisma/client';
export * as PrismaModels from './generated/client';
export * as PrismaModels from '@prisma/client';