Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/react-native-core/Reference/DyteChat.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
sidebar_position: 8
web_core_version: 0.24.0
web_core_version: 0.26.0
---

<!-- Auto Generated Below -->
Expand Down
2 changes: 1 addition & 1 deletion docs/react-native-core/Reference/DyteClient.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
sidebar_position: 1
web_core_version: 0.24.0
web_core_version: 0.26.0
---

<!-- Auto Generated Below -->
Expand Down
32 changes: 16 additions & 16 deletions docs/react-native-core/Reference/DyteMeta.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
sidebar_position: 7
web_core_version: 0.24.0
web_core_version: 0.26.0
---

<!-- Auto Generated Below -->
Expand All @@ -11,16 +11,22 @@ This consists of the metadata of the meeting, such as the room name and the titl


* [DyteMeta](#module_DyteMeta)
* [.roomName](#module_DyteMeta+roomName)
* [.joined](#module_DyteMeta+joined)
* [.roomType](#module_DyteMeta+roomType)
* [.meetingTitle](#module_DyteMeta+meetingTitle)
* [.meetingStartedTimestamp](#module_DyteMeta+meetingStartedTimestamp)
* [.joined](#module_DyteMeta+joined)
* [.roomName](#module_DyteMeta+roomName)
* [.meetingTitle](#module_DyteMeta+meetingTitle)

<a name="module_DyteMeta+roomName"></a>
<a name="module_DyteMeta+roomType"></a>

### meeting.meta.roomName
The room name of the meeting.
### meeting.meta.roomType
Indicates the meeting is a group-call or a webinar.

**Kind**: instance property of [<code>DyteMeta</code>](#module_DyteMeta)
<a name="module_DyteMeta+meetingStartedTimestamp"></a>

### meeting.meta.meetingStartedTimestamp
The timestamp of the time when the meeting started.

**Kind**: instance property of [<code>DyteMeta</code>](#module_DyteMeta)
<a name="module_DyteMeta+joined"></a>
Expand All @@ -29,10 +35,10 @@ The room name of the meeting.
This is set to true if the current user has joined the meeting.

**Kind**: instance property of [<code>DyteMeta</code>](#module_DyteMeta)
<a name="module_DyteMeta+roomType"></a>
<a name="module_DyteMeta+roomName"></a>

### meeting.meta.roomType
Indicates the meeting is a group-call or a webinar.
### meeting.meta.roomName
The room name of the meeting.

**Kind**: instance property of [<code>DyteMeta</code>](#module_DyteMeta)
<a name="module_DyteMeta+meetingTitle"></a>
Expand All @@ -41,9 +47,3 @@ Indicates the meeting is a group-call or a webinar.
The title of the meeting.

**Kind**: instance property of [<code>DyteMeta</code>](#module_DyteMeta)
<a name="module_DyteMeta+meetingStartedTimestamp"></a>

### meeting.meta.meetingStartedTimestamp
The timestamp of the time when the meeting started.

**Kind**: instance property of [<code>DyteMeta</code>](#module_DyteMeta)
30 changes: 29 additions & 1 deletion docs/react-native-core/Reference/DyteParticipant.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
sidebar_position: 5
web_core_version: 0.24.0
web_core_version: 0.26.0
---

<!-- Auto Generated Below -->
Expand Down Expand Up @@ -32,6 +32,10 @@ const participant4 = meeting.participants.active.toArray().filter((p) => p.name
* [.audioEnabled](#module_DyteParticipant+audioEnabled)
* [.screenShareEnabled](#module_DyteParticipant+screenShareEnabled)
* [.supportsRemoteControl](#module_DyteParticipant+supportsRemoteControl)
* [.isPinned](#module_DyteParticipant+isPinned)
* [.pin()](#module_DyteParticipant+pin)
* [.unpin()](#module_DyteParticipant+unpin)
* [.setIsPinned()](#module_DyteParticipant+setIsPinned)

<a name="module_DyteParticipant+id"></a>

Expand Down Expand Up @@ -112,3 +116,27 @@ This is true if the participant is screensharing.
This is true if the dyte participant supports remote control.

**Kind**: instance property of [<code>DyteParticipant</code>](#module_DyteParticipant)
<a name="module_DyteParticipant+isPinned"></a>

### participant.isPinned
Returns true if the participant is pinned.

**Kind**: instance property of [<code>DyteParticipant</code>](#module_DyteParticipant)
<a name="module_DyteParticipant+pin"></a>

### participant.pin()
Returns `participant.id` if user has permission
to pin participants.

**Kind**: instance method of [<code>DyteParticipant</code>](#module_DyteParticipant)
<a name="module_DyteParticipant+unpin"></a>

### participant.unpin()
Returns `participant.id` if user has permission
to unpin participants.

**Kind**: instance method of [<code>DyteParticipant</code>](#module_DyteParticipant)
<a name="module_DyteParticipant+setIsPinned"></a>

### participant.setIsPinned()
**Kind**: instance method of [<code>DyteParticipant</code>](#module_DyteParticipant)
2 changes: 1 addition & 1 deletion docs/react-native-core/Reference/DyteParticipantMap.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
sidebar_position: 4
web_core_version: 0.24.0
web_core_version: 0.26.0
---

<!-- Auto Generated Below -->
Expand Down
25 changes: 8 additions & 17 deletions docs/react-native-core/Reference/DyteParticipants.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
sidebar_position: 3
web_core_version: 0.24.0
web_core_version: 0.26.0
---

<!-- Auto Generated Below -->
Expand Down Expand Up @@ -29,13 +29,12 @@ This module represents all the participants in the meeting. It consists of 4 map
* [.rejectWaitingRoomRequest(id)](#module_DyteParticipants+rejectWaitingRoomRequest)
* [.setViewMode(viewMode)](#module_DyteParticipants+setViewMode)
* [.setPage(page)](#module_DyteParticipants+setPage)
* [.pin()](#module_DyteParticipants+pin)
* [.unpin()](#module_DyteParticipants+unpin)
* [.disableAllAudio(allowUnMute)](#module_DyteParticipants+disableAllAudio)
* [.disableAllVideo()](#module_DyteParticipants+disableAllVideo)
* [.disableAudio(peerId)](#module_DyteParticipants+disableAudio)
* [.disableVideo(peerId)](#module_DyteParticipants+disableVideo)
* [.kickAll()](#module_DyteParticipants+kickAll)
* [.broadcastMessage()](#module_DyteParticipants+broadcastMessage)
* [.kick(peerId)](#module_DyteParticipants+kick)

<a name="module_DyteParticipants+waitlisted"></a>
Expand Down Expand Up @@ -157,20 +156,6 @@ Does not do anything in ACTIVE_GRID mode.
| --- | --- |
| page | The page number to be set. |

<a name="module_DyteParticipants+pin"></a>

### meeting.participants.pin()
Returns `participant.id` if user has permission
to pin participants.

**Kind**: instance method of [<code>DyteParticipants</code>](#module_DyteParticipants)
<a name="module_DyteParticipants+unpin"></a>

### meeting.participants.unpin()
Returns `participant.id` if user has permission
to unpin participants.

**Kind**: instance method of [<code>DyteParticipants</code>](#module_DyteParticipants)
<a name="module_DyteParticipants+disableAllAudio"></a>

### meeting.participants.disableAllAudio(allowUnMute)
Expand Down Expand Up @@ -215,6 +200,12 @@ Disables video for the given participant.
### meeting.participants.kickAll()
Kicks all participants from the meeting.

**Kind**: instance method of [<code>DyteParticipants</code>](#module_DyteParticipants)
<a name="module_DyteParticipants+broadcastMessage"></a>

### meeting.participants.broadcastMessage()
Broadcasts the message to all participants including `self`.

**Kind**: instance method of [<code>DyteParticipants</code>](#module_DyteParticipants)
<a name="module_DyteParticipants+kick"></a>

Expand Down
2 changes: 1 addition & 1 deletion docs/react-native-core/Reference/DytePermissionsPreset.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
sidebar_position: 6
web_core_version: 0.24.0
web_core_version: 0.26.0
---

<!-- Auto Generated Below -->
Expand Down
2 changes: 1 addition & 1 deletion docs/react-native-core/Reference/DytePlugin.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
sidebar_position: 12
web_core_version: 0.24.0
web_core_version: 0.26.0
---

<!-- Auto Generated Below -->
Expand Down
2 changes: 1 addition & 1 deletion docs/react-native-core/Reference/DytePluginMap.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
sidebar_position: 11
web_core_version: 0.24.0
web_core_version: 0.26.0
---

<!-- Auto Generated Below -->
Expand Down
2 changes: 1 addition & 1 deletion docs/react-native-core/Reference/DytePlugins.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
sidebar_position: 10
web_core_version: 0.24.0
web_core_version: 0.26.0
---

<!-- Auto Generated Below -->
Expand Down
2 changes: 1 addition & 1 deletion docs/react-native-core/Reference/DytePolls.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
sidebar_position: 9
web_core_version: 0.24.0
web_core_version: 0.26.0
---

<!-- Auto Generated Below -->
Expand Down
2 changes: 1 addition & 1 deletion docs/react-native-core/Reference/DyteRecording.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
sidebar_position: 15
web_core_version: 0.24.0
web_core_version: 0.26.0
---

<!-- Auto Generated Below -->
Expand Down
2 changes: 1 addition & 1 deletion docs/react-native-core/Reference/DyteRemote.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
sidebar_position: 14
web_core_version: 0.24.0
web_core_version: 0.26.0
---

<!-- Auto Generated Below -->
Expand Down
15 changes: 11 additions & 4 deletions docs/react-native-core/Reference/DyteSelf.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
sidebar_position: 2
web_core_version: 0.24.0
web_core_version: 0.26.0
---

<!-- Auto Generated Below -->
Expand All @@ -25,6 +25,7 @@ this module.
* [.permissions](#module_DyteSelf+permissions)
* [.suggestedTheme](#module_DyteSelf+suggestedTheme)
* [.roomJoined](#module_DyteSelf+roomJoined)
* [.isPinned](#module_DyteSelf+isPinned)
* [.addAudioMiddleware()](#module_DyteSelf+addAudioMiddleware)
* [.removeAudioMiddleware()](#module_DyteSelf+removeAudioMiddleware)
* [.addVideoMiddleware()](#module_DyteSelf+addVideoMiddleware)
Expand All @@ -45,7 +46,7 @@ this module.
* [.getSpeakerDevices()](#module_DyteSelf+getSpeakerDevices)
* [.getDeviceById(deviceId, kind)](#module_DyteSelf+getDeviceById)
* [.getAllDevices()](#module_DyteSelf+getAllDevices)
* [.pinned()](#module_DyteSelf+pinned)
* [.setIsPinned()](#module_DyteSelf+setIsPinned)
* [.pin()](#module_DyteSelf+pin)
* [.unpin()](#module_DyteSelf+unpin)
* [.setDevice(device, preview)](#module_DyteSelf+setDevice)
Expand Down Expand Up @@ -125,6 +126,12 @@ Returns suggested theme for the meeting.
### meeting.self.roomJoined
Returns true if the local participant has joined the meeting.

**Kind**: instance property of [<code>DyteSelf</code>](#module_DyteSelf)
<a name="module_DyteSelf+isPinned"></a>

### meeting.self.isPinned
Returns true if the current user is pinned.

**Kind**: instance property of [<code>DyteSelf</code>](#module_DyteSelf)
<a name="module_DyteSelf+addAudioMiddleware"></a>

Expand Down Expand Up @@ -283,9 +290,9 @@ Returns the local participant's device, indexed by ID and kind.
Returns all media devices accessible by the local participant.

**Kind**: instance method of [<code>DyteSelf</code>](#module_DyteSelf)
<a name="module_DyteSelf+pinned"></a>
<a name="module_DyteSelf+setIsPinned"></a>

### meeting.self.pinned()
### meeting.self.setIsPinned()
**Kind**: instance method of [<code>DyteSelf</code>](#module_DyteSelf)
<a name="module_DyteSelf+pin"></a>

Expand Down
2 changes: 1 addition & 1 deletion docs/react-native-core/Reference/DyteThemePreset.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
sidebar_position: 13
web_core_version: 0.24.0
web_core_version: 0.26.0
---

<!-- Auto Generated Below -->
Expand Down
2 changes: 1 addition & 1 deletion docs/react-web-core/Reference/DyteChat.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
sidebar_position: 8
web_core_version: 0.24.0
web_core_version: 0.26.0
---

<!-- Auto Generated Below -->
Expand Down
2 changes: 1 addition & 1 deletion docs/react-web-core/Reference/DyteClient.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
sidebar_position: 1
web_core_version: 0.24.0
web_core_version: 0.26.0
---

<!-- Auto Generated Below -->
Expand Down
32 changes: 16 additions & 16 deletions docs/react-web-core/Reference/DyteMeta.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
sidebar_position: 7
web_core_version: 0.24.0
web_core_version: 0.26.0
---

<!-- Auto Generated Below -->
Expand All @@ -11,16 +11,22 @@ This consists of the metadata of the meeting, such as the room name and the titl


* [DyteMeta](#module_DyteMeta)
* [.roomName](#module_DyteMeta+roomName)
* [.joined](#module_DyteMeta+joined)
* [.roomType](#module_DyteMeta+roomType)
* [.meetingTitle](#module_DyteMeta+meetingTitle)
* [.meetingStartedTimestamp](#module_DyteMeta+meetingStartedTimestamp)
* [.joined](#module_DyteMeta+joined)
* [.roomName](#module_DyteMeta+roomName)
* [.meetingTitle](#module_DyteMeta+meetingTitle)

<a name="module_DyteMeta+roomName"></a>
<a name="module_DyteMeta+roomType"></a>

### meeting.meta.roomName
The room name of the meeting.
### meeting.meta.roomType
Indicates the meeting is a group-call or a webinar.

**Kind**: instance property of [<code>DyteMeta</code>](#module_DyteMeta)
<a name="module_DyteMeta+meetingStartedTimestamp"></a>

### meeting.meta.meetingStartedTimestamp
The timestamp of the time when the meeting started.

**Kind**: instance property of [<code>DyteMeta</code>](#module_DyteMeta)
<a name="module_DyteMeta+joined"></a>
Expand All @@ -29,10 +35,10 @@ The room name of the meeting.
This is set to true if the current user has joined the meeting.

**Kind**: instance property of [<code>DyteMeta</code>](#module_DyteMeta)
<a name="module_DyteMeta+roomType"></a>
<a name="module_DyteMeta+roomName"></a>

### meeting.meta.roomType
Indicates the meeting is a group-call or a webinar.
### meeting.meta.roomName
The room name of the meeting.

**Kind**: instance property of [<code>DyteMeta</code>](#module_DyteMeta)
<a name="module_DyteMeta+meetingTitle"></a>
Expand All @@ -41,9 +47,3 @@ Indicates the meeting is a group-call or a webinar.
The title of the meeting.

**Kind**: instance property of [<code>DyteMeta</code>](#module_DyteMeta)
<a name="module_DyteMeta+meetingStartedTimestamp"></a>

### meeting.meta.meetingStartedTimestamp
The timestamp of the time when the meeting started.

**Kind**: instance property of [<code>DyteMeta</code>](#module_DyteMeta)
Loading