@evergis/api 3.0.117 → 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,7 +6324,7 @@ let EvergisTileLayer = /*#__PURE__*/function (_TileLayer) {
6241
6324
  return EvergisTileLayer;
6242
6325
  }(TileLayer);
6243
6326
 
6244
- const _excluded$5 = ["name", "style", "condition", "dataFilterId"];
6327
+ const _excluded$6 = ["name", "style", "condition", "dataFilterId"];
6245
6328
  let EvergisDynamicLayer = /*#__PURE__*/function (_DynamicLayer) {
6246
6329
  _inherits(EvergisDynamicLayer, _DynamicLayer);
6247
6330
 
@@ -6256,7 +6339,7 @@ let EvergisDynamicLayer = /*#__PURE__*/function (_DynamicLayer) {
6256
6339
  condition,
6257
6340
  dataFilterId
6258
6341
  } = _ref,
6259
- layerProps = _objectWithoutPropertiesLoose(_ref, _excluded$5);
6342
+ layerProps = _objectWithoutPropertiesLoose(_ref, _excluded$6);
6260
6343
 
6261
6344
  _classCallCheck(this, EvergisDynamicLayer);
6262
6345
 
@@ -6547,45 +6630,45 @@ function isFeatureLayer(layer) {
6547
6630
 
6548
6631
  /**
6549
6632
  *
6550
-
6633
+
6551
6634
  None
6552
-
6635
+
6553
6636
  Array
6554
-
6637
+
6555
6638
  Min
6556
-
6639
+
6557
6640
  Max
6558
-
6641
+
6559
6642
  Avg
6560
-
6643
+
6561
6644
  Sum
6562
-
6645
+
6563
6646
  Extent
6564
-
6647
+
6565
6648
  Count
6566
-
6649
+
6567
6650
  TotalCount
6568
-
6651
+
6569
6652
  DistinctCount
6570
-
6653
+
6571
6654
  First
6572
-
6655
+
6573
6656
  Last
6574
-
6657
+
6575
6658
  Median
6576
-
6659
+
6577
6660
  Mod
6578
-
6661
+
6579
6662
  StdDeviation
6580
-
6663
+
6581
6664
  SumOfProduct
6582
-
6665
+
6583
6666
  OnlyValue
6584
-
6667
+
6585
6668
  WeightedAvg
6586
-
6669
+
6587
6670
  DensityIndicators
6588
-
6671
+
6589
6672
  DividedSum
6590
6673
  */
6591
6674
  var AggregationFunction;
@@ -6614,27 +6697,27 @@ var AggregationFunction;
6614
6697
  })(AggregationFunction || (AggregationFunction = {}));
6615
6698
  /**
6616
6699
  * Types of the attributes that are supported by the system.
6617
-
6700
+
6618
6701
  Unknown
6619
-
6702
+
6620
6703
  String
6621
-
6704
+
6622
6705
  Int32
6623
-
6706
+
6624
6707
  Int64
6625
-
6708
+
6626
6709
  Double
6627
-
6710
+
6628
6711
  DateTime
6629
-
6712
+
6630
6713
  Boolean
6631
-
6714
+
6632
6715
  Point
6633
-
6716
+
6634
6717
  Polyline
6635
-
6718
+
6636
6719
  Polygon
6637
-
6720
+
6638
6721
  Multipoint
6639
6722
  */
6640
6723
 
@@ -6656,15 +6739,15 @@ var AttributeType;
6656
6739
  })(AttributeType || (AttributeType = {}));
6657
6740
  /**
6658
6741
  * Describes classification methods.
6659
-
6742
+
6660
6743
  none
6661
-
6744
+
6662
6745
  naturalBreaks
6663
-
6746
+
6664
6747
  equalInterval
6665
-
6748
+
6666
6749
  quantile
6667
-
6750
+
6668
6751
  unique
6669
6752
  */
6670
6753
 
@@ -6680,11 +6763,11 @@ var ClassificationType;
6680
6763
  })(ClassificationType || (ClassificationType = {}));
