@evergis/api 3.0.209 → 3.0.212

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
  const API_USER_INFO_KEY = '@evergis/user-info';
@@ -3387,6 +3395,22 @@ let LayersService = /*#__PURE__*/function (_Service) {
3387
3395
  function getBulkFeatures(data) {
3388
3396
  return this.http.post("/bulk/layers/features/query", data).json();
3389
3397
  }
3398
+ /**
3399
+ * No description
3400
+ *
3401
+ * @tags Layers
3402
+ * @name GetBulkExtents
3403
+ * @operationId LayersController_GetBulkExtents
3404
+ * @summary Returns list of the layer extents with overall extent.
3405
+ * @request POST:/bulk/layers/extent
3406
+ * @response `200` OK
3407
+ */
3408
+
3409
+ }, {
3410
+ key: "getBulkExtents",
3411
+ value: function getBulkExtents(query, data) {
3412
+ return this.http.post("/bulk/layers/extent", data, query).json();
3413
+ }
3390
3414
  /**
3391
3415
  * No description
3392
3416
  *
@@ -5205,8 +5229,8 @@ let Notification = /*#__PURE__*/function (_NotificationService) {
5205
5229
  || event.code === 4002
5206
5230
  /* InvalidSession */
5207
5231
  ) {
5208
- _this.connectStatus = ConnectionStatus.SessionClosed;
5209
- } else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
5232
+ _this.connectStatus = ConnectionStatus.SessionClosed;
5233
+ } else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
5210
5234
  _this.connectStatus = ConnectionStatus.Break;
5211
5235
  _this.reconnectTries++;
5212
5236
 
@@ -5487,6 +5511,7 @@ let Print = /*#__PURE__*/function (_PrintService) {
5487
5511
  return _createClass(Print);
5488
5512
  }(PrintService);
5489
5513
 
