halfway commit to allow collaboration

This commit is contained in:
2025-09-28 05:58:29 -04:00
parent b79d3ac2cf
commit af8371ed84
34 changed files with 4418 additions and 1223 deletions

View File

@@ -4,6 +4,10 @@ export const queryUserByIdSchema = z.object({
id: z.uuidv7(),
});
export const queryUserByUsernameSchema = z.object({
username: z.string().min(3).max(30),
});
export const queryAllUsersByInstanceId = z.object({
instanceId: z.uuidv7(),
});