@cloudflare/realtimekit 0.5.0-staging.97 → 0.5.0-staging.99
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/browser.js +16 -16
- package/dist/index.cjs.js +16 -16
- package/dist/index.d.ts +2 -2
- package/dist/index.es.js +1509 -1522
- package/dist/index.rn.js +24 -0
- package/dist/ts3.4/dist/index.d.ts +2 -2
- package/package.json +2 -1
|
@@ -3975,8 +3975,8 @@ declare class MediaNodeClient {
|
|
|
3975
3975
|
unmuteSelf(): Promise<void>;
|
|
3976
3976
|
resetVideoProducers(videoTrack: MediaStreamTrack, screenShareTrack?: MediaStreamTrack): Promise<void>;
|
|
3977
3977
|
changeDisplayName(displayName: string, peerId?: string): Promise<void>;
|
|
3978
|
-
kick(peerId: string):
|
|
3979
|
-
kickAll():
|
|
3978
|
+
kick(peerId: string): void;
|
|
3979
|
+
kickAll(): void;
|
|
3980
3980
|
muteAll(_allowUnMute: boolean): Promise<void>;
|
|
3981
3981
|
muteAllVideo(): Promise<void>;
|
|
3982
3982
|
disableAudio(peerId: string): Promise<void>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloudflare/realtimekit",
|
|
3
|
-
"version": "0.5.0-staging.
|
|
3
|
+
"version": "0.5.0-staging.99",
|
|
4
4
|
"description": "A real-time video and audio SDK for building custom, collaborative communication experiences.",
|
|
5
5
|
"main": "./dist/index.cjs.js",
|
|
6
6
|
"module": "./dist/index.es.js",
|
|
@@ -41,6 +41,7 @@
|
|
|
41
41
|
}
|
|
42
42
|
}
|
|
43
43
|
},
|
|
44
|
+
"react-native": "./dist/index.rn.js",
|
|
44
45
|
"types": "./dist/index.d.ts",
|
|
45
46
|
"typesVersions": {
|
|
46
47
|
"<4.0": {
|