UNPKG

@itwin/clash-detection-client

Version:

Clash Detection client for the iTwin platform

34 lines 2.55 kB
/*--------------------------------------------------------------------------------------------- * Copyright (c) Bentley Systems, Incorporated. All rights reserved. * See LICENSE.md in the project root for license terms and full copyright notice. *--------------------------------------------------------------------------------------------*/ /** Possible error codes. */ export var ClashDetectionErrorCode; (function (ClashDetectionErrorCode) { ClashDetectionErrorCode["Unrecognized"] = "Unrecognized"; ClashDetectionErrorCode["Unknown"] = "Unknown"; ClashDetectionErrorCode["Unauthorized"] = "Unauthorized"; ClashDetectionErrorCode["InsufficientPermissions"] = "InsufficientPermissions"; ClashDetectionErrorCode["RateLimitExceeded"] = "RateLimitExceeded"; ClashDetectionErrorCode["TooManyRequests"] = "TooManyRequests"; ClashDetectionErrorCode["InvalidClashDetectionRequest"] = "InvalidClashDetectionRequest"; ClashDetectionErrorCode["RequestTooLarge"] = "RequestTooLarge"; ClashDetectionErrorCode["ResourceQuotaExceeded"] = "ResourceQuotaExceeded"; ClashDetectionErrorCode["MutuallyExclusivePropertiesProvided"] = "MutuallyExclusivePropertiesProvided"; ClashDetectionErrorCode["MissingRequiredProperty"] = "MissingRequiredProperty"; ClashDetectionErrorCode["MissingRequiredParameter"] = "MissingRequiredParameter"; ClashDetectionErrorCode["MissingRequiredHeader"] = "MissingRequiredHeader"; ClashDetectionErrorCode["InvalidValue"] = "InvalidValue"; ClashDetectionErrorCode["InvalidHeaderValue"] = "InvalidHeaderValue"; ClashDetectionErrorCode["InvalidRequestBody"] = "InvalidRequestBody"; ClashDetectionErrorCode["MissingRequestBody"] = "MissingRequestBody"; ClashDetectionErrorCode["ProjectNotFound"] = "ProjectNotFound"; ClashDetectionErrorCode["IModelNotFound"] = "iModelNotFound"; ClashDetectionErrorCode["NamedVersionNotFound"] = "NamedVersionNotFound"; ClashDetectionErrorCode["ClashDetectionResultNotFound"] = "ClashDetectionResultNotFound"; ClashDetectionErrorCode["ClashDetectionSuppressionRuleNotFound"] = "ClashDetectionSuppressionRuleNotFound"; ClashDetectionErrorCode["SuppressionRuleTemplateNotFound"] = "SuppressionRuleTemplateNotFound"; ClashDetectionErrorCode["ClashDetectionRunNotFound"] = "ClashDetectionRunNotFound"; ClashDetectionErrorCode["ClashDetectionTestNotFound"] = "ClashDetectionTestNotFound"; })(ClashDetectionErrorCode || (ClashDetectionErrorCode = {})); //# sourceMappingURL=ClashDetectionErrorInterfaces.js.map