@evergis/api 3.0.116 → 3.0.118

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
@@ -29,6 +29,9 @@ function _defineProperties(target, props) {
29
29
  function _createClass(Constructor, protoProps, staticProps) {
30
30
  if (protoProps) _defineProperties(Constructor.prototype, protoProps);
31
31
  if (staticProps) _defineProperties(Constructor, staticProps);
32
+ Object.defineProperty(Constructor, "prototype", {
33
+ writable: false
34
+ });
32
35
  return Constructor;
33
36
  }
34
37
 
@@ -62,6 +65,9 @@ function _inherits(subClass, superClass) {
62
65
  configurable: true
63
66
  }
64
67
  });
68
+ Object.defineProperty(subClass, "prototype", {
69
+ writable: false
70
+ });
65
71
  if (superClass) _setPrototypeOf(subClass, superClass);
66
72
  }
67
73
 
@@ -120,6 +126,8 @@ function _assertThisInitialized(self) {
120
126
  function _possibleConstructorReturn(self, call) {
121
127
  if (call && (typeof call === "object" || typeof call === "function")) {
122
128
  return call;
129
+ } else if (call !== void 0) {
130
+ throw new TypeError("Derived constructors may only return object or undefined");
123
131
  }
124
132
 
125
133
  return _assertThisInitialized(self);
@@ -153,7 +161,7 @@ function _superPropBase(object, property) {
153
161
  return object;
154
162
  }
155
163
 
156
- function _get(target, property, receiver) {
164
+ function _get() {
157
165
  if (typeof Reflect !== "undefined" && Reflect.get) {
158
166
  _get = Reflect.get;
159
167
  } else {
@@ -164,14 +172,14 @@ function _get(target, property, receiver) {
164
172
  var desc = Object.getOwnPropertyDescriptor(base, property);
165
173
 
166
174
  if (desc.get) {
167
- return desc.get.call(receiver);
175
+ return desc.get.call(arguments.length < 3 ? target : receiver);
168
176
  }
169
177
 
170
178
  return desc.value;
171
179
  };
172
180
  }
173
181
 
174
- return _get(target, property, receiver || target);
182
+ return _get.apply(this, arguments);
175
183
  }
176
184
 
177
185
  let HttpClient = /*#__PURE__*/function () {
@@ -967,8 +975,8 @@ let Notification = /*#__PURE__*/function (_NotificationService) {
967
975
  || event.code === 4002
968
976
  /* InvalidSession */
969
977
  ) {
970
- _this.connectStatus = ConnectionStatus.SessionClosed;
971
- } else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
978
+ _this.connectStatus = ConnectionStatus.SessionClosed;
979
+ } else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
972
980
  _this.connectStatus = ConnectionStatus.Break;
973
981
  _this.reconnectTries++;
974
982
 
@@ -1474,7 +1482,7 @@ let Scheduler = /*#__PURE__*/function (_SchedulerService) {
1474
1482
  const taskProgress = await this.getTaskProgress(id);
1475
1483
  this.resolveTaskStatus(taskProgress, resolve, reject);
1476
1484
 
1477
- const taskResultCallback = async (_ref) => {
1485
+ const taskResultCallback = async _ref => {
1478
1486
  let {
1479
1487
  data
1480
1488
  } = _ref;
@@ -3617,12 +3625,12 @@ let Resources = /*#__PURE__*/function () {
3617
3625
  }, {
3618
3626
  key: "getDependentNames",
3619
3627
  value: function getDependentNames(deps, depType) {
3620
- return deps.filter((_ref) => {
3628
+ return deps.filter(_ref => {
3621
3629
  let {
3622
3630
  type
3623
3631
  } = _ref;
3624
3632
  return type === depType;
3625
- }).map((_ref2) => {
3633
+ }).map(_ref2 => {
3626
3634
  let {
3627
3635
  name
3628
3636
  } = _ref2;
@@ -5863,6 +5871,80 @@ let Feedback = /*#__PURE__*/function (_FeedbackService) {
5863
5871
  return Feedback;
5864
5872
  }(FeedbackService);
5865
5873
 
5874
+ const _excluded$5 = ["name", "z", "x", "y"];
5875
+ /**
5876
+ * @title Spatial Processing Core API
5877
+ * @version 1.0.0
5878
+ * @baseUrl /sp
5879
+ */
5880
+
5881
+ let VectorTileService = /*#__PURE__*/function (_Service) {
5882
+ _inherits(VectorTileService, _Service);
5883
+
5884
+ var _super = /*#__PURE__*/_createSuper(VectorTileService);
5885
+
5886
+ function VectorTileService() {
5887
+ _classCallCheck(this, VectorTileService);
5888
+
5889
+ return _super.apply(this, arguments);
5890
+ }
5891
+
5892
+ _createClass(VectorTileService, [{
5893
+ key: "getVectorTile",
5894
+ value:
5895
+ /**
5896
+ * No description
5897
+ *
5898
+ * @tags VectorTileService
5899
+ * @name GetVectorTile
5900
+ * @operationId VectorTileServiceController_GetVectorTile
5901
+ * @summary Get vector tile from visible project layers or single layer.
5902
+ * @request GET:/vt/{name}/{z}/{x}/{y}.pbf
5903
+ * @response `200` Success
5904
+ */
5905
+ function getVectorTile(_ref) {
5906
+ let {
5907
+ name,
5908
+ z,
5909
+ x,
5910
+ y
5911
+ } = _ref,
5912
+ query = _objectWithoutPropertiesLoose(_ref, _excluded$5);
5913
+
5914
+ return this.http.get("/vt/" + name + "/" + z + "/" + x + "/" + y + ".pbf", query).then(() => {});
5915
+ }
5916
+ }]);
5917
+
5918
+ return VectorTileService;
5919
+ }(Service);
5920
+
5921
+ let VectorTiles = /*#__PURE__*/function (_VectorTileService) {
5922
+ _inherits(VectorTiles, _VectorTileService);
5923
+
5924
+ var _super = /*#__PURE__*/_createSuper(VectorTiles);
5925
+
5926
+ function VectorTiles() {
5927
+ _classCallCheck(this, VectorTiles);
5928
+
5929
+ return _super.apply(this, arguments);
5930
+ }
5931
+
5932
+ _createClass(VectorTiles, [{
5933
+ key: "getVt",
5934
+ value: function getVt(name, z, x, y, isProject) {
5935
+ return this.getVectorTile({
5936
+ name,
5937
+ z,
5938
+ x,
5939
+ y,
5940
+ isProject
5941
+ });
5942
+ }
5943
+ }]);
5944
+
5945
+ return VectorTiles;
5946
+ }(VectorTileService);
5947
+
5866
5948
  /**
5867
5949
  * @title Spatial Processing Core API
5868
5950
  * @version 1.0.0
@@ -6077,6 +6159,7 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
6077
6159
  _this.iceRouter = new IceRouter(_this.http);
6078
6160
  _this.statistic = new Statistic(_this.http);
6079
6161
  _this.feedback = new Feedback(_this.http);
6162
+ _this.vectorTiles = new VectorTiles(_this.http);
6080
6163
  _this.names = new Names({
6081
6164
  account: _this.account
6082
6165
  });
@@ -6241,22 +6324,31 @@ let EvergisTileLayer = /*#__PURE__*/function (_TileLayer) {
6241
6324
  return EvergisTileLayer;
6242
6325
  }(TileLayer);
6243
6326
 
6327
+ const _excluded$6 = ["name", "style", "condition", "dataFilterId"];
6244
6328
  let EvergisDynamicLayer = /*#__PURE__*/function (_DynamicLayer) {
6245
6329
  _inherits(EvergisDynamicLayer, _DynamicLayer);
6246
6330
 
6247
6331
  var _super = /*#__PURE__*/_createSuper(EvergisDynamicLayer);
6248
6332
 
6249
- function EvergisDynamicLayer(configuration, api) {
6333
+ function EvergisDynamicLayer(_ref, api) {
6250
6334
  var _this;
6251
6335
 
6336
+ let {
6337
+ name,
6338
+ style,
6339
+ condition,
6340
+ dataFilterId
6341
+ } = _ref,
6342
+ layerProps = _objectWithoutPropertiesLoose(_ref, _excluded$6);
6343
+
6252
6344
  _classCallCheck(this, EvergisDynamicLayer);
6253
6345
 
6254
- _this = _super.call(this);
6346
+ _this = _super.call(this, layerProps);
6255
6347
  _this.api = api;
6256
- _this.name = configuration.name;
6257
- _this.styleId = configuration.style;
6258
- _this.conditionQuery = configuration.condition;
6259
- _this.filterId = configuration.dataFilterId;
6348
+ _this.name = name;
6349
+ _this.styleId = style;
6350
+ _this.conditionQuery = condition;
6351
+ _this.filterId = dataFilterId;
6260
6352
 
6261
6353
  _this.subscribeRedraw();
6262
6354
 
@@ -6538,45 +6630,45 @@ function isFeatureLayer(layer) {
6538
6630
 
6539
6631
  /**
6540
6632
  *
6541
-
6633
+
6542
6634
  None
6543
-
6635
+
6544
6636
  Array
6545
-
6637
+
6546
6638
  Min
6547
-
6639
+
6548
6640
  Max
6549
-
6641
+
6550
6642
  Avg
6551
-
6643
+
6552
6644
  Sum
6553
-
6645
+
6554
6646
  Extent
6555
-
6647
+
6556
6648
  Count
6557
-
6649
+
6558
6650
  TotalCount
6559
-
6651
+
6560
6652
  DistinctCount
6561
-
6653
+
6562
6654
  First
6563
-
6655
+
6564
6656
  Last
6565
-
6657
+
6566
6658
  Median
6567
-
6659
+
6568
6660
  Mod
6569
-
6661
+
6570
6662
  StdDeviation
6571
-
6663
+
6572
6664
  SumOfProduct
6573
-
6665
+
6574
6666
  OnlyValue
6575
-
6667
+
6576
6668
  WeightedAvg
6577
-
6669
+
6578
6670
  DensityIndicators
6579
-
6671
+
6580
6672
  DividedSum
6581
6673
  */
6582
6674
  var AggregationFunction;
@@ -6605,27 +6697,27 @@ var AggregationFunction;
6605
6697
  })(AggregationFunction || (AggregationFunction = {}));
6606
6698
  /**
6607
6699
  * Types of the attributes that are supported by the system.
6608
-
6700
+
6609
6701
  Unknown
6610
-
6702
+
6611
6703
  String
6612
-
6704
+
6613
6705
  Int32
6614
-
6706
+
6615
6707
  Int64
6616
-
6708
+
6617
6709
  Double
6618
-
6710
+
6619
6711
  DateTime
6620
-
6712
+
6621
6713
  Boolean
6622
-
6714
+
6623
6715
  Point
6624
-
6716
+
6625
6717
  Polyline
6626
-
6718
+
6627
6719
  Polygon
6628
-
6720
+
6629
6721
  Multipoint
6630
6722
  */
6631
6723
 
@@ -6647,15 +6739,15 @@ var AttributeType;
6647
6739
  })(AttributeType || (AttributeType = {}));
6648
6740
  /**
6649
6741
  * Describes classification methods.
6650
-
6742
+
6651
6743
  none
6652
-
6744
+
6653
6745
  naturalBreaks
6654
-
6746
+
6655
6747
  equalInterval
6656
-
6748
+
6657
6749
  quantile
6658
-
6750
+
6659
6751
  unique
6660
6752
  */
6661
6753
 
@@ -6671,11 +6763,11 @@ var ClassificationType;
6671
6763
  })(ClassificationType || (ClassificationType = {}));
6672
6764
  /**
6673
6765
  * Type of attribute.
6674
-
6766
+
6675
6767
  decimal
6676
-
6768
+
6677
6769
  dateTime
6678
-
6770
+
6679
6771
  text
6680
6772
  */
6681
6773
 
@@ -6689,53 +6781,53 @@ var ClassifyAttributeType;
6689
6781
  })(ClassifyAttributeType || (ClassifyAttributeType = {}));
6690
6782
  /**
6691
6783
  * Types of errors that can occur during layer initialize.
6692
-
6784
+
6693
6785
  Unknown
6694
-
6786
+
6695
6787
  SerializeError
6696
-
6788
+
6697
6789
  InvalidDataService
6698
-
6790
+
6699
6791
  InvalidConfiguration
6700
-
6792
+
6701
6793
  InvalidDataServiceName
6702
-
6794
+
6703
6795
  InvalidTableName
6704
-
6796
+
6705
6797
  InvalidLayerName
6706
-
6798
+
6707
6799
  ResourceNotFound
6708
-
6800
+
6709
6801
  InvalidCondition
6710
-
6802
+
6711
6803
  InvalidAttributes
6712
-
6804
+
6713
6805
  InvalidIdAttribute
6714
-
6806
+
6715
6807
  InvalidGeometryAttribute
6716
-
6808
+
6717
6809
  InvalidGeometryAttributeType
6718
-
6810
+
6719
6811
  InvalidColumnName
6720
-
6812
+
6721
6813
  InvalidIdColumnSettings
6722
-
6814
+
6723
6815
  ColumnNotExistsInTable
6724
-
6816
+
6725
6817
  InvalidStyle
6726
-
6818
+
6727
6819
  InvalidLayerType
6728
-
6820
+
6729
6821
  ColumnLoadingError
6730
-
6822
+
6731
6823
  InvalidAttributeFormat
6732
-
6824
+
6733
6825
  DataSourceNotFound
6734
-
6826
+
6735
6827
  DuplicateColumns
6736
-
6828
+
6737
6829
  TableWithoutColumns
6738
-
6830
+
6739
6831
  InvalidTableReferenceConfiguration
6740
6832
  */
6741
6833
 
@@ -6770,15 +6862,15 @@ var ConfigurationErrorEnum;
6770
6862
  })(ConfigurationErrorEnum || (ConfigurationErrorEnum = {}));
6771
6863
  /**
6772
6864
  * Type of the error.
6773
-
6865
+
6774
6866
  ResourceLimitExceeded
6775
-
6867
+
6776
6868
  ResourceNotFound
6777
-
6869
+
6778
6870
  InternalError
6779
-
6871
+
6780
6872
  BadRequest
6781
-
6873
+
6782
6874
  DuplicateContent
6783
6875
  */
6784
6876
 
@@ -6833,9 +6925,9 @@ var ErrorType;
6833
6925
  })(ErrorType || (ErrorType = {}));
6834
6926
  /**
6835
6927
  * Type of the feature.
6836
-
6928
+
6837
6929
  Unknown
6838
-
6930
+
6839
6931
  GeometricFeature
6840
6932
  */
6841
6933
 
@@ -6848,11 +6940,11 @@ var FeatureType;
6848
6940
  })(FeatureType || (FeatureType = {}));
6849
6941
  /**
6850
6942
  * Sets whether font should be styled.
6851
-
6943
+
6852
6944
  normal
6853
-
6945
+
6854
6946
  oblique
6855
-
6947
+
6856
6948
  italic
6857
6949
  */
6858
6950
 
@@ -6866,27 +6958,27 @@ var FontStyle;
6866
6958
  })(FontStyle || (FontStyle = {}));
