@evergis/api 4.0.5 → 4.0.9

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,6 +24,9 @@ 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
+ });
27
30
  return Constructor;
28
31
  }
29
32
 
@@ -57,6 +60,9 @@ function _inherits(subClass, superClass) {
57
60
  configurable: true
58
61
  }
59
62
  });
63
+ Object.defineProperty(subClass, "prototype", {
64
+ writable: false
65
+ });
60
66
  if (superClass) _setPrototypeOf(subClass, superClass);
61
67
  }
62
68
 
@@ -115,6 +121,8 @@ function _assertThisInitialized(self) {
115
121
  function _possibleConstructorReturn(self, call) {
116
122
  if (call && (typeof call === "object" || typeof call === "function")) {
117
123
  return call;
124
+ } else if (call !== void 0) {
125
+ throw new TypeError("Derived constructors may only return object or undefined");
118
126
  }
119
127
 
120
128
  return _assertThisInitialized(self);
@@ -148,7 +156,7 @@ function _superPropBase(object, property) {
148
156
  return object;
149
157
  }
150
158
 
151
- function _get(target, property, receiver) {
159
+ function _get() {
152
160
  if (typeof Reflect !== "undefined" && Reflect.get) {
153
161
  _get = Reflect.get;
154
162
  } else {
@@ -159,14 +167,14 @@ function _get(target, property, receiver) {
159
167
  var desc = Object.getOwnPropertyDescriptor(base, property);
160
168
 
161
169
  if (desc.get) {
162
- return desc.get.call(receiver);
170
+ return desc.get.call(arguments.length < 3 ? target : receiver);
163
171
  }
164
172
 
165
173
  return desc.value;
166
174
  };
167
175
  }
168
176
 
169
- return _get(target, property, receiver || target);
177
+ return _get.apply(this, arguments);
170
178
  }
171
179
 
172
180
  const API_USER_INFO_KEY = "@evergis/user-info";
@@ -2229,16 +2237,16 @@ let EqlService = /*#__PURE__*/function (_Service) {
2229
2237
  * No description
2230
2238
  *
2231
2239
  * @tags Eql
2232
- * @name GetQueryResult
2233
- * @operationId EqlController_GetQueryResult
2240
+ * @name GetPagedQueryResult
2241
+ * @operationId EqlController_GetPagedQueryResult
2234
2242
  * @summary Perform resources set acl access batch operation.
2235
2243
  * @request POST:/eql/query
2236
2244
  * @response `200` OK
2237
2245
  */
2238
2246
 
2239
2247
  }, {
2240
- key: "getQueryResult",
2241
- value: function getQueryResult(data) {
2248
+ key: "getPagedQueryResult",
2249
+ value: function getPagedQueryResult(data) {
2242
2250
  return this.http.post("/eql/query", data).json();
2243
2251
  }
2244
2252
  /**
@@ -3273,13 +3281,13 @@ let Import = /*#__PURE__*/function (_ImportService) {
3273
3281
 
3274
3282
  const _excluded$3 = ["name"],
3275
3283
  _excluded2$2 = ["name"],
3276
- _excluded3$2 = ["name"],
3284
+ _excluded3$2 = ["name", "id"],
3277
3285
  _excluded4$1 = ["name", "id"],
3278
3286
  _excluded5$1 = ["name", "id"],
3279
- _excluded6$1 = ["name", "id"],
3280
- _excluded7 = ["name", "x", "y", "z"],
3281
- _excluded8 = ["name", "x", "y", "z", "format"],
3282
- _excluded9 = ["name", "x", "y", "z", "dpi", "format"],
3287
+ _excluded6$1 = ["name", "x", "y", "z"],
3288
+ _excluded7 = ["name", "x", "y", "z", "format"],
3289
+ _excluded8 = ["name", "x", "y", "z", "dpi", "format"],
3290
+ _excluded9 = ["name"],
3283
3291
  _excluded10 = ["name"],
3284
3292
  _excluded11 = ["name"],
3285
3293
  _excluded12 = ["name"],
@@ -3287,12 +3295,8 @@ const _excluded$3 = ["name"],
3287
3295
  _excluded14 = ["name"],
3288
3296
  _excluded15 = ["name"],
3289
3297
  _excluded16 = ["name"],
3290
- _excluded17 = ["name"],
3291
- _excluded18 = ["name"],
3292
- _excluded19 = ["name"],
3293
- _excluded20 = ["name"],
3294
- _excluded21 = ["layerName"],
3295
- _excluded22 = ["name", "id"];
3298
+ _excluded17 = ["layerName"],
3299
+ _excluded18 = ["name", "id"];
3296
3300
  /**
3297
3301
  * @title Spatial Processing Core API
3298
3302
  * @version 1.5.1.0
@@ -3512,42 +3516,6 @@ let LayersService = /*#__PURE__*/function (_Service) {
3512
3516
  type: 'RemoteTileService'
3513
3517
  }).json();
3514
3518
  }
3515
- /**
3516
- * No description
3517
- *
3518
- * @tags Layers
3519
- * @name PublishLocalTileService
3520
- * @operationId LayersController_PublishLocalTileService
3521
- * @summary Creates new Local Tile Service.
3522
- * @request POST:/layers#type=LocalTileService
3523
- * @response `default` Error
3524
- */
3525
-
3526
- }, {
3527
- key: "publishLocalTileService",
3528
- value: function publishLocalTileService(data) {
3529
- return this.http.post("/layers", data, {
3530
- type: 'LocalTileService'
3531
- }).json();
3532
- }
3533
- /**
3534
- * No description
3535
- *
3536
- * @tags Layers
3537
- * @name PublishPostgresLayerService
3538
- * @operationId LayersController_PublishPostgresLayerService
3539
- * @summary Creates new Postgres Layer Service.
3540
- * @request POST:/layers#type=PostgresLayerService
3541
- * @response `default` Error
3542
- */
3543
-
3544
- }, {
3545
- key: "publishPostgresLayerService",
3546
- value: function publishPostgresLayerService(data) {
3547
- return this.http.post("/layers", data, {
3548
- type: 'PostgresLayerService'
3549
- }).json();
3550
- }
3551
3519
  /**
3552
3520
  * No description
3553
3521
  *
@@ -3588,36 +3556,36 @@ let LayersService = /*#__PURE__*/function (_Service) {
3588
3556
  * No description
3589
3557
  *
3590
3558
  * @tags Layers
3591
- * @name UpdateMapboxService
3592
- * @operationId LayersController_UpdateMapboxService
3593
- * @summary Update mapbox service.
3594
- * @request PATCH:/layers/{name}#type=Mapbox
3559
+ * @name PublishPythonService
3560
+ * @operationId LayersController_PublishPythonService
3561
+ * @summary Creates new python service.
3562
+ * @request POST:/layers#type=Python
3595
3563
  * @response `default` Error
3596
3564
  */
3597
3565
 
3598
3566
  }, {
3599
- key: "updateMapboxService",
3600
- value: function updateMapboxService(name, data) {
3601
- return this.http.patch("/layers/" + name, data, {
3602
- type: 'Mapbox'
3567
+ key: "publishPythonService",
3568
+ value: function publishPythonService(data) {
3569
+ return this.http.post("/layers", data, {
3570
+ type: 'Python'
3603
3571
  }).json();
3604
3572
  }
3605
3573
  /**
3606
3574
  * No description
3607
3575
  *
3608
3576
  * @tags Layers
3609
- * @name PublishPythonService
3610
- * @operationId LayersController_PublishPythonService
3611
- * @summary Creates new python service.
3612
- * @request POST:/layers#type=Python
3577
+ * @name UpdateMapboxService
3578
+ * @operationId LayersController_UpdateMapboxService
3579
+ * @summary Update mapbox service.
3580
+ * @request PATCH:/layers/{name}#type=Mapbox
3613
3581
  * @response `default` Error
3614
3582
  */
3615
3583
 
3616
3584
  }, {
3617
- key: "publishPythonService",
3618
- value: function publishPythonService(data) {
3619
- return this.http.post("/layers", data, {
3620
- type: 'Python'
3585
+ key: "updateMapboxService",
3586
+ value: function updateMapboxService(name, data) {
3587
+ return this.http.patch("/layers/" + name, data, {
3588
+ type: 'Mapbox'
3621
3589
  }).json();
3622
3590
  }
3623
3591
  /**
@@ -3692,42 +3660,6 @@ let LayersService = /*#__PURE__*/function (_Service) {
3692
3660
  type: 'RemoteTileService'
3693
3661
  }).json();
3694
3662
  }
3695
- /**
3696
- * No description
3697
- *
3698
- * @tags Layers
3699
- * @name UpdateLocalTileService
3700
- * @operationId LayersController_UpdateLocalTileService
3701
- * @summary Update Local Tile Service.
3702
- * @request PATCH:/layers/{name}#type=LocalTileService
3703
- * @response `default` Error
3704
- */
3705
-
3706
- }, {
3707
- key: "updateLocalTileService",
3708
- value: function updateLocalTileService(name, data) {
3709
- return this.http.patch("/layers/" + name, data, {
3710
- type: 'LocalTileService'
3711
- }).json();
3712
- }
3713
- /**
3714
- * No description
3715
- *
3716
- * @tags Layers
3717
- * @name UpdatePostgresLayerService
3718
- * @operationId LayersController_UpdatePostgresLayerService
3719
- * @summary Update Postgres Layer Service.
3720
- * @request PATCH:/layers/{name}#type=PostgresLayerService
3721
- * @response `default` Error
3722
- */
3723
-
3724
- }, {
3725
- key: "updatePostgresLayerService",
3726
- value: function updatePostgresLayerService(name, data) {
3727
- return this.http.patch("/layers/" + name, data, {
3728
- type: 'PostgresLayerService'
3729
- }).json();
3730
- }
3731
3663
  /**
3732
3664
  * No description
3733
3665
  *
@@ -3852,27 +3784,6 @@ let LayersService = /*#__PURE__*/function (_Service) {
3852
3784
  value: function updateFeature(name, data) {
3853
3785
  return this.http.patch("/layers/" + name + "/features", data).json();
3854
3786
  }
3855
- /**
3856
- * No description
3857
- *
3858
- * @tags Layers
3859
- * @name FeaturesContains
3860
- * @operationId LayersController_FeaturesContains
3861
- * @summary Gets filtered features with given filter.
3862
- * @request GET:/layers/{name}/features/contains
3863
- * @response `200` OK
3864
- */
3865
-
3866
- }, {
3867
- key: "featuresContains",
3868
- value: function featuresContains(_ref3) {
3869
- let {
3870
- name
3871
- } = _ref3,
3872
- query = _objectWithoutPropertiesLoose(_ref3, _excluded3$2);
3873
-
3874
- return this.http.get("/layers/" + name + "/features/contains", query).json();
3875
- }
3876
3787
  /**
3877
3788
  * No description
3878
3789
  *
@@ -3886,12 +3797,12 @@ let LayersService = /*#__PURE__*/function (_Service) {
3886
3797
 
3887
3798
  }, {
3888
3799
  key: "getById",
3889
- value: function getById(_ref4) {
3800
+ value: function getById(_ref3) {
3890
3801
  let {
3891
3802
  name,
3892
3803
  id
3893
- } = _ref4,
3894
- query = _objectWithoutPropertiesLoose(_ref4, _excluded4$1);
3804
+ } = _ref3,
3805
+ query = _objectWithoutPropertiesLoose(_ref3, _excluded3$2);
3895
3806
 
3896
3807
  return this.http.get("/layers/" + name + "/features/" + id, query).json();
3897
3808
  }
@@ -3908,12 +3819,12 @@ let LayersService = /*#__PURE__*/function (_Service) {
3908
3819
 
3909
3820
  }, {
3910
3821
  key: "unite",
3911
- value: function unite(_ref5, data) {
3822
+ value: function unite(_ref4, data) {
3912
3823
  let {
3913
3824
  name,
3914
3825
  id
3915
- } = _ref5,
3916
- query = _objectWithoutPropertiesLoose(_ref5, _excluded5$1);
3826
+ } = _ref4,
3827
+ query = _objectWithoutPropertiesLoose(_ref4, _excluded4$1);
3917
3828
 
3918
3829
  return this.http.post("/layers/" + name + "/features/" + id + "/unite", data, query).json();
3919
3830
  }
@@ -3930,12 +3841,12 @@ let LayersService = /*#__PURE__*/function (_Service) {
3930
3841
 
3931
3842
  }, {
3932
3843
  key: "subtract",
3933
- value: function subtract(_ref6, data) {
3844
+ value: function subtract(_ref5, data) {
3934
3845
  let {
3935
3846
  name,
3936
3847
  id
3937
- } = _ref6,
3938
- query = _objectWithoutPropertiesLoose(_ref6, _excluded6$1);
3848
+ } = _ref5,
3849
+ query = _objectWithoutPropertiesLoose(_ref5, _excluded5$1);
3939
3850
 
3940
3851
  return this.http.post("/layers/" + name + "/features/" + id + "/subtract", data, query).json();
3941
3852
  }
@@ -3952,14 +3863,14 @@ let LayersService = /*#__PURE__*/function (_Service) {
3952
3863
 
3953
3864
  }, {
3954
3865
  key: "getTilesLayerImage",
3955
- value: function getTilesLayerImage(_ref7) {
3866
+ value: function getTilesLayerImage(_ref6) {
3956
3867
  let {
3957
3868
  name,
3958
3869
  x,
3959
3870
  y,
3960
3871
  z
3961
- } = _ref7,
3962
- query = _objectWithoutPropertiesLoose(_ref7, _excluded7);
3872
+ } = _ref6,
3873
+ query = _objectWithoutPropertiesLoose(_ref6, _excluded6$1);
3963
3874
 
3964
3875
  return this.http.createUrl("/layers/" + name + "/tile/" + z + "/" + x + "/" + y, query);
3965
3876
  }
@@ -3976,15 +3887,15 @@ let LayersService = /*#__PURE__*/function (_Service) {
3976
3887
 
3977
3888
  }, {
3978
3889
  key: "getTilesLayerImage1",
3979
- value: function getTilesLayerImage1(_ref8) {
3890
+ value: function getTilesLayerImage1(_ref7) {
3980
3891
  let {
3981
3892
  name,
3982
3893
  x,
3983
3894
  y,
3984
3895
  z,
3985
3896
  format
3986
- } = _ref8,
3987
- query = _objectWithoutPropertiesLoose(_ref8, _excluded8);
3897
+ } = _ref7,
3898
+ query = _objectWithoutPropertiesLoose(_ref7, _excluded7);
3988
3899
 
3989
3900
  return this.http.createUrl("/layers/" + name + "/tile/" + z + "/" + x + "/" + y + "." + format, query);
3990
3901
  }
@@ -4001,7 +3912,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
4001
3912
 
4002
3913
  }, {
4003
3914
  key: "getTilesLayerImageWithFormatAndDpi",
4004
- value: function getTilesLayerImageWithFormatAndDpi(_ref9) {
3915
+ value: function getTilesLayerImageWithFormatAndDpi(_ref8) {
4005
3916
  let {
4006
3917
  name,
4007
3918
  x,
@@ -4009,8 +3920,8 @@ let LayersService = /*#__PURE__*/function (_Service) {
4009
3920
  z,
4010
3921
  dpi,
4011
3922
  format
4012
- } = _ref9,
4013
- query = _objectWithoutPropertiesLoose(_ref9, _excluded9);
3923
+ } = _ref8,
3924
+ query = _objectWithoutPropertiesLoose(_ref8, _excluded8);
4014
3925
 
4015
3926
  return this.http.createUrl("/layers/" + name + "/tile/" + z + "/" + x + "/" + y + "@" + dpi + "x." + format, query);
4016
3927
  }
@@ -4027,11 +3938,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
4027
3938
 
4028
3939
  }, {
4029
3940
  key: "getLayerImage",
4030
- value: function getLayerImage(_ref10) {
3941
+ value: function getLayerImage(_ref9) {
4031
3942
  let {
4032
3943
  name
4033
- } = _ref10,
4034
- query = _objectWithoutPropertiesLoose(_ref10, _excluded10);
3944
+ } = _ref9,
3945
+ query = _objectWithoutPropertiesLoose(_ref9, _excluded9);
4035
3946
 
4036
3947
  return this.http.createUrl("/layers/" + name + "/export", query);
4037
3948
  }
@@ -4048,56 +3959,14 @@ let LayersService = /*#__PURE__*/function (_Service) {
4048
3959
 
4049
3960
  }, {
4050
3961
  key: "getLayerExtent",
4051
- value: function getLayerExtent(_ref11) {
3962
+ value: function getLayerExtent(_ref10) {
4052
3963
  let {
4053
3964
  name
4054
- } = _ref11,
4055
- query = _objectWithoutPropertiesLoose(_ref11, _excluded11);
3965
+ } = _ref10,
3966
+ query = _objectWithoutPropertiesLoose(_ref10, _excluded10);
4056
3967
 
4057
3968
  return this.http.get("/layers/" + name + "/extent", query).json();
4058
3969
  }
4059
- /**
4060
- * No description
4061
- *
4062
- * @tags Layers
4063
- * @name GetByGeometry
4064
- * @operationId LayersController_GetByGeometryAsync
4065
- * @summary Gets the features within the given geometry.
4066
- * @request GET:/layers/{name}/features/getByGeometry
4067
- * @response `200` OK
4068
- */
4069
-
4070
- }, {
4071
- key: "getByGeometry",
4072
- value: function getByGeometry(_ref12) {
4073
- let {
4074
- name
4075
- } = _ref12,
4076
- query = _objectWithoutPropertiesLoose(_ref12, _excluded12);
4077
-
4078
- return this.http.get("/layers/" + name + "/features/getByGeometry", query).json();
4079
- }
4080
- /**
4081
- * No description
4082
- *
4083
- * @tags Layers
4084
- * @name GetByGeometryPost
4085
- * @operationId LayersController_GetByGeometryAsync_1
4086
- * @summary Gets the features within the given geometry.
4087
- * @request POST:/layers/{name}/features/getByGeometry
4088
- * @response `200` OK
4089
- */
4090
-
4091
- }, {
4092
- key: "getByGeometryPost",
4093
- value: function getByGeometryPost(_ref13, data) {
4094
- let {
4095
- name
4096
- } = _ref13,
4097
- query = _objectWithoutPropertiesLoose(_ref13, _excluded13);
4098
-
4099
- return this.http.post("/layers/" + name + "/features/getByGeometry", data, query).json();
4100
- }
4101
3970
  /**
4102
3971
  * No description
4103
3972
  *
@@ -4111,11 +3980,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
4111
3980
 
4112
3981
  }, {
4113
3982
  key: "deleteFeatures",
4114
- value: function deleteFeatures(_ref14) {
3983
+ value: function deleteFeatures(_ref11) {
4115
3984
  let {
4116
3985
  name
4117
- } = _ref14,
4118
- query = _objectWithoutPropertiesLoose(_ref14, _excluded14);
3986
+ } = _ref11,
3987
+ query = _objectWithoutPropertiesLoose(_ref11, _excluded11);
4119
3988
 
4120
3989
  return this.http.delete("/layers/" + name + "/features/deleteByIds", null, query).json();
4121
3990
  }
@@ -4132,35 +4001,14 @@ let LayersService = /*#__PURE__*/function (_Service) {
4132
4001
 
4133
4002
  }, {
4134
4003
  key: "deleteByCondition",
4135
- value: function deleteByCondition(_ref15) {
4004
+ value: function deleteByCondition(_ref12) {
4136
4005
  let {
4137
4006
  name
4138
- } = _ref15,
4139
- query = _objectWithoutPropertiesLoose(_ref15, _excluded15);
4007
+ } = _ref12,
4008
+ query = _objectWithoutPropertiesLoose(_ref12, _excluded12);
4140
4009
 
4141
4010
  return this.http.delete("/layers/" + name + "/features/deleteByCondition", null, query).json();
4142
4011
  }
4143
- /**
4144
- * No description
4145
- *
4146
- * @tags Layers
4147
- * @name GetByGeometryGet
4148
- * @operationId LayersController_GetByGeometryAsync_2
4149
- * @summary Gets the features by click position.
4150
- * @request GET:/layers/{name}/features/getByGeometryByClick
4151
- * @response `200` OK
4152
- */
4153
-
4154
- }, {
4155
- key: "getByGeometryGet",
4156
- value: function getByGeometryGet(_ref16) {
4157
- let {
4158
- name
4159
- } = _ref16,
4160
- query = _objectWithoutPropertiesLoose(_ref16, _excluded16);
4161
-
4162
- return this.http.get("/layers/" + name + "/features/getByGeometryByClick", query).json();
4163
- }
4164
4012
  /**
4165
4013
  * No description
4166
4014
  *
@@ -4174,11 +4022,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
4174
4022
 
4175
4023
  }, {
4176
4024
  key: "classify",
4177
- value: function classify(_ref17) {
4025
+ value: function classify(_ref13) {
4178
4026
  let {
4179
4027
  name
4180
- } = _ref17,
4181
- query = _objectWithoutPropertiesLoose(_ref17, _excluded17);
4028
+ } = _ref13,
4029
+ query = _objectWithoutPropertiesLoose(_ref13, _excluded13);
4182
4030
 
4183
4031
  return this.http.get("/layers/" + name + "/classify", query).json();
4184
4032
  }
@@ -4195,11 +4043,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
4195
4043
 
4196
4044
  }, {
4197
4045
  key: "distincts",
4198
- value: function distincts(_ref18) {
4046
+ value: function distincts(_ref14) {
4199
4047
  let {
4200
4048
  name
4201
- } = _ref18,
4202
- query = _objectWithoutPropertiesLoose(_ref18, _excluded18);
4049
+ } = _ref14,
4050
+ query = _objectWithoutPropertiesLoose(_ref14, _excluded14);
4203
4051
 
4204
4052
  return this.http.get("/layers/" + name + "/distincts", query).json();
4205
4053
  }
@@ -4216,11 +4064,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
4216
4064
 
4217
4065
  }, {
4218
4066
  key: "aggregateAttribute",
4219
- value: function aggregateAttribute(_ref19) {
4067
+ value: function aggregateAttribute(_ref15) {
4220
4068
  let {
4221
4069
  name
4222
- } = _ref19,
4223
- query = _objectWithoutPropertiesLoose(_ref19, _excluded19);
4070
+ } = _ref15,
4071
+ query = _objectWithoutPropertiesLoose(_ref15, _excluded15);
4224
4072
 
4225
4073
  return this.http.get("/layers/" + name + "/aggregate-values", query).json();
4226
4074
  }
@@ -4237,11 +4085,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
4237
4085
 
4238
4086
  }, {
4239
4087
  key: "getFilteredFeaturesCount",
4240
- value: function getFilteredFeaturesCount(_ref20) {
4088
+ value: function getFilteredFeaturesCount(_ref16) {
4241
4089
  let {
4242
4090
  name
4243
- } = _ref20,
4244
- query = _objectWithoutPropertiesLoose(_ref20, _excluded20);
4091
+ } = _ref16,
4092
+ query = _objectWithoutPropertiesLoose(_ref16, _excluded16);
4245
4093
 
4246
4094
  return this.http.get("/layers/" + name + "/features/count", query).json();
4247
4095
  }
@@ -4277,22 +4125,6 @@ let LayersService = /*#__PURE__*/function (_Service) {
4277
4125
  value: function editAttributes(name, data) {
4278
4126
  return this.http.post("/layers/" + name + "/features/edit-attributes", data).json();
4279
4127
  }
4280
- /**
4281
- * No description
4282
- *
4283
- * @tags Layers
4284
- * @name SelectFeatures
4285
- * @operationId LayersController_SelectFeatures
4286
- * @summary Selects features from the given layers by the visual point on the map.
4287
- * @request GET:/layers/features/select
4288
- * @response `200` OK
4289
- */
4290
-
4291
- }, {
4292
- key: "selectFeatures",
4293
- value: function selectFeatures(query) {
4294
- return this.http.get("/layers/features/select", query).json();
4295
- }
4296
4128
  /**
4297
4129
  * No description
4298
4130
  *
@@ -4307,11 +4139,11 @@ let LayersService = /*#__PURE__*/function (_Service) {
4307
4139
 
4308
4140
  }, {
4309
4141
  key: "validateExpression",
4310
- value: function validateExpression(_ref21) {
4142
+ value: function validateExpression(_ref17) {
4311
4143
  let {
4312
4144
  layerName
4313
- } = _ref21,
4314
- query = _objectWithoutPropertiesLoose(_ref21, _excluded21);
4145
+ } = _ref17,
4146
+ query = _objectWithoutPropertiesLoose(_ref17, _excluded17);
4315
4147
 
4316
4148
  return this.http.get("/layers/" + layerName + "/validateExpression", query).json();
4317
4149
  }
@@ -4328,12 +4160,12 @@ let LayersService = /*#__PURE__*/function (_Service) {
4328
4160
 
4329
4161
  }, {
4330
4162
  key: "getRasterMeta",
4331
- value: function getRasterMeta(_ref22) {
4163
+ value: function getRasterMeta(_ref18) {
4332
4164
  let {
4333
4165
  name,
4334
4166
  id
4335
- } = _ref22,
4336
- query = _objectWithoutPropertiesLoose(_ref22, _excluded22);
4167
+ } = _ref18,
4168
+ query = _objectWithoutPropertiesLoose(_ref18, _excluded18);
4337
4169
 
4338
4170
  return this.http.get("/layers/" + name + "/" + id + "/metadata", query).json();
4339
4171
  }
@@ -4483,8 +4315,6 @@ function notError(v) {
4483
4315
  return !isError(v);
4484
4316
  }
4485
4317
 
4486
- const _excluded$4 = ["remote"],
4487
- _excluded2$3 = ["remote"];
4488
4318
  let Layers = /*#__PURE__*/function (_LayersService) {
4489
4319
  _inherits(Layers, _LayersService);
4490
4320
 
@@ -4513,34 +4343,6 @@ let Layers = /*#__PURE__*/function (_LayersService) {
4513
4343
  types: ['LocalTileService', 'RemoteTileService']
4514
4344
  }));
4515
4345
  }
4516
- }, {
4517
- key: "createTileLayer",
4518
- value: function createTileLayer(_ref) {
4519
- let {
4520
- remote
4521
- } = _ref,
4522
- configuration = _objectWithoutPropertiesLoose(_ref, _excluded$4);
4523
-
4524
- if (remote) {
4525
- return this.publishRemoteTileService(configuration);
4526
- }
4527
-
4528
- return this.publishLocalTileService(configuration);
4529
- }
4530
- }, {
4531
- key: "updateTileLayer",
4532
- value: function updateTileLayer(_ref2) {
4533
- let {
4534
- remote
4535
- } = _ref2,
4536
- configuration = _objectWithoutPropertiesLoose(_ref2, _excluded2$3);
4537
-
4538
- if (remote) {
4539
- return this.updateRemoteTileService(configuration.name, configuration);
4540
- }
4541
-
4542
- return this.updateLocalTileService(configuration.name, configuration);
4543
- }
4544
4346
  }, {
4545
4347
  key: "findOne",
4546
4348
  value: function findOne(name) {
@@ -4559,16 +4361,6 @@ let Layers = /*#__PURE__*/function (_LayersService) {
4559
4361
  value: function findAll(params) {
4560
4362
  return this.getLayersList(params);
4561
4363
  }
4562
- }, {
4563
- key: "create",
4564
- value: function create(configuration) {
4565
- return this.publishPostgresLayerService(configuration);
4566
- }
4567
- }, {
4568
- key: "update",
4569
- value: function update(configuration) {
4570
- return this.updatePostgresLayerService(configuration.name, configuration);
4571
- }
4572
4364
  }, {
4573
4365
  key: "createQueryLayer",
4574
4366
  value: function createQueryLayer(configuration) {
@@ -4945,8 +4737,8 @@ let Notification = /*#__PURE__*/function (_NotificationService) {
4945
4737
  || event.code === 4002
4946
4738
  /* InvalidSession */
4947
4739
  ) {
4948
- _this.connectStatus = ConnectionStatus.SessionClosed;
4949
- } else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
4740
+ _this.connectStatus = ConnectionStatus.SessionClosed;
4741
+ } else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
4950
4742
  _this.connectStatus = ConnectionStatus.Break;
4951
4743
  _this.reconnectTries++;
4952
4744
 
@@ -5227,7 +5019,7 @@ let Print = /*#__PURE__*/function (_PrintService) {
5227
5019
  return _createClass(Print);
5228
5020
  }(PrintService);
5229
5021
 
5230
- const _excluded$5 = ["name"];
5022
+ const _excluded$4 = ["name"];
5231
5023
  /**
5232
5024
  * @title Spatial Processing Core API
5233
5025
  * @version 1.5.1.0
@@ -5374,7 +5166,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
5374
5166
  let {
5375
5167
  name
5376
5168
  } = _ref,
5377
- query = _objectWithoutPropertiesLoose(_ref, _excluded$5);
5169
+ query = _objectWithoutPropertiesLoose(_ref, _excluded$4);
5378
5170
 
5379
5171
  return this.http.get("/projects/" + name + "/extent", query).json();
5380
5172
  }
@@ -5550,8 +5342,8 @@ function isProjectContentItems(v) {
5550
5342
  return v !== null && v !== undefined;
5551
5343
  }
5552
5344
 
5553
- const _excluded$6 = ["id"],
5554
- _excluded2$4 = ["id"];
5345
+ const _excluded$5 = ["id"],
5346
+ _excluded2$3 = ["id"];
5555
5347
  /**
5556
5348
  * @title Spatial Processing Core API
5557
5349
  * @version 1.5.1.0
@@ -5570,296 +5362,100 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
5570
5362
  }
5571
5363
 
5572
5364
  _createClass(RemoteTaskManagerService, [{
5573
- key: "cancelTask",
5365
+ key: "get",
5574
5366
  value:
5575
5367
  /**
5576
5368
  * No description
5577
5369
  *
5578
5370
  * @tags RemoteTaskManager
5579
- * @name CancelTask
5580
- * @operationId RemoteTaskManagerController_CancelTask
5581
- * @summary Cancel task execution by given id.
5582
- * @request POST:/scheduler/tasks/{id}/cancel
5371
+ * @name Get
5372
+ * @operationId RemoteTaskManagerController_Get
5373
+ * @summary Shows SubTask in Task.
5374
+ * @request GET:/scheduler/task/{id}/subtasks
5583
5375
  * @response `200` OK
5584
5376
  */
5585
- function cancelTask(id) {
5586
- return this.http.post("/scheduler/tasks/" + id + "/cancel", null).then(() => {});
5377
+ function get(id) {
5378
+ return this.http.get("/scheduler/task/" + id + "/subtasks").json();
5587
5379
  }
5588
5380
  /**
5589
5381
  * No description
5590
5382
  *
5591
5383
  * @tags RemoteTaskManager
5592
- * @name StartCogCreateTask
5593
- * @operationId RemoteTaskManagerController_StartCogCreateTask
5594
- * @summary Plans the execution of a 'create raster cog' server task.
5595
- * @request POST:/scheduler/tasks#type=cogService_create
5384
+ * @name Stop
5385
+ * @operationId RemoteTaskManagerController_Stop
5386
+ * @summary Stop the task.
5387
+ * @request POST:/scheduler/task/{id}/stop
5596
5388
  * @response `200` OK
5597
5389
  */
5598
5390
 
5599
5391
  }, {
5600
- key: "startCogCreateTask",
5601
- value: function startCogCreateTask(data) {
5602
- return this.http.post("/scheduler/tasks", data, {
5603
- type: 'cogService_create'
5604
- }).text();
5392
+ key: "stop",
5393
+ value: function stop(id) {
5394
+ return this.http.post("/scheduler/task/" + id + "/stop", null).text();
5605
5395
  }
5606
5396
  /**
5607
5397
  * No description
5608
5398
  *
5609
5399
  * @tags RemoteTaskManager
5610
- * @name StartRasterVrtTask
5611
- * @operationId RemoteTaskManagerController_StartRasterVrtTask
5612
- * @summary Plans the execution of a 'create raster vrt' server task.
5613
- * @request POST:/scheduler/tasks#type=cogService_vrt
5400
+ * @name CreateTaskPrototype
5401
+ * @operationId RemoteTaskManagerController_CreateTaskPrototype
5402
+ * @summary Creates TaskPrototype.
5403
+ * @request POST:/scheduler
5614
5404
  * @response `200` OK
5615
5405
  */
5616
5406
 
5617
5407
  }, {
5618
- key: "startRasterVrtTask",
5619
- value: function startRasterVrtTask(data) {
5620
- return this.http.post("/scheduler/tasks", data, {
5621
- type: 'cogService_vrt'
5622
- }).text();
5408
+ key: "createTaskPrototype",
5409
+ value: function createTaskPrototype(data) {
5410
+ return this.http.post("/scheduler", data).text();
5623
5411
  }
5624
5412
  /**
5625
5413
  * No description
5626
5414
  *
5627
5415
  * @tags RemoteTaskManager
5628
- * @name StartNetCdfTask
5629
- * @operationId RemoteTaskManagerController_StartNetCdfTask
5630
- * @summary Plans the execution of a 'create raster netcdf' server task.
5631
- * @request POST:/scheduler/tasks#type=cogService_netcdf
5416
+ * @name GetTaskPrototypes
5417
+ * @operationId RemoteTaskManagerController_GetTaskPrototypes
5418
+ * @summary Show TaskPrototypes for user.
5419
+ * @request GET:/scheduler
5632
5420
  * @response `200` OK
5633
5421
  */
5634
5422
 
5635
5423
  }, {
5636
- key: "startNetCdfTask",
5637
- value: function startNetCdfTask(data) {
5638
- return this.http.post("/scheduler/tasks", data, {
5639
- type: 'cogService_netcdf'
5640
- }).text();
5424
+ key: "getTaskPrototypes",
5425
+ value: function getTaskPrototypes(query) {
5426
+ return this.http.get("/scheduler", query).json();
5641
5427
  }
5642
5428
  /**
5643
5429
  * No description
5644
5430
  *
5645
5431
  * @tags RemoteTaskManager
5646
- * @name StartBufferTask
5647
- * @operationId RemoteTaskManagerController_StartBufferTask
5648
- * @summary Plans the execution of a 'create buffers' server task.
5649
- * @request POST:/scheduler/tasks#type=geoService_buffer
5432
+ * @name UpdateTaskPrototype
5433
+ * @operationId RemoteTaskManagerController_UpdateTaskPrototype
5434
+ * @summary Updates task prototype.
5435
+ * @request PUT:/scheduler/{id}
5650
5436
  * @response `200` OK
5651
5437
  */
5652
5438
 
5653
5439
  }, {
5654
- key: "startBufferTask",
5655
- value: function startBufferTask(data) {
5656
- return this.http.post("/scheduler/tasks", data, {
5657
- type: 'geoService_buffer'
5658
- }).text();
5440
+ key: "updateTaskPrototype",
5441
+ value: function updateTaskPrototype(id, data) {
5442
+ return this.http.put("/scheduler/" + id, data).text();
5659
5443
  }
5660
5444
  /**
5661
5445
  * No description
5662
5446
  *
5663
5447
  * @tags RemoteTaskManager
5664
- * @name StartCopyTableTask
5665
- * @operationId RemoteTaskManagerController_StartCopyTableTask
5666
- * @summary Plans the execution of a 'copy table' server task.
5667
- * @request POST:/scheduler/tasks#type=geoService_copy
5668
- * @response `200` OK
5669
- */
5670
-
5671
- }, {
5672
- key: "startCopyTableTask",
5673
- value: function startCopyTableTask(data) {
5674
- return this.http.post("/scheduler/tasks", data, {
5675
- type: 'geoService_copy'
5676
- }).text();
5677
- }
5678
- /**
5679
- * No description
5680
- *
5681
- * @tags RemoteTaskManager
5682
- * @name StartUnionTask
5683
- * @operationId RemoteTaskManagerController_StartUnionTask
5684
- * @summary Plans the execution of a 'create union' server task.
5685
- * @request POST:/scheduler/tasks#type=geoService_union
5686
- * @response `200` OK
5687
- */
5688
-
5689
- }, {
5690
- key: "startUnionTask",
5691
- value: function startUnionTask(data) {
5692
- return this.http.post("/scheduler/tasks", data, {
5693
- type: 'geoService_union'
5694
- }).text();
5695
- }
5696
- /**
5697
- * No description
5698
- *
5699
- * @tags RemoteTaskManager
5700
- * @name StartOverlayTask
5701
- * @operationId RemoteTaskManagerController_StartOverlayTask
5702
- * @summary Plans the execution of a 'create overlay' server task.
5703
- * @request POST:/scheduler/tasks#type=geoService_overlay
5704
- * @response `200` OK
5705
- */
5706
-
5707
- }, {
5708
- key: "startOverlayTask",
5709
- value: function startOverlayTask(data) {
5710
- return this.http.post("/scheduler/tasks", data, {
5711
- type: 'geoService_overlay'
5712
- }).text();
5713
- }
5714
- /**
5715
- * No description
5716
- *
5717
- * @tags RemoteTaskManager
5718
- * @name StartCopyTask
5719
- * @operationId RemoteTaskManagerController_StartCopyTask
5720
- * @summary Plans the execution of a 'copy storages' server task.
5721
- * @request POST:/scheduler/tasks#type=copyTask
5722
- * @response `200` OK
5723
- */
5724
-
5725
- }, {
5726
- key: "startCopyTask",
5727
- value: function startCopyTask(data) {
5728
- return this.http.post("/scheduler/tasks", data, {
5729
- type: 'copyTask'
5730
- }).text();
5731
- }
5732
- /**
5733
- * No description
5734
- *
5735
- * @tags RemoteTaskManager
5736
- * @name StartAvailableAreaTask
5737
- * @operationId RemoteTaskManagerController_StartAvailableAreaTask
5738
- * @summary Plans the execution of a 'create available area' server task.
5739
- * @request POST:/scheduler/tasks#type=availabilityArea
5740
- * @response `200` OK
5741
- */
5742
-
5743
- }, {
5744
- key: "startAvailableAreaTask",
5745
- value: function startAvailableAreaTask(data) {
5746
- return this.http.post("/scheduler/tasks", data, {
5747
- type: 'availabilityArea'
5748
- }).text();
5749
- }
5750
- /**
5751
- * No description
5752
- *
5753
- * @tags RemoteTaskManager
5754
- * @name StartGeocodeTask
5755
- * @operationId RemoteTaskManagerController_StartGeocodeTask
5756
- * @summary Plans the execution of a 'geocode' server task.
5757
- * @request POST:/scheduler/tasks#type=geocodeTask
5758
- * @response `200` OK
5759
- */
5760
-
5761
- }, {
5762
- key: "startGeocodeTask",
5763
- value: function startGeocodeTask(data) {
5764
- return this.http.post("/scheduler/tasks", data, {
5765
- type: 'geocodeTask'
5766
- }).text();
5767
- }
5768
- /**
5769
- * No description
5770
- *
5771
- * @tags RemoteTaskManager
5772
- * @name Get
5773
- * @operationId RemoteTaskManagerController_Get
5774
- * @summary Shows SubTask in Task.
5775
- * @request GET:/scheduler/task/{id}/subtasks
5776
- * @response `200` OK
5777
- */
5778
-
5779
- }, {
5780
- key: "get",
5781
- value: function get(id) {
5782
- return this.http.get("/scheduler/task/" + id + "/subtasks").then(() => {});
5783
- }
5784
- /**
5785
- * No description
5786
- *
5787
- * @tags RemoteTaskManager
5788
- * @name Stop
5789
- * @operationId RemoteTaskManagerController_Stop
5790
- * @summary Stop the task.
5791
- * @request POST:/scheduler/task/{id}/stop
5792
- * @response `200` OK
5793
- */
5794
-
5795
- }, {
5796
- key: "stop",
5797
- value: function stop(id) {
5798
- return this.http.post("/scheduler/task/" + id + "/stop", null).then(() => {});
5799
- }
5800
- /**
5801
- * No description
5802
- *
5803
- * @tags RemoteTaskManager
5804
- * @name CreateTaskPrototype
5805
- * @operationId RemoteTaskManagerController_CreateTaskPrototype
5806
- * @summary Creates TaskPrototype.
5807
- * @request POST:/scheduler
5808
- * @response `200` OK
5809
- */
5810
-
5811
- }, {
5812
- key: "createTaskPrototype",
5813
- value: function createTaskPrototype(data) {
5814
- return this.http.post("/scheduler", data).text();
5815
- }
5816
- /**
5817
- * No description
5818
- *
5819
- * @tags RemoteTaskManager
5820
- * @name GetTaskPrototypes
5821
- * @operationId RemoteTaskManagerController_GetTaskPrototypes
5822
- * @summary Show TaskPrototypes for user.
5823
- * @request GET:/scheduler
5824
- * @response `200` OK
5825
- */
5826
-
5827
- }, {
5828
- key: "getTaskPrototypes",
5829
- value: function getTaskPrototypes(query) {
5830
- return this.http.get("/scheduler", query).then(() => {});
5831
- }
5832
- /**
5833
- * No description
5834
- *
5835
- * @tags RemoteTaskManager
5836
- * @name UpdateTaskPrototype
5837
- * @operationId RemoteTaskManagerController_UpdateTaskPrototype
5838
- * @summary Updates task prototype.
5839
- * @request PUT:/scheduler/{id}
5840
- * @response `200` OK
5841
- */
5842
-
5843
- }, {
5844
- key: "updateTaskPrototype",
5845
- value: function updateTaskPrototype(id, data) {
5846
- return this.http.put("/scheduler/" + id, data).then(() => {});
5847
- }
5848
- /**
5849
- * No description
5850
- *
5851
- * @tags RemoteTaskManager
5852
- * @name Delete
5853
- * @operationId RemoteTaskManagerController_Delete
5854
- * @summary Delete task prototype.
5855
- * @request DELETE:/scheduler/{id}
5448
+ * @name Delete
5449
+ * @operationId RemoteTaskManagerController_Delete
5450
+ * @summary Delete task prototype.
5451
+ * @request DELETE:/scheduler/{id}
5856
5452
  * @response `200` OK
5857
5453
  */
5858
5454
 
5859
5455
  }, {
5860
5456
  key: "delete",
5861
5457
  value: function _delete(id) {
5862
- return this.http.delete("/scheduler/" + id, null).then(() => {});
5458
+ return this.http.delete("/scheduler/" + id, null).text();
5863
5459
  }
5864
5460
  /**
5865
5461
  * No description
@@ -5875,7 +5471,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
5875
5471
  }, {
5876
5472
  key: "setEnable",
5877
5473
  value: function setEnable(id, enable) {
5878
- return this.http.post("/scheduler/" + id + "/enable/" + enable, null).then(() => {});
5474
+ return this.http.post("/scheduler/" + id + "/enable/" + enable, null).text();
5879
5475
  }
5880
5476
  /**
5881
5477
  * No description
@@ -5894,9 +5490,9 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
5894
5490
  let {
5895
5491
  id
5896
5492
  } = _ref,
5897
- query = _objectWithoutPropertiesLoose(_ref, _excluded$6);
5493
+ query = _objectWithoutPropertiesLoose(_ref, _excluded$5);
5898
5494
 
5899
- return this.http.get("/scheduler/" + id + "/tasks", query).then(() => {});
5495
+ return this.http.get("/scheduler/" + id + "/tasks", query).json();
5900
5496
  }
5901
5497
  /**
5902
5498
  * No description
@@ -5912,7 +5508,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
5912
5508
  }, {
5913
5509
  key: "startTask",
5914
5510
  value: function startTask(id, taskId) {
5915
- return this.http.post("/scheduler/" + id + "/start/" + taskId, null).then(() => {});
5511
+ return this.http.post("/scheduler/" + id + "/start/" + taskId, null).json();
5916
5512
  }
5917
5513
  /**
5918
5514
  * No description
@@ -5928,7 +5524,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
5928
5524
  }, {
5929
5525
  key: "startTask1",
5930
5526
  value: function startTask1(id) {
5931
- return this.http.post("/scheduler/" + id + "/start", null).then(() => {});
5527
+ return this.http.post("/scheduler/" + id + "/start", null).json();
5932
5528
  }
5933
5529
  /**
5934
5530
  * No description
@@ -5947,7 +5543,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
5947
5543
  let {
5948
5544
  id
5949
5545
  } = _ref2,
5950
- query = _objectWithoutPropertiesLoose(_ref2, _excluded2$4);
5546
+ query = _objectWithoutPropertiesLoose(_ref2, _excluded2$3);
5951
5547
 
5952
5548
  return this.http.get("/scheduler/taskresource/" + id, query).json();
5953
5549
  }
@@ -6203,12 +5799,12 @@ let Resources = /*#__PURE__*/function () {
6203
5799
  }, {
6204
5800
  key: "getDependentNames",
6205
5801
  value: function getDependentNames(deps, depType) {
6206
- return deps.filter((_ref) => {
5802
+ return deps.filter(_ref => {
6207
5803
  let {
6208
5804
  type
6209
5805
  } = _ref;
6210
5806
  return type === depType;
6211
- }).map((_ref2) => {
5807
+ }).map(_ref2 => {
6212
5808
  let {
6213
5809
  name
6214
5810
  } = _ref2;
@@ -6722,10 +6318,9 @@ let Styles = /*#__PURE__*/function (_StyleService) {
6722
6318
  return _createClass(Styles);
6723
6319
  }(StyleService);
6724
6320
 
6725
- const _excluded$7 = ["name"],
6726
- _excluded2$5 = ["name"],
6727
- _excluded3$3 = ["name"],
6728
- _excluded4$2 = ["name"];
6321
+ const _excluded$6 = ["name"],
6322
+ _excluded2$4 = ["name"],
6323
+ _excluded3$3 = ["name"];
6729
6324
  /**
6730
6325
  * @title Spatial Processing Core API
6731
6326
  * @version 1.5.1.0
@@ -6888,7 +6483,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
6888
6483
  let {
6889
6484
  name
6890
6485
  } = _ref,
6891
- query = _objectWithoutPropertiesLoose(_ref, _excluded$7);
6486
+ query = _objectWithoutPropertiesLoose(_ref, _excluded$6);
6892
6487
 
6893
6488
  return this.http.get("/tables/" + name + "/data", query).json();
6894
6489
  }
@@ -6925,7 +6520,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
6925
6520
  let {
6926
6521
  name
6927
6522
  } = _ref2,
6928
- query = _objectWithoutPropertiesLoose(_ref2, _excluded2$5);
6523
+ query = _objectWithoutPropertiesLoose(_ref2, _excluded2$4);
6929
6524
 
6930
6525
  return this.http.patch("/tables/" + name + "/data", data, query).then(() => {});
6931
6526
  }
@@ -6950,27 +6545,6 @@ let TablesService = /*#__PURE__*/function (_Service) {
6950
6545
 
6951
6546
  return this.http.delete("/tables/" + name + "/data", null, query).then(() => {});
6952
6547
  }
6953
- /**
6954
- * No description
6955
- *
6956
- * @tags Tables
6957
- * @name GetUniqueDataRows
6958
- * @operationId TablesController_GetUniqueDataRowsAsync
6959
- * @summary Returns a single data row for each unique value defined by uniqueColumn.
6960
- * @request GET:/tables/{name}/data/unique-values
6961
- * @response `200` OK
6962
- */
6963
-
6964
- }, {
6965
- key: "getUniqueDataRows",
6966
- value: function getUniqueDataRows(_ref4) {
6967
- let {
6968
- name
6969
- } = _ref4,
6970
- query = _objectWithoutPropertiesLoose(_ref4, _excluded4$2);
6971
-
6972
- return this.http.get("/tables/" + name + "/data/unique-values", query).json();
6973
- }
6974
6548
  /**
6975
6549
  * No description
6976
6550
  *
@@ -7169,7 +6743,7 @@ let Tools = /*#__PURE__*/function (_ToolsService) {
7169
6743
  return _createClass(Tools);
7170
6744
  }(ToolsService);
7171
6745
 
7172
- const _excluded$8 = ["name", "z", "x", "y"];
6746
+ const _excluded$7 = ["name", "z", "x", "y"];
7173
6747
  /**
7174
6748
  * @title Spatial Processing Core API
7175
6749
  * @version 1.5.1.0
@@ -7207,7 +6781,7 @@ let VectorTileService = /*#__PURE__*/function (_Service) {
7207
6781
  x,
7208
6782
  y
7209
6783
  } = _ref,
7210
- query = _objectWithoutPropertiesLoose(_ref, _excluded$8);
6784
+ query = _objectWithoutPropertiesLoose(_ref, _excluded$7);
7211
6785
 
7212
6786
  return this.http.get("/vt/" + name + "/" + z + "/" + x + "/" + y + ".pbf", query).then(() => {});
7213
6787
  }
@@ -7229,13 +6803,12 @@ let VectorTiles = /*#__PURE__*/function (_VectorTileService) {
7229
6803
 
7230
6804
  _createClass(VectorTiles, [{
7231
6805
  key: "getVt",
7232
- value: function getVt(name, z, x, y, isProject) {
6806
+ value: function getVt(name, z, x, y) {
7233
6807
  return this.getVectorTile({
7234
6808
  name,
7235
6809
  z,
7236
6810
  x,
7237
- y,
7238
- isProject
6811
+ y
7239
6812
  });
7240
6813
  }
7241
6814
  }]);
@@ -7303,7 +6876,7 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
7303
6876
  (_request$headers = request.headers) == null ? void 0 : _request$headers.set("Authorization", "Bearer " + (token || ""));
7304
6877
  }
7305
6878
  }, ...((_hooks$beforeRequest = hooks == null ? void 0 : hooks.beforeRequest) != null ? _hooks$beforeRequest : [])],
7306
- beforeRetry: [async (_ref2) => {
6879
+ beforeRetry: [async _ref2 => {
7307
6880
  let {
7308
6881
  request,
7309
6882
  error,
@@ -7511,47 +7084,47 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
7511
7084
 
7512
7085
  /**
7513
7086
  *
7514
-
7087
+
7515
7088
  None
7516
-
7089
+
7517
7090
  Array
7518
-
7091
+
7519
7092
  Min
7520
-
7093
+
7521
7094
  Max
7522
-
7095
+
7523
7096
  Avg
7524
-
7097
+
7525
7098
  Sum
7526
-
7099
+
7527
7100
  Extent
7528
-
7101
+
7529
7102
  H3
7530
-
7103
+
7531
7104
  Count
7532
-
7105
+
7533
7106
  TotalCount
7534
-
7107
+
7535
7108
  DistinctCount
7536
-
7109
+
7537
7110
  First
7538
-
7111
+
7539
7112
  Last
7540
-
7113
+
7541
7114
  Median
7542
-
7115
+
7543
7116
  Mod
7544
-
7117
+
7545
7118
  StdDeviation
7546
-
7119
+
7547
7120
  SumOfProduct
7548
-
7121
+
7549
7122
  OnlyValue
7550
-
7123
+
7551
7124
  WeightedAvg
7552
-
7125
+
7553
7126
  DensityIndicators
7554
-
7127
+
7555
7128
  DividedSum
7556
7129
  */
7557
7130
  var AggregationFunction;
@@ -7581,13 +7154,13 @@ var AggregationFunction;
7581
7154
  })(AggregationFunction || (AggregationFunction = {}));
7582
7155
  /**
7583
7156
  *
7584
-
7157
+
7585
7158
  Unknown
7586
-
7159
+
7587
7160
  Icon
7588
-
7161
+
7589
7162
  PNG
7590
-
7163
+
7591
7164
  SVG
7592
7165
  */
7593
7166
 
@@ -7602,13 +7175,13 @@ var AttributeIconType;
7602
7175
  })(AttributeIconType || (AttributeIconType = {}));
7603
7176
  /**
7604
7177
  *
7605
-
7178
+
7606
7179
  None
7607
-
7180
+
7608
7181
  SelectFromHandBook
7609
-
7182
+
7610
7183
  SelectFromRange
7611
-
7184
+
7612
7185
  ViewHandBook
7613
7186
  */
7614
7187
 
@@ -7623,31 +7196,31 @@ var AttributeSelectorType;
7623
7196
  })(AttributeSelectorType || (AttributeSelectorType = {}));
7624
7197
  /**
7625
7198
  *
7626
-
7199
+
7627
7200
  Unknown
7628
-
7201
+
7629
7202
  String
7630
-
7203
+
7631
7204
  Int32
7632
-
7205
+
7633
7206
  Int64
7634
-
7207
+
7635
7208
  Double
7636
-
7209
+
7637
7210
  DateTime
7638
-
7211
+
7639
7212
  Boolean
7640
-
7213
+
7641
7214
  Point
7642
-
7215
+
7643
7216
  Polyline
7644
-
7217
+
7645
7218
  MultiPolygon
7646
-
7219
+
7647
7220
  Multipoint
7648
-
7221
+
7649
7222
  H3Index
7650
-
7223
+
7651
7224
  Json
7652
7225
  */
7653
7226
 
@@ -7671,9 +7244,9 @@ var AttributeType;
7671
7244
  })(AttributeType || (AttributeType = {}));
7672
7245
  /**
7673
7246
  *
7674
-
7247
+
7675
7248
  authorization_code
7676
-
7249
+
7677
7250
  refresh_token
7678
7251
  */
7679
7252
 
@@ -7686,19 +7259,19 @@ var AuthorizationGrant;
7686
7259
  })(AuthorizationGrant || (AuthorizationGrant = {}));
7687
7260
  /**
7688
7261
  *
7689
-
7262
+
7690
7263
  None
7691
-
7264
+
7692
7265
  Map
7693
-
7266
+
7694
7267
  Layer
7695
-
7268
+
7696
7269
  Table
7697
-
7270
+
7698
7271
  File
7699
-
7272
+
7700
7273
  TaskPrototype
7701
-
7274
+
7702
7275
  DataSource
7703
7276
  */
7704
7277
 
@@ -7716,15 +7289,15 @@ var CatalogResourceType;
7716
7289
  })(CatalogResourceType || (CatalogResourceType = {}));
7717
7290
  /**
7718
7291
  * Describes classification methods.
7719
-
7292
+
7720
7293
  none
7721
-
7294
+
7722
7295
  naturalBreaks
7723
-
7296
+
7724
7297
  equalInterval
7725
-
7298
+
7726
7299
  quantile
7727
-
7300
+
7728
7301
  unique
7729
7302
  */
7730
7303
 
@@ -7740,11 +7313,11 @@ var ClassificationType;
7740
7313
  })(ClassificationType || (ClassificationType = {}));
7741
7314
  /**
7742
7315
  *
7743
-
7316
+
7744
7317
  decimal
7745
-
7318
+
7746
7319
  dateTime
7747
-
7320
+
7748
7321
  text
7749
7322
  */
7750
7323
 
@@ -7758,55 +7331,55 @@ var ClassifyAttributeType;
7758
7331
  })(ClassifyAttributeType || (ClassifyAttributeType = {}));
7759
7332
  /**
7760
7333
  *
7761
-
7334
+
7762
7335
  Unknown
7763
-
7336
+
7764
7337
  SerializeError
7765
-
7338
+
7766
7339
  InvalidDataService
7767
-
7340
+
7768
7341
  InvalidConfiguration
7769
-
7342
+
7770
7343
  InvalidDataServiceName
7771
-
7344
+
7772
7345
  InvalidTableName
7773
-
7346
+
7774
7347
  InvalidLayerName
7775
-
7348
+
7776
7349
  ResourceNotFound
7777
-
7350
+
7778
7351
  InvalidCondition
7779
-
7352
+
7780
7353
  InvalidAttributes
7781
-
7354
+
7782
7355
  InvalidIdAttribute
7783
-
7356
+
7784
7357
  InvalidGeometryAttribute
7785
-
7358
+
7786
7359
  InvalidGeometryAttributeType
7787
-
7360
+
7788
7361
  InvalidColumnName
7789
-
7362
+
7790
7363
  InvalidIdColumnSettings
7791
-
7364
+
7792
7365
  ColumnNotExistsInTable
7793
-
7366
+
7794
7367
  InvalidStyle
7795
-
7368
+
7796
7369
  InvalidLayerType
7797
-
7370
+
7798
7371
  ColumnLoadingError
7799
-
7372
+
7800
7373
  InvalidAttributeFormat
7801
-
7374
+
7802
7375
  DataSourceNotFound
7803
-
7376
+
7804
7377
  DuplicateColumns
7805
-
7378
+
7806
7379
  DuplicateAttributes
7807
-
7380
+
7808
7381
  TableWithoutColumns
7809
-
7382
+
7810
7383
  InvalidTableReferenceConfiguration
7811
7384
  */
7812
7385
 
@@ -7842,13 +7415,13 @@ var ConfigurationErrorEnum;
7842
7415
  })(ConfigurationErrorEnum || (ConfigurationErrorEnum = {}));
7843
7416
  /**
7844
7417
  *
7845
-
7418
+
7846
7419
  Postgres
7847
-
7420
+
7848
7421
  Trino
7849
-
7422
+
7850
7423
  S3
7851
-
7424
+
7852
7425
  GisServer
7853
7426
  */
7854
7427
 
@@ -7863,15 +7436,15 @@ var DataSourceType;
7863
7436
  })(DataSourceType || (DataSourceType = {}));
7864
7437
  /**
7865
7438
  * Type of the error.
7866
-
7439
+
7867
7440
  ResourceLimitExceeded
7868
-
7441
+
7869
7442
  ResourceNotFound
7870
-
7443
+
7871
7444
  InternalError
7872
-
7445
+
7873
7446
  BadRequest
7874
-
7447
+
7875
7448
  DuplicateContent
7876
7449
  */
7877
7450
 
@@ -7921,27 +7494,12 @@ var ErrorType;
7921
7494
  ErrorType["EmailNotSet"] = "EmailNotSet";
7922
7495
  })(ErrorType || (ErrorType = {}));
7923
7496
  /**
7924
- * Type of the feature.
7925
-
7926
- Unknown
7927
-
7928
- GeometricFeature
7929
- */
7930
-
7931
-
7932
- var FeatureType;
7933
-
7934
- (function (FeatureType) {
7935
- FeatureType["Unknown"] = "Unknown";
7936
- FeatureType["GeometricFeature"] = "GeometricFeature";
7937
- })(FeatureType || (FeatureType = {}));
7938
- /**
7939
7497
  * Sets whether font should be styled.
7940
-
7498
+
7941
7499
  normal
7942
-
7500
+
7943
7501
  oblique
7944
-
7502
+
7945
7503
  italic
7946
7504
  */
7947
7505
 
@@ -7955,27 +7513,27 @@ var FontStyle;
7955
7513
  })(FontStyle || (FontStyle = {}));
7956
7514
  /**
7957
7515
  * Specifies the weight (or boldness) of the font.
7958
-
7516
+
7959
7517
  Thin
7960
-
7518
+
7961
7519
  ExtraLight
7962
-
7520
+
7963
7521
  Light
7964
-
7522
+
7965
7523
  SemiLight
7966
-
7524
+
7967
7525
  Normal
7968
-
7526
+
7969
7527
  Medium
7970
-
7528
+
7971
7529
  DemiBold
7972
-
7530
+
7973
7531
  Bold
7974
-
7532
+
7975
7533
  ExtraBold
7976
-
7534
+
7977
7535
  Black
7978
-
7536
+
7979
7537
  ExtraBlack
7980
7538
  */
7981
7539
 
@@ -7997,17 +7555,17 @@ var FontWeight;
7997
7555
  })(FontWeight || (FontWeight = {}));
7998
7556
  /**
7999
7557
  *
8000
-
7558
+
8001
7559
  unknown
8002
-
7560
+
8003
7561
  point
8004
-
7562
+
8005
7563
  polyline
8006
-
7564
+
8007
7565
  multipolygon
8008
-
7566
+
8009
7567
  envelope
8010
-
7568
+
8011
7569
  multipoint
8012
7570
  */
8013
7571
 
@@ -8024,13 +7582,13 @@ var GeometryType;
8024
7582
  })(GeometryType || (GeometryType = {}));
8025
7583
  /**
8026
7584
  * Resource group.
8027
-
7585
+
8028
7586
  my
8029
-
7587
+
8030
7588
  role
8031
-
7589
+
8032
7590
  public
8033
-
7591
+
8034
7592
  all
8035
7593
  */
8036
7594
 
@@ -8045,13 +7603,13 @@ var Group;
8045
7603
  })(Group || (Group = {}));
8046
7604
  /**
8047
7605
  * Specifies the settings of line cap. This is applied to the beginning and end of each non-closed line.
8048
-
7606
+
8049
7607
  Flat
8050
-
7608
+
8051
7609
  Square
8052
-
7610
+
8053
7611
  Round
8054
-
7612
+
8055
7613
  Triangle
8056
7614
  */
8057
7615
 
@@ -8066,29 +7624,29 @@ var LineCapStyle;
8066
7624
  })(LineCapStyle || (LineCapStyle = {}));
8067
7625
  /**
8068
7626
  * Type of the line ending.
8069
-
7627
+
8070
7628
  none
8071
-
7629
+
8072
7630
  arrow
8073
-
7631
+
8074
7632
  filledArrow
8075
-
7633
+
8076
7634
  square
8077
-
7635
+
8078
7636
  filledSquare
8079
-
7637
+
8080
7638
  circle
8081
-
7639
+
8082
7640
  filledCircle
8083
-
7641
+
8084
7642
  diamond
8085
-
7643
+
8086
7644
  filledDiamond
8087
-
7645
+
8088
7646
  roundSquare
8089
-
7647
+
8090
7648
  filledRoundSquare
8091
-
7649
+
8092
7650
  svg
8093
7651
  */
8094
7652
 
@@ -8111,11 +7669,11 @@ var LineEndingType;
8111
7669
  })(LineEndingType || (LineEndingType = {}));
8112
7670
  /**
8113
7671
  * Specifies the settings of lines join. This is applied to corners in lines and rectangles.
8114
-
7672
+
8115
7673
  Miter
8116
-
7674
+
8117
7675
  Bevel
8118
-
7676
+
8119
7677
  Round
8120
7678
  */
8121
7679
 
@@ -8128,36 +7686,12 @@ var LineJoinType;
8128
7686
  LineJoinType["Round"] = "Round";
8129
7687
  })(LineJoinType || (LineJoinType = {}));
