@blotoutio/providers-evo-search-sdk 1.42.0 → 1.43.0
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/index.cjs.js +1 -7
- package/index.js +1 -7
- package/index.mjs +1 -7
- package/package.json +1 -1
package/index.cjs.js
CHANGED
|
@@ -760,14 +760,8 @@ const init = (params) => {
|
|
|
760
760
|
}
|
|
761
761
|
};
|
|
762
762
|
|
|
763
|
-
const tag = ({
|
|
763
|
+
const tag = ({ data }) => {
|
|
764
764
|
try {
|
|
765
|
-
console.log('EvoSearch SDK: Tag', {
|
|
766
|
-
eventName,
|
|
767
|
-
destination,
|
|
768
|
-
data,
|
|
769
|
-
sessionId,
|
|
770
|
-
});
|
|
771
765
|
return {
|
|
772
766
|
searchQuery: data['searchQuery'],
|
|
773
767
|
searchResults: data['searchResults'],
|
package/index.js
CHANGED
|
@@ -761,14 +761,8 @@ var ProvidersEvoSearchSdk = (function () {
|
|
|
761
761
|
}
|
|
762
762
|
};
|
|
763
763
|
|
|
764
|
-
const tag = ({
|
|
764
|
+
const tag = ({ data }) => {
|
|
765
765
|
try {
|
|
766
|
-
console.log('EvoSearch SDK: Tag', {
|
|
767
|
-
eventName,
|
|
768
|
-
destination,
|
|
769
|
-
data,
|
|
770
|
-
sessionId,
|
|
771
|
-
});
|
|
772
766
|
return {
|
|
773
767
|
searchQuery: data['searchQuery'],
|
|
774
768
|
searchResults: data['searchResults'],
|
package/index.mjs
CHANGED
|
@@ -758,14 +758,8 @@ const init = (params) => {
|
|
|
758
758
|
}
|
|
759
759
|
};
|
|
760
760
|
|
|
761
|
-
const tag = ({
|
|
761
|
+
const tag = ({ data }) => {
|
|
762
762
|
try {
|
|
763
|
-
console.log('EvoSearch SDK: Tag', {
|
|
764
|
-
eventName,
|
|
765
|
-
destination,
|
|
766
|
-
data,
|
|
767
|
-
sessionId,
|
|
768
|
-
});
|
|
769
763
|
return {
|
|
770
764
|
searchQuery: data['searchQuery'],
|
|
771
765
|
searchResults: data['searchResults'],
|