@vindral/web-sdk 4.3.1 → 4.3.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/{B9WEkxkT.js → BsJtUY1Z.js} +2 -2
- package/{BNxcJNN7.js → C8g5RSrs.js} +1 -1
- package/{DtpcQ7ay.js → CLJilV9Y.js} +1 -1
- package/{Dfj0VbOY.js → DZobqUqG.js} +244 -154
- package/core.d.ts +3 -1
- package/core.js +1 -1
- package/legacy.d.ts +3 -1
- package/legacy.es.js +380 -286
- package/legacy.umd.js +12 -12
- package/package.json +1 -1
- package/player.d.ts +3 -1
- package/player.js +2 -2
- package/react.d.ts +3 -1
- package/vindral-player-component.js +2 -2
package/core.d.ts
CHANGED
|
@@ -1042,8 +1042,10 @@ export type Statistics = ModuleStatistics & ReturnType<UserAgentInformation["get
|
|
|
1042
1042
|
*/
|
|
1043
1043
|
channelGroupId?: string;
|
|
1044
1044
|
/**
|
|
1045
|
-
* Time in milliseconds from
|
|
1045
|
+
* Time in milliseconds from the first `connect()` call to playback of video and audio being started.
|
|
1046
1046
|
* Note that an actual frame render often happens much quicker, but that is not counted as TTFF.
|
|
1047
|
+
* `timeToConnected` shares the same anchor, so `timeToFirstFrame - timeToConnected` is the
|
|
1048
|
+
* post-transport portion (player bootstrap, media flow, decode, buffer fill, render).
|
|
1047
1049
|
*/
|
|
1048
1050
|
timeToFirstFrame?: number;
|
|
1049
1051
|
/**
|
package/core.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { t as e } from "./
|
|
1
|
+
import { t as e } from "./DZobqUqG.js";
|
|
2
2
|
import { a as t, c as n, i as r, l as i, n as a, o, r as s, s as c, u as l } from "./C01DcfYu.js";
|
|
3
3
|
export { a as AUTHENTICATION_EXPIRED_CODE, s as AUTHENTICATION_FAILED_CODE, r as CHANNEL_NOT_FOUND_CODE, t as CONNECTION_FAILED_AFTER_RETRIES_CODE, o as CONNECTION_FAILED_CODE, c as DISCONNECTED_BY_EDGE, n as INACTIVITY_CODE, i as NO_INCOMING_DATA, e as Vindral, l as VindralError };
|
package/legacy.d.ts
CHANGED
|
@@ -1057,8 +1057,10 @@ export type Statistics = ModuleStatistics & ReturnType<UserAgentInformation["get
|
|
|
1057
1057
|
*/
|
|
1058
1058
|
channelGroupId?: string;
|
|
1059
1059
|
/**
|
|
1060
|
-
* Time in milliseconds from
|
|
1060
|
+
* Time in milliseconds from the first `connect()` call to playback of video and audio being started.
|
|
1061
1061
|
* Note that an actual frame render often happens much quicker, but that is not counted as TTFF.
|
|
1062
|
+
* `timeToConnected` shares the same anchor, so `timeToFirstFrame - timeToConnected` is the
|
|
1063
|
+
* post-transport portion (player bootstrap, media flow, decode, buffer fill, render).
|
|
1062
1064
|
*/
|
|
1063
1065
|
timeToFirstFrame?: number;
|
|
1064
1066
|
/**
|