@evergis/api 3.0.72 → 3.0.75

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
@@ -28,6 +28,9 @@ function _defineProperties(target, props) {
28
28
  function _createClass(Constructor, protoProps, staticProps) {
29
29
  if (protoProps) _defineProperties(Constructor.prototype, protoProps);
30
30
  if (staticProps) _defineProperties(Constructor, staticProps);
31
+ Object.defineProperty(Constructor, "prototype", {
32
+ writable: false
33
+ });
31
34
  return Constructor;
32
35
  }
33
36
 
@@ -61,6 +64,9 @@ function _inherits(subClass, superClass) {
61
64
  configurable: true
62
65
  }
63
66
  });
67
+ Object.defineProperty(subClass, "prototype", {
68
+ writable: false
69
+ });
64
70
  if (superClass) _setPrototypeOf(subClass, superClass);
65
71
  }
66
72
 
@@ -119,6 +125,8 @@ function _assertThisInitialized(self) {
119
125
  function _possibleConstructorReturn(self, call) {
120
126
  if (call && (typeof call === "object" || typeof call === "function")) {
121
127
  return call;
128
+ } else if (call !== void 0) {
129
+ throw new TypeError("Derived constructors may only return object or undefined");
122
130
  }
123
131
 
124
132
  return _assertThisInitialized(self);
@@ -152,7 +160,7 @@ function _superPropBase(object, property) {
152
160
  return object;
153
161
  }
154
162
 
155
- function _get(target, property, receiver) {
163
+ function _get() {
156
164
  if (typeof Reflect !== "undefined" && Reflect.get) {
157
165
  _get = Reflect.get;
158
166
  } else {
@@ -163,14 +171,14 @@ function _get(target, property, receiver) {
163
171
  var desc = Object.getOwnPropertyDescriptor(base, property);
164
172
 
165
173
  if (desc.get) {
166
- return desc.get.call(receiver);
174
+ return desc.get.call(arguments.length < 3 ? target : receiver);
167
175
  }
168
176
 
169
177
  return desc.value;
170
178
  };
171
179
  }
172
180
 
173
- return _get(target, property, receiver || target);
181
+ return _get.apply(this, arguments);
174
182
  }
175
183
 
176
184
  /* eslint-disable */
@@ -853,8 +861,8 @@ let Notification = /*#__PURE__*/function (_NotificationService) {
853
861
  || event.code === 4002
854
862
  /* InvalidSession */
855
863
  ) {
856
- _this.connectStatus = ConnectionStatus.SessionClosed;
857
- } else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
864
+ _this.connectStatus = ConnectionStatus.SessionClosed;
865
+ } else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
858
866
  _this.connectStatus = ConnectionStatus.Break;
859
867
  _this.reconnectTries++;
860
868
 
@@ -1360,7 +1368,7 @@ let Scheduler = /*#__PURE__*/function (_SchedulerService) {
1360
1368
  const taskProgress = await this.getTaskProgress(id);
1361
1369
  this.resolveTaskStatus(taskProgress, resolve, reject);
1362
1370
 
1363
- const taskResultCallback = async (_ref) => {
1371
+ const taskResultCallback = async _ref => {
1364
1372
  let {
1365
1373
  data
1366
1374
  } = _ref;
@@ -3473,12 +3481,12 @@ let Resources = /*#__PURE__*/function () {
3473
3481
  }, {
3474
3482
  key: "getDependentNames",
3475
3483
  value: function getDependentNames(deps, depType) {
3476
- return deps.filter((_ref) => {
3484
+ return deps.filter(_ref => {
3477
3485
  let {
3478
3486
  type
3479
3487
  } = _ref;
3480
3488
  return type === depType;
3481
- }).map((_ref2) => {
3489
+ }).map(_ref2 => {
3482
3490
  let {
3483
3491
  name
3484
3492
  } = _ref2;
@@ -3571,6 +3579,38 @@ let StyleService = /*#__PURE__*/function (_Service) {
3571
3579
  value: function getAllFonts() {
3572
3580
  return this.http.get("/styles/fonts").json();
3573
3581
  }
3582
+ /**
3583
+ * No description
3584
+ *
3585
+ * @tags StyleService
3586
+ * @name AddFont
3587
+ * @operationId StyleServiceController_AddFont
3588
+ * @summary Install new font.
3589
+ * @request POST:/styles/fonts
3590
+ * @response `200` Success
3591
+ */
3592
+
3593
+ }, {
3594
+ key: "addFont",
3595
+ value: function addFont(data) {
3596
+ return this.http.post("/styles/fonts", toFormData(data)).then(() => {});
3597
+ }
3598
+ /**
3599
+ * No description
3600
+ *
3601
+ * @tags StyleService
3602
+ * @name RemoveFont
3603
+ * @operationId StyleServiceController_RemoveFont
3604
+ * @summary Remove installed font.
3605
+ * @request DELETE:/styles/fonts
3606
+ * @response `200` Success
3607
+ */
3608
+
3609
+ }, {
3610
+ key: "removeFont",
3611
+ value: function removeFont(query) {
3612
+ return this.http.delete("/styles/fonts", null, query).then(() => {});
3613
+ }
3574
3614
  }]);
3575
3615
 
3576
3616
  return StyleService;
@@ -5469,6 +5509,177 @@ let IceRouter = /*#__PURE__*/function (_IceRouterService) {
5469
5509
  return _createClass(IceRouter);
5470
5510
  }(IceRouterService);
5471
5511
 
5512
+ /**
5513
+ * @title Spatial Processing Core API
5514
+ * @version v0.6.0
5515
+ * @baseUrl /sp
5516
+ */
5517
+
5518
+ let StatisticService = /*#__PURE__*/function (_Service) {
5519
+ _inherits(StatisticService, _Service);
5520
+
5521
+ var _super = /*#__PURE__*/_createSuper(StatisticService);
5522
+
5523
+ function StatisticService() {
5524
+ _classCallCheck(this, StatisticService);
5525
+
5526
+ return _super.apply(this, arguments);
5527
+ }
5528
+
5529
+ _createClass(StatisticService, [{
5530
+ key: "statisticsDb",
5531
+ value:
5532
+ /**
5533
+ * No description
5534
+ *
5535
+ * @tags Statistic
5536
+ * @name StatisticsDb
5537
+ * @operationId StatisticController_StatisticsDb
5538
+ * @summary Calculates statistics for layer attribute.
5539
+ * @request GET:/statistics
5540
+ * @response `200` Success
5541
+ */
5542
+ function statisticsDb(query) {
5543
+ return this.http.get("/statistics", query).json();
5544
+ }
5545
+ /**
5546
+ * No description
5547
+ *
5548
+ * @tags Statistic
5549
+ * @name Classify
5550
+ * @operationId StatisticController_Classify
5551
+ * @summary Returns the classified attribute values that correspond to the given number of classes and given condition.
5552
+ * @request GET:/classify
5553
+ * @response `200` Success
5554
+ */
5555
+
5556
+ }, {
5557
+ key: "classify",
5558
+ value: function classify(query) {
5559
+ return this.http.get("/classify", query).json();
5560
+ }
5561
+ }]);
5562
+
5563
+ return StatisticService;
5564
+ }(Service);
5565
+
5566
+ let Statistic = /*#__PURE__*/function (_StatisticService) {
5567
+ _inherits(Statistic, _StatisticService);
5568
+
5569
+ var _super = /*#__PURE__*/_createSuper(Statistic);
5570
+
5571
+ function Statistic() {
5572
+ _classCallCheck(this, Statistic);
5573
+
5574
+ return _super.apply(this, arguments);
5575
+ }
5576
+
5577
+ _createClass(Statistic, [{
5578
+ key: "getStatistic",
5579
+ value: function getStatistic(params) {
5580
+ return this.statisticsDb(params);
5581
+ }
5582
+ }, {
5583
+ key: "getClassify",
5584
+ value: function getClassify(params) {
5585
+ return this.classify(params);
5586
+ }
5587
+ }]);
5588
+
5589
+ return Statistic;
5590
+ }(StatisticService);
5591
+
5592
+ /**
5593
+ * @title Spatial Processing Core API
5594
+ * @version v0.6.0
5595
+ * @baseUrl /sp
5596
+ */
5597
+
5598
+ let FeedbackService = /*#__PURE__*/function (_Service) {
5599
+ _inherits(FeedbackService, _Service);
5600
+
5601
+ var _super = /*#__PURE__*/_createSuper(FeedbackService);
5602
+
5603
+ function FeedbackService() {
5604
+ _classCallCheck(this, FeedbackService);
5605
+
5606
+ return _super.apply(this, arguments);
5607
+ }
5608
+
5609
+ _createClass(FeedbackService, [{
5610
+ key: "increaseResourcesLimit",
5611
+ value:
5612
+ /**
5613
+ * No description
5614
+ *
5615
+ * @tags Feedback
5616
+ * @name IncreaseResourcesLimit
5617
+ * @operationId FeedbackController_IncreaseResourcesLimit
5618
+ * @summary Increase resources limit request.
5619
+ * @request POST:/feedback/limits
5620
+ * @response `200` Success
5621
+ */
5622
+ function increaseResourcesLimit(query) {
5623
+ return this.http.post("/feedback/limits", null, query).json();
5624
+ }
5625
+ /**
5626
+ * No description
5627
+ *
5628
+ * @tags Feedback
5629
+ * @name MoreSymbols
5630
+ * @operationId FeedbackController_MoreSymbols
5631
+ * @summary More symbols request.
5632
+ * @request POST:/feedback/symbol
5633
+ * @response `200` Success
5634
+ */
5635
+
5636
+ }, {
5637
+ key: "moreSymbols",
5638
+ value: function moreSymbols(query) {
5639
+ return this.http.post("/feedback/symbol", null, query).json();
5640
+ }
5641
+ /**
5642
+ * No description
5643
+ *
5644
+ * @tags Feedback
5645
+ * @name Feedback
5646
+ * @operationId FeedbackController_Feedback
5647
+ * @summary Feedback request.
5648
+ * @request POST:/feedback
5649
+ * @response `200` Success
5650
+ */
5651
+
5652
+ }, {
5653
+ key: "feedback",
5654
+ value: function feedback(query, data) {
5655
+ return this.http.post("/feedback", toFormData(data), query).json();
5656
+ }
5657
+ }]);
5658
+
5659
+ return FeedbackService;
5660
+ }(Service);
5661
+
5662
+ let Feedback = /*#__PURE__*/function (_FeedbackService) {
5663
+ _inherits(Feedback, _FeedbackService);
5664
+
5665
+ var _super = /*#__PURE__*/_createSuper(Feedback);
5666
+
5667
+ function Feedback() {
5668
+ _classCallCheck(this, Feedback);
5669
+
5670
+ return _super.apply(this, arguments);
5671
+ }
5672
+
5673
+ _createClass(Feedback, [{
5674
+ key: "postFeedback",
5675
+ value: function postFeedback(query, data) {
5676
+ return this.feedback(query, data);
5677
+ }
5678
+ }]);
5679
+
5680
+ return Feedback;
5681
+ }(FeedbackService);
5682
+
5472
5683
  /**
5473
5684
  * @title Spatial Processing Core API
5474
5685
  * @version v0.6.0
@@ -5687,6 +5898,8 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
5687
5898
  _this.clientSettings = new ClientSettings(_this.http);
5688
5899
  _this.portalSettings = new PortalSettings(_this.http);
5689
5900
  _this.iceRouter = new IceRouter(_this.http);
5901
+ _this.statistic = new Statistic(_this.http);
5902
+ _this.feedback = new Feedback(_this.http);
5690
5903
  _this.names = new Names({
5691
5904
  account: _this.account
5692
5905
  });
@@ -6117,29 +6330,41 @@ function isFeatureLayer(layer) {
6117
6330
 
6118
6331
  /**
6119
6332
  *
6120
-
6333
+
6121
6334
  None
6122
-
6335
+
6123
6336
  Array
6124
-
6337
+
6125
6338
  Min
6126
-
6339
+
6127
6340
  Max
6128
-
6341
+
6129
6342
  Avg
6130
-
6343
+
6131
6344
  Sum
6132
-
6345
+
6133
6346
  Extent
6134
-
6347
+
6135
6348
  Count
6136
-
6349
+
6350
+ First
6351
+
6352
+ Last
6353
+
6354
+ Median
6355
+
6356
+ Mod
6357
+
6358
+ StdDeviation
6359
+
6360
+ SumOfProduct
6361
+
6137
6362
  OnlyValue
6138
-
6363
+
6139
6364
  WeightedAvg
6140
-
6365
+
6141
6366
  DensityIndicators
6142
-
6367
+
6143
6368
  DividedSum
6144
6369
  */
6145
6370
  var AggregationFunction;
@@ -6153,6 +6378,12 @@ var AggregationFunction;
6153
6378
  AggregationFunction["Sum"] = "Sum";
6154
6379
  AggregationFunction["Extent"] = "Extent";
6155
6380
  AggregationFunction["Count"] = "Count";
6381
+ AggregationFunction["First"] = "First";
6382
+ AggregationFunction["Last"] = "Last";
6383
+ AggregationFunction["Median"] = "Median";
6384
+ AggregationFunction["Mod"] = "Mod";
6385
+ AggregationFunction["StdDeviation"] = "StdDeviation";
6386
+ AggregationFunction["SumOfProduct"] = "SumOfProduct";
6156
6387
  AggregationFunction["OnlyValue"] = "OnlyValue";
6157
6388
  AggregationFunction["WeightedAvg"] = "WeightedAvg";
6158
6389
  AggregationFunction["DensityIndicators"] = "DensityIndicators";
@@ -6160,27 +6391,27 @@ var AggregationFunction;
6160
6391
  })(AggregationFunction || (AggregationFunction = {}));
6161
6392
  /**
6162
6393
  * Types of the attributes that are supported by the system.
6163
-
6394
+
6164
6395
  Unknown
6165
-
6396
+
6166
6397
  String
6167
-
6398
+
6168
6399
  Int32
6169
-
6400
+
6170
6401
  Int64
6171
-
6402
+
6172
6403
  Double
6173
-
6404
+
6174
6405
  DateTime
6175
-
6406
+
6176
6407
  Boolean
6177
-
6408
+
6178
6409
  Point
6179
-
6410
+
6180
6411
  Polyline
6181
-
6412
+
6182
6413
  Polygon
6183
-
6414
+
6184
6415
  Multipoint
6185
6416
  */
6186
6417
 
@@ -6202,11 +6433,13 @@ var AttributeType;
6202
6433
  })(AttributeType || (AttributeType = {}));
6203
6434
  /**
6204
6435
  * Describes classification methods.
6205
-
6436
+
6437
+ none
6438
+
6206
6439
  naturalBreaks
6207
-
6440
+
6208
6441
  equalInterval
6209
-
6442
+
6210
6443
  quantile
6211
6444
  */
6212
6445
 
@@ -6214,10 +6447,26 @@ quantile
6214
6447
  var ClassificationType;
6215
6448
 
6216
6449
  (function (ClassificationType) {
6450
+ ClassificationType["None"] = "none";
6217
6451
  ClassificationType["NaturalBreaks"] = "naturalBreaks";
6218
6452
  ClassificationType["EqualInterval"] = "equalInterval";
6219
6453
  ClassificationType["Quantile"] = "quantile";
6220
6454
  })(ClassificationType || (ClassificationType = {}));
6455
+ /**
6456
+ * Type of attribute.
6457
+
6458
+ decimal
6459
+
6460
+ dateTime
6461
+ */
6462
+
6463
+
6464
+ var ClassifyAttributeType;
6465
+
6466
+ (function (ClassifyAttributeType) {
6467
+ ClassifyAttributeType["Decimal"] = "decimal";
6468
+ ClassifyAttributeType["DateTime"] = "dateTime";
6469
+ })(ClassifyAttributeType || (ClassifyAttributeType = {}));
6221
6470
  /**
6222
6471
  * Types of errors that can occur during layer initialize.
6223
6472
  */
@@ -6249,15 +6498,15 @@ var ConfigurationErrorEnum;
6249
6498
  })(ConfigurationErrorEnum || (ConfigurationErrorEnum = {}));
6250
6499
  /**
6251
6500
  * Type of the error.
6252
-
6501
+
6253
6502
  ResourceLimitExceeded
6254
-
6503
+
6255
6504
  ResourceNotFound
6256
-
6505
+
6257
6506
  InternalError
6258
-
6507
+
6259
6508
  BadRequest
6260
-
6509
+
6261
6510
  DuplicateContent
6262
6511
  */
6263
6512
 
@@ -6312,9 +6561,9 @@ var ErrorType;
6312
6561
  })(ErrorType || (ErrorType = {}));
6313
6562
  /**
6314
6563
  * Type of the feature.
6315
-
6564
+
6316
6565
  Unknown
6317
-
6566
+
6318
6567
  GeometricFeature
6319
6568
  */
6320
6569
 
@@ -6347,35 +6596,29 @@ var FontWeight;
6347
6596
  (function (FontWeight) {
6348
6597
  FontWeight["Thin"] = "Thin";
6349
6598
  FontWeight["ExtraLight"] = "ExtraLight";
6350
- FontWeight["UltraLight"] = "UltraLight";
6351
6599
  FontWeight["Light"] = "Light";
6352
6600
  FontWeight["SemiLight"] = "SemiLight";
6353
6601
  FontWeight["Normal"] = "Normal";
6354
- FontWeight["Regular"] = "Regular";
6355
6602
  FontWeight["Medium"] = "Medium";
6356
6603
  FontWeight["DemiBold"] = "DemiBold";
6357
- FontWeight["SemiBold"] = "SemiBold";
6358
6604
  FontWeight["Bold"] = "Bold";
6359
6605
  FontWeight["ExtraBold"] = "ExtraBold";
6360
- FontWeight["UltraBold"] = "UltraBold";
6361
6606
  FontWeight["Black"] = "Black";
6362
- FontWeight["Heavy"] = "Heavy";
6363
6607
  FontWeight["ExtraBlack"] = "ExtraBlack";
6364
- FontWeight["UltraBlack"] = "UltraBlack";
6365
6608
  })(FontWeight || (FontWeight = {}));
6366
6609
  /**
6367
6610
  *
6368
-
6611
+
6369
6612
  unknown
6370
-
6613
+
6371
6614
  point
6372
-
6615
+
6373
6616
  polyline
6374
-
6617
+
6375
6618
  polygon
6376
-
6619
+
6377
6620
  envelope
6378
-
6621
+
6379
6622
  multipoint
6380
6623
  */
6381
6624
 
@@ -6392,13 +6635,13 @@ var GeometryType;
6392
6635
  })(GeometryType || (GeometryType = {}));
