@evergis/api 4.0.21 → 4.0.23

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
@@ -24,9 +24,6 @@ function _defineProperties(target, props) {
24
24
  function _createClass(Constructor, protoProps, staticProps) {
25
25
  if (protoProps) _defineProperties(Constructor.prototype, protoProps);
26
26
  if (staticProps) _defineProperties(Constructor, staticProps);
27
- Object.defineProperty(Constructor, "prototype", {
28
- writable: false
29
- });
30
27
  return Constructor;
31
28
  }
32
29
 
@@ -60,9 +57,6 @@ function _inherits(subClass, superClass) {
60
57
  configurable: true
61
58
  }
62
59
  });
63
- Object.defineProperty(subClass, "prototype", {
64
- writable: false
65
- });
66
60
  if (superClass) _setPrototypeOf(subClass, superClass);
67
61
  }
68
62
 
@@ -121,8 +115,6 @@ function _assertThisInitialized(self) {
121
115
  function _possibleConstructorReturn(self, call) {
122
116
  if (call && (typeof call === "object" || typeof call === "function")) {
123
117
  return call;
124
- } else if (call !== void 0) {
125
- throw new TypeError("Derived constructors may only return object or undefined");
126
118
  }
127
119
 
128
120
  return _assertThisInitialized(self);
@@ -156,7 +148,7 @@ function _superPropBase(object, property) {
156
148
  return object;
157
149
  }
158
150
 
159
- function _get() {
151
+ function _get(target, property, receiver) {
160
152
  if (typeof Reflect !== "undefined" && Reflect.get) {
161
153
  _get = Reflect.get;
162
154
  } else {
@@ -167,14 +159,14 @@ function _get() {
167
159
  var desc = Object.getOwnPropertyDescriptor(base, property);
168
160
 
169
161
  if (desc.get) {
170
- return desc.get.call(arguments.length < 3 ? target : receiver);
162
+ return desc.get.call(receiver);
171
163
  }
172
164
 
173
165
  return desc.value;
174
166
  };
175
167
  }
176
168
 
177
- return _get.apply(this, arguments);
169
+ return _get(target, property, receiver || target);
178
170
  }
179
171
 
180
172
  const API_USER_INFO_KEY = "@evergis/user-info";
@@ -1462,6 +1454,23 @@ let AccountService = /*#__PURE__*/function (_Service) {
1462
1454
  value: function removeUser(username) {
1463
1455
  return this.http.delete("/account/user/" + username, null).then(() => {});
1464
1456
  }
1457
+ /**
1458
+ * No description
1459
+ *
1460
+ * @tags Account
1461
+ * @name CreateNamespace
1462
+ * @operationId AccountController_CreateNamespace
1463
+ * @summary Creates a new namespace.
1464
+ * @request POST:/account/namespace
1465
+ * @secure
1466
+ * @response `200` OK
1467
+ */
1468
+
1469
+ }, {
1470
+ key: "createNamespace",
1471
+ value: function createNamespace(query) {
1472
+ return this.http.post("/account/namespace", null, query).json();
1473
+ }
1465
1474
  /**
1466
1475
  * No description
1467
1476
  *
@@ -2599,282 +2608,6 @@ let Eql = /*#__PURE__*/function (_EqlService) {
2599
2608
  return _createClass(Eql);
2600
2609
  }(EqlService);
2601
2610
 
2602
- /**
2603
- * @title Spatial Processing Core API
2604
- * @version 1.5.1.0
2605
- * @baseUrl /sp
2606
- */
2607
-
2608
- let ExternalProvidersService = /*#__PURE__*/function (_Service) {
2609
- _inherits(ExternalProvidersService, _Service);
2610
-
2611
- var _super = /*#__PURE__*/_createSuper(ExternalProvidersService);
2612
-
2613
- function ExternalProvidersService() {
2614
- _classCallCheck(this, ExternalProvidersService);
2615
-
2616
- return _super.apply(this, arguments);
2617
- }
2618
-
2619
- _createClass(ExternalProvidersService, [{
2620
- key: "vkLogin",
2621
- value:
2622
- /**
2623
- * No description
2624
- *
2625
- * @tags ExternalProviders
2626
- * @name VkLogin
2627
- * @operationId ExternalProvidersController_VkLogin
2628
- * @summary The external login by vk.
2629
- * @request GET:/account/external/login/vk
2630
- * @secure
2631
- * @response `200` OK
2632
- */
2633
- function vkLogin() {
2634
- return this.http.createUrl("/account/external/login/vk");
2635
- }
2636
- /**
2637
- * No description
2638
- *
2639
- * @tags ExternalProviders
2640
- * @name GoogleLogin
2641
- * @operationId ExternalProvidersController_GoogleLogin
2642
- * @summary The external login by google.
2643
- * @request GET:/account/external/login/google
2644
- * @secure
2645
- * @response `200` OK
2646
- */
2647
-
2648
- }, {
2649
- key: "googleLogin",
2650
- value: function googleLogin() {
2651
- return this.http.createUrl("/account/external/login/google");
2652
- }
2653
- /**
2654
- * No description
2655
- *
2656
- * @tags ExternalProviders
2657
- * @name FacebookLogin
2658
- * @operationId ExternalProvidersController_FacebookLogin
2659
- * @summary The external login by facebook.
2660
- * @request GET:/account/external/login/facebook
2661
- * @secure
2662
- * @response `200` OK
2663
- */
2664
-
2665
- }, {
2666
- key: "facebookLogin",
2667
- value: function facebookLogin() {
2668
- return this.http.createUrl("/account/external/login/facebook");
2669
- }
2670
- /**
2671
- * No description
2672
- *
2673
- * @tags ExternalProviders
2674
- * @name LoginCallback
2675
- * @operationId ExternalProvidersController_LoginCallback
2676
- * @summary The external login callback.
2677
- * @request GET:/account/external/login/callback
2678
- * @secure
2679
- * @response `200` OK
2680
- */
2681
-
2682
- }, {
2683
- key: "loginCallback",
2684
- value: function loginCallback() {
2685
- return this.http.get("/account/external/login/callback").then(() => {});
2686
- }
2687
- /**
2688
- * No description
2689
- *
2690
- * @tags ExternalProviders
2691
- * @name UnbindVk
2692
- * @operationId ExternalProvidersController_UnbindVk
2693
- * @summary Unbind external login from current user account (google).
2694
- * @request DELETE:/account/external/unbind/vk
2695
- * @secure
2696
- * @response `200` OK
2697
- */
2698
-
2699
- }, {
2700
- key: "unbindVk",
2701
- value: function unbindVk() {
2702
- return this.http.delete("/account/external/unbind/vk", null).then(() => {});
2703
- }
2704
- /**
2705
- * No description
2706
- *
2707
- * @tags ExternalProviders
2708
- * @name UnbindGoogle
2709
- * @operationId ExternalProvidersController_UnbindGoogle
2710
- * @summary Unbind external login from current user account (google).
2711
- * @request DELETE:/account/external/unbind/google
2712
- * @secure
2713
- * @response `200` OK
2714
- */
2715
-
2716
- }, {
2717
- key: "unbindGoogle",
2718
- value: function unbindGoogle() {
2719
- return this.http.delete("/account/external/unbind/google", null).then(() => {});
2720
- }
2721
- /**
2722
- * No description
2723
- *
2724
- * @tags ExternalProviders
2725
- * @name UnbindFacebook
2726
- * @operationId ExternalProvidersController_UnbindFacebook
2727
- * @summary Unbind external login from current user account (google).
2728
- * @request DELETE:/account/external/unbind/facebook
2729
- * @secure
2730
- * @response `200` OK
2731
- */
2732
-
2733
- }, {
2734
- key: "unbindFacebook",
2735
- value: function unbindFacebook() {
2736
- return this.http.delete("/account/external/unbind/facebook", null).then(() => {});
2737
- }
2738
- /**
2739
- * No description
2740
- *
2741
- * @tags ExternalProviders
2742
- * @name BindVk
2743
- * @operationId ExternalProvidersController_BindVk
2744
- * @summary The external login by vk.
2745
- * @request GET:/account/external/bind/vk
2746
- * @secure
2747
- * @response `200` OK
2748
- */
2749
-
2750
- }, {
2751
- key: "bindVk",
2752
- value: function bindVk() {
2753
- return this.http.createUrl("/account/external/bind/vk");
2754
- }
2755
- /**
2756
- * No description
2757
- *
2758
- * @tags ExternalProviders
2759
- * @name BindGoogle
2760
- * @operationId ExternalProvidersController_BindGoogle
2761
- * @summary The external login by vk.
2762
- * @request GET:/account/external/bind/google
2763
- * @secure
2764
- * @response `200` OK
2765
- */
2766
-
2767
- }, {
2768
- key: "bindGoogle",
2769
- value: function bindGoogle() {
2770
- return this.http.createUrl("/account/external/bind/google");
2771
- }
2772
- /**
2773
- * No description
2774
- *
2775
- * @tags ExternalProviders
2776
- * @name BindFacebook
2777
- * @operationId ExternalProvidersController_BindFacebook
2778
- * @summary The external login by vk.
2779
- * @request GET:/account/external/bind/facebook
2780
- * @secure
2781
- * @response `200` OK
2782
- */
2783
-
2784
- }, {
2785
- key: "bindFacebook",
2786
- value: function bindFacebook() {
2787
- return this.http.createUrl("/account/external/bind/facebook");
2788
- }
2789
- /**
2790
- * No description
2791
- *
2792
- * @tags ExternalProviders
2793
- * @name BindCallback
2794
- * @operationId ExternalProvidersController_BindCallback
2795
- * @summary Bind external login to current user account.
2796
- * @request GET:/account/external/bind/callback
2797
- * @secure
2798
- * @response `200` OK
2799
- */
2800
-
2801
- }, {
2802
- key: "bindCallback",
2803
- value: function bindCallback() {
2804
- return this.http.get("/account/external/bind/callback").then(() => {});
2805
- }
2806
- }]);
2807
-
2808
- return ExternalProvidersService;
2809
- }(Service);
2810
-
2811
- let External = /*#__PURE__*/function (_ExternalProvidersSer) {
2812
- _inherits(External, _ExternalProvidersSer);
2813
-
2814
- var _super = /*#__PURE__*/_createSuper(External);
2815
-
2816
- function External() {
2817
- _classCallCheck(this, External);
2818
-
2819
- return _super.apply(this, arguments);
2820
- }
2821
-
2822
- _createClass(External, [{
2823
- key: "login",
2824
- value: function login(network) {
2825
- switch (network) {
2826
- case 'vk':
2827
- return this.vkLogin();
2828
-
2829
- case 'google':
2830
- return this.googleLogin();
2831
-
2832
- case 'facebook':
2833
- return this.facebookLogin();
2834
-
2835
- default:
2836
- return '';
2837
- }
2838
- }
2839
- }, {
2840
- key: "bind",
2841
- value: function bind(network) {
2842
- switch (network) {
2843
- case 'vk':
2844
- return this.bindVk();
2845
-
2846
- case 'google':
2847
- return this.bindGoogle();
2848
-
2849
- case 'facebook':
2850
- return this.bindFacebook();
2851
-
2852
- default:
2853
- return '';
2854
- }
2855
- }
2856
- }, {
2857
- key: "unbind",
2858
- value: function unbind(network) {
2859
- switch (network) {
2860
- case 'vk':
2861
- return this.unbindVk();
2862
-
2863
- case 'google':
2864
- return this.unbindGoogle();
2865
-
2866
- case 'facebook':
2867
- return this.unbindFacebook();
2868
-
2869
- default:
2870
- return '';
2871
- }
2872
- }
2873
- }]);
2874
-
2875
- return External;
2876
- }(ExternalProvidersService);
2877
-
2878
2611
  /**
2879
2612
  * @title Spatial Processing Core API
2880
2613
  * @version 1.5.1.0
@@ -2959,14 +2692,7 @@ let Feedback = /*#__PURE__*/function (_FeedbackService) {
2959
2692
  return _super.apply(this, arguments);
2960
2693
  }
2961
2694
 
2962
- _createClass(Feedback, [{
2963
- key: "postFeedback",
2964
- value: function postFeedback(query, data) {
2965
- return this.feedback(query, data);
2966
- }
2967
- }]);
2968
-
2969
- return Feedback;
2695
+ return _createClass(Feedback);
2970
2696
  }(FeedbackService);
2971
2697
 
2972
2698
  let FileUpload = /*#__PURE__*/function (_CatalogService) {
@@ -3207,76 +2933,6 @@ let Geocode = /*#__PURE__*/function (_GeocodeService) {
3207
2933
  return Geocode;
3208
2934
  }(GeocodeService);
3209
2935
 
3210
- /**
3211
- * @title Spatial Processing Core API
3212
- * @version 1.5.1.0
3213
- * @baseUrl /sp
3214
- */
3215
-
3216
- let IceRouterService = /*#__PURE__*/function (_Service) {
3217
- _inherits(IceRouterService, _Service);
3218
-
3219
- var _super = /*#__PURE__*/_createSuper(IceRouterService);
3220
-
3221
- function IceRouterService() {
3222
- _classCallCheck(this, IceRouterService);
3223
-
3224
- return _super.apply(this, arguments);
3225
- }
3226
-
3227
- _createClass(IceRouterService, [{
3228
- key: "startTask",
3229
- value:
3230
- /**
3231
- * No description
3232
- *
3233
- * @tags IceRouter
3234
- * @name StartTask
3235
- * @operationId IceRouterController_StartTask
3236
- * @summary Start route build between start and end points.
3237
- * @request POST:/ice-router/tasks
3238
- * @secure
3239
- * @response `200` OK
3240
- */
3241
- function startTask(data) {
3242
- return this.http.post("/ice-router/tasks", data).text();
3243
- }
3244
- /**
3245
- * No description
3246
- *
3247
- * @tags IceRouter
3248
- * @name GetResult
3249
- * @operationId IceRouterController_GetResult
3250
- * @summary Get task result.
3251
- * @request GET:/ice-router/tasks/{id}
3252
- * @secure
3253
- * @response `200` OK
3254
- */
3255
-
3256
- }, {
3257
- key: "getResult",
3258
- value: function getResult(id) {
3259
- return this.http.get("/ice-router/tasks/" + id).json();
3260
- }
3261
- }]);
3262
-
3263
- return IceRouterService;
3264
- }(Service);
3265
-
3266
- let IceRouter = /*#__PURE__*/function (_IceRouterService) {
3267
- _inherits(IceRouter, _IceRouterService);
3268
-
3269
- var _super = /*#__PURE__*/_createSuper(IceRouter);
3270
-
3271
- function IceRouter() {
3272
- _classCallCheck(this, IceRouter);
3273
-
3274
- return _super.apply(this, arguments);
3275
- }
3276
-
3277
- return _createClass(IceRouter);
3278
- }(IceRouterService);
3279
-
3280
2936
  /**
3281
2937
  * @title Spatial Processing Core API
3282
2938
  * @version 1.5.1.0
@@ -3486,21 +3142,18 @@ let Import = /*#__PURE__*/function (_ImportService) {
3486
3142
  const _excluded$3 = ["name"],
3487
3143
  _excluded2$2 = ["name"],
3488
3144
  _excluded3$2 = ["name", "id"],
3489
- _excluded4$1 = ["name", "id"],
3490
- _excluded5$1 = ["name", "id"],
3491
- _excluded6$1 = ["name", "x", "y", "z"],
3492
- _excluded7 = ["name", "x", "y", "z", "format"],
3493
- _excluded8 = ["name", "x", "y", "z", "dpi", "format"],
3145
+ _excluded4$1 = ["name", "x", "y", "z"],
3146
+ _excluded5$1 = ["name", "x", "y", "z", "format"],
3147
+ _excluded6$1 = ["name", "x", "y", "z", "dpi", "format"],
3148
+ _excluded7 = ["name"],
3149
+ _excluded8 = ["name"],
3494
3150
  _excluded9 = ["name"],
3495
3151
  _excluded10 = ["name"],
3496
3152
  _excluded11 = ["name"],
3497
3153
  _excluded12 = ["name"],
3498
3154
  _excluded13 = ["name"],
3499
- _excluded14 = ["name"],
3500
- _excluded15 = ["name"],
3501
- _excluded16 = ["name"],
3502
- _excluded17 = ["layerName"],
3503
- _excluded18 = ["name", "id"];
3155
+ _excluded14 = ["layerName"],
3156
+ _excluded15 = ["name", "id"];
3504
3157
  /**
3505
3158
  * @title Spatial Processing Core API
3506
3159
  * @version 1.5.1.0
@@ -4055,52 +3708,6 @@ let LayersService = /*#__PURE__*/function (_Service) {
4055
3708
 
4056
3709
  return this.http.get("/layers/" + name + "/features/" + id, query).json();
4057
3710
  }
4058
- /**
4059
- * No description
4060
- *
4061
- * @tags Layers
4062
- * @name Unite
4063
- * @operationId LayersController_Unite
4064
- * @summary Provides method to unite feature geometry with given id and given geometry. Updated feature will be save in db storage. Result of the operation will be updated layer info.
4065
- * @request POST:/layers/{name}/features/{id}/unite
4066
- * @secure
4067
- * @response `200` OK
4068
- */
4069
-
4070
- }, {
4071
- key: "unite",
4072
- value: function unite(_ref4, data) {
4073
- let {
4074
- name,
4075
- id
4076
- } = _ref4,
4077
- query = _objectWithoutPropertiesLoose(_ref4, _excluded4$1);
4078
-
4079
- return this.http.post("/layers/" + name + "/features/" + id + "/unite", data, query).json();
4080
- }
4081
- /**
4082
- * No description
4083
- *
4084
- * @tags Layers
4085
- * @name Subtract
4086
- * @operationId LayersController_Subtract
4087
- * @summary Provides method to subtract feature geometry with given id and given geometry. Updated feature will be save in db storage. Result of the operation will be updated layer info with feature id.
4088
- * @request POST:/layers/{name}/features/{id}/subtract
4089
- * @secure
4090
- * @response `200` OK
4091
- */
4092
-
4093
- }, {
4094
- key: "subtract",
4095
- value: function subtract(_ref5, data) {
4096
- let {
4097
- name,
4098
- id
4099
- } = _ref5,
4100
- query = _objectWithoutPropertiesLoose(_ref5, _excluded5$1);
4101
-
4102
- return this.http.post("/layers/" + name + "/features/" + id + "/subtract", data, query).json();
4103
- }
4104
3711
  /**
4105
3712
  * No description
4106
3713
  *
@@ -4115,14 +3722,14 @@ let LayersService = /*#__PURE__*/function (_Service) {
4115
3722
 
4116
3723
  }, {
4117
3724
  key: "getTilesLayerImage",
4118
- value: function getTilesLayerImage(_ref6) {
3725
+ value: function getTilesLayerImage(_ref4) {
4119
3726
  let {
4120
3727
  name,
4121
3728
  x,
4122
3729
  y,
4123
3730
  z
4124
- } = _ref6,
4125
- query = _objectWithoutPropertiesLoose(_ref6, _excluded6$1);
3731
+ } = _ref4,
3732
+ query = _objectWithoutPropertiesLoose(_ref4, _excluded4$1);
4126
3733
 
4127
3734
  return this.http.createUrl("/layers/" + name + "/tile/" + z + "/" + x + "/" + y, query);
4128
3735
  }
@@ -4140,15 +3747,15 @@ let LayersService = /*#__PURE__*/function (_Service) {
4140
3747
 
4141
3748
  }, {
4142
3749
  key: "getTilesLayerImage1",
4143
- value: function getTilesLayerImage1(_ref7) {
3750
+ value: function getTilesLayerImage1(_ref5) {
4144
3751
  let {
4145
3752
  name,
4146
3753
  x,
4147
3754
  y,
4148
3755
  z,
4149
3756
  format
4150
- } = _ref7,
4151
- query = _objectWithoutPropertiesLoose(_ref7, _excluded7);
3757
+ } = _ref5,
3758
+ query = _objectWithoutPropertiesLoose(_ref5, _excluded5$1);
4152
3759
 
4153
3760
  return this.http.createUrl("/layers/" + name + "/tile/" + z + "/" + x + "/" + y + "." + format, query);
4154
3761
  }
@@ -4166,7 +3773,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
4166
3773
 
4167
3774
  }, {
4168
3775
  key: "getTilesLayerImageWithFormatAndDpi",
4169
- value: function getTilesLayerImageWithFormatAndDpi(_ref8) {
3776
+ value: function getTilesLayerImageWithFormatAndDpi(_ref6) {
4170
3777
  let {
4171
3778
  name,
4172
3779
  x,
@@ -4174,8 +3781,8 @@ let LayersService = /*#__PURE__*/function (_Service) {
4174
3781
  z,
4175
3782
  dpi,
4176
3783
  format
4177
- } = _ref8,
4178
- query = _objectWithoutPropertiesLoose(_ref8, _excluded8);
3784
+ } = _ref6,
3785
+ query = _objectWithoutPropertiesLoose(_ref6, _excluded6$1);
4179
3786
 
4180
3787
  return this.http.createUrl("/layers/" + name + "/tile/" + z + "/" + x + "/" + y + "@" + dpi + "x." + format, query);
4181
3788
  }
@@ -4183,45 +3790,23 @@ let LayersService = /*#__PURE__*/function (_Service) {
4183
3790
  * No description
4184
3791
  *
4185
3792
  * @tags Layers
4186
- * @name GetLayerImage
4187
- * @operationId LayersController_GetLayerImage
4188
- * @summary Renders the layer to the image of the requested size.
4189
- * @request GET:/layers/{name}/export
3793
+ * @name GetLayerExtent
3794
+ * @operationId LayersController_GetLayerExtent
3795
+ * @summary Returns the extent of the layer.
3796
+ * @request GET:/layers/{name}/extent
4190
3797
  * @secure
4191
3798
  * @response `200` OK
4192
3799
  */
4193
3800
 
4194
3801
  }, {
4195
- key: "getLayerImage",
4196
- value: function getLayerImage(_ref9) {
3802
+ key: "getLayerExtent",
3803
+ value: function getLayerExtent(_ref7) {
4197
3804
  let {
4198
3805
  name
4199
- } = _ref9,
4200
- query = _objectWithoutPropertiesLoose(_ref9, _excluded9);
3806
+ } = _ref7,
3807
+ query = _objectWithoutPropertiesLoose(_ref7, _excluded7);
4201
3808
 
4202
- return this.http.createUrl("/layers/" + name + "/export", query);
4203
- }
4204
- /**
4205
- * No description
4206
- *
4207
- * @tags Layers
4208
- * @name GetLayerExtent
4209
- * @operationId LayersController_GetLayerExtent
4210
- * @summary Returns the extent of the layer.
4211
- * @request GET:/layers/{name}/extent
4212
- * @secure
4213
- * @response `200` OK
4214
- */
4215
-
4216
- }, {
4217
- key: "getLayerExtent",
4218
- value: function getLayerExtent(_ref10) {
4219
- let {
4220
- name
4221
- } = _ref10,
4222
- query = _objectWithoutPropertiesLoose(_ref10, _excluded10);
4223
-
4224
- return this.http.get("/layers/" + name + "/extent", query).json();
3809
+ return this.http.get("/layers/" + name + "/extent", query).json();
4225
3810
  }
4226
3811
  /**
4227
3812
  * No description
@@ -4237,11 +3822,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
4237
3822
 
4238
3823
  }, {
4239
3824
  key: "deleteFeatures",
4240
- value: function deleteFeatures(_ref11) {
3825
+ value: function deleteFeatures(_ref8) {
4241
3826
  let {
4242
3827
  name
4243
- } = _ref11,
4244
- query = _objectWithoutPropertiesLoose(_ref11, _excluded11);
3828
+ } = _ref8,
3829
+ query = _objectWithoutPropertiesLoose(_ref8, _excluded8);
4245
3830
 
4246
3831
  return this.http.delete("/layers/" + name + "/features/deleteByIds", null, query).json();
4247
3832
  }
@@ -4259,11 +3844,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
4259
3844
 
4260
3845
  }, {
4261
3846
  key: "deleteByCondition",
4262
- value: function deleteByCondition(_ref12) {
3847
+ value: function deleteByCondition(_ref9) {
4263
3848
  let {
4264
3849
  name
4265
- } = _ref12,
4266
- query = _objectWithoutPropertiesLoose(_ref12, _excluded12);
3850
+ } = _ref9,
3851
+ query = _objectWithoutPropertiesLoose(_ref9, _excluded9);
4267
3852
 
4268
3853
  return this.http.delete("/layers/" + name + "/features/deleteByCondition", null, query).json();
4269
3854
  }
@@ -4281,11 +3866,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
4281
3866
 
4282
3867
  }, {
4283
3868
  key: "classify",
4284
- value: function classify(_ref13) {
3869
+ value: function classify(_ref10) {
4285
3870
  let {
4286
3871
  name
4287
- } = _ref13,
4288
- query = _objectWithoutPropertiesLoose(_ref13, _excluded13);
3872
+ } = _ref10,
3873
+ query = _objectWithoutPropertiesLoose(_ref10, _excluded10);
4289
3874
 
4290
3875
  return this.http.get("/layers/" + name + "/classify", query).json();
4291
3876
  }
@@ -4303,11 +3888,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
4303
3888
 
4304
3889
  }, {
4305
3890
  key: "distincts",
4306
- value: function distincts(_ref14) {
3891
+ value: function distincts(_ref11) {
4307
3892
  let {
4308
3893
  name
4309
- } = _ref14,
4310
- query = _objectWithoutPropertiesLoose(_ref14, _excluded14);
3894
+ } = _ref11,
3895
+ query = _objectWithoutPropertiesLoose(_ref11, _excluded11);
4311
3896
 
4312
3897
  return this.http.get("/layers/" + name + "/distincts", query).json();
4313
3898
  }
@@ -4325,11 +3910,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
4325
3910
 
4326
3911
  }, {
4327
3912
  key: "aggregateAttribute",
4328
- value: function aggregateAttribute(_ref15) {
3913
+ value: function aggregateAttribute(_ref12) {
4329
3914
  let {
4330
3915
  name
4331
- } = _ref15,
4332
- query = _objectWithoutPropertiesLoose(_ref15, _excluded15);
3916
+ } = _ref12,
3917
+ query = _objectWithoutPropertiesLoose(_ref12, _excluded12);
4333
3918
 
4334
3919
  return this.http.get("/layers/" + name + "/aggregate-values", query).json();
4335
3920
  }
@@ -4347,11 +3932,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
4347
3932
 
4348
3933
  }, {
4349
3934
  key: "getFilteredFeaturesCount1",
4350
- value: function getFilteredFeaturesCount1(_ref16) {
3935
+ value: function getFilteredFeaturesCount1(_ref13) {
4351
3936
  let {
4352
3937
  name
4353
- } = _ref16,
4354
- query = _objectWithoutPropertiesLoose(_ref16, _excluded16);
3938
+ } = _ref13,
3939
+ query = _objectWithoutPropertiesLoose(_ref13, _excluded13);
4355
3940
 
4356
3941
  return this.http.get("/layers/" + name + "/features/count", query).json();
4357
3942
  }
@@ -4403,11 +3988,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
4403
3988
 
4404
3989
  }, {
4405
3990
  key: "validateExpression",
4406
- value: function validateExpression(_ref17) {
3991
+ value: function validateExpression(_ref14) {
4407
3992
  let {
4408
3993
  layerName
4409
- } = _ref17,
4410
- query = _objectWithoutPropertiesLoose(_ref17, _excluded17);
3994
+ } = _ref14,
3995
+ query = _objectWithoutPropertiesLoose(_ref14, _excluded14);
4411
3996
 
4412
3997
  return this.http.get("/layers/" + layerName + "/validateExpression", query).json();
4413
3998
  }
@@ -4442,100 +4027,15 @@ let LayersService = /*#__PURE__*/function (_Service) {
4442
4027
 
4443
4028
  }, {
4444
4029
  key: "getRasterMeta",
4445
- value: function getRasterMeta(_ref18) {
4030
+ value: function getRasterMeta(_ref15) {
4446
4031
  let {
4447
4032
  name,
4448
4033
  id
4449
- } = _ref18,
4450
- query = _objectWithoutPropertiesLoose(_ref18, _excluded18);
4034
+ } = _ref15,
4035
+ query = _objectWithoutPropertiesLoose(_ref15, _excluded15);
4451
4036
 
4452
4037
  return this.http.get("/layers/" + name + "/" + id + "/metadata", query).json();
4453
4038
  }
4454
- /**
4455
- * No description
4456
- *
4457
- * @tags Layers
4458
- * @name CreateRoute
4459
- * @operationId LayersController_CreateRoute
4460
- * @summary Create new route (feature) from source features.
4461
- * @request POST:/layers/{name}/createRoute
4462
- * @secure
4463
- * @response `200` OK
4464
- */
4465
-
4466
- }, {
4467
- key: "createRoute",
4468
- value: function createRoute(name, data) {
4469
- return this.http.post("/layers/" + name + "/createRoute", data).json();
4470
- }
4471
- /**
4472
- * No description
4473
- *
4474
- * @tags Layers
4475
- * @name ApplyStyle
4476
- * @operationId LayersController_ApplyStyle
4477
- * @summary Create data layout and image layout for given style.
4478
- * @request PUT:/layers/{name}/style
4479
- * @secure
4480
- * @response `200` OK
4481
- */
4482
-
4483
- }, {
4484
- key: "applyStyle",
4485
- value: function applyStyle(name, data) {
4486
- return this.http.put("/layers/" + name + "/style", data).then(() => {});
4487
- }
4488
- /**
4489
- * No description
4490
- *
4491
- * @tags Layers
4492
- * @name GetStyle
4493
- * @operationId LayersController_GetStyle
4494
- * @summary Get style of the given layer.
4495
- * @request GET:/layers/{name}/style
4496
- * @secure
4497
- * @response `200` OK
4498
- */
4499
-
4500
- }, {
4501
- key: "getStyle",
4502
- value: function getStyle(name) {
4503
- return this.http.get("/layers/" + name + "/style").json();
4504
- }
4505
- /**
4506
- * No description
4507
- *
4508
- * @tags Layers
4509
- * @name GetImageLayout
4510
- * @operationId LayersController_GetImageLayout
4511
- * @summary Get date layout.
4512
- * @request GET:/layers/{name}/style/sprite.png
4513
- * @secure
4514
- * @response `200` OK
4515
- */
4516
-
4517
- }, {
4518
- key: "getImageLayout",
4519
- value: function getImageLayout(name) {
4520
- return this.http.get("/layers/" + name + "/style/sprite.png").blob();
4521
- }
4522
- /**
4523
- * No description
4524
- *
4525
- * @tags Layers
4526
- * @name GetDataLayout
4527
- * @operationId LayersController_GetDataLayout
4528
- * @summary Get image layout.
4529
- * @request GET:/layers/{name}/style/sprite.json
4530
- * @secure
4531
- * @response `200` OK
4532
- */
4533
-
4534
- }, {
4535
- key: "getDataLayout",
4536
- value: function getDataLayout(name) {
4537
- return this.http.get("/layers/" + name + "/style/sprite.json").then(() => {});
4538
- }
4539
4039
  /**
4540
4040
  * No description
4541
4041
  *
@@ -5032,8 +4532,8 @@ let Notification = /*#__PURE__*/function (_NotificationService) {
5032
4532
  || event.code === 4002
5033
4533
  /* InvalidSession */
5034
4534
  ) {
5035
- _this.connectStatus = ConnectionStatus.SessionClosed;
5036
- } else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
4535
+ _this.connectStatus = ConnectionStatus.SessionClosed;
4536
+ } else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
5037
4537
  _this.connectStatus = ConnectionStatus.Break;
5038
4538
  _this.reconnectTries++;
5039
4539
 
@@ -5182,144 +4682,6 @@ let PortalSettings = /*#__PURE__*/function (_ClientSettingsServic) {
5182
4682
  return PortalSettings;
5183
4683
  }(ClientSettingsService);
5184
4684
 
5185
- /**
5186
- * @title Spatial Processing Core API
5187
- * @version 1.5.1.0
5188
- * @baseUrl /sp
5189
- */
5190
-
5191
- let PrintService = /*#__PURE__*/function (_Service) {
5192
- _inherits(PrintService, _Service);
5193
-
5194
- var _super = /*#__PURE__*/_createSuper(PrintService);
5195
-
5196
- function PrintService() {
5197
- _classCallCheck(this, PrintService);
5198
-
5199
- return _super.apply(this, arguments);
5200
- }
5201
-
5202
- _createClass(PrintService, [{
5203
- key: "print",
5204
- value:
5205
- /**
5206
- * No description
5207
- *
5208
- * @tags Print
5209
- * @name Print
5210
- * @operationId PrintController_Print
5211
- * @summary Print map with template.
5212
- * @request POST:/print/print
5213
- * @secure
5214
- * @response `200` OK
5215
- */
5216
- function print(data) {
5217
- return this.http.post("/print/print", data).then(() => {});
5218
- }
5219
- /**
5220
- * No description
5221
- *
5222
- * @tags Print
5223
- * @name PrintToHtml
5224
- * @operationId PrintController_PrintToHtml
5225
- * @summary Print map with template to html string.
5226
- * @request POST:/print/printHtml
5227
- * @secure
5228
- * @response `200` OK
5229
- */
5230
-
5231
- }, {
5232
- key: "printToHtml",
5233
- value: function printToHtml(data) {
5234
- return this.http.post("/print/printHtml", data).text();
5235
- }
5236
- /**
5237
- * No description
5238
- *
5239
- * @tags Print
5240
- * @name UploadTemplate
5241
- * @operationId PrintController_UploadTemplate
5242
- * @summary Upload template on server.
5243
- * @request POST:/print/templates
5244
- * @secure
5245
- * @response `200` OK
5246
- */
5247
-
5248
- }, {
5249
- key: "uploadTemplate",
5250
- value: function uploadTemplate(query, data) {
5251
- return this.http.post("/print/templates", toFormData(data), query).then(() => {});
5252
- }
5253
- /**
5254
- * No description
5255
- *
5256
- * @tags Print
5257
- * @name GetTemplates
5258
- * @operationId PrintController_GetTemplates
5259
- * @summary Get all templates from server.
5260
- * @request GET:/print/templates
5261
- * @secure
5262
- * @response `200` OK
5263
- */
5264
-
5265
- }, {
5266
- key: "getTemplates",
5267
- value: function getTemplates() {
5268
- return this.http.get("/print/templates").json();
5269
- }
5270
- /**
5271
- * No description
5272
- *
5273
- * @tags Print
5274
- * @name DeleteTemplate
5275
- * @operationId PrintController_DeleteTemplate
5276
- * @summary Delete template from server.
5277
- * @request DELETE:/print/templates/{name}
5278
- * @secure
5279
- * @response `200` OK
5280
- */
5281
-
5282
- }, {
5283
- key: "deleteTemplate",
5284
- value: function deleteTemplate(name) {
5285
- return this.http.delete("/print/templates/" + name, null).then(() => {});
5286
- }
5287
- /**
5288
- * No description
5289
- *
5290
- * @tags Print
5291
- * @name GetTemplate
5292
- * @operationId PrintController_GetTemplate
5293
- * @summary Get template from server.
5294
- * @request GET:/print/templates/{name}
5295
- * @secure
5296
- * @response `200` OK
5297
- */
5298
-
5299
- }, {
5300
- key: "getTemplate",
5301
- value: function getTemplate(name) {
5302
- return this.http.get("/print/templates/" + name).text();
5303
- }
5304
- }]);
5305
-
5306
- return PrintService;
5307
- }(Service);
5308
-
5309
- let Print = /*#__PURE__*/function (_PrintService) {
5310
- _inherits(Print, _PrintService);
5311
-
5312
- var _super = /*#__PURE__*/_createSuper(Print);
5313
-
5314
- function Print() {
5315
- _classCallCheck(this, Print);
5316
-
5317
- return _super.apply(this, arguments);
5318
- }
5319
-
5320
- return _createClass(Print);
5321
- }(PrintService);
5322
-
5323
4685
  const _excluded$4 = ["name"];
5324
4686
  /**
5325
4687
  * @title Spatial Processing Core API
@@ -6097,12 +5459,12 @@ let Resources = /*#__PURE__*/function () {
6097
5459
  }, {
6098
5460
  key: "getDependentNames",
6099
5461
  value: function getDependentNames(deps, depType) {
6100
- return deps.filter(_ref => {
5462
+ return deps.filter((_ref) => {
6101
5463
  let {
6102
5464
  type
6103
5465
  } = _ref;
6104
5466
  return type === depType;
6105
- }).map(_ref2 => {
5467
+ }).map((_ref2) => {
6106
5468
  let {
6107
5469
  name
6108
5470
  } = _ref2;
@@ -6418,28 +5780,11 @@ let StatisticService = /*#__PURE__*/function (_Service) {
6418
5780
  * @name StatisticsDb
6419
5781
  * @operationId StatisticController_StatisticsDb
6420
5782
  * @summary Calculates statistics for layer attribute.
6421
- * @request GET:/statistics
6422
- * @secure
6423
- * @response `200` OK
6424
- */
6425
- function statisticsDb(query) {
6426
- return this.http.get("/statistics", query).json();
6427
- }
6428
- /**
6429
- * No description
6430
- *
6431
- * @tags Statistic
6432
- * @name StatisticsDb1
6433
- * @operationId StatisticController_StatisticsDb_1
6434
- * @summary Calculates statistics for layer attribute.
6435
5783
  * @request POST:/statistics
6436
5784
  * @secure
6437
5785
  * @response `200` OK
6438
5786
  */
6439
-
6440
- }, {
6441
- key: "statisticsDb1",
6442
- value: function statisticsDb1(data) {
5787
+ function statisticsDb(data) {
6443
5788
  return this.http.post("/statistics", data).json();
6444
5789
  }
6445
5790
  /**
@@ -6449,31 +5794,14 @@ let StatisticService = /*#__PURE__*/function (_Service) {
6449
5794
  * @name Classify
6450
5795
  * @operationId StatisticController_Classify
6451
5796
  * @summary Returns the classified attribute values that correspond to the given number of classes and given condition.
6452
- * @request GET:/statistics/classify
6453
- * @secure
6454
- * @response `200` OK
6455
- */
6456
-
6457
- }, {
6458
- key: "classify",
6459
- value: function classify(query) {
6460
- return this.http.get("/statistics/classify", query).json();
6461
- }
6462
- /**
6463
- * No description
6464
- *
6465
- * @tags Statistic
6466
- * @name Classify1
6467
- * @operationId StatisticController_Classify_1
6468
- * @summary Returns the classified attribute values that correspond to the given number of classes and given condition.
6469
5797
  * @request POST:/statistics/classify
6470
5798
  * @secure
6471
5799
  * @response `200` OK
6472
5800
  */
6473
5801
 
6474
5802
  }, {
6475
- key: "classify1",
6476
- value: function classify1(data) {
5803
+ key: "classify",
5804
+ value: function classify(data) {
6477
5805
  return this.http.post("/statistics/classify", data).json();
6478
5806
  }
6479
5807
  /**
@@ -6483,31 +5811,14 @@ let StatisticService = /*#__PURE__*/function (_Service) {
6483
5811
  * @name SumOfProduct
6484
5812
  * @operationId StatisticController_SumOfProduct
6485
5813
  * @summary Sum of product.
6486
- * @request GET:/statistics/sumOfProduct
6487
- * @secure
6488
- * @response `200` OK
6489
- */
6490
-
6491
- }, {
6492
- key: "sumOfProduct",
6493
- value: function sumOfProduct(query) {
6494
- return this.http.get("/statistics/sumOfProduct", query).json();
6495
- }
6496
- /**
6497
- * No description
6498
- *
6499
- * @tags Statistic
6500
- * @name SumOfProduct1
6501
- * @operationId StatisticController_SumOfProduct_1
6502
- * @summary Sum of product.
6503
5814
  * @request POST:/statistics/sumOfProduct
6504
5815
  * @secure
6505
5816
  * @response `200` OK
6506
5817
  */
6507
5818
 
6508
5819
  }, {
6509
- key: "sumOfProduct1",
6510
- value: function sumOfProduct1(data) {
5820
+ key: "sumOfProduct",
5821
+ value: function sumOfProduct(data) {
6511
5822
  return this.http.post("/statistics/sumOfProduct", data).json();
6512
5823
  }
6513
5824
  }]);
@@ -6526,248 +5837,88 @@ let Statistic = /*#__PURE__*/function (_StatisticService) {
6526
5837
  return _super.apply(this, arguments);
6527
5838
  }
6528
5839
 
6529
- _createClass(Statistic, [{
6530
- key: "getStatistic",
6531
- value: function getStatistic(params) {
6532
- return this.statisticsDb(params);
6533
- }
6534
- }, {
6535
- key: "postStatistic",
6536
- value: function postStatistic(params) {
6537
- return this.statisticsDb1(params);
6538
- }
6539
- }, {
6540
- key: "getClassify",
6541
- value: function getClassify(params) {
6542
- return this.classify(params);
6543
- }
6544
- }, {
6545
- key: "postClassify",
6546
- value: function postClassify(params) {
6547
- return this.classify1(params);
6548
- }
6549
- }]);
6550
-
6551
- return Statistic;
5840
+ return _createClass(Statistic);
6552
5841
  }(StatisticService);
6553
5842
 
5843
+ const _excluded$6 = ["name"],
5844
+ _excluded2$4 = ["name"],
5845
+ _excluded3$3 = ["name"];
6554
5846
  /**
6555
5847
  * @title Spatial Processing Core API
6556
5848
  * @version 1.5.1.0
6557
5849
  * @baseUrl /sp
6558
5850
  */
6559
5851
 
6560
- let StyleService = /*#__PURE__*/function (_Service) {
6561
- _inherits(StyleService, _Service);
5852
+ let TablesService = /*#__PURE__*/function (_Service) {
5853
+ _inherits(TablesService, _Service);
6562
5854
 
6563
- var _super = /*#__PURE__*/_createSuper(StyleService);
5855
+ var _super = /*#__PURE__*/_createSuper(TablesService);
6564
5856
 
6565
- function StyleService() {
6566
- _classCallCheck(this, StyleService);
5857
+ function TablesService() {
5858
+ _classCallCheck(this, TablesService);
6567
5859
 
6568
5860
  return _super.apply(this, arguments);
6569
5861
  }
6570
5862
 
6571
- _createClass(StyleService, [{
6572
- key: "getStyle",
5863
+ _createClass(TablesService, [{
5864
+ key: "getTableList",
6573
5865
  value:
6574
5866
  /**
6575
5867
  * No description
6576
5868
  *
6577
- * @tags StyleService
6578
- * @name GetStyle
6579
- * @operationId StyleServiceController_GetStyle
6580
- * @summary Returns the style by its id.
6581
- * @request GET:/styles/{id}
5869
+ * @tags Tables
5870
+ * @name GetTableList
5871
+ * @operationId TablesController_GetTableList
5872
+ * @summary Returns the list of tables in data service.
5873
+ * @request GET:/tables
6582
5874
  * @secure
6583
5875
  * @response `200` OK
6584
5876
  */
6585
- function getStyle(id) {
6586
- return this.http.get("/styles/" + id).json();
5877
+ function getTableList(query) {
5878
+ return this.http.get("/tables", query).json();
6587
5879
  }
6588
5880
  /**
6589
5881
  * No description
6590
5882
  *
6591
- * @tags StyleService
6592
- * @name UpdateStyle
6593
- * @operationId StyleServiceController_UpdateStyle
6594
- * @summary Replaces a style and gives it a new id.
6595
- * @request POST:/styles/{id}
5883
+ * @tags Tables
5884
+ * @name CreateTable
5885
+ * @operationId TablesController_CreateTable
5886
+ * @summary Creates a new table.
5887
+ * @request POST:/tables
6596
5888
  * @secure
6597
5889
  * @response `200` OK
6598
5890
  */
6599
5891
 
6600
5892
  }, {
6601
- key: "updateStyle",
6602
- value: function updateStyle(id, data) {
6603
- return this.http.post("/styles/" + id, data).json();
5893
+ key: "createTable",
5894
+ value: function createTable(data) {
5895
+ return this.http.post("/tables", data).json();
6604
5896
  }
6605
5897
  /**
6606
5898
  * No description
6607
5899
  *
6608
- * @tags StyleService
6609
- * @name CreateStyle
6610
- * @operationId StyleServiceController_CreateStyle
6611
- * @summary Creates a new style.
6612
- * @request POST:/styles
5900
+ * @tags Tables
5901
+ * @name DeleteResources
5902
+ * @operationId TablesController_DeleteResources
5903
+ * @summary Bulk delete resources.
5904
+ * @request DELETE:/tables
6613
5905
  * @secure
6614
5906
  * @response `200` OK
6615
5907
  */
6616
5908
 
6617
5909
  }, {
6618
- key: "createStyle",
6619
- value: function createStyle(data) {
6620
- return this.http.post("/styles", data).json();
5910
+ key: "deleteResources",
5911
+ value: function deleteResources(query) {
5912
+ return this.http.delete("/tables", null, query).json();
6621
5913
  }
6622
5914
  /**
6623
5915
  * No description
6624
5916
  *
6625
- * @tags StyleService
6626
- * @name GetAllFonts
6627
- * @operationId StyleServiceController_GetAllFonts
6628
- * @summary Gets all installed fonts.
6629
- * @request GET:/styles/fonts
6630
- * @secure
6631
- * @response `200` OK
6632
- */
6633
-
6634
- }, {
6635
- key: "getAllFonts",
6636
- value: function getAllFonts() {
6637
- return this.http.get("/styles/fonts").json();
6638
- }
6639
- /**
6640
- * No description
6641
- *
6642
- * @tags StyleService
6643
- * @name AddFont
6644
- * @operationId StyleServiceController_AddFont
6645
- * @summary Install new font.
6646
- * @request POST:/styles/fonts
6647
- * @secure
6648
- * @response `200` OK
6649
- */
6650
-
6651
- }, {
6652
- key: "addFont",
6653
- value: function addFont(data) {
6654
- return this.http.post("/styles/fonts", toFormData(data)).then(() => {});
6655
- }
6656
- /**
6657
- * No description
6658
- *
6659
- * @tags StyleService
6660
- * @name RemoveFont
6661
- * @operationId StyleServiceController_RemoveFont
6662
- * @summary Remove installed font.
6663
- * @request DELETE:/styles/fonts
6664
- * @secure
6665
- * @response `200` OK
6666
- */
6667
-
6668
- }, {
6669
- key: "removeFont",
6670
- value: function removeFont(query) {
6671
- return this.http.delete("/styles/fonts", null, query).then(() => {});
6672
- }
6673
- }]);
6674
-
6675
- return StyleService;
6676
- }(Service);
6677
-
6678
- let Styles = /*#__PURE__*/function (_StyleService) {
6679
- _inherits(Styles, _StyleService);
6680
-
6681
- var _super = /*#__PURE__*/_createSuper(Styles);
6682
-
6683
- function Styles() {
6684
- _classCallCheck(this, Styles);
6685
-
6686
- return _super.apply(this, arguments);
6687
- }
6688
-
6689
- return _createClass(Styles);
6690
- }(StyleService);
6691
-
6692
- const _excluded$6 = ["name"],
6693
- _excluded2$4 = ["name"],
6694
- _excluded3$3 = ["name"];
6695
- /**
6696
- * @title Spatial Processing Core API
6697
- * @version 1.5.1.0
6698
- * @baseUrl /sp
6699
- */
6700
-
6701
- let TablesService = /*#__PURE__*/function (_Service) {
6702
- _inherits(TablesService, _Service);
6703
-
6704
- var _super = /*#__PURE__*/_createSuper(TablesService);
6705
-
6706
- function TablesService() {
6707
- _classCallCheck(this, TablesService);
6708
-
6709
- return _super.apply(this, arguments);
6710
- }
6711
-
6712
- _createClass(TablesService, [{
6713
- key: "getTableList",
6714
- value:
6715
- /**
6716
- * No description
6717
- *
6718
- * @tags Tables
6719
- * @name GetTableList
6720
- * @operationId TablesController_GetTableList
6721
- * @summary Returns the list of tables in data service.
6722
- * @request GET:/tables
6723
- * @secure
6724
- * @response `200` OK
6725
- */
6726
- function getTableList(query) {
6727
- return this.http.get("/tables", query).json();
6728
- }
6729
- /**
6730
- * No description
6731
- *
6732
- * @tags Tables
6733
- * @name CreateTable
6734
- * @operationId TablesController_CreateTable
6735
- * @summary Creates a new table.
6736
- * @request POST:/tables
6737
- * @secure
6738
- * @response `200` OK
6739
- */
6740
-
6741
- }, {
6742
- key: "createTable",
6743
- value: function createTable(data) {
6744
- return this.http.post("/tables", data).json();
6745
- }
6746
- /**
6747
- * No description
6748
- *
6749
- * @tags Tables
6750
- * @name DeleteResources
6751
- * @operationId TablesController_DeleteResources
6752
- * @summary Bulk delete resources.
6753
- * @request DELETE:/tables
6754
- * @secure
6755
- * @response `200` OK
6756
- */
6757
-
6758
- }, {
6759
- key: "deleteResources",
6760
- value: function deleteResources(query) {
6761
- return this.http.delete("/tables", null, query).json();
6762
- }
6763
- /**
6764
- * No description
6765
- *
6766
- * @tags Tables
6767
- * @name UpdateTable
6768
- * @operationId TablesController_UpdateTable
6769
- * @summary Update exists table.
6770
- * @request PATCH:/tables/{name}
5917
+ * @tags Tables
5918
+ * @name UpdateTable
5919
+ * @operationId TablesController_UpdateTable
5920
+ * @summary Update exists table.
5921
+ * @request PATCH:/tables/{name}
6771
5922
  * @secure
6772
5923
  * @response `200` OK
6773
5924
  */
@@ -7192,19 +6343,7 @@ let VectorTiles = /*#__PURE__*/function (_VectorTileService) {
7192
6343
  return _super.apply(this, arguments);
7193
6344
  }
7194
6345
 
7195
- _createClass(VectorTiles, [{
7196
- key: "getVt",
7197
- value: function getVt(name, z, x, y) {
7198
- return this.getVectorTile({
7199
- name,
7200
- z,
7201
- x,
7202
- y
7203
- });
7204
- }
7205
- }]);
7206
-
7207
- return VectorTiles;
6346
+ return _createClass(VectorTiles);
7208
6347
  }(VectorTileService);
7209
6348
 
7210
6349
  var UrlPath;
@@ -7267,7 +6406,7 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
7267
6406
  (_request$headers = request.headers) == null ? void 0 : _request$headers.set("Authorization", "Bearer " + (token || ""));
7268
6407
  }
7269
6408
  }, ...((_hooks$beforeRequest = hooks == null ? void 0 : hooks.beforeRequest) != null ? _hooks$beforeRequest : [])],
7270
- beforeRetry: [async _ref2 => {
6409
+ beforeRetry: [async (_ref2) => {
7271
6410
  let {
7272
6411
  request,
7273
6412
  error,
@@ -7315,7 +6454,6 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
7315
6454
  _this.tables = new Tables(_this.http);
7316
6455
  _this.projects = new Projects(_this.http);
7317
6456
  _this.resources = new Resources(_this.projects, _this.layers, _this.tables);
7318
- _this.styles = new Styles(_this.http);
7319
6457
  _this.account = new Account(_this.http);
7320
6458
  _this.accountPreview = new AccountPreview(_this.http);
7321
6459
  _this.bulk = new BulkOperations(_this.http);
@@ -7325,13 +6463,9 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
7325
6463
  _this.filters = new Filters(_this.http);
7326
6464
  _this.import = new Import(_this.http);
7327
6465
  _this.geocode = new Geocode(_this.http);
7328
- _this.cameras = new Cameras(_this.http);
7329
- _this.print = new Print(_this.http);
7330
6466
  _this.tools = new Tools(_this.http);
7331
- _this.external = new External(_this.http);
7332
6467
  _this.clientSettings = new ClientSettings(_this.http);
7333
6468
  _this.portalSettings = new PortalSettings(_this.http);
7334
- _this.iceRouter = new IceRouter(_this.http);
7335
6469
  _this.statistic = new Statistic(_this.http);
7336
6470
  _this.feedback = new Feedback(_this.http);
7337
6471
  _this.vectorTiles = new VectorTiles(_this.http);
@@ -7341,6 +6475,7 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
7341
6475
  _this.queryToken = new QueryTokenAccessService(_this.http);
7342
6476
  _this.dataSource = new DataSourceService(_this.http);
7343
6477
  _this.remoteTaskManager = new RemoteTaskManager(_this.http);
6478
+ _this.cameras = new Cameras(_this.http);
7344
6479
  _this.names = new Names({
7345
6480
  account: _this.account
7346
6481
  });
@@ -7473,47 +6608,47 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
7473
6608
 
7474
6609
  /**
7475
6610
  *
7476
-
6611
+
7477
6612
  None
7478
-
6613
+
7479
6614
  Array
7480
-
6615
+
7481
6616
  Min
7482
-
6617
+
7483
6618
  Max
7484
-
6619
+
7485
6620
  Avg
7486
-
6621
+
7487
6622
  Sum
7488
-
6623
+
7489
6624
  Extent
7490
-
6625
+
7491
6626
  H3
7492
-
6627
+
7493
6628
  Count
7494
-
6629
+
7495
6630
  TotalCount
7496
-
6631
+
7497
6632
  DistinctCount
7498
-
6633
+
7499
6634
  First
7500
-
6635
+
7501
6636
  Last
7502
-
6637
+
7503
6638
  Median
7504
-
6639
+
7505
6640
  Mod
7506
-
6641
+
7507
6642
  StdDeviation
7508
-
6643
+
7509
6644
  SumOfProduct
7510
-
6645
+
7511
6646
  OnlyValue
7512
-
6647
+
7513
6648
  WeightedAvg
7514
-
6649
+
7515
6650
  DensityIndicators
7516
-
6651
+
7517
6652
  DividedSum
7518
6653
  */
7519
6654
  var AggregationFunction;
@@ -7543,13 +6678,13 @@ var AggregationFunction;
7543
6678
  })(AggregationFunction || (AggregationFunction = {}));
7544
6679
  /**
7545
6680
  *
7546
-
6681
+
7547
6682
  Unknown
7548
-
6683
+
7549
6684
  Icon
7550
-
6685
+
7551
6686
  PNG
7552
-
6687
+
7553
6688
  SVG
7554
6689
  */
7555
6690
 
@@ -7564,13 +6699,13 @@ var AttributeIconType;
7564
6699
  })(AttributeIconType || (AttributeIconType = {}));
7565
6700
  /**
7566
6701
  *
7567
-
6702
+
7568
6703
  None
7569
-
6704
+
7570
6705
  SelectFromHandBook
7571
-
6706
+
7572
6707
  SelectFromRange
7573
-
6708
+
7574
6709
  ViewHandBook
7575
6710
  */
7576
6711
 
@@ -7585,31 +6720,31 @@ var AttributeSelectorType;
7585
6720
  })(AttributeSelectorType || (AttributeSelectorType = {}));
7586
6721
  /**
7587
6722
  *
7588
-
6723
+
7589
6724
  Unknown
7590
-
6725
+
7591
6726
  String
7592
-
6727
+
7593
6728
  Int32
7594
-
6729
+
7595
6730
  Int64
7596
-
6731
+
7597
6732
  Double
7598
-
6733
+
7599
6734
  DateTime
7600
-
6735
+
7601
6736
  Boolean
7602
-
6737
+
7603
6738
  Point
7604
-
6739
+
7605
6740
  Polyline
7606
-
6741
+
7607
6742
  MultiPolygon
7608
-
6743
+
7609
6744
  Multipoint
7610
-
6745
+
7611
6746
  H3Index
7612
-
6747
+
7613
6748
  Json
7614
6749
  */
7615
6750
 
@@ -7633,9 +6768,9 @@ var AttributeType;
7633
6768
  })(AttributeType || (AttributeType = {}));
7634
6769
  /**
7635
6770
  *
7636
-
6771
+
7637
6772
  authorization_code
7638
-
6773
+
7639
6774
  refresh_token
7640
6775
  */
7641
6776
 
@@ -7648,19 +6783,19 @@ var AuthorizationGrant;
7648
6783
  })(AuthorizationGrant || (AuthorizationGrant = {}));
7649
6784
  /**
7650
6785
  *
7651
-
6786
+
7652
6787
  Directory
7653
-
6788
+
7654
6789
  Map
7655
-
6790
+
7656
6791
  Layer
7657
-
6792
+
7658
6793
  Table
7659
-
6794
+
7660
6795
  File
7661
-
6796
+
7662
6797
  TaskPrototype
7663
-
6798
+
7664
6799
  DataSource
7665
6800
  */
7666
6801
 
@@ -7678,20 +6813,18 @@ var CatalogResourceType;
7678
6813
  })(CatalogResourceType || (CatalogResourceType = {}));
7679
6814
  /**
7680
6815
  *
7681
-
6816
+
7682
6817
  none
7683
-
6818
+
7684
6819
  naturalBreaks
7685
-
6820
+
7686
6821
  equalInterval
7687
-
6822
+
7688
6823
  quantile
7689
-
7690
- distinct
7691
-
7692
- step
7693
-
6824
+
7694
6825
  unique
6826
+
6827
+ step
7695
6828
  */
7696
6829
 
7697
6830
 
@@ -7702,17 +6835,16 @@ var ClassificationType;
7702
6835
  ClassificationType["NaturalBreaks"] = "naturalBreaks";
7703
6836
  ClassificationType["EqualInterval"] = "equalInterval";
7704
6837
  ClassificationType["Quantile"] = "quantile";
7705
- ClassificationType["Distinct"] = "distinct";
7706
- ClassificationType["Step"] = "step";
7707
6838
  ClassificationType["Unique"] = "unique";
6839
+ ClassificationType["Step"] = "step";
7708
6840
  })(ClassificationType || (ClassificationType = {}));
7709
6841
  /**
7710
6842
  *
7711
-
6843
+
7712
6844
  decimal
7713
-
6845
+
7714
6846
  dateTime
7715
-
6847
+
7716
6848
  text
7717
6849
  */
7718
6850
 
@@ -7726,55 +6858,55 @@ var ClassifyAttributeType;
7726
6858
  })(ClassifyAttributeType || (ClassifyAttributeType = {}));
7727
6859
  /**
7728
6860
  *
7729
-
6861
+
7730
6862
  Unknown
7731
-
6863
+
7732
6864
  SerializeError
7733
-
6865
+
7734
6866
  InvalidDataService
7735
-
6867
+
7736
6868
  InvalidConfiguration
7737
-
6869
+
7738
6870
  InvalidDataServiceName
7739
-
6871
+
7740
6872
  InvalidTableName
7741
-
6873
+
7742
6874
  InvalidLayerName
7743
-
6875
+
7744
6876
  ResourceNotFound
7745
-
6877
+
7746
6878
  InvalidCondition
7747
-
6879
+
7748
6880
  InvalidAttributes
7749
-
6881
+
7750
6882
  InvalidIdAttribute
7751
-
6883
+
7752
6884
  InvalidGeometryAttribute
7753
-
6885
+
7754
6886
  InvalidGeometryAttributeType
7755
-
6887
+
7756
6888
  InvalidColumnName
7757
-
6889
+
7758
6890
  InvalidIdColumnSettings
7759
-
6891
+
7760
6892
  ColumnNotExistsInTable
7761
-
6893
+
7762
6894
  InvalidStyle
7763
-
6895
+
7764
6896
  InvalidLayerType
7765
-
6897
+
7766
6898
  ColumnLoadingError
7767
-
6899
+
7768
6900
  InvalidAttributeFormat
7769
-
6901
+
7770
6902
  DataSourceNotFound
7771
-
6903
+
7772
6904
  DuplicateColumns
7773
-
6905
+
7774
6906
  DuplicateAttributes
7775
-
6907
+
7776
6908
  TableWithoutColumns
7777
-
6909
+
7778
6910
  InvalidTableReferenceConfiguration
7779
6911
  */
7780
6912
 
@@ -7810,13 +6942,13 @@ var ConfigurationErrorEnum;
7810
6942
  })(ConfigurationErrorEnum || (ConfigurationErrorEnum = {}));
7811
6943
  /**
7812
6944
  *
7813
-
6945
+
7814
6946
  Postgres
7815
-
6947
+
7816
6948
  Trino
7817
-
6949
+
7818
6950
  S3
7819
-
6951
+
7820
6952
  GisServer
7821
6953
  */
7822
6954
 
@@ -7831,15 +6963,15 @@ var DataSourceType;
7831
6963
  })(DataSourceType || (DataSourceType = {}));
7832
6964
  /**
7833
6965
  * Type of the error.
7834
-
6966
+
7835
6967
  ResourceLimitExceeded
7836
-
6968
+
7837
6969
  ResourceNotFound
7838
-
6970
+
7839
6971
  InternalError
7840
-
6972
+
7841
6973
  BadRequest
7842
-
6974
+
7843
6975
  DuplicateContent
7844
6976
  */
7845
6977
 
@@ -7890,11 +7022,11 @@ var ErrorType;
7890
7022
  })(ErrorType || (ErrorType = {}));
7891
7023
  /**
7892
7024
  * Sets whether font should be styled.
7893
-
7025
+
7894
7026
  normal
7895
-
7027
+
7896
7028
  oblique
7897
-
7029
+
7898
7030
  italic
7899
7031
  */
7900
7032
 
@@ -7908,27 +7040,27 @@ var FontStyle;
7908
7040
  })(FontStyle || (FontStyle = {}));
7909
7041
  /**
7910
7042
  * Specifies the weight (or boldness) of the font.
7911
-
7043
+
7912
7044
  Thin
7913
-
7045
+
7914
7046
  ExtraLight
7915
-
7047
+
7916
7048
  Light
7917
-
7049
+
7918
7050
  SemiLight
7919
-
7051
+
7920
7052
  Normal
7921
-
7053
+
7922
7054
  Medium
7923
-
7055
+
7924
7056
  DemiBold
7925
-
7057
+
7926
7058
  Bold
7927
-
7059
+
7928
7060
  ExtraBold
7929
-
7061
+
7930
7062
  Black
7931
-
7063
+
7932
7064
  ExtraBlack
7933
7065
  */
7934
7066
 
@@ -7950,17 +7082,17 @@ var FontWeight;
7950
7082
  })(FontWeight || (FontWeight = {}));
7951
7083
  /**
7952
7084
  *
7953
-
7085
+
7954
7086
  unknown
7955
-
7087
+
7956
7088
  point
7957
-
7089
+
7958
7090
  polyline
7959
-
7091
+
7960
7092
  multipolygon
7961
-
7093
+
7962
7094
  envelope
7963
-
7095
+
7964
7096
  multipoint
7965
7097
  */
7966
7098
 
@@ -7977,13 +7109,13 @@ var GeometryType;
7977
7109
  })(GeometryType || (GeometryType = {}));
7978
7110
  /**
7979
7111
  * Resource group.
7980
-
7112
+
7981
7113
  my
7982
-
7114
+
7983
7115
  role
7984
-
7116
+
7985
7117
  public
7986
-
7118
+
7987
7119
  all
7988
7120
  */
7989
7121
 
@@ -7998,13 +7130,13 @@ var Group;
7998
7130
  })(Group || (Group = {}));
