with_authors --> with: With[]

This commit is contained in:
Alex Gleason 2023-12-05 17:27:52 -06:00
parent e3d5b2ac4a
commit 2478545cd3
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
2 changed files with 5 additions and 2 deletions

View File

@ -172,7 +172,7 @@ async function getFilters<K extends number>(
if (!filters.length) return Promise.resolve([]);
let query = getFiltersQuery(filters);
if (opts.with_authors) {
if (opts.with?.includes('authors')) {
query = query
.leftJoin(
(eb) =>

View File

@ -8,6 +8,9 @@ interface DittoFilter<K extends number = number> extends Filter<K> {
local?: boolean;
}
/** Additional properties that may be added to events. */
type With = 'authors';
/** Additional options to apply to the whole subscription. */
interface GetFiltersOpts {
/** How long to wait (in milliseconds) until aborting the request. */
@ -15,7 +18,7 @@ interface GetFiltersOpts {
/** Event limit for the whole subscription. */
limit?: number;
/** Whether to include a corresponding kind 0 event in the `authors` key of each event. */
with_authors?: boolean;
with?: With[];
}
function matchDittoFilter(filter: DittoFilter, event: Event, data: EventData): boolean {