8130
7688
  /**
8131
- *
8132
-
8133
- Unknown
8134
-
8135
- union
8136
-
8137
- intersection
8138
-
8139
- subtraction
8140
-
8141
- symDifference
8142
- */
8143
-
8144
-
8145
- var Operation;
8146
-
8147
- (function (Operation) {
8148
- Operation["Unknown"] = "Unknown";
8149
- Operation["Union"] = "union";
8150
- Operation["Intersection"] = "intersection";
8151
- Operation["Subtraction"] = "subtraction";
8152
- Operation["SymDifference"] = "symDifference";
8153
- })(Operation || (Operation = {}));
8154
- /**
8155
7689
  * Filter exists resources by owner.
8156
-
7690
+
8157
7691
  My
8158
-
7692
+
8159
7693
  Shared
8160
-
7694
+
8161
7695
  Public
8162
7696
  */
8163
7697
 
@@ -8171,9 +7705,9 @@ var OwnerFilter;
8171
7705
  })(OwnerFilter || (OwnerFilter = {}));
8172
7706
  /**
8173
7707
  * Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
8174
-
7708
+
8175
7709
  xyz
8176
-
7710
+
8177
7711
  tms
8178
7712
  */
8179
7713
 
@@ -8186,19 +7720,19 @@ var PbfSchema;
8186
7720
  })(PbfSchema || (PbfSchema = {}));