7999
7131
  /**
8000
7132
  * Specifies the settings of line cap. This is applied to the beginning and end of each non-closed line.
8001
-
7133
+
8002
7134
  Flat
8003
-
7135
+
8004
7136
  Square
8005
-
7137
+
8006
7138
  Round
8007
-
7139
+
8008
7140
  Triangle
8009
7141
  */
8010
7142
 
@@ -8019,29 +7151,29 @@ var LineCapStyle;
8019
7151
  })(LineCapStyle || (LineCapStyle = {}));
8020
7152
  /**
8021
7153
  * Type of the line ending.
8022
-
7154
+
8023
7155
  none
8024
-
7156
+
8025
7157
  arrow
8026
-
7158
+
8027
7159
  filledArrow
8028
-
7160
+
8029
7161
  square
8030
-
7162
+
8031
7163
  filledSquare
8032
-
7164
+
8033
7165
  circle
8034
-
7166
+
8035
7167
  filledCircle
8036
-
7168
+
8037
7169
  diamond
8038
-
7170
+
8039
7171
  filledDiamond
8040
-
7172
+
8041
7173
  roundSquare
8042
-
7174
+
8043
7175
  filledRoundSquare
8044
-
7176
+
8045
7177
  svg
8046
7178
  */
8047
7179
 
