Org is not optional

This commit is contained in:
Owen
2025-07-31 11:04:15 -07:00
parent 69b28b9b02
commit 92e69f561f

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();