@evergis/api 3.0.206 → 3.0.207

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
  const API_USER_INFO_KEY = '@evergis/user-info';
@@ -317,6 +309,108 @@ let Service = /*#__PURE__*/_createClass(function Service(http) {
317
309
  this.http = http;
318
310
  });
319
311
 
312
+ /**
313
+ * @title Spatial Processing Core API
314
+ * @version 1.5.1.0
315
+ * @baseUrl /sp
316
+ */
317
+
318
+ let DataSourceService = /*#__PURE__*/function (_Service) {
319
+ _inherits(DataSourceService, _Service);
320
+
321
+ var _super = /*#__PURE__*/_createSuper(DataSourceService);
322
+
323
+ function DataSourceService() {
324
+ _classCallCheck(this, DataSourceService);
325
+
326
+ return _super.apply(this, arguments);
327
+ }
328
+
329
+ _createClass(DataSourceService, [{
330
+ key: "getDataSourcesList",
331
+ value:
332
+ /**
333
+ * No description
334
+ *
335
+ * @tags DataSource
336
+ * @name GetDataSourcesList
337
+ * @operationId DataSourceController_GetDataSourcesList
338
+ * @summary Returns list of the available data sources.
339
+ * @request GET:/ds
340
+ * @response `200` OK
341
+ */
342
+ function getDataSourcesList(query) {
343
+ return this.http.get("/ds", query).json();
344
+ }
345
+ /**
346
+ * No description
347
+ *
348
+ * @tags DataSource
349
+ * @name CreateDataSource
350
+ * @operationId DataSourceController_CreateDataSource
351
+ * @summary Create data source.
352
+ * @request POST:/ds
353
+ * @response `200` OK
354
+ */
355
+
356
+ }, {
357
+ key: "createDataSource",
358
+ value: function createDataSource(data) {
359
+ return this.http.post("/ds", data).then(() => {});
360
+ }
361
+ /**
362
+ * No description
363
+ *
364
+ * @tags DataSource
365
+ * @name UpdateDataSource
366
+ * @operationId DataSourceController_UpdateDataSource
367
+ * @summary Update data source.
368
+ * @request PATCH:/ds
369
+ * @response `200` OK
370
+ */
371
+
372
+ }, {
373
+ key: "updateDataSource",
374
+ value: function updateDataSource(data) {
375
+ return this.http.patch("/ds", data).then(() => {});
376
+ }
377
+ /**
378
+ * No description
379
+ *
380
+ * @tags DataSource
381
+ * @name GetDataSource
382
+ * @operationId DataSourceController_GetDataSource
383
+ * @summary Get data source by name.
384
+ * @request GET:/ds/{name}
385
+ * @response `200` OK
386
+ */
387
+
388
+ }, {
389
+ key: "getDataSource",
390
+ value: function getDataSource(name) {
391
+ return this.http.get("/ds/" + name).json();
392
+ }
393
+ /**
394
+ * No description
395
+ *
396
+ * @tags DataSource
397
+ * @name RemoveDataSource
398
+ * @operationId DataSourceController_RemoveDataSource
399
+ * @summary Remove data source by name.
400
+ * @request DELETE:/ds/{name}
401
+ * @response `200` OK
402
+ */
403
+
404
+ }, {
405
+ key: "removeDataSource",
406
+ value: function removeDataSource(name) {
407
+ return this.http.delete("/ds/" + name, null).then(() => {});
408
+ }
409
+ }]);
410
+
411
+ return DataSourceService;
412
+ }(Service);
413
+
320
414
  /**
321
415
  * @title Spatial Processing Core API
322
416
  * @version 1.5.1.0
@@ -5079,8 +5173,8 @@ let Notification = /*#__PURE__*/function (_NotificationService) {
5079
5173
  || event.code === 4002
5080
5174
  /* InvalidSession */
5081
5175
  ) {
5082
- _this.connectStatus = ConnectionStatus.SessionClosed;
5083
- } else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
5176
+ _this.connectStatus = ConnectionStatus.SessionClosed;
5177
+ } else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
5084
5178
  _this.connectStatus = ConnectionStatus.Break;
5085
5179
  _this.reconnectTries++;
5086
5180
 