6393
6636
  /**
6394
6637
  * Resource group.
6395
-
6638
+
6396
6639
  my
6397
-
6640
+
6398
6641
  role
6399
-
6642
+
6400
6643
  public
6401
-
6644
+
6402
6645
  all
6403
6646
  */
6404
6647
 
@@ -6441,15 +6684,15 @@ var LineEndingType;
6441
6684
  })(LineEndingType || (LineEndingType = {}));
6442
6685
  /**
6443
6686
  *
6444
-
6687
+
6445
6688
  Unknown
6446
-
6689
+
6447
6690
  union
6448
-
6691
+
6449
6692
  intersection
6450
-
6693
+
6451
6694
  subtraction
6452
-
6695
+
6453
6696
  symDifference
6454
6697
  */
6455
6698
 
@@ -6465,19 +6708,19 @@ var Operation;
6465
6708
  })(Operation || (Operation = {}));
6466
6709
  /**
6467
6710
  * User permissions for server security objects (services, projects etc.)
6468
-
6711
+
6469
6712
  none
6470
-
6713
+
6471
6714
  configure
6472
-
6715
+
6473
6716
  write
6474
-
6717
+
6475
6718
  read
6476
-
6719
+
6477
6720
  read,configure
6478
-
6721
+
6479
6722
  read,write
6480
-
6723
+
6481
6724
  read,write,configure
6482
6725
  */
