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

15
dist/guest/services/guest.service.d.ts vendored Normal file
View File

@@ -0,0 +1,15 @@
import { MikroORM } from '@mikro-orm/core';
import { EventEmitter2 } from '@nestjs/event-emitter';
import { Guest } from '../entities/guest.entity';
import { CreateGuestDto } from '../api/dto/create-guest.dto';
import { UpdateRsvpDto } from '../api/dto/update-rsvp.dto';
export declare class GuestService {
private readonly orm;
private readonly eventEmitter;
constructor(orm: MikroORM, eventEmitter: EventEmitter2);
private get em();
createGuest(tenantId: string, dto: CreateGuestDto): Promise<Guest>;
updateRsvp(tenantId: string, guestId: string, dto: UpdateRsvpDto): Promise<Guest | null>;
listGuests(tenantId: string): Promise<Guest[]>;
}
//# sourceMappingURL=guest.service.d.ts.map