Compute guest counts server-side on booking create
Some checks failed
build-and-deploy / build-deploy (push) Failing after 29s

This commit is contained in:
androidlover5842
2026-01-29 09:30:53 +05:30
parent a67f7bfa68
commit 5214584b3c
2 changed files with 13 additions and 4 deletions

View File

@@ -19,11 +19,9 @@ data class BookingCreateRequest(
val expectedCheckOutAt: String,
val guestPhoneE164: String? = null,
val transportMode: String? = null,
val adultCount: Int? = null,
val childCount: Int? = null,
val maleCount: Int? = null,
val femaleCount: Int? = null,
val totalGuestCount: Int? = null,
val notes: String? = null
)