@@ -5914,12 +6008,12 @@ let Resources = /*#__PURE__*/function () {
5914
6008
  }, {
5915
6009
  key: "getDependentNames",
5916
6010
  value: function getDependentNames(deps, depType) {
5917
- return deps.filter(_ref => {
6011
+ return deps.filter((_ref) => {
5918
6012
  let {
5919
6013
  type
5920
6014
  } = _ref;
5921
6015
  return type === depType;
5922
- }).map(_ref2 => {
6016
+ }).map((_ref2) => {
5923
6017
  let {
5924
6018
  name
5925
6019
  } = _ref2;
@@ -6375,7 +6469,7 @@ let Scheduler = /*#__PURE__*/function (_SchedulerService) {
6375
6469
  const taskProgress = await this.getTaskProgress(id);
6376
6470
  this.resolveTaskStatus(taskProgress, resolve, reject);
6377
6471
 
6378
- const taskResultCallback = async _ref => {
6472
+ const taskResultCallback = async (_ref) => {
6379
6473
  let {
6380
6474
  data
6381
6475
  } = _ref;
@@ -7613,6 +7707,7 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
7613
7707
  _this.eql = new Eql(_this.http);
7614
7708
  _this.catalog = new CatalogService(_this.http);
7615
7709
  _this.queryToken = new QueryTokenAccessService(_this.http);
7710
+ _this.dataSource = new DataSourceService(_this.http);
7616
7711
  _this.names = new Names({
7617
7712
  account: _this.account
7618
7713
  });
@@ -8104,47 +8199,47 @@ function isFeatureLayer(layer) {
8104
8199
 
8105
8200
  /**
8106
8201
  *
8107
-
8202
+
8108
8203
  None
8109
-
8204
+
8110
8205
  Array
8111
-
8206
+
8112
8207
  Min
8113
-
8208
+
8114
8209
  Max
8115
-
8210
+
8116
8211
  Avg
8117
-
8212
+
8118
8213
  Sum
8119
-
8214
+
8120
8215
  Extent
8121
-
8216
+
8122
8217
  H3
8123
-
8218
+
8124
8219
  Count
8125
-
8220
+
8126
8221
  TotalCount
8127
-
8222
+
8128
8223
  DistinctCount
8129
-
8224
+
8130
8225
  First
8131
-
8226
+
8132
8227
  Last
8133
-
8228
+
8134
8229
  Median
8135
-
8230
+
8136
8231
  Mod
8137
-
8232
+
8138
8233
  StdDeviation
8139
-
8234
+
8140
8235
  SumOfProduct
8141
-
8236
+
8142
8237
  OnlyValue
8143
-
8238
+
8144
8239
  WeightedAvg
8145
-
8240
+
8146
8241
  DensityIndicators
8147
-
8242
+
8148
8243
  DividedSum
8149
8244
  */
8150
8245
  var AggregationFunction;
@@ -8174,13 +8269,13 @@ var AggregationFunction;
8174
8269
  })(AggregationFunction || (AggregationFunction = {}));
8175
8270
  /**
8176
8271
  *
8177
-
8272
+
8178
8273
  Unknown
8179
-
8274
+
8180
8275
  Icon
8181
-
8276
+
8182
8277
  PNG
8183
-
8278
+
8184
8279
  SVG
8185
8280
  */
8186
8281
 
@@ -8195,13 +8290,13 @@ var AttributeIconType;
8195
8290
  })(AttributeIconType || (AttributeIconType = {}));
8196
8291
  /**
8197
8292
  *
8198
-
8293
+
8199
8294
  None
8200
-
8295
+
8201
8296
  SelectFromHandBook
8202
-
8297
+
8203
8298
  SelectFromRange
8204
-
8299
+
8205
8300
  ViewHandBook
8206
8301
  */
8207
8302
 
@@ -8216,31 +8311,31 @@ var AttributeSelectorType;
8216
8311
  })(AttributeSelectorType || (AttributeSelectorType = {}));
8217
8312
  /**
8218
8313
  *
8219
-
8314
+
8220
8315
  Unknown
8221
-
8316
+
8222
8317
  String
8223
-
8318
+
8224
8319
  Int32
8225
-
8320
+
8226
8321
  Int64
8227
-
8322
+
8228
8323
  Double
8229
-
8324
+
8230
8325
  DateTime
8231
-
8326
+
8232
8327
  Boolean
8233
-
8328
+
8234
8329
  Point
8235
-
8330
+
8236
8331
  Polyline
8237
-
8332
+
8238
8333
  MultiPolygon
8239
-
8334
+
8240
8335
  Multipoint
8241
-
8336
+
8242
8337
  H3Index
8243
-
8338
+
8244
8339
  Json
8245
8340
  */
8246
8341
 
@@ -8266,9 +8361,9 @@ var AttributeType;
8266
8361
  * An authorization grant is a credential representing the resource
8267
8362
  owner's authorization (to access its protected resources) used by the
8268
8363
  client to obtain an access token.
8269
-
8364
+
8270
8365
  authorization_code
8271
-
8366
+
8272
8367
  refresh_token
8273
8368
  */
8274
8369
 
@@ -8281,18 +8376,20 @@ var AuthorizationGrant;
8281
8376
  })(AuthorizationGrant || (AuthorizationGrant = {}));
8282
8377
  /**
8283
8378
  *
8284
-
8379
+
8285
8380
  None
8286
-
8381
+
8287
8382
  Map
8288
-
8383
+
8289
8384
  Layer
8290
-
8385
+
8291
8386
  Table
8292
-
8387
+
8293
8388
  File
8294
-
8389
+
8295
8390
  TaskPrototype
8391
+
8392
+ DataSource
8296
8393
  */
8297
8394
 
8298
8395
 
@@ -8305,18 +8402,19 @@ var CatalogResourceType;
8305
8402
  CatalogResourceType["Table"] = "Table";
8306
8403
  CatalogResourceType["File"] = "File";
8307
8404
  CatalogResourceType["TaskPrototype"] = "TaskPrototype";
8405
+ CatalogResourceType["DataSource"] = "DataSource";
8308
8406
  })(CatalogResourceType || (CatalogResourceType = {}));
