@evergis/api 3.0.197 → 3.0.199

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,9 +30,6 @@ 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
- });
36
33
  return Constructor;
37
34
  }
38
35
 
@@ -66,9 +63,6 @@ function _inherits(subClass, superClass) {
66
63
  configurable: true
67
64
  }
68
65
  });
69
- Object.defineProperty(subClass, "prototype", {
70
- writable: false
71
- });
72
66
  if (superClass) _setPrototypeOf(subClass, superClass);
73
67
  }
74
68
 
@@ -127,8 +121,6 @@ function _assertThisInitialized(self) {
127
121
  function _possibleConstructorReturn(self, call) {
128
122
  if (call && (typeof call === "object" || typeof call === "function")) {
129
123
  return call;
130
- } else if (call !== void 0) {
131
- throw new TypeError("Derived constructors may only return object or undefined");
132
124
  }
133
125
 
134
126
  return _assertThisInitialized(self);
@@ -162,7 +154,7 @@ function _superPropBase(object, property) {
162
154
  return object;
163
155
  }
164
156
 
165
- function _get() {
157
+ function _get(target, property, receiver) {
166
158
  if (typeof Reflect !== "undefined" && Reflect.get) {
167
159
  _get = Reflect.get;
168
160
  } else {
@@ -173,14 +165,14 @@ function _get() {
173
165
  var desc = Object.getOwnPropertyDescriptor(base, property);
174
166
 
175
167
  if (desc.get) {
176
- return desc.get.call(arguments.length < 3 ? target : receiver);
168
+ return desc.get.call(receiver);
177
169
  }
178
170
 
179
171
  return desc.value;
180
172
  };
181
173
  }
182
174
 
183
- return _get.apply(this, arguments);
175
+ return _get(target, property, receiver || target);
184
176
  }
185
177
 
186
178
  let HttpClient = /*#__PURE__*/function () {
@@ -1167,7 +1159,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
1167
1159
  }, {
1168
1160
  key: "authenticate",
1169
1161
  value: function authenticate(query, data) {
1170
- return this.http.post("/account/login", data, query).text();
1162
+ return this.http.post("/account/login", data, query).json();
1171
1163
  }
1172
1164
  /**
1173
1165
  * No description
@@ -1182,8 +1174,8 @@ let AccountService = /*#__PURE__*/function (_Service) {
1182
1174
 
1183
1175
  }, {
1184
1176
  key: "refreshToken",
1185
- value: function refreshToken() {
1186
- return this.http.post("/account/refresh-token", null).text();
1177
+ value: function refreshToken(data) {
1178
+ return this.http.post("/account/refresh-token", data).text();
1187
1179
  }
1188
1180
  /**
1189
1181
  * No description
@@ -1215,7 +1207,7 @@ let AccountService = /*#__PURE__*/function (_Service) {
1215
1207
  }, {
1216
1208
  key: "ldapLogin",
1217
1209
  value: function ldapLogin(data) {
1218
- return this.http.post("/account/external/login/ldap", data).then(() => {});
1210
+ return this.http.post("/account/external/login/ldap", data).json();
1219
1211
  }
1220
1212
  /**
1221
1213
  * No description
@@ -2072,7 +2064,7 @@ let EqlService = /*#__PURE__*/function (_Service) {
2072
2064
  * @response `200` OK
2073
2065
  */
2074
2066
  function getQueryResult(data) {
2075
- return this.http.post("/eql/query", data).then(() => {});
2067
+ return this.http.post("/eql/query", data).json();
2076
2068
  }
2077
2069
  /**
2078
2070
  * No description
@@ -5054,8 +5046,8 @@ let Notification = /*#__PURE__*/function (_NotificationService) {
5054
5046
  || event.code === 4002
5055
5047
  /* InvalidSession */
5056
5048
  ) {
5057
- _this.connectStatus = ConnectionStatus.SessionClosed;
5058
- } else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
5049
+ _this.connectStatus = ConnectionStatus.SessionClosed;
5050
+ } else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
5059
5051
  _this.connectStatus = ConnectionStatus.Break;
5060
5052
  _this.reconnectTries++;
5061
5053
 
@@ -5889,12 +5881,12 @@ let Resources = /*#__PURE__*/function () {
5889
5881
  }, {
5890
5882
  key: "getDependentNames",
5891
5883
  value: function getDependentNames(deps, depType) {
5892
- return deps.filter(_ref => {
5884
+ return deps.filter((_ref) => {
5893
5885
  let {
5894
5886
  type
5895
5887
  } = _ref;
5896
5888
  return type === depType;
5897
- }).map(_ref2 => {
5889
+ }).map((_ref2) => {
5898
5890
  let {
5899
5891
  name
5900
5892
  } = _ref2;
@@ -6350,7 +6342,7 @@ let Scheduler = /*#__PURE__*/function (_SchedulerService) {
6350
6342
  const taskProgress = await this.getTaskProgress(id);
6351
6343
  this.resolveTaskStatus(taskProgress, resolve, reject);
6352
6344
 
6353
- const taskResultCallback = async _ref => {
6345
+ const taskResultCallback = async (_ref) => {
6354
6346
  let {
6355
6347
  data
6356
6348
  } = _ref;
@@ -8062,47 +8054,47 @@ function isFeatureLayer(layer) {
8062
8054
 
8063
8055
  /**
8064
8056
  *
8065
-
8057
+
8066
8058
  None
8067
-
8059
+
8068
8060
  Array
8069
-
8061
+
8070
8062
  Min
8071
-
8063
+
8072
8064
  Max
8073
-
8065
+
8074
8066
  Avg
8075
-
8067
+
8076
8068
  Sum
8077
-
8069
+
8078
8070
  Extent
8079
-
8071
+
8080
8072
  H3
8081
-
8073
+
8082
8074
  Count
8083
-
8075
+
8084
8076
  TotalCount
8085
-
8077
+
8086
8078
  DistinctCount
8087
-
8079
+
8088
8080
  First
8089
-
8081
+
8090
8082
  Last
8091
-
8083
+
8092
8084
  Median
8093
-
8085
+
8094
8086
  Mod
8095
-
8087
+
8096
8088
  StdDeviation
8097
-
8089
+
8098
8090
  SumOfProduct
8099
-
8091
+
8100
8092
  OnlyValue
8101
-
8093
+
8102
8094
  WeightedAvg
8103
-
8095
+
8104
8096
  DensityIndicators
8105
-
8097
+
8106
8098
  DividedSum
8107
8099
  */
8108
8100
  var AggregationFunction;
@@ -8132,13 +8124,13 @@ var AggregationFunction;
8132
8124
  })(AggregationFunction || (AggregationFunction = {}));
8133
8125
  /**
8134
8126
  *
8135
-
8127
+
8136
8128
  Unknown
8137
-
8129
+
8138
8130
  Icon
8139
-
8131
+
8140
8132
  PNG
8141
-
8133
+
8142
8134
  SVG
8143
8135
  */
8144
8136
 
@@ -8153,13 +8145,13 @@ var AttributeIconType;
8153
8145
  })(AttributeIconType || (AttributeIconType = {}));
8154
8146
  /**
8155
8147
  *
8156
-
8148
+
8157
8149
  None
8158
-
8150
+
8159
8151
  SelectFromHandBook
8160
-
8152
+
8161
8153
  SelectFromRange
8162
-
8154
+
8163
8155
  ViewHandBook
8164
8156
  */
8165
8157
 
@@ -8174,31 +8166,31 @@ var AttributeSelectorType;
8174
8166
  })(AttributeSelectorType || (AttributeSelectorType = {}));
8175
8167
  /**
8176
8168
  *
8177
-
8169
+
8178
8170
  Unknown
8179
-
8171
+
8180
8172
  String
8181
-
8173
+
8182
8174
  Int32
8183
-
8175
+
8184
8176
  Int64
8185
-
8177
+
8186
8178
  Double
8187
-
8179
+
8188
8180
  DateTime
8189
-
8181
+
8190
8182
  Boolean
8191
-
8183
+
8192
8184
  Point
8193
-
8185
+
8194
8186
  Polyline
8195
-
8187
+
8196
8188
  MultiPolygon
8197
-
8189
+
8198
8190
  Multipoint
8199
-
8191
+
8200
8192
  H3Index
8201
-
8193
+
8202
8194
  Json
8203
8195
  */
8204
8196
 
@@ -8224,9 +8216,9 @@ var AttributeType;
8224
8216
  * An authorization grant is a credential representing the resource
8225
8217
  owner's authorization (to access its protected resources) used by the
8226
8218
  client to obtain an access token.
8227
-
8219
+
8228
8220
  authorization_code
8229
-
8221
+
8230
8222
  refresh_token
8231
8223
  */
8232
8224
 
@@ -8239,17 +8231,17 @@ var AuthorizationGrant;
8239
8231
  })(AuthorizationGrant || (AuthorizationGrant = {}));
8240
8232
  /**
8241
8233
  *
8242
-
8234
+
8243
8235
  None
8244
-
8236
+
8245
8237
  Map
8246
-
8238
+
8247
8239
  Layer
8248
-
8240
+
8249
8241
  Table
8250
-
8242
+
8251
8243
  File
8252
-
8244
+
8253
8245
  TaskPrototype
8254
8246
  */
8255
8247
 
@@ -8266,15 +8258,15 @@ var CatalogResourceType;
8266
8258
  })(CatalogResourceType || (CatalogResourceType = {}));
8267
8259
  /**
8268
8260
  * Describes classification methods.
8269
-
8261
+
8270
8262
  none
8271
-
8263
+
8272
8264
  naturalBreaks
8273
-
8265
+
8274
8266
  equalInterval
8275
-
8267
+
8276
8268
  quantile
8277
-
8269
+
8278
8270
  unique
8279
8271
  */
8280
8272
 
@@ -8290,11 +8282,11 @@ var ClassificationType;
8290
8282
  })(ClassificationType || (ClassificationType = {}));
8291
8283
  /**
8292
8284
  *
8293
-
8285
+
8294
8286
  decimal
8295
-
8287
+
8296
8288
  dateTime
8297
-
8289
+
8298
8290
  text
8299
8291
  */
8300
8292
 
@@ -8308,55 +8300,55 @@ var ClassifyAttributeType;
8308
8300
  })(ClassifyAttributeType || (ClassifyAttributeType = {}));
8309
8301
  /**
8310
8302
  *
8311
-
8303
+
8312
8304
  Unknown
8313
-
8305
+
8314
8306
  SerializeError
8315
-
8307
+
8316
8308
  InvalidDataService
8317
-
8309
+
8318
8310
  InvalidConfiguration
8319
-
8311
+
8320
8312
  InvalidDataServiceName
8321
-
8313
+
8322
8314
  InvalidTableName
8323
-
8315
+
8324
8316
  InvalidLayerName
8325
-
8317
+
8326
8318
  ResourceNotFound
8327
-
8319
+
8328
8320
  InvalidCondition
8329
-
8321
+
8330
8322
  InvalidAttributes
8331
-
8323
+
8332
8324
  InvalidIdAttribute
8333
-
8325
+
8334
8326
  InvalidGeometryAttribute
8335
-
8327
+
8336
8328
  InvalidGeometryAttributeType
8337
-
8329
+
8338
8330
  InvalidColumnName
8339
-
8331
+
8340
8332
  InvalidIdColumnSettings
8341
-
8333
+
8342
8334
  ColumnNotExistsInTable
8343
-
8335
+
8344
8336
  InvalidStyle
8345
-
8337
+
8346
8338
  InvalidLayerType
8347
-
8339
+
8348
8340
  ColumnLoadingError
8349
-
8341
+
8350
8342
  InvalidAttributeFormat
8351
-
8343
+
8352
8344
  DataSourceNotFound
8353
-
8345
+
8354
8346
  DuplicateColumns
8355
-
8347
+
8356
8348
  DuplicateAttributes
8357
-
8349
+
8358
8350
  TableWithoutColumns
8359
-
8351
+
8360
8352
  InvalidTableReferenceConfiguration
8361
8353
  */
8362
8354
 
@@ -8391,16 +8383,28 @@ var ConfigurationErrorEnum;
8391
8383
  ConfigurationErrorEnum["InvalidTableReferenceConfiguration"] = "InvalidTableReferenceConfiguration";
8392
8384
  })(ConfigurationErrorEnum || (ConfigurationErrorEnum = {}));
8393
8385
  /**
8386
+ * Data source type.
8387
+
8388
+ Postgres
8389
+ */
8390
+
8391
+
8392
+ var DataSourceType;
8393
+
8394
+ (function (DataSourceType) {
8395
+ DataSourceType["Postgres"] = "Postgres";
8396
+ })(DataSourceType || (DataSourceType = {}));
8397
+ /**
8394
8398
  * Type of the error.
8395
-
8399
+
8396
8400
  ResourceLimitExceeded
8397
-
8401
+
8398
8402
  ResourceNotFound
8399
-
8403
+
8400
8404
  InternalError
8401
-
8405
+
8402
8406
  BadRequest
8403
-
8407
+
8404
8408
  DuplicateContent
8405
8409
  */
8406
8410
 
@@ -8451,9 +8455,9 @@ var ErrorType;
8451
8455
  })(ErrorType || (ErrorType = {}));
