@cc-livekit/protocol 1.39.3

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 (40) hide show
  1. package/dist/index.cjs +7285 -0
  2. package/dist/index.cjs.map +1 -0
  3. package/dist/index.d.cts +13646 -0
  4. package/dist/index.d.mts +13646 -0
  5. package/dist/index.d.ts +13646 -0
  6. package/dist/index.mjs +7009 -0
  7. package/dist/index.mjs.map +1 -0
  8. package/package.json +42 -0
  9. package/src/gen/livekit_agent_dispatch_pb.d.ts +253 -0
  10. package/src/gen/livekit_agent_dispatch_pb.js +103 -0
  11. package/src/gen/livekit_agent_pb.d.ts +758 -0
  12. package/src/gen/livekit_agent_pb.js +269 -0
  13. package/src/gen/livekit_analytics_pb.d.ts +1379 -0
  14. package/src/gen/livekit_analytics_pb.js +397 -0
  15. package/src/gen/livekit_cloud_agent_pb.d.ts +919 -0
  16. package/src/gen/livekit_cloud_agent_pb.js +327 -0
  17. package/src/gen/livekit_egress_pb.d.ts +2151 -0
  18. package/src/gen/livekit_egress_pb.js +625 -0
  19. package/src/gen/livekit_ingress_pb.d.ts +864 -0
  20. package/src/gen/livekit_ingress_pb.js +272 -0
  21. package/src/gen/livekit_internal_pb.d.ts +786 -0
  22. package/src/gen/livekit_internal_pb.js +227 -0
  23. package/src/gen/livekit_metrics_pb.d.ts +376 -0
  24. package/src/gen/livekit_metrics_pb.js +97 -0
  25. package/src/gen/livekit_models_pb.d.ts +3083 -0
  26. package/src/gen/livekit_models_pb.js +998 -0
  27. package/src/gen/livekit_room_pb.d.ts +899 -0
  28. package/src/gen/livekit_room_pb.js +300 -0
  29. package/src/gen/livekit_rtc_pb.d.ts +2134 -0
  30. package/src/gen/livekit_rtc_pb.js +668 -0
  31. package/src/gen/livekit_sip_pb.d.ts +2619 -0
  32. package/src/gen/livekit_sip_pb.js +771 -0
  33. package/src/gen/livekit_temptalk_pb.d.ts +473 -0
  34. package/src/gen/livekit_temptalk_pb.js +167 -0
  35. package/src/gen/livekit_webhook_pb.d.ts +106 -0
  36. package/src/gen/livekit_webhook_pb.js +42 -0
  37. package/src/gen/version.d.ts +1 -0
  38. package/src/gen/version.js +2 -0
  39. package/src/index.d.ts +12 -0
  40. package/src/index.js +13 -0
