feat: create and add author_search interface to DittoTables

This commit is contained in:
P. Reis 2024-09-13 10:23:08 -03:00
parent 40c187680e
commit 8bc8712cf3

View file

@ -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;
}