/** * The errors for the conference. */ export declare enum JitsiConferenceErrors { /** * Indicates that client must be authenticated to create the conference. */ AUTHENTICATION_REQUIRED = "conference.authenticationRequired", /** * Indicates that chat error occurred. */ CHAT_ERROR = "conference.chatError", /** * Indicates that a settings error occurred. */ SETTINGS_ERROR = "conference.settingsError", /** * Indicates that conference has been destroyed. */ CONFERENCE_DESTROYED = "conference.destroyed", /** * Indicates that max users limit has been reached. */ CONFERENCE_MAX_USERS = "conference.max_users", /** * Indicates that a connection error occurred when trying to join a conference. */ CONNECTION_ERROR = "conference.connectionError", /** * Indicates that the client has been forced to restart by jicofo when the * conference was migrated from one bridge to another. */ CONFERENCE_RESTARTED = "conference.restarted", /** * Indicates that a connection error is due to not allowed, * occurred when trying to join a conference. */ NOT_ALLOWED_ERROR = "conference.connectionError.notAllowed", /** * Indicates that a connection error is due to not allowed, * occurred when trying to join a conference, only approved members are allowed to join. */ MEMBERS_ONLY_ERROR = "conference.connectionError.membersOnly", /** * Indicates that a connection error is due to denied access to the room, * occurred after joining a lobby room and access is denied by the room moderators. */ CONFERENCE_ACCESS_DENIED = "conference.connectionError.accessDenied", /** * Indicates that the display name is required when joining the room. * There are cases like lobby room where display name is required. * @param {boolean|null} lobby whether the error is because lobby is enabled. */ DISPLAY_NAME_REQUIRED = "conference.display_name_required", /** * Indicates that focus error happened. */ FOCUS_DISCONNECTED = "conference.focusDisconnected", /** * Indicates that focus left the conference. */ FOCUS_LEFT = "conference.focusLeft", /** * Indicates that graceful shutdown happened. */ GRACEFUL_SHUTDOWN = "conference.gracefulShutdown", /** * Indicates that the media connection has failed. */ ICE_FAILED = "conference.iceFailed", /** * Indicates that the versions of the server side components are incompatible * with the client side. */ INCOMPATIBLE_SERVER_VERSIONS = "conference.incompatible_server_versions", /** * Indicates that offer/answer had failed. */ OFFER_ANSWER_FAILED = "conference.offerAnswerFailed", /** * Indicates that password cannot be set for this conference. */ PASSWORD_NOT_SUPPORTED = "conference.passwordNotSupported", /** * Indicates that a password is required in order to join the conference. */ PASSWORD_REQUIRED = "conference.passwordRequired", /** * The conference is redirected to a visitor node. */ REDIRECTED = "conference.redirected", /** * Indicates that reservation system returned error. */ RESERVATION_ERROR = "conference.reservationError", /** * Indicates that there is no available videobridge. */ VIDEOBRIDGE_NOT_AVAILABLE = "conference.videobridgeNotAvailable" } export declare const AUTHENTICATION_REQUIRED = JitsiConferenceErrors.AUTHENTICATION_REQUIRED; export declare const CHAT_ERROR = JitsiConferenceErrors.CHAT_ERROR; export declare const SETTINGS_ERROR = JitsiConferenceErrors.SETTINGS_ERROR; export declare const CONFERENCE_DESTROYED = JitsiConferenceErrors.CONFERENCE_DESTROYED; export declare const CONFERENCE_MAX_USERS = JitsiConferenceErrors.CONFERENCE_MAX_USERS; export declare const CONNECTION_ERROR = JitsiConferenceErrors.CONNECTION_ERROR; export declare const CONFERENCE_RESTARTED = JitsiConferenceErrors.CONFERENCE_RESTARTED; export declare const NOT_ALLOWED_ERROR = JitsiConferenceErrors.NOT_ALLOWED_ERROR; export declare const MEMBERS_ONLY_ERROR = JitsiConferenceErrors.MEMBERS_ONLY_ERROR; export declare const CONFERENCE_ACCESS_DENIED = JitsiConferenceErrors.CONFERENCE_ACCESS_DENIED; export declare const DISPLAY_NAME_REQUIRED = JitsiConferenceErrors.DISPLAY_NAME_REQUIRED; export declare const FOCUS_DISCONNECTED = JitsiConferenceErrors.FOCUS_DISCONNECTED; export declare const FOCUS_LEFT = JitsiConferenceErrors.FOCUS_LEFT; export declare const GRACEFUL_SHUTDOWN = JitsiConferenceErrors.GRACEFUL_SHUTDOWN; export declare const ICE_FAILED = JitsiConferenceErrors.ICE_FAILED; export declare const INCOMPATIBLE_SERVER_VERSIONS = JitsiConferenceErrors.INCOMPATIBLE_SERVER_VERSIONS; export declare const OFFER_ANSWER_FAILED = JitsiConferenceErrors.OFFER_ANSWER_FAILED; export declare const PASSWORD_NOT_SUPPORTED = JitsiConferenceErrors.PASSWORD_NOT_SUPPORTED; export declare const PASSWORD_REQUIRED = JitsiConferenceErrors.PASSWORD_REQUIRED; export declare const REDIRECTED = JitsiConferenceErrors.REDIRECTED; export declare const RESERVATION_ERROR = JitsiConferenceErrors.RESERVATION_ERROR; export declare const VIDEOBRIDGE_NOT_AVAILABLE = JitsiConferenceErrors.VIDEOBRIDGE_NOT_AVAILABLE;