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

19 lines (18 loc) 562 B
/** * This file exports all enum related types from the schema. * * 🟢 You can import this file directly. */ export declare const WebhookRole: { readonly Admin: "Admin"; readonly User: "User"; }; export type WebhookRole = (typeof WebhookRole)[keyof typeof WebhookRole]; export declare const WebhookStatus: { readonly Pending: "Pending"; readonly Process: "Process"; readonly Success: "Success"; readonly Error: "Error"; readonly Timeout: "Timeout"; }; export type WebhookStatus = (typeof WebhookStatus)[keyof typeof WebhookStatus];