@evergis/api 3.0.185 → 3.0.186

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 () {
@@ -4906,8 +4914,8 @@ let Notification = /*#__PURE__*/function (_NotificationService) {
4906
4914
  || event.code === 4002
4907
4915
  /* InvalidSession */
4908
4916
  ) {
4909
- _this.connectStatus = ConnectionStatus.SessionClosed;
4910
- } else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
4917
+ _this.connectStatus = ConnectionStatus.SessionClosed;
4918
+ } else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
4911
4919
  _this.connectStatus = ConnectionStatus.Break;
4912
4920
  _this.reconnectTries++;
4913
4921
 
@@ -5741,12 +5749,12 @@ let Resources = /*#__PURE__*/function () {
5741
5749
  }, {
5742
5750
  key: "getDependentNames",
5743
5751
  value: function getDependentNames(deps, depType) {
5744
- return deps.filter((_ref) => {
5752
+ return deps.filter(_ref => {
5745
5753
  let {
5746
5754
  type
5747
5755
  } = _ref;
5748
5756
  return type === depType;
5749
- }).map((_ref2) => {
5757
+ }).map(_ref2 => {
5750
5758
  let {
5751
5759
  name
5752
5760
  } = _ref2;
@@ -6202,7 +6210,7 @@ let Scheduler = /*#__PURE__*/function (_SchedulerService) {
6202
6210
  const taskProgress = await this.getTaskProgress(id);
6203
6211
  this.resolveTaskStatus(taskProgress, resolve, reject);
6204
6212
 
6205
- const taskResultCallback = async (_ref) => {
6213
+ const taskResultCallback = async _ref => {
6206
6214
  let {
6207
6215
  data
6208
6216
  } = _ref;
@@ -7881,47 +7889,47 @@ function isFeatureLayer(layer) {
7881
7889
 
7882
7890
  /**
7883
7891
  *
7884
-
7892
+
7885
7893
  None
7886
-
7894
+
7887
7895
  Array
7888
-
7896
+
7889
7897
  Min
7890
-
7898
+
7891
7899
  Max
7892
-
7900
+
7893
7901
  Avg
7894
-
7902
+
7895
7903
  Sum
7896
-
7904
+
7897
7905
  Extent
7898
-
7906
+
7899
7907
  H3
7900
-
7908
+
7901
7909
  Count
7902
-
7910
+
7903
7911
  TotalCount
7904
-
7912
+
7905
7913
  DistinctCount
7906
-
7914
+
7907
7915
  First
7908
-
7916
+
7909
7917
  Last
7910
-
7918
+
7911
7919
  Median
7912
-
7920
+
7913
7921
  Mod
7914
-
7922
+
7915
7923
  StdDeviation
7916
-
7924
+
7917
7925
  SumOfProduct
7918
-
7926
+
7919
7927
  OnlyValue
7920
-
7928
+
7921
7929
  WeightedAvg
7922
-
7930
+
7923
7931
  DensityIndicators
7924
-
7932
+
7925
7933
  DividedSum
7926
7934
  */
7927
7935
  var AggregationFunction;
@@ -7951,13 +7959,13 @@ var AggregationFunction;
7951
7959
  })(AggregationFunction || (AggregationFunction = {}));
7952
7960
  /**
7953
7961
  *
7954
-
7962
+
7955
7963
  None
7956
-
7964
+
7957
7965
  SelectFromHandBook
7958
-
7966
+
7959
7967
  SelectFromRange
7960
-
7968
+
7961
7969
  ViewHandBook
7962
7970
  */
7963
7971
 
@@ -7972,31 +7980,31 @@ var AttributeSelectorType;
7972
7980
  })(AttributeSelectorType || (AttributeSelectorType = {}));
7973
7981
  /**
7974
7982
  *
7975
-
7983
+
7976
7984
  Unknown
7977
-
7985
+
7978
7986
  String
7979
-
7987
+
7980
7988
  Int32
7981
-
7989
+
7982
7990
  Int64
7983
-
7991
+
7984
7992
  Double
7985
-
7993
+
7986
7994
  DateTime
7987
-
7995
+
7988
7996
  Boolean
7989
-
7997
+
7990
7998
  Point
7991
-
7999
+
7992
8000
  Polyline
7993
-
8001
+
7994
8002
  MultiPolygon
7995
-
8003
+
7996
8004
  Multipoint
7997
-
8005
+
7998
8006
  H3Index
7999
-
8007
+
8000
8008
  Json
8001
8009
  */
8002
8010
 
@@ -8020,15 +8028,15 @@ var AttributeType;
8020
8028
  })(AttributeType || (AttributeType = {}));
8021
8029
  /**
8022
8030
  * Describes classification methods.
8023
-
8031
+
8024
8032
  none
8025
-
8033
+
8026
8034
  naturalBreaks
8027
-
8035
+
8028
8036
  equalInterval
8029
-
8037
+
8030
8038
  quantile
8031
-
8039
+
8032
8040
  unique
8033
8041
  */
8034
8042
 
@@ -8044,11 +8052,11 @@ var ClassificationType;
8044
8052
  })(ClassificationType || (ClassificationType = {}));
8045
8053
  /**
8046
8054
  *
8047
-
8055
+
8048
8056
  decimal
8049
-
8057
+
8050
8058
  dateTime
8051
-
8059
+
8052
8060
  text
8053
8061
  */
8054
8062
 
@@ -8062,55 +8070,55 @@ var ClassifyAttributeType;
8062
8070
  })(ClassifyAttributeType || (ClassifyAttributeType = {}));