8187
7721
  /**
8188
7722
  *
8189
-
7723
+
8190
7724
  none
8191
-
7725
+
8192
7726
  configure
8193
-
7727
+
8194
7728
  write
8195
-
7729
+
8196
7730
  read
8197
-
7731
+
8198
7732
  read,configure
8199
-
7733
+
8200
7734
  read,write
8201
-
7735
+
8202
7736
  read,write,configure
8203
7737
  */
8204
7738
 
@@ -8216,21 +7750,21 @@ var Permissions;
8216
7750
  })(Permissions || (Permissions = {}));
8217
7751
  /**
8218
7752
  * Type of the authorization policy.
8219
-
7753
+
8220
7754
  Unknown
8221
-
7755
+
8222
7756
  CreateTable
8223
-
7757
+
8224
7758
  CreateLayer
8225
-
7759
+
8226
7760
  CreateProject
8227
-
7761
+
8228
7762
  MaxFeaturesInOneTable
8229
-
7763
+
8230
7764
  MaxObjectsToExport
8231
-
7765
+
8232
7766
  MaxUploadContentSize
8233
-
7767
+
8234
7768
  MaxEqlQueryParametersValues
8235
7769
  */
8236
7770
 
@@ -8249,11 +7783,11 @@ var PolicyType;
8249
7783
  })(PolicyType || (PolicyType = {}));
