@evergis/api 3.0.187 → 3.0.188

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
  let HttpClient = /*#__PURE__*/function () {
@@ -4938,8 +4946,8 @@ let Notification = /*#__PURE__*/function (_NotificationService) {
4938
4946
  || event.code === 4002
4939
4947
  /* InvalidSession */
4940
4948
  ) {
4941
- _this.connectStatus = ConnectionStatus.SessionClosed;
4942
- } else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
4949
+ _this.connectStatus = ConnectionStatus.SessionClosed;
4950
+ } else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
4943
4951
  _this.connectStatus = ConnectionStatus.Break;
4944
4952
  _this.reconnectTries++;
4945
4953
 
@@ -5773,12 +5781,12 @@ let Resources = /*#__PURE__*/function () {
5773
5781
  }, {
5774
5782
  key: "getDependentNames",
5775
5783
  value: function getDependentNames(deps, depType) {
5776
- return deps.filter((_ref) => {
5784
+ return deps.filter(_ref => {
5777
5785
  let {
5778
5786
  type
5779
5787
  } = _ref;
5780
5788
  return type === depType;
5781
- }).map((_ref2) => {
5789
+ }).map(_ref2 => {
5782
5790
  let {
5783
5791
  name
5784
5792
  } = _ref2;
@@ -6234,7 +6242,7 @@ let Scheduler = /*#__PURE__*/function (_SchedulerService) {
6234
6242
  const taskProgress = await this.getTaskProgress(id);
6235
6243
  this.resolveTaskStatus(taskProgress, resolve, reject);
6236
6244
 
6237
- const taskResultCallback = async (_ref) => {
6245
+ const taskResultCallback = async _ref => {
6238
6246
  let {
6239
6247
  data
6240
6248
  } = _ref;
@@ -7913,47 +7921,47 @@ function isFeatureLayer(layer) {
7913
7921
 
7914
7922
  /**
7915
7923
  *
7916
-
7924
+
7917
7925
  None
7918
-
7926
+
7919
7927
  Array
7920
-
7928
+
7921
7929
  Min
7922
-
7930
+
7923
7931
  Max
7924
-
7932
+
7925
7933
  Avg
7926
-
7934
+
7927
7935
  Sum
7928
-
7936
+
7929
7937
  Extent
7930
-
7938
+
7931
7939
  H3
7932
-
7940
+
7933
7941
  Count
7934
-
7942
+
7935
7943
  TotalCount
7936
-
7944
+
7937
7945
  DistinctCount
7938
-
7946
+
7939
7947
  First
7940
-
7948
+
7941
7949
  Last
7942
-
7950
+
7943
7951
  Median
7944
-
7952
+
7945
7953
  Mod
7946
-
7954
+
7947
7955
  StdDeviation
7948
-
7956
+
7949
7957
  SumOfProduct
7950
-
7958
+
7951
7959
  OnlyValue
7952
-
7960
+
7953
7961
  WeightedAvg
7954
-
7962
+
7955
7963
  DensityIndicators
7956
-
7964
+
7957
7965
  DividedSum
7958
7966
  */
7959
7967
  var AggregationFunction;
@@ -7983,13 +7991,13 @@ var AggregationFunction;
7983
7991
  })(AggregationFunction || (AggregationFunction = {}));
7984
7992
  /**
7985
7993
  *
7986
-
7994
+
7987
7995
  None
7988
-
7996
+
7989
7997
  SelectFromHandBook
7990
-
7998
+
7991
7999
  SelectFromRange
7992
-
8000
+
7993
8001
  ViewHandBook
7994
8002
  */
7995
8003
 
@@ -8004,31 +8012,31 @@ var AttributeSelectorType;
8004
8012
  })(AttributeSelectorType || (AttributeSelectorType = {}));
8005
8013
  /**
8006
8014
  *
8007
-
8015
+
8008
8016
  Unknown
8009
-
8017
+
8010
8018
  String
8011
-
8019
+
8012
8020
  Int32
8013
-
8021
+
8014
8022
  Int64
8015
-
8023
+
8016
8024
  Double
8017
-
8025
+
8018
8026
  DateTime
8019
-
8027
+
8020
8028
  Boolean
8021
-
8029
+
8022
8030
  Point
8023
-
8031
+
8024
8032
  Polyline
8025
-
8033
+
8026
8034
  MultiPolygon
8027
-
8035
+
8028
8036
  Multipoint
8029
-
8037
+
8030
8038
  H3Index
8031
-
8039
+
8032
8040
  Json
8033
8041
  */
8034
8042
 
@@ -8052,17 +8060,17 @@ var AttributeType;
8052
8060
  })(AttributeType || (AttributeType = {}));
8053
8061
  /**
8054
8062
  *
8055
-
8063
+
8056
8064
  None
8057
-
8065
+
8058
8066
  Map
8059
-
8067
+
8060
8068
  Layer
8061
-
8069
+
8062
8070
  Table
8063
-
8071
+
8064
8072
  File
8065
-
8073
+
8066
8074
  TaskPrototype
8067
8075
  */
8068
8076
 
@@ -8079,15 +8087,15 @@ var CatalogResourceType;
8079
8087
  })(CatalogResourceType || (CatalogResourceType = {}));
8080
8088
  /**
8081
8089
  * Describes classification methods.
8082
-
8090
+
8083
8091
  none
8084
-
8092
+
8085
8093
  naturalBreaks
8086
-
8094
+
8087
8095
  equalInterval
8088
-
8096
+
8089
8097
  quantile
8090
-
8098
+
8091
8099
  unique
8092
8100
  */
8093
8101
 
@@ -8103,11 +8111,11 @@ var ClassificationType;
8103
8111
  })(ClassificationType || (ClassificationType = {}));
