@vindral/web-sdk 2.2.1 → 2.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +3 -0
- package/package.json +1 -1
- package/web-sdk.esm.js +1 -1
- package/web-sdk.umd.js +1 -1
package/index.d.ts
CHANGED
|
@@ -1159,6 +1159,7 @@ declare const defaultOptions: {
|
|
|
1159
1159
|
poster: string | boolean;
|
|
1160
1160
|
reconnectHandler: (state: ReconnectState) => Promise<boolean> | boolean;
|
|
1161
1161
|
iosWakeLockEnabled: boolean;
|
|
1162
|
+
telemetryEnabled: boolean;
|
|
1162
1163
|
advanced: {
|
|
1163
1164
|
wasmDecodingConstraint: Partial<VideoConstraint>;
|
|
1164
1165
|
};
|
|
@@ -1293,6 +1294,7 @@ export declare class Vindral extends Emitter<PublicVindralEvents> {
|
|
|
1293
1294
|
}
|
|
1294
1295
|
interface TelemetryModuleOptions {
|
|
1295
1296
|
url: string;
|
|
1297
|
+
enabled?: boolean;
|
|
1296
1298
|
interval?: number;
|
|
1297
1299
|
includeErrors?: boolean;
|
|
1298
1300
|
includeEvents?: boolean;
|
|
@@ -1451,6 +1453,7 @@ export interface Options {
|
|
|
1451
1453
|
mseOpusEnabled?: boolean;
|
|
1452
1454
|
iosBackgroundPlayEnabled?: boolean;
|
|
1453
1455
|
abrEnabled?: boolean;
|
|
1456
|
+
telemetryEnabled?: boolean;
|
|
1454
1457
|
maxSize?: Size;
|
|
1455
1458
|
maxAudioBitRate?: number;
|
|
1456
1459
|
maxVideoBitRate?: number;
|
package/package.json
CHANGED