- 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.
38 lines
1.2 KiB
XML
38 lines
1.2 KiB
XML
<?xml version='1.0'?>
|
|
<schema>
|
|
<tables>
|
|
<table>
|
|
<name>sp_tips_providers</name>
|
|
<sql><![CDATA[CREATE TABLE `sp_tips_providers` (
|
|
`provider_id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`provider_name` varchar(255) DEFAULT NULL,
|
|
`settings` varchar(1024) DEFAULT '{}',
|
|
PRIMARY KEY (`provider_id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8]]></sql>
|
|
</table>
|
|
<table>
|
|
<name>sp_tips_module_rules</name>
|
|
<sql><![CDATA[CREATE TABLE sp_tips_module_rules (
|
|
rule_id int(11) NOT NULL AUTO_INCREMENT,
|
|
module varchar(127),
|
|
field varchar(127),
|
|
provider_id int(11) DEFAULT NULL,
|
|
type VARCHAR(255),
|
|
primary key (rule_id),
|
|
foreign key provider (provider_id) REFERENCES sp_tips_providers(provider_id) on delete cascade on update cascade
|
|
)ENGINE=InnoDB DEFAULT CHARSET=utf8]]></sql>
|
|
</table>
|
|
<table>
|
|
<name>sp_tips_dependent_fields</name>
|
|
<sql><![CDATA[CREATE TABLE sp_tips_dependent_fields (
|
|
field_id int(11) not null AUTO_INCREMENT,
|
|
vtiger_fieldname varchar(127),
|
|
provider_fieldname varchar(127),
|
|
rule_id int(11),
|
|
primary key (field_id),
|
|
foreign key rule (rule_id) references sp_tips_module_rules(rule_id) on delete cascade on update cascade
|
|
)ENGINE=InnoDB DEFAULT CHARSET=utf8]]></sql>
|
|
</table>
|
|
</tables>
|
|
</schema>
|