8063
8071
  /**
8064
8072
  *
8065
-
8073
+
8066
8074
  Unknown
8067
-
8075
+
8068
8076
  SerializeError
8069
-
8077
+
8070
8078
  InvalidDataService
8071
-
8079
+
8072
8080
  InvalidConfiguration
8073
-
8081
+
8074
8082
  InvalidDataServiceName
8075
-
8083
+
8076
8084
  InvalidTableName
8077
-
8085
+
8078
8086
  InvalidLayerName
8079
-
8087
+
8080
8088
  ResourceNotFound
8081
-
8089
+
8082
8090
  InvalidCondition
8083
-
8091
+
8084
8092
  InvalidAttributes
8085
-
8093
+
8086
8094
  InvalidIdAttribute
8087
-
8095
+
8088
8096
  InvalidGeometryAttribute
8089
-
8097
+
8090
8098
  InvalidGeometryAttributeType
8091
-
8099
+
8092
8100
  InvalidColumnName
8093
-
8101
+
8094
8102
  InvalidIdColumnSettings
8095
-
8103
+
8096
8104
  ColumnNotExistsInTable
8097
-
8105
+
8098
8106
  InvalidStyle
8099
-
8107
+
8100
8108
  InvalidLayerType
8101
-
8109
+
8102
8110
  ColumnLoadingError
8103
-
8111
+
8104
8112
  InvalidAttributeFormat
8105
-
8113
+
8106
8114
  DataSourceNotFound
8107
-
8115
+
8108
8116
  DuplicateColumns
8109
-
8117
+
8110
8118
  DuplicateAttributes
8111
-
8119
+
8112
8120
  TableWithoutColumns
8113
-
8121
+
8114
8122
  InvalidTableReferenceConfiguration
8115
8123
  */
8116
8124
 
@@ -8146,15 +8154,15 @@ var ConfigurationErrorEnum;
8146
8154
  })(ConfigurationErrorEnum || (ConfigurationErrorEnum = {}));
8147
8155
  /**
8148
8156
  * Type of the error.
8149
-
8157
+
8150
8158
  ResourceLimitExceeded
8151
-
8159
+
8152
8160
  ResourceNotFound
8153
-
8161
+
8154
8162
  InternalError
8155
-
8163
+
8156
8164
  BadRequest
8157
-
8165
+
8158
8166
  DuplicateContent
8159
8167
  */
