@evergis/api 3.0.210 → 3.0.213

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
@@ -30,6 +30,9 @@ function _defineProperties(target, props) {
30
30
  function _createClass(Constructor, protoProps, staticProps) {
31
31
  if (protoProps) _defineProperties(Constructor.prototype, protoProps);
32
32
  if (staticProps) _defineProperties(Constructor, staticProps);
33
+ Object.defineProperty(Constructor, "prototype", {
34
+ writable: false
35
+ });
33
36
  return Constructor;
34
37
  }
35
38
 
@@ -63,6 +66,9 @@ function _inherits(subClass, superClass) {
63
66
  configurable: true
64
67
  }
65
68
  });
69
+ Object.defineProperty(subClass, "prototype", {
70
+ writable: false
71
+ });
66
72
  if (superClass) _setPrototypeOf(subClass, superClass);
67
73
  }
68
74
 
@@ -121,6 +127,8 @@ function _assertThisInitialized(self) {
121
127
  function _possibleConstructorReturn(self, call) {
122
128
  if (call && (typeof call === "object" || typeof call === "function")) {
123
129
  return call;
130
+ } else if (call !== void 0) {
131
+ throw new TypeError("Derived constructors may only return object or undefined");
124
132
  }
125
133
 
126
134
  return _assertThisInitialized(self);
@@ -154,7 +162,7 @@ function _superPropBase(object, property) {
154
162
  return object;
155
163
  }
156
164
 
157
- function _get(target, property, receiver) {
165
+ function _get() {
158
166
  if (typeof Reflect !== "undefined" && Reflect.get) {
159
167
  _get = Reflect.get;
160
168
  } else {
@@ -165,14 +173,14 @@ function _get(target, property, receiver) {
165
173
  var desc = Object.getOwnPropertyDescriptor(base, property);
166
174
 
167
175
  if (desc.get) {
168
- return desc.get.call(receiver);
176
+ return desc.get.call(arguments.length < 3 ? target : receiver);
169
177
  }
170
178
 
171
179
  return desc.value;
172
180
  };
173
181
  }
174
182
 
175
- return _get(target, property, receiver || target);
183
+ return _get.apply(this, arguments);
176
184
  }
177
185
 
178
186
  const API_USER_INFO_KEY = '@evergis/user-info';
@@ -4840,6 +4848,7 @@ function isString(v) {
4840
4848
  }
4841
4849
 
4842
4850
  const addSubDomainToLocation = subDomain => window.location.protocol + "//" + subDomain + "." + window.location.host;
4851
+ const getFetchingUrlPath = urlPath => urlPath === UrlPath.Presentation ? UrlPath.Base : urlPath;
4843
4852
 
4844
4853
  const parseJwt = token => {
4845
4854
  const base64Url = token.split(".")[1];
@@ -5221,8 +5230,8 @@ let Notification = /*#__PURE__*/function (_NotificationService) {
5221
5230
  || event.code === 4002
5222
5231
  /* InvalidSession */
5223
5232
  ) {
5224
- _this.connectStatus = ConnectionStatus.SessionClosed;
5225
- } else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
5233
+ _this.connectStatus = ConnectionStatus.SessionClosed;
5234
+ } else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
5226
5235
  _this.connectStatus = ConnectionStatus.Break;
5227
5236
  _this.reconnectTries++;
5228
5237
 
@@ -6078,12 +6087,12 @@ let Resources = /*#__PURE__*/function () {
6078
6087
  }, {
6079
6088
  key: "getDependentNames",
6080
6089
  value: function getDependentNames(deps, depType) {
6081
- return deps.filter((_ref) => {
6090
+ return deps.filter(_ref => {
6082
6091
  let {
6083
6092
  type
6084
6093
  } = _ref;
6085
6094
  return type === depType;
6086
- }).map((_ref2) => {
6095
+ }).map(_ref2 => {
6087
6096
  let {
6088
6097
  name
6089
6098
  } = _ref2;
@@ -6539,7 +6548,7 @@ let Scheduler = /*#__PURE__*/function (_SchedulerService) {
6539
6548
  const taskProgress = await this.getTaskProgress(id);
6540
6549
  this.resolveTaskStatus(taskProgress, resolve, reject);
6541
6550
 
6542
- const taskResultCallback = async (_ref) => {
6551
+ const taskResultCallback = async _ref => {
6543
6552
  let {
6544
6553
  data
6545
6554
  } = _ref;
@@ -7688,6 +7697,7 @@ var UrlPath;
7688
7697
  const apiEventsByResponseStatus = {
7689
7698
  401: ApiEvent.Unauthorized
7690
7699
  };
7700
+ const SHARED_PORT = "8082";
7691
7701
  const URL_PATHS = /*#__PURE__*/Object.values(UrlPath);
7692
7702
  const DEFAULT_URL_PATH = URL_PATHS[0];
7693
7703
  let Api = /*#__PURE__*/function (_EventEmitter) {
@@ -7819,7 +7829,7 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
7819
7829
 
7820
7830
  if (fetchSettings) {
7821
7831
  await this.clientSettings.fetchClientSettings({
7822
- urlPath: this.urlPath
7832
+ urlPath: getFetchingUrlPath(this.urlPath)
7823
7833
  });
7824
7834
  }
7825
7835
 
@@ -7898,7 +7908,7 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
7898
7908
  }, {
7899
7909
  key: "isPresentation",
7900
7910
  get: function get() {
7901
- return this.urlPath === UrlPath.Presentation;
7911
+ return this.urlPath === UrlPath.Presentation || window.location.port === SHARED_PORT;
7902
7912
  }
7903
7913
  }]);
7904
7914
 
@@ -8269,47 +8279,47 @@ function isFeatureLayer(layer) {
8269
8279
 
8270
8280
  /**
8271
8281
  *
8272
-
8282
+
8273
8283
  None
8274
-
8284
+
8275
8285
  Array
8276
-
8286
+
8277
8287
  Min
8278
-
8288
+
8279
8289
  Max
8280
-
8290
+
8281
8291
  Avg
8282
-
8292
+
8283
8293
  Sum
8284
-
8294
+
8285
8295
  Extent
8286
-
8296
+
8287
8297
  H3
8288
-
8298
+
8289
8299
  Count
8290
-
8300
+
8291
8301
  TotalCount
8292
-
8302
+
8293
8303
  DistinctCount
8294
-
8304
+
8295
8305
  First
8296
-
8306
+
8297
8307
  Last
8298
-
8308
+
8299
8309
  Median
8300
-
8310
+
8301
8311
  Mod
8302
-
8312
+
8303
8313
  StdDeviation
8304
-
8314
+
8305
8315
  SumOfProduct
8306
-
8316
+
8307
8317
  OnlyValue
8308
-
8318
+
8309
8319
  WeightedAvg
8310
-
8320
+
8311
8321
  DensityIndicators
8312
-
8322
+
8313
8323
  DividedSum
8314
8324
  */
8315
8325
  var AggregationFunction;
@@ -8339,13 +8349,13 @@ var AggregationFunction;
8339
8349
  })(AggregationFunction || (AggregationFunction = {}));
8340
8350
  /**
8341
8351
  *
8342
-
8352
+
8343
8353
  Unknown
8344
-
8354
+
8345
8355
  Icon
8346
-
8356
+
8347
8357
  PNG
8348
-
8358
+
8349
8359
  SVG
8350
8360
  */
8351
8361
 
@@ -8360,13 +8370,13 @@ var AttributeIconType;
8360
8370
  })(AttributeIconType || (AttributeIconType = {}));
8361
8371
  /**
8362
8372
  *
8363
-
8373
+
8364
8374
  None
8365
-
8375
+
8366
8376
  SelectFromHandBook
8367
-
8377
+
8368
8378
  SelectFromRange
8369
-
8379
+
8370
8380
  ViewHandBook
8371
8381
  */
8372
8382
 
@@ -8381,31 +8391,31 @@ var AttributeSelectorType;
8381
8391
  })(AttributeSelectorType || (AttributeSelectorType = {}));
8382
8392
  /**
8383
8393
  *
8384
-
8394
+
8385
8395
  Unknown
8386
-
8396
+
8387
8397
  String
8388
-
8398
+
8389
8399
  Int32
8390
-
8400
+
8391
8401
  Int64
8392
-
8402
+
8393
8403
  Double
8394
-
8404
+
8395
8405
  DateTime
8396
-
8406
+
8397
8407
  Boolean
8398
-
8408
+
8399
8409
  Point
8400
-
8410
+
8401
8411
  Polyline
8402
-
8412
+
8403
8413
  MultiPolygon
8404
-
8414
+
8405
8415
  Multipoint
8406
-
8416
+
8407
8417
  H3Index
8408
-
8418
+
8409
8419
  Json
8410
8420
  */
8411
8421
 
@@ -8431,9 +8441,9 @@ var AttributeType;
8431
8441
  * An authorization grant is a credential representing the resource
8432
8442
  owner's authorization (to access its protected resources) used by the
8433
8443
  client to obtain an access token.
8434
-
8444
+
8435
8445
  authorization_code
8436
-
8446
+
8437
8447
  refresh_token
8438
8448
  */
8439
8449
 
@@ -8446,19 +8456,19 @@ var AuthorizationGrant;
8446
8456
  })(AuthorizationGrant || (AuthorizationGrant = {}));
8447
8457
  /**
8448
8458
  *
8449
-
8459
+
8450
8460
  None
8451
-
8461
+
8452
8462
  Map
8453
-
8463
+
8454
8464
  Layer
8455
-
8465
+
8456
8466
  Table
8457
-
8467
+
8458
8468
  File
8459
-
8469
+
8460
8470
  TaskPrototype
8461
-
8471
+
8462
8472
  DataSource
8463
8473
  */
8464
8474
 
@@ -8476,15 +8486,15 @@ var CatalogResourceType;
8476
8486
  })(CatalogResourceType || (CatalogResourceType = {}));
8477
8487
  /**
8478
8488
  * Describes classification methods.
8479
-
8489
+
8480
8490
  none
8481
-
8491
+
8482
8492
  naturalBreaks
8483
-
8493
+
8484
8494
  equalInterval
8485
-
8495
+
8486
8496
  quantile
8487
-
8497
+
8488
8498
  unique
8489
8499
  */
8490
8500
 
@@ -8500,11 +8510,11 @@ var ClassificationType;
8500
8510
  })(ClassificationType || (ClassificationType = {}));