6867
6959
  /**
6868
6960
  * Specifies the weight (or boldness) of the font.
6869
-
6961
+
6870
6962
  Thin
6871
-
6963
+
6872
6964
  ExtraLight
6873
-
6965
+
6874
6966
  Light
6875
-
6967
+
6876
6968
  SemiLight
6877
-
6969
+
6878
6970
  Normal
6879
-
6971
+
6880
6972
  Medium
6881
-
6973
+
6882
6974
  DemiBold
6883
-
6975
+
6884
6976
  Bold
6885
-
6977
+
6886
6978
  ExtraBold
6887
-
6979
+
6888
6980
  Black
6889
-
6981
+
6890
6982
  ExtraBlack
6891
6983
  */
6892
6984
 
@@ -6908,17 +7000,17 @@ var FontWeight;
6908
7000
  })(FontWeight || (FontWeight = {}));
6909
7001
  /**
6910
7002
  *
6911
-
7003
+
6912
7004
  unknown
6913
-
7005
+
6914
7006
  point
6915
-
7007
+
6916
7008
  polyline
6917
-
7009
+
6918
7010
  polygon
6919
-
7011
+
6920
7012
  envelope
6921
-
7013
+
6922
7014
  multipoint
6923
7015
  */
6924
7016
 
@@ -6935,13 +7027,13 @@ var GeometryType;
6935
7027
  })(GeometryType || (GeometryType = {}));
