@cloudflare/realtimekit 1.1.6-staging.1 → 1.1.6
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 +9 -9
- package/dist/index.cjs.js +11 -11
- package/dist/index.d.ts +2 -2
- package/dist/index.es.js +786 -796
- package/dist/index.rn.js +11 -11
- package/dist/ts3.4/dist/index.d.ts +2 -2
- package/package.json +3 -2
|
@@ -5246,7 +5246,7 @@ declare class SocketService {
|
|
|
5246
5246
|
updateURL(peerID: string): void;
|
|
5247
5247
|
readonly url: string;
|
|
5248
5248
|
connect(): Promise<void>;
|
|
5249
|
-
disconnect():
|
|
5249
|
+
disconnect(): void;
|
|
5250
5250
|
readonly isConnected: boolean;
|
|
5251
5251
|
sendMessage(event: number, protobuf?: Uint8Array, messageId?: string): boolean;
|
|
5252
5252
|
sendMessagePromise(event: number, protobuf?: Uint8Array, messageId?: string, resp?: number): Promise<{
|
|
@@ -5281,7 +5281,7 @@ declare class RoomSocketHandler {
|
|
|
5281
5281
|
socket: SocketService;
|
|
5282
5282
|
readonly telemetry: RTKTelemetry;
|
|
5283
5283
|
readonly logger: RTKLogger$1;
|
|
5284
|
-
cleanup():
|
|
5284
|
+
cleanup(): void;
|
|
5285
5285
|
constructor(context: Context<RTKContextState>, socketService: SocketService);
|
|
5286
5286
|
joinRoom(opts: {
|
|
5287
5287
|
name: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloudflare/realtimekit",
|
|
3
|
-
"version": "1.1.6
|
|
3
|
+
"version": "1.1.6",
|
|
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": {
|