9 lines
230 B
TypeScript
9 lines
230 B
TypeScript
|
import { z } from "zod";
|
||
|
|
||
|
export const ZDeleteCredentialInputSchema = z.object({
|
||
|
id: z.number(),
|
||
|
externalId: z.string().optional(),
|
||
|
});
|
||
|
|
||
|
export type TDeleteCredentialInputSchema = z.infer<typeof ZDeleteCredentialInputSchema>;
|