123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- /**
- * The errors for the conference.
- */
-
- /**
- * Indicates that client must be authenticated to create the conference.
- */
- export const AUTHENTICATION_REQUIRED = 'conference.authenticationRequired';
-
- /**
- * Indicates that chat error occurred.
- */
- export const CHAT_ERROR = 'conference.chatError';
-
- /**
- * Indicates that conference has been destroyed.
- */
- export const CONFERENCE_DESTROYED = 'conference.destroyed';
-
- /**
- * Indicates that max users limit has been reached.
- */
- export const CONFERENCE_MAX_USERS = 'conference.max_users';
-
- /**
- * Indicates that a connection error occurred when trying to join a conference.
- */
- export const 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.
- */
- export const CONFERENCE_RESTARTED = 'conference.restarted';
-
- /**
- * Indicates that a connection error is due to not allowed,
- * occurred when trying to join a conference.
- */
- export const 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.
- */
- export const 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.
- */
- export const CONFERENCE_ACCESS_DENIED = 'conference.connectionError.accessDenied';
-
- /**
- * Indicates that focus error happened.
- */
- export const FOCUS_DISCONNECTED = 'conference.focusDisconnected';
-
- /**
- * Indicates that focus left the conference.
- */
- export const FOCUS_LEFT = 'conference.focusLeft';
-
- /**
- * Indicates that graceful shutdown happened.
- */
- export const GRACEFUL_SHUTDOWN = 'conference.gracefulShutdown';
-
- /**
- * Indicates that the media connection has failed.
- */
- export const ICE_FAILED = 'conference.iceFailed';
-
- /**
- * Indicates that the versions of the server side components are incompatible
- * with the client side.
- */
- export const INCOMPATIBLE_SERVER_VERSIONS
- = 'conference.incompatible_server_versions';
-
- /**
- * Indicates that offer/answer had failed.
- */
- export const OFFER_ANSWER_FAILED = 'conference.offerAnswerFailed';
-
- /**
- * Indicates that password cannot be set for this conference.
- */
- export const PASSWORD_NOT_SUPPORTED = 'conference.passwordNotSupported';
-
- /**
- * Indicates that a password is required in order to join the conference.
- */
- export const PASSWORD_REQUIRED = 'conference.passwordRequired';
-
- /**
- * Indicates that reservation system returned error.
- */
- export const RESERVATION_ERROR = 'conference.reservationError';
-
- /**
- * Indicates that there is no available videobridge.
- */
- export const VIDEOBRIDGE_NOT_AVAILABLE = 'conference.videobridgeNotAvailable';
|