6936
7028
  /**
6937
7029
  * Resource group.
6938
-
7030
+
6939
7031
  my
6940
-
7032
+
6941
7033
  role
6942
-
7034
+
6943
7035
  public
6944
-
7036
+
6945
7037
  all
6946
7038
  */
6947
7039
 
@@ -6957,9 +7049,9 @@ var Group;
6957
7049
  /**
6958
7050
  * The size of the line ending in a SPCore.Kernel.Rendering.Symbols.SimplePolylineSymbol. The values sent here can be one
6959
7051
  of the preset values, or a number representing the size of the ending in pixels for 1px wide lines.
6960
-
7052
+
6961
7053
  small
6962
-
7054
+
6963
7055
  large
6964
7056
  */
6965
7057
 
@@ -6972,19 +7064,19 @@ var LineEndingSize;
6972
7064
  })(LineEndingSize || (LineEndingSize = {}));
6973
7065
  /**
6974
7066
  * Type of the line ending.
6975
-
7067
+
6976
7068
  none
6977
-
7069
+
6978
7070
  arrow
6979
-
7071
+
6980
7072
  filledArrow
6981
-
7073
+
6982
7074
  square
6983
-
7075
+
6984
7076
  filledSquare
6985
-
7077
+
6986
7078
  circle
6987
-
7079
+
6988
7080
  filledCircle
6989
7081
  */
