@evergis/api 3.0.190 → 3.0.192

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 () {
@@ -579,6 +571,38 @@ let CatalogService = /*#__PURE__*/function (_Service) {
579
571
  value: function postGetAll(data) {
580
572
  return this.http.post("/resources", data).json();
581
573
  }
574
+ /**
575
+ * No description
576
+ *
577
+ * @tags Catalog
578
+ * @name GetTags
579
+ * @operationId CatalogController_GetTags
580
+ * @summary Get all tags of given user.
581
+ * @request GET:/resources/tags
582
+ * @response `200` OK
583
+ */
584
+
585
+ }, {
586
+ key: "getTags",
587
+ value: function getTags(query) {
588
+ return this.http.get("/resources/tags", query).json();
589
+ }
590
+ /**
591
+ * No description
592
+ *
593
+ * @tags Catalog
594
+ * @name PutTags
595
+ * @operationId CatalogController_PutTags
596
+ * @summary Put tags to resource.
597
+ * @request PUT:/resources/{resourceId}/tags
598
+ * @response `200` OK
599
+ */
600
+
601
+ }, {
602
+ key: "putTags",
603
+ value: function putTags(resourceId, data) {
604
+ return this.http.put("/resources/" + resourceId + "/tags", data).json();
605
+ }
582
606
  /**
583
607
  * No description
584
608
  *
@@ -611,6 +635,22 @@ let CatalogService = /*#__PURE__*/function (_Service) {
611
635
  value: function getResource(resourceId) {
612
636
  return this.http.get("/resources/" + resourceId).json();
613
637
  }
638
+ /**
639
+ * No description
640
+ *
641
+ * @tags Catalog
642
+ * @name PatchResource
643
+ * @operationId CatalogController_PatchResource
644
+ * @summary Update directory.
645
+ * @request PATCH:/resources/{resourceId}
646
+ * @response `200` OK
647
+ */
648
+
649
+ }, {
650
+ key: "patchResource",
651
+ value: function patchResource(resourceId, data) {
652
+ return this.http.patch("/resources/" + resourceId, data).json();
653
+ }
614
654
  /**
615
655
  * No description
616
656
  *
@@ -3144,8 +3184,37 @@ let LayersService = /*#__PURE__*/function (_Service) {
3144
3184
  }
3145
3185
 
3146
3186
  _createClass(LayersService, [{
3147
- key: "getLayersList",
3187
+ key: "getBulkFeatures",
3148
3188
  value:
3189
+ /**
3190
+ * No description
3191
+ *
3192
+ * @tags Layers
3193
+ * @name GetBulkFeatures
3194
+ * @operationId LayersController_GetBulkFeatures
3195
+ * @summary Returns list of the layer features.
3196
+ * @request POST:/bulk/layers/features/query
3197
+ * @response `200` OK
3198
+ */
3199
+ function getBulkFeatures(data) {
3200
+ return this.http.post("/bulk/layers/features/query", data).json();
3201
+ }
3202
+ /**
3203
+ * No description
3204
+ *
3205
+ * @tags Layers
3206
+ * @name GetFeaturesFromLayers
3207
+ * @operationId LayersController_GetFeaturesFromLayers
3208
+ * @summary Returns list of the layer features.
3209
+ * @request POST:/layers/features/query
3210
+ * @response `200` OK
3211
+ */
3212
+
3213
+ }, {
3214
+ key: "getFeaturesFromLayers",
3215
+ value: function getFeaturesFromLayers(data) {
3216
+ return this.http.post("/layers/features/query", data).json();
3217
+ }
3149
3218
  /**
3150
3219
  * No description
3151
3220
  *
@@ -3156,7 +3225,10 @@ let LayersService = /*#__PURE__*/function (_Service) {
3156
3225
  * @request GET:/layers
3157
3226
  * @response `200` OK
3158
3227
  */
3159
- function getLayersList(query) {
3228
+
3229
+ }, {
3230
+ key: "getLayersList",
3231
+ value: function getLayersList(query) {
3160
3232
  return this.http.get("/layers", query).json();
3161
3233
  }
3162
3234
  /**
@@ -4946,8 +5018,8 @@ let Notification = /*#__PURE__*/function (_NotificationService) {
4946
5018
  || event.code === 4002
4947
5019
  /* InvalidSession */
4948
5020
  ) {
4949
- _this.connectStatus = ConnectionStatus.SessionClosed;
4950
- } else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
5021
+ _this.connectStatus = ConnectionStatus.SessionClosed;
5022
+ } else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
4951
5023
  _this.connectStatus = ConnectionStatus.Break;
4952
5024
  _this.reconnectTries++;
4953
5025
 
@@ -5781,12 +5853,12 @@ let Resources = /*#__PURE__*/function () {
5781
5853
  }, {
5782
5854
  key: "getDependentNames",
5783
5855
  value: function getDependentNames(deps, depType) {
5784
- return deps.filter(_ref => {
5856
+ return deps.filter((_ref) => {
5785
5857
  let {
5786
5858
  type
5787
5859
  } = _ref;
5788
5860
  return type === depType;
5789
- }).map(_ref2 => {
5861
+ }).map((_ref2) => {
5790
5862
  let {
5791
5863
  name
5792
5864
  } = _ref2;
@@ -6242,7 +6314,7 @@ let Scheduler = /*#__PURE__*/function (_SchedulerService) {
6242
6314
  const taskProgress = await this.getTaskProgress(id);
6243
6315
  this.resolveTaskStatus(taskProgress, resolve, reject);
6244
6316
 
6245
- const taskResultCallback = async _ref => {
6317
+ const taskResultCallback = async (_ref) => {
6246
6318
  let {
6247
6319
  data
6248
6320
  } = _ref;
@@ -7921,47 +7993,47 @@ function isFeatureLayer(layer) {
7921
7993
 
7922
7994
  /**
7923
7995
  *
7924
-
7996
+
7925
7997
  None
7926
-
7998
+
7927
7999
  Array
7928
-
8000
+
7929
8001
  Min
7930
-
8002
+
7931
8003
  Max
7932
-
8004
+
7933
8005
  Avg
7934
-
8006
+
7935
8007
  Sum
7936
-
8008
+
7937
8009
  Extent
7938
-
8010
+
7939
8011
  H3
7940
-
8012
+
7941
8013
  Count
7942
-
8014
+
7943
8015
  TotalCount
7944
-
8016
+
7945
8017
  DistinctCount
7946
-
8018
+
7947
8019
  First
7948
-
8020
+
7949
8021
  Last
7950
-
8022
+
7951
8023
  Median
7952
-
8024
+
7953
8025
  Mod
7954
-
8026
+
7955
8027
  StdDeviation
7956
-
8028
+
7957
8029
  SumOfProduct
7958
-
8030
+
7959
8031
  OnlyValue
7960
-
8032
+
7961
8033
  WeightedAvg
7962
-
8034
+
7963
8035
  DensityIndicators
7964
-
8036
+
7965
8037
  DividedSum
7966
8038
  */
7967
8039
  var AggregationFunction;
@@ -7991,13 +8063,13 @@ var AggregationFunction;
7991
8063
  })(AggregationFunction || (AggregationFunction = {}));
7992
8064
  /**
7993
8065
  *
7994
-
8066
+
7995
8067
  None
7996
-
8068
+
7997
8069
  SelectFromHandBook
7998
-
8070
+
7999
8071
  SelectFromRange
8000
-
8072
+
8001
8073
  ViewHandBook
8002
8074
  */
8003
8075
 
@@ -8012,31 +8084,31 @@ var AttributeSelectorType;
8012
8084
  })(AttributeSelectorType || (AttributeSelectorType = {}));
8013
8085
  /**
8014
8086
  *
8015
-
8087
+
8016
8088
  Unknown
8017
-
8089
+
8018
8090
  String
8019
-
8091
+
8020
8092
  Int32
8021
-
8093
+
8022
8094
  Int64
8023
-
8095
+
8024
8096
  Double
8025
-
8097
+
8026
8098
  DateTime
8027
-
8099
+
8028
8100
  Boolean
8029
-
8101
+
8030
8102
  Point
8031
-
8103
+
8032
8104
  Polyline
8033
-
8105
+
8034
8106
  MultiPolygon
8035
-
8107
+
8036
8108
  Multipoint
8037
-
8109
+
8038
8110
  H3Index
8039
-
8111
+
8040
8112
  Json
8041
8113
  */
8042
8114
 
@@ -8060,17 +8132,17 @@ var AttributeType;
8060
8132
  })(AttributeType || (AttributeType = {}));
8061
8133
  /**
8062
8134
  *
8063
-
8135
+
8064
8136
  None
8065
-
8137
+
8066
8138
  Map
8067
-
8139
+
8068
8140
  Layer
8069
-
8141
+
8070
8142
  Table
8071
-
8143
+
8072
8144
  File
8073
-
8145
+
8074
8146
  TaskPrototype
8075
8147
  */
8076
8148
 
@@ -8087,15 +8159,15 @@ var CatalogResourceType;
8087
8159
  })(CatalogResourceType || (CatalogResourceType = {}));
8088
8160
  /**
8089
8161
  * Describes classification methods.
8090
-
8162
+
8091
8163
  none
8092
-
8164
+
8093
8165
  naturalBreaks
8094
-
8166
+
8095
8167
  equalInterval
8096
-
8168
+
8097
8169
  quantile
8098
-
8170
+
8099
8171
  unique
8100
8172
  */
8101
8173
 
@@ -8111,11 +8183,11 @@ var ClassificationType;
8111
8183
  })(ClassificationType || (ClassificationType = {}));
8112
8184
  /**
8113
8185
  *
8114
-
8186
+
8115
8187
  decimal
8116
-
8188
+
8117
8189
  dateTime
8118
-
8190
+
8119
8191
  text
8120
8192
  */
8121
8193
 
@@ -8129,55 +8201,55 @@ var ClassifyAttributeType;
8129
8201
  })(ClassifyAttributeType || (ClassifyAttributeType = {}));
8130
8202
  /**
8131
8203
  *
8132
-
8204
+
8133
8205
  Unknown
8134
-
8206
+
8135
8207
  SerializeError
8136
-
8208
+
8137
8209
  InvalidDataService
8138
-
8210
+
8139
8211
  InvalidConfiguration
8140
-
8212
+
8141
8213
  InvalidDataServiceName
8142
-
8214
+
8143
8215
  InvalidTableName
8144
-
8216
+
8145
8217
  InvalidLayerName
8146
-
8218
+
8147
8219
  ResourceNotFound
8148
-
8220
+
8149
8221
  InvalidCondition
8150
-
8222
+
8151
8223
  InvalidAttributes
8152
-
8224
+
8153
8225
  InvalidIdAttribute
8154
-
8226
+
8155
8227
  InvalidGeometryAttribute
8156
-
8228
+
8157
8229
  InvalidGeometryAttributeType
8158
-
8230
+
8159
8231
  InvalidColumnName
8160
-
8232
+
8161
8233
  InvalidIdColumnSettings
8162
-
8234
+
8163
8235
  ColumnNotExistsInTable
8164
-
8236
+
8165
8237
  InvalidStyle
8166
-
8238
+
8167
8239
  InvalidLayerType
8168
-
8240
+
8169
8241
  ColumnLoadingError
8170
-
8242
+
8171
8243
  InvalidAttributeFormat
8172
-
8244
+
8173
8245
  DataSourceNotFound
8174
-
8246
+
8175
8247
  DuplicateColumns
8176
-
8248
+
8177
8249
  DuplicateAttributes
8178
-
8250
+
8179
8251
  TableWithoutColumns
8180
-
8252
+
8181
8253
  InvalidTableReferenceConfiguration
8182
8254
  */
8183
8255
 
@@ -8213,15 +8285,15 @@ var ConfigurationErrorEnum;
8213
8285
  })(ConfigurationErrorEnum || (ConfigurationErrorEnum = {}));
8214
8286
  /**
8215
8287
  * Type of the error.
8216
-
8288
+
8217
8289
  ResourceLimitExceeded
8218
-
8290
+
8219
8291
  ResourceNotFound
8220
-
8292
+
8221
8293
  InternalError
8222
-
8294
+
8223
8295
  BadRequest
8224
-
8296
+
8225
8297
  DuplicateContent
8226
8298
  */
8227
8299
 
@@ -8272,9 +8344,9 @@ var ErrorType;
8272
8344
  })(ErrorType || (ErrorType = {}));
8273
8345
  /**
8274
8346
  * Type of the feature.
8275
-
8347
+
8276
8348
  Unknown
8277
-
8349
+
8278
8350
  GeometricFeature
8279
8351
  */
8280
8352
 
@@ -8287,11 +8359,11 @@ var FeatureType;
8287
8359
  })(FeatureType || (FeatureType = {}));
