|
@@ -1,88 +1,110 @@
|
1
|
1
|
/**
|
2
|
2
|
* The errors for the conference.
|
3
|
3
|
*/
|
4
|
|
-/**
|
5
|
|
- * Indicates that client must be authenticated to create the conference.
|
6
|
|
- */
|
7
|
|
-export const AUTHENTICATION_REQUIRED: "conference.authenticationRequired";
|
8
|
|
-/**
|
9
|
|
- * Indicates that chat error occurred.
|
10
|
|
- */
|
11
|
|
-export const CHAT_ERROR: "conference.chatError";
|
12
|
|
-/**
|
13
|
|
- * Indicates that a settings error occurred.
|
14
|
|
- */
|
15
|
|
-export const SETTINGS_ERROR: "conference.settingsError";
|
16
|
|
-/**
|
17
|
|
- * Indicates that conference has been destroyed.
|
18
|
|
- */
|
19
|
|
-export const CONFERENCE_DESTROYED: "conference.destroyed";
|
20
|
|
-/**
|
21
|
|
- * Indicates that max users limit has been reached.
|
22
|
|
- */
|
23
|
|
-export const CONFERENCE_MAX_USERS: "conference.max_users";
|
24
|
|
-/**
|
25
|
|
- * Indicates that a connection error occurred when trying to join a conference.
|
26
|
|
- */
|
27
|
|
-export const CONNECTION_ERROR: "conference.connectionError";
|
28
|
|
-/**
|
29
|
|
- * Indicates that the client has been forced to restart by jicofo when the
|
30
|
|
- * conference was migrated from one bridge to another.
|
31
|
|
- */
|
32
|
|
-export const CONFERENCE_RESTARTED: "conference.restarted";
|
33
|
|
-/**
|
34
|
|
- * Indicates that a connection error is due to not allowed,
|
35
|
|
- * occurred when trying to join a conference.
|
36
|
|
- */
|
37
|
|
-export const NOT_ALLOWED_ERROR: "conference.connectionError.notAllowed";
|
38
|
|
-/**
|
39
|
|
- * Indicates that a connection error is due to not allowed,
|
40
|
|
- * occurred when trying to join a conference, only approved members are allowed to join.
|
41
|
|
- */
|
42
|
|
-export const MEMBERS_ONLY_ERROR: "conference.connectionError.membersOnly";
|
43
|
|
-/**
|
44
|
|
- * Indicates that a connection error is due to denied access to the room,
|
45
|
|
- * occurred after joining a lobby room and access is denied by the room moderators.
|
46
|
|
- */
|
47
|
|
-export const CONFERENCE_ACCESS_DENIED: "conference.connectionError.accessDenied";
|
48
|
|
-/**
|
49
|
|
- * Indicates that focus error happened.
|
50
|
|
- */
|
51
|
|
-export const FOCUS_DISCONNECTED: "conference.focusDisconnected";
|
52
|
|
-/**
|
53
|
|
- * Indicates that focus left the conference.
|
54
|
|
- */
|
55
|
|
-export const FOCUS_LEFT: "conference.focusLeft";
|
56
|
|
-/**
|
57
|
|
- * Indicates that graceful shutdown happened.
|
58
|
|
- */
|
59
|
|
-export const GRACEFUL_SHUTDOWN: "conference.gracefulShutdown";
|
60
|
|
-/**
|
61
|
|
- * Indicates that the media connection has failed.
|
62
|
|
- */
|
63
|
|
-export const ICE_FAILED: "conference.iceFailed";
|
64
|
|
-/**
|
65
|
|
- * Indicates that the versions of the server side components are incompatible
|
66
|
|
- * with the client side.
|
67
|
|
- */
|
68
|
|
-export const INCOMPATIBLE_SERVER_VERSIONS: "conference.incompatible_server_versions";
|
69
|
|
-/**
|
70
|
|
- * Indicates that offer/answer had failed.
|
71
|
|
- */
|
72
|
|
-export const OFFER_ANSWER_FAILED: "conference.offerAnswerFailed";
|
73
|
|
-/**
|
74
|
|
- * Indicates that password cannot be set for this conference.
|
75
|
|
- */
|
76
|
|
-export const PASSWORD_NOT_SUPPORTED: "conference.passwordNotSupported";
|
77
|
|
-/**
|
78
|
|
- * Indicates that a password is required in order to join the conference.
|
79
|
|
- */
|
80
|
|
-export const PASSWORD_REQUIRED: "conference.passwordRequired";
|
81
|
|
-/**
|
82
|
|
- * Indicates that reservation system returned error.
|
83
|
|
- */
|
84
|
|
-export const RESERVATION_ERROR: "conference.reservationError";
|
85
|
|
-/**
|
86
|
|
- * Indicates that there is no available videobridge.
|
87
|
|
- */
|
88
|
|
-export const VIDEOBRIDGE_NOT_AVAILABLE: "conference.videobridgeNotAvailable";
|
|
4
|
+export declare enum JitsiConferenceErrors {
|
|
5
|
+ /**
|
|
6
|
+ * Indicates that client must be authenticated to create the conference.
|
|
7
|
+ */
|
|
8
|
+ AUTHENTICATION_REQUIRED = "conference.authenticationRequired",
|
|
9
|
+ /**
|
|
10
|
+ * Indicates that chat error occurred.
|
|
11
|
+ */
|
|
12
|
+ CHAT_ERROR = "conference.chatError",
|
|
13
|
+ /**
|
|
14
|
+ * Indicates that a settings error occurred.
|
|
15
|
+ */
|
|
16
|
+ SETTINGS_ERROR = "conference.settingsError",
|
|
17
|
+ /**
|
|
18
|
+ * Indicates that conference has been destroyed.
|
|
19
|
+ */
|
|
20
|
+ CONFERENCE_DESTROYED = "conference.destroyed",
|
|
21
|
+ /**
|
|
22
|
+ * Indicates that max users limit has been reached.
|
|
23
|
+ */
|
|
24
|
+ CONFERENCE_MAX_USERS = "conference.max_users",
|
|
25
|
+ /**
|
|
26
|
+ * Indicates that a connection error occurred when trying to join a conference.
|
|
27
|
+ */
|
|
28
|
+ CONNECTION_ERROR = "conference.connectionError",
|
|
29
|
+ /**
|
|
30
|
+ * Indicates that the client has been forced to restart by jicofo when the
|
|
31
|
+ * conference was migrated from one bridge to another.
|
|
32
|
+ */
|
|
33
|
+ CONFERENCE_RESTARTED = "conference.restarted",
|
|
34
|
+ /**
|
|
35
|
+ * Indicates that a connection error is due to not allowed,
|
|
36
|
+ * occurred when trying to join a conference.
|
|
37
|
+ */
|
|
38
|
+ NOT_ALLOWED_ERROR = "conference.connectionError.notAllowed",
|
|
39
|
+ /**
|
|
40
|
+ * Indicates that a connection error is due to not allowed,
|
|
41
|
+ * occurred when trying to join a conference, only approved members are allowed to join.
|
|
42
|
+ */
|
|
43
|
+ MEMBERS_ONLY_ERROR = "conference.connectionError.membersOnly",
|
|
44
|
+ /**
|
|
45
|
+ * Indicates that a connection error is due to denied access to the room,
|
|
46
|
+ * occurred after joining a lobby room and access is denied by the room moderators.
|
|
47
|
+ */
|
|
48
|
+ CONFERENCE_ACCESS_DENIED = "conference.connectionError.accessDenied",
|
|
49
|
+ /**
|
|
50
|
+ * Indicates that focus error happened.
|
|
51
|
+ */
|
|
52
|
+ FOCUS_DISCONNECTED = "conference.focusDisconnected",
|
|
53
|
+ /**
|
|
54
|
+ * Indicates that focus left the conference.
|
|
55
|
+ */
|
|
56
|
+ FOCUS_LEFT = "conference.focusLeft",
|
|
57
|
+ /**
|
|
58
|
+ * Indicates that graceful shutdown happened.
|
|
59
|
+ */
|
|
60
|
+ GRACEFUL_SHUTDOWN = "conference.gracefulShutdown",
|
|
61
|
+ /**
|
|
62
|
+ * Indicates that the media connection has failed.
|
|
63
|
+ */
|
|
64
|
+ ICE_FAILED = "conference.iceFailed",
|
|
65
|
+ /**
|
|
66
|
+ * Indicates that the versions of the server side components are incompatible
|
|
67
|
+ * with the client side.
|
|
68
|
+ */
|
|
69
|
+ INCOMPATIBLE_SERVER_VERSIONS = "conference.incompatible_server_versions",
|
|
70
|
+ /**
|
|
71
|
+ * Indicates that offer/answer had failed.
|
|
72
|
+ */
|
|
73
|
+ OFFER_ANSWER_FAILED = "conference.offerAnswerFailed",
|
|
74
|
+ /**
|
|
75
|
+ * Indicates that password cannot be set for this conference.
|
|
76
|
+ */
|
|
77
|
+ PASSWORD_NOT_SUPPORTED = "conference.passwordNotSupported",
|
|
78
|
+ /**
|
|
79
|
+ * Indicates that a password is required in order to join the conference.
|
|
80
|
+ */
|
|
81
|
+ PASSWORD_REQUIRED = "conference.passwordRequired",
|
|
82
|
+ /**
|
|
83
|
+ * Indicates that reservation system returned error.
|
|
84
|
+ */
|
|
85
|
+ RESERVATION_ERROR = "conference.reservationError",
|
|
86
|
+ /**
|
|
87
|
+ * Indicates that there is no available videobridge.
|
|
88
|
+ */
|
|
89
|
+ VIDEOBRIDGE_NOT_AVAILABLE = "conference.videobridgeNotAvailable"
|
|
90
|
+}
|
|
91
|
+export declare const AUTHENTICATION_REQUIRED = JitsiConferenceErrors.AUTHENTICATION_REQUIRED;
|
|
92
|
+export declare const CHAT_ERROR = JitsiConferenceErrors.CHAT_ERROR;
|
|
93
|
+export declare const SETTINGS_ERROR = JitsiConferenceErrors.SETTINGS_ERROR;
|
|
94
|
+export declare const CONFERENCE_DESTROYED = JitsiConferenceErrors.CONFERENCE_DESTROYED;
|
|
95
|
+export declare const CONFERENCE_MAX_USERS = JitsiConferenceErrors.CONFERENCE_MAX_USERS;
|
|
96
|
+export declare const CONNECTION_ERROR = JitsiConferenceErrors.CONNECTION_ERROR;
|
|
97
|
+export declare const CONFERENCE_RESTARTED = JitsiConferenceErrors.CONFERENCE_RESTARTED;
|
|
98
|
+export declare const NOT_ALLOWED_ERROR = JitsiConferenceErrors.NOT_ALLOWED_ERROR;
|
|
99
|
+export declare const MEMBERS_ONLY_ERROR = JitsiConferenceErrors.MEMBERS_ONLY_ERROR;
|
|
100
|
+export declare const CONFERENCE_ACCESS_DENIED = JitsiConferenceErrors.CONFERENCE_ACCESS_DENIED;
|
|
101
|
+export declare const FOCUS_DISCONNECTED = JitsiConferenceErrors.FOCUS_DISCONNECTED;
|
|
102
|
+export declare const FOCUS_LEFT = JitsiConferenceErrors.FOCUS_LEFT;
|
|
103
|
+export declare const GRACEFUL_SHUTDOWN = JitsiConferenceErrors.GRACEFUL_SHUTDOWN;
|
|
104
|
+export declare const ICE_FAILED = JitsiConferenceErrors.ICE_FAILED;
|
|
105
|
+export declare const INCOMPATIBLE_SERVER_VERSIONS = JitsiConferenceErrors.INCOMPATIBLE_SERVER_VERSIONS;
|
|
106
|
+export declare const OFFER_ANSWER_FAILED = JitsiConferenceErrors.OFFER_ANSWER_FAILED;
|
|
107
|
+export declare const PASSWORD_NOT_SUPPORTED = JitsiConferenceErrors.PASSWORD_NOT_SUPPORTED;
|
|
108
|
+export declare const PASSWORD_REQUIRED = JitsiConferenceErrors.PASSWORD_REQUIRED;
|
|
109
|
+export declare const RESERVATION_ERROR = JitsiConferenceErrors.RESERVATION_ERROR;
|
|
110
|
+export declare const VIDEOBRIDGE_NOT_AVAILABLE = JitsiConferenceErrors.VIDEOBRIDGE_NOT_AVAILABLE;
|