stormcloud-video-player 0.6.0 → 0.6.1
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 +305 -158
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +2 -0
- package/lib/index.d.ts +2 -0
- package/lib/index.js +305 -158
- package/lib/index.js.map +1 -1
- package/lib/player/StormcloudVideoPlayer.cjs +305 -158
- package/lib/player/StormcloudVideoPlayer.cjs.map +1 -1
- package/lib/players/HlsPlayer.cjs +305 -158
- package/lib/players/HlsPlayer.cjs.map +1 -1
- package/lib/players/index.cjs +305 -158
- package/lib/players/index.cjs.map +1 -1
- package/lib/sdk/vastAdLayer.cjs +253 -128
- package/lib/sdk/vastAdLayer.cjs.map +1 -1
- package/lib/sdk/vastAdLayer.d.cts +2 -0
- package/lib/ui/StormcloudVideoPlayer.cjs +305 -158
- package/lib/ui/StormcloudVideoPlayer.cjs.map +1 -1
- package/package.json +1 -1
package/lib/index.d.cts
CHANGED
|
@@ -4006,6 +4006,8 @@ declare function createVastManager(options?: VastManagerOptions): VastManager;
|
|
|
4006
4006
|
interface VastAdLayerOptions {
|
|
4007
4007
|
continueLiveStreamDuringAds?: boolean;
|
|
4008
4008
|
mainHlsInstance?: Hls;
|
|
4009
|
+
smartTVMode?: boolean;
|
|
4010
|
+
singleElementMode?: boolean;
|
|
4009
4011
|
debug?: boolean;
|
|
4010
4012
|
}
|
|
4011
4013
|
interface VastAdLayerOptionsUpdate {
|
package/lib/index.d.ts
CHANGED
|
@@ -4006,6 +4006,8 @@ declare function createVastManager(options?: VastManagerOptions): VastManager;
|
|
|
4006
4006
|
interface VastAdLayerOptions {
|
|
4007
4007
|
continueLiveStreamDuringAds?: boolean;
|
|
4008
4008
|
mainHlsInstance?: Hls;
|
|
4009
|
+
smartTVMode?: boolean;
|
|
4010
|
+
singleElementMode?: boolean;
|
|
4009
4011
|
debug?: boolean;
|
|
4010
4012
|
}
|
|
4011
4013
|
interface VastAdLayerOptionsUpdate {
|