import { z } from "zod"; import BaseSchema from "../BaseSchema"; 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;