@cloudflare/realtimekit 1.1.4-staging.2 → 1.1.4
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 +13 -13
- package/dist/index.cjs.js +14 -14
- package/dist/index.d.ts +1 -0
- package/dist/index.es.js +497 -489
- package/dist/index.rn.js +14 -14
- package/dist/ts3.4/dist/index.d.ts +1 -0
- package/package.json +3 -2
|
@@ -2897,6 +2897,7 @@ declare class RTKStage extends RTKTypedEventEmitter<StageEvents> {
|
|
|
2897
2897
|
cancelRequestAccess(): Promise<void>;
|
|
2898
2898
|
grantAccess(userIds: string[]): Promise<void>;
|
|
2899
2899
|
denyAccess(userIds: string[]): Promise<void>;
|
|
2900
|
+
readonly peerId: string;
|
|
2900
2901
|
join(): Promise<void>;
|
|
2901
2902
|
leave(): Promise<void>;
|
|
2902
2903
|
kick(userIds: string[]): Promise<{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloudflare/realtimekit",
|
|
3
|
-
"version": "1.1.4
|
|
3
|
+
"version": "1.1.4",
|
|
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",
|
|
@@ -63,7 +63,8 @@
|
|
|
63
63
|
"worker-timers": "7.0.60"
|
|
64
64
|
},
|
|
65
65
|
"publishConfig": {
|
|
66
|
-
"
|
|
66
|
+
"access": "public",
|
|
67
|
+
"tag": "latest"
|
|
67
68
|
},
|
|
68
69
|
"devDependencies": {},
|
|
69
70
|
"scripts": {
|