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

10 lines (9 loc) 297 B
import { Prisma } from '../prisma-client'; export declare class UpdateWebhookDto { eventName?: string; endpoint?: string; enabled?: boolean; headers?: Prisma.InputJsonValue | Prisma.NullableJsonNullValueInput; requestTimeout?: number | null; workUntilDate?: Date | null; }