@livekit/rtc-node 0.0.2 → 0.0.4
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/Cargo.toml +21 -0
- package/build.rs +5 -0
- package/dist/audio_frame.d.ts +14 -0
- package/dist/audio_frame.d.ts.map +1 -0
- package/dist/audio_frame.js +36 -0
- package/dist/audio_frame.js.map +1 -0
- package/dist/audio_source.d.ts +14 -0
- package/dist/audio_source.d.ts.map +1 -0
- package/dist/audio_source.js +42 -0
- package/dist/audio_source.js.map +1 -0
- package/dist/audio_stream.d.ts +24 -0
- package/dist/audio_stream.d.ts.map +1 -0
- package/dist/audio_stream.js +54 -0
- package/dist/audio_stream.js.map +1 -0
- package/dist/e2ee.d.ts +44 -0
- package/dist/e2ee.d.ts.map +1 -0
- package/dist/e2ee.js +232 -0
- package/dist/e2ee.js.map +1 -0
- package/dist/ffi_client.d.ts +23 -0
- package/dist/ffi_client.d.ts.map +1 -0
- package/dist/ffi_client.js +57 -0
- package/dist/ffi_client.js.map +1 -0
- package/dist/index.d.ts +16 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +71 -0
- package/dist/index.js.map +1 -0
- package/dist/native.d.ts +14 -0
- package/dist/native.d.ts.map +1 -0
- package/dist/native.js +297 -0
- package/dist/native.js.map +1 -0
- package/dist/participant.d.ts +30 -0
- package/dist/participant.d.ts.map +1 -0
- package/dist/participant.js +120 -0
- package/dist/participant.js.map +1 -0
- package/dist/proto/audio_frame_pb.d.ts +556 -0
- package/dist/proto/audio_frame_pb.d.ts.map +1 -0
- package/dist/proto/audio_frame_pb.js +861 -0
- package/dist/proto/audio_frame_pb.js.map +1 -0
- package/dist/proto/e2ee_pb.d.ts +652 -0
- package/dist/proto/e2ee_pb.d.ts.map +1 -0
- package/dist/proto/e2ee_pb.js +906 -0
- package/dist/proto/e2ee_pb.js.map +1 -0
- package/dist/proto/ffi_pb.d.ts +672 -0
- package/dist/proto/ffi_pb.d.ts.map +1 -0
- package/dist/proto/ffi_pb.js +459 -0
- package/dist/proto/ffi_pb.js.map +1 -0
- package/dist/proto/handle_pb.d.ts +30 -0
- package/dist/proto/handle_pb.d.ts.map +1 -0
- package/dist/proto/handle_pb.js +59 -0
- package/dist/proto/handle_pb.js.map +1 -0
- package/dist/proto/participant_pb.d.ts +54 -0
- package/dist/proto/participant_pb.d.ts.map +1 -0
- package/dist/proto/participant_pb.js +93 -0
- package/dist/proto/participant_pb.js.map +1 -0
- package/dist/proto/room_pb.d.ts +1480 -0
- package/dist/proto/room_pb.d.ts.map +1 -0
- package/dist/proto/room_pb.js +2172 -0
- package/dist/proto/room_pb.js.map +1 -0
- package/dist/proto/stats_pb.d.ts +1713 -0
- package/dist/proto/stats_pb.d.ts.map +1 -0
- package/dist/proto/stats_pb.js +2238 -0
- package/dist/proto/stats_pb.js.map +1 -0
- package/dist/proto/track_pb.d.ts +353 -0
- package/dist/proto/track_pb.d.ts.map +1 -0
- package/dist/proto/track_pb.js +550 -0
- package/dist/proto/track_pb.js.map +1 -0
- package/dist/proto/video_frame_pb.d.ts +855 -0
- package/dist/proto/video_frame_pb.d.ts.map +1 -0
- package/dist/proto/video_frame_pb.js +1214 -0
- package/dist/proto/video_frame_pb.js.map +1 -0
- package/dist/room.d.ts +95 -0
- package/dist/room.d.ts.map +1 -0
- package/dist/room.js +285 -0
- package/dist/room.js.map +1 -0
- package/dist/track.d.ts +35 -0
- package/dist/track.d.ts.map +1 -0
- package/dist/track.js +72 -0
- package/dist/track.js.map +1 -0
- package/dist/track_publication.d.ts +31 -0
- package/dist/track_publication.d.ts.map +1 -0
- package/dist/track_publication.js +66 -0
- package/dist/track_publication.js.map +1 -0
- package/dist/video_frame.d.ts +111 -0
- package/dist/video_frame.d.ts.map +1 -0
- package/dist/video_frame.js +364 -0
- package/dist/video_frame.js.map +1 -0
- package/dist/video_source.d.ts +14 -0
- package/dist/video_source.d.ts.map +1 -0
- package/dist/video_source.js +44 -0
- package/dist/video_source.js.map +1 -0
- package/dist/video_stream.d.ts +24 -0
- package/dist/video_stream.d.ts.map +1 -0
- package/dist/video_stream.js +56 -0
- package/dist/video_stream.js.map +1 -0
- package/package.json +19 -14
- package/src/audio_frame.ts +45 -0
- package/src/audio_source.ts +64 -0
- package/src/audio_stream.ts +74 -0
- package/src/e2ee.ts +311 -0
- package/src/ffi_client.ts +68 -0
- package/src/index.ts +52 -0
- package/src/lib.rs +5 -0
- package/src/native.d.ts +14 -0
- package/src/native.js +269 -0
- package/src/nodejs.rs +115 -0
- package/src/participant.ts +171 -0
- package/src/proto/audio_frame_pb.ts +1121 -0
- package/src/proto/e2ee_pb.ts +1231 -0
- package/src/proto/ffi_pb.ts +969 -0
- package/src/proto/handle_pb.ts +69 -0
- package/src/proto/participant_pb.ts +121 -0
- package/src/proto/room_pb.ts +2843 -0
- package/src/proto/stats_pb.ts +2955 -0
- package/src/proto/track_pb.ts +683 -0
- package/src/proto/video_frame_pb.ts +1568 -0
- package/src/room.ts +370 -0
- package/src/track.ts +101 -0
- package/src/track_publication.ts +90 -0
- package/src/video_frame.ts +620 -0
- package/src/video_source.ts +61 -0
- package/src/video_stream.ts +76 -0
|
@@ -0,0 +1,2172 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// Copyright 2023 LiveKit, Inc.
|
|
3
|
+
//
|
|
4
|
+
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
// you may not use this file except in compliance with the License.
|
|
6
|
+
// You may obtain a copy of the License at
|
|
7
|
+
//
|
|
8
|
+
// http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
//
|
|
10
|
+
// Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
// See the License for the specific language governing permissions and
|
|
14
|
+
// limitations under the License.
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.TrackMuted = exports.TrackSubscriptionFailed = exports.TrackUnsubscribed = exports.TrackSubscribed = exports.TrackUnpublished = exports.TrackPublished = exports.LocalTrackUnpublished = exports.LocalTrackPublished = exports.ParticipantDisconnected = exports.ParticipantConnected = exports.OwnedRoom = exports.RoomInfo = exports.RoomEvent = exports.OwnedBuffer = exports.BufferInfo = exports.RoomOptions = exports.RtcConfig = exports.IceServer = exports.TrackPublishOptions = exports.AudioEncoding = exports.VideoEncoding = exports.SetSubscribedResponse = exports.SetSubscribedRequest = exports.UpdateLocalNameCallback = exports.UpdateLocalNameResponse = exports.UpdateLocalNameRequest = exports.UpdateLocalMetadataCallback = exports.UpdateLocalMetadataResponse = exports.UpdateLocalMetadataRequest = exports.PublishDataCallback = exports.PublishDataResponse = exports.PublishDataRequest = exports.UnpublishTrackCallback = exports.UnpublishTrackResponse = exports.UnpublishTrackRequest = exports.PublishTrackCallback = exports.PublishTrackResponse = exports.PublishTrackRequest = exports.DisconnectCallback = exports.DisconnectResponse = exports.DisconnectRequest = exports.ConnectCallback_ParticipantWithTracks = exports.ConnectCallback = exports.ConnectResponse = exports.ConnectRequest = exports.DataPacketKind = exports.ConnectionState = exports.ConnectionQuality = exports.ContinualGatheringPolicy = exports.IceTransportType = void 0;
|
|
17
|
+
exports.RoomEOS = exports.Reconnected = exports.Reconnecting = exports.Disconnected = exports.Connected = exports.ConnectionStateChanged = exports.DataReceived = exports.ConnectionQualityChanged = exports.ParticipantNameChanged = exports.ParticipantMetadataChanged = exports.RoomMetadataChanged = exports.ActiveSpeakersChanged = exports.E2eeStateChanged = exports.TrackUnmuted = void 0;
|
|
18
|
+
const protobuf_1 = require("@bufbuild/protobuf");
|
|
19
|
+
const participant_pb_js_1 = require("./participant_pb.js");
|
|
20
|
+
const track_pb_js_1 = require("./track_pb.js");
|
|
21
|
+
const video_frame_pb_js_1 = require("./video_frame_pb.js");
|
|
22
|
+
const e2ee_pb_js_1 = require("./e2ee_pb.js");
|
|
23
|
+
const handle_pb_js_1 = require("./handle_pb.js");
|
|
24
|
+
/**
|
|
25
|
+
* @generated from enum livekit.proto.IceTransportType
|
|
26
|
+
*/
|
|
27
|
+
var IceTransportType;
|
|
28
|
+
(function (IceTransportType) {
|
|
29
|
+
/**
|
|
30
|
+
* @generated from enum value: TRANSPORT_RELAY = 0;
|
|
31
|
+
*/
|
|
32
|
+
IceTransportType[IceTransportType["TRANSPORT_RELAY"] = 0] = "TRANSPORT_RELAY";
|
|
33
|
+
/**
|
|
34
|
+
* @generated from enum value: TRANSPORT_NOHOST = 1;
|
|
35
|
+
*/
|
|
36
|
+
IceTransportType[IceTransportType["TRANSPORT_NOHOST"] = 1] = "TRANSPORT_NOHOST";
|
|
37
|
+
/**
|
|
38
|
+
* @generated from enum value: TRANSPORT_ALL = 2;
|
|
39
|
+
*/
|
|
40
|
+
IceTransportType[IceTransportType["TRANSPORT_ALL"] = 2] = "TRANSPORT_ALL";
|
|
41
|
+
})(IceTransportType || (exports.IceTransportType = IceTransportType = {}));
|
|
42
|
+
// Retrieve enum metadata with: proto3.getEnumType(IceTransportType)
|
|
43
|
+
protobuf_1.proto3.util.setEnumType(IceTransportType, "livekit.proto.IceTransportType", [
|
|
44
|
+
{ no: 0, name: "TRANSPORT_RELAY" },
|
|
45
|
+
{ no: 1, name: "TRANSPORT_NOHOST" },
|
|
46
|
+
{ no: 2, name: "TRANSPORT_ALL" },
|
|
47
|
+
]);
|
|
48
|
+
/**
|
|
49
|
+
* @generated from enum livekit.proto.ContinualGatheringPolicy
|
|
50
|
+
*/
|
|
51
|
+
var ContinualGatheringPolicy;
|
|
52
|
+
(function (ContinualGatheringPolicy) {
|
|
53
|
+
/**
|
|
54
|
+
* @generated from enum value: GATHER_ONCE = 0;
|
|
55
|
+
*/
|
|
56
|
+
ContinualGatheringPolicy[ContinualGatheringPolicy["GATHER_ONCE"] = 0] = "GATHER_ONCE";
|
|
57
|
+
/**
|
|
58
|
+
* @generated from enum value: GATHER_CONTINUALLY = 1;
|
|
59
|
+
*/
|
|
60
|
+
ContinualGatheringPolicy[ContinualGatheringPolicy["GATHER_CONTINUALLY"] = 1] = "GATHER_CONTINUALLY";
|
|
61
|
+
})(ContinualGatheringPolicy || (exports.ContinualGatheringPolicy = ContinualGatheringPolicy = {}));
|
|
62
|
+
// Retrieve enum metadata with: proto3.getEnumType(ContinualGatheringPolicy)
|
|
63
|
+
protobuf_1.proto3.util.setEnumType(ContinualGatheringPolicy, "livekit.proto.ContinualGatheringPolicy", [
|
|
64
|
+
{ no: 0, name: "GATHER_ONCE" },
|
|
65
|
+
{ no: 1, name: "GATHER_CONTINUALLY" },
|
|
66
|
+
]);
|
|
67
|
+
/**
|
|
68
|
+
* @generated from enum livekit.proto.ConnectionQuality
|
|
69
|
+
*/
|
|
70
|
+
var ConnectionQuality;
|
|
71
|
+
(function (ConnectionQuality) {
|
|
72
|
+
/**
|
|
73
|
+
* @generated from enum value: QUALITY_POOR = 0;
|
|
74
|
+
*/
|
|
75
|
+
ConnectionQuality[ConnectionQuality["QUALITY_POOR"] = 0] = "QUALITY_POOR";
|
|
76
|
+
/**
|
|
77
|
+
* @generated from enum value: QUALITY_GOOD = 1;
|
|
78
|
+
*/
|
|
79
|
+
ConnectionQuality[ConnectionQuality["QUALITY_GOOD"] = 1] = "QUALITY_GOOD";
|
|
80
|
+
/**
|
|
81
|
+
* @generated from enum value: QUALITY_EXCELLENT = 2;
|
|
82
|
+
*/
|
|
83
|
+
ConnectionQuality[ConnectionQuality["QUALITY_EXCELLENT"] = 2] = "QUALITY_EXCELLENT";
|
|
84
|
+
})(ConnectionQuality || (exports.ConnectionQuality = ConnectionQuality = {}));
|
|
85
|
+
// Retrieve enum metadata with: proto3.getEnumType(ConnectionQuality)
|
|
86
|
+
protobuf_1.proto3.util.setEnumType(ConnectionQuality, "livekit.proto.ConnectionQuality", [
|
|
87
|
+
{ no: 0, name: "QUALITY_POOR" },
|
|
88
|
+
{ no: 1, name: "QUALITY_GOOD" },
|
|
89
|
+
{ no: 2, name: "QUALITY_EXCELLENT" },
|
|
90
|
+
]);
|
|
91
|
+
/**
|
|
92
|
+
* @generated from enum livekit.proto.ConnectionState
|
|
93
|
+
*/
|
|
94
|
+
var ConnectionState;
|
|
95
|
+
(function (ConnectionState) {
|
|
96
|
+
/**
|
|
97
|
+
* @generated from enum value: CONN_DISCONNECTED = 0;
|
|
98
|
+
*/
|
|
99
|
+
ConnectionState[ConnectionState["CONN_DISCONNECTED"] = 0] = "CONN_DISCONNECTED";
|
|
100
|
+
/**
|
|
101
|
+
* @generated from enum value: CONN_CONNECTED = 1;
|
|
102
|
+
*/
|
|
103
|
+
ConnectionState[ConnectionState["CONN_CONNECTED"] = 1] = "CONN_CONNECTED";
|
|
104
|
+
/**
|
|
105
|
+
* @generated from enum value: CONN_RECONNECTING = 2;
|
|
106
|
+
*/
|
|
107
|
+
ConnectionState[ConnectionState["CONN_RECONNECTING"] = 2] = "CONN_RECONNECTING";
|
|
108
|
+
})(ConnectionState || (exports.ConnectionState = ConnectionState = {}));
|
|
109
|
+
// Retrieve enum metadata with: proto3.getEnumType(ConnectionState)
|
|
110
|
+
protobuf_1.proto3.util.setEnumType(ConnectionState, "livekit.proto.ConnectionState", [
|
|
111
|
+
{ no: 0, name: "CONN_DISCONNECTED" },
|
|
112
|
+
{ no: 1, name: "CONN_CONNECTED" },
|
|
113
|
+
{ no: 2, name: "CONN_RECONNECTING" },
|
|
114
|
+
]);
|
|
115
|
+
/**
|
|
116
|
+
* @generated from enum livekit.proto.DataPacketKind
|
|
117
|
+
*/
|
|
118
|
+
var DataPacketKind;
|
|
119
|
+
(function (DataPacketKind) {
|
|
120
|
+
/**
|
|
121
|
+
* @generated from enum value: KIND_LOSSY = 0;
|
|
122
|
+
*/
|
|
123
|
+
DataPacketKind[DataPacketKind["KIND_LOSSY"] = 0] = "KIND_LOSSY";
|
|
124
|
+
/**
|
|
125
|
+
* @generated from enum value: KIND_RELIABLE = 1;
|
|
126
|
+
*/
|
|
127
|
+
DataPacketKind[DataPacketKind["KIND_RELIABLE"] = 1] = "KIND_RELIABLE";
|
|
128
|
+
})(DataPacketKind || (exports.DataPacketKind = DataPacketKind = {}));
|
|
129
|
+
// Retrieve enum metadata with: proto3.getEnumType(DataPacketKind)
|
|
130
|
+
protobuf_1.proto3.util.setEnumType(DataPacketKind, "livekit.proto.DataPacketKind", [
|
|
131
|
+
{ no: 0, name: "KIND_LOSSY" },
|
|
132
|
+
{ no: 1, name: "KIND_RELIABLE" },
|
|
133
|
+
]);
|
|
134
|
+
/**
|
|
135
|
+
* Connect to a new LiveKit room
|
|
136
|
+
*
|
|
137
|
+
* @generated from message livekit.proto.ConnectRequest
|
|
138
|
+
*/
|
|
139
|
+
class ConnectRequest extends protobuf_1.Message {
|
|
140
|
+
constructor(data) {
|
|
141
|
+
super();
|
|
142
|
+
/**
|
|
143
|
+
* @generated from field: string url = 1;
|
|
144
|
+
*/
|
|
145
|
+
this.url = "";
|
|
146
|
+
/**
|
|
147
|
+
* @generated from field: string token = 2;
|
|
148
|
+
*/
|
|
149
|
+
this.token = "";
|
|
150
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
151
|
+
}
|
|
152
|
+
static fromBinary(bytes, options) {
|
|
153
|
+
return new ConnectRequest().fromBinary(bytes, options);
|
|
154
|
+
}
|
|
155
|
+
static fromJson(jsonValue, options) {
|
|
156
|
+
return new ConnectRequest().fromJson(jsonValue, options);
|
|
157
|
+
}
|
|
158
|
+
static fromJsonString(jsonString, options) {
|
|
159
|
+
return new ConnectRequest().fromJsonString(jsonString, options);
|
|
160
|
+
}
|
|
161
|
+
static equals(a, b) {
|
|
162
|
+
return protobuf_1.proto3.util.equals(ConnectRequest, a, b);
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
exports.ConnectRequest = ConnectRequest;
|
|
166
|
+
ConnectRequest.runtime = protobuf_1.proto3;
|
|
167
|
+
ConnectRequest.typeName = "livekit.proto.ConnectRequest";
|
|
168
|
+
ConnectRequest.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
169
|
+
{ no: 1, name: "url", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
170
|
+
{ no: 2, name: "token", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
171
|
+
{ no: 3, name: "options", kind: "message", T: RoomOptions },
|
|
172
|
+
]);
|
|
173
|
+
/**
|
|
174
|
+
* @generated from message livekit.proto.ConnectResponse
|
|
175
|
+
*/
|
|
176
|
+
class ConnectResponse extends protobuf_1.Message {
|
|
177
|
+
constructor(data) {
|
|
178
|
+
super();
|
|
179
|
+
/**
|
|
180
|
+
* @generated from field: uint64 async_id = 1;
|
|
181
|
+
*/
|
|
182
|
+
this.asyncId = protobuf_1.protoInt64.zero;
|
|
183
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
184
|
+
}
|
|
185
|
+
static fromBinary(bytes, options) {
|
|
186
|
+
return new ConnectResponse().fromBinary(bytes, options);
|
|
187
|
+
}
|
|
188
|
+
static fromJson(jsonValue, options) {
|
|
189
|
+
return new ConnectResponse().fromJson(jsonValue, options);
|
|
190
|
+
}
|
|
191
|
+
static fromJsonString(jsonString, options) {
|
|
192
|
+
return new ConnectResponse().fromJsonString(jsonString, options);
|
|
193
|
+
}
|
|
194
|
+
static equals(a, b) {
|
|
195
|
+
return protobuf_1.proto3.util.equals(ConnectResponse, a, b);
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
exports.ConnectResponse = ConnectResponse;
|
|
199
|
+
ConnectResponse.runtime = protobuf_1.proto3;
|
|
200
|
+
ConnectResponse.typeName = "livekit.proto.ConnectResponse";
|
|
201
|
+
ConnectResponse.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
202
|
+
{ no: 1, name: "async_id", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
|
|
203
|
+
]);
|
|
204
|
+
/**
|
|
205
|
+
* @generated from message livekit.proto.ConnectCallback
|
|
206
|
+
*/
|
|
207
|
+
class ConnectCallback extends protobuf_1.Message {
|
|
208
|
+
constructor(data) {
|
|
209
|
+
super();
|
|
210
|
+
/**
|
|
211
|
+
* @generated from field: uint64 async_id = 1;
|
|
212
|
+
*/
|
|
213
|
+
this.asyncId = protobuf_1.protoInt64.zero;
|
|
214
|
+
/**
|
|
215
|
+
* @generated from field: repeated livekit.proto.ConnectCallback.ParticipantWithTracks participants = 5;
|
|
216
|
+
*/
|
|
217
|
+
this.participants = [];
|
|
218
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
219
|
+
}
|
|
220
|
+
static fromBinary(bytes, options) {
|
|
221
|
+
return new ConnectCallback().fromBinary(bytes, options);
|
|
222
|
+
}
|
|
223
|
+
static fromJson(jsonValue, options) {
|
|
224
|
+
return new ConnectCallback().fromJson(jsonValue, options);
|
|
225
|
+
}
|
|
226
|
+
static fromJsonString(jsonString, options) {
|
|
227
|
+
return new ConnectCallback().fromJsonString(jsonString, options);
|
|
228
|
+
}
|
|
229
|
+
static equals(a, b) {
|
|
230
|
+
return protobuf_1.proto3.util.equals(ConnectCallback, a, b);
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
exports.ConnectCallback = ConnectCallback;
|
|
234
|
+
ConnectCallback.runtime = protobuf_1.proto3;
|
|
235
|
+
ConnectCallback.typeName = "livekit.proto.ConnectCallback";
|
|
236
|
+
ConnectCallback.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
237
|
+
{ no: 1, name: "async_id", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
|
|
238
|
+
{ no: 2, name: "error", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
239
|
+
{ no: 3, name: "room", kind: "message", T: OwnedRoom },
|
|
240
|
+
{ no: 4, name: "local_participant", kind: "message", T: participant_pb_js_1.OwnedParticipant },
|
|
241
|
+
{ no: 5, name: "participants", kind: "message", T: ConnectCallback_ParticipantWithTracks, repeated: true },
|
|
242
|
+
]);
|
|
243
|
+
/**
|
|
244
|
+
* @generated from message livekit.proto.ConnectCallback.ParticipantWithTracks
|
|
245
|
+
*/
|
|
246
|
+
class ConnectCallback_ParticipantWithTracks extends protobuf_1.Message {
|
|
247
|
+
constructor(data) {
|
|
248
|
+
super();
|
|
249
|
+
/**
|
|
250
|
+
* TrackInfo are not needed here, if we're subscribed to a track, the FfiServer will send
|
|
251
|
+
* a TrackSubscribed event
|
|
252
|
+
*
|
|
253
|
+
* @generated from field: repeated livekit.proto.OwnedTrackPublication publications = 2;
|
|
254
|
+
*/
|
|
255
|
+
this.publications = [];
|
|
256
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
257
|
+
}
|
|
258
|
+
static fromBinary(bytes, options) {
|
|
259
|
+
return new ConnectCallback_ParticipantWithTracks().fromBinary(bytes, options);
|
|
260
|
+
}
|
|
261
|
+
static fromJson(jsonValue, options) {
|
|
262
|
+
return new ConnectCallback_ParticipantWithTracks().fromJson(jsonValue, options);
|
|
263
|
+
}
|
|
264
|
+
static fromJsonString(jsonString, options) {
|
|
265
|
+
return new ConnectCallback_ParticipantWithTracks().fromJsonString(jsonString, options);
|
|
266
|
+
}
|
|
267
|
+
static equals(a, b) {
|
|
268
|
+
return protobuf_1.proto3.util.equals(ConnectCallback_ParticipantWithTracks, a, b);
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
exports.ConnectCallback_ParticipantWithTracks = ConnectCallback_ParticipantWithTracks;
|
|
272
|
+
ConnectCallback_ParticipantWithTracks.runtime = protobuf_1.proto3;
|
|
273
|
+
ConnectCallback_ParticipantWithTracks.typeName = "livekit.proto.ConnectCallback.ParticipantWithTracks";
|
|
274
|
+
ConnectCallback_ParticipantWithTracks.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
275
|
+
{ no: 1, name: "participant", kind: "message", T: participant_pb_js_1.OwnedParticipant },
|
|
276
|
+
{ no: 2, name: "publications", kind: "message", T: track_pb_js_1.OwnedTrackPublication, repeated: true },
|
|
277
|
+
]);
|
|
278
|
+
/**
|
|
279
|
+
* Disconnect from the a room
|
|
280
|
+
*
|
|
281
|
+
* @generated from message livekit.proto.DisconnectRequest
|
|
282
|
+
*/
|
|
283
|
+
class DisconnectRequest extends protobuf_1.Message {
|
|
284
|
+
constructor(data) {
|
|
285
|
+
super();
|
|
286
|
+
/**
|
|
287
|
+
* @generated from field: uint64 room_handle = 1;
|
|
288
|
+
*/
|
|
289
|
+
this.roomHandle = protobuf_1.protoInt64.zero;
|
|
290
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
291
|
+
}
|
|
292
|
+
static fromBinary(bytes, options) {
|
|
293
|
+
return new DisconnectRequest().fromBinary(bytes, options);
|
|
294
|
+
}
|
|
295
|
+
static fromJson(jsonValue, options) {
|
|
296
|
+
return new DisconnectRequest().fromJson(jsonValue, options);
|
|
297
|
+
}
|
|
298
|
+
static fromJsonString(jsonString, options) {
|
|
299
|
+
return new DisconnectRequest().fromJsonString(jsonString, options);
|
|
300
|
+
}
|
|
301
|
+
static equals(a, b) {
|
|
302
|
+
return protobuf_1.proto3.util.equals(DisconnectRequest, a, b);
|
|
303
|
+
}
|
|
304
|
+
}
|
|
305
|
+
exports.DisconnectRequest = DisconnectRequest;
|
|
306
|
+
DisconnectRequest.runtime = protobuf_1.proto3;
|
|
307
|
+
DisconnectRequest.typeName = "livekit.proto.DisconnectRequest";
|
|
308
|
+
DisconnectRequest.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
309
|
+
{ no: 1, name: "room_handle", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
|
|
310
|
+
]);
|
|
311
|
+
/**
|
|
312
|
+
* @generated from message livekit.proto.DisconnectResponse
|
|
313
|
+
*/
|
|
314
|
+
class DisconnectResponse extends protobuf_1.Message {
|
|
315
|
+
constructor(data) {
|
|
316
|
+
super();
|
|
317
|
+
/**
|
|
318
|
+
* @generated from field: uint64 async_id = 1;
|
|
319
|
+
*/
|
|
320
|
+
this.asyncId = protobuf_1.protoInt64.zero;
|
|
321
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
322
|
+
}
|
|
323
|
+
static fromBinary(bytes, options) {
|
|
324
|
+
return new DisconnectResponse().fromBinary(bytes, options);
|
|
325
|
+
}
|
|
326
|
+
static fromJson(jsonValue, options) {
|
|
327
|
+
return new DisconnectResponse().fromJson(jsonValue, options);
|
|
328
|
+
}
|
|
329
|
+
static fromJsonString(jsonString, options) {
|
|
330
|
+
return new DisconnectResponse().fromJsonString(jsonString, options);
|
|
331
|
+
}
|
|
332
|
+
static equals(a, b) {
|
|
333
|
+
return protobuf_1.proto3.util.equals(DisconnectResponse, a, b);
|
|
334
|
+
}
|
|
335
|
+
}
|
|
336
|
+
exports.DisconnectResponse = DisconnectResponse;
|
|
337
|
+
DisconnectResponse.runtime = protobuf_1.proto3;
|
|
338
|
+
DisconnectResponse.typeName = "livekit.proto.DisconnectResponse";
|
|
339
|
+
DisconnectResponse.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
340
|
+
{ no: 1, name: "async_id", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
|
|
341
|
+
]);
|
|
342
|
+
/**
|
|
343
|
+
* @generated from message livekit.proto.DisconnectCallback
|
|
344
|
+
*/
|
|
345
|
+
class DisconnectCallback extends protobuf_1.Message {
|
|
346
|
+
constructor(data) {
|
|
347
|
+
super();
|
|
348
|
+
/**
|
|
349
|
+
* @generated from field: uint64 async_id = 1;
|
|
350
|
+
*/
|
|
351
|
+
this.asyncId = protobuf_1.protoInt64.zero;
|
|
352
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
353
|
+
}
|
|
354
|
+
static fromBinary(bytes, options) {
|
|
355
|
+
return new DisconnectCallback().fromBinary(bytes, options);
|
|
356
|
+
}
|
|
357
|
+
static fromJson(jsonValue, options) {
|
|
358
|
+
return new DisconnectCallback().fromJson(jsonValue, options);
|
|
359
|
+
}
|
|
360
|
+
static fromJsonString(jsonString, options) {
|
|
361
|
+
return new DisconnectCallback().fromJsonString(jsonString, options);
|
|
362
|
+
}
|
|
363
|
+
static equals(a, b) {
|
|
364
|
+
return protobuf_1.proto3.util.equals(DisconnectCallback, a, b);
|
|
365
|
+
}
|
|
366
|
+
}
|
|
367
|
+
exports.DisconnectCallback = DisconnectCallback;
|
|
368
|
+
DisconnectCallback.runtime = protobuf_1.proto3;
|
|
369
|
+
DisconnectCallback.typeName = "livekit.proto.DisconnectCallback";
|
|
370
|
+
DisconnectCallback.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
371
|
+
{ no: 1, name: "async_id", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
|
|
372
|
+
]);
|
|
373
|
+
/**
|
|
374
|
+
* Publish a track to the room
|
|
375
|
+
*
|
|
376
|
+
* @generated from message livekit.proto.PublishTrackRequest
|
|
377
|
+
*/
|
|
378
|
+
class PublishTrackRequest extends protobuf_1.Message {
|
|
379
|
+
constructor(data) {
|
|
380
|
+
super();
|
|
381
|
+
/**
|
|
382
|
+
* @generated from field: uint64 local_participant_handle = 1;
|
|
383
|
+
*/
|
|
384
|
+
this.localParticipantHandle = protobuf_1.protoInt64.zero;
|
|
385
|
+
/**
|
|
386
|
+
* @generated from field: uint64 track_handle = 2;
|
|
387
|
+
*/
|
|
388
|
+
this.trackHandle = protobuf_1.protoInt64.zero;
|
|
389
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
390
|
+
}
|
|
391
|
+
static fromBinary(bytes, options) {
|
|
392
|
+
return new PublishTrackRequest().fromBinary(bytes, options);
|
|
393
|
+
}
|
|
394
|
+
static fromJson(jsonValue, options) {
|
|
395
|
+
return new PublishTrackRequest().fromJson(jsonValue, options);
|
|
396
|
+
}
|
|
397
|
+
static fromJsonString(jsonString, options) {
|
|
398
|
+
return new PublishTrackRequest().fromJsonString(jsonString, options);
|
|
399
|
+
}
|
|
400
|
+
static equals(a, b) {
|
|
401
|
+
return protobuf_1.proto3.util.equals(PublishTrackRequest, a, b);
|
|
402
|
+
}
|
|
403
|
+
}
|
|
404
|
+
exports.PublishTrackRequest = PublishTrackRequest;
|
|
405
|
+
PublishTrackRequest.runtime = protobuf_1.proto3;
|
|
406
|
+
PublishTrackRequest.typeName = "livekit.proto.PublishTrackRequest";
|
|
407
|
+
PublishTrackRequest.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
408
|
+
{ no: 1, name: "local_participant_handle", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
|
|
409
|
+
{ no: 2, name: "track_handle", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
|
|
410
|
+
{ no: 3, name: "options", kind: "message", T: TrackPublishOptions },
|
|
411
|
+
]);
|
|
412
|
+
/**
|
|
413
|
+
* @generated from message livekit.proto.PublishTrackResponse
|
|
414
|
+
*/
|
|
415
|
+
class PublishTrackResponse extends protobuf_1.Message {
|
|
416
|
+
constructor(data) {
|
|
417
|
+
super();
|
|
418
|
+
/**
|
|
419
|
+
* @generated from field: uint64 async_id = 1;
|
|
420
|
+
*/
|
|
421
|
+
this.asyncId = protobuf_1.protoInt64.zero;
|
|
422
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
423
|
+
}
|
|
424
|
+
static fromBinary(bytes, options) {
|
|
425
|
+
return new PublishTrackResponse().fromBinary(bytes, options);
|
|
426
|
+
}
|
|
427
|
+
static fromJson(jsonValue, options) {
|
|
428
|
+
return new PublishTrackResponse().fromJson(jsonValue, options);
|
|
429
|
+
}
|
|
430
|
+
static fromJsonString(jsonString, options) {
|
|
431
|
+
return new PublishTrackResponse().fromJsonString(jsonString, options);
|
|
432
|
+
}
|
|
433
|
+
static equals(a, b) {
|
|
434
|
+
return protobuf_1.proto3.util.equals(PublishTrackResponse, a, b);
|
|
435
|
+
}
|
|
436
|
+
}
|
|
437
|
+
exports.PublishTrackResponse = PublishTrackResponse;
|
|
438
|
+
PublishTrackResponse.runtime = protobuf_1.proto3;
|
|
439
|
+
PublishTrackResponse.typeName = "livekit.proto.PublishTrackResponse";
|
|
440
|
+
PublishTrackResponse.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
441
|
+
{ no: 1, name: "async_id", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
|
|
442
|
+
]);
|
|
443
|
+
/**
|
|
444
|
+
* @generated from message livekit.proto.PublishTrackCallback
|
|
445
|
+
*/
|
|
446
|
+
class PublishTrackCallback extends protobuf_1.Message {
|
|
447
|
+
constructor(data) {
|
|
448
|
+
super();
|
|
449
|
+
/**
|
|
450
|
+
* @generated from field: uint64 async_id = 1;
|
|
451
|
+
*/
|
|
452
|
+
this.asyncId = protobuf_1.protoInt64.zero;
|
|
453
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
454
|
+
}
|
|
455
|
+
static fromBinary(bytes, options) {
|
|
456
|
+
return new PublishTrackCallback().fromBinary(bytes, options);
|
|
457
|
+
}
|
|
458
|
+
static fromJson(jsonValue, options) {
|
|
459
|
+
return new PublishTrackCallback().fromJson(jsonValue, options);
|
|
460
|
+
}
|
|
461
|
+
static fromJsonString(jsonString, options) {
|
|
462
|
+
return new PublishTrackCallback().fromJsonString(jsonString, options);
|
|
463
|
+
}
|
|
464
|
+
static equals(a, b) {
|
|
465
|
+
return protobuf_1.proto3.util.equals(PublishTrackCallback, a, b);
|
|
466
|
+
}
|
|
467
|
+
}
|
|
468
|
+
exports.PublishTrackCallback = PublishTrackCallback;
|
|
469
|
+
PublishTrackCallback.runtime = protobuf_1.proto3;
|
|
470
|
+
PublishTrackCallback.typeName = "livekit.proto.PublishTrackCallback";
|
|
471
|
+
PublishTrackCallback.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
472
|
+
{ no: 1, name: "async_id", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
|
|
473
|
+
{ no: 2, name: "error", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
474
|
+
{ no: 3, name: "publication", kind: "message", T: track_pb_js_1.OwnedTrackPublication },
|
|
475
|
+
]);
|
|
476
|
+
/**
|
|
477
|
+
* Unpublish a track from the room
|
|
478
|
+
*
|
|
479
|
+
* @generated from message livekit.proto.UnpublishTrackRequest
|
|
480
|
+
*/
|
|
481
|
+
class UnpublishTrackRequest extends protobuf_1.Message {
|
|
482
|
+
constructor(data) {
|
|
483
|
+
super();
|
|
484
|
+
/**
|
|
485
|
+
* @generated from field: uint64 local_participant_handle = 1;
|
|
486
|
+
*/
|
|
487
|
+
this.localParticipantHandle = protobuf_1.protoInt64.zero;
|
|
488
|
+
/**
|
|
489
|
+
* @generated from field: string track_sid = 2;
|
|
490
|
+
*/
|
|
491
|
+
this.trackSid = "";
|
|
492
|
+
/**
|
|
493
|
+
* @generated from field: bool stop_on_unpublish = 3;
|
|
494
|
+
*/
|
|
495
|
+
this.stopOnUnpublish = false;
|
|
496
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
497
|
+
}
|
|
498
|
+
static fromBinary(bytes, options) {
|
|
499
|
+
return new UnpublishTrackRequest().fromBinary(bytes, options);
|
|
500
|
+
}
|
|
501
|
+
static fromJson(jsonValue, options) {
|
|
502
|
+
return new UnpublishTrackRequest().fromJson(jsonValue, options);
|
|
503
|
+
}
|
|
504
|
+
static fromJsonString(jsonString, options) {
|
|
505
|
+
return new UnpublishTrackRequest().fromJsonString(jsonString, options);
|
|
506
|
+
}
|
|
507
|
+
static equals(a, b) {
|
|
508
|
+
return protobuf_1.proto3.util.equals(UnpublishTrackRequest, a, b);
|
|
509
|
+
}
|
|
510
|
+
}
|
|
511
|
+
exports.UnpublishTrackRequest = UnpublishTrackRequest;
|
|
512
|
+
UnpublishTrackRequest.runtime = protobuf_1.proto3;
|
|
513
|
+
UnpublishTrackRequest.typeName = "livekit.proto.UnpublishTrackRequest";
|
|
514
|
+
UnpublishTrackRequest.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
515
|
+
{ no: 1, name: "local_participant_handle", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
|
|
516
|
+
{ no: 2, name: "track_sid", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
517
|
+
{ no: 3, name: "stop_on_unpublish", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
518
|
+
]);
|
|
519
|
+
/**
|
|
520
|
+
* @generated from message livekit.proto.UnpublishTrackResponse
|
|
521
|
+
*/
|
|
522
|
+
class UnpublishTrackResponse extends protobuf_1.Message {
|
|
523
|
+
constructor(data) {
|
|
524
|
+
super();
|
|
525
|
+
/**
|
|
526
|
+
* @generated from field: uint64 async_id = 1;
|
|
527
|
+
*/
|
|
528
|
+
this.asyncId = protobuf_1.protoInt64.zero;
|
|
529
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
530
|
+
}
|
|
531
|
+
static fromBinary(bytes, options) {
|
|
532
|
+
return new UnpublishTrackResponse().fromBinary(bytes, options);
|
|
533
|
+
}
|
|
534
|
+
static fromJson(jsonValue, options) {
|
|
535
|
+
return new UnpublishTrackResponse().fromJson(jsonValue, options);
|
|
536
|
+
}
|
|
537
|
+
static fromJsonString(jsonString, options) {
|
|
538
|
+
return new UnpublishTrackResponse().fromJsonString(jsonString, options);
|
|
539
|
+
}
|
|
540
|
+
static equals(a, b) {
|
|
541
|
+
return protobuf_1.proto3.util.equals(UnpublishTrackResponse, a, b);
|
|
542
|
+
}
|
|
543
|
+
}
|
|
544
|
+
exports.UnpublishTrackResponse = UnpublishTrackResponse;
|
|
545
|
+
UnpublishTrackResponse.runtime = protobuf_1.proto3;
|
|
546
|
+
UnpublishTrackResponse.typeName = "livekit.proto.UnpublishTrackResponse";
|
|
547
|
+
UnpublishTrackResponse.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
548
|
+
{ no: 1, name: "async_id", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
|
|
549
|
+
]);
|
|
550
|
+
/**
|
|
551
|
+
* @generated from message livekit.proto.UnpublishTrackCallback
|
|
552
|
+
*/
|
|
553
|
+
class UnpublishTrackCallback extends protobuf_1.Message {
|
|
554
|
+
constructor(data) {
|
|
555
|
+
super();
|
|
556
|
+
/**
|
|
557
|
+
* @generated from field: uint64 async_id = 1;
|
|
558
|
+
*/
|
|
559
|
+
this.asyncId = protobuf_1.protoInt64.zero;
|
|
560
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
561
|
+
}
|
|
562
|
+
static fromBinary(bytes, options) {
|
|
563
|
+
return new UnpublishTrackCallback().fromBinary(bytes, options);
|
|
564
|
+
}
|
|
565
|
+
static fromJson(jsonValue, options) {
|
|
566
|
+
return new UnpublishTrackCallback().fromJson(jsonValue, options);
|
|
567
|
+
}
|
|
568
|
+
static fromJsonString(jsonString, options) {
|
|
569
|
+
return new UnpublishTrackCallback().fromJsonString(jsonString, options);
|
|
570
|
+
}
|
|
571
|
+
static equals(a, b) {
|
|
572
|
+
return protobuf_1.proto3.util.equals(UnpublishTrackCallback, a, b);
|
|
573
|
+
}
|
|
574
|
+
}
|
|
575
|
+
exports.UnpublishTrackCallback = UnpublishTrackCallback;
|
|
576
|
+
UnpublishTrackCallback.runtime = protobuf_1.proto3;
|
|
577
|
+
UnpublishTrackCallback.typeName = "livekit.proto.UnpublishTrackCallback";
|
|
578
|
+
UnpublishTrackCallback.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
579
|
+
{ no: 1, name: "async_id", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
|
|
580
|
+
{ no: 2, name: "error", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
581
|
+
]);
|
|
582
|
+
/**
|
|
583
|
+
* Publish data to other participants
|
|
584
|
+
*
|
|
585
|
+
* @generated from message livekit.proto.PublishDataRequest
|
|
586
|
+
*/
|
|
587
|
+
class PublishDataRequest extends protobuf_1.Message {
|
|
588
|
+
constructor(data) {
|
|
589
|
+
super();
|
|
590
|
+
/**
|
|
591
|
+
* @generated from field: uint64 local_participant_handle = 1;
|
|
592
|
+
*/
|
|
593
|
+
this.localParticipantHandle = protobuf_1.protoInt64.zero;
|
|
594
|
+
/**
|
|
595
|
+
* @generated from field: uint64 data_ptr = 2;
|
|
596
|
+
*/
|
|
597
|
+
this.dataPtr = protobuf_1.protoInt64.zero;
|
|
598
|
+
/**
|
|
599
|
+
* @generated from field: uint64 data_len = 3;
|
|
600
|
+
*/
|
|
601
|
+
this.dataLen = protobuf_1.protoInt64.zero;
|
|
602
|
+
/**
|
|
603
|
+
* @generated from field: livekit.proto.DataPacketKind kind = 4;
|
|
604
|
+
*/
|
|
605
|
+
this.kind = DataPacketKind.KIND_LOSSY;
|
|
606
|
+
/**
|
|
607
|
+
* destination
|
|
608
|
+
*
|
|
609
|
+
* @generated from field: repeated string destination_sids = 5;
|
|
610
|
+
*/
|
|
611
|
+
this.destinationSids = [];
|
|
612
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
613
|
+
}
|
|
614
|
+
static fromBinary(bytes, options) {
|
|
615
|
+
return new PublishDataRequest().fromBinary(bytes, options);
|
|
616
|
+
}
|
|
617
|
+
static fromJson(jsonValue, options) {
|
|
618
|
+
return new PublishDataRequest().fromJson(jsonValue, options);
|
|
619
|
+
}
|
|
620
|
+
static fromJsonString(jsonString, options) {
|
|
621
|
+
return new PublishDataRequest().fromJsonString(jsonString, options);
|
|
622
|
+
}
|
|
623
|
+
static equals(a, b) {
|
|
624
|
+
return protobuf_1.proto3.util.equals(PublishDataRequest, a, b);
|
|
625
|
+
}
|
|
626
|
+
}
|
|
627
|
+
exports.PublishDataRequest = PublishDataRequest;
|
|
628
|
+
PublishDataRequest.runtime = protobuf_1.proto3;
|
|
629
|
+
PublishDataRequest.typeName = "livekit.proto.PublishDataRequest";
|
|
630
|
+
PublishDataRequest.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
631
|
+
{ no: 1, name: "local_participant_handle", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
|
|
632
|
+
{ no: 2, name: "data_ptr", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
|
|
633
|
+
{ no: 3, name: "data_len", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
|
|
634
|
+
{ no: 4, name: "kind", kind: "enum", T: protobuf_1.proto3.getEnumType(DataPacketKind) },
|
|
635
|
+
{ no: 5, name: "destination_sids", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
|
|
636
|
+
]);
|
|
637
|
+
/**
|
|
638
|
+
* @generated from message livekit.proto.PublishDataResponse
|
|
639
|
+
*/
|
|
640
|
+
class PublishDataResponse extends protobuf_1.Message {
|
|
641
|
+
constructor(data) {
|
|
642
|
+
super();
|
|
643
|
+
/**
|
|
644
|
+
* @generated from field: uint64 async_id = 1;
|
|
645
|
+
*/
|
|
646
|
+
this.asyncId = protobuf_1.protoInt64.zero;
|
|
647
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
648
|
+
}
|
|
649
|
+
static fromBinary(bytes, options) {
|
|
650
|
+
return new PublishDataResponse().fromBinary(bytes, options);
|
|
651
|
+
}
|
|
652
|
+
static fromJson(jsonValue, options) {
|
|
653
|
+
return new PublishDataResponse().fromJson(jsonValue, options);
|
|
654
|
+
}
|
|
655
|
+
static fromJsonString(jsonString, options) {
|
|
656
|
+
return new PublishDataResponse().fromJsonString(jsonString, options);
|
|
657
|
+
}
|
|
658
|
+
static equals(a, b) {
|
|
659
|
+
return protobuf_1.proto3.util.equals(PublishDataResponse, a, b);
|
|
660
|
+
}
|
|
661
|
+
}
|
|
662
|
+
exports.PublishDataResponse = PublishDataResponse;
|
|
663
|
+
PublishDataResponse.runtime = protobuf_1.proto3;
|
|
664
|
+
PublishDataResponse.typeName = "livekit.proto.PublishDataResponse";
|
|
665
|
+
PublishDataResponse.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
666
|
+
{ no: 1, name: "async_id", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
|
|
667
|
+
]);
|
|
668
|
+
/**
|
|
669
|
+
* @generated from message livekit.proto.PublishDataCallback
|
|
670
|
+
*/
|
|
671
|
+
class PublishDataCallback extends protobuf_1.Message {
|
|
672
|
+
constructor(data) {
|
|
673
|
+
super();
|
|
674
|
+
/**
|
|
675
|
+
* @generated from field: uint64 async_id = 1;
|
|
676
|
+
*/
|
|
677
|
+
this.asyncId = protobuf_1.protoInt64.zero;
|
|
678
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
679
|
+
}
|
|
680
|
+
static fromBinary(bytes, options) {
|
|
681
|
+
return new PublishDataCallback().fromBinary(bytes, options);
|
|
682
|
+
}
|
|
683
|
+
static fromJson(jsonValue, options) {
|
|
684
|
+
return new PublishDataCallback().fromJson(jsonValue, options);
|
|
685
|
+
}
|
|
686
|
+
static fromJsonString(jsonString, options) {
|
|
687
|
+
return new PublishDataCallback().fromJsonString(jsonString, options);
|
|
688
|
+
}
|
|
689
|
+
static equals(a, b) {
|
|
690
|
+
return protobuf_1.proto3.util.equals(PublishDataCallback, a, b);
|
|
691
|
+
}
|
|
692
|
+
}
|
|
693
|
+
exports.PublishDataCallback = PublishDataCallback;
|
|
694
|
+
PublishDataCallback.runtime = protobuf_1.proto3;
|
|
695
|
+
PublishDataCallback.typeName = "livekit.proto.PublishDataCallback";
|
|
696
|
+
PublishDataCallback.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
697
|
+
{ no: 1, name: "async_id", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
|
|
698
|
+
{ no: 2, name: "error", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
699
|
+
]);
|
|
700
|
+
/**
|
|
701
|
+
* Change the local participant's metadata
|
|
702
|
+
*
|
|
703
|
+
* @generated from message livekit.proto.UpdateLocalMetadataRequest
|
|
704
|
+
*/
|
|
705
|
+
class UpdateLocalMetadataRequest extends protobuf_1.Message {
|
|
706
|
+
constructor(data) {
|
|
707
|
+
super();
|
|
708
|
+
/**
|
|
709
|
+
* @generated from field: uint64 local_participant_handle = 1;
|
|
710
|
+
*/
|
|
711
|
+
this.localParticipantHandle = protobuf_1.protoInt64.zero;
|
|
712
|
+
/**
|
|
713
|
+
* @generated from field: string metadata = 2;
|
|
714
|
+
*/
|
|
715
|
+
this.metadata = "";
|
|
716
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
717
|
+
}
|
|
718
|
+
static fromBinary(bytes, options) {
|
|
719
|
+
return new UpdateLocalMetadataRequest().fromBinary(bytes, options);
|
|
720
|
+
}
|
|
721
|
+
static fromJson(jsonValue, options) {
|
|
722
|
+
return new UpdateLocalMetadataRequest().fromJson(jsonValue, options);
|
|
723
|
+
}
|
|
724
|
+
static fromJsonString(jsonString, options) {
|
|
725
|
+
return new UpdateLocalMetadataRequest().fromJsonString(jsonString, options);
|
|
726
|
+
}
|
|
727
|
+
static equals(a, b) {
|
|
728
|
+
return protobuf_1.proto3.util.equals(UpdateLocalMetadataRequest, a, b);
|
|
729
|
+
}
|
|
730
|
+
}
|
|
731
|
+
exports.UpdateLocalMetadataRequest = UpdateLocalMetadataRequest;
|
|
732
|
+
UpdateLocalMetadataRequest.runtime = protobuf_1.proto3;
|
|
733
|
+
UpdateLocalMetadataRequest.typeName = "livekit.proto.UpdateLocalMetadataRequest";
|
|
734
|
+
UpdateLocalMetadataRequest.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
735
|
+
{ no: 1, name: "local_participant_handle", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
|
|
736
|
+
{ no: 2, name: "metadata", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
737
|
+
]);
|
|
738
|
+
/**
|
|
739
|
+
* @generated from message livekit.proto.UpdateLocalMetadataResponse
|
|
740
|
+
*/
|
|
741
|
+
class UpdateLocalMetadataResponse extends protobuf_1.Message {
|
|
742
|
+
constructor(data) {
|
|
743
|
+
super();
|
|
744
|
+
/**
|
|
745
|
+
* @generated from field: uint64 async_id = 1;
|
|
746
|
+
*/
|
|
747
|
+
this.asyncId = protobuf_1.protoInt64.zero;
|
|
748
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
749
|
+
}
|
|
750
|
+
static fromBinary(bytes, options) {
|
|
751
|
+
return new UpdateLocalMetadataResponse().fromBinary(bytes, options);
|
|
752
|
+
}
|
|
753
|
+
static fromJson(jsonValue, options) {
|
|
754
|
+
return new UpdateLocalMetadataResponse().fromJson(jsonValue, options);
|
|
755
|
+
}
|
|
756
|
+
static fromJsonString(jsonString, options) {
|
|
757
|
+
return new UpdateLocalMetadataResponse().fromJsonString(jsonString, options);
|
|
758
|
+
}
|
|
759
|
+
static equals(a, b) {
|
|
760
|
+
return protobuf_1.proto3.util.equals(UpdateLocalMetadataResponse, a, b);
|
|
761
|
+
}
|
|
762
|
+
}
|
|
763
|
+
exports.UpdateLocalMetadataResponse = UpdateLocalMetadataResponse;
|
|
764
|
+
UpdateLocalMetadataResponse.runtime = protobuf_1.proto3;
|
|
765
|
+
UpdateLocalMetadataResponse.typeName = "livekit.proto.UpdateLocalMetadataResponse";
|
|
766
|
+
UpdateLocalMetadataResponse.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
767
|
+
{ no: 1, name: "async_id", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
|
|
768
|
+
]);
|
|
769
|
+
/**
|
|
770
|
+
* @generated from message livekit.proto.UpdateLocalMetadataCallback
|
|
771
|
+
*/
|
|
772
|
+
class UpdateLocalMetadataCallback extends protobuf_1.Message {
|
|
773
|
+
constructor(data) {
|
|
774
|
+
super();
|
|
775
|
+
/**
|
|
776
|
+
* @generated from field: uint64 async_id = 1;
|
|
777
|
+
*/
|
|
778
|
+
this.asyncId = protobuf_1.protoInt64.zero;
|
|
779
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
780
|
+
}
|
|
781
|
+
static fromBinary(bytes, options) {
|
|
782
|
+
return new UpdateLocalMetadataCallback().fromBinary(bytes, options);
|
|
783
|
+
}
|
|
784
|
+
static fromJson(jsonValue, options) {
|
|
785
|
+
return new UpdateLocalMetadataCallback().fromJson(jsonValue, options);
|
|
786
|
+
}
|
|
787
|
+
static fromJsonString(jsonString, options) {
|
|
788
|
+
return new UpdateLocalMetadataCallback().fromJsonString(jsonString, options);
|
|
789
|
+
}
|
|
790
|
+
static equals(a, b) {
|
|
791
|
+
return protobuf_1.proto3.util.equals(UpdateLocalMetadataCallback, a, b);
|
|
792
|
+
}
|
|
793
|
+
}
|
|
794
|
+
exports.UpdateLocalMetadataCallback = UpdateLocalMetadataCallback;
|
|
795
|
+
UpdateLocalMetadataCallback.runtime = protobuf_1.proto3;
|
|
796
|
+
UpdateLocalMetadataCallback.typeName = "livekit.proto.UpdateLocalMetadataCallback";
|
|
797
|
+
UpdateLocalMetadataCallback.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
798
|
+
{ no: 1, name: "async_id", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
|
|
799
|
+
]);
|
|
800
|
+
/**
|
|
801
|
+
* Change the local participant's name
|
|
802
|
+
*
|
|
803
|
+
* @generated from message livekit.proto.UpdateLocalNameRequest
|
|
804
|
+
*/
|
|
805
|
+
class UpdateLocalNameRequest extends protobuf_1.Message {
|
|
806
|
+
constructor(data) {
|
|
807
|
+
super();
|
|
808
|
+
/**
|
|
809
|
+
* @generated from field: uint64 local_participant_handle = 1;
|
|
810
|
+
*/
|
|
811
|
+
this.localParticipantHandle = protobuf_1.protoInt64.zero;
|
|
812
|
+
/**
|
|
813
|
+
* @generated from field: string name = 2;
|
|
814
|
+
*/
|
|
815
|
+
this.name = "";
|
|
816
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
817
|
+
}
|
|
818
|
+
static fromBinary(bytes, options) {
|
|
819
|
+
return new UpdateLocalNameRequest().fromBinary(bytes, options);
|
|
820
|
+
}
|
|
821
|
+
static fromJson(jsonValue, options) {
|
|
822
|
+
return new UpdateLocalNameRequest().fromJson(jsonValue, options);
|
|
823
|
+
}
|
|
824
|
+
static fromJsonString(jsonString, options) {
|
|
825
|
+
return new UpdateLocalNameRequest().fromJsonString(jsonString, options);
|
|
826
|
+
}
|
|
827
|
+
static equals(a, b) {
|
|
828
|
+
return protobuf_1.proto3.util.equals(UpdateLocalNameRequest, a, b);
|
|
829
|
+
}
|
|
830
|
+
}
|
|
831
|
+
exports.UpdateLocalNameRequest = UpdateLocalNameRequest;
|
|
832
|
+
UpdateLocalNameRequest.runtime = protobuf_1.proto3;
|
|
833
|
+
UpdateLocalNameRequest.typeName = "livekit.proto.UpdateLocalNameRequest";
|
|
834
|
+
UpdateLocalNameRequest.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
835
|
+
{ no: 1, name: "local_participant_handle", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
|
|
836
|
+
{ no: 2, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
837
|
+
]);
|
|
838
|
+
/**
|
|
839
|
+
* @generated from message livekit.proto.UpdateLocalNameResponse
|
|
840
|
+
*/
|
|
841
|
+
class UpdateLocalNameResponse extends protobuf_1.Message {
|
|
842
|
+
constructor(data) {
|
|
843
|
+
super();
|
|
844
|
+
/**
|
|
845
|
+
* @generated from field: uint64 async_id = 1;
|
|
846
|
+
*/
|
|
847
|
+
this.asyncId = protobuf_1.protoInt64.zero;
|
|
848
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
849
|
+
}
|
|
850
|
+
static fromBinary(bytes, options) {
|
|
851
|
+
return new UpdateLocalNameResponse().fromBinary(bytes, options);
|
|
852
|
+
}
|
|
853
|
+
static fromJson(jsonValue, options) {
|
|
854
|
+
return new UpdateLocalNameResponse().fromJson(jsonValue, options);
|
|
855
|
+
}
|
|
856
|
+
static fromJsonString(jsonString, options) {
|
|
857
|
+
return new UpdateLocalNameResponse().fromJsonString(jsonString, options);
|
|
858
|
+
}
|
|
859
|
+
static equals(a, b) {
|
|
860
|
+
return protobuf_1.proto3.util.equals(UpdateLocalNameResponse, a, b);
|
|
861
|
+
}
|
|
862
|
+
}
|
|
863
|
+
exports.UpdateLocalNameResponse = UpdateLocalNameResponse;
|
|
864
|
+
UpdateLocalNameResponse.runtime = protobuf_1.proto3;
|
|
865
|
+
UpdateLocalNameResponse.typeName = "livekit.proto.UpdateLocalNameResponse";
|
|
866
|
+
UpdateLocalNameResponse.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
867
|
+
{ no: 1, name: "async_id", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
|
|
868
|
+
]);
|
|
869
|
+
/**
|
|
870
|
+
* @generated from message livekit.proto.UpdateLocalNameCallback
|
|
871
|
+
*/
|
|
872
|
+
class UpdateLocalNameCallback extends protobuf_1.Message {
|
|
873
|
+
constructor(data) {
|
|
874
|
+
super();
|
|
875
|
+
/**
|
|
876
|
+
* @generated from field: uint64 async_id = 1;
|
|
877
|
+
*/
|
|
878
|
+
this.asyncId = protobuf_1.protoInt64.zero;
|
|
879
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
880
|
+
}
|
|
881
|
+
static fromBinary(bytes, options) {
|
|
882
|
+
return new UpdateLocalNameCallback().fromBinary(bytes, options);
|
|
883
|
+
}
|
|
884
|
+
static fromJson(jsonValue, options) {
|
|
885
|
+
return new UpdateLocalNameCallback().fromJson(jsonValue, options);
|
|
886
|
+
}
|
|
887
|
+
static fromJsonString(jsonString, options) {
|
|
888
|
+
return new UpdateLocalNameCallback().fromJsonString(jsonString, options);
|
|
889
|
+
}
|
|
890
|
+
static equals(a, b) {
|
|
891
|
+
return protobuf_1.proto3.util.equals(UpdateLocalNameCallback, a, b);
|
|
892
|
+
}
|
|
893
|
+
}
|
|
894
|
+
exports.UpdateLocalNameCallback = UpdateLocalNameCallback;
|
|
895
|
+
UpdateLocalNameCallback.runtime = protobuf_1.proto3;
|
|
896
|
+
UpdateLocalNameCallback.typeName = "livekit.proto.UpdateLocalNameCallback";
|
|
897
|
+
UpdateLocalNameCallback.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
898
|
+
{ no: 1, name: "async_id", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
|
|
899
|
+
]);
|
|
900
|
+
/**
|
|
901
|
+
* Change the "desire" to subs2ribe to a track
|
|
902
|
+
*
|
|
903
|
+
* @generated from message livekit.proto.SetSubscribedRequest
|
|
904
|
+
*/
|
|
905
|
+
class SetSubscribedRequest extends protobuf_1.Message {
|
|
906
|
+
constructor(data) {
|
|
907
|
+
super();
|
|
908
|
+
/**
|
|
909
|
+
* @generated from field: bool subscribe = 1;
|
|
910
|
+
*/
|
|
911
|
+
this.subscribe = false;
|
|
912
|
+
/**
|
|
913
|
+
* @generated from field: uint64 publication_handle = 2;
|
|
914
|
+
*/
|
|
915
|
+
this.publicationHandle = protobuf_1.protoInt64.zero;
|
|
916
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
917
|
+
}
|
|
918
|
+
static fromBinary(bytes, options) {
|
|
919
|
+
return new SetSubscribedRequest().fromBinary(bytes, options);
|
|
920
|
+
}
|
|
921
|
+
static fromJson(jsonValue, options) {
|
|
922
|
+
return new SetSubscribedRequest().fromJson(jsonValue, options);
|
|
923
|
+
}
|
|
924
|
+
static fromJsonString(jsonString, options) {
|
|
925
|
+
return new SetSubscribedRequest().fromJsonString(jsonString, options);
|
|
926
|
+
}
|
|
927
|
+
static equals(a, b) {
|
|
928
|
+
return protobuf_1.proto3.util.equals(SetSubscribedRequest, a, b);
|
|
929
|
+
}
|
|
930
|
+
}
|
|
931
|
+
exports.SetSubscribedRequest = SetSubscribedRequest;
|
|
932
|
+
SetSubscribedRequest.runtime = protobuf_1.proto3;
|
|
933
|
+
SetSubscribedRequest.typeName = "livekit.proto.SetSubscribedRequest";
|
|
934
|
+
SetSubscribedRequest.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
935
|
+
{ no: 1, name: "subscribe", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
936
|
+
{ no: 2, name: "publication_handle", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
|
|
937
|
+
]);
|
|
938
|
+
/**
|
|
939
|
+
* @generated from message livekit.proto.SetSubscribedResponse
|
|
940
|
+
*/
|
|
941
|
+
class SetSubscribedResponse extends protobuf_1.Message {
|
|
942
|
+
constructor(data) {
|
|
943
|
+
super();
|
|
944
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
945
|
+
}
|
|
946
|
+
static fromBinary(bytes, options) {
|
|
947
|
+
return new SetSubscribedResponse().fromBinary(bytes, options);
|
|
948
|
+
}
|
|
949
|
+
static fromJson(jsonValue, options) {
|
|
950
|
+
return new SetSubscribedResponse().fromJson(jsonValue, options);
|
|
951
|
+
}
|
|
952
|
+
static fromJsonString(jsonString, options) {
|
|
953
|
+
return new SetSubscribedResponse().fromJsonString(jsonString, options);
|
|
954
|
+
}
|
|
955
|
+
static equals(a, b) {
|
|
956
|
+
return protobuf_1.proto3.util.equals(SetSubscribedResponse, a, b);
|
|
957
|
+
}
|
|
958
|
+
}
|
|
959
|
+
exports.SetSubscribedResponse = SetSubscribedResponse;
|
|
960
|
+
SetSubscribedResponse.runtime = protobuf_1.proto3;
|
|
961
|
+
SetSubscribedResponse.typeName = "livekit.proto.SetSubscribedResponse";
|
|
962
|
+
SetSubscribedResponse.fields = protobuf_1.proto3.util.newFieldList(() => []);
|
|
963
|
+
/**
|
|
964
|
+
* @generated from message livekit.proto.VideoEncoding
|
|
965
|
+
*/
|
|
966
|
+
class VideoEncoding extends protobuf_1.Message {
|
|
967
|
+
constructor(data) {
|
|
968
|
+
super();
|
|
969
|
+
/**
|
|
970
|
+
* @generated from field: uint64 max_bitrate = 1;
|
|
971
|
+
*/
|
|
972
|
+
this.maxBitrate = protobuf_1.protoInt64.zero;
|
|
973
|
+
/**
|
|
974
|
+
* @generated from field: double max_framerate = 2;
|
|
975
|
+
*/
|
|
976
|
+
this.maxFramerate = 0;
|
|
977
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
978
|
+
}
|
|
979
|
+
static fromBinary(bytes, options) {
|
|
980
|
+
return new VideoEncoding().fromBinary(bytes, options);
|
|
981
|
+
}
|
|
982
|
+
static fromJson(jsonValue, options) {
|
|
983
|
+
return new VideoEncoding().fromJson(jsonValue, options);
|
|
984
|
+
}
|
|
985
|
+
static fromJsonString(jsonString, options) {
|
|
986
|
+
return new VideoEncoding().fromJsonString(jsonString, options);
|
|
987
|
+
}
|
|
988
|
+
static equals(a, b) {
|
|
989
|
+
return protobuf_1.proto3.util.equals(VideoEncoding, a, b);
|
|
990
|
+
}
|
|
991
|
+
}
|
|
992
|
+
exports.VideoEncoding = VideoEncoding;
|
|
993
|
+
VideoEncoding.runtime = protobuf_1.proto3;
|
|
994
|
+
VideoEncoding.typeName = "livekit.proto.VideoEncoding";
|
|
995
|
+
VideoEncoding.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
996
|
+
{ no: 1, name: "max_bitrate", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
|
|
997
|
+
{ no: 2, name: "max_framerate", kind: "scalar", T: 1 /* ScalarType.DOUBLE */ },
|
|
998
|
+
]);
|
|
999
|
+
/**
|
|
1000
|
+
* @generated from message livekit.proto.AudioEncoding
|
|
1001
|
+
*/
|
|
1002
|
+
class AudioEncoding extends protobuf_1.Message {
|
|
1003
|
+
constructor(data) {
|
|
1004
|
+
super();
|
|
1005
|
+
/**
|
|
1006
|
+
* @generated from field: uint64 max_bitrate = 1;
|
|
1007
|
+
*/
|
|
1008
|
+
this.maxBitrate = protobuf_1.protoInt64.zero;
|
|
1009
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
1010
|
+
}
|
|
1011
|
+
static fromBinary(bytes, options) {
|
|
1012
|
+
return new AudioEncoding().fromBinary(bytes, options);
|
|
1013
|
+
}
|
|
1014
|
+
static fromJson(jsonValue, options) {
|
|
1015
|
+
return new AudioEncoding().fromJson(jsonValue, options);
|
|
1016
|
+
}
|
|
1017
|
+
static fromJsonString(jsonString, options) {
|
|
1018
|
+
return new AudioEncoding().fromJsonString(jsonString, options);
|
|
1019
|
+
}
|
|
1020
|
+
static equals(a, b) {
|
|
1021
|
+
return protobuf_1.proto3.util.equals(AudioEncoding, a, b);
|
|
1022
|
+
}
|
|
1023
|
+
}
|
|
1024
|
+
exports.AudioEncoding = AudioEncoding;
|
|
1025
|
+
AudioEncoding.runtime = protobuf_1.proto3;
|
|
1026
|
+
AudioEncoding.typeName = "livekit.proto.AudioEncoding";
|
|
1027
|
+
AudioEncoding.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
1028
|
+
{ no: 1, name: "max_bitrate", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
|
|
1029
|
+
]);
|
|
1030
|
+
/**
|
|
1031
|
+
* @generated from message livekit.proto.TrackPublishOptions
|
|
1032
|
+
*/
|
|
1033
|
+
class TrackPublishOptions extends protobuf_1.Message {
|
|
1034
|
+
constructor(data) {
|
|
1035
|
+
super();
|
|
1036
|
+
/**
|
|
1037
|
+
* @generated from field: livekit.proto.VideoCodec video_codec = 3;
|
|
1038
|
+
*/
|
|
1039
|
+
this.videoCodec = video_frame_pb_js_1.VideoCodec.VP8;
|
|
1040
|
+
/**
|
|
1041
|
+
* @generated from field: bool dtx = 4;
|
|
1042
|
+
*/
|
|
1043
|
+
this.dtx = false;
|
|
1044
|
+
/**
|
|
1045
|
+
* @generated from field: bool red = 5;
|
|
1046
|
+
*/
|
|
1047
|
+
this.red = false;
|
|
1048
|
+
/**
|
|
1049
|
+
* @generated from field: bool simulcast = 6;
|
|
1050
|
+
*/
|
|
1051
|
+
this.simulcast = false;
|
|
1052
|
+
/**
|
|
1053
|
+
* @generated from field: livekit.proto.TrackSource source = 7;
|
|
1054
|
+
*/
|
|
1055
|
+
this.source = track_pb_js_1.TrackSource.SOURCE_UNKNOWN;
|
|
1056
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
1057
|
+
}
|
|
1058
|
+
static fromBinary(bytes, options) {
|
|
1059
|
+
return new TrackPublishOptions().fromBinary(bytes, options);
|
|
1060
|
+
}
|
|
1061
|
+
static fromJson(jsonValue, options) {
|
|
1062
|
+
return new TrackPublishOptions().fromJson(jsonValue, options);
|
|
1063
|
+
}
|
|
1064
|
+
static fromJsonString(jsonString, options) {
|
|
1065
|
+
return new TrackPublishOptions().fromJsonString(jsonString, options);
|
|
1066
|
+
}
|
|
1067
|
+
static equals(a, b) {
|
|
1068
|
+
return protobuf_1.proto3.util.equals(TrackPublishOptions, a, b);
|
|
1069
|
+
}
|
|
1070
|
+
}
|
|
1071
|
+
exports.TrackPublishOptions = TrackPublishOptions;
|
|
1072
|
+
TrackPublishOptions.runtime = protobuf_1.proto3;
|
|
1073
|
+
TrackPublishOptions.typeName = "livekit.proto.TrackPublishOptions";
|
|
1074
|
+
TrackPublishOptions.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
1075
|
+
{ no: 1, name: "video_encoding", kind: "message", T: VideoEncoding },
|
|
1076
|
+
{ no: 2, name: "audio_encoding", kind: "message", T: AudioEncoding },
|
|
1077
|
+
{ no: 3, name: "video_codec", kind: "enum", T: protobuf_1.proto3.getEnumType(video_frame_pb_js_1.VideoCodec) },
|
|
1078
|
+
{ no: 4, name: "dtx", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
1079
|
+
{ no: 5, name: "red", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
1080
|
+
{ no: 6, name: "simulcast", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
1081
|
+
{ no: 7, name: "source", kind: "enum", T: protobuf_1.proto3.getEnumType(track_pb_js_1.TrackSource) },
|
|
1082
|
+
]);
|
|
1083
|
+
/**
|
|
1084
|
+
* @generated from message livekit.proto.IceServer
|
|
1085
|
+
*/
|
|
1086
|
+
class IceServer extends protobuf_1.Message {
|
|
1087
|
+
constructor(data) {
|
|
1088
|
+
super();
|
|
1089
|
+
/**
|
|
1090
|
+
* @generated from field: repeated string urls = 1;
|
|
1091
|
+
*/
|
|
1092
|
+
this.urls = [];
|
|
1093
|
+
/**
|
|
1094
|
+
* @generated from field: string username = 2;
|
|
1095
|
+
*/
|
|
1096
|
+
this.username = "";
|
|
1097
|
+
/**
|
|
1098
|
+
* @generated from field: string password = 3;
|
|
1099
|
+
*/
|
|
1100
|
+
this.password = "";
|
|
1101
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
1102
|
+
}
|
|
1103
|
+
static fromBinary(bytes, options) {
|
|
1104
|
+
return new IceServer().fromBinary(bytes, options);
|
|
1105
|
+
}
|
|
1106
|
+
static fromJson(jsonValue, options) {
|
|
1107
|
+
return new IceServer().fromJson(jsonValue, options);
|
|
1108
|
+
}
|
|
1109
|
+
static fromJsonString(jsonString, options) {
|
|
1110
|
+
return new IceServer().fromJsonString(jsonString, options);
|
|
1111
|
+
}
|
|
1112
|
+
static equals(a, b) {
|
|
1113
|
+
return protobuf_1.proto3.util.equals(IceServer, a, b);
|
|
1114
|
+
}
|
|
1115
|
+
}
|
|
1116
|
+
exports.IceServer = IceServer;
|
|
1117
|
+
IceServer.runtime = protobuf_1.proto3;
|
|
1118
|
+
IceServer.typeName = "livekit.proto.IceServer";
|
|
1119
|
+
IceServer.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
1120
|
+
{ no: 1, name: "urls", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
|
|
1121
|
+
{ no: 2, name: "username", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1122
|
+
{ no: 3, name: "password", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1123
|
+
]);
|
|
1124
|
+
/**
|
|
1125
|
+
* @generated from message livekit.proto.RtcConfig
|
|
1126
|
+
*/
|
|
1127
|
+
class RtcConfig extends protobuf_1.Message {
|
|
1128
|
+
constructor(data) {
|
|
1129
|
+
super();
|
|
1130
|
+
/**
|
|
1131
|
+
* empty fallback to default
|
|
1132
|
+
*
|
|
1133
|
+
* @generated from field: repeated livekit.proto.IceServer ice_servers = 3;
|
|
1134
|
+
*/
|
|
1135
|
+
this.iceServers = [];
|
|
1136
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
1137
|
+
}
|
|
1138
|
+
static fromBinary(bytes, options) {
|
|
1139
|
+
return new RtcConfig().fromBinary(bytes, options);
|
|
1140
|
+
}
|
|
1141
|
+
static fromJson(jsonValue, options) {
|
|
1142
|
+
return new RtcConfig().fromJson(jsonValue, options);
|
|
1143
|
+
}
|
|
1144
|
+
static fromJsonString(jsonString, options) {
|
|
1145
|
+
return new RtcConfig().fromJsonString(jsonString, options);
|
|
1146
|
+
}
|
|
1147
|
+
static equals(a, b) {
|
|
1148
|
+
return protobuf_1.proto3.util.equals(RtcConfig, a, b);
|
|
1149
|
+
}
|
|
1150
|
+
}
|
|
1151
|
+
exports.RtcConfig = RtcConfig;
|
|
1152
|
+
RtcConfig.runtime = protobuf_1.proto3;
|
|
1153
|
+
RtcConfig.typeName = "livekit.proto.RtcConfig";
|
|
1154
|
+
RtcConfig.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
1155
|
+
{ no: 1, name: "ice_transport_type", kind: "enum", T: protobuf_1.proto3.getEnumType(IceTransportType), opt: true },
|
|
1156
|
+
{ no: 2, name: "continual_gathering_policy", kind: "enum", T: protobuf_1.proto3.getEnumType(ContinualGatheringPolicy), opt: true },
|
|
1157
|
+
{ no: 3, name: "ice_servers", kind: "message", T: IceServer, repeated: true },
|
|
1158
|
+
]);
|
|
1159
|
+
/**
|
|
1160
|
+
* @generated from message livekit.proto.RoomOptions
|
|
1161
|
+
*/
|
|
1162
|
+
class RoomOptions extends protobuf_1.Message {
|
|
1163
|
+
constructor(data) {
|
|
1164
|
+
super();
|
|
1165
|
+
/**
|
|
1166
|
+
* @generated from field: bool auto_subscribe = 1;
|
|
1167
|
+
*/
|
|
1168
|
+
this.autoSubscribe = false;
|
|
1169
|
+
/**
|
|
1170
|
+
* @generated from field: bool adaptive_stream = 2;
|
|
1171
|
+
*/
|
|
1172
|
+
this.adaptiveStream = false;
|
|
1173
|
+
/**
|
|
1174
|
+
* @generated from field: bool dynacast = 3;
|
|
1175
|
+
*/
|
|
1176
|
+
this.dynacast = false;
|
|
1177
|
+
/**
|
|
1178
|
+
* @generated from field: uint32 join_retries = 6;
|
|
1179
|
+
*/
|
|
1180
|
+
this.joinRetries = 0;
|
|
1181
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
1182
|
+
}
|
|
1183
|
+
static fromBinary(bytes, options) {
|
|
1184
|
+
return new RoomOptions().fromBinary(bytes, options);
|
|
1185
|
+
}
|
|
1186
|
+
static fromJson(jsonValue, options) {
|
|
1187
|
+
return new RoomOptions().fromJson(jsonValue, options);
|
|
1188
|
+
}
|
|
1189
|
+
static fromJsonString(jsonString, options) {
|
|
1190
|
+
return new RoomOptions().fromJsonString(jsonString, options);
|
|
1191
|
+
}
|
|
1192
|
+
static equals(a, b) {
|
|
1193
|
+
return protobuf_1.proto3.util.equals(RoomOptions, a, b);
|
|
1194
|
+
}
|
|
1195
|
+
}
|
|
1196
|
+
exports.RoomOptions = RoomOptions;
|
|
1197
|
+
RoomOptions.runtime = protobuf_1.proto3;
|
|
1198
|
+
RoomOptions.typeName = "livekit.proto.RoomOptions";
|
|
1199
|
+
RoomOptions.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
1200
|
+
{ no: 1, name: "auto_subscribe", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
1201
|
+
{ no: 2, name: "adaptive_stream", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
1202
|
+
{ no: 3, name: "dynacast", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
1203
|
+
{ no: 4, name: "e2ee", kind: "message", T: e2ee_pb_js_1.E2eeOptions, opt: true },
|
|
1204
|
+
{ no: 5, name: "rtc_config", kind: "message", T: RtcConfig, opt: true },
|
|
1205
|
+
{ no: 6, name: "join_retries", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
1206
|
+
]);
|
|
1207
|
+
/**
|
|
1208
|
+
* @generated from message livekit.proto.BufferInfo
|
|
1209
|
+
*/
|
|
1210
|
+
class BufferInfo extends protobuf_1.Message {
|
|
1211
|
+
constructor(data) {
|
|
1212
|
+
super();
|
|
1213
|
+
/**
|
|
1214
|
+
* @generated from field: uint64 data_ptr = 1;
|
|
1215
|
+
*/
|
|
1216
|
+
this.dataPtr = protobuf_1.protoInt64.zero;
|
|
1217
|
+
/**
|
|
1218
|
+
* @generated from field: uint64 data_len = 2;
|
|
1219
|
+
*/
|
|
1220
|
+
this.dataLen = protobuf_1.protoInt64.zero;
|
|
1221
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
1222
|
+
}
|
|
1223
|
+
static fromBinary(bytes, options) {
|
|
1224
|
+
return new BufferInfo().fromBinary(bytes, options);
|
|
1225
|
+
}
|
|
1226
|
+
static fromJson(jsonValue, options) {
|
|
1227
|
+
return new BufferInfo().fromJson(jsonValue, options);
|
|
1228
|
+
}
|
|
1229
|
+
static fromJsonString(jsonString, options) {
|
|
1230
|
+
return new BufferInfo().fromJsonString(jsonString, options);
|
|
1231
|
+
}
|
|
1232
|
+
static equals(a, b) {
|
|
1233
|
+
return protobuf_1.proto3.util.equals(BufferInfo, a, b);
|
|
1234
|
+
}
|
|
1235
|
+
}
|
|
1236
|
+
exports.BufferInfo = BufferInfo;
|
|
1237
|
+
BufferInfo.runtime = protobuf_1.proto3;
|
|
1238
|
+
BufferInfo.typeName = "livekit.proto.BufferInfo";
|
|
1239
|
+
BufferInfo.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
1240
|
+
{ no: 1, name: "data_ptr", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
|
|
1241
|
+
{ no: 2, name: "data_len", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
|
|
1242
|
+
]);
|
|
1243
|
+
/**
|
|
1244
|
+
* @generated from message livekit.proto.OwnedBuffer
|
|
1245
|
+
*/
|
|
1246
|
+
class OwnedBuffer extends protobuf_1.Message {
|
|
1247
|
+
constructor(data) {
|
|
1248
|
+
super();
|
|
1249
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
1250
|
+
}
|
|
1251
|
+
static fromBinary(bytes, options) {
|
|
1252
|
+
return new OwnedBuffer().fromBinary(bytes, options);
|
|
1253
|
+
}
|
|
1254
|
+
static fromJson(jsonValue, options) {
|
|
1255
|
+
return new OwnedBuffer().fromJson(jsonValue, options);
|
|
1256
|
+
}
|
|
1257
|
+
static fromJsonString(jsonString, options) {
|
|
1258
|
+
return new OwnedBuffer().fromJsonString(jsonString, options);
|
|
1259
|
+
}
|
|
1260
|
+
static equals(a, b) {
|
|
1261
|
+
return protobuf_1.proto3.util.equals(OwnedBuffer, a, b);
|
|
1262
|
+
}
|
|
1263
|
+
}
|
|
1264
|
+
exports.OwnedBuffer = OwnedBuffer;
|
|
1265
|
+
OwnedBuffer.runtime = protobuf_1.proto3;
|
|
1266
|
+
OwnedBuffer.typeName = "livekit.proto.OwnedBuffer";
|
|
1267
|
+
OwnedBuffer.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
1268
|
+
{ no: 1, name: "handle", kind: "message", T: handle_pb_js_1.FfiOwnedHandle },
|
|
1269
|
+
{ no: 2, name: "data", kind: "message", T: BufferInfo },
|
|
1270
|
+
]);
|
|
1271
|
+
/**
|
|
1272
|
+
* @generated from message livekit.proto.RoomEvent
|
|
1273
|
+
*/
|
|
1274
|
+
class RoomEvent extends protobuf_1.Message {
|
|
1275
|
+
constructor(data) {
|
|
1276
|
+
super();
|
|
1277
|
+
/**
|
|
1278
|
+
* @generated from field: uint64 room_handle = 1;
|
|
1279
|
+
*/
|
|
1280
|
+
this.roomHandle = protobuf_1.protoInt64.zero;
|
|
1281
|
+
/**
|
|
1282
|
+
* @generated from oneof livekit.proto.RoomEvent.message
|
|
1283
|
+
*/
|
|
1284
|
+
this.message = { case: undefined };
|
|
1285
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
1286
|
+
}
|
|
1287
|
+
static fromBinary(bytes, options) {
|
|
1288
|
+
return new RoomEvent().fromBinary(bytes, options);
|
|
1289
|
+
}
|
|
1290
|
+
static fromJson(jsonValue, options) {
|
|
1291
|
+
return new RoomEvent().fromJson(jsonValue, options);
|
|
1292
|
+
}
|
|
1293
|
+
static fromJsonString(jsonString, options) {
|
|
1294
|
+
return new RoomEvent().fromJsonString(jsonString, options);
|
|
1295
|
+
}
|
|
1296
|
+
static equals(a, b) {
|
|
1297
|
+
return protobuf_1.proto3.util.equals(RoomEvent, a, b);
|
|
1298
|
+
}
|
|
1299
|
+
}
|
|
1300
|
+
exports.RoomEvent = RoomEvent;
|
|
1301
|
+
RoomEvent.runtime = protobuf_1.proto3;
|
|
1302
|
+
RoomEvent.typeName = "livekit.proto.RoomEvent";
|
|
1303
|
+
RoomEvent.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
1304
|
+
{ no: 1, name: "room_handle", kind: "scalar", T: 4 /* ScalarType.UINT64 */ },
|
|
1305
|
+
{ no: 2, name: "participant_connected", kind: "message", T: ParticipantConnected, oneof: "message" },
|
|
1306
|
+
{ no: 3, name: "participant_disconnected", kind: "message", T: ParticipantDisconnected, oneof: "message" },
|
|
1307
|
+
{ no: 4, name: "local_track_published", kind: "message", T: LocalTrackPublished, oneof: "message" },
|
|
1308
|
+
{ no: 5, name: "local_track_unpublished", kind: "message", T: LocalTrackUnpublished, oneof: "message" },
|
|
1309
|
+
{ no: 6, name: "track_published", kind: "message", T: TrackPublished, oneof: "message" },
|
|
1310
|
+
{ no: 7, name: "track_unpublished", kind: "message", T: TrackUnpublished, oneof: "message" },
|
|
1311
|
+
{ no: 8, name: "track_subscribed", kind: "message", T: TrackSubscribed, oneof: "message" },
|
|
1312
|
+
{ no: 9, name: "track_unsubscribed", kind: "message", T: TrackUnsubscribed, oneof: "message" },
|
|
1313
|
+
{ no: 10, name: "track_subscription_failed", kind: "message", T: TrackSubscriptionFailed, oneof: "message" },
|
|
1314
|
+
{ no: 11, name: "track_muted", kind: "message", T: TrackMuted, oneof: "message" },
|
|
1315
|
+
{ no: 12, name: "track_unmuted", kind: "message", T: TrackUnmuted, oneof: "message" },
|
|
1316
|
+
{ no: 13, name: "active_speakers_changed", kind: "message", T: ActiveSpeakersChanged, oneof: "message" },
|
|
1317
|
+
{ no: 14, name: "room_metadata_changed", kind: "message", T: RoomMetadataChanged, oneof: "message" },
|
|
1318
|
+
{ no: 15, name: "participant_metadata_changed", kind: "message", T: ParticipantMetadataChanged, oneof: "message" },
|
|
1319
|
+
{ no: 16, name: "participant_name_changed", kind: "message", T: ParticipantNameChanged, oneof: "message" },
|
|
1320
|
+
{ no: 17, name: "connection_quality_changed", kind: "message", T: ConnectionQualityChanged, oneof: "message" },
|
|
1321
|
+
{ no: 18, name: "data_received", kind: "message", T: DataReceived, oneof: "message" },
|
|
1322
|
+
{ no: 19, name: "connection_state_changed", kind: "message", T: ConnectionStateChanged, oneof: "message" },
|
|
1323
|
+
{ no: 21, name: "disconnected", kind: "message", T: Disconnected, oneof: "message" },
|
|
1324
|
+
{ no: 22, name: "reconnecting", kind: "message", T: Reconnecting, oneof: "message" },
|
|
1325
|
+
{ no: 23, name: "reconnected", kind: "message", T: Reconnected, oneof: "message" },
|
|
1326
|
+
{ no: 24, name: "e2ee_state_changed", kind: "message", T: E2eeStateChanged, oneof: "message" },
|
|
1327
|
+
{ no: 25, name: "eos", kind: "message", T: RoomEOS, oneof: "message" },
|
|
1328
|
+
]);
|
|
1329
|
+
/**
|
|
1330
|
+
* @generated from message livekit.proto.RoomInfo
|
|
1331
|
+
*/
|
|
1332
|
+
class RoomInfo extends protobuf_1.Message {
|
|
1333
|
+
constructor(data) {
|
|
1334
|
+
super();
|
|
1335
|
+
/**
|
|
1336
|
+
* @generated from field: string sid = 1;
|
|
1337
|
+
*/
|
|
1338
|
+
this.sid = "";
|
|
1339
|
+
/**
|
|
1340
|
+
* @generated from field: string name = 2;
|
|
1341
|
+
*/
|
|
1342
|
+
this.name = "";
|
|
1343
|
+
/**
|
|
1344
|
+
* @generated from field: string metadata = 3;
|
|
1345
|
+
*/
|
|
1346
|
+
this.metadata = "";
|
|
1347
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
1348
|
+
}
|
|
1349
|
+
static fromBinary(bytes, options) {
|
|
1350
|
+
return new RoomInfo().fromBinary(bytes, options);
|
|
1351
|
+
}
|
|
1352
|
+
static fromJson(jsonValue, options) {
|
|
1353
|
+
return new RoomInfo().fromJson(jsonValue, options);
|
|
1354
|
+
}
|
|
1355
|
+
static fromJsonString(jsonString, options) {
|
|
1356
|
+
return new RoomInfo().fromJsonString(jsonString, options);
|
|
1357
|
+
}
|
|
1358
|
+
static equals(a, b) {
|
|
1359
|
+
return protobuf_1.proto3.util.equals(RoomInfo, a, b);
|
|
1360
|
+
}
|
|
1361
|
+
}
|
|
1362
|
+
exports.RoomInfo = RoomInfo;
|
|
1363
|
+
RoomInfo.runtime = protobuf_1.proto3;
|
|
1364
|
+
RoomInfo.typeName = "livekit.proto.RoomInfo";
|
|
1365
|
+
RoomInfo.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
1366
|
+
{ no: 1, name: "sid", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1367
|
+
{ no: 2, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1368
|
+
{ no: 3, name: "metadata", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1369
|
+
]);
|
|
1370
|
+
/**
|
|
1371
|
+
* @generated from message livekit.proto.OwnedRoom
|
|
1372
|
+
*/
|
|
1373
|
+
class OwnedRoom extends protobuf_1.Message {
|
|
1374
|
+
constructor(data) {
|
|
1375
|
+
super();
|
|
1376
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
1377
|
+
}
|
|
1378
|
+
static fromBinary(bytes, options) {
|
|
1379
|
+
return new OwnedRoom().fromBinary(bytes, options);
|
|
1380
|
+
}
|
|
1381
|
+
static fromJson(jsonValue, options) {
|
|
1382
|
+
return new OwnedRoom().fromJson(jsonValue, options);
|
|
1383
|
+
}
|
|
1384
|
+
static fromJsonString(jsonString, options) {
|
|
1385
|
+
return new OwnedRoom().fromJsonString(jsonString, options);
|
|
1386
|
+
}
|
|
1387
|
+
static equals(a, b) {
|
|
1388
|
+
return protobuf_1.proto3.util.equals(OwnedRoom, a, b);
|
|
1389
|
+
}
|
|
1390
|
+
}
|
|
1391
|
+
exports.OwnedRoom = OwnedRoom;
|
|
1392
|
+
OwnedRoom.runtime = protobuf_1.proto3;
|
|
1393
|
+
OwnedRoom.typeName = "livekit.proto.OwnedRoom";
|
|
1394
|
+
OwnedRoom.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
1395
|
+
{ no: 1, name: "handle", kind: "message", T: handle_pb_js_1.FfiOwnedHandle },
|
|
1396
|
+
{ no: 2, name: "info", kind: "message", T: RoomInfo },
|
|
1397
|
+
]);
|
|
1398
|
+
/**
|
|
1399
|
+
* @generated from message livekit.proto.ParticipantConnected
|
|
1400
|
+
*/
|
|
1401
|
+
class ParticipantConnected extends protobuf_1.Message {
|
|
1402
|
+
constructor(data) {
|
|
1403
|
+
super();
|
|
1404
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
1405
|
+
}
|
|
1406
|
+
static fromBinary(bytes, options) {
|
|
1407
|
+
return new ParticipantConnected().fromBinary(bytes, options);
|
|
1408
|
+
}
|
|
1409
|
+
static fromJson(jsonValue, options) {
|
|
1410
|
+
return new ParticipantConnected().fromJson(jsonValue, options);
|
|
1411
|
+
}
|
|
1412
|
+
static fromJsonString(jsonString, options) {
|
|
1413
|
+
return new ParticipantConnected().fromJsonString(jsonString, options);
|
|
1414
|
+
}
|
|
1415
|
+
static equals(a, b) {
|
|
1416
|
+
return protobuf_1.proto3.util.equals(ParticipantConnected, a, b);
|
|
1417
|
+
}
|
|
1418
|
+
}
|
|
1419
|
+
exports.ParticipantConnected = ParticipantConnected;
|
|
1420
|
+
ParticipantConnected.runtime = protobuf_1.proto3;
|
|
1421
|
+
ParticipantConnected.typeName = "livekit.proto.ParticipantConnected";
|
|
1422
|
+
ParticipantConnected.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
1423
|
+
{ no: 1, name: "info", kind: "message", T: participant_pb_js_1.OwnedParticipant },
|
|
1424
|
+
]);
|
|
1425
|
+
/**
|
|
1426
|
+
* @generated from message livekit.proto.ParticipantDisconnected
|
|
1427
|
+
*/
|
|
1428
|
+
class ParticipantDisconnected extends protobuf_1.Message {
|
|
1429
|
+
constructor(data) {
|
|
1430
|
+
super();
|
|
1431
|
+
/**
|
|
1432
|
+
* @generated from field: string participant_sid = 1;
|
|
1433
|
+
*/
|
|
1434
|
+
this.participantSid = "";
|
|
1435
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
1436
|
+
}
|
|
1437
|
+
static fromBinary(bytes, options) {
|
|
1438
|
+
return new ParticipantDisconnected().fromBinary(bytes, options);
|
|
1439
|
+
}
|
|
1440
|
+
static fromJson(jsonValue, options) {
|
|
1441
|
+
return new ParticipantDisconnected().fromJson(jsonValue, options);
|
|
1442
|
+
}
|
|
1443
|
+
static fromJsonString(jsonString, options) {
|
|
1444
|
+
return new ParticipantDisconnected().fromJsonString(jsonString, options);
|
|
1445
|
+
}
|
|
1446
|
+
static equals(a, b) {
|
|
1447
|
+
return protobuf_1.proto3.util.equals(ParticipantDisconnected, a, b);
|
|
1448
|
+
}
|
|
1449
|
+
}
|
|
1450
|
+
exports.ParticipantDisconnected = ParticipantDisconnected;
|
|
1451
|
+
ParticipantDisconnected.runtime = protobuf_1.proto3;
|
|
1452
|
+
ParticipantDisconnected.typeName = "livekit.proto.ParticipantDisconnected";
|
|
1453
|
+
ParticipantDisconnected.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
1454
|
+
{ no: 1, name: "participant_sid", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1455
|
+
]);
|
|
1456
|
+
/**
|
|
1457
|
+
* @generated from message livekit.proto.LocalTrackPublished
|
|
1458
|
+
*/
|
|
1459
|
+
class LocalTrackPublished extends protobuf_1.Message {
|
|
1460
|
+
constructor(data) {
|
|
1461
|
+
super();
|
|
1462
|
+
/**
|
|
1463
|
+
* The TrackPublicationInfo comes from the PublishTrack response
|
|
1464
|
+
* and the FfiClient musts wait for it before firing this event
|
|
1465
|
+
*
|
|
1466
|
+
* @generated from field: string track_sid = 1;
|
|
1467
|
+
*/
|
|
1468
|
+
this.trackSid = "";
|
|
1469
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
1470
|
+
}
|
|
1471
|
+
static fromBinary(bytes, options) {
|
|
1472
|
+
return new LocalTrackPublished().fromBinary(bytes, options);
|
|
1473
|
+
}
|
|
1474
|
+
static fromJson(jsonValue, options) {
|
|
1475
|
+
return new LocalTrackPublished().fromJson(jsonValue, options);
|
|
1476
|
+
}
|
|
1477
|
+
static fromJsonString(jsonString, options) {
|
|
1478
|
+
return new LocalTrackPublished().fromJsonString(jsonString, options);
|
|
1479
|
+
}
|
|
1480
|
+
static equals(a, b) {
|
|
1481
|
+
return protobuf_1.proto3.util.equals(LocalTrackPublished, a, b);
|
|
1482
|
+
}
|
|
1483
|
+
}
|
|
1484
|
+
exports.LocalTrackPublished = LocalTrackPublished;
|
|
1485
|
+
LocalTrackPublished.runtime = protobuf_1.proto3;
|
|
1486
|
+
LocalTrackPublished.typeName = "livekit.proto.LocalTrackPublished";
|
|
1487
|
+
LocalTrackPublished.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
1488
|
+
{ no: 1, name: "track_sid", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1489
|
+
]);
|
|
1490
|
+
/**
|
|
1491
|
+
* @generated from message livekit.proto.LocalTrackUnpublished
|
|
1492
|
+
*/
|
|
1493
|
+
class LocalTrackUnpublished extends protobuf_1.Message {
|
|
1494
|
+
constructor(data) {
|
|
1495
|
+
super();
|
|
1496
|
+
/**
|
|
1497
|
+
* @generated from field: string publication_sid = 1;
|
|
1498
|
+
*/
|
|
1499
|
+
this.publicationSid = "";
|
|
1500
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
1501
|
+
}
|
|
1502
|
+
static fromBinary(bytes, options) {
|
|
1503
|
+
return new LocalTrackUnpublished().fromBinary(bytes, options);
|
|
1504
|
+
}
|
|
1505
|
+
static fromJson(jsonValue, options) {
|
|
1506
|
+
return new LocalTrackUnpublished().fromJson(jsonValue, options);
|
|
1507
|
+
}
|
|
1508
|
+
static fromJsonString(jsonString, options) {
|
|
1509
|
+
return new LocalTrackUnpublished().fromJsonString(jsonString, options);
|
|
1510
|
+
}
|
|
1511
|
+
static equals(a, b) {
|
|
1512
|
+
return protobuf_1.proto3.util.equals(LocalTrackUnpublished, a, b);
|
|
1513
|
+
}
|
|
1514
|
+
}
|
|
1515
|
+
exports.LocalTrackUnpublished = LocalTrackUnpublished;
|
|
1516
|
+
LocalTrackUnpublished.runtime = protobuf_1.proto3;
|
|
1517
|
+
LocalTrackUnpublished.typeName = "livekit.proto.LocalTrackUnpublished";
|
|
1518
|
+
LocalTrackUnpublished.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
1519
|
+
{ no: 1, name: "publication_sid", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1520
|
+
]);
|
|
1521
|
+
/**
|
|
1522
|
+
* @generated from message livekit.proto.TrackPublished
|
|
1523
|
+
*/
|
|
1524
|
+
class TrackPublished extends protobuf_1.Message {
|
|
1525
|
+
constructor(data) {
|
|
1526
|
+
super();
|
|
1527
|
+
/**
|
|
1528
|
+
* @generated from field: string participant_sid = 1;
|
|
1529
|
+
*/
|
|
1530
|
+
this.participantSid = "";
|
|
1531
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
1532
|
+
}
|
|
1533
|
+
static fromBinary(bytes, options) {
|
|
1534
|
+
return new TrackPublished().fromBinary(bytes, options);
|
|
1535
|
+
}
|
|
1536
|
+
static fromJson(jsonValue, options) {
|
|
1537
|
+
return new TrackPublished().fromJson(jsonValue, options);
|
|
1538
|
+
}
|
|
1539
|
+
static fromJsonString(jsonString, options) {
|
|
1540
|
+
return new TrackPublished().fromJsonString(jsonString, options);
|
|
1541
|
+
}
|
|
1542
|
+
static equals(a, b) {
|
|
1543
|
+
return protobuf_1.proto3.util.equals(TrackPublished, a, b);
|
|
1544
|
+
}
|
|
1545
|
+
}
|
|
1546
|
+
exports.TrackPublished = TrackPublished;
|
|
1547
|
+
TrackPublished.runtime = protobuf_1.proto3;
|
|
1548
|
+
TrackPublished.typeName = "livekit.proto.TrackPublished";
|
|
1549
|
+
TrackPublished.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
1550
|
+
{ no: 1, name: "participant_sid", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1551
|
+
{ no: 2, name: "publication", kind: "message", T: track_pb_js_1.OwnedTrackPublication },
|
|
1552
|
+
]);
|
|
1553
|
+
/**
|
|
1554
|
+
* @generated from message livekit.proto.TrackUnpublished
|
|
1555
|
+
*/
|
|
1556
|
+
class TrackUnpublished extends protobuf_1.Message {
|
|
1557
|
+
constructor(data) {
|
|
1558
|
+
super();
|
|
1559
|
+
/**
|
|
1560
|
+
* @generated from field: string participant_sid = 1;
|
|
1561
|
+
*/
|
|
1562
|
+
this.participantSid = "";
|
|
1563
|
+
/**
|
|
1564
|
+
* @generated from field: string publication_sid = 2;
|
|
1565
|
+
*/
|
|
1566
|
+
this.publicationSid = "";
|
|
1567
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
1568
|
+
}
|
|
1569
|
+
static fromBinary(bytes, options) {
|
|
1570
|
+
return new TrackUnpublished().fromBinary(bytes, options);
|
|
1571
|
+
}
|
|
1572
|
+
static fromJson(jsonValue, options) {
|
|
1573
|
+
return new TrackUnpublished().fromJson(jsonValue, options);
|
|
1574
|
+
}
|
|
1575
|
+
static fromJsonString(jsonString, options) {
|
|
1576
|
+
return new TrackUnpublished().fromJsonString(jsonString, options);
|
|
1577
|
+
}
|
|
1578
|
+
static equals(a, b) {
|
|
1579
|
+
return protobuf_1.proto3.util.equals(TrackUnpublished, a, b);
|
|
1580
|
+
}
|
|
1581
|
+
}
|
|
1582
|
+
exports.TrackUnpublished = TrackUnpublished;
|
|
1583
|
+
TrackUnpublished.runtime = protobuf_1.proto3;
|
|
1584
|
+
TrackUnpublished.typeName = "livekit.proto.TrackUnpublished";
|
|
1585
|
+
TrackUnpublished.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
1586
|
+
{ no: 1, name: "participant_sid", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1587
|
+
{ no: 2, name: "publication_sid", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1588
|
+
]);
|
|
1589
|
+
/**
|
|
1590
|
+
* Publication isn't needed for subscription events on the FFI
|
|
1591
|
+
* The FFI will retrieve the publication using the Track sid
|
|
1592
|
+
*
|
|
1593
|
+
* @generated from message livekit.proto.TrackSubscribed
|
|
1594
|
+
*/
|
|
1595
|
+
class TrackSubscribed extends protobuf_1.Message {
|
|
1596
|
+
constructor(data) {
|
|
1597
|
+
super();
|
|
1598
|
+
/**
|
|
1599
|
+
* @generated from field: string participant_sid = 1;
|
|
1600
|
+
*/
|
|
1601
|
+
this.participantSid = "";
|
|
1602
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
1603
|
+
}
|
|
1604
|
+
static fromBinary(bytes, options) {
|
|
1605
|
+
return new TrackSubscribed().fromBinary(bytes, options);
|
|
1606
|
+
}
|
|
1607
|
+
static fromJson(jsonValue, options) {
|
|
1608
|
+
return new TrackSubscribed().fromJson(jsonValue, options);
|
|
1609
|
+
}
|
|
1610
|
+
static fromJsonString(jsonString, options) {
|
|
1611
|
+
return new TrackSubscribed().fromJsonString(jsonString, options);
|
|
1612
|
+
}
|
|
1613
|
+
static equals(a, b) {
|
|
1614
|
+
return protobuf_1.proto3.util.equals(TrackSubscribed, a, b);
|
|
1615
|
+
}
|
|
1616
|
+
}
|
|
1617
|
+
exports.TrackSubscribed = TrackSubscribed;
|
|
1618
|
+
TrackSubscribed.runtime = protobuf_1.proto3;
|
|
1619
|
+
TrackSubscribed.typeName = "livekit.proto.TrackSubscribed";
|
|
1620
|
+
TrackSubscribed.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
1621
|
+
{ no: 1, name: "participant_sid", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1622
|
+
{ no: 2, name: "track", kind: "message", T: track_pb_js_1.OwnedTrack },
|
|
1623
|
+
]);
|
|
1624
|
+
/**
|
|
1625
|
+
* @generated from message livekit.proto.TrackUnsubscribed
|
|
1626
|
+
*/
|
|
1627
|
+
class TrackUnsubscribed extends protobuf_1.Message {
|
|
1628
|
+
constructor(data) {
|
|
1629
|
+
super();
|
|
1630
|
+
/**
|
|
1631
|
+
* The FFI language can dispose/remove the VideoSink here
|
|
1632
|
+
*
|
|
1633
|
+
* @generated from field: string participant_sid = 1;
|
|
1634
|
+
*/
|
|
1635
|
+
this.participantSid = "";
|
|
1636
|
+
/**
|
|
1637
|
+
* @generated from field: string track_sid = 2;
|
|
1638
|
+
*/
|
|
1639
|
+
this.trackSid = "";
|
|
1640
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
1641
|
+
}
|
|
1642
|
+
static fromBinary(bytes, options) {
|
|
1643
|
+
return new TrackUnsubscribed().fromBinary(bytes, options);
|
|
1644
|
+
}
|
|
1645
|
+
static fromJson(jsonValue, options) {
|
|
1646
|
+
return new TrackUnsubscribed().fromJson(jsonValue, options);
|
|
1647
|
+
}
|
|
1648
|
+
static fromJsonString(jsonString, options) {
|
|
1649
|
+
return new TrackUnsubscribed().fromJsonString(jsonString, options);
|
|
1650
|
+
}
|
|
1651
|
+
static equals(a, b) {
|
|
1652
|
+
return protobuf_1.proto3.util.equals(TrackUnsubscribed, a, b);
|
|
1653
|
+
}
|
|
1654
|
+
}
|
|
1655
|
+
exports.TrackUnsubscribed = TrackUnsubscribed;
|
|
1656
|
+
TrackUnsubscribed.runtime = protobuf_1.proto3;
|
|
1657
|
+
TrackUnsubscribed.typeName = "livekit.proto.TrackUnsubscribed";
|
|
1658
|
+
TrackUnsubscribed.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
1659
|
+
{ no: 1, name: "participant_sid", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1660
|
+
{ no: 2, name: "track_sid", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1661
|
+
]);
|
|
1662
|
+
/**
|
|
1663
|
+
* @generated from message livekit.proto.TrackSubscriptionFailed
|
|
1664
|
+
*/
|
|
1665
|
+
class TrackSubscriptionFailed extends protobuf_1.Message {
|
|
1666
|
+
constructor(data) {
|
|
1667
|
+
super();
|
|
1668
|
+
/**
|
|
1669
|
+
* @generated from field: string participant_sid = 1;
|
|
1670
|
+
*/
|
|
1671
|
+
this.participantSid = "";
|
|
1672
|
+
/**
|
|
1673
|
+
* @generated from field: string track_sid = 2;
|
|
1674
|
+
*/
|
|
1675
|
+
this.trackSid = "";
|
|
1676
|
+
/**
|
|
1677
|
+
* @generated from field: string error = 3;
|
|
1678
|
+
*/
|
|
1679
|
+
this.error = "";
|
|
1680
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
1681
|
+
}
|
|
1682
|
+
static fromBinary(bytes, options) {
|
|
1683
|
+
return new TrackSubscriptionFailed().fromBinary(bytes, options);
|
|
1684
|
+
}
|
|
1685
|
+
static fromJson(jsonValue, options) {
|
|
1686
|
+
return new TrackSubscriptionFailed().fromJson(jsonValue, options);
|
|
1687
|
+
}
|
|
1688
|
+
static fromJsonString(jsonString, options) {
|
|
1689
|
+
return new TrackSubscriptionFailed().fromJsonString(jsonString, options);
|
|
1690
|
+
}
|
|
1691
|
+
static equals(a, b) {
|
|
1692
|
+
return protobuf_1.proto3.util.equals(TrackSubscriptionFailed, a, b);
|
|
1693
|
+
}
|
|
1694
|
+
}
|
|
1695
|
+
exports.TrackSubscriptionFailed = TrackSubscriptionFailed;
|
|
1696
|
+
TrackSubscriptionFailed.runtime = protobuf_1.proto3;
|
|
1697
|
+
TrackSubscriptionFailed.typeName = "livekit.proto.TrackSubscriptionFailed";
|
|
1698
|
+
TrackSubscriptionFailed.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
1699
|
+
{ no: 1, name: "participant_sid", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1700
|
+
{ no: 2, name: "track_sid", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1701
|
+
{ no: 3, name: "error", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1702
|
+
]);
|
|
1703
|
+
/**
|
|
1704
|
+
* @generated from message livekit.proto.TrackMuted
|
|
1705
|
+
*/
|
|
1706
|
+
class TrackMuted extends protobuf_1.Message {
|
|
1707
|
+
constructor(data) {
|
|
1708
|
+
super();
|
|
1709
|
+
/**
|
|
1710
|
+
* @generated from field: string participant_sid = 1;
|
|
1711
|
+
*/
|
|
1712
|
+
this.participantSid = "";
|
|
1713
|
+
/**
|
|
1714
|
+
* @generated from field: string track_sid = 2;
|
|
1715
|
+
*/
|
|
1716
|
+
this.trackSid = "";
|
|
1717
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
1718
|
+
}
|
|
1719
|
+
static fromBinary(bytes, options) {
|
|
1720
|
+
return new TrackMuted().fromBinary(bytes, options);
|
|
1721
|
+
}
|
|
1722
|
+
static fromJson(jsonValue, options) {
|
|
1723
|
+
return new TrackMuted().fromJson(jsonValue, options);
|
|
1724
|
+
}
|
|
1725
|
+
static fromJsonString(jsonString, options) {
|
|
1726
|
+
return new TrackMuted().fromJsonString(jsonString, options);
|
|
1727
|
+
}
|
|
1728
|
+
static equals(a, b) {
|
|
1729
|
+
return protobuf_1.proto3.util.equals(TrackMuted, a, b);
|
|
1730
|
+
}
|
|
1731
|
+
}
|
|
1732
|
+
exports.TrackMuted = TrackMuted;
|
|
1733
|
+
TrackMuted.runtime = protobuf_1.proto3;
|
|
1734
|
+
TrackMuted.typeName = "livekit.proto.TrackMuted";
|
|
1735
|
+
TrackMuted.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
1736
|
+
{ no: 1, name: "participant_sid", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1737
|
+
{ no: 2, name: "track_sid", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1738
|
+
]);
|
|
1739
|
+
/**
|
|
1740
|
+
* @generated from message livekit.proto.TrackUnmuted
|
|
1741
|
+
*/
|
|
1742
|
+
class TrackUnmuted extends protobuf_1.Message {
|
|
1743
|
+
constructor(data) {
|
|
1744
|
+
super();
|
|
1745
|
+
/**
|
|
1746
|
+
* @generated from field: string participant_sid = 1;
|
|
1747
|
+
*/
|
|
1748
|
+
this.participantSid = "";
|
|
1749
|
+
/**
|
|
1750
|
+
* @generated from field: string track_sid = 2;
|
|
1751
|
+
*/
|
|
1752
|
+
this.trackSid = "";
|
|
1753
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
1754
|
+
}
|
|
1755
|
+
static fromBinary(bytes, options) {
|
|
1756
|
+
return new TrackUnmuted().fromBinary(bytes, options);
|
|
1757
|
+
}
|
|
1758
|
+
static fromJson(jsonValue, options) {
|
|
1759
|
+
return new TrackUnmuted().fromJson(jsonValue, options);
|
|
1760
|
+
}
|
|
1761
|
+
static fromJsonString(jsonString, options) {
|
|
1762
|
+
return new TrackUnmuted().fromJsonString(jsonString, options);
|
|
1763
|
+
}
|
|
1764
|
+
static equals(a, b) {
|
|
1765
|
+
return protobuf_1.proto3.util.equals(TrackUnmuted, a, b);
|
|
1766
|
+
}
|
|
1767
|
+
}
|
|
1768
|
+
exports.TrackUnmuted = TrackUnmuted;
|
|
1769
|
+
TrackUnmuted.runtime = protobuf_1.proto3;
|
|
1770
|
+
TrackUnmuted.typeName = "livekit.proto.TrackUnmuted";
|
|
1771
|
+
TrackUnmuted.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
1772
|
+
{ no: 1, name: "participant_sid", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1773
|
+
{ no: 2, name: "track_sid", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1774
|
+
]);
|
|
1775
|
+
/**
|
|
1776
|
+
* @generated from message livekit.proto.E2eeStateChanged
|
|
1777
|
+
*/
|
|
1778
|
+
class E2eeStateChanged extends protobuf_1.Message {
|
|
1779
|
+
constructor(data) {
|
|
1780
|
+
super();
|
|
1781
|
+
/**
|
|
1782
|
+
* Using sid instead of identity for ffi communication
|
|
1783
|
+
*
|
|
1784
|
+
* @generated from field: string participant_sid = 1;
|
|
1785
|
+
*/
|
|
1786
|
+
this.participantSid = "";
|
|
1787
|
+
/**
|
|
1788
|
+
* @generated from field: livekit.proto.EncryptionState state = 2;
|
|
1789
|
+
*/
|
|
1790
|
+
this.state = e2ee_pb_js_1.EncryptionState.NEW;
|
|
1791
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
1792
|
+
}
|
|
1793
|
+
static fromBinary(bytes, options) {
|
|
1794
|
+
return new E2eeStateChanged().fromBinary(bytes, options);
|
|
1795
|
+
}
|
|
1796
|
+
static fromJson(jsonValue, options) {
|
|
1797
|
+
return new E2eeStateChanged().fromJson(jsonValue, options);
|
|
1798
|
+
}
|
|
1799
|
+
static fromJsonString(jsonString, options) {
|
|
1800
|
+
return new E2eeStateChanged().fromJsonString(jsonString, options);
|
|
1801
|
+
}
|
|
1802
|
+
static equals(a, b) {
|
|
1803
|
+
return protobuf_1.proto3.util.equals(E2eeStateChanged, a, b);
|
|
1804
|
+
}
|
|
1805
|
+
}
|
|
1806
|
+
exports.E2eeStateChanged = E2eeStateChanged;
|
|
1807
|
+
E2eeStateChanged.runtime = protobuf_1.proto3;
|
|
1808
|
+
E2eeStateChanged.typeName = "livekit.proto.E2eeStateChanged";
|
|
1809
|
+
E2eeStateChanged.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
1810
|
+
{ no: 1, name: "participant_sid", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1811
|
+
{ no: 2, name: "state", kind: "enum", T: protobuf_1.proto3.getEnumType(e2ee_pb_js_1.EncryptionState) },
|
|
1812
|
+
]);
|
|
1813
|
+
/**
|
|
1814
|
+
* @generated from message livekit.proto.ActiveSpeakersChanged
|
|
1815
|
+
*/
|
|
1816
|
+
class ActiveSpeakersChanged extends protobuf_1.Message {
|
|
1817
|
+
constructor(data) {
|
|
1818
|
+
super();
|
|
1819
|
+
/**
|
|
1820
|
+
* @generated from field: repeated string participant_sids = 1;
|
|
1821
|
+
*/
|
|
1822
|
+
this.participantSids = [];
|
|
1823
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
1824
|
+
}
|
|
1825
|
+
static fromBinary(bytes, options) {
|
|
1826
|
+
return new ActiveSpeakersChanged().fromBinary(bytes, options);
|
|
1827
|
+
}
|
|
1828
|
+
static fromJson(jsonValue, options) {
|
|
1829
|
+
return new ActiveSpeakersChanged().fromJson(jsonValue, options);
|
|
1830
|
+
}
|
|
1831
|
+
static fromJsonString(jsonString, options) {
|
|
1832
|
+
return new ActiveSpeakersChanged().fromJsonString(jsonString, options);
|
|
1833
|
+
}
|
|
1834
|
+
static equals(a, b) {
|
|
1835
|
+
return protobuf_1.proto3.util.equals(ActiveSpeakersChanged, a, b);
|
|
1836
|
+
}
|
|
1837
|
+
}
|
|
1838
|
+
exports.ActiveSpeakersChanged = ActiveSpeakersChanged;
|
|
1839
|
+
ActiveSpeakersChanged.runtime = protobuf_1.proto3;
|
|
1840
|
+
ActiveSpeakersChanged.typeName = "livekit.proto.ActiveSpeakersChanged";
|
|
1841
|
+
ActiveSpeakersChanged.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
1842
|
+
{ no: 1, name: "participant_sids", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
|
|
1843
|
+
]);
|
|
1844
|
+
/**
|
|
1845
|
+
* @generated from message livekit.proto.RoomMetadataChanged
|
|
1846
|
+
*/
|
|
1847
|
+
class RoomMetadataChanged extends protobuf_1.Message {
|
|
1848
|
+
constructor(data) {
|
|
1849
|
+
super();
|
|
1850
|
+
/**
|
|
1851
|
+
* @generated from field: string metadata = 1;
|
|
1852
|
+
*/
|
|
1853
|
+
this.metadata = "";
|
|
1854
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
1855
|
+
}
|
|
1856
|
+
static fromBinary(bytes, options) {
|
|
1857
|
+
return new RoomMetadataChanged().fromBinary(bytes, options);
|
|
1858
|
+
}
|
|
1859
|
+
static fromJson(jsonValue, options) {
|
|
1860
|
+
return new RoomMetadataChanged().fromJson(jsonValue, options);
|
|
1861
|
+
}
|
|
1862
|
+
static fromJsonString(jsonString, options) {
|
|
1863
|
+
return new RoomMetadataChanged().fromJsonString(jsonString, options);
|
|
1864
|
+
}
|
|
1865
|
+
static equals(a, b) {
|
|
1866
|
+
return protobuf_1.proto3.util.equals(RoomMetadataChanged, a, b);
|
|
1867
|
+
}
|
|
1868
|
+
}
|
|
1869
|
+
exports.RoomMetadataChanged = RoomMetadataChanged;
|
|
1870
|
+
RoomMetadataChanged.runtime = protobuf_1.proto3;
|
|
1871
|
+
RoomMetadataChanged.typeName = "livekit.proto.RoomMetadataChanged";
|
|
1872
|
+
RoomMetadataChanged.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
1873
|
+
{ no: 1, name: "metadata", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1874
|
+
]);
|
|
1875
|
+
/**
|
|
1876
|
+
* @generated from message livekit.proto.ParticipantMetadataChanged
|
|
1877
|
+
*/
|
|
1878
|
+
class ParticipantMetadataChanged extends protobuf_1.Message {
|
|
1879
|
+
constructor(data) {
|
|
1880
|
+
super();
|
|
1881
|
+
/**
|
|
1882
|
+
* @generated from field: string participant_sid = 1;
|
|
1883
|
+
*/
|
|
1884
|
+
this.participantSid = "";
|
|
1885
|
+
/**
|
|
1886
|
+
* @generated from field: string metadata = 2;
|
|
1887
|
+
*/
|
|
1888
|
+
this.metadata = "";
|
|
1889
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
1890
|
+
}
|
|
1891
|
+
static fromBinary(bytes, options) {
|
|
1892
|
+
return new ParticipantMetadataChanged().fromBinary(bytes, options);
|
|
1893
|
+
}
|
|
1894
|
+
static fromJson(jsonValue, options) {
|
|
1895
|
+
return new ParticipantMetadataChanged().fromJson(jsonValue, options);
|
|
1896
|
+
}
|
|
1897
|
+
static fromJsonString(jsonString, options) {
|
|
1898
|
+
return new ParticipantMetadataChanged().fromJsonString(jsonString, options);
|
|
1899
|
+
}
|
|
1900
|
+
static equals(a, b) {
|
|
1901
|
+
return protobuf_1.proto3.util.equals(ParticipantMetadataChanged, a, b);
|
|
1902
|
+
}
|
|
1903
|
+
}
|
|
1904
|
+
exports.ParticipantMetadataChanged = ParticipantMetadataChanged;
|
|
1905
|
+
ParticipantMetadataChanged.runtime = protobuf_1.proto3;
|
|
1906
|
+
ParticipantMetadataChanged.typeName = "livekit.proto.ParticipantMetadataChanged";
|
|
1907
|
+
ParticipantMetadataChanged.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
1908
|
+
{ no: 1, name: "participant_sid", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1909
|
+
{ no: 2, name: "metadata", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1910
|
+
]);
|
|
1911
|
+
/**
|
|
1912
|
+
* @generated from message livekit.proto.ParticipantNameChanged
|
|
1913
|
+
*/
|
|
1914
|
+
class ParticipantNameChanged extends protobuf_1.Message {
|
|
1915
|
+
constructor(data) {
|
|
1916
|
+
super();
|
|
1917
|
+
/**
|
|
1918
|
+
* @generated from field: string participant_sid = 1;
|
|
1919
|
+
*/
|
|
1920
|
+
this.participantSid = "";
|
|
1921
|
+
/**
|
|
1922
|
+
* @generated from field: string name = 2;
|
|
1923
|
+
*/
|
|
1924
|
+
this.name = "";
|
|
1925
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
1926
|
+
}
|
|
1927
|
+
static fromBinary(bytes, options) {
|
|
1928
|
+
return new ParticipantNameChanged().fromBinary(bytes, options);
|
|
1929
|
+
}
|
|
1930
|
+
static fromJson(jsonValue, options) {
|
|
1931
|
+
return new ParticipantNameChanged().fromJson(jsonValue, options);
|
|
1932
|
+
}
|
|
1933
|
+
static fromJsonString(jsonString, options) {
|
|
1934
|
+
return new ParticipantNameChanged().fromJsonString(jsonString, options);
|
|
1935
|
+
}
|
|
1936
|
+
static equals(a, b) {
|
|
1937
|
+
return protobuf_1.proto3.util.equals(ParticipantNameChanged, a, b);
|
|
1938
|
+
}
|
|
1939
|
+
}
|
|
1940
|
+
exports.ParticipantNameChanged = ParticipantNameChanged;
|
|
1941
|
+
ParticipantNameChanged.runtime = protobuf_1.proto3;
|
|
1942
|
+
ParticipantNameChanged.typeName = "livekit.proto.ParticipantNameChanged";
|
|
1943
|
+
ParticipantNameChanged.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
1944
|
+
{ no: 1, name: "participant_sid", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1945
|
+
{ no: 2, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1946
|
+
]);
|
|
1947
|
+
/**
|
|
1948
|
+
* @generated from message livekit.proto.ConnectionQualityChanged
|
|
1949
|
+
*/
|
|
1950
|
+
class ConnectionQualityChanged extends protobuf_1.Message {
|
|
1951
|
+
constructor(data) {
|
|
1952
|
+
super();
|
|
1953
|
+
/**
|
|
1954
|
+
* @generated from field: string participant_sid = 1;
|
|
1955
|
+
*/
|
|
1956
|
+
this.participantSid = "";
|
|
1957
|
+
/**
|
|
1958
|
+
* @generated from field: livekit.proto.ConnectionQuality quality = 2;
|
|
1959
|
+
*/
|
|
1960
|
+
this.quality = ConnectionQuality.QUALITY_POOR;
|
|
1961
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
1962
|
+
}
|
|
1963
|
+
static fromBinary(bytes, options) {
|
|
1964
|
+
return new ConnectionQualityChanged().fromBinary(bytes, options);
|
|
1965
|
+
}
|
|
1966
|
+
static fromJson(jsonValue, options) {
|
|
1967
|
+
return new ConnectionQualityChanged().fromJson(jsonValue, options);
|
|
1968
|
+
}
|
|
1969
|
+
static fromJsonString(jsonString, options) {
|
|
1970
|
+
return new ConnectionQualityChanged().fromJsonString(jsonString, options);
|
|
1971
|
+
}
|
|
1972
|
+
static equals(a, b) {
|
|
1973
|
+
return protobuf_1.proto3.util.equals(ConnectionQualityChanged, a, b);
|
|
1974
|
+
}
|
|
1975
|
+
}
|
|
1976
|
+
exports.ConnectionQualityChanged = ConnectionQualityChanged;
|
|
1977
|
+
ConnectionQualityChanged.runtime = protobuf_1.proto3;
|
|
1978
|
+
ConnectionQualityChanged.typeName = "livekit.proto.ConnectionQualityChanged";
|
|
1979
|
+
ConnectionQualityChanged.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
1980
|
+
{ no: 1, name: "participant_sid", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1981
|
+
{ no: 2, name: "quality", kind: "enum", T: protobuf_1.proto3.getEnumType(ConnectionQuality) },
|
|
1982
|
+
]);
|
|
1983
|
+
/**
|
|
1984
|
+
* @generated from message livekit.proto.DataReceived
|
|
1985
|
+
*/
|
|
1986
|
+
class DataReceived extends protobuf_1.Message {
|
|
1987
|
+
constructor(data) {
|
|
1988
|
+
super();
|
|
1989
|
+
/**
|
|
1990
|
+
* @generated from field: livekit.proto.DataPacketKind kind = 3;
|
|
1991
|
+
*/
|
|
1992
|
+
this.kind = DataPacketKind.KIND_LOSSY;
|
|
1993
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
1994
|
+
}
|
|
1995
|
+
static fromBinary(bytes, options) {
|
|
1996
|
+
return new DataReceived().fromBinary(bytes, options);
|
|
1997
|
+
}
|
|
1998
|
+
static fromJson(jsonValue, options) {
|
|
1999
|
+
return new DataReceived().fromJson(jsonValue, options);
|
|
2000
|
+
}
|
|
2001
|
+
static fromJsonString(jsonString, options) {
|
|
2002
|
+
return new DataReceived().fromJsonString(jsonString, options);
|
|
2003
|
+
}
|
|
2004
|
+
static equals(a, b) {
|
|
2005
|
+
return protobuf_1.proto3.util.equals(DataReceived, a, b);
|
|
2006
|
+
}
|
|
2007
|
+
}
|
|
2008
|
+
exports.DataReceived = DataReceived;
|
|
2009
|
+
DataReceived.runtime = protobuf_1.proto3;
|
|
2010
|
+
DataReceived.typeName = "livekit.proto.DataReceived";
|
|
2011
|
+
DataReceived.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
2012
|
+
{ no: 1, name: "data", kind: "message", T: OwnedBuffer },
|
|
2013
|
+
{ no: 2, name: "participant_sid", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
2014
|
+
{ no: 3, name: "kind", kind: "enum", T: protobuf_1.proto3.getEnumType(DataPacketKind) },
|
|
2015
|
+
]);
|
|
2016
|
+
/**
|
|
2017
|
+
* @generated from message livekit.proto.ConnectionStateChanged
|
|
2018
|
+
*/
|
|
2019
|
+
class ConnectionStateChanged extends protobuf_1.Message {
|
|
2020
|
+
constructor(data) {
|
|
2021
|
+
super();
|
|
2022
|
+
/**
|
|
2023
|
+
* @generated from field: livekit.proto.ConnectionState state = 1;
|
|
2024
|
+
*/
|
|
2025
|
+
this.state = ConnectionState.CONN_DISCONNECTED;
|
|
2026
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
2027
|
+
}
|
|
2028
|
+
static fromBinary(bytes, options) {
|
|
2029
|
+
return new ConnectionStateChanged().fromBinary(bytes, options);
|
|
2030
|
+
}
|
|
2031
|
+
static fromJson(jsonValue, options) {
|
|
2032
|
+
return new ConnectionStateChanged().fromJson(jsonValue, options);
|
|
2033
|
+
}
|
|
2034
|
+
static fromJsonString(jsonString, options) {
|
|
2035
|
+
return new ConnectionStateChanged().fromJsonString(jsonString, options);
|
|
2036
|
+
}
|
|
2037
|
+
static equals(a, b) {
|
|
2038
|
+
return protobuf_1.proto3.util.equals(ConnectionStateChanged, a, b);
|
|
2039
|
+
}
|
|
2040
|
+
}
|
|
2041
|
+
exports.ConnectionStateChanged = ConnectionStateChanged;
|
|
2042
|
+
ConnectionStateChanged.runtime = protobuf_1.proto3;
|
|
2043
|
+
ConnectionStateChanged.typeName = "livekit.proto.ConnectionStateChanged";
|
|
2044
|
+
ConnectionStateChanged.fields = protobuf_1.proto3.util.newFieldList(() => [
|
|
2045
|
+
{ no: 1, name: "state", kind: "enum", T: protobuf_1.proto3.getEnumType(ConnectionState) },
|
|
2046
|
+
]);
|
|
2047
|
+
/**
|
|
2048
|
+
* @generated from message livekit.proto.Connected
|
|
2049
|
+
*/
|
|
2050
|
+
class Connected extends protobuf_1.Message {
|
|
2051
|
+
constructor(data) {
|
|
2052
|
+
super();
|
|
2053
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
2054
|
+
}
|
|
2055
|
+
static fromBinary(bytes, options) {
|
|
2056
|
+
return new Connected().fromBinary(bytes, options);
|
|
2057
|
+
}
|
|
2058
|
+
static fromJson(jsonValue, options) {
|
|
2059
|
+
return new Connected().fromJson(jsonValue, options);
|
|
2060
|
+
}
|
|
2061
|
+
static fromJsonString(jsonString, options) {
|
|
2062
|
+
return new Connected().fromJsonString(jsonString, options);
|
|
2063
|
+
}
|
|
2064
|
+
static equals(a, b) {
|
|
2065
|
+
return protobuf_1.proto3.util.equals(Connected, a, b);
|
|
2066
|
+
}
|
|
2067
|
+
}
|
|
2068
|
+
exports.Connected = Connected;
|
|
2069
|
+
Connected.runtime = protobuf_1.proto3;
|
|
2070
|
+
Connected.typeName = "livekit.proto.Connected";
|
|
2071
|
+
Connected.fields = protobuf_1.proto3.util.newFieldList(() => []);
|
|
2072
|
+
/**
|
|
2073
|
+
* @generated from message livekit.proto.Disconnected
|
|
2074
|
+
*/
|
|
2075
|
+
class Disconnected extends protobuf_1.Message {
|
|
2076
|
+
constructor(data) {
|
|
2077
|
+
super();
|
|
2078
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
2079
|
+
}
|
|
2080
|
+
static fromBinary(bytes, options) {
|
|
2081
|
+
return new Disconnected().fromBinary(bytes, options);
|
|
2082
|
+
}
|
|
2083
|
+
static fromJson(jsonValue, options) {
|
|
2084
|
+
return new Disconnected().fromJson(jsonValue, options);
|
|
2085
|
+
}
|
|
2086
|
+
static fromJsonString(jsonString, options) {
|
|
2087
|
+
return new Disconnected().fromJsonString(jsonString, options);
|
|
2088
|
+
}
|
|
2089
|
+
static equals(a, b) {
|
|
2090
|
+
return protobuf_1.proto3.util.equals(Disconnected, a, b);
|
|
2091
|
+
}
|
|
2092
|
+
}
|
|
2093
|
+
exports.Disconnected = Disconnected;
|
|
2094
|
+
Disconnected.runtime = protobuf_1.proto3;
|
|
2095
|
+
Disconnected.typeName = "livekit.proto.Disconnected";
|
|
2096
|
+
Disconnected.fields = protobuf_1.proto3.util.newFieldList(() => []);
|
|
2097
|
+
/**
|
|
2098
|
+
* @generated from message livekit.proto.Reconnecting
|
|
2099
|
+
*/
|
|
2100
|
+
class Reconnecting extends protobuf_1.Message {
|
|
2101
|
+
constructor(data) {
|
|
2102
|
+
super();
|
|
2103
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
2104
|
+
}
|
|
2105
|
+
static fromBinary(bytes, options) {
|
|
2106
|
+
return new Reconnecting().fromBinary(bytes, options);
|
|
2107
|
+
}
|
|
2108
|
+
static fromJson(jsonValue, options) {
|
|
2109
|
+
return new Reconnecting().fromJson(jsonValue, options);
|
|
2110
|
+
}
|
|
2111
|
+
static fromJsonString(jsonString, options) {
|
|
2112
|
+
return new Reconnecting().fromJsonString(jsonString, options);
|
|
2113
|
+
}
|
|
2114
|
+
static equals(a, b) {
|
|
2115
|
+
return protobuf_1.proto3.util.equals(Reconnecting, a, b);
|
|
2116
|
+
}
|
|
2117
|
+
}
|
|
2118
|
+
exports.Reconnecting = Reconnecting;
|
|
2119
|
+
Reconnecting.runtime = protobuf_1.proto3;
|
|
2120
|
+
Reconnecting.typeName = "livekit.proto.Reconnecting";
|
|
2121
|
+
Reconnecting.fields = protobuf_1.proto3.util.newFieldList(() => []);
|
|
2122
|
+
/**
|
|
2123
|
+
* @generated from message livekit.proto.Reconnected
|
|
2124
|
+
*/
|
|
2125
|
+
class Reconnected extends protobuf_1.Message {
|
|
2126
|
+
constructor(data) {
|
|
2127
|
+
super();
|
|
2128
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
2129
|
+
}
|
|
2130
|
+
static fromBinary(bytes, options) {
|
|
2131
|
+
return new Reconnected().fromBinary(bytes, options);
|
|
2132
|
+
}
|
|
2133
|
+
static fromJson(jsonValue, options) {
|
|
2134
|
+
return new Reconnected().fromJson(jsonValue, options);
|
|
2135
|
+
}
|
|
2136
|
+
static fromJsonString(jsonString, options) {
|
|
2137
|
+
return new Reconnected().fromJsonString(jsonString, options);
|
|
2138
|
+
}
|
|
2139
|
+
static equals(a, b) {
|
|
2140
|
+
return protobuf_1.proto3.util.equals(Reconnected, a, b);
|
|
2141
|
+
}
|
|
2142
|
+
}
|
|
2143
|
+
exports.Reconnected = Reconnected;
|
|
2144
|
+
Reconnected.runtime = protobuf_1.proto3;
|
|
2145
|
+
Reconnected.typeName = "livekit.proto.Reconnected";
|
|
2146
|
+
Reconnected.fields = protobuf_1.proto3.util.newFieldList(() => []);
|
|
2147
|
+
/**
|
|
2148
|
+
* @generated from message livekit.proto.RoomEOS
|
|
2149
|
+
*/
|
|
2150
|
+
class RoomEOS extends protobuf_1.Message {
|
|
2151
|
+
constructor(data) {
|
|
2152
|
+
super();
|
|
2153
|
+
protobuf_1.proto3.util.initPartial(data, this);
|
|
2154
|
+
}
|
|
2155
|
+
static fromBinary(bytes, options) {
|
|
2156
|
+
return new RoomEOS().fromBinary(bytes, options);
|
|
2157
|
+
}
|
|
2158
|
+
static fromJson(jsonValue, options) {
|
|
2159
|
+
return new RoomEOS().fromJson(jsonValue, options);
|
|
2160
|
+
}
|
|
2161
|
+
static fromJsonString(jsonString, options) {
|
|
2162
|
+
return new RoomEOS().fromJsonString(jsonString, options);
|
|
2163
|
+
}
|
|
2164
|
+
static equals(a, b) {
|
|
2165
|
+
return protobuf_1.proto3.util.equals(RoomEOS, a, b);
|
|
2166
|
+
}
|
|
2167
|
+
}
|
|
2168
|
+
exports.RoomEOS = RoomEOS;
|
|
2169
|
+
RoomEOS.runtime = protobuf_1.proto3;
|
|
2170
|
+
RoomEOS.typeName = "livekit.proto.RoomEOS";
|
|
2171
|
+
RoomEOS.fields = protobuf_1.proto3.util.newFieldList(() => []);
|
|
2172
|
+
//# sourceMappingURL=room_pb.js.map
|