8160
8168
 
@@ -8205,9 +8213,9 @@ var ErrorType;
8205
8213
  })(ErrorType || (ErrorType = {}));
8206
8214
  /**
8207
8215
  * Type of the feature.
8208
-
8216
+
8209
8217
  Unknown
8210
-
8218
+
8211
8219
  GeometricFeature
8212
8220
  */
8213
8221
 
@@ -8220,11 +8228,11 @@ var FeatureType;
8220
8228
  })(FeatureType || (FeatureType = {}));
8221
8229
  /**
8222
8230
  * Sets whether font should be styled.
8223
-
8231
+
8224
8232
  normal
8225
-
8233
+
8226
8234
  oblique
8227
-
8235
+
8228
8236
  italic
8229
8237
  */
8230
8238
 
@@ -8238,27 +8246,27 @@ var FontStyle;
8238
8246
  })(FontStyle || (FontStyle = {}));
8239
8247
  /**
8240
8248
  * Specifies the weight (or boldness) of the font.
8241
-
8249
+
8242
8250
  Thin
8243
-
8251
+
8244
8252
  ExtraLight
8245
-
8253
+
8246
8254
  Light
8247
-
8255
+
8248
8256
  SemiLight
8249
-
8257
+
8250
8258
  Normal
8251
-
8259
+
8252
8260
  Medium
8253
-
8261
+
8254
8262
  DemiBold
8255
-
8263
+
8256
8264
  Bold
8257
-
8265
+
8258
8266
  ExtraBold
8259
-
8267
+
8260
8268
  Black
8261
-
8269
+
8262
8270
  ExtraBlack
8263
8271
  */
8264
8272
 
@@ -8280,17 +8288,17 @@ var FontWeight;
8280
8288
  })(FontWeight || (FontWeight = {}));
8281
8289
  /**
8282
8290
  *
8283
-
8291
+
8284
8292
  unknown
8285
-
8293
+
8286
8294
  point
8287
-
8295
+
8288
8296
  polyline
8289
-
8297
+
8290
8298
  multipolygon
8291
-
8299
+
8292
8300
  envelope
8293
-
8301
+
8294
8302
  multipoint
8295
8303
  */
8296
8304
 
@@ -8307,13 +8315,13 @@ var GeometryType;
8307
8315
  })(GeometryType || (GeometryType = {}));
8308
8316
  /**
8309
8317
  * Resource group.
8310
-
8318
+
8311
8319
  my
8312
-
8320
+
8313
8321
  role
8314
-
8322
+
8315
8323
  public
8316
-
8324
+
8317
8325
  all
8318
8326
  */
8319
8327
 
@@ -8328,13 +8336,13 @@ var Group;
8328
8336
  })(Group || (Group = {}));
8329
8337
  /**
8330
8338
  * Specifies the settings of line cap. This is applied to the beginning and end of each non-closed line.
8331
-
8339
+
8332
8340
  Flat
8333
-
8341
+
8334
8342
  Square
8335
-
8343
+
8336
8344
  Round
8337
-
8345
+
8338
8346
  Triangle
8339
8347
  */
8340
8348
 
@@ -8349,29 +8357,29 @@ var LineCapStyle;
8349
8357
  })(LineCapStyle || (LineCapStyle = {}));
8350
8358
  /**
8351
8359
  * Type of the line ending.
8352
-
8360
+
8353
8361
  none
8354
-
8362
+
8355
8363
  arrow
8356
-
8364
+
8357
8365
  filledArrow
8358
-
8366
+
8359
8367
  square
8360
-
8368
+
8361
8369
  filledSquare
8362
-
8370
+
8363
8371
  circle
8364
-
8372
+
8365
8373
  filledCircle
8366
-
8374
+
8367
8375
  diamond
8368
-
8376
+
8369
8377
  filledDiamond
8370
-
8378
+
8371
8379
  roundSquare
8372
-
8380
+
8373
8381
  filledRoundSquare
8374
-
8382
+
8375
8383
  svg
8376
8384
  */
