Allow full guest count fields on booking create
All checks were successful
build-and-deploy / build-deploy (push) Successful in 35s

This commit is contained in:
androidlover5842
2026-01-29 09:27:33 +05:30
parent 6af38f0d7e
commit a67f7bfa68
2 changed files with 6 additions and 0 deletions

View File

@@ -95,6 +95,9 @@ class BookingFlow(
mode
},
adultCount = request.adultCount,
childCount = request.childCount,
maleCount = request.maleCount,
femaleCount = request.femaleCount,
totalGuestCount = request.totalGuestCount,
notes = request.notes,
createdBy = actor,

View File

@@ -20,6 +20,9 @@ data class BookingCreateRequest(
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
)