diff --git a/src/db/DittoTables.ts b/src/db/DittoTables.ts index a62c485d..38f7249c 100644 --- a/src/db/DittoTables.ts +++ b/src/db/DittoTables.ts @@ -6,6 +6,7 @@ export interface DittoTables extends NPostgresSchema { event_stats: EventStatsRow; pubkey_domains: PubkeyDomainRow; event_zaps: EventZapRow; + author_search: AuthorSearch; } interface AuthorStatsRow { @@ -47,3 +48,8 @@ interface EventZapRow { amount_millisats: number; comment: string; } + +interface AuthorSearch { + pubkey: string; + search: string; +}