5514
+ const _excluded$6 = ["name"];
5490
5515
  /**
5491
5516
  * @title Spatial Processing Core API
5492
5517
  * @version 1.5.1.0
@@ -5632,6 +5657,27 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
5632
5657
  value: function getProjectsInfo(query) {
5633
5658
  return this.http.get("/projects/batchInfo", query).json();
5634
5659
  }
5660
+ /**
5661
+ * No description
5662
+ *
5663
+ * @tags Projects
5664
+ * @name GetProjectEnvelope
5665
+ * @operationId ProjectsController_GetProjectEnvelope
5666
+ * @summary Get project extent.
5667
+ * @request GET:/projects/{name}/extent
5668
+ * @response `200` OK
5669
+ */
5670
+
5671
+ }, {
5672
+ key: "getProjectEnvelope",
5673
+ value: function getProjectEnvelope(_ref) {
5674
+ let {
5675
+ name
5676
+ } = _ref,
5677
+ query = _objectWithoutPropertiesLoose(_ref, _excluded$6);
5678
+
5679
+ return this.http.get("/projects/" + name + "/extent", query).json();
5680
+ }
5635
5681
  /**
5636
5682
  * No description
5637
5683
  *
@@ -6040,12 +6086,12 @@ let Resources = /*#__PURE__*/function () {
6040
6086
  }, {
6041
6087
  key: "getDependentNames",
6042
6088
  value: function getDependentNames(deps, depType) {
6043
- return deps.filter((_ref) => {
6089
+ return deps.filter(_ref => {
6044
6090
  let {
6045
6091
  type
6046
6092
  } = _ref;
6047
6093
  return type === depType;
6048
- }).map((_ref2) => {
6094
+ }).map(_ref2 => {
6049
6095
  let {
6050
6096
  name
6051
6097
  } = _ref2;
@@ -6501,7 +6547,7 @@ let Scheduler = /*#__PURE__*/function (_SchedulerService) {
6501
6547
  const taskProgress = await this.getTaskProgress(id);
6502
6548
  this.resolveTaskStatus(taskProgress, resolve, reject);
6503
6549
 
6504
- const taskResultCallback = async (_ref) => {
6550
+ const taskResultCallback = async _ref => {
6505
6551
  let {
6506
6552
  data
6507
6553
  } = _ref;
@@ -6982,7 +7028,7 @@ let Styles = /*#__PURE__*/function (_StyleService) {
6982
7028
  return _createClass(Styles);
6983
7029
  }(StyleService);
6984
7030
 
6985
- const _excluded$6 = ["name"],
7031
+ const _excluded$7 = ["name"],
6986
7032
  _excluded2$4 = ["name"],
6987
7033
  _excluded3$3 = ["name"],
6988
7034
  _excluded4$2 = ["name"];
@@ -7164,7 +7210,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
7164
7210
  let {
7165
7211
  name
7166
7212
  } = _ref,
7167
- query = _objectWithoutPropertiesLoose(_ref, _excluded$6);
7213
+ query = _objectWithoutPropertiesLoose(_ref, _excluded$7);
7168
7214
 
7169
7215
  return this.http.get("/tables/" + name + "/data", query).json();
7170
7216
  }
@@ -7564,7 +7610,7 @@ let Tools = /*#__PURE__*/function (_ToolsService) {
7564
7610
  return _createClass(Tools);
7565
7611
  }(ToolsService);
7566
7612
 
7567
- const _excluded$7 = ["name", "z", "x", "y"];
7613
+ const _excluded$8 = ["name", "z", "x", "y"];
7568
7614
  /**
7569
7615
  * @title Spatial Processing Core API
7570
7616
  * @version 1.5.1.0
@@ -7602,7 +7648,7 @@ let VectorTileService = /*#__PURE__*/function (_Service) {
7602
7648
  x,
7603
7649
  y
7604
7650
  } = _ref,
7605
- query = _objectWithoutPropertiesLoose(_ref, _excluded$7);
7651
+ query = _objectWithoutPropertiesLoose(_ref, _excluded$8);
7606
7652
 
7607
7653
  return this.http.get("/vt/" + name + "/" + z + "/" + x + "/" + y + ".pbf", query).then(() => {});
7608
7654
  }
@@ -7650,6 +7696,7 @@ var UrlPath;
7650
7696
  const apiEventsByResponseStatus = {
7651
7697
  401: ApiEvent.Unauthorized
7652
7698
  };
7699
+ const SHARED_PORT = "8082";
7653
7700
  const URL_PATHS = /*#__PURE__*/Object.values(UrlPath);
7654
7701
  const DEFAULT_URL_PATH = URL_PATHS[0];
7655
7702
  let Api = /*#__PURE__*/function (_EventEmitter) {
@@ -7860,7 +7907,7 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
7860
7907
  }, {
7861
7908
  key: "isPresentation",
7862
7909
  get: function get() {
7863
- return this.urlPath === UrlPath.Presentation;
7910
+ return this.urlPath === UrlPath.Presentation || window.location.port === SHARED_PORT;
7864
7911
  }
7865
7912
  }]);
7866
7913
 
@@ -7923,7 +7970,7 @@ let EvergisTileLayer = /*#__PURE__*/function (_TileLayer) {
7923
7970
  return EvergisTileLayer;
7924
7971
  }(TileLayer);
7925
7972
 
7926
- const _excluded$8 = ["name", "style", "condition", "dataFilterId", "crs"];
7973
+ const _excluded$9 = ["name", "style", "condition", "dataFilterId", "crs"];
7927
7974
  let EvergisDynamicLayer = /*#__PURE__*/function (_DynamicLayer) {
7928
7975
  _inherits(EvergisDynamicLayer, _DynamicLayer);
7929
7976
 
@@ -7939,7 +7986,7 @@ let EvergisDynamicLayer = /*#__PURE__*/function (_DynamicLayer) {
7939
7986
  dataFilterId,
7940
7987
  crs = webMercator
7941
7988
  } = _ref,
7942
- layerProps = _objectWithoutPropertiesLoose(_ref, _excluded$8);
7989
+ layerProps = _objectWithoutPropertiesLoose(_ref, _excluded$9);
7943
7990
 
7944
7991
  _classCallCheck(this, EvergisDynamicLayer);
7945
7992
 
@@ -8231,47 +8278,47 @@ function isFeatureLayer(layer) {
8231
8278
 
8232
8279
  /**
8233
8280
  *
8234
-
8281
+
8235
8282
  None
8236
-
8283
+
8237
8284
  Array
8238
-
8285
+
8239
8286
  Min
8240
-
8287
+
8241
8288
  Max
8242
-
8289
+
8243
8290
  Avg
8244
-
8291
+
8245
8292
  Sum
8246
-
8293
+
8247
8294
  Extent
8248
-
8295
+
8249
8296
  H3
8250
-
8297
+
8251
8298
  Count
8252
-
8299
+
8253
8300
  TotalCount
8254
-
8301
+
8255
8302
  DistinctCount
8256
-
8303
+
8257
8304
  First
8258
-
8305
+
8259
8306
  Last
8260
-
8307
+
8261
8308
  Median
8262
-
8309
+
8263
8310
  Mod
8264
-
8311
+
8265
8312
  StdDeviation
8266
-
8313
+
8267
8314
  SumOfProduct
8268
-
8315
+
8269
8316
  OnlyValue
8270
-
8317
+
8271
8318
  WeightedAvg
8272
-
8319
+
8273
8320
  DensityIndicators
8274
-
8321
+
8275
8322
  DividedSum
8276
8323
  */
8277
8324
  var AggregationFunction;
@@ -8301,13 +8348,13 @@ var AggregationFunction;
8301
8348
  })(AggregationFunction || (AggregationFunction = {}));
8302
8349
  /**
8303
8350
  *
8304
-
8351
+
8305
8352
  Unknown
8306
-
8353
+
8307
8354
  Icon
8308
-
8355
+
8309
8356
  PNG
8310
-
8357
+
8311
8358
  SVG
8312
8359
  */
8313
8360
 
@@ -8322,13 +8369,13 @@ var AttributeIconType;
8322
8369
  })(AttributeIconType || (AttributeIconType = {}));
8323
8370
  /**
8324
8371
  *
8325
-
8372
+
8326
8373
  None
8327
-
8374
+
8328
8375
  SelectFromHandBook
8329
-
8376
+
8330
8377
  SelectFromRange
8331
-
8378
+
8332
8379
  ViewHandBook
8333
8380
  */
8334
8381
 
@@ -8343,31 +8390,31 @@ var AttributeSelectorType;
8343
8390
  })(AttributeSelectorType || (AttributeSelectorType = {}));
8344
8391
  /**
8345
8392
  *
8346
-
8393
+
8347
8394
  Unknown
8348
-
8395
+
8349
8396
  String
8350
-
8397
+
8351
8398
  Int32
8352
-
8399
+
8353
8400
  Int64
8354
-
8401
+
8355
8402
  Double
8356
-
8403
+
8357
8404
  DateTime
8358
-
8405
+
8359
8406
  Boolean
8360
-
8407
+
8361
8408
  Point
8362
-
8409
+
8363
8410
  Polyline
8364
-
8411
+
8365
8412
  MultiPolygon
8366
-
8413
+
8367
8414
  Multipoint
8368
-
8415
+
8369
8416
  H3Index
8370
-
8417
+
8371
8418
  Json
8372
8419
  */
8373
8420
 
@@ -8393,9 +8440,9 @@ var AttributeType;
8393
8440
  * An authorization grant is a credential representing the resource
8394
8441
  owner's authorization (to access its protected resources) used by the
8395
8442
  client to obtain an access token.
8396
-
8443
+
8397
8444
  authorization_code
8398
-
8445
+
8399
8446
  refresh_token
8400
8447
  */
8401
8448
 
@@ -8408,19 +8455,19 @@ var AuthorizationGrant;
8408
8455
  })(AuthorizationGrant || (AuthorizationGrant = {}));