6483
6726
 
@@ -6495,15 +6738,15 @@ var Permissions;
6495
6738
  })(Permissions || (Permissions = {}));
6496
6739
  /**
6497
6740
  * Type of the authorization policy.
6498
-
6741
+
6499
6742
  Unknown
6500
-
6743
+
6501
6744
  CreateTable
6502
-
6745
+
6503
6746
  CreateLayer
6504
-
6747
+
6505
6748
  CreateProject
6506
-
6749
+
6507
6750
  MaxFeaturesInOneTable
6508
6751
  */
6509
6752
 
@@ -6519,17 +6762,17 @@ var PolicyType;
6519
6762
  })(PolicyType || (PolicyType = {}));
6520
6763
  /**
6521
6764
  * The `ResourceType` represents resource manager supports types.
6522
-
6765
+
6523
6766
  Unknown
6524
-
6767
+
6525
6768
  table
6526
-
6769
+
6527
6770
  layer
6528
-
6771
+
6529
6772
  project
6530
-
6773
+
6531
6774
  file
6532
-
6775
+
6533
6776
  feature
6534
6777
  */
6535
6778
 
@@ -6554,21 +6797,21 @@ var ResourceTypeLink;
6554
6797
  })(ResourceTypeLink || (ResourceTypeLink = {}));
