use strict zod objects and hide proto on targets

This commit is contained in:
Milo Schwartz
2024-11-14 00:00:17 -05:00
parent 44b932937f
commit ba3505a385
14 changed files with 154 additions and 162 deletions

View File

@@ -25,10 +25,12 @@ const createResourceParamsSchema = z.object({
orgId: z.string(),
});
const createResourceSchema = z.object({
name: z.string().min(1).max(255),
subdomain: z.string().min(1).max(255).optional(),
});
const createResourceSchema = z
.object({
name: z.string().min(1).max(255),
subdomain: z.string().min(1).max(255).optional(),
})
.strict();
export type CreateResourceResponse = Resource;

View File

@@ -18,8 +18,9 @@ const updateResourceBodySchema = z
name: z.string().min(1).max(255).optional(),
subdomain: z.string().min(1).max(255).optional(),
ssl: z.boolean().optional(),
siteId: z.number(),
// siteId: z.number(),
})
.strict()
.refine((data) => Object.keys(data).length > 0, {
message: "At least one field must be provided for update",
});