@bringg/dashboard-sdk 9.28.9 → 9.28.10-pre.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.
@@ -56,7 +56,7 @@ var lodash_1 = require("lodash");
56
56
  var BringgException_1 = require("../Core/BringgException");
57
57
  var Logger_1 = __importDefault(require("../Core/Logger"));
58
58
  var abort_1 = require("../utils/abort");
59
- var version = '9.28.9';
59
+ var version = '9.28.10-pre.1';
60
60
  function logErrorResponse(response) {
61
61
  var data = response.data, status = response.status;
62
62
  try {
@@ -22745,7 +22745,7 @@ var lodash_1 = __webpack_require__(96486);
22745
22745
  var BringgException_1 = __webpack_require__(43605);
22746
22746
  var Logger_1 = __importDefault(__webpack_require__(55860));
22747
22747
  var abort_1 = __webpack_require__(34179);
22748
- var version = '9.28.9';
22748
+ var version = '9.28.10-pre.1';
22749
22749
  function logErrorResponse(response) {
22750
22750
  var data = response.data, status = response.status;
22751
22751
  try {
@@ -33046,7 +33046,7 @@ var DataStore = /** @class */ (function () {
33046
33046
  };
33047
33047
  DataStore.prototype.getGroupItems = function (groupType, groupValue) {
33048
33048
  var _this = this;
33049
- var _a;
33049
+ var _a, _b;
33050
33050
  if (Array.isArray(groupValue)) {
33051
33051
  return groupValue.reduce(function (all, group) {
33052
33052
  var groupItems = _this.itemsByGroups.get(groupType).get(group) || {};
@@ -33054,7 +33054,12 @@ var DataStore = /** @class */ (function () {
33054
33054
  return all;
33055
33055
  }, {});
33056
33056
  }
33057
- return ((_a = this.itemsByGroups.get(groupType)) === null || _a === void 0 ? void 0 : _a.get(groupValue)) || {};
33057
+ var itemsByGroup = this.itemsByGroups;
33058
+ var b = this.itemsByGroups.get(groupType);
33059
+ var c = groupValue;
33060
+ console.log('rrrrrprops', itemsByGroup, b, c);
33061
+ console.log('rrrrResponse', (_a = this.itemsByGroups.get(groupType)) === null || _a === void 0 ? void 0 : _a.get(groupValue));
33062
+ return ((_b = this.itemsByGroups.get(groupType)) === null || _b === void 0 ? void 0 : _b.get(groupValue)) || {};
33058
33063
  };
33059
33064
  DataStore.prototype.getGroupKey = function (groupType, groupValue) {
33060
33065
  return "".concat(groupType, "-").concat(groupValue);