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

18
dist/guest/entities/guest.entity.d.ts vendored Normal file
View File

@@ -0,0 +1,18 @@
import { EntitySchema } from '@mikro-orm/core';
import { BaseEntity } from '../../core/entities/base.entity';
export declare class Guest extends BaseEntity {
name: string;
email?: string;
phone?: string;
rsvp: boolean;
tableId?: string;
}
export declare const GuestSchema: EntitySchema<Guest, never, import("@mikro-orm/core").EntityCtor<Guest>>;
export declare class GuestNotificationPreference extends BaseEntity {
guestId: string;
email: boolean;
whatsapp: boolean;
metadata?: Record<string, any>;
}
export declare const GuestNotificationPreferenceSchema: EntitySchema<GuestNotificationPreference, never, import("@mikro-orm/core").EntityCtor<GuestNotificationPreference>>;
//# sourceMappingURL=guest.entity.d.ts.map