@pendo/agent 2.328.0 → 2.328.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/dom.esm.js CHANGED
@@ -7497,7 +7497,7 @@ function applyMatrix2dRect(matrix2d, rect) {
7497
7497
  return transformedRect;
7498
7498
  }
7499
7499
 
7500
- var VERSION = '2.328.0_';
7500
+ var VERSION = '2.328.1_';
7501
7501
 
7502
7502
  var decodeURIComponent = _.isFunction(window.decodeURIComponent) ? window.decodeURIComponent : _.identity;
7503
7503
 
@@ -7755,7 +7755,7 @@ var agentStorage = (function () {
7755
7755
  function read(name, isPlain, cookieSuffix) {
7756
7756
  isPlain = registry.getKeyConfig(name, 'isPlain', isPlain);
7757
7757
  cookieSuffix = registry.getKeyConfig(name, 'cookieSuffix', cookieSuffix);
7758
- var keyLocalStorageOnly = registry.getKeyConfig(name, 'localStorageOnly', false);
7758
+ var keyLocalStorageOnly = registry.getKeyConfig(name, 'localStorageOnly');
7759
7759
  var key = !isPlain ? getPendoCookieKey(name, cookieSuffix) : name;
7760
7760
  var rawValue;
7761
7761
  var deserialize = registry.getKeyDeserializer(name);
@@ -7825,7 +7825,7 @@ var agentStorage = (function () {
7825
7825
  isPlain = registry.getKeyConfig(name, 'isPlain', isPlain);
7826
7826
  isSecure = registry.getKeyConfig(name, 'isSecure', isSecure);
7827
7827
  cookieSuffix = registry.getKeyConfig(name, 'cookieSuffix', cookieSuffix);
7828
- var keyLocalStorageOnly = registry.getKeyConfig(name, 'localStorageOnly', false);
7828
+ var keyLocalStorageOnly = registry.getKeyConfig(name, 'localStorageOnly');
7829
7829
  val = registry.getKeySerializer(name)(val);
7830
7830
  var key = !isPlain ? getPendoCookieKey(name, cookieSuffix) : name;
7831
7831
  resetCache(storageAvailable);
@@ -7866,7 +7866,7 @@ var agentStorage = (function () {
7866
7866
  function clear(name, isPlain, cookieSuffix) {
7867
7867
  isPlain = registry.getKeyConfig(name, 'isPlain', isPlain);
7868
7868
  cookieSuffix = registry.getKeyConfig(name, 'cookieSuffix', cookieSuffix);
7869
- var keyLocalStorageOnly = registry.getKeyConfig(name, 'localStorageOnly', false);
7869
+ var keyLocalStorageOnly = registry.getKeyConfig(name, 'localStorageOnly');
7870
7870
  var key = !isPlain ? getPendoCookieKey(name, cookieSuffix) : name;
7871
7871
  if (storageIsDisabled()) {
7872
7872
  delete inMemoryStorage[key];