@snapcall/stream-ui 1.41.3 → 1.42.0
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/stream-ui.esm.js +78 -43
- package/dist/stream-ui.js +78 -43
- package/dist/types.d.ts +2 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -15,6 +15,7 @@ interface Step {
|
|
|
15
15
|
token: string;
|
|
16
16
|
title: string;
|
|
17
17
|
config?: {
|
|
18
|
+
required?: boolean;
|
|
18
19
|
description?: string;
|
|
19
20
|
image_url?: string;
|
|
20
21
|
button_text?: string;
|
|
@@ -526,6 +527,7 @@ interface NetworkLog {
|
|
|
526
527
|
rtt?: number;
|
|
527
528
|
rtxPercent?: number;
|
|
528
529
|
kind?: string;
|
|
530
|
+
averageTargetBitrate?: number;
|
|
529
531
|
}
|
|
530
532
|
interface TransportMonitorListener {
|
|
531
533
|
onTransportManyDisconnections(transport: mediasoupClient.types.Transport): void;
|