8288
8360
  /**
8289
8361
  * Sets whether font should be styled.
8290
-
8362
+
8291
8363
  normal
8292
-
8364
+
8293
8365
  oblique
8294
-
8366
+
8295
8367
  italic
8296
8368
  */
8297
8369
 
@@ -8305,27 +8377,27 @@ var FontStyle;
8305
8377
  })(FontStyle || (FontStyle = {}));
8306
8378
  /**
8307
8379
  * Specifies the weight (or boldness) of the font.
8308
-
8380
+
8309
8381
  Thin
8310
-
8382
+
8311
8383
  ExtraLight
8312
-
8384
+
8313
8385
  Light
8314
-
8386
+
8315
8387
  SemiLight
8316
-
8388
+
8317
8389
  Normal
8318
-
8390
+
8319
8391
  Medium
8320
-
8392
+
8321
8393
  DemiBold
8322
-
8394
+
8323
8395
  Bold
8324
-
8396
+
8325
8397
  ExtraBold
8326
-
8398
+
8327
8399
  Black
8328
-
8400
+
8329
8401
  ExtraBlack
8330
8402
  */
8331
8403
 
@@ -8347,17 +8419,17 @@ var FontWeight;
8347
8419
  })(FontWeight || (FontWeight = {}));
8348
8420
  /**
8349
8421
  *
8350
-
8422
+
8351
8423
  unknown
8352
-
8424
+
8353
8425
  point
8354
-
8426
+
8355
8427
  polyline
8356
-
8428
+
8357
8429
  multipolygon
8358
-
8430
+
8359
8431
  envelope
8360
-
8432
+
8361
8433
  multipoint
8362
8434
  */