8501
8511
  /**
8502
8512
  *
8503
-
8513
+
8504
8514
  decimal
8505
-
8515
+
8506
8516
  dateTime
8507
-
8517
+
8508
8518
  text
8509
8519
  */
8510
8520
 
@@ -8518,55 +8528,55 @@ var ClassifyAttributeType;
8518
8528
  })(ClassifyAttributeType || (ClassifyAttributeType = {}));
8519
8529
  /**
8520
8530
  *
8521
-
8531
+
8522
8532
  Unknown
8523
-
8533
+
8524
8534
  SerializeError
8525
-
8535
+
8526
8536
  InvalidDataService
8527
-
8537
+
8528
8538
  InvalidConfiguration
8529
-
8539
+
8530
8540
  InvalidDataServiceName
8531
-
8541
+
8532
8542
  InvalidTableName
8533
-
8543
+
8534
8544
  InvalidLayerName
8535
-
8545
+
8536
8546
  ResourceNotFound
8537
-
8547
+
8538
8548
  InvalidCondition
8539
-
8549
+
8540
8550
  InvalidAttributes
8541
-
8551
+
8542
8552
  InvalidIdAttribute
8543
-
8553
+
8544
8554
  InvalidGeometryAttribute
8545
-
8555
+
8546
8556
  InvalidGeometryAttributeType
8547
-
8557
+
8548
8558
  InvalidColumnName
8549
-
8559
+
8550
8560
  InvalidIdColumnSettings
8551
-
8561
+
8552
8562
  ColumnNotExistsInTable
8553
-
8563
+
8554
8564
  InvalidStyle
8555
-
8565
+
8556
8566
  InvalidLayerType
8557
-
8567
+
8558
8568
  ColumnLoadingError
8559
-
8569
+
8560
8570
  InvalidAttributeFormat
8561
-
8571
+
8562
8572
  DataSourceNotFound
8563
-
8573
+
8564
8574
  DuplicateColumns
8565
-
8575
+
8566
8576
  DuplicateAttributes
8567
-
8577
+
8568
8578
  TableWithoutColumns
8569
-
8579
+
8570
8580
  InvalidTableReferenceConfiguration
8571
8581
  */