@@ -8064,11 +7196,11 @@ var LineEndingType;
8064
7196
  })(LineEndingType || (LineEndingType = {}));
8065
7197
  /**
8066
7198
  * Specifies the settings of lines join. This is applied to corners in lines and rectangles.
8067
-
7199
+
8068
7200
  Miter
8069
-
7201
+
8070
7202
  Bevel
8071
-
7203
+
8072
7204
  Round
8073
7205
  */
8074
7206
 
@@ -8082,11 +7214,11 @@ var LineJoinType;
8082
7214
  })(LineJoinType || (LineJoinType = {}));
8083
7215
  /**
8084
7216
  * Filter exists resources by owner.
8085
-
7217
+
8086
7218
  My
8087
-
7219
+
8088
7220
  Shared
8089
-
7221
+
8090
7222
  Public
8091
7223
  */
8092
7224
 
@@ -8100,9 +7232,9 @@ var OwnerFilter;
8100
7232
  })(OwnerFilter || (OwnerFilter = {}));
8101
7233
  /**
8102
7234
  * Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
8103
-
7235
+
8104
7236
  xyz
8105
-
7237
+
8106
7238
  tms
8107
7239
  */
8108
7240
 
@@ -8115,19 +7247,19 @@ var PbfSchema;
8115
7247
  })(PbfSchema || (PbfSchema = {}));