8309
8407
  /**
8310
8408
  * Describes classification methods.
8311
-
8409
+
8312
8410
  none
8313
-
8411
+
8314
8412
  naturalBreaks
8315
-
8413
+
8316
8414
  equalInterval
8317
-
8415
+
8318
8416
  quantile
8319
-
8417
+
8320
8418
  unique
8321
8419
  */
8322
8420
 
@@ -8332,11 +8430,11 @@ var ClassificationType;
8332
8430
  })(ClassificationType || (ClassificationType = {}));
8333
8431
  /**
8334
8432
  *
8335
-
8433
+
8336
8434
  decimal
8337
-
8435
+
8338
8436
  dateTime
8339
-
8437
+
8340
8438
  text
8341
8439
  */
8342
8440
 
@@ -8350,55 +8448,55 @@ var ClassifyAttributeType;
8350
8448
  })(ClassifyAttributeType || (ClassifyAttributeType = {}));
8351
8449
  /**
8352
8450
  *
8353
-
8451
+
8354
8452
  Unknown
8355
-
8453
+
8356
8454
  SerializeError
8357
-
8455
+
8358
8456
  InvalidDataService
8359
-
8457
+
8360
8458
  InvalidConfiguration
8361
-
8459
+
8362
8460
  InvalidDataServiceName
8363
-
8461
+
8364
8462
  InvalidTableName
8365
-
8463
+
8366
8464
  InvalidLayerName
8367
-
8465
+
8368
8466
  ResourceNotFound
8369
-
8467
+
8370
8468
  InvalidCondition
8371
-
8469
+
8372
8470
  InvalidAttributes
8373
-
8471
+
8374
8472
  InvalidIdAttribute
8375
-
8473
+
8376
8474
  InvalidGeometryAttribute
8377
-
8475
+
8378
8476
  InvalidGeometryAttributeType
8379
-
8477
+
8380
8478
  InvalidColumnName
8381
-
8479
+
8382
8480
  InvalidIdColumnSettings
8383
-
8481
+
8384
8482
  ColumnNotExistsInTable
8385
-
8483
+
8386
8484
  InvalidStyle
8387
-
8485
+
8388
8486
  InvalidLayerType
8389
-
8487
+
8390
8488
  ColumnLoadingError
8391
-
8489
+
8392
8490
  InvalidAttributeFormat
8393
-
8491
+
8394
8492
  DataSourceNotFound
8395
-
8493
+
8396
8494
  DuplicateColumns
8397
-
8495
+
8398
8496
  DuplicateAttributes
8399
-
8497
+
8400
8498
  TableWithoutColumns
8401
-
8499
+
8402
8500
  InvalidTableReferenceConfiguration
8403
8501
  */
8404
8502
 
@@ -8434,11 +8532,13 @@ var ConfigurationErrorEnum;
8434
8532
  })(ConfigurationErrorEnum || (ConfigurationErrorEnum = {}));
