@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 +1 -1
- package/dist/pendo.module.js +4 -4
- package/dist/pendo.module.min.js +2 -2
- package/dist/servers.json +7 -7
- package/package.json +1 -1
package/dist/dom.esm.js
CHANGED
package/dist/pendo.module.js
CHANGED
|
@@ -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.
|
|
3909
|
-
let PACKAGE_VERSION = '2.307.
|
|
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', '
|
|
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', '
|
|
29665
|
+
const filteredTypes = ['prompt', 'agent_response'];
|
|
29666
29666
|
if (_.contains(filteredTypes, type)) {
|
|
29667
29667
|
props = applyPrivacyFilters(props);
|
|
29668
29668
|
}
|