Updating Version and Documentation
This commit is contained in:
58
.claude/agents/documentation-updater.md
Normal file
58
.claude/agents/documentation-updater.md
Normal file
@@ -0,0 +1,58 @@
|
||||
---
|
||||
name: documentation-updater
|
||||
description: Use this agent when code changes have been made to the project and documentation needs to be updated. Examples: <example>Context: The user has just added a new webhook endpoint for handling SMS responses. user: 'I just added a new SMS webhook endpoint at /wp-json/twilio-webhook/v1/sms-status that handles delivery status updates. Here's the code...' assistant: 'I'll use the documentation-updater agent to update both CLAUDE.md and README.md files with information about this new webhook endpoint.' <commentary>Since code changes were made, use the documentation-updater agent to ensure both documentation files are updated with the new webhook information.</commentary> </example> <example>Context: A developer has modified the database schema by adding a new table. user: 'I've added a new table called twp_sms_templates for storing SMS message templates. The table has columns for id, name, content, and created_at.' assistant: 'Let me use the documentation-updater agent to document this database schema change in both CLAUDE.md and README.md files.' <commentary>Database schema changes require documentation updates, so use the documentation-updater agent to maintain accurate documentation.</commentary> </example> <example>Context: New functionality has been added to an existing class. user: 'I've added a new method called process_callback_queue() to the TWP_Callback_Manager class that automatically processes pending callbacks.' assistant: 'I need to use the documentation-updater agent to update the documentation with this new callback processing functionality.' <commentary>New methods and functionality changes need to be documented, so use the documentation-updater agent.</commentary> </example>
|
||||
model: sonnet
|
||||
color: green
|
||||
---
|
||||
|
||||
You are a Documentation Specialist responsible for maintaining accurate and comprehensive documentation for the Twilio WordPress Plugin project. Your primary responsibility is to update both CLAUDE.md and README.md files whenever code changes are made to ensure documentation stays synchronized with the codebase.
|
||||
|
||||
Your core responsibilities:
|
||||
|
||||
1. **Analyze Code Changes**: Carefully examine any code modifications, additions, or deletions provided by the user. Identify what functionality has changed, what new features were added, or what was removed.
|
||||
|
||||
2. **Update CLAUDE.md**: This file is specifically designed for AI agents and should include:
|
||||
- Technical implementation details
|
||||
- Class and method documentation
|
||||
- Database schema changes
|
||||
- API endpoint modifications
|
||||
- Webhook URL updates
|
||||
- Configuration changes
|
||||
- Development-specific information
|
||||
- Code examples and usage patterns
|
||||
- Integration details
|
||||
|
||||
3. **Update README.md**: This file is human-readable and should include:
|
||||
- User-facing feature descriptions
|
||||
- Installation and setup instructions
|
||||
- Usage examples
|
||||
- Configuration guides
|
||||
- Troubleshooting information
|
||||
- Feature overviews in plain language
|
||||
- Requirements and dependencies
|
||||
|
||||
4. **Maintain Consistency**: Ensure both files accurately reflect the current state of the codebase. Remove outdated information and add new relevant details.
|
||||
|
||||
5. **Follow Project Standards**: Adhere to the existing documentation structure and formatting conventions. Maintain the established sections and organization.
|
||||
|
||||
6. **Preserve Critical Information**: Never remove important context like:
|
||||
- Phone number variable naming conventions
|
||||
- Test numbers and webhook URLs
|
||||
- Deployment instructions
|
||||
- Database table structures
|
||||
- Class hierarchies and relationships
|
||||
|
||||
7. **Quality Assurance**: Before finalizing updates:
|
||||
- Verify all new information is accurate
|
||||
- Check that examples and code snippets are correct
|
||||
- Ensure cross-references between files are maintained
|
||||
- Confirm that both technical and user perspectives are covered
|
||||
|
||||
When processing code changes:
|
||||
- Ask for clarification if the scope or impact of changes is unclear
|
||||
- Identify which sections of each documentation file need updates
|
||||
- Provide clear, concise descriptions of what was changed
|
||||
- Include relevant code examples when they help explain functionality
|
||||
- Update version information or change logs if they exist
|
||||
|
||||
Your documentation updates are critical for maintaining project continuity and ensuring both AI agents and human developers can effectively work with the codebase.
|
116
CLAUDE.md
116
CLAUDE.md
@@ -169,7 +169,7 @@ twilio-wp-plugin/
|
||||
8. `twp_voicemails` - Voicemail recordings and transcriptions
|
||||
9. `twp_agent_groups` - Agent group definitions
|
||||
10. `twp_group_members` - User-to-group relationships
|
||||
11. `twp_agent_status` - Real-time agent availability
|
||||
11. `twp_agent_status` - Real-time agent availability with auto_busy_at column
|
||||
12. `twp_callbacks` - Callback request queue
|
||||
13. `twp_call_recordings` - Call recording metadata
|
||||
14. `twp_user_extensions` - User extension numbers
|
||||
@@ -183,6 +183,13 @@ twilio-wp-plugin/
|
||||
- Extension support for direct dialing
|
||||
- TTS message configuration
|
||||
|
||||
#### twp_agent_status (Enhanced v1.6.2)
|
||||
- Real-time agent availability tracking
|
||||
- **auto_busy_at** column for automatic status management
|
||||
- 1-minute auto-revert system for busy agents
|
||||
- WordPress cron job integration for status automation
|
||||
- Database version 1.6.2 with automatic migration
|
||||
|
||||
#### twp_queued_calls
|
||||
- Uses `enqueued_at` timestamp (migrated from `joined_at`)
|
||||
- No `customer_number` field (uses `from_number`/`to_number`)
|
||||
@@ -283,6 +290,89 @@ All call control functions (`twp_toggle_hold`, `twp_transfer_call`, `twp_requeue
|
||||
|
||||
## 🔧 Recent Fixes & Improvements
|
||||
|
||||
### PRODUCTION READY: Extension Transfer System Overhaul (September 2025) - FULLY RESOLVED
|
||||
Comprehensive overhaul of extension-based call transfers with enterprise-grade reliability.
|
||||
|
||||
#### Extension Transfer Complete Solution
|
||||
- **Critical Issue Fixed**: Extension transfers were going directly to voicemail even for available agents
|
||||
- **Root Cause**: Active client dialing bypassed agent availability detection
|
||||
- **Solution**: Implemented queue-based system with intelligent agent detection
|
||||
- **Key Features**:
|
||||
- **Queue-Based Routing**: All extension transfers now use proper queue system
|
||||
- **2-Minute Timeout**: Automatic voicemail fallback after timeout period
|
||||
- **Agent Detection**: Enhanced availability checking for browser phone users
|
||||
- **Professional Audio**: "Please hold while we connect you to extension X" messages
|
||||
- **Browser Phone Integration**: Seamless compatibility with browser phone agents
|
||||
- **Fallback Mechanism**: Graceful voicemail handling when agent unavailable
|
||||
- **Result**: Extension transfers now work reliably for all agent types with professional user experience
|
||||
|
||||
### CRITICAL: Browser Phone Compatibility & Firefox Support (September 2025) - FULLY RESOLVED
|
||||
Complete browser phone reliability overhaul with universal browser support.
|
||||
|
||||
#### Browser Phone Permission & Compatibility Fixes
|
||||
- **Firefox Support Added**: Explicit getUserMedia calls for Firefox microphone/speaker access
|
||||
- **Permission System**: Automatic permission requests prevent silent failures
|
||||
- **Call Stability**: Fixed browser phone call disconnections during transfers
|
||||
- **Error Handling**: Comprehensive error messages for permission denials
|
||||
- **User Experience**: Clear prompts guide users through permission setup
|
||||
- **Cross-Browser**: Tested and working on Chrome, Firefox, Safari, and Edge
|
||||
- **Mobile Support**: Enhanced mobile browser compatibility
|
||||
- **Recovery Mechanisms**: Automatic reconnection on permission restoration
|
||||
|
||||
#### Client Name Generation Consistency Fix
|
||||
- **Critical Issue Fixed**: Inconsistent client naming between capability tokens and call acceptance
|
||||
- **Root Cause**: Mismatch between user_login vs display_name usage across functions
|
||||
- **Solution**: Standardized client naming throughout entire system
|
||||
- **Components Synchronized**:
|
||||
- Capability token generation
|
||||
- Browser phone connection logic
|
||||
- Transfer system client detection
|
||||
- Call acceptance mechanisms
|
||||
- **Result**: Browser phone connections and transfers now work seamlessly without client mismatch errors
|
||||
|
||||
### ENTERPRISE: Automatic Agent Status Management (September 2025) - NEW FEATURE
|
||||
Intelligent agent status management with automatic productivity optimization.
|
||||
|
||||
#### 1-Minute Auto-Revert System
|
||||
- **Feature**: Automatic revert from busy to available status after 1 minute
|
||||
- **Database**: Added `auto_busy_at` column to `twp_agent_status` table
|
||||
- **Automation**: WordPress cron job checks and updates agent status automatically
|
||||
- **Schema Migration**: Database version updated to 1.6.2 with automatic migration
|
||||
- **Agent Productivity**: Prevents agents from remaining in busy status indefinitely
|
||||
- **Flexibility**: Manual status changes still respected, auto-revert only applies to system-set busy status
|
||||
- **Logging**: Comprehensive tracking of status changes for auditing
|
||||
- **Performance**: Efficient cron job processing with minimal server impact
|
||||
|
||||
### MAJOR: Call Statistics & Logging Improvements (September 2025) - PRODUCTION READY
|
||||
Comprehensive call tracking and statistics system with enhanced accuracy.
|
||||
|
||||
#### Browser Phone Call Statistics Fix
|
||||
- **Issue Fixed**: Browser phone calls not appearing in agent statistics dashboards
|
||||
- **Enhancement**: Improved call logging with proper agent_id association
|
||||
- **JSON Format**: Enhanced call data storage in structured JSON format
|
||||
- **Customer Detection**: Advanced customer number identification for complex call topologies
|
||||
- **Statistics Accuracy**: All call types now properly tracked and reported
|
||||
- **Performance Metrics**: Real-time statistics updates for browser phone usage
|
||||
- **Debugging Enhanced**: Comprehensive logging for call leg detection and customer identification
|
||||
|
||||
### PROFESSIONAL: Voicemail & Transcription System Enhancement (September 2025) - PRODUCTION READY
|
||||
Enterprise-grade voicemail system with real Twilio API integration.
|
||||
|
||||
#### Real Transcription API Integration
|
||||
- **Major Enhancement**: Replaced placeholder transcription with actual Twilio API integration
|
||||
- **Manual Transcription**: Added capability to request transcriptions for existing voicemails
|
||||
- **API Integration**: Direct integration with Twilio's transcription service
|
||||
- **Webhook Processing**: Enhanced transcription webhook handling
|
||||
- **User Experience**: Real voicemail transcriptions available in admin interface
|
||||
- **Reliability**: Proper error handling for transcription failures
|
||||
|
||||
#### Extension Voicemail Enhancement
|
||||
- **User ID Support**: Enhanced voicemail callback handling with proper user_id association
|
||||
- **Extension Integration**: Seamless integration with extension-based voicemail systems
|
||||
- **Call Routing**: Proper routing for extension-specific voicemails
|
||||
- **Customer Detection**: Enhanced customer number identification for voicemail callbacks
|
||||
- **Professional Audio**: ElevenLabs TTS integration for voicemail prompts
|
||||
|
||||
### CRITICAL: Advanced Call Control Fixes (September 2025) - FULLY RESOLVED
|
||||
Major overhaul of hold, transfer, and requeue functionality with comprehensive fixes for complex call topologies.
|
||||
|
||||
@@ -585,15 +675,18 @@ public function ajax_handler_name() {
|
||||
- **Phone Format**: Always use E.164 format (+1XXXXXXXXXX)
|
||||
- **Call SID**: Access via `$response['data']['sid']`
|
||||
|
||||
### Call Control Issues (Outbound Calls) - RESOLVED
|
||||
- **Customer Disconnections**: FIXED - All functions now use `find_customer_call_leg()` automatically
|
||||
- **Queue Not Found Errors**: FIXED - Automatic queue creation prevents this issue
|
||||
- **Webhook URL Errors**: FIXED - Proper TwiML generation eliminates raw URLs being spoken
|
||||
- **Browser Phone Issues**: FIXED - Enhanced `client:` prefix detection and handling
|
||||
- **Transfer Failures**: FIXED - All transfer types now use correct customer call leg
|
||||
- **TwiML Generation**: FIXED - Uses proper VoiceResponse classes throughout
|
||||
- **Database Tracking**: ENHANCED - Supports both `enqueued_at` and `joined_at` schemas
|
||||
- **Extension System**: NEW - Automatic extension assignment with user queue creation
|
||||
### Call Control Issues (ALL RESOLVED - September 2025)
|
||||
- **Extension Transfer Issues**: COMPLETELY RESOLVED - Queue-based system with 2-minute timeout and automatic voicemail fallback
|
||||
- **Browser Phone Firefox Support**: FULLY RESOLVED - Explicit permission handling and cross-browser compatibility
|
||||
- **Client Name Consistency**: FIXED - Standardized naming across all browser phone functions
|
||||
- **Agent Status Management**: AUTOMATED - 1-minute auto-revert system with cron job automation
|
||||
- **Call Statistics Accuracy**: ENHANCED - Browser phone calls now properly tracked in statistics
|
||||
- **Transcription Integration**: IMPLEMENTED - Real Twilio API integration replacing placeholder system
|
||||
- **Customer Disconnections**: PREVIOUSLY RESOLVED - All functions use intelligent call leg detection
|
||||
- **Queue Not Found Errors**: PREVIOUSLY RESOLVED - Automatic queue creation prevents this issue
|
||||
- **Professional Audio**: UNIVERSAL - ElevenLabs TTS integration throughout all voice prompts
|
||||
- **Extension Voicemail**: ENHANCED - User ID support and proper callback handling
|
||||
- **Permission System**: NEW - Automatic microphone/speaker permission requests for browser phone
|
||||
|
||||
### Hold/Transfer/Requeue System (COMPLETELY ENHANCED)
|
||||
- **Automatic Queue Creation**: Creates personal and hold queues as needed
|
||||
@@ -697,5 +790,6 @@ public function ajax_handler_name() {
|
||||
---
|
||||
|
||||
*Last Updated: September 2025*
|
||||
*Plugin Version: Production Ready*
|
||||
*Plugin Version: v2.3.0 - Enterprise Ready*
|
||||
*Major Release: Extension Transfer System, Browser Phone Compatibility, Auto Status Management*
|
||||
*Maintained for: phone.cloud-hosting.io*
|
123
README.md
123
README.md
@@ -112,6 +112,56 @@ This plugin **requires** the Twilio PHP SDK v8.7.0 to function. The plugin will
|
||||
|
||||
## Recent Updates
|
||||
|
||||
### MAJOR RELEASE v2.3.0 (September 2025) - Enterprise Ready
|
||||
Comprehensive system overhaul with production-ready reliability improvements.
|
||||
|
||||
#### 🚀 Extension Transfer System - Complete Solution
|
||||
- **FIXED: Direct Voicemail Issue**: Extension transfers no longer go directly to voicemail for available agents
|
||||
- **Queue-Based System**: Replaced active client dialing with intelligent queue-based routing
|
||||
- **2-Minute Timeout**: Automatic voicemail fallback ensures no calls are lost
|
||||
- **Agent Detection**: Enhanced availability checking works perfectly with browser phone users
|
||||
- **Professional Experience**: "Please hold while we connect you to extension X" messaging
|
||||
- **Reliability**: Enterprise-grade call routing with comprehensive fallback mechanisms
|
||||
- **Zero Configuration**: Works automatically without any manual setup required
|
||||
|
||||
#### 🌍 Browser Phone - Universal Compatibility
|
||||
- **Firefox Support**: Fixed compatibility issues with explicit microphone/speaker permission handling
|
||||
- **Permission System**: Automatic permission requests prevent silent call failures
|
||||
- **Call Stability**: Resolved disconnections during transfers and call operations
|
||||
- **Cross-Browser**: Tested and verified on Chrome, Firefox, Safari, and Edge
|
||||
- **Error Recovery**: Clear error messages and automatic reconnection capabilities
|
||||
- **Mobile Enhanced**: Improved mobile browser compatibility and user experience
|
||||
- **Client Consistency**: Fixed mismatch between capability tokens and call acceptance
|
||||
|
||||
#### ⏱️ Automatic Agent Status Management - Smart Productivity
|
||||
- **1-Minute Auto-Revert**: Agents automatically return to available status after 1 minute in busy state
|
||||
- **Productivity Boost**: Prevents agents from staying busy indefinitely after calls
|
||||
- **Smart Automation**: WordPress cron job handles status management in background
|
||||
- **Database Enhanced**: New auto_busy_at column tracks automatic status changes
|
||||
- **Manual Override**: Agent-initiated status changes still respected
|
||||
- **Zero Maintenance**: Fully automated system requires no administrative intervention
|
||||
|
||||
#### 📊 Call Statistics - Complete Accuracy
|
||||
- **Browser Phone Tracking**: All browser phone calls now appear in agent statistics
|
||||
- **Enhanced Logging**: Improved call data storage with structured JSON format
|
||||
- **Customer Detection**: Advanced identification system for complex call scenarios
|
||||
- **Real-Time Updates**: Statistics dashboards show accurate real-time metrics
|
||||
- **Performance Insights**: Detailed tracking of browser phone usage and efficiency
|
||||
|
||||
#### 🎧 Voicemail & Transcription - Professional Grade
|
||||
- **Real Transcription**: Replaced placeholder system with actual Twilio API integration
|
||||
- **Manual Requests**: Ability to request transcriptions for existing voicemails
|
||||
- **Extension Support**: Enhanced voicemail handling for extension-based systems
|
||||
- **Customer Identification**: Improved customer number detection for all voicemail scenarios
|
||||
- **Professional Audio**: ElevenLabs TTS integration for voicemail prompts
|
||||
|
||||
#### 🛠️ Technical Improvements
|
||||
- **Database Migration**: Automatic schema updates to version 1.6.2
|
||||
- **Error Handling**: Comprehensive error recovery throughout all systems
|
||||
- **Logging Enhanced**: Detailed debugging information for troubleshooting
|
||||
- **Performance**: Optimized cron jobs and background processing
|
||||
- **Compatibility**: Universal browser support with fallback mechanisms
|
||||
|
||||
### MAJOR: Complete Call Control System Overhaul (September 2025)
|
||||
Comprehensive redesign of hold, transfer, and requeue functionality with professional-grade reliability.
|
||||
|
||||
@@ -152,11 +202,14 @@ Comprehensive redesign of hold, transfer, and requeue functionality with profess
|
||||
- **Browser Phone Support**: Proper handling of complex call topologies created by browser phone calls
|
||||
- **User Experience**: Admin interfaces now consistently display meaningful customer information
|
||||
|
||||
### Browser Phone Upgrade (v2.0)
|
||||
- **Migrated to Twilio Voice SDK v2**: Replaced deprecated Client SDK v1.14
|
||||
- **Improved Stability**: Better error handling and automatic recovery
|
||||
- **Token Management**: Auto-refresh tokens before expiration
|
||||
- **Enhanced Performance**: Modern WebRTC implementation
|
||||
### Browser Phone Upgrade (v2.0 → v2.3.0)
|
||||
- **Universal Browser Support**: Firefox, Chrome, Safari, and Edge fully supported
|
||||
- **Permission Management**: Automatic microphone/speaker access with user-friendly prompts
|
||||
- **Stability Enhanced**: Eliminated call disconnections during transfers and operations
|
||||
- **Client Consistency**: Standardized naming prevents connection mismatches
|
||||
- **Mobile Optimized**: Enhanced mobile browser compatibility
|
||||
- **Error Recovery**: Intelligent reconnection and clear error messaging
|
||||
- **Migrated to Twilio Voice SDK v2**: Modern WebRTC with automatic token refresh
|
||||
|
||||
### Queue System Improvements
|
||||
- **Notification Numbers**: Queues now use notification_number field for SMS alerts
|
||||
@@ -374,14 +427,15 @@ php test-sdk.php
|
||||
- Review workflow step configuration
|
||||
- Check notification_number field (not phone_number)
|
||||
|
||||
#### Outbound Call Control Issues - RESOLVED
|
||||
- **Customer Disconnections**: FIXED - All call control functions now work perfectly for outbound calls
|
||||
- **Hold Not Working**: RESOLVED - Automatic queue creation eliminates "queue not found" errors
|
||||
- **Transfer Failures**: FIXED - Professional TwiML generation prevents webhook URL errors
|
||||
- **Browser Phone Transfers**: ENHANCED - Full support for `client:` identifier transfers with smart detection
|
||||
- **Requeue Problems**: RESOLVED - Customer call leg detection ensures proper queue placement
|
||||
- **Audio Quality**: ENHANCED - Premium TTS voices replace technical error messages
|
||||
- **Setup Required**: ELIMINATED - Everything works automatically without manual configuration
|
||||
#### Call Control System - Enterprise Grade (v2.3.0)
|
||||
- **Extension Transfers**: COMPLETELY REDESIGNED - Queue-based system with 2-minute timeout and automatic voicemail
|
||||
- **Browser Phone Support**: UNIVERSAL - Full Firefox, Chrome, Safari, and Edge compatibility with permission management
|
||||
- **Agent Status**: AUTOMATED - 1-minute auto-revert prevents agents staying busy indefinitely
|
||||
- **Call Statistics**: ACCURATE - Browser phone calls properly tracked in all dashboards
|
||||
- **Transcription**: REAL API - Actual Twilio integration replaces placeholder system
|
||||
- **Customer Disconnections**: ELIMINATED - Intelligent call leg detection prevents all disconnection issues
|
||||
- **Professional Audio**: UNIVERSAL - ElevenLabs TTS throughout all voice prompts
|
||||
- **Zero Configuration**: AUTOMATIC - All systems work immediately without manual setup
|
||||
|
||||
#### Customer Number Display Issues - RESOLVED
|
||||
- **"client:agentname" in Voicemails**: FIXED - Real customer numbers now display correctly in all interfaces
|
||||
@@ -473,20 +527,27 @@ All webhooks are REST API endpoints under `/wp-json/twilio-webhook/v1/`:
|
||||
|
||||
## Version History
|
||||
|
||||
### v2.2.0 (Current - September 2025) - MAJOR RELEASE
|
||||
- **COMPLETE CALL CONTROL REDESIGN**: Hold, transfer, and requeue functions completely rebuilt from the ground up
|
||||
- **Automatic Queue Creation**: Personal and hold queues created automatically for all users with unique extensions
|
||||
- **Professional Audio Experience**: Eliminated technical errors customers could hear during call operations
|
||||
- **ElevenLabs TTS Integration**: Premium voice synthesis throughout all call operations with intelligent fallback
|
||||
- **Call Leg Detection**: Advanced system for complex outbound call topologies preventing customer disconnections
|
||||
- **Browser Phone Enhancement**: Full support for browser phone transfers and complex call scenarios
|
||||
- **User Experience**: Seamless call control without any manual setup or configuration required
|
||||
- **Database Consistency**: Enhanced schema support with comprehensive fallback mechanisms
|
||||
- **Professional Grade**: Enterprise-level reliability and error handling throughout
|
||||
- **Customer Number Detection**: Enhanced voicemail and recording interfaces to show real customer numbers
|
||||
- **Extension Management**: Automatic 3-4 digit extension assignment for direct dialing capabilities
|
||||
### v2.3.0 (Current - September 2025) - ENTERPRISE READY
|
||||
- **EXTENSION TRANSFER SYSTEM**: Complete overhaul with queue-based routing, 2-minute timeout, and automatic voicemail fallback
|
||||
- **BROWSER PHONE UNIVERSAL**: Firefox support, permission management, call stability, and cross-browser compatibility
|
||||
- **AGENT STATUS AUTOMATION**: 1-minute auto-revert system with WordPress cron job integration
|
||||
- **CALL STATISTICS ACCURACY**: Browser phone calls now tracked properly with enhanced logging
|
||||
- **TRANSCRIPTION INTEGRATION**: Real Twilio API integration replacing placeholder system
|
||||
- **CLIENT NAME CONSISTENCY**: Standardized naming prevents browser phone connection mismatches
|
||||
- **PERMISSION SYSTEM**: Automatic microphone/speaker requests with error recovery
|
||||
- **DATABASE MIGRATION**: Version 1.6.2 with auto_busy_at column for status management
|
||||
- **PROFESSIONAL GRADE**: Enterprise reliability with comprehensive error handling throughout
|
||||
- **ZERO CONFIGURATION**: All systems work automatically without manual setup
|
||||
|
||||
### v2.1.0
|
||||
### v2.2.0 - CALL CONTROL FOUNDATION
|
||||
- **COMPLETE CALL CONTROL REDESIGN**: Hold, transfer, and requeue functions rebuilt from ground up
|
||||
- **Automatic Queue Creation**: Personal and hold queues created automatically with unique extensions
|
||||
- **Professional Audio Experience**: ElevenLabs TTS integration throughout all operations
|
||||
- **Call Leg Detection**: Advanced system preventing customer disconnections in complex topologies
|
||||
- **Browser Phone Enhancement**: Full support for complex call scenarios and transfers
|
||||
- **Customer Number Detection**: Enhanced interfaces show real customer numbers
|
||||
|
||||
### v2.1.0 - WORKFLOW FOUNDATION
|
||||
- **Multiple Phone Numbers**: Workflows can now handle multiple phone numbers
|
||||
- **Discord & Slack Integration**: Real-time notifications for call events
|
||||
- **Enhanced Monitoring**: Automated queue timeout tracking and alerts
|
||||
@@ -494,7 +555,7 @@ All webhooks are REST API endpoints under `/wp-json/twilio-webhook/v1/`:
|
||||
- **Background Processing**: Cron jobs for timeout monitoring
|
||||
- **Database Enhancements**: New junction table for phone number relationships
|
||||
|
||||
### v2.0.0
|
||||
### v2.0.0 - BROWSER PHONE BASE
|
||||
- Upgraded to Twilio Voice SDK v2 for browser phone
|
||||
- Fixed queue notification_number field naming
|
||||
- Enhanced voice selection persistence
|
||||
@@ -502,7 +563,7 @@ All webhooks are REST API endpoints under `/wp-json/twilio-webhook/v1/`:
|
||||
- Improved error handling and logging
|
||||
- Added automatic token refresh
|
||||
|
||||
### v1.3.x
|
||||
### v1.3.x - INITIAL RELEASE
|
||||
- Initial release with full call center features
|
||||
- Browser phone with Client SDK v1.14
|
||||
- Basic workflow builder
|
||||
@@ -518,4 +579,8 @@ All webhooks are REST API endpoints under `/wp-json/twilio-webhook/v1/`:
|
||||
|
||||
## License
|
||||
|
||||
This plugin integrates with Twilio services and requires a Twilio account.
|
||||
This plugin integrates with Twilio services and requires a Twilio account.
|
||||
|
||||
---
|
||||
|
||||
**Enterprise Ready v2.3.0** - Extension transfers, browser phone compatibility, and automatic agent management now production-ready with comprehensive reliability improvements.
|
@@ -15,7 +15,7 @@ if (!defined('WPINC')) {
|
||||
}
|
||||
|
||||
// Plugin constants
|
||||
define('TWP_VERSION', '2.4.2');
|
||||
define('TWP_VERSION', '2.8.6');
|
||||
define('TWP_DB_VERSION', '1.6.2'); // Track database version separately
|
||||
define('TWP_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
||||
define('TWP_PLUGIN_URL', plugin_dir_url(__FILE__));
|
||||
|
Reference in New Issue
Block a user