"""Constant Urls.""" OWS_PRODUCT_SERVICE_NAME = "ows-product" OWS_PRODUCT_ENDPOINT = "/product/{}?with_tenant_uuids=1" OWS_PRODUCT_DOCUMENT_ENDPOINT = "/product/{}/document?with_tenant_uuids=1" OWS_PROJECT_SERVICE_NAME = "ows-project-manager" OWS_PROJECT_DOCUMENT_ENDPOINT = "/project/{}/document?with_tenant_uuids=1" OWS_TRACK_SERVICE_NAME = "ows-track" OWS_TRACK_ENDPOINT = "/track/{}?exclude=localizations&include=tenant_uuids" OWS_TRACK_PRODUCT_ENDPOINT = "/product/{}/tracks?exclude=localizations&include=tenant_uuids" OWS_ACCOUNT_SERVICE_NAME = "ows-account" OWS_SUBACCOUNT_DOCUMENT_ENDPOINT = "/subaccount/{}/document" OWS_VENDOR_DOCUMENT_ENDPOINT = "/vendor/{}/document" OWS_PROJECT_ERROR = "Failed to get information from ows-project-manager" OWS_PRODUCT_ERROR = "Failed to get information from ows-product" OWS_TRACK_ERROR = "Failed to get information from ows-track" OWS_ACCOUNT_ERROR = "Failed to get {} information from ows-account" SERVICE_URL = "https://{environment}-{service_name}.theorchard.io{path}"