/** * Webhooks Module * * NestJS module for handling incoming webhooks from external services: * - Storage providers (R2, Supabase) * - Notification providers (SendGrid, Infobip) * - Media processing services * * Uses Core.storage and Core.notifications for webhook processing. * No custom service needed - all logic is handled by the packages. * * @example Usage in app.module.ts * ```typescript * import { CoreModule } from '@plyaz/core/nestjs'; * import { WebhooksModule } from '@plyaz/core/backend'; * * @Module({ * imports: [ * CoreModule.forRoot({ envPath: '.env' }), * WebhooksModule, * ], * }) * export class AppModule {} * ``` */ export declare class WebhooksModule { } //# sourceMappingURL=webhooks.module.d.ts.map