8116
7248
  /**
8117
7249
  *
8118
-
7250
+
8119
7251
  none
8120
-
7252
+
8121
7253
  configure
8122
-
7254
+
8123
7255
  write
8124
-
7256
+
8125
7257
  read
8126
-
7258
+
8127
7259
  read,configure
8128
-
7260
+
8129
7261
  read,write
8130
-
7262
+
8131
7263
  read,write,configure
8132
7264
  */
8133
7265
 
@@ -8145,21 +7277,21 @@ var Permissions;
8145
7277
  })(Permissions || (Permissions = {}));
8146
7278
  /**
8147
7279
  * Type of the authorization policy.
8148
-
7280
+
8149
7281
  Unknown
8150
-
7282
+
8151
7283
  CreateTable
8152
-
7284
+
8153
7285
  CreateLayer
8154
-
7286
+
8155
7287
  CreateProject
8156
-
7288
+
8157
7289
  MaxFeaturesInOneTable
8158
-
7290
+
8159
7291
  MaxObjectsToExport
8160
-
7292
+
8161
7293
  MaxUploadContentSize
8162
-
7294
+
8163
7295
  MaxEqlQueryParametersValues
8164
7296
  */
8165
7297
 
@@ -8178,11 +7310,11 @@ var PolicyType;
8178
7310
  })(PolicyType || (PolicyType = {}));
