@livekit/rtc-node 0.13.3 → 0.13.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/data_streams/index.cjs +25 -0
- package/dist/data_streams/index.cjs.map +1 -0
- package/dist/data_streams/index.d.cts +11 -0
- package/dist/data_streams/index.d.ts +11 -0
- package/dist/data_streams/index.d.ts.map +1 -0
- package/dist/data_streams/index.js +3 -0
- package/dist/data_streams/index.js.map +1 -0
- package/dist/data_streams/stream_reader.cjs +145 -0
- package/dist/data_streams/stream_reader.cjs.map +1 -0
- package/dist/data_streams/stream_reader.d.cts +10 -0
- package/dist/data_streams/stream_reader.d.ts +10 -0
- package/dist/data_streams/stream_reader.d.ts.map +1 -0
- package/dist/data_streams/stream_reader.js +120 -0
- package/dist/data_streams/stream_reader.js.map +1 -0
- package/dist/data_streams/stream_writer.cjs +51 -0
- package/dist/data_streams/stream_writer.cjs.map +1 -0
- package/dist/data_streams/stream_writer.d.cts +26 -0
- package/dist/data_streams/stream_writer.d.ts +26 -0
- package/dist/data_streams/stream_writer.d.ts.map +1 -0
- package/dist/data_streams/stream_writer.js +26 -0
- package/dist/data_streams/stream_writer.js.map +1 -0
- package/dist/data_streams/types.cjs +17 -0
- package/dist/data_streams/types.cjs.map +1 -0
- package/dist/data_streams/types.d.cts +10 -0
- package/dist/data_streams/types.d.ts +10 -0
- package/dist/data_streams/types.d.ts.map +1 -0
- package/dist/data_streams/types.js +1 -0
- package/dist/data_streams/types.js.map +1 -0
- package/dist/index.cjs +7 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/log.cjs +42 -0
- package/dist/log.cjs.map +1 -0
- package/dist/log.d.cts +7 -0
- package/dist/log.d.ts +7 -0
- package/dist/log.d.ts.map +1 -0
- package/dist/log.js +18 -0
- package/dist/log.js.map +1 -0
- package/dist/napi/native.d.cjs.map +1 -1
- package/dist/napi/native.d.ts +5 -5
- package/dist/native.d.ts +5 -5
- package/dist/participant.cjs +260 -16
- package/dist/participant.cjs.map +1 -1
- package/dist/participant.d.cts +40 -6
- package/dist/participant.d.ts +40 -6
- package/dist/participant.d.ts.map +1 -1
- package/dist/participant.js +263 -5
- package/dist/participant.js.map +1 -1
- package/dist/proto/ffi_pb.cjs +14 -3
- package/dist/proto/ffi_pb.cjs.map +1 -1
- package/dist/proto/ffi_pb.d.cts +81 -7
- package/dist/proto/ffi_pb.d.ts +81 -7
- package/dist/proto/ffi_pb.d.ts.map +1 -1
- package/dist/proto/ffi_pb.js +15 -4
- package/dist/proto/ffi_pb.js.map +1 -1
- package/dist/proto/room_pb.cjs +488 -30
- package/dist/proto/room_pb.cjs.map +1 -1
- package/dist/proto/room_pb.d.cts +412 -50
- package/dist/proto/room_pb.d.ts +412 -50
- package/dist/proto/room_pb.d.ts.map +1 -1
- package/dist/proto/room_pb.js +471 -29
- package/dist/proto/room_pb.js.map +1 -1
- package/dist/proto/video_frame_pb.cjs.map +1 -1
- package/dist/proto/video_frame_pb.d.cts +3 -0
- package/dist/proto/video_frame_pb.d.ts +3 -0
- package/dist/proto/video_frame_pb.d.ts.map +1 -1
- package/dist/proto/video_frame_pb.js.map +1 -1
- package/dist/room.cjs +121 -0
- package/dist/room.cjs.map +1 -1
- package/dist/room.d.cts +17 -2
- package/dist/room.d.ts +17 -2
- package/dist/room.d.ts.map +1 -1
- package/dist/room.js +122 -0
- package/dist/room.js.map +1 -1
- package/dist/types-BWsKf9LP.d.cts +93 -0
- package/dist/types-Ca3IVRvo.d.ts +93 -0
- package/dist/utils.cjs +51 -0
- package/dist/utils.cjs.map +1 -0
- package/dist/utils.d.cts +7 -0
- package/dist/utils.d.ts +7 -0
- package/dist/utils.d.ts.map +1 -0
- package/dist/utils.js +25 -0
- package/dist/utils.js.map +1 -0
- package/dist/version.cjs +1 -1
- package/dist/version.cjs.map +1 -1
- package/dist/version.d.cts +1 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/dist/version.js.map +1 -1
- package/dist/video_frame.cjs +2 -0
- package/dist/video_frame.cjs.map +1 -1
- package/dist/video_frame.d.ts.map +1 -1
- package/dist/video_frame.js +2 -0
- package/dist/video_frame.js.map +1 -1
- package/package.json +9 -7
- package/src/data_streams/index.ts +7 -0
- package/src/data_streams/stream_reader.ts +166 -0
- package/src/data_streams/stream_writer.ts +36 -0
- package/src/data_streams/types.ts +61 -0
- package/src/index.ts +1 -0
- package/src/log.ts +25 -0
- package/src/napi/native.d.ts +5 -5
- package/src/participant.ts +351 -29
- package/src/proto/ffi_pb.ts +86 -1
- package/src/proto/room_pb.ts +788 -68
- package/src/proto/video_frame_pb.ts +3 -0
- package/src/room.ts +141 -0
- package/src/utils.ts +33 -0
- package/src/version.ts +1 -1
- package/src/video_frame.ts +2 -0
package/dist/proto/room_pb.d.cts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { Message, PartialMessage, proto2, FieldList, BinaryReadOptions, JsonValue, JsonReadOptions, PlainMessage } from '@bufbuild/protobuf';
|
|
2
2
|
import { OwnedParticipant, DisconnectReason } from './participant_pb.cjs';
|
|
3
|
-
import { OwnedTrackPublication,
|
|
3
|
+
import { OwnedTrackPublication, OwnedTrack, TrackSource } from './track_pb.cjs';
|
|
4
4
|
import { RtcStats } from './stats_pb.cjs';
|
|
5
5
|
import { VideoCodec } from './video_frame_pb.cjs';
|
|
6
|
-
import {
|
|
6
|
+
import { EncryptionState, E2eeOptions } from './e2ee_pb.cjs';
|
|
7
7
|
import { FfiOwnedHandle } from './handle_pb.cjs';
|
|
8
8
|
|
|
9
9
|
/**
|
|
@@ -1520,16 +1520,28 @@ declare class RoomEvent extends Message<RoomEvent> {
|
|
|
1520
1520
|
case: "chatMessage";
|
|
1521
1521
|
} | {
|
|
1522
1522
|
/**
|
|
1523
|
-
* @generated from field: livekit.proto.
|
|
1523
|
+
* @generated from field: livekit.proto.DataStreamHeaderReceived stream_header_received = 30;
|
|
1524
1524
|
*/
|
|
1525
|
-
value:
|
|
1526
|
-
case: "
|
|
1525
|
+
value: DataStreamHeaderReceived;
|
|
1526
|
+
case: "streamHeaderReceived";
|
|
1527
1527
|
} | {
|
|
1528
1528
|
/**
|
|
1529
|
-
* @generated from field: livekit.proto.
|
|
1529
|
+
* @generated from field: livekit.proto.DataStreamChunkReceived stream_chunk_received = 31;
|
|
1530
1530
|
*/
|
|
1531
|
-
value:
|
|
1532
|
-
case: "
|
|
1531
|
+
value: DataStreamChunkReceived;
|
|
1532
|
+
case: "streamChunkReceived";
|
|
1533
|
+
} | {
|
|
1534
|
+
/**
|
|
1535
|
+
* @generated from field: livekit.proto.DataStreamTrailerReceived stream_trailer_received = 32;
|
|
1536
|
+
*/
|
|
1537
|
+
value: DataStreamTrailerReceived;
|
|
1538
|
+
case: "streamTrailerReceived";
|
|
1539
|
+
} | {
|
|
1540
|
+
/**
|
|
1541
|
+
* @generated from field: livekit.proto.DataChannelBufferedAmountLowThresholdChanged data_channel_low_threshold_changed = 33;
|
|
1542
|
+
*/
|
|
1543
|
+
value: DataChannelBufferedAmountLowThresholdChanged;
|
|
1544
|
+
case: "dataChannelLowThresholdChanged";
|
|
1533
1545
|
} | {
|
|
1534
1546
|
case: undefined;
|
|
1535
1547
|
value?: undefined;
|
|
@@ -1559,6 +1571,14 @@ declare class RoomInfo extends Message<RoomInfo> {
|
|
|
1559
1571
|
* @generated from field: required string metadata = 3;
|
|
1560
1572
|
*/
|
|
1561
1573
|
metadata?: string;
|
|
1574
|
+
/**
|
|
1575
|
+
* @generated from field: required uint64 lossy_dc_buffered_amount_low_threshold = 4;
|
|
1576
|
+
*/
|
|
1577
|
+
lossyDcBufferedAmountLowThreshold?: bigint;
|
|
1578
|
+
/**
|
|
1579
|
+
* @generated from field: required uint64 reliable_dc_buffered_amount_low_threshold = 5;
|
|
1580
|
+
*/
|
|
1581
|
+
reliableDcBufferedAmountLowThreshold?: bigint;
|
|
1562
1582
|
constructor(data?: PartialMessage<RoomInfo>);
|
|
1563
1583
|
static readonly runtime: typeof proto2;
|
|
1564
1584
|
static readonly typeName = "livekit.proto.RoomInfo";
|
|
@@ -2297,13 +2317,13 @@ declare class DataStream_TextHeader extends Message<DataStream_TextHeader> {
|
|
|
2297
2317
|
/**
|
|
2298
2318
|
* Optional: Version for updates/edits
|
|
2299
2319
|
*
|
|
2300
|
-
* @generated from field:
|
|
2320
|
+
* @generated from field: optional int32 version = 2;
|
|
2301
2321
|
*/
|
|
2302
2322
|
version?: number;
|
|
2303
2323
|
/**
|
|
2304
2324
|
* Optional: Reply to specific message
|
|
2305
2325
|
*
|
|
2306
|
-
* @generated from field:
|
|
2326
|
+
* @generated from field: optional string reply_to_stream_id = 3;
|
|
2307
2327
|
*/
|
|
2308
2328
|
replyToStreamId?: string;
|
|
2309
2329
|
/**
|
|
@@ -2315,7 +2335,7 @@ declare class DataStream_TextHeader extends Message<DataStream_TextHeader> {
|
|
|
2315
2335
|
/**
|
|
2316
2336
|
* true if the text has been generated by an agent from a participant's audio transcription
|
|
2317
2337
|
*
|
|
2318
|
-
* @generated from field:
|
|
2338
|
+
* @generated from field: optional bool generated = 5;
|
|
2319
2339
|
*/
|
|
2320
2340
|
generated?: boolean;
|
|
2321
2341
|
constructor(data?: PartialMessage<DataStream_TextHeader>);
|
|
@@ -2328,25 +2348,23 @@ declare class DataStream_TextHeader extends Message<DataStream_TextHeader> {
|
|
|
2328
2348
|
static equals(a: DataStream_TextHeader | PlainMessage<DataStream_TextHeader> | undefined, b: DataStream_TextHeader | PlainMessage<DataStream_TextHeader> | undefined): boolean;
|
|
2329
2349
|
}
|
|
2330
2350
|
/**
|
|
2331
|
-
* header properties specific to
|
|
2351
|
+
* header properties specific to byte or file streams
|
|
2332
2352
|
*
|
|
2333
|
-
* @generated from message livekit.proto.DataStream.
|
|
2353
|
+
* @generated from message livekit.proto.DataStream.ByteHeader
|
|
2334
2354
|
*/
|
|
2335
|
-
declare class
|
|
2355
|
+
declare class DataStream_ByteHeader extends Message<DataStream_ByteHeader> {
|
|
2336
2356
|
/**
|
|
2337
|
-
* name
|
|
2338
|
-
*
|
|
2339
|
-
* @generated from field: required string file_name = 1;
|
|
2357
|
+
* @generated from field: required string name = 1;
|
|
2340
2358
|
*/
|
|
2341
|
-
|
|
2342
|
-
constructor(data?: PartialMessage<
|
|
2359
|
+
name?: string;
|
|
2360
|
+
constructor(data?: PartialMessage<DataStream_ByteHeader>);
|
|
2343
2361
|
static readonly runtime: typeof proto2;
|
|
2344
|
-
static readonly typeName = "livekit.proto.DataStream.
|
|
2362
|
+
static readonly typeName = "livekit.proto.DataStream.ByteHeader";
|
|
2345
2363
|
static readonly fields: FieldList;
|
|
2346
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
2347
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
2348
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
2349
|
-
static equals(a:
|
|
2364
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DataStream_ByteHeader;
|
|
2365
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DataStream_ByteHeader;
|
|
2366
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DataStream_ByteHeader;
|
|
2367
|
+
static equals(a: DataStream_ByteHeader | PlainMessage<DataStream_ByteHeader> | undefined, b: DataStream_ByteHeader | PlainMessage<DataStream_ByteHeader> | undefined): boolean;
|
|
2350
2368
|
}
|
|
2351
2369
|
/**
|
|
2352
2370
|
* main DataStream.Header that contains a oneof for specific headers
|
|
@@ -2367,13 +2385,13 @@ declare class DataStream_Header extends Message<DataStream_Header> {
|
|
|
2367
2385
|
*/
|
|
2368
2386
|
timestamp?: bigint;
|
|
2369
2387
|
/**
|
|
2370
|
-
* @generated from field: required string
|
|
2388
|
+
* @generated from field: required string mime_type = 3;
|
|
2371
2389
|
*/
|
|
2372
|
-
|
|
2390
|
+
mimeType?: string;
|
|
2373
2391
|
/**
|
|
2374
|
-
* @generated from field: required string
|
|
2392
|
+
* @generated from field: required string topic = 4;
|
|
2375
2393
|
*/
|
|
2376
|
-
|
|
2394
|
+
topic?: string;
|
|
2377
2395
|
/**
|
|
2378
2396
|
* only populated for finite streams, if it's a stream of unknown size this stays empty
|
|
2379
2397
|
*
|
|
@@ -2381,17 +2399,11 @@ declare class DataStream_Header extends Message<DataStream_Header> {
|
|
|
2381
2399
|
*/
|
|
2382
2400
|
totalLength?: bigint;
|
|
2383
2401
|
/**
|
|
2384
|
-
*
|
|
2402
|
+
* user defined attributes map that can carry additional info
|
|
2385
2403
|
*
|
|
2386
|
-
* @generated from field:
|
|
2404
|
+
* @generated from field: map<string, string> attributes = 6;
|
|
2387
2405
|
*/
|
|
2388
|
-
|
|
2389
|
-
/**
|
|
2390
|
-
* user defined extensions map that can carry additional info
|
|
2391
|
-
*
|
|
2392
|
-
* @generated from field: map<string, string> extensions = 7;
|
|
2393
|
-
*/
|
|
2394
|
-
extensions: {
|
|
2406
|
+
attributes: {
|
|
2395
2407
|
[key: string]: string;
|
|
2396
2408
|
};
|
|
2397
2409
|
/**
|
|
@@ -2401,16 +2413,16 @@ declare class DataStream_Header extends Message<DataStream_Header> {
|
|
|
2401
2413
|
*/
|
|
2402
2414
|
contentHeader: {
|
|
2403
2415
|
/**
|
|
2404
|
-
* @generated from field: livekit.proto.DataStream.TextHeader text_header =
|
|
2416
|
+
* @generated from field: livekit.proto.DataStream.TextHeader text_header = 7;
|
|
2405
2417
|
*/
|
|
2406
2418
|
value: DataStream_TextHeader;
|
|
2407
2419
|
case: "textHeader";
|
|
2408
2420
|
} | {
|
|
2409
2421
|
/**
|
|
2410
|
-
* @generated from field: livekit.proto.DataStream.
|
|
2422
|
+
* @generated from field: livekit.proto.DataStream.ByteHeader byte_header = 8;
|
|
2411
2423
|
*/
|
|
2412
|
-
value:
|
|
2413
|
-
case: "
|
|
2424
|
+
value: DataStream_ByteHeader;
|
|
2425
|
+
case: "byteHeader";
|
|
2414
2426
|
} | {
|
|
2415
2427
|
case: undefined;
|
|
2416
2428
|
value?: undefined;
|
|
@@ -2444,22 +2456,16 @@ declare class DataStream_Chunk extends Message<DataStream_Chunk> {
|
|
|
2444
2456
|
* @generated from field: required bytes content = 3;
|
|
2445
2457
|
*/
|
|
2446
2458
|
content?: Uint8Array;
|
|
2447
|
-
/**
|
|
2448
|
-
* true only if this is the last chunk of this stream - can also be sent with empty content
|
|
2449
|
-
*
|
|
2450
|
-
* @generated from field: required bool complete = 4;
|
|
2451
|
-
*/
|
|
2452
|
-
complete?: boolean;
|
|
2453
2459
|
/**
|
|
2454
2460
|
* a version indicating that this chunk_index has been retroactively modified and the original one needs to be replaced
|
|
2455
2461
|
*
|
|
2456
|
-
* @generated from field:
|
|
2462
|
+
* @generated from field: optional int32 version = 4;
|
|
2457
2463
|
*/
|
|
2458
2464
|
version?: number;
|
|
2459
2465
|
/**
|
|
2460
2466
|
* optional, initialization vector for AES-GCM encryption
|
|
2461
2467
|
*
|
|
2462
|
-
* @generated from field: optional bytes iv =
|
|
2468
|
+
* @generated from field: optional bytes iv = 5;
|
|
2463
2469
|
*/
|
|
2464
2470
|
iv?: Uint8Array;
|
|
2465
2471
|
constructor(data?: PartialMessage<DataStream_Chunk>);
|
|
@@ -2471,5 +2477,361 @@ declare class DataStream_Chunk extends Message<DataStream_Chunk> {
|
|
|
2471
2477
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DataStream_Chunk;
|
|
2472
2478
|
static equals(a: DataStream_Chunk | PlainMessage<DataStream_Chunk> | undefined, b: DataStream_Chunk | PlainMessage<DataStream_Chunk> | undefined): boolean;
|
|
2473
2479
|
}
|
|
2480
|
+
/**
|
|
2481
|
+
* @generated from message livekit.proto.DataStream.Trailer
|
|
2482
|
+
*/
|
|
2483
|
+
declare class DataStream_Trailer extends Message<DataStream_Trailer> {
|
|
2484
|
+
/**
|
|
2485
|
+
* unique identifier for this data stream
|
|
2486
|
+
*
|
|
2487
|
+
* @generated from field: required string stream_id = 1;
|
|
2488
|
+
*/
|
|
2489
|
+
streamId?: string;
|
|
2490
|
+
/**
|
|
2491
|
+
* reason why the stream was closed (could contain "error" / "interrupted" / empty for expected end)
|
|
2492
|
+
*
|
|
2493
|
+
* @generated from field: required string reason = 2;
|
|
2494
|
+
*/
|
|
2495
|
+
reason?: string;
|
|
2496
|
+
/**
|
|
2497
|
+
* finalizing updates for the stream, can also include additional insights for errors or endTime for transcription
|
|
2498
|
+
*
|
|
2499
|
+
* @generated from field: map<string, string> attributes = 3;
|
|
2500
|
+
*/
|
|
2501
|
+
attributes: {
|
|
2502
|
+
[key: string]: string;
|
|
2503
|
+
};
|
|
2504
|
+
constructor(data?: PartialMessage<DataStream_Trailer>);
|
|
2505
|
+
static readonly runtime: typeof proto2;
|
|
2506
|
+
static readonly typeName = "livekit.proto.DataStream.Trailer";
|
|
2507
|
+
static readonly fields: FieldList;
|
|
2508
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DataStream_Trailer;
|
|
2509
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DataStream_Trailer;
|
|
2510
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DataStream_Trailer;
|
|
2511
|
+
static equals(a: DataStream_Trailer | PlainMessage<DataStream_Trailer> | undefined, b: DataStream_Trailer | PlainMessage<DataStream_Trailer> | undefined): boolean;
|
|
2512
|
+
}
|
|
2513
|
+
/**
|
|
2514
|
+
* @generated from message livekit.proto.DataStreamHeaderReceived
|
|
2515
|
+
*/
|
|
2516
|
+
declare class DataStreamHeaderReceived extends Message<DataStreamHeaderReceived> {
|
|
2517
|
+
/**
|
|
2518
|
+
* @generated from field: required string participant_identity = 1;
|
|
2519
|
+
*/
|
|
2520
|
+
participantIdentity?: string;
|
|
2521
|
+
/**
|
|
2522
|
+
* @generated from field: required livekit.proto.DataStream.Header header = 2;
|
|
2523
|
+
*/
|
|
2524
|
+
header?: DataStream_Header;
|
|
2525
|
+
constructor(data?: PartialMessage<DataStreamHeaderReceived>);
|
|
2526
|
+
static readonly runtime: typeof proto2;
|
|
2527
|
+
static readonly typeName = "livekit.proto.DataStreamHeaderReceived";
|
|
2528
|
+
static readonly fields: FieldList;
|
|
2529
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DataStreamHeaderReceived;
|
|
2530
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DataStreamHeaderReceived;
|
|
2531
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DataStreamHeaderReceived;
|
|
2532
|
+
static equals(a: DataStreamHeaderReceived | PlainMessage<DataStreamHeaderReceived> | undefined, b: DataStreamHeaderReceived | PlainMessage<DataStreamHeaderReceived> | undefined): boolean;
|
|
2533
|
+
}
|
|
2534
|
+
/**
|
|
2535
|
+
* @generated from message livekit.proto.DataStreamChunkReceived
|
|
2536
|
+
*/
|
|
2537
|
+
declare class DataStreamChunkReceived extends Message<DataStreamChunkReceived> {
|
|
2538
|
+
/**
|
|
2539
|
+
* @generated from field: required string participant_identity = 1;
|
|
2540
|
+
*/
|
|
2541
|
+
participantIdentity?: string;
|
|
2542
|
+
/**
|
|
2543
|
+
* @generated from field: required livekit.proto.DataStream.Chunk chunk = 2;
|
|
2544
|
+
*/
|
|
2545
|
+
chunk?: DataStream_Chunk;
|
|
2546
|
+
constructor(data?: PartialMessage<DataStreamChunkReceived>);
|
|
2547
|
+
static readonly runtime: typeof proto2;
|
|
2548
|
+
static readonly typeName = "livekit.proto.DataStreamChunkReceived";
|
|
2549
|
+
static readonly fields: FieldList;
|
|
2550
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DataStreamChunkReceived;
|
|
2551
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DataStreamChunkReceived;
|
|
2552
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DataStreamChunkReceived;
|
|
2553
|
+
static equals(a: DataStreamChunkReceived | PlainMessage<DataStreamChunkReceived> | undefined, b: DataStreamChunkReceived | PlainMessage<DataStreamChunkReceived> | undefined): boolean;
|
|
2554
|
+
}
|
|
2555
|
+
/**
|
|
2556
|
+
* @generated from message livekit.proto.DataStreamTrailerReceived
|
|
2557
|
+
*/
|
|
2558
|
+
declare class DataStreamTrailerReceived extends Message<DataStreamTrailerReceived> {
|
|
2559
|
+
/**
|
|
2560
|
+
* @generated from field: required string participant_identity = 1;
|
|
2561
|
+
*/
|
|
2562
|
+
participantIdentity?: string;
|
|
2563
|
+
/**
|
|
2564
|
+
* @generated from field: required livekit.proto.DataStream.Trailer trailer = 2;
|
|
2565
|
+
*/
|
|
2566
|
+
trailer?: DataStream_Trailer;
|
|
2567
|
+
constructor(data?: PartialMessage<DataStreamTrailerReceived>);
|
|
2568
|
+
static readonly runtime: typeof proto2;
|
|
2569
|
+
static readonly typeName = "livekit.proto.DataStreamTrailerReceived";
|
|
2570
|
+
static readonly fields: FieldList;
|
|
2571
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DataStreamTrailerReceived;
|
|
2572
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DataStreamTrailerReceived;
|
|
2573
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DataStreamTrailerReceived;
|
|
2574
|
+
static equals(a: DataStreamTrailerReceived | PlainMessage<DataStreamTrailerReceived> | undefined, b: DataStreamTrailerReceived | PlainMessage<DataStreamTrailerReceived> | undefined): boolean;
|
|
2575
|
+
}
|
|
2576
|
+
/**
|
|
2577
|
+
* @generated from message livekit.proto.SendStreamHeaderRequest
|
|
2578
|
+
*/
|
|
2579
|
+
declare class SendStreamHeaderRequest extends Message<SendStreamHeaderRequest> {
|
|
2580
|
+
/**
|
|
2581
|
+
* @generated from field: required uint64 local_participant_handle = 1;
|
|
2582
|
+
*/
|
|
2583
|
+
localParticipantHandle?: bigint;
|
|
2584
|
+
/**
|
|
2585
|
+
* @generated from field: required livekit.proto.DataStream.Header header = 2;
|
|
2586
|
+
*/
|
|
2587
|
+
header?: DataStream_Header;
|
|
2588
|
+
/**
|
|
2589
|
+
* @generated from field: repeated string destination_identities = 3;
|
|
2590
|
+
*/
|
|
2591
|
+
destinationIdentities: string[];
|
|
2592
|
+
/**
|
|
2593
|
+
* @generated from field: required string sender_identity = 4;
|
|
2594
|
+
*/
|
|
2595
|
+
senderIdentity?: string;
|
|
2596
|
+
constructor(data?: PartialMessage<SendStreamHeaderRequest>);
|
|
2597
|
+
static readonly runtime: typeof proto2;
|
|
2598
|
+
static readonly typeName = "livekit.proto.SendStreamHeaderRequest";
|
|
2599
|
+
static readonly fields: FieldList;
|
|
2600
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SendStreamHeaderRequest;
|
|
2601
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SendStreamHeaderRequest;
|
|
2602
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SendStreamHeaderRequest;
|
|
2603
|
+
static equals(a: SendStreamHeaderRequest | PlainMessage<SendStreamHeaderRequest> | undefined, b: SendStreamHeaderRequest | PlainMessage<SendStreamHeaderRequest> | undefined): boolean;
|
|
2604
|
+
}
|
|
2605
|
+
/**
|
|
2606
|
+
* @generated from message livekit.proto.SendStreamChunkRequest
|
|
2607
|
+
*/
|
|
2608
|
+
declare class SendStreamChunkRequest extends Message<SendStreamChunkRequest> {
|
|
2609
|
+
/**
|
|
2610
|
+
* @generated from field: required uint64 local_participant_handle = 1;
|
|
2611
|
+
*/
|
|
2612
|
+
localParticipantHandle?: bigint;
|
|
2613
|
+
/**
|
|
2614
|
+
* @generated from field: required livekit.proto.DataStream.Chunk chunk = 2;
|
|
2615
|
+
*/
|
|
2616
|
+
chunk?: DataStream_Chunk;
|
|
2617
|
+
/**
|
|
2618
|
+
* @generated from field: repeated string destination_identities = 3;
|
|
2619
|
+
*/
|
|
2620
|
+
destinationIdentities: string[];
|
|
2621
|
+
/**
|
|
2622
|
+
* @generated from field: required string sender_identity = 4;
|
|
2623
|
+
*/
|
|
2624
|
+
senderIdentity?: string;
|
|
2625
|
+
constructor(data?: PartialMessage<SendStreamChunkRequest>);
|
|
2626
|
+
static readonly runtime: typeof proto2;
|
|
2627
|
+
static readonly typeName = "livekit.proto.SendStreamChunkRequest";
|
|
2628
|
+
static readonly fields: FieldList;
|
|
2629
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SendStreamChunkRequest;
|
|
2630
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SendStreamChunkRequest;
|
|
2631
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SendStreamChunkRequest;
|
|
2632
|
+
static equals(a: SendStreamChunkRequest | PlainMessage<SendStreamChunkRequest> | undefined, b: SendStreamChunkRequest | PlainMessage<SendStreamChunkRequest> | undefined): boolean;
|
|
2633
|
+
}
|
|
2634
|
+
/**
|
|
2635
|
+
* @generated from message livekit.proto.SendStreamTrailerRequest
|
|
2636
|
+
*/
|
|
2637
|
+
declare class SendStreamTrailerRequest extends Message<SendStreamTrailerRequest> {
|
|
2638
|
+
/**
|
|
2639
|
+
* @generated from field: required uint64 local_participant_handle = 1;
|
|
2640
|
+
*/
|
|
2641
|
+
localParticipantHandle?: bigint;
|
|
2642
|
+
/**
|
|
2643
|
+
* @generated from field: required livekit.proto.DataStream.Trailer trailer = 2;
|
|
2644
|
+
*/
|
|
2645
|
+
trailer?: DataStream_Trailer;
|
|
2646
|
+
/**
|
|
2647
|
+
* @generated from field: repeated string destination_identities = 3;
|
|
2648
|
+
*/
|
|
2649
|
+
destinationIdentities: string[];
|
|
2650
|
+
/**
|
|
2651
|
+
* @generated from field: required string sender_identity = 4;
|
|
2652
|
+
*/
|
|
2653
|
+
senderIdentity?: string;
|
|
2654
|
+
constructor(data?: PartialMessage<SendStreamTrailerRequest>);
|
|
2655
|
+
static readonly runtime: typeof proto2;
|
|
2656
|
+
static readonly typeName = "livekit.proto.SendStreamTrailerRequest";
|
|
2657
|
+
static readonly fields: FieldList;
|
|
2658
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SendStreamTrailerRequest;
|
|
2659
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SendStreamTrailerRequest;
|
|
2660
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SendStreamTrailerRequest;
|
|
2661
|
+
static equals(a: SendStreamTrailerRequest | PlainMessage<SendStreamTrailerRequest> | undefined, b: SendStreamTrailerRequest | PlainMessage<SendStreamTrailerRequest> | undefined): boolean;
|
|
2662
|
+
}
|
|
2663
|
+
/**
|
|
2664
|
+
* @generated from message livekit.proto.SendStreamHeaderResponse
|
|
2665
|
+
*/
|
|
2666
|
+
declare class SendStreamHeaderResponse extends Message<SendStreamHeaderResponse> {
|
|
2667
|
+
/**
|
|
2668
|
+
* @generated from field: required uint64 async_id = 1;
|
|
2669
|
+
*/
|
|
2670
|
+
asyncId?: bigint;
|
|
2671
|
+
constructor(data?: PartialMessage<SendStreamHeaderResponse>);
|
|
2672
|
+
static readonly runtime: typeof proto2;
|
|
2673
|
+
static readonly typeName = "livekit.proto.SendStreamHeaderResponse";
|
|
2674
|
+
static readonly fields: FieldList;
|
|
2675
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SendStreamHeaderResponse;
|
|
2676
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SendStreamHeaderResponse;
|
|
2677
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SendStreamHeaderResponse;
|
|
2678
|
+
static equals(a: SendStreamHeaderResponse | PlainMessage<SendStreamHeaderResponse> | undefined, b: SendStreamHeaderResponse | PlainMessage<SendStreamHeaderResponse> | undefined): boolean;
|
|
2679
|
+
}
|
|
2680
|
+
/**
|
|
2681
|
+
* @generated from message livekit.proto.SendStreamChunkResponse
|
|
2682
|
+
*/
|
|
2683
|
+
declare class SendStreamChunkResponse extends Message<SendStreamChunkResponse> {
|
|
2684
|
+
/**
|
|
2685
|
+
* @generated from field: required uint64 async_id = 1;
|
|
2686
|
+
*/
|
|
2687
|
+
asyncId?: bigint;
|
|
2688
|
+
constructor(data?: PartialMessage<SendStreamChunkResponse>);
|
|
2689
|
+
static readonly runtime: typeof proto2;
|
|
2690
|
+
static readonly typeName = "livekit.proto.SendStreamChunkResponse";
|
|
2691
|
+
static readonly fields: FieldList;
|
|
2692
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SendStreamChunkResponse;
|
|
2693
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SendStreamChunkResponse;
|
|
2694
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SendStreamChunkResponse;
|
|
2695
|
+
static equals(a: SendStreamChunkResponse | PlainMessage<SendStreamChunkResponse> | undefined, b: SendStreamChunkResponse | PlainMessage<SendStreamChunkResponse> | undefined): boolean;
|
|
2696
|
+
}
|
|
2697
|
+
/**
|
|
2698
|
+
* @generated from message livekit.proto.SendStreamTrailerResponse
|
|
2699
|
+
*/
|
|
2700
|
+
declare class SendStreamTrailerResponse extends Message<SendStreamTrailerResponse> {
|
|
2701
|
+
/**
|
|
2702
|
+
* @generated from field: required uint64 async_id = 1;
|
|
2703
|
+
*/
|
|
2704
|
+
asyncId?: bigint;
|
|
2705
|
+
constructor(data?: PartialMessage<SendStreamTrailerResponse>);
|
|
2706
|
+
static readonly runtime: typeof proto2;
|
|
2707
|
+
static readonly typeName = "livekit.proto.SendStreamTrailerResponse";
|
|
2708
|
+
static readonly fields: FieldList;
|
|
2709
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SendStreamTrailerResponse;
|
|
2710
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SendStreamTrailerResponse;
|
|
2711
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SendStreamTrailerResponse;
|
|
2712
|
+
static equals(a: SendStreamTrailerResponse | PlainMessage<SendStreamTrailerResponse> | undefined, b: SendStreamTrailerResponse | PlainMessage<SendStreamTrailerResponse> | undefined): boolean;
|
|
2713
|
+
}
|
|
2714
|
+
/**
|
|
2715
|
+
* @generated from message livekit.proto.SendStreamHeaderCallback
|
|
2716
|
+
*/
|
|
2717
|
+
declare class SendStreamHeaderCallback extends Message<SendStreamHeaderCallback> {
|
|
2718
|
+
/**
|
|
2719
|
+
* @generated from field: required uint64 async_id = 1;
|
|
2720
|
+
*/
|
|
2721
|
+
asyncId?: bigint;
|
|
2722
|
+
/**
|
|
2723
|
+
* @generated from field: optional string error = 2;
|
|
2724
|
+
*/
|
|
2725
|
+
error?: string;
|
|
2726
|
+
constructor(data?: PartialMessage<SendStreamHeaderCallback>);
|
|
2727
|
+
static readonly runtime: typeof proto2;
|
|
2728
|
+
static readonly typeName = "livekit.proto.SendStreamHeaderCallback";
|
|
2729
|
+
static readonly fields: FieldList;
|
|
2730
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SendStreamHeaderCallback;
|
|
2731
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SendStreamHeaderCallback;
|
|
2732
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SendStreamHeaderCallback;
|
|
2733
|
+
static equals(a: SendStreamHeaderCallback | PlainMessage<SendStreamHeaderCallback> | undefined, b: SendStreamHeaderCallback | PlainMessage<SendStreamHeaderCallback> | undefined): boolean;
|
|
2734
|
+
}
|
|
2735
|
+
/**
|
|
2736
|
+
* @generated from message livekit.proto.SendStreamChunkCallback
|
|
2737
|
+
*/
|
|
2738
|
+
declare class SendStreamChunkCallback extends Message<SendStreamChunkCallback> {
|
|
2739
|
+
/**
|
|
2740
|
+
* @generated from field: required uint64 async_id = 1;
|
|
2741
|
+
*/
|
|
2742
|
+
asyncId?: bigint;
|
|
2743
|
+
/**
|
|
2744
|
+
* @generated from field: optional string error = 2;
|
|
2745
|
+
*/
|
|
2746
|
+
error?: string;
|
|
2747
|
+
constructor(data?: PartialMessage<SendStreamChunkCallback>);
|
|
2748
|
+
static readonly runtime: typeof proto2;
|
|
2749
|
+
static readonly typeName = "livekit.proto.SendStreamChunkCallback";
|
|
2750
|
+
static readonly fields: FieldList;
|
|
2751
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SendStreamChunkCallback;
|
|
2752
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SendStreamChunkCallback;
|
|
2753
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SendStreamChunkCallback;
|
|
2754
|
+
static equals(a: SendStreamChunkCallback | PlainMessage<SendStreamChunkCallback> | undefined, b: SendStreamChunkCallback | PlainMessage<SendStreamChunkCallback> | undefined): boolean;
|
|
2755
|
+
}
|
|
2756
|
+
/**
|
|
2757
|
+
* @generated from message livekit.proto.SendStreamTrailerCallback
|
|
2758
|
+
*/
|
|
2759
|
+
declare class SendStreamTrailerCallback extends Message<SendStreamTrailerCallback> {
|
|
2760
|
+
/**
|
|
2761
|
+
* @generated from field: required uint64 async_id = 1;
|
|
2762
|
+
*/
|
|
2763
|
+
asyncId?: bigint;
|
|
2764
|
+
/**
|
|
2765
|
+
* @generated from field: optional string error = 2;
|
|
2766
|
+
*/
|
|
2767
|
+
error?: string;
|
|
2768
|
+
constructor(data?: PartialMessage<SendStreamTrailerCallback>);
|
|
2769
|
+
static readonly runtime: typeof proto2;
|
|
2770
|
+
static readonly typeName = "livekit.proto.SendStreamTrailerCallback";
|
|
2771
|
+
static readonly fields: FieldList;
|
|
2772
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SendStreamTrailerCallback;
|
|
2773
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SendStreamTrailerCallback;
|
|
2774
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SendStreamTrailerCallback;
|
|
2775
|
+
static equals(a: SendStreamTrailerCallback | PlainMessage<SendStreamTrailerCallback> | undefined, b: SendStreamTrailerCallback | PlainMessage<SendStreamTrailerCallback> | undefined): boolean;
|
|
2776
|
+
}
|
|
2777
|
+
/**
|
|
2778
|
+
* @generated from message livekit.proto.SetDataChannelBufferedAmountLowThresholdRequest
|
|
2779
|
+
*/
|
|
2780
|
+
declare class SetDataChannelBufferedAmountLowThresholdRequest extends Message<SetDataChannelBufferedAmountLowThresholdRequest> {
|
|
2781
|
+
/**
|
|
2782
|
+
* @generated from field: required uint64 local_participant_handle = 1;
|
|
2783
|
+
*/
|
|
2784
|
+
localParticipantHandle?: bigint;
|
|
2785
|
+
/**
|
|
2786
|
+
* @generated from field: required uint64 threshold = 2;
|
|
2787
|
+
*/
|
|
2788
|
+
threshold?: bigint;
|
|
2789
|
+
/**
|
|
2790
|
+
* @generated from field: required livekit.proto.DataPacketKind kind = 3;
|
|
2791
|
+
*/
|
|
2792
|
+
kind?: DataPacketKind;
|
|
2793
|
+
constructor(data?: PartialMessage<SetDataChannelBufferedAmountLowThresholdRequest>);
|
|
2794
|
+
static readonly runtime: typeof proto2;
|
|
2795
|
+
static readonly typeName = "livekit.proto.SetDataChannelBufferedAmountLowThresholdRequest";
|
|
2796
|
+
static readonly fields: FieldList;
|
|
2797
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SetDataChannelBufferedAmountLowThresholdRequest;
|
|
2798
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SetDataChannelBufferedAmountLowThresholdRequest;
|
|
2799
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SetDataChannelBufferedAmountLowThresholdRequest;
|
|
2800
|
+
static equals(a: SetDataChannelBufferedAmountLowThresholdRequest | PlainMessage<SetDataChannelBufferedAmountLowThresholdRequest> | undefined, b: SetDataChannelBufferedAmountLowThresholdRequest | PlainMessage<SetDataChannelBufferedAmountLowThresholdRequest> | undefined): boolean;
|
|
2801
|
+
}
|
|
2802
|
+
/**
|
|
2803
|
+
* @generated from message livekit.proto.SetDataChannelBufferedAmountLowThresholdResponse
|
|
2804
|
+
*/
|
|
2805
|
+
declare class SetDataChannelBufferedAmountLowThresholdResponse extends Message<SetDataChannelBufferedAmountLowThresholdResponse> {
|
|
2806
|
+
constructor(data?: PartialMessage<SetDataChannelBufferedAmountLowThresholdResponse>);
|
|
2807
|
+
static readonly runtime: typeof proto2;
|
|
2808
|
+
static readonly typeName = "livekit.proto.SetDataChannelBufferedAmountLowThresholdResponse";
|
|
2809
|
+
static readonly fields: FieldList;
|
|
2810
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SetDataChannelBufferedAmountLowThresholdResponse;
|
|
2811
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SetDataChannelBufferedAmountLowThresholdResponse;
|
|
2812
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SetDataChannelBufferedAmountLowThresholdResponse;
|
|
2813
|
+
static equals(a: SetDataChannelBufferedAmountLowThresholdResponse | PlainMessage<SetDataChannelBufferedAmountLowThresholdResponse> | undefined, b: SetDataChannelBufferedAmountLowThresholdResponse | PlainMessage<SetDataChannelBufferedAmountLowThresholdResponse> | undefined): boolean;
|
|
2814
|
+
}
|
|
2815
|
+
/**
|
|
2816
|
+
* @generated from message livekit.proto.DataChannelBufferedAmountLowThresholdChanged
|
|
2817
|
+
*/
|
|
2818
|
+
declare class DataChannelBufferedAmountLowThresholdChanged extends Message<DataChannelBufferedAmountLowThresholdChanged> {
|
|
2819
|
+
/**
|
|
2820
|
+
* @generated from field: required livekit.proto.DataPacketKind kind = 1;
|
|
2821
|
+
*/
|
|
2822
|
+
kind?: DataPacketKind;
|
|
2823
|
+
/**
|
|
2824
|
+
* @generated from field: required uint64 threshold = 2;
|
|
2825
|
+
*/
|
|
2826
|
+
threshold?: bigint;
|
|
2827
|
+
constructor(data?: PartialMessage<DataChannelBufferedAmountLowThresholdChanged>);
|
|
2828
|
+
static readonly runtime: typeof proto2;
|
|
2829
|
+
static readonly typeName = "livekit.proto.DataChannelBufferedAmountLowThresholdChanged";
|
|
2830
|
+
static readonly fields: FieldList;
|
|
2831
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DataChannelBufferedAmountLowThresholdChanged;
|
|
2832
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DataChannelBufferedAmountLowThresholdChanged;
|
|
2833
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DataChannelBufferedAmountLowThresholdChanged;
|
|
2834
|
+
static equals(a: DataChannelBufferedAmountLowThresholdChanged | PlainMessage<DataChannelBufferedAmountLowThresholdChanged> | undefined, b: DataChannelBufferedAmountLowThresholdChanged | PlainMessage<DataChannelBufferedAmountLowThresholdChanged> | undefined): boolean;
|
|
2835
|
+
}
|
|
2474
2836
|
|
|
2475
|
-
export { ActiveSpeakersChanged, AttributesEntry, AudioEncoding, BufferInfo, ChatMessage, ChatMessageReceived, ConnectCallback, ConnectCallback_ParticipantWithTracks, ConnectCallback_Result, ConnectRequest, ConnectResponse, Connected, ConnectionQuality, ConnectionQualityChanged, ConnectionState, ConnectionStateChanged, ContinualGatheringPolicy, DataPacketKind, DataPacketReceived, DataStream,
|
|
2837
|
+
export { ActiveSpeakersChanged, AttributesEntry, AudioEncoding, BufferInfo, ChatMessage, ChatMessageReceived, ConnectCallback, ConnectCallback_ParticipantWithTracks, ConnectCallback_Result, ConnectRequest, ConnectResponse, Connected, ConnectionQuality, ConnectionQualityChanged, ConnectionState, ConnectionStateChanged, ContinualGatheringPolicy, DataChannelBufferedAmountLowThresholdChanged, DataPacketKind, DataPacketReceived, DataStream, DataStreamChunkReceived, DataStreamHeaderReceived, DataStreamTrailerReceived, DataStream_ByteHeader, DataStream_Chunk, DataStream_Header, DataStream_OperationType, DataStream_TextHeader, DataStream_Trailer, DisconnectCallback, DisconnectRequest, DisconnectResponse, Disconnected, E2eeStateChanged, EditChatMessageRequest, GetSessionStatsCallback, GetSessionStatsCallback_Result, GetSessionStatsRequest, GetSessionStatsResponse, IceServer, IceTransportType, LocalTrackPublished, LocalTrackSubscribed, LocalTrackUnpublished, OwnedBuffer, OwnedRoom, ParticipantAttributesChanged, ParticipantConnected, ParticipantDisconnected, ParticipantMetadataChanged, ParticipantNameChanged, PublishDataCallback, PublishDataRequest, PublishDataResponse, PublishSipDtmfCallback, PublishSipDtmfRequest, PublishSipDtmfResponse, PublishTrackCallback, PublishTrackRequest, PublishTrackResponse, PublishTranscriptionCallback, PublishTranscriptionRequest, PublishTranscriptionResponse, Reconnected, Reconnecting, RoomEOS, RoomEvent, RoomInfo, RoomMetadataChanged, RoomOptions, RoomSidChanged, RtcConfig, SendChatMessageCallback, SendChatMessageRequest, SendChatMessageResponse, SendStreamChunkCallback, SendStreamChunkRequest, SendStreamChunkResponse, SendStreamHeaderCallback, SendStreamHeaderRequest, SendStreamHeaderResponse, SendStreamTrailerCallback, SendStreamTrailerRequest, SendStreamTrailerResponse, SetDataChannelBufferedAmountLowThresholdRequest, SetDataChannelBufferedAmountLowThresholdResponse, SetLocalAttributesCallback, SetLocalAttributesRequest, SetLocalAttributesResponse, SetLocalMetadataCallback, SetLocalMetadataRequest, SetLocalMetadataResponse, SetLocalNameCallback, SetLocalNameRequest, SetLocalNameResponse, SetSubscribedRequest, SetSubscribedResponse, SipDTMF, TrackMuted, TrackPublishOptions, TrackPublished, TrackSubscribed, TrackSubscriptionFailed, TrackUnmuted, TrackUnpublished, TrackUnsubscribed, TranscriptionReceived, TranscriptionSegment, UnpublishTrackCallback, UnpublishTrackRequest, UnpublishTrackResponse, UserPacket, VideoEncoding };
|