8104
8112
  /**
8105
8113
  *
8106
-
8114
+
8107
8115
  decimal
8108
-
8116
+
8109
8117
  dateTime
8110
-
8118
+
8111
8119
  text
8112
8120
  */
8113
8121
 
@@ -8121,55 +8129,55 @@ var ClassifyAttributeType;
8121
8129
  })(ClassifyAttributeType || (ClassifyAttributeType = {}));
8122
8130
  /**
8123
8131
  *
8124
-
8132
+
8125
8133
  Unknown
8126
-
8134
+
8127
8135
  SerializeError
8128
-
8136
+
8129
8137
  InvalidDataService
8130
-
8138
+
8131
8139
  InvalidConfiguration
8132
-
8140
+
8133
8141
  InvalidDataServiceName
8134
-
8142
+
8135
8143
  InvalidTableName
8136
-
8144
+
8137
8145
  InvalidLayerName
8138
-
8146
+
8139
8147
  ResourceNotFound
8140
-
8148
+
8141
8149
  InvalidCondition
8142
-
8150
+
8143
8151
  InvalidAttributes
8144
-
8152
+
8145
8153
  InvalidIdAttribute
8146
-
8154
+
8147
8155
  InvalidGeometryAttribute
8148
-
8156
+
8149
8157
  InvalidGeometryAttributeType
8150
-
8158
+
8151
8159
  InvalidColumnName
8152
-
8160
+
8153
8161
  InvalidIdColumnSettings
8154
-
8162
+
8155
8163
  ColumnNotExistsInTable
8156
-
8164
+
8157
8165
  InvalidStyle
8158
-
8166
+
8159
8167
  InvalidLayerType
8160
-
8168
+
8161
8169
  ColumnLoadingError
8162
-
8170
+
8163
8171
  InvalidAttributeFormat
8164
-
8172
+
8165
8173
  DataSourceNotFound
8166
-
8174
+
8167
8175
  DuplicateColumns
8168
-
8176
+
8169
8177
  DuplicateAttributes
8170
-
8178
+
8171
8179
  TableWithoutColumns
8172
-
8180
+
8173
8181
  InvalidTableReferenceConfiguration
8174
8182
  */