8572
8582
 
@@ -8602,13 +8612,13 @@ var ConfigurationErrorEnum;
8602
8612
  })(ConfigurationErrorEnum || (ConfigurationErrorEnum = {}));
8603
8613
  /**
8604
8614
  *
8605
-
8615
+
8606
8616
  Postgres
8607
-
8617
+
8608
8618
  Trino
8609
-
8619
+
8610
8620
  S3
8611
-
8621
+
8612
8622
  GisServer
8613
8623
  */
8614
8624
 
@@ -8623,15 +8633,15 @@ var DataSourceType;
8623
8633
  })(DataSourceType || (DataSourceType = {}));
8624
8634
  /**
8625
8635
  * Type of the error.
8626
-
8636
+
8627
8637
  ResourceLimitExceeded
8628
-
8638
+
8629
8639
  ResourceNotFound
8630
-
8640
+
8631
8641
  InternalError
8632
-
8642
+
8633
8643
  BadRequest
8634
-
8644
+
8635
8645
  DuplicateContent
8636
8646
  */
8637
8647
 
@@ -8682,9 +8692,9 @@ var ErrorType;
8682
8692
  })(ErrorType || (ErrorType = {}));
8683
8693
  /**
8684
8694
  * Type of the feature.
8685
-
8695
+
8686
8696
  Unknown
8687
-
8697
+
8688
8698
  GeometricFeature
8689
8699
  */
