import { z } from "zod";

export const clientConfigSchema = z.object({
  id: z.number(),
  clientId: z.number().nullable(),
  propId: z.number().nullable(),
  provider: z.number().nullable(),
  type: z.number().nullable(),
  value: z.string().nullable(),
  createdAt: z.string().datetime(),
  updatedAt: z.string().datetime(),
});

export type clientConfigTypes = z.infer<typeof clientConfigSchema>;

export default clientConfigTypes;
