@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.
@@ -1458,6 +1458,23 @@ let AccountService = /*#__PURE__*/function (_Service) {
1458
1458
  value: function removeUser(username) {
1459
1459
  return this.http.delete("/account/user/" + username, null).then(() => {});
1460
1460
  }
1461
+ /**
1462
+ * No description
1463
+ *
1464
+ * @tags Account
1465
+ * @name CreateNamespace
1466
+ * @operationId AccountController_CreateNamespace
1467
+ * @summary Creates a new namespace.
1468
+ * @request POST:/account/namespace
1469
+ * @secure
1470
+ * @response `200` OK
1471
+ */
1472
+
1473
+ }, {
1474
+ key: "createNamespace",
1475
+ value: function createNamespace(query) {
1476
+ return this.http.post("/account/namespace", null, query).json();
1477
+ }
1461
1478
  /**
1462
1479
  * No description
1463
1480
  *
@@ -2071,214 +2088,6 @@ let BulkOperations = /*#__PURE__*/function (_BulkOperationsServic) {
2071
2088
  return _createClass(BulkOperations);
2072
2089
  }(BulkOperationsService);
2073
2090
 
2074
- const _excluded$1 = ["cameraId"],
2075
- _excluded2 = ["cameraId"],
2076
- _excluded3 = ["cameraId"],
2077
- _excluded4 = ["cameraId"],
2078
- _excluded5 = ["cameraId"],
2079
- _excluded6 = ["cameraId"];
2080
- /**
2081
- * @title Spatial Processing Core API
2082
- * @version 1.5.1.0
2083
- * @baseUrl /sp
2084
- */
2085
-
2086
- let CamerasService = /*#__PURE__*/function (_Service) {
2087
- _inherits(CamerasService, _Service);
2088
-
2089
- var _super = /*#__PURE__*/_createSuper(CamerasService);
2090
-
2091
- function CamerasService() {
2092
- _classCallCheck(this, CamerasService);
2093
-
2094
- return _super.apply(this, arguments);
2095
- }
2096
-
2097
- _createClass(CamerasService, [{
2098
- key: "getCameras",
2099
- value:
2100
- /**
2101
- * No description
2102
- *
2103
- * @tags Cameras
2104
- * @name GetCameras
2105
- * @operationId CamerasController_GetCameras
2106
- * @summary Get cameras list.
2107
- * @request GET:/cameras
2108
- * @secure
2109
- * @response `200` OK
2110
- */
2111
- function getCameras(query) {
2112
- return this.http.get("/cameras", query).json();
2113
- }
2114
- /**
2115
- * No description
2116
- *
2117
- * @tags Cameras
2118
- * @name GetArchiveFeed
2119
- * @operationId CamerasController_GetArchiveFeed
2120
- * @summary Streams an FLV-over-HTTP archive feed starting at specific time.
2121
- * @request GET:/cameras/{cameraId}/archiveFeed
2122
- * @secure
2123
- * @response `200` OK
2124
- */
2125
-
2126
- }, {
2127
- key: "getArchiveFeed",
2128
- value: function getArchiveFeed(_ref) {
2129
- let {
2130
- cameraId
2131
- } = _ref,
2132
- query = _objectWithoutPropertiesLoose(_ref, _excluded$1);
2133
-
2134
- return this.http.get("/cameras/" + cameraId + "/archiveFeed", query).blob();
2135
- }
2136
- /**
2137
- * No description
2138
- *
2139
- * @tags Cameras
2140
- * @name GetArchiveTimeline
2141
- * @operationId CamerasController_GetArchiveTimeline
2142
- * @summary Returns a list of records available within a given timeframe.
2143
- * @request GET:/cameras/{cameraId}/archiveTimeline
2144
- * @secure
2145
- * @response `200` OK
2146
- */
2147
-
2148
- }, {
2149
- key: "getArchiveTimeline",
2150
- value: function getArchiveTimeline(_ref2) {
2151
- let {
2152
- cameraId
2153
- } = _ref2,
2154
- query = _objectWithoutPropertiesLoose(_ref2, _excluded2);
2155
-
2156
- return this.http.get("/cameras/" + cameraId + "/archiveTimeline", query).json();
2157
- }
2158
- /**
2159
- * No description
2160
- *
2161
- * @tags Cameras
2162
- * @name GetArchiveCalendar
2163
- * @operationId CamerasController_GetArchiveCalendar
2164
- * @summary Returns a list of records available within a given timeframe.
2165
- * @request GET:/cameras/{cameraId}/archiveCalendar
2166
- * @secure
2167
- * @response `200` OK
2168
- */
2169
-
2170
- }, {
2171
- key: "getArchiveCalendar",
2172
- value: function getArchiveCalendar(_ref3) {
2173
- let {
2174
- cameraId
2175
- } = _ref3,
2176
- query = _objectWithoutPropertiesLoose(_ref3, _excluded3);
2177
-
2178
- return this.http.get("/cameras/" + cameraId + "/archiveCalendar", query).json();
2179
- }
2180
- /**
2181
- * No description
2182
- *
2183
- * @tags Cameras
2184
- * @name GetArchiveSnapshot
2185
- * @operationId CamerasController_GetArchiveSnapshot
2186
- * @summary Returns a JPEG image from the Camera’s archive.
2187
- * @request GET:/cameras/{cameraId}/archiveSnapshot
2188
- * @secure
2189
- * @response `200` OK
2190
- */
2191
-
2192
- }, {
2193
- key: "getArchiveSnapshot",
2194
- value: function getArchiveSnapshot(_ref4) {
2195
- let {
2196
- cameraId
2197
- } = _ref4,
2198
- query = _objectWithoutPropertiesLoose(_ref4, _excluded4);
2199
-
2200
- return this.http.get("/cameras/" + cameraId + "/archiveSnapshot", query).blob();
2201
- }
2202
- /**
2203
- * No description
2204
- *
2205
- * @tags Cameras
2206
- * @name GetLiveFeed
2207
- * @operationId CamerasController_GetLiveFeed
2208
- * @summary Streams live video feed from the Camera.
2209
- * @request GET:/cameras/{cameraId}/liveFeed
2210
- * @secure
2211
- * @response `200` OK
2212
- */
2213
-
2214
- }, {
2215
- key: "getLiveFeed",
2216
- value: function getLiveFeed(_ref5) {
2217
- let {
2218
- cameraId
2219
- } = _ref5,
2220
- query = _objectWithoutPropertiesLoose(_ref5, _excluded5);
2221
-
2222
- return this.http.get("/cameras/" + cameraId + "/liveFeed", query).blob();
2223
- }
2224
- /**
2225
- * No description
2226
- *
2227
- * @tags Cameras
2228
- * @name GetLiveSnapshot
2229
- * @operationId CamerasController_GetLiveSnapshot
2230
- * @summary Returns a JPEG image from the Camera’s live feed.
2231
- * @request GET:/cameras/{cameraId}/liveSnapshot
2232
- * @secure
2233
- * @response `200` OK
2234
- */
2235
-
2236
- }, {
2237
- key: "getLiveSnapshot",
2238
- value: function getLiveSnapshot(cameraId) {
2239
- return this.http.get("/cameras/" + cameraId + "/liveSnapshot").blob();
2240
- }
2241
- /**
2242
- * No description
2243
- *
2244
- * @tags Cameras
2245
- * @name GetLivePreviewStream
2246
- * @operationId CamerasController_GetLivePreviewStream
2247
- * @summary Get live preview stream.
2248
- * @request GET:/cameras/{cameraId}/getLivePreviewsStream
2249
- * @secure
2250
- * @response `200` OK
2251
- */
2252
-
2253
- }, {
2254
- key: "getLivePreviewStream",
2255
- value: function getLivePreviewStream(_ref6) {
2256
- let {
2257
- cameraId
2258
- } = _ref6,
2259
- query = _objectWithoutPropertiesLoose(_ref6, _excluded6);
2260
-
2261
- return this.http.get("/cameras/" + cameraId + "/getLivePreviewsStream", query).json();
2262
- }
2263
- }]);
2264
-
2265
- return CamerasService;
2266
- }(Service);
2267
-
2268
- let Cameras = /*#__PURE__*/function (_CamerasService) {
2269
- _inherits(Cameras, _CamerasService);
2270
-
2271
- var _super = /*#__PURE__*/_createSuper(Cameras);
2272
-
2273
- function Cameras() {
2274
- _classCallCheck(this, Cameras);
2275
-
2276
- return _super.apply(this, arguments);
2277
- }
2278
-
2279
- return _createClass(Cameras);
2280
- }(CamerasService);
2281
-
2282
2091
  /**
2283
2092
  * @title Spatial Processing Core API
2284
2093
  * @version 1.5.1.0
@@ -2595,282 +2404,6 @@ let Eql = /*#__PURE__*/function (_EqlService) {
2595
2404
  return _createClass(Eql);
2596
2405
  }(EqlService);
2597
2406
 
2598
- /**
2599
- * @title Spatial Processing Core API
2600
- * @version 1.5.1.0
2601
- * @baseUrl /sp
2602
- */
2603
-
2604
- let ExternalProvidersService = /*#__PURE__*/function (_Service) {
2605
- _inherits(ExternalProvidersService, _Service);
2606
-
2607
- var _super = /*#__PURE__*/_createSuper(ExternalProvidersService);
2608
-
2609
- function ExternalProvidersService() {
2610
- _classCallCheck(this, ExternalProvidersService);
2611
-
2612
- return _super.apply(this, arguments);
2613
- }
2614
-
2615
- _createClass(ExternalProvidersService, [{
2616
- key: "vkLogin",
2617
- value:
2618
- /**
2619
- * No description
2620
- *
2621
- * @tags ExternalProviders
2622
- * @name VkLogin
2623
- * @operationId ExternalProvidersController_VkLogin
2624
- * @summary The external login by vk.
2625
- * @request GET:/account/external/login/vk
2626
- * @secure
2627
- * @response `200` OK
2628
- */
2629
- function vkLogin() {
2630
- return this.http.createUrl("/account/external/login/vk");
2631
- }
2632
- /**
2633
- * No description
2634
- *
2635
- * @tags ExternalProviders
2636
- * @name GoogleLogin
2637
- * @operationId ExternalProvidersController_GoogleLogin
2638
- * @summary The external login by google.
2639
- * @request GET:/account/external/login/google
2640
- * @secure
2641
- * @response `200` OK
2642
- */
2643
-
2644
- }, {
2645
- key: "googleLogin",
2646
- value: function googleLogin() {
2647
- return this.http.createUrl("/account/external/login/google");
2648
- }
2649
- /**
2650
- * No description
2651
- *
2652
- * @tags ExternalProviders
2653
- * @name FacebookLogin
2654
- * @operationId ExternalProvidersController_FacebookLogin
2655
- * @summary The external login by facebook.
2656
- * @request GET:/account/external/login/facebook
2657
- * @secure
2658
- * @response `200` OK
2659
- */
2660
-
2661
- }, {
2662
- key: "facebookLogin",
2663
- value: function facebookLogin() {
2664
- return this.http.createUrl("/account/external/login/facebook");
2665
- }
2666
- /**
2667
- * No description
2668
- *
2669
- * @tags ExternalProviders
2670
- * @name LoginCallback
2671
- * @operationId ExternalProvidersController_LoginCallback
2672
- * @summary The external login callback.
2673
- * @request GET:/account/external/login/callback
2674
- * @secure
2675
- * @response `200` OK
2676
- */
2677
-
2678
- }, {
2679
- key: "loginCallback",
2680
- value: function loginCallback() {
2681
- return this.http.get("/account/external/login/callback").then(() => {});
2682
- }
2683
- /**
2684
- * No description
2685
- *
2686
- * @tags ExternalProviders
2687
- * @name UnbindVk
2688
- * @operationId ExternalProvidersController_UnbindVk
2689
- * @summary Unbind external login from current user account (google).
2690
- * @request DELETE:/account/external/unbind/vk
2691
- * @secure
2692
- * @response `200` OK
2693
- */
2694
-
2695
- }, {
2696
- key: "unbindVk",
2697
- value: function unbindVk() {
2698
- return this.http.delete("/account/external/unbind/vk", null).then(() => {});
2699
- }
2700
- /**
2701
- * No description
2702
- *
2703
- * @tags ExternalProviders
2704
- * @name UnbindGoogle
2705
- * @operationId ExternalProvidersController_UnbindGoogle
2706
- * @summary Unbind external login from current user account (google).
2707
- * @request DELETE:/account/external/unbind/google
2708
- * @secure
2709
- * @response `200` OK
2710
- */
2711
-
2712
- }, {
2713
- key: "unbindGoogle",
2714
- value: function unbindGoogle() {
2715
- return this.http.delete("/account/external/unbind/google", null).then(() => {});
2716
- }
2717
- /**
2718
- * No description
2719
- *
2720
- * @tags ExternalProviders
2721
- * @name UnbindFacebook
2722
- * @operationId ExternalProvidersController_UnbindFacebook
2723
- * @summary Unbind external login from current user account (google).
2724
- * @request DELETE:/account/external/unbind/facebook
2725
- * @secure
2726
- * @response `200` OK
2727
- */
2728
-
2729
- }, {
2730
- key: "unbindFacebook",
2731
- value: function unbindFacebook() {
2732
- return this.http.delete("/account/external/unbind/facebook", null).then(() => {});
2733
- }
2734
- /**
2735
- * No description
2736
- *
2737
- * @tags ExternalProviders
2738
- * @name BindVk
2739
- * @operationId ExternalProvidersController_BindVk
2740
- * @summary The external login by vk.
2741
- * @request GET:/account/external/bind/vk
2742
- * @secure
2743
- * @response `200` OK
2744
- */
2745
-
2746
- }, {
2747
- key: "bindVk",
2748
- value: function bindVk() {
2749
- return this.http.createUrl("/account/external/bind/vk");
2750
- }
2751
- /**
2752
- * No description
2753
- *
2754
- * @tags ExternalProviders
2755
- * @name BindGoogle
2756
- * @operationId ExternalProvidersController_BindGoogle
2757
- * @summary The external login by vk.
2758
- * @request GET:/account/external/bind/google
2759
- * @secure
2760
- * @response `200` OK
2761
- */
2762
-
2763
- }, {
2764
- key: "bindGoogle",
2765
- value: function bindGoogle() {
2766
- return this.http.createUrl("/account/external/bind/google");
2767
- }
2768
- /**
2769
- * No description
2770
- *
2771
- * @tags ExternalProviders
2772
- * @name BindFacebook
2773
- * @operationId ExternalProvidersController_BindFacebook
2774
- * @summary The external login by vk.
2775
- * @request GET:/account/external/bind/facebook
2776
- * @secure
2777
- * @response `200` OK
2778
- */
2779
-
2780
- }, {
2781
- key: "bindFacebook",
2782
- value: function bindFacebook() {
2783
- return this.http.createUrl("/account/external/bind/facebook");
2784
- }
2785
- /**
2786
- * No description
2787
- *
2788
- * @tags ExternalProviders
2789
- * @name BindCallback
2790
- * @operationId ExternalProvidersController_BindCallback
2791
- * @summary Bind external login to current user account.
2792
- * @request GET:/account/external/bind/callback
2793
- * @secure
2794
- * @response `200` OK
2795
- */
2796
-
2797
- }, {
2798
- key: "bindCallback",
2799
- value: function bindCallback() {
2800
- return this.http.get("/account/external/bind/callback").then(() => {});
2801
- }
2802
- }]);
2803
-
2804
- return ExternalProvidersService;
2805
- }(Service);
2806
-
2807
- let External = /*#__PURE__*/function (_ExternalProvidersSer) {
2808
- _inherits(External, _ExternalProvidersSer);
2809
-
2810
- var _super = /*#__PURE__*/_createSuper(External);
2811
-
2812
- function External() {
2813
- _classCallCheck(this, External);
2814
-
2815
- return _super.apply(this, arguments);
2816
- }
2817
-
2818
- _createClass(External, [{
2819
- key: "login",
2820
- value: function login(network) {
2821
- switch (network) {
2822
- case 'vk':
2823
- return this.vkLogin();
2824
-
2825
- case 'google':
2826
- return this.googleLogin();
2827
-
2828
- case 'facebook':
2829
- return this.facebookLogin();
2830
-
2831
- default:
2832
- return '';
2833
- }
2834
- }
2835
- }, {
2836
- key: "bind",
2837
- value: function bind(network) {
2838
- switch (network) {
2839
- case 'vk':
2840
- return this.bindVk();
2841
-
2842
- case 'google':
2843
- return this.bindGoogle();
2844
-
2845
- case 'facebook':
2846
- return this.bindFacebook();
2847
-
2848
- default:
2849
- return '';
2850
- }
2851
- }
2852
- }, {
2853
- key: "unbind",
2854
- value: function unbind(network) {
2855
- switch (network) {
2856
- case 'vk':
2857
- return this.unbindVk();
2858
-
2859
- case 'google':
2860
- return this.unbindGoogle();
2861
-
2862
- case 'facebook':
2863
- return this.unbindFacebook();
2864
-
2865
- default:
2866
- return '';
2867
- }
2868
- }
2869
- }]);
2870
-
2871
- return External;
2872
- }(ExternalProvidersService);
2873
-
2874
2407
  /**
2875
2408
  * @title Spatial Processing Core API
2876
2409
  * @version 1.5.1.0
@@ -3081,9 +2614,9 @@ let Filters = /*#__PURE__*/function (_FiltersService) {
3081
2614
  return _createClass(Filters);
3082
2615
  }(FiltersService);
3083
2616
 
3084
- const _excluded$2 = ["providerName"],
3085
- _excluded2$1 = ["providerName"],
3086
- _excluded3$1 = ["providerName"];
2617
+ const _excluded$1 = ["providerName"],
2618
+ _excluded2 = ["providerName"],
2619
+ _excluded3 = ["providerName"];
3087
2620
  /**
3088
2621
  * @title Spatial Processing Core API
3089
2622
  * @version 1.5.1.0
@@ -3119,7 +2652,7 @@ let GeocodeService = /*#__PURE__*/function (_Service) {
3119
2652
  let {
3120
2653
  providerName
3121
2654
  } = _ref,
3122
- query = _objectWithoutPropertiesLoose(_ref, _excluded$2);
2655
+ query = _objectWithoutPropertiesLoose(_ref, _excluded$1);
3123
2656
 
3124
2657
  return this.http.get("/geocode/" + providerName, query).json();
3125
2658
  }
@@ -3141,7 +2674,7 @@ let GeocodeService = /*#__PURE__*/function (_Service) {
3141
2674
  let {
3142
2675
  providerName
3143
2676
  } = _ref2,
3144
- query = _objectWithoutPropertiesLoose(_ref2, _excluded2$1);
2677
+ query = _objectWithoutPropertiesLoose(_ref2, _excluded2);
3145
2678
 
3146
2679
  return this.http.get("/geocode/" + providerName + "/geocodeByPoint", query).json();
3147
2680
  }
@@ -3163,7 +2696,7 @@ let GeocodeService = /*#__PURE__*/function (_Service) {
3163
2696
  let {
3164
2697
  providerName
3165
2698
  } = _ref3,
3166
- query = _objectWithoutPropertiesLoose(_ref3, _excluded3$1);
2699
+ query = _objectWithoutPropertiesLoose(_ref3, _excluded3);
3167
2700
 
3168
2701
  return this.http.get("/geocode/" + providerName + "/suggest", query).json();
3169
2702
  }
@@ -3203,76 +2736,6 @@ let Geocode = /*#__PURE__*/function (_GeocodeService) {
3203
2736
  return Geocode;
3204
2737
  }(GeocodeService);
3205
2738
 
3206
- /**
3207
- * @title Spatial Processing Core API
3208
- * @version 1.5.1.0
3209
- * @baseUrl /sp
3210
- */
3211
-
3212
- let IceRouterService = /*#__PURE__*/function (_Service) {
3213
- _inherits(IceRouterService, _Service);
3214
-
3215
- var _super = /*#__PURE__*/_createSuper(IceRouterService);
3216
-
3217
- function IceRouterService() {
3218
- _classCallCheck(this, IceRouterService);
3219
-
3220
- return _super.apply(this, arguments);
3221
- }
3222
-
3223
- _createClass(IceRouterService, [{
3224
- key: "startTask",
3225
- value:
3226
- /**
3227
- * No description
3228
- *
3229
- * @tags IceRouter
3230
- * @name StartTask
3231
- * @operationId IceRouterController_StartTask
3232
- * @summary Start route build between start and end points.
3233
- * @request POST:/ice-router/tasks
3234
- * @secure
3235
- * @response `200` OK
3236
- */
3237
- function startTask(data) {
3238
- return this.http.post("/ice-router/tasks", data).text();
3239
- }
3240
- /**
3241
- * No description
3242
- *
3243
- * @tags IceRouter
3244
- * @name GetResult
3245
- * @operationId IceRouterController_GetResult
3246
- * @summary Get task result.
3247
- * @request GET:/ice-router/tasks/{id}
3248
- * @secure
3249
- * @response `200` OK
3250
- */
3251
-
3252
- }, {
3253
- key: "getResult",
3254
- value: function getResult(id) {
3255
- return this.http.get("/ice-router/tasks/" + id).json();
3256
- }
3257
- }]);
3258
-
3259
- return IceRouterService;
3260
- }(Service);
3261
-
3262
- let IceRouter = /*#__PURE__*/function (_IceRouterService) {
3263
- _inherits(IceRouter, _IceRouterService);
3264
-
3265
- var _super = /*#__PURE__*/_createSuper(IceRouter);
3266
-
3267
- function IceRouter() {
3268
- _classCallCheck(this, IceRouter);
3269
-
3270
- return _super.apply(this, arguments);
3271
- }
3272
-
3273
- return _createClass(IceRouter);
3274
- }(IceRouterService);
3275
-
3276
2739
  /**
3277
2740
  * @title Spatial Processing Core API
3278
2741
  * @version 1.5.1.0
@@ -3479,24 +2942,21 @@ let Import = /*#__PURE__*/function (_ImportService) {
3479
2942
  return _createClass(Import);
3480
2943
  }(ImportService);
3481
2944
 
3482
- const _excluded$3 = ["name"],
3483
- _excluded2$2 = ["name"],
3484
- _excluded3$2 = ["name", "id"],
3485
- _excluded4$1 = ["name", "id"],
3486
- _excluded5$1 = ["name", "id"],
3487
- _excluded6$1 = ["name", "x", "y", "z"],
3488
- _excluded7 = ["name", "x", "y", "z", "format"],
3489
- _excluded8 = ["name", "x", "y", "z", "dpi", "format"],
2945
+ const _excluded$2 = ["name"],
2946
+ _excluded2$1 = ["name"],
2947
+ _excluded3$1 = ["name", "id"],
2948
+ _excluded4 = ["name", "x", "y", "z"],
2949
+ _excluded5 = ["name", "x", "y", "z", "format"],
2950
+ _excluded6 = ["name", "x", "y", "z", "dpi", "format"],
2951
+ _excluded7 = ["name"],
2952
+ _excluded8 = ["name"],
3490
2953
  _excluded9 = ["name"],
3491
2954
  _excluded10 = ["name"],
3492
2955
  _excluded11 = ["name"],
3493
2956
  _excluded12 = ["name"],
3494
2957
  _excluded13 = ["name"],
3495
- _excluded14 = ["name"],
3496
- _excluded15 = ["name"],
3497
- _excluded16 = ["name"],
3498
- _excluded17 = ["layerName"],
3499
- _excluded18 = ["name", "id"];
2958
+ _excluded14 = ["layerName"],
2959
+ _excluded15 = ["name", "id"];
3500
2960
  /**
3501
2961
  * @title Spatial Processing Core API
3502
2962
  * @version 1.5.1.0
@@ -3968,7 +3428,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3968
3428
  let {
3969
3429
  name
3970
3430
  } = _ref,
3971
- query = _objectWithoutPropertiesLoose(_ref, _excluded$3);
3431
+ query = _objectWithoutPropertiesLoose(_ref, _excluded$2);
3972
3432
 
3973
3433
  return this.http.get("/layers/" + name + "/features", query).json();
3974
3434
  }
@@ -3990,7 +3450,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3990
3450
  let {
3991
3451
  name
3992
3452
  } = _ref2,
3993
- query = _objectWithoutPropertiesLoose(_ref2, _excluded2$2);
3453
+ query = _objectWithoutPropertiesLoose(_ref2, _excluded2$1);
3994
3454
 
3995
3455
  return this.http.delete("/layers/" + name + "/features", null, query).json();
3996
3456
  }
@@ -4047,56 +3507,10 @@ let LayersService = /*#__PURE__*/function (_Service) {
4047
3507
  name,
4048
3508
  id
4049
3509
  } = _ref3,
4050
- query = _objectWithoutPropertiesLoose(_ref3, _excluded3$2);
3510
+ query = _objectWithoutPropertiesLoose(_ref3, _excluded3$1);
4051
3511
 
4052
3512
  return this.http.get("/layers/" + name + "/features/" + id, query).json();
4053
3513
  }