6555
6798
  /**
6556
6799
  * Status of the server task.
6557
-
6800
+
6558
6801
  None
6559
-
6802
+
6560
6803
  Scheduled
6561
-
6804
+
6562
6805
  Planning
6563
-
6806
+
6564
6807
  Executing
6565
-
6808
+
6566
6809
  Completed
6567
-
6810
+
6568
6811
  Failed
6569
-
6812
+
6570
6813
  Canceled
6571
-
6814
+
6572
6815
  Timeout
6573
6816
  */
6574
6817
 
@@ -6586,51 +6829,12 @@ var ServerTaskStatus;
6586
6829
  ServerTaskStatus["Timeout"] = "Timeout";
6587
6830
  })(ServerTaskStatus || (ServerTaskStatus = {}));
6588
6831
  /**
6589
- * Describes statistics methods.
6590
-
6591
- min
6592
-
6593
- max
6594
-
6595
- avg
6596
-
6597
- med
6598
-
6599
- mod
6600
-
6601
- sum
6602
-
6603
- sumOfProduct
6604
-
6605
- count
6606
-
6607
- firstLast
6608
-
6609
- standardDeviation
6610
- */
6611
-
6612
-
6613
- var StatisticsType;
6614
-
6615
- (function (StatisticsType) {
6616
- StatisticsType["Min"] = "min";
6617
- StatisticsType["Max"] = "max";
6618
- StatisticsType["Avg"] = "avg";
6619
- StatisticsType["Med"] = "med";
6620
- StatisticsType["Mod"] = "mod";
6621
- StatisticsType["Sum"] = "sum";
6622
- StatisticsType["SumOfProduct"] = "sumOfProduct";
6623
- StatisticsType["Count"] = "count";
6624
- StatisticsType["FirstLast"] = "firstLast";
6625
- StatisticsType["StandardDeviation"] = "standardDeviation";
6626
- })(StatisticsType || (StatisticsType = {}));
6627
- /**
6628
6832
  * The `StringSubType` provides information about string attribute subtype.
6629
-
6833
+
6630
6834
  None
6631
-
6835
+
6632
6836
  Image
6633
-
6837
+
6634
6838
  PkkCode
6635
6839
  */