8179
7311
  /**
8180
7312
  * Stream quality.
8181
-
7313
+
8182
7314
  Low
8183
-
7315
+
8184
7316
  Medium
8185
-
7317
+
8186
7318
  High
8187
7319
  */
8188
7320
 
@@ -8196,23 +7328,23 @@ var Quality;
8196
7328
  })(Quality || (Quality = {}));
8197
7329
  /**
8198
7330
  *
8199
-
7331
+
8200
7332
  Init
8201
-
7333
+
8202
7334
  Process
8203
-
7335
+
8204
7336
  Completed
8205
-
7337
+
8206
7338
  Interrupted
8207
-
7339
+
8208
7340
  Error
8209
-
7341
+
8210
7342
  Timeout
8211
-
7343
+
8212
7344
  Waiting
8213
-
7345
+
8214
7346
  InQueue
8215
-
7347
+
8216
7348
  Unknown
8217
7349
  */
8218
7350
 
@@ -8232,15 +7364,15 @@ var RemoteTaskStatus;
8232
7364
  })(RemoteTaskStatus || (RemoteTaskStatus = {}));
8233
7365
  /**
8234
7366
  * Resources types filter.
8235
-
7367
+
8236
7368
  RemoteTileService
8237
-
7369
+
8238
7370
  ProxyService
8239
-
7371
+
8240
7372
  PostgresLayerService
8241
-
7373
+
8242
7374
  QueryLayerService
8243
-
7375
+
8244
7376
  TileCatalogTable
8245
7377
  */