8690
8700
 
@@ -8697,11 +8707,11 @@ var FeatureType;
8697
8707
  })(FeatureType || (FeatureType = {}));
8698
8708
  /**
8699
8709
  * Sets whether font should be styled.
8700
-
8710
+
8701
8711
  normal
8702
-
8712
+
8703
8713
  oblique
8704
-
8714
+
8705
8715
  italic
8706
8716
  */
8707
8717
 
@@ -8715,27 +8725,27 @@ var FontStyle;
8715
8725
  })(FontStyle || (FontStyle = {}));
8716
8726
  /**
8717
8727
  * Specifies the weight (or boldness) of the font.
8718
-
8728
+
8719
8729
  Thin
8720
-
8730
+
8721
8731
  ExtraLight
8722
-
8732
+
8723
8733
  Light
8724
-
8734
+
8725
8735
  SemiLight
8726
-
8736
+
8727
8737
  Normal
8728
-
8738
+
8729
8739
  Medium
8730
-
8740
+
8731
8741
  DemiBold
8732
-
8742
+
8733
8743
  Bold
8734
-
8744
+
8735
8745
  ExtraBold
8736
-
8746
+
8737
8747
  Black
8738
-
8748
+
8739
8749
  ExtraBlack
8740
8750
  */
8741
8751
 
@@ -8757,17 +8767,17 @@ var FontWeight;
8757
8767
  })(FontWeight || (FontWeight = {}));
8758
8768
  /**
8759
8769
  *
8760
-
8770
+
8761
8771
  unknown
8762
-
8772
+
8763
8773
  point
8764
-
8774
+
8765
8775
  polyline
8766
-
8776
+
8767
8777
  multipolygon
8768
-
8778
+
8769
8779
  envelope
8770
-
8780
+
8771
8781
  multipoint
8772
8782
  */
8773
8783
 
@@ -8784,13 +8794,13 @@ var GeometryType;
8784
8794
  })(GeometryType || (GeometryType = {}));
8785
8795
  /**
8786
8796
  * Resource group.
8787
-
8797
+
8788
8798
  my
8789
-
8799
+
8790
8800
  role
8791
-
8801
+
8792
8802
  public
8793
-
8803
+
8794
8804
  all
8795
8805
  */
8796
8806
 
@@ -8805,13 +8815,13 @@ var Group;
8805
8815
  })(Group || (Group = {}));
8806
8816
  /**
8807
8817
  * Specifies the settings of line cap. This is applied to the beginning and end of each non-closed line.
8808
-
8818
+
8809
8819
  Flat
8810
-
8820
+
8811
8821
  Square
8812
-
8822
+
8813
8823
  Round
8814
-
8824
+
8815
8825
  Triangle
8816
8826
  */
8817
8827
 
