/** * Post-authentication event name. * @type {string} * @public * @example * if (event === POST_AUTH) { ... } * @ignore */ export declare const POST_AUTH = "postauth"; /** * API gateway identifier for Webex Contact Center. * @type {string} * @public * @ignore */ export declare const WCC_API_GATEWAY = "wcc-api-gateway"; /** * Domain identifier for WCC Calling RTMS. * @type {string} * @public * @ignore */ export declare const WCC_CALLING_RTMS_DOMAIN = "wcc-calling-rtms-domain"; /** * Default RTMS domain for production use. * @type {string} * @public * @ignore */ export declare const DEFAULT_RTMS_DOMAIN = "rtw.prod-us1.rtmsprod.net"; /** * Timeout in milliseconds for WebSocket events. * @type {number} * @public * @example * setTimeout(() => { ... }, WEBSOCKET_EVENT_TIMEOUT); * @ignore */ export declare const WEBSOCKET_EVENT_TIMEOUT = 20000; /** * Agent role identifier. * @type {string} * @public * @ignore */ export declare const AGENT = "agent"; /** * API path for notification subscription. * @type {string} * @public * @ignore */ export declare const SUBSCRIBE_API = "v1/notification/subscribe"; /** * API path for agent login. * @type {string} * @public * @ignore */ export declare const LOGIN_API = "v1/agents/login"; /** * Prefix for WebRTC-related API endpoints. * @type {string} * @public * @ignore */ export declare const WEB_RTC_PREFIX = "webrtc-"; /** * API path for agent session state changes. * @type {string} * @public * @ignore */ export declare const STATE_CHANGE_API = "v1/agents/session/state"; /** * Message for deregistering WebCalling line and cleaning up resources. * @type {string} * @public * @ignore */ export declare const DEREGISTER_WEBCALLING_LINE_MSG = "Deregistering WebCalling line and cleaning up resources"; export declare const METHODS: { SET_LOGIN_OPTION: string; HANDLE_MEDIA_EVENT: string; HANDLE_DISCONNECT_EVENT: string; REGISTER_CALL_LISTENERS: string; CLEAN_UP_CALL: string; GET_RTMS_DOMAIN: string; REGISTER_WEB_CALLING_LINE: string; DEREGISTER_WEB_CALLING_LINE: string; ANSWER_CALL: string; MUTE_UNMUTE_CALL: string; IS_CALL_MUTED: string; DECLINE_CALL: string; MAP_CALL_TO_TASK: string; GET_TASK_ID_FOR_CALL: string; }; export declare const AI_ASSISTANT_API_URLS: { EVENT: string; TRANSCRIPTS_LIST: string; }; export declare const AI_ASSISTANT_BASE_URL_TEMPLATE = "https://api-ai-assistant.%s.ciscoccservice.com"; export declare const AI_ASSISTANT_ENV_MAP: Record;