@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
14 lines (13 loc) • 339 B
TypeScript
import { Prisma } from '../prisma-client';
export declare class WebhookDto {
id: string;
eventName: string;
endpoint: string;
enabled: boolean;
headers: Prisma.JsonValue | null;
requestTimeout: number | null;
externalTenantId: string;
createdAt: Date;
updatedAt: Date;
workUntilDate: Date | null;
}