feat: Complete platform enhancement with multi-tenant architecture

Major additions:
- Territory manager system with application workflow
- Custom pricing and page builder with Craft.js
- Enhanced Stripe Connect onboarding
- CodeReadr QR scanning integration
- Kiosk mode for venue sales
- Super admin dashboard and analytics
- MCP integration for AI-powered operations

Infrastructure improvements:
- Centralized API client and routing system
- Enhanced authentication with organization context
- Comprehensive theme management system
- Advanced event management with custom tabs
- Performance monitoring and accessibility features

Database schema updates:
- Territory management tables
- Custom pages and pricing structures
- Kiosk PIN system
- Enhanced organization profiles
- CodeReadr integration tables

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-07-12 18:21:40 -06:00
parent a02d64a86c
commit 26a87d0d00
232 changed files with 33175 additions and 5365 deletions

View File

@@ -51,7 +51,23 @@ async function setupSchema() {
'001_initial_schema.sql',
'002_add_fee_structure.sql',
'003_add_seating_and_ticket_types.sql',
'004_add_admin_system.sql'
'004_add_admin_system.sql',
'005_add_fee_payment_model.sql',
'006_standardize_bct_fees.sql',
'007_add_premium_addons.sql',
'008_add_featured_events_support.sql',
'009_add_printed_tickets.sql',
'010_add_scanner_lock.sql',
'20250708_add_event_image_support.sql',
'20250708_add_marketing_kit_support.sql',
'20250708_add_referral_tracking.sql',
'20250708_add_social_media_links.sql',
'20250109_territory_manager_schema.sql',
'20250109_onboarding_system.sql',
'20250109_kiosk_pin_system.sql',
'20250109_codereadr_integration.sql',
'20250109_add_sample_territories.sql',
'20250110_custom_sales_pages.sql'
];
for (const migration of migrations) {