[autofix.ci] apply automated fixes

This commit is contained in:
autofix-ci[bot]
2026-04-03 20:46:40 +00:00
committed by GitHub
parent 4da3c468eb
commit d6885c32ea

View File

@@ -150,7 +150,10 @@ export const apiRemoveMount = createSchema
.required();
export const apiFindMountByApplicationId = z.object({
serviceType: z.string().min(1).transform((val) => val as ServiceType),
serviceType: z
.string()
.min(1)
.transform((val) => val as ServiceType),
serviceId: z.string().min(1),
});