import { Blockchain } from "./Blockchain"; import { CollectionId } from "@rarible/types"; import { ItemSearchFullText } from "./ItemSearchFullText"; import { ItemTraitProperty } from "./ItemTraitProperty"; import { Platform } from "./Platform"; import { TraitRange } from "./TraitRange"; import { UnionAddress } from "@rarible/types"; export type ItemsSearchFilter = { blockchains?: Array; collections?: Array; deleted?: boolean; names?: Array; fullText?: ItemSearchFullText; traits?: Array; traitRanges?: Array; creators?: Array; owners?: Array; mintedAtFrom?: string; mintedAtTo?: string; lastUpdatedAtFrom?: string; lastUpdatedAtTo?: string; sellPriceFrom?: number; sellPriceTo?: number; sellCurrency?: string; sellPlatforms?: Array; rarityRankFrom?: number; rarityRankTo?: number; bidPriceFrom?: number; bidPriceTo?: number; bidCurrency?: string; bidPlatforms?: Array; onSale?: boolean; };