14 lines
312 B
TypeScript
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>;
|