import { z } from "zod/v4"; import { CreateCustomerInvoiceRequestSchema, GetCustomerInvoiceByIdResponseSchema, ListCustomerInvoicesResponseDTO, UpdateCustomerInvoiceByIdRequestSchema, } from "../../common"; export const CustomerInvoiceCreateSchema = CreateCustomerInvoiceRequestSchema; export const CustomerInvoiceUpdateSchema = UpdateCustomerInvoiceByIdRequestSchema; export const CustomerInvoiceSchema = GetCustomerInvoiceByIdResponseSchema.omit({ metadata: true, }); export type CustomerInvoiceData = z.infer; export type CustomerInvoicesListData = ListCustomerInvoicesResponseDTO;