From f575588b9a5dd8d8c51d1ba57c9c7c4c65fad11f Mon Sep 17 00:00:00 2001 From: syntaxbullet Date: Thu, 12 Feb 2026 12:12:49 +0100 Subject: [PATCH] feat(db): export all schema types Add missing type exports for Class, ItemTransaction, Quest, UserQuest, UserTimer, and Lootdrop tables. All tables now have consistent type exports available for import. --- shared/db/schema.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/shared/db/schema.ts b/shared/db/schema.ts index 7bff479..80b1902 100644 --- a/shared/db/schema.ts +++ b/shared/db/schema.ts @@ -16,10 +16,16 @@ import { import { relations, sql, type InferSelectModel } from 'drizzle-orm'; export type User = InferSelectModel; +export type Class = InferSelectModel; export type Transaction = InferSelectModel; +export type ItemTransaction = InferSelectModel; export type ModerationCase = InferSelectModel; export type Item = InferSelectModel; export type Inventory = InferSelectModel; +export type Quest = InferSelectModel; +export type UserQuest = InferSelectModel; +export type UserTimer = InferSelectModel; +export type Lootdrop = InferSelectModel; // --- TABLES ---