minor bug files, remove unqiue constraint, and start migration

This commit is contained in:
miloschwartz 2025-02-24 22:06:21 -05:00
parent ff37e07ce6
commit e11748fe30
No known key found for this signature in database
5 changed files with 97 additions and 10 deletions

View file

@ -68,6 +68,8 @@ const updateHttpResourceBodySchema = z
}
);
export type UpdateResourceResponse = Resource;
const updateRawResourceBodySchema = z
.object({
name: z.string().min(1).max(255).optional(),