@evergis/api 3.0.178 → 3.0.180
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.
- package/LICENSE +20 -20
- package/README.md +21 -21
- package/dist/__generated__/data-contracts.d.ts +180 -180
- package/dist/api.cjs.development.js +16 -8
- package/dist/api.cjs.development.js.map +1 -1
- package/dist/api.cjs.production.min.js +1 -1
- package/dist/api.cjs.production.min.js.map +1 -1
- package/dist/api.esm.js +195 -187
- package/dist/api.esm.js.map +1 -1
- package/package.json +2 -2
|
@@ -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(
|
|
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(
|
|
189
|
+
return _get.apply(this, arguments);
|
|
182
190
|
}
|
|
183
191
|
|
|
184
192
|
let HttpClient = /*#__PURE__*/function () {
|
|
@@ -4535,8 +4543,8 @@ let Notification = /*#__PURE__*/function (_NotificationService) {
|
|
|
4535
4543
|
|| event.code === 4002
|
|
4536
4544
|
/* InvalidSession */
|
|
4537
4545
|
) {
|
|
4538
|
-
|
|
4539
|
-
|
|
4546
|
+
_this.connectStatus = exports.ConnectionStatus.SessionClosed;
|
|
4547
|
+
} else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
|
|
4540
4548
|
_this.connectStatus = exports.ConnectionStatus.Break;
|
|
4541
4549
|
_this.reconnectTries++;
|
|
4542
4550
|
|
|
@@ -5368,12 +5376,12 @@ let Resources = /*#__PURE__*/function () {
|
|
|
5368
5376
|
}, {
|
|
5369
5377
|
key: "getDependentNames",
|
|
5370
5378
|
value: function getDependentNames(deps, depType) {
|
|
5371
|
-
return deps.filter(
|
|
5379
|
+
return deps.filter(_ref => {
|
|
5372
5380
|
let {
|
|
5373
5381
|
type
|
|
5374
5382
|
} = _ref;
|
|
5375
5383
|
return type === depType;
|
|
5376
|
-
}).map(
|
|
5384
|
+
}).map(_ref2 => {
|
|
5377
5385
|
let {
|
|
5378
5386
|
name
|
|
5379
5387
|
} = _ref2;
|
|
@@ -5829,7 +5837,7 @@ let Scheduler = /*#__PURE__*/function (_SchedulerService) {
|
|
|
5829
5837
|
const taskProgress = await this.getTaskProgress(id);
|
|
5830
5838
|
this.resolveTaskStatus(taskProgress, resolve, reject);
|
|
5831
5839
|
|
|
5832
|
-
const taskResultCallback = async
|
|
5840
|
+
const taskResultCallback = async _ref => {
|
|
5833
5841
|
let {
|
|
5834
5842
|
data
|
|
5835
5843
|
} = _ref;
|