6681
6764
  /**
6682
6765
  * Type of attribute.
6683
-
6766
+
6684
6767
  decimal
6685
-
6768
+
6686
6769
  dateTime
6687
-
6770
+
6688
6771
  text
6689
6772
  */
6690
6773
 
@@ -6698,53 +6781,53 @@ var ClassifyAttributeType;
6698
6781
  })(ClassifyAttributeType || (ClassifyAttributeType = {}));
6699
6782
  /**
6700
6783
  * Types of errors that can occur during layer initialize.
6701
-
6784
+
6702
6785
  Unknown
6703
-
6786
+
6704
6787
  SerializeError
6705
-
6788
+
6706
6789
  InvalidDataService
6707
-
6790
+
6708
6791
  InvalidConfiguration
6709
-
6792
+
6710
6793
  InvalidDataServiceName
6711
-
6794
+
6712
6795
  InvalidTableName
6713
-
6796
+
6714
6797
  InvalidLayerName
6715
-
6798
+
6716
6799
  ResourceNotFound
6717
-
6800
+
6718
6801
  InvalidCondition
6719
-
6802
+
6720
6803
  InvalidAttributes
6721
-
6804
+
6722
6805
  InvalidIdAttribute
6723
-
6806
+
6724
6807
  InvalidGeometryAttribute
6725
-
6808
+
6726
6809
  InvalidGeometryAttributeType
6727
-
6810
+
6728
6811
  InvalidColumnName
6729
-
6812
+
6730
6813
  InvalidIdColumnSettings
6731
-
6814
+
6732
6815
  ColumnNotExistsInTable
6733
-
6816
+
6734
6817
  InvalidStyle
6735
-
6818
+
6736
6819
  InvalidLayerType
6737
-
6820
+
6738
6821
  ColumnLoadingError
6739
-
6822
+
6740
6823
  InvalidAttributeFormat
6741
-
6824
+
6742
6825
  DataSourceNotFound
6743
-
6826
+
6744
6827
  DuplicateColumns
6745
-
6828
+
6746
6829
  TableWithoutColumns
6747
-
6830
+
6748
6831
  InvalidTableReferenceConfiguration
6749
6832
  */
6750
6833
 
@@ -6779,15 +6862,15 @@ var ConfigurationErrorEnum;
6779
6862
  })(ConfigurationErrorEnum || (ConfigurationErrorEnum = {}));
6780
6863
  /**
6781
6864
  * Type of the error.
6782
-
6865
+
6783
6866
  ResourceLimitExceeded
6784
-
6867
+
6785
6868
  ResourceNotFound
6786
-
6869
+
6787
6870
  InternalError
6788
-
6871
+
6789
6872
  BadRequest
6790
-
6873
+
6791
6874
  DuplicateContent
6792
6875
  */
6793
6876
 
@@ -6842,9 +6925,9 @@ var ErrorType;
6842
6925
  })(ErrorType || (ErrorType = {}));
6843
6926
  /**
6844
6927
  * Type of the feature.
6845
-
6928
+
6846
6929
  Unknown
6847
-
6930
+
6848
6931
  GeometricFeature
6849
6932
  */
6850
6933
 
@@ -6857,11 +6940,11 @@ var FeatureType;
6857
6940
  })(FeatureType || (FeatureType = {}));
6858
6941
  /**
6859
6942
  * Sets whether font should be styled.
6860
-
6943
+
6861
6944
  normal
6862
-
6945
+
6863
6946
  oblique
6864
-
6947
+
6865
6948
  italic
6866
6949
  */
6867
6950
 
@@ -6875,27 +6958,27 @@ var FontStyle;
6875
6958
  })(FontStyle || (FontStyle = {}));