8175
8183
 
@@ -8205,15 +8213,15 @@ var ConfigurationErrorEnum;
8205
8213
  })(ConfigurationErrorEnum || (ConfigurationErrorEnum = {}));
8206
8214
  /**
8207
8215
  * Type of the error.
8208
-
8216
+
8209
8217
  ResourceLimitExceeded
8210
-
8218
+
8211
8219
  ResourceNotFound
8212
-
8220
+
8213
8221
  InternalError
8214
-
8222
+
8215
8223
  BadRequest
8216
-
8224
+
8217
8225
  DuplicateContent
8218
8226
  */
8219
8227
 
@@ -8264,9 +8272,9 @@ var ErrorType;
8264
8272
  })(ErrorType || (ErrorType = {}));
8265
8273
  /**
8266
8274
  * Type of the feature.
8267
-
8275
+
8268
8276
  Unknown
8269
-
8277
+
8270
8278
  GeometricFeature
8271
8279
  */
8272
8280
 
@@ -8279,11 +8287,11 @@ var FeatureType;
8279
8287
  })(FeatureType || (FeatureType = {}));
8280
8288
  /**
8281
8289
  * Sets whether font should be styled.
8282
-
8290
+
8283
8291
  normal
8284
-
8292
+
8285
8293
  oblique
8286
-
8294
+
8287
8295
  italic
8288
8296
  */
8289
8297
 
@@ -8297,27 +8305,27 @@ var FontStyle;
8297
8305
  })(FontStyle || (FontStyle = {}));
8298
8306
  /**
8299
8307
  * Specifies the weight (or boldness) of the font.
8300
-
8308
+
8301
8309
  Thin
8302
-
8310
+
8303
8311
  ExtraLight
8304
-
8312
+
8305
8313
  Light
8306
-
8314
+
8307
8315
  SemiLight
8308
-
8316
+
8309
8317
  Normal
8310
-
8318
+
8311
8319
  Medium
8312
-
8320
+
8313
8321
  DemiBold
8314
-
8322
+
8315
8323
  Bold
8316
-
8324
+
8317
8325
  ExtraBold
8318
-
8326
+
8319
8327
  Black
8320
-
8328
+
8321
8329
  ExtraBlack
8322
8330
  */
8323
8331
 
@@ -8339,17 +8347,17 @@ var FontWeight;
8339
8347
  })(FontWeight || (FontWeight = {}));
8340
8348
  /**
8341
8349
  *
8342
-
8350
+
8343
8351
  unknown
8344
-
8352
+
8345
8353
  point
8346
-
8354
+
8347
8355
  polyline
8348
-
8356
+
8349
8357
  multipolygon
8350
-
8358
+
8351
8359
  envelope
8352
-
8360
+
8353
8361
  multipoint
8354
8362
  */
8355
8363
 
@@ -8366,13 +8374,13 @@ var GeometryType;
8366
8374
  })(GeometryType || (GeometryType = {}));
8367
8375
  /**
8368
8376
  * Resource group.
8369
-
8377
+
8370
8378
  my
8371
-
8379
+
8372
8380
  role
8373
-
8381
+
8374
8382
  public
8375
-
8383
+
8376
8384
  all
8377
8385
  */
8378
8386
 
@@ -8387,13 +8395,13 @@ var Group;
8387
8395
  })(Group || (Group = {}));
8388
8396
  /**
8389
8397
  * Specifies the settings of line cap. This is applied to the beginning and end of each non-closed line.
8390
-
8398
+
8391
8399
  Flat
8392
-
8400
+
8393
8401
  Square
8394
-
8402
+
8395
8403
  Round
8396
-
8404
+
8397
8405
  Triangle
8398
8406
  */
8399
8407
 
@@ -8408,29 +8416,29 @@ var LineCapStyle;
8408
8416
  })(LineCapStyle || (LineCapStyle = {}));
