Initial commit - Event Planner application

This commit is contained in:
mberlin
2026-03-18 14:55:56 -03:00
commit 86d779eb4d
7548 changed files with 1006324 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import { EntitySchema } from '@mikro-orm/core';
import { BaseEntity } from './base.entity';
export declare class NotificationRule extends BaseEntity {
module: string;
event: string;
channels: Array<'email' | 'whatsapp' | 'sms' | 'custom'>;
conditions?: Record<string, any>;
}
export declare const NotificationRuleSchema: EntitySchema<NotificationRule, never, import("@mikro-orm/core").EntityCtor<NotificationRule>>;
//# sourceMappingURL=notification-rule.entity.d.ts.map