UNPKG

@itwin/imodels-client-management

Version:

iModels API client wrapper for applications that manage iModels.

24 lines 1.27 kB
/*--------------------------------------------------------------------------------------------- * Copyright (c) Bentley Systems, Incorporated. All rights reserved. * See LICENSE.md in the project root for license terms and full copyright notice. *--------------------------------------------------------------------------------------------*/ /** Entity list ordering operators that are supported in $orderBy url parameter. */ export var OrderByOperator; (function (OrderByOperator) { /** Ascending. Entities will be returned in ascending order. */ OrderByOperator["Ascending"] = "asc"; /** Descending. Entities will be returned in descending order. */ OrderByOperator["Descending"] = "desc"; })(OrderByOperator || (OrderByOperator = {})); /** * Values for return preference used in `Prefer` header. The header value is formed by joining * `return=` and the enum value. */ export var PreferReturn; (function (PreferReturn) { /** Instructs the server to return minimal entity representation. */ PreferReturn["Minimal"] = "minimal"; /** Instructs the server to return full entity representation. */ PreferReturn["Representation"] = "representation"; })(PreferReturn || (PreferReturn = {})); //# sourceMappingURL=CommonInterfaces.js.map