6876
6959
  /**
6877
6960
  * Specifies the weight (or boldness) of the font.
6878
-
6961
+
6879
6962
  Thin
6880
-
6963
+
6881
6964
  ExtraLight
6882
-
6965
+
6883
6966
  Light
6884
-
6967
+
6885
6968
  SemiLight
6886
-
6969
+
6887
6970
  Normal
6888
-
6971
+
6889
6972
  Medium
6890
-
6973
+
6891
6974
  DemiBold
6892
-
6975
+
6893
6976
  Bold
6894
-
6977
+
6895
6978
  ExtraBold
6896
-
6979
+
6897
6980
  Black
6898
-
6981
+
6899
6982
  ExtraBlack
6900
6983
  */
6901
6984
 
@@ -6917,17 +7000,17 @@ var FontWeight;
6917
7000
  })(FontWeight || (FontWeight = {}));
6918
7001
  /**
6919
7002
  *
6920
-
7003
+
6921
7004
  unknown
6922
-
7005
+
6923
7006
  point
6924
-
7007
+
6925
7008
  polyline
6926
-
7009
+
6927
7010
  polygon
6928
-
7011
+
6929
7012
  envelope
6930
-
7013
+
6931
7014
  multipoint
6932
7015
  */
6933
7016
 
@@ -6944,13 +7027,13 @@ var GeometryType;
6944
7027
  })(GeometryType || (GeometryType = {}));
6945
7028
  /**
6946
7029
  * Resource group.
6947
-
7030
+
6948
7031
  my
6949
-
7032
+
6950
7033
  role
6951
-
7034
+
6952
7035
  public
6953
-
7036
+
6954
7037
  all
6955
7038
  */
6956
7039
 
@@ -6966,9 +7049,9 @@ var Group;
6966
7049
  /**
6967
7050
  * The size of the line ending in a SPCore.Kernel.Rendering.Symbols.SimplePolylineSymbol. The values sent here can be one
6968
7051
  of the preset values, or a number representing the size of the ending in pixels for 1px wide lines.
6969
-
7052
+
6970
7053
  small
6971
-
7054
+
6972
7055
  large
6973
7056
  */
6974
7057
 
@@ -6981,19 +7064,19 @@ var LineEndingSize;
6981
7064
  })(LineEndingSize || (LineEndingSize = {}));
6982
7065
  /**
6983
7066
  * Type of the line ending.
6984
-
7067
+
6985
7068
  none
6986
-
7069
+
6987
7070
  arrow
6988
-
7071
+
6989
7072
  filledArrow
6990
-
7073
+
6991
7074
  square
6992
-
7075
+
6993
7076
  filledSquare
6994
-
7077
+
6995
7078
  circle
6996
-
7079
+
6997
7080
  filledCircle
6998
7081
  */
6999
7082
 
@@ -7011,15 +7094,15 @@ var LineEndingType;
7011
7094
  })(LineEndingType || (LineEndingType = {}));
7012
7095
  /**
7013
7096
  *
7014
-
7097
+
7015
7098
  Unknown
7016
-
7099
+
7017
7100
  union
7018
-
7101
+
7019
7102
  intersection
7020
-
7103
+
7021
7104
  subtraction
7022
-
7105
+
7023
7106
  symDifference
7024
7107
  */
7025
7108
 
@@ -7035,19 +7118,19 @@ var Operation;
7035
7118
  })(Operation || (Operation = {}));
7036
7119
  /**
7037
7120
  * User permissions for server security objects (services, projects etc.)
7038
-
7121
+
7039
7122
  none
7040
-
7123
+
7041
7124
  configure
7042
-
7125
+
7043
7126
  write
7044
-
7127
+
7045
7128
  read
7046
-
7129
+
7047
7130
  read,configure
7048
-
7131
+
7049
7132
  read,write
7050
-
7133
+
7051
7134
  read,write,configure
7052
7135
  */
7053
7136
 
@@ -7065,19 +7148,19 @@ var Permissions;
7065
7148
  })(Permissions || (Permissions = {}));
7066
7149
  /**
7067
7150
  * Type of the authorization policy.
7068
-
7151
+
7069
7152
  Unknown
7070
-
7153
+
7071
7154
  CreateTable
7072
-
7155
+
7073
7156
  CreateLayer
7074
-
7157
+
7075
7158
  CreateProject
7076
-
7159
+
7077
7160
  MaxFeaturesInOneTable
7078
-
7161
+
7079
7162
  MaxObjectsToExport
7080
-
7163
+
7081
7164
  MaxUploadContentSize
7082
7165
  */
