jat-feedback 3.3.5 → 3.4.1
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/dist/jat-feedback.js +36 -36
- package/dist/jat-feedback.mjs +2933 -2833
- package/package.json +1 -1
- package/supabase/migrations/3.3.0_realtime_voice.sql +3 -16
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jat-feedback",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.4.1",
|
|
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",
|
|
@@ -31,25 +31,12 @@ ALTER TABLE project_tasks REPLICA IDENTITY FULL;
|
|
|
31
31
|
ALTER TABLE project_tasks ADD COLUMN IF NOT EXISTS audio_url TEXT;
|
|
32
32
|
|
|
33
33
|
-- ============================================================================
|
|
34
|
-
-- 3.
|
|
34
|
+
-- 3. Drop any old status CHECK constraint (no new constraint — each consuming
|
|
35
|
+
-- project uses different status values, so we don't enforce a fixed list)
|
|
35
36
|
-- ============================================================================
|
|
36
37
|
|
|
37
|
-
-- Drop the existing constraint (inherited from 1.0.0_feedback_reports.sql)
|
|
38
|
-
-- and recreate with additional values for the voice pipeline.
|
|
39
38
|
ALTER TABLE project_tasks DROP CONSTRAINT IF EXISTS feedback_reports_status_check;
|
|
40
|
-
|
|
41
|
-
ALTER TABLE project_tasks ADD CONSTRAINT project_tasks_status_check
|
|
42
|
-
CHECK (status IN (
|
|
43
|
-
'submitted',
|
|
44
|
-
'in_progress',
|
|
45
|
-
'completed',
|
|
46
|
-
'accepted',
|
|
47
|
-
'rejected',
|
|
48
|
-
'wontfix',
|
|
49
|
-
'closed',
|
|
50
|
-
'transcribing',
|
|
51
|
-
'failed'
|
|
52
|
-
));
|
|
39
|
+
ALTER TABLE project_tasks DROP CONSTRAINT IF EXISTS project_tasks_status_check;
|
|
53
40
|
|
|
54
41
|
-- ============================================================================
|
|
55
42
|
-- 4. Storage bucket for voice recordings (private)
|