8409
8456
  /**
8410
8457
  *
8411
-
8458
+
8412
8459
  None
8413
-
8460
+
8414
8461
  Map
8415
-
8462
+
8416
8463
  Layer
8417
-
8464
+
8418
8465
  Table
8419
-
8466
+
8420
8467
  File
8421
-
8468
+
8422
8469
  TaskPrototype
8423
-
8470
+
8424
8471
  DataSource
8425
8472
  */
8426
8473
 
@@ -8438,15 +8485,15 @@ var CatalogResourceType;
8438
8485
  })(CatalogResourceType || (CatalogResourceType = {}));
8439
8486
  /**
8440
8487
  * Describes classification methods.
8441
-
8488
+
8442
8489
  none
8443
-
8490
+
8444
8491
  naturalBreaks
8445
-
8492
+
8446
8493
  equalInterval
8447
-
8494
+
8448
8495
  quantile
8449
-
8496
+
8450
8497
  unique
8451
8498
  */
8452
8499
 
@@ -8462,11 +8509,11 @@ var ClassificationType;
8462
8509
  })(ClassificationType || (ClassificationType = {}));
8463
8510
  /**
8464
8511
  *
8465
-
8512
+
8466
8513
  decimal
8467
-
8514
+
8468
8515
  dateTime
8469
-
8516
+
8470
8517
  text
8471
8518
  */