@@ -0,0 +1,1379 @@
1
+ // Copyright 2023 LiveKit, Inc.
2
+ //
3
+ // Licensed under the Apache License, Version 2.0 (the "License");
4
+ // you may not use this file except in compliance with the License.
5
+ // You may obtain a copy of the License at
6
+ //
7
+ // http://www.apache.org/licenses/LICENSE-2.0
8
+ //
9
+ // Unless required by applicable law or agreed to in writing, software
10
+ // distributed under the License is distributed on an "AS IS" BASIS,
11
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ // See the License for the specific language governing permissions and
13
+ // limitations under the License.
14
+
15
+ // @generated by protoc-gen-es v1.10.1 with parameter "target=dts+js"
16
+ // @generated from file livekit_analytics.proto (package livekit, syntax proto3)
17
+ /* eslint-disable */
18
+ // @ts-nocheck
19
+
20
+ import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage, Timestamp } from "@bufbuild/protobuf";
21
+ import { Message, proto3 } from "@bufbuild/protobuf";
22
+ import type { ClientInfo, ParticipantInfo, ParticipantInfo_State, ReconnectReason, Room, RTPStats, TrackInfo, VideoQuality } from "./livekit_models_pb.js";
23
+ import type { EgressInfo } from "./livekit_egress_pb.js";
24
+ import type { IngressInfo } from "./livekit_ingress_pb.js";
25
+ import type { SIPCallInfo, SIPDispatchRuleInfo, SIPInboundTrunkInfo, SIPOutboundTrunkInfo, SIPTransferInfo } from "./livekit_sip_pb.js";
26
+ import type { CreateRoomRequest, DeleteRoomRequest, ListParticipantsRequest, ListRoomsRequest, MuteRoomTrackRequest, RoomParticipantIdentity, SendDataRequest, UpdateParticipantRequest, UpdateRoomMetadataRequest, UpdateSubscriptionsRequest } from "./livekit_room_pb.js";
27
+
28
+ /**
29
+ * @generated from enum livekit.StreamType
30
+ */
31
+ export declare enum StreamType {
32
+ /**
33
+ * @generated from enum value: UPSTREAM = 0;
34
+ */
35
+ UPSTREAM = 0,
36
+
37
+ /**
38
+ * @generated from enum value: DOWNSTREAM = 1;
39
+ */
40
+ DOWNSTREAM = 1,
41
+ }
42
+
43
+ /**
44
+ * @generated from enum livekit.AnalyticsEventType
45
+ */
46
+ export declare enum AnalyticsEventType {
47
+ /**
48
+ * @generated from enum value: ROOM_CREATED = 0;
49
+ */
50
+ ROOM_CREATED = 0,
51
+
52
+ /**
53
+ * @generated from enum value: ROOM_ENDED = 1;
54
+ */
55
+ ROOM_ENDED = 1,
56
+
57
+ /**
58
+ * @generated from enum value: PARTICIPANT_JOINED = 2;
59
+ */
60
+ PARTICIPANT_JOINED = 2,
61
+
62
+ /**
63
+ * @generated from enum value: PARTICIPANT_LEFT = 3;
64
+ */
65
+ PARTICIPANT_LEFT = 3,
66
+
67
+ /**
68
+ * @generated from enum value: TRACK_PUBLISHED = 4;
69
+ */
70
+ TRACK_PUBLISHED = 4,
71
+
72
+ /**
73
+ * @generated from enum value: TRACK_PUBLISH_REQUESTED = 20;
74
+ */
75
+ TRACK_PUBLISH_REQUESTED = 20,
76
+
77
+ /**
78
+ * @generated from enum value: TRACK_UNPUBLISHED = 5;
79
+ */
80
+ TRACK_UNPUBLISHED = 5,
81
+
82
+ /**
83
+ * @generated from enum value: TRACK_SUBSCRIBED = 6;
84
+ */
85
+ TRACK_SUBSCRIBED = 6,
86
+
87
+ /**
88
+ * @generated from enum value: TRACK_SUBSCRIBE_REQUESTED = 21;
89
+ */
90
+ TRACK_SUBSCRIBE_REQUESTED = 21,
91
+
92
+ /**
93
+ * @generated from enum value: TRACK_SUBSCRIBE_FAILED = 25;
94
+ */
95
+ TRACK_SUBSCRIBE_FAILED = 25,
96
+
97
+ /**
98
+ * @generated from enum value: TRACK_UNSUBSCRIBED = 7;
99
+ */
100
+ TRACK_UNSUBSCRIBED = 7,
101
+
102
+ /**
103
+ * @generated from enum value: TRACK_PUBLISHED_UPDATE = 10;
104
+ */
105
+ TRACK_PUBLISHED_UPDATE = 10,
106
+
107
+ /**
108
+ * @generated from enum value: TRACK_MUTED = 23;
109
+ */
110
+ TRACK_MUTED = 23,
111
+
112
+ /**
113
+ * @generated from enum value: TRACK_UNMUTED = 24;
114
+ */
115
+ TRACK_UNMUTED = 24,
116
+
117
+ /**
118
+ * @generated from enum value: TRACK_PUBLISH_STATS = 26;
119
+ */
120
+ TRACK_PUBLISH_STATS = 26,
121
+
122
+ /**
123
+ * @generated from enum value: TRACK_SUBSCRIBE_STATS = 27;
124
+ */
125
+ TRACK_SUBSCRIBE_STATS = 27,
126
+
127
+ /**
128
+ * @generated from enum value: PARTICIPANT_ACTIVE = 11;
129
+ */
130
+ PARTICIPANT_ACTIVE = 11,
131
+
132
+ /**
133
+ * @generated from enum value: PARTICIPANT_RESUMED = 22;
134
+ */
135
+ PARTICIPANT_RESUMED = 22,
136
+
137
+ /**
138
+ * @generated from enum value: EGRESS_STARTED = 12;
139
+ */
140
+ EGRESS_STARTED = 12,
141
+
142
+ /**
143
+ * @generated from enum value: EGRESS_ENDED = 13;
144
+ */
145
+ EGRESS_ENDED = 13,
146
+
147
+ /**
148
+ * @generated from enum value: EGRESS_UPDATED = 28;
149
+ */
150
+ EGRESS_UPDATED = 28,
151
+
152
+ /**
153
+ * @generated from enum value: TRACK_MAX_SUBSCRIBED_VIDEO_QUALITY = 14;
154
+ */
155
+ TRACK_MAX_SUBSCRIBED_VIDEO_QUALITY = 14,
156
+
157
+ /**
158
+ * @generated from enum value: RECONNECTED = 15;
159
+ */
160
+ RECONNECTED = 15,
161
+
162
+ /**
163
+ * @generated from enum value: INGRESS_CREATED = 18;
164
+ */
165
+ INGRESS_CREATED = 18,
166
+
167
+ /**
168
+ * @generated from enum value: INGRESS_DELETED = 19;
169
+ */
170
+ INGRESS_DELETED = 19,
171
+
172
+ /**
173
+ * @generated from enum value: INGRESS_STARTED = 16;
174
+ */
175
+ INGRESS_STARTED = 16,
176
+
177
+ /**
178
+ * @generated from enum value: INGRESS_ENDED = 17;
179
+ */
180
+ INGRESS_ENDED = 17,
181
+
182
+ /**
183
+ * @generated from enum value: INGRESS_UPDATED = 29;
184
+ */
185
+ INGRESS_UPDATED = 29,
186
+
187
+ /**
188
+ * @generated from enum value: SIP_INBOUND_TRUNK_CREATED = 30;
189
+ */
190
+ SIP_INBOUND_TRUNK_CREATED = 30,
191
+
192
+ /**
193
+ * @generated from enum value: SIP_INBOUND_TRUNK_DELETED = 31;
194
+ */
195
+ SIP_INBOUND_TRUNK_DELETED = 31,
196
+
197
+ /**
198
+ * @generated from enum value: SIP_OUTBOUND_TRUNK_CREATED = 32;
199
+ */
200
+ SIP_OUTBOUND_TRUNK_CREATED = 32,
201
+
202
+ /**
203
+ * @generated from enum value: SIP_OUTBOUND_TRUNK_DELETED = 33;
204
+ */
205
+ SIP_OUTBOUND_TRUNK_DELETED = 33,
206
+
207
+ /**
208
+ * @generated from enum value: SIP_DISPATCH_RULE_CREATED = 34;
209
+ */
210
+ SIP_DISPATCH_RULE_CREATED = 34,
211
+
212
+ /**
213
+ * @generated from enum value: SIP_DISPATCH_RULE_DELETED = 35;
214
+ */
215
+ SIP_DISPATCH_RULE_DELETED = 35,
216
+
217
+ /**
218
+ * @generated from enum value: SIP_PARTICIPANT_CREATED = 36;
219
+ */
220
+ SIP_PARTICIPANT_CREATED = 36,
221
+
222
+ /**
223
+ * @generated from enum value: SIP_CALL_INCOMING = 37;
224
+ */
225
+ SIP_CALL_INCOMING = 37,
226
+
227
+ /**
228
+ * @generated from enum value: SIP_CALL_STARTED = 38;
229
+ */
230
+ SIP_CALL_STARTED = 38,
231
+
232
+ /**
233
+ * @generated from enum value: SIP_CALL_ENDED = 39;
234
+ */
235
+ SIP_CALL_ENDED = 39,
236
+
237
+ /**
238
+ * @generated from enum value: SIP_TRANSFER_REQUESTED = 43;
239
+ */
240
+ SIP_TRANSFER_REQUESTED = 43,
241
+
242
+ /**
243
+ * @generated from enum value: SIP_TRANSFER_COMPLETE = 44;
244
+ */
245
+ SIP_TRANSFER_COMPLETE = 44,
246
+
247
+ /**
248
+ * @generated from enum value: REPORT = 40;
249
+ */
250
+ REPORT = 40,
251
+
252
+ /**
253
+ * @generated from enum value: API_CALL = 41;
254
+ */
255
+ API_CALL = 41,
256
+
257
+ /**
258
+ * @generated from enum value: WEBHOOK = 42;
259
+ */
260
+ WEBHOOK = 42,
261
+ }
262
+
263
+ /**
264
+ * @generated from message livekit.AnalyticsVideoLayer
265
+ */
266
+ export declare class AnalyticsVideoLayer extends Message<AnalyticsVideoLayer> {
267
+ /**
268
+ * @generated from field: int32 layer = 1;
269
+ */
270
+ layer: number;
271
+
272
+ /**
273
+ * @generated from field: uint32 packets = 2;
274
+ */
275
+ packets: number;
276
+
277
+ /**
278
+ * @generated from field: uint64 bytes = 3;
279
+ */
280
+ bytes: bigint;
281
+
282
+ /**
283
+ * @generated from field: uint32 frames = 4;
284
+ */
285
+ frames: number;
286
+
287
+ constructor(data?: PartialMessage<AnalyticsVideoLayer>);
288
+
289
+ static readonly runtime: typeof proto3;
290
+ static readonly typeName = "livekit.AnalyticsVideoLayer";
291
+ static readonly fields: FieldList;
292
+
293
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AnalyticsVideoLayer;
294
+
295
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AnalyticsVideoLayer;
296
+
297
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AnalyticsVideoLayer;
298
+
299
+ static equals(a: AnalyticsVideoLayer | PlainMessage<AnalyticsVideoLayer> | undefined, b: AnalyticsVideoLayer | PlainMessage<AnalyticsVideoLayer> | undefined): boolean;
300
+ }
301
+
302
+ /**
303
+ * @generated from message livekit.AnalyticsStream
304
+ */
305
+ export declare class AnalyticsStream extends Message<AnalyticsStream> {
306
+ /**
307
+ * @generated from field: uint32 ssrc = 1;
308
+ */
309
+ ssrc: number;
310
+
311
+ /**
312
+ * @generated from field: uint32 primary_packets = 2;
313
+ */
314
+ primaryPackets: number;
315
+
316
+ /**
317
+ * @generated from field: uint64 primary_bytes = 3;
318
+ */
319
+ primaryBytes: bigint;
320
+
321
+ /**
322
+ * @generated from field: uint32 retransmit_packets = 4;
323
+ */
324
+ retransmitPackets: number;
325
+
326
+ /**
327
+ * @generated from field: uint64 retransmit_bytes = 5;
328
+ */
329
+ retransmitBytes: bigint;
330
+
331
+ /**
332
+ * @generated from field: uint32 padding_packets = 6;
333
+ */
334
+ paddingPackets: number;
335
+
336
+ /**
337
+ * @generated from field: uint64 padding_bytes = 7;
338
+ */
339
+ paddingBytes: bigint;
340
+
341
+ /**
342
+ * @generated from field: uint32 packets_lost = 8;
343
+ */
344
+ packetsLost: number;
345
+
346
+ /**
347
+ * @generated from field: uint32 frames = 9;
348
+ */
349
+ frames: number;
350
+
351
+ /**
352
+ * @generated from field: uint32 rtt = 10;
353
+ */
354
+ rtt: number;
355
+
356
+ /**
357
+ * @generated from field: uint32 jitter = 11;
358
+ */
359
+ jitter: number;
360
+
361
+ /**
362
+ * @generated from field: uint32 nacks = 12;
363
+ */
364
+ nacks: number;
365
+
366
+ /**
367
+ * @generated from field: uint32 plis = 13;
368
+ */
369
+ plis: number;
370
+
371
+ /**
372
+ * @generated from field: uint32 firs = 14;
373
+ */
374
+ firs: number;
375
+
376
+ /**
377
+ * @generated from field: repeated livekit.AnalyticsVideoLayer video_layers = 15;
378
+ */
379
+ videoLayers: AnalyticsVideoLayer[];
380
+
381
+ /**
382
+ * @generated from field: google.protobuf.Timestamp start_time = 17;
383
+ */
384
+ startTime?: Timestamp;
385
+
386
+ /**
387
+ * @generated from field: google.protobuf.Timestamp end_time = 18;
388
+ */
389
+ endTime?: Timestamp;
390
+
391
+ /**
392
+ * @generated from field: uint32 packets_out_of_order = 19;
393
+ */
394
+ packetsOutOfOrder: number;
395
+
396
+ constructor(data?: PartialMessage<AnalyticsStream>);
397
+
398
+ static readonly runtime: typeof proto3;
399
+ static readonly typeName = "livekit.AnalyticsStream";
400
+ static readonly fields: FieldList;
401
+
402
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AnalyticsStream;
403
+
404
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AnalyticsStream;
405
+
406
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AnalyticsStream;
407
+
408
+ static equals(a: AnalyticsStream | PlainMessage<AnalyticsStream> | undefined, b: AnalyticsStream | PlainMessage<AnalyticsStream> | undefined): boolean;
409
+ }
410
+
411
+ /**
412
+ * @generated from message livekit.AnalyticsStat
413
+ */
414
+ export declare class AnalyticsStat extends Message<AnalyticsStat> {
415
+ /**
416
+ * unique id for this stat
417
+ *
418
+ * @generated from field: string id = 14;
419
+ */
420
+ id: string;
421
+
422
+ /**
423
+ * @generated from field: string analytics_key = 1;
424
+ */
425
+ analyticsKey: string;
426
+
427
+ /**
428
+ * @generated from field: livekit.StreamType kind = 2;
429
+ */
430
+ kind: StreamType;
431
+
432
+ /**
433
+ * @generated from field: google.protobuf.Timestamp time_stamp = 3;
434
+ */
435
+ timeStamp?: Timestamp;
436
+
437
+ /**
438
+ * @generated from field: string node = 4;
439
+ */
440
+ node: string;
441
+
442
+ /**
443
+ * @generated from field: string room_id = 5;
444
+ */
445
+ roomId: string;
446
+
447
+ /**
448
+ * @generated from field: string room_name = 6;
449
+ */
450
+ roomName: string;
451
+
452
+ /**
453
+ * @generated from field: string participant_id = 7;
454
+ */
455
+ participantId: string;
456
+
457
+ /**
458
+ * @generated from field: string track_id = 8;
459
+ */
460
+ trackId: string;
461
+
462
+ /**
463
+ * average score
464
+ *
465
+ * @generated from field: float score = 9;
466
+ */
467
+ score: number;
468
+
469
+ /**
470
+ * @generated from field: repeated livekit.AnalyticsStream streams = 10;
471
+ */
472
+ streams: AnalyticsStream[];
473
+
474
+ /**
475
+ * @generated from field: string mime = 11;
476
+ */
477
+ mime: string;
478
+
479
+ /**
480
+ * @generated from field: float min_score = 12;
481
+ */
482
+ minScore: number;
483
+
484
+ /**
485
+ * @generated from field: float median_score = 13;
486
+ */
487
+ medianScore: number;
488
+
489
+ constructor(data?: PartialMessage<AnalyticsStat>);
490
+
491
+ static readonly runtime: typeof proto3;
492
+ static readonly typeName = "livekit.AnalyticsStat";
493
+ static readonly fields: FieldList;
494
+
495
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AnalyticsStat;
496
+
497
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AnalyticsStat;
498
+
499
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AnalyticsStat;
500
+
501
+ static equals(a: AnalyticsStat | PlainMessage<AnalyticsStat> | undefined, b: AnalyticsStat | PlainMessage<AnalyticsStat> | undefined): boolean;
502
+ }
503
+
504
+ /**
505
+ * @generated from message livekit.AnalyticsStats
506
+ */
507
+ export declare class AnalyticsStats extends Message<AnalyticsStats> {
508
+ /**
509
+ * @generated from field: repeated livekit.AnalyticsStat stats = 1;
510
+ */
511
+ stats: AnalyticsStat[];
512
+
513
+ constructor(data?: PartialMessage<AnalyticsStats>);
514
+
515
+ static readonly runtime: typeof proto3;
516
+ static readonly typeName = "livekit.AnalyticsStats";
517
+ static readonly fields: FieldList;
518
+
519
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AnalyticsStats;
520
+
521
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AnalyticsStats;
522
+
523
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AnalyticsStats;
524
+
525
+ static equals(a: AnalyticsStats | PlainMessage<AnalyticsStats> | undefined, b: AnalyticsStats | PlainMessage<AnalyticsStats> | undefined): boolean;
526
+ }
527
+
528
+ /**
529
+ * @generated from message livekit.AnalyticsClientMeta
530
+ */
531
+ export declare class AnalyticsClientMeta extends Message<AnalyticsClientMeta> {
532
+ /**
533
+ * @generated from field: string region = 1;
534
+ */
535
+ region: string;
536
+
537
+ /**
538
+ * @generated from field: string node = 2;
539
+ */
540
+ node: string;
541
+
542
+ /**
543
+ * @generated from field: string client_addr = 3;
544
+ */
545
+ clientAddr: string;
546
+
547
+ /**
548
+ * @generated from field: uint32 client_connect_time = 4;
549
+ */
550
+ clientConnectTime: number;
551
+
552
+ /**
553
+ * udp, tcp, turn
554
+ *
555
+ * @generated from field: string connection_type = 5;
556
+ */
557
+ connectionType: string;
558
+
559
+ /**
560
+ * @generated from field: livekit.ReconnectReason reconnect_reason = 6;
561
+ */
562
+ reconnectReason: ReconnectReason;
563
+
564
+ /**
565
+ * @generated from field: optional string geo_hash = 7;
566
+ */
567
+ geoHash?: string;
568
+
569
+ /**
570
+ * @generated from field: optional string country = 8;
571
+ */
572
+ country?: string;
573
+
574
+ /**
575
+ * @generated from field: optional uint32 isp_asn = 9;
576
+ */
577
+ ispAsn?: number;
578
+
579
+ constructor(data?: PartialMessage<AnalyticsClientMeta>);
580
+
581
+ static readonly runtime: typeof proto3;
582
+ static readonly typeName = "livekit.AnalyticsClientMeta";
583
+ static readonly fields: FieldList;
584
+
585
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AnalyticsClientMeta;
586
+
587
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AnalyticsClientMeta;
588
+
589
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AnalyticsClientMeta;
590
+
591
+ static equals(a: AnalyticsClientMeta | PlainMessage<AnalyticsClientMeta> | undefined, b: AnalyticsClientMeta | PlainMessage<AnalyticsClientMeta> | undefined): boolean;
592
+ }
593
+
594
+ /**
595
+ * @generated from message livekit.AnalyticsEvent
596
+ */
597
+ export declare class AnalyticsEvent extends Message<AnalyticsEvent> {
598
+ /**
599
+ * unique id for this event
600
+ *
601
+ * @generated from field: string id = 25;
602
+ */
603
+ id: string;
604
+
605
+ /**
606
+ * @generated from field: livekit.AnalyticsEventType type = 1;
607
+ */
608
+ type: AnalyticsEventType;
609
+
610
+ /**
611
+ * @generated from field: google.protobuf.Timestamp timestamp = 2;
612
+ */
613
+ timestamp?: Timestamp;
614
+
615
+ /**
616
+ * @generated from field: string room_id = 3;
617
+ */
618
+ roomId: string;
619
+
620
+ /**
621
+ * @generated from field: livekit.Room room = 4;
622
+ */
623
+ room?: Room;
624
+
625
+ /**
626
+ * @generated from field: string participant_id = 5;
627
+ */
628
+ participantId: string;
629
+
630
+ /**
631
+ * @generated from field: livekit.ParticipantInfo participant = 6;
632
+ */
633
+ participant?: ParticipantInfo;
634
+
635
+ /**
636
+ * @generated from field: string track_id = 7;
637
+ */
638
+ trackId: string;
639
+
640
+ /**
641
+ * @generated from field: livekit.TrackInfo track = 8;
642
+ */
643
+ track?: TrackInfo;
644
+
645
+ /**
646
+ * @generated from field: string analytics_key = 10;
647
+ */
648
+ analyticsKey: string;
649
+
650
+ /**
651
+ * @generated from field: livekit.ClientInfo client_info = 11;
652
+ */
653
+ clientInfo?: ClientInfo;
654
+
655
+ /**
656
+ * @generated from field: livekit.AnalyticsClientMeta client_meta = 12;
657
+ */
658
+ clientMeta?: AnalyticsClientMeta;
659
+
660
+ /**
661
+ * @generated from field: string egress_id = 13;
662
+ */
663
+ egressId: string;
664
+
665
+ /**
666
+ * @generated from field: string ingress_id = 19;
667
+ */
668
+ ingressId: string;
669
+
670
+ /**
671
+ * @generated from field: livekit.VideoQuality max_subscribed_video_quality = 14;
672
+ */
673
+ maxSubscribedVideoQuality: VideoQuality;
674
+
675
+ /**
676
+ * @generated from field: livekit.ParticipantInfo publisher = 15;
677
+ */
678
+ publisher?: ParticipantInfo;
679
+
680
+ /**
681
+ * @generated from field: string mime = 16;
682
+ */
683
+ mime: string;
684
+
685
+ /**
686
+ * @generated from field: livekit.EgressInfo egress = 17;
687
+ */
688
+ egress?: EgressInfo;
689
+
690
+ /**
691
+ * @generated from field: livekit.IngressInfo ingress = 18;
692
+ */
693
+ ingress?: IngressInfo;
694
+
695
+ /**
696
+ * @generated from field: string error = 20;
697
+ */
698
+ error: string;
699
+
700
+ /**
701
+ * @generated from field: livekit.RTPStats rtp_stats = 21;
702
+ */
703
+ rtpStats?: RTPStats;
704
+
705
+ /**
706
+ * @generated from field: int32 video_layer = 22;
707
+ */
708
+ videoLayer: number;
709
+
710
+ /**
711
+ * @generated from field: string node_id = 24;
712
+ */
713
+ nodeId: string;
714
+
715
+ /**
716
+ * @generated from field: string sip_call_id = 26;
717
+ */
718
+ sipCallId: string;
719
+
720
+ /**
721
+ * @generated from field: livekit.SIPCallInfo sip_call = 27;
722
+ */
723
+ sipCall?: SIPCallInfo;
724
+
725
+ /**
726
+ * @generated from field: string sip_trunk_id = 28;
727
+ */
728
+ sipTrunkId: string;
729
+
730
+ /**
731
+ * @generated from field: livekit.SIPInboundTrunkInfo sip_inbound_trunk = 29;
732
+ */
733
+ sipInboundTrunk?: SIPInboundTrunkInfo;
734
+
735
+ /**
736
+ * @generated from field: livekit.SIPOutboundTrunkInfo sip_outbound_trunk = 30;
737
+ */
738
+ sipOutboundTrunk?: SIPOutboundTrunkInfo;
739
+
740
+ /**
741
+ * @generated from field: string sip_dispatch_rule_id = 31;
742
+ */
743
+ sipDispatchRuleId: string;
744
+
745
+ /**
746
+ * @generated from field: livekit.SIPDispatchRuleInfo sip_dispatch_rule = 32;
747
+ */
748
+ sipDispatchRule?: SIPDispatchRuleInfo;
749
+
750
+ /**
751
+ * @generated from field: livekit.SIPTransferInfo sip_transfer = 36;
752
+ */
753
+ sipTransfer?: SIPTransferInfo;
754
+
755
+ /**
756
+ * @generated from field: livekit.ReportInfo report = 33;
757
+ */
758
+ report?: ReportInfo;
759
+
760
+ /**
761
+ * @generated from field: livekit.APICallInfo api_call = 34;
762
+ */
763
+ apiCall?: APICallInfo;
764
+
765
+ /**
766
+ * @generated from field: livekit.WebhookInfo webhook = 35;
767
+ */
768
+ webhook?: WebhookInfo;
769
+
770
+ constructor(data?: PartialMessage<AnalyticsEvent>);
771
+
772
+ static readonly runtime: typeof proto3;
773
+ static readonly typeName = "livekit.AnalyticsEvent";
774
+ static readonly fields: FieldList;
775
+
776
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AnalyticsEvent;
777
+
778
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AnalyticsEvent;
779
+
780
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AnalyticsEvent;
781
+
782
+ static equals(a: AnalyticsEvent | PlainMessage<AnalyticsEvent> | undefined, b: AnalyticsEvent | PlainMessage<AnalyticsEvent> | undefined): boolean;
783
+ }
784
+
785
+ /**
786
+ * @generated from message livekit.AnalyticsEvents
787
+ */
788
+ export declare class AnalyticsEvents extends Message<AnalyticsEvents> {
789
+ /**
790
+ * @generated from field: repeated livekit.AnalyticsEvent events = 1;
791
+ */
792
+ events: AnalyticsEvent[];
793
+
794
+ constructor(data?: PartialMessage<AnalyticsEvents>);
795
+
796
+ static readonly runtime: typeof proto3;
797
+ static readonly typeName = "livekit.AnalyticsEvents";
798
+ static readonly fields: FieldList;
799
+
800
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AnalyticsEvents;
801
+
802
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AnalyticsEvents;
803
+
804
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AnalyticsEvents;
805
+
806
+ static equals(a: AnalyticsEvents | PlainMessage<AnalyticsEvents> | undefined, b: AnalyticsEvents | PlainMessage<AnalyticsEvents> | undefined): boolean;
807
+ }
808
+
809
+ /**
810
+ * @generated from message livekit.AnalyticsRoomParticipant
811
+ */
812
+ export declare class AnalyticsRoomParticipant extends Message<AnalyticsRoomParticipant> {
813
+ /**
814
+ * @generated from field: string id = 1;
815
+ */
816
+ id: string;
817
+
818
+ /**
819
+ * @generated from field: string identity = 2;
820
+ */
821
+ identity: string;
822
+
823
+ /**
824
+ * @generated from field: string name = 3;
825
+ */
826
+ name: string;
827
+
828
+ /**
829
+ * @generated from field: livekit.ParticipantInfo.State state = 4;
830
+ */
831
+ state: ParticipantInfo_State;
832
+
833
+ /**
834
+ * @generated from field: google.protobuf.Timestamp joined_at = 5;
835
+ */
836
+ joinedAt?: Timestamp;
837
+
838
+ constructor(data?: PartialMessage<AnalyticsRoomParticipant>);
839
+
840
+ static readonly runtime: typeof proto3;
841
+ static readonly typeName = "livekit.AnalyticsRoomParticipant";
842
+ static readonly fields: FieldList;
843
+
844
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AnalyticsRoomParticipant;
845
+
846
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AnalyticsRoomParticipant;
847
+
848
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AnalyticsRoomParticipant;
849
+
850
+ static equals(a: AnalyticsRoomParticipant | PlainMessage<AnalyticsRoomParticipant> | undefined, b: AnalyticsRoomParticipant | PlainMessage<AnalyticsRoomParticipant> | undefined): boolean;
851
+ }
852
+
853
+ /**
854
+ * @generated from message livekit.AnalyticsRoom
855
+ */
856
+ export declare class AnalyticsRoom extends Message<AnalyticsRoom> {
857
+ /**
858
+ * @generated from field: string id = 1;
859
+ */
860
+ id: string;
861
+
862
+ /**
863
+ * @generated from field: string name = 2;
864
+ */
865
+ name: string;
866
+
867
+ /**
868
+ * @generated from field: string project_id = 5;
869
+ */
870
+ projectId: string;
871
+
872
+ /**
873
+ * @generated from field: google.protobuf.Timestamp created_at = 3;
874
+ */
875
+ createdAt?: Timestamp;
876
+
877
+ /**
878
+ * @generated from field: repeated livekit.AnalyticsRoomParticipant participants = 4;
879
+ */
880
+ participants: AnalyticsRoomParticipant[];
881
+
882
+ constructor(data?: PartialMessage<AnalyticsRoom>);
883
+
884
+ static readonly runtime: typeof proto3;
885
+ static readonly typeName = "livekit.AnalyticsRoom";
886
+ static readonly fields: FieldList;
887
+
888
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AnalyticsRoom;
889
+
890
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AnalyticsRoom;
891
+
892
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AnalyticsRoom;
893
+
894
+ static equals(a: AnalyticsRoom | PlainMessage<AnalyticsRoom> | undefined, b: AnalyticsRoom | PlainMessage<AnalyticsRoom> | undefined): boolean;
895
+ }
896
+
897
+ /**
898
+ * @generated from message livekit.AnalyticsNodeRooms
899
+ */
900
+ export declare class AnalyticsNodeRooms extends Message<AnalyticsNodeRooms> {
901
+ /**
902
+ * @generated from field: string node_id = 1;
903
+ */
904
+ nodeId: string;
905
+
906
+ /**
907
+ * @generated from field: uint64 sequence_number = 2;
908
+ */
909
+ sequenceNumber: bigint;
910
+
911
+ /**
912
+ * @generated from field: google.protobuf.Timestamp timestamp = 3;
913
+ */
914
+ timestamp?: Timestamp;
915
+
916
+ /**
917
+ * @generated from field: repeated livekit.AnalyticsRoom rooms = 4;
918
+ */
919
+ rooms: AnalyticsRoom[];
920
+
921
+ constructor(data?: PartialMessage<AnalyticsNodeRooms>);
922
+
923
+ static readonly runtime: typeof proto3;
924
+ static readonly typeName = "livekit.AnalyticsNodeRooms";
925
+ static readonly fields: FieldList;
926
+
927
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AnalyticsNodeRooms;
928
+
929
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AnalyticsNodeRooms;
930
+
931
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AnalyticsNodeRooms;
932
+
933
+ static equals(a: AnalyticsNodeRooms | PlainMessage<AnalyticsNodeRooms> | undefined, b: AnalyticsNodeRooms | PlainMessage<AnalyticsNodeRooms> | undefined): boolean;
934
+ }
935
+
936
+ /**
937
+ * @generated from message livekit.ReportInfo
938
+ */
939
+ export declare class ReportInfo extends Message<ReportInfo> {
940
+ /**
941
+ * @generated from oneof livekit.ReportInfo.message
942
+ */
943
+ message: {
944
+ /**
945
+ * @generated from field: livekit.FeatureUsageInfo feature_usage = 1;
946
+ */
947
+ value: FeatureUsageInfo;
948
+ case: "featureUsage";
949
+ } | { case: undefined; value?: undefined };
950
+
951
+ constructor(data?: PartialMessage<ReportInfo>);
952
+
953
+ static readonly runtime: typeof proto3;
954
+ static readonly typeName = "livekit.ReportInfo";
955
+ static readonly fields: FieldList;
956
+
957
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ReportInfo;
958
+
959
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ReportInfo;
960
+
961
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ReportInfo;
962
+
963
+ static equals(a: ReportInfo | PlainMessage<ReportInfo> | undefined, b: ReportInfo | PlainMessage<ReportInfo> | undefined): boolean;
964
+ }
965
+
966
+ /**
967
+ * @generated from message livekit.TimeRange
968
+ */
969
+ export declare class TimeRange extends Message<TimeRange> {
970
+ /**
971
+ * @generated from field: google.protobuf.Timestamp started_at = 1;
972
+ */
973
+ startedAt?: Timestamp;
974
+
975
+ /**
976
+ * @generated from field: google.protobuf.Timestamp ended_at = 2;
977
+ */
978
+ endedAt?: Timestamp;
979
+
980
+ constructor(data?: PartialMessage<TimeRange>);
981
+
982
+ static readonly runtime: typeof proto3;
983
+ static readonly typeName = "livekit.TimeRange";
984
+ static readonly fields: FieldList;
985
+
986
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): TimeRange;
987
+
988
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): TimeRange;
989
+
990
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): TimeRange;
991
+
992
+ static equals(a: TimeRange | PlainMessage<TimeRange> | undefined, b: TimeRange | PlainMessage<TimeRange> | undefined): boolean;
993
+ }
994
+
995
+ /**
996
+ * @generated from message livekit.FeatureUsageInfo
997
+ */
998
+ export declare class FeatureUsageInfo extends Message<FeatureUsageInfo> {
999
+ /**
1000
+ * @generated from field: livekit.FeatureUsageInfo.Feature feature = 1;
1001
+ */
1002
+ feature: FeatureUsageInfo_Feature;
1003
+
1004
+ /**
1005
+ * @generated from field: string project_id = 2;
1006
+ */
1007
+ projectId: string;
1008
+
1009
+ /**
1010
+ * @generated from field: string room_name = 3;
1011
+ */
1012
+ roomName: string;
1013
+
1014
+ /**
1015
+ * @generated from field: string room_id = 4;
1016
+ */
1017
+ roomId: string;
1018
+
1019
+ /**
1020
+ * @generated from field: string participant_identity = 5;
1021
+ */
1022
+ participantIdentity: string;
1023
+
1024
+ /**
1025
+ * @generated from field: string participant_id = 6;
1026
+ */
1027
+ participantId: string;
1028
+
1029
+ /**
1030
+ * @generated from field: string track_id = 7;
1031
+ */
1032
+ trackId: string;
1033
+
1034
+ /**
1035
+ * time ranges during which the feature was enabled.
1036
+ * for e. g., noise cancellation may not be applied when a media track is paused/muted,
1037
+ * this allows reporting only periods during which a feature is avtive.
1038
+ *
1039
+ * @generated from field: repeated livekit.TimeRange time_ranges = 8;
1040
+ */
1041
+ timeRanges: TimeRange[];
1042
+
1043
+ constructor(data?: PartialMessage<FeatureUsageInfo>);
1044
+
1045
+ static readonly runtime: typeof proto3;
1046
+ static readonly typeName = "livekit.FeatureUsageInfo";
1047
+ static readonly fields: FieldList;
1048
+
1049
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FeatureUsageInfo;
1050
+
1051
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FeatureUsageInfo;
1052
+
1053
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FeatureUsageInfo;
1054
+
1055
+ static equals(a: FeatureUsageInfo | PlainMessage<FeatureUsageInfo> | undefined, b: FeatureUsageInfo | PlainMessage<FeatureUsageInfo> | undefined): boolean;
1056
+ }
1057
+
1058
+ /**
1059
+ * @generated from enum livekit.FeatureUsageInfo.Feature
1060
+ */
1061
+ export declare enum FeatureUsageInfo_Feature {
1062
+ /**
1063
+ * @generated from enum value: KRISP_NOISE_CANCELLATION = 0;
1064
+ */
1065
+ KRISP_NOISE_CANCELLATION = 0,
1066
+
1067
+ /**
1068
+ * @generated from enum value: KRISP_BACKGROUND_VOICE_CANCELLATION = 1;
1069
+ */
1070
+ KRISP_BACKGROUND_VOICE_CANCELLATION = 1,
1071
+ }
1072
+
1073
+ /**
1074
+ * @generated from message livekit.APICallRequest
1075
+ */
1076
+ export declare class APICallRequest extends Message<APICallRequest> {
1077
+ /**
1078
+ * @generated from oneof livekit.APICallRequest.message
1079
+ */
1080
+ message: {
1081
+ /**
1082
+ * @generated from field: livekit.CreateRoomRequest create_room_request = 1;
1083
+ */
1084
+ value: CreateRoomRequest;
1085
+ case: "createRoomRequest";
1086
+ } | {
1087
+ /**
1088
+ * @generated from field: livekit.ListRoomsRequest list_rooms_request = 2;
1089
+ */
1090
+ value: ListRoomsRequest;
1091
+ case: "listRoomsRequest";
1092
+ } | {
1093
+ /**
1094
+ * @generated from field: livekit.DeleteRoomRequest delete_room_request = 3;
1095
+ */
1096
+ value: DeleteRoomRequest;
1097
+ case: "deleteRoomRequest";
1098
+ } | {
1099
+ /**
1100
+ * @generated from field: livekit.ListParticipantsRequest list_participants_request = 4;
1101
+ */
1102
+ value: ListParticipantsRequest;
1103
+ case: "listParticipantsRequest";
1104
+ } | {
1105
+ /**
1106
+ * @generated from field: livekit.RoomParticipantIdentity room_participant_identity = 5;
1107
+ */
1108
+ value: RoomParticipantIdentity;
1109
+ case: "roomParticipantIdentity";
1110
+ } | {
1111
+ /**
1112
+ * @generated from field: livekit.MuteRoomTrackRequest mute_room_track_request = 6;
1113
+ */
1114
+ value: MuteRoomTrackRequest;
1115
+ case: "muteRoomTrackRequest";
1116
+ } | {
1117
+ /**
1118
+ * @generated from field: livekit.UpdateParticipantRequest update_participant_request = 7;
1119
+ */
1120
+ value: UpdateParticipantRequest;
1121
+ case: "updateParticipantRequest";
1122
+ } | {
1123
+ /**
1124
+ * @generated from field: livekit.UpdateSubscriptionsRequest update_subscriptions_request = 8;
1125
+ */
1126
+ value: UpdateSubscriptionsRequest;
1127
+ case: "updateSubscriptionsRequest";
1128
+ } | {
1129
+ /**
1130
+ * @generated from field: livekit.SendDataRequest send_data_request = 9;
1131
+ */
1132
+ value: SendDataRequest;
1133
+ case: "sendDataRequest";
1134
+ } | {
1135
+ /**
1136
+ * @generated from field: livekit.UpdateRoomMetadataRequest update_room_metadata_request = 10;
1137
+ */
1138
+ value: UpdateRoomMetadataRequest;
1139
+ case: "updateRoomMetadataRequest";
1140
+ } | { case: undefined; value?: undefined };
1141
+
1142
+ constructor(data?: PartialMessage<APICallRequest>);
1143
+
1144
+ static readonly runtime: typeof proto3;
1145
+ static readonly typeName = "livekit.APICallRequest";
1146
+ static readonly fields: FieldList;
1147
+
1148
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): APICallRequest;
1149
+
1150
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): APICallRequest;
1151
+
1152
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): APICallRequest;
1153
+
1154
+ static equals(a: APICallRequest | PlainMessage<APICallRequest> | undefined, b: APICallRequest | PlainMessage<APICallRequest> | undefined): boolean;
1155
+ }
1156
+
1157
+ /**
1158
+ * @generated from message livekit.APICallInfo
1159
+ */
1160
+ export declare class APICallInfo extends Message<APICallInfo> {
1161
+ /**
1162
+ * @generated from field: string project_id = 1;
1163
+ */
1164
+ projectId: string;
1165
+
1166
+ /**
1167
+ * @generated from field: livekit.APICallRequest request = 2;
1168
+ */
1169
+ request?: APICallRequest;
1170
+
1171
+ /**
1172
+ * @generated from field: string service = 3;
1173
+ */
1174
+ service: string;
1175
+
1176
+ /**
1177
+ * @generated from field: string method = 4;
1178
+ */
1179
+ method: string;
1180
+
1181
+ /**
1182
+ * @generated from field: string node_id = 5;
1183
+ */
1184
+ nodeId: string;
1185
+
1186
+ /**
1187
+ * @generated from field: int32 status = 6;
1188
+ */
1189
+ status: number;
1190
+
1191
+ /**
1192
+ * @generated from field: string twirp_error_code = 7;
1193
+ */
1194
+ twirpErrorCode: string;
1195
+
1196
+ /**
1197
+ * @generated from field: string twirp_error_message = 8;
1198
+ */
1199
+ twirpErrorMessage: string;
1200
+
1201
+ /**
1202
+ * @generated from field: string room_name = 9;
1203
+ */
1204
+ roomName: string;
1205
+
1206
+ /**
1207
+ * @generated from field: string room_id = 10;
1208
+ */
1209
+ roomId: string;
1210
+
1211
+ /**
1212
+ * @generated from field: string participant_identity = 11;
1213
+ */
1214
+ participantIdentity: string;
1215
+
1216
+ /**
1217
+ * @generated from field: string participant_id = 12;
1218
+ */
1219
+ participantId: string;
1220
+
1221
+ /**
1222
+ * @generated from field: string track_id = 13;
1223
+ */
1224
+ trackId: string;
1225
+
1226
+ /**
1227
+ * @generated from field: google.protobuf.Timestamp started_at = 14;
1228
+ */
1229
+ startedAt?: Timestamp;
1230
+
1231
+ /**
1232
+ * @generated from field: int64 duration_ns = 15;
1233
+ */
1234
+ durationNs: bigint;
1235
+
1236
+ constructor(data?: PartialMessage<APICallInfo>);
1237
+
1238
+ static readonly runtime: typeof proto3;
1239
+ static readonly typeName = "livekit.APICallInfo";
1240
+ static readonly fields: FieldList;
1241
+
1242
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): APICallInfo;
1243
+
1244
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): APICallInfo;
1245
+
1246
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): APICallInfo;
1247
+
1248
+ static equals(a: APICallInfo | PlainMessage<APICallInfo> | undefined, b: APICallInfo | PlainMessage<APICallInfo> | undefined): boolean;
1249
+ }
1250
+
1251
+ /**
1252
+ * @generated from message livekit.WebhookInfo
1253
+ */
1254
+ export declare class WebhookInfo extends Message<WebhookInfo> {
1255
+ /**
1256
+ * @generated from field: string event_id = 1;
1257
+ */
1258
+ eventId: string;
1259
+
1260
+ /**
1261
+ * @generated from field: string event = 2;
1262
+ */
1263
+ event: string;
1264
+
1265
+ /**
1266
+ * @generated from field: string project_id = 3;
1267
+ */
1268
+ projectId: string;
1269
+
1270
+ /**
1271
+ * @generated from field: string room_name = 4;
1272
+ */
1273
+ roomName: string;
1274
+
1275
+ /**
1276
+ * @generated from field: string room_id = 5;
1277
+ */
1278
+ roomId: string;
1279
+
1280
+ /**
1281
+ * @generated from field: string participant_identity = 6;
1282
+ */
1283
+ participantIdentity: string;
1284
+
1285
+ /**
1286
+ * @generated from field: string participant_id = 7;
1287
+ */
1288
+ participantId: string;
1289
+
1290
+ /**
1291
+ * @generated from field: string track_id = 8;
1292
+ */
1293
+ trackId: string;
1294
+
1295
+ /**
1296
+ * @generated from field: string egress_id = 9;
1297
+ */
1298
+ egressId: string;
1299
+
1300
+ /**
1301
+ * @generated from field: string ingress_id = 10;
1302
+ */
1303
+ ingressId: string;
1304
+
1305
+ /**
1306
+ * @generated from field: google.protobuf.Timestamp created_at = 11;
1307
+ */
1308
+ createdAt?: Timestamp;
1309
+
1310
+ /**
1311
+ * @generated from field: google.protobuf.Timestamp queued_at = 12;
1312
+ */
1313
+ queuedAt?: Timestamp;
1314
+
1315
+ /**
1316
+ * @generated from field: int64 queue_duration_ns = 13;
1317
+ */
1318
+ queueDurationNs: bigint;
1319
+
1320
+ /**
1321
+ * @generated from field: google.protobuf.Timestamp sent_at = 14;
1322
+ */
1323
+ sentAt?: Timestamp;
1324
+
1325
+ /**
1326
+ * @generated from field: int64 send_duration_ns = 15;
1327
+ */
1328
+ sendDurationNs: bigint;
1329
+
1330
+ /**
1331
+ * @generated from field: string url = 16;
1332
+ */
1333
+ url: string;
1334
+
1335
+ /**
1336
+ * @generated from field: int32 num_dropped = 17;
1337
+ */
1338
+ numDropped: number;
1339
+
1340
+ /**
1341
+ * @generated from field: bool is_dropped = 18;
1342
+ */
1343
+ isDropped: boolean;
1344
+
1345
+ /**
1346
+ * @generated from field: string service_status = 19;
1347
+ */
1348
+ serviceStatus: string;
1349
+
1350
+ /**
1351
+ * @generated from field: int32 service_error_code = 20;
1352
+ */
1353
+ serviceErrorCode: number;
1354
+
1355
+ /**
1356
+ * @generated from field: string service_error = 21;
1357
+ */
1358
+ serviceError: string;
1359
+
1360
+ /**
1361
+ * @generated from field: string send_error = 22;
1362
+ */
1363
+ sendError: string;
1364
+
1365
+ constructor(data?: PartialMessage<WebhookInfo>);
1366
+
1367
+ static readonly runtime: typeof proto3;
1368
+ static readonly typeName = "livekit.WebhookInfo";
1369
+ static readonly fields: FieldList;
1370
+
1371
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): WebhookInfo;
1372
+
1373
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): WebhookInfo;
1374
+
1375
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): WebhookInfo;
1376
+
1377
+ static equals(a: WebhookInfo | PlainMessage<WebhookInfo> | undefined, b: WebhookInfo | PlainMessage<WebhookInfo> | undefined): boolean;
1378
+ }
1379
+