8377
8385
 
@@ -8394,11 +8402,11 @@ var LineEndingType;
8394
8402
  })(LineEndingType || (LineEndingType = {}));
8395
8403
  /**
8396
8404
  * Specifies the settings of lines join. This is applied to corners in lines and rectangles.
8397
-
8405
+
8398
8406
  Miter
8399
-
8407
+
8400
8408
  Bevel
8401
-
8409
+
8402
8410
  Round
8403
8411
  */
8404
8412
 
@@ -8412,11 +8420,11 @@ var LineJoinType;
8412
8420
  })(LineJoinType || (LineJoinType = {}));
8413
8421
  /**
8414
8422
  *
8415
-
8423
+
8416
8424
  All
8417
-
8425
+
8418
8426
  Directory
8419
-
8427
+
8420
8428
  File
8421
8429
  */
8422
8430
 
@@ -8430,15 +8438,15 @@ var ObjectTypeFilter;
8430
8438
  })(ObjectTypeFilter || (ObjectTypeFilter = {}));
8431
8439
  /**
8432
8440
  *
8433
-
8441
+
8434
8442
  Unknown
8435
-
8443
+
8436
8444
  union
8437
-
8445
+
8438
8446
  intersection
8439
-
8447
+
8440
8448
  subtraction
8441
-
8449
+
8442
8450
  symDifference
8443
8451
  */
8444
8452
 
@@ -8454,11 +8462,11 @@ var Operation;
8454
8462
  })(Operation || (Operation = {}));
8455
8463
  /**
8456
8464
  *
8457
-
8465
+
8458
8466
  My
8459
-
8467
+
8460
8468
  All
8461
-
8469
+
8462
8470
  Other
8463
8471
  */
8464
8472
 
@@ -8472,9 +8480,9 @@ var OwnerFilter;
8472
8480
  })(OwnerFilter || (OwnerFilter = {}));
8473
8481
  /**
8474
8482
  * Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
8475
-
8483
+
8476
8484
  xyz
8477
-
8485
+
8478
8486
  tms
8479
8487
  */
8480
8488
 
@@ -8487,19 +8495,19 @@ var PbfSchema;
8487
8495
  })(PbfSchema || (PbfSchema = {}));
8488
8496
  /**
8489
8497
  *
8490
-
8498
+
8491
8499
  none
8492
-
8500
+
8493
8501
  configure
8494
-
8502
+
8495
8503
  write
8496
-
8504
+
8497
8505
  read
8498
-
8506
+
8499
8507
  read,configure
8500
-
8508
+
8501
8509
  read,write
8502
-
8510
+
8503
8511
  read,write,configure
8504
8512
  */
8505
8513
 
@@ -8517,19 +8525,19 @@ var Permissions;
8517
8525
  })(Permissions || (Permissions = {}));
8518
8526
  /**
8519
8527
  * Type of the authorization policy.
8520
-
8528
+
8521
8529
  Unknown
8522
-
8530
+
8523
8531
  CreateTable
8524
-
8532
+
8525
8533
  CreateLayer
8526
-
8534
+
8527
8535
  CreateProject
8528
-
8536
+
8529
8537
  MaxFeaturesInOneTable
8530
-
8538
+
8531
8539
  MaxObjectsToExport
8532
-
8540
+
8533
8541
  MaxUploadContentSize
8534
8542
  */
8535
8543
 
@@ -8547,11 +8555,11 @@ var PolicyType;
8547
8555
  })(PolicyType || (PolicyType = {}));
8548
8556
  /**
8549
8557
  * Stream quality.
8550
-
8558
+
8551
8559
  Low
8552
-
8560
+
8553
8561
  Medium
8554
-
8562
+
8555
8563
  High
8556
8564
  */