8472
8519
 
@@ -8480,55 +8527,55 @@ var ClassifyAttributeType;
8480
8527
  })(ClassifyAttributeType || (ClassifyAttributeType = {}));
8481
8528
  /**
8482
8529
  *
8483
-
8530
+
8484
8531
  Unknown
8485
-
8532
+
8486
8533
  SerializeError
8487
-
8534
+
8488
8535
  InvalidDataService
8489
-
8536
+
8490
8537
  InvalidConfiguration
8491
-
8538
+
8492
8539
  InvalidDataServiceName
8493
-
8540
+
8494
8541
  InvalidTableName
8495
-
8542
+
8496
8543
  InvalidLayerName
8497
-
8544
+
8498
8545
  ResourceNotFound
8499
-
8546
+
8500
8547
  InvalidCondition
8501
-
8548
+
8502
8549
  InvalidAttributes
8503
-
8550
+
8504
8551
  InvalidIdAttribute
8505
-
8552
+
8506
8553
  InvalidGeometryAttribute
8507
-
8554
+
8508
8555
  InvalidGeometryAttributeType
8509
-
8556
+
8510
8557
  InvalidColumnName
8511
-
8558
+
8512
8559
  InvalidIdColumnSettings
8513
-
8560
+
8514
8561
  ColumnNotExistsInTable
8515
-
8562
+
8516
8563
  InvalidStyle
8517
-
8564
+
8518
8565
  InvalidLayerType
8519
-
8566
+
8520
8567
  ColumnLoadingError
8521
-
8568
+
8522
8569
  InvalidAttributeFormat
8523
-
8570
+
8524
8571
  DataSourceNotFound
8525
-
8572
+
8526
8573
  DuplicateColumns
8527
-
8574
+
8528
8575
  DuplicateAttributes
8529
-
8576
+
8530
8577
  TableWithoutColumns
8531
-
8578
+
8532
8579
  InvalidTableReferenceConfiguration
8533
8580
  */
8534
8581
 
@@ -8564,13 +8611,13 @@ var ConfigurationErrorEnum;
8564
8611
  })(ConfigurationErrorEnum || (ConfigurationErrorEnum = {}));
8565
8612
  /**
8566
8613
  *
8567
-
8614
+
8568
8615
  Postgres
8569
-
8616
+
8570
8617
  Trino
8571
-
8618
+
8572
8619
  S3
8573
-
8620
+
8574
8621
  GisServer
8575
8622
  */
8576
8623
 
@@ -8585,15 +8632,15 @@ var DataSourceType;
8585
8632
  })(DataSourceType || (DataSourceType = {}));
8586
8633
  /**
8587
8634
  * Type of the error.
8588
-
8635
+
8589
8636
  ResourceLimitExceeded
8590
-
8637
+
8591
8638
  ResourceNotFound
8592
-
8639
+
8593
8640
  InternalError
8594
-
8641
+
8595
8642
  BadRequest
8596
-
8643
+
8597
8644
  DuplicateContent
8598
8645
  */
8599
8646
 