8452
8456
  /**
8453
8457
  * Type of the feature.
8454
-
8458
+
8455
8459
  Unknown
8456
-
8460
+
8457
8461
  GeometricFeature
8458
8462
  */
8459
8463
 
@@ -8466,11 +8470,11 @@ var FeatureType;
8466
8470
  })(FeatureType || (FeatureType = {}));
8467
8471
  /**
8468
8472
  * Sets whether font should be styled.
8469
-
8473
+
8470
8474
  normal
8471
-
8475
+
8472
8476
  oblique
8473
-
8477
+
8474
8478
  italic
8475
8479
  */
8476
8480
 
@@ -8484,27 +8488,27 @@ var FontStyle;
8484
8488
  })(FontStyle || (FontStyle = {}));
8485
8489
  /**
8486
8490
  * Specifies the weight (or boldness) of the font.
8487
-
8491
+
8488
8492
  Thin
8489
-
8493
+
8490
8494
  ExtraLight
8491
-
8495
+
8492
8496
  Light
8493
-
8497
+
8494
8498
  SemiLight
8495
-
8499
+
8496
8500
  Normal
8497
-
8501
+
8498
8502
  Medium
8499
-
8503
+
8500
8504
  DemiBold
8501
-
8505
+
8502
8506
  Bold
8503
-
8507
+
8504
8508
  ExtraBold
8505
-
8509
+
8506
8510
  Black
8507
-
8511
+
8508
8512
  ExtraBlack
8509
8513
  */