8435
8533
  /**
8436
8534
  *
8437
-
8535
+
8438
8536
  Postgres
8439
-
8537
+
8538
+ Trino
8539
+
8440
8540
  S3
8441
-
8541
+
8442
8542
  GisServer
8443
8543
  */
8444
8544
 
@@ -8447,20 +8547,21 @@ var DataSourceType;
8447
8547
 
8448
8548
  (function (DataSourceType) {
8449
8549
  DataSourceType["Postgres"] = "Postgres";
8550
+ DataSourceType["Trino"] = "Trino";
8450
8551
  DataSourceType["S3"] = "S3";
8451
8552
  DataSourceType["GisServer"] = "GisServer";
8452
8553
  })(DataSourceType || (DataSourceType = {}));
8453
8554
  /**
8454
8555
  * Type of the error.
8455
-
8556
+
8456
8557
  ResourceLimitExceeded
8457
-
8558
+
8458
8559
  ResourceNotFound
8459
-
8560
+
8460
8561
  InternalError
8461
-
8562
+
8462
8563
  BadRequest
8463
-
8564
+
8464
8565
  DuplicateContent
8465
8566
  */
8466
8567
 
@@ -8511,9 +8612,9 @@ var ErrorType;
8511
8612
  })(ErrorType || (ErrorType = {}));
8512
8613
  /**
8513
8614
  * Type of the feature.
8514
-
8615
+
8515
8616
  Unknown
8516
-
8617
+
8517
8618
  GeometricFeature
8518
8619
  */
8519
8620
 
@@ -8526,11 +8627,11 @@ var FeatureType;
8526
8627
  })(FeatureType || (FeatureType = {}));
8527
8628
  /**
8528
8629
  * Sets whether font should be styled.
8529
-
8630
+
8530
8631
  normal
8531
-
8632
+
8532
8633
  oblique
8533
-
8634
+
8534
8635
  italic
8535
8636
  */
8536
8637
 
@@ -8544,27 +8645,27 @@ var FontStyle;
8544
8645
  })(FontStyle || (FontStyle = {}));
8545
8646
  /**
8546
8647
  * Specifies the weight (or boldness) of the font.
8547
-
8648
+
8548
8649
  Thin
8549
-
8650
+
8550
8651
  ExtraLight
8551
-
8652
+
8552
8653
  Light
8553
-
8654
+
8554
8655
  SemiLight
8555
-
8656
+
8556
8657
  Normal
8557
-
8658
+
8558
8659
  Medium
8559
-
8660
+
8560
8661
  DemiBold
8561
-
8662
+
8562
8663
  Bold
8563
-
8664
+
8564
8665
  ExtraBold
8565
-
8666
+
8566
8667
  Black
8567
-
8668
+
8568
8669
  ExtraBlack
8569
8670
  */
8570
8671
 
@@ -8586,17 +8687,17 @@ var FontWeight;
8586
8687
  })(FontWeight || (FontWeight = {}));
8587
8688
  /**
8588
8689
  *
8589
-
8690
+
8590
8691
  unknown
8591
-
8692
+
8592
8693
  point
8593
-
8694
+
8594
8695
  polyline
8595
-
8696
+
8596
8697
  multipolygon
8597
-
8698
+
8598
8699
  envelope
8599
-
8700
+
8600
8701
  multipoint
8601
8702
  */
8602
8703
 
@@ -8613,13 +8714,13 @@ var GeometryType;
8613
8714
  })(GeometryType || (GeometryType = {}));
8614
8715
  /**
8615
8716
  * Resource group.
8616
-
8717
+
8617
8718
  my
8618
-
8719
+
8619
8720
  role
8620
-
8721
+
8621
8722
  public
8622
-
8723
+
8623
8724
  all
8624
8725
  */
8625
8726
 
@@ -8634,13 +8735,13 @@ var Group;
8634
8735
  })(Group || (Group = {}));
8635
8736
  /**
8636
8737
  * Specifies the settings of line cap. This is applied to the beginning and end of each non-closed line.
8637
-
8738
+
8638
8739
  Flat
8639
-
8740
+
8640
8741
  Square
8641
-
8742
+
8642
8743
  Round
8643
-
8744
+
8644
8745
  Triangle
8645
8746
  */
8646
8747
 
@@ -8655,29 +8756,29 @@ var LineCapStyle;
8655
8756
  })(LineCapStyle || (LineCapStyle = {}));