@@ -8644,9 +8691,9 @@ var ErrorType;
8644
8691
  })(ErrorType || (ErrorType = {}));
8645
8692
  /**
8646
8693
  * Type of the feature.
8647
-
8694
+
8648
8695
  Unknown
8649
-
8696
+
8650
8697
  GeometricFeature
8651
8698
  */
8652
8699
 
@@ -8659,11 +8706,11 @@ var FeatureType;
8659
8706
  })(FeatureType || (FeatureType = {}));
8660
8707
  /**
8661
8708
  * Sets whether font should be styled.
8662
-
8709
+
8663
8710
  normal
8664
-
8711
+
8665
8712
  oblique
8666
-
8713
+
8667
8714
  italic
8668
8715
  */
8669
8716
 
@@ -8677,27 +8724,27 @@ var FontStyle;
8677
8724
  })(FontStyle || (FontStyle = {}));
8678
8725
  /**
8679
8726
  * Specifies the weight (or boldness) of the font.
8680
-
8727
+
8681
8728
  Thin
8682
-
8729
+
8683
8730
  ExtraLight
8684
-
8731
+
8685
8732
  Light
8686
-
8733
+
8687
8734
  SemiLight
8688
-
8735
+
8689
8736
  Normal
8690
-
8737
+
8691
8738
  Medium
8692
-
8739
+
8693
8740
  DemiBold
8694
-
8741
+
8695
8742
  Bold
8696
-
8743
+
8697
8744
  ExtraBold
8698
-
8745
+
8699
8746
  Black
8700
-
8747
+
8701
8748
  ExtraBlack
8702
8749
  */
8703
8750
 
@@ -8719,17 +8766,17 @@ var FontWeight;
8719
8766
  })(FontWeight || (FontWeight = {}));
8720
8767
  /**
8721
8768
  *
8722
-
8769
+
8723
8770
  unknown
8724
-
8771
+
8725
8772
  point
8726
-
8773
+
8727
8774
  polyline
8728
-
8775
+
8729
8776
  multipolygon
8730
-
8777
+
8731
8778
  envelope
8732
-
8779
+
8733
8780
  multipoint
8734
8781
  */
8735
8782
 
@@ -8746,13 +8793,13 @@ var GeometryType;
8746
8793
  })(GeometryType || (GeometryType = {}));
8747
8794
  /**
8748
8795
  * Resource group.
8749
-
8796
+
8750
8797
  my
8751
-
8798
+
8752
8799
  role
8753
-
8800
+
8754
8801
  public
8755
-
8802
+
8756
8803
  all
8757
8804
  */
8758
8805
 
@@ -8767,13 +8814,13 @@ var Group;
8767
8814
  })(Group || (Group = {}));
8768
8815
  /**
8769
8816
  * Specifies the settings of line cap. This is applied to the beginning and end of each non-closed line.
8770
-
8817
+
8771
8818
  Flat
8772
-
8819
+
8773
8820
  Square
8774
-
8821
+
8775
8822
  Round
8776
-
8823
+
8777
8824
  Triangle
8778
8825
  */
8779
8826
 
@@ -8788,29 +8835,29 @@ var LineCapStyle;
8788
8835
  })(LineCapStyle || (LineCapStyle = {}));
8789
8836
  /**
8790
8837
  * Type of the line ending.
8791
-
8838
+
8792
8839
  none
8793
-
8840
+
8794
8841
  arrow
8795
-
8842
+
8796
8843
  filledArrow
8797
-
8844
+
8798
8845
  square
8799
-
8846
+
8800
8847
  filledSquare
8801
-
8848
+
8802
8849
  circle
8803
-
8850
+
8804
8851
  filledCircle
8805
-
8852
+
8806
8853
  diamond
8807
-
8854
+
8808
8855
  filledDiamond
8809
-
8856
+
8810
8857
  roundSquare
8811
-
8858
+
8812
8859
  filledRoundSquare
8813
-
8860
+
8814
8861
  svg
8815
8862
  */
8816
8863
 
@@ -8833,11 +8880,11 @@ var LineEndingType;
8833
8880
  })(LineEndingType || (LineEndingType = {}));
