feat(MED-105): log opening analysis results from orders view

This commit is contained in:
2025-08-28 12:35:30 +03:00
parent b4985afdf0
commit 2ffad84100
5 changed files with 43 additions and 8 deletions

View File

@@ -115,6 +115,7 @@ export type Database = {
changed_by: string
created_at: string
id: number
extra_data?: Json | null
}
Insert: {
account_id: string
@@ -122,6 +123,7 @@ export type Database = {
changed_by: string
created_at?: string
id?: number
extra_data?: Json | null
}
Update: {
account_id?: string
@@ -129,6 +131,7 @@ export type Database = {
changed_by?: string
created_at?: string
id?: number
extra_data?: Json | null
}
Relationships: []
}