8246
7378
 
@@ -8256,21 +7388,21 @@ var ResourceSubTypeFilter;
8256
7388
  })(ResourceSubTypeFilter || (ResourceSubTypeFilter = {}));
8257
7389
  /**
8258
7390
  *
8259
-
7391
+
8260
7392
  Unknown
8261
-
7393
+
8262
7394
  table
8263
-
7395
+
8264
7396
  layer
8265
-
7397
+
8266
7398
  project
8267
-
7399
+
8268
7400
  file
8269
-
7401
+
8270
7402
  feature
8271
-
7403
+
8272
7404
  tag
8273
-
7405
+
8274
7406
  datasource
8275
7407
  */
8276
7408
 
@@ -8289,23 +7421,23 @@ var ResourceType;
8289
7421
  })(ResourceType || (ResourceType = {}));
8290
7422
  /**
8291
7423
  * Resources types filter.
8292
-
7424
+
8293
7425
  Map
8294
-
7426
+
8295
7427
  Layer
8296
-
7428
+
8297
7429
  Table
8298
-
7430
+
8299
7431
  RasterCatalog
8300
-
7432
+
8301
7433
  ProxyService
8302
-
7434
+
8303
7435
  RemoteTileService
8304
-
7436
+
8305
7437
  File
8306
-
7438
+
8307
7439
  DataSource
8308
-
7440
+
8309
7441
  TaskPrototype
8310
7442
  */