8510
8514
 
@@ -8526,17 +8530,17 @@ var FontWeight;
8526
8530
  })(FontWeight || (FontWeight = {}));
8527
8531
  /**
8528
8532
  *
8529
-
8533
+
8530
8534
  unknown
8531
-
8535
+
8532
8536
  point
8533
-
8537
+
8534
8538
  polyline
8535
-
8539
+
8536
8540
  multipolygon
8537
-
8541
+
8538
8542
  envelope
8539
-
8543
+
8540
8544
  multipoint
8541
8545
  */
8542
8546
 
@@ -8553,13 +8557,13 @@ var GeometryType;
8553
8557
  })(GeometryType || (GeometryType = {}));
8554
8558
  /**
8555
8559
  * Resource group.
8556
-
8560
+
8557
8561
  my
8558
-
8562
+
8559
8563
  role
8560
-
8564
+
8561
8565
  public
8562
-
8566
+
8563
8567
  all
8564
8568
  */
8565
8569
 
@@ -8574,13 +8578,13 @@ var Group;
8574
8578
  })(Group || (Group = {}));
8575
8579
  /**
8576
8580
  * Specifies the settings of line cap. This is applied to the beginning and end of each non-closed line.
8577
-
8581
+
8578
8582
  Flat
8579
-
8583
+
8580
8584
  Square
8581
-
8585
+
8582
8586
  Round
8583
-
8587
+
8584
8588
  Triangle
8585
8589
  */
