michangarrito/apps/whatsapp-service/dist/webhook/webhook.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

15 lines
661 B
TypeScript

import { RawBodyRequest } from '@nestjs/common';
import { Request } from 'express';
import { ConfigService } from '@nestjs/config';
import { WebhookService } from './webhook.service';
import { WebhookPayloadDto } from './dto/webhook.dto';
export declare class WebhookController {
private readonly webhookService;
private readonly configService;
private readonly logger;
constructor(webhookService: WebhookService, configService: ConfigService);
verifyWebhook(mode: string, token: string, challenge: string): string;
handleWebhook(req: RawBodyRequest<Request>, payload: WebhookPayloadDto): Promise<string>;
private verifySignature;
}