8250
7784
  /**
8251
7785
  * Stream quality.
8252
-
7786
+
8253
7787
  Low
8254
-
7788
+
8255
7789
  Medium
8256
-
7790
+
8257
7791
  High
8258
7792
  */
8259
7793
 
@@ -8266,16 +7800,52 @@ var Quality;
8266
7800
  Quality["High"] = "High";
8267
7801
  })(Quality || (Quality = {}));
8268
7802
  /**
8269
- * Resources types filter.
7803
+ * RemoteTaskStatus enum.
7804
+
7805
+ Init
7806
+
7807
+ Process
7808
+
7809
+ Completed
7810
+
7811
+ Interrupted
7812
+
7813
+ Error
7814
+
7815
+ Timeout
7816
+
7817
+ Waiting
7818
+
7819
+ InQueue
7820
+
7821
+ Unknown
7822
+ */
8270
7823
 
8271
- RemoteTileService
8272
7824
 
8273
- ProxyService
7825
+ var RemoteTaskStatus;
8274
7826
 
7827
+ (function (RemoteTaskStatus) {
7828
+ RemoteTaskStatus["Init"] = "Init";
7829
+ RemoteTaskStatus["Process"] = "Process";
7830
+ RemoteTaskStatus["Completed"] = "Completed";
7831
+ RemoteTaskStatus["Interrupted"] = "Interrupted";
7832
+ RemoteTaskStatus["Error"] = "Error";
7833
+ RemoteTaskStatus["Timeout"] = "Timeout";
7834
+ RemoteTaskStatus["Waiting"] = "Waiting";
7835
+ RemoteTaskStatus["InQueue"] = "InQueue";
7836
+ RemoteTaskStatus["Unknown"] = "Unknown";
7837
+ })(RemoteTaskStatus || (RemoteTaskStatus = {}));
7838
+ /**
7839
+ * Resources types filter.
7840
+
7841
+ RemoteTileService
7842
+
7843
+ ProxyService
7844
+
8275
7845
  PostgresLayerService
8276
-
7846
+
8277
7847
  QueryLayerService
8278
-
7848
+
8279
7849
  TileCatalogTable
8280
7850
  */
