- Added comprehensive AI Assistant system (aiassist/ directory): * Vector search and embedding capabilities * Typebot proxy integration * Elastic search functionality * Message classification and chat history * MCP proxy for external integrations - Implemented Court Status API (GetCourtStatus.php): * Real-time court document status checking * Integration with external court systems * Comprehensive error handling and logging - Enhanced S3 integration: * Improved file backup system with metadata * Batch processing capabilities * Enhanced error logging and recovery * Copy operations with URL fixing - Added Telegram contact creation API - Improved error logging across all modules - Enhanced callback system for AI responses - Extensive backup file storage with timestamps - Updated documentation and README files - File storage improvements: * Thousands of backup files with proper metadata * Fix operations for broken file references * Project-specific backup and recovery systems * Comprehensive file integrity checking Total: 26,461+ files added/modified including AWS SDK, vendor dependencies, and extensive backup system.
73 lines
2.5 KiB
XML
73 lines
2.5 KiB
XML
<?xml version='1.0'?>
|
|
<schema>
|
|
<tables>
|
|
<table>
|
|
<name>its4you_emails</name>
|
|
<sql><![CDATA[CREATE TABLE `its4you_emails` (
|
|
`its4you_emails_id` int(19) NOT NULL,
|
|
`from_email` varchar(50) DEFAULT NULL,
|
|
`from_email_ids` varchar(200) DEFAULT NULL,
|
|
`reply_email` varchar(50) DEFAULT NULL,
|
|
`reply_email_ids` varchar(200) DEFAULT NULL,
|
|
`to_email` text DEFAULT NULL,
|
|
`to_email_ids` text DEFAULT NULL,
|
|
`cc_email` text DEFAULT NULL,
|
|
`cc_email_ids` text DEFAULT NULL,
|
|
`bcc_email` text DEFAULT NULL,
|
|
`bcc_email_ids` text DEFAULT NULL,
|
|
`subject` varchar(255) DEFAULT NULL,
|
|
`result` text DEFAULT NULL,
|
|
`email_flag` varchar(50) DEFAULT NULL,
|
|
`related_to` int(11) DEFAULT NULL,
|
|
`parent_id` int(11) DEFAULT NULL,
|
|
`sending_id` int(11) DEFAULT NULL,
|
|
`attachment_ids` text DEFAULT NULL,
|
|
`is_merge_templates` tinyint(4) DEFAULT NULL,
|
|
`body` text DEFAULT NULL,
|
|
`email_template_ids` varchar(200) DEFAULT NULL,
|
|
`email_template_language` varchar(50) DEFAULT NULL,
|
|
`pdf_template_ids` varchar(200) DEFAULT NULL,
|
|
`pdf_template_language` varchar(50) DEFAULT NULL,
|
|
`smtp` int(11) DEFAULT NULL,
|
|
`access_count` int(11) DEFAULT NULL,
|
|
`click_count` int(11) DEFAULT NULL,
|
|
`its4you_email_no` varchar(100) DEFAULT NULL,
|
|
`emails_module` varchar(100) DEFAULT NULL,
|
|
`account_id` int(11) DEFAULT NULL,
|
|
`contact_id` int(11) DEFAULT NULL,
|
|
`lead_id` int(11) DEFAULT NULL,
|
|
`vendor_id` int(11) DEFAULT NULL,
|
|
`user_id` int(11) DEFAULT NULL,
|
|
`recipient_id` varchar(100) DEFAULT NULL,
|
|
PRIMARY KEY (`its4you_emails_id`)
|
|
) ENGINE=InnoDB]]></sql>
|
|
</table>
|
|
<table>
|
|
<name>its4you_emailscf</name>
|
|
<sql><![CDATA[CREATE TABLE `its4you_emailscf` (
|
|
`its4you_emails_id` int(19) NOT NULL,
|
|
PRIMARY KEY (`its4you_emails_id`)
|
|
)]]></sql>
|
|
</table>
|
|
<table>
|
|
<name>vtiger_its4youemails_user_field</name>
|
|
<sql><![CDATA[CREATE TABLE IF NOT EXISTS `vtiger_its4youemails_user_field` (
|
|
`recordid` int(25) NOT NULL,
|
|
`userid` int(25) NOT NULL,
|
|
`starred` varchar(100) DEFAULT NULL,
|
|
KEY `recordid` (`recordid`)
|
|
)]]></sql>
|
|
</table>
|
|
<table>
|
|
<name>its4you_emails_access</name>
|
|
<sql><![CDATA[CREATE TABLE IF NOT EXISTS `its4you_emails_access` (
|
|
`mail_id` int(25) NOT NULL,
|
|
`record_id` int(25) NOT NULL,
|
|
`access_id` varchar(50) DEFAULT NULL,
|
|
`access_time` datetime DEFAULT NULL,
|
|
KEY `record_id` (`record_id`)
|
|
)]]></sql>
|
|
</table>
|
|
</tables>
|
|
</schema>
|