@amityco/ts-sdk-react-native 6.35.3-ab24b11.0 → 6.36.0
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/.env +26 -26
- package/dist/@types/domains/client.d.ts +1 -1
- package/dist/@types/domains/client.d.ts.map +1 -1
- package/dist/index.cjs.js +3 -3
- package/dist/index.esm.js +3 -3
- package/dist/index.umd.js +3 -3
- package/package.json +1 -1
- package/src/@types/domains/client.ts +1 -1
package/package.json
CHANGED
|
@@ -31,7 +31,7 @@ declare global {
|
|
|
31
31
|
TERMINATED = 'terminated',
|
|
32
32
|
}
|
|
33
33
|
|
|
34
|
-
enum RTEConnectionStateEnum {
|
|
34
|
+
const enum RTEConnectionStateEnum {
|
|
35
35
|
CONNECTING = 'connecting', // actively establishing a connection (initial or reconnection)
|
|
36
36
|
CONNECTED = 'connected', // connected to broker
|
|
37
37
|
RECONNECTING = 'reconnecting', // lost connection and attempting to reconnect
|