8311
7443
 
@@ -8333,9 +7465,9 @@ var ResourceTypeLink;
8333
7465
  })(ResourceTypeLink || (ResourceTypeLink = {}));
8334
7466
  /**
8335
7467
  *
8336
-
7468
+
8337
7469
  code
8338
-
7470
+
8339
7471
  token
8340
7472
  */
8341
7473
 
@@ -8348,11 +7480,11 @@ var ResponseType;
8348
7480
  })(ResponseType || (ResponseType = {}));
8349
7481
  /**
8350
7482
  *
8351
-
7483
+
8352
7484
  Basic
8353
-
7485
+
8354
7486
  PreserveTopology
8355
-
7487
+
8356
7488
  VW
8357
7489
  */
8358
7490
 
@@ -8366,13 +7498,13 @@ var SimplifyType;
8366
7498
  })(SimplifyType || (SimplifyType = {}));
8367
7499
  /**
8368
7500
  *
8369
-
7501
+
8370
7502
  None
8371
-
7503
+
8372
7504
  Image
8373
-
7505
+
8374
7506
  PkkCode
8375
-
7507
+
8376
7508
  Attachments
8377
7509
  */
8378
7510
 
@@ -8387,9 +7519,9 @@ var StringSubType;
8387
7519
  })(StringSubType || (StringSubType = {}));