8656
8757
  /**
8657
8758
  * Type of the line ending.
8658
-
8759
+
8659
8760
  none
8660
-
8761
+
8661
8762
  arrow
8662
-
8763
+
8663
8764
  filledArrow
8664
-
8765
+
8665
8766
  square
8666
-
8767
+
8667
8768
  filledSquare
8668
-
8769
+
8669
8770
  circle
8670
-
8771
+
8671
8772
  filledCircle
8672
-
8773
+
8673
8774
  diamond
8674
-
8775
+
8675
8776
  filledDiamond
8676
-
8777
+
8677
8778
  roundSquare
8678
-
8779
+
8679
8780
  filledRoundSquare
8680
-
8781
+
8681
8782
  svg
8682
8783
  */
8683
8784
 
@@ -8700,11 +8801,11 @@ var LineEndingType;
8700
8801
  })(LineEndingType || (LineEndingType = {}));
8701
8802
  /**
8702
8803
  * Specifies the settings of lines join. This is applied to corners in lines and rectangles.
8703
-
8804
+
8704
8805
  Miter
8705
-
8806
+
8706
8807
  Bevel
8707
-
8808
+
8708
8809
  Round
8709
8810
  */
8710
8811
 
@@ -8718,15 +8819,15 @@ var LineJoinType;
8718
8819
  })(LineJoinType || (LineJoinType = {}));
8719
8820
  /**
8720
8821
  *
8721
-
8822
+
8722
8823
  Unknown
8723
-
8824
+
8724
8825
  union
8725
-
8826
+
8726
8827
  intersection
8727
-
8828
+
8728
8829
  subtraction
8729
-
8830
+
8730
8831
  symDifference
8731
8832
  */
8732
8833
 
@@ -8742,11 +8843,11 @@ var Operation;
8742
8843
  })(Operation || (Operation = {}));
8743
8844
  /**
8744
8845
  * Filter exists resources by owner.
8745
-
8846
+
8746
8847
  My
8747
-
8848
+
8748
8849
  Shared
8749
-
8850
+
8750
8851
  Public
8751
8852
  */
8752
8853
 
@@ -8760,9 +8861,9 @@ var OwnerFilter;
8760
8861
  })(OwnerFilter || (OwnerFilter = {}));
8761
8862
  /**
8762
8863
  * Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
8763
-
8864
+
8764
8865
  xyz
8765
-
8866
+
8766
8867
  tms
8767
8868
  */
8768
8869
 
@@ -8775,19 +8876,19 @@ var PbfSchema;
8775
8876
  })(PbfSchema || (PbfSchema = {}));
8776
8877
  /**
8777
8878
  *
8778
-
8879
+
8779
8880
  none
8780
-
8881
+
8781
8882
  configure
8782
-
8883
+
8783
8884
  write
8784
-
8885
+
8785
8886
  read
8786
-
8887
+
8787
8888
  read,configure
8788
-
8889
+
8789
8890
  read,write
8790
-
8891
+
8791
8892
  read,write,configure
8792
8893
  */
8793
8894
 
@@ -8805,19 +8906,19 @@ var Permissions;
8805
8906
  })(Permissions || (Permissions = {}));
8806
8907
  /**
8807
8908
  * Type of the authorization policy.
8808
-
8909
+
8809
8910
  Unknown
8810
-
8911
+
8811
8912
  CreateTable
8812
-
8913
+
8813
8914
  CreateLayer
8814
-
8915
+
8815
8916
  CreateProject
8816
-
8917
+
8817
8918
  MaxFeaturesInOneTable
8818
-
8919
+
8819
8920
  MaxObjectsToExport
8820
-
8921
+
8821
8922
  MaxUploadContentSize
8822
8923
  */
8823
8924
 
@@ -8835,11 +8936,11 @@ var PolicyType;
8835
8936
  })(PolicyType || (PolicyType = {}));
8836
8937
  /**
8837
8938
  * Stream quality.
8838
-
8939
+
8839
8940
  Low
8840
-
8941
+
8841
8942
  Medium
8842
-
8943
+
8843
8944
  High
8844
8945
  */
8845
8946
 
@@ -8853,15 +8954,15 @@ var Quality;
8853
8954
  })(Quality || (Quality = {}));
8854
8955
  /**
8855
8956
  * Resources types filter.
8856
-
8957
+
8857
8958
  RemoteTileService
8858
-
8959
+
8859
8960
  ProxyService
8860
-
8961
+
8861
8962
  PostgresLayerService
8862
-
8963
+
8863
8964
  QueryLayerService
8864
-
8965
+
8865
8966
  TileCatalogTable
8866
8967
  */