8363
8435
 
@@ -8374,13 +8446,13 @@ var GeometryType;
8374
8446
  })(GeometryType || (GeometryType = {}));
8375
8447
  /**
8376
8448
  * Resource group.
8377
-
8449
+
8378
8450
  my
8379
-
8451
+
8380
8452
  role
8381
-
8453
+
8382
8454
  public
8383
-
8455
+
8384
8456
  all
8385
8457
  */
8386
8458
 
@@ -8395,13 +8467,13 @@ var Group;
8395
8467
  })(Group || (Group = {}));
8396
8468
  /**
8397
8469
  * Specifies the settings of line cap. This is applied to the beginning and end of each non-closed line.
8398
-
8470
+
8399
8471
  Flat
8400
-
8472
+
8401
8473
  Square
8402
-
8474
+
8403
8475
  Round
8404
-
8476
+
8405
8477
  Triangle
8406
8478
  */
8407
8479
 
@@ -8416,29 +8488,29 @@ var LineCapStyle;
8416
8488
  })(LineCapStyle || (LineCapStyle = {}));
8417
8489
  /**
8418
8490
  * Type of the line ending.
8419
-
8491
+
8420
8492
  none
8421
-
8493
+
8422
8494
  arrow
8423
-
8495
+
8424
8496
  filledArrow
8425
-
8497
+
8426
8498
  square
8427
-
8499
+
8428
8500
  filledSquare
8429
-
8501
+
8430
8502
  circle
8431
-
8503
+
8432
8504
  filledCircle
8433
-
8505
+
8434
8506
  diamond
8435
-
8507
+
8436
8508
  filledDiamond
8437
-
8509
+
8438
8510
  roundSquare
8439
-
8511
+
8440
8512
  filledRoundSquare
8441
-
8513
+
8442
8514
  svg
8443
8515
  */
