Skip to content

Commit

Permalink
feat(indexer): add types for excludeCharacterId and characterId list (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
Songkeys committed May 15, 2023
1 parent ce91b24 commit 364bc0b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/indexer/subapis/note.ts
Expand Up @@ -9,8 +9,10 @@ import {
import { type BaseIndexer } from './base'

export type NoteQueryOptions = {
/** The owner of this note */
characterId?: Numberish
/** The owner(s) of notes */
characterId?: Numberish | Numberish[]
/** Excluded owner(s) of notes. This has higher priority than `characterId` */
excludeCharacterId?: Numberish | Numberish[]
/** The link item type to filter by. e.g. 'Character' */
linkItemType?: LinkItemType
/** The toCharacterId to filter by. */
Expand Down

0 comments on commit 364bc0b

Please sign in to comment.