|
20 | 20 | import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
|
21 | 21 | import { Message, proto2 } from "@bufbuild/protobuf";
|
22 | 22 | import { ConnectCallback, ConnectRequest, ConnectResponse, DisconnectCallback, DisconnectRequest, DisconnectResponse, EditChatMessageRequest, GetSessionStatsCallback, GetSessionStatsRequest, GetSessionStatsResponse, PublishDataCallback, PublishDataRequest, PublishDataResponse, PublishSipDtmfCallback, PublishSipDtmfRequest, PublishSipDtmfResponse, PublishTrackCallback, PublishTrackRequest, PublishTrackResponse, PublishTranscriptionCallback, PublishTranscriptionRequest, PublishTranscriptionResponse, RoomEvent, SendChatMessageCallback, SendChatMessageRequest, SendChatMessageResponse, SendStreamChunkCallback, SendStreamChunkRequest, SendStreamChunkResponse, SendStreamHeaderCallback, SendStreamHeaderRequest, SendStreamHeaderResponse, SendStreamTrailerCallback, SendStreamTrailerRequest, SendStreamTrailerResponse, SetDataChannelBufferedAmountLowThresholdRequest, SetDataChannelBufferedAmountLowThresholdResponse, SetLocalAttributesCallback, SetLocalAttributesRequest, SetLocalAttributesResponse, SetLocalMetadataCallback, SetLocalMetadataRequest, SetLocalMetadataResponse, SetLocalNameCallback, SetLocalNameRequest, SetLocalNameResponse, SetSubscribedRequest, SetSubscribedResponse, UnpublishTrackCallback, UnpublishTrackRequest, UnpublishTrackResponse } from "./room_pb.js";
|
23 |
| -import { CreateAudioTrackRequest, CreateAudioTrackResponse, CreateVideoTrackRequest, CreateVideoTrackResponse, EnableRemoteTrackRequest, EnableRemoteTrackResponse, GetStatsCallback, GetStatsRequest, GetStatsResponse, LocalTrackMuteRequest, LocalTrackMuteResponse, TrackEvent } from "./track_pb.js"; |
| 23 | +import { CreateAudioTrackRequest, CreateAudioTrackResponse, CreateVideoTrackRequest, CreateVideoTrackResponse, EnableRemoteTrackRequest, EnableRemoteTrackResponse, GetStatsCallback, GetStatsRequest, GetStatsResponse, LocalTrackMuteRequest, LocalTrackMuteResponse, SetTrackSubscriptionPermissionsRequest, SetTrackSubscriptionPermissionsResponse, TrackEvent } from "./track_pb.js"; |
24 | 24 | import { CaptureVideoFrameRequest, CaptureVideoFrameResponse, NewVideoSourceRequest, NewVideoSourceResponse, NewVideoStreamRequest, NewVideoStreamResponse, VideoConvertRequest, VideoConvertResponse, VideoStreamEvent, VideoStreamFromParticipantRequest, VideoStreamFromParticipantResponse } from "./video_frame_pb.js";
|
25 | 25 | import { AudioStreamEvent, AudioStreamFromParticipantRequest, AudioStreamFromParticipantResponse, CaptureAudioFrameCallback, CaptureAudioFrameRequest, CaptureAudioFrameResponse, ClearAudioBufferRequest, ClearAudioBufferResponse, FlushSoxResamplerRequest, FlushSoxResamplerResponse, NewAudioResamplerRequest, NewAudioResamplerResponse, NewAudioSourceRequest, NewAudioSourceResponse, NewAudioStreamRequest, NewAudioStreamResponse, NewSoxResamplerRequest, NewSoxResamplerResponse, PushSoxResamplerRequest, PushSoxResamplerResponse, RemixAndResampleRequest, RemixAndResampleResponse } from "./audio_frame_pb.js";
|
26 | 26 | import { E2eeRequest, E2eeResponse } from "./e2ee_pb.js";
|
@@ -187,6 +187,12 @@ export class FfiRequest extends Message<FfiRequest> {
|
187 | 187 | */
|
188 | 188 | value: GetStatsRequest;
|
189 | 189 | case: "getStats";
|
| 190 | + } | { |
| 191 | + /** |
| 192 | + * @generated from field: livekit.proto.SetTrackSubscriptionPermissionsRequest set_track_subscription_permissions = 48; |
| 193 | + */ |
| 194 | + value: SetTrackSubscriptionPermissionsRequest; |
| 195 | + case: "setTrackSubscriptionPermissions"; |
190 | 196 | } | {
|
191 | 197 | /**
|
192 | 198 | * Video
|
@@ -395,6 +401,7 @@ export class FfiRequest extends Message<FfiRequest> {
|
395 | 401 | { no: 17, name: "local_track_mute", kind: "message", T: LocalTrackMuteRequest, oneof: "message" },
|
396 | 402 | { no: 18, name: "enable_remote_track", kind: "message", T: EnableRemoteTrackRequest, oneof: "message" },
|
397 | 403 | { no: 19, name: "get_stats", kind: "message", T: GetStatsRequest, oneof: "message" },
|
| 404 | + { no: 48, name: "set_track_subscription_permissions", kind: "message", T: SetTrackSubscriptionPermissionsRequest, oneof: "message" }, |
398 | 405 | { no: 20, name: "new_video_stream", kind: "message", T: NewVideoStreamRequest, oneof: "message" },
|
399 | 406 | { no: 21, name: "new_video_source", kind: "message", T: NewVideoSourceRequest, oneof: "message" },
|
400 | 407 | { no: 22, name: "capture_video_frame", kind: "message", T: CaptureVideoFrameRequest, oneof: "message" },
|
@@ -563,6 +570,12 @@ export class FfiResponse extends Message<FfiResponse> {
|
563 | 570 | */
|
564 | 571 | value: GetStatsResponse;
|
565 | 572 | case: "getStats";
|
| 573 | + } | { |
| 574 | + /** |
| 575 | + * @generated from field: livekit.proto.SetTrackSubscriptionPermissionsResponse set_track_subscription_permissions = 47; |
| 576 | + */ |
| 577 | + value: SetTrackSubscriptionPermissionsResponse; |
| 578 | + case: "setTrackSubscriptionPermissions"; |
566 | 579 | } | {
|
567 | 580 | /**
|
568 | 581 | * Video
|
@@ -765,6 +778,7 @@ export class FfiResponse extends Message<FfiResponse> {
|
765 | 778 | { no: 17, name: "local_track_mute", kind: "message", T: LocalTrackMuteResponse, oneof: "message" },
|
766 | 779 | { no: 18, name: "enable_remote_track", kind: "message", T: EnableRemoteTrackResponse, oneof: "message" },
|
767 | 780 | { no: 19, name: "get_stats", kind: "message", T: GetStatsResponse, oneof: "message" },
|
| 781 | + { no: 47, name: "set_track_subscription_permissions", kind: "message", T: SetTrackSubscriptionPermissionsResponse, oneof: "message" }, |
768 | 782 | { no: 20, name: "new_video_stream", kind: "message", T: NewVideoStreamResponse, oneof: "message" },
|
769 | 783 | { no: 21, name: "new_video_source", kind: "message", T: NewVideoSourceResponse, oneof: "message" },
|
770 | 784 | { no: 22, name: "capture_video_frame", kind: "message", T: CaptureVideoFrameResponse, oneof: "message" },
|
|
0 commit comments