Marketplace móvil para negocios locales mexicanos. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React Web) - apps/mobile (Expo/React Native) - apps/mcp-server (Claude MCP Server) - apps/whatsapp-service (WhatsApp Business API) - database/ (PostgreSQL DDL) - docs/ (Documentación) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
20 lines
707 B
TypeScript
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;
|
|
}>;
|
|
}
|