8281
7851
 
@@ -8291,21 +7861,21 @@ var ResourceSubTypeFilter;
8291
7861
  })(ResourceSubTypeFilter || (ResourceSubTypeFilter = {}));
8292
7862
  /**
8293
7863
  *
8294
-
7864
+
8295
7865
  Unknown
8296
-
7866
+
8297
7867
  table
8298
-
7868
+
8299
7869
  layer
8300
-
7870
+
8301
7871
  project
8302
-
7872
+
8303
7873
  file
8304
-
7874
+
8305
7875
  feature
8306
-
7876
+
8307
7877
  tag
8308
-
7878
+
8309
7879
  datasource
8310
7880
  */
8311
7881
 
@@ -8324,22 +7894,24 @@ var ResourceType;
8324
7894
  })(ResourceType || (ResourceType = {}));
8325
7895
  /**
8326
7896
  * Resources types filter.
8327
-
7897
+
8328
7898
  Map
8329
-
7899
+
8330
7900
  Layer
8331
-
7901
+
8332
7902
  Table
8333
-
7903
+
8334
7904
  RasterCatalog
8335
-
7905
+
8336
7906
  ProxyService
8337
-
7907
+
8338
7908
  RemoteTileService
8339
-
7909
+
8340
7910
  File
8341
-
7911
+
8342
7912
  DataSource
7913
+
7914
+ TaskPrototype
8343
7915
  */
