@hysc/meeting 5.0.54 → 5.0.56
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/boom-meeting/src/BMRoom/BMRoom.d.ts +2 -2
- package/esm/boom-meeting/src/BMStream/BMStreamModelVM.d.ts +10 -8
- package/esm/index.js +2 -2
- package/esm/index.js.map +2 -2
- package/esm/src/BMRoom/BMRoom.d.ts +686 -686
- package/esm/src/BMStream/BMStreamModelVM.d.ts +10 -8
- package/esm/utils/ErrorTypes.d.ts +34 -0
- package/package.json +4 -4
- package/umd/boom-meeting/src/BMRoom/BMRoom.d.ts +2 -2
- package/umd/boom-meeting/src/BMStream/BMStreamModelVM.d.ts +10 -8
- package/umd/index.js +2 -2
- package/umd/utils/ErrorTypes.d.ts +34 -0
|
@@ -97,3 +97,37 @@ export declare const BmUpdateCustomStatsError: (msg: string) => BoomError;
|
|
|
97
97
|
export declare const BmChangeVideoProfileError: (msg: string) => BoomError;
|
|
98
98
|
export declare const BmChangeAudioProfileError: (msg: string) => BoomError;
|
|
99
99
|
export declare const BmCheckDeviceError: (msg: string) => BoomError;
|
|
100
|
+
export declare enum StreamErrorMap {
|
|
101
|
+
createStream = 1302,
|
|
102
|
+
noCameraDevice = 1303,
|
|
103
|
+
noMicroDevice = 1304,
|
|
104
|
+
noSpeakerDevice = 1305,
|
|
105
|
+
openCamera = 1301,
|
|
106
|
+
cameraNotAuth = 1314,
|
|
107
|
+
cameraOccupy = 1315,
|
|
108
|
+
openMicro = 1302,
|
|
109
|
+
micNotAuth = 1317,
|
|
110
|
+
micOccupy = 1319,
|
|
111
|
+
streamDisconnected = 1320,
|
|
112
|
+
syncFail = 1321,
|
|
113
|
+
getStreamFail = 1322,
|
|
114
|
+
streamConnectError = 1323,
|
|
115
|
+
streamReconnectSuccess = 1324,
|
|
116
|
+
streamReconnectFailed = 1325
|
|
117
|
+
}
|
|
118
|
+
export declare const BMCreateStreamError: (message: string) => BoomError;
|
|
119
|
+
export declare const getStreamError: (message: string) => BoomError;
|
|
120
|
+
export declare const BMNoCameraError: () => BoomError;
|
|
121
|
+
export declare const BMNoMicroError: () => BoomError;
|
|
122
|
+
export declare const BMNoSpeakerError: () => BoomError;
|
|
123
|
+
export declare const BMOpenCameraError: () => BoomError;
|
|
124
|
+
export declare const BMCameraNotAuthError: () => BoomError;
|
|
125
|
+
export declare const BMCameraOccupyError: () => BoomError;
|
|
126
|
+
export declare const BMOpenMicroError: () => BoomError;
|
|
127
|
+
export declare const BMMicNotAuthError: () => BoomError;
|
|
128
|
+
export declare const BMMicOccupyError: () => BoomError;
|
|
129
|
+
export declare const BMStreamDisconnectedError: (type: string) => BoomError;
|
|
130
|
+
export declare const BmSyncStreamFailError: () => BoomError;
|
|
131
|
+
export declare const BMStreamConnectError: () => BoomError;
|
|
132
|
+
export declare const BMStreamReconnectSuccess: () => BoomError;
|
|
133
|
+
export declare const BMStreamReconnectFailed: () => BoomError;
|