From c17e4f7ff64ed2b9c3fb231427407b468070ce60 Mon Sep 17 00:00:00 2001 From: Philipinho <16838612+Philipinho@users.noreply.github.com> Date: Thu, 17 Jul 2025 21:00:43 -0700 Subject: [PATCH] fix types --- apps/server/src/database/types/db.d.ts | 22 +--------------------- 1 file changed, 1 insertion(+), 21 deletions(-) diff --git a/apps/server/src/database/types/db.d.ts b/apps/server/src/database/types/db.d.ts index f945e4ec..9703e8ec 100644 --- a/apps/server/src/database/types/db.d.ts +++ b/apps/server/src/database/types/db.d.ts @@ -62,7 +62,6 @@ export interface AuthProviders { deletedAt: Timestamp | null; id: Generated; isEnabled: Generated; - isGroupSyncEnabled: Generated; name: string; oidcClientId: string | null; oidcClientSecret: string | null; @@ -123,7 +122,6 @@ export interface Comments { pageId: string; parentCommentId: string | null; resolvedAt: Timestamp | null; - resolvedById: string | null; selection: string | null; type: string | null; workspaceId: string; @@ -167,23 +165,6 @@ export interface GroupUsers { userId: string; } -export interface Notifications { - actorId: string | null; - context: Generated; - createdAt: Generated; - deduplicationKey: string | null; - emailSentAt: Timestamp | null; - entityId: string; - entityType: string; - id: Generated; - readAt: Timestamp | null; - recipientId: string; - spaceId: string | null; - type: string; - updatedAt: Generated; - workspaceId: string; -} - export interface PageHistory { content: Json | null; coverPhoto: string | null; @@ -331,12 +312,12 @@ export interface Workspaces { deletedAt: Timestamp | null; description: string | null; emailDomains: Generated; + enforceMfa: Generated; enforceSso: Generated; hostname: string | null; id: Generated; licenseKey: string | null; logo: string | null; - enforceMfa: Generated; name: string | null; plan: string | null; settings: Json | null; @@ -356,7 +337,6 @@ export interface DB { fileTasks: FileTasks; groups: Groups; groupUsers: GroupUsers; - notifications: Notifications; pageHistory: PageHistory; pages: Pages; shares: Shares;