@@ -8826,29 +8836,29 @@ var LineCapStyle;
8826
8836
  })(LineCapStyle || (LineCapStyle = {}));
8827
8837
  /**
8828
8838
  * Type of the line ending.
8829
-
8839
+
8830
8840
  none
8831
-
8841
+
8832
8842
  arrow
8833
-
8843
+
8834
8844
  filledArrow
8835
-
8845
+
8836
8846
  square
8837
-
8847
+
8838
8848
  filledSquare
8839
-
8849
+
8840
8850
  circle
8841
-
8851
+
8842
8852
  filledCircle
8843
-
8853
+
8844
8854
  diamond
8845
-
8855
+
8846
8856
  filledDiamond
8847
-
8857
+
8848
8858
  roundSquare
8849
-
8859
+
8850
8860
  filledRoundSquare
8851
-
8861
+
8852
8862
  svg
8853
8863
  */
8854
8864
 
@@ -8871,11 +8881,11 @@ var LineEndingType;
8871
8881
  })(LineEndingType || (LineEndingType = {}));
8872
8882
  /**
8873
8883
  * Specifies the settings of lines join. This is applied to corners in lines and rectangles.
8874
-
8884
+
8875
8885
  Miter
8876
-
8886
+
8877
8887
  Bevel
8878
-
8888
+
8879
8889
  Round
8880
8890
  */
8881
8891
 
@@ -8889,15 +8899,15 @@ var LineJoinType;
8889
8899
  })(LineJoinType || (LineJoinType = {}));
8890
8900
  /**
8891
8901
  *
8892
-
8902
+
8893
8903
  Unknown
8894
-
8904
+
8895
8905
  union
8896
-
8906
+
8897
8907
  intersection
8898
-
8908
+
8899
8909
  subtraction
8900
-
8910
+
8901
8911
  symDifference
8902
8912
  */
8903
8913
 
@@ -8913,11 +8923,11 @@ var Operation;
8913
8923
  })(Operation || (Operation = {}));
8914
8924
  /**
8915
8925
  * Filter exists resources by owner.
8916
-
8926
+
8917
8927
  My
8918
-
8928
+
8919
8929
  Shared
8920
-
8930
+
8921
8931
  Public
8922
8932
  */
8923
8933
 
@@ -8931,9 +8941,9 @@ var OwnerFilter;
8931
8941
  })(OwnerFilter || (OwnerFilter = {}));
8932
8942
  /**
8933
8943
  * Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
8934
-
8944
+
8935
8945
  xyz
8936
-
8946
+
8937
8947
  tms
8938
8948
  */
8939
8949
 
@@ -8946,19 +8956,19 @@ var PbfSchema;
8946
8956
  })(PbfSchema || (PbfSchema = {}));
8947
8957
  /**
8948
8958
  *
8949
-
8959
+
8950
8960
  none
8951
-
8961
+
8952
8962
  configure
8953
-
8963
+
8954
8964
  write
8955
-
8965
+
8956
8966
  read
8957
-
8967
+
8958
8968
  read,configure
8959
-
8969
+
8960
8970
  read,write
8961
-
8971
+
8962
8972
  read,write,configure
8963
8973
  */
8964
8974
 
@@ -8976,19 +8986,19 @@ var Permissions;
8976
8986
  })(Permissions || (Permissions = {}));
8977
8987
  /**
8978
8988
  * Type of the authorization policy.
8979
-
8989
+
8980
8990
  Unknown
8981
-
8991
+
8982
8992
  CreateTable
8983
-
8993
+
8984
8994
  CreateLayer
8985
-
8995
+
8986
8996
  CreateProject
8987
-
8997
+
8988
8998
  MaxFeaturesInOneTable
8989
-
8999
+
8990
9000
  MaxObjectsToExport
8991
-
9001
+
8992
9002
  MaxUploadContentSize
8993
9003
  */
8994
9004
 
@@ -9006,11 +9016,11 @@ var PolicyType;
9006
9016
  })(PolicyType || (PolicyType = {}));
9007
9017
  /**
9008
9018
  * Stream quality.
9009
-
9019
+
9010
9020
  Low
9011
-
9021
+
9012
9022
  Medium
9013
-
9023
+
9014
9024
  High
9015
9025
  */
9016
9026
 
@@ -9024,15 +9034,15 @@ var Quality;
9024
9034
  })(Quality || (Quality = {}));