8557
8565
 
@@ -8565,17 +8573,17 @@ var Quality;
8565
8573
  })(Quality || (Quality = {}));
8566
8574
  /**
8567
8575
  *
8568
-
8576
+
8569
8577
  OneToMany
8570
-
8578
+
8571
8579
  OneToOne
8572
-
8580
+
8573
8581
  Intersect
8574
-
8582
+
8575
8583
  RightJoin
8576
-
8584
+
8577
8585
  FullJoin
8578
-
8586
+
8579
8587
  CrossJoin
8580
8588
  */
8581
8589
 
@@ -8592,19 +8600,19 @@ var ReferenceJoinType;
8592
8600
  })(ReferenceJoinType || (ReferenceJoinType = {}));
8593
8601
  /**
8594
8602
  *
8595
-
8603
+
8596
8604
  Unknown
8597
-
8605
+
8598
8606
  table
8599
-
8607
+
8600
8608
  layer
8601
-
8609
+
8602
8610
  project
8603
-
8611
+
8604
8612
  file
8605
-
8613
+
8606
8614
  feature
8607
-
8615
+
8608
8616
  tag
8609
8617
  */
8610
8618
 
@@ -8630,21 +8638,21 @@ var ResourceTypeLink;
8630
8638
  })(ResourceTypeLink || (ResourceTypeLink = {}));
8631
8639
  /**
8632
8640
  * Status of the server task.
8633
-
8641
+
8634
8642
  None
8635
-
8643
+
8636
8644
  Scheduled
8637
-
8645
+
8638
8646
  Planning
8639
-
8647
+
8640
8648
  Executing
8641
-
8649
+
8642
8650
  Completed
8643
-
8651
+
8644
8652
  Failed
8645
-
8653
+
8646
8654
  Canceled
8647
-
8655
+
8648
8656
  Timeout
8649
8657
  */
8650
8658
 
@@ -8663,11 +8671,11 @@ var ServerTaskStatus;
8663
8671
  })(ServerTaskStatus || (ServerTaskStatus = {}));
8664
8672
  /**
8665
8673
  *
8666
-
8674
+
8667
8675
  Basic
8668
-
8676
+
8669
8677
  PreserveTopology
8670
-
8678
+
8671
8679
  VW
8672
8680
  */
8673
8681
 
@@ -8681,13 +8689,13 @@ var SimplifyType;
8681
8689
  })(SimplifyType || (SimplifyType = {}));
8682
8690
  /**
8683
8691
  *
8684
-
8692
+
8685
8693
  None
8686
-
8694
+
8687
8695
  Image
8688
-
8696
+
8689
8697
  PkkCode
8690
-
8698
+
8691
8699
  Attachments
8692
8700
  */
8693
8701
 
@@ -8702,9 +8710,9 @@ var StringSubType;
8702
8710
  })(StringSubType || (StringSubType = {}));
8703
8711
  /**
8704
8712
  * Task owner group.
8705
-
8713
+
8706
8714
  my
8707
-
8715
+
8708
8716
  all
8709
8717
  */
8710
8718
 
@@ -8717,13 +8725,13 @@ var TaskGroup;
8717
8725
  })(TaskGroup || (TaskGroup = {}));
8718
8726
  /**
8719
8727
  * Sets the horizontal alignment of text.
8720
-
8728
+
8721
8729
  right
8722
-
8730
+
8723
8731
  left
8724
-
8732
+
8725
8733
  center
8726
-
8734
+
8727
8735
  justified
8728
8736
  */
8729
8737
 
@@ -8738,11 +8746,11 @@ var TextAlignment;
8738
8746
  })(TextAlignment || (TextAlignment = {}));
8739
8747
  /**
8740
8748
  * Sets the vertical alignment of text.
8741
-
8749
+
8742
8750
  top
8743
-
8751
+
8744
8752
  bottom
8745
-
8753
+
8746
8754
  middle
8747
8755
  */
8748
8756