8834
8881
  /**
8835
8882
  * Specifies the settings of lines join. This is applied to corners in lines and rectangles.
8836
-
8883
+
8837
8884
  Miter
8838
-
8885
+
8839
8886
  Bevel
8840
-
8887
+
8841
8888
  Round
8842
8889
  */
8843
8890
 
@@ -8851,15 +8898,15 @@ var LineJoinType;
8851
8898
  })(LineJoinType || (LineJoinType = {}));
8852
8899
  /**
8853
8900
  *
8854
-
8901
+
8855
8902
  Unknown
8856
-
8903
+
8857
8904
  union
8858
-
8905
+
8859
8906
  intersection
8860
-
8907
+
8861
8908
  subtraction
8862
-
8909
+
8863
8910
  symDifference
8864
8911
  */
8865
8912
 
@@ -8875,11 +8922,11 @@ var Operation;
8875
8922
  })(Operation || (Operation = {}));
8876
8923
  /**
8877
8924
  * Filter exists resources by owner.
8878
-
8925
+
8879
8926
  My
8880
-
8927
+
8881
8928
  Shared
8882
-
8929
+
8883
8930
  Public
8884
8931
  */
8885
8932
 
@@ -8893,9 +8940,9 @@ var OwnerFilter;
8893
8940
  })(OwnerFilter || (OwnerFilter = {}));
8894
8941
  /**
8895
8942
  * Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
8896
-
8943
+
8897
8944
  xyz
8898
-
8945
+
8899
8946
  tms
8900
8947
  */
8901
8948
 
@@ -8908,19 +8955,19 @@ var PbfSchema;
8908
8955
  })(PbfSchema || (PbfSchema = {}));
8909
8956
  /**
8910
8957
  *
8911
-
8958
+
8912
8959
  none
8913
-
8960
+
8914
8961
  configure
8915
-
8962
+
8916
8963
  write
8917
-
8964
+
8918
8965
  read
8919
-
8966
+
8920
8967
  read,configure
8921
-
8968
+
8922
8969
  read,write
8923
-
8970
+
8924
8971
  read,write,configure
8925
8972
  */
8926
8973
 
@@ -8938,19 +8985,19 @@ var Permissions;
8938
8985
  })(Permissions || (Permissions = {}));
8939
8986
  /**
8940
8987
  * Type of the authorization policy.
8941
-
8988
+
8942
8989
  Unknown
8943
-
8990
+
8944
8991
  CreateTable
8945
-
8992
+
8946
8993
  CreateLayer
8947
-
8994
+
8948
8995
  CreateProject
8949
-
8996
+
8950
8997
  MaxFeaturesInOneTable
8951
-
8998
+
8952
8999
  MaxObjectsToExport
8953
-
9000
+
8954
9001
  MaxUploadContentSize
8955
9002
  */
8956
9003
 
@@ -8968,11 +9015,11 @@ var PolicyType;
8968
9015
  })(PolicyType || (PolicyType = {}));
8969
9016
  /**
8970
9017
  * Stream quality.
8971
-
9018
+
8972
9019
  Low
8973
-
9020
+
8974
9021
  Medium
8975
-
9022
+
8976
9023
  High
8977
9024
  */
8978
9025
 
@@ -8986,15 +9033,15 @@ var Quality;
8986
9033
  })(Quality || (Quality = {}));
8987
9034
  /**
8988
9035
  * Resources types filter.
8989
-
9036
+
8990
9037
  RemoteTileService
8991
-
9038
+
8992
9039
  ProxyService
8993
-
9040
+
8994
9041
  PostgresLayerService
8995
-
9042
+
8996
9043
  QueryLayerService
8997
-
9044
+
8998
9045
  TileCatalogTable
8999
9046
  */
9000
9047
 
@@ -9010,19 +9057,19 @@ var ResourceSubTypeFilter;
9010
9057
  })(ResourceSubTypeFilter || (ResourceSubTypeFilter = {}));
