Save all lob events to the database

They're pretty raw, but this will help us to understand what we can
collect
This commit is contained in:
Eli Ribble 2026-04-21 22:24:12 +00:00
parent 4db1a6f678
commit 0ce3420792
No known key found for this signature in database
7 changed files with 607 additions and 8 deletions

View file

@ -80,6 +80,7 @@ func Where[Q psql.Filterable]() struct {
H3Aggregations h3AggregationWhere[Q]
Jobs jobWhere[Q]
Leads leadWhere[Q]
LobEvents lobEventWhere[Q]
LogImpersonations logImpersonationWhere[Q]
NoteAudios noteAudioWhere[Q]
NoteAudioBreadcrumbs noteAudioBreadcrumbWhere[Q]
@ -191,6 +192,7 @@ func Where[Q psql.Filterable]() struct {
H3Aggregations h3AggregationWhere[Q]
Jobs jobWhere[Q]
Leads leadWhere[Q]
LobEvents lobEventWhere[Q]
LogImpersonations logImpersonationWhere[Q]
NoteAudios noteAudioWhere[Q]
NoteAudioBreadcrumbs noteAudioBreadcrumbWhere[Q]
@ -301,6 +303,7 @@ func Where[Q psql.Filterable]() struct {
H3Aggregations: buildH3AggregationWhere[Q](H3Aggregations.Columns),
Jobs: buildJobWhere[Q](Jobs.Columns),
Leads: buildLeadWhere[Q](Leads.Columns),
LobEvents: buildLobEventWhere[Q](LobEvents.Columns),
LogImpersonations: buildLogImpersonationWhere[Q](LogImpersonations.Columns),
NoteAudios: buildNoteAudioWhere[Q](NoteAudios.Columns),
NoteAudioBreadcrumbs: buildNoteAudioBreadcrumbWhere[Q](NoteAudioBreadcrumbs.Columns),