8586
8590
 
@@ -8595,29 +8599,29 @@ var LineCapStyle;
8595
8599
  })(LineCapStyle || (LineCapStyle = {}));
8596
8600
  /**
8597
8601
  * Type of the line ending.
8598
-
8602
+
8599
8603
  none
8600
-
8604
+
8601
8605
  arrow
8602
-
8606
+
8603
8607
  filledArrow
8604
-
8608
+
8605
8609
  square
8606
-
8610
+
8607
8611
  filledSquare
8608
-
8612
+
8609
8613
  circle
8610
-
8614
+
8611
8615
  filledCircle
8612
-
8616
+
8613
8617
  diamond
8614
-
8618
+
8615
8619
  filledDiamond
8616
-
8620
+
8617
8621
  roundSquare
8618
-
8622
+
8619
8623
  filledRoundSquare
8620
-
8624
+
8621
8625
  svg
8622
8626
  */
8623
8627
 
@@ -8640,11 +8644,11 @@ var LineEndingType;
8640
8644
  })(LineEndingType || (LineEndingType = {}));
8641
8645
  /**
8642
8646
  * Specifies the settings of lines join. This is applied to corners in lines and rectangles.
8643
-
8647
+
8644
8648
  Miter
8645
-
8649
+
8646
8650
  Bevel
8647
-
8651
+
8648
8652
  Round
8649
8653
  */