8388
7520
  /**
8389
7521
  * TaskPrototypeSubType.
8390
-
7522
+
8391
7523
  SpTask
8392
-
7524
+
8393
7525
  PythonTask
8394
7526
  */
8395
7527
 
@@ -8402,13 +7534,13 @@ var TaskResourceSubType;
8402
7534
  })(TaskResourceSubType || (TaskResourceSubType = {}));
8403
7535
  /**
8404
7536
  * Sets the horizontal alignment of text.
8405
-
7537
+
8406
7538
  right
8407
-
7539
+
8408
7540
  left
8409
-
7541
+
8410
7542
  center
8411
-
7543
+
8412
7544
  justified
8413
7545
  */
8414
7546
 
@@ -8423,11 +7555,11 @@ var TextAlignment;
8423
7555
  })(TextAlignment || (TextAlignment = {}));
8424
7556
  /**
8425
7557
  * Sets the vertical alignment of text.
8426
-
7558
+
8427
7559
  top
8428
-
7560
+
8429
7561
  bottom
8430
-
7562
+
8431
7563
  middle
8432
7564
  */
8433
7565
 
@@ -8441,11 +7573,11 @@ var TextVerticalAlignment;
8441
7573
  })(TextVerticalAlignment || (TextVerticalAlignment = {}));
8442
7574
  /**
8443
7575
  *
8444
-
7576
+
8445
7577
  Task
8446
-
7578
+
8447
7579
  Rest
8448
-
7580
+
8449
7581
  Both
8450
7582
  */
8451
7583
 
@@ -8459,49 +7591,49 @@ var WorkerMethodType;
8459
7591
  })(WorkerMethodType || (WorkerMethodType = {}));
8460
7592
  /**
8461
7593
  *
8462
-
7594
+
8463
7595
  Int32
8464
-
7596
+
8465
7597
  Int64
8466
-
7598
+
8467
7599
  Double
8468
-
7600
+
8469
7601
  String
8470
-
7602
+
8471
7603
  Boolean
8472
-
7604
+
8473
7605
  DateTime
8474
-
7606
+
8475
7607
  Point
8476
-
7608
+
8477
7609
  Geometry
8478
-
7610
+
8479
7611
  Polyline
8480
-
7612
+
8481
7613
  MultiPolygon
8482
-
7614
+
8483
7615
  Polygon
8484
-
7616
+
8485
7617
  Multipoint
8486
-
7618
+
8487
7619
  IntergerArray
8488
-
7620
+
8489
7621
  DoubleArray
8490
-
7622
+
8491
7623
  StringArray
8492
-
7624
+
8493
7625
  SourceEql
8494
-
7626
+
8495
7627
  Layer
8496
-
7628
+
8497
7629
  Table
8498
-
7630
+
8499
7631
  Folder
8500
-
7632
+
8501
7633
  Json
8502
-
7634
+
8503
7635
  Attribute
8504
-
7636
+
8505
7637
  AttributeArray
8506
7638
  */
8507
7639
 
@@ -8533,5 +7665,5 @@ var WorkerSettingsFieldType;
8533
7665
  WorkerSettingsFieldType["AttributeArray"] = "AttributeArray";
8534
7666
  })(WorkerSettingsFieldType || (WorkerSettingsFieldType = {}));
8535
7667
 
8536
- 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 };
7668
+ export { Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeIconType, AttributeSelectorType, AttributeType, AuthorizationGrant, BulkOperations, Cameras, 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, Quality, RemoteTaskManager, RemoteTaskStatus, ResourceSeparator, ResourceSubTypeFilter, ResourceType, ResourceTypeFilter, ResourceTypeLink, Resources, ResponseType, STORAGE_REFRESH_TOKEN_KEY, STORAGE_TOKEN_KEY, Security, SimplifyType, Statistic, StringSubType, Tables, TaskResourceSubType, TextAlignment, TextVerticalAlignment, Tools, UrlPath, VectorTiles, WorkerMethodType, WorkerSettingsFieldType, addSubDomainToLocation, errorHandler, formDataFromFile, generateId, getFetchingUrlPath, isHTTPError, isHandledError, isProjectContentItems, isString, isTileLayerService, parseJwt, promiseAllIgnoreErrors, stripUselessSlashes, toFormData, unique };
8537
7669
  //# sourceMappingURL=api.esm.js.map