@evergis/api 3.0.190 → 3.0.191

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