6636
6840
 
@@ -6668,5 +6872,5 @@ var TextVerticalAlignment;
6668
6872
  TextVerticalAlignment["Middle"] = "middle";
6669
6873
  })(TextVerticalAlignment || (TextVerticalAlignment = {}));
6670
6874
 
6671
- export { API_USER_INFO_KEY, Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeType, BulkOperations, ClassificationType, ClientSettings, ConfigurationErrorEnum, ConnectionStatus, DependencyType, ErrorDetailsType, ErrorReason, ErrorType, EvergisDynamicLayer, EvergisTileLayer, External, FeatureType, FileUpload, FontStyle, FontWeight, GEOCODE_PROVIDER, General, Geocode, GeometryType, Group, HttpClient, IceRouter, Import, Layers, LayersManager, LineEndingSize, LineEndingType, Names, Namespace, Notification, NotificationEvent, Operation, Permissions, PolicyType, PortalSettings, Projects, ResourceCatalog, ResourceSeparator, ResourceType, ResourceTypeLink, Resources, Scheduler, Security, ServerTaskStatus, SpatialProcessor, StatisticsType, StringSubType, Styles, Tables, TextAlignment, TextVerticalAlignment, Tools, UrlPath, addSubDomainToLocation, errorHandler, formDataFromFile, generateId, isEvergisDynamicLayer, isEvergisTileLayer, isFeatureLayer, isHTTPError, isHandledError, isLayer, isProjectContentItems, isString, isTileLayerService, promiseAllIgnoreErrors, stripUselessSlashes, toFormData, unique };
6875
+ export { API_USER_INFO_KEY, Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeType, BulkOperations, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConnectionStatus, DependencyType, ErrorDetailsType, ErrorReason, ErrorType, EvergisDynamicLayer, EvergisTileLayer, External, FeatureType, Feedback, FileUpload, FontStyle, FontWeight, GEOCODE_PROVIDER, General, Geocode, GeometryType, Group, HttpClient, IceRouter, Import, Layers, LayersManager, LineEndingSize, LineEndingType, Names, Namespace, Notification, NotificationEvent, Operation, Permissions, PolicyType, PortalSettings, Projects, ResourceCatalog, ResourceSeparator, ResourceType, ResourceTypeLink, Resources, Scheduler, Security, ServerTaskStatus, SpatialProcessor, Statistic, StringSubType, Styles, Tables, TextAlignment, TextVerticalAlignment, Tools, UrlPath, addSubDomainToLocation, errorHandler, formDataFromFile, generateId, isEvergisDynamicLayer, isEvergisTileLayer, isFeatureLayer, isHTTPError, isHandledError, isLayer, isProjectContentItems, isString, isTileLayerService, promiseAllIgnoreErrors, stripUselessSlashes, toFormData, unique };
6672
6876
  //# sourceMappingURL=api.esm.js.map