import { z } from "zod"; import { BaseSchema } from "../schema"; export const AuthConfigSchema = BaseSchema; export type AuthConfigReq = z.infer; export const AuthInfoSchema = BaseSchema; export type AuthInfoReq = z.infer; export const AuthDeleteSchema = BaseSchema; export type AuthDeleteReq = z.infer;