UNPKG

@realestate/types

Version:

Types for real estate

26 lines (23 loc) 691 B
/** * Copyright (c) 2023 ListBird. All Rights Reserved. * * This software product includes software or other works developed by RESO, * subject to the RESO End User License published at www.reso.org. * * Any modifications, derivative works, or redistributions of this source must * maintain this copyright notice. See the RESO EULA for more information. */ export enum SearchQueryType { /** * {@link https://ddwiki.reso.org/display/DDW17/DMQL2} * * The query is in the form of DMQL2. */ DMQL2 = 'DMQL2', /** * {@link https://ddwiki.reso.org/display/DDW17/%24filter} * * The query is in the form of Odata's $filter. */ OdataFilter = 'OdataFilter', }