@cloudflare/realtimekit-react 0.5.0-staging.99 → 1.0.1
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/index.cjs.js +15 -17
- package/dist/index.d.ts +3 -3
- package/dist/index.es.js +8225 -9108
- package/package.json +4 -3
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import RTKClient, { RealtimeKitClientOptions } from '@cloudflare/realtimekit';
|
|
2
|
-
export { RTKBasicParticipant, RTKConnectedMeetings, RTKParticipant, RTKParticipantMap, RTKParticipants, RTKPermissionsPreset, RTKPlugin, RTKSelf, RTKSelfMedia, RTKThemePreset } from '@cloudflare/realtimekit';
|
|
2
|
+
export { ActiveTab, ActiveTabType, AudioConsumerScoreStats, AudioMiddleware, AudioProducerScoreStats, BroadcastMessagePayload, ChatChannel, ChatUpdateParams, CustomMessage, DeviceConfig, FileMessage, ImageMessage, JoinedPeer, LeaveRoomState, LivestreamIngestionCredentials, LivestreamState, LogData, MediaConnectionState, MediaConnectionUpdate, MediaKind, MediaPermission, Message, ProducerScoreStats, RTKBasicParticipant, RTKChat, RTKConnectedMeetings, RTKLivestream, RTKMeta, RTKParticipant, RTKParticipantMap, RTKParticipants, RTKPermissionsPreset, RTKPlugin, RTKPluginMap, RTKPlugins, RTKPolls, RTKRecording, RTKSelf, RTKSelfMedia, RTKStore, RTKThemePreset, RecordingState, RequestToJoinType, SocketConnectionState, StageStatus, StartLivestreamConfig, TextMessage, VideoConsumerScoreStats, VideoMiddleware, VideoProducerScoreStats, VideoQualityConstraints, leaveRoomState } from '@cloudflare/realtimekit';
|
|
3
3
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
4
|
import React, { ReactNode } from 'react';
|
|
5
5
|
|
|
@@ -14,7 +14,7 @@ declare class RTKUpdates {
|
|
|
14
14
|
private onUpdate;
|
|
15
15
|
}
|
|
16
16
|
declare const RealtimeKitContext: React.Context<{
|
|
17
|
-
meeting:
|
|
17
|
+
meeting: RTKClient | undefined;
|
|
18
18
|
updates: RTKUpdates | undefined;
|
|
19
19
|
}>;
|
|
20
20
|
/**
|
|
@@ -34,7 +34,7 @@ declare function RealtimeKitProvider({ value, children, fallback, }: {
|
|
|
34
34
|
* @returns meeting instance
|
|
35
35
|
*/
|
|
36
36
|
declare const useRealtimeKitMeeting: () => {
|
|
37
|
-
meeting:
|
|
37
|
+
meeting: RTKClient;
|
|
38
38
|
};
|
|
39
39
|
|
|
40
40
|
interface DyteClientParams {
|