@evergis/api 3.0.153 → 3.0.155

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,6 +35,9 @@ 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
+ });
38
41
  return Constructor;
39
42
  }
40
43
 
@@ -68,6 +71,9 @@ function _inherits(subClass, superClass) {
68
71
  configurable: true
69
72
  }
70
73
  });
74
+ Object.defineProperty(subClass, "prototype", {
75
+ writable: false
76
+ });
71
77
  if (superClass) _setPrototypeOf(subClass, superClass);
72
78
  }
73
79
 
@@ -126,6 +132,8 @@ function _assertThisInitialized(self) {
126
132
  function _possibleConstructorReturn(self, call) {
127
133
  if (call && (typeof call === "object" || typeof call === "function")) {
128
134
  return call;
135
+ } else if (call !== void 0) {
136
+ throw new TypeError("Derived constructors may only return object or undefined");
129
137
  }
130
138
 
131
139
  return _assertThisInitialized(self);
@@ -159,7 +167,7 @@ function _superPropBase(object, property) {
159
167
  return object;
160
168
  }
161
169
 
162
- function _get(target, property, receiver) {
170
+ function _get() {
163
171
  if (typeof Reflect !== "undefined" && Reflect.get) {
164
172
  _get = Reflect.get;
165
173
  } else {
@@ -170,14 +178,14 @@ function _get(target, property, receiver) {
170
178
  var desc = Object.getOwnPropertyDescriptor(base, property);
171
179
 
172
180
  if (desc.get) {
173
- return desc.get.call(receiver);
181
+ return desc.get.call(arguments.length < 3 ? target : receiver);
174
182
  }
175
183
 
176
184
  return desc.value;
177
185
  };
178
186
  }
179
187
 
180
- return _get(target, property, receiver || target);
188
+ return _get.apply(this, arguments);
181
189
  }
182
190
 
183
191
  let HttpClient = /*#__PURE__*/function () {
@@ -1095,8 +1103,8 @@ let Notification = /*#__PURE__*/function (_NotificationService) {
1095
1103
  || event.code === 4002
1096
1104
  /* InvalidSession */
1097
1105
  ) {
1098
- _this.connectStatus = exports.ConnectionStatus.SessionClosed;
1099
- } else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
1106
+ _this.connectStatus = exports.ConnectionStatus.SessionClosed;
1107
+ } else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
1100
1108
  _this.connectStatus = exports.ConnectionStatus.Break;
1101
1109
  _this.reconnectTries++;
1102
1110
 
@@ -1645,7 +1653,7 @@ let Scheduler = /*#__PURE__*/function (_SchedulerService) {
1645
1653
  const taskProgress = await this.getTaskProgress(id);
1646
1654
  this.resolveTaskStatus(taskProgress, resolve, reject);
1647
1655
 
1648
- const taskResultCallback = async (_ref) => {
1656
+ const taskResultCallback = async _ref => {
1649
1657
  let {
1650
1658
  data
1651
1659
  } = _ref;
@@ -3907,12 +3915,12 @@ let Resources = /*#__PURE__*/function () {
3907
3915
  }, {
3908
3916
  key: "getDependentNames",
3909
3917
  value: function getDependentNames(deps, depType) {
3910
- return deps.filter((_ref) => {
3918
+ return deps.filter(_ref => {
3911
3919
  let {
3912
3920
  type
3913
3921
  } = _ref;
3914
3922
  return type === depType;
3915
- }).map((_ref2) => {
3923
+ }).map(_ref2 => {
3916
3924
  let {
3917
3925
  name
3918
3926
  } = _ref2;
@@ -5765,7 +5773,7 @@ function createGuard(type) {
5765
5773
  };
5766
5774
  }
5767
5775
 
5768
- const isLayer = /*#__PURE__*/createGuard(['PostgresLayerService', 'PostgresTileLayerService']);
5776
+ const isLayer = /*#__PURE__*/createGuard(['PostgresLayerService', 'PostgresTileLayerService', 'QueryLayerService']);
5769
5777
 
5770
5778
  const addSubDomainToLocation = subDomain => window.location.protocol + "//" + subDomain + "." + window.location.host;
5771
5779
 
@@ -7112,6 +7120,9 @@ function isFeatureLayer(layer) {
7112
7120
  ReferenceJoinType["OneToMany"] = "OneToMany";
7113
7121
  ReferenceJoinType["OneToOne"] = "OneToOne";
7114
7122
  ReferenceJoinType["Intersect"] = "Intersect";
7123
+ ReferenceJoinType["RightJoin"] = "RightJoin";
7124
+ ReferenceJoinType["FullJoin"] = "FullJoin";
7125
+ ReferenceJoinType["CrossJoin"] = "CrossJoin";
7115
7126
  })(exports.ReferenceJoinType || (exports.ReferenceJoinType = {}));
7116
7127
 
7117
7128
  (function (ResourceType) {