8444
8516
 
@@ -8461,11 +8533,11 @@ var LineEndingType;
8461
8533
  })(LineEndingType || (LineEndingType = {}));
8462
8534
  /**
8463
8535
  * Specifies the settings of lines join. This is applied to corners in lines and rectangles.
8464
-
8536
+
8465
8537
  Miter
8466
-
8538
+
8467
8539
  Bevel
8468
-
8540
+
8469
8541
  Round
8470
8542
  */
8471
8543
 
@@ -8479,15 +8551,15 @@ var LineJoinType;
8479
8551
  })(LineJoinType || (LineJoinType = {}));
8480
8552
  /**
8481
8553
  *
8482
-
8554
+
8483
8555
  Unknown
8484
-
8556
+
8485
8557
  union
8486
-
8558
+
8487
8559
  intersection
8488
-
8560
+
8489
8561
  subtraction
8490
-
8562
+
8491
8563
  symDifference
8492
8564
  */
8493
8565
 
@@ -8503,11 +8575,11 @@ var Operation;
8503
8575
  })(Operation || (Operation = {}));
8504
8576
  /**
8505
8577
  *
8506
-
8578
+
8507
8579
  My
8508
-
8580
+
8509
8581
  Shared
8510
-
8582
+
8511
8583
  Public
8512
8584
  */