8650
8654
 
@@ -8658,15 +8662,15 @@ var LineJoinType;
8658
8662
  })(LineJoinType || (LineJoinType = {}));
8659
8663
  /**
8660
8664
  *
8661
-
8665
+
8662
8666
  Unknown
8663
-
8667
+
8664
8668
  union
8665
-
8669
+
8666
8670
  intersection
8667
-
8671
+
8668
8672
  subtraction
8669
-
8673
+
8670
8674
  symDifference
8671
8675
  */
8672
8676
 
@@ -8681,15 +8685,13 @@ var Operation;
8681
8685
  Operation["SymDifference"] = "symDifference";
8682
8686
  })(Operation || (Operation = {}));
8683
8687
  /**
8684
- *
8685
-
8688
+ * Filter exists resources by owner.
8689
+
8686
8690
  My
8687
-
8691
+
8688
8692
  Shared
8689
-
8693
+
8690
8694
  Public
8691
-
8692
- All
8693
8695
  */
8694
8696
 
8695
8697
 
@@ -8699,13 +8701,12 @@ var OwnerFilter;
8699
8701
  OwnerFilter["My"] = "My";
8700
8702
  OwnerFilter["Shared"] = "Shared";
8701
8703
  OwnerFilter["Public"] = "Public";
8702
- OwnerFilter["All"] = "All";
8703
8704
  })(OwnerFilter || (OwnerFilter = {}));
8704
8705
  /**
8705
8706
  * Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
8706
-
8707
+
8707
8708
  xyz
8708
-
8709
+
8709
8710
  tms
8710
8711
  */
8711
8712
 
@@ -8718,19 +8719,19 @@ var PbfSchema;
8718
8719
  })(PbfSchema || (PbfSchema = {}));
8719
8720
  /**
8720
8721
  *
8721
-
8722
+
8722
8723
  none
8723
-
8724
+
8724
8725
  configure
8725
-
8726
+
8726
8727
  write
8727
-
8728
+
8728
8729
  read
8729
-
8730
+
8730
8731
  read,configure
8731
-
8732
+
8732
8733
  read,write
8733
-
8734
+
8734
8735
  read,write,configure
8735
8736
  */
8736
8737
 
@@ -8748,19 +8749,19 @@ var Permissions;
8748
8749
  })(Permissions || (Permissions = {}));
8749
8750
  /**
8750
8751
  * Type of the authorization policy.
8751
-
8752
+
8752
8753
  Unknown
8753
-
8754
+
8754
8755
  CreateTable
8755
-
8756
+
8756
8757
  CreateLayer
8757
-
8758
+
8758
8759
  CreateProject
8759
-
8760
+
8760
8761
  MaxFeaturesInOneTable
8761
-
8762
+
8762
8763
  MaxObjectsToExport
8763
-
8764
+
8764
8765
  MaxUploadContentSize
8765
8766
  */
8766
8767
 
@@ -8778,11 +8779,11 @@ var PolicyType;
8778
8779
  })(PolicyType || (PolicyType = {}));
8779
8780
  /**
8780
8781
  * Stream quality.
8781
-
8782
+
8782
8783
  Low
8783
-
8784
+
8784
8785
  Medium
8785
-
8786
+
8786
8787
  High
8787
8788
  */
8788
8789
 
@@ -8796,15 +8797,15 @@ var Quality;
8796
8797
  })(Quality || (Quality = {}));
8797
8798
  /**
8798
8799
  * Resources types filter.
8799
-
8800
+
8800
8801
  RemoteTileService
8801
-
8802
+
8802
8803
  ProxyService
8803
-
8804
+
8804
8805
  PostgresLayerService
8805
-
8806
+
8806
8807
  QueryLayerService
8807
-
8808
+
8808
8809
  TileCatalogTable
8809
8810
  */
8810
8811
 
@@ -8820,19 +8821,19 @@ var ResourceSubTypeFilter;
8820
8821
  })(ResourceSubTypeFilter || (ResourceSubTypeFilter = {}));
8821
8822
  /**
8822
8823
  *
8823
-
8824
+
8824
8825
  Unknown
8825
-
8826
+
8826
8827
  table
8827
-
8828
+
8828
8829
  layer
8829
-
8830
+
8830
8831
  project
8831
-
8832
+
8832
8833
  file
8833
-
8834
+
8834
8835
  feature
8835
-
8836
+
8836
8837
  tag
8837
8838
  */
