@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
13 lines (12 loc) • 384 B
TypeScript
import { WebhookRole } from '../prisma-client';
import { Webhook } from './webhook.entity';
export declare class WebhookUser {
id: string;
externalTenantId: string;
externalUserId: string;
userRole: WebhookRole;
createdAt: Date;
updatedAt: Date;
Webhook_Webhook_createdByToWebhookUser?: Webhook[];
Webhook_Webhook_updatedByToWebhookUser?: Webhook[];
}