You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/client/src/Call.ts
+40-3Lines changed: 40 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -39,6 +39,7 @@ import type {
39
39
EndCallResponse,
40
40
GetCallReportResponse,
41
41
GetCallResponse,
42
+
GetCallSessionParticipantStatsDetailsResponse,
42
43
GetOrCreateCallRequest,
43
44
GetOrCreateCallResponse,
44
45
GoLiveRequest,
@@ -55,6 +56,8 @@ import type {
55
56
PinResponse,
56
57
QueryCallMembersRequest,
57
58
QueryCallMembersResponse,
59
+
QueryCallSessionParticipantStatsResponse,
60
+
QueryCallSessionParticipantStatsTimelineResponse,
58
61
RejectCallRequest,
59
62
RejectCallResponse,
60
63
RequestPermissionRequest,
@@ -2238,13 +2241,10 @@ export class Call {
2238
2241
2239
2242
/**
2240
2243
* Allows you to grant or revoke a specific permission to a user in a call. The permissions are specific to the call experience and do not survive the call itself.
2241
-
*
2242
2244
* When revoking a permission, this endpoint will also mute the relevant track from the user. This is similar to muting a user with the difference that the user will not be able to unmute afterwards.
2243
-
*
2244
2245
* Supported permissions that can be granted or revoked: `send-audio`, `send-video` and `screenshare`.
2245
2246
*
2246
2247
* `call.permissions_updated` event is sent to all members of the call.
0 commit comments