7083
7166
 
@@ -7095,11 +7178,11 @@ var PolicyType;
7095
7178
  })(PolicyType || (PolicyType = {}));
7096
7179
  /**
7097
7180
  * Types of table reference.
7098
-
7181
+
7099
7182
  OneToMany
7100
-
7183
+
7101
7184
  OneToOne
7102
-
7185
+
7103
7186
  Intersect
7104
7187
  */
7105
7188
 
@@ -7113,19 +7196,19 @@ var ReferenceJoinType;
7113
7196
  })(ReferenceJoinType || (ReferenceJoinType = {}));
7114
7197
  /**
7115
7198
  * The `ResourceType` represents resource manager supports types.
7116
-
7199
+
7117
7200
  Unknown
7118
-
7201
+
7119
7202
  table
7120
-
7203
+
7121
7204
  layer
7122
-
7205
+
7123
7206
  project
7124
-
7207
+
7125
7208
  file
7126
-
7209
+
7127
7210
  feature
7128
-
7211
+
7129
7212
  tag
7130
7213
  */
7131
7214
 
@@ -7151,21 +7234,21 @@ var ResourceTypeLink;
7151
7234
  })(ResourceTypeLink || (ResourceTypeLink = {}));
7152
7235
  /**
7153
7236
  * Status of the server task.
7154
-
7237
+
7155
7238
  None
7156
-
7239
+
7157
7240
  Scheduled
7158
-
7241
+
7159
7242
  Planning
7160
-
7243
+
7161
7244
  Executing
7162
-
7245
+
7163
7246
  Completed
7164
-
7247
+
7165
7248
  Failed
7166
-
7249
+
7167
7250
  Canceled
7168
-
7251
+
7169
7252
  Timeout
7170
7253
  */
7171
7254
 
@@ -7184,11 +7267,11 @@ var ServerTaskStatus;
7184
7267
  })(ServerTaskStatus || (ServerTaskStatus = {}));
7185
7268
  /**
7186
7269
  * The `StringSubType` provides information about string attribute subtype.
7187
-
7270
+
7188
7271
  None
7189
-
7272
+
7190
7273
  Image
7191
-
7274
+
7192
7275
  PkkCode
7193
7276
  */
7194
7277
 
@@ -7202,9 +7285,9 @@ var StringSubType;
7202
7285
  })(StringSubType || (StringSubType = {}));
7203
7286
  /**
7204
7287
  * Task owner group.
7205
-
7288
+
7206
7289
  my
7207
-
7290
+
7208
7291
  all
7209
7292
  */
7210
7293
 
@@ -7217,13 +7300,13 @@ var TaskGroup;
7217
7300
  })(TaskGroup || (TaskGroup = {}));
7218
7301
  /**
7219
7302
  * Sets the horizontal alignment of text.
7220
-
7303
+
7221
7304
  right
7222
-
7305
+
7223
7306
  left
7224
-
7307
+
7225
7308
  center
7226
-
7309
+
7227
7310
  justified
7228
7311
  */
7229
7312
 
@@ -7238,11 +7321,11 @@ var TextAlignment;
7238
7321
  })(TextAlignment || (TextAlignment = {}));
7239
7322
  /**
7240
7323
  * Sets the vertical alignment of text.
7241
-
7324
+
7242
7325
  top
7243
-
7326
+
7244
7327
  bottom
7245
-
7328
+
7246
7329
  middle
7247
7330
  */
7248
7331
 
@@ -7255,5 +7338,5 @@ var TextVerticalAlignment;
7255
7338
  TextVerticalAlignment["Middle"] = "middle";
7256
7339
  })(TextVerticalAlignment || (TextVerticalAlignment = {}));
7257
7340
 
7258
- 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 };
7259
7342
  //# sourceMappingURL=api.esm.js.map