8409
8417
  /**
8410
8418
  * Type of the line ending.
8411
-
8419
+
8412
8420
  none
8413
-
8421
+
8414
8422
  arrow
8415
-
8423
+
8416
8424
  filledArrow
8417
-
8425
+
8418
8426
  square
8419
-
8427
+
8420
8428
  filledSquare
8421
-
8429
+
8422
8430
  circle
8423
-
8431
+
8424
8432
  filledCircle
8425
-
8433
+
8426
8434
  diamond
8427
-
8435
+
8428
8436
  filledDiamond
8429
-
8437
+
8430
8438
  roundSquare
8431
-
8439
+
8432
8440
  filledRoundSquare
8433
-
8441
+
8434
8442
  svg
8435
8443
  */
8436
8444
 
@@ -8453,11 +8461,11 @@ var LineEndingType;
8453
8461
  })(LineEndingType || (LineEndingType = {}));
8454
8462
  /**
8455
8463
  * Specifies the settings of lines join. This is applied to corners in lines and rectangles.
8456
-
8464
+
8457
8465
  Miter
8458
-
8466
+
8459
8467
  Bevel
8460
-
8468
+
8461
8469
  Round
8462
8470
  */
8463
8471
 
@@ -8471,15 +8479,15 @@ var LineJoinType;
8471
8479
  })(LineJoinType || (LineJoinType = {}));
8472
8480
  /**
8473
8481
  *
8474
-
8482
+
8475
8483
  Unknown
8476
-
8484
+
8477
8485
  union
8478
-
8486
+
8479
8487
  intersection
8480
-
8488
+
8481
8489
  subtraction
8482
-
8490
+
8483
8491
  symDifference
8484
8492
  */
8485
8493
 
@@ -8495,11 +8503,11 @@ var Operation;
8495
8503
  })(Operation || (Operation = {}));
8496
8504
  /**
8497
8505
  *
8498
-
8506
+
8499
8507
  My
8500
-
8508
+
8501
8509
  Shared
8502
-
8510
+
8503
8511
  Public
8504
8512
  */
8505
8513
 
@@ -8513,9 +8521,9 @@ var OwnerFilter;
8513
8521
  })(OwnerFilter || (OwnerFilter = {}));
8514
8522
  /**
8515
8523
  * Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
8516
-
8524
+
8517
8525
  xyz
8518
-
8526
+
8519
8527
  tms
8520
8528
  */
8521
8529
 
@@ -8528,19 +8536,19 @@ var PbfSchema;
8528
8536
  })(PbfSchema || (PbfSchema = {}));
8529
8537
  /**
8530
8538
  *
8531
-
8539
+
8532
8540
  none
8533
-
8541
+
8534
8542
  configure
8535
-
8543
+
8536
8544
  write
8537
-
8545
+
8538
8546
  read
8539
-
8547
+
8540
8548
  read,configure
8541
-
8549
+
8542
8550
  read,write
8543
-
8551
+
8544
8552
  read,write,configure
8545
8553
  */
8546
8554
 
@@ -8558,19 +8566,19 @@ var Permissions;
8558
8566
  })(Permissions || (Permissions = {}));
8559
8567
  /**
8560
8568
  * Type of the authorization policy.
8561
-
8569
+
8562
8570
  Unknown
8563
-
8571
+
8564
8572
  CreateTable
8565
-
8573
+
8566
8574
  CreateLayer
8567
-
8575
+
8568
8576
  CreateProject
8569
-
8577
+
8570
8578
  MaxFeaturesInOneTable
8571
-
8579
+
8572
8580
  MaxObjectsToExport
8573
-
8581
+
8574
8582
  MaxUploadContentSize
8575
8583
  */
8576
8584
 
@@ -8588,11 +8596,11 @@ var PolicyType;
8588
8596
  })(PolicyType || (PolicyType = {}));
8589
8597
  /**
8590
8598
  * Stream quality.
8591
-
8599
+
8592
8600
  Low
8593
-
8601
+
8594
8602
  Medium
8595
-
8603
+
8596
8604
  High
8597
8605
  */