9025
9035
  /**
9026
9036
  * Resources types filter.
9027
-
9037
+
9028
9038
  RemoteTileService
9029
-
9039
+
9030
9040
  ProxyService
9031
-
9041
+
9032
9042
  PostgresLayerService
9033
-
9043
+
9034
9044
  QueryLayerService
9035
-
9045
+
9036
9046
  TileCatalogTable
9037
9047
  */
9038
9048
 
@@ -9048,19 +9058,19 @@ var ResourceSubTypeFilter;
9048
9058
  })(ResourceSubTypeFilter || (ResourceSubTypeFilter = {}));
9049
9059
  /**
9050
9060
  *
9051
-
9061
+
9052
9062
  Unknown
9053
-
9063
+
9054
9064
  table
9055
-
9065
+
9056
9066
  layer
9057
-
9067
+
9058
9068
  project
9059
-
9069
+
9060
9070
  file
9061
-
9071
+
9062
9072
  feature
9063
-
9073
+
9064
9074
  tag
9065
9075
  */
9066
9076
 
@@ -9078,21 +9088,21 @@ var ResourceType;
9078
9088
  })(ResourceType || (ResourceType = {}));
9079
9089
  /**
9080
9090
  * Resources types filter.
9081
-
9091
+
9082
9092
  Map
9083
-
9093
+
9084
9094
  Layer
9085
-
9095
+
9086
9096
  Table
9087
-
9097
+
9088
9098
  RasterCatalog
9089
-
9099
+
9090
9100
  ProxyService
9091
-
9101
+
9092
9102
  RemoteTileService
9093
-
9103
+
9094
9104
  File
9095
-
9105
+
9096
9106
  DataSource
9097
9107
  */
9098
9108
 
@@ -9119,9 +9129,9 @@ var ResourceTypeLink;
9119
9129
  })(ResourceTypeLink || (ResourceTypeLink = {}));
9120
9130
  /**
9121
9131
  * Response type.
9122
-
9132
+
9123
9133
  code
9124
-
9134
+
9125
9135
  token
9126
9136
  */
9127
9137
 
@@ -9134,21 +9144,21 @@ var ResponseType;
9134
9144
  })(ResponseType || (ResponseType = {}));
9135
9145
  /**
9136
9146
  * Status of the server task.
9137
-
9147
+
9138
9148
  None
9139
-
9149
+
9140
9150
  Scheduled
9141
-
9151
+
9142
9152
  Planning
9143
-
9153
+
9144
9154
  Executing
9145
-
9155
+
9146
9156
  Completed
9147
-
9157
+
9148
9158
  Failed
9149
-
9159
+
9150
9160
  Canceled
9151
-
9161
+
9152
9162
  Timeout
9153
9163
  */
9154
9164
 
@@ -9167,11 +9177,11 @@ var ServerTaskStatus;
9167
9177
  })(ServerTaskStatus || (ServerTaskStatus = {}));
9168
9178
  /**
9169
9179
  *
9170
-
9180
+
9171
9181
  Basic
9172
-
9182
+
9173
9183
  PreserveTopology
9174
-
9184
+
9175
9185
  VW
9176
9186
  */
9177
9187
 
@@ -9185,13 +9195,13 @@ var SimplifyType;
9185
9195
  })(SimplifyType || (SimplifyType = {}));
9186
9196
  /**
9187
9197
  *
9188
-
9198
+
9189
9199
  None
9190
-
9200
+
9191
9201
  Image
9192
-
9202
+
9193
9203
  PkkCode
9194
-
9204
+
9195
9205
  Attachments
9196
9206
  */
9197
9207
 
@@ -9206,9 +9216,9 @@ var StringSubType;
9206
9216
  })(StringSubType || (StringSubType = {}));
9207
9217
  /**
9208
9218
  * Task owner group.
9209
-
9219
+
9210
9220
  my
9211
-
9221
+
9212
9222
  all
9213
9223
  */
9214
9224
 
@@ -9221,13 +9231,13 @@ var TaskGroup;
9221
9231
  })(TaskGroup || (TaskGroup = {}));
