@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.
Files changed (64) hide show
  1. package/dist/audio_frame.d.cts +32 -0
  2. package/dist/audio_frame.d.ts +12 -5
  3. package/dist/audio_resampler.d.cts +60 -0
  4. package/dist/audio_resampler.d.ts +12 -3
  5. package/dist/audio_source.d.cts +37 -0
  6. package/dist/audio_source.d.ts +13 -5
  7. package/dist/audio_stream.d.cts +38 -0
  8. package/dist/audio_stream.d.ts +17 -5
  9. package/dist/e2ee.d.cts +48 -0
  10. package/dist/e2ee.d.ts +12 -8
  11. package/dist/ffi_client.d.cts +35 -0
  12. package/dist/ffi_client.d.ts +22 -10
  13. package/dist/index.d.cts +57 -0
  14. package/dist/index.d.ts +28 -20
  15. package/dist/napi/native.d.d.cts +21 -0
  16. package/dist/napi/native.d.d.ts +21 -0
  17. package/dist/participant.d.cts +126 -0
  18. package/dist/participant.d.ts +28 -14
  19. package/dist/proto/audio_frame_pb.d.cts +813 -0
  20. package/dist/proto/audio_frame_pb.d.ts +90 -86
  21. package/dist/proto/e2ee_pb.d.cts +585 -0
  22. package/dist/proto/e2ee_pb.d.ts +60 -58
  23. package/dist/proto/ffi_pb.d.cts +851 -0
  24. package/dist/proto/ffi_pb.d.ts +35 -30
  25. package/dist/proto/handle_pb.d.cts +33 -0
  26. package/dist/proto/handle_pb.d.ts +8 -6
  27. package/dist/proto/participant_pb.d.cts +93 -0
  28. package/dist/proto/participant_pb.d.ts +13 -11
  29. package/dist/proto/room_pb.d.cts +2072 -0
  30. package/dist/proto/room_pb.d.ts +198 -196
  31. package/dist/proto/rpc_pb.d.cts +237 -0
  32. package/dist/proto/rpc_pb.d.ts +28 -26
  33. package/dist/proto/stats_pb.d.cts +1653 -0
  34. package/dist/proto/stats_pb.d.ts +96 -94
  35. package/dist/proto/track_pb.d.cts +402 -0
  36. package/dist/proto/track_pb.d.ts +47 -45
  37. package/dist/proto/video_frame_pb.d.cts +617 -0
  38. package/dist/proto/video_frame_pb.d.ts +64 -60
  39. package/dist/room.d.cts +134 -0
  40. package/dist/room.d.ts +36 -22
  41. package/dist/rpc.d.cts +82 -0
  42. package/dist/rpc.d.ts +11 -7
  43. package/dist/track.d.cts +46 -0
  44. package/dist/track.d.ts +25 -14
  45. package/dist/track_publication.d.cts +48 -0
  46. package/dist/track_publication.d.ts +20 -8
  47. package/dist/transcription.d.cts +15 -0
  48. package/dist/transcription.d.ts +4 -3
  49. package/dist/types.d.cts +9 -0
  50. package/dist/types.d.ts +3 -2
  51. package/dist/version.cjs +1 -1
  52. package/dist/version.cjs.map +1 -1
  53. package/dist/version.d.cts +3 -0
  54. package/dist/version.d.ts +3 -2
  55. package/dist/version.js +1 -1
  56. package/dist/version.js.map +1 -1
  57. package/dist/video_frame.d.cts +25 -0
  58. package/dist/video_frame.d.ts +11 -4
  59. package/dist/video_source.d.cts +22 -0
  60. package/dist/video_source.d.ts +13 -6
  61. package/dist/video_stream.d.cts +41 -0
  62. package/dist/video_stream.d.ts +18 -6
  63. package/package.json +14 -9
  64. package/src/version.ts +1 -1
