jat-feedback 1.5.1 → 1.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jat-feedback",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.0",
|
|
4
4
|
"description": "Embeddable feedback widget for bug reports and feature requests. Captures screenshots, console logs, and user context as a web component.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/jat-feedback.js",
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
-- jat-feedback v1.1.0 — rejection media columns
|
|
2
|
+
--
|
|
3
|
+
-- Adds columns to store rejection screenshots and element selections.
|
|
4
|
+
-- These are captured by the widget when a user rejects a completed report.
|
|
5
|
+
--
|
|
6
|
+
-- Apply as a new migration in your project:
|
|
7
|
+
-- cp node_modules/jat-feedback/supabase/migrations/1.1.0_rejection_media.sql \
|
|
8
|
+
-- supabase/migrations/$(date +%Y%m%d%H%M%S)_feedback_1_1_0.sql
|
|
9
|
+
|
|
10
|
+
ALTER TABLE feedback_reports ADD COLUMN IF NOT EXISTS rejection_screenshot_paths TEXT[];
|
|
11
|
+
ALTER TABLE feedback_reports ADD COLUMN IF NOT EXISTS rejection_elements JSONB;
|