8867
8968
 
@@ -8877,19 +8978,19 @@ var ResourceSubTypeFilter;
8877
8978
  })(ResourceSubTypeFilter || (ResourceSubTypeFilter = {}));
8878
8979
  /**
8879
8980
  *
8880
-
8981
+
8881
8982
  Unknown
8882
-
8983
+
8883
8984
  table
8884
-
8985
+
8885
8986
  layer
8886
-
8987
+
8887
8988
  project
8888
-
8989
+
8889
8990
  file
8890
-
8991
+
8891
8992
  feature
8892
-
8993
+
8893
8994
  tag
8894
8995
  */
8895
8996
 
@@ -8907,19 +9008,19 @@ var ResourceType;
8907
9008
  })(ResourceType || (ResourceType = {}));
8908
9009
  /**
8909
9010
  * Resources types filter.
8910
-
9011
+
8911
9012
  Map
8912
-
9013
+
8913
9014
  Layer
8914
-
9015
+
8915
9016
  Table
8916
-
9017
+
8917
9018
  RasterCatalog
8918
-
9019
+
8919
9020
  ProxyService
8920
-
9021
+
8921
9022
  RemoteTileService
8922
-
9023
+
8923
9024
  File
8924
9025
  */
8925
9026
 
@@ -8945,9 +9046,9 @@ var ResourceTypeLink;
8945
9046
  })(ResourceTypeLink || (ResourceTypeLink = {}));
8946
9047
  /**
8947
9048
  * Response type.
8948
-
9049
+
8949
9050
  code
8950
-
9051
+
8951
9052
  token
8952
9053
  */
8953
9054
 
@@ -8960,21 +9061,21 @@ var ResponseType;
8960
9061
  })(ResponseType || (ResponseType = {}));
8961
9062
  /**
8962
9063
  * Status of the server task.
8963
-
9064
+
8964
9065
  None
8965
-
9066
+
8966
9067
  Scheduled
8967
-
9068
+
8968
9069
  Planning
8969
-
9070
+
8970
9071
  Executing
8971
-
9072
+
8972
9073
  Completed
8973
-
9074
+
8974
9075
  Failed
8975
-
9076
+
8976
9077
  Canceled
8977
-
9078
+
8978
9079
  Timeout
8979
9080
  */
8980
9081
 
@@ -8993,11 +9094,11 @@ var ServerTaskStatus;
8993
9094
  })(ServerTaskStatus || (ServerTaskStatus = {}));
8994
9095
  /**
8995
9096
  *
8996
-
9097
+
8997
9098
  Basic
8998
-
9099
+
8999
9100
  PreserveTopology
9000
-
9101
+
9001
9102
  VW
9002
9103
  */
9003
9104
 
@@ -9011,13 +9112,13 @@ var SimplifyType;
9011
9112
  })(SimplifyType || (SimplifyType = {}));
9012
9113
  /**
9013
9114
  *
9014
-
9115
+
9015
9116
  None
9016
-
9117
+
9017
9118
  Image
9018
-
9119
+
9019
9120
  PkkCode
9020
-
9121
+
9021
9122
  Attachments
9022
9123
  */
9023
9124
 
@@ -9032,9 +9133,9 @@ var StringSubType;
9032
9133
  })(StringSubType || (StringSubType = {}));
9033
9134
  /**
9034
9135
  * Task owner group.
9035
-
9136
+
9036
9137
  my
9037
-
9138
+
9038
9139
  all
9039
9140
  */
9040
9141
 
@@ -9047,13 +9148,13 @@ var TaskGroup;
9047
9148
  })(TaskGroup || (TaskGroup = {}));
9048
9149
  /**
9049
9150
  * Sets the horizontal alignment of text.
9050
-
9151
+
9051
9152
  right
9052
-
9153
+
9053
9154
  left
9054
-
9155
+
9055
9156
  center
9056
-
9157
+
9057
9158
  justified
9058
9159
  */
9059
9160
 
@@ -9068,11 +9169,11 @@ var TextAlignment;
9068
9169
  })(TextAlignment || (TextAlignment = {}));
9069
9170
  /**
9070
9171
  * Sets the vertical alignment of text.
9071
-
9172
+
9072
9173
  top
9073
-
9174
+
9074
9175
  bottom
9075
-
9176
+
9076
9177
  middle
9077
9178
  */
9078
9179