8838
8839
 
@@ -8850,19 +8851,19 @@ var ResourceType;
8850
8851
  })(ResourceType || (ResourceType = {}));
8851
8852
  /**
8852
8853
  * Resources types filter.
8853
-
8854
+
8854
8855
  Map
8855
-
8856
+
8856
8857
  Layer
8857
-
8858
+
8858
8859
  Table
8859
-
8860
+
8860
8861
  RasterCatalog
8861
-
8862
+
8862
8863
  ProxyService
8863
-
8864
+
8864
8865
  RemoteTileService
8865
-
8866
+
8866
8867
  File
8867
8868
  */
8868
8869
 
@@ -8888,9 +8889,9 @@ var ResourceTypeLink;
8888
8889
  })(ResourceTypeLink || (ResourceTypeLink = {}));
8889
8890
  /**
8890
8891
  * Response type.
8891
-
8892
+
8892
8893
  code
8893
-
8894
+
8894
8895
  token
8895
8896
  */
8896
8897
 
@@ -8903,21 +8904,21 @@ var ResponseType;
8903
8904
  })(ResponseType || (ResponseType = {}));
8904
8905
  /**
8905
8906
  * Status of the server task.
8906
-
8907
+
8907
8908
  None
8908
-
8909
+
8909
8910
  Scheduled
8910
-
8911
+
8911
8912
  Planning
8912
-
8913
+
8913
8914
  Executing
8914
-
8915
+
8915
8916
  Completed
8916
-
8917
+
8917
8918
  Failed
8918
-
8919
+
8919
8920
  Canceled
8920
-
8921
+
8921
8922
  Timeout
8922
8923
  */
8923
8924
 
@@ -8936,11 +8937,11 @@ var ServerTaskStatus;
8936
8937
  })(ServerTaskStatus || (ServerTaskStatus = {}));
8937
8938
  /**
8938
8939
  *
8939
-
8940
+
8940
8941
  Basic
8941
-
8942
+
8942
8943
  PreserveTopology
8943
-
8944
+
8944
8945
  VW
8945
8946
  */
8946
8947
 
@@ -8954,13 +8955,13 @@ var SimplifyType;
8954
8955
  })(SimplifyType || (SimplifyType = {}));
8955
8956
  /**
8956
8957
  *
8957
-
8958
+
8958
8959
  None
8959
-
8960
+
8960
8961
  Image
8961
-
8962
+
8962
8963
  PkkCode
8963
-
8964
+
8964
8965
  Attachments
8965
8966
  */
8966
8967
 
@@ -8975,9 +8976,9 @@ var StringSubType;
8975
8976
  })(StringSubType || (StringSubType = {}));
8976
8977
  /**
8977
8978
  * Task owner group.
8978
-
8979
+
8979
8980
  my
8980
-
8981
+
8981
8982
  all
8982
8983
  */
8983
8984
 
@@ -8990,13 +8991,13 @@ var TaskGroup;
8990
8991
  })(TaskGroup || (TaskGroup = {}));
8991
8992
  /**
8992
8993
  * Sets the horizontal alignment of text.
8993
-
8994
+
8994
8995
  right
8995
-
8996
+
8996
8997
  left
8997
-
8998
+
8998
8999
  center
8999
-
9000
+
9000
9001
  justified
9001
9002
  */
9002
9003
 
@@ -9011,11 +9012,11 @@ var TextAlignment;
9011
9012
  })(TextAlignment || (TextAlignment = {}));
9012
9013
  /**
9013
9014
  * Sets the vertical alignment of text.
9014
-
9015
+
9015
9016
  top
9016
-
9017
+
9017
9018
  bottom
9018
-
9019
+
9019
9020
  middle
9020
9021
  */
9021
9022
 
@@ -9028,5 +9029,5 @@ var TextVerticalAlignment;
9028
9029
  TextVerticalAlignment["Middle"] = "middle";
9029
9030
  })(TextVerticalAlignment || (TextVerticalAlignment = {}));
9030
9031
 
9031
- export { Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeIconType, AttributeSelectorType, AttributeType, AuthorizationGrant, BulkOperations, Cameras, CatalogResourceType, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConnectionStatus, 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, 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, promiseAllIgnoreErrors, stripUselessSlashes, toFormData, unique };
9032
+ 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, 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, promiseAllIgnoreErrors, stripUselessSlashes, toFormData, unique };
9032
9033
  //# sourceMappingURL=api.esm.js.map