import { authGuard, ExpressController, forbidQueryFieldGuard, tenantGuard } from "@erp/core/api"; import { DeleteCustomerUseCase } from "../../../application"; import { customersApiErrorMapper } from "../customer-api-error-mapper"; export class DeleteCustomerController extends ExpressController { public constructor(private readonly useCase: DeleteCustomerUseCase) { super(); this.errorMapper = customersApiErrorMapper; // 🔐 Reutiliza guards de auth/tenant y prohíbe 'companyId' en query this.registerGuards(authGuard(), tenantGuard(), forbidQueryFieldGuard("companyId")); } async executeImpl(): Promise { const companyId = this.getTenantId(); if (!companyId) { return this.forbiddenError("Tenant ID not found"); } const { customer_id } = this.req.params; const result = await this.useCase.execute({ customer_id, companyId }); return result.match( (data) => this.ok(data), (err) => this.handleError(err) ); } }