8513
8585
 
@@ -8521,9 +8593,9 @@ var OwnerFilter;
8521
8593
  })(OwnerFilter || (OwnerFilter = {}));
8522
8594
  /**
8523
8595
  * Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
8524
-
8596
+
8525
8597
  xyz
8526
-
8598
+
8527
8599
  tms
8528
8600
  */
8529
8601
 
@@ -8536,19 +8608,19 @@ var PbfSchema;
8536
8608
  })(PbfSchema || (PbfSchema = {}));
8537
8609
  /**
8538
8610
  *
8539
-
8611
+
8540
8612
  none
8541
-
8613
+
8542
8614
  configure
8543
-
8615
+
8544
8616
  write
8545
-
8617
+
8546
8618
  read
8547
-
8619
+
8548
8620
  read,configure
8549
-
8621
+
8550
8622
  read,write
8551
-
8623
+
8552
8624
  read,write,configure
8553
8625
  */
8554
8626
 
@@ -8566,19 +8638,19 @@ var Permissions;
8566
8638
  })(Permissions || (Permissions = {}));
8567
8639
  /**
8568
8640
  * Type of the authorization policy.
8569
-
8641
+
8570
8642
  Unknown
8571
-
8643
+
8572
8644
  CreateTable
8573
-
8645
+
8574
8646
  CreateLayer
8575
-
8647
+
8576
8648
  CreateProject
8577
-
8649
+
8578
8650
  MaxFeaturesInOneTable
8579
-
8651
+
8580
8652
  MaxObjectsToExport
8581
-
8653
+
8582
8654
  MaxUploadContentSize
8583
8655
  */
8584
8656
 
@@ -8596,11 +8668,11 @@ var PolicyType;
8596
8668
  })(PolicyType || (PolicyType = {}));
8597
8669
  /**
8598
8670
  * Stream quality.
8599
-
8671
+
8600
8672
  Low
8601
-
8673
+
8602
8674
  Medium
8603
-
8675
+
8604
8676
  High
8605
8677
  */
8606
8678
 
@@ -8614,46 +8686,19 @@ var Quality;
8614
8686
  })(Quality || (Quality = {}));
8615
8687
  /**
8616
8688
  *
8617
-
8618
- OneToMany
8619
-
8620
- OneToOne
8621
-
8622
- Intersect
8623
-
8624
- RightJoin
8625
-
8626
- FullJoin
8627
-
8628
- CrossJoin
8629
- */
8630
-
8631
8689
 
