michangarrito/apps/backend/dist/modules/billing/webhooks.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

20 lines
707 B
TypeScript

import { RawBodyRequest } from '@nestjs/common';
import { ConfigService } from '@nestjs/config';
import { Request } from 'express';
import { StripeService } from './stripe.service';
import { BillingService } from './billing.service';
export declare class WebhooksController {
private stripeService;
private billingService;
private configService;
private readonly logger;
constructor(stripeService: StripeService, billingService: BillingService, configService: ConfigService);
handleStripeWebhook(req: RawBodyRequest<Request>, signature: string): Promise<{
received: boolean;
error?: undefined;
} | {
error: string;
received?: undefined;
}>;
}