9222
9232
  /**
9223
9233
  * Sets the horizontal alignment of text.
9224
-
9234
+
9225
9235
  right
9226
-
9236
+
9227
9237
  left
9228
-
9238
+
9229
9239
  center
9230
-
9240
+
9231
9241
  justified
9232
9242
  */
9233
9243
 
@@ -9242,11 +9252,11 @@ var TextAlignment;
9242
9252
  })(TextAlignment || (TextAlignment = {}));
9243
9253
  /**
9244
9254
  * Sets the vertical alignment of text.
9245
-
9255
+
9246
9256
  top
9247
-
9257
+
9248
9258
  bottom
9249
-
9259
+
9250
9260
  middle
9251
9261
  */
9252
9262
 
@@ -9259,5 +9269,5 @@ var TextVerticalAlignment;
9259
9269
  TextVerticalAlignment["Middle"] = "middle";
9260
9270
  })(TextVerticalAlignment || (TextVerticalAlignment = {}));
9261
9271
 
9262
- export { Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeIconType, AttributeSelectorType, AttributeType, AuthorizationGrant, BulkOperations, Cameras, CatalogResourceType, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConnectionStatus, DataSourceType, DependencyType, Eql, ErrorDetailsType, ErrorReason, ErrorType, EvergisDynamicLayer, EvergisTileLayer, External, FeatureType, Feedback, FileUpload, Filters, FontStyle, FontWeight, GEOCODE_PROVIDER, General, Geocode, GeometryType, Group, HttpClient, IceRouter, Import, Layers, LayersManager, LineCapStyle, LineEndingType, LineJoinType, Names, Namespace, Notification, NotificationEvent, Operation, OwnerFilter, PbfSchema, Permissions, PolicyType, PortalSettings, Print, Projects, Quality, ResourceCatalog, ResourceSeparator, ResourceSubTypeFilter, ResourceType, ResourceTypeFilter, ResourceTypeLink, Resources, ResponseType, STORAGE_REFRESH_TOKEN_KEY, STORAGE_TOKEN_KEY, Scheduler, Security, ServerTaskStatus, SimplifyType, SpatialProcessor, Statistic, StringSubType, Styles, Tables, TaskGroup, TextAlignment, TextVerticalAlignment, Tools, UrlPath, VectorTiles, addSubDomainToLocation, errorHandler, formDataFromFile, generateId, isEvergisDynamicLayer, isEvergisTileLayer, isFeatureLayer, isHTTPError, isHandledError, isLayer, isProjectContentItems, isString, isTileLayerService, parseJwt, promiseAllIgnoreErrors, stripUselessSlashes, toFormData, unique };
9272
+ export { Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeIconType, AttributeSelectorType, AttributeType, AuthorizationGrant, BulkOperations, Cameras, CatalogResourceType, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConnectionStatus, DataSourceType, DependencyType, Eql, ErrorDetailsType, ErrorReason, ErrorType, EvergisDynamicLayer, EvergisTileLayer, External, FeatureType, Feedback, FileUpload, Filters, FontStyle, FontWeight, GEOCODE_PROVIDER, General, Geocode, GeometryType, Group, HttpClient, IceRouter, Import, Layers, LayersManager, LineCapStyle, LineEndingType, LineJoinType, Names, Namespace, Notification, NotificationEvent, Operation, OwnerFilter, PbfSchema, Permissions, PolicyType, PortalSettings, Print, Projects, Quality, ResourceCatalog, ResourceSeparator, ResourceSubTypeFilter, ResourceType, ResourceTypeFilter, ResourceTypeLink, Resources, ResponseType, STORAGE_REFRESH_TOKEN_KEY, STORAGE_TOKEN_KEY, Scheduler, Security, ServerTaskStatus, SimplifyType, SpatialProcessor, Statistic, StringSubType, Styles, Tables, TaskGroup, TextAlignment, TextVerticalAlignment, Tools, UrlPath, VectorTiles, addSubDomainToLocation, errorHandler, formDataFromFile, generateId, getFetchingUrlPath, isEvergisDynamicLayer, isEvergisTileLayer, isFeatureLayer, isHTTPError, isHandledError, isLayer, isProjectContentItems, isString, isTileLayerService, parseJwt, promiseAllIgnoreErrors, stripUselessSlashes, toFormData, unique };
9263
9273
  //# sourceMappingURL=api.esm.js.map