@@ -1,21 +1,22 @@
1
- import type { GenEnum, GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1";
2
- import type { E2eeOptions, EncryptionState } from "./e2ee_pb.js";
3
- import type { FfiOwnedHandle } from "./handle_pb.js";
4
- import type { OwnedParticipant } from "./participant_pb.js";
5
- import type { OwnedTrack, OwnedTrackPublication, TrackSource } from "./track_pb.js";
6
- import type { VideoCodec } from "./video_frame_pb.js";
7
- import type { RtcStats } from "./stats_pb.js";
8
- import type { Message } from "@bufbuild/protobuf";
1
+ import { GenFile, GenMessage, GenEnum } from '@bufbuild/protobuf/codegenv1';
2
+ import { E2eeOptions, EncryptionState } from './e2ee_pb.js';
3
+ import { FfiOwnedHandle } from './handle_pb.js';
4
+ import { OwnedParticipant } from './participant_pb.js';
5
+ import { OwnedTrackPublication, TrackSource, OwnedTrack } from './track_pb.js';
6
+ import { VideoCodec } from './video_frame_pb.js';
7
+ import { RtcStats } from './stats_pb.js';
8
+ import { Message } from '@bufbuild/protobuf';
9
+
9
10
  /**
10
11
  * Describes the file room.proto.
11
12
  */
12
- export declare const file_room: GenFile;
13
+ declare const file_room: GenFile;
13
14
  /**
14
15
  * Connect to a new LiveKit room
15
16
  *
16
17
  * @generated from message livekit.proto.ConnectRequest
17
18
  */
18
- export type ConnectRequest = Message<"livekit.proto.ConnectRequest"> & {
19
+ type ConnectRequest = Message<"livekit.proto.ConnectRequest"> & {
19
20
  /**
20
21
  * @generated from field: required string url = 1;
21
22
  */
@@ -33,11 +34,11 @@ export type ConnectRequest = Message<"livekit.proto.ConnectRequest"> & {
33
34
  * Describes the message livekit.proto.ConnectRequest.
34
35
  * Use `create(ConnectRequestSchema)` to create a new message.
35
36
  */
36
- export declare const ConnectRequestSchema: GenMessage<ConnectRequest>;
37
+ declare const ConnectRequestSchema: GenMessage<ConnectRequest>;
37
38
  /**
38
39
  * @generated from message livekit.proto.ConnectResponse
39
40
  */
40
- export type ConnectResponse = Message<"livekit.proto.ConnectResponse"> & {
41
+ type ConnectResponse = Message<"livekit.proto.ConnectResponse"> & {
41
42
  /**
42
43
  * @generated from field: required uint64 async_id = 1;
43
44
  */
@@ -47,11 +48,11 @@ export type ConnectResponse = Message<"livekit.proto.ConnectResponse"> & {
47
48
  * Describes the message livekit.proto.ConnectResponse.
48
49
  * Use `create(ConnectResponseSchema)` to create a new message.
49
50
  */
50
- export declare const ConnectResponseSchema: GenMessage<ConnectResponse>;
51
+ declare const ConnectResponseSchema: GenMessage<ConnectResponse>;
51
52
  /**
52
53
  * @generated from message livekit.proto.ConnectCallback
53
54
  */
54
- export type ConnectCallback = Message<"livekit.proto.ConnectCallback"> & {
55
+ type ConnectCallback = Message<"livekit.proto.ConnectCallback"> & {
55
56
  /**
56
57
  * @generated from field: required uint64 async_id = 1;
57
58
  */
@@ -80,11 +81,11 @@ export type ConnectCallback = Message<"livekit.proto.ConnectCallback"> & {
80
81
  * Describes the message livekit.proto.ConnectCallback.
81
82
  * Use `create(ConnectCallbackSchema)` to create a new message.
82
83
  */
83
- export declare const ConnectCallbackSchema: GenMessage<ConnectCallback>;
84
+ declare const ConnectCallbackSchema: GenMessage<ConnectCallback>;
84
85
  /**
85
86
  * @generated from message livekit.proto.ConnectCallback.ParticipantWithTracks
86
87
  */
87
- export type ConnectCallback_ParticipantWithTracks = Message<"livekit.proto.ConnectCallback.ParticipantWithTracks"> & {
88
+ type ConnectCallback_ParticipantWithTracks = Message<"livekit.proto.ConnectCallback.ParticipantWithTracks"> & {
88
89
  /**
89
90
  * @generated from field: required livekit.proto.OwnedParticipant participant = 1;
90
91
  */
@@ -101,11 +102,11 @@ export type ConnectCallback_ParticipantWithTracks = Message<"livekit.proto.Conne
101
102
  * Describes the message livekit.proto.ConnectCallback.ParticipantWithTracks.
102
103
  * Use `create(ConnectCallback_ParticipantWithTracksSchema)` to create a new message.
103
104
  */
104
- export declare const ConnectCallback_ParticipantWithTracksSchema: GenMessage<ConnectCallback_ParticipantWithTracks>;
105
+ declare const ConnectCallback_ParticipantWithTracksSchema: GenMessage<ConnectCallback_ParticipantWithTracks>;
105
106
  /**
106
107
  * @generated from message livekit.proto.ConnectCallback.Result
107
108
  */
108
- export type ConnectCallback_Result = Message<"livekit.proto.ConnectCallback.Result"> & {
109
+ type ConnectCallback_Result = Message<"livekit.proto.ConnectCallback.Result"> & {
109
110
  /**
110
111
  * @generated from field: required livekit.proto.OwnedRoom room = 1;
111
112
  */
@@ -123,13 +124,13 @@ export type ConnectCallback_Result = Message<"livekit.proto.ConnectCallback.Resu
123
124
  * Describes the message livekit.proto.ConnectCallback.Result.
124
125
  * Use `create(ConnectCallback_ResultSchema)` to create a new message.
125
126
  */
126
- export declare const ConnectCallback_ResultSchema: GenMessage<ConnectCallback_Result>;
127
+ declare const ConnectCallback_ResultSchema: GenMessage<ConnectCallback_Result>;
127
128
  /**
128
129
  * Disconnect from the a room
129
130
  *
130
131
  * @generated from message livekit.proto.DisconnectRequest
131
132
  */
132
- export type DisconnectRequest = Message<"livekit.proto.DisconnectRequest"> & {
133
+ type DisconnectRequest = Message<"livekit.proto.DisconnectRequest"> & {
133
134
  /**
134
135
  * @generated from field: required uint64 room_handle = 1;
135
136
  */
@@ -139,11 +140,11 @@ export type DisconnectRequest = Message<"livekit.proto.DisconnectRequest"> & {
139
140
  * Describes the message livekit.proto.DisconnectRequest.
140
141
  * Use `create(DisconnectRequestSchema)` to create a new message.
141
142
  */
142
- export declare const DisconnectRequestSchema: GenMessage<DisconnectRequest>;
143
+ declare const DisconnectRequestSchema: GenMessage<DisconnectRequest>;
143
144
  /**
144
145
  * @generated from message livekit.proto.DisconnectResponse
145
146
  */
146
- export type DisconnectResponse = Message<"livekit.proto.DisconnectResponse"> & {
147
+ type DisconnectResponse = Message<"livekit.proto.DisconnectResponse"> & {
147
148
  /**
148
149
  * @generated from field: required uint64 async_id = 1;
149
150
  */
@@ -153,11 +154,11 @@ export type DisconnectResponse = Message<"livekit.proto.DisconnectResponse"> & {
153
154
  * Describes the message livekit.proto.DisconnectResponse.
154
155
  * Use `create(DisconnectResponseSchema)` to create a new message.
155
156
  */
156
- export declare const DisconnectResponseSchema: GenMessage<DisconnectResponse>;
157
+ declare const DisconnectResponseSchema: GenMessage<DisconnectResponse>;
157
158
  /**
158
159
  * @generated from message livekit.proto.DisconnectCallback
159
160
  */
160
- export type DisconnectCallback = Message<"livekit.proto.DisconnectCallback"> & {
161
+ type DisconnectCallback = Message<"livekit.proto.DisconnectCallback"> & {
161
162
  /**
162
163
  * @generated from field: required uint64 async_id = 1;
163
164
  */
@@ -167,13 +168,13 @@ export type DisconnectCallback = Message<"livekit.proto.DisconnectCallback"> & {
167
168
  * Describes the message livekit.proto.DisconnectCallback.
168
169
  * Use `create(DisconnectCallbackSchema)` to create a new message.
169
170
  */
170
- export declare const DisconnectCallbackSchema: GenMessage<DisconnectCallback>;
171
+ declare const DisconnectCallbackSchema: GenMessage<DisconnectCallback>;
171
172
  /**
172
173
  * Publish a track to the room
173
174
  *
174
175
  * @generated from message livekit.proto.PublishTrackRequest
175
176
  */
176
- export type PublishTrackRequest = Message<"livekit.proto.PublishTrackRequest"> & {
177
+ type PublishTrackRequest = Message<"livekit.proto.PublishTrackRequest"> & {
177
178
  /**
178
179
  * @generated from field: required uint64 local_participant_handle = 1;
179
180
  */
@@ -191,11 +192,11 @@ export type PublishTrackRequest = Message<"livekit.proto.PublishTrackRequest"> &
191
192
  * Describes the message livekit.proto.PublishTrackRequest.
192
193
  * Use `create(PublishTrackRequestSchema)` to create a new message.
193
194
  */
194
- export declare const PublishTrackRequestSchema: GenMessage<PublishTrackRequest>;
195
+ declare const PublishTrackRequestSchema: GenMessage<PublishTrackRequest>;
195
196
  /**
196
197
  * @generated from message livekit.proto.PublishTrackResponse
197
198
  */
198
- export type PublishTrackResponse = Message<"livekit.proto.PublishTrackResponse"> & {
199
+ type PublishTrackResponse = Message<"livekit.proto.PublishTrackResponse"> & {
199
200
  /**
200
201
  * @generated from field: required uint64 async_id = 1;
201
202
  */
@@ -205,11 +206,11 @@ export type PublishTrackResponse = Message<"livekit.proto.PublishTrackResponse">
205
206
  * Describes the message livekit.proto.PublishTrackResponse.
206
207
  * Use `create(PublishTrackResponseSchema)` to create a new message.
207
208
  */
208
- export declare const PublishTrackResponseSchema: GenMessage<PublishTrackResponse>;
209
+ declare const PublishTrackResponseSchema: GenMessage<PublishTrackResponse>;
209
210
  /**
210
211
  * @generated from message livekit.proto.PublishTrackCallback
211
212
  */
212
- export type PublishTrackCallback = Message<"livekit.proto.PublishTrackCallback"> & {
213
+ type PublishTrackCallback = Message<"livekit.proto.PublishTrackCallback"> & {
213
214
  /**
214
215
  * @generated from field: required uint64 async_id = 1;
215
216
  */
@@ -238,13 +239,13 @@ export type PublishTrackCallback = Message<"livekit.proto.PublishTrackCallback">
238
239
  * Describes the message livekit.proto.PublishTrackCallback.
239
240
  * Use `create(PublishTrackCallbackSchema)` to create a new message.
240
241
  */
241
- export declare const PublishTrackCallbackSchema: GenMessage<PublishTrackCallback>;
242
+ declare const PublishTrackCallbackSchema: GenMessage<PublishTrackCallback>;
242
243
  /**
243
244
  * Unpublish a track from the room
244
245
  *
245
246
  * @generated from message livekit.proto.UnpublishTrackRequest
246
247
  */
247
- export type UnpublishTrackRequest = Message<"livekit.proto.UnpublishTrackRequest"> & {
248
+ type UnpublishTrackRequest = Message<"livekit.proto.UnpublishTrackRequest"> & {
248
249
  /**
249
250
  * @generated from field: required uint64 local_participant_handle = 1;
250
251
  */
@@ -262,11 +263,11 @@ export type UnpublishTrackRequest = Message<"livekit.proto.UnpublishTrackRequest
262
263
  * Describes the message livekit.proto.UnpublishTrackRequest.
263
264
  * Use `create(UnpublishTrackRequestSchema)` to create a new message.
264
265
  */
265
- export declare const UnpublishTrackRequestSchema: GenMessage<UnpublishTrackRequest>;
266
+ declare const UnpublishTrackRequestSchema: GenMessage<UnpublishTrackRequest>;
266
267
  /**
267
268
  * @generated from message livekit.proto.UnpublishTrackResponse
268
269
  */
269
- export type UnpublishTrackResponse = Message<"livekit.proto.UnpublishTrackResponse"> & {
270
+ type UnpublishTrackResponse = Message<"livekit.proto.UnpublishTrackResponse"> & {
270
271
  /**
271
272
  * @generated from field: required uint64 async_id = 1;
272
273
  */
@@ -276,11 +277,11 @@ export type UnpublishTrackResponse = Message<"livekit.proto.UnpublishTrackRespon
276
277
  * Describes the message livekit.proto.UnpublishTrackResponse.
277
278
  * Use `create(UnpublishTrackResponseSchema)` to create a new message.
278
279
  */
279
- export declare const UnpublishTrackResponseSchema: GenMessage<UnpublishTrackResponse>;
280
+ declare const UnpublishTrackResponseSchema: GenMessage<UnpublishTrackResponse>;
280
281
  /**
281
282
  * @generated from message livekit.proto.UnpublishTrackCallback
282
283
  */
283
- export type UnpublishTrackCallback = Message<"livekit.proto.UnpublishTrackCallback"> & {
284
+ type UnpublishTrackCallback = Message<"livekit.proto.UnpublishTrackCallback"> & {
284
285
  /**
285
286
  * @generated from field: required uint64 async_id = 1;
286
287
  */
@@ -294,13 +295,13 @@ export type UnpublishTrackCallback = Message<"livekit.proto.UnpublishTrackCallba
294
295
  * Describes the message livekit.proto.UnpublishTrackCallback.
295
296
  * Use `create(UnpublishTrackCallbackSchema)` to create a new message.
296
297
  */
297
- export declare const UnpublishTrackCallbackSchema: GenMessage<UnpublishTrackCallback>;
298
+ declare const UnpublishTrackCallbackSchema: GenMessage<UnpublishTrackCallback>;
298
299
  /**
299
300
  * Publish data to other participants
300
301
  *
301
302
  * @generated from message livekit.proto.PublishDataRequest
302
303
  */
303
- export type PublishDataRequest = Message<"livekit.proto.PublishDataRequest"> & {
304
+ type PublishDataRequest = Message<"livekit.proto.PublishDataRequest"> & {
304
305
  /**
305
306
  * @generated from field: required uint64 local_participant_handle = 1;
306
307
  */
@@ -335,11 +336,11 @@ export type PublishDataRequest = Message<"livekit.proto.PublishDataRequest"> & {
335
336
  * Describes the message livekit.proto.PublishDataRequest.
336
337
  * Use `create(PublishDataRequestSchema)` to create a new message.
337
338
  */
338
- export declare const PublishDataRequestSchema: GenMessage<PublishDataRequest>;
339
+ declare const PublishDataRequestSchema: GenMessage<PublishDataRequest>;
339
340
  /**
340
341
  * @generated from message livekit.proto.PublishDataResponse
341
342
  */
342
- export type PublishDataResponse = Message<"livekit.proto.PublishDataResponse"> & {
343
+ type PublishDataResponse = Message<"livekit.proto.PublishDataResponse"> & {
343
344
  /**
344
345
  * @generated from field: required uint64 async_id = 1;
345
346
  */
@@ -349,11 +350,11 @@ export type PublishDataResponse = Message<"livekit.proto.PublishDataResponse"> &
349
350
  * Describes the message livekit.proto.PublishDataResponse.
350
351
  * Use `create(PublishDataResponseSchema)` to create a new message.
351
352
  */
352
- export declare const PublishDataResponseSchema: GenMessage<PublishDataResponse>;
353
+ declare const PublishDataResponseSchema: GenMessage<PublishDataResponse>;
353
354
  /**
354
355
  * @generated from message livekit.proto.PublishDataCallback
355
356
  */
356
- export type PublishDataCallback = Message<"livekit.proto.PublishDataCallback"> & {
357
+ type PublishDataCallback = Message<"livekit.proto.PublishDataCallback"> & {
357
358
  /**
358
359
  * @generated from field: required uint64 async_id = 1;
359
360
  */
@@ -367,13 +368,13 @@ export type PublishDataCallback = Message<"livekit.proto.PublishDataCallback"> &
367
368
  * Describes the message livekit.proto.PublishDataCallback.
368
369
  * Use `create(PublishDataCallbackSchema)` to create a new message.
369
370
  */
370
- export declare const PublishDataCallbackSchema: GenMessage<PublishDataCallback>;
371
+ declare const PublishDataCallbackSchema: GenMessage<PublishDataCallback>;
371
372
  /**
372
373
  * Publish transcription messages to room
373
374
  *
374
375
  * @generated from message livekit.proto.PublishTranscriptionRequest
375
376
  */
376
- export type PublishTranscriptionRequest = Message<"livekit.proto.PublishTranscriptionRequest"> & {
377
+ type PublishTranscriptionRequest = Message<"livekit.proto.PublishTranscriptionRequest"> & {
377
378
  /**
378
379
  * @generated from field: required uint64 local_participant_handle = 1;
379
380
  */
@@ -395,11 +396,11 @@ export type PublishTranscriptionRequest = Message<"livekit.proto.PublishTranscri
395
396
  * Describes the message livekit.proto.PublishTranscriptionRequest.
396
397
  * Use `create(PublishTranscriptionRequestSchema)` to create a new message.
397
398
  */
398
- export declare const PublishTranscriptionRequestSchema: GenMessage<PublishTranscriptionRequest>;
399
+ declare const PublishTranscriptionRequestSchema: GenMessage<PublishTranscriptionRequest>;
399
400
  /**
400
401
  * @generated from message livekit.proto.PublishTranscriptionResponse
401
402
  */
402
- export type PublishTranscriptionResponse = Message<"livekit.proto.PublishTranscriptionResponse"> & {
403
+ type PublishTranscriptionResponse = Message<"livekit.proto.PublishTranscriptionResponse"> & {
403
404
  /**
404
405
  * @generated from field: required uint64 async_id = 1;
405
406
  */
@@ -409,11 +410,11 @@ export type PublishTranscriptionResponse = Message<"livekit.proto.PublishTranscr
409
410
  * Describes the message livekit.proto.PublishTranscriptionResponse.
410
411
  * Use `create(PublishTranscriptionResponseSchema)` to create a new message.
411
412
  */
412
- export declare const PublishTranscriptionResponseSchema: GenMessage<PublishTranscriptionResponse>;
413
+ declare const PublishTranscriptionResponseSchema: GenMessage<PublishTranscriptionResponse>;
413
414
  /**
414
415
  * @generated from message livekit.proto.PublishTranscriptionCallback
415
416
  */
416
- export type PublishTranscriptionCallback = Message<"livekit.proto.PublishTranscriptionCallback"> & {
417
+ type PublishTranscriptionCallback = Message<"livekit.proto.PublishTranscriptionCallback"> & {
417
418
  /**
418
419
  * @generated from field: required uint64 async_id = 1;
419
420
  */
@@ -427,13 +428,13 @@ export type PublishTranscriptionCallback = Message<"livekit.proto.PublishTranscr
427
428
  * Describes the message livekit.proto.PublishTranscriptionCallback.
428
429
  * Use `create(PublishTranscriptionCallbackSchema)` to create a new message.
429
430
  */
430
- export declare const PublishTranscriptionCallbackSchema: GenMessage<PublishTranscriptionCallback>;
431
+ declare const PublishTranscriptionCallbackSchema: GenMessage<PublishTranscriptionCallback>;
431
432
  /**
432
433
  * Publish Sip DTMF messages to other participants
433
434
  *
434
435
  * @generated from message livekit.proto.PublishSipDtmfRequest
435
436
  */
436
- export type PublishSipDtmfRequest = Message<"livekit.proto.PublishSipDtmfRequest"> & {
437
+ type PublishSipDtmfRequest = Message<"livekit.proto.PublishSipDtmfRequest"> & {
437
438
  /**
438
439
  * @generated from field: required uint64 local_participant_handle = 1;
439
440
  */
@@ -455,11 +456,11 @@ export type PublishSipDtmfRequest = Message<"livekit.proto.PublishSipDtmfRequest
455
456
  * Describes the message livekit.proto.PublishSipDtmfRequest.
456
457
  * Use `create(PublishSipDtmfRequestSchema)` to create a new message.
457
458
  */
458
- export declare const PublishSipDtmfRequestSchema: GenMessage<PublishSipDtmfRequest>;
459
+ declare const PublishSipDtmfRequestSchema: GenMessage<PublishSipDtmfRequest>;
459
460
  /**
460
461
  * @generated from message livekit.proto.PublishSipDtmfResponse
461
462
  */
462
- export type PublishSipDtmfResponse = Message<"livekit.proto.PublishSipDtmfResponse"> & {
463
+ type PublishSipDtmfResponse = Message<"livekit.proto.PublishSipDtmfResponse"> & {
463
464
  /**
464
465
  * @generated from field: required uint64 async_id = 1;
465
466
  */
@@ -469,11 +470,11 @@ export type PublishSipDtmfResponse = Message<"livekit.proto.PublishSipDtmfRespon
469
470
  * Describes the message livekit.proto.PublishSipDtmfResponse.
470
471
  * Use `create(PublishSipDtmfResponseSchema)` to create a new message.
471
472
  */
472
- export declare const PublishSipDtmfResponseSchema: GenMessage<PublishSipDtmfResponse>;
473
+ declare const PublishSipDtmfResponseSchema: GenMessage<PublishSipDtmfResponse>;
473
474
  /**
474
475
  * @generated from message livekit.proto.PublishSipDtmfCallback
475
476
  */
476
- export type PublishSipDtmfCallback = Message<"livekit.proto.PublishSipDtmfCallback"> & {
477
+ type PublishSipDtmfCallback = Message<"livekit.proto.PublishSipDtmfCallback"> & {
477
478
  /**
478
479
  * @generated from field: required uint64 async_id = 1;
479
480
  */
@@ -487,13 +488,13 @@ export type PublishSipDtmfCallback = Message<"livekit.proto.PublishSipDtmfCallba
487
488
  * Describes the message livekit.proto.PublishSipDtmfCallback.
488
489
  * Use `create(PublishSipDtmfCallbackSchema)` to create a new message.
489
490
  */
490
- export declare const PublishSipDtmfCallbackSchema: GenMessage<PublishSipDtmfCallback>;
491
+ declare const PublishSipDtmfCallbackSchema: GenMessage<PublishSipDtmfCallback>;
491
492
  /**
492
493
  * Change the local participant's metadata
493
494
  *
494
495
  * @generated from message livekit.proto.SetLocalMetadataRequest
495
496
  */
496
- export type SetLocalMetadataRequest = Message<"livekit.proto.SetLocalMetadataRequest"> & {
497
+ type SetLocalMetadataRequest = Message<"livekit.proto.SetLocalMetadataRequest"> & {
497
498
  /**
498
499
  * @generated from field: required uint64 local_participant_handle = 1;
499
500
  */
@@ -507,11 +508,11 @@ export type SetLocalMetadataRequest = Message<"livekit.proto.SetLocalMetadataReq
507
508
  * Describes the message livekit.proto.SetLocalMetadataRequest.
508
509
  * Use `create(SetLocalMetadataRequestSchema)` to create a new message.
509
510
  */
510
- export declare const SetLocalMetadataRequestSchema: GenMessage<SetLocalMetadataRequest>;
511
+ declare const SetLocalMetadataRequestSchema: GenMessage<SetLocalMetadataRequest>;
511
512
  /**
512
513
  * @generated from message livekit.proto.SetLocalMetadataResponse
513
514
  */
514
- export type SetLocalMetadataResponse = Message<"livekit.proto.SetLocalMetadataResponse"> & {
515
+ type SetLocalMetadataResponse = Message<"livekit.proto.SetLocalMetadataResponse"> & {
515
516
  /**
516
517
  * @generated from field: required uint64 async_id = 1;
517
518
  */
@@ -521,11 +522,11 @@ export type SetLocalMetadataResponse = Message<"livekit.proto.SetLocalMetadataRe
521
522
  * Describes the message livekit.proto.SetLocalMetadataResponse.
522
523
  * Use `create(SetLocalMetadataResponseSchema)` to create a new message.
523
524
  */
524
- export declare const SetLocalMetadataResponseSchema: GenMessage<SetLocalMetadataResponse>;
525
+ declare const SetLocalMetadataResponseSchema: GenMessage<SetLocalMetadataResponse>;
525
526
  /**
526
527
  * @generated from message livekit.proto.SetLocalMetadataCallback
527
528
  */
528
- export type SetLocalMetadataCallback = Message<"livekit.proto.SetLocalMetadataCallback"> & {
529
+ type SetLocalMetadataCallback = Message<"livekit.proto.SetLocalMetadataCallback"> & {
529
530
  /**
530
531
  * @generated from field: required uint64 async_id = 1;
531
532
  */
@@ -539,11 +540,11 @@ export type SetLocalMetadataCallback = Message<"livekit.proto.SetLocalMetadataCa
539
540
  * Describes the message livekit.proto.SetLocalMetadataCallback.
540
541
  * Use `create(SetLocalMetadataCallbackSchema)` to create a new message.
541
542
  */
542
- export declare const SetLocalMetadataCallbackSchema: GenMessage<SetLocalMetadataCallback>;
543
+ declare const SetLocalMetadataCallbackSchema: GenMessage<SetLocalMetadataCallback>;
543
544
  /**
544
545
  * @generated from message livekit.proto.SendChatMessageRequest
545
546
  */
546
- export type SendChatMessageRequest = Message<"livekit.proto.SendChatMessageRequest"> & {
547
+ type SendChatMessageRequest = Message<"livekit.proto.SendChatMessageRequest"> & {
547
548
  /**
548
549
  * @generated from field: required uint64 local_participant_handle = 1;
549
550
  */
@@ -565,11 +566,11 @@ export type SendChatMessageRequest = Message<"livekit.proto.SendChatMessageReque
565
566
  * Describes the message livekit.proto.SendChatMessageRequest.
566
567
  * Use `create(SendChatMessageRequestSchema)` to create a new message.
567
568
  */
568
- export declare const SendChatMessageRequestSchema: GenMessage<SendChatMessageRequest>;
569
+ declare const SendChatMessageRequestSchema: GenMessage<SendChatMessageRequest>;
569
570
  /**
570
571
  * @generated from message livekit.proto.EditChatMessageRequest
571
572
  */
572
- export type EditChatMessageRequest = Message<"livekit.proto.EditChatMessageRequest"> & {
573
+ type EditChatMessageRequest = Message<"livekit.proto.EditChatMessageRequest"> & {
573
574
  /**
574
575
  * @generated from field: required uint64 local_participant_handle = 1;
575
576
  */
@@ -595,11 +596,11 @@ export type EditChatMessageRequest = Message<"livekit.proto.EditChatMessageReque
595
596
  * Describes the message livekit.proto.EditChatMessageRequest.
596
597
  * Use `create(EditChatMessageRequestSchema)` to create a new message.
597
598
  */
598
- export declare const EditChatMessageRequestSchema: GenMessage<EditChatMessageRequest>;
599
+ declare const EditChatMessageRequestSchema: GenMessage<EditChatMessageRequest>;
599
600
  /**
600
601
  * @generated from message livekit.proto.SendChatMessageResponse
601
602
  */
602
- export type SendChatMessageResponse = Message<"livekit.proto.SendChatMessageResponse"> & {
603
+ type SendChatMessageResponse = Message<"livekit.proto.SendChatMessageResponse"> & {
603
604
  /**
604
605
  * @generated from field: required uint64 async_id = 1;
605
606
  */
@@ -609,11 +610,11 @@ export type SendChatMessageResponse = Message<"livekit.proto.SendChatMessageResp
609
610
  * Describes the message livekit.proto.SendChatMessageResponse.
610
611
  * Use `create(SendChatMessageResponseSchema)` to create a new message.
611
612
  */
612
- export declare const SendChatMessageResponseSchema: GenMessage<SendChatMessageResponse>;
613
+ declare const SendChatMessageResponseSchema: GenMessage<SendChatMessageResponse>;
613
614
  /**
614
615
  * @generated from message livekit.proto.SendChatMessageCallback
615
616
  */
616
- export type SendChatMessageCallback = Message<"livekit.proto.SendChatMessageCallback"> & {
617
+ type SendChatMessageCallback = Message<"livekit.proto.SendChatMessageCallback"> & {
617
618
  /**
618
619
  * @generated from field: required uint64 async_id = 1;
619
620
  */
@@ -642,13 +643,13 @@ export type SendChatMessageCallback = Message<"livekit.proto.SendChatMessageCall
642
643
  * Describes the message livekit.proto.SendChatMessageCallback.
643
644
  * Use `create(SendChatMessageCallbackSchema)` to create a new message.
644
645
  */
645
- export declare const SendChatMessageCallbackSchema: GenMessage<SendChatMessageCallback>;
646
+ declare const SendChatMessageCallbackSchema: GenMessage<SendChatMessageCallback>;
646
647
  /**
647
648
  * Change the local participant's attributes
648
649
  *
649
650
  * @generated from message livekit.proto.SetLocalAttributesRequest
650
651
  */
651
- export type SetLocalAttributesRequest = Message<"livekit.proto.SetLocalAttributesRequest"> & {
652
+ type SetLocalAttributesRequest = Message<"livekit.proto.SetLocalAttributesRequest"> & {
652
653
  /**
653
654
  * @generated from field: required uint64 local_participant_handle = 1;
654
655
  */
@@ -662,11 +663,11 @@ export type SetLocalAttributesRequest = Message<"livekit.proto.SetLocalAttribute
662
663
  * Describes the message livekit.proto.SetLocalAttributesRequest.
663
664
  * Use `create(SetLocalAttributesRequestSchema)` to create a new message.
664
665
  */
665
- export declare const SetLocalAttributesRequestSchema: GenMessage<SetLocalAttributesRequest>;
666
+ declare const SetLocalAttributesRequestSchema: GenMessage<SetLocalAttributesRequest>;
666
667
  /**
667
668
  * @generated from message livekit.proto.AttributesEntry
668
669
  */
669
- export type AttributesEntry = Message<"livekit.proto.AttributesEntry"> & {
670
+ type AttributesEntry = Message<"livekit.proto.AttributesEntry"> & {
670
671
  /**
671
672
  * @generated from field: required string key = 1;
672
673
  */
@@ -680,11 +681,11 @@ export type AttributesEntry = Message<"livekit.proto.AttributesEntry"> & {
680
681
  * Describes the message livekit.proto.AttributesEntry.
681
682
  * Use `create(AttributesEntrySchema)` to create a new message.
682
683
  */
683
- export declare const AttributesEntrySchema: GenMessage<AttributesEntry>;
684
+ declare const AttributesEntrySchema: GenMessage<AttributesEntry>;
684
685
  /**
685
686
  * @generated from message livekit.proto.SetLocalAttributesResponse
686
687
  */
687
- export type SetLocalAttributesResponse = Message<"livekit.proto.SetLocalAttributesResponse"> & {
688
+ type SetLocalAttributesResponse = Message<"livekit.proto.SetLocalAttributesResponse"> & {
688
689
  /**
689
690
  * @generated from field: required uint64 async_id = 1;
690
691
  */
@@ -694,11 +695,11 @@ export type SetLocalAttributesResponse = Message<"livekit.proto.SetLocalAttribut
694
695
  * Describes the message livekit.proto.SetLocalAttributesResponse.
695
696
  * Use `create(SetLocalAttributesResponseSchema)` to create a new message.
696
697
  */
697
- export declare const SetLocalAttributesResponseSchema: GenMessage<SetLocalAttributesResponse>;
698
+ declare const SetLocalAttributesResponseSchema: GenMessage<SetLocalAttributesResponse>;
698
699
  /**
699
700
  * @generated from message livekit.proto.SetLocalAttributesCallback
700
701
  */
701
- export type SetLocalAttributesCallback = Message<"livekit.proto.SetLocalAttributesCallback"> & {
702
+ type SetLocalAttributesCallback = Message<"livekit.proto.SetLocalAttributesCallback"> & {
702
703
  /**
703
704
  * @generated from field: required uint64 async_id = 1;
704
705
  */
@@ -712,13 +713,13 @@ export type SetLocalAttributesCallback = Message<"livekit.proto.SetLocalAttribut
712
713
  * Describes the message livekit.proto.SetLocalAttributesCallback.
713
714
  * Use `create(SetLocalAttributesCallbackSchema)` to create a new message.
714
715
  */
715
- export declare const SetLocalAttributesCallbackSchema: GenMessage<SetLocalAttributesCallback>;
716
+ declare const SetLocalAttributesCallbackSchema: GenMessage<SetLocalAttributesCallback>;
716
717
  /**
717
718
  * Change the local participant's name
718
719
  *
719
720
  * @generated from message livekit.proto.SetLocalNameRequest
720
721
  */
721
- export type SetLocalNameRequest = Message<"livekit.proto.SetLocalNameRequest"> & {
722
+ type SetLocalNameRequest = Message<"livekit.proto.SetLocalNameRequest"> & {
722
723
  /**
723
724
  * @generated from field: required uint64 local_participant_handle = 1;
724
725
  */
@@ -732,11 +733,11 @@ export type SetLocalNameRequest = Message<"livekit.proto.SetLocalNameRequest"> &
732
733
  * Describes the message livekit.proto.SetLocalNameRequest.
733
734
  * Use `create(SetLocalNameRequestSchema)` to create a new message.
734
735
  */
735
- export declare const SetLocalNameRequestSchema: GenMessage<SetLocalNameRequest>;
736
+ declare const SetLocalNameRequestSchema: GenMessage<SetLocalNameRequest>;
736
737
  /**
737
738
  * @generated from message livekit.proto.SetLocalNameResponse
738
739
  */
739
- export type SetLocalNameResponse = Message<"livekit.proto.SetLocalNameResponse"> & {
740
+ type SetLocalNameResponse = Message<"livekit.proto.SetLocalNameResponse"> & {
740
741
  /**
741
742
  * @generated from field: required uint64 async_id = 1;
742
743
  */
@@ -746,11 +747,11 @@ export type SetLocalNameResponse = Message<"livekit.proto.SetLocalNameResponse">
746
747
  * Describes the message livekit.proto.SetLocalNameResponse.
747
748
  * Use `create(SetLocalNameResponseSchema)` to create a new message.
748
749
  */
749
- export declare const SetLocalNameResponseSchema: GenMessage<SetLocalNameResponse>;
750
+ declare const SetLocalNameResponseSchema: GenMessage<SetLocalNameResponse>;
750
751
  /**
751
752
  * @generated from message livekit.proto.SetLocalNameCallback
752
753
  */
753
- export type SetLocalNameCallback = Message<"livekit.proto.SetLocalNameCallback"> & {
754
+ type SetLocalNameCallback = Message<"livekit.proto.SetLocalNameCallback"> & {
754
755
  /**
755
756
  * @generated from field: required uint64 async_id = 1;
756
757
  */
@@ -764,13 +765,13 @@ export type SetLocalNameCallback = Message<"livekit.proto.SetLocalNameCallback">
764
765
  * Describes the message livekit.proto.SetLocalNameCallback.
765
766
  * Use `create(SetLocalNameCallbackSchema)` to create a new message.
766
767
  */
767
- export declare const SetLocalNameCallbackSchema: GenMessage<SetLocalNameCallback>;
768
+ declare const SetLocalNameCallbackSchema: GenMessage<SetLocalNameCallback>;
768
769
  /**
769
770
  * Change the "desire" to subs2ribe to a track
770
771
  *
771
772
  * @generated from message livekit.proto.SetSubscribedRequest
772
773
  */
773
- export type SetSubscribedRequest = Message<"livekit.proto.SetSubscribedRequest"> & {
774
+ type SetSubscribedRequest = Message<"livekit.proto.SetSubscribedRequest"> & {
774
775
  /**
775
776
  * @generated from field: required bool subscribe = 1;
776
777
  */
@@ -784,20 +785,20 @@ export type SetSubscribedRequest = Message<"livekit.proto.SetSubscribedRequest">
784
785
  * Describes the message livekit.proto.SetSubscribedRequest.
785
786
  * Use `create(SetSubscribedRequestSchema)` to create a new message.
786
787
  */
787
- export declare const SetSubscribedRequestSchema: GenMessage<SetSubscribedRequest>;
788
+ declare const SetSubscribedRequestSchema: GenMessage<SetSubscribedRequest>;
788
789
  /**
789
790
  * @generated from message livekit.proto.SetSubscribedResponse
790
791
  */
791
- export type SetSubscribedResponse = Message<"livekit.proto.SetSubscribedResponse"> & {};
792
+ type SetSubscribedResponse = Message<"livekit.proto.SetSubscribedResponse"> & {};
792
793
  /**
793
794
  * Describes the message livekit.proto.SetSubscribedResponse.
794
795
  * Use `create(SetSubscribedResponseSchema)` to create a new message.
795
796
  */
796
- export declare const SetSubscribedResponseSchema: GenMessage<SetSubscribedResponse>;
797
+ declare const SetSubscribedResponseSchema: GenMessage<SetSubscribedResponse>;
797
798
  /**
798
799
  * @generated from message livekit.proto.GetSessionStatsRequest
799
800
  */
800
- export type GetSessionStatsRequest = Message<"livekit.proto.GetSessionStatsRequest"> & {
801
+ type GetSessionStatsRequest = Message<"livekit.proto.GetSessionStatsRequest"> & {
801
802
  /**
802
803
  * @generated from field: required uint64 room_handle = 1;
803
804
  */
@@ -807,11 +808,11 @@ export type GetSessionStatsRequest = Message<"livekit.proto.GetSessionStatsReque
807
808
  * Describes the message livekit.proto.GetSessionStatsRequest.
808
809
  * Use `create(GetSessionStatsRequestSchema)` to create a new message.
809
810
  */
810
- export declare const GetSessionStatsRequestSchema: GenMessage<GetSessionStatsRequest>;
811
+ declare const GetSessionStatsRequestSchema: GenMessage<GetSessionStatsRequest>;
811
812
  /**
812
813
  * @generated from message livekit.proto.GetSessionStatsResponse
813
814
  */
814
- export type GetSessionStatsResponse = Message<"livekit.proto.GetSessionStatsResponse"> & {
815
+ type GetSessionStatsResponse = Message<"livekit.proto.GetSessionStatsResponse"> & {
815
816
  /**
816
817
  * @generated from field: required uint64 async_id = 1;
817
818
  */
@@ -821,11 +822,11 @@ export type GetSessionStatsResponse = Message<"livekit.proto.GetSessionStatsResp
821
822
  * Describes the message livekit.proto.GetSessionStatsResponse.
822
823
  * Use `create(GetSessionStatsResponseSchema)` to create a new message.
823
824
  */
824
- export declare const GetSessionStatsResponseSchema: GenMessage<GetSessionStatsResponse>;
825
+ declare const GetSessionStatsResponseSchema: GenMessage<GetSessionStatsResponse>;
825
826
  /**
826
827
  * @generated from message livekit.proto.GetSessionStatsCallback
827
828
  */
828
- export type GetSessionStatsCallback = Message<"livekit.proto.GetSessionStatsCallback"> & {
829
+ type GetSessionStatsCallback = Message<"livekit.proto.GetSessionStatsCallback"> & {
829
830
  /**
830
831
  * @generated from field: required uint64 async_id = 1;
831
832
  */
@@ -854,11 +855,11 @@ export type GetSessionStatsCallback = Message<"livekit.proto.GetSessionStatsCall
854
855
  * Describes the message livekit.proto.GetSessionStatsCallback.
855
856
  * Use `create(GetSessionStatsCallbackSchema)` to create a new message.
856
857
  */
857
- export declare const GetSessionStatsCallbackSchema: GenMessage<GetSessionStatsCallback>;
858
+ declare const GetSessionStatsCallbackSchema: GenMessage<GetSessionStatsCallback>;
858
859
  /**
859
860
  * @generated from message livekit.proto.GetSessionStatsCallback.Result
860
861
  */
861
- export type GetSessionStatsCallback_Result = Message<"livekit.proto.GetSessionStatsCallback.Result"> & {
862
+ type GetSessionStatsCallback_Result = Message<"livekit.proto.GetSessionStatsCallback.Result"> & {
862
863
  /**
863
864
  * @generated from field: repeated livekit.proto.RtcStats publisher_stats = 1;
864
865
  */
@@ -872,11 +873,11 @@ export type GetSessionStatsCallback_Result = Message<"livekit.proto.GetSessionSt
872
873
  * Describes the message livekit.proto.GetSessionStatsCallback.Result.
873
874
  * Use `create(GetSessionStatsCallback_ResultSchema)` to create a new message.
874
875
  */
875
- export declare const GetSessionStatsCallback_ResultSchema: GenMessage<GetSessionStatsCallback_Result>;
876
+ declare const GetSessionStatsCallback_ResultSchema: GenMessage<GetSessionStatsCallback_Result>;
876
877
  /**
877
878
  * @generated from message livekit.proto.VideoEncoding
878
879
  */
879
- export type VideoEncoding = Message<"livekit.proto.VideoEncoding"> & {
880
+ type VideoEncoding = Message<"livekit.proto.VideoEncoding"> & {
880
881
  /**
881
882
  * @generated from field: required uint64 max_bitrate = 1;
882
883
  */
@@ -890,11 +891,11 @@ export type VideoEncoding = Message<"livekit.proto.VideoEncoding"> & {
890
891
  * Describes the message livekit.proto.VideoEncoding.
891
892
  * Use `create(VideoEncodingSchema)` to create a new message.
892
893
  */
893
- export declare const VideoEncodingSchema: GenMessage<VideoEncoding>;
894
+ declare const VideoEncodingSchema: GenMessage<VideoEncoding>;
894
895
  /**
895
896
  * @generated from message livekit.proto.AudioEncoding
896
897
  */
897
- export type AudioEncoding = Message<"livekit.proto.AudioEncoding"> & {
898
+ type AudioEncoding = Message<"livekit.proto.AudioEncoding"> & {
898
899
  /**
899
900
  * @generated from field: required uint64 max_bitrate = 1;
900
901
  */
@@ -904,11 +905,11 @@ export type AudioEncoding = Message<"livekit.proto.AudioEncoding"> & {
904
905
  * Describes the message livekit.proto.AudioEncoding.
905
906
  * Use `create(AudioEncodingSchema)` to create a new message.
906
907
  */
907
- export declare const AudioEncodingSchema: GenMessage<AudioEncoding>;
908
+ declare const AudioEncodingSchema: GenMessage<AudioEncoding>;
908
909
  /**
909
910
  * @generated from message livekit.proto.TrackPublishOptions
910
911
  */
911
- export type TrackPublishOptions = Message<"livekit.proto.TrackPublishOptions"> & {
912
+ type TrackPublishOptions = Message<"livekit.proto.TrackPublishOptions"> & {
912
913
  /**
913
914
  * encodings are optional
914
915
  *
@@ -948,11 +949,11 @@ export type TrackPublishOptions = Message<"livekit.proto.TrackPublishOptions"> &
948
949
  * Describes the message livekit.proto.TrackPublishOptions.
949
950
  * Use `create(TrackPublishOptionsSchema)` to create a new message.
950
951
  */
951
- export declare const TrackPublishOptionsSchema: GenMessage<TrackPublishOptions>;
952
+ declare const TrackPublishOptionsSchema: GenMessage<TrackPublishOptions>;
952
953
  /**
953
954
  * @generated from message livekit.proto.IceServer
954
955
  */
955
- export type IceServer = Message<"livekit.proto.IceServer"> & {
956
+ type IceServer = Message<"livekit.proto.IceServer"> & {
956
957
  /**
957
958
  * @generated from field: repeated string urls = 1;
958
959
  */
@@ -970,11 +971,11 @@ export type IceServer = Message<"livekit.proto.IceServer"> & {
970
971
  * Describes the message livekit.proto.IceServer.
971
972
  * Use `create(IceServerSchema)` to create a new message.
972
973
  */
973
- export declare const IceServerSchema: GenMessage<IceServer>;
974
+ declare const IceServerSchema: GenMessage<IceServer>;
974
975
  /**
975
976
  * @generated from message livekit.proto.RtcConfig
976
977
  */
977
- export type RtcConfig = Message<"livekit.proto.RtcConfig"> & {
978
+ type RtcConfig = Message<"livekit.proto.RtcConfig"> & {
978
979
  /**
979
980
  * @generated from field: optional livekit.proto.IceTransportType ice_transport_type = 1;
980
981
  */
@@ -994,11 +995,11 @@ export type RtcConfig = Message<"livekit.proto.RtcConfig"> & {
994
995
  * Describes the message livekit.proto.RtcConfig.
995
996
  * Use `create(RtcConfigSchema)` to create a new message.
996
997
  */
997
- export declare const RtcConfigSchema: GenMessage<RtcConfig>;
998
+ declare const RtcConfigSchema: GenMessage<RtcConfig>;
998
999
  /**
999
1000
  * @generated from message livekit.proto.RoomOptions
1000
1001
  */
1001
- export type RoomOptions = Message<"livekit.proto.RoomOptions"> & {
1002
+ type RoomOptions = Message<"livekit.proto.RoomOptions"> & {
1002
1003
  /**
1003
1004
  * @generated from field: optional bool auto_subscribe = 1;
1004
1005
  */
@@ -1030,11 +1031,11 @@ export type RoomOptions = Message<"livekit.proto.RoomOptions"> & {
1030
1031
  * Describes the message livekit.proto.RoomOptions.
1031
1032
  * Use `create(RoomOptionsSchema)` to create a new message.
1032
1033
  */
1033
- export declare const RoomOptionsSchema: GenMessage<RoomOptions>;
1034
+ declare const RoomOptionsSchema: GenMessage<RoomOptions>;
1034
1035
  /**
1035
1036
  * @generated from message livekit.proto.TranscriptionSegment
1036
1037
  */
1037
- export type TranscriptionSegment = Message<"livekit.proto.TranscriptionSegment"> & {
1038
+ type TranscriptionSegment = Message<"livekit.proto.TranscriptionSegment"> & {
1038
1039
  /**
1039
1040
  * @generated from field: required string id = 1;
1040
1041
  */
@@ -1064,11 +1065,11 @@ export type TranscriptionSegment = Message<"livekit.proto.TranscriptionSegment">
1064
1065
  * Describes the message livekit.proto.TranscriptionSegment.
1065
1066
  * Use `create(TranscriptionSegmentSchema)` to create a new message.
1066
1067
  */
1067
- export declare const TranscriptionSegmentSchema: GenMessage<TranscriptionSegment>;
1068
+ declare const TranscriptionSegmentSchema: GenMessage<TranscriptionSegment>;
1068
1069
  /**
1069
1070
  * @generated from message livekit.proto.BufferInfo
1070
1071
  */
1071
- export type BufferInfo = Message<"livekit.proto.BufferInfo"> & {
1072
+ type BufferInfo = Message<"livekit.proto.BufferInfo"> & {
1072
1073
  /**
1073
1074
  * @generated from field: required uint64 data_ptr = 1;
1074
1075
  */
@@ -1082,11 +1083,11 @@ export type BufferInfo = Message<"livekit.proto.BufferInfo"> & {
1082
1083
  * Describes the message livekit.proto.BufferInfo.
1083
1084
  * Use `create(BufferInfoSchema)` to create a new message.
1084
1085
  */
1085
- export declare const BufferInfoSchema: GenMessage<BufferInfo>;
1086
+ declare const BufferInfoSchema: GenMessage<BufferInfo>;
1086
1087
  /**
1087
1088
  * @generated from message livekit.proto.OwnedBuffer
1088
1089
  */
1089
- export type OwnedBuffer = Message<"livekit.proto.OwnedBuffer"> & {
1090
+ type OwnedBuffer = Message<"livekit.proto.OwnedBuffer"> & {
1090
1091
  /**
1091
1092
  * @generated from field: required livekit.proto.FfiOwnedHandle handle = 1;
1092
1093
  */
@@ -1100,11 +1101,11 @@ export type OwnedBuffer = Message<"livekit.proto.OwnedBuffer"> & {
1100
1101
  * Describes the message livekit.proto.OwnedBuffer.
1101
1102
  * Use `create(OwnedBufferSchema)` to create a new message.
1102
1103
  */
1103
- export declare const OwnedBufferSchema: GenMessage<OwnedBuffer>;
1104
+ declare const OwnedBufferSchema: GenMessage<OwnedBuffer>;
1104
1105
  /**
1105
1106
  * @generated from message livekit.proto.RoomEvent
1106
1107
  */
1107
- export type RoomEvent = Message<"livekit.proto.RoomEvent"> & {
1108
+ type RoomEvent = Message<"livekit.proto.RoomEvent"> & {
1108
1109
  /**
1109
1110
  * @generated from field: required uint64 room_handle = 1;
1110
1111
  */
@@ -1293,11 +1294,11 @@ export type RoomEvent = Message<"livekit.proto.RoomEvent"> & {
1293
1294
  * Describes the message livekit.proto.RoomEvent.
1294
1295
  * Use `create(RoomEventSchema)` to create a new message.
1295
1296
  */
1296
- export declare const RoomEventSchema: GenMessage<RoomEvent>;
1297
+ declare const RoomEventSchema: GenMessage<RoomEvent>;
1297
1298
  /**
1298
1299
  * @generated from message livekit.proto.RoomInfo
1299
1300
  */
1300
- export type RoomInfo = Message<"livekit.proto.RoomInfo"> & {
1301
+ type RoomInfo = Message<"livekit.proto.RoomInfo"> & {
1301
1302
  /**
1302
1303
  * @generated from field: optional string sid = 1;
1303
1304
  */
@@ -1315,11 +1316,11 @@ export type RoomInfo = Message<"livekit.proto.RoomInfo"> & {
1315
1316
  * Describes the message livekit.proto.RoomInfo.
1316
1317
  * Use `create(RoomInfoSchema)` to create a new message.
1317
1318
  */
1318
- export declare const RoomInfoSchema: GenMessage<RoomInfo>;
1319
+ declare const RoomInfoSchema: GenMessage<RoomInfo>;
1319
1320
  /**
1320
1321
  * @generated from message livekit.proto.OwnedRoom
1321
1322
  */
1322
- export type OwnedRoom = Message<"livekit.proto.OwnedRoom"> & {
1323
+ type OwnedRoom = Message<"livekit.proto.OwnedRoom"> & {
1323
1324
  /**
1324
1325
  * @generated from field: required livekit.proto.FfiOwnedHandle handle = 1;
1325
1326
  */
@@ -1333,11 +1334,11 @@ export type OwnedRoom = Message<"livekit.proto.OwnedRoom"> & {
1333
1334
  * Describes the message livekit.proto.OwnedRoom.
1334
1335
  * Use `create(OwnedRoomSchema)` to create a new message.
1335
1336
  */
1336
- export declare const OwnedRoomSchema: GenMessage<OwnedRoom>;
1337
+ declare const OwnedRoomSchema: GenMessage<OwnedRoom>;
1337
1338
  /**
1338
1339
  * @generated from message livekit.proto.ParticipantConnected
1339
1340
  */
1340
- export type ParticipantConnected = Message<"livekit.proto.ParticipantConnected"> & {
1341
+ type ParticipantConnected = Message<"livekit.proto.ParticipantConnected"> & {
1341
1342
  /**
1342
1343
  * @generated from field: required livekit.proto.OwnedParticipant info = 1;
1343
1344
  */
@@ -1347,11 +1348,11 @@ export type ParticipantConnected = Message<"livekit.proto.ParticipantConnected">
1347
1348
  * Describes the message livekit.proto.ParticipantConnected.
1348
1349
  * Use `create(ParticipantConnectedSchema)` to create a new message.
1349
1350
  */
1350
- export declare const ParticipantConnectedSchema: GenMessage<ParticipantConnected>;
1351
+ declare const ParticipantConnectedSchema: GenMessage<ParticipantConnected>;
1351
1352
  /**
1352
1353
  * @generated from message livekit.proto.ParticipantDisconnected
1353
1354
  */
1354
- export type ParticipantDisconnected = Message<"livekit.proto.ParticipantDisconnected"> & {
1355
+ type ParticipantDisconnected = Message<"livekit.proto.ParticipantDisconnected"> & {
1355
1356
  /**
1356
1357
  * @generated from field: required string participant_identity = 1;
1357
1358
  */
@@ -1361,11 +1362,11 @@ export type ParticipantDisconnected = Message<"livekit.proto.ParticipantDisconne
1361
1362
  * Describes the message livekit.proto.ParticipantDisconnected.
1362
1363
  * Use `create(ParticipantDisconnectedSchema)` to create a new message.
1363
1364
  */
1364
- export declare const ParticipantDisconnectedSchema: GenMessage<ParticipantDisconnected>;
1365
+ declare const ParticipantDisconnectedSchema: GenMessage<ParticipantDisconnected>;
1365
1366
  /**
1366
1367
  * @generated from message livekit.proto.LocalTrackPublished
1367
1368
  */
1368
- export type LocalTrackPublished = Message<"livekit.proto.LocalTrackPublished"> & {
1369
+ type LocalTrackPublished = Message<"livekit.proto.LocalTrackPublished"> & {
1369
1370
  /**
1370
1371
  * The TrackPublicationInfo comes from the PublishTrack response
1371
1372
  * and the FfiClient musts wait for it before firing this event
@@ -1378,11 +1379,11 @@ export type LocalTrackPublished = Message<"livekit.proto.LocalTrackPublished"> &
1378
1379
  * Describes the message livekit.proto.LocalTrackPublished.
1379
1380
  * Use `create(LocalTrackPublishedSchema)` to create a new message.
1380
1381
  */
1381
- export declare const LocalTrackPublishedSchema: GenMessage<LocalTrackPublished>;
1382
+ declare const LocalTrackPublishedSchema: GenMessage<LocalTrackPublished>;
1382
1383
  /**
1383
1384
  * @generated from message livekit.proto.LocalTrackUnpublished
1384
1385
  */
1385
- export type LocalTrackUnpublished = Message<"livekit.proto.LocalTrackUnpublished"> & {
1386
+ type LocalTrackUnpublished = Message<"livekit.proto.LocalTrackUnpublished"> & {
1386
1387
  /**
1387
1388
  * @generated from field: required string publication_sid = 1;
1388
1389
  */
@@ -1392,11 +1393,11 @@ export type LocalTrackUnpublished = Message<"livekit.proto.LocalTrackUnpublished
1392
1393
  * Describes the message livekit.proto.LocalTrackUnpublished.
1393
1394
  * Use `create(LocalTrackUnpublishedSchema)` to create a new message.
1394
1395
  */
1395
- export declare const LocalTrackUnpublishedSchema: GenMessage<LocalTrackUnpublished>;
1396
+ declare const LocalTrackUnpublishedSchema: GenMessage<LocalTrackUnpublished>;
1396
1397
  /**
1397
1398
  * @generated from message livekit.proto.LocalTrackSubscribed
1398
1399
  */
1399
- export type LocalTrackSubscribed = Message<"livekit.proto.LocalTrackSubscribed"> & {
1400
+ type LocalTrackSubscribed = Message<"livekit.proto.LocalTrackSubscribed"> & {
1400
1401
  /**
1401
1402
  * @generated from field: required string track_sid = 2;
1402
1403
  */
@@ -1406,11 +1407,11 @@ export type LocalTrackSubscribed = Message<"livekit.proto.LocalTrackSubscribed">
1406
1407
  * Describes the message livekit.proto.LocalTrackSubscribed.
1407
1408
  * Use `create(LocalTrackSubscribedSchema)` to create a new message.
1408
1409
  */
1409
- export declare const LocalTrackSubscribedSchema: GenMessage<LocalTrackSubscribed>;
1410
+ declare const LocalTrackSubscribedSchema: GenMessage<LocalTrackSubscribed>;
1410
1411
  /**
1411
1412
  * @generated from message livekit.proto.TrackPublished
1412
1413
  */
1413
- export type TrackPublished = Message<"livekit.proto.TrackPublished"> & {
1414
+ type TrackPublished = Message<"livekit.proto.TrackPublished"> & {
1414
1415
  /**
1415
1416
  * @generated from field: required string participant_identity = 1;
1416
1417
  */
@@ -1424,11 +1425,11 @@ export type TrackPublished = Message<"livekit.proto.TrackPublished"> & {
1424
1425
  * Describes the message livekit.proto.TrackPublished.
1425
1426
  * Use `create(TrackPublishedSchema)` to create a new message.
1426
1427
  */
1427
- export declare const TrackPublishedSchema: GenMessage<TrackPublished>;
1428
+ declare const TrackPublishedSchema: GenMessage<TrackPublished>;
1428
1429
  /**
1429
1430
  * @generated from message livekit.proto.TrackUnpublished
1430
1431
  */
1431
- export type TrackUnpublished = Message<"livekit.proto.TrackUnpublished"> & {
1432
+ type TrackUnpublished = Message<"livekit.proto.TrackUnpublished"> & {
1432
1433
  /**
1433
1434
  * @generated from field: required string participant_identity = 1;
1434
1435
  */
@@ -1442,14 +1443,14 @@ export type TrackUnpublished = Message<"livekit.proto.TrackUnpublished"> & {
1442
1443
  * Describes the message livekit.proto.TrackUnpublished.
1443
1444
  * Use `create(TrackUnpublishedSchema)` to create a new message.
1444
1445
  */
1445
- export declare const TrackUnpublishedSchema: GenMessage<TrackUnpublished>;
1446
+ declare const TrackUnpublishedSchema: GenMessage<TrackUnpublished>;
1446
1447
  /**
1447
1448
  * Publication isn't needed for subscription events on the FFI
1448
1449
  * The FFI will retrieve the publication using the Track sid
1449
1450
  *
1450
1451
  * @generated from message livekit.proto.TrackSubscribed
1451
1452
  */
1452
- export type TrackSubscribed = Message<"livekit.proto.TrackSubscribed"> & {
1453
+ type TrackSubscribed = Message<"livekit.proto.TrackSubscribed"> & {
1453
1454
  /**
1454
1455
  * @generated from field: required string participant_identity = 1;
1455
1456
  */
@@ -1463,11 +1464,11 @@ export type TrackSubscribed = Message<"livekit.proto.TrackSubscribed"> & {
1463
1464
  * Describes the message livekit.proto.TrackSubscribed.
1464
1465
  * Use `create(TrackSubscribedSchema)` to create a new message.
1465
1466
  */
1466
- export declare const TrackSubscribedSchema: GenMessage<TrackSubscribed>;
1467
+ declare const TrackSubscribedSchema: GenMessage<TrackSubscribed>;
1467
1468
  /**
1468
1469
  * @generated from message livekit.proto.TrackUnsubscribed
1469
1470
  */
1470
- export type TrackUnsubscribed = Message<"livekit.proto.TrackUnsubscribed"> & {
1471
+ type TrackUnsubscribed = Message<"livekit.proto.TrackUnsubscribed"> & {
1471
1472
  /**
1472
1473
  * The FFI language can dispose/remove the VideoSink here
1473
1474
  *
@@ -1483,11 +1484,11 @@ export type TrackUnsubscribed = Message<"livekit.proto.TrackUnsubscribed"> & {
1483
1484
  * Describes the message livekit.proto.TrackUnsubscribed.
1484
1485
  * Use `create(TrackUnsubscribedSchema)` to create a new message.
1485
1486
  */
1486
- export declare const TrackUnsubscribedSchema: GenMessage<TrackUnsubscribed>;
1487
+ declare const TrackUnsubscribedSchema: GenMessage<TrackUnsubscribed>;
1487
1488
  /**
1488
1489
  * @generated from message livekit.proto.TrackSubscriptionFailed
1489
1490
  */
1490
- export type TrackSubscriptionFailed = Message<"livekit.proto.TrackSubscriptionFailed"> & {
1491
+ type TrackSubscriptionFailed = Message<"livekit.proto.TrackSubscriptionFailed"> & {
1491
1492
  /**
1492
1493
  * @generated from field: required string participant_identity = 1;
1493
1494
  */
@@ -1505,11 +1506,11 @@ export type TrackSubscriptionFailed = Message<"livekit.proto.TrackSubscriptionFa
1505
1506
  * Describes the message livekit.proto.TrackSubscriptionFailed.
1506
1507
  * Use `create(TrackSubscriptionFailedSchema)` to create a new message.
1507
1508
  */
1508
- export declare const TrackSubscriptionFailedSchema: GenMessage<TrackSubscriptionFailed>;
1509
+ declare const TrackSubscriptionFailedSchema: GenMessage<TrackSubscriptionFailed>;
1509
1510
  /**
1510
1511
  * @generated from message livekit.proto.TrackMuted
1511
1512
  */
1512
- export type TrackMuted = Message<"livekit.proto.TrackMuted"> & {
1513
+ type TrackMuted = Message<"livekit.proto.TrackMuted"> & {
1513
1514
  /**
1514
1515
  * @generated from field: required string participant_identity = 1;
1515
1516
  */
@@ -1523,11 +1524,11 @@ export type TrackMuted = Message<"livekit.proto.TrackMuted"> & {
1523
1524
  * Describes the message livekit.proto.TrackMuted.
1524
1525
  * Use `create(TrackMutedSchema)` to create a new message.
1525
1526
  */
1526
- export declare const TrackMutedSchema: GenMessage<TrackMuted>;
1527
+ declare const TrackMutedSchema: GenMessage<TrackMuted>;
1527
1528
  /**
1528
1529
  * @generated from message livekit.proto.TrackUnmuted
1529
1530
  */
1530
- export type TrackUnmuted = Message<"livekit.proto.TrackUnmuted"> & {
1531
+ type TrackUnmuted = Message<"livekit.proto.TrackUnmuted"> & {
1531
1532
  /**
1532
1533
  * @generated from field: required string participant_identity = 1;
1533
1534
  */
@@ -1541,11 +1542,11 @@ export type TrackUnmuted = Message<"livekit.proto.TrackUnmuted"> & {
1541
1542
  * Describes the message livekit.proto.TrackUnmuted.
1542
1543
  * Use `create(TrackUnmutedSchema)` to create a new message.
1543
1544
  */
1544
- export declare const TrackUnmutedSchema: GenMessage<TrackUnmuted>;
1545
+ declare const TrackUnmutedSchema: GenMessage<TrackUnmuted>;
1545
1546
  /**
1546
1547
  * @generated from message livekit.proto.E2eeStateChanged
1547
1548
  */
1548
- export type E2eeStateChanged = Message<"livekit.proto.E2eeStateChanged"> & {
1549
+ type E2eeStateChanged = Message<"livekit.proto.E2eeStateChanged"> & {
1549
1550
  /**
1550
1551
  * Using sid instead of identity for ffi communication
1551
1552
  *
@@ -1561,11 +1562,11 @@ export type E2eeStateChanged = Message<"livekit.proto.E2eeStateChanged"> & {
1561
1562
  * Describes the message livekit.proto.E2eeStateChanged.
1562
1563
  * Use `create(E2eeStateChangedSchema)` to create a new message.
1563
1564
  */
1564
- export declare const E2eeStateChangedSchema: GenMessage<E2eeStateChanged>;
1565
+ declare const E2eeStateChangedSchema: GenMessage<E2eeStateChanged>;
1565
1566
  /**
1566
1567
  * @generated from message livekit.proto.ActiveSpeakersChanged
1567
1568
  */
1568
- export type ActiveSpeakersChanged = Message<"livekit.proto.ActiveSpeakersChanged"> & {
1569
+ type ActiveSpeakersChanged = Message<"livekit.proto.ActiveSpeakersChanged"> & {
1569
1570
  /**
1570
1571
  * @generated from field: repeated string participant_identities = 1;
1571
1572
  */
@@ -1575,11 +1576,11 @@ export type ActiveSpeakersChanged = Message<"livekit.proto.ActiveSpeakersChanged
1575
1576
  * Describes the message livekit.proto.ActiveSpeakersChanged.
1576
1577
  * Use `create(ActiveSpeakersChangedSchema)` to create a new message.
1577
1578
  */
1578
- export declare const ActiveSpeakersChangedSchema: GenMessage<ActiveSpeakersChanged>;
1579
+ declare const ActiveSpeakersChangedSchema: GenMessage<ActiveSpeakersChanged>;
1579
1580
  /**
1580
1581
  * @generated from message livekit.proto.RoomMetadataChanged
1581
1582
  */
1582
- export type RoomMetadataChanged = Message<"livekit.proto.RoomMetadataChanged"> & {
1583
+ type RoomMetadataChanged = Message<"livekit.proto.RoomMetadataChanged"> & {
1583
1584
  /**
1584
1585
  * @generated from field: required string metadata = 1;
1585
1586
  */
@@ -1589,11 +1590,11 @@ export type RoomMetadataChanged = Message<"livekit.proto.RoomMetadataChanged"> &
1589
1590
  * Describes the message livekit.proto.RoomMetadataChanged.
1590
1591
  * Use `create(RoomMetadataChangedSchema)` to create a new message.
1591
1592
  */
1592
- export declare const RoomMetadataChangedSchema: GenMessage<RoomMetadataChanged>;
1593
+ declare const RoomMetadataChangedSchema: GenMessage<RoomMetadataChanged>;
1593
1594
  /**
1594
1595
  * @generated from message livekit.proto.RoomSidChanged
1595
1596
  */
1596
- export type RoomSidChanged = Message<"livekit.proto.RoomSidChanged"> & {
1597
+ type RoomSidChanged = Message<"livekit.proto.RoomSidChanged"> & {
1597
1598
  /**
1598
1599
  * @generated from field: required string sid = 1;
1599
1600
  */
@@ -1603,11 +1604,11 @@ export type RoomSidChanged = Message<"livekit.proto.RoomSidChanged"> & {
1603
1604
  * Describes the message livekit.proto.RoomSidChanged.
1604
1605
  * Use `create(RoomSidChangedSchema)` to create a new message.
1605
1606
  */
1606
- export declare const RoomSidChangedSchema: GenMessage<RoomSidChanged>;
1607
+ declare const RoomSidChangedSchema: GenMessage<RoomSidChanged>;
1607
1608
  /**
1608
1609
  * @generated from message livekit.proto.ParticipantMetadataChanged
1609
1610
  */
1610
- export type ParticipantMetadataChanged = Message<"livekit.proto.ParticipantMetadataChanged"> & {
1611
+ type ParticipantMetadataChanged = Message<"livekit.proto.ParticipantMetadataChanged"> & {
1611
1612
  /**
1612
1613
  * @generated from field: required string participant_identity = 1;
1613
1614
  */
@@ -1621,11 +1622,11 @@ export type ParticipantMetadataChanged = Message<"livekit.proto.ParticipantMetad
1621
1622
  * Describes the message livekit.proto.ParticipantMetadataChanged.
1622
1623
  * Use `create(ParticipantMetadataChangedSchema)` to create a new message.
1623
1624
  */
1624
- export declare const ParticipantMetadataChangedSchema: GenMessage<ParticipantMetadataChanged>;
1625
+ declare const ParticipantMetadataChangedSchema: GenMessage<ParticipantMetadataChanged>;
1625
1626
  /**
1626
1627
  * @generated from message livekit.proto.ParticipantAttributesChanged
1627
1628
  */
1628
- export type ParticipantAttributesChanged = Message<"livekit.proto.ParticipantAttributesChanged"> & {
1629
+ type ParticipantAttributesChanged = Message<"livekit.proto.ParticipantAttributesChanged"> & {
1629
1630
  /**
1630
1631
  * @generated from field: required string participant_identity = 1;
1631
1632
  */
@@ -1643,11 +1644,11 @@ export type ParticipantAttributesChanged = Message<"livekit.proto.ParticipantAtt
1643
1644
  * Describes the message livekit.proto.ParticipantAttributesChanged.
1644
1645
  * Use `create(ParticipantAttributesChangedSchema)` to create a new message.
1645
1646
  */
1646
- export declare const ParticipantAttributesChangedSchema: GenMessage<ParticipantAttributesChanged>;
1647
+ declare const ParticipantAttributesChangedSchema: GenMessage<ParticipantAttributesChanged>;
1647
1648
  /**
1648
1649
  * @generated from message livekit.proto.ParticipantNameChanged
1649
1650
  */
1650
- export type ParticipantNameChanged = Message<"livekit.proto.ParticipantNameChanged"> & {
1651
+ type ParticipantNameChanged = Message<"livekit.proto.ParticipantNameChanged"> & {
1651
1652
  /**
1652
1653
  * @generated from field: required string participant_identity = 1;
1653
1654
  */
@@ -1661,11 +1662,11 @@ export type ParticipantNameChanged = Message<"livekit.proto.ParticipantNameChang
1661
1662
  * Describes the message livekit.proto.ParticipantNameChanged.
1662
1663
  * Use `create(ParticipantNameChangedSchema)` to create a new message.
1663
1664
  */
1664
- export declare const ParticipantNameChangedSchema: GenMessage<ParticipantNameChanged>;
1665
+ declare const ParticipantNameChangedSchema: GenMessage<ParticipantNameChanged>;
1665
1666
  /**
1666
1667
  * @generated from message livekit.proto.ConnectionQualityChanged
1667
1668
  */
1668
- export type ConnectionQualityChanged = Message<"livekit.proto.ConnectionQualityChanged"> & {
1669
+ type ConnectionQualityChanged = Message<"livekit.proto.ConnectionQualityChanged"> & {
1669
1670
  /**
1670
1671
  * @generated from field: required string participant_identity = 1;
1671
1672
  */
@@ -1679,11 +1680,11 @@ export type ConnectionQualityChanged = Message<"livekit.proto.ConnectionQualityC
1679
1680
  * Describes the message livekit.proto.ConnectionQualityChanged.
1680
1681
  * Use `create(ConnectionQualityChangedSchema)` to create a new message.
1681
1682
  */
1682
- export declare const ConnectionQualityChangedSchema: GenMessage<ConnectionQualityChanged>;
1683
+ declare const ConnectionQualityChangedSchema: GenMessage<ConnectionQualityChanged>;
1683
1684
  /**
1684
1685
  * @generated from message livekit.proto.UserPacket
1685
1686
  */
1686
- export type UserPacket = Message<"livekit.proto.UserPacket"> & {
1687
+ type UserPacket = Message<"livekit.proto.UserPacket"> & {
1687
1688
  /**
1688
1689
  * @generated from field: required livekit.proto.OwnedBuffer data = 1;
1689
1690
  */
@@ -1697,11 +1698,11 @@ export type UserPacket = Message<"livekit.proto.UserPacket"> & {
1697
1698
  * Describes the message livekit.proto.UserPacket.
1698
1699
  * Use `create(UserPacketSchema)` to create a new message.
1699
1700
  */
1700
- export declare const UserPacketSchema: GenMessage<UserPacket>;
1701
+ declare const UserPacketSchema: GenMessage<UserPacket>;
1701
1702
  /**
1702
1703
  * @generated from message livekit.proto.ChatMessage
1703
1704
  */
1704
- export type ChatMessage = Message<"livekit.proto.ChatMessage"> & {
1705
+ type ChatMessage = Message<"livekit.proto.ChatMessage"> & {
1705
1706
  /**
1706
1707
  * @generated from field: required string id = 1;
1707
1708
  */
@@ -1731,11 +1732,11 @@ export type ChatMessage = Message<"livekit.proto.ChatMessage"> & {
1731
1732
  * Describes the message livekit.proto.ChatMessage.
1732
1733
  * Use `create(ChatMessageSchema)` to create a new message.
1733
1734
  */
1734
- export declare const ChatMessageSchema: GenMessage<ChatMessage>;
1735
+ declare const ChatMessageSchema: GenMessage<ChatMessage>;
1735
1736
  /**
1736
1737
  * @generated from message livekit.proto.ChatMessageReceived
1737
1738
  */
1738
- export type ChatMessageReceived = Message<"livekit.proto.ChatMessageReceived"> & {
1739
+ type ChatMessageReceived = Message<"livekit.proto.ChatMessageReceived"> & {
1739
1740
  /**
1740
1741
  * @generated from field: required livekit.proto.ChatMessage message = 1;
1741
1742
  */
@@ -1749,11 +1750,11 @@ export type ChatMessageReceived = Message<"livekit.proto.ChatMessageReceived"> &
1749
1750
  * Describes the message livekit.proto.ChatMessageReceived.
1750
1751
  * Use `create(ChatMessageReceivedSchema)` to create a new message.
1751
1752
  */
1752
- export declare const ChatMessageReceivedSchema: GenMessage<ChatMessageReceived>;
1753
+ declare const ChatMessageReceivedSchema: GenMessage<ChatMessageReceived>;
1753
1754
  /**
1754
1755
  * @generated from message livekit.proto.SipDTMF
1755
1756
  */
1756
- export type SipDTMF = Message<"livekit.proto.SipDTMF"> & {
1757
+ type SipDTMF = Message<"livekit.proto.SipDTMF"> & {
1757
1758
  /**
1758
1759
  * @generated from field: required uint32 code = 1;
1759
1760
  */
@@ -1767,11 +1768,11 @@ export type SipDTMF = Message<"livekit.proto.SipDTMF"> & {
1767
1768
  * Describes the message livekit.proto.SipDTMF.
1768
1769
  * Use `create(SipDTMFSchema)` to create a new message.
1769
1770
  */
1770
- export declare const SipDTMFSchema: GenMessage<SipDTMF>;
1771
+ declare const SipDTMFSchema: GenMessage<SipDTMF>;
1771
1772
  /**
1772
1773
  * @generated from message livekit.proto.DataPacketReceived
1773
1774
  */
1774
- export type DataPacketReceived = Message<"livekit.proto.DataPacketReceived"> & {
1775
+ type DataPacketReceived = Message<"livekit.proto.DataPacketReceived"> & {
1775
1776
  /**
1776
1777
  * @generated from field: required livekit.proto.DataPacketKind kind = 1;
1777
1778
  */
@@ -1806,11 +1807,11 @@ export type DataPacketReceived = Message<"livekit.proto.DataPacketReceived"> & {
1806
1807
  * Describes the message livekit.proto.DataPacketReceived.
1807
1808
  * Use `create(DataPacketReceivedSchema)` to create a new message.
1808
1809
  */
1809
- export declare const DataPacketReceivedSchema: GenMessage<DataPacketReceived>;
1810
+ declare const DataPacketReceivedSchema: GenMessage<DataPacketReceived>;
1810
1811
  /**
1811
1812
  * @generated from message livekit.proto.TranscriptionReceived
1812
1813
  */
1813
- export type TranscriptionReceived = Message<"livekit.proto.TranscriptionReceived"> & {
1814
+ type TranscriptionReceived = Message<"livekit.proto.TranscriptionReceived"> & {
1814
1815
  /**
1815
1816
  * @generated from field: optional string participant_identity = 1;
1816
1817
  */
@@ -1828,11 +1829,11 @@ export type TranscriptionReceived = Message<"livekit.proto.TranscriptionReceived
1828
1829
  * Describes the message livekit.proto.TranscriptionReceived.
1829
1830
  * Use `create(TranscriptionReceivedSchema)` to create a new message.
1830
1831
  */
1831
- export declare const TranscriptionReceivedSchema: GenMessage<TranscriptionReceived>;
1832
+ declare const TranscriptionReceivedSchema: GenMessage<TranscriptionReceived>;
1832
1833
  /**
1833
1834
  * @generated from message livekit.proto.ConnectionStateChanged
1834
1835
  */
1835
- export type ConnectionStateChanged = Message<"livekit.proto.ConnectionStateChanged"> & {
1836
+ type ConnectionStateChanged = Message<"livekit.proto.ConnectionStateChanged"> & {
1836
1837
  /**
1837
1838
  * @generated from field: required livekit.proto.ConnectionState state = 1;
1838
1839
  */
@@ -1842,20 +1843,20 @@ export type ConnectionStateChanged = Message<"livekit.proto.ConnectionStateChang
1842
1843
  * Describes the message livekit.proto.ConnectionStateChanged.
1843
1844
  * Use `create(ConnectionStateChangedSchema)` to create a new message.
1844
1845
  */
1845
- export declare const ConnectionStateChangedSchema: GenMessage<ConnectionStateChanged>;
1846
+ declare const ConnectionStateChangedSchema: GenMessage<ConnectionStateChanged>;
1846
1847
  /**
1847
1848
  * @generated from message livekit.proto.Connected
1848
1849
  */
1849
- export type Connected = Message<"livekit.proto.Connected"> & {};
1850
+ type Connected = Message<"livekit.proto.Connected"> & {};
1850
1851
  /**
1851
1852
  * Describes the message livekit.proto.Connected.
1852
1853
  * Use `create(ConnectedSchema)` to create a new message.
1853
1854
  */
1854
- export declare const ConnectedSchema: GenMessage<Connected>;
1855
+ declare const ConnectedSchema: GenMessage<Connected>;
1855
1856
  /**
1856
1857
  * @generated from message livekit.proto.Disconnected
1857
1858
  */
1858
- export type Disconnected = Message<"livekit.proto.Disconnected"> & {
1859
+ type Disconnected = Message<"livekit.proto.Disconnected"> & {
1859
1860
  /**
1860
1861
  * @generated from field: required livekit.proto.DisconnectReason reason = 1;
1861
1862
  */
@@ -1865,38 +1866,38 @@ export type Disconnected = Message<"livekit.proto.Disconnected"> & {
1865
1866
  * Describes the message livekit.proto.Disconnected.
1866
1867
  * Use `create(DisconnectedSchema)` to create a new message.
1867
1868
  */
1868
- export declare const DisconnectedSchema: GenMessage<Disconnected>;
1869
+ declare const DisconnectedSchema: GenMessage<Disconnected>;
1869
1870
  /**
1870
1871
  * @generated from message livekit.proto.Reconnecting
1871
1872
  */
1872
- export type Reconnecting = Message<"livekit.proto.Reconnecting"> & {};
1873
+ type Reconnecting = Message<"livekit.proto.Reconnecting"> & {};
1873
1874
  /**
1874
1875
  * Describes the message livekit.proto.Reconnecting.
1875
1876
  * Use `create(ReconnectingSchema)` to create a new message.
1876
1877
  */
1877
- export declare const ReconnectingSchema: GenMessage<Reconnecting>;
1878
+ declare const ReconnectingSchema: GenMessage<Reconnecting>;
1878
1879
  /**
1879
1880
  * @generated from message livekit.proto.Reconnected
1880
1881
  */
1881
- export type Reconnected = Message<"livekit.proto.Reconnected"> & {};
1882
+ type Reconnected = Message<"livekit.proto.Reconnected"> & {};
1882
1883
  /**
1883
1884
  * Describes the message livekit.proto.Reconnected.
1884
1885
  * Use `create(ReconnectedSchema)` to create a new message.
1885
1886
  */
1886
- export declare const ReconnectedSchema: GenMessage<Reconnected>;
1887
+ declare const ReconnectedSchema: GenMessage<Reconnected>;
1887
1888
  /**
1888
1889
  * @generated from message livekit.proto.RoomEOS
1889
1890
  */
1890
- export type RoomEOS = Message<"livekit.proto.RoomEOS"> & {};
1891
+ type RoomEOS = Message<"livekit.proto.RoomEOS"> & {};
1891
1892
  /**
1892
1893
  * Describes the message livekit.proto.RoomEOS.
1893
1894
  * Use `create(RoomEOSSchema)` to create a new message.
1894
1895
  */
1895
- export declare const RoomEOSSchema: GenMessage<RoomEOS>;
1896
+ declare const RoomEOSSchema: GenMessage<RoomEOS>;
1896
1897
  /**
1897
1898
  * @generated from enum livekit.proto.IceTransportType
1898
1899
  */
1899
- export declare enum IceTransportType {
1900
+ declare enum IceTransportType {
1900
1901
  /**
1901
1902
  * @generated from enum value: TRANSPORT_RELAY = 0;
1902
1903
  */
@@ -1913,11 +1914,11 @@ export declare enum IceTransportType {
1913
1914
  /**
1914
1915
  * Describes the enum livekit.proto.IceTransportType.
1915
1916
  */
1916
- export declare const IceTransportTypeSchema: GenEnum<IceTransportType>;
1917
+ declare const IceTransportTypeSchema: GenEnum<IceTransportType>;
1917
1918
  /**
1918
1919
  * @generated from enum livekit.proto.ContinualGatheringPolicy
1919
1920
  */
1920
- export declare enum ContinualGatheringPolicy {
1921
+ declare enum ContinualGatheringPolicy {
1921
1922
  /**
1922
1923
  * @generated from enum value: GATHER_ONCE = 0;
1923
1924
  */
@@ -1930,11 +1931,11 @@ export declare enum ContinualGatheringPolicy {
1930
1931
  /**
1931
1932
  * Describes the enum livekit.proto.ContinualGatheringPolicy.
1932
1933
  */
1933
- export declare const ContinualGatheringPolicySchema: GenEnum<ContinualGatheringPolicy>;
1934
+ declare const ContinualGatheringPolicySchema: GenEnum<ContinualGatheringPolicy>;
1934
1935
  /**
1935
1936
  * @generated from enum livekit.proto.ConnectionQuality
1936
1937
  */
1937
- export declare enum ConnectionQuality {
1938
+ declare enum ConnectionQuality {
1938
1939
  /**
1939
1940
  * @generated from enum value: QUALITY_POOR = 0;
1940
1941
  */
@@ -1955,11 +1956,11 @@ export declare enum ConnectionQuality {
1955
1956
  /**
1956
1957
  * Describes the enum livekit.proto.ConnectionQuality.
1957
1958
  */
1958
- export declare const ConnectionQualitySchema: GenEnum<ConnectionQuality>;
1959
+ declare const ConnectionQualitySchema: GenEnum<ConnectionQuality>;
1959
1960
  /**
1960
1961
  * @generated from enum livekit.proto.ConnectionState
1961
1962
  */
1962
- export declare enum ConnectionState {
1963
+ declare enum ConnectionState {
1963
1964
  /**
1964
1965
  * @generated from enum value: CONN_DISCONNECTED = 0;
1965
1966
  */
@@ -1976,11 +1977,11 @@ export declare enum ConnectionState {
1976
1977
  /**
1977
1978
  * Describes the enum livekit.proto.ConnectionState.
1978
1979
  */
1979
- export declare const ConnectionStateSchema: GenEnum<ConnectionState>;
1980
+ declare const ConnectionStateSchema: GenEnum<ConnectionState>;
1980
1981
  /**
1981
1982
  * @generated from enum livekit.proto.DataPacketKind
1982
1983
  */
1983
- export declare enum DataPacketKind {
1984
+ declare enum DataPacketKind {
1984
1985
  /**
1985
1986
  * @generated from enum value: KIND_LOSSY = 0;
1986
1987
  */
@@ -1993,11 +1994,11 @@ export declare enum DataPacketKind {
1993
1994
  /**
1994
1995
  * Describes the enum livekit.proto.DataPacketKind.
1995
1996
  */
1996
- export declare const DataPacketKindSchema: GenEnum<DataPacketKind>;
1997
+ declare const DataPacketKindSchema: GenEnum<DataPacketKind>;
1997
1998
  /**
1998
1999
  * @generated from enum livekit.proto.DisconnectReason
1999
2000
  */
2000
- export declare enum DisconnectReason {
2001
+ declare enum DisconnectReason {
2001
2002
  /**
2002
2003
  * @generated from enum value: UNKNOWN_REASON = 0;
2003
2004
  */
@@ -2066,5 +2067,6 @@ export declare enum DisconnectReason {
2066
2067
  /**
2067
2068
  * Describes the enum livekit.proto.DisconnectReason.
2068
2069
  */
2069
- export declare const DisconnectReasonSchema: GenEnum<DisconnectReason>;
2070
- //# sourceMappingURL=room_pb.d.ts.map
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 };