@evergis/api 3.0.175 → 3.0.176

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.
@@ -36,6 +36,9 @@ function _defineProperties(target, props) {
36
36
  function _createClass(Constructor, protoProps, staticProps) {
37
37
  if (protoProps) _defineProperties(Constructor.prototype, protoProps);
38
38
  if (staticProps) _defineProperties(Constructor, staticProps);
39
+ Object.defineProperty(Constructor, "prototype", {
40
+ writable: false
41
+ });
39
42
  return Constructor;
40
43
  }
41
44
 
@@ -69,6 +72,9 @@ function _inherits(subClass, superClass) {
69
72
  configurable: true
70
73
  }
71
74
  });
75
+ Object.defineProperty(subClass, "prototype", {
76
+ writable: false
77
+ });
72
78
  if (superClass) _setPrototypeOf(subClass, superClass);
73
79
  }
74
80
 
@@ -127,6 +133,8 @@ function _assertThisInitialized(self) {
127
133
  function _possibleConstructorReturn(self, call) {
128
134
  if (call && (typeof call === "object" || typeof call === "function")) {
129
135
  return call;
136
+ } else if (call !== void 0) {
137
+ throw new TypeError("Derived constructors may only return object or undefined");
130
138
  }
131
139
 
132
140
  return _assertThisInitialized(self);
@@ -160,7 +168,7 @@ function _superPropBase(object, property) {
160
168
  return object;
161
169
  }
162
170
 
163
- function _get(target, property, receiver) {
171
+ function _get() {
164
172
  if (typeof Reflect !== "undefined" && Reflect.get) {
165
173
  _get = Reflect.get;
166
174
  } else {
@@ -171,14 +179,14 @@ function _get(target, property, receiver) {
171
179
  var desc = Object.getOwnPropertyDescriptor(base, property);
172
180
 
173
181
  if (desc.get) {
174
- return desc.get.call(receiver);
182
+ return desc.get.call(arguments.length < 3 ? target : receiver);
175
183
  }
176
184
 
177
185
  return desc.value;
178
186
  };
179
187
  }
180
188
 
181
- return _get(target, property, receiver || target);
189
+ return _get.apply(this, arguments);
182
190
  }
183
191
 
184
192
  let HttpClient = /*#__PURE__*/function () {
@@ -4048,6 +4056,16 @@ let Layers = /*#__PURE__*/function (_LayersService) {
4048
4056
  value: function update(configuration) {
4049
4057
  return this.updatePostgresLayerService(configuration.name, configuration);
4050
4058
  }
4059
+ }, {
4060
+ key: "createQueryLayer",
4061
+ value: function createQueryLayer(configuration) {
4062
+ return this.publishQueryLayerService(configuration);
4063
+ }
4064
+ }, {
4065
+ key: "updateQueryLayer",
4066
+ value: function updateQueryLayer(configuration) {
4067
+ return this.updateQueryLayerService(configuration.name, configuration);
4068
+ }
4051
4069
  }, {
4052
4070
  key: "remove",
4053
4071
  value: async function remove(name) {
@@ -4500,8 +4518,8 @@ let Notification = /*#__PURE__*/function (_NotificationService) {
4500
4518
  || event.code === 4002
4501
4519
  /* InvalidSession */
4502
4520
  ) {
4503
- _this.connectStatus = exports.ConnectionStatus.SessionClosed;
4504
- } else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
4521
+ _this.connectStatus = exports.ConnectionStatus.SessionClosed;
4522
+ } else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
4505
4523
  _this.connectStatus = exports.ConnectionStatus.Break;
4506
4524
  _this.reconnectTries++;
4507
4525
 
@@ -5333,12 +5351,12 @@ let Resources = /*#__PURE__*/function () {
5333
5351
  }, {
5334
5352
  key: "getDependentNames",
5335
5353
  value: function getDependentNames(deps, depType) {
5336
- return deps.filter((_ref) => {
5354
+ return deps.filter(_ref => {
5337
5355
  let {
5338
5356
  type
5339
5357
  } = _ref;
5340
5358
  return type === depType;
5341
- }).map((_ref2) => {
5359
+ }).map(_ref2 => {
5342
5360
  let {
5343
5361
  name
5344
5362
  } = _ref2;
@@ -5794,7 +5812,7 @@ let Scheduler = /*#__PURE__*/function (_SchedulerService) {
5794
5812
  const taskProgress = await this.getTaskProgress(id);
5795
5813
  this.resolveTaskStatus(taskProgress, resolve, reject);
5796
5814
 
5797
- const taskResultCallback = async (_ref) => {
5815
+ const taskResultCallback = async _ref => {
5798
5816
  let {
5799
5817
  data
5800
5818
  } = _ref;