From 38c0a5df7a7d792c4cd91a596c79700005b187de Mon Sep 17 00:00:00 2001 From: v0 Date: Fri, 6 Feb 2026 07:28:05 +0000 Subject: [PATCH] fix: replace NativeDate with Date in IBooking Use standard Date type instead of removed Mongoose 9 alias. Co-authored-by: Thomas Ruoff <111471+tomru@users.noreply.github.com> --- db/booking.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/db/booking.ts b/db/booking.ts index 2f70ea9..db0b296 100644 --- a/db/booking.ts +++ b/db/booking.ts @@ -27,8 +27,8 @@ export interface IBooking { destination?: string days?: string[] calendarEventId?: string - createdAt?: NativeDate - updatedAt?: NativeDate + createdAt?: Date + updatedAt?: Date toJSON?: () => IBooking }