9011
9058
  /**
9012
9059
  *
9013
-
9060
+
9014
9061
  Unknown
9015
-
9062
+
9016
9063
  table
9017
-
9064
+
9018
9065
  layer
9019
-
9066
+
9020
9067
  project
9021
-
9068
+
9022
9069
  file
9023
-
9070
+
9024
9071
  feature
9025
-
9072
+
9026
9073
  tag
9027
9074
  */
9028
9075
 
@@ -9040,21 +9087,21 @@ var ResourceType;
9040
9087
  })(ResourceType || (ResourceType = {}));
9041
9088
  /**
9042
9089
  * Resources types filter.
9043
-
9090
+
9044
9091
  Map
9045
-
9092
+
9046
9093
  Layer
9047
-
9094
+
9048
9095
  Table
9049
-
9096
+
9050
9097
  RasterCatalog
9051
-
9098
+
9052
9099
  ProxyService
9053
-
9100
+
9054
9101
  RemoteTileService
9055
-
9102
+
9056
9103
  File
9057
-
9104
+
9058
9105
  DataSource
9059
9106
  */
9060
9107
 
@@ -9081,9 +9128,9 @@ var ResourceTypeLink;
9081
9128
  })(ResourceTypeLink || (ResourceTypeLink = {}));
9082
9129
  /**
9083
9130
  * Response type.
9084
-
9131
+
9085
9132
  code
9086
-
9133
+
9087
9134
  token
9088
9135
  */
9089
9136
 
@@ -9096,21 +9143,21 @@ var ResponseType;
9096
9143
  })(ResponseType || (ResponseType = {}));
9097
9144
  /**
9098
9145
  * Status of the server task.
9099
-
9146
+
9100
9147
  None
9101
-
9148
+
9102
9149
  Scheduled
9103
-
9150
+
9104
9151
  Planning
9105
-
9152
+
9106
9153
  Executing
9107
-
9154
+
9108
9155
  Completed
9109
-
9156
+
9110
9157
  Failed
9111
-
9158
+
9112
9159
  Canceled
9113
-
9160
+
9114
9161
  Timeout
9115
9162
  */
9116
9163
 
@@ -9129,11 +9176,11 @@ var ServerTaskStatus;
9129
9176
  })(ServerTaskStatus || (ServerTaskStatus = {}));
9130
9177
  /**
9131
9178
  *
9132
-
9179
+
9133
9180
  Basic
9134
-
9181
+
9135
9182
  PreserveTopology
9136
-
9183
+
9137
9184
  VW
9138
9185
  */
9139
9186
 
@@ -9147,13 +9194,13 @@ var SimplifyType;
9147
9194
  })(SimplifyType || (SimplifyType = {}));
9148
9195
  /**
9149
9196
  *
9150
-
9197
+
9151
9198
  None
9152
-
9199
+
9153
9200
  Image
9154
-
9201
+
9155
9202
  PkkCode
9156
-
9203
+
9157
9204
  Attachments
9158
9205
  */
9159
9206
 
@@ -9168,9 +9215,9 @@ var StringSubType;
9168
9215
  })(StringSubType || (StringSubType = {}));
9169
9216
  /**
9170
9217
  * Task owner group.
9171
-
9218
+
9172
9219
  my
9173
-
9220
+
9174
9221
  all
9175
9222
  */
9176
9223
 
@@ -9183,13 +9230,13 @@ var TaskGroup;
9183
9230
  })(TaskGroup || (TaskGroup = {}));
9184
9231
  /**
9185
9232
  * Sets the horizontal alignment of text.
9186
-
9233
+
9187
9234
  right
9188
-
9235
+
9189
9236
  left
9190
-
9237
+
9191
9238
  center
9192
-
9239
+
9193
9240
  justified
9194
9241
  */
9195
9242
 
@@ -9204,11 +9251,11 @@ var TextAlignment;
9204
9251
  })(TextAlignment || (TextAlignment = {}));
9205
9252
  /**
9206
9253
  * Sets the vertical alignment of text.
9207
-
9254
+
9208
9255
  top
9209
-
9256
+
9210
9257
  bottom
9211
-
9258
+
9212
9259
  middle
9213
9260
  */
9214
9261