Uecko_ERP/modules/customers/src/common/dto/request/delete-customer-by-id.params.dto.ts

14 lines
312 B
TypeScript

import * as z from "zod/v4";
/**
* Este DTO es utilizado por el endpoint:
* `DELETE /customers/:id` (eliminar una factura por ID).
*
*/
export const DeleteCustomerByIdParamsSchema = z.object({
id: z.string(),
});
export type DeleteCustomerByIdParamsDTO = z.infer<typeof DeleteCustomerByIdParamsSchema>;