@evergis/api 3.0.103 → 3.0.106

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.
@@ -35,9 +35,6 @@ function _defineProperties(target, props) {
35
35
  function _createClass(Constructor, protoProps, staticProps) {
36
36
  if (protoProps) _defineProperties(Constructor.prototype, protoProps);
37
37
  if (staticProps) _defineProperties(Constructor, staticProps);
38
- Object.defineProperty(Constructor, "prototype", {
39
- writable: false
40
- });
41
38
  return Constructor;
42
39
  }
43
40
 
@@ -71,9 +68,6 @@ function _inherits(subClass, superClass) {
71
68
  configurable: true
72
69
  }
73
70
  });
74
- Object.defineProperty(subClass, "prototype", {
75
- writable: false
76
- });
77
71
  if (superClass) _setPrototypeOf(subClass, superClass);
78
72
  }
79
73
 
@@ -132,8 +126,6 @@ function _assertThisInitialized(self) {
132
126
  function _possibleConstructorReturn(self, call) {
133
127
  if (call && (typeof call === "object" || typeof call === "function")) {
134
128
  return call;
135
- } else if (call !== void 0) {
136
- throw new TypeError("Derived constructors may only return object or undefined");
137
129
  }
138
130
 
139
131
  return _assertThisInitialized(self);
@@ -167,7 +159,7 @@ function _superPropBase(object, property) {
167
159
  return object;
168
160
  }
169
161
 
170
- function _get() {
162
+ function _get(target, property, receiver) {
171
163
  if (typeof Reflect !== "undefined" && Reflect.get) {
172
164
  _get = Reflect.get;
173
165
  } else {
@@ -178,14 +170,14 @@ function _get() {
178
170
  var desc = Object.getOwnPropertyDescriptor(base, property);
179
171
 
180
172
  if (desc.get) {
181
- return desc.get.call(arguments.length < 3 ? target : receiver);
173
+ return desc.get.call(receiver);
182
174
  }
183
175
 
184
176
  return desc.value;
185
177
  };
186
178
  }
187
179
 
188
- return _get.apply(this, arguments);
180
+ return _get(target, property, receiver || target);
189
181
  }
190
182
 
191
183
  let HttpClient = /*#__PURE__*/function () {
@@ -893,8 +885,8 @@ let Notification = /*#__PURE__*/function (_NotificationService) {
893
885
  || event.code === 4002
894
886
  /* InvalidSession */
895
887
  ) {
896
- _this.connectStatus = exports.ConnectionStatus.SessionClosed;
897
- } else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
888
+ _this.connectStatus = exports.ConnectionStatus.SessionClosed;
889
+ } else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
898
890
  _this.connectStatus = exports.ConnectionStatus.Break;
899
891
  _this.reconnectTries++;
900
892
 
@@ -1400,7 +1392,7 @@ let Scheduler = /*#__PURE__*/function (_SchedulerService) {
1400
1392
  const taskProgress = await this.getTaskProgress(id);
1401
1393
  this.resolveTaskStatus(taskProgress, resolve, reject);
1402
1394
 
1403
- const taskResultCallback = async _ref => {
1395
+ const taskResultCallback = async (_ref) => {
1404
1396
  let {
1405
1397
  data
1406
1398
  } = _ref;
@@ -3540,12 +3532,12 @@ let Resources = /*#__PURE__*/function () {
3540
3532
  }, {
3541
3533
  key: "getDependentNames",
3542
3534
  value: function getDependentNames(deps, depType) {
3543
- return deps.filter(_ref => {
3535
+ return deps.filter((_ref) => {
3544
3536
  let {
3545
3537
  type
3546
3538
  } = _ref;
3547
3539
  return type === depType;
3548
- }).map(_ref2 => {
3540
+ }).map((_ref2) => {
3549
3541
  let {
3550
3542
  name
3551
3543
  } = _ref2;