8344
7916
 
8345
7917
 
@@ -8354,6 +7926,7 @@ var ResourceTypeFilter;
8354
7926
  ResourceTypeFilter["RemoteTileService"] = "RemoteTileService";
8355
7927
  ResourceTypeFilter["File"] = "File";
8356
7928
  ResourceTypeFilter["DataSource"] = "DataSource";
7929
+ ResourceTypeFilter["TaskPrototype"] = "TaskPrototype";
8357
7930
  })(ResourceTypeFilter || (ResourceTypeFilter = {}));
8358
7931
 
8359
7932
  var ResourceTypeLink;
@@ -8365,9 +7938,9 @@ var ResourceTypeLink;
8365
7938
  })(ResourceTypeLink || (ResourceTypeLink = {}));
8366
7939
  /**
8367
7940
  *
8368
-
7941
+
8369
7942
  code
8370
-
7943
+
8371
7944
  token
8372
7945
  */
8373
7946
 
@@ -8380,11 +7953,11 @@ var ResponseType;
8380
7953
  })(ResponseType || (ResponseType = {}));
8381
7954
  /**
8382
7955
  *
8383
-
7956
+
8384
7957
  Basic
8385
-
7958
+
8386
7959
  PreserveTopology
8387
-
7960
+
8388
7961
  VW
8389
7962
  */
