@cloudflare/realtimekit 1.5.2-staging.6 → 1.5.2-staging.8
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/dist/EncryptionManager.d.ts +3 -1
- package/dist/browser.js +3 -3
- package/dist/dependencies.txt +1 -1
- package/dist/index.cjs.js +3 -3
- package/dist/index.d.ts +3 -1
- package/dist/index.es.js +35 -16
- package/dist/index.es5.js +62 -43
- package/dist/index.rn.js +3 -3
- package/dist/ts3.4/dist/EncryptionManager.d.ts +3 -1
- package/dist/ts3.4/dist/index.d.ts +3 -1
- package/package.json +1 -1
|
@@ -3966,7 +3966,9 @@ declare class MediaNodeClient {
|
|
|
3966
3966
|
constructor(context: Context<ContextState>, options: MediaNodeClientOptions);
|
|
3967
3967
|
get mediaJoined(): boolean;
|
|
3968
3968
|
set mediaJoined(joined: boolean);
|
|
3969
|
-
reset(
|
|
3969
|
+
reset({ resetTransportQueue }: {
|
|
3970
|
+
resetTransportQueue: boolean;
|
|
3971
|
+
}): void;
|
|
3970
3972
|
joinRoom(displayName: string, roomUuid: string, rejoining?: boolean, permissions?: MediaPermissions): Promise<{
|
|
3971
3973
|
roomJoined: boolean;
|
|
3972
3974
|
error?: Error;
|