@evergis/api 4.0.21 → 4.0.22
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/Api.d.ts +1 -6
- package/dist/__generated__/AccountService.d.ts +13 -1
- package/dist/__generated__/LayersService.d.ts +2 -98
- package/dist/__generated__/StatisticService.d.ts +4 -40
- package/dist/__generated__/TablesService.d.ts +2 -2
- package/dist/__generated__/WmsServerService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +293 -910
- package/dist/api.cjs.development.js +142 -1197
- 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 +453 -1517
- package/dist/api.esm.js.map +1 -1
- package/dist/services/Statistic.d.ts +2 -4
- package/dist/services/index.d.ts +0 -5
- package/package.json +3 -3
- package/dist/__generated__/CamerasService.d.ts +0 -105
- package/dist/__generated__/ExternalProvidersService.d.ts +0 -140
- package/dist/__generated__/IceRouterService.d.ts +0 -33
- package/dist/__generated__/PrintService.d.ts +0 -81
- package/dist/__generated__/StyleService.d.ts +0 -81
- package/dist/services/Cameras.d.ts +0 -3
- package/dist/services/External.d.ts +0 -7
- package/dist/services/IceRouter.d.ts +0 -3
- package/dist/services/Print.d.ts +0 -3
- package/dist/services/Styles.d.ts +0 -3
package/dist/api.esm.js
CHANGED
|
@@ -24,9 +24,6 @@ function _defineProperties(target, props) {
|
|
|
24
24
|
function _createClass(Constructor, protoProps, staticProps) {
|
|
25
25
|
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
|
26
26
|
if (staticProps) _defineProperties(Constructor, staticProps);
|
|
27
|
-
Object.defineProperty(Constructor, "prototype", {
|
|
28
|
-
writable: false
|
|
29
|
-
});
|
|
30
27
|
return Constructor;
|
|
31
28
|
}
|
|
32
29
|
|
|
@@ -60,9 +57,6 @@ function _inherits(subClass, superClass) {
|
|
|
60
57
|
configurable: true
|
|
61
58
|
}
|
|
62
59
|
});
|
|
63
|
-
Object.defineProperty(subClass, "prototype", {
|
|
64
|
-
writable: false
|
|
65
|
-
});
|
|
66
60
|
if (superClass) _setPrototypeOf(subClass, superClass);
|
|
67
61
|
}
|
|
68
62
|
|
|
@@ -121,8 +115,6 @@ function _assertThisInitialized(self) {
|
|
|
121
115
|
function _possibleConstructorReturn(self, call) {
|
|
122
116
|
if (call && (typeof call === "object" || typeof call === "function")) {
|
|
123
117
|
return call;
|
|
124
|
-
} else if (call !== void 0) {
|
|
125
|
-
throw new TypeError("Derived constructors may only return object or undefined");
|
|
126
118
|
}
|
|
127
119
|
|
|
128
120
|
return _assertThisInitialized(self);
|
|
@@ -156,7 +148,7 @@ function _superPropBase(object, property) {
|
|
|
156
148
|
return object;
|
|
157
149
|
}
|
|
158
150
|
|
|
159
|
-
function _get() {
|
|
151
|
+
function _get(target, property, receiver) {
|
|
160
152
|
if (typeof Reflect !== "undefined" && Reflect.get) {
|
|
161
153
|
_get = Reflect.get;
|
|
162
154
|
} else {
|
|
@@ -167,14 +159,14 @@ function _get() {
|
|
|
167
159
|
var desc = Object.getOwnPropertyDescriptor(base, property);
|
|
168
160
|
|
|
169
161
|
if (desc.get) {
|
|
170
|
-
return desc.get.call(
|
|
162
|
+
return desc.get.call(receiver);
|
|
171
163
|
}
|
|
172
164
|
|
|
173
165
|
return desc.value;
|
|
174
166
|
};
|
|
175
167
|
}
|
|
176
168
|
|
|
177
|
-
return _get
|
|
169
|
+
return _get(target, property, receiver || target);
|
|
178
170
|
}
|
|
179
171
|
|
|
180
172
|
const API_USER_INFO_KEY = "@evergis/user-info";
|
|
@@ -1462,6 +1454,23 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
1462
1454
|
value: function removeUser(username) {
|
|
1463
1455
|
return this.http.delete("/account/user/" + username, null).then(() => {});
|
|
1464
1456
|
}
|
|
1457
|
+
/**
|
|
1458
|
+
* No description
|
|
1459
|
+
*
|
|
1460
|
+
* @tags Account
|
|
1461
|
+
* @name CreateNamespace
|
|
1462
|
+
* @operationId AccountController_CreateNamespace
|
|
1463
|
+
* @summary Creates a new namespace.
|
|
1464
|
+
* @request POST:/account/namespace
|
|
1465
|
+
* @secure
|
|
1466
|
+
* @response `200` OK
|
|
1467
|
+
*/
|
|
1468
|
+
|
|
1469
|
+
}, {
|
|
1470
|
+
key: "createNamespace",
|
|
1471
|
+
value: function createNamespace(query) {
|
|
1472
|
+
return this.http.post("/account/namespace", null, query).json();
|
|
1473
|
+
}
|
|
1465
1474
|
/**
|
|
1466
1475
|
* No description
|
|
1467
1476
|
*
|
|
@@ -2075,214 +2084,6 @@ let BulkOperations = /*#__PURE__*/function (_BulkOperationsServic) {
|
|
|
2075
2084
|
return _createClass(BulkOperations);
|
|
2076
2085
|
}(BulkOperationsService);
|
|
2077
2086
|
|
|
2078
|
-
const _excluded$1 = ["cameraId"],
|
|
2079
|
-
_excluded2 = ["cameraId"],
|
|
2080
|
-
_excluded3 = ["cameraId"],
|
|
2081
|
-
_excluded4 = ["cameraId"],
|
|
2082
|
-
_excluded5 = ["cameraId"],
|
|
2083
|
-
_excluded6 = ["cameraId"];
|
|
2084
|
-
/**
|
|
2085
|
-
* @title Spatial Processing Core API
|
|
2086
|
-
* @version 1.5.1.0
|
|
2087
|
-
* @baseUrl /sp
|
|
2088
|
-
*/
|
|
2089
|
-
|
|
2090
|
-
let CamerasService = /*#__PURE__*/function (_Service) {
|
|
2091
|
-
_inherits(CamerasService, _Service);
|
|
2092
|
-
|
|
2093
|
-
var _super = /*#__PURE__*/_createSuper(CamerasService);
|
|
2094
|
-
|
|
2095
|
-
function CamerasService() {
|
|
2096
|
-
_classCallCheck(this, CamerasService);
|
|
2097
|
-
|
|
2098
|
-
return _super.apply(this, arguments);
|
|
2099
|
-
}
|
|
2100
|
-
|
|
2101
|
-
_createClass(CamerasService, [{
|
|
2102
|
-
key: "getCameras",
|
|
2103
|
-
value:
|
|
2104
|
-
/**
|
|
2105
|
-
* No description
|
|
2106
|
-
*
|
|
2107
|
-
* @tags Cameras
|
|
2108
|
-
* @name GetCameras
|
|
2109
|
-
* @operationId CamerasController_GetCameras
|
|
2110
|
-
* @summary Get cameras list.
|
|
2111
|
-
* @request GET:/cameras
|
|
2112
|
-
* @secure
|
|
2113
|
-
* @response `200` OK
|
|
2114
|
-
*/
|
|
2115
|
-
function getCameras(query) {
|
|
2116
|
-
return this.http.get("/cameras", query).json();
|
|
2117
|
-
}
|
|
2118
|
-
/**
|
|
2119
|
-
* No description
|
|
2120
|
-
*
|
|
2121
|
-
* @tags Cameras
|
|
2122
|
-
* @name GetArchiveFeed
|
|
2123
|
-
* @operationId CamerasController_GetArchiveFeed
|
|
2124
|
-
* @summary Streams an FLV-over-HTTP archive feed starting at specific time.
|
|
2125
|
-
* @request GET:/cameras/{cameraId}/archiveFeed
|
|
2126
|
-
* @secure
|
|
2127
|
-
* @response `200` OK
|
|
2128
|
-
*/
|
|
2129
|
-
|
|
2130
|
-
}, {
|
|
2131
|
-
key: "getArchiveFeed",
|
|
2132
|
-
value: function getArchiveFeed(_ref) {
|
|
2133
|
-
let {
|
|
2134
|
-
cameraId
|
|
2135
|
-
} = _ref,
|
|
2136
|
-
query = _objectWithoutPropertiesLoose(_ref, _excluded$1);
|
|
2137
|
-
|
|
2138
|
-
return this.http.get("/cameras/" + cameraId + "/archiveFeed", query).blob();
|
|
2139
|
-
}
|
|
2140
|
-
/**
|
|
2141
|
-
* No description
|
|
2142
|
-
*
|
|
2143
|
-
* @tags Cameras
|
|
2144
|
-
* @name GetArchiveTimeline
|
|
2145
|
-
* @operationId CamerasController_GetArchiveTimeline
|
|
2146
|
-
* @summary Returns a list of records available within a given timeframe.
|
|
2147
|
-
* @request GET:/cameras/{cameraId}/archiveTimeline
|
|
2148
|
-
* @secure
|
|
2149
|
-
* @response `200` OK
|
|
2150
|
-
*/
|
|
2151
|
-
|
|
2152
|
-
}, {
|
|
2153
|
-
key: "getArchiveTimeline",
|
|
2154
|
-
value: function getArchiveTimeline(_ref2) {
|
|
2155
|
-
let {
|
|
2156
|
-
cameraId
|
|
2157
|
-
} = _ref2,
|
|
2158
|
-
query = _objectWithoutPropertiesLoose(_ref2, _excluded2);
|
|
2159
|
-
|
|
2160
|
-
return this.http.get("/cameras/" + cameraId + "/archiveTimeline", query).json();
|
|
2161
|
-
}
|
|
2162
|
-
/**
|
|
2163
|
-
* No description
|
|
2164
|
-
*
|
|
2165
|
-
* @tags Cameras
|
|
2166
|
-
* @name GetArchiveCalendar
|
|
2167
|
-
* @operationId CamerasController_GetArchiveCalendar
|
|
2168
|
-
* @summary Returns a list of records available within a given timeframe.
|
|
2169
|
-
* @request GET:/cameras/{cameraId}/archiveCalendar
|
|
2170
|
-
* @secure
|
|
2171
|
-
* @response `200` OK
|
|
2172
|
-
*/
|
|
2173
|
-
|
|
2174
|
-
}, {
|
|
2175
|
-
key: "getArchiveCalendar",
|
|
2176
|
-
value: function getArchiveCalendar(_ref3) {
|
|
2177
|
-
let {
|
|
2178
|
-
cameraId
|
|
2179
|
-
} = _ref3,
|
|
2180
|
-
query = _objectWithoutPropertiesLoose(_ref3, _excluded3);
|
|
2181
|
-
|
|
2182
|
-
return this.http.get("/cameras/" + cameraId + "/archiveCalendar", query).json();
|
|
2183
|
-
}
|
|
2184
|
-
/**
|
|
2185
|
-
* No description
|
|
2186
|
-
*
|
|
2187
|
-
* @tags Cameras
|
|
2188
|
-
* @name GetArchiveSnapshot
|
|
2189
|
-
* @operationId CamerasController_GetArchiveSnapshot
|
|
2190
|
-
* @summary Returns a JPEG image from the Camera’s archive.
|
|
2191
|
-
* @request GET:/cameras/{cameraId}/archiveSnapshot
|
|
2192
|
-
* @secure
|
|
2193
|
-
* @response `200` OK
|
|
2194
|
-
*/
|
|
2195
|
-
|
|
2196
|
-
}, {
|
|
2197
|
-
key: "getArchiveSnapshot",
|
|
2198
|
-
value: function getArchiveSnapshot(_ref4) {
|
|
2199
|
-
let {
|
|
2200
|
-
cameraId
|
|
2201
|
-
} = _ref4,
|
|
2202
|
-
query = _objectWithoutPropertiesLoose(_ref4, _excluded4);
|
|
2203
|
-
|
|
2204
|
-
return this.http.get("/cameras/" + cameraId + "/archiveSnapshot", query).blob();
|
|
2205
|
-
}
|
|
2206
|
-
/**
|
|
2207
|
-
* No description
|
|
2208
|
-
*
|
|
2209
|
-
* @tags Cameras
|
|
2210
|
-
* @name GetLiveFeed
|
|
2211
|
-
* @operationId CamerasController_GetLiveFeed
|
|
2212
|
-
* @summary Streams live video feed from the Camera.
|
|
2213
|
-
* @request GET:/cameras/{cameraId}/liveFeed
|
|
2214
|
-
* @secure
|
|
2215
|
-
* @response `200` OK
|
|
2216
|
-
*/
|
|
2217
|
-
|
|
2218
|
-
}, {
|
|
2219
|
-
key: "getLiveFeed",
|
|
2220
|
-
value: function getLiveFeed(_ref5) {
|
|
2221
|
-
let {
|
|
2222
|
-
cameraId
|
|
2223
|
-
} = _ref5,
|
|
2224
|
-
query = _objectWithoutPropertiesLoose(_ref5, _excluded5);
|
|
2225
|
-
|
|
2226
|
-
return this.http.get("/cameras/" + cameraId + "/liveFeed", query).blob();
|
|
2227
|
-
}
|
|
2228
|
-
/**
|
|
2229
|
-
* No description
|
|
2230
|
-
*
|
|
2231
|
-
* @tags Cameras
|
|
2232
|
-
* @name GetLiveSnapshot
|
|
2233
|
-
* @operationId CamerasController_GetLiveSnapshot
|
|
2234
|
-
* @summary Returns a JPEG image from the Camera’s live feed.
|
|
2235
|
-
* @request GET:/cameras/{cameraId}/liveSnapshot
|
|
2236
|
-
* @secure
|
|
2237
|
-
* @response `200` OK
|
|
2238
|
-
*/
|
|
2239
|
-
|
|
2240
|
-
}, {
|
|
2241
|
-
key: "getLiveSnapshot",
|
|
2242
|
-
value: function getLiveSnapshot(cameraId) {
|
|
2243
|
-
return this.http.get("/cameras/" + cameraId + "/liveSnapshot").blob();
|
|
2244
|
-
}
|
|
2245
|
-
/**
|
|
2246
|
-
* No description
|
|
2247
|
-
*
|
|
2248
|
-
* @tags Cameras
|
|
2249
|
-
* @name GetLivePreviewStream
|
|
2250
|
-
* @operationId CamerasController_GetLivePreviewStream
|
|
2251
|
-
* @summary Get live preview stream.
|
|
2252
|
-
* @request GET:/cameras/{cameraId}/getLivePreviewsStream
|
|
2253
|
-
* @secure
|
|
2254
|
-
* @response `200` OK
|
|
2255
|
-
*/
|
|
2256
|
-
|
|
2257
|
-
}, {
|
|
2258
|
-
key: "getLivePreviewStream",
|
|
2259
|
-
value: function getLivePreviewStream(_ref6) {
|
|
2260
|
-
let {
|
|
2261
|
-
cameraId
|
|
2262
|
-
} = _ref6,
|
|
2263
|
-
query = _objectWithoutPropertiesLoose(_ref6, _excluded6);
|
|
2264
|
-
|
|
2265
|
-
return this.http.get("/cameras/" + cameraId + "/getLivePreviewsStream", query).json();
|
|
2266
|
-
}
|
|
2267
|
-
}]);
|
|
2268
|
-
|
|
2269
|
-
return CamerasService;
|
|
2270
|
-
}(Service);
|
|
2271
|
-
|
|
2272
|
-
let Cameras = /*#__PURE__*/function (_CamerasService) {
|
|
2273
|
-
_inherits(Cameras, _CamerasService);
|
|
2274
|
-
|
|
2275
|
-
var _super = /*#__PURE__*/_createSuper(Cameras);
|
|
2276
|
-
|
|
2277
|
-
function Cameras() {
|
|
2278
|
-
_classCallCheck(this, Cameras);
|
|
2279
|
-
|
|
2280
|
-
return _super.apply(this, arguments);
|
|
2281
|
-
}
|
|
2282
|
-
|
|
2283
|
-
return _createClass(Cameras);
|
|
2284
|
-
}(CamerasService);
|
|
2285
|
-
|
|
2286
2087
|
/**
|
|
2287
2088
|
* @title Spatial Processing Core API
|
|
2288
2089
|
* @version 1.5.1.0
|
|
@@ -2605,449 +2406,173 @@ let Eql = /*#__PURE__*/function (_EqlService) {
|
|
|
2605
2406
|
* @baseUrl /sp
|
|
2606
2407
|
*/
|
|
2607
2408
|
|
|
2608
|
-
let
|
|
2609
|
-
_inherits(
|
|
2409
|
+
let FeedbackService = /*#__PURE__*/function (_Service) {
|
|
2410
|
+
_inherits(FeedbackService, _Service);
|
|
2610
2411
|
|
|
2611
|
-
var _super = /*#__PURE__*/_createSuper(
|
|
2412
|
+
var _super = /*#__PURE__*/_createSuper(FeedbackService);
|
|
2612
2413
|
|
|
2613
|
-
function
|
|
2614
|
-
_classCallCheck(this,
|
|
2414
|
+
function FeedbackService() {
|
|
2415
|
+
_classCallCheck(this, FeedbackService);
|
|
2615
2416
|
|
|
2616
2417
|
return _super.apply(this, arguments);
|
|
2617
2418
|
}
|
|
2618
2419
|
|
|
2619
|
-
_createClass(
|
|
2620
|
-
key: "
|
|
2420
|
+
_createClass(FeedbackService, [{
|
|
2421
|
+
key: "increaseResourcesLimit",
|
|
2621
2422
|
value:
|
|
2622
2423
|
/**
|
|
2623
2424
|
* No description
|
|
2624
2425
|
*
|
|
2625
|
-
* @tags
|
|
2626
|
-
* @name
|
|
2627
|
-
* @operationId
|
|
2628
|
-
* @summary
|
|
2629
|
-
* @request
|
|
2426
|
+
* @tags Feedback
|
|
2427
|
+
* @name IncreaseResourcesLimit
|
|
2428
|
+
* @operationId FeedbackController_IncreaseResourcesLimit
|
|
2429
|
+
* @summary Increase resources limit request.
|
|
2430
|
+
* @request POST:/feedback/limits
|
|
2630
2431
|
* @secure
|
|
2631
2432
|
* @response `200` OK
|
|
2632
2433
|
*/
|
|
2633
|
-
function
|
|
2634
|
-
return this.http.
|
|
2434
|
+
function increaseResourcesLimit(query) {
|
|
2435
|
+
return this.http.post("/feedback/limits", null, query).json();
|
|
2635
2436
|
}
|
|
2636
2437
|
/**
|
|
2637
2438
|
* No description
|
|
2638
2439
|
*
|
|
2639
|
-
* @tags
|
|
2640
|
-
* @name
|
|
2641
|
-
* @operationId
|
|
2642
|
-
* @summary
|
|
2643
|
-
* @request
|
|
2440
|
+
* @tags Feedback
|
|
2441
|
+
* @name MoreSymbols
|
|
2442
|
+
* @operationId FeedbackController_MoreSymbols
|
|
2443
|
+
* @summary More symbols request.
|
|
2444
|
+
* @request POST:/feedback/symbol
|
|
2644
2445
|
* @secure
|
|
2645
2446
|
* @response `200` OK
|
|
2646
2447
|
*/
|
|
2647
2448
|
|
|
2648
2449
|
}, {
|
|
2649
|
-
key: "
|
|
2650
|
-
value: function
|
|
2651
|
-
return this.http.
|
|
2450
|
+
key: "moreSymbols",
|
|
2451
|
+
value: function moreSymbols(query) {
|
|
2452
|
+
return this.http.post("/feedback/symbol", null, query).json();
|
|
2652
2453
|
}
|
|
2653
2454
|
/**
|
|
2654
2455
|
* No description
|
|
2655
2456
|
*
|
|
2656
|
-
* @tags
|
|
2657
|
-
* @name
|
|
2658
|
-
* @operationId
|
|
2659
|
-
* @summary
|
|
2660
|
-
* @request
|
|
2457
|
+
* @tags Feedback
|
|
2458
|
+
* @name Feedback
|
|
2459
|
+
* @operationId FeedbackController_Feedback
|
|
2460
|
+
* @summary Feedback request.
|
|
2461
|
+
* @request POST:/feedback
|
|
2661
2462
|
* @secure
|
|
2662
2463
|
* @response `200` OK
|
|
2663
2464
|
*/
|
|
2664
2465
|
|
|
2665
2466
|
}, {
|
|
2666
|
-
key: "
|
|
2667
|
-
value: function
|
|
2668
|
-
return this.http.
|
|
2467
|
+
key: "feedback",
|
|
2468
|
+
value: function feedback(query, data) {
|
|
2469
|
+
return this.http.post("/feedback", toFormData(data), query).json();
|
|
2669
2470
|
}
|
|
2670
|
-
|
|
2671
|
-
|
|
2672
|
-
|
|
2673
|
-
|
|
2674
|
-
|
|
2675
|
-
|
|
2676
|
-
|
|
2677
|
-
|
|
2678
|
-
|
|
2679
|
-
|
|
2680
|
-
|
|
2471
|
+
}]);
|
|
2472
|
+
|
|
2473
|
+
return FeedbackService;
|
|
2474
|
+
}(Service);
|
|
2475
|
+
|
|
2476
|
+
let Feedback = /*#__PURE__*/function (_FeedbackService) {
|
|
2477
|
+
_inherits(Feedback, _FeedbackService);
|
|
2478
|
+
|
|
2479
|
+
var _super = /*#__PURE__*/_createSuper(Feedback);
|
|
2480
|
+
|
|
2481
|
+
function Feedback() {
|
|
2482
|
+
_classCallCheck(this, Feedback);
|
|
2483
|
+
|
|
2484
|
+
return _super.apply(this, arguments);
|
|
2485
|
+
}
|
|
2486
|
+
|
|
2487
|
+
_createClass(Feedback, [{
|
|
2488
|
+
key: "postFeedback",
|
|
2489
|
+
value: function postFeedback(query, data) {
|
|
2490
|
+
return this.feedback(query, data);
|
|
2491
|
+
}
|
|
2492
|
+
}]);
|
|
2493
|
+
|
|
2494
|
+
return Feedback;
|
|
2495
|
+
}(FeedbackService);
|
|
2681
2496
|
|
|
2497
|
+
let FileUpload = /*#__PURE__*/function (_CatalogService) {
|
|
2498
|
+
_inherits(FileUpload, _CatalogService);
|
|
2499
|
+
|
|
2500
|
+
var _super = /*#__PURE__*/_createSuper(FileUpload);
|
|
2501
|
+
|
|
2502
|
+
function FileUpload() {
|
|
2503
|
+
_classCallCheck(this, FileUpload);
|
|
2504
|
+
|
|
2505
|
+
return _super.apply(this, arguments);
|
|
2506
|
+
}
|
|
2507
|
+
|
|
2508
|
+
_createClass(FileUpload, [{
|
|
2509
|
+
key: "upload",
|
|
2510
|
+
value: function upload(file, rewrite) {
|
|
2511
|
+
return this.createFile1({
|
|
2512
|
+
file,
|
|
2513
|
+
rewrite: !!rewrite
|
|
2514
|
+
});
|
|
2515
|
+
}
|
|
2682
2516
|
}, {
|
|
2683
|
-
key: "
|
|
2684
|
-
value: function
|
|
2685
|
-
return this.
|
|
2517
|
+
key: "replaceFile",
|
|
2518
|
+
value: function replaceFile(params) {
|
|
2519
|
+
return this.createFile(params);
|
|
2686
2520
|
}
|
|
2521
|
+
}]);
|
|
2522
|
+
|
|
2523
|
+
return FileUpload;
|
|
2524
|
+
}(CatalogService);
|
|
2525
|
+
|
|
2526
|
+
/**
|
|
2527
|
+
* @title Spatial Processing Core API
|
|
2528
|
+
* @version 1.5.1.0
|
|
2529
|
+
* @baseUrl /sp
|
|
2530
|
+
*/
|
|
2531
|
+
|
|
2532
|
+
let FiltersService = /*#__PURE__*/function (_Service) {
|
|
2533
|
+
_inherits(FiltersService, _Service);
|
|
2534
|
+
|
|
2535
|
+
var _super = /*#__PURE__*/_createSuper(FiltersService);
|
|
2536
|
+
|
|
2537
|
+
function FiltersService() {
|
|
2538
|
+
_classCallCheck(this, FiltersService);
|
|
2539
|
+
|
|
2540
|
+
return _super.apply(this, arguments);
|
|
2541
|
+
}
|
|
2542
|
+
|
|
2543
|
+
_createClass(FiltersService, [{
|
|
2544
|
+
key: "get",
|
|
2545
|
+
value:
|
|
2687
2546
|
/**
|
|
2688
2547
|
* No description
|
|
2689
2548
|
*
|
|
2690
|
-
* @tags
|
|
2691
|
-
* @name
|
|
2692
|
-
* @operationId
|
|
2693
|
-
* @summary
|
|
2694
|
-
* @request
|
|
2549
|
+
* @tags FiltersService
|
|
2550
|
+
* @name Get
|
|
2551
|
+
* @operationId FiltersServiceController_Get
|
|
2552
|
+
* @summary Returns the filter by its id.
|
|
2553
|
+
* @request GET:/filters/{id}
|
|
2695
2554
|
* @secure
|
|
2696
2555
|
* @response `200` OK
|
|
2697
2556
|
*/
|
|
2698
|
-
|
|
2699
|
-
|
|
2700
|
-
key: "unbindVk",
|
|
2701
|
-
value: function unbindVk() {
|
|
2702
|
-
return this.http.delete("/account/external/unbind/vk", null).then(() => {});
|
|
2557
|
+
function get(id) {
|
|
2558
|
+
return this.http.get("/filters/" + id).json();
|
|
2703
2559
|
}
|
|
2704
2560
|
/**
|
|
2705
2561
|
* No description
|
|
2706
2562
|
*
|
|
2707
|
-
* @tags
|
|
2708
|
-
* @name
|
|
2709
|
-
* @operationId
|
|
2710
|
-
* @summary
|
|
2711
|
-
* @request
|
|
2563
|
+
* @tags FiltersService
|
|
2564
|
+
* @name Update
|
|
2565
|
+
* @operationId FiltersServiceController_Update
|
|
2566
|
+
* @summary Replaces a filter and gives it a new id.
|
|
2567
|
+
* @request POST:/filters/{id}
|
|
2712
2568
|
* @secure
|
|
2713
2569
|
* @response `200` OK
|
|
2714
2570
|
*/
|
|
2715
2571
|
|
|
2716
2572
|
}, {
|
|
2717
|
-
key: "
|
|
2718
|
-
value: function
|
|
2719
|
-
return this.http.
|
|
2720
|
-
}
|
|
2721
|
-
/**
|
|
2722
|
-
* No description
|
|
2723
|
-
*
|
|
2724
|
-
* @tags ExternalProviders
|
|
2725
|
-
* @name UnbindFacebook
|
|
2726
|
-
* @operationId ExternalProvidersController_UnbindFacebook
|
|
2727
|
-
* @summary Unbind external login from current user account (google).
|
|
2728
|
-
* @request DELETE:/account/external/unbind/facebook
|
|
2729
|
-
* @secure
|
|
2730
|
-
* @response `200` OK
|
|
2731
|
-
*/
|
|
2732
|
-
|
|
2733
|
-
}, {
|
|
2734
|
-
key: "unbindFacebook",
|
|
2735
|
-
value: function unbindFacebook() {
|
|
2736
|
-
return this.http.delete("/account/external/unbind/facebook", null).then(() => {});
|
|
2737
|
-
}
|
|
2738
|
-
/**
|
|
2739
|
-
* No description
|
|
2740
|
-
*
|
|
2741
|
-
* @tags ExternalProviders
|
|
2742
|
-
* @name BindVk
|
|
2743
|
-
* @operationId ExternalProvidersController_BindVk
|
|
2744
|
-
* @summary The external login by vk.
|
|
2745
|
-
* @request GET:/account/external/bind/vk
|
|
2746
|
-
* @secure
|
|
2747
|
-
* @response `200` OK
|
|
2748
|
-
*/
|
|
2749
|
-
|
|
2750
|
-
}, {
|
|
2751
|
-
key: "bindVk",
|
|
2752
|
-
value: function bindVk() {
|
|
2753
|
-
return this.http.createUrl("/account/external/bind/vk");
|
|
2754
|
-
}
|
|
2755
|
-
/**
|
|
2756
|
-
* No description
|
|
2757
|
-
*
|
|
2758
|
-
* @tags ExternalProviders
|
|
2759
|
-
* @name BindGoogle
|
|
2760
|
-
* @operationId ExternalProvidersController_BindGoogle
|
|
2761
|
-
* @summary The external login by vk.
|
|
2762
|
-
* @request GET:/account/external/bind/google
|
|
2763
|
-
* @secure
|
|
2764
|
-
* @response `200` OK
|
|
2765
|
-
*/
|
|
2766
|
-
|
|
2767
|
-
}, {
|
|
2768
|
-
key: "bindGoogle",
|
|
2769
|
-
value: function bindGoogle() {
|
|
2770
|
-
return this.http.createUrl("/account/external/bind/google");
|
|
2771
|
-
}
|
|
2772
|
-
/**
|
|
2773
|
-
* No description
|
|
2774
|
-
*
|
|
2775
|
-
* @tags ExternalProviders
|
|
2776
|
-
* @name BindFacebook
|
|
2777
|
-
* @operationId ExternalProvidersController_BindFacebook
|
|
2778
|
-
* @summary The external login by vk.
|
|
2779
|
-
* @request GET:/account/external/bind/facebook
|
|
2780
|
-
* @secure
|
|
2781
|
-
* @response `200` OK
|
|
2782
|
-
*/
|
|
2783
|
-
|
|
2784
|
-
}, {
|
|
2785
|
-
key: "bindFacebook",
|
|
2786
|
-
value: function bindFacebook() {
|
|
2787
|
-
return this.http.createUrl("/account/external/bind/facebook");
|
|
2788
|
-
}
|
|
2789
|
-
/**
|
|
2790
|
-
* No description
|
|
2791
|
-
*
|
|
2792
|
-
* @tags ExternalProviders
|
|
2793
|
-
* @name BindCallback
|
|
2794
|
-
* @operationId ExternalProvidersController_BindCallback
|
|
2795
|
-
* @summary Bind external login to current user account.
|
|
2796
|
-
* @request GET:/account/external/bind/callback
|
|
2797
|
-
* @secure
|
|
2798
|
-
* @response `200` OK
|
|
2799
|
-
*/
|
|
2800
|
-
|
|
2801
|
-
}, {
|
|
2802
|
-
key: "bindCallback",
|
|
2803
|
-
value: function bindCallback() {
|
|
2804
|
-
return this.http.get("/account/external/bind/callback").then(() => {});
|
|
2805
|
-
}
|
|
2806
|
-
}]);
|
|
2807
|
-
|
|
2808
|
-
return ExternalProvidersService;
|
|
2809
|
-
}(Service);
|
|
2810
|
-
|
|
2811
|
-
let External = /*#__PURE__*/function (_ExternalProvidersSer) {
|
|
2812
|
-
_inherits(External, _ExternalProvidersSer);
|
|
2813
|
-
|
|
2814
|
-
var _super = /*#__PURE__*/_createSuper(External);
|
|
2815
|
-
|
|
2816
|
-
function External() {
|
|
2817
|
-
_classCallCheck(this, External);
|
|
2818
|
-
|
|
2819
|
-
return _super.apply(this, arguments);
|
|
2820
|
-
}
|
|
2821
|
-
|
|
2822
|
-
_createClass(External, [{
|
|
2823
|
-
key: "login",
|
|
2824
|
-
value: function login(network) {
|
|
2825
|
-
switch (network) {
|
|
2826
|
-
case 'vk':
|
|
2827
|
-
return this.vkLogin();
|
|
2828
|
-
|
|
2829
|
-
case 'google':
|
|
2830
|
-
return this.googleLogin();
|
|
2831
|
-
|
|
2832
|
-
case 'facebook':
|
|
2833
|
-
return this.facebookLogin();
|
|
2834
|
-
|
|
2835
|
-
default:
|
|
2836
|
-
return '';
|
|
2837
|
-
}
|
|
2838
|
-
}
|
|
2839
|
-
}, {
|
|
2840
|
-
key: "bind",
|
|
2841
|
-
value: function bind(network) {
|
|
2842
|
-
switch (network) {
|
|
2843
|
-
case 'vk':
|
|
2844
|
-
return this.bindVk();
|
|
2845
|
-
|
|
2846
|
-
case 'google':
|
|
2847
|
-
return this.bindGoogle();
|
|
2848
|
-
|
|
2849
|
-
case 'facebook':
|
|
2850
|
-
return this.bindFacebook();
|
|
2851
|
-
|
|
2852
|
-
default:
|
|
2853
|
-
return '';
|
|
2854
|
-
}
|
|
2855
|
-
}
|
|
2856
|
-
}, {
|
|
2857
|
-
key: "unbind",
|
|
2858
|
-
value: function unbind(network) {
|
|
2859
|
-
switch (network) {
|
|
2860
|
-
case 'vk':
|
|
2861
|
-
return this.unbindVk();
|
|
2862
|
-
|
|
2863
|
-
case 'google':
|
|
2864
|
-
return this.unbindGoogle();
|
|
2865
|
-
|
|
2866
|
-
case 'facebook':
|
|
2867
|
-
return this.unbindFacebook();
|
|
2868
|
-
|
|
2869
|
-
default:
|
|
2870
|
-
return '';
|
|
2871
|
-
}
|
|
2872
|
-
}
|
|
2873
|
-
}]);
|
|
2874
|
-
|
|
2875
|
-
return External;
|
|
2876
|
-
}(ExternalProvidersService);
|
|
2877
|
-
|
|
2878
|
-
/**
|
|
2879
|
-
* @title Spatial Processing Core API
|
|
2880
|
-
* @version 1.5.1.0
|
|
2881
|
-
* @baseUrl /sp
|
|
2882
|
-
*/
|
|
2883
|
-
|
|
2884
|
-
let FeedbackService = /*#__PURE__*/function (_Service) {
|
|
2885
|
-
_inherits(FeedbackService, _Service);
|
|
2886
|
-
|
|
2887
|
-
var _super = /*#__PURE__*/_createSuper(FeedbackService);
|
|
2888
|
-
|
|
2889
|
-
function FeedbackService() {
|
|
2890
|
-
_classCallCheck(this, FeedbackService);
|
|
2891
|
-
|
|
2892
|
-
return _super.apply(this, arguments);
|
|
2893
|
-
}
|
|
2894
|
-
|
|
2895
|
-
_createClass(FeedbackService, [{
|
|
2896
|
-
key: "increaseResourcesLimit",
|
|
2897
|
-
value:
|
|
2898
|
-
/**
|
|
2899
|
-
* No description
|
|
2900
|
-
*
|
|
2901
|
-
* @tags Feedback
|
|
2902
|
-
* @name IncreaseResourcesLimit
|
|
2903
|
-
* @operationId FeedbackController_IncreaseResourcesLimit
|
|
2904
|
-
* @summary Increase resources limit request.
|
|
2905
|
-
* @request POST:/feedback/limits
|
|
2906
|
-
* @secure
|
|
2907
|
-
* @response `200` OK
|
|
2908
|
-
*/
|
|
2909
|
-
function increaseResourcesLimit(query) {
|
|
2910
|
-
return this.http.post("/feedback/limits", null, query).json();
|
|
2911
|
-
}
|
|
2912
|
-
/**
|
|
2913
|
-
* No description
|
|
2914
|
-
*
|
|
2915
|
-
* @tags Feedback
|
|
2916
|
-
* @name MoreSymbols
|
|
2917
|
-
* @operationId FeedbackController_MoreSymbols
|
|
2918
|
-
* @summary More symbols request.
|
|
2919
|
-
* @request POST:/feedback/symbol
|
|
2920
|
-
* @secure
|
|
2921
|
-
* @response `200` OK
|
|
2922
|
-
*/
|
|
2923
|
-
|
|
2924
|
-
}, {
|
|
2925
|
-
key: "moreSymbols",
|
|
2926
|
-
value: function moreSymbols(query) {
|
|
2927
|
-
return this.http.post("/feedback/symbol", null, query).json();
|
|
2928
|
-
}
|
|
2929
|
-
/**
|
|
2930
|
-
* No description
|
|
2931
|
-
*
|
|
2932
|
-
* @tags Feedback
|
|
2933
|
-
* @name Feedback
|
|
2934
|
-
* @operationId FeedbackController_Feedback
|
|
2935
|
-
* @summary Feedback request.
|
|
2936
|
-
* @request POST:/feedback
|
|
2937
|
-
* @secure
|
|
2938
|
-
* @response `200` OK
|
|
2939
|
-
*/
|
|
2940
|
-
|
|
2941
|
-
}, {
|
|
2942
|
-
key: "feedback",
|
|
2943
|
-
value: function feedback(query, data) {
|
|
2944
|
-
return this.http.post("/feedback", toFormData(data), query).json();
|
|
2945
|
-
}
|
|
2946
|
-
}]);
|
|
2947
|
-
|
|
2948
|
-
return FeedbackService;
|
|
2949
|
-
}(Service);
|
|
2950
|
-
|
|
2951
|
-
let Feedback = /*#__PURE__*/function (_FeedbackService) {
|
|
2952
|
-
_inherits(Feedback, _FeedbackService);
|
|
2953
|
-
|
|
2954
|
-
var _super = /*#__PURE__*/_createSuper(Feedback);
|
|
2955
|
-
|
|
2956
|
-
function Feedback() {
|
|
2957
|
-
_classCallCheck(this, Feedback);
|
|
2958
|
-
|
|
2959
|
-
return _super.apply(this, arguments);
|
|
2960
|
-
}
|
|
2961
|
-
|
|
2962
|
-
_createClass(Feedback, [{
|
|
2963
|
-
key: "postFeedback",
|
|
2964
|
-
value: function postFeedback(query, data) {
|
|
2965
|
-
return this.feedback(query, data);
|
|
2966
|
-
}
|
|
2967
|
-
}]);
|
|
2968
|
-
|
|
2969
|
-
return Feedback;
|
|
2970
|
-
}(FeedbackService);
|
|
2971
|
-
|
|
2972
|
-
let FileUpload = /*#__PURE__*/function (_CatalogService) {
|
|
2973
|
-
_inherits(FileUpload, _CatalogService);
|
|
2974
|
-
|
|
2975
|
-
var _super = /*#__PURE__*/_createSuper(FileUpload);
|
|
2976
|
-
|
|
2977
|
-
function FileUpload() {
|
|
2978
|
-
_classCallCheck(this, FileUpload);
|
|
2979
|
-
|
|
2980
|
-
return _super.apply(this, arguments);
|
|
2981
|
-
}
|
|
2982
|
-
|
|
2983
|
-
_createClass(FileUpload, [{
|
|
2984
|
-
key: "upload",
|
|
2985
|
-
value: function upload(file, rewrite) {
|
|
2986
|
-
return this.createFile1({
|
|
2987
|
-
file,
|
|
2988
|
-
rewrite: !!rewrite
|
|
2989
|
-
});
|
|
2990
|
-
}
|
|
2991
|
-
}, {
|
|
2992
|
-
key: "replaceFile",
|
|
2993
|
-
value: function replaceFile(params) {
|
|
2994
|
-
return this.createFile(params);
|
|
2995
|
-
}
|
|
2996
|
-
}]);
|
|
2997
|
-
|
|
2998
|
-
return FileUpload;
|
|
2999
|
-
}(CatalogService);
|
|
3000
|
-
|
|
3001
|
-
/**
|
|
3002
|
-
* @title Spatial Processing Core API
|
|
3003
|
-
* @version 1.5.1.0
|
|
3004
|
-
* @baseUrl /sp
|
|
3005
|
-
*/
|
|
3006
|
-
|
|
3007
|
-
let FiltersService = /*#__PURE__*/function (_Service) {
|
|
3008
|
-
_inherits(FiltersService, _Service);
|
|
3009
|
-
|
|
3010
|
-
var _super = /*#__PURE__*/_createSuper(FiltersService);
|
|
3011
|
-
|
|
3012
|
-
function FiltersService() {
|
|
3013
|
-
_classCallCheck(this, FiltersService);
|
|
3014
|
-
|
|
3015
|
-
return _super.apply(this, arguments);
|
|
3016
|
-
}
|
|
3017
|
-
|
|
3018
|
-
_createClass(FiltersService, [{
|
|
3019
|
-
key: "get",
|
|
3020
|
-
value:
|
|
3021
|
-
/**
|
|
3022
|
-
* No description
|
|
3023
|
-
*
|
|
3024
|
-
* @tags FiltersService
|
|
3025
|
-
* @name Get
|
|
3026
|
-
* @operationId FiltersServiceController_Get
|
|
3027
|
-
* @summary Returns the filter by its id.
|
|
3028
|
-
* @request GET:/filters/{id}
|
|
3029
|
-
* @secure
|
|
3030
|
-
* @response `200` OK
|
|
3031
|
-
*/
|
|
3032
|
-
function get(id) {
|
|
3033
|
-
return this.http.get("/filters/" + id).json();
|
|
3034
|
-
}
|
|
3035
|
-
/**
|
|
3036
|
-
* No description
|
|
3037
|
-
*
|
|
3038
|
-
* @tags FiltersService
|
|
3039
|
-
* @name Update
|
|
3040
|
-
* @operationId FiltersServiceController_Update
|
|
3041
|
-
* @summary Replaces a filter and gives it a new id.
|
|
3042
|
-
* @request POST:/filters/{id}
|
|
3043
|
-
* @secure
|
|
3044
|
-
* @response `200` OK
|
|
3045
|
-
*/
|
|
3046
|
-
|
|
3047
|
-
}, {
|
|
3048
|
-
key: "update",
|
|
3049
|
-
value: function update(id, data) {
|
|
3050
|
-
return this.http.post("/filters/" + id, data).json();
|
|
2573
|
+
key: "update",
|
|
2574
|
+
value: function update(id, data) {
|
|
2575
|
+
return this.http.post("/filters/" + id, data).json();
|
|
3051
2576
|
}
|
|
3052
2577
|
/**
|
|
3053
2578
|
* No description
|
|
@@ -3085,9 +2610,9 @@ let Filters = /*#__PURE__*/function (_FiltersService) {
|
|
|
3085
2610
|
return _createClass(Filters);
|
|
3086
2611
|
}(FiltersService);
|
|
3087
2612
|
|
|
3088
|
-
const _excluded$
|
|
3089
|
-
_excluded2
|
|
3090
|
-
_excluded3
|
|
2613
|
+
const _excluded$1 = ["providerName"],
|
|
2614
|
+
_excluded2 = ["providerName"],
|
|
2615
|
+
_excluded3 = ["providerName"];
|
|
3091
2616
|
/**
|
|
3092
2617
|
* @title Spatial Processing Core API
|
|
3093
2618
|
* @version 1.5.1.0
|
|
@@ -3123,7 +2648,7 @@ let GeocodeService = /*#__PURE__*/function (_Service) {
|
|
|
3123
2648
|
let {
|
|
3124
2649
|
providerName
|
|
3125
2650
|
} = _ref,
|
|
3126
|
-
query = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2651
|
+
query = _objectWithoutPropertiesLoose(_ref, _excluded$1);
|
|
3127
2652
|
|
|
3128
2653
|
return this.http.get("/geocode/" + providerName, query).json();
|
|
3129
2654
|
}
|
|
@@ -3145,7 +2670,7 @@ let GeocodeService = /*#__PURE__*/function (_Service) {
|
|
|
3145
2670
|
let {
|
|
3146
2671
|
providerName
|
|
3147
2672
|
} = _ref2,
|
|
3148
|
-
query = _objectWithoutPropertiesLoose(_ref2, _excluded2
|
|
2673
|
+
query = _objectWithoutPropertiesLoose(_ref2, _excluded2);
|
|
3149
2674
|
|
|
3150
2675
|
return this.http.get("/geocode/" + providerName + "/geocodeByPoint", query).json();
|
|
3151
2676
|
}
|
|
@@ -3167,7 +2692,7 @@ let GeocodeService = /*#__PURE__*/function (_Service) {
|
|
|
3167
2692
|
let {
|
|
3168
2693
|
providerName
|
|
3169
2694
|
} = _ref3,
|
|
3170
|
-
query = _objectWithoutPropertiesLoose(_ref3, _excluded3
|
|
2695
|
+
query = _objectWithoutPropertiesLoose(_ref3, _excluded3);
|
|
3171
2696
|
|
|
3172
2697
|
return this.http.get("/geocode/" + providerName + "/suggest", query).json();
|
|
3173
2698
|
}
|
|
@@ -3207,76 +2732,6 @@ let Geocode = /*#__PURE__*/function (_GeocodeService) {
|
|
|
3207
2732
|
return Geocode;
|
|
3208
2733
|
}(GeocodeService);
|
|
3209
2734
|
|
|
3210
|
-
/**
|
|
3211
|
-
* @title Spatial Processing Core API
|
|
3212
|
-
* @version 1.5.1.0
|
|
3213
|
-
* @baseUrl /sp
|
|
3214
|
-
*/
|
|
3215
|
-
|
|
3216
|
-
let IceRouterService = /*#__PURE__*/function (_Service) {
|
|
3217
|
-
_inherits(IceRouterService, _Service);
|
|
3218
|
-
|
|
3219
|
-
var _super = /*#__PURE__*/_createSuper(IceRouterService);
|
|
3220
|
-
|
|
3221
|
-
function IceRouterService() {
|
|
3222
|
-
_classCallCheck(this, IceRouterService);
|
|
3223
|
-
|
|
3224
|
-
return _super.apply(this, arguments);
|
|
3225
|
-
}
|
|
3226
|
-
|
|
3227
|
-
_createClass(IceRouterService, [{
|
|
3228
|
-
key: "startTask",
|
|
3229
|
-
value:
|
|
3230
|
-
/**
|
|
3231
|
-
* No description
|
|
3232
|
-
*
|
|
3233
|
-
* @tags IceRouter
|
|
3234
|
-
* @name StartTask
|
|
3235
|
-
* @operationId IceRouterController_StartTask
|
|
3236
|
-
* @summary Start route build between start and end points.
|
|
3237
|
-
* @request POST:/ice-router/tasks
|
|
3238
|
-
* @secure
|
|
3239
|
-
* @response `200` OK
|
|
3240
|
-
*/
|
|
3241
|
-
function startTask(data) {
|
|
3242
|
-
return this.http.post("/ice-router/tasks", data).text();
|
|
3243
|
-
}
|
|
3244
|
-
/**
|
|
3245
|
-
* No description
|
|
3246
|
-
*
|
|
3247
|
-
* @tags IceRouter
|
|
3248
|
-
* @name GetResult
|
|
3249
|
-
* @operationId IceRouterController_GetResult
|
|
3250
|
-
* @summary Get task result.
|
|
3251
|
-
* @request GET:/ice-router/tasks/{id}
|
|
3252
|
-
* @secure
|
|
3253
|
-
* @response `200` OK
|
|
3254
|
-
*/
|
|
3255
|
-
|
|
3256
|
-
}, {
|
|
3257
|
-
key: "getResult",
|
|
3258
|
-
value: function getResult(id) {
|
|
3259
|
-
return this.http.get("/ice-router/tasks/" + id).json();
|
|
3260
|
-
}
|
|
3261
|
-
}]);
|
|
3262
|
-
|
|
3263
|
-
return IceRouterService;
|
|
3264
|
-
}(Service);
|
|
3265
|
-
|
|
3266
|
-
let IceRouter = /*#__PURE__*/function (_IceRouterService) {
|
|
3267
|
-
_inherits(IceRouter, _IceRouterService);
|
|
3268
|
-
|
|
3269
|
-
var _super = /*#__PURE__*/_createSuper(IceRouter);
|
|
3270
|
-
|
|
3271
|
-
function IceRouter() {
|
|
3272
|
-
_classCallCheck(this, IceRouter);
|
|
3273
|
-
|
|
3274
|
-
return _super.apply(this, arguments);
|
|
3275
|
-
}
|
|
3276
|
-
|
|
3277
|
-
return _createClass(IceRouter);
|
|
3278
|
-
}(IceRouterService);
|
|
3279
|
-
|
|
3280
2735
|
/**
|
|
3281
2736
|
* @title Spatial Processing Core API
|
|
3282
2737
|
* @version 1.5.1.0
|
|
@@ -3483,24 +2938,21 @@ let Import = /*#__PURE__*/function (_ImportService) {
|
|
|
3483
2938
|
return _createClass(Import);
|
|
3484
2939
|
}(ImportService);
|
|
3485
2940
|
|
|
3486
|
-
const _excluded$
|
|
3487
|
-
_excluded2$
|
|
3488
|
-
_excluded3$
|
|
3489
|
-
_excluded4
|
|
3490
|
-
_excluded5
|
|
3491
|
-
_excluded6
|
|
3492
|
-
_excluded7 = ["name"
|
|
3493
|
-
_excluded8 = ["name"
|
|
2941
|
+
const _excluded$2 = ["name"],
|
|
2942
|
+
_excluded2$1 = ["name"],
|
|
2943
|
+
_excluded3$1 = ["name", "id"],
|
|
2944
|
+
_excluded4 = ["name", "x", "y", "z"],
|
|
2945
|
+
_excluded5 = ["name", "x", "y", "z", "format"],
|
|
2946
|
+
_excluded6 = ["name", "x", "y", "z", "dpi", "format"],
|
|
2947
|
+
_excluded7 = ["name"],
|
|
2948
|
+
_excluded8 = ["name"],
|
|
3494
2949
|
_excluded9 = ["name"],
|
|
3495
2950
|
_excluded10 = ["name"],
|
|
3496
2951
|
_excluded11 = ["name"],
|
|
3497
2952
|
_excluded12 = ["name"],
|
|
3498
2953
|
_excluded13 = ["name"],
|
|
3499
|
-
_excluded14 = ["
|
|
3500
|
-
_excluded15 = ["name"]
|
|
3501
|
-
_excluded16 = ["name"],
|
|
3502
|
-
_excluded17 = ["layerName"],
|
|
3503
|
-
_excluded18 = ["name", "id"];
|
|
2954
|
+
_excluded14 = ["layerName"],
|
|
2955
|
+
_excluded15 = ["name", "id"];
|
|
3504
2956
|
/**
|
|
3505
2957
|
* @title Spatial Processing Core API
|
|
3506
2958
|
* @version 1.5.1.0
|
|
@@ -3972,7 +3424,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3972
3424
|
let {
|
|
3973
3425
|
name
|
|
3974
3426
|
} = _ref,
|
|
3975
|
-
query = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3427
|
+
query = _objectWithoutPropertiesLoose(_ref, _excluded$2);
|
|
3976
3428
|
|
|
3977
3429
|
return this.http.get("/layers/" + name + "/features", query).json();
|
|
3978
3430
|
}
|
|
@@ -3994,7 +3446,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3994
3446
|
let {
|
|
3995
3447
|
name
|
|
3996
3448
|
} = _ref2,
|
|
3997
|
-
query = _objectWithoutPropertiesLoose(_ref2, _excluded2$
|
|
3449
|
+
query = _objectWithoutPropertiesLoose(_ref2, _excluded2$1);
|
|
3998
3450
|
|
|
3999
3451
|
return this.http.delete("/layers/" + name + "/features", null, query).json();
|
|
4000
3452
|
}
|
|
@@ -4051,56 +3503,10 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4051
3503
|
name,
|
|
4052
3504
|
id
|
|
4053
3505
|
} = _ref3,
|
|
4054
|
-
query = _objectWithoutPropertiesLoose(_ref3, _excluded3$
|
|
3506
|
+
query = _objectWithoutPropertiesLoose(_ref3, _excluded3$1);
|
|
4055
3507
|
|
|
4056
3508
|
return this.http.get("/layers/" + name + "/features/" + id, query).json();
|
|
4057
3509
|
}
|
|
4058
|
-
/**
|
|
4059
|
-
* No description
|
|
4060
|
-
*
|
|
4061
|
-
* @tags Layers
|
|
4062
|
-
* @name Unite
|
|
4063
|
-
* @operationId LayersController_Unite
|
|
4064
|
-
* @summary Provides method to unite feature geometry with given id and given geometry. Updated feature will be save in db storage. Result of the operation will be updated layer info.
|
|
4065
|
-
* @request POST:/layers/{name}/features/{id}/unite
|
|
4066
|
-
* @secure
|
|
4067
|
-
* @response `200` OK
|
|
4068
|
-
*/
|
|
4069
|
-
|
|
4070
|
-
}, {
|
|
4071
|
-
key: "unite",
|
|
4072
|
-
value: function unite(_ref4, data) {
|
|
4073
|
-
let {
|
|
4074
|
-
name,
|
|
4075
|
-
id
|
|
4076
|
-
} = _ref4,
|
|
4077
|
-
query = _objectWithoutPropertiesLoose(_ref4, _excluded4$1);
|
|
4078
|
-
|
|
4079
|
-
return this.http.post("/layers/" + name + "/features/" + id + "/unite", data, query).json();
|
|
4080
|
-
}
|
|
4081
|
-
/**
|
|
4082
|
-
* No description
|
|
4083
|
-
*
|
|
4084
|
-
* @tags Layers
|
|
4085
|
-
* @name Subtract
|
|
4086
|
-
* @operationId LayersController_Subtract
|
|
4087
|
-
* @summary Provides method to subtract feature geometry with given id and given geometry. Updated feature will be save in db storage. Result of the operation will be updated layer info with feature id.
|
|
4088
|
-
* @request POST:/layers/{name}/features/{id}/subtract
|
|
4089
|
-
* @secure
|
|
4090
|
-
* @response `200` OK
|
|
4091
|
-
*/
|
|
4092
|
-
|
|
4093
|
-
}, {
|
|
4094
|
-
key: "subtract",
|
|
4095
|
-
value: function subtract(_ref5, data) {
|
|
4096
|
-
let {
|
|
4097
|
-
name,
|
|
4098
|
-
id
|
|
4099
|
-
} = _ref5,
|
|
4100
|
-
query = _objectWithoutPropertiesLoose(_ref5, _excluded5$1);
|
|
4101
|
-
|
|
4102
|
-
return this.http.post("/layers/" + name + "/features/" + id + "/subtract", data, query).json();
|
|
4103
|
-
}
|
|
4104
3510
|
/**
|
|
4105
3511
|
* No description
|
|
4106
3512
|
*
|
|
@@ -4115,14 +3521,14 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4115
3521
|
|
|
4116
3522
|
}, {
|
|
4117
3523
|
key: "getTilesLayerImage",
|
|
4118
|
-
value: function getTilesLayerImage(
|
|
3524
|
+
value: function getTilesLayerImage(_ref4) {
|
|
4119
3525
|
let {
|
|
4120
3526
|
name,
|
|
4121
3527
|
x,
|
|
4122
3528
|
y,
|
|
4123
3529
|
z
|
|
4124
|
-
} =
|
|
4125
|
-
query = _objectWithoutPropertiesLoose(
|
|
3530
|
+
} = _ref4,
|
|
3531
|
+
query = _objectWithoutPropertiesLoose(_ref4, _excluded4);
|
|
4126
3532
|
|
|
4127
3533
|
return this.http.createUrl("/layers/" + name + "/tile/" + z + "/" + x + "/" + y, query);
|
|
4128
3534
|
}
|
|
@@ -4140,15 +3546,15 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4140
3546
|
|
|
4141
3547
|
}, {
|
|
4142
3548
|
key: "getTilesLayerImage1",
|
|
4143
|
-
value: function getTilesLayerImage1(
|
|
3549
|
+
value: function getTilesLayerImage1(_ref5) {
|
|
4144
3550
|
let {
|
|
4145
3551
|
name,
|
|
4146
3552
|
x,
|
|
4147
3553
|
y,
|
|
4148
3554
|
z,
|
|
4149
3555
|
format
|
|
4150
|
-
} =
|
|
4151
|
-
query = _objectWithoutPropertiesLoose(
|
|
3556
|
+
} = _ref5,
|
|
3557
|
+
query = _objectWithoutPropertiesLoose(_ref5, _excluded5);
|
|
4152
3558
|
|
|
4153
3559
|
return this.http.createUrl("/layers/" + name + "/tile/" + z + "/" + x + "/" + y + "." + format, query);
|
|
4154
3560
|
}
|
|
@@ -4166,7 +3572,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4166
3572
|
|
|
4167
3573
|
}, {
|
|
4168
3574
|
key: "getTilesLayerImageWithFormatAndDpi",
|
|
4169
|
-
value: function getTilesLayerImageWithFormatAndDpi(
|
|
3575
|
+
value: function getTilesLayerImageWithFormatAndDpi(_ref6) {
|
|
4170
3576
|
let {
|
|
4171
3577
|
name,
|
|
4172
3578
|
x,
|
|
@@ -4174,33 +3580,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4174
3580
|
z,
|
|
4175
3581
|
dpi,
|
|
4176
3582
|
format
|
|
4177
|
-
} =
|
|
4178
|
-
query = _objectWithoutPropertiesLoose(
|
|
3583
|
+
} = _ref6,
|
|
3584
|
+
query = _objectWithoutPropertiesLoose(_ref6, _excluded6);
|
|
4179
3585
|
|
|
4180
3586
|
return this.http.createUrl("/layers/" + name + "/tile/" + z + "/" + x + "/" + y + "@" + dpi + "x." + format, query);
|
|
4181
3587
|
}
|
|
4182
|
-
/**
|
|
4183
|
-
* No description
|
|
4184
|
-
*
|
|
4185
|
-
* @tags Layers
|
|
4186
|
-
* @name GetLayerImage
|
|
4187
|
-
* @operationId LayersController_GetLayerImage
|
|
4188
|
-
* @summary Renders the layer to the image of the requested size.
|
|
4189
|
-
* @request GET:/layers/{name}/export
|
|
4190
|
-
* @secure
|
|
4191
|
-
* @response `200` OK
|
|
4192
|
-
*/
|
|
4193
|
-
|
|
4194
|
-
}, {
|
|
4195
|
-
key: "getLayerImage",
|
|
4196
|
-
value: function getLayerImage(_ref9) {
|
|
4197
|
-
let {
|
|
4198
|
-
name
|
|
4199
|
-
} = _ref9,
|
|
4200
|
-
query = _objectWithoutPropertiesLoose(_ref9, _excluded9);
|
|
4201
|
-
|
|
4202
|
-
return this.http.createUrl("/layers/" + name + "/export", query);
|
|
4203
|
-
}
|
|
4204
3588
|
/**
|
|
4205
3589
|
* No description
|
|
4206
3590
|
*
|
|
@@ -4215,11 +3599,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4215
3599
|
|
|
4216
3600
|
}, {
|
|
4217
3601
|
key: "getLayerExtent",
|
|
4218
|
-
value: function getLayerExtent(
|
|
3602
|
+
value: function getLayerExtent(_ref7) {
|
|
4219
3603
|
let {
|
|
4220
3604
|
name
|
|
4221
|
-
} =
|
|
4222
|
-
query = _objectWithoutPropertiesLoose(
|
|
3605
|
+
} = _ref7,
|
|
3606
|
+
query = _objectWithoutPropertiesLoose(_ref7, _excluded7);
|
|
4223
3607
|
|
|
4224
3608
|
return this.http.get("/layers/" + name + "/extent", query).json();
|
|
4225
3609
|
}
|
|
@@ -4237,11 +3621,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4237
3621
|
|
|
4238
3622
|
}, {
|
|
4239
3623
|
key: "deleteFeatures",
|
|
4240
|
-
value: function deleteFeatures(
|
|
3624
|
+
value: function deleteFeatures(_ref8) {
|
|
4241
3625
|
let {
|
|
4242
3626
|
name
|
|
4243
|
-
} =
|
|
4244
|
-
query = _objectWithoutPropertiesLoose(
|
|
3627
|
+
} = _ref8,
|
|
3628
|
+
query = _objectWithoutPropertiesLoose(_ref8, _excluded8);
|
|
4245
3629
|
|
|
4246
3630
|
return this.http.delete("/layers/" + name + "/features/deleteByIds", null, query).json();
|
|
4247
3631
|
}
|
|
@@ -4259,11 +3643,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4259
3643
|
|
|
4260
3644
|
}, {
|
|
4261
3645
|
key: "deleteByCondition",
|
|
4262
|
-
value: function deleteByCondition(
|
|
3646
|
+
value: function deleteByCondition(_ref9) {
|
|
4263
3647
|
let {
|
|
4264
3648
|
name
|
|
4265
|
-
} =
|
|
4266
|
-
query = _objectWithoutPropertiesLoose(
|
|
3649
|
+
} = _ref9,
|
|
3650
|
+
query = _objectWithoutPropertiesLoose(_ref9, _excluded9);
|
|
4267
3651
|
|
|
4268
3652
|
return this.http.delete("/layers/" + name + "/features/deleteByCondition", null, query).json();
|
|
4269
3653
|
}
|
|
@@ -4281,11 +3665,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4281
3665
|
|
|
4282
3666
|
}, {
|
|
4283
3667
|
key: "classify",
|
|
4284
|
-
value: function classify(
|
|
3668
|
+
value: function classify(_ref10) {
|
|
4285
3669
|
let {
|
|
4286
3670
|
name
|
|
4287
|
-
} =
|
|
4288
|
-
query = _objectWithoutPropertiesLoose(
|
|
3671
|
+
} = _ref10,
|
|
3672
|
+
query = _objectWithoutPropertiesLoose(_ref10, _excluded10);
|
|
4289
3673
|
|
|
4290
3674
|
return this.http.get("/layers/" + name + "/classify", query).json();
|
|
4291
3675
|
}
|
|
@@ -4303,11 +3687,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4303
3687
|
|
|
4304
3688
|
}, {
|
|
4305
3689
|
key: "distincts",
|
|
4306
|
-
value: function distincts(
|
|
3690
|
+
value: function distincts(_ref11) {
|
|
4307
3691
|
let {
|
|
4308
|
-
name
|
|
4309
|
-
} =
|
|
4310
|
-
query = _objectWithoutPropertiesLoose(
|
|
3692
|
+
name
|
|
3693
|
+
} = _ref11,
|
|
3694
|
+
query = _objectWithoutPropertiesLoose(_ref11, _excluded11);
|
|
4311
3695
|
|
|
4312
3696
|
return this.http.get("/layers/" + name + "/distincts", query).json();
|
|
4313
3697
|
}
|
|
@@ -4325,11 +3709,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4325
3709
|
|
|
4326
3710
|
}, {
|
|
4327
3711
|
key: "aggregateAttribute",
|
|
4328
|
-
value: function aggregateAttribute(
|
|
3712
|
+
value: function aggregateAttribute(_ref12) {
|
|
4329
3713
|
let {
|
|
4330
3714
|
name
|
|
4331
|
-
} =
|
|
4332
|
-
query = _objectWithoutPropertiesLoose(
|
|
3715
|
+
} = _ref12,
|
|
3716
|
+
query = _objectWithoutPropertiesLoose(_ref12, _excluded12);
|
|
4333
3717
|
|
|
4334
3718
|
return this.http.get("/layers/" + name + "/aggregate-values", query).json();
|
|
4335
3719
|
}
|
|
@@ -4347,11 +3731,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4347
3731
|
|
|
4348
3732
|
}, {
|
|
4349
3733
|
key: "getFilteredFeaturesCount1",
|
|
4350
|
-
value: function getFilteredFeaturesCount1(
|
|
3734
|
+
value: function getFilteredFeaturesCount1(_ref13) {
|
|
4351
3735
|
let {
|
|
4352
3736
|
name
|
|
4353
|
-
} =
|
|
4354
|
-
query = _objectWithoutPropertiesLoose(
|
|
3737
|
+
} = _ref13,
|
|
3738
|
+
query = _objectWithoutPropertiesLoose(_ref13, _excluded13);
|
|
4355
3739
|
|
|
4356
3740
|
return this.http.get("/layers/" + name + "/features/count", query).json();
|
|
4357
3741
|
}
|
|
@@ -4403,11 +3787,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4403
3787
|
|
|
4404
3788
|
}, {
|
|
4405
3789
|
key: "validateExpression",
|
|
4406
|
-
value: function validateExpression(
|
|
3790
|
+
value: function validateExpression(_ref14) {
|
|
4407
3791
|
let {
|
|
4408
3792
|
layerName
|
|
4409
|
-
} =
|
|
4410
|
-
query = _objectWithoutPropertiesLoose(
|
|
3793
|
+
} = _ref14,
|
|
3794
|
+
query = _objectWithoutPropertiesLoose(_ref14, _excluded14);
|
|
4411
3795
|
|
|
4412
3796
|
return this.http.get("/layers/" + layerName + "/validateExpression", query).json();
|
|
4413
3797
|
}
|
|
@@ -4442,100 +3826,15 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
4442
3826
|
|
|
4443
3827
|
}, {
|
|
4444
3828
|
key: "getRasterMeta",
|
|
4445
|
-
value: function getRasterMeta(
|
|
3829
|
+
value: function getRasterMeta(_ref15) {
|
|
4446
3830
|
let {
|
|
4447
3831
|
name,
|
|
4448
3832
|
id
|
|
4449
|
-
} =
|
|
4450
|
-
query = _objectWithoutPropertiesLoose(
|
|
3833
|
+
} = _ref15,
|
|
3834
|
+
query = _objectWithoutPropertiesLoose(_ref15, _excluded15);
|
|
4451
3835
|
|
|
4452
3836
|
return this.http.get("/layers/" + name + "/" + id + "/metadata", query).json();
|
|
4453
3837
|
}
|
|
4454
|
-
/**
|
|
4455
|
-
* No description
|
|
4456
|
-
*
|
|
4457
|
-
* @tags Layers
|
|
4458
|
-
* @name CreateRoute
|
|
4459
|
-
* @operationId LayersController_CreateRoute
|
|
4460
|
-
* @summary Create new route (feature) from source features.
|
|
4461
|
-
* @request POST:/layers/{name}/createRoute
|
|
4462
|
-
* @secure
|
|
4463
|
-
* @response `200` OK
|
|
4464
|
-
*/
|
|
4465
|
-
|
|
4466
|
-
}, {
|
|
4467
|
-
key: "createRoute",
|
|
4468
|
-
value: function createRoute(name, data) {
|
|
4469
|
-
return this.http.post("/layers/" + name + "/createRoute", data).json();
|
|
4470
|
-
}
|
|
4471
|
-
/**
|
|
4472
|
-
* No description
|
|
4473
|
-
*
|
|
4474
|
-
* @tags Layers
|
|
4475
|
-
* @name ApplyStyle
|
|
4476
|
-
* @operationId LayersController_ApplyStyle
|
|
4477
|
-
* @summary Create data layout and image layout for given style.
|
|
4478
|
-
* @request PUT:/layers/{name}/style
|
|
4479
|
-
* @secure
|
|
4480
|
-
* @response `200` OK
|
|
4481
|
-
*/
|
|
4482
|
-
|
|
4483
|
-
}, {
|
|
4484
|
-
key: "applyStyle",
|
|
4485
|
-
value: function applyStyle(name, data) {
|
|
4486
|
-
return this.http.put("/layers/" + name + "/style", data).then(() => {});
|
|
4487
|
-
}
|
|
4488
|
-
/**
|
|
4489
|
-
* No description
|
|
4490
|
-
*
|
|
4491
|
-
* @tags Layers
|
|
4492
|
-
* @name GetStyle
|
|
4493
|
-
* @operationId LayersController_GetStyle
|
|
4494
|
-
* @summary Get style of the given layer.
|
|
4495
|
-
* @request GET:/layers/{name}/style
|
|
4496
|
-
* @secure
|
|
4497
|
-
* @response `200` OK
|
|
4498
|
-
*/
|
|
4499
|
-
|
|
4500
|
-
}, {
|
|
4501
|
-
key: "getStyle",
|
|
4502
|
-
value: function getStyle(name) {
|
|
4503
|
-
return this.http.get("/layers/" + name + "/style").json();
|
|
4504
|
-
}
|
|
4505
|
-
/**
|
|
4506
|
-
* No description
|
|
4507
|
-
*
|
|
4508
|
-
* @tags Layers
|
|
4509
|
-
* @name GetImageLayout
|
|
4510
|
-
* @operationId LayersController_GetImageLayout
|
|
4511
|
-
* @summary Get date layout.
|
|
4512
|
-
* @request GET:/layers/{name}/style/sprite.png
|
|
4513
|
-
* @secure
|
|
4514
|
-
* @response `200` OK
|
|
4515
|
-
*/
|
|
4516
|
-
|
|
4517
|
-
}, {
|
|
4518
|
-
key: "getImageLayout",
|
|
4519
|
-
value: function getImageLayout(name) {
|
|
4520
|
-
return this.http.get("/layers/" + name + "/style/sprite.png").blob();
|
|
4521
|
-
}
|
|
4522
|
-
/**
|
|
4523
|
-
* No description
|
|
4524
|
-
*
|
|
4525
|
-
* @tags Layers
|
|
4526
|
-
* @name GetDataLayout
|
|
4527
|
-
* @operationId LayersController_GetDataLayout
|
|
4528
|
-
* @summary Get image layout.
|
|
4529
|
-
* @request GET:/layers/{name}/style/sprite.json
|
|
4530
|
-
* @secure
|
|
4531
|
-
* @response `200` OK
|
|
4532
|
-
*/
|
|
4533
|
-
|
|
4534
|
-
}, {
|
|
4535
|
-
key: "getDataLayout",
|
|
4536
|
-
value: function getDataLayout(name) {
|
|
4537
|
-
return this.http.get("/layers/" + name + "/style/sprite.json").then(() => {});
|
|
4538
|
-
}
|
|
4539
3838
|
/**
|
|
4540
3839
|
* No description
|
|
4541
3840
|
*
|
|
@@ -5032,8 +4331,8 @@ let Notification = /*#__PURE__*/function (_NotificationService) {
|
|
|
5032
4331
|
|| event.code === 4002
|
|
5033
4332
|
/* InvalidSession */
|
|
5034
4333
|
) {
|
|
5035
|
-
|
|
5036
|
-
|
|
4334
|
+
_this.connectStatus = ConnectionStatus.SessionClosed;
|
|
4335
|
+
} else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
|
|
5037
4336
|
_this.connectStatus = ConnectionStatus.Break;
|
|
5038
4337
|
_this.reconnectTries++;
|
|
5039
4338
|
|
|
@@ -5182,145 +4481,7 @@ let PortalSettings = /*#__PURE__*/function (_ClientSettingsServic) {
|
|
|
5182
4481
|
return PortalSettings;
|
|
5183
4482
|
}(ClientSettingsService);
|
|
5184
4483
|
|
|
5185
|
-
|
|
5186
|
-
* @title Spatial Processing Core API
|
|
5187
|
-
* @version 1.5.1.0
|
|
5188
|
-
* @baseUrl /sp
|
|
5189
|
-
*/
|
|
5190
|
-
|
|
5191
|
-
let PrintService = /*#__PURE__*/function (_Service) {
|
|
5192
|
-
_inherits(PrintService, _Service);
|
|
5193
|
-
|
|
5194
|
-
var _super = /*#__PURE__*/_createSuper(PrintService);
|
|
5195
|
-
|
|
5196
|
-
function PrintService() {
|
|
5197
|
-
_classCallCheck(this, PrintService);
|
|
5198
|
-
|
|
5199
|
-
return _super.apply(this, arguments);
|
|
5200
|
-
}
|
|
5201
|
-
|
|
5202
|
-
_createClass(PrintService, [{
|
|
5203
|
-
key: "print",
|
|
5204
|
-
value:
|
|
5205
|
-
/**
|
|
5206
|
-
* No description
|
|
5207
|
-
*
|
|
5208
|
-
* @tags Print
|
|
5209
|
-
* @name Print
|
|
5210
|
-
* @operationId PrintController_Print
|
|
5211
|
-
* @summary Print map with template.
|
|
5212
|
-
* @request POST:/print/print
|
|
5213
|
-
* @secure
|
|
5214
|
-
* @response `200` OK
|
|
5215
|
-
*/
|
|
5216
|
-
function print(data) {
|
|
5217
|
-
return this.http.post("/print/print", data).then(() => {});
|
|
5218
|
-
}
|
|
5219
|
-
/**
|
|
5220
|
-
* No description
|
|
5221
|
-
*
|
|
5222
|
-
* @tags Print
|
|
5223
|
-
* @name PrintToHtml
|
|
5224
|
-
* @operationId PrintController_PrintToHtml
|
|
5225
|
-
* @summary Print map with template to html string.
|
|
5226
|
-
* @request POST:/print/printHtml
|
|
5227
|
-
* @secure
|
|
5228
|
-
* @response `200` OK
|
|
5229
|
-
*/
|
|
5230
|
-
|
|
5231
|
-
}, {
|
|
5232
|
-
key: "printToHtml",
|
|
5233
|
-
value: function printToHtml(data) {
|
|
5234
|
-
return this.http.post("/print/printHtml", data).text();
|
|
5235
|
-
}
|
|
5236
|
-
/**
|
|
5237
|
-
* No description
|
|
5238
|
-
*
|
|
5239
|
-
* @tags Print
|
|
5240
|
-
* @name UploadTemplate
|
|
5241
|
-
* @operationId PrintController_UploadTemplate
|
|
5242
|
-
* @summary Upload template on server.
|
|
5243
|
-
* @request POST:/print/templates
|
|
5244
|
-
* @secure
|
|
5245
|
-
* @response `200` OK
|
|
5246
|
-
*/
|
|
5247
|
-
|
|
5248
|
-
}, {
|
|
5249
|
-
key: "uploadTemplate",
|
|
5250
|
-
value: function uploadTemplate(query, data) {
|
|
5251
|
-
return this.http.post("/print/templates", toFormData(data), query).then(() => {});
|
|
5252
|
-
}
|
|
5253
|
-
/**
|
|
5254
|
-
* No description
|
|
5255
|
-
*
|
|
5256
|
-
* @tags Print
|
|
5257
|
-
* @name GetTemplates
|
|
5258
|
-
* @operationId PrintController_GetTemplates
|
|
5259
|
-
* @summary Get all templates from server.
|
|
5260
|
-
* @request GET:/print/templates
|
|
5261
|
-
* @secure
|
|
5262
|
-
* @response `200` OK
|
|
5263
|
-
*/
|
|
5264
|
-
|
|
5265
|
-
}, {
|
|
5266
|
-
key: "getTemplates",
|
|
5267
|
-
value: function getTemplates() {
|
|
5268
|
-
return this.http.get("/print/templates").json();
|
|
5269
|
-
}
|
|
5270
|
-
/**
|
|
5271
|
-
* No description
|
|
5272
|
-
*
|
|
5273
|
-
* @tags Print
|
|
5274
|
-
* @name DeleteTemplate
|
|
5275
|
-
* @operationId PrintController_DeleteTemplate
|
|
5276
|
-
* @summary Delete template from server.
|
|
5277
|
-
* @request DELETE:/print/templates/{name}
|
|
5278
|
-
* @secure
|
|
5279
|
-
* @response `200` OK
|
|
5280
|
-
*/
|
|
5281
|
-
|
|
5282
|
-
}, {
|
|
5283
|
-
key: "deleteTemplate",
|
|
5284
|
-
value: function deleteTemplate(name) {
|
|
5285
|
-
return this.http.delete("/print/templates/" + name, null).then(() => {});
|
|
5286
|
-
}
|
|
5287
|
-
/**
|
|
5288
|
-
* No description
|
|
5289
|
-
*
|
|
5290
|
-
* @tags Print
|
|
5291
|
-
* @name GetTemplate
|
|
5292
|
-
* @operationId PrintController_GetTemplate
|
|
5293
|
-
* @summary Get template from server.
|
|
5294
|
-
* @request GET:/print/templates/{name}
|
|
5295
|
-
* @secure
|
|
5296
|
-
* @response `200` OK
|
|
5297
|
-
*/
|
|
5298
|
-
|
|
5299
|
-
}, {
|
|
5300
|
-
key: "getTemplate",
|
|
5301
|
-
value: function getTemplate(name) {
|
|
5302
|
-
return this.http.get("/print/templates/" + name).text();
|
|
5303
|
-
}
|
|
5304
|
-
}]);
|
|
5305
|
-
|
|
5306
|
-
return PrintService;
|
|
5307
|
-
}(Service);
|
|
5308
|
-
|
|
5309
|
-
let Print = /*#__PURE__*/function (_PrintService) {
|
|
5310
|
-
_inherits(Print, _PrintService);
|
|
5311
|
-
|
|
5312
|
-
var _super = /*#__PURE__*/_createSuper(Print);
|
|
5313
|
-
|
|
5314
|
-
function Print() {
|
|
5315
|
-
_classCallCheck(this, Print);
|
|
5316
|
-
|
|
5317
|
-
return _super.apply(this, arguments);
|
|
5318
|
-
}
|
|
5319
|
-
|
|
5320
|
-
return _createClass(Print);
|
|
5321
|
-
}(PrintService);
|
|
5322
|
-
|
|
5323
|
-
const _excluded$4 = ["name"];
|
|
4484
|
+
const _excluded$3 = ["name"];
|
|
5324
4485
|
/**
|
|
5325
4486
|
* @title Spatial Processing Core API
|
|
5326
4487
|
* @version 1.5.1.0
|
|
@@ -5492,7 +4653,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
5492
4653
|
let {
|
|
5493
4654
|
name
|
|
5494
4655
|
} = _ref,
|
|
5495
|
-
query = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4656
|
+
query = _objectWithoutPropertiesLoose(_ref, _excluded$3);
|
|
5496
4657
|
|
|
5497
4658
|
return this.http.get("/projects/" + name + "/extent", query).json();
|
|
5498
4659
|
}
|
|
@@ -5675,8 +4836,8 @@ function isProjectContentItems(v) {
|
|
|
5675
4836
|
return v !== null && v !== undefined;
|
|
5676
4837
|
}
|
|
5677
4838
|
|
|
5678
|
-
const _excluded$
|
|
5679
|
-
_excluded2$
|
|
4839
|
+
const _excluded$4 = ["id"],
|
|
4840
|
+
_excluded2$2 = ["id"];
|
|
5680
4841
|
/**
|
|
5681
4842
|
* @title Spatial Processing Core API
|
|
5682
4843
|
* @version 1.5.1.0
|
|
@@ -5831,7 +4992,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
5831
4992
|
let {
|
|
5832
4993
|
id
|
|
5833
4994
|
} = _ref,
|
|
5834
|
-
query = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4995
|
+
query = _objectWithoutPropertiesLoose(_ref, _excluded$4);
|
|
5835
4996
|
|
|
5836
4997
|
return this.http.get("/scheduler/" + id + "/tasks", query).json();
|
|
5837
4998
|
}
|
|
@@ -5887,7 +5048,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
5887
5048
|
let {
|
|
5888
5049
|
id
|
|
5889
5050
|
} = _ref2,
|
|
5890
|
-
query = _objectWithoutPropertiesLoose(_ref2, _excluded2$
|
|
5051
|
+
query = _objectWithoutPropertiesLoose(_ref2, _excluded2$2);
|
|
5891
5052
|
|
|
5892
5053
|
return this.http.get("/scheduler/taskresource/" + id, query).json();
|
|
5893
5054
|
}
|
|
@@ -6097,12 +5258,12 @@ let Resources = /*#__PURE__*/function () {
|
|
|
6097
5258
|
}, {
|
|
6098
5259
|
key: "getDependentNames",
|
|
6099
5260
|
value: function getDependentNames(deps, depType) {
|
|
6100
|
-
return deps.filter(_ref => {
|
|
5261
|
+
return deps.filter((_ref) => {
|
|
6101
5262
|
let {
|
|
6102
5263
|
type
|
|
6103
5264
|
} = _ref;
|
|
6104
5265
|
return type === depType;
|
|
6105
|
-
}).map(_ref2 => {
|
|
5266
|
+
}).map((_ref2) => {
|
|
6106
5267
|
let {
|
|
6107
5268
|
name
|
|
6108
5269
|
} = _ref2;
|
|
@@ -6418,28 +5579,11 @@ let StatisticService = /*#__PURE__*/function (_Service) {
|
|
|
6418
5579
|
* @name StatisticsDb
|
|
6419
5580
|
* @operationId StatisticController_StatisticsDb
|
|
6420
5581
|
* @summary Calculates statistics for layer attribute.
|
|
6421
|
-
* @request GET:/statistics
|
|
6422
|
-
* @secure
|
|
6423
|
-
* @response `200` OK
|
|
6424
|
-
*/
|
|
6425
|
-
function statisticsDb(query) {
|
|
6426
|
-
return this.http.get("/statistics", query).json();
|
|
6427
|
-
}
|
|
6428
|
-
/**
|
|
6429
|
-
* No description
|
|
6430
|
-
*
|
|
6431
|
-
* @tags Statistic
|
|
6432
|
-
* @name StatisticsDb1
|
|
6433
|
-
* @operationId StatisticController_StatisticsDb_1
|
|
6434
|
-
* @summary Calculates statistics for layer attribute.
|
|
6435
5582
|
* @request POST:/statistics
|
|
6436
5583
|
* @secure
|
|
6437
5584
|
* @response `200` OK
|
|
6438
5585
|
*/
|
|
6439
|
-
|
|
6440
|
-
}, {
|
|
6441
|
-
key: "statisticsDb1",
|
|
6442
|
-
value: function statisticsDb1(data) {
|
|
5586
|
+
function statisticsDb(data) {
|
|
6443
5587
|
return this.http.post("/statistics", data).json();
|
|
6444
5588
|
}
|
|
6445
5589
|
/**
|
|
@@ -6449,31 +5593,14 @@ let StatisticService = /*#__PURE__*/function (_Service) {
|
|
|
6449
5593
|
* @name Classify
|
|
6450
5594
|
* @operationId StatisticController_Classify
|
|
6451
5595
|
* @summary Returns the classified attribute values that correspond to the given number of classes and given condition.
|
|
6452
|
-
* @request GET:/statistics/classify
|
|
6453
|
-
* @secure
|
|
6454
|
-
* @response `200` OK
|
|
6455
|
-
*/
|
|
6456
|
-
|
|
6457
|
-
}, {
|
|
6458
|
-
key: "classify",
|
|
6459
|
-
value: function classify(query) {
|
|
6460
|
-
return this.http.get("/statistics/classify", query).json();
|
|
6461
|
-
}
|
|
6462
|
-
/**
|
|
6463
|
-
* No description
|
|
6464
|
-
*
|
|
6465
|
-
* @tags Statistic
|
|
6466
|
-
* @name Classify1
|
|
6467
|
-
* @operationId StatisticController_Classify_1
|
|
6468
|
-
* @summary Returns the classified attribute values that correspond to the given number of classes and given condition.
|
|
6469
5596
|
* @request POST:/statistics/classify
|
|
6470
5597
|
* @secure
|
|
6471
5598
|
* @response `200` OK
|
|
6472
5599
|
*/
|
|
6473
5600
|
|
|
6474
5601
|
}, {
|
|
6475
|
-
key: "
|
|
6476
|
-
value: function
|
|
5602
|
+
key: "classify",
|
|
5603
|
+
value: function classify(data) {
|
|
6477
5604
|
return this.http.post("/statistics/classify", data).json();
|
|
6478
5605
|
}
|
|
6479
5606
|
/**
|
|
@@ -6483,31 +5610,14 @@ let StatisticService = /*#__PURE__*/function (_Service) {
|
|
|
6483
5610
|
* @name SumOfProduct
|
|
6484
5611
|
* @operationId StatisticController_SumOfProduct
|
|
6485
5612
|
* @summary Sum of product.
|
|
6486
|
-
* @request GET:/statistics/sumOfProduct
|
|
6487
|
-
* @secure
|
|
6488
|
-
* @response `200` OK
|
|
6489
|
-
*/
|
|
6490
|
-
|
|
6491
|
-
}, {
|
|
6492
|
-
key: "sumOfProduct",
|
|
6493
|
-
value: function sumOfProduct(query) {
|
|
6494
|
-
return this.http.get("/statistics/sumOfProduct", query).json();
|
|
6495
|
-
}
|
|
6496
|
-
/**
|
|
6497
|
-
* No description
|
|
6498
|
-
*
|
|
6499
|
-
* @tags Statistic
|
|
6500
|
-
* @name SumOfProduct1
|
|
6501
|
-
* @operationId StatisticController_SumOfProduct_1
|
|
6502
|
-
* @summary Sum of product.
|
|
6503
5613
|
* @request POST:/statistics/sumOfProduct
|
|
6504
5614
|
* @secure
|
|
6505
5615
|
* @response `200` OK
|
|
6506
5616
|
*/
|
|
6507
5617
|
|
|
6508
5618
|
}, {
|
|
6509
|
-
key: "
|
|
6510
|
-
value: function
|
|
5619
|
+
key: "sumOfProduct",
|
|
5620
|
+
value: function sumOfProduct(data) {
|
|
6511
5621
|
return this.http.post("/statistics/sumOfProduct", data).json();
|
|
6512
5622
|
}
|
|
6513
5623
|
}]);
|
|
@@ -6531,167 +5641,19 @@ let Statistic = /*#__PURE__*/function (_StatisticService) {
|
|
|
6531
5641
|
value: function getStatistic(params) {
|
|
6532
5642
|
return this.statisticsDb(params);
|
|
6533
5643
|
}
|
|
6534
|
-
}, {
|
|
6535
|
-
key: "postStatistic",
|
|
6536
|
-
value: function postStatistic(params) {
|
|
6537
|
-
return this.statisticsDb1(params);
|
|
6538
|
-
}
|
|
6539
5644
|
}, {
|
|
6540
5645
|
key: "getClassify",
|
|
6541
5646
|
value: function getClassify(params) {
|
|
6542
5647
|
return this.classify(params);
|
|
6543
5648
|
}
|
|
6544
|
-
}, {
|
|
6545
|
-
key: "postClassify",
|
|
6546
|
-
value: function postClassify(params) {
|
|
6547
|
-
return this.classify1(params);
|
|
6548
|
-
}
|
|
6549
|
-
}]);
|
|
6550
|
-
|
|
6551
|
-
return Statistic;
|
|
6552
|
-
}(StatisticService);
|
|
6553
|
-
|
|
6554
|
-
/**
|
|
6555
|
-
* @title Spatial Processing Core API
|
|
6556
|
-
* @version 1.5.1.0
|
|
6557
|
-
* @baseUrl /sp
|
|
6558
|
-
*/
|
|
6559
|
-
|
|
6560
|
-
let StyleService = /*#__PURE__*/function (_Service) {
|
|
6561
|
-
_inherits(StyleService, _Service);
|
|
6562
|
-
|
|
6563
|
-
var _super = /*#__PURE__*/_createSuper(StyleService);
|
|
6564
|
-
|
|
6565
|
-
function StyleService() {
|
|
6566
|
-
_classCallCheck(this, StyleService);
|
|
6567
|
-
|
|
6568
|
-
return _super.apply(this, arguments);
|
|
6569
|
-
}
|
|
6570
|
-
|
|
6571
|
-
_createClass(StyleService, [{
|
|
6572
|
-
key: "getStyle",
|
|
6573
|
-
value:
|
|
6574
|
-
/**
|
|
6575
|
-
* No description
|
|
6576
|
-
*
|
|
6577
|
-
* @tags StyleService
|
|
6578
|
-
* @name GetStyle
|
|
6579
|
-
* @operationId StyleServiceController_GetStyle
|
|
6580
|
-
* @summary Returns the style by its id.
|
|
6581
|
-
* @request GET:/styles/{id}
|
|
6582
|
-
* @secure
|
|
6583
|
-
* @response `200` OK
|
|
6584
|
-
*/
|
|
6585
|
-
function getStyle(id) {
|
|
6586
|
-
return this.http.get("/styles/" + id).json();
|
|
6587
|
-
}
|
|
6588
|
-
/**
|
|
6589
|
-
* No description
|
|
6590
|
-
*
|
|
6591
|
-
* @tags StyleService
|
|
6592
|
-
* @name UpdateStyle
|
|
6593
|
-
* @operationId StyleServiceController_UpdateStyle
|
|
6594
|
-
* @summary Replaces a style and gives it a new id.
|
|
6595
|
-
* @request POST:/styles/{id}
|
|
6596
|
-
* @secure
|
|
6597
|
-
* @response `200` OK
|
|
6598
|
-
*/
|
|
6599
|
-
|
|
6600
|
-
}, {
|
|
6601
|
-
key: "updateStyle",
|
|
6602
|
-
value: function updateStyle(id, data) {
|
|
6603
|
-
return this.http.post("/styles/" + id, data).json();
|
|
6604
|
-
}
|
|
6605
|
-
/**
|
|
6606
|
-
* No description
|
|
6607
|
-
*
|
|
6608
|
-
* @tags StyleService
|
|
6609
|
-
* @name CreateStyle
|
|
6610
|
-
* @operationId StyleServiceController_CreateStyle
|
|
6611
|
-
* @summary Creates a new style.
|
|
6612
|
-
* @request POST:/styles
|
|
6613
|
-
* @secure
|
|
6614
|
-
* @response `200` OK
|
|
6615
|
-
*/
|
|
6616
|
-
|
|
6617
|
-
}, {
|
|
6618
|
-
key: "createStyle",
|
|
6619
|
-
value: function createStyle(data) {
|
|
6620
|
-
return this.http.post("/styles", data).json();
|
|
6621
|
-
}
|
|
6622
|
-
/**
|
|
6623
|
-
* No description
|
|
6624
|
-
*
|
|
6625
|
-
* @tags StyleService
|
|
6626
|
-
* @name GetAllFonts
|
|
6627
|
-
* @operationId StyleServiceController_GetAllFonts
|
|
6628
|
-
* @summary Gets all installed fonts.
|
|
6629
|
-
* @request GET:/styles/fonts
|
|
6630
|
-
* @secure
|
|
6631
|
-
* @response `200` OK
|
|
6632
|
-
*/
|
|
6633
|
-
|
|
6634
|
-
}, {
|
|
6635
|
-
key: "getAllFonts",
|
|
6636
|
-
value: function getAllFonts() {
|
|
6637
|
-
return this.http.get("/styles/fonts").json();
|
|
6638
|
-
}
|
|
6639
|
-
/**
|
|
6640
|
-
* No description
|
|
6641
|
-
*
|
|
6642
|
-
* @tags StyleService
|
|
6643
|
-
* @name AddFont
|
|
6644
|
-
* @operationId StyleServiceController_AddFont
|
|
6645
|
-
* @summary Install new font.
|
|
6646
|
-
* @request POST:/styles/fonts
|
|
6647
|
-
* @secure
|
|
6648
|
-
* @response `200` OK
|
|
6649
|
-
*/
|
|
6650
|
-
|
|
6651
|
-
}, {
|
|
6652
|
-
key: "addFont",
|
|
6653
|
-
value: function addFont(data) {
|
|
6654
|
-
return this.http.post("/styles/fonts", toFormData(data)).then(() => {});
|
|
6655
|
-
}
|
|
6656
|
-
/**
|
|
6657
|
-
* No description
|
|
6658
|
-
*
|
|
6659
|
-
* @tags StyleService
|
|
6660
|
-
* @name RemoveFont
|
|
6661
|
-
* @operationId StyleServiceController_RemoveFont
|
|
6662
|
-
* @summary Remove installed font.
|
|
6663
|
-
* @request DELETE:/styles/fonts
|
|
6664
|
-
* @secure
|
|
6665
|
-
* @response `200` OK
|
|
6666
|
-
*/
|
|
6667
|
-
|
|
6668
|
-
}, {
|
|
6669
|
-
key: "removeFont",
|
|
6670
|
-
value: function removeFont(query) {
|
|
6671
|
-
return this.http.delete("/styles/fonts", null, query).then(() => {});
|
|
6672
|
-
}
|
|
6673
5649
|
}]);
|
|
6674
5650
|
|
|
6675
|
-
return
|
|
6676
|
-
}(
|
|
6677
|
-
|
|
6678
|
-
let Styles = /*#__PURE__*/function (_StyleService) {
|
|
6679
|
-
_inherits(Styles, _StyleService);
|
|
6680
|
-
|
|
6681
|
-
var _super = /*#__PURE__*/_createSuper(Styles);
|
|
6682
|
-
|
|
6683
|
-
function Styles() {
|
|
6684
|
-
_classCallCheck(this, Styles);
|
|
6685
|
-
|
|
6686
|
-
return _super.apply(this, arguments);
|
|
6687
|
-
}
|
|
6688
|
-
|
|
6689
|
-
return _createClass(Styles);
|
|
6690
|
-
}(StyleService);
|
|
5651
|
+
return Statistic;
|
|
5652
|
+
}(StatisticService);
|
|
6691
5653
|
|
|
6692
|
-
const _excluded$
|
|
6693
|
-
_excluded2$
|
|
6694
|
-
_excluded3$
|
|
5654
|
+
const _excluded$5 = ["name"],
|
|
5655
|
+
_excluded2$3 = ["name"],
|
|
5656
|
+
_excluded3$2 = ["name"];
|
|
6695
5657
|
/**
|
|
6696
5658
|
* @title Spatial Processing Core API
|
|
6697
5659
|
* @version 1.5.1.0
|
|
@@ -6863,7 +5825,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
6863
5825
|
let {
|
|
6864
5826
|
name
|
|
6865
5827
|
} = _ref,
|
|
6866
|
-
query = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5828
|
+
query = _objectWithoutPropertiesLoose(_ref, _excluded$5);
|
|
6867
5829
|
|
|
6868
5830
|
return this.http.get("/tables/" + name + "/data", query).json();
|
|
6869
5831
|
}
|
|
@@ -6902,7 +5864,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
6902
5864
|
let {
|
|
6903
5865
|
name
|
|
6904
5866
|
} = _ref2,
|
|
6905
|
-
query = _objectWithoutPropertiesLoose(_ref2, _excluded2$
|
|
5867
|
+
query = _objectWithoutPropertiesLoose(_ref2, _excluded2$3);
|
|
6906
5868
|
|
|
6907
5869
|
return this.http.patch("/tables/" + name + "/data", data, query).then(() => {});
|
|
6908
5870
|
}
|
|
@@ -6924,7 +5886,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
6924
5886
|
let {
|
|
6925
5887
|
name
|
|
6926
5888
|
} = _ref3,
|
|
6927
|
-
query = _objectWithoutPropertiesLoose(_ref3, _excluded3$
|
|
5889
|
+
query = _objectWithoutPropertiesLoose(_ref3, _excluded3$2);
|
|
6928
5890
|
|
|
6929
5891
|
return this.http.delete("/tables/" + name + "/data", null, query).then(() => {});
|
|
6930
5892
|
}
|
|
@@ -7133,7 +6095,7 @@ let Tools = /*#__PURE__*/function (_ToolsService) {
|
|
|
7133
6095
|
return _createClass(Tools);
|
|
7134
6096
|
}(ToolsService);
|
|
7135
6097
|
|
|
7136
|
-
const _excluded$
|
|
6098
|
+
const _excluded$6 = ["name", "z", "x", "y"];
|
|
7137
6099
|
/**
|
|
7138
6100
|
* @title Spatial Processing Core API
|
|
7139
6101
|
* @version 1.5.1.0
|
|
@@ -7172,7 +6134,7 @@ let VectorTileService = /*#__PURE__*/function (_Service) {
|
|
|
7172
6134
|
x,
|
|
7173
6135
|
y
|
|
7174
6136
|
} = _ref,
|
|
7175
|
-
query = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
6137
|
+
query = _objectWithoutPropertiesLoose(_ref, _excluded$6);
|
|
7176
6138
|
|
|
7177
6139
|
return this.http.get("/vt/" + name + "/" + z + "/" + x + "/" + y + ".pbf", query).then(() => {});
|
|
7178
6140
|
}
|
|
@@ -7267,7 +6229,7 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
|
|
|
7267
6229
|
(_request$headers = request.headers) == null ? void 0 : _request$headers.set("Authorization", "Bearer " + (token || ""));
|
|
7268
6230
|
}
|
|
7269
6231
|
}, ...((_hooks$beforeRequest = hooks == null ? void 0 : hooks.beforeRequest) != null ? _hooks$beforeRequest : [])],
|
|
7270
|
-
beforeRetry: [async _ref2 => {
|
|
6232
|
+
beforeRetry: [async (_ref2) => {
|
|
7271
6233
|
let {
|
|
7272
6234
|
request,
|
|
7273
6235
|
error,
|
|
@@ -7315,7 +6277,6 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
|
|
|
7315
6277
|
_this.tables = new Tables(_this.http);
|
|
7316
6278
|
_this.projects = new Projects(_this.http);
|
|
7317
6279
|
_this.resources = new Resources(_this.projects, _this.layers, _this.tables);
|
|
7318
|
-
_this.styles = new Styles(_this.http);
|
|
7319
6280
|
_this.account = new Account(_this.http);
|
|
7320
6281
|
_this.accountPreview = new AccountPreview(_this.http);
|
|
7321
6282
|
_this.bulk = new BulkOperations(_this.http);
|
|
@@ -7325,13 +6286,9 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
|
|
|
7325
6286
|
_this.filters = new Filters(_this.http);
|
|
7326
6287
|
_this.import = new Import(_this.http);
|
|
7327
6288
|
_this.geocode = new Geocode(_this.http);
|
|
7328
|
-
_this.cameras = new Cameras(_this.http);
|
|
7329
|
-
_this.print = new Print(_this.http);
|
|
7330
6289
|
_this.tools = new Tools(_this.http);
|
|
7331
|
-
_this.external = new External(_this.http);
|
|
7332
6290
|
_this.clientSettings = new ClientSettings(_this.http);
|
|
7333
6291
|
_this.portalSettings = new PortalSettings(_this.http);
|
|
7334
|
-
_this.iceRouter = new IceRouter(_this.http);
|
|
7335
6292
|
_this.statistic = new Statistic(_this.http);
|
|
7336
6293
|
_this.feedback = new Feedback(_this.http);
|
|
7337
6294
|
_this.vectorTiles = new VectorTiles(_this.http);
|
|
@@ -7473,47 +6430,47 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
|
|
|
7473
6430
|
|
|
7474
6431
|
/**
|
|
7475
6432
|
*
|
|
7476
|
-
|
|
6433
|
+
|
|
7477
6434
|
None
|
|
7478
|
-
|
|
6435
|
+
|
|
7479
6436
|
Array
|
|
7480
|
-
|
|
6437
|
+
|
|
7481
6438
|
Min
|
|
7482
|
-
|
|
6439
|
+
|
|
7483
6440
|
Max
|
|
7484
|
-
|
|
6441
|
+
|
|
7485
6442
|
Avg
|
|
7486
|
-
|
|
6443
|
+
|
|
7487
6444
|
Sum
|
|
7488
|
-
|
|
6445
|
+
|
|
7489
6446
|
Extent
|
|
7490
|
-
|
|
6447
|
+
|
|
7491
6448
|
H3
|
|
7492
|
-
|
|
6449
|
+
|
|
7493
6450
|
Count
|
|
7494
|
-
|
|
6451
|
+
|
|
7495
6452
|
TotalCount
|
|
7496
|
-
|
|
6453
|
+
|
|
7497
6454
|
DistinctCount
|
|
7498
|
-
|
|
6455
|
+
|
|
7499
6456
|
First
|
|
7500
|
-
|
|
6457
|
+
|
|
7501
6458
|
Last
|
|
7502
|
-
|
|
6459
|
+
|
|
7503
6460
|
Median
|
|
7504
|
-
|
|
6461
|
+
|
|
7505
6462
|
Mod
|
|
7506
|
-
|
|
6463
|
+
|
|
7507
6464
|
StdDeviation
|
|
7508
|
-
|
|
6465
|
+
|
|
7509
6466
|
SumOfProduct
|
|
7510
|
-
|
|
6467
|
+
|
|
7511
6468
|
OnlyValue
|
|
7512
|
-
|
|
6469
|
+
|
|
7513
6470
|
WeightedAvg
|
|
7514
|
-
|
|
6471
|
+
|
|
7515
6472
|
DensityIndicators
|
|
7516
|
-
|
|
6473
|
+
|
|
7517
6474
|
DividedSum
|
|
7518
6475
|
*/
|
|
7519
6476
|
var AggregationFunction;
|
|
@@ -7543,13 +6500,13 @@ var AggregationFunction;
|
|
|
7543
6500
|
})(AggregationFunction || (AggregationFunction = {}));
|
|
7544
6501
|
/**
|
|
7545
6502
|
*
|
|
7546
|
-
|
|
6503
|
+
|
|
7547
6504
|
Unknown
|
|
7548
|
-
|
|
6505
|
+
|
|
7549
6506
|
Icon
|
|
7550
|
-
|
|
6507
|
+
|
|
7551
6508
|
PNG
|
|
7552
|
-
|
|
6509
|
+
|
|
7553
6510
|
SVG
|
|
7554
6511
|
*/
|
|
7555
6512
|
|
|
@@ -7564,13 +6521,13 @@ var AttributeIconType;
|
|
|
7564
6521
|
})(AttributeIconType || (AttributeIconType = {}));
|
|
7565
6522
|
/**
|
|
7566
6523
|
*
|
|
7567
|
-
|
|
6524
|
+
|
|
7568
6525
|
None
|
|
7569
|
-
|
|
6526
|
+
|
|
7570
6527
|
SelectFromHandBook
|
|
7571
|
-
|
|
6528
|
+
|
|
7572
6529
|
SelectFromRange
|
|
7573
|
-
|
|
6530
|
+
|
|
7574
6531
|
ViewHandBook
|
|
7575
6532
|
*/
|
|
7576
6533
|
|
|
@@ -7585,31 +6542,31 @@ var AttributeSelectorType;
|
|
|
7585
6542
|
})(AttributeSelectorType || (AttributeSelectorType = {}));
|
|
7586
6543
|
/**
|
|
7587
6544
|
*
|
|
7588
|
-
|
|
6545
|
+
|
|
7589
6546
|
Unknown
|
|
7590
|
-
|
|
6547
|
+
|
|
7591
6548
|
String
|
|
7592
|
-
|
|
6549
|
+
|
|
7593
6550
|
Int32
|
|
7594
|
-
|
|
6551
|
+
|
|
7595
6552
|
Int64
|
|
7596
|
-
|
|
6553
|
+
|
|
7597
6554
|
Double
|
|
7598
|
-
|
|
6555
|
+
|
|
7599
6556
|
DateTime
|
|
7600
|
-
|
|
6557
|
+
|
|
7601
6558
|
Boolean
|
|
7602
|
-
|
|
6559
|
+
|
|
7603
6560
|
Point
|
|
7604
|
-
|
|
6561
|
+
|
|
7605
6562
|
Polyline
|
|
7606
|
-
|
|
6563
|
+
|
|
7607
6564
|
MultiPolygon
|
|
7608
|
-
|
|
6565
|
+
|
|
7609
6566
|
Multipoint
|
|
7610
|
-
|
|
6567
|
+
|
|
7611
6568
|
H3Index
|
|
7612
|
-
|
|
6569
|
+
|
|
7613
6570
|
Json
|
|
7614
6571
|
*/
|
|
7615
6572
|
|
|
@@ -7633,9 +6590,9 @@ var AttributeType;
|
|
|
7633
6590
|
})(AttributeType || (AttributeType = {}));
|
|
7634
6591
|
/**
|
|
7635
6592
|
*
|
|
7636
|
-
|
|
6593
|
+
|
|
7637
6594
|
authorization_code
|
|
7638
|
-
|
|
6595
|
+
|
|
7639
6596
|
refresh_token
|
|
7640
6597
|
*/
|
|
7641
6598
|
|
|
@@ -7648,19 +6605,19 @@ var AuthorizationGrant;
|
|
|
7648
6605
|
})(AuthorizationGrant || (AuthorizationGrant = {}));
|
|
7649
6606
|
/**
|
|
7650
6607
|
*
|
|
7651
|
-
|
|
6608
|
+
|
|
7652
6609
|
Directory
|
|
7653
|
-
|
|
6610
|
+
|
|
7654
6611
|
Map
|
|
7655
|
-
|
|
6612
|
+
|
|
7656
6613
|
Layer
|
|
7657
|
-
|
|
6614
|
+
|
|
7658
6615
|
Table
|
|
7659
|
-
|
|
6616
|
+
|
|
7660
6617
|
File
|
|
7661
|
-
|
|
6618
|
+
|
|
7662
6619
|
TaskPrototype
|
|
7663
|
-
|
|
6620
|
+
|
|
7664
6621
|
DataSource
|
|
7665
6622
|
*/
|
|
7666
6623
|
|
|
@@ -7678,20 +6635,18 @@ var CatalogResourceType;
|
|
|
7678
6635
|
})(CatalogResourceType || (CatalogResourceType = {}));
|
|
7679
6636
|
/**
|
|
7680
6637
|
*
|
|
7681
|
-
|
|
6638
|
+
|
|
7682
6639
|
none
|
|
7683
|
-
|
|
6640
|
+
|
|
7684
6641
|
naturalBreaks
|
|
7685
|
-
|
|
6642
|
+
|
|
7686
6643
|
equalInterval
|
|
7687
|
-
|
|
6644
|
+
|
|
7688
6645
|
quantile
|
|
7689
|
-
|
|
7690
|
-
distinct
|
|
7691
|
-
|
|
7692
|
-
step
|
|
7693
|
-
|
|
6646
|
+
|
|
7694
6647
|
unique
|
|
6648
|
+
|
|
6649
|
+
step
|
|
7695
6650
|
*/
|
|
7696
6651
|
|
|
7697
6652
|
|
|
@@ -7702,17 +6657,16 @@ var ClassificationType;
|
|
|
7702
6657
|
ClassificationType["NaturalBreaks"] = "naturalBreaks";
|
|
7703
6658
|
ClassificationType["EqualInterval"] = "equalInterval";
|
|
7704
6659
|
ClassificationType["Quantile"] = "quantile";
|
|
7705
|
-
ClassificationType["Distinct"] = "distinct";
|
|
7706
|
-
ClassificationType["Step"] = "step";
|
|
7707
6660
|
ClassificationType["Unique"] = "unique";
|
|
6661
|
+
ClassificationType["Step"] = "step";
|
|
7708
6662
|
})(ClassificationType || (ClassificationType = {}));
|
|
7709
6663
|
/**
|
|
7710
6664
|
*
|
|
7711
|
-
|
|
6665
|
+
|
|
7712
6666
|
decimal
|
|
7713
|
-
|
|
6667
|
+
|
|
7714
6668
|
dateTime
|
|
7715
|
-
|
|
6669
|
+
|
|
7716
6670
|
text
|
|
7717
6671
|
*/
|
|
7718
6672
|
|
|
@@ -7726,55 +6680,55 @@ var ClassifyAttributeType;
|
|
|
7726
6680
|
})(ClassifyAttributeType || (ClassifyAttributeType = {}));
|
|
7727
6681
|
/**
|
|
7728
6682
|
*
|
|
7729
|
-
|
|
6683
|
+
|
|
7730
6684
|
Unknown
|
|
7731
|
-
|
|
6685
|
+
|
|
7732
6686
|
SerializeError
|
|
7733
|
-
|
|
6687
|
+
|
|
7734
6688
|
InvalidDataService
|
|
7735
|
-
|
|
6689
|
+
|
|
7736
6690
|
InvalidConfiguration
|
|
7737
|
-
|
|
6691
|
+
|
|
7738
6692
|
InvalidDataServiceName
|
|
7739
|
-
|
|
6693
|
+
|
|
7740
6694
|
InvalidTableName
|
|
7741
|
-
|
|
6695
|
+
|
|
7742
6696
|
InvalidLayerName
|
|
7743
|
-
|
|
6697
|
+
|
|
7744
6698
|
ResourceNotFound
|
|
7745
|
-
|
|
6699
|
+
|
|
7746
6700
|
InvalidCondition
|
|
7747
|
-
|
|
6701
|
+
|
|
7748
6702
|
InvalidAttributes
|
|
7749
|
-
|
|
6703
|
+
|
|
7750
6704
|
InvalidIdAttribute
|
|
7751
|
-
|
|
6705
|
+
|
|
7752
6706
|
InvalidGeometryAttribute
|
|
7753
|
-
|
|
6707
|
+
|
|
7754
6708
|
InvalidGeometryAttributeType
|
|
7755
|
-
|
|
6709
|
+
|
|
7756
6710
|
InvalidColumnName
|
|
7757
|
-
|
|
6711
|
+
|
|
7758
6712
|
InvalidIdColumnSettings
|
|
7759
|
-
|
|
6713
|
+
|
|
7760
6714
|
ColumnNotExistsInTable
|
|
7761
|
-
|
|
6715
|
+
|
|
7762
6716
|
InvalidStyle
|
|
7763
|
-
|
|
6717
|
+
|
|
7764
6718
|
InvalidLayerType
|
|
7765
|
-
|
|
6719
|
+
|
|
7766
6720
|
ColumnLoadingError
|
|
7767
|
-
|
|
6721
|
+
|
|
7768
6722
|
InvalidAttributeFormat
|
|
7769
|
-
|
|
6723
|
+
|
|
7770
6724
|
DataSourceNotFound
|
|
7771
|
-
|
|
6725
|
+
|
|
7772
6726
|
DuplicateColumns
|
|
7773
|
-
|
|
6727
|
+
|
|
7774
6728
|
DuplicateAttributes
|
|
7775
|
-
|
|
6729
|
+
|
|
7776
6730
|
TableWithoutColumns
|
|
7777
|
-
|
|
6731
|
+
|
|
7778
6732
|
InvalidTableReferenceConfiguration
|
|
7779
6733
|
*/
|
|
7780
6734
|
|
|
@@ -7810,13 +6764,13 @@ var ConfigurationErrorEnum;
|
|
|
7810
6764
|
})(ConfigurationErrorEnum || (ConfigurationErrorEnum = {}));
|
|
7811
6765
|
/**
|
|
7812
6766
|
*
|
|
7813
|
-
|
|
6767
|
+
|
|
7814
6768
|
Postgres
|
|
7815
|
-
|
|
6769
|
+
|
|
7816
6770
|
Trino
|
|
7817
|
-
|
|
6771
|
+
|
|
7818
6772
|
S3
|
|
7819
|
-
|
|
6773
|
+
|
|
7820
6774
|
GisServer
|
|
7821
6775
|
*/
|
|
7822
6776
|
|
|
@@ -7831,15 +6785,15 @@ var DataSourceType;
|
|
|
7831
6785
|
})(DataSourceType || (DataSourceType = {}));
|
|
7832
6786
|
/**
|
|
7833
6787
|
* Type of the error.
|
|
7834
|
-
|
|
6788
|
+
|
|
7835
6789
|
ResourceLimitExceeded
|
|
7836
|
-
|
|
6790
|
+
|
|
7837
6791
|
ResourceNotFound
|
|
7838
|
-
|
|
6792
|
+
|
|
7839
6793
|
InternalError
|
|
7840
|
-
|
|
6794
|
+
|
|
7841
6795
|
BadRequest
|
|
7842
|
-
|
|
6796
|
+
|
|
7843
6797
|
DuplicateContent
|
|
7844
6798
|
*/
|
|
7845
6799
|
|
|
@@ -7890,11 +6844,11 @@ var ErrorType;
|
|
|
7890
6844
|
})(ErrorType || (ErrorType = {}));
|
|
7891
6845
|
/**
|
|
7892
6846
|
* Sets whether font should be styled.
|
|
7893
|
-
|
|
6847
|
+
|
|
7894
6848
|
normal
|
|
7895
|
-
|
|
6849
|
+
|
|
7896
6850
|
oblique
|
|
7897
|
-
|
|
6851
|
+
|
|
7898
6852
|
italic
|
|
7899
6853
|
*/
|
|
7900
6854
|
|
|
@@ -7908,27 +6862,27 @@ var FontStyle;
|
|
|
7908
6862
|
})(FontStyle || (FontStyle = {}));
|
|
7909
6863
|
/**
|
|
7910
6864
|
* Specifies the weight (or boldness) of the font.
|
|
7911
|
-
|
|
6865
|
+
|
|
7912
6866
|
Thin
|
|
7913
|
-
|
|
6867
|
+
|
|
7914
6868
|
ExtraLight
|
|
7915
|
-
|
|
6869
|
+
|
|
7916
6870
|
Light
|
|
7917
|
-
|
|
6871
|
+
|
|
7918
6872
|
SemiLight
|
|
7919
|
-
|
|
6873
|
+
|
|
7920
6874
|
Normal
|
|
7921
|
-
|
|
6875
|
+
|
|
7922
6876
|
Medium
|
|
7923
|
-
|
|
6877
|
+
|
|
7924
6878
|
DemiBold
|
|
7925
|
-
|
|
6879
|
+
|
|
7926
6880
|
Bold
|
|
7927
|
-
|
|
6881
|
+
|
|
7928
6882
|
ExtraBold
|
|
7929
|
-
|
|
6883
|
+
|
|
7930
6884
|
Black
|
|
7931
|
-
|
|
6885
|
+
|
|
7932
6886
|
ExtraBlack
|
|
7933
6887
|
*/
|
|
7934
6888
|
|
|
@@ -7950,17 +6904,17 @@ var FontWeight;
|
|
|
7950
6904
|
})(FontWeight || (FontWeight = {}));
|
|
7951
6905
|
/**
|
|
7952
6906
|
*
|
|
7953
|
-
|
|
6907
|
+
|
|
7954
6908
|
unknown
|
|
7955
|
-
|
|
6909
|
+
|
|
7956
6910
|
point
|
|
7957
|
-
|
|
6911
|
+
|
|
7958
6912
|
polyline
|
|
7959
|
-
|
|
6913
|
+
|
|
7960
6914
|
multipolygon
|
|
7961
|
-
|
|
6915
|
+
|
|
7962
6916
|
envelope
|
|
7963
|
-
|
|
6917
|
+
|
|
7964
6918
|
multipoint
|
|
7965
6919
|
*/
|
|
7966
6920
|
|
|
@@ -7977,13 +6931,13 @@ var GeometryType;
|
|
|
7977
6931
|
})(GeometryType || (GeometryType = {}));
|
|
7978
6932
|
/**
|
|
7979
6933
|
* Resource group.
|
|
7980
|
-
|
|
6934
|
+
|
|
7981
6935
|
my
|
|
7982
|
-
|
|
6936
|
+
|
|
7983
6937
|
role
|
|
7984
|
-
|
|
6938
|
+
|
|
7985
6939
|
public
|
|
7986
|
-
|
|
6940
|
+
|
|
7987
6941
|
all
|
|
7988
6942
|
*/
|
|
7989
6943
|
|
|
@@ -7998,13 +6952,13 @@ var Group;
|
|
|
7998
6952
|
})(Group || (Group = {}));
|
|
7999
6953
|
/**
|
|
8000
6954
|
* Specifies the settings of line cap. This is applied to the beginning and end of each non-closed line.
|
|
8001
|
-
|
|
6955
|
+
|
|
8002
6956
|
Flat
|
|
8003
|
-
|
|
6957
|
+
|
|
8004
6958
|
Square
|
|
8005
|
-
|
|
6959
|
+
|
|
8006
6960
|
Round
|
|
8007
|
-
|
|
6961
|
+
|
|
8008
6962
|
Triangle
|
|
8009
6963
|
*/
|
|
8010
6964
|
|
|
@@ -8019,29 +6973,29 @@ var LineCapStyle;
|
|
|
8019
6973
|
})(LineCapStyle || (LineCapStyle = {}));
|
|
8020
6974
|
/**
|
|
8021
6975
|
* Type of the line ending.
|
|
8022
|
-
|
|
6976
|
+
|
|
8023
6977
|
none
|
|
8024
|
-
|
|
6978
|
+
|
|
8025
6979
|
arrow
|
|
8026
|
-
|
|
6980
|
+
|
|
8027
6981
|
filledArrow
|
|
8028
|
-
|
|
6982
|
+
|
|
8029
6983
|
square
|
|
8030
|
-
|
|
6984
|
+
|
|
8031
6985
|
filledSquare
|
|
8032
|
-
|
|
6986
|
+
|
|
8033
6987
|
circle
|
|
8034
|
-
|
|
6988
|
+
|
|
8035
6989
|
filledCircle
|
|
8036
|
-
|
|
6990
|
+
|
|
8037
6991
|
diamond
|
|
8038
|
-
|
|
6992
|
+
|
|
8039
6993
|
filledDiamond
|
|
8040
|
-
|
|
6994
|
+
|
|
8041
6995
|
roundSquare
|
|
8042
|
-
|
|
6996
|
+
|
|
8043
6997
|
filledRoundSquare
|
|
8044
|
-
|
|
6998
|
+
|
|
8045
6999
|
svg
|
|
8046
7000
|
*/
|
|
8047
7001
|
|
|
@@ -8064,11 +7018,11 @@ var LineEndingType;
|
|
|
8064
7018
|
})(LineEndingType || (LineEndingType = {}));
|
|
8065
7019
|
/**
|
|
8066
7020
|
* Specifies the settings of lines join. This is applied to corners in lines and rectangles.
|
|
8067
|
-
|
|
7021
|
+
|
|
8068
7022
|
Miter
|
|
8069
|
-
|
|
7023
|
+
|
|
8070
7024
|
Bevel
|
|
8071
|
-
|
|
7025
|
+
|
|
8072
7026
|
Round
|
|
8073
7027
|
*/
|
|
8074
7028
|
|
|
@@ -8082,11 +7036,11 @@ var LineJoinType;
|
|
|
8082
7036
|
})(LineJoinType || (LineJoinType = {}));
|
|
8083
7037
|
/**
|
|
8084
7038
|
* Filter exists resources by owner.
|
|
8085
|
-
|
|
7039
|
+
|
|
8086
7040
|
My
|
|
8087
|
-
|
|
7041
|
+
|
|
8088
7042
|
Shared
|
|
8089
|
-
|
|
7043
|
+
|
|
8090
7044
|
Public
|
|
8091
7045
|
*/
|
|
8092
7046
|
|
|
@@ -8100,9 +7054,9 @@ var OwnerFilter;
|
|
|
8100
7054
|
})(OwnerFilter || (OwnerFilter = {}));
|
|
8101
7055
|
/**
|
|
8102
7056
|
* Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
|
|
8103
|
-
|
|
7057
|
+
|
|
8104
7058
|
xyz
|
|
8105
|
-
|
|
7059
|
+
|
|
8106
7060
|
tms
|
|
8107
7061
|
*/
|
|
8108
7062
|
|
|
@@ -8115,19 +7069,19 @@ var PbfSchema;
|
|
|
8115
7069
|
})(PbfSchema || (PbfSchema = {}));
|
|
8116
7070
|
/**
|
|
8117
7071
|
*
|
|
8118
|
-
|
|
7072
|
+
|
|
8119
7073
|
none
|
|
8120
|
-
|
|
7074
|
+
|
|
8121
7075
|
configure
|
|
8122
|
-
|
|
7076
|
+
|
|
8123
7077
|
write
|
|
8124
|
-
|
|
7078
|
+
|
|
8125
7079
|
read
|
|
8126
|
-
|
|
7080
|
+
|
|
8127
7081
|
read,configure
|
|
8128
|
-
|
|
7082
|
+
|
|
8129
7083
|
read,write
|
|
8130
|
-
|
|
7084
|
+
|
|
8131
7085
|
read,write,configure
|
|
8132
7086
|
*/
|
|
8133
7087
|
|
|
@@ -8145,21 +7099,21 @@ var Permissions;
|
|
|
8145
7099
|
})(Permissions || (Permissions = {}));
|
|
8146
7100
|
/**
|
|
8147
7101
|
* Type of the authorization policy.
|
|
8148
|
-
|
|
7102
|
+
|
|
8149
7103
|
Unknown
|
|
8150
|
-
|
|
7104
|
+
|
|
8151
7105
|
CreateTable
|
|
8152
|
-
|
|
7106
|
+
|
|
8153
7107
|
CreateLayer
|
|
8154
|
-
|
|
7108
|
+
|
|
8155
7109
|
CreateProject
|
|
8156
|
-
|
|
7110
|
+
|
|
8157
7111
|
MaxFeaturesInOneTable
|
|
8158
|
-
|
|
7112
|
+
|
|
8159
7113
|
MaxObjectsToExport
|
|
8160
|
-
|
|
7114
|
+
|
|
8161
7115
|
MaxUploadContentSize
|
|
8162
|
-
|
|
7116
|
+
|
|
8163
7117
|
MaxEqlQueryParametersValues
|
|
8164
7118
|
*/
|
|
8165
7119
|
|
|
@@ -8177,42 +7131,24 @@ var PolicyType;
|
|
|
8177
7131
|
PolicyType["MaxEqlQueryParametersValues"] = "MaxEqlQueryParametersValues";
|
|
8178
7132
|
})(PolicyType || (PolicyType = {}));
|
|
8179
7133
|
/**
|
|
8180
|
-
* Stream quality.
|
|
8181
|
-
|
|
8182
|
-
Low
|
|
8183
|
-
|
|
8184
|
-
Medium
|
|
8185
|
-
|
|
8186
|
-
High
|
|
8187
|
-
*/
|
|
8188
|
-
|
|
8189
|
-
|
|
8190
|
-
var Quality;
|
|
8191
|
-
|
|
8192
|
-
(function (Quality) {
|
|
8193
|
-
Quality["Low"] = "Low";
|
|
8194
|
-
Quality["Medium"] = "Medium";
|
|
8195
|
-
Quality["High"] = "High";
|
|
8196
|
-
})(Quality || (Quality = {}));
|
|
8197
|
-
/**
|
|
8198
7134
|
*
|
|
8199
|
-
|
|
7135
|
+
|
|
8200
7136
|
Init
|
|
8201
|
-
|
|
7137
|
+
|
|
8202
7138
|
Process
|
|
8203
|
-
|
|
7139
|
+
|
|
8204
7140
|
Completed
|
|
8205
|
-
|
|
7141
|
+
|
|
8206
7142
|
Interrupted
|
|
8207
|
-
|
|
7143
|
+
|
|
8208
7144
|
Error
|
|
8209
|
-
|
|
7145
|
+
|
|
8210
7146
|
Timeout
|
|
8211
|
-
|
|
7147
|
+
|
|
8212
7148
|
Waiting
|
|
8213
|
-
|
|
7149
|
+
|
|
8214
7150
|
InQueue
|
|
8215
|
-
|
|
7151
|
+
|
|
8216
7152
|
Unknown
|
|
8217
7153
|
*/
|
|
8218
7154
|
|
|
@@ -8232,15 +7168,15 @@ var RemoteTaskStatus;
|
|
|
8232
7168
|
})(RemoteTaskStatus || (RemoteTaskStatus = {}));
|
|
8233
7169
|
/**
|
|
8234
7170
|
* Resources types filter.
|
|
8235
|
-
|
|
7171
|
+
|
|
8236
7172
|
RemoteTileService
|
|
8237
|
-
|
|
7173
|
+
|
|
8238
7174
|
ProxyService
|
|
8239
|
-
|
|
7175
|
+
|
|
8240
7176
|
PostgresLayerService
|
|
8241
|
-
|
|
7177
|
+
|
|
8242
7178
|
QueryLayerService
|
|
8243
|
-
|
|
7179
|
+
|
|
8244
7180
|
TileCatalogTable
|
|
8245
7181
|
*/
|
|
8246
7182
|
|
|
@@ -8256,21 +7192,21 @@ var ResourceSubTypeFilter;
|
|
|
8256
7192
|
})(ResourceSubTypeFilter || (ResourceSubTypeFilter = {}));
|
|
8257
7193
|
/**
|
|
8258
7194
|
*
|
|
8259
|
-
|
|
7195
|
+
|
|
8260
7196
|
Unknown
|
|
8261
|
-
|
|
7197
|
+
|
|
8262
7198
|
table
|
|
8263
|
-
|
|
7199
|
+
|
|
8264
7200
|
layer
|
|
8265
|
-
|
|
7201
|
+
|
|
8266
7202
|
project
|
|
8267
|
-
|
|
7203
|
+
|
|
8268
7204
|
file
|
|
8269
|
-
|
|
7205
|
+
|
|
8270
7206
|
feature
|
|
8271
|
-
|
|
7207
|
+
|
|
8272
7208
|
tag
|
|
8273
|
-
|
|
7209
|
+
|
|
8274
7210
|
datasource
|
|
8275
7211
|
*/
|
|
8276
7212
|
|
|
@@ -8289,23 +7225,23 @@ var ResourceType;
|
|
|
8289
7225
|
})(ResourceType || (ResourceType = {}));
|
|
8290
7226
|
/**
|
|
8291
7227
|
* Resources types filter.
|
|
8292
|
-
|
|
7228
|
+
|
|
8293
7229
|
Map
|
|
8294
|
-
|
|
7230
|
+
|
|
8295
7231
|
Layer
|
|
8296
|
-
|
|
7232
|
+
|
|
8297
7233
|
Table
|
|
8298
|
-
|
|
7234
|
+
|
|
8299
7235
|
RasterCatalog
|
|
8300
|
-
|
|
7236
|
+
|
|
8301
7237
|
ProxyService
|
|
8302
|
-
|
|
7238
|
+
|
|
8303
7239
|
RemoteTileService
|
|
8304
|
-
|
|
7240
|
+
|
|
8305
7241
|
File
|
|
8306
|
-
|
|
7242
|
+
|
|
8307
7243
|
DataSource
|
|
8308
|
-
|
|
7244
|
+
|
|
8309
7245
|
TaskPrototype
|
|
8310
7246
|
*/
|
|
8311
7247
|
|
|
@@ -8333,9 +7269,9 @@ var ResourceTypeLink;
|
|
|
8333
7269
|
})(ResourceTypeLink || (ResourceTypeLink = {}));
|
|
8334
7270
|
/**
|
|
8335
7271
|
*
|
|
8336
|
-
|
|
7272
|
+
|
|
8337
7273
|
code
|
|
8338
|
-
|
|
7274
|
+
|
|
8339
7275
|
token
|
|
8340
7276
|
*/
|
|
8341
7277
|
|
|
@@ -8348,11 +7284,11 @@ var ResponseType;
|
|
|
8348
7284
|
})(ResponseType || (ResponseType = {}));
|
|
8349
7285
|
/**
|
|
8350
7286
|
*
|
|
8351
|
-
|
|
7287
|
+
|
|
8352
7288
|
Basic
|
|
8353
|
-
|
|
7289
|
+
|
|
8354
7290
|
PreserveTopology
|
|
8355
|
-
|
|
7291
|
+
|
|
8356
7292
|
VW
|
|
8357
7293
|
*/
|
|
8358
7294
|
|
|
@@ -8366,13 +7302,13 @@ var SimplifyType;
|
|
|
8366
7302
|
})(SimplifyType || (SimplifyType = {}));
|
|
8367
7303
|
/**
|
|
8368
7304
|
*
|
|
8369
|
-
|
|
7305
|
+
|
|
8370
7306
|
None
|
|
8371
|
-
|
|
7307
|
+
|
|
8372
7308
|
Image
|
|
8373
|
-
|
|
7309
|
+
|
|
8374
7310
|
PkkCode
|
|
8375
|
-
|
|
7311
|
+
|
|
8376
7312
|
Attachments
|
|
8377
7313
|
*/
|
|
8378
7314
|
|
|
@@ -8387,9 +7323,9 @@ var StringSubType;
|
|
|
8387
7323
|
})(StringSubType || (StringSubType = {}));
|
|
8388
7324
|
/**
|
|
8389
7325
|
* TaskPrototypeSubType.
|
|
8390
|
-
|
|
7326
|
+
|
|
8391
7327
|
SpTask
|
|
8392
|
-
|
|
7328
|
+
|
|
8393
7329
|
PythonTask
|
|
8394
7330
|
*/
|
|
8395
7331
|
|
|
@@ -8402,13 +7338,13 @@ var TaskResourceSubType;
|
|
|
8402
7338
|
})(TaskResourceSubType || (TaskResourceSubType = {}));
|
|
8403
7339
|
/**
|
|
8404
7340
|
* Sets the horizontal alignment of text.
|
|
8405
|
-
|
|
7341
|
+
|
|
8406
7342
|
right
|
|
8407
|
-
|
|
7343
|
+
|
|
8408
7344
|
left
|
|
8409
|
-
|
|
7345
|
+
|
|
8410
7346
|
center
|
|
8411
|
-
|
|
7347
|
+
|
|
8412
7348
|
justified
|
|
8413
7349
|
*/
|
|
8414
7350
|
|
|
@@ -8423,11 +7359,11 @@ var TextAlignment;
|
|
|
8423
7359
|
})(TextAlignment || (TextAlignment = {}));
|
|
8424
7360
|
/**
|
|
8425
7361
|
* Sets the vertical alignment of text.
|
|
8426
|
-
|
|
7362
|
+
|
|
8427
7363
|
top
|
|
8428
|
-
|
|
7364
|
+
|
|
8429
7365
|
bottom
|
|
8430
|
-
|
|
7366
|
+
|
|
8431
7367
|
middle
|
|
8432
7368
|
*/
|
|
8433
7369
|
|
|
@@ -8441,11 +7377,11 @@ var TextVerticalAlignment;
|
|
|
8441
7377
|
})(TextVerticalAlignment || (TextVerticalAlignment = {}));
|
|
8442
7378
|
/**
|
|
8443
7379
|
*
|
|
8444
|
-
|
|
7380
|
+
|
|
8445
7381
|
Task
|
|
8446
|
-
|
|
7382
|
+
|
|
8447
7383
|
Rest
|
|
8448
|
-
|
|
7384
|
+
|
|
8449
7385
|
Both
|
|
8450
7386
|
*/
|
|
8451
7387
|
|
|
@@ -8459,49 +7395,49 @@ var WorkerMethodType;
|
|
|
8459
7395
|
})(WorkerMethodType || (WorkerMethodType = {}));
|
|
8460
7396
|
/**
|
|
8461
7397
|
*
|
|
8462
|
-
|
|
7398
|
+
|
|
8463
7399
|
Int32
|
|
8464
|
-
|
|
7400
|
+
|
|
8465
7401
|
Int64
|
|
8466
|
-
|
|
7402
|
+
|
|
8467
7403
|
Double
|
|
8468
|
-
|
|
7404
|
+
|
|
8469
7405
|
String
|
|
8470
|
-
|
|
7406
|
+
|
|
8471
7407
|
Boolean
|
|
8472
|
-
|
|
7408
|
+
|
|
8473
7409
|
DateTime
|
|
8474
|
-
|
|
7410
|
+
|
|
8475
7411
|
Point
|
|
8476
|
-
|
|
7412
|
+
|
|
8477
7413
|
Geometry
|
|
8478
|
-
|
|
7414
|
+
|
|
8479
7415
|
Polyline
|
|
8480
|
-
|
|
7416
|
+
|
|
8481
7417
|
MultiPolygon
|
|
8482
|
-
|
|
7418
|
+
|
|
8483
7419
|
Polygon
|
|
8484
|
-
|
|
7420
|
+
|
|
8485
7421
|
Multipoint
|
|
8486
|
-
|
|
7422
|
+
|
|
8487
7423
|
IntergerArray
|
|
8488
|
-
|
|
7424
|
+
|
|
8489
7425
|
DoubleArray
|
|
8490
|
-
|
|
7426
|
+
|
|
8491
7427
|
StringArray
|
|
8492
|
-
|
|
7428
|
+
|
|
8493
7429
|
SourceEql
|
|
8494
|
-
|
|
7430
|
+
|
|
8495
7431
|
Layer
|
|
8496
|
-
|
|
7432
|
+
|
|
8497
7433
|
Table
|
|
8498
|
-
|
|
7434
|
+
|
|
8499
7435
|
Folder
|
|
8500
|
-
|
|
7436
|
+
|
|
8501
7437
|
Json
|
|
8502
|
-
|
|
7438
|
+
|
|
8503
7439
|
Attribute
|
|
8504
|
-
|
|
7440
|
+
|
|
8505
7441
|
AttributeArray
|
|
8506
7442
|
*/
|
|
8507
7443
|
|
|
@@ -8533,5 +7469,5 @@ var WorkerSettingsFieldType;
|
|
|
8533
7469
|
WorkerSettingsFieldType["AttributeArray"] = "AttributeArray";
|
|
8534
7470
|
})(WorkerSettingsFieldType || (WorkerSettingsFieldType = {}));
|
|
8535
7471
|
|
|
8536
|
-
export { Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeIconType, AttributeSelectorType, AttributeType, AuthorizationGrant, BulkOperations,
|
|
7472
|
+
export { Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeIconType, AttributeSelectorType, AttributeType, AuthorizationGrant, BulkOperations, CatalogResourceType, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConnectionStatus, DataSourceType, DependencyType, Eql, ErrorDetailsType, ErrorReason, ErrorType, Feedback, FileUpload, Filters, FontStyle, FontWeight, GEOCODE_PROVIDER, Geocode, GeometryType, Group, HttpClient, Import, Layers, LineCapStyle, LineEndingType, LineJoinType, Names, Notification, NotificationEvent, OwnerFilter, PbfSchema, Permissions, PolicyType, PortalSettings, Projects, RemoteTaskManager, RemoteTaskStatus, ResourceSeparator, ResourceSubTypeFilter, ResourceType, ResourceTypeFilter, ResourceTypeLink, Resources, ResponseType, STORAGE_REFRESH_TOKEN_KEY, STORAGE_TOKEN_KEY, Security, SimplifyType, Statistic, StringSubType, Tables, TaskResourceSubType, TextAlignment, TextVerticalAlignment, Tools, UrlPath, VectorTiles, WorkerMethodType, WorkerSettingsFieldType, addSubDomainToLocation, errorHandler, formDataFromFile, generateId, getFetchingUrlPath, isHTTPError, isHandledError, isProjectContentItems, isString, isTileLayerService, parseJwt, promiseAllIgnoreErrors, stripUselessSlashes, toFormData, unique };
|
|
8537
7473
|
//# sourceMappingURL=api.esm.js.map
|