{"slug":"devexhub-smart-lead-engine","name":"Devex Hub Smart Lead Engine","description":"A contact form that saves every submission as a lead in your WordPress admin — with a Kanban pipeline, Google Sheets sync, and team tools built in.","author":"devexhubprivatelimited","active_installs":0,"version":"1.0.0","wp_org_url":"https://wordpress.org/plugins/devexhub-smart-lead-engine/","is_closed":false,"cleanup":{"has_uninstall_hook":true,"drops_tables_on_uninstall":true,"deletes_options_on_uninstall":true},"tables":[{"table_name":"dhle_leads","full_table_name":"wp_dhle_leads","description":"Stores dhle leads data created by this plugin.","detection_method":"static","confidence":"high","columns":[{"name":"id","type":"BIGINT UNSIGNED","nullable":false,"primary_key":true},{"name":"name","type":"VARCHAR(255)","nullable":false,"primary_key":false},{"name":"email","type":"VARCHAR(255)","nullable":false,"primary_key":false},{"name":"phone","type":"VARCHAR(50)","nullable":false,"primary_key":false},{"name":"message","type":"TEXT","nullable":false,"primary_key":false},{"name":"status","type":"VARCHAR(50)","nullable":false,"primary_key":false},{"name":"assigned_to","type":"BIGINT UNSIGNED","nullable":true,"primary_key":false},{"name":"created_at","type":"DATETIME","nullable":false,"primary_key":false}],"create_sql":"CREATE TABLE wp_dhle_leads ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, name VARCHAR(255) NOT NULL DEFAULT '', email VARCHAR(255) NOT NULL DEFAULT '', phone VARCHAR(50) NOT NULL DEFAULT '', message TEXT NOT NULL, status VARCHAR(50) NOT NULL DEFAULT 'new', assigned_to BIGINT UNSIGNED DEFAULT NULL, created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY status (status), KEY assigned_to (assigned_to) ) $charset_collate;\"; dbDelta( $sql_leads );"},{"table_name":"dhle_notes","full_table_name":"wp_dhle_notes","description":"Stores dhle notes data created by this plugin.","detection_method":"static","confidence":"medium","columns":[{"name":"id","type":"BIGINT UNSIGNED","nullable":false,"primary_key":true},{"name":"lead_id","type":"BIGINT UNSIGNED","nullable":false,"primary_key":false},{"name":"user_id","type":"BIGINT UNSIGNED","nullable":false,"primary_key":false},{"name":"note","type":"TEXT","nullable":false,"primary_key":false},{"name":"created_at","type":"DATETIME","nullable":false,"primary_key":false}],"create_sql":"CREATE TABLE wp_dhle_notes ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, lead_id BIGINT UNSIGNED NOT NULL, user_id BIGINT UNSIGNED NOT NULL, note TEXT NOT NULL, created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY lead_id (lead_id) ) $charset_collate;\"; dbDelta( $sql_notes );"},{"table_name":"dhle_webhook_logs","full_table_name":"wp_dhle_webhook_logs","description":"A logging table that records activity, events, or audit history.","detection_method":"static","confidence":"medium","columns":[{"name":"id","type":"BIGINT UNSIGNED","nullable":false,"primary_key":true},{"name":"payload","type":"TEXT","nullable":false,"primary_key":false},{"name":"response","type":"TEXT","nullable":false,"primary_key":false},{"name":"status","type":"VARCHAR(50)","nullable":false,"primary_key":false},{"name":"created_at","type":"DATETIME","nullable":false,"primary_key":false}],"create_sql":"CREATE TABLE wp_dhle_webhook_logs ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, payload TEXT NOT NULL, response TEXT NOT NULL, status VARCHAR(50) NOT NULL DEFAULT 'pending', created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY status (status) ) $charset_collate;\"; dbDelta( $sql_logs );"}],"table_count":3}