UNPKG

@nestjs-mod/webhook

Version:

Webhook module with an error filter, guard, controller, database migrations and rest-sdk for work with module from other nodejs appliaction

12 lines (11 loc) 317 B
import { Prisma, WebhookStatus } from '../prisma-client'; export declare class WebhookLogDto { id: string; request: Prisma.JsonValue; responseStatus: string; response: Prisma.JsonValue | null; webhookStatus: WebhookStatus; externalTenantId: string; createdAt: Date; updatedAt: Date; }