4054
- /**
4055
- * No description
4056
- *
4057
- * @tags Layers
4058
- * @name Unite
4059
- * @operationId LayersController_Unite
4060
- * @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.
4061
- * @request POST:/layers/{name}/features/{id}/unite
4062
- * @secure
4063
- * @response `200` OK
4064
- */
4065
-
4066
- }, {
4067
- key: "unite",
4068
- value: function unite(_ref4, data) {
4069
- let {
4070
- name,
4071
- id
4072
- } = _ref4,
4073
- query = _objectWithoutPropertiesLoose(_ref4, _excluded4$1);
4074
-
4075
- return this.http.post("/layers/" + name + "/features/" + id + "/unite", data, query).json();
4076
- }
4077
- /**
4078
- * No description
4079
- *
4080
- * @tags Layers
4081
- * @name Subtract
4082
- * @operationId LayersController_Subtract
4083
- * @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.
4084
- * @request POST:/layers/{name}/features/{id}/subtract
4085
- * @secure
4086
- * @response `200` OK
4087
- */
4088
-
4089
- }, {
4090
- key: "subtract",
4091
- value: function subtract(_ref5, data) {
4092
- let {
4093
- name,
4094
- id
4095
- } = _ref5,
4096
- query = _objectWithoutPropertiesLoose(_ref5, _excluded5$1);
4097
-
4098
- return this.http.post("/layers/" + name + "/features/" + id + "/subtract", data, query).json();
4099
- }
4100
3514
  /**
4101
3515
  * No description
4102
3516
  *
@@ -4111,14 +3525,14 @@ let LayersService = /*#__PURE__*/function (_Service) {
4111
3525
 
4112
3526
  }, {
4113
3527
  key: "getTilesLayerImage",
4114
- value: function getTilesLayerImage(_ref6) {
3528
+ value: function getTilesLayerImage(_ref4) {
4115
3529
  let {
4116
3530
  name,
4117
3531
  x,
4118
3532
  y,
4119
3533
  z
4120
- } = _ref6,
4121
- query = _objectWithoutPropertiesLoose(_ref6, _excluded6$1);
3534
+ } = _ref4,
3535
+ query = _objectWithoutPropertiesLoose(_ref4, _excluded4);
4122
3536
 
4123
3537
  return this.http.createUrl("/layers/" + name + "/tile/" + z + "/" + x + "/" + y, query);
4124
3538
  }
@@ -4136,15 +3550,15 @@ let LayersService = /*#__PURE__*/function (_Service) {
4136
3550
 
4137
3551
  }, {
4138
3552
  key: "getTilesLayerImage1",
4139
- value: function getTilesLayerImage1(_ref7) {
3553
+ value: function getTilesLayerImage1(_ref5) {
4140
3554
  let {
4141
3555
  name,
4142
3556
  x,
4143
3557
  y,
4144
3558
  z,
4145
3559
  format
4146
- } = _ref7,
4147
- query = _objectWithoutPropertiesLoose(_ref7, _excluded7);
3560
+ } = _ref5,
3561
+ query = _objectWithoutPropertiesLoose(_ref5, _excluded5);
4148
3562
 
4149
3563
  return this.http.createUrl("/layers/" + name + "/tile/" + z + "/" + x + "/" + y + "." + format, query);
4150
3564
  }
@@ -4162,7 +3576,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
4162
3576
 
4163
3577
  }, {
4164
3578
  key: "getTilesLayerImageWithFormatAndDpi",
4165
- value: function getTilesLayerImageWithFormatAndDpi(_ref8) {
3579
+ value: function getTilesLayerImageWithFormatAndDpi(_ref6) {
4166
3580
  let {
4167
3581
  name,
4168
3582
  x,
@@ -4170,33 +3584,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
4170
3584
  z,
4171
3585
  dpi,
4172
3586
  format
4173
- } = _ref8,
4174
- query = _objectWithoutPropertiesLoose(_ref8, _excluded8);
3587
+ } = _ref6,
3588
+ query = _objectWithoutPropertiesLoose(_ref6, _excluded6);
4175
3589
 
4176
3590
  return this.http.createUrl("/layers/" + name + "/tile/" + z + "/" + x + "/" + y + "@" + dpi + "x." + format, query);
4177
3591
  }
4178
- /**
4179
- * No description
4180
- *
4181
- * @tags Layers
4182
- * @name GetLayerImage
4183
- * @operationId LayersController_GetLayerImage
4184
- * @summary Renders the layer to the image of the requested size.
4185
- * @request GET:/layers/{name}/export
4186
- * @secure
4187
- * @response `200` OK
4188
- */
4189
-
4190
- }, {
4191
- key: "getLayerImage",
4192
- value: function getLayerImage(_ref9) {
4193
- let {
4194
- name
4195
- } = _ref9,
4196
- query = _objectWithoutPropertiesLoose(_ref9, _excluded9);
4197
-
4198
- return this.http.createUrl("/layers/" + name + "/export", query);
4199
- }
4200
3592
  /**
4201
3593
  * No description
4202
3594
  *
@@ -4211,11 +3603,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
4211
3603
 
4212
3604
  }, {
4213
3605
  key: "getLayerExtent",
4214
- value: function getLayerExtent(_ref10) {
3606
+ value: function getLayerExtent(_ref7) {
4215
3607
  let {
4216
3608
  name
4217
- } = _ref10,
4218
- query = _objectWithoutPropertiesLoose(_ref10, _excluded10);
3609
+ } = _ref7,
3610
+ query = _objectWithoutPropertiesLoose(_ref7, _excluded7);
4219
3611
 
4220
3612
  return this.http.get("/layers/" + name + "/extent", query).json();
4221
3613
  }
@@ -4233,11 +3625,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
4233
3625
 
4234
3626
  }, {
4235
3627
  key: "deleteFeatures",
4236
- value: function deleteFeatures(_ref11) {
3628
+ value: function deleteFeatures(_ref8) {
4237
3629
  let {
4238
3630
  name
4239
- } = _ref11,
4240
- query = _objectWithoutPropertiesLoose(_ref11, _excluded11);
3631
+ } = _ref8,
3632
+ query = _objectWithoutPropertiesLoose(_ref8, _excluded8);
4241
3633
 
4242
3634
  return this.http.delete("/layers/" + name + "/features/deleteByIds", null, query).json();
4243
3635
  }
@@ -4255,11 +3647,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
4255
3647
 
4256
3648
  }, {
4257
3649
  key: "deleteByCondition",
4258
- value: function deleteByCondition(_ref12) {
3650
+ value: function deleteByCondition(_ref9) {
4259
3651
  let {
4260
3652
  name
4261
- } = _ref12,
4262
- query = _objectWithoutPropertiesLoose(_ref12, _excluded12);
3653
+ } = _ref9,
3654
+ query = _objectWithoutPropertiesLoose(_ref9, _excluded9);
4263
3655
 
4264
3656
  return this.http.delete("/layers/" + name + "/features/deleteByCondition", null, query).json();
4265
3657
  }
@@ -4277,11 +3669,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
4277
3669
 
4278
3670
  }, {
4279
3671
  key: "classify",
4280
- value: function classify(_ref13) {
3672
+ value: function classify(_ref10) {
4281
3673
  let {
4282
3674
  name
4283
- } = _ref13,
4284
- query = _objectWithoutPropertiesLoose(_ref13, _excluded13);
3675
+ } = _ref10,
3676
+ query = _objectWithoutPropertiesLoose(_ref10, _excluded10);
4285
3677
 
4286
3678
  return this.http.get("/layers/" + name + "/classify", query).json();
4287
3679
  }
@@ -4299,11 +3691,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
4299
3691
 
4300
3692
  }, {
4301
3693
  key: "distincts",
4302
- value: function distincts(_ref14) {
3694
+ value: function distincts(_ref11) {
4303
3695
  let {
4304
3696
  name
4305
- } = _ref14,
4306
- query = _objectWithoutPropertiesLoose(_ref14, _excluded14);
3697
+ } = _ref11,
3698
+ query = _objectWithoutPropertiesLoose(_ref11, _excluded11);
4307
3699
 
4308
3700
  return this.http.get("/layers/" + name + "/distincts", query).json();
4309
3701
  }
@@ -4321,11 +3713,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
4321
3713
 
4322
3714
  }, {
4323
3715
  key: "aggregateAttribute",
4324
- value: function aggregateAttribute(_ref15) {
3716
+ value: function aggregateAttribute(_ref12) {
4325
3717
  let {
4326
3718
  name
4327
- } = _ref15,
4328
- query = _objectWithoutPropertiesLoose(_ref15, _excluded15);
3719
+ } = _ref12,
3720
+ query = _objectWithoutPropertiesLoose(_ref12, _excluded12);
4329
3721
 
4330
3722
  return this.http.get("/layers/" + name + "/aggregate-values", query).json();
4331
3723
  }
@@ -4343,194 +3735,109 @@ let LayersService = /*#__PURE__*/function (_Service) {
4343
3735
 
4344
3736
  }, {
4345
3737
  key: "getFilteredFeaturesCount1",
4346
- value: function getFilteredFeaturesCount1(_ref16) {
3738
+ value: function getFilteredFeaturesCount1(_ref13) {
4347
3739
  let {
4348
- name
4349
- } = _ref16,
4350
- query = _objectWithoutPropertiesLoose(_ref16, _excluded16);
4351
-
4352
- return this.http.get("/layers/" + name + "/features/count", query).json();
4353
- }
4354
- /**
4355
- * No description
4356
- *
4357
- * @tags Layers
4358
- * @name GetFilteredFeaturesCount2
4359
- * @operationId LayersController_GetFilteredFeaturesCount_2
4360
- * @summary Get features count according layer filter of the given name.
4361
- * @request POST:/layers/{name}/features/count
4362
- * @secure
4363
- * @response `200` OK
4364
- */
4365
-
4366
- }, {
4367
- key: "getFilteredFeaturesCount2",
4368
- value: function getFilteredFeaturesCount2(name, data) {
4369
- return this.http.post("/layers/" + name + "/features/count", data).json();
4370
- }
4371
- /**
4372
- * No description
4373
- *
4374
- * @tags Layers
4375
- * @name EditAttributes
4376
- * @operationId LayersController_EditAttributes
4377
- * @summary Edit attributes with editInfo.
4378
- * @request POST:/layers/{name}/features/edit-attributes
4379
- * @secure
4380
- * @response `200` OK
4381
- */
4382
-
4383
- }, {
4384
- key: "editAttributes",
4385
- value: function editAttributes(name, data) {
4386
- return this.http.post("/layers/" + name + "/features/edit-attributes", data).json();
4387
- }
4388
- /**
4389
- * No description
4390
- *
4391
- * @tags Layers
4392
- * @name ValidateExpression
4393
- * @operationId LayersController_ValidateExpression
4394
- * @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.
4395
- * @request GET:/layers/{layerName}/validateExpression
4396
- * @secure
4397
- * @response `200` OK
4398
- */
4399
-
4400
- }, {
4401
- key: "validateExpression",
4402
- value: function validateExpression(_ref17) {
4403
- let {
4404
- layerName
4405
- } = _ref17,
4406
- query = _objectWithoutPropertiesLoose(_ref17, _excluded17);
4407
-
4408
- return this.http.get("/layers/" + layerName + "/validateExpression", query).json();
4409
- }
4410
- /**
4411
- * No description
4412
- *
4413
- * @tags Layers
4414
- * @name FlipCoordinates
4415
- * @operationId LayersController_FlipCoordinates
4416
- * @summary Flip geometry coordinates.
4417
- * @request POST:/layers/{layerName}/flip-coordinates
4418
- * @secure
4419
- * @response `200` OK
4420
- */
4421
-
4422
- }, {
4423
- key: "flipCoordinates",
4424
- value: function flipCoordinates(layerName) {
4425
- return this.http.post("/layers/" + layerName + "/flip-coordinates", null).json();
4426
- }
4427
- /**
4428
- * No description
4429
- *
4430
- * @tags Layers
4431
- * @name GetRasterMeta
4432
- * @operationId LayersController_GetRasterMeta
4433
- * @summary Get raster metadata.
4434
- * @request GET:/layers/{name}/{id}/metadata
4435
- * @secure
4436
- * @response `200` OK
4437
- */
4438
-
4439
- }, {
4440
- key: "getRasterMeta",
4441
- value: function getRasterMeta(_ref18) {
4442
- let {
4443
- name,
4444
- id
4445
- } = _ref18,
4446
- query = _objectWithoutPropertiesLoose(_ref18, _excluded18);
3740
+ name
3741
+ } = _ref13,
3742
+ query = _objectWithoutPropertiesLoose(_ref13, _excluded13);
4447
3743
 
4448
- return this.http.get("/layers/" + name + "/" + id + "/metadata", query).json();
3744
+ return this.http.get("/layers/" + name + "/features/count", query).json();
4449
3745
  }
4450
3746
  /**
4451
3747
  * No description
4452
3748
  *
4453
3749
  * @tags Layers
4454
- * @name CreateRoute
4455
- * @operationId LayersController_CreateRoute
4456
- * @summary Create new route (feature) from source features.
4457
- * @request POST:/layers/{name}/createRoute
3750
+ * @name GetFilteredFeaturesCount2
3751
+ * @operationId LayersController_GetFilteredFeaturesCount_2
3752
+ * @summary Get features count according layer filter of the given name.
3753
+ * @request POST:/layers/{name}/features/count
4458
3754
  * @secure
4459
3755
  * @response `200` OK
4460
3756
  */
4461
3757
 
4462
3758
  }, {
4463
- key: "createRoute",
4464
- value: function createRoute(name, data) {
4465
- return this.http.post("/layers/" + name + "/createRoute", data).json();
3759
+ key: "getFilteredFeaturesCount2",
3760
+ value: function getFilteredFeaturesCount2(name, data) {
3761
+ return this.http.post("/layers/" + name + "/features/count", data).json();
4466
3762
  }
4467
3763
  /**
4468
3764
  * No description
4469
3765
  *
4470
3766
  * @tags Layers
4471
- * @name ApplyStyle
4472
- * @operationId LayersController_ApplyStyle
4473
- * @summary Create data layout and image layout for given style.
4474
- * @request PUT:/layers/{name}/style
3767
+ * @name EditAttributes
3768
+ * @operationId LayersController_EditAttributes
3769
+ * @summary Edit attributes with editInfo.
3770
+ * @request POST:/layers/{name}/features/edit-attributes
4475
3771
  * @secure
4476
3772
  * @response `200` OK
4477
3773
  */
4478
3774
 
4479
3775
  }, {
4480
- key: "applyStyle",
4481
- value: function applyStyle(name, data) {
4482
- return this.http.put("/layers/" + name + "/style", data).then(() => {});
3776
+ key: "editAttributes",
3777
+ value: function editAttributes(name, data) {
3778
+ return this.http.post("/layers/" + name + "/features/edit-attributes", data).json();
4483
3779
  }
4484
3780
  /**
4485
3781
  * No description
4486
3782
  *
4487
3783
  * @tags Layers
4488
- * @name GetStyle
4489
- * @operationId LayersController_GetStyle
4490
- * @summary Get style of the given layer.
4491
- * @request GET:/layers/{name}/style
3784
+ * @name ValidateExpression
3785
+ * @operationId LayersController_ValidateExpression
3786
+ * @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.
3787
+ * @request GET:/layers/{layerName}/validateExpression
4492
3788
  * @secure
4493
3789
  * @response `200` OK
4494
3790
  */
4495
3791
 
4496
3792
  }, {
4497
- key: "getStyle",
4498
- value: function getStyle(name) {
4499
- return this.http.get("/layers/" + name + "/style").json();
3793
+ key: "validateExpression",
3794
+ value: function validateExpression(_ref14) {
3795
+ let {
3796
+ layerName
3797
+ } = _ref14,
3798
+ query = _objectWithoutPropertiesLoose(_ref14, _excluded14);
3799
+
3800
+ return this.http.get("/layers/" + layerName + "/validateExpression", query).json();
4500
3801
  }
4501
3802
  /**
4502
3803
  * No description
4503
3804
  *
4504
3805
  * @tags Layers
4505
- * @name GetImageLayout
4506
- * @operationId LayersController_GetImageLayout
4507
- * @summary Get date layout.
4508
- * @request GET:/layers/{name}/style/sprite.png
3806
+ * @name FlipCoordinates
3807
+ * @operationId LayersController_FlipCoordinates
3808
+ * @summary Flip geometry coordinates.
3809
+ * @request POST:/layers/{layerName}/flip-coordinates
4509
3810
  * @secure
4510
3811
  * @response `200` OK
4511
3812
  */
4512
3813
 
4513
3814
  }, {
4514
- key: "getImageLayout",
4515
- value: function getImageLayout(name) {
4516
- return this.http.get("/layers/" + name + "/style/sprite.png").blob();
3815
+ key: "flipCoordinates",
3816
+ value: function flipCoordinates(layerName) {
3817
+ return this.http.post("/layers/" + layerName + "/flip-coordinates", null).json();
4517
3818
  }
4518
3819
  /**
4519
3820
  * No description
4520
3821
  *
4521
3822
  * @tags Layers
4522
- * @name GetDataLayout
4523
- * @operationId LayersController_GetDataLayout
4524
- * @summary Get image layout.
4525
- * @request GET:/layers/{name}/style/sprite.json
3823
+ * @name GetRasterMeta
3824
+ * @operationId LayersController_GetRasterMeta
3825
+ * @summary Get raster metadata.
3826
+ * @request GET:/layers/{name}/{id}/metadata
4526
3827
  * @secure
4527
3828
  * @response `200` OK
4528
3829
  */
4529
3830
 
4530
3831
  }, {
4531
- key: "getDataLayout",
4532
- value: function getDataLayout(name) {
4533
- return this.http.get("/layers/" + name + "/style/sprite.json").then(() => {});
3832
+ key: "getRasterMeta",
3833
+ value: function getRasterMeta(_ref15) {
3834
+ let {
3835
+ name,
3836
+ id
3837
+ } = _ref15,
3838
+ query = _objectWithoutPropertiesLoose(_ref15, _excluded15);
3839
+
3840
+ return this.http.get("/layers/" + name + "/" + id + "/metadata", query).json();
4534
3841
  }
4535
3842
  /**
4536
3843
  * No description
@@ -5173,145 +4480,7 @@ let PortalSettings = /*#__PURE__*/function (_ClientSettingsServic) {
5173
4480
  return PortalSettings;
5174
4481
  }(ClientSettingsService);
5175
4482
 
5176
- /**
5177
- * @title Spatial Processing Core API
5178
- * @version 1.5.1.0
5179
- * @baseUrl /sp
5180
- */
5181
-
5182
- let PrintService = /*#__PURE__*/function (_Service) {
5183
- _inherits(PrintService, _Service);
5184
-
5185
- var _super = /*#__PURE__*/_createSuper(PrintService);
5186
-
5187
- function PrintService() {
5188
- _classCallCheck(this, PrintService);
5189
-
5190
- return _super.apply(this, arguments);
5191
- }
5192
-
5193
- _createClass(PrintService, [{
5194
- key: "print",
5195
- value:
5196
- /**
5197
- * No description
5198
- *
5199
- * @tags Print
5200
- * @name Print
5201
- * @operationId PrintController_Print
5202
- * @summary Print map with template.
5203
- * @request POST:/print/print
5204
- * @secure
5205
- * @response `200` OK
5206
- */
5207
- function print(data) {
5208
- return this.http.post("/print/print", data).then(() => {});
5209
- }
5210
- /**
5211
- * No description
5212
- *
5213
- * @tags Print
5214
- * @name PrintToHtml
5215
- * @operationId PrintController_PrintToHtml
5216
- * @summary Print map with template to html string.
5217
- * @request POST:/print/printHtml
5218
- * @secure
5219
- * @response `200` OK
5220
- */
5221
-
5222
- }, {
5223
- key: "printToHtml",
5224
- value: function printToHtml(data) {
5225
- return this.http.post("/print/printHtml", data).text();
5226
- }
5227
- /**
5228
- * No description
5229
- *
5230
- * @tags Print
5231
- * @name UploadTemplate
5232
- * @operationId PrintController_UploadTemplate
5233
- * @summary Upload template on server.
5234
- * @request POST:/print/templates
5235
- * @secure
5236
- * @response `200` OK
5237
- */
5238
-
5239
- }, {
5240
- key: "uploadTemplate",
5241
- value: function uploadTemplate(query, data) {
5242
- return this.http.post("/print/templates", toFormData(data), query).then(() => {});
5243
- }
5244
- /**
5245
- * No description
5246
- *
5247
- * @tags Print
5248
- * @name GetTemplates
5249
- * @operationId PrintController_GetTemplates
5250
- * @summary Get all templates from server.
5251
- * @request GET:/print/templates
5252
- * @secure
5253
- * @response `200` OK
5254
- */
5255
-
5256
- }, {
5257
- key: "getTemplates",
5258
- value: function getTemplates() {
5259
- return this.http.get("/print/templates").json();
5260
- }
5261
- /**
5262
- * No description
5263
- *
5264
- * @tags Print
5265
- * @name DeleteTemplate
5266
- * @operationId PrintController_DeleteTemplate
5267
- * @summary Delete template from server.
5268
- * @request DELETE:/print/templates/{name}
5269
- * @secure
5270
- * @response `200` OK
5271
- */
5272
-
5273
- }, {
5274
- key: "deleteTemplate",
5275
- value: function deleteTemplate(name) {
5276
- return this.http.delete("/print/templates/" + name, null).then(() => {});
5277
- }
5278
- /**
5279
- * No description
5280
- *
5281
- * @tags Print
5282
- * @name GetTemplate
5283
- * @operationId PrintController_GetTemplate
5284
- * @summary Get template from server.
5285
- * @request GET:/print/templates/{name}
5286
- * @secure
5287
- * @response `200` OK
5288
- */
5289
-
5290
- }, {
5291
- key: "getTemplate",
5292
- value: function getTemplate(name) {
5293
- return this.http.get("/print/templates/" + name).text();
5294
- }
5295
- }]);
5296
-
5297
- return PrintService;
5298
- }(Service);
5299
-
5300
- let Print = /*#__PURE__*/function (_PrintService) {
5301
- _inherits(Print, _PrintService);
5302
-
5303
- var _super = /*#__PURE__*/_createSuper(Print);
5304
-
5305
- function Print() {
5306
- _classCallCheck(this, Print);
5307
-
5308
- return _super.apply(this, arguments);
5309
- }
5310
-
5311
- return _createClass(Print);
5312
- }(PrintService);
5313
-
5314
- const _excluded$4 = ["name"];
4483
+ const _excluded$3 = ["name"];
5315
4484
  /**
5316
4485
  * @title Spatial Processing Core API
5317
4486
  * @version 1.5.1.0
@@ -5483,7 +4652,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
5483
4652
  let {
5484
4653
  name
5485
4654
  } = _ref,
5486
- query = _objectWithoutPropertiesLoose(_ref, _excluded$4);
4655
+ query = _objectWithoutPropertiesLoose(_ref, _excluded$3);
5487
4656
 
5488
4657
  return this.http.get("/projects/" + name + "/extent", query).json();
5489
4658
  }
@@ -5666,8 +4835,8 @@ function isProjectContentItems(v) {
5666
4835
  return v !== null && v !== undefined;
5667
4836
  }
5668
4837
 
5669
- const _excluded$5 = ["id"],
5670
- _excluded2$3 = ["id"];
4838
+ const _excluded$4 = ["id"],
4839
+ _excluded2$2 = ["id"];
5671
4840
  /**
5672
4841
  * @title Spatial Processing Core API
5673
4842
  * @version 1.5.1.0
@@ -5822,7 +4991,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
5822
4991
  let {
5823
4992
  id
5824
4993
  } = _ref,
5825
- query = _objectWithoutPropertiesLoose(_ref, _excluded$5);
4994
+ query = _objectWithoutPropertiesLoose(_ref, _excluded$4);
5826
4995
 
5827
4996
  return this.http.get("/scheduler/" + id + "/tasks", query).json();
5828
4997
  }
@@ -5878,7 +5047,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
5878
5047
  let {
5879
5048
  id
5880
5049
  } = _ref2,
5881
- query = _objectWithoutPropertiesLoose(_ref2, _excluded2$3);
5050
+ query = _objectWithoutPropertiesLoose(_ref2, _excluded2$2);
5882
5051
 
5883
5052
  return this.http.get("/scheduler/taskresource/" + id, query).json();
5884
5053
  }
@@ -6407,28 +5576,11 @@ let StatisticService = /*#__PURE__*/function (_Service) {
6407
5576
  * @name StatisticsDb
6408
5577
  * @operationId StatisticController_StatisticsDb
6409
5578
  * @summary Calculates statistics for layer attribute.
6410
- * @request GET:/statistics
6411
- * @secure
6412
- * @response `200` OK
6413
- */
6414
- function statisticsDb(query) {
6415
- return this.http.get("/statistics", query).json();
6416
- }
6417
- /**
6418
- * No description
6419
- *
6420
- * @tags Statistic
6421
- * @name StatisticsDb1
6422
- * @operationId StatisticController_StatisticsDb_1
6423
- * @summary Calculates statistics for layer attribute.
6424
5579
  * @request POST:/statistics
6425
5580
  * @secure
6426
5581
  * @response `200` OK
6427
5582
  */
6428
-
6429
- }, {
6430
- key: "statisticsDb1",
6431
- value: function statisticsDb1(data) {
5583
+ function statisticsDb(data) {
6432
5584
  return this.http.post("/statistics", data).json();
6433
5585
  }
6434
5586
  /**
@@ -6438,31 +5590,14 @@ let StatisticService = /*#__PURE__*/function (_Service) {
6438
5590
  * @name Classify
6439
5591
  * @operationId StatisticController_Classify
6440
5592
  * @summary Returns the classified attribute values that correspond to the given number of classes and given condition.
6441
- * @request GET:/statistics/classify
6442
- * @secure
6443
- * @response `200` OK
6444
- */
6445
-
6446
- }, {
6447
- key: "classify",
6448
- value: function classify(query) {
6449
- return this.http.get("/statistics/classify", query).json();
6450
- }
6451
- /**
6452
- * No description
6453
- *
6454
- * @tags Statistic
6455
- * @name Classify1
6456
- * @operationId StatisticController_Classify_1
6457
- * @summary Returns the classified attribute values that correspond to the given number of classes and given condition.
6458
5593
  * @request POST:/statistics/classify
6459
5594
  * @secure
6460
5595
  * @response `200` OK
6461
5596
  */
6462
5597
 
6463
5598
  }, {
6464
- key: "classify1",
6465
- value: function classify1(data) {
5599
+ key: "classify",
5600
+ value: function classify(data) {
6466
5601
  return this.http.post("/statistics/classify", data).json();
6467
5602
  }
6468
5603
  /**
@@ -6472,31 +5607,14 @@ let StatisticService = /*#__PURE__*/function (_Service) {
6472
5607
  * @name SumOfProduct
6473
5608
  * @operationId StatisticController_SumOfProduct
6474
5609
  * @summary Sum of product.
6475
- * @request GET:/statistics/sumOfProduct
6476
- * @secure
6477
- * @response `200` OK
6478
- */
6479
-
6480
- }, {
6481
- key: "sumOfProduct",
6482
- value: function sumOfProduct(query) {
6483
- return this.http.get("/statistics/sumOfProduct", query).json();
6484
- }
6485
- /**
6486
- * No description
6487
- *
6488
- * @tags Statistic
6489
- * @name SumOfProduct1
6490
- * @operationId StatisticController_SumOfProduct_1
6491
- * @summary Sum of product.
6492
5610
  * @request POST:/statistics/sumOfProduct
6493
5611
  * @secure
6494
5612
  * @response `200` OK
6495
5613
  */
6496
5614
 
6497
5615
  }, {
6498
- key: "sumOfProduct1",
6499
- value: function sumOfProduct1(data) {
5616
+ key: "sumOfProduct",
5617
+ value: function sumOfProduct(data) {
6500
5618
  return this.http.post("/statistics/sumOfProduct", data).json();
6501
5619
  }
6502
5620
  }]);
@@ -6520,167 +5638,19 @@ let Statistic = /*#__PURE__*/function (_StatisticService) {
6520
5638
  value: function getStatistic(params) {
6521
5639
  return this.statisticsDb(params);
6522
5640
  }
6523
- }, {
6524
- key: "postStatistic",
6525
- value: function postStatistic(params) {
6526
- return this.statisticsDb1(params);
6527
- }
6528
5641
  }, {
6529
5642
  key: "getClassify",
6530
5643
  value: function getClassify(params) {
6531
5644
  return this.classify(params);
6532
5645
  }
6533
- }, {
6534
- key: "postClassify",
6535
- value: function postClassify(params) {
6536
- return this.classify1(params);
6537
- }
6538
5646
  }]);
6539
5647
 
6540
5648
  return Statistic;
6541
5649
  }(StatisticService);
6542
5650
 
6543
- /**
6544
- * @title Spatial Processing Core API
6545
- * @version 1.5.1.0
6546
- * @baseUrl /sp
6547
- */
6548
-
6549
- let StyleService = /*#__PURE__*/function (_Service) {
6550
- _inherits(StyleService, _Service);
6551
-
6552
- var _super = /*#__PURE__*/_createSuper(StyleService);
6553
-
6554
- function StyleService() {
6555
- _classCallCheck(this, StyleService);
6556
-
6557
- return _super.apply(this, arguments);
6558
- }
6559
-
6560
- _createClass(StyleService, [{
6561
- key: "getStyle",
6562
- value:
6563
- /**
6564
- * No description
6565
- *
6566
- * @tags StyleService
6567
- * @name GetStyle
6568
- * @operationId StyleServiceController_GetStyle
6569
- * @summary Returns the style by its id.
6570
- * @request GET:/styles/{id}
6571
- * @secure
6572
- * @response `200` OK
6573
- */
6574
- function getStyle(id) {
6575
- return this.http.get("/styles/" + id).json();
6576
- }
6577
- /**
6578
- * No description
6579
- *
6580
- * @tags StyleService
6581
- * @name UpdateStyle
6582
- * @operationId StyleServiceController_UpdateStyle
6583
- * @summary Replaces a style and gives it a new id.
6584
- * @request POST:/styles/{id}
6585
- * @secure
6586
- * @response `200` OK
6587
- */
6588
-
6589
- }, {
6590
- key: "updateStyle",
6591
- value: function updateStyle(id, data) {
6592
- return this.http.post("/styles/" + id, data).json();
6593
- }
6594
- /**
6595
- * No description
6596
- *
6597
- * @tags StyleService
6598
- * @name CreateStyle
6599
- * @operationId StyleServiceController_CreateStyle
6600
- * @summary Creates a new style.
6601
- * @request POST:/styles
6602
- * @secure
6603
- * @response `200` OK
6604
- */
6605
-
6606
- }, {
6607
- key: "createStyle",
6608
- value: function createStyle(data) {
6609
- return this.http.post("/styles", data).json();
6610
- }
6611
- /**
6612
- * No description
6613
- *
6614
- * @tags StyleService
6615
- * @name GetAllFonts
6616
- * @operationId StyleServiceController_GetAllFonts
6617
- * @summary Gets all installed fonts.
6618
- * @request GET:/styles/fonts
6619
- * @secure
6620
- * @response `200` OK
6621
- */
6622
-
6623
- }, {
6624
- key: "getAllFonts",
6625
- value: function getAllFonts() {
6626
- return this.http.get("/styles/fonts").json();
6627
- }
6628
- /**
6629
- * No description
6630
- *
6631
- * @tags StyleService
6632
- * @name AddFont
6633
- * @operationId StyleServiceController_AddFont
6634
- * @summary Install new font.
6635
- * @request POST:/styles/fonts
6636
- * @secure
6637
- * @response `200` OK
6638
- */
6639
-
6640
- }, {
6641
- key: "addFont",
6642
- value: function addFont(data) {
6643
- return this.http.post("/styles/fonts", toFormData(data)).then(() => {});
6644
- }
6645
- /**
6646
- * No description
6647
- *
6648
- * @tags StyleService
6649
- * @name RemoveFont
6650
- * @operationId StyleServiceController_RemoveFont
6651
- * @summary Remove installed font.
6652
- * @request DELETE:/styles/fonts
6653
- * @secure
6654
- * @response `200` OK
6655
- */
6656
-
6657
- }, {
6658
- key: "removeFont",
6659
- value: function removeFont(query) {
6660
- return this.http.delete("/styles/fonts", null, query).then(() => {});
6661
- }
6662
- }]);
6663
-
6664
- return StyleService;
6665
- }(Service);
6666
-
6667
- let Styles = /*#__PURE__*/function (_StyleService) {
6668
- _inherits(Styles, _StyleService);
6669
-
6670
- var _super = /*#__PURE__*/_createSuper(Styles);
6671
-
6672
- function Styles() {
6673
- _classCallCheck(this, Styles);
6674
-
6675
- return _super.apply(this, arguments);
6676
- }
6677
-
6678
- return _createClass(Styles);
6679
- }(StyleService);
6680
-
6681
- const _excluded$6 = ["name"],
6682
- _excluded2$4 = ["name"],
6683
- _excluded3$3 = ["name"];
5651
+ const _excluded$5 = ["name"],
5652
+ _excluded2$3 = ["name"],
5653
+ _excluded3$2 = ["name"];
6684
5654
  /**
6685
5655
  * @title Spatial Processing Core API
6686
5656
  * @version 1.5.1.0
@@ -6852,7 +5822,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
6852
5822
  let {
6853
5823
  name
6854
5824
  } = _ref,
6855
- query = _objectWithoutPropertiesLoose(_ref, _excluded$6);
5825
+ query = _objectWithoutPropertiesLoose(_ref, _excluded$5);
6856
5826
 
6857
5827
  return this.http.get("/tables/" + name + "/data", query).json();
6858
5828
  }
@@ -6891,7 +5861,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
6891
5861
  let {
6892
5862
  name
6893
5863
  } = _ref2,
6894
- query = _objectWithoutPropertiesLoose(_ref2, _excluded2$4);
5864
+ query = _objectWithoutPropertiesLoose(_ref2, _excluded2$3);
6895
5865
 
6896
5866
  return this.http.patch("/tables/" + name + "/data", data, query).then(() => {});
6897
5867
  }
@@ -6913,7 +5883,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
6913
5883
  let {
6914
5884
  name
6915
5885
  } = _ref3,
6916
- query = _objectWithoutPropertiesLoose(_ref3, _excluded3$3);
5886
+ query = _objectWithoutPropertiesLoose(_ref3, _excluded3$2);
6917
5887
 
6918
5888
  return this.http.delete("/tables/" + name + "/data", null, query).then(() => {});
6919
5889
  }
@@ -7122,7 +6092,7 @@ let Tools = /*#__PURE__*/function (_ToolsService) {
7122
6092
  return _createClass(Tools);
7123
6093
  }(ToolsService);
7124
6094
 
7125
- const _excluded$7 = ["name", "z", "x", "y"];
6095
+ const _excluded$6 = ["name", "z", "x", "y"];
7126
6096
  /**
7127
6097
  * @title Spatial Processing Core API
7128
6098
  * @version 1.5.1.0
@@ -7161,7 +6131,7 @@ let VectorTileService = /*#__PURE__*/function (_Service) {
7161
6131
  x,
7162
6132
  y
7163
6133
  } = _ref,
7164
- query = _objectWithoutPropertiesLoose(_ref, _excluded$7);
6134
+ query = _objectWithoutPropertiesLoose(_ref, _excluded$6);
7165
6135
 
7166
6136
  return this.http.get("/vt/" + name + "/" + z + "/" + x + "/" + y + ".pbf", query).then(() => {});
7167
6137
  }
@@ -7302,7 +6272,6 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
7302
6272
  _this.tables = new Tables(_this.http);
7303
6273
  _this.projects = new Projects(_this.http);
7304
6274
  _this.resources = new Resources(_this.projects, _this.layers, _this.tables);
7305
- _this.styles = new Styles(_this.http);
7306
6275
  _this.account = new Account(_this.http);
7307
6276
  _this.accountPreview = new AccountPreview(_this.http);
7308
6277
  _this.bulk = new BulkOperations(_this.http);
@@ -7312,13 +6281,9 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
7312
6281
  _this.filters = new Filters(_this.http);
7313
6282
  _this.import = new Import(_this.http);
7314
6283
  _this.geocode = new Geocode(_this.http);
7315
- _this.cameras = new Cameras(_this.http);
7316
- _this.print = new Print(_this.http);
7317
6284
  _this.tools = new Tools(_this.http);
7318
- _this.external = new External(_this.http);
7319
6285
  _this.clientSettings = new ClientSettings(_this.http);
7320
6286
  _this.portalSettings = new PortalSettings(_this.http);
7321
- _this.iceRouter = new IceRouter(_this.http);
7322
6287
  _this.statistic = new Statistic(_this.http);
7323
6288
  _this.feedback = new Feedback(_this.http);
7324
6289
  _this.vectorTiles = new VectorTiles(_this.http);
@@ -7521,9 +6486,8 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
7521
6486
  ClassificationType["NaturalBreaks"] = "naturalBreaks";
7522
6487
  ClassificationType["EqualInterval"] = "equalInterval";
7523
6488
  ClassificationType["Quantile"] = "quantile";
7524
- ClassificationType["Distinct"] = "distinct";
7525
- ClassificationType["Step"] = "step";
7526
6489
  ClassificationType["Unique"] = "unique";
6490
+ ClassificationType["Step"] = "step";
7527
6491
  })(exports.ClassificationType || (exports.ClassificationType = {}));
7528
6492
 
7529
6493
  (function (ClassifyAttributeType) {
@@ -7704,12 +6668,6 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
7704
6668
  PolicyType["MaxEqlQueryParametersValues"] = "MaxEqlQueryParametersValues";
7705
6669
  })(exports.PolicyType || (exports.PolicyType = {}));
7706
6670
 
7707
- (function (Quality) {
7708
- Quality["Low"] = "Low";
7709
- Quality["Medium"] = "Medium";
7710
- Quality["High"] = "High";
7711
- })(exports.Quality || (exports.Quality = {}));
7712
-
7713
6671
  (function (RemoteTaskStatus) {
7714
6672
  RemoteTaskStatus["Init"] = "Init";
7715
6673
  RemoteTaskStatus["Process"] = "Process";
@@ -7842,24 +6800,20 @@ exports.Account = Account;
7842
6800
  exports.AccountPreview = AccountPreview;
7843
6801
  exports.Api = Api;
7844
6802
  exports.BulkOperations = BulkOperations;
7845
- exports.Cameras = Cameras;
7846
6803
  exports.ClientSettings = ClientSettings;
7847
6804
  exports.Eql = Eql;
7848
- exports.External = External;
7849
6805
  exports.Feedback = Feedback;
7850
6806
  exports.FileUpload = FileUpload;
7851
6807
  exports.Filters = Filters;
7852
6808
  exports.GEOCODE_PROVIDER = GEOCODE_PROVIDER;
7853
6809
  exports.Geocode = Geocode;
7854
6810
  exports.HttpClient = HttpClient;
7855
- exports.IceRouter = IceRouter;
7856
6811
  exports.Import = Import;
7857
6812
  exports.Layers = Layers;
7858
6813
  exports.Names = Names;
7859
6814
  exports.Notification = Notification;
7860
6815
  exports.NotificationEvent = NotificationEvent;
7861
6816
  exports.PortalSettings = PortalSettings;
7862
- exports.Print = Print;
7863
6817
  exports.Projects = Projects;
7864
6818
  exports.RemoteTaskManager = RemoteTaskManager;
7865
6819
  exports.Resources = Resources;
@@ -7867,7 +6821,6 @@ exports.STORAGE_REFRESH_TOKEN_KEY = STORAGE_REFRESH_TOKEN_KEY;
7867
6821
  exports.STORAGE_TOKEN_KEY = STORAGE_TOKEN_KEY;
7868
6822
  exports.Security = Security;
7869
6823
  exports.Statistic = Statistic;
7870
- exports.Styles = Styles;
7871
6824
  exports.Tables = Tables;
7872
6825
  exports.Tools = Tools;
7873
6826
  exports.VectorTiles = VectorTiles;