import { ChannelId } from "./Enums"; export default class Constants { static readonly requiredOmnichannelConfigurationParameters: string[]; static readonly defaultHeaders: { "Content-Type": string; }; static readonly bypassCacheHeaders: { "Cache-Control": string; "X-Cache-Control": string; }; static readonly defaultChannelId = ChannelId.LCW; static readonly defaultLocale = "en-us"; static readonly noContentStatusCode = 204; static readonly tooManyRequestsStatusCode = 429; static readonly notFoundStatusCode = 404; static readonly badRequestStatusCode = 400; static readonly outOfOfficeErrorCode = 705; static readonly sensitiveProperties: string[]; static readonly transactionid = "transaction-id"; static readonly customerDisplayName = "customerDisplayName"; static readonly hiddenContentPlaceholder = "*content hidden*"; static readonly axiosTimeoutErrorCode = "ECONNABORTED"; }