akeyless-client-commons 1.0.188 → 1.0.189

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.
@@ -1726,9 +1726,6 @@ var TableProvider = function(props) {
1726
1726
  return !noneSearchKeys.includes(val);
1727
1727
  }).some(function(key) {
1728
1728
  var res = cleanString(String(item[key])).includes(normalizedSearchQuery);
1729
- if (res) {
1730
- console.log("searching ".concat(key, " with value ").concat(item[key], " and result is ").concat(res));
1731
- }
1732
1729
  return res;
1733
1730
  });
1734
1731
  });
@@ -1510,9 +1510,6 @@ var TableProvider = function(props) {
1510
1510
  return !noneSearchKeys.includes(val);
1511
1511
  }).some(function(key) {
1512
1512
  var res = cleanString(String(item[key])).includes(normalizedSearchQuery);
1513
- if (res) {
1514
- console.log("searching ".concat(key, " with value ").concat(item[key], " and result is ").concat(res));
1515
- }
1516
1513
  return res;
1517
1514
  });
1518
1515
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "akeyless-client-commons",
3
- "version": "1.0.188",
3
+ "version": "1.0.189",
4
4
  "scripts": {
5
5
  "build": "tsup",
6
6
  "deploy": "npm run build && npm version patch --no-git-tag-version && npm publish",