Org is not optional

This commit is contained in:
Owen
2025-07-31 11:04:15 -07:00
parent b351520e92
commit 69802e78f8

View File

@@ -14,7 +14,7 @@ import { OpenAPITags, registry } from "@server/openApi";
const getClientSchema = z
.object({
clientId: z.string().transform(stoi).pipe(z.number().int().positive()),
orgId: z.string().optional()
orgId: z.string()
})
.strict();