@evergis/api 4.0.20 → 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/dist/api.esm.js CHANGED
@@ -1454,6 +1454,23 @@ let AccountService = /*#__PURE__*/function (_Service) {
1454
1454
  value: function removeUser(username) {
1455
1455
  return this.http.delete("/account/user/" + username, null).then(() => {});
1456
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
+ }
1457
1474
  /**
1458
1475
  * No description
1459
1476
  *
@@ -2067,214 +2084,6 @@ let BulkOperations = /*#__PURE__*/function (_BulkOperationsServic) {
2067
2084
  return _createClass(BulkOperations);
2068
2085
  }(BulkOperationsService);
2069
2086
 
2070
- const _excluded$1 = ["cameraId"],
2071
- _excluded2 = ["cameraId"],
2072
- _excluded3 = ["cameraId"],
2073
- _excluded4 = ["cameraId"],
2074
- _excluded5 = ["cameraId"],
2075
- _excluded6 = ["cameraId"];
2076
- /**
2077
- * @title Spatial Processing Core API
2078
- * @version 1.5.1.0
2079
- * @baseUrl /sp
2080
- */
2081
-
2082
- let CamerasService = /*#__PURE__*/function (_Service) {
2083
- _inherits(CamerasService, _Service);
2084
-
2085
- var _super = /*#__PURE__*/_createSuper(CamerasService);
2086
-
2087
- function CamerasService() {
2088
- _classCallCheck(this, CamerasService);
2089
-
2090
- return _super.apply(this, arguments);
2091
- }
2092
-
2093
- _createClass(CamerasService, [{
2094
- key: "getCameras",
2095
- value:
2096
- /**
2097
- * No description
2098
- *
2099
- * @tags Cameras
2100
- * @name GetCameras
2101
- * @operationId CamerasController_GetCameras
2102
- * @summary Get cameras list.
2103
- * @request GET:/cameras
2104
- * @secure
2105
- * @response `200` OK
2106
- */
2107
- function getCameras(query) {
2108
- return this.http.get("/cameras", query).json();
2109
- }
2110
- /**
2111
- * No description
2112
- *
2113
- * @tags Cameras
2114
- * @name GetArchiveFeed
2115
- * @operationId CamerasController_GetArchiveFeed
2116
- * @summary Streams an FLV-over-HTTP archive feed starting at specific time.
2117
- * @request GET:/cameras/{cameraId}/archiveFeed
2118
- * @secure
2119
- * @response `200` OK
2120
- */
2121
-
2122
- }, {
2123
- key: "getArchiveFeed",
2124
- value: function getArchiveFeed(_ref) {
2125
- let {
2126
- cameraId
2127
- } = _ref,
2128
- query = _objectWithoutPropertiesLoose(_ref, _excluded$1);
2129
-
2130
- return this.http.get("/cameras/" + cameraId + "/archiveFeed", query).blob();
2131
- }
2132
- /**
2133
- * No description
2134
- *
2135
- * @tags Cameras
2136
- * @name GetArchiveTimeline
2137
- * @operationId CamerasController_GetArchiveTimeline
2138
- * @summary Returns a list of records available within a given timeframe.
2139
- * @request GET:/cameras/{cameraId}/archiveTimeline
2140
- * @secure
2141
- * @response `200` OK
2142
- */
2143
-
2144
- }, {
2145
- key: "getArchiveTimeline",
2146
- value: function getArchiveTimeline(_ref2) {
2147
- let {
2148
- cameraId
2149
- } = _ref2,
2150
- query = _objectWithoutPropertiesLoose(_ref2, _excluded2);
2151
-
2152
- return this.http.get("/cameras/" + cameraId + "/archiveTimeline", query).json();
2153
- }
2154
- /**
2155
- * No description
2156
- *
2157
- * @tags Cameras
2158
- * @name GetArchiveCalendar
2159
- * @operationId CamerasController_GetArchiveCalendar
2160
- * @summary Returns a list of records available within a given timeframe.
2161
- * @request GET:/cameras/{cameraId}/archiveCalendar
2162
- * @secure
2163
- * @response `200` OK
2164
- */
2165
-
2166
- }, {
2167
- key: "getArchiveCalendar",
2168
- value: function getArchiveCalendar(_ref3) {
2169
- let {
2170
- cameraId
2171
- } = _ref3,
2172
- query = _objectWithoutPropertiesLoose(_ref3, _excluded3);
2173
-
2174
- return this.http.get("/cameras/" + cameraId + "/archiveCalendar", query).json();
2175
- }
2176
- /**
2177
- * No description
2178
- *
2179
- * @tags Cameras
2180
- * @name GetArchiveSnapshot
2181
- * @operationId CamerasController_GetArchiveSnapshot
2182
- * @summary Returns a JPEG image from the Camera’s archive.
2183
- * @request GET:/cameras/{cameraId}/archiveSnapshot
2184
- * @secure
2185
- * @response `200` OK
2186
- */
2187
-
2188
- }, {
2189
- key: "getArchiveSnapshot",
2190
- value: function getArchiveSnapshot(_ref4) {
2191
- let {
2192
- cameraId
2193
- } = _ref4,
2194
- query = _objectWithoutPropertiesLoose(_ref4, _excluded4);
2195
-
2196
- return this.http.get("/cameras/" + cameraId + "/archiveSnapshot", query).blob();
2197
- }
2198
- /**
2199
- * No description
2200
- *
2201
- * @tags Cameras
2202
- * @name GetLiveFeed
2203
- * @operationId CamerasController_GetLiveFeed
2204
- * @summary Streams live video feed from the Camera.
2205
- * @request GET:/cameras/{cameraId}/liveFeed
2206
- * @secure
2207
- * @response `200` OK
2208
- */
2209
-
2210
- }, {
2211
- key: "getLiveFeed",
2212
- value: function getLiveFeed(_ref5) {
2213
- let {
2214
- cameraId
2215
- } = _ref5,
2216
- query = _objectWithoutPropertiesLoose(_ref5, _excluded5);
2217
-
2218
- return this.http.get("/cameras/" + cameraId + "/liveFeed", query).blob();
2219
- }
2220
- /**
2221
- * No description
2222
- *
2223
- * @tags Cameras
2224
- * @name GetLiveSnapshot
2225
- * @operationId CamerasController_GetLiveSnapshot
2226
- * @summary Returns a JPEG image from the Camera’s live feed.
2227
- * @request GET:/cameras/{cameraId}/liveSnapshot
2228
- * @secure
2229
- * @response `200` OK
2230
- */
2231
-
2232
- }, {
2233
- key: "getLiveSnapshot",
2234
- value: function getLiveSnapshot(cameraId) {
2235
- return this.http.get("/cameras/" + cameraId + "/liveSnapshot").blob();
2236
- }
2237
- /**
2238
- * No description
2239
- *
2240
- * @tags Cameras
2241
- * @name GetLivePreviewStream
2242
- * @operationId CamerasController_GetLivePreviewStream
2243
- * @summary Get live preview stream.
2244
- * @request GET:/cameras/{cameraId}/getLivePreviewsStream
2245
- * @secure
2246
- * @response `200` OK
2247
- */
2248
-
2249
- }, {
2250
- key: "getLivePreviewStream",
2251
- value: function getLivePreviewStream(_ref6) {
2252
- let {
2253
- cameraId
2254
- } = _ref6,
2255
- query = _objectWithoutPropertiesLoose(_ref6, _excluded6);
2256
-
2257
- return this.http.get("/cameras/" + cameraId + "/getLivePreviewsStream", query).json();
2258
- }
2259
- }]);
2260
-
2261
- return CamerasService;
2262
- }(Service);
2263
-
2264
- let Cameras = /*#__PURE__*/function (_CamerasService) {
2265
- _inherits(Cameras, _CamerasService);
2266
-
2267
- var _super = /*#__PURE__*/_createSuper(Cameras);
2268
-
2269
- function Cameras() {
2270
- _classCallCheck(this, Cameras);
2271
-
2272
- return _super.apply(this, arguments);
2273
- }
2274
-
2275
- return _createClass(Cameras);
2276
- }(CamerasService);
2277
-
2278
2087
  /**
2279
2088
  * @title Spatial Processing Core API
2280
2089
  * @version 1.5.1.0
@@ -2591,282 +2400,6 @@ let Eql = /*#__PURE__*/function (_EqlService) {
2591
2400
  return _createClass(Eql);
2592
2401
  }(EqlService);
2593
2402
 
2594
- /**
2595
- * @title Spatial Processing Core API
2596
- * @version 1.5.1.0
2597
- * @baseUrl /sp
2598
- */
2599
-
2600
- let ExternalProvidersService = /*#__PURE__*/function (_Service) {
2601
- _inherits(ExternalProvidersService, _Service);
2602
-
2603
- var _super = /*#__PURE__*/_createSuper(ExternalProvidersService);
2604
-
2605
- function ExternalProvidersService() {
2606
- _classCallCheck(this, ExternalProvidersService);
2607
-
2608
- return _super.apply(this, arguments);
2609
- }
2610
-
2611
- _createClass(ExternalProvidersService, [{
2612
- key: "vkLogin",
2613
- value:
2614
- /**
2615
- * No description
2616
- *
2617
- * @tags ExternalProviders
2618
- * @name VkLogin
2619
- * @operationId ExternalProvidersController_VkLogin
2620
- * @summary The external login by vk.
2621
- * @request GET:/account/external/login/vk
2622
- * @secure
2623
- * @response `200` OK
2624
- */
2625
- function vkLogin() {
2626
- return this.http.createUrl("/account/external/login/vk");
2627
- }
2628
- /**
2629
- * No description
2630
- *
2631
- * @tags ExternalProviders
2632
- * @name GoogleLogin
2633
- * @operationId ExternalProvidersController_GoogleLogin
2634
- * @summary The external login by google.
2635
- * @request GET:/account/external/login/google
2636
- * @secure
2637
- * @response `200` OK
2638
- */
2639
-
2640
- }, {
2641
- key: "googleLogin",
2642
- value: function googleLogin() {
2643
- return this.http.createUrl("/account/external/login/google");
2644
- }
2645
- /**
2646
- * No description
2647
- *
2648
- * @tags ExternalProviders
2649
- * @name FacebookLogin
2650
- * @operationId ExternalProvidersController_FacebookLogin
2651
- * @summary The external login by facebook.
2652
- * @request GET:/account/external/login/facebook
2653
- * @secure
2654
- * @response `200` OK
2655
- */
2656
-
2657
- }, {
2658
- key: "facebookLogin",
2659
- value: function facebookLogin() {
2660
- return this.http.createUrl("/account/external/login/facebook");
2661
- }
2662
- /**
2663
- * No description
2664
- *
2665
- * @tags ExternalProviders
2666
- * @name LoginCallback
2667
- * @operationId ExternalProvidersController_LoginCallback
2668
- * @summary The external login callback.
2669
- * @request GET:/account/external/login/callback
2670
- * @secure
2671
- * @response `200` OK
2672
- */
2673
-
2674
- }, {
2675
- key: "loginCallback",
2676
- value: function loginCallback() {
2677
- return this.http.get("/account/external/login/callback").then(() => {});
2678
- }
2679
- /**
2680
- * No description
2681
- *
2682
- * @tags ExternalProviders
2683
- * @name UnbindVk
2684
- * @operationId ExternalProvidersController_UnbindVk
2685
- * @summary Unbind external login from current user account (google).
2686
- * @request DELETE:/account/external/unbind/vk
2687
- * @secure
2688
- * @response `200` OK
2689
- */
2690
-
2691
- }, {
2692
- key: "unbindVk",
2693
- value: function unbindVk() {
2694
- return this.http.delete("/account/external/unbind/vk", null).then(() => {});
2695
- }
2696
- /**
2697
- * No description
2698
- *
2699
- * @tags ExternalProviders
2700
- * @name UnbindGoogle
2701
- * @operationId ExternalProvidersController_UnbindGoogle
2702
- * @summary Unbind external login from current user account (google).
2703
- * @request DELETE:/account/external/unbind/google
2704
- * @secure
2705
- * @response `200` OK
2706
- */
2707
-
2708
- }, {
2709
- key: "unbindGoogle",
2710
- value: function unbindGoogle() {
2711
- return this.http.delete("/account/external/unbind/google", null).then(() => {});
2712
- }
2713
- /**
2714
- * No description
2715
- *
2716
- * @tags ExternalProviders
2717
- * @name UnbindFacebook
2718
- * @operationId ExternalProvidersController_UnbindFacebook
2719
- * @summary Unbind external login from current user account (google).
2720
- * @request DELETE:/account/external/unbind/facebook
2721
- * @secure
2722
- * @response `200` OK
2723
- */
2724
-
2725
- }, {
2726
- key: "unbindFacebook",
2727
- value: function unbindFacebook() {
2728
- return this.http.delete("/account/external/unbind/facebook", null).then(() => {});
2729
- }
2730
- /**
2731
- * No description
2732
- *
2733
- * @tags ExternalProviders
2734
- * @name BindVk
2735
- * @operationId ExternalProvidersController_BindVk
2736
- * @summary The external login by vk.
2737
- * @request GET:/account/external/bind/vk
2738
- * @secure
2739
- * @response `200` OK
2740
- */
2741
-
2742
- }, {
2743
- key: "bindVk",
2744
- value: function bindVk() {
2745
- return this.http.createUrl("/account/external/bind/vk");
2746
- }
2747
- /**
2748
- * No description
2749
- *
2750
- * @tags ExternalProviders
2751
- * @name BindGoogle
2752
- * @operationId ExternalProvidersController_BindGoogle
2753
- * @summary The external login by vk.
2754
- * @request GET:/account/external/bind/google
2755
- * @secure
2756
- * @response `200` OK
2757
- */
2758
-
2759
- }, {
2760
- key: "bindGoogle",
2761
- value: function bindGoogle() {
2762
- return this.http.createUrl("/account/external/bind/google");
2763
- }
2764
- /**
2765
- * No description
2766
- *
2767
- * @tags ExternalProviders
2768
- * @name BindFacebook
2769
- * @operationId ExternalProvidersController_BindFacebook
2770
- * @summary The external login by vk.
2771
- * @request GET:/account/external/bind/facebook
2772
- * @secure
2773
- * @response `200` OK
2774
- */
2775
-
2776
- }, {
2777
- key: "bindFacebook",
2778
- value: function bindFacebook() {
2779
- return this.http.createUrl("/account/external/bind/facebook");
2780
- }
2781
- /**
2782
- * No description
2783
- *
2784
- * @tags ExternalProviders
2785
- * @name BindCallback
2786
- * @operationId ExternalProvidersController_BindCallback
2787
- * @summary Bind external login to current user account.
2788
- * @request GET:/account/external/bind/callback
2789
- * @secure
2790
- * @response `200` OK
2791
- */
2792
-
2793
- }, {
2794
- key: "bindCallback",
2795
- value: function bindCallback() {
2796
- return this.http.get("/account/external/bind/callback").then(() => {});
2797
- }
2798
- }]);
2799
-
2800
- return ExternalProvidersService;
2801
- }(Service);
2802
-
2803
- let External = /*#__PURE__*/function (_ExternalProvidersSer) {
2804
- _inherits(External, _ExternalProvidersSer);
2805
-
2806
- var _super = /*#__PURE__*/_createSuper(External);
2807
-
2808
- function External() {
2809
- _classCallCheck(this, External);
2810
-
2811
- return _super.apply(this, arguments);
2812
- }
2813
-
2814
- _createClass(External, [{
2815
- key: "login",
2816
- value: function login(network) {
2817
- switch (network) {
2818
- case 'vk':
2819
- return this.vkLogin();
2820
-
2821
- case 'google':
2822
- return this.googleLogin();
2823
-
2824
- case 'facebook':
2825
- return this.facebookLogin();
2826
-
2827
- default:
2828
- return '';
2829
- }
2830
- }
2831
- }, {
2832
- key: "bind",
2833
- value: function bind(network) {
2834
- switch (network) {
2835
- case 'vk':
2836
- return this.bindVk();
2837
-
2838
- case 'google':
2839
- return this.bindGoogle();
2840
-
2841
- case 'facebook':
2842
- return this.bindFacebook();
2843
-
2844
- default:
2845
- return '';
2846
- }
2847
- }
2848
- }, {
2849
- key: "unbind",
2850
- value: function unbind(network) {
2851
- switch (network) {
2852
- case 'vk':
2853
- return this.unbindVk();
2854
-
2855
- case 'google':
2856
- return this.unbindGoogle();
2857
-
2858
- case 'facebook':
2859
- return this.unbindFacebook();
2860
-
2861
- default:
2862
- return '';
2863
- }
2864
- }
2865
- }]);
2866
-
2867
- return External;
2868
- }(ExternalProvidersService);
2869
-
2870
2403
  /**
2871
2404
  * @title Spatial Processing Core API
2872
2405
  * @version 1.5.1.0
@@ -3077,9 +2610,9 @@ let Filters = /*#__PURE__*/function (_FiltersService) {
3077
2610
  return _createClass(Filters);
3078
2611
  }(FiltersService);
3079
2612
 
3080
- const _excluded$2 = ["providerName"],
3081
- _excluded2$1 = ["providerName"],
3082
- _excluded3$1 = ["providerName"];
2613
+ const _excluded$1 = ["providerName"],
2614
+ _excluded2 = ["providerName"],
2615
+ _excluded3 = ["providerName"];
3083
2616
  /**
3084
2617
  * @title Spatial Processing Core API
3085
2618
  * @version 1.5.1.0
@@ -3115,7 +2648,7 @@ let GeocodeService = /*#__PURE__*/function (_Service) {
3115
2648
  let {
3116
2649
  providerName
3117
2650
  } = _ref,
3118
- query = _objectWithoutPropertiesLoose(_ref, _excluded$2);
2651
+ query = _objectWithoutPropertiesLoose(_ref, _excluded$1);
3119
2652
 
3120
2653
  return this.http.get("/geocode/" + providerName, query).json();
3121
2654
  }
@@ -3137,7 +2670,7 @@ let GeocodeService = /*#__PURE__*/function (_Service) {
3137
2670
  let {
3138
2671
  providerName
3139
2672
  } = _ref2,
3140
- query = _objectWithoutPropertiesLoose(_ref2, _excluded2$1);
2673
+ query = _objectWithoutPropertiesLoose(_ref2, _excluded2);
3141
2674
 
3142
2675
  return this.http.get("/geocode/" + providerName + "/geocodeByPoint", query).json();
3143
2676
  }
@@ -3159,7 +2692,7 @@ let GeocodeService = /*#__PURE__*/function (_Service) {
3159
2692
  let {
3160
2693
  providerName
3161
2694
  } = _ref3,
3162
- query = _objectWithoutPropertiesLoose(_ref3, _excluded3$1);
2695
+ query = _objectWithoutPropertiesLoose(_ref3, _excluded3);
3163
2696
 
3164
2697
  return this.http.get("/geocode/" + providerName + "/suggest", query).json();
3165
2698
  }
@@ -3199,76 +2732,6 @@ let Geocode = /*#__PURE__*/function (_GeocodeService) {
3199
2732
  return Geocode;
3200
2733
  }(GeocodeService);
3201
2734
 
3202
- /**
3203
- * @title Spatial Processing Core API
3204
- * @version 1.5.1.0
3205
- * @baseUrl /sp
3206
- */
3207
-
3208
- let IceRouterService = /*#__PURE__*/function (_Service) {
3209
- _inherits(IceRouterService, _Service);
3210
-
3211
- var _super = /*#__PURE__*/_createSuper(IceRouterService);
3212
-
3213
- function IceRouterService() {
3214
- _classCallCheck(this, IceRouterService);
3215
-
3216
- return _super.apply(this, arguments);
3217
- }
3218
-
3219
- _createClass(IceRouterService, [{
3220
- key: "startTask",
3221
- value:
3222
- /**
3223
- * No description
3224
- *
3225
- * @tags IceRouter
3226
- * @name StartTask
3227
- * @operationId IceRouterController_StartTask
3228
- * @summary Start route build between start and end points.
3229
- * @request POST:/ice-router/tasks
3230
- * @secure
3231
- * @response `200` OK
3232
- */
3233
- function startTask(data) {
3234
- return this.http.post("/ice-router/tasks", data).text();
3235
- }
3236
- /**
3237
- * No description
3238
- *
3239
- * @tags IceRouter
3240
- * @name GetResult
3241
- * @operationId IceRouterController_GetResult
3242
- * @summary Get task result.
3243
- * @request GET:/ice-router/tasks/{id}
3244
- * @secure
3245
- * @response `200` OK
3246
- */
3247
-
3248
- }, {
3249
- key: "getResult",
3250
- value: function getResult(id) {
3251
- return this.http.get("/ice-router/tasks/" + id).json();
3252
- }
3253
- }]);
3254
-
3255
- return IceRouterService;
3256
- }(Service);
3257
-
3258
- let IceRouter = /*#__PURE__*/function (_IceRouterService) {
3259
- _inherits(IceRouter, _IceRouterService);
3260
-
3261
- var _super = /*#__PURE__*/_createSuper(IceRouter);
3262
-
3263
- function IceRouter() {
3264
- _classCallCheck(this, IceRouter);
3265
-
3266
- return _super.apply(this, arguments);
3267
- }
3268
-
3269
- return _createClass(IceRouter);
3270
- }(IceRouterService);
3271
-
3272
2735
  /**
3273
2736
  * @title Spatial Processing Core API
3274
2737
  * @version 1.5.1.0
@@ -3475,24 +2938,21 @@ let Import = /*#__PURE__*/function (_ImportService) {
3475
2938
  return _createClass(Import);
3476
2939
  }(ImportService);
3477
2940
 
3478
- const _excluded$3 = ["name"],
3479
- _excluded2$2 = ["name"],
3480
- _excluded3$2 = ["name", "id"],
3481
- _excluded4$1 = ["name", "id"],
3482
- _excluded5$1 = ["name", "id"],
3483
- _excluded6$1 = ["name", "x", "y", "z"],
3484
- _excluded7 = ["name", "x", "y", "z", "format"],
3485
- _excluded8 = ["name", "x", "y", "z", "dpi", "format"],
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"],
3486
2949
  _excluded9 = ["name"],
3487
2950
  _excluded10 = ["name"],
3488
2951
  _excluded11 = ["name"],
3489
2952
  _excluded12 = ["name"],
3490
2953
  _excluded13 = ["name"],
3491
- _excluded14 = ["name"],
3492
- _excluded15 = ["name"],
3493
- _excluded16 = ["name"],
3494
- _excluded17 = ["layerName"],
3495
- _excluded18 = ["name", "id"];
2954
+ _excluded14 = ["layerName"],
2955
+ _excluded15 = ["name", "id"];
3496
2956
  /**
3497
2957
  * @title Spatial Processing Core API
3498
2958
  * @version 1.5.1.0
@@ -3964,7 +3424,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3964
3424
  let {
3965
3425
  name
3966
3426
  } = _ref,
3967
- query = _objectWithoutPropertiesLoose(_ref, _excluded$3);
3427
+ query = _objectWithoutPropertiesLoose(_ref, _excluded$2);
3968
3428
 
3969
3429
  return this.http.get("/layers/" + name + "/features", query).json();
3970
3430
  }
@@ -3986,7 +3446,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3986
3446
  let {
3987
3447
  name
3988
3448
  } = _ref2,
3989
- query = _objectWithoutPropertiesLoose(_ref2, _excluded2$2);
3449
+ query = _objectWithoutPropertiesLoose(_ref2, _excluded2$1);
3990
3450
 
3991
3451
  return this.http.delete("/layers/" + name + "/features", null, query).json();
3992
3452
  }
@@ -4043,56 +3503,10 @@ let LayersService = /*#__PURE__*/function (_Service) {
4043
3503
  name,
4044
3504
  id
4045
3505
  } = _ref3,
4046
- query = _objectWithoutPropertiesLoose(_ref3, _excluded3$2);
3506
+ query = _objectWithoutPropertiesLoose(_ref3, _excluded3$1);
4047
3507
 
4048
3508
  return this.http.get("/layers/" + name + "/features/" + id, query).json();
4049
3509
  }
