- 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.
43 lines
1.4 KiB
XML
43 lines
1.4 KiB
XML
<?xml version='1.0'?>
|
|
<schema>
|
|
<tables>
|
|
<table>
|
|
<name>vtiger_sp_socialconnector</name>
|
|
<sql><![CDATA[CREATE TABLE `vtiger_sp_socialconnector` (
|
|
`socialconnectorid` int(11) DEFAULT '0',
|
|
`message` text,
|
|
`type` varchar(255) DEFAULT NULL,
|
|
`vk_status` varchar(255) DEFAULT NULL,
|
|
`tw_status` varchar(255) DEFAULT NULL,
|
|
`vk_message_id` varchar(255) DEFAULT NULL,
|
|
`tw_message_id` varchar(255) DEFAULT NULL,
|
|
`message_datetime` datetime NOT NULL
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8]]></sql>
|
|
</table>
|
|
<table>
|
|
<name>vtiger_sp_socialconnectorcf</name>
|
|
<sql><![CDATA[CREATE TABLE `vtiger_sp_socialconnectorcf` (
|
|
`socialconnectorid` int(11) NOT NULL,
|
|
`tags` varchar(1) DEFAULT NULL,
|
|
PRIMARY KEY (`socialconnectorid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8]]></sql>
|
|
</table>
|
|
<table>
|
|
<name>vtiger_sp_socialconnector_providers</name>
|
|
<sql><![CDATA[CREATE TABLE `vtiger_sp_socialconnector_providers` (
|
|
`id` int(11) NOT NULL,
|
|
`provider_name` varchar(45) NOT NULL,
|
|
`provider_domen` varchar(45) DEFAULT NULL,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8]]></sql>
|
|
</table>
|
|
<table>
|
|
<name>vtiger_sp_socialconnector_settings</name>
|
|
<sql><![CDATA[CREATE TABLE `vtiger_sp_socialconnector_settings` (
|
|
`key` varchar(255) DEFAULT NULL,
|
|
`value` varchar(255) DEFAULT NULL
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8]]></sql>
|
|
</table>
|
|
</tables>
|
|
</schema>
|