@vkontakte/videoplayer-core 2.0.168 → 2.0.169-dev.2cfd41de6.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vkontakte/videoplayer-core",
3
- "version": "2.0.168",
3
+ "version": "2.0.169-dev.2cfd41de6.0",
4
4
  "author": "vk.ru",
5
5
  "description": "Videoplayer core library based on the vk.ru platform",
6
6
  "homepage": "https://vk.ru",
@@ -42,6 +42,6 @@
42
42
  "**/*.d.ts"
43
43
  ],
44
44
  "dependencies": {
45
- "@vkontakte/videoplayer-shared": "1.0.97"
45
+ "@vkontakte/videoplayer-shared": "1.0.98-dev.2cfd41de6.0"
46
46
  }
47
47
  }
@@ -9,6 +9,7 @@ interface IConnectData {
9
9
  isSeeked$: IObservable<boolean>;
10
10
  looped$: IObservable<Seconds>;
11
11
  playing$: IObservable<undefined>;
12
+ pause$: IObservable<undefined>;
12
13
  currentStallDuration$: IValueSubject<Milliseconds>;
13
14
  tuning: ITuningConfig["stallsManager"];
14
15
  abrParams: ITuningConfig["autoTrackSelection"];
@@ -24,6 +25,7 @@ declare class StallsManager {
24
25
  private duration;
25
26
  private isSeeked$;
26
27
  private isBuffering$;
28
+ private isPaused;
27
29
  private maxQualityLimit;
28
30
  private lastUniqueVideoTrackSelected;
29
31
  private currentStallsCount;
@@ -141,6 +141,7 @@ export type ITuningConfig = {
141
141
  useTotalStallsDurationPerTvt: boolean;
142
142
  useAverageStallsDurationPerTvt: boolean;
143
143
  useEmaStallsDurationPerTvt: boolean;
144
+ ignoreStallsOnPause: boolean;
144
145
  };
145
146
  droppedFramesChecker: {
146
147
  enabled: boolean;