@vkontakte/videoplayer 1.1.61-dev.4affc441.0 → 1.1.61-dev.bdd21620.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",
3
- "version": "1.1.61-dev.4affc441.0",
3
+ "version": "1.1.61-dev.bdd21620.0",
4
4
  "author": "vk.com",
5
5
  "description": "Videoplayer based on the vk.com platform",
6
6
  "homepage": "https://vk.com",
@@ -55,9 +55,9 @@
55
55
  ],
56
56
  "dependencies": {
57
57
  "@adtech/rbadman": "2.2.57",
58
- "@vkontakte/videoplayer-core": "2.0.131-dev.5dfc4a50.0",
59
- "@vkontakte/videoplayer-interactive": "1.0.36-dev.0b2b6978.0",
60
- "@vkontakte/videoplayer-shared": "1.0.59-dev.2e0f9025.0",
61
- "@vkontakte/videoplayer-statistics": "1.0.77-dev.38c1ddaf.0"
58
+ "@vkontakte/videoplayer-core": "2.0.131-dev.8a25f21f.0",
59
+ "@vkontakte/videoplayer-interactive": "1.0.36-dev.a29258cc.0",
60
+ "@vkontakte/videoplayer-shared": "1.0.59-dev.97aa7c64.0",
61
+ "@vkontakte/videoplayer-statistics": "1.0.77-dev.cb55772d.0"
62
62
  }
63
63
  }
@@ -51,7 +51,6 @@ export declare class VKVideoPlayer extends HTMLElement {
51
51
  private isControlDisabled;
52
52
  private getNextVideoInfo;
53
53
  private createOneStat;
54
- private createThinOneStat;
55
54
  private createPlayer;
56
55
  private addPlayerInfoSubscriptions;
57
56
  playNextVideo(): void;
@@ -1,15 +1,13 @@
1
1
  import { type ISubscription } from '@vkontakte/videoplayer-shared';
2
- import { type IOneStat, type ThinOneStat } from '@vkontakte/videoplayer-statistics';
2
+ import { type IOneStat } from '@vkontakte/videoplayer-statistics';
3
3
  export interface IUIStatistics {
4
4
  statSubscription: ISubscription;
5
- oneStat?: IOneStat;
6
- thinOneStat?: ThinOneStat.IThinOneStat;
5
+ oneStat: IOneStat;
7
6
  destroy: () => void;
8
7
  }
9
8
  export declare class UIOneStat implements IUIStatistics {
10
- oneStat?: IOneStat | undefined;
11
- thinOneStat?: ThinOneStat.IThinOneStat | undefined;
9
+ oneStat: IOneStat;
12
10
  statSubscription: ISubscription;
13
- constructor(oneStat?: IOneStat | undefined, thinOneStat?: ThinOneStat.IThinOneStat | undefined, statSubscription?: ISubscription);
11
+ constructor(oneStat: IOneStat, statSubscription?: ISubscription);
14
12
  destroy(): void;
15
13
  }