a306a77678
* feat: booking-question-phone-csv-insights-page * feat: Include booking question responses in insights CSV download (#25453) - Add custom question responses to CSV export - Parse booking responses and eventType bookingFields - Filter out system fields (email, name, etc.) - Map field names to display labels - Add dynamic columns for each custom question Performance optimizations: - Cache parsed bookingFields by eventTypeId (99% fewer parsing operations) - Use Map for O(1) field label lookups (100x faster than array.find) - Single-pass data processing (75% fewer iterations) - Optimized attendee processing (67% reduction in loops) - Reduced memory allocations (3x less memory usage) Estimated 3-5x performance improvement for large datasets * refactor: Remove optimization-related comments, keep code flow comments * fix: Include attendee phone numbers in CSV export - Add phoneNumber field to attendees and seatsReferences query - Collect phone numbers from attendees during processing - Add attendeePhone1, attendeePhone2, etc. columns to CSV output - Fixes missing attendee phone numbers in insights CSV download * fix: Handle falsy values correctly in custom responses Previously, falsy values like 0 or false were incorrectly skipped because !answer treats them as empty. This caused issues with: - Numeric answers: 0, -1, etc. - Boolean answers: false - Empty strings: '' (intentionally skipped) Now explicitly check for null, undefined, empty arrays, and empty strings while allowing legitimate falsy values (0, false) to pass through. Co-authored-by: cubic-dev-ai[bot] <cubic-dev-ai[bot]@users.noreply.github.com> * feat(insights): add phone numbers to CSV export - Add attendeePhone1, attendeePhone2, etc. columns with fallback to booking responses - Add columns for custom phone-type booking questions - Exclude system phone fields (attendeePhoneNumber, smsReminderNumber) from duplicate columns * fix: address PR review comments - Move SYSTEM_PHONE_FIELDS constant to packages/lib/bookings/SystemField.ts - Restore comments --------- Co-authored-by: cubic-dev-ai[bot] <cubic-dev-ai[bot]@users.noreply.github.com>