8598
8606
 
@@ -8606,17 +8614,17 @@ var Quality;
8606
8614
  })(Quality || (Quality = {}));
8607
8615
  /**
8608
8616
  *
8609
-
8617
+
8610
8618
  OneToMany
8611
-
8619
+
8612
8620
  OneToOne
8613
-
8621
+
8614
8622
  Intersect
8615
-
8623
+
8616
8624
  RightJoin
8617
-
8625
+
8618
8626
  FullJoin
8619
-
8627
+
8620
8628
  CrossJoin
8621
8629
  */
8622
8630
 
@@ -8633,19 +8641,19 @@ var ReferenceJoinType;
8633
8641
  })(ReferenceJoinType || (ReferenceJoinType = {}));
8634
8642
  /**
8635
8643
  *
8636
-
8644
+
8637
8645
  Unknown
8638
-
8646
+
8639
8647
  table
8640
-
8648
+
8641
8649
  layer
8642
-
8650
+
8643
8651
  project
8644
-
8652
+
8645
8653
  file
8646
-
8654
+
8647
8655
  feature
8648
-
8656
+
8649
8657
  tag
8650
8658
  */
8651
8659
 
@@ -8671,21 +8679,21 @@ var ResourceTypeLink;
8671
8679
  })(ResourceTypeLink || (ResourceTypeLink = {}));
8672
8680
  /**
8673
8681
  * Status of the server task.
8674
-
8682
+
8675
8683
  None
8676
-
8684
+
8677
8685
  Scheduled
8678
-
8686
+
8679
8687
  Planning
8680
-
8688
+
8681
8689
  Executing
8682
-
8690
+
8683
8691
  Completed
8684
-
8692
+
8685
8693
  Failed
8686
-
8694
+
8687
8695
  Canceled
8688
-
8696
+
8689
8697
  Timeout
8690
8698
  */
8691
8699
 
@@ -8704,11 +8712,11 @@ var ServerTaskStatus;
8704
8712
  })(ServerTaskStatus || (ServerTaskStatus = {}));
8705
8713
  /**
8706
8714
  *
8707
-
8715
+
8708
8716
  Basic
8709
-
8717
+
8710
8718
  PreserveTopology
8711
-
8719
+
8712
8720
  VW
8713
8721
  */
8714
8722
 
@@ -8722,13 +8730,13 @@ var SimplifyType;
8722
8730
  })(SimplifyType || (SimplifyType = {}));
8723
8731
  /**
8724
8732
  *
8725
-
8733
+
8726
8734
  None
8727
-
8735
+
8728
8736
  Image
8729
-
8737
+
8730
8738
  PkkCode
8731
-
8739
+
8732
8740
  Attachments
8733
8741
  */
8734
8742
 
@@ -8743,9 +8751,9 @@ var StringSubType;
8743
8751
  })(StringSubType || (StringSubType = {}));
8744
8752
  /**
8745
8753
  * Task owner group.
8746
-
8754
+
8747
8755
  my
8748
-
8756
+
8749
8757
  all
8750
8758
  */
8751
8759
 
@@ -8758,13 +8766,13 @@ var TaskGroup;
8758
8766
  })(TaskGroup || (TaskGroup = {}));
8759
8767
  /**
8760
8768
  * Sets the horizontal alignment of text.
8761
-
8769
+
8762
8770
  right
8763
-
8771
+
8764
8772
  left
8765
-
8773
+
8766
8774
  center
8767
-
8775
+
8768
8776
  justified
8769
8777
  */
8770
8778
 
@@ -8779,11 +8787,11 @@ var TextAlignment;
8779
8787
  })(TextAlignment || (TextAlignment = {}));
8780
8788
  /**
8781
8789
  * Sets the vertical alignment of text.
8782
-
8790
+
8783
8791
  top
8784
-
8792
+
8785
8793
  bottom
8786
-
8794
+
8787
8795
  middle
8788
8796
  */
8789
8797