stormcloud-video-player 0.8.27 → 0.8.28

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.
@@ -1767,6 +1767,7 @@ var AdConfigManager = /*#__PURE__*/ function() {
1767
1767
  this.vmapBreaks = [];
1768
1768
  this.consumedVmapBreakIds = /* @__PURE__ */ new Set();
1769
1769
  this.streamCorrelator = generateCorrelator();
1770
+ this.viewCorrelator = generateCorrelator();
1770
1771
  this.consentSignals = {};
1771
1772
  this.podCounter = 0;
1772
1773
  this.podAssignedByPrefetch = false;
@@ -2202,7 +2203,7 @@ var AdConfigManager = /*#__PURE__*/ function() {
2202
2203
  var adWillPlayMuted = inAdBreak ? adPlayer.getOriginalMutedState() : this.video.muted;
2203
2204
  var envSignals = resolveVastEnvironmentSignals(!!this.config.ctvAdRequest);
2204
2205
  var urlWithMacros = applyVastMacros(baseUrl, {
2205
- correlator: generateCorrelator(),
2206
+ correlator: this.viewCorrelator,
2206
2207
  streamCorrelator: this.streamCorrelator,
2207
2208
  pod: this.podCounter > 0 ? this.podCounter : void 0,
2208
2209
  adPosition: this.adRequestPositionInBreak,
@@ -2248,7 +2249,7 @@ var AdConfigManager = /*#__PURE__*/ function() {
2248
2249
  var adWillPlayMuted = inAdBreak ? adPlayer.getOriginalMutedState() : this.video.muted;
2249
2250
  var envSignals = resolveVastEnvironmentSignals(!!this.config.ctvAdRequest);
2250
2251
  var urlWithMacros = applyVastMacros(baseUrl, {
2251
- correlator: generateCorrelator(),
2252
+ correlator: this.viewCorrelator,
2252
2253
  streamCorrelator: this.streamCorrelator,
2253
2254
  pod: this.podCounter > 0 ? this.podCounter : void 0,
2254
2255
  podMaxAds: podParams.maxAds,