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

11
dist/guest/api/guest.controller.d.ts vendored Normal file
View File

@@ -0,0 +1,11 @@
import { GuestService } from '../services/guest.service';
import { CreateGuestDto } from './dto/create-guest.dto';
import { UpdateRsvpDto } from './dto/update-rsvp.dto';
export declare class GuestController {
private readonly guestService;
constructor(guestService: GuestService);
createGuest(tenantId: string, dto: CreateGuestDto): Promise<import("../entities/guest.entity").Guest>;
listGuests(tenantId: string): Promise<import("../entities/guest.entity").Guest[]>;
updateRsvp(tenantId: string, id: string, dto: UpdateRsvpDto): Promise<import("../entities/guest.entity").Guest | null>;
}
//# sourceMappingURL=guest.controller.d.ts.map