6990
7082
 
@@ -7002,15 +7094,15 @@ var LineEndingType;
7002
7094
  })(LineEndingType || (LineEndingType = {}));
7003
7095
  /**
7004
7096
  *
7005
-
7097
+
7006
7098
  Unknown
7007
-
7099
+
7008
7100
  union
7009
-
7101
+
7010
7102
  intersection
7011
-
7103
+
7012
7104
  subtraction
7013
-
7105
+
7014
7106
  symDifference
7015
7107
  */
7016
7108
 
@@ -7026,19 +7118,19 @@ var Operation;
7026
7118
  })(Operation || (Operation = {}));
7027
7119
  /**
7028
7120
  * User permissions for server security objects (services, projects etc.)
7029
-
7121
+
7030
7122
  none
7031
-
7123
+
7032
7124
  configure
7033
-
7125
+
7034
7126
  write
7035
-
7127
+
7036
7128
  read
7037
-
7129
+
7038
7130
  read,configure
7039
-
7131
+
7040
7132
  read,write
7041
-
7133
+
7042
7134
  read,write,configure
7043
7135
  */
7044
7136
 
@@ -7056,19 +7148,19 @@ var Permissions;
7056
7148
  })(Permissions || (Permissions = {}));
7057
7149
  /**
7058
7150
  * Type of the authorization policy.
7059
-
7151
+
7060
7152
  Unknown
7061
-
7153
+
7062
7154
  CreateTable
7063
-
7155
+
7064
7156
  CreateLayer
7065
-
7157
+
7066
7158
  CreateProject
7067
-
7159
+
7068
7160
  MaxFeaturesInOneTable
7069
-
7161
+
7070
7162
  MaxObjectsToExport
7071
-
7163
+
7072
7164
  MaxUploadContentSize
7073
7165
  */
