···11-import type { characters, chats, messages } from "./schema";
11+import type { characters } from "../characters";
22+import type { chats, messages } from "./schema";
2333-export type Character = typeof characters.$inferSelect;
44-export type NewCharacter = typeof characters.$inferInsert;
44+export type Character = typeof characters;
55export type Chat = typeof chats.$inferSelect;
66export type NewChat = typeof chats.$inferInsert;
77export type Message = typeof messages.$inferSelect;