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