7074
7166
 
@@ -7086,11 +7178,11 @@ var PolicyType;
7086
7178
  })(PolicyType || (PolicyType = {}));
7087
7179
  /**
7088
7180
  * Types of table reference.
7089
-
7181
+
7090
7182
  OneToMany
7091
-
7183
+
7092
7184
  OneToOne
7093
-
7185
+
7094
7186
  Intersect
7095
7187
  */
7096
7188
 
@@ -7104,19 +7196,19 @@ var ReferenceJoinType;
7104
7196
  })(ReferenceJoinType || (ReferenceJoinType = {}));
7105
7197
  /**
7106
7198
  * The `ResourceType` represents resource manager supports types.
7107
-
7199
+
7108
7200
  Unknown
7109
-
7201
+
7110
7202
  table
7111
-
7203
+
7112
7204
  layer
7113
-
7205
+
7114
7206
  project
7115
-
7207
+
7116
7208
  file
7117
-
7209
+
7118
7210
  feature
7119
-
7211
+
7120
7212
  tag
7121
7213
  */
7122
7214
 
@@ -7142,21 +7234,21 @@ var ResourceTypeLink;
7142
7234
  })(ResourceTypeLink || (ResourceTypeLink = {}));
7143
7235
  /**
7144
7236
  * Status of the server task.
7145
-
7237
+
7146
7238
  None
7147
-
7239
+
7148
7240
  Scheduled
7149
-
7241
+
7150
7242
  Planning
7151
-
7243
+
7152
7244
  Executing
7153
-
7245
+
7154
7246
  Completed
7155
-
7247
+
7156
7248
  Failed
7157
-
7249
+
7158
7250
  Canceled
7159
-
7251
+
7160
7252
  Timeout
7161
7253
  */
7162
7254
 
@@ -7175,11 +7267,11 @@ var ServerTaskStatus;
7175
7267
  })(ServerTaskStatus || (ServerTaskStatus = {}));
