@vkontakte/videoplayer 1.1.74-dev.7dc0bee9.0 → 1.1.74-dev.e771e267.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.74-dev.7dc0bee9.0",
3
+ "version": "1.1.74-dev.e771e267.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.143-dev.7dc0bee9.0",
59
- "@vkontakte/videoplayer-interactive": "1.0.49-dev.7dc0bee9.0",
60
- "@vkontakte/videoplayer-shared": "1.0.71-dev.7dc0bee9.0",
61
- "@vkontakte/videoplayer-statistics": "1.0.89-dev.7dc0bee9.0"
58
+ "@vkontakte/videoplayer-core": "2.0.143-dev.e771e267.0",
59
+ "@vkontakte/videoplayer-interactive": "1.0.49-dev.e771e267.0",
60
+ "@vkontakte/videoplayer-shared": "1.0.71-dev.e771e267.0",
61
+ "@vkontakte/videoplayer-statistics": "1.0.89-dev.e771e267.0"
62
62
  }
63
63
  }
@@ -13,6 +13,10 @@ import { SlotsApi } from '../utils/webAPI/slotsApi';
13
13
  export declare class VKVideoPlayer extends HTMLElement {
14
14
  private svelteStubComponent?;
15
15
  private svelteRootComponent?;
16
+ /**
17
+ * Слой, который живет на протяжении жизни плеера, не уничтожается между переключениями видео.
18
+ */
19
+ private sveltePersistentLayerComponent?;
16
20
  private svelteErrorComponent?;
17
21
  private store?;
18
22
  private microStoresRoot?;
@@ -49,6 +53,7 @@ export declare class VKVideoPlayer extends HTMLElement {
49
53
  private readonly fatalError$;
50
54
  constructor();
51
55
  private connectedCallback;
56
+ private updatePersistentLayerProps;
52
57
  private disconnectedCallback;
53
58
  private initPlayerRootContainers;
54
59
  private needToShowNextPrevButtons;
@@ -1,9 +1,39 @@
1
+ import type { Readable } from 'svelte/store';
1
2
  import type { AdsTimeRemained } from '../../types';
2
3
  import { AdsSection } from '../../types';
3
- import { type ILogger } from '@vkontakte/videoplayer-shared';
4
+ import type { AdsParams } from '../../types';
5
+ import { type ILogger, type Milliseconds } from '@vkontakte/videoplayer-shared';
4
6
  import { Subject } from '@vkontakte/videoplayer-shared';
5
7
  import type { IAdsState } from '../../store';
6
- import type { AdmanInitParams, ExternalActions, IConfig, IPlayerState } from './types';
8
+ type ExternalActions = {
9
+ switchFromAdsToVideo: (callPlay?: boolean) => void;
10
+ switchFromVideoToAds: () => void;
11
+ setMuted: (muted: boolean) => void;
12
+ };
13
+ export type AdmanInitParams = {
14
+ width: number;
15
+ height: number;
16
+ isFullscreen: boolean;
17
+ isAutoplay: boolean;
18
+ slotId: number;
19
+ params?: AdsParams;
20
+ paramsOverride?: AdsParams;
21
+ duration: number;
22
+ adsContainer: HTMLElement;
23
+ adsVideoElement: HTMLVideoElement;
24
+ };
25
+ type IPlayerState = {
26
+ vsid: Readable<string | undefined>;
27
+ };
28
+ interface IConfig {
29
+ loadTimeout: Milliseconds;
30
+ initTimeout: Milliseconds;
31
+ runtimeTimeout: Milliseconds;
32
+ useAdmanFromNPM: boolean;
33
+ volumeMultiplier: number;
34
+ isVsidOriginal: boolean;
35
+ usePuid: boolean;
36
+ }
7
37
  export declare class AdmanWrapper {
8
38
  private adman;
9
39
  private initialVolume;
@@ -21,9 +51,7 @@ export declare class AdmanWrapper {
21
51
  private useAdmanFromNPM;
22
52
  private isVsidOriginal;
23
53
  private usePuid;
24
- private debug;
25
54
  private watchDogTimeout;
26
- private externalApi?;
27
55
  events: {
28
56
  init$: Subject<number>;
29
57
  loadStarted$: Subject<void>;
@@ -48,7 +76,7 @@ export declare class AdmanWrapper {
48
76
  loadAdmanMailRu: (abortSignal: AbortSignal) => Promise<void>;
49
77
  private loadAdmanNPM;
50
78
  onAdmanLoadingError(): void;
51
- initAdman(initParams: AdmanInitParams): Promise<void>;
79
+ initAdman(initParams: AdmanInitParams): void;
52
80
  private switchToVideo;
53
81
  private setPostrollPassed;
54
82
  togglePlay(): void;
@@ -75,5 +103,5 @@ export declare class AdmanWrapper {
75
103
  skip(): void;
76
104
  setPosition(position: number, duration: number): void;
77
105
  destroy(): void;
78
- private safeExternalCall;
79
106
  }
107
+ export {};
@@ -1,11 +1,10 @@
1
1
  import type { IExternalTextTrack, ISources, PlaybackRate } from '@vkontakte/videoplayer-core';
2
2
  import type { IStore } from '../../store';
3
- import type { IMicroStoresRoot, IVideoLive, IVKVideoPlayerConfig } from '../../types';
3
+ import type { AdsParams, IMicroStoresRoot, IVideoLive, IVKVideoPlayerConfig } from '../../types';
4
4
  import type { IUIConfig } from '../../config';
5
5
  import type { Interactives } from '@vkontakte/videoplayer-interactive';
6
6
  import KeyboardControls from '../KeyboardControls.svelte';
7
7
  import type { QualityLimits } from '@vkontakte/videoplayer-shared';
8
- import type { AdmanInitParams } from '../Ads/types';
9
8
  export interface RootProps {
10
9
  sources: ISources | undefined;
11
10
  store: IStore;
@@ -27,9 +26,8 @@ export interface RootProps {
27
26
  canRewindLive: boolean;
28
27
  showAds: boolean;
29
28
  adsSlotId?: number | undefined;
30
- adsParams?: AdmanInitParams['params'];
29
+ adsParams?: AdsParams | undefined;
31
30
  adsAutoplayParam?: boolean;
32
- adsExternalApi?: AdmanInitParams['externalApi'];
33
31
  duration?: number | undefined;
34
32
  logoClickable: boolean;
35
33
  logoHidden: boolean;
@@ -78,3 +76,6 @@ export interface RootExports {
78
76
  toggleTrafficSaving: (value: boolean) => void;
79
77
  toggleHighQuality: (value: boolean) => void;
80
78
  }
79
+ export interface PersistentLayerExports {
80
+ startVideoChangedAnimation: (prev: boolean) => void;
81
+ }
package/types/config.d.ts CHANGED
@@ -41,7 +41,6 @@ export interface IUIConfig {
41
41
  volumeMultiplier: number;
42
42
  isVsidOriginal: boolean;
43
43
  usePuid: boolean;
44
- debug: boolean;
45
44
  };
46
45
  /**
47
46
  * Если нет ранее сохранённого значения громкости будет использовано это
@@ -159,18 +158,10 @@ export interface IUIConfig {
159
158
  * Отображать ли анимацию смены статуса проигрывания.
160
159
  */
161
160
  playbackStatusShow: boolean;
162
- /**
163
- * Продолжительность анимации.
164
- */
165
- playbackStatusAnimationDuration: number;
166
161
  /**
167
162
  * Отображать ли анимацию при переключении видео на следующее или предыдущее.
168
163
  */
169
164
  playbackStatusNextVideoShow: boolean;
170
- /**
171
- * Продолжительность анимации для переключения видео.
172
- */
173
- playbackStatusNextVideoAnimationDuration: number;
174
165
  /**
175
166
  * Включает ранее выбранный язык субтитров при запуске видео
176
167
  */
@@ -197,6 +188,7 @@ export interface IUIConfig {
197
188
  * Если включен то за зацикливание одного видео будет отвечать флаг loop
198
189
  */
199
190
  useLoopSetting: boolean;
191
+ doubleForwardAvailable: boolean;
200
192
  };
201
193
  interactive: {
202
194
  historyMaxLength: number;
@@ -227,6 +219,15 @@ export interface IUIConfig {
227
219
  };
228
220
  /** уникальный идентификатор пользователя для сохранения настроек */
229
221
  userSalt: string;
222
+ /**
223
+ * Время, которое нужно зажимать горячую клавишу, чтобы включилось х2 ускорение.
224
+ */
225
+ doubleForwardActivationTime: number;
226
+ playbackStatusAnimationDuration: number;
227
+ /**
228
+ * Продолжительность анимации для переключения видео.
229
+ */
230
+ playbackStatusNextVideoAnimationDuration: number;
230
231
  }
231
232
  export declare const defaultConfig: IUIConfig;
232
233
  export type IOptionalUIConfig = RecursivePartial<IUIConfig>;
package/types/index.d.ts CHANGED
@@ -1,15 +1,14 @@
1
1
  import { VKVideoPlayer } from './VKVideoPlayer/index.svelte';
2
- import type { IVKVideoPlayerConfig, IControlInfo, ITimelinePreviewThumbsData, IUpcomingLiveViewControlInfo, IVKVideoPlayerCallbacks, IVideoData, HotKeyMapData, HotKeyMapItem, HotKeyMapGroup, IVideoLive, IInteractiveData, AdditionalButtonDeprecated, IVideoEpisode, VideoPlayerView } from './types';
2
+ import type { IVKVideoPlayerConfig, IControlInfo, ITimelinePreviewThumbsData, IUpcomingLiveViewControlInfo, IVKVideoPlayerCallbacks, IVideoData, AdsParams, HotKeyMapData, HotKeyMapItem, HotKeyMapGroup, IVideoLive, IInteractiveData, AdditionalButtonDeprecated, IVideoEpisode, VideoPlayerView } from './types';
3
3
  import type { LanguagePack, LanguageConfig } from './translation/types';
4
4
  import type { ISDKConfig } from './config';
5
- import type { AdsParams, IAdmanInitParamsExternalApi } from './components/Ads/types';
6
5
  import type { ISources, IDashSource, URLSource, RawSource, URLSourceWithSeek } from '@vkontakte/videoplayer-core';
7
6
  import type { Milliseconds, QualityLimits } from '@vkontakte/videoplayer-shared';
8
7
  export { VERSION } from './env';
9
8
  export declare const registerPlayerWebComponent: () => void;
10
9
  export { type AdditionalSettingsMenuItem, MenuItemType, type AdditionalClickSettingsMenuItem, type AdditionalSwitchSettingsMenuItem, type AdditionalContextMenuItem, } from './components/Menus/subMenuTabs/types';
11
10
  export { type AdditionalButton, ControlButtonType, } from './components/Controls/types';
12
- export type { VKVideoPlayer, IVKVideoPlayerConfig, IControlInfo, ITimelinePreviewThumbsData, IUpcomingLiveViewControlInfo, IVKVideoPlayerCallbacks, IVideoData, AdsParams, HotKeyMapData, HotKeyMapItem, HotKeyMapGroup, ISources, IDashSource, URLSource, RawSource, URLSourceWithSeek, LanguagePack, LanguageConfig, Milliseconds, IVideoLive, IInteractiveData, AdditionalButtonDeprecated, QualityLimits, IVideoEpisode, ISDKConfig, VideoPlayerView, IAdmanInitParamsExternalApi, };
11
+ export type { VKVideoPlayer, IVKVideoPlayerConfig, IControlInfo, ITimelinePreviewThumbsData, IUpcomingLiveViewControlInfo, IVKVideoPlayerCallbacks, IVideoData, AdsParams, HotKeyMapData, HotKeyMapItem, HotKeyMapGroup, ISources, IDashSource, URLSource, RawSource, URLSourceWithSeek, LanguagePack, LanguageConfig, Milliseconds, IVideoLive, IInteractiveData, AdditionalButtonDeprecated, QualityLimits, IVideoEpisode, ISDKConfig, VideoPlayerView, };
13
12
  export { GridTypes, } from './constans';
14
13
  export { PlayerPhase, } from './types';
15
14
  export { InterfaceLanguage, VKNumericLanguage, loadVKLangPack, } from '@vkontakte/videoplayer-shared';
@@ -122,7 +122,6 @@ export interface IUIState {
122
122
  ref$: Writable<HTMLElement | undefined>;
123
123
  name$: Writable<string | undefined>;
124
124
  };
125
- aboutToGoNextVideo: Writable<'next' | 'prev' | undefined>;
126
125
  /**
127
126
  * Отключаем любое действие пользователя.
128
127
  */
@@ -131,6 +130,14 @@ export interface IUIState {
131
130
  * Положение заголовка названия видео.
132
131
  */
133
132
  videoTitleInfo: Writable<IControlInfo | undefined>;
133
+ /**
134
+ * Ускорение видео х2.
135
+ */
136
+ doubleForwardOn$: Writable<boolean>;
137
+ /**
138
+ * Определяет, что двойное ускорение видео доступно.
139
+ */
140
+ doubleForwardAvailable$: Readable<false>;
134
141
  }
135
142
  export interface IWebApi {
136
143
  pictureInPictureApi?: IPictureInPictureApi;
@@ -294,6 +301,7 @@ export interface IStore {
294
301
  nextVideoAnnouncementAuto: () => void;
295
302
  nextVideoAnnouncementCancel: () => void;
296
303
  checkFullscreenSupport: () => boolean;
304
+ changeDoubleForwardOn: (enabled: boolean) => void;
297
305
  };
298
306
  external: {
299
307
  firstStart: (showAds: boolean) => void;
@@ -363,6 +371,11 @@ interface IStoreParams {
363
371
  additionalContextMenuItems: AdditionalContextMenuItem[];
364
372
  playPrevVideo: () => void;
365
373
  playNextVideo: () => void;
374
+ /**
375
+ * playPrevVideo или playNextVideo могут не вызваться, если обработка следующего видео находится на стороне интегарции,
376
+ * поэтому используем данный колбэк.
377
+ */
378
+ onVideoChanged: (prev: boolean) => void;
366
379
  looped?: boolean;
367
380
  statistics?: UIOneStat;
368
381
  saveRate: boolean;
@@ -374,5 +387,5 @@ interface IStoreParams {
374
387
  * Store приложения.
375
388
  * Если будет слишком большим - можно разделить его на модули
376
389
  */
377
- export declare const createStore: ({ interfaceLanguage, isCyrillicRelatedInterface, videoId, isClip, isLiveCatchUpMode, statAuthToken, isAudioDisabled, canDownload, callbacks, webApi, videoEpisodes, previewThumbsData, uiConfig, coreConfig, player: playerInstance, disabledControls, isInteractive, interactiveRanges$, isInteractiveTime$, replayInteractive, stopPlayer, hasInteractiveBranches, playPrevChapterDisabledTooltip, additionalButtons, additionalSettingsMenuItems, additionalContextMenuItems, playPrevVideo, playNextVideo, looped, statistics: uiStatistics, saveRate, internalsExposure, playerView, playerId, }: IStoreParams) => IStore;
390
+ export declare const createStore: ({ interfaceLanguage, isCyrillicRelatedInterface, videoId, isClip, isLiveCatchUpMode, statAuthToken, isAudioDisabled, canDownload, callbacks, webApi, videoEpisodes, previewThumbsData, uiConfig, coreConfig, player: playerInstance, disabledControls, isInteractive, interactiveRanges$, isInteractiveTime$, replayInteractive, stopPlayer, hasInteractiveBranches, playPrevChapterDisabledTooltip, additionalButtons, additionalSettingsMenuItems, additionalContextMenuItems, playPrevVideo, playNextVideo, onVideoChanged, looped, statistics: uiStatistics, saveRate, internalsExposure, playerView, playerId, }: IStoreParams) => IStore;
378
391
  export {};
@@ -1,5 +1,5 @@
1
1
  import { InterfaceLanguage } from '@vkontakte/videoplayer-shared';
2
- export type Key = 'auto_quality_invariant' | 'auto_quality' | 'menu_quality' | 'menu_playback_rate' | 'menu_traffic_saving' | 'menu_report' | 'menu_pip' | 'menu_pip_close' | 'menu_copy_video_link' | 'menu_copy_video_link_with_timestamp' | 'menu_video_rotate' | 'menu_video_loop_on' | 'menu_video_loop_off' | 'menu_chromecast' | 'menu_copy_debug' | 'menu_save_debug' | 'menu_debug_overlay' | 'menu_copy_embed_code' | 'pip_dummy_title' | 'submenu_traffic_saving' | 'submenu_quality' | 'submenu_playback_rate' | 'submenu_settings' | 'submenu_audio_languages' | 'auto_quality_option' | 'playing_ads' | 'skip_ads_now' | 'skip_ads_after' | 'visit_advertiser' | 'aria_timeline' | 'aria_timeline_value' | 'doubletap_seek_step' | 'playback_rate_1' | 'playback_rate' | 'video360' | 'subtitles_caption' | 'subtitles_auto' | 'subtitles_off' | 'subtitles_auto_caption' | 'subtitles_turn_on' | 'subtitles_turn_off' | 'traffic_saving_off' | 'traffic_saving_on' | 'traffic_saving_helper_text' | 'tooltip_previous' | 'tooltip_restart' | 'tooltip_play' | 'tooltip_pause' | 'tooltip_next' | 'tooltip_button_disabled' | 'tooltip_interactive_go_back' | 'tooltip_interactive_go_back_disabled' | 'tooltip_interactive_go_back_disabled_first' | 'tooltip_interactive_go_back_disabled_limit' | 'tooltip_chapter_without_interactive' | 'tooltip_interactive_of_chapter_completed' | 'tooltip_interactive_seek' | 'tooltip_interactive_graph_off' | 'tooltip_interactive_graph_on' | 'tooltip_live' | 'tooltip_episodes' | 'tooltip_volume' | 'tooltip_volume_muted' | 'tooltip_sound_unavailable' | 'tooltip_settings_on' | 'tooltip_subtitles_off' | 'tooltip_settings_off' | 'tooltip_subtitles_on' | 'tooltip_fullscreen_off' | 'tooltip_fullscreen_on' | 'tooltip_chromecast_off' | 'tooltip_chromecast_on' | 'tooltip_episode_finished' | 'tooltip_episode_unfinished' | 'tooltip_disabled_when_interactive' | 'tooltip_disabled_when_graph_on' | 'tooltip_interactive_interaction_time_indicator' | 'tooltip_vk_logo' | 'tooltip_vk_video_logo' | 'tooltip_autoplay_off' | 'tooltip_autoplay_on' | 'tooltip_context_menu_open' | 'tooltip_context_menu_close' | 'download_video_caption' | 'hotkey_helper_current_volume' | 'hotkey_map_modal_title' | 'hotkey_map_modal_close_btn_text' | 'hotkey_map_group_title_common' | 'hotkey_map_group_title_playback' | 'hotkey_map_group_title_subtitles' | 'hotkey_map_group_title_episodes' | 'hotkey_map_item_mute_description' | 'hotkey_map_item_mute_value' | 'hotkey_map_item_volume_down_description' | 'hotkey_map_item_volume_down_value' | 'hotkey_map_item_volume_up_description' | 'hotkey_map_item_volume_up_value' | 'hotkey_map_item_pip_description' | 'hotkey_map_item_pip_value' | 'hotkey_map_item_full_screen_description' | 'hotkey_map_item_full_screen_value' | 'hotkey_map_item_show_context_menu_description' | 'hotkey_map_item_show_context_menu_value' | 'hotkey_map_item_show_hotkey_map_description' | 'hotkey_map_item_show_hotkey_map_value' | 'hotkey_map_item_play_toggle_description' | 'hotkey_map_item_play_toggle_value' | 'hotkey_map_item_seek_backward_description' | 'hotkey_map_item_seek_backward_value' | 'hotkey_map_item_seek_forward_description' | 'hotkey_map_item_seek_forward_value' | 'hotkey_map_item_fast_seek_backward_description' | 'hotkey_map_item_fast_seek_backward_value' | 'hotkey_map_item_fast_seek_forward_description' | 'hotkey_map_item_fast_seek_forward_value' | 'hotkey_map_item_rate_down_description' | 'hotkey_map_item_rate_down_value' | 'hotkey_map_item_rate_up_description' | 'hotkey_map_item_rate_up_value' | 'hotkey_map_item_prev_frame_description' | 'hotkey_map_item_prev_frame_value' | 'hotkey_map_item_next_frame_description' | 'hotkey_map_item_next_frame_value' | 'hotkey_map_item_jump_seek_description' | 'hotkey_map_item_jump_seek_value' | 'hotkey_map_item_subtitles_toggle_description' | 'hotkey_map_item_subtitles_toggle_value' | 'hotkey_map_item_prev_episode_description' | 'hotkey_map_item_prev_episode_pc_value' | 'hotkey_map_item_prev_episode_mac_value' | 'hotkey_map_item_next_episode_description' | 'hotkey_map_item_next_episode_pc_value' | 'hotkey_map_item_next_episode_mac_value' | 'hotkey_map_item_next_video_description' | 'hotkey_map_item_next_video_value' | 'hotkey_map_item_prev_video_description' | 'hotkey_map_item_prev_video_value' | 'waiting_live_day_value' | 'waiting_live_hour_value' | 'waiting_live_minute_value' | 'waiting_live_second_value' | 'waiting_live_colon' | 'waiting_live_upcoming_title' | 'waiting_live_timer_title' | 'waiting_live_recover_title' | 'waiting_record_title' | 'aria_label_submenu_traffic_saving' | 'aria_label_submenu_back' | 'aria_label_menu_quality' | 'aria_label_menu_rate' | 'aria_label_menu_subtitle' | 'aria_label_menu_download' | 'aria_label_new_tab_alert' | 'aria_label_menu_debug_overlay' | 'aria_label_menu_rotate' | 'aria_label_menu_loop' | 'aria_label_debug_panel' | 'aria_label_context_menu' | 'aria_label_video_player' | 'aria_label_spherical_control' | 'aria_label_menu_audio_languages' | 'aria_label_settings' | 'aria_label_autoplay' | 'menu_audio_languages' | 'audio_stream_display_language_label' | 'audio_stream_display_language_label_index' | 'audio_stream_display_label_index' | 'audio_stream_display_language_index' | 'audio_stream_display_unknown' | 'end_screen_next_video' | 'end_screen_recommended_video' | 'other_quality' | 'high_quality' | 'high_quality_description' | 'auto_quality_limit' | 'traffic_saving_quality' | 'traffic_saving_quality_description' | 'quality_applience' | 'quality_applience_action' | 'default_quality_for_any_video' | 'slow_video_notification_button' | 'slow_video_notification_force_description' | 'slow_video_notification_suggest_description';
2
+ export type Key = 'auto_quality_invariant' | 'auto_quality' | 'menu_quality' | 'menu_playback_rate' | 'menu_traffic_saving' | 'menu_report' | 'menu_pip' | 'menu_pip_close' | 'menu_copy_video_link' | 'menu_copy_video_link_with_timestamp' | 'menu_video_rotate' | 'menu_video_loop_on' | 'menu_video_loop_off' | 'menu_chromecast' | 'menu_copy_debug' | 'menu_save_debug' | 'menu_debug_overlay' | 'menu_copy_embed_code' | 'pip_dummy_title' | 'submenu_traffic_saving' | 'submenu_quality' | 'submenu_playback_rate' | 'submenu_settings' | 'submenu_audio_languages' | 'auto_quality_option' | 'playing_ads' | 'skip_ads_now' | 'skip_ads_after' | 'visit_advertiser' | 'aria_timeline' | 'aria_timeline_value' | 'doubletap_seek_step' | 'playback_rate_1' | 'playback_rate' | 'video360' | 'subtitles_caption' | 'subtitles_auto' | 'subtitles_off' | 'subtitles_auto_caption' | 'subtitles_turn_on' | 'subtitles_turn_off' | 'traffic_saving_off' | 'traffic_saving_on' | 'traffic_saving_helper_text' | 'tooltip_previous' | 'tooltip_restart' | 'tooltip_play' | 'tooltip_pause' | 'tooltip_next' | 'tooltip_button_disabled' | 'tooltip_interactive_go_back' | 'tooltip_interactive_go_back_disabled' | 'tooltip_interactive_go_back_disabled_first' | 'tooltip_interactive_go_back_disabled_limit' | 'tooltip_chapter_without_interactive' | 'tooltip_interactive_of_chapter_completed' | 'tooltip_interactive_seek' | 'tooltip_interactive_graph_off' | 'tooltip_interactive_graph_on' | 'tooltip_live' | 'tooltip_episodes' | 'tooltip_volume' | 'tooltip_volume_muted' | 'tooltip_sound_unavailable' | 'tooltip_settings_on' | 'tooltip_subtitles_off' | 'tooltip_settings_off' | 'tooltip_subtitles_on' | 'tooltip_fullscreen_off' | 'tooltip_fullscreen_on' | 'tooltip_chromecast_off' | 'tooltip_chromecast_on' | 'tooltip_episode_finished' | 'tooltip_episode_unfinished' | 'tooltip_disabled_when_interactive' | 'tooltip_disabled_when_graph_on' | 'tooltip_interactive_interaction_time_indicator' | 'tooltip_vk_logo' | 'tooltip_vk_video_logo' | 'tooltip_autoplay_off' | 'tooltip_autoplay_on' | 'tooltip_context_menu_open' | 'tooltip_context_menu_close' | 'download_video_caption' | 'hotkey_helper_current_volume' | 'hotkey_map_modal_title' | 'hotkey_map_modal_close_btn_text' | 'hotkey_map_group_title_common' | 'hotkey_map_group_title_playback' | 'hotkey_map_group_title_subtitles' | 'hotkey_map_group_title_episodes' | 'hotkey_map_item_mute_description' | 'hotkey_map_item_mute_value' | 'hotkey_map_item_volume_down_description' | 'hotkey_map_item_volume_down_value' | 'hotkey_map_item_volume_up_description' | 'hotkey_map_item_volume_up_value' | 'hotkey_map_item_pip_description' | 'hotkey_map_item_pip_value' | 'hotkey_map_item_full_screen_description' | 'hotkey_map_item_full_screen_value' | 'hotkey_map_item_show_context_menu_description' | 'hotkey_map_item_show_context_menu_value' | 'hotkey_map_item_show_hotkey_map_description' | 'hotkey_map_item_show_hotkey_map_value' | 'hotkey_map_item_play_toggle_description' | 'hotkey_map_item_play_toggle_value' | 'hotkey_map_item_seek_backward_description' | 'hotkey_map_item_seek_backward_value' | 'hotkey_map_item_seek_forward_description' | 'hotkey_map_item_seek_forward_value' | 'hotkey_map_item_fast_seek_backward_description' | 'hotkey_map_item_fast_seek_backward_value' | 'hotkey_map_item_fast_seek_forward_description' | 'hotkey_map_item_fast_seek_forward_value' | 'hotkey_map_item_rate_down_description' | 'hotkey_map_item_rate_down_value' | 'hotkey_map_item_rate_up_description' | 'hotkey_map_item_rate_up_value' | 'hotkey_map_item_prev_frame_description' | 'hotkey_map_item_prev_frame_value' | 'hotkey_map_item_next_frame_description' | 'hotkey_map_item_next_frame_value' | 'hotkey_map_item_jump_seek_description' | 'hotkey_map_item_jump_seek_value' | 'hotkey_map_item_subtitles_toggle_description' | 'hotkey_map_item_subtitles_toggle_value' | 'hotkey_map_item_prev_episode_description' | 'hotkey_map_item_prev_episode_pc_value' | 'hotkey_map_item_prev_episode_mac_value' | 'hotkey_map_item_next_episode_description' | 'hotkey_map_item_next_episode_pc_value' | 'hotkey_map_item_next_episode_mac_value' | 'hotkey_map_item_next_video_description' | 'hotkey_map_item_next_video_value' | 'hotkey_map_item_prev_video_description' | 'hotkey_map_item_prev_video_value' | 'waiting_live_day_value' | 'waiting_live_hour_value' | 'waiting_live_minute_value' | 'waiting_live_second_value' | 'waiting_live_colon' | 'waiting_live_upcoming_title' | 'waiting_live_timer_title' | 'waiting_live_recover_title' | 'waiting_record_title' | 'aria_label_submenu_traffic_saving' | 'aria_label_submenu_back' | 'aria_label_menu_quality' | 'aria_label_menu_rate' | 'aria_label_menu_subtitle' | 'aria_label_menu_download' | 'aria_label_new_tab_alert' | 'aria_label_menu_debug_overlay' | 'aria_label_menu_rotate' | 'aria_label_menu_loop' | 'aria_label_debug_panel' | 'aria_label_context_menu' | 'aria_label_video_player' | 'aria_label_spherical_control' | 'aria_label_menu_audio_languages' | 'aria_label_settings' | 'aria_label_autoplay' | 'menu_audio_languages' | 'audio_stream_display_language_label' | 'audio_stream_display_language_label_index' | 'audio_stream_display_label_index' | 'audio_stream_display_language_index' | 'audio_stream_display_unknown' | 'end_screen_next_video' | 'end_screen_recommended_video' | 'other_quality' | 'high_quality' | 'high_quality_description' | 'auto_quality_limit' | 'traffic_saving_quality' | 'traffic_saving_quality_description' | 'quality_applience' | 'quality_applience_action' | 'default_quality_for_any_video' | 'slow_video_notification_button' | 'slow_video_notification_force_description' | 'slow_video_notification_suggest_description' | 'double_forward_label';
3
3
  export type LanguagePack = Record<Key, string>;
4
4
  export type LanguageConfig = {
5
5
  language: string;
@@ -12,7 +12,6 @@ import type { IUIStatistics } from '../services/statistics';
12
12
  import { UISentry } from '../services/sentry';
13
13
  import type { AdditionalContextMenuItem, AdditionalSettingsMenuItem } from '../components/Menus/subMenuTabs/types';
14
14
  import type { AdditionalDesktopControlPanelButton } from '../components/Controls/types';
15
- import type { AdmanInitParams } from '../components/Ads/types';
16
15
  export declare const enum UIType {
17
16
  DESKTOP = "desktop",
18
17
  MOBILE = "mobile"
@@ -166,6 +165,7 @@ export interface IVKVideoPlayerStatistics extends Partial<IUIStatistics> {
166
165
  export interface IVKVideoPlayerSentry extends Partial<UISentry> {
167
166
  config: ISDKConfig['ui']['sentry'];
168
167
  }
168
+ export type AdsParams = Record<string, unknown>;
169
169
  export interface IVideoEpisodesNormalizedTimeline {
170
170
  from: number;
171
171
  width: number;
@@ -202,9 +202,8 @@ export interface IVideoDataBase {
202
202
  /**
203
203
  * duration используется только для инициализации адмана.
204
204
  */
205
- duration?: AdmanInitParams['duration'];
206
- adsParams?: AdmanInitParams['params'];
207
- adsExternalApi?: AdmanInitParams['externalApi'];
205
+ duration?: number;
206
+ adsParams?: AdsParams;
208
207
  videoEpisodes?: IVideoEpisode[];
209
208
  previewThumbsData?: ITimelinePreviewThumbsData;
210
209
  isClip?: boolean;
@@ -269,7 +268,7 @@ export interface IVKVideoPlayerConfig {
269
268
  supportLink?: string;
270
269
  showAds?: boolean;
271
270
  adsSlotId?: number;
272
- adsParams?: AdmanInitParams['params'];
271
+ adsParams?: AdsParams;
273
272
  /** @deprecated */
274
273
  adsPreviewParam?: number;
275
274
  adsAutoplayParam?: boolean;
@@ -1,39 +0,0 @@
1
- import type { Milliseconds } from '@vkontakte/videoplayer-shared';
2
- import type { Readable } from 'svelte/store';
3
- export type ExternalActions = {
4
- switchFromAdsToVideo: (callPlay?: boolean) => void;
5
- switchFromVideoToAds: () => void;
6
- setMuted: (muted: boolean) => void;
7
- };
8
- export type AdsParams = Record<string, unknown>;
9
- export interface IAdmanInitParamsExternalApi {
10
- videoGetAds?: (p: AdsParams) => Promise<Record<string, unknown> | null>;
11
- videoTrackAdEvent?: (sectionKey: string, bannerId: string) => Promise<void>;
12
- }
13
- export type AdmanInitParams = {
14
- width: number;
15
- height: number;
16
- isFullscreen: boolean;
17
- isAutoplay: boolean;
18
- slotId: number;
19
- params?: AdsParams;
20
- duration: number;
21
- previewParam?: number;
22
- adsContainer: HTMLElement;
23
- adsVideoElement: HTMLVideoElement;
24
- paramsOverride?: AdsParams;
25
- externalApi?: IAdmanInitParamsExternalApi;
26
- };
27
- export type IPlayerState = {
28
- vsid: Readable<string | undefined>;
29
- };
30
- export interface IConfig {
31
- loadTimeout: Milliseconds;
32
- initTimeout: Milliseconds;
33
- runtimeTimeout: Milliseconds;
34
- useAdmanFromNPM: boolean;
35
- volumeMultiplier: number;
36
- isVsidOriginal: boolean;
37
- usePuid: boolean;
38
- debug: boolean;
39
- }