4050
- /**
4051
- * No description
4052
- *
4053
- * @tags Layers
4054
- * @name Unite
4055
- * @operationId LayersController_Unite
4056
- * @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.
4057
- * @request POST:/layers/{name}/features/{id}/unite
4058
- * @secure
4059
- * @response `200` OK
4060
- */
4061
-
4062
- }, {
4063
- key: "unite",
4064
- value: function unite(_ref4, data) {
4065
- let {
4066
- name,
4067
- id
4068
- } = _ref4,
4069
- query = _objectWithoutPropertiesLoose(_ref4, _excluded4$1);
4070
-
4071
- return this.http.post("/layers/" + name + "/features/" + id + "/unite", data, query).json();
4072
- }
4073
- /**
4074
- * No description
4075
- *
4076
- * @tags Layers
4077
- * @name Subtract
4078
- * @operationId LayersController_Subtract
4079
- * @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.
4080
- * @request POST:/layers/{name}/features/{id}/subtract
4081
- * @secure
4082
- * @response `200` OK
4083
- */
4084
-
4085
- }, {
4086
- key: "subtract",
4087
- value: function subtract(_ref5, data) {
4088
- let {
4089
- name,
4090
- id
4091
- } = _ref5,
4092
- query = _objectWithoutPropertiesLoose(_ref5, _excluded5$1);
4093
-
4094
- return this.http.post("/layers/" + name + "/features/" + id + "/subtract", data, query).json();
4095
- }
4096
3510
  /**
4097
3511
  * No description
4098
3512
  *
@@ -4107,14 +3521,14 @@ let LayersService = /*#__PURE__*/function (_Service) {
4107
3521
 
4108
3522
  }, {
4109
3523
  key: "getTilesLayerImage",
4110
- value: function getTilesLayerImage(_ref6) {
3524
+ value: function getTilesLayerImage(_ref4) {
4111
3525
  let {
4112
3526
  name,
4113
3527
  x,
4114
3528
  y,
4115
3529
  z
4116
- } = _ref6,
4117
- query = _objectWithoutPropertiesLoose(_ref6, _excluded6$1);
3530
+ } = _ref4,
3531
+ query = _objectWithoutPropertiesLoose(_ref4, _excluded4);
4118
3532
 
4119
3533
  return this.http.createUrl("/layers/" + name + "/tile/" + z + "/" + x + "/" + y, query);
4120
3534
  }
@@ -4132,15 +3546,15 @@ let LayersService = /*#__PURE__*/function (_Service) {
4132
3546
 
4133
3547
  }, {
4134
3548
  key: "getTilesLayerImage1",
4135
- value: function getTilesLayerImage1(_ref7) {
3549
+ value: function getTilesLayerImage1(_ref5) {
4136
3550
  let {
4137
3551
  name,
4138
3552
  x,
4139
3553
  y,
4140
3554
  z,
4141
3555
  format
4142
- } = _ref7,
4143
- query = _objectWithoutPropertiesLoose(_ref7, _excluded7);
3556
+ } = _ref5,
3557
+ query = _objectWithoutPropertiesLoose(_ref5, _excluded5);
4144
3558
 
4145
3559
  return this.http.createUrl("/layers/" + name + "/tile/" + z + "/" + x + "/" + y + "." + format, query);
4146
3560
  }
@@ -4158,7 +3572,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
4158
3572
 
4159
3573
  }, {
4160
3574
  key: "getTilesLayerImageWithFormatAndDpi",
4161
- value: function getTilesLayerImageWithFormatAndDpi(_ref8) {
3575
+ value: function getTilesLayerImageWithFormatAndDpi(_ref6) {
4162
3576
  let {
4163
3577
  name,
4164
3578
  x,
@@ -4166,33 +3580,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
4166
3580
  z,
4167
3581
  dpi,
4168
3582
  format
4169
- } = _ref8,
4170
- query = _objectWithoutPropertiesLoose(_ref8, _excluded8);
3583
+ } = _ref6,
3584
+ query = _objectWithoutPropertiesLoose(_ref6, _excluded6);
4171
3585
 
4172
3586
  return this.http.createUrl("/layers/" + name + "/tile/" + z + "/" + x + "/" + y + "@" + dpi + "x." + format, query);
4173
3587
  }
4174
- /**
4175
- * No description
4176
- *
4177
- * @tags Layers
4178
- * @name GetLayerImage
4179
- * @operationId LayersController_GetLayerImage
4180
- * @summary Renders the layer to the image of the requested size.
4181
- * @request GET:/layers/{name}/export
4182
- * @secure
4183
- * @response `200` OK
4184
- */
4185
-
4186
- }, {
4187
- key: "getLayerImage",
4188
- value: function getLayerImage(_ref9) {
4189
- let {
4190
- name
4191
- } = _ref9,
4192
- query = _objectWithoutPropertiesLoose(_ref9, _excluded9);
4193
-
4194
- return this.http.createUrl("/layers/" + name + "/export", query);
4195
- }
4196
3588
  /**
4197
3589
  * No description
4198
3590
  *
@@ -4207,11 +3599,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
4207
3599
 
4208
3600
  }, {
4209
3601
  key: "getLayerExtent",
4210
- value: function getLayerExtent(_ref10) {
3602
+ value: function getLayerExtent(_ref7) {
4211
3603
  let {
4212
3604
  name
4213
- } = _ref10,
4214
- query = _objectWithoutPropertiesLoose(_ref10, _excluded10);
3605
+ } = _ref7,
3606
+ query = _objectWithoutPropertiesLoose(_ref7, _excluded7);
4215
3607
 
4216
3608
  return this.http.get("/layers/" + name + "/extent", query).json();
4217
3609
  }
@@ -4229,11 +3621,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
4229
3621
 
4230
3622
  }, {
4231
3623
  key: "deleteFeatures",
4232
- value: function deleteFeatures(_ref11) {
3624
+ value: function deleteFeatures(_ref8) {
4233
3625
  let {
4234
3626
  name
4235
- } = _ref11,
4236
- query = _objectWithoutPropertiesLoose(_ref11, _excluded11);
3627
+ } = _ref8,
3628
+ query = _objectWithoutPropertiesLoose(_ref8, _excluded8);
4237
3629
 
4238
3630
  return this.http.delete("/layers/" + name + "/features/deleteByIds", null, query).json();
4239
3631
  }
@@ -4251,11 +3643,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
4251
3643
 
4252
3644
  }, {
4253
3645
  key: "deleteByCondition",
4254
- value: function deleteByCondition(_ref12) {
3646
+ value: function deleteByCondition(_ref9) {
4255
3647
  let {
4256
3648
  name
4257
- } = _ref12,
4258
- query = _objectWithoutPropertiesLoose(_ref12, _excluded12);
3649
+ } = _ref9,
3650
+ query = _objectWithoutPropertiesLoose(_ref9, _excluded9);
4259
3651
 
4260
3652
  return this.http.delete("/layers/" + name + "/features/deleteByCondition", null, query).json();
4261
3653
  }
@@ -4273,11 +3665,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
4273
3665
 
4274
3666
  }, {
4275
3667
  key: "classify",
4276
- value: function classify(_ref13) {
3668
+ value: function classify(_ref10) {
4277
3669
  let {
4278
3670
  name
4279
- } = _ref13,
4280
- query = _objectWithoutPropertiesLoose(_ref13, _excluded13);
3671
+ } = _ref10,
3672
+ query = _objectWithoutPropertiesLoose(_ref10, _excluded10);
4281
3673
 
4282
3674
  return this.http.get("/layers/" + name + "/classify", query).json();
4283
3675
  }
@@ -4295,11 +3687,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
4295
3687
 
4296
3688
  }, {
4297
3689
  key: "distincts",
4298
- value: function distincts(_ref14) {
3690
+ value: function distincts(_ref11) {
4299
3691
  let {
4300
3692
  name
4301
- } = _ref14,
4302
- query = _objectWithoutPropertiesLoose(_ref14, _excluded14);
3693
+ } = _ref11,
3694
+ query = _objectWithoutPropertiesLoose(_ref11, _excluded11);
4303
3695
 
4304
3696
  return this.http.get("/layers/" + name + "/distincts", query).json();
4305
3697
  }
@@ -4317,11 +3709,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
4317
3709
 
4318
3710
  }, {
4319
3711
  key: "aggregateAttribute",
4320
- value: function aggregateAttribute(_ref15) {
3712
+ value: function aggregateAttribute(_ref12) {
4321
3713
  let {
4322
3714
  name
4323
- } = _ref15,
4324
- query = _objectWithoutPropertiesLoose(_ref15, _excluded15);
3715
+ } = _ref12,
3716
+ query = _objectWithoutPropertiesLoose(_ref12, _excluded12);
4325
3717
 
4326
3718
  return this.http.get("/layers/" + name + "/aggregate-values", query).json();
4327
3719
  }
@@ -4339,11 +3731,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
4339
3731
 
4340
3732
  }, {
4341
3733
  key: "getFilteredFeaturesCount1",
4342
- value: function getFilteredFeaturesCount1(_ref16) {
3734
+ value: function getFilteredFeaturesCount1(_ref13) {
4343
3735
  let {
4344
3736
  name
4345
- } = _ref16,
4346
- query = _objectWithoutPropertiesLoose(_ref16, _excluded16);
3737
+ } = _ref13,
3738
+ query = _objectWithoutPropertiesLoose(_ref13, _excluded13);
4347
3739
 
4348
3740
  return this.http.get("/layers/" + name + "/features/count", query).json();
4349
3741
  }
@@ -4362,171 +3754,86 @@ let LayersService = /*#__PURE__*/function (_Service) {
4362
3754
  }, {
4363
3755
  key: "getFilteredFeaturesCount2",
4364
3756
  value: function getFilteredFeaturesCount2(name, data) {
4365
- return this.http.post("/layers/" + name + "/features/count", data).json();
4366
- }
4367
- /**
4368
- * No description
4369
- *
4370
- * @tags Layers
4371
- * @name EditAttributes
4372
- * @operationId LayersController_EditAttributes
4373
- * @summary Edit attributes with editInfo.
4374
- * @request POST:/layers/{name}/features/edit-attributes
4375
- * @secure
4376
- * @response `200` OK
4377
- */
4378
-
4379
- }, {
4380
- key: "editAttributes",
4381
- value: function editAttributes(name, data) {
4382
- return this.http.post("/layers/" + name + "/features/edit-attributes", data).json();
4383
- }
4384
- /**
4385
- * No description
4386
- *
4387
- * @tags Layers
4388
- * @name ValidateExpression
4389
- * @operationId LayersController_ValidateExpression
4390
- * @summary Validates the given EQL expression against the requested layer. If the expression is valid, it can be executed on the features in the layer to produce a value of some type. The type of the resulting value will be also returned in the validation result.
4391
- * @request GET:/layers/{layerName}/validateExpression
4392
- * @secure
4393
- * @response `200` OK
4394
- */
4395
-
4396
- }, {
4397
- key: "validateExpression",
4398
- value: function validateExpression(_ref17) {
4399
- let {
4400
- layerName
4401
- } = _ref17,
4402
- query = _objectWithoutPropertiesLoose(_ref17, _excluded17);
4403
-
4404
- return this.http.get("/layers/" + layerName + "/validateExpression", query).json();
4405
- }
4406
- /**
4407
- * No description
4408
- *
4409
- * @tags Layers
4410
- * @name FlipCoordinates
4411
- * @operationId LayersController_FlipCoordinates
4412
- * @summary Flip geometry coordinates.
4413
- * @request POST:/layers/{layerName}/flip-coordinates
4414
- * @secure
4415
- * @response `200` OK
4416
- */
4417
-
4418
- }, {
4419
- key: "flipCoordinates",
4420
- value: function flipCoordinates(layerName) {
4421
- return this.http.post("/layers/" + layerName + "/flip-coordinates", null).json();
4422
- }
4423
- /**
4424
- * No description
4425
- *
4426
- * @tags Layers
4427
- * @name GetRasterMeta
4428
- * @operationId LayersController_GetRasterMeta
4429
- * @summary Get raster metadata.
4430
- * @request GET:/layers/{name}/{id}/metadata
4431
- * @secure
4432
- * @response `200` OK
4433
- */
4434
-
4435
- }, {
4436
- key: "getRasterMeta",
4437
- value: function getRasterMeta(_ref18) {
4438
- let {
4439
- name,
4440
- id
4441
- } = _ref18,
4442
- query = _objectWithoutPropertiesLoose(_ref18, _excluded18);
4443
-
4444
- return this.http.get("/layers/" + name + "/" + id + "/metadata", query).json();
4445
- }
4446
- /**
4447
- * No description
4448
- *
4449
- * @tags Layers
4450
- * @name CreateRoute
4451
- * @operationId LayersController_CreateRoute
4452
- * @summary Create new route (feature) from source features.
4453
- * @request POST:/layers/{name}/createRoute
4454
- * @secure
4455
- * @response `200` OK
4456
- */
4457
-
4458
- }, {
4459
- key: "createRoute",
4460
- value: function createRoute(name, data) {
4461
- return this.http.post("/layers/" + name + "/createRoute", data).json();
3757
+ return this.http.post("/layers/" + name + "/features/count", data).json();
4462
3758
  }
4463
3759
  /**
4464
3760
  * No description
4465
3761
  *
4466
3762
  * @tags Layers
4467
- * @name ApplyStyle
4468
- * @operationId LayersController_ApplyStyle
4469
- * @summary Create data layout and image layout for given style.
4470
- * @request PUT:/layers/{name}/style
3763
+ * @name EditAttributes
3764
+ * @operationId LayersController_EditAttributes
3765
+ * @summary Edit attributes with editInfo.
3766
+ * @request POST:/layers/{name}/features/edit-attributes
4471
3767
  * @secure
4472
3768
  * @response `200` OK
4473
3769
  */
4474
3770
 
4475
3771
  }, {
4476
- key: "applyStyle",
4477
- value: function applyStyle(name, data) {
4478
- return this.http.put("/layers/" + name + "/style", data).then(() => {});
3772
+ key: "editAttributes",
3773
+ value: function editAttributes(name, data) {
3774
+ return this.http.post("/layers/" + name + "/features/edit-attributes", data).json();
4479
3775
  }
4480
3776
  /**
4481
3777
  * No description
4482
3778
  *
4483
3779
  * @tags Layers
4484
- * @name GetStyle
4485
- * @operationId LayersController_GetStyle
4486
- * @summary Get style of the given layer.
4487
- * @request GET:/layers/{name}/style
3780
+ * @name ValidateExpression
3781
+ * @operationId LayersController_ValidateExpression
3782
+ * @summary Validates the given EQL expression against the requested layer. If the expression is valid, it can be executed on the features in the layer to produce a value of some type. The type of the resulting value will be also returned in the validation result.
3783
+ * @request GET:/layers/{layerName}/validateExpression
4488
3784
  * @secure
4489
3785
  * @response `200` OK
4490
3786
  */
4491
3787
 
4492
3788
  }, {
4493
- key: "getStyle",
4494
- value: function getStyle(name) {
4495
- return this.http.get("/layers/" + name + "/style").json();
3789
+ key: "validateExpression",
3790
+ value: function validateExpression(_ref14) {
3791
+ let {
3792
+ layerName
3793
+ } = _ref14,
3794
+ query = _objectWithoutPropertiesLoose(_ref14, _excluded14);
3795
+
3796
+ return this.http.get("/layers/" + layerName + "/validateExpression", query).json();
4496
3797
  }
4497
3798
  /**
4498
3799
  * No description
4499
3800
  *
4500
3801
  * @tags Layers
4501
- * @name GetImageLayout
4502
- * @operationId LayersController_GetImageLayout
4503
- * @summary Get date layout.
4504
- * @request GET:/layers/{name}/style/sprite.png
3802
+ * @name FlipCoordinates
3803
+ * @operationId LayersController_FlipCoordinates
3804
+ * @summary Flip geometry coordinates.
3805
+ * @request POST:/layers/{layerName}/flip-coordinates
4505
3806
  * @secure
4506
3807
  * @response `200` OK
4507
3808
  */
4508
3809
 
4509
3810
  }, {
4510
- key: "getImageLayout",
4511
- value: function getImageLayout(name) {
4512
- return this.http.get("/layers/" + name + "/style/sprite.png").blob();
3811
+ key: "flipCoordinates",
3812
+ value: function flipCoordinates(layerName) {
3813
+ return this.http.post("/layers/" + layerName + "/flip-coordinates", null).json();
4513
3814
  }
4514
3815
  /**
4515
3816
  * No description
4516
3817
  *
4517
3818
  * @tags Layers
4518
- * @name GetDataLayout
4519
- * @operationId LayersController_GetDataLayout
4520
- * @summary Get image layout.
4521
- * @request GET:/layers/{name}/style/sprite.json
3819
+ * @name GetRasterMeta
3820
+ * @operationId LayersController_GetRasterMeta
3821
+ * @summary Get raster metadata.
3822
+ * @request GET:/layers/{name}/{id}/metadata
4522
3823
  * @secure
4523
3824
  * @response `200` OK
4524
3825
  */
4525
3826
 
4526
3827
  }, {
4527
- key: "getDataLayout",
4528
- value: function getDataLayout(name) {
4529
- return this.http.get("/layers/" + name + "/style/sprite.json").then(() => {});
3828
+ key: "getRasterMeta",
3829
+ value: function getRasterMeta(_ref15) {
3830
+ let {
3831
+ name,
3832
+ id
3833
+ } = _ref15,
3834
+ query = _objectWithoutPropertiesLoose(_ref15, _excluded15);
3835
+
3836
+ return this.http.get("/layers/" + name + "/" + id + "/metadata", query).json();
4530
3837
  }
4531
3838
  /**
4532
3839
  * No description
@@ -5174,145 +4481,7 @@ let PortalSettings = /*#__PURE__*/function (_ClientSettingsServic) {
5174
4481
  return PortalSettings;
5175
4482
  }(ClientSettingsService);
5176
4483
 
5177
- /**
5178
- * @title Spatial Processing Core API
5179
- * @version 1.5.1.0
5180
- * @baseUrl /sp
5181
- */
5182
-
5183
- let PrintService = /*#__PURE__*/function (_Service) {
5184
- _inherits(PrintService, _Service);
5185
-
5186
- var _super = /*#__PURE__*/_createSuper(PrintService);
5187
-
5188
- function PrintService() {
5189
- _classCallCheck(this, PrintService);
5190
-
5191
- return _super.apply(this, arguments);
5192
- }
5193
-
5194
- _createClass(PrintService, [{
5195
- key: "print",
5196
- value:
5197
- /**
5198
- * No description
5199
- *
5200
- * @tags Print
5201
- * @name Print
5202
- * @operationId PrintController_Print
5203
- * @summary Print map with template.
5204
- * @request POST:/print/print
5205
- * @secure
5206
- * @response `200` OK
5207
- */
5208
- function print(data) {
5209
- return this.http.post("/print/print", data).then(() => {});
5210
- }
5211
- /**
5212
- * No description
5213
- *
5214
- * @tags Print
5215
- * @name PrintToHtml
5216
- * @operationId PrintController_PrintToHtml
5217
- * @summary Print map with template to html string.
5218
- * @request POST:/print/printHtml
5219
- * @secure
5220
- * @response `200` OK
5221
- */
5222
-
5223
- }, {
5224
- key: "printToHtml",
5225
- value: function printToHtml(data) {
5226
- return this.http.post("/print/printHtml", data).text();
5227
- }
5228
- /**
5229
- * No description
5230
- *
5231
- * @tags Print
5232
- * @name UploadTemplate
5233
- * @operationId PrintController_UploadTemplate
5234
- * @summary Upload template on server.
5235
- * @request POST:/print/templates
5236
- * @secure
5237
- * @response `200` OK
5238
- */
5239
-
5240
- }, {
5241
- key: "uploadTemplate",
5242
- value: function uploadTemplate(query, data) {
5243
- return this.http.post("/print/templates", toFormData(data), query).then(() => {});
5244
- }
5245
- /**
5246
- * No description
5247
- *
5248
- * @tags Print
5249
- * @name GetTemplates
5250
- * @operationId PrintController_GetTemplates
5251
- * @summary Get all templates from server.
5252
- * @request GET:/print/templates
5253
- * @secure
5254
- * @response `200` OK
5255
- */
5256
-
5257
- }, {
5258
- key: "getTemplates",
5259
- value: function getTemplates() {
5260
- return this.http.get("/print/templates").json();
5261
- }
5262
- /**
5263
- * No description
5264
- *
5265
- * @tags Print
5266
- * @name DeleteTemplate
5267
- * @operationId PrintController_DeleteTemplate
5268
- * @summary Delete template from server.
5269
- * @request DELETE:/print/templates/{name}
5270
- * @secure
5271
- * @response `200` OK
5272
- */
5273
-
5274
- }, {
5275
- key: "deleteTemplate",
5276
- value: function deleteTemplate(name) {
5277
- return this.http.delete("/print/templates/" + name, null).then(() => {});
5278
- }
5279
- /**
5280
- * No description
5281
- *
5282
- * @tags Print
5283
- * @name GetTemplate
5284
- * @operationId PrintController_GetTemplate
5285
- * @summary Get template from server.
5286
- * @request GET:/print/templates/{name}
5287
- * @secure
5288
- * @response `200` OK
5289
- */
5290
-
5291
- }, {
5292
- key: "getTemplate",
5293
- value: function getTemplate(name) {
5294
- return this.http.get("/print/templates/" + name).text();
5295
- }
5296
- }]);
5297
-
5298
- return PrintService;
5299
- }(Service);
5300
-
5301
- let Print = /*#__PURE__*/function (_PrintService) {
5302
- _inherits(Print, _PrintService);
5303
-
5304
- var _super = /*#__PURE__*/_createSuper(Print);
5305
-
5306
- function Print() {
5307
- _classCallCheck(this, Print);
5308
-
5309
- return _super.apply(this, arguments);
5310
- }
5311
-
5312
- return _createClass(Print);
5313
- }(PrintService);
5314
-
5315
- const _excluded$4 = ["name"];
4484
+ const _excluded$3 = ["name"];
5316
4485
  /**
5317
4486
  * @title Spatial Processing Core API
5318
4487
  * @version 1.5.1.0
@@ -5484,7 +4653,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
5484
4653
  let {
5485
4654
  name
5486
4655
  } = _ref,
5487
- query = _objectWithoutPropertiesLoose(_ref, _excluded$4);
4656
+ query = _objectWithoutPropertiesLoose(_ref, _excluded$3);
5488
4657
 
5489
4658
  return this.http.get("/projects/" + name + "/extent", query).json();
5490
4659
  }
@@ -5667,8 +4836,8 @@ function isProjectContentItems(v) {
5667
4836
  return v !== null && v !== undefined;
5668
4837
  }
5669
4838
 
5670
- const _excluded$5 = ["id"],
5671
- _excluded2$3 = ["id"];
4839
+ const _excluded$4 = ["id"],
4840
+ _excluded2$2 = ["id"];
5672
4841
  /**
5673
4842
  * @title Spatial Processing Core API
5674
4843
  * @version 1.5.1.0
@@ -5823,7 +4992,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
5823
4992
  let {
5824
4993
  id
5825
4994
  } = _ref,
5826
- query = _objectWithoutPropertiesLoose(_ref, _excluded$5);
4995
+ query = _objectWithoutPropertiesLoose(_ref, _excluded$4);
5827
4996
 
5828
4997
  return this.http.get("/scheduler/" + id + "/tasks", query).json();
5829
4998
  }
@@ -5879,7 +5048,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
5879
5048
  let {
5880
5049
  id
5881
5050
  } = _ref2,
5882
- query = _objectWithoutPropertiesLoose(_ref2, _excluded2$3);
5051
+ query = _objectWithoutPropertiesLoose(_ref2, _excluded2$2);
5883
5052
 
5884
5053
  return this.http.get("/scheduler/taskresource/" + id, query).json();
5885
5054
  }
@@ -6410,28 +5579,11 @@ let StatisticService = /*#__PURE__*/function (_Service) {
6410
5579
  * @name StatisticsDb
6411
5580
  * @operationId StatisticController_StatisticsDb
6412
5581
  * @summary Calculates statistics for layer attribute.
6413
- * @request GET:/statistics
6414
- * @secure
6415
- * @response `200` OK
6416
- */
6417
- function statisticsDb(query) {
6418
- return this.http.get("/statistics", query).json();
6419
- }
6420
- /**
6421
- * No description
6422
- *
6423
- * @tags Statistic
6424
- * @name StatisticsDb1
6425
- * @operationId StatisticController_StatisticsDb_1
6426
- * @summary Calculates statistics for layer attribute.
6427
5582
  * @request POST:/statistics
6428
5583
  * @secure
6429
5584
  * @response `200` OK
6430
5585
  */
6431
-
6432
- }, {
6433
- key: "statisticsDb1",
6434
- value: function statisticsDb1(data) {
5586
+ function statisticsDb(data) {
6435
5587
  return this.http.post("/statistics", data).json();
6436
5588
  }
6437
5589
  /**
@@ -6441,31 +5593,14 @@ let StatisticService = /*#__PURE__*/function (_Service) {
6441
5593
  * @name Classify
6442
5594
  * @operationId StatisticController_Classify
6443
5595
  * @summary Returns the classified attribute values that correspond to the given number of classes and given condition.
6444
- * @request GET:/statistics/classify
6445
- * @secure
6446
- * @response `200` OK
6447
- */
6448
-
6449
- }, {
6450
- key: "classify",
6451
- value: function classify(query) {
6452
- return this.http.get("/statistics/classify", query).json();
6453
- }
6454
- /**
6455
- * No description
6456
- *
6457
- * @tags Statistic
6458
- * @name Classify1
6459
- * @operationId StatisticController_Classify_1
6460
- * @summary Returns the classified attribute values that correspond to the given number of classes and given condition.
6461
5596
  * @request POST:/statistics/classify
6462
5597
  * @secure
6463
5598
  * @response `200` OK
6464
5599
  */
6465
5600
 
6466
5601
  }, {
6467
- key: "classify1",
6468
- value: function classify1(data) {
5602
+ key: "classify",
5603
+ value: function classify(data) {
6469
5604
  return this.http.post("/statistics/classify", data).json();
6470
5605
  }
6471
5606
  /**
@@ -6475,31 +5610,14 @@ let StatisticService = /*#__PURE__*/function (_Service) {
6475
5610
  * @name SumOfProduct
6476
5611
  * @operationId StatisticController_SumOfProduct
6477
5612
  * @summary Sum of product.
6478
- * @request GET:/statistics/sumOfProduct
6479
- * @secure
6480
- * @response `200` OK
6481
- */
6482
-
6483
- }, {
6484
- key: "sumOfProduct",
6485
- value: function sumOfProduct(query) {
6486
- return this.http.get("/statistics/sumOfProduct", query).json();
6487
- }
6488
- /**
6489
- * No description
6490
- *
6491
- * @tags Statistic
6492
- * @name SumOfProduct1
6493
- * @operationId StatisticController_SumOfProduct_1
6494
- * @summary Sum of product.
6495
5613
  * @request POST:/statistics/sumOfProduct
6496
5614
  * @secure
6497
5615
  * @response `200` OK
6498
5616
  */
6499
5617
 
6500
5618
  }, {
6501
- key: "sumOfProduct1",
6502
- value: function sumOfProduct1(data) {
5619
+ key: "sumOfProduct",
5620
+ value: function sumOfProduct(data) {
6503
5621
  return this.http.post("/statistics/sumOfProduct", data).json();
6504
5622
  }
6505
5623
  }]);
@@ -6523,167 +5641,19 @@ let Statistic = /*#__PURE__*/function (_StatisticService) {
6523
5641
  value: function getStatistic(params) {
6524
5642
  return this.statisticsDb(params);
6525
5643
  }
6526
- }, {
6527
- key: "postStatistic",
6528
- value: function postStatistic(params) {
6529
- return this.statisticsDb1(params);
6530
- }
6531
5644
  }, {
6532
5645
  key: "getClassify",
6533
5646
  value: function getClassify(params) {
6534
5647
  return this.classify(params);
6535
5648
  }
6536
- }, {
6537
- key: "postClassify",
6538
- value: function postClassify(params) {
6539
- return this.classify1(params);
6540
- }
6541
5649
  }]);
6542
5650
 
6543
5651
  return Statistic;
6544
5652
  }(StatisticService);
6545
5653
 
6546
- /**
6547
- * @title Spatial Processing Core API
6548
- * @version 1.5.1.0
6549
- * @baseUrl /sp
6550
- */
6551
-
6552
- let StyleService = /*#__PURE__*/function (_Service) {
6553
- _inherits(StyleService, _Service);
6554
-
6555
- var _super = /*#__PURE__*/_createSuper(StyleService);
6556
-
6557
- function StyleService() {
6558
- _classCallCheck(this, StyleService);
6559
-
6560
- return _super.apply(this, arguments);
6561
- }
6562
-
6563
- _createClass(StyleService, [{
6564
- key: "getStyle",
6565
- value:
6566
- /**
6567
- * No description
6568
- *
6569
- * @tags StyleService
6570
- * @name GetStyle
6571
- * @operationId StyleServiceController_GetStyle
6572
- * @summary Returns the style by its id.
6573
- * @request GET:/styles/{id}
6574
- * @secure
6575
- * @response `200` OK
6576
- */
6577
- function getStyle(id) {
6578
- return this.http.get("/styles/" + id).json();
6579
- }
6580
- /**
6581
- * No description
6582
- *
6583
- * @tags StyleService
6584
- * @name UpdateStyle
6585
- * @operationId StyleServiceController_UpdateStyle
6586
- * @summary Replaces a style and gives it a new id.
6587
- * @request POST:/styles/{id}
6588
- * @secure
6589
- * @response `200` OK
6590
- */
6591
-
6592
- }, {
6593
- key: "updateStyle",
6594
- value: function updateStyle(id, data) {
6595
- return this.http.post("/styles/" + id, data).json();
6596
- }
6597
- /**
6598
- * No description
6599
- *
6600
- * @tags StyleService
6601
- * @name CreateStyle
6602
- * @operationId StyleServiceController_CreateStyle
6603
- * @summary Creates a new style.
6604
- * @request POST:/styles
6605
- * @secure
6606
- * @response `200` OK
6607
- */
6608
-
6609
- }, {
6610
- key: "createStyle",
6611
- value: function createStyle(data) {
6612
- return this.http.post("/styles", data).json();
6613
- }
6614
- /**
6615
- * No description
6616
- *
6617
- * @tags StyleService
6618
- * @name GetAllFonts
6619
- * @operationId StyleServiceController_GetAllFonts
6620
- * @summary Gets all installed fonts.
6621
- * @request GET:/styles/fonts
6622
- * @secure
6623
- * @response `200` OK
6624
- */
6625
-
6626
- }, {
6627
- key: "getAllFonts",
6628
- value: function getAllFonts() {
6629
- return this.http.get("/styles/fonts").json();
6630
- }
6631
- /**
6632
- * No description
6633
- *
6634
- * @tags StyleService
6635
- * @name AddFont
6636
- * @operationId StyleServiceController_AddFont
6637
- * @summary Install new font.
6638
- * @request POST:/styles/fonts
6639
- * @secure
6640
- * @response `200` OK
6641
- */
6642
-
6643
- }, {
6644
- key: "addFont",
6645
- value: function addFont(data) {
6646
- return this.http.post("/styles/fonts", toFormData(data)).then(() => {});
6647
- }
6648
- /**
6649
- * No description
6650
- *
6651
- * @tags StyleService
6652
- * @name RemoveFont
6653
- * @operationId StyleServiceController_RemoveFont
6654
- * @summary Remove installed font.
6655
- * @request DELETE:/styles/fonts
6656
- * @secure
6657
- * @response `200` OK
6658
- */
6659
-
6660
- }, {
6661
- key: "removeFont",
6662
- value: function removeFont(query) {
6663
- return this.http.delete("/styles/fonts", null, query).then(() => {});
6664
- }
6665
- }]);
6666
-
6667
- return StyleService;
6668
- }(Service);
6669
-
6670
- let Styles = /*#__PURE__*/function (_StyleService) {
6671
- _inherits(Styles, _StyleService);
6672
-
6673
- var _super = /*#__PURE__*/_createSuper(Styles);
6674
-
6675
- function Styles() {
6676
- _classCallCheck(this, Styles);
6677
-
6678
- return _super.apply(this, arguments);
6679
- }
6680
-
6681
- return _createClass(Styles);
6682
- }(StyleService);
6683
-
6684
- const _excluded$6 = ["name"],
6685
- _excluded2$4 = ["name"],
6686
- _excluded3$3 = ["name"];
5654
+ const _excluded$5 = ["name"],
5655
+ _excluded2$3 = ["name"],
5656
+ _excluded3$2 = ["name"];
6687
5657
  /**
6688
5658
  * @title Spatial Processing Core API
6689
5659
  * @version 1.5.1.0
@@ -6855,7 +5825,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
6855
5825
  let {
6856
5826
  name
6857
5827
  } = _ref,
6858
- query = _objectWithoutPropertiesLoose(_ref, _excluded$6);
5828
+ query = _objectWithoutPropertiesLoose(_ref, _excluded$5);
6859
5829
 
6860
5830
  return this.http.get("/tables/" + name + "/data", query).json();
6861
5831
  }
@@ -6894,7 +5864,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
6894
5864
  let {
6895
5865
  name
6896
5866
  } = _ref2,
6897
- query = _objectWithoutPropertiesLoose(_ref2, _excluded2$4);
5867
+ query = _objectWithoutPropertiesLoose(_ref2, _excluded2$3);
6898
5868
 
6899
5869
  return this.http.patch("/tables/" + name + "/data", data, query).then(() => {});
6900
5870
  }
@@ -6916,7 +5886,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
6916
5886
  let {
6917
5887
  name
6918
5888
  } = _ref3,
6919
- query = _objectWithoutPropertiesLoose(_ref3, _excluded3$3);
5889
+ query = _objectWithoutPropertiesLoose(_ref3, _excluded3$2);
6920
5890
 
6921
5891
  return this.http.delete("/tables/" + name + "/data", null, query).then(() => {});
6922
5892
  }
@@ -7125,7 +6095,7 @@ let Tools = /*#__PURE__*/function (_ToolsService) {
7125
6095
  return _createClass(Tools);
7126
6096
  }(ToolsService);
7127
6097
 
7128
- const _excluded$7 = ["name", "z", "x", "y"];
6098
+ const _excluded$6 = ["name", "z", "x", "y"];
7129
6099
  /**
7130
6100
  * @title Spatial Processing Core API
7131
6101
  * @version 1.5.1.0
@@ -7164,7 +6134,7 @@ let VectorTileService = /*#__PURE__*/function (_Service) {
7164
6134
  x,
7165
6135
  y
7166
6136
  } = _ref,
7167
- query = _objectWithoutPropertiesLoose(_ref, _excluded$7);
6137
+ query = _objectWithoutPropertiesLoose(_ref, _excluded$6);
7168
6138
 
7169
6139
  return this.http.get("/vt/" + name + "/" + z + "/" + x + "/" + y + ".pbf", query).then(() => {});
7170
6140
  }
@@ -7307,7 +6277,6 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
7307
6277
  _this.tables = new Tables(_this.http);
7308
6278
  _this.projects = new Projects(_this.http);
7309
6279
  _this.resources = new Resources(_this.projects, _this.layers, _this.tables);
7310
- _this.styles = new Styles(_this.http);
7311
6280
  _this.account = new Account(_this.http);
7312
6281
  _this.accountPreview = new AccountPreview(_this.http);
7313
6282
  _this.bulk = new BulkOperations(_this.http);
@@ -7317,13 +6286,9 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
7317
6286
  _this.filters = new Filters(_this.http);
7318
6287
  _this.import = new Import(_this.http);
7319
6288
  _this.geocode = new Geocode(_this.http);
7320
- _this.cameras = new Cameras(_this.http);
7321
- _this.print = new Print(_this.http);
7322
6289
  _this.tools = new Tools(_this.http);
7323
- _this.external = new External(_this.http);
7324
6290
  _this.clientSettings = new ClientSettings(_this.http);
7325
6291
  _this.portalSettings = new PortalSettings(_this.http);
7326
- _this.iceRouter = new IceRouter(_this.http);
7327
6292
  _this.statistic = new Statistic(_this.http);
7328
6293
  _this.feedback = new Feedback(_this.http);
7329
6294
  _this.vectorTiles = new VectorTiles(_this.http);
@@ -7679,11 +6644,9 @@ equalInterval
7679
6644
 
7680
6645
  quantile
7681
6646
 
7682
- distinct
6647
+ unique
7683
6648
 
7684
6649
  step
7685
-
7686
- unique
7687
6650
  */
7688
6651
 
7689
6652
 
@@ -7694,9 +6657,8 @@ var ClassificationType;
7694
6657
  ClassificationType["NaturalBreaks"] = "naturalBreaks";
7695
6658
  ClassificationType["EqualInterval"] = "equalInterval";
7696
6659
  ClassificationType["Quantile"] = "quantile";
7697
- ClassificationType["Distinct"] = "distinct";
7698
- ClassificationType["Step"] = "step";
7699
6660
  ClassificationType["Unique"] = "unique";
6661
+ ClassificationType["Step"] = "step";
7700
6662
  })(ClassificationType || (ClassificationType = {}));
7701
6663
  /**
7702
6664
  *
@@ -8169,24 +7131,6 @@ var PolicyType;
8169
7131
  PolicyType["MaxEqlQueryParametersValues"] = "MaxEqlQueryParametersValues";
8170
7132
  })(PolicyType || (PolicyType = {}));
8171
7133
  /**
8172
- * Stream quality.
8173
-
8174
- Low
8175
-
8176
- Medium
8177
-
8178
- High
8179
- */
8180
-
8181
-
8182
- var Quality;
8183
-
8184
- (function (Quality) {
8185
- Quality["Low"] = "Low";
8186
- Quality["Medium"] = "Medium";
8187
- Quality["High"] = "High";
8188
- })(Quality || (Quality = {}));
8189
- /**
8190
7134
  *
8191
7135
 
8192
7136
  Init
@@ -8525,5 +7469,5 @@ var WorkerSettingsFieldType;
8525
7469
  WorkerSettingsFieldType["AttributeArray"] = "AttributeArray";
8526
7470
  })(WorkerSettingsFieldType || (WorkerSettingsFieldType = {}));
8527
7471
 
8528
- export { Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeIconType, AttributeSelectorType, AttributeType, AuthorizationGrant, BulkOperations, Cameras, CatalogResourceType, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConnectionStatus, DataSourceType, DependencyType, Eql, ErrorDetailsType, ErrorReason, ErrorType, External, Feedback, FileUpload, Filters, FontStyle, FontWeight, GEOCODE_PROVIDER, Geocode, GeometryType, Group, HttpClient, IceRouter, Import, Layers, LineCapStyle, LineEndingType, LineJoinType, Names, Notification, NotificationEvent, OwnerFilter, PbfSchema, Permissions, PolicyType, PortalSettings, Print, Projects, Quality, RemoteTaskManager, RemoteTaskStatus, ResourceSeparator, ResourceSubTypeFilter, ResourceType, ResourceTypeFilter, ResourceTypeLink, Resources, ResponseType, STORAGE_REFRESH_TOKEN_KEY, STORAGE_TOKEN_KEY, Security, SimplifyType, Statistic, StringSubType, Styles, Tables, TaskResourceSubType, TextAlignment, TextVerticalAlignment, Tools, UrlPath, VectorTiles, WorkerMethodType, WorkerSettingsFieldType, addSubDomainToLocation, errorHandler, formDataFromFile, generateId, getFetchingUrlPath, isHTTPError, isHandledError, isProjectContentItems, isString, isTileLayerService, parseJwt, promiseAllIgnoreErrors, stripUselessSlashes, toFormData, unique };
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 };
8529
7473
  //# sourceMappingURL=api.esm.js.map