7176
7268
  /**
7177
7269
  * The `StringSubType` provides information about string attribute subtype.
7178
-
7270
+
7179
7271
  None
7180
-
7272
+
7181
7273
  Image
7182
-
7274
+
7183
7275
  PkkCode
7184
7276
  */
7185
7277
 
@@ -7193,9 +7285,9 @@ var StringSubType;
7193
7285
  })(StringSubType || (StringSubType = {}));
7194
7286
  /**
7195
7287
  * Task owner group.
7196
-
7288
+
7197
7289
  my
7198
-
7290
+
7199
7291
  all
7200
7292
  */
7201
7293
 
@@ -7208,13 +7300,13 @@ var TaskGroup;
7208
7300
  })(TaskGroup || (TaskGroup = {}));
7209
7301
  /**
7210
7302
  * Sets the horizontal alignment of text.
7211
-
7303
+
7212
7304
  right
7213
-
7305
+
7214
7306
  left
7215
-
7307
+
7216
7308
  center
7217
-
7309
+
7218
7310
  justified
7219
7311
  */
7220
7312
 
@@ -7229,11 +7321,11 @@ var TextAlignment;
7229
7321
  })(TextAlignment || (TextAlignment = {}));
7230
7322
  /**
7231
7323
  * Sets the vertical alignment of text.
7232
-
7324
+
7233
7325
  top
7234
-
7326
+
7235
7327
  bottom
7236
-
7328
+
7237
7329
  middle
7238
7330
  */
7239
7331
 
@@ -7246,5 +7338,5 @@ var TextVerticalAlignment;
7246
7338
  TextVerticalAlignment["Middle"] = "middle";
7247
7339
  })(TextVerticalAlignment || (TextVerticalAlignment = {}));
7248
7340
 
7249
- export { Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeType, BulkOperations, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConnectionStatus, DependencyType, ErrorDetailsType, ErrorReason, ErrorType, EvergisDynamicLayer, EvergisTileLayer, External, FeatureType, Feedback, FileUpload, Filters, FontStyle, FontWeight, GEOCODE_PROVIDER, General, Geocode, GeometryType, Group, HttpClient, IceRouter, Import, Layers, LayersManager, LineEndingSize, LineEndingType, Names, Namespace, Notification, NotificationEvent, Operation, Permissions, PolicyType, PortalSettings, Projects, ReferenceJoinType, ResourceCatalog, ResourceSeparator, ResourceType, ResourceTypeLink, Resources, Scheduler, Security, ServerTaskStatus, SpatialProcessor, Statistic, StringSubType, Styles, Tables, TaskGroup, TextAlignment, TextVerticalAlignment, Tools, UrlPath, addSubDomainToLocation, errorHandler, formDataFromFile, generateId, isEvergisDynamicLayer, isEvergisTileLayer, isFeatureLayer, isHTTPError, isHandledError, isLayer, isProjectContentItems, isString, isTileLayerService, promiseAllIgnoreErrors, stripUselessSlashes, toFormData, unique };
7341
+ export { Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeType, BulkOperations, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConnectionStatus, DependencyType, ErrorDetailsType, ErrorReason, ErrorType, EvergisDynamicLayer, EvergisTileLayer, External, FeatureType, Feedback, FileUpload, Filters, FontStyle, FontWeight, GEOCODE_PROVIDER, General, Geocode, GeometryType, Group, HttpClient, IceRouter, Import, Layers, LayersManager, LineEndingSize, LineEndingType, Names, Namespace, Notification, NotificationEvent, Operation, Permissions, PolicyType, PortalSettings, Projects, ReferenceJoinType, ResourceCatalog, ResourceSeparator, ResourceType, ResourceTypeLink, Resources, Scheduler, Security, ServerTaskStatus, SpatialProcessor, Statistic, StringSubType, Styles, Tables, TaskGroup, TextAlignment, TextVerticalAlignment, Tools, UrlPath, VectorTiles, addSubDomainToLocation, errorHandler, formDataFromFile, generateId, isEvergisDynamicLayer, isEvergisTileLayer, isFeatureLayer, isHTTPError, isHandledError, isLayer, isProjectContentItems, isString, isTileLayerService, promiseAllIgnoreErrors, stripUselessSlashes, toFormData, unique };
7250
7342
  //# sourceMappingURL=api.esm.js.map