michangarrito/apps/backend/dist/modules/payments/payments.controller.d.ts
rckrdmrd 97f407c661 [MIGRATION-V2] feat: Migrar michangarrito a estructura v2
- Prefijo v2: MCH
- TRACEABILITY-MASTER.yml creado
- Listo para integracion como submodulo

Workspace: v2.0.0 | SIMCO: v4.0.0
2026-01-10 11:28:54 -06:00

36 lines
1.1 KiB
TypeScript

import { PaymentsService } from './payments.service';
export declare class PaymentsController {
private readonly paymentsService;
constructor(paymentsService: PaymentsService);
findAll(req: {
user: {
tenantId: string;
};
}): Promise<import("./entities/payment-method.entity").PaymentMethod[]>;
getDefault(req: {
user: {
tenantId: string;
};
}): Promise<import("./entities/payment-method.entity").PaymentMethod>;
findOne(req: {
user: {
tenantId: string;
};
}, id: string): Promise<import("./entities/payment-method.entity").PaymentMethod>;
initialize(req: {
user: {
tenantId: string;
};
}): Promise<import("./entities/payment-method.entity").PaymentMethod[]>;
toggleActive(req: {
user: {
tenantId: string;
};
}, id: string): Promise<import("./entities/payment-method.entity").PaymentMethod>;
setDefault(req: {
user: {
tenantId: string;
};
}, id: string): Promise<import("./entities/payment-method.entity").PaymentMethod>;
}