@evergis/api 3.0.64 → 3.0.65

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.
@@ -215,53 +215,8 @@ let BulkOperationsService = /*#__PURE__*/function (_Service) {
215
215
  }
216
216
 
217
217
  _createClass(BulkOperationsService, [{
218
- key: "batchUpdateCatalogResources",
218
+ key: "batchResourcesPermissionsSet",
219
219
  value:
220
- /**
221
- * No description
222
- *
223
- * @tags BulkOperations
224
- * @name BatchUpdateCatalogResources
225
- * @operationId BulkOperationsController_BatchUpdateCatalogResources
226
- * @summary Overrides resources in catalog.
227
- * @request PUT:/bulk/catalog/updateResources
228
- * @response `200` Success
229
- */
230
- function batchUpdateCatalogResources(data) {
231
- return this.http.put("/bulk/catalog/updateResources", data).json();
232
- }
233
- /**
234
- * No description
235
- *
236
- * @tags BulkOperations
237
- * @name BatchAddResourcesToCatalog
238
- * @operationId BulkOperationsController_BatchAddResourcesToCatalog
239
- * @summary Add resources to catalog.
240
- * @request POST:/bulk/catalog/addResources
241
- * @response `200` Success
242
- */
243
-
244
- }, {
245
- key: "batchAddResourcesToCatalog",
246
- value: function batchAddResourcesToCatalog(data) {
247
- return this.http.post("/bulk/catalog/addResources", data).json();
248
- }
249
- /**
250
- * No description
251
- *
252
- * @tags BulkOperations
253
- * @name BatchDeleteResourcesFromCatalog
254
- * @operationId BulkOperationsController_BatchDeleteResourcesFromCatalog
255
- * @summary Delete resources to catalog.
256
- * @request POST:/bulk/catalog/removeResources
257
- * @response `200` Success
258
- */
259
-
260
- }, {
261
- key: "batchDeleteResourcesFromCatalog",
262
- value: function batchDeleteResourcesFromCatalog(data) {
263
- return this.http.post("/bulk/catalog/removeResources", data).json();
264
- }
265
220
  /**
266
221
  * No description
267
222
  *
@@ -272,10 +227,7 @@ let BulkOperationsService = /*#__PURE__*/function (_Service) {
272
227
  * @request PUT:/bulk/resources/permissions
273
228
  * @response `200` Success
274
229
  */
275
-
276
- }, {
277
- key: "batchResourcesPermissionsSet",
278
- value: function batchResourcesPermissionsSet(data) {
230
+ function batchResourcesPermissionsSet(data) {
279
231
  return this.http.put("/bulk/resources/permissions", data).json();
280
232
  }
281
233
  }]);
@@ -294,29 +246,7 @@ let BulkOperations = /*#__PURE__*/function (_BulkOperationsServic) {
294
246
  return _super.apply(this, arguments);
295
247
  }
296
248
 
297
- _createClass(BulkOperations, [{
298
- key: "updatePermissions",
299
- value: function updatePermissions(data) {
300
- return this.batchResourcesPermissionsSet(data);
301
- }
302
- }, {
303
- key: "addToCatalog",
304
- value: function addToCatalog(data) {
305
- return this.batchAddResourcesToCatalog(data);
306
- }
307
- }, {
308
- key: "deleteFromCatalog",
309
- value: function deleteFromCatalog(data) {
310
- return this.batchDeleteResourcesFromCatalog(data);
311
- }
312
- }, {
313
- key: "updateCatalogResources",
314
- value: function updateCatalogResources(data) {
315
- return this.batchUpdateCatalogResources(data);
316
- }
317
- }]);
318
-
319
- return BulkOperations;
249
+ return _createClass(BulkOperations);
320
250
  }(BulkOperationsService);
321
251
 
322
252
  /**
@@ -738,6 +668,22 @@ let ImportService = /*#__PURE__*/function (_Service) {
738
668
  value: function getCsvDataSchema(query) {
739
669
  return this.http.get("/import/csvDataSchema", query).json();
740
670
  }
671
+ /**
672
+ * No description
673
+ *
674
+ * @tags ImportService
675
+ * @name GetKmlDataSchema
676
+ * @operationId ImportServiceController_GetKmlDataSchema
677
+ * @summary Using a file uploaded to the file upload service, reads the kml file and returns the information about data schema of all layers in that file, available for import.
678
+ * @request GET:/import/kmlDataSchema
679
+ * @response `200` Success
680
+ */
681
+
682
+ }, {
683
+ key: "getKmlDataSchema",
684
+ value: function getKmlDataSchema(query) {
685
+ return this.http.get("/import/kmlDataSchema", query).json();
686
+ }
741
687
  /**
742
688
  * No description
743
689
  *
@@ -1478,7 +1424,8 @@ const _excluded = ["name"],
1478
1424
  _excluded15 = ["name"],
1479
1425
  _excluded16 = ["name"],
1480
1426
  _excluded17 = ["name"],
1481
- _excluded18 = ["layerName"];
1427
+ _excluded18 = ["name"],
1428
+ _excluded19 = ["layerName"];
1482
1429
  /**
1483
1430
  * @title Spatial Processing Core API
1484
1431
  * @version v0.6.0
@@ -1497,8 +1444,38 @@ let LayersService = /*#__PURE__*/function (_Service) {
1497
1444
  }
1498
1445
 
1499
1446
  _createClass(LayersService, [{
1500
- key: "getLayersList",
1447
+ key: "getLayerInfo",
1501
1448
  value:
1449
+ /**
1450
+ * No description
1451
+ *
1452
+ * @tags Layers
1453
+ * @name GetLayerInfo
1454
+ * @operationId LayersController_GetLayerInfoAsync
1455
+ * @summary Returns the layer information.
1456
+ * @request GET:/layers/{name}
1457
+ * @response `200` Success
1458
+ * @response `default` Error
1459
+ */
1460
+ function getLayerInfo(name) {
1461
+ return this.http.get("/layers/" + name).json();
1462
+ }
1463
+ /**
1464
+ * No description
1465
+ *
1466
+ * @tags Layers
1467
+ * @name DeleteResource
1468
+ * @operationId LayersController_DeleteResource
1469
+ * @summary Deletes resource.
1470
+ * @request DELETE:/layers/{name}
1471
+ * @response `200` Success
1472
+ */
1473
+
1474
+ }, {
1475
+ key: "deleteResource",
1476
+ value: function deleteResource(name) {
1477
+ return this.http.delete("/layers/" + name, null).then(() => {});
1478
+ }
1502
1479
  /**
1503
1480
  * No description
1504
1481
  *
@@ -1509,7 +1486,10 @@ let LayersService = /*#__PURE__*/function (_Service) {
1509
1486
  * @request GET:/layers
1510
1487
  * @response `200` Success
1511
1488
  */
1512
- function getLayersList(query) {
1489
+
1490
+ }, {
1491
+ key: "getLayersList",
1492
+ value: function getLayersList(query) {
1513
1493
  return this.http.get("/layers", query).json();
1514
1494
  }
1515
1495
  /**
@@ -1544,39 +1524,6 @@ let LayersService = /*#__PURE__*/function (_Service) {
1544
1524
  value: function deleteResources(query) {
1545
1525
  return this.http.delete("/layers", null, query).json();
1546
1526
  }
1547
- /**
1548
- * No description
1549
- *
1550
- * @tags Layers
1551
- * @name GetLayerInfo
1552
- * @operationId LayersController_GetLayerInfo
1553
- * @summary Returns the layer information.
1554
- * @request GET:/layers/{name}
1555
- * @response `200` Success
1556
- * @response `default` Error
1557
- */
1558
-
1559
- }, {
1560
- key: "getLayerInfo",
1561
- value: function getLayerInfo(name) {
1562
- return this.http.get("/layers/" + name).json();
1563
- }
1564
- /**
1565
- * No description
1566
- *
1567
- * @tags Layers
1568
- * @name DeleteResource
1569
- * @operationId LayersController_DeleteResource
1570
- * @summary Deletes resource.
1571
- * @request DELETE:/layers/{name}
1572
- * @response `200` Success
1573
- */
1574
-
1575
- }, {
1576
- key: "deleteResource",
1577
- value: function deleteResource(name) {
1578
- return this.http.delete("/layers/" + name, null).then(() => {});
1579
- }
1580
1527
  /**
1581
1528
  * No description
1582
1529
  *
@@ -2117,6 +2064,27 @@ let LayersService = /*#__PURE__*/function (_Service) {
2117
2064
 
2118
2065
  return this.http.delete("/layers/" + name + "/features/deleteByIds", null, query).json();
2119
2066
  }
2067
+ /**
2068
+ * No description
2069
+ *
2070
+ * @tags Layers
2071
+ * @name DeleteByCondition
2072
+ * @operationId LayersController_DeleteByCondition
2073
+ * @summary Delete a list of features by condition with exclude given ids.
2074
+ * @request DELETE:/layers/{name}/features/deleteByCondition
2075
+ * @response `200` Success
2076
+ */
2077
+
2078
+ }, {
2079
+ key: "deleteByCondition",
2080
+ value: function deleteByCondition(_ref13) {
2081
+ let {
2082
+ name
2083
+ } = _ref13,
2084
+ query = _objectWithoutPropertiesLoose(_ref13, _excluded13);
2085
+
2086
+ return this.http.delete("/layers/" + name + "/features/deleteByCondition", null, query).json();
2087
+ }
2120
2088
  /**
2121
2089
  * No description
2122
2090
  *
@@ -2130,11 +2098,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
2130
2098
 
2131
2099
  }, {
2132
2100
  key: "getByGeometryGet",
2133
- value: function getByGeometryGet(_ref13) {
2101
+ value: function getByGeometryGet(_ref14) {
2134
2102
  let {
2135
2103
  name
2136
- } = _ref13,
2137
- query = _objectWithoutPropertiesLoose(_ref13, _excluded13);
2104
+ } = _ref14,
2105
+ query = _objectWithoutPropertiesLoose(_ref14, _excluded14);
2138
2106
 
2139
2107
  return this.http.get("/layers/" + name + "/features/getByGeometryByClick", query).json();
2140
2108
  }
@@ -2151,13 +2119,13 @@ let LayersService = /*#__PURE__*/function (_Service) {
2151
2119
 
2152
2120
  }, {
2153
2121
  key: "classify",
2154
- value: function classify(_ref14) {
2122
+ value: function classify(_ref15) {
2155
2123
  let {
2156
2124
  name
2157
- } = _ref14,
2158
- query = _objectWithoutPropertiesLoose(_ref14, _excluded14);
2125
+ } = _ref15,
2126
+ query = _objectWithoutPropertiesLoose(_ref15, _excluded15);
2159
2127
 
2160
- return this.http.get("/layers/" + name + "/classify", query).json();
2128
+ return this.http.get("/layers/" + name + "/classify", query).then(() => {});
2161
2129
  }
2162
2130
  /**
2163
2131
  * No description
@@ -2172,11 +2140,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
2172
2140
 
2173
2141
  }, {
2174
2142
  key: "distincts",
2175
- value: function distincts(_ref15) {
2143
+ value: function distincts(_ref16) {
2176
2144
  let {
2177
2145
  name
2178
- } = _ref15,
2179
- query = _objectWithoutPropertiesLoose(_ref15, _excluded15);
2146
+ } = _ref16,
2147
+ query = _objectWithoutPropertiesLoose(_ref16, _excluded16);
2180
2148
 
2181
2149
  return this.http.get("/layers/" + name + "/distincts", query).json();
2182
2150
  }
@@ -2193,11 +2161,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
2193
2161
 
2194
2162
  }, {
2195
2163
  key: "aggregateAttribute",
2196
- value: function aggregateAttribute(_ref16) {
2164
+ value: function aggregateAttribute(_ref17) {
2197
2165
  let {
2198
2166
  name
2199
- } = _ref16,
2200
- query = _objectWithoutPropertiesLoose(_ref16, _excluded16);
2167
+ } = _ref17,
2168
+ query = _objectWithoutPropertiesLoose(_ref17, _excluded17);
2201
2169
 
2202
2170
  return this.http.get("/layers/" + name + "/aggregate-values", query).json();
2203
2171
  }
@@ -2214,11 +2182,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
2214
2182
 
2215
2183
  }, {
2216
2184
  key: "getFilteredFeaturesCount",
2217
- value: function getFilteredFeaturesCount(_ref17) {
2185
+ value: function getFilteredFeaturesCount(_ref18) {
2218
2186
  let {
2219
2187
  name
2220
- } = _ref17,
2221
- query = _objectWithoutPropertiesLoose(_ref17, _excluded17);
2188
+ } = _ref18,
2189
+ query = _objectWithoutPropertiesLoose(_ref18, _excluded18);
2222
2190
 
2223
2191
  return this.http.get("/layers/" + name + "/features/count", query).json();
2224
2192
  }
@@ -2268,11 +2236,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
2268
2236
 
2269
2237
  }, {
2270
2238
  key: "validateExpression",
2271
- value: function validateExpression(_ref18) {
2239
+ value: function validateExpression(_ref19) {
2272
2240
  let {
2273
2241
  layerName
2274
- } = _ref18,
2275
- query = _objectWithoutPropertiesLoose(_ref18, _excluded18);
2242
+ } = _ref19,
2243
+ query = _objectWithoutPropertiesLoose(_ref19, _excluded19);
2276
2244
 
2277
2245
  return this.http.get("/layers/" + layerName + "/validateExpression", query).json();
2278
2246
  }
@@ -2612,22 +2580,6 @@ let TablesService = /*#__PURE__*/function (_Service) {
2612
2580
  value: function deleteResources(query) {
2613
2581
  return this.http.delete("/tables", null, query).json();
2614
2582
  }
2615
- /**
2616
- * No description
2617
- *
2618
- * @tags Tables
2619
- * @name DeleteResource
2620
- * @operationId TablesController_DeleteResource
2621
- * @summary Deletes resource.
2622
- * @request DELETE:/tables/{name}
2623
- * @response `200` Success
2624
- */
2625
-
2626
- }, {
2627
- key: "deleteResource",
2628
- value: function deleteResource(name) {
2629
- return this.http.delete("/tables/" + name, null).then(() => {});
2630
- }
2631
2583
  /**
2632
2584
  * No description
2633
2585
  *
@@ -2660,6 +2612,22 @@ let TablesService = /*#__PURE__*/function (_Service) {
2660
2612
  value: function getTableInfo(name) {
2661
2613
  return this.http.get("/tables/" + name).json();
2662
2614
  }
2615
+ /**
2616
+ * No description
2617
+ *
2618
+ * @tags Tables
2619
+ * @name DeleteResource
2620
+ * @operationId TablesController_DeleteResource
2621
+ * @summary Deletes resource.
2622
+ * @request DELETE:/tables/{name}
2623
+ * @response `200` Success
2624
+ */
2625
+
2626
+ }, {
2627
+ key: "deleteResource",
2628
+ value: function deleteResource(name) {
2629
+ return this.http.delete("/tables/" + name, null).then(() => {});
2630
+ }
2663
2631
  /**
2664
2632
  * No description
2665
2633
  *
@@ -2681,6 +2649,22 @@ let TablesService = /*#__PURE__*/function (_Service) {
2681
2649
 
2682
2650
  return this.http.get("/tables/" + name + "/data", query).json();
2683
2651
  }
2652
+ /**
2653
+ * No description
2654
+ *
2655
+ * @tags Tables
2656
+ * @name WriteTableData
2657
+ * @operationId TablesController_WriteTableData
2658
+ * @summary Adds the data to the table.
2659
+ * @request POST:/tables/{name}/data
2660
+ * @response `200` Success
2661
+ */
2662
+
2663
+ }, {
2664
+ key: "writeTableData",
2665
+ value: function writeTableData(name, data) {
2666
+ return this.http.post("/tables/" + name + "/data", data).then(() => {});
2667
+ }
2684
2668
  /**
2685
2669
  * No description
2686
2670
  *
@@ -3050,6 +3034,38 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
3050
3034
  function getProjectLayersExtendedInfo(name) {
3051
3035
  return this.http.get("/projects/" + name + "/extended-info").json();
3052
3036
  }
3037
+ /**
3038
+ * No description
3039
+ *
3040
+ * @tags Projects
3041
+ * @name CreateShareProject
3042
+ * @operationId ProjectsController_CreateShareProject
3043
+ * @summary Create shared project.
3044
+ * @request POST:/projects/{name}/share
3045
+ * @response `200` Success
3046
+ */
3047
+
3048
+ }, {
3049
+ key: "createShareProject",
3050
+ value: function createShareProject(name, data) {
3051
+ return this.http.post("/projects/" + name + "/share", data).json();
3052
+ }
3053
+ /**
3054
+ * No description
3055
+ *
3056
+ * @tags Projects
3057
+ * @name RemoveShareProject
3058
+ * @operationId ProjectsController_RemoveShareProject
3059
+ * @summary Delete shared project.
3060
+ * @request DELETE:/projects/{name}/share
3061
+ * @response `200` Success
3062
+ */
3063
+
3064
+ }, {
3065
+ key: "removeShareProject",
3066
+ value: function removeShareProject(name) {
3067
+ return this.http.delete("/projects/" + name + "/share", null).then(() => {});
3068
+ }
3053
3069
  /**
3054
3070
  * No description
3055
3071
  *
@@ -3114,38 +3130,6 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
3114
3130
  value: function deleteResources(query) {
3115
3131
  return this.http.delete("/projects", null, query).json();
3116
3132
  }
3117
- /**
3118
- * No description
3119
- *
3120
- * @tags Projects
3121
- * @name CreateShareProject
3122
- * @operationId ProjectsController_CreateShareProject
3123
- * @summary Create shared project.
3124
- * @request POST:/projects/{name}/share
3125
- * @response `200` Success
3126
- */
3127
-
3128
- }, {
3129
- key: "createShareProject",
3130
- value: function createShareProject(name, data) {
3131
- return this.http.post("/projects/" + name + "/share", data).json();
3132
- }
3133
- /**
3134
- * No description
3135
- *
3136
- * @tags Projects
3137
- * @name RemoveShareProject
3138
- * @operationId ProjectsController_RemoveShareProject
3139
- * @summary Delete shared project.
3140
- * @request DELETE:/projects/{name}/share
3141
- * @response `200` Success
3142
- */
3143
-
3144
- }, {
3145
- key: "removeShareProject",
3146
- value: function removeShareProject(name) {
3147
- return this.http.delete("/projects/" + name + "/share", null).then(() => {});
3148
- }
3149
3133
  /**
3150
3134
  * No description
3151
3135
  *
@@ -3727,7 +3711,6 @@ let Geocode = /*#__PURE__*/function (_GeocodeService) {
3727
3711
  return Geocode;
3728
3712
  }(GeocodeService);
3729
3713
 
3730
- const _excluded$4 = ["resourceType"];
3731
3714
  /**
3732
3715
  * @title Spatial Processing Core API
3733
3716
  * @version v0.6.0
@@ -3746,202 +3729,8 @@ let ResourceCatalogService = /*#__PURE__*/function (_Service) {
3746
3729
  }
3747
3730
 
3748
3731
  _createClass(ResourceCatalogService, [{
3749
- key: "getProjects",
3732
+ key: "checkLimits",
3750
3733
  value:
3751
- /**
3752
- * No description
3753
- *
3754
- * @tags ResourceCatalog
3755
- * @name GetProjects
3756
- * @operationId ResourceCatalogController_GetProjectsAsync
3757
- * @summary Returns list of the available tables.
3758
- * @request GET:/resources/projects
3759
- * @response `200` Success
3760
- */
3761
- function getProjects(query) {
3762
- return this.http.get("/resources/projects", query).json();
3763
- }
3764
- /**
3765
- * No description
3766
- *
3767
- * @tags ResourceCatalog
3768
- * @name GetTables
3769
- * @operationId ResourceCatalogController_GetTablesAsync
3770
- * @summary Returns list of the available resources.
3771
- * @request GET:/resources/tables
3772
- * @response `200` Success
3773
- */
3774
-
3775
- }, {
3776
- key: "getTables",
3777
- value: function getTables(query) {
3778
- return this.http.get("/resources/tables", query).json();
3779
- }
3780
- /**
3781
- * No description
3782
- *
3783
- * @tags ResourceCatalog
3784
- * @name GetLayers
3785
- * @operationId ResourceCatalogController_GetLayersAsync
3786
- * @summary Returns list of the available layers.
3787
- * @request GET:/resources/layers
3788
- * @response `200` Success
3789
- */
3790
-
3791
- }, {
3792
- key: "getLayers",
3793
- value: function getLayers(query) {
3794
- return this.http.get("/resources/layers", query).json();
3795
- }
3796
- /**
3797
- * No description
3798
- *
3799
- * @tags ResourceCatalog
3800
- * @name AddResource
3801
- * @operationId ResourceCatalogController_AddResource
3802
- * @summary Adds resources to catalog.
3803
- * @request POST:/resources/{resourceType}/add
3804
- * @response `200` Success
3805
- */
3806
-
3807
- }, {
3808
- key: "addResource",
3809
- value: function addResource(resourceType, data) {
3810
- return this.http.post("/resources/" + resourceType + "/add", data).then(() => {});
3811
- }
3812
- /**
3813
- * No description
3814
- *
3815
- * @tags ResourceCatalog
3816
- * @name AddResources
3817
- * @operationId ResourceCatalogController_AddResources
3818
- * @summary Adds resources to the user catalog.
3819
- * @request POST:/resources/add
3820
- * @response `200` Success
3821
- */
3822
-
3823
- }, {
3824
- key: "addResources",
3825
- value: function addResources(query, data) {
3826
- return this.http.post("/resources/add", data, query).then(() => {});
3827
- }
3828
- /**
3829
- * No description
3830
- *
3831
- * @tags ResourceCatalog
3832
- * @name RemoveResource
3833
- * @operationId ResourceCatalogController_RemoveResource
3834
- * @summary Removes resource from catalog for a given users list.
3835
- * @request POST:/resources/{resourceType}/remove
3836
- * @response `200` Success
3837
- */
3838
-
3839
- }, {
3840
- key: "removeResource",
3841
- value: function removeResource(resourceType, data) {
3842
- return this.http.post("/resources/" + resourceType + "/remove", data).then(() => {});
3843
- }
3844
- /**
3845
- * No description
3846
- *
3847
- * @tags ResourceCatalog
3848
- * @name GetNewResources
3849
- * @operationId ResourceCatalogController_GetNewResources
3850
- * @summary Get new resources count grouped by types.
3851
- * @request GET:/resources/getNewResources
3852
- * @response `200` Success
3853
- */
3854
-
3855
- }, {
3856
- key: "getNewResources",
3857
- value: function getNewResources() {
3858
- return this.http.get("/resources/getNewResources").json();
3859
- }
3860
- /**
3861
- * No description
3862
- *
3863
- * @tags ResourceCatalog
3864
- * @name TouchResources
3865
- * @operationId ResourceCatalogController_TouchResources
3866
- * @summary For current user marks a given list of the resources as used.
3867
- * @request POST:/resources/{resourceType}/touchResources
3868
- * @response `200` Success
3869
- */
3870
-
3871
- }, {
3872
- key: "touchResources",
3873
- value: function touchResources(resourceType, data) {
3874
- return this.http.post("/resources/" + resourceType + "/touchResources", data).then(() => {});
3875
- }
3876
- /**
3877
- * No description
3878
- *
3879
- * @tags ResourceCatalog
3880
- * @name ShareResources
3881
- * @operationId ResourceCatalogController_ShareResources
3882
- * @summary Share given resources for all users and adds it to common catalog.
3883
- * @request POST:/resources/{resourceType}/shareAll
3884
- * @response `200` Success
3885
- */
3886
-
3887
- }, {
3888
- key: "shareResources",
3889
- value: function shareResources(resourceType, data) {
3890
- return this.http.post("/resources/" + resourceType + "/shareAll", data).then(() => {});
3891
- }
3892
- /**
3893
- * No description
3894
- *
3895
- * @tags ResourceCatalog
3896
- * @name UnshareResources
3897
- * @operationId ResourceCatalogController_UnshareResources
3898
- * @summary Unshare given resources for all users and removes it from common catalog.
3899
- * @request POST:/resources/{resourceType}/unshareAll
3900
- * @response `200` Success
3901
- */
3902
-
3903
- }, {
3904
- key: "unshareResources",
3905
- value: function unshareResources(resourceType, data) {
3906
- return this.http.post("/resources/" + resourceType + "/unshareAll", data).then(() => {});
3907
- }
3908
- /**
3909
- * No description
3910
- *
3911
- * @tags ResourceCatalog
3912
- * @name GetResource
3913
- * @operationId ResourceCatalogController_GetResource
3914
- * @summary Returns the detailed information about resource in catalog.
3915
- * @request GET:/resources/{resourceType}/{name}
3916
- * @response `200` Success
3917
- */
3918
-
3919
- }, {
3920
- key: "getResource",
3921
- value: function getResource(resourceType, name) {
3922
- return this.http.get("/resources/" + resourceType + "/" + name).json();
3923
- }
3924
- /**
3925
- * No description
3926
- *
3927
- * @tags ResourceCatalog
3928
- * @name RemoveResource1
3929
- * @operationId ResourceCatalogController_RemoveResource_1
3930
- * @summary Removes resource from catalog for a given users list.
3931
- * @request DELETE:/resources/{resourceType}
3932
- * @response `200` Success
3933
- */
3934
-
3935
- }, {
3936
- key: "removeResource1",
3937
- value: function removeResource1(_ref) {
3938
- let {
3939
- resourceType
3940
- } = _ref,
3941
- query = _objectWithoutPropertiesLoose(_ref, _excluded$4);
3942
-
3943
- return this.http.delete("/resources/" + resourceType, null, query).then(() => {});
3944
- }
3945
3734
  /**
3946
3735
  * No description
3947
3736
  *
@@ -3952,11 +3741,8 @@ let ResourceCatalogService = /*#__PURE__*/function (_Service) {
3952
3741
  * @request GET:/resources/checkLimits
3953
3742
  * @response `200` Success
3954
3743
  */
3955
-
3956
- }, {
3957
- key: "checkLimits",
3958
- value: function checkLimits() {
3959
- return this.http.get("/resources/checkLimits").json();
3744
+ function checkLimits(query) {
3745
+ return this.http.get("/resources/checkLimits", query).json();
3960
3746
  }
3961
3747
  /**
3962
3748
  * No description
@@ -3993,8 +3779,6 @@ let ResourceCatalog = /*#__PURE__*/function (_ResourceCatalogServi) {
3993
3779
  return _createClass(ResourceCatalog);
3994
3780
  }(ResourceCatalogService);
3995
3781
 
3996
- const _excluded$5 = ["name"],
3997
- _excluded2$3 = ["name"];
3998
3782
  /**
3999
3783
  * @title Spatial Processing Core API
4000
3784
  * @version v0.6.0
@@ -4012,470 +3796,7 @@ let ToolsService = /*#__PURE__*/function (_Service) {
4012
3796
  return _super.apply(this, arguments);
4013
3797
  }
4014
3798
 
4015
- _createClass(ToolsService, [{
4016
- key: "getTools",
4017
- value:
4018
- /**
4019
- * No description
4020
- *
4021
- * @tags ToolsCatalog
4022
- * @name GetTools
4023
- * @operationId ToolsCatalogController_GetTools
4024
- * @summary Gets list of tools according the user permissions with given filter.
4025
- * @request GET:/tools
4026
- * @response `200` Success
4027
- */
4028
- function getTools(query) {
4029
- return this.http.get("/tools", query).json();
4030
- }
4031
- /**
4032
- * No description
4033
- *
4034
- * @tags ToolsCatalog
4035
- * @name CreateTool
4036
- * @operationId ToolsCatalogController_CreateTool
4037
- * @summary Creates geotool with given toolInfo.
4038
- * @request POST:/tools
4039
- * @response `200` Success
4040
- */
4041
-
4042
- }, {
4043
- key: "createTool",
4044
- value: function createTool(data) {
4045
- return this.http.post("/tools", data).json();
4046
- }
4047
- /**
4048
- * No description
4049
- *
4050
- * @tags ToolsCatalog
4051
- * @name LoadToolInfo
4052
- * @operationId ToolsCatalogController_LoadToolInfo
4053
- * @summary Loads description of the given tool name.
4054
- * @request GET:/tools/{name}/info
4055
- * @response `200` Success
4056
- */
4057
-
4058
- }, {
4059
- key: "loadToolInfo",
4060
- value: function loadToolInfo(name) {
4061
- return this.http.get("/tools/" + name + "/info").json();
4062
- }
4063
- /**
4064
- * No description
4065
- *
4066
- * @tags ToolsCatalog
4067
- * @name LoadToolDefinition
4068
- * @operationId ToolsCatalogController_LoadToolDefinition
4069
- * @summary Loads description of the given tool name.
4070
- * @request GET:/tools/{name}
4071
- * @response `200` Success
4072
- */
4073
-
4074
- }, {
4075
- key: "loadToolDefinition",
4076
- value: function loadToolDefinition(name) {
4077
- return this.http.get("/tools/" + name).json();
4078
- }
4079
- /**
4080
- * No description
4081
- *
4082
- * @tags ToolsCatalog
4083
- * @name UpdateTool
4084
- * @operationId ToolsCatalogController_UpdateTool
4085
- * @summary Updates geotool with given toolInfo.
4086
- * @request PATCH:/tools/{name}
4087
- * @response `200` Success
4088
- */
4089
-
4090
- }, {
4091
- key: "updateTool",
4092
- value: function updateTool(name, data) {
4093
- return this.http.patch("/tools/" + name, data).then(() => {});
4094
- }
4095
- /**
4096
- * No description
4097
- *
4098
- * @tags ToolsCatalog
4099
- * @name DeleteTool
4100
- * @operationId ToolsCatalogController_DeleteTool
4101
- * @summary Deletes geotool with given name.
4102
- * @request DELETE:/tools/{name}
4103
- * @response `200` Success
4104
- */
4105
-
4106
- }, {
4107
- key: "deleteTool",
4108
- value: function deleteTool(name) {
4109
- return this.http.delete("/tools/" + name, null).then(() => {});
4110
- }
4111
- /**
4112
- * No description
4113
- *
4114
- * @tags ToolsCatalog
4115
- * @name AddToolPermissions
4116
- * @operationId ToolsCatalogController_AddToolPermissions
4117
- * @summary Adds permissions for the tool combining existing permissions with the given one.
4118
- * @request POST:/tools/{name}/add-permissions
4119
- * @response `200` Success
4120
- */
4121
-
4122
- }, {
4123
- key: "addToolPermissions",
4124
- value: function addToolPermissions(name, data) {
4125
- return this.http.post("/tools/" + name + "/add-permissions", data).then(() => {});
4126
- }
4127
- /**
4128
- * No description
4129
- *
4130
- * @tags ToolsCatalog
4131
- * @name RemoveToolPermissions
4132
- * @operationId ToolsCatalogController_RemoveToolPermissions
4133
- * @summary Removes permissions for the tool combining existing permissions with the given one.
4134
- * @request POST:/tools/{name}/remove-permissions
4135
- * @response `200` Success
4136
- */
4137
-
4138
- }, {
4139
- key: "removeToolPermissions",
4140
- value: function removeToolPermissions(name, data) {
4141
- return this.http.post("/tools/" + name + "/remove-permissions", data).then(() => {});
4142
- }
4143
- /**
4144
- * No description
4145
- *
4146
- * @tags ToolsCatalog
4147
- * @name ReplaceToolPermissions
4148
- * @operationId ToolsCatalogController_ReplaceToolPermissions
4149
- * @summary Replaces existing access control list for the layer with the given one.
4150
- * @request PUT:/tools/{name}/set-permissions
4151
- * @response `200` Success
4152
- */
4153
-
4154
- }, {
4155
- key: "replaceToolPermissions",
4156
- value: function replaceToolPermissions(name, data) {
4157
- return this.http.put("/tools/" + name + "/set-permissions", data).then(() => {});
4158
- }
4159
- /**
4160
- * No description
4161
- *
4162
- * @tags ToolsCatalog
4163
- * @name LoadToolPermission
4164
- * @operationId ToolsCatalogController_LoadToolPermission
4165
- * @summary Gets permissions of the given tool name.
4166
- * @request GET:/tools/{name}/permissions
4167
- * @response `200` Success
4168
- */
4169
-
4170
- }, {
4171
- key: "loadToolPermission",
4172
- value: function loadToolPermission(name) {
4173
- return this.http.get("/tools/" + name + "/permissions").json();
4174
- }
4175
- /**
4176
- * No description
4177
- *
4178
- * @tags ToolsCatalog
4179
- * @name ReloadTool
4180
- * @operationId ToolsCatalogController_ReloadTool
4181
- * @summary Reload given tool name.
4182
- * @request GET:/tools/{name}/reload
4183
- * @response `200` Success
4184
- */
4185
-
4186
- }, {
4187
- key: "reloadTool",
4188
- value: function reloadTool(name) {
4189
- return this.http.get("/tools/" + name + "/reload").then(() => {});
4190
- }
4191
- /**
4192
- * No description
4193
- *
4194
- * @tags ToolsCatalog
4195
- * @name GetToolsNames
4196
- * @operationId ToolsCatalogController_GetToolsNames
4197
- * @summary Gets list of tools according the user permissions with given filter.
4198
- * @request GET:/tools/list-names
4199
- * @response `200` Success
4200
- */
4201
-
4202
- }, {
4203
- key: "getToolsNames",
4204
- value: function getToolsNames(query) {
4205
- return this.http.get("/tools/list-names", query).json();
4206
- }
4207
- /**
4208
- * No description
4209
- *
4210
- * @tags ToolsCatalog
4211
- * @name AddToolToGroups
4212
- * @operationId ToolsCatalogController_AddToolToGroups
4213
- * @summary Adds geotools to list of groups.
4214
- * @request POST:/tools/{name}/add-groups
4215
- * @response `200` Success
4216
- */
4217
-
4218
- }, {
4219
- key: "addToolToGroups",
4220
- value: function addToolToGroups(name, data) {
4221
- return this.http.post("/tools/" + name + "/add-groups", data).then(() => {});
4222
- }
4223
- /**
4224
- * No description
4225
- *
4226
- * @tags ToolsCatalog
4227
- * @name RemoveFromGroups
4228
- * @operationId ToolsCatalogController_RemoveFromGroups
4229
- * @summary Removes geotool from list of groups.
4230
- * @request POST:/tools/{name}/remove-groups
4231
- * @response `200` Success
4232
- */
4233
-
4234
- }, {
4235
- key: "removeFromGroups",
4236
- value: function removeFromGroups(name, data) {
4237
- return this.http.post("/tools/" + name + "/remove-groups", data).then(() => {});
4238
- }
4239
- /**
4240
- * No description
4241
- *
4242
- * @tags ToolsGroups
4243
- * @name GetGroups
4244
- * @operationId ToolsGroupsController_GetGroups
4245
- * @summary Get list of groups with related info.
4246
- * @request GET:/tools/groups
4247
- * @response `200` Success
4248
- */
4249
-
4250
- }, {
4251
- key: "getGroups",
4252
- value: function getGroups(query) {
4253
- return this.http.get("/tools/groups", query).json();
4254
- }
4255
- /**
4256
- * No description
4257
- *
4258
- * @tags ToolsGroups
4259
- * @name CreateGroup
4260
- * @operationId ToolsGroupsController_CreateGroup
4261
- * @summary Create group with given createGroupInfo.
4262
- * @request POST:/tools/groups
4263
- * @response `200` Success
4264
- */
4265
-
4266
- }, {
4267
- key: "createGroup",
4268
- value: function createGroup(data) {
4269
- return this.http.post("/tools/groups", data).json();
4270
- }
4271
- /**
4272
- * No description
4273
- *
4274
- * @tags ToolsGroups
4275
- * @name LoadGroup
4276
- * @operationId ToolsGroupsController_LoadGroup
4277
- * @summary Loads tool group with id.
4278
- * @request GET:/tools/groups/{id}
4279
- * @response `200` Success
4280
- */
4281
-
4282
- }, {
4283
- key: "loadGroup",
4284
- value: function loadGroup(id) {
4285
- return this.http.get("/tools/groups/" + id).json();
4286
- }
4287
- /**
4288
- * No description
4289
- *
4290
- * @tags ToolsGroups
4291
- * @name UpdateGroup
4292
- * @operationId ToolsGroupsController_UpdateGroup
4293
- * @summary Update group with given updateGroupInfo.
4294
- * @request POST:/tools/groups/{id}
4295
- * @response `200` Success
4296
- */
4297
-
4298
- }, {
4299
- key: "updateGroup",
4300
- value: function updateGroup(id, data) {
4301
- return this.http.post("/tools/groups/" + id, data).then(() => {});
4302
- }
4303
- /**
4304
- * No description
4305
- *
4306
- * @tags ToolsGroups
4307
- * @name DeleteGroup
4308
- * @operationId ToolsGroupsController_DeleteGroup
4309
- * @summary Deletes group with given id.
4310
- * @request DELETE:/tools/groups/{id}
4311
- * @response `200` Success
4312
- */
4313
-
4314
- }, {
4315
- key: "deleteGroup",
4316
- value: function deleteGroup(id) {
4317
- return this.http.delete("/tools/groups/" + id, null).then(() => {});
4318
- }
4319
- /**
4320
- * No description
4321
- *
4322
- * @tags ToolsGroups
4323
- * @name AddToolsToGroup
4324
- * @operationId ToolsGroupsController_AddToolsToGroup
4325
- * @summary Adds geotools to group.
4326
- * @request POST:/tools/groups/add-tools
4327
- * @response `200` Success
4328
- */
4329
-
4330
- }, {
4331
- key: "addToolsToGroup",
4332
- value: function addToolsToGroup(data) {
4333
- return this.http.post("/tools/groups/add-tools", data).then(() => {});
4334
- }
4335
- /**
4336
- * No description
4337
- *
4338
- * @tags ToolsGroups
4339
- * @name RemoveToolsFromGroup
4340
- * @operationId ToolsGroupsController_RemoveToolsFromGroup
4341
- * @summary Remove geotools from group.
4342
- * @request POST:/tools/groups/remove-tools
4343
- * @response `200` Success
4344
- */
4345
-
4346
- }, {
4347
- key: "removeToolsFromGroup",
4348
- value: function removeToolsFromGroup(data) {
4349
- return this.http.post("/tools/groups/remove-tools", data).then(() => {});
4350
- }
4351
- /**
4352
- * No description
4353
- *
4354
- * @tags ToolsGroups
4355
- * @name GetGroupsInfo
4356
- * @operationId ToolsGroupsController_GetGroupsInfo
4357
- * @summary Get tools info.
4358
- * @request GET:/tools/groups/list-info
4359
- * @response `200` Success
4360
- */
4361
-
4362
- }, {
4363
- key: "getGroupsInfo",
4364
- value: function getGroupsInfo(query) {
4365
- return this.http.get("/tools/groups/list-info", query).json();
4366
- }
4367
- /**
4368
- * No description
4369
- *
4370
- * @tags ToolsRunner
4371
- * @name EvaluateTool
4372
- * @operationId ToolsRunnerController_EvaluateTool
4373
- * @summary Evaluate tool with given parameters parameters.
4374
- * @request POST:/tools/{name}/evaluate
4375
- * @response `200` Success
4376
- * @response `400` Bad Request
4377
- * @response `402` Client Error
4378
- */
4379
-
4380
- }, {
4381
- key: "evaluateTool",
4382
- value: function evaluateTool(_ref, data) {
4383
- let {
4384
- name
4385
- } = _ref,
4386
- query = _objectWithoutPropertiesLoose(_ref, _excluded$5);
4387
-
4388
- return this.http.post("/tools/" + name + "/evaluate", data, query).json();
4389
- }
4390
- /**
4391
- * No description
4392
- *
4393
- * @tags ToolsRunner
4394
- * @name ExecuteTool
4395
- * @operationId ToolsRunnerController_ExecuteTool
4396
- * @summary Runs the tool of the given with given parameters parameters.
4397
- * @request POST:/tools/{name}/run
4398
- * @response `200` Success
4399
- * @response `400` Bad Request
4400
- */
4401
-
4402
- }, {
4403
- key: "executeTool",
4404
- value: function executeTool(_ref2, data) {
4405
- let {
4406
- name
4407
- } = _ref2,
4408
- query = _objectWithoutPropertiesLoose(_ref2, _excluded2$3);
4409
-
4410
- return this.http.post("/tools/" + name + "/run", data, query).json();
4411
- }
4412
- /**
4413
- * No description
4414
- *
4415
- * @tags ToolsRunner
4416
- * @name GetToolsLists
4417
- * @operationId ToolsRunnerController_GetToolsLists
4418
- * @summary Get list of current user's tools.
4419
- * @request GET:/tools/journal
4420
- * @response `200` Success
4421
- */
4422
-
4423
- }, {
4424
- key: "getToolsLists",
4425
- value: function getToolsLists(query) {
4426
- return this.http.get("/tools/journal", query).json();
4427
- }
4428
- /**
4429
- * No description
4430
- *
4431
- * @tags ToolsRunner
4432
- * @name GetTool
4433
- * @operationId ToolsRunnerController_GetTool
4434
- * @summary Get tool launch by given id.
4435
- * @request GET:/tools/journal/{id}
4436
- * @response `200` Success
4437
- */
4438
-
4439
- }, {
4440
- key: "getTool",
4441
- value: function getTool(id) {
4442
- return this.http.get("/tools/journal/" + id).json();
4443
- }
4444
- /**
4445
- * No description
4446
- *
4447
- * @tags ToolsRunner
4448
- * @name CancelExecute
4449
- * @operationId ToolsRunnerController_CancelExecute
4450
- * @summary Cancel executing tool with given id id.
4451
- * @request POST:/tools/{id}/cancel
4452
- * @response `200` Success
4453
- */
4454
-
4455
- }, {
4456
- key: "cancelExecute",
4457
- value: function cancelExecute(id) {
4458
- return this.http.post("/tools/" + id + "/cancel", null).then(() => {});
4459
- }
4460
- /**
4461
- * No description
4462
- *
4463
- * @tags ToolsRunner
4464
- * @name GetToolResult
4465
- * @operationId ToolsRunnerController_GetToolResult
4466
- * @summary Get result of tool execution by tool id id.
4467
- * @request POST:/tools/{id}/result
4468
- * @response `200` Success
4469
- */
4470
-
4471
- }, {
4472
- key: "getToolResult",
4473
- value: function getToolResult(id, data) {
4474
- return this.http.post("/tools/" + id + "/result", data).json();
4475
- }
4476
- }]);
4477
-
4478
- return ToolsService;
3799
+ return _createClass(ToolsService);
4479
3800
  }(Service);
4480
3801
 
4481
3802
  let Tools = /*#__PURE__*/function (_ToolsService) {
@@ -6788,27 +6109,11 @@ function isFeatureLayer(layer) {
6788
6109
  AggregationFunction["Extent"] = "Extent";
6789
6110
  AggregationFunction["Count"] = "Count";
6790
6111
  AggregationFunction["OnlyValue"] = "OnlyValue";
6112
+ AggregationFunction["WeightedAvg"] = "WeightedAvg";
6113
+ AggregationFunction["DensityIndicators"] = "DensityIndicators";
6114
+ AggregationFunction["DividedSum"] = "DividedSum";
6791
6115
  })(exports.AggregationFunction || (exports.AggregationFunction = {}));
6792
6116
 
6793
- (function (ArgumentType) {
6794
- ArgumentType["String"] = "string";
6795
- ArgumentType["Int32"] = "int32";
6796
- ArgumentType["Int64"] = "int64";
6797
- ArgumentType["Double"] = "double";
6798
- ArgumentType["Float"] = "float";
6799
- ArgumentType["Boolean"] = "boolean";
6800
- ArgumentType["DateTime"] = "datetime";
6801
- ArgumentType["Enum"] = "enum";
6802
- ArgumentType["DataSource"] = "dataSource";
6803
- ArgumentType["Polygon"] = "polygon";
6804
- ArgumentType["Polyline"] = "polyline";
6805
- ArgumentType["Point"] = "point";
6806
- ArgumentType["Envelope"] = "envelope";
6807
- ArgumentType["Attribute"] = "attribute";
6808
- ArgumentType["Array"] = "array";
6809
- ArgumentType["ServiceInfo"] = "serviceInfo";
6810
- })(exports.ArgumentType || (exports.ArgumentType = {}));
6811
-
6812
6117
  (function (AttributeType) {
6813
6118
  AttributeType["Unknown"] = "Unknown";
6814
6119
  AttributeType["String"] = "String";
@@ -6852,12 +6157,6 @@ function isFeatureLayer(layer) {
6852
6157
  ConfigurationErrorEnum["DataSourceNotFound"] = "DataSourceNotFound";
6853
6158
  })(exports.ConfigurationErrorEnum || (exports.ConfigurationErrorEnum = {}));
6854
6159
 
6855
- (function (ElementType) {
6856
- ElementType["None"] = "none";
6857
- ElementType["Checkbox"] = "checkbox";
6858
- ElementType["Select"] = "select";
6859
- })(exports.ElementType || (exports.ElementType = {}));
6860
-
6861
6160
  (function (ErrorDetailsType) {
6862
6161
  ErrorDetailsType["ResourceLimitExceeded"] = "ResourceLimitExceeded";
6863
6162
  ErrorDetailsType["ResourceNotFound"] = "ResourceNotFound";
@@ -6946,75 +6245,6 @@ function isFeatureLayer(layer) {
6946
6245
  Group["All"] = "all";
6947
6246
  })(exports.Group || (exports.Group = {}));
6948
6247
 
6949
- (function (HttpStatusCode) {
6950
- HttpStatusCode["Continue"] = "Continue";
6951
- HttpStatusCode["SwitchingProtocols"] = "SwitchingProtocols";
6952
- HttpStatusCode["Processing"] = "Processing";
6953
- HttpStatusCode["EarlyHints"] = "EarlyHints";
6954
- HttpStatusCode["OK"] = "OK";
6955
- HttpStatusCode["Created"] = "Created";
6956
- HttpStatusCode["Accepted"] = "Accepted";
6957
- HttpStatusCode["NonAuthoritativeInformation"] = "NonAuthoritativeInformation";
6958
- HttpStatusCode["NoContent"] = "NoContent";
6959
- HttpStatusCode["ResetContent"] = "ResetContent";
6960
- HttpStatusCode["PartialContent"] = "PartialContent";
6961
- HttpStatusCode["MultiStatus"] = "MultiStatus";
6962
- HttpStatusCode["AlreadyReported"] = "AlreadyReported";
6963
- HttpStatusCode["IMUsed"] = "IMUsed";
6964
- HttpStatusCode["MultipleChoices"] = "Ambiguous";
6965
- HttpStatusCode["Ambiguous"] = "Moved";
6966
- HttpStatusCode["MovedPermanently"] = "Redirect";
6967
- HttpStatusCode["Moved"] = "RedirectMethod";
6968
- HttpStatusCode["Found"] = "NotModified";
6969
- HttpStatusCode["Redirect"] = "UseProxy";
6970
- HttpStatusCode["SeeOther"] = "Unused";
6971
- HttpStatusCode["RedirectMethod"] = "TemporaryRedirect";
6972
- HttpStatusCode["NotModified"] = "PermanentRedirect";
6973
- HttpStatusCode["UseProxy"] = "BadRequest";
6974
- HttpStatusCode["Unused"] = "Unauthorized";
6975
- HttpStatusCode["TemporaryRedirect"] = "PaymentRequired";
6976
- HttpStatusCode["RedirectKeepVerb"] = "Forbidden";
6977
- HttpStatusCode["PermanentRedirect"] = "NotFound";
6978
- HttpStatusCode["BadRequest"] = "MethodNotAllowed";
6979
- HttpStatusCode["Unauthorized"] = "NotAcceptable";
6980
- HttpStatusCode["PaymentRequired"] = "ProxyAuthenticationRequired";
6981
- HttpStatusCode["Forbidden"] = "RequestTimeout";
6982
- HttpStatusCode["NotFound"] = "Conflict";
6983
- HttpStatusCode["MethodNotAllowed"] = "Gone";
6984
- HttpStatusCode["NotAcceptable"] = "LengthRequired";
6985
- HttpStatusCode["ProxyAuthenticationRequired"] = "PreconditionFailed";
6986
- HttpStatusCode["RequestTimeout"] = "RequestEntityTooLarge";
6987
- HttpStatusCode["Conflict"] = "RequestUriTooLong";
6988
- HttpStatusCode["Gone"] = "UnsupportedMediaType";
6989
- HttpStatusCode["LengthRequired"] = "RequestedRangeNotSatisfiable";
6990
- HttpStatusCode["PreconditionFailed"] = "ExpectationFailed";
6991
- HttpStatusCode["RequestEntityTooLarge"] = "MisdirectedRequest";
6992
- HttpStatusCode["RequestUriTooLong"] = "UnprocessableEntity";
6993
- HttpStatusCode["UnsupportedMediaType"] = "Locked";
6994
- HttpStatusCode["RequestedRangeNotSatisfiable"] = "FailedDependency";
6995
- HttpStatusCode["ExpectationFailed"] = "UpgradeRequired";
6996
- HttpStatusCode["MisdirectedRequest"] = "PreconditionRequired";
6997
- HttpStatusCode["UnprocessableEntity"] = "TooManyRequests";
6998
- HttpStatusCode["Locked"] = "RequestHeaderFieldsTooLarge";
6999
- HttpStatusCode["FailedDependency"] = "UnavailableForLegalReasons";
7000
- HttpStatusCode["UpgradeRequired"] = "InternalServerError";
7001
- HttpStatusCode["PreconditionRequired"] = "NotImplemented";
7002
- HttpStatusCode["TooManyRequests"] = "BadGateway";
7003
- HttpStatusCode["RequestHeaderFieldsTooLarge"] = "ServiceUnavailable";
7004
- HttpStatusCode["UnavailableForLegalReasons"] = "GatewayTimeout";
7005
- HttpStatusCode["InternalServerError"] = "HttpVersionNotSupported";
7006
- HttpStatusCode["NotImplemented"] = "VariantAlsoNegotiates";
7007
- HttpStatusCode["BadGateway"] = "InsufficientStorage";
7008
- HttpStatusCode["ServiceUnavailable"] = "LoopDetected";
7009
- HttpStatusCode["GatewayTimeout"] = "NotExtended";
7010
- HttpStatusCode["HttpVersionNotSupported"] = "NetworkAuthenticationRequired";
7011
- HttpStatusCode["VariantAlsoNegotiates"] = "VariantAlsoNegotiates";
7012
- HttpStatusCode["InsufficientStorage"] = "InsufficientStorage";
7013
- HttpStatusCode["LoopDetected"] = "LoopDetected";
7014
- HttpStatusCode["NotExtended"] = "NotExtended";
7015
- HttpStatusCode["NetworkAuthenticationRequired"] = "NetworkAuthenticationRequired";
7016
- })(exports.HttpStatusCode || (exports.HttpStatusCode = {}));
7017
-
7018
6248
  (function (LineEndingSize) {
7019
6249
  LineEndingSize["Small"] = "small";
7020
6250
  LineEndingSize["Large"] = "large";
@@ -7101,20 +6331,6 @@ function isFeatureLayer(layer) {
7101
6331
  TextVerticalAlignment["Middle"] = "middle";
7102
6332
  })(exports.TextVerticalAlignment || (exports.TextVerticalAlignment = {}));
7103
6333
 
7104
- (function (ToolStatus) {
7105
- ToolStatus["Pending"] = "Pending";
7106
- ToolStatus["Running"] = "Running";
7107
- ToolStatus["Delivered"] = "Delivered";
7108
- ToolStatus["Failed"] = "Failed";
7109
- ToolStatus["Completed"] = "Completed";
7110
- ToolStatus["Canceled"] = "Canceled";
7111
- })(exports.ToolStatus || (exports.ToolStatus = {}));
7112
-
7113
- (function (ToolStorageType) {
7114
- ToolStorageType["StaticStorage"] = "staticStorage";
7115
- ToolStorageType["LayersStorage"] = "layersStorage";
7116
- })(exports.ToolStorageType || (exports.ToolStorageType = {}));
7117
-
7118
6334
  Object.defineProperty(exports, 'HTTPError', {
7119
6335
  enumerable: true,
7120
6336
  get: function () {