9 lines
223 B
TypeScript
9 lines
223 B
TypeScript
|
|
import { z } from "zod";
|
||
|
|
|
||
|
|
export const ZDeleteInputSchema = z.object({
|
||
|
|
organizationId: z.union([z.number(), z.null()]),
|
||
|
|
directoryId: z.string(),
|
||
|
|
});
|
||
|
|
|
||
|
|
export type ZDeleteInputSchema = z.infer<typeof ZDeleteInputSchema>;
|