@pendo/agent 2.307.0 → 2.307.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
@@ -7360,7 +7360,7 @@ function getScreenPosition(element) {
7360
7360
  };
7361
7361
  }
7362
7362
 
7363
- var VERSION = '2.307.0_';
7363
+ var VERSION = '2.307.1_';
7364
7364
 
7365
7365
  var decodeURIComponent = _.isFunction(window.decodeURIComponent) ? window.decodeURIComponent : _.identity;
7366
7366
 
@@ -3905,8 +3905,8 @@ let SERVER = '';
3905
3905
  let ASSET_HOST = '';
3906
3906
  let ASSET_PATH = '';
3907
3907
  let DESIGNER_SERVER = '';
3908
- let VERSION = '2.307.0_';
3909
- let PACKAGE_VERSION = '2.307.0';
3908
+ let VERSION = '2.307.1_';
3909
+ let PACKAGE_VERSION = '2.307.1';
3910
3910
  let LOADER = 'xhr';
3911
3911
  /* eslint-enable agent-eslint-rules/no-gulp-env-references */
3912
3912
  /**
@@ -29647,7 +29647,7 @@ const privacyFilterCache = new Map();
29647
29647
  *
29648
29648
  * @access public
29649
29649
  * @category Events
29650
- * @param {string} type type of the collected agentic event ['prompt', 'system_response', 'user_reaction']
29650
+ * @param {string} type type of the collected agentic event ['prompt', 'agent_response', 'user_reaction']
29651
29651
  * @param {Object} props event-specific properties object
29652
29652
  * @example
29653
29653
  * pendo.trackAgent('type_of_event', {
@@ -29662,7 +29662,7 @@ const privacyFilterCache = new Map();
29662
29662
  * })
29663
29663
  */
29664
29664
  function trackAgent(type, props) {
29665
- const filteredTypes = ['prompt', 'system_response'];
29665
+ const filteredTypes = ['prompt', 'agent_response'];
29666
29666
  if (_.contains(filteredTypes, type)) {
29667
29667
  props = applyPrivacyFilters(props);
29668
29668
  }