8632
- var ReferenceJoinType;
8633
-
8634
- (function (ReferenceJoinType) {
8635
- ReferenceJoinType["OneToMany"] = "OneToMany";
8636
- ReferenceJoinType["OneToOne"] = "OneToOne";
8637
- ReferenceJoinType["Intersect"] = "Intersect";
8638
- ReferenceJoinType["RightJoin"] = "RightJoin";
8639
- ReferenceJoinType["FullJoin"] = "FullJoin";
8640
- ReferenceJoinType["CrossJoin"] = "CrossJoin";
8641
- })(ReferenceJoinType || (ReferenceJoinType = {}));
8642
- /**
8643
- *
8644
-
8645
8690
  Unknown
8646
-
8691
+
8647
8692
  table
8648
-
8693
+
8649
8694
  layer
8650
-
8695
+
8651
8696
  project
8652
-
8697
+
8653
8698
  file
8654
-
8699
+
8655
8700
  feature
8656
-
8701
+
8657
8702
  tag
8658
8703
  */
8659
8704
 
@@ -8679,21 +8724,21 @@ var ResourceTypeLink;
8679
8724
  })(ResourceTypeLink || (ResourceTypeLink = {}));
8680
8725
  /**
8681
8726
  * Status of the server task.
8682
-
8727
+
8683
8728
  None
8684
-
8729
+
8685
8730
  Scheduled
8686
-
8731
+
8687
8732
  Planning
8688
-
8733
+
8689
8734
  Executing
8690
-
8735
+
8691
8736
  Completed
8692
-
8737
+
8693
8738
  Failed
8694
-
8739
+
8695
8740
  Canceled
8696
-
8741
+
8697
8742
  Timeout
8698
8743
  */
8699
8744
 
@@ -8712,11 +8757,11 @@ var ServerTaskStatus;
8712
8757
  })(ServerTaskStatus || (ServerTaskStatus = {}));
8713
8758
  /**
8714
8759
  *
8715
-
8760
+
8716
8761
  Basic
8717
-
8762
+
8718
8763
  PreserveTopology
8719
-
8764
+
8720
8765
  VW
8721
8766
  */
8722
8767
 
@@ -8730,13 +8775,13 @@ var SimplifyType;
8730
8775
  })(SimplifyType || (SimplifyType = {}));
8731
8776
  /**
8732
8777
  *
8733
-
8778
+
8734
8779
  None
8735
-
8780
+
8736
8781
  Image
8737
-
8782
+
8738
8783
  PkkCode
8739
-
8784
+
8740
8785
  Attachments
8741
8786
  */
8742
8787
 
@@ -8751,9 +8796,9 @@ var StringSubType;
8751
8796
  })(StringSubType || (StringSubType = {}));
8752
8797
  /**
8753
8798
  * Task owner group.
8754
-
8799
+
8755
8800
  my
8756
-
8801
+
8757
8802
  all
8758
8803
  */
8759
8804
 
@@ -8766,13 +8811,13 @@ var TaskGroup;
8766
8811
  })(TaskGroup || (TaskGroup = {}));
8767
8812
  /**
8768
8813
  * Sets the horizontal alignment of text.
8769
-
8814
+
8770
8815
  right
8771
-
8816
+
8772
8817
  left
8773
-
8818
+
8774
8819
  center
8775
-
8820
+
8776
8821
  justified
8777
8822
  */
8778
8823
 
@@ -8787,11 +8832,11 @@ var TextAlignment;
8787
8832
  })(TextAlignment || (TextAlignment = {}));
8788
8833
  /**
8789
8834
  * Sets the vertical alignment of text.
8790
-
8835
+
8791
8836
  top
8792
-
8837
+
8793
8838
  bottom
8794
-
8839
+
8795
8840
  middle
8796
8841
  */
8797
8842
 
@@ -8804,5 +8849,5 @@ var TextVerticalAlignment;
8804
8849
  TextVerticalAlignment["Middle"] = "middle";
8805
8850
  })(TextVerticalAlignment || (TextVerticalAlignment = {}));
8806
8851
 
8807
- export { Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeSelectorType, AttributeType, BulkOperations, Cameras, CatalogResourceType, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConnectionStatus, DependencyType, EqlTest, 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, ReferenceJoinType, ResourceCatalog, ResourceSeparator, ResourceType, ResourceTypeLink, Resources, 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 };
8852
+ export { Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeSelectorType, AttributeType, BulkOperations, Cameras, CatalogResourceType, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConnectionStatus, DependencyType, EqlTest, 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, ResourceType, ResourceTypeLink, Resources, 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 };
8808
8853
  //# sourceMappingURL=api.esm.js.map