Skip to content
This repository was archived by the owner on Nov 5, 2025. It is now read-only.

Commit b5dcb6d

Browse files
feat: VideoConf Persistent Chat (#783)
1 parent 40184dd commit b5dcb6d

23 files changed

+162
-24
lines changed

deno-runtime/lib/accessors/builders/VideoConferenceBuilder.ts

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const { RocketChatAssociationModel } = require('@rocket.chat/apps-engine/definit
99
RocketChatAssociationModel: typeof _RocketChatAssociationModel;
1010
};
1111

12-
export type AppVideoConference = Pick<IGroupVideoConference, 'rid' | 'providerName' | 'providerData' | 'title'> & {
12+
export type AppVideoConference = Pick<IGroupVideoConference, 'rid' | 'providerName' | 'providerData' | 'title' | 'discussionRid'> & {
1313
createdBy: IGroupVideoConference['createdBy']['_id'];
1414
};
1515

@@ -28,6 +28,7 @@ export class VideoConferenceBuilder implements IVideoConferenceBuilder {
2828
createdBy: data.createdBy,
2929
providerName: data.providerName!,
3030
title: data.title!,
31+
discussionRid: data.discussionRid,
3132
};
3233

3334
return this;
@@ -78,6 +79,15 @@ export class VideoConferenceBuilder implements IVideoConferenceBuilder {
7879
return this.call.title;
7980
}
8081

82+
public setDiscussionRid(rid: AppVideoConference['discussionRid']): IVideoConferenceBuilder {
83+
this.call.discussionRid = rid;
84+
return this;
85+
}
86+
87+
public getDiscussionRid(): AppVideoConference['discussionRid'] {
88+
return this.call.discussionRid;
89+
}
90+
8191
public getVideoConference(): AppVideoConference {
8292
return this.call;
8393
}

deno-runtime/lib/accessors/extenders/VideoConferenceExtend.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,12 @@ export class VideoConferenceExtender implements IVideoConferenceExtender {
5757
return this;
5858
}
5959

60+
public setDiscussionRid(rid: VideoConference['discussionRid']): IVideoConferenceExtender {
61+
this.videoConference.discussionRid = rid;
62+
63+
return this;
64+
}
65+
6066
public getVideoConference(): VideoConference {
6167
return structuredClone(this.videoConference);
6268
}

docs/interfaces/accessors_IVideoConferenceBuilder.IVideoConferenceBuilder.html

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,15 @@ <h3 class="tsd-index-heading">Properties</h3>
3434
<section class="tsd-index-section">
3535
<h3 class="tsd-index-heading">Methods</h3>
3636
<div class="tsd-index-list"><a href="accessors_IVideoConferenceBuilder.IVideoConferenceBuilder.html#getCreatedBy" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-2048"><rect fill="var(--color-icon-background)" stroke="#FF4DB8" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><path d="M9.162 16V7.24H10.578L11.514 10.072C11.602 10.328 11.674 10.584 11.73 10.84C11.794 11.088 11.842 11.28 11.874 11.416C11.906 11.28 11.954 11.088 12.018 10.84C12.082 10.584 12.154 10.324 12.234 10.06L13.122 7.24H14.538V16H13.482V12.82C13.482 12.468 13.49 12.068 13.506 11.62C13.53 11.172 13.558 10.716 13.59 10.252C13.622 9.78 13.654 9.332 13.686 8.908C13.726 8.476 13.762 8.1 13.794 7.78L12.366 12.16H11.334L9.894 7.78C9.934 8.092 9.97 8.456 10.002 8.872C10.042 9.28 10.078 9.716 10.11 10.18C10.142 10.636 10.166 11.092 10.182 11.548C10.206 12.004 10.218 12.428 10.218 12.82V16H9.162Z" fill="var(--color-text)"></path></g></svg><span>get<wbr/>Created<wbr/>By</span></a>
37+
<a href="accessors_IVideoConferenceBuilder.IVideoConferenceBuilder.html#getDiscussionRid" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>get<wbr/>Discussion<wbr/>Rid</span></a>
3738
<a href="accessors_IVideoConferenceBuilder.IVideoConferenceBuilder.html#getProviderData" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>get<wbr/>Provider<wbr/>Data</span></a>
3839
<a href="accessors_IVideoConferenceBuilder.IVideoConferenceBuilder.html#getProviderName" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>get<wbr/>Provider<wbr/>Name</span></a>
3940
<a href="accessors_IVideoConferenceBuilder.IVideoConferenceBuilder.html#getRoomId" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>get<wbr/>Room<wbr/>Id</span></a>
4041
<a href="accessors_IVideoConferenceBuilder.IVideoConferenceBuilder.html#getTitle" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>get<wbr/>Title</span></a>
4142
<a href="accessors_IVideoConferenceBuilder.IVideoConferenceBuilder.html#getVideoConference" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>get<wbr/>Video<wbr/>Conference</span></a>
4243
<a href="accessors_IVideoConferenceBuilder.IVideoConferenceBuilder.html#setCreatedBy" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>set<wbr/>Created<wbr/>By</span></a>
4344
<a href="accessors_IVideoConferenceBuilder.IVideoConferenceBuilder.html#setData" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>set<wbr/>Data</span></a>
45+
<a href="accessors_IVideoConferenceBuilder.IVideoConferenceBuilder.html#setDiscussionRid" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>set<wbr/>Discussion<wbr/>Rid</span></a>
4446
<a href="accessors_IVideoConferenceBuilder.IVideoConferenceBuilder.html#setProviderData" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>set<wbr/>Provider<wbr/>Data</span></a>
4547
<a href="accessors_IVideoConferenceBuilder.IVideoConferenceBuilder.html#setProviderName" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>set<wbr/>Provider<wbr/>Name</span></a>
4648
<a href="accessors_IVideoConferenceBuilder.IVideoConferenceBuilder.html#setRoomId" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>set<wbr/>Room<wbr/>Id</span></a>
@@ -63,6 +65,14 @@ <h3 class="tsd-anchor-link"><span>get<wbr/>Created<wbr/>By</span><a href="#getCr
6365
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4><aside class="tsd-sources">
6466
<ul>
6567
<li>Defined in <a href="https://github.com/RocketChat/Rocket.Chat.Apps-engine/blob/master/src/definition/accessors/IVideoConferenceBuilder.ts#L15">src/definition/accessors/IVideoConferenceBuilder.ts:15</a></li></ul></aside></li></ul></section>
68+
<section class="tsd-panel tsd-member"><a id="getDiscussionRid" class="tsd-anchor"></a>
69+
<h3 class="tsd-anchor-link"><span>get<wbr/>Discussion<wbr/>Rid</span><a href="#getDiscussionRid" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
70+
<ul class="tsd-signatures">
71+
<li class="tsd-signature tsd-anchor-link" id="getDiscussionRid.getDiscussionRid-1"><span class="tsd-kind-call-signature">get<wbr/>Discussion<wbr/>Rid</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><a href="#getDiscussionRid.getDiscussionRid-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
72+
<li class="tsd-description">
73+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4><aside class="tsd-sources">
74+
<ul>
75+
<li>Defined in <a href="https://github.com/RocketChat/Rocket.Chat.Apps-engine/blob/master/src/definition/accessors/IVideoConferenceBuilder.ts#L31">src/definition/accessors/IVideoConferenceBuilder.ts:31</a></li></ul></aside></li></ul></section>
6676
<section class="tsd-panel tsd-member"><a id="getProviderData" class="tsd-anchor"></a>
6777
<h3 class="tsd-anchor-link"><span>get<wbr/>Provider<wbr/>Data</span><a href="#getProviderData" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
6878
<ul class="tsd-signatures">
@@ -102,7 +112,7 @@ <h3 class="tsd-anchor-link"><span>get<wbr/>Video<wbr/>Conference</span><a href="
102112
<li class="tsd-description">
103113
<h4 class="tsd-returns-title">Returns <a href="../types/videoConferences_AppVideoConference.AppVideoConference.html" class="tsd-signature-type tsd-kind-type-alias">AppVideoConference</a></h4><aside class="tsd-sources">
104114
<ul>
105-
<li>Defined in <a href="https://github.com/RocketChat/Rocket.Chat.Apps-engine/blob/master/src/definition/accessors/IVideoConferenceBuilder.ts#L29">src/definition/accessors/IVideoConferenceBuilder.ts:29</a></li></ul></aside></li></ul></section>
115+
<li>Defined in <a href="https://github.com/RocketChat/Rocket.Chat.Apps-engine/blob/master/src/definition/accessors/IVideoConferenceBuilder.ts#L33">src/definition/accessors/IVideoConferenceBuilder.ts:33</a></li></ul></aside></li></ul></section>
106116
<section class="tsd-panel tsd-member"><a id="setCreatedBy" class="tsd-anchor"></a>
107117
<h3 class="tsd-anchor-link"><span>set<wbr/>Created<wbr/>By</span><a href="#setCreatedBy" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
108118
<ul class="tsd-signatures">
@@ -129,6 +139,19 @@ <h5><span class="tsd-kind-parameter">call</span>: <span class="tsd-signature-typ
129139
<h4 class="tsd-returns-title">Returns <a href="accessors_IVideoConferenceBuilder.IVideoConferenceBuilder.html" class="tsd-signature-type tsd-kind-interface">IVideoConferenceBuilder</a></h4><aside class="tsd-sources">
130140
<ul>
131141
<li>Defined in <a href="https://github.com/RocketChat/Rocket.Chat.Apps-engine/blob/master/src/definition/accessors/IVideoConferenceBuilder.ts#L7">src/definition/accessors/IVideoConferenceBuilder.ts:7</a></li></ul></aside></li></ul></section>
142+
<section class="tsd-panel tsd-member"><a id="setDiscussionRid" class="tsd-anchor"></a>
143+
<h3 class="tsd-anchor-link"><span>set<wbr/>Discussion<wbr/>Rid</span><a href="#setDiscussionRid" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
144+
<ul class="tsd-signatures">
145+
<li class="tsd-signature tsd-anchor-link" id="setDiscussionRid.setDiscussionRid-1"><span class="tsd-kind-call-signature">set<wbr/>Discussion<wbr/>Rid</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">rid</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="accessors_IVideoConferenceBuilder.IVideoConferenceBuilder.html" class="tsd-signature-type tsd-kind-interface">IVideoConferenceBuilder</a><a href="#setDiscussionRid.setDiscussionRid-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
146+
<li class="tsd-description">
147+
<div class="tsd-parameters">
148+
<h4 class="tsd-parameters-title">Parameters</h4>
149+
<ul class="tsd-parameter-list">
150+
<li>
151+
<h5><span class="tsd-kind-parameter">rid</span>: <span class="tsd-signature-type">string</span></h5></li></ul></div>
152+
<h4 class="tsd-returns-title">Returns <a href="accessors_IVideoConferenceBuilder.IVideoConferenceBuilder.html" class="tsd-signature-type tsd-kind-interface">IVideoConferenceBuilder</a></h4><aside class="tsd-sources">
153+
<ul>
154+
<li>Defined in <a href="https://github.com/RocketChat/Rocket.Chat.Apps-engine/blob/master/src/definition/accessors/IVideoConferenceBuilder.ts#L29">src/definition/accessors/IVideoConferenceBuilder.ts:29</a></li></ul></aside></li></ul></section>
132155
<section class="tsd-panel tsd-member"><a id="setProviderData" class="tsd-anchor"></a>
133156
<h3 class="tsd-anchor-link"><span>set<wbr/>Provider<wbr/>Data</span><a href="#setProviderData" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
134157
<ul class="tsd-signatures">
@@ -201,13 +224,15 @@ <h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="#icon
201224
<ul>
202225
<li><a href="#kind" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>kind</span></a></li>
203226
<li><a href="#getCreatedBy" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>get<wbr/>Created<wbr/>By</span></a></li>
227+
<li><a href="#getDiscussionRid" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>get<wbr/>Discussion<wbr/>Rid</span></a></li>
204228
<li><a href="#getProviderData" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>get<wbr/>Provider<wbr/>Data</span></a></li>
205229
<li><a href="#getProviderName" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>get<wbr/>Provider<wbr/>Name</span></a></li>
206230
<li><a href="#getRoomId" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>get<wbr/>Room<wbr/>Id</span></a></li>
207231
<li><a href="#getTitle" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>get<wbr/>Title</span></a></li>
208232
<li><a href="#getVideoConference" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>get<wbr/>Video<wbr/>Conference</span></a></li>
209233
<li><a href="#setCreatedBy" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>set<wbr/>Created<wbr/>By</span></a></li>
210234
<li><a href="#setData" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>set<wbr/>Data</span></a></li>
235+
<li><a href="#setDiscussionRid" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>set<wbr/>Discussion<wbr/>Rid</span></a></li>
211236
<li><a href="#setProviderData" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>set<wbr/>Provider<wbr/>Data</span></a></li>
212237
<li><a href="#setProviderName" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>set<wbr/>Provider<wbr/>Name</span></a></li>
213238
<li><a href="#setRoomId" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>set<wbr/>Room<wbr/>Id</span></a></li>

docs/interfaces/accessors_IVideoConferenceExtend.IVideoConferenceExtender.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ <h3 class="tsd-index-heading">Properties</h3>
3535
<h3 class="tsd-index-heading">Methods</h3>
3636
<div class="tsd-index-list"><a href="accessors_IVideoConferenceExtend.IVideoConferenceExtender.html#addUser" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><g id="icon-2048"><rect fill="var(--color-icon-background)" stroke="#FF4DB8" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12"></rect><path d="M9.162 16V7.24H10.578L11.514 10.072C11.602 10.328 11.674 10.584 11.73 10.84C11.794 11.088 11.842 11.28 11.874 11.416C11.906 11.28 11.954 11.088 12.018 10.84C12.082 10.584 12.154 10.324 12.234 10.06L13.122 7.24H14.538V16H13.482V12.82C13.482 12.468 13.49 12.068 13.506 11.62C13.53 11.172 13.558 10.716 13.59 10.252C13.622 9.78 13.654 9.332 13.686 8.908C13.726 8.476 13.762 8.1 13.794 7.78L12.366 12.16H11.334L9.894 7.78C9.934 8.092 9.97 8.456 10.002 8.872C10.042 9.28 10.078 9.716 10.11 10.18C10.142 10.636 10.166 11.092 10.182 11.548C10.206 12.004 10.218 12.428 10.218 12.82V16H9.162Z" fill="var(--color-text)"></path></g></svg><span>add<wbr/>User</span></a>
3737
<a href="accessors_IVideoConferenceExtend.IVideoConferenceExtender.html#getVideoConference" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>get<wbr/>Video<wbr/>Conference</span></a>
38+
<a href="accessors_IVideoConferenceExtend.IVideoConferenceExtender.html#setDiscussionRid" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>set<wbr/>Discussion<wbr/>Rid</span></a>
3839
<a href="accessors_IVideoConferenceExtend.IVideoConferenceExtender.html#setEndedAt" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>set<wbr/>Ended<wbr/>At</span></a>
3940
<a href="accessors_IVideoConferenceExtend.IVideoConferenceExtender.html#setEndedBy" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>set<wbr/>Ended<wbr/>By</span></a>
4041
<a href="accessors_IVideoConferenceExtend.IVideoConferenceExtender.html#setProviderData" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>set<wbr/>Provider<wbr/>Data</span></a>
@@ -71,6 +72,19 @@ <h3 class="tsd-anchor-link"><span>get<wbr/>Video<wbr/>Conference</span><a href="
7172
<li class="tsd-description">
7273
<h4 class="tsd-returns-title">Returns <a href="../types/videoConferences_IVideoConference.VideoConference.html" class="tsd-signature-type tsd-kind-type-alias">VideoConference</a></h4><aside class="tsd-sources">
7374
<ul>
75+
<li>Defined in <a href="https://github.com/RocketChat/Rocket.Chat.Apps-engine/blob/master/src/definition/accessors/IVideoConferenceExtend.ts#L20">src/definition/accessors/IVideoConferenceExtend.ts:20</a></li></ul></aside></li></ul></section>
76+
<section class="tsd-panel tsd-member"><a id="setDiscussionRid" class="tsd-anchor"></a>
77+
<h3 class="tsd-anchor-link"><span>set<wbr/>Discussion<wbr/>Rid</span><a href="#setDiscussionRid" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
78+
<ul class="tsd-signatures">
79+
<li class="tsd-signature tsd-anchor-link" id="setDiscussionRid.setDiscussionRid-1"><span class="tsd-kind-call-signature">set<wbr/>Discussion<wbr/>Rid</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">rid</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="accessors_IVideoConferenceExtend.IVideoConferenceExtender.html" class="tsd-signature-type tsd-kind-interface">IVideoConferenceExtender</a><a href="#setDiscussionRid.setDiscussionRid-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></li>
80+
<li class="tsd-description">
81+
<div class="tsd-parameters">
82+
<h4 class="tsd-parameters-title">Parameters</h4>
83+
<ul class="tsd-parameter-list">
84+
<li>
85+
<h5><span class="tsd-kind-parameter">rid</span>: <span class="tsd-signature-type">string</span></h5></li></ul></div>
86+
<h4 class="tsd-returns-title">Returns <a href="accessors_IVideoConferenceExtend.IVideoConferenceExtender.html" class="tsd-signature-type tsd-kind-interface">IVideoConferenceExtender</a></h4><aside class="tsd-sources">
87+
<ul>
7488
<li>Defined in <a href="https://github.com/RocketChat/Rocket.Chat.Apps-engine/blob/master/src/definition/accessors/IVideoConferenceExtend.ts#L18">src/definition/accessors/IVideoConferenceExtend.ts:18</a></li></ul></aside></li></ul></section>
7589
<section class="tsd-panel tsd-member"><a id="setEndedAt" class="tsd-anchor"></a>
7690
<h3 class="tsd-anchor-link"><span>set<wbr/>Ended<wbr/>At</span><a href="#setEndedAt" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="#icon-anchor"></use></svg></a></h3>
@@ -145,6 +159,7 @@ <h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="#icon
145159
<li><a href="#kind" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-1024"></use></svg><span>kind</span></a></li>
146160
<li><a href="#addUser" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>add<wbr/>User</span></a></li>
147161
<li><a href="#getVideoConference" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>get<wbr/>Video<wbr/>Conference</span></a></li>
162+
<li><a href="#setDiscussionRid" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>set<wbr/>Discussion<wbr/>Rid</span></a></li>
148163
<li><a href="#setEndedAt" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>set<wbr/>Ended<wbr/>At</span></a></li>
149164
<li><a href="#setEndedBy" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>set<wbr/>Ended<wbr/>By</span></a></li>
150165
<li><a href="#setProviderData" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="#icon-2048"></use></svg><span>set<wbr/>Provider<wbr/>Data</span></a></li>

0 commit comments

Comments
 (0)