stormcloud-video-player 0.8.31 → 0.8.32
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/dist/stormcloud-vp.min.js +1 -1
- package/lib/index.cjs +16 -0
- package/lib/index.cjs.map +1 -1
- package/lib/index.js +16 -0
- package/lib/index.js.map +1 -1
- package/lib/player/AdBreakOrchestrator.d.cts +1 -1
- package/lib/player/AdConfigManager.d.cts +1 -1
- package/lib/player/AdTimingService.d.cts +1 -1
- package/lib/player/HlsEngine.d.cts +1 -1
- package/lib/player/PlayerControls.d.cts +1 -1
- package/lib/player/Scte35CueManager.d.cts +1 -1
- package/lib/player/Scte35Parser.d.cts +1 -1
- package/lib/player/StormcloudVideoPlayer.cjs +16 -0
- package/lib/player/StormcloudVideoPlayer.cjs.map +1 -1
- package/lib/player/StormcloudVideoPlayer.d.cts +1 -1
- package/lib/player/playerTypes.d.cts +1 -1
- package/lib/players/HlsPlayer.cjs +16 -0
- package/lib/players/HlsPlayer.cjs.map +1 -1
- package/lib/players/HlsPlayer.d.cts +1 -1
- package/lib/players/index.cjs +16 -0
- package/lib/players/index.cjs.map +1 -1
- package/lib/sdk/hlsAdPlayer.d.cts +1 -1
- package/lib/sdk/pal.cjs +16 -0
- package/lib/sdk/pal.cjs.map +1 -1
- package/lib/types-e6QV7SBp.d.cts +132 -0
- package/lib/ui/StormcloudVideoPlayer.cjs +16 -0
- package/lib/ui/StormcloudVideoPlayer.cjs.map +1 -1
- package/lib/ui/StormcloudVideoPlayer.d.cts +1 -1
- package/lib/utils/tracking.d.cts +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { a as Scte35Marker, S as StormcloudVideoPlayerConfig, A as AdController } from '../types-e6QV7SBp.cjs';
|
|
2
2
|
import { AdTimingService } from './AdTimingService.cjs';
|
|
3
3
|
import { AdConfigManager } from './AdConfigManager.cjs';
|
|
4
4
|
import { Scte35CueManager } from './Scte35CueManager.cjs';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { b as AdBreak,
|
|
1
|
+
import { b as AdBreak, S as StormcloudVideoPlayerConfig, A as AdController } from '../types-e6QV7SBp.cjs';
|
|
2
2
|
import { PalNonceManager } from '../sdk/pal.cjs';
|
|
3
3
|
import { VastConsentSignals } from '../utils/vastMacros.cjs';
|
|
4
4
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { S as StormcloudVideoPlayerConfig, a as Scte35Marker, A as AdController } from '../types-e6QV7SBp.cjs';
|
|
2
2
|
|
|
3
3
|
interface AdTimingCallbacks {
|
|
4
4
|
onAdStopTimerFired(): void;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import Hls from 'hls.js';
|
|
2
|
-
import {
|
|
2
|
+
import { S as StormcloudVideoPlayerConfig, a as Scte35Marker } from '../types-e6QV7SBp.cjs';
|
|
3
3
|
import { Scte35CueContext } from './playerTypes.cjs';
|
|
4
4
|
import { Scte35CueManager } from './Scte35CueManager.cjs';
|
|
5
5
|
import { AdTimingService } from './AdTimingService.cjs';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { A as AdController } from '../types-
|
|
1
|
+
import { A as AdController } from '../types-e6QV7SBp.cjs';
|
|
2
2
|
|
|
3
3
|
declare function getAdAudioVolume(adPlayer: AdController): number;
|
|
4
4
|
declare function toggleMute(video: HTMLVideoElement, adPlayer: AdController, debug: boolean): void;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { a as Scte35Marker, I as Id3TagInfo } from '../types-e6QV7SBp.cjs';
|
|
2
2
|
|
|
3
3
|
declare function parseCueOutDuration(value: string): number | undefined;
|
|
4
4
|
declare function parseCueOutCont(value: string): {
|
|
@@ -1658,6 +1658,22 @@ function createPalNonceManager() {
|
|
|
1658
1658
|
request.videoHeight = options.videoHeight || 480;
|
|
1659
1659
|
if (options.ppid) request.ppid = options.ppid;
|
|
1660
1660
|
if (options.sessionId) request.sessionId = options.sessionId;
|
|
1661
|
+
console.log("[PAL] NonceRequest before generateNonce:", {
|
|
1662
|
+
adWillAutoPlay: request.adWillAutoPlay,
|
|
1663
|
+
adWillPlayMuted: request.adWillPlayMuted,
|
|
1664
|
+
playerVolume: request.playerVolume,
|
|
1665
|
+
continuousPlayback: request.continuousPlayback,
|
|
1666
|
+
descriptionUrl: request.descriptionUrl,
|
|
1667
|
+
iconsSupported: request.iconsSupported,
|
|
1668
|
+
playerType: request.playerType,
|
|
1669
|
+
playerVersion: request.playerVersion,
|
|
1670
|
+
supportedApiFrameworks: request.supportedApiFrameworks,
|
|
1671
|
+
url: request.url,
|
|
1672
|
+
videoWidth: request.videoWidth,
|
|
1673
|
+
videoHeight: request.videoHeight,
|
|
1674
|
+
ppid: request.ppid,
|
|
1675
|
+
sessionId: request.sessionId
|
|
1676
|
+
});
|
|
1661
1677
|
return [
|
|
1662
1678
|
4,
|
|
1663
1679
|
loader.loadNonceManager(request)
|