@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
15 lines (14 loc) • 404 B
TypeScript
import { Prisma, WebhookStatus } from '../prisma-client';
import { Webhook } from './webhook.entity';
export declare class WebhookLog {
id: string;
request: Prisma.JsonValue;
responseStatus: string;
response: Prisma.JsonValue | null;
webhookStatus: WebhookStatus;
webhookId: string;
externalTenantId: string;
createdAt: Date;
updatedAt: Date;
Webhook?: Webhook;
}