8390
7963
 
@@ -8398,13 +7971,13 @@ var SimplifyType;
8398
7971
  })(SimplifyType || (SimplifyType = {}));
8399
7972
  /**
8400
7973
  *
8401
-
7974
+
8402
7975
  None
8403
-
7976
+
8404
7977
  Image
8405
-
7978
+
8406
7979
  PkkCode
8407
-
7980
+
8408
7981
  Attachments
8409
7982
  */
8410
7983
 
@@ -8419,9 +7992,9 @@ var StringSubType;
8419
7992
  })(StringSubType || (StringSubType = {}));
8420
7993
  /**
8421
7994
  * TaskPrototypeSubType.
8422
-
7995
+
8423
7996
  SpTask
8424
-
7997
+
8425
7998
  PythonTask
8426
7999
  */
8427
8000
 
@@ -8434,13 +8007,13 @@ var TaskResourceSubType;
8434
8007
  })(TaskResourceSubType || (TaskResourceSubType = {}));
8435
8008
  /**
8436
8009
  * Sets the horizontal alignment of text.
8437
-
8010
+
8438
8011
  right
8439
-
8012
+
8440
8013
  left
8441
-
8014
+
8442
8015
  center
8443
-
8016
+
8444
8017
  justified
8445
8018
  */
8446
8019
 
