@evergis/api 3.0.162 → 3.0.163
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__/LayersService.d.ts +2 -2
- package/dist/__generated__/ProjectsService.d.ts +2 -2
- package/dist/__generated__/StatisticService.d.ts +2 -2
- package/dist/__generated__/TablesService.d.ts +2 -2
- package/dist/__generated__/WmsServerService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +211 -182
- package/dist/api.cjs.development.js +15 -16
- 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 +206 -193
- package/dist/api.esm.js.map +1 -1
- package/package.json +2 -2
|
@@ -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(
|
|
173
|
+
return desc.get.call(receiver);
|
|
182
174
|
}
|
|
183
175
|
|
|
184
176
|
return desc.value;
|
|
185
177
|
};
|
|
186
178
|
}
|
|
187
179
|
|
|
188
|
-
return _get
|
|
180
|
+
return _get(target, property, receiver || target);
|
|
189
181
|
}
|
|
190
182
|
|
|
191
183
|
let HttpClient = /*#__PURE__*/function () {
|
|
@@ -1297,8 +1289,8 @@ let Notification = /*#__PURE__*/function (_NotificationService) {
|
|
|
1297
1289
|
|| event.code === 4002
|
|
1298
1290
|
/* InvalidSession */
|
|
1299
1291
|
) {
|
|
1300
|
-
|
|
1301
|
-
|
|
1292
|
+
_this.connectStatus = exports.ConnectionStatus.SessionClosed;
|
|
1293
|
+
} else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
|
|
1302
1294
|
_this.connectStatus = exports.ConnectionStatus.Break;
|
|
1303
1295
|
_this.reconnectTries++;
|
|
1304
1296
|
|
|
@@ -1865,7 +1857,7 @@ let Scheduler = /*#__PURE__*/function (_SchedulerService) {
|
|
|
1865
1857
|
const taskProgress = await this.getTaskProgress(id);
|
|
1866
1858
|
this.resolveTaskStatus(taskProgress, resolve, reject);
|
|
1867
1859
|
|
|
1868
|
-
const taskResultCallback = async _ref => {
|
|
1860
|
+
const taskResultCallback = async (_ref) => {
|
|
1869
1861
|
let {
|
|
1870
1862
|
data
|
|
1871
1863
|
} = _ref;
|
|
@@ -4181,12 +4173,12 @@ let Resources = /*#__PURE__*/function () {
|
|
|
4181
4173
|
}, {
|
|
4182
4174
|
key: "getDependentNames",
|
|
4183
4175
|
value: function getDependentNames(deps, depType) {
|
|
4184
|
-
return deps.filter(_ref => {
|
|
4176
|
+
return deps.filter((_ref) => {
|
|
4185
4177
|
let {
|
|
4186
4178
|
type
|
|
4187
4179
|
} = _ref;
|
|
4188
4180
|
return type === depType;
|
|
4189
|
-
}).map(_ref2 => {
|
|
4181
|
+
}).map((_ref2) => {
|
|
4190
4182
|
let {
|
|
4191
4183
|
name
|
|
4192
4184
|
} = _ref2;
|
|
@@ -7175,6 +7167,13 @@ function isFeatureLayer(layer) {
|
|
|
7175
7167
|
AggregationFunction["DividedSum"] = "DividedSum";
|
|
7176
7168
|
})(exports.AggregationFunction || (exports.AggregationFunction = {}));
|
|
7177
7169
|
|
|
7170
|
+
(function (AttributeSelectorType) {
|
|
7171
|
+
AttributeSelectorType["None"] = "None";
|
|
7172
|
+
AttributeSelectorType["SelectFromHandBook"] = "SelectFromHandBook";
|
|
7173
|
+
AttributeSelectorType["SelectFromRange"] = "SelectFromRange";
|
|
7174
|
+
AttributeSelectorType["ViewHandBook"] = "ViewHandBook";
|
|
7175
|
+
})(exports.AttributeSelectorType || (exports.AttributeSelectorType = {}));
|
|
7176
|
+
|
|
7178
7177
|
(function (AttributeType) {
|
|
7179
7178
|
AttributeType["Unknown"] = "Unknown";
|
|
7180
7179
|
AttributeType["String"] = "String";
|