Merge branch 'master' into development

This commit is contained in:
2026-01-30 00:41:42 +00:00
17 changed files with 1573 additions and 225 deletions

View File

@@ -39,6 +39,7 @@ export async function updateById(
avatarURL?: string | null;
iconPreference?: IconStyle;
plan?: string;
preferences?: Record<string, boolean>;
},
): Promise<UserRecord | undefined> {
const [user] = await db.update(User).set(updates).where(eq(User.id, id)).returning();