@@ -8455,11 +8028,11 @@ var TextAlignment;
8455
8028
  })(TextAlignment || (TextAlignment = {}));
8456
8029
  /**
8457
8030
  * Sets the vertical alignment of text.
8458
-
8031
+
8459
8032
  top
8460
-
8033
+
8461
8034
  bottom
8462
-
8035
+
8463
8036
  middle
8464
8037
  */
8465
8038
 
@@ -8473,11 +8046,11 @@ var TextVerticalAlignment;
8473
8046
  })(TextVerticalAlignment || (TextVerticalAlignment = {}));
8474
8047
  /**
8475
8048
  *
8476
-
8049
+
8477
8050
  Task
8478
-
8051
+
8479
8052
  Rest
8480
-
8053
+
8481
8054
  Both
8482
8055
  */
8483
8056
 
@@ -8491,61 +8064,79 @@ var WorkerMethodType;
8491
8064
  })(WorkerMethodType || (WorkerMethodType = {}));
8492
8065
  /**
8493
8066
  *
8494
-
8495
- Integer
8496
-
8067
+
8068
+ Int32
8069
+
8070
+ Int64
8071
+
8497
8072
  Double
8498
-
8073
+
8499
8074
  String
8500
-
8501
- Extent
8502
-
8075
+
8076
+ Boolean
8077
+
8078
+ DateTime
8079
+
8080
+ Point
8081
+
8503
8082
  Geometry
8504
-
8083
+
8084
+ Polyline
8085
+
8086
+ MultiPolygon
8087
+
8088
+ Polygon
8089
+
8090
+ Multipoint
8091
+
8505
8092
  IntergerArray
8506
-
8093
+
8507
8094
  DoubleArray
8508
-
8095
+
8509
8096
  StringArray
8510
-
8511
- Boolean
8512
-
8097
+
8513
8098
  SourceEql
8514
-
8099
+
8515
8100
  Layer
8516
-
8101
+
8517
8102
  Table
8518
-
8103
+
8519
8104
  Folder
8520
-
8105
+
8521
8106
  Json
8522
-
8523
- Expression
8524
-
8525
- Expressions
8107
+
8108
+ Attribute
8109
+
8110
+ AttributeArray
8526
8111
  */
8527
8112
 
8528
8113
 
8529
8114
  var WorkerSettingsFieldType;
8530
8115
 
8531
8116
  (function (WorkerSettingsFieldType) {
8532
- WorkerSettingsFieldType["Integer"] = "Integer";
8117
+ WorkerSettingsFieldType["Int32"] = "Int32";
8118
+ WorkerSettingsFieldType["Int64"] = "Int64";
8533
8119
  WorkerSettingsFieldType["Double"] = "Double";
8534
8120
  WorkerSettingsFieldType["String"] = "String";
8535
- WorkerSettingsFieldType["Extent"] = "Extent";
8121
+ WorkerSettingsFieldType["Boolean"] = "Boolean";
8122
+ WorkerSettingsFieldType["DateTime"] = "DateTime";
8123
+ WorkerSettingsFieldType["Point"] = "Point";
8536
8124
  WorkerSettingsFieldType["Geometry"] = "Geometry";
8125
+ WorkerSettingsFieldType["Polyline"] = "Polyline";
8126
+ WorkerSettingsFieldType["MultiPolygon"] = "MultiPolygon";
8127
+ WorkerSettingsFieldType["Polygon"] = "Polygon";
8128
+ WorkerSettingsFieldType["Multipoint"] = "Multipoint";
8537
8129
  WorkerSettingsFieldType["IntergerArray"] = "IntergerArray";
8538
8130
  WorkerSettingsFieldType["DoubleArray"] = "DoubleArray";
8539
8131
  WorkerSettingsFieldType["StringArray"] = "StringArray";
8540
- WorkerSettingsFieldType["Boolean"] = "Boolean";
8541
8132
  WorkerSettingsFieldType["SourceEql"] = "SourceEql";
8542
8133
  WorkerSettingsFieldType["Layer"] = "Layer";
8543
8134
  WorkerSettingsFieldType["Table"] = "Table";
8544
8135
  WorkerSettingsFieldType["Folder"] = "Folder";
8545
8136
  WorkerSettingsFieldType["Json"] = "Json";
8546
- WorkerSettingsFieldType["Expression"] = "Expression";
8547
- WorkerSettingsFieldType["Expressions"] = "Expressions";
8137
+ WorkerSettingsFieldType["Attribute"] = "Attribute";
8138
+ WorkerSettingsFieldType["AttributeArray"] = "AttributeArray";
8548
8139
  })(WorkerSettingsFieldType || (WorkerSettingsFieldType = {}));
8549
8140
 
8550
- 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, FeatureType, Feedback, FileUpload, Filters, FontStyle, FontWeight, GEOCODE_PROVIDER, General, Geocode, GeometryType, Group, HttpClient, IceRouter, Import, Layers, LineCapStyle, LineEndingType, LineJoinType, Names, Notification, NotificationEvent, Operation, OwnerFilter, PbfSchema, Permissions, PolicyType, PortalSettings, Print, Projects, Quality, RemoteTaskManager, ResourceCatalog, 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 };
8141
+ 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, General, Geocode, GeometryType, Group, HttpClient, IceRouter, Import, Layers, LineCapStyle, LineEndingType, LineJoinType, Names, Notification, NotificationEvent, OwnerFilter, PbfSchema, Permissions, PolicyType, PortalSettings, Print, Projects, Quality, RemoteTaskManager, RemoteTaskStatus, ResourceCatalog, 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 };
8551
8142
  //# sourceMappingURL=api.esm.js.map