@evergis/api 3.0.206 → 3.0.208

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,124 @@ 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
+ * No description
411
+ *
412
+ * @tags DataSource
413
+ * @name TestConnection
414
+ * @operationId DataSourceController_TestConnection
415
+ * @summary Test ds connection.
416
+ * @request POST:/ds/testConnection
417
+ * @response `200` OK
418
+ */
419
+
420
+ }, {
421
+ key: "testConnection",
422
+ value: function testConnection(data) {
423
+ return this.http.post("/ds/testConnection", data).json();
424
+ }
425
+ }]);
426
+
427
+ return DataSourceService;
428
+ }(Service);
429
+
320
430
  /**
321
431
  * @title Spatial Processing Core API
322
432
  * @version 1.5.1.0
@@ -5079,8 +5189,8 @@ let Notification = /*#__PURE__*/function (_NotificationService) {
5079
5189
  || event.code === 4002
5080
5190
  /* InvalidSession */
5081
5191
  ) {
5082
- _this.connectStatus = ConnectionStatus.SessionClosed;
5083
- } else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
5192
+ _this.connectStatus = ConnectionStatus.SessionClosed;
5193
+ } else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
5084
5194
  _this.connectStatus = ConnectionStatus.Break;
5085
5195
  _this.reconnectTries++;
5086
5196
 
@@ -5914,12 +6024,12 @@ let Resources = /*#__PURE__*/function () {
5914
6024
  }, {
5915
6025
  key: "getDependentNames",
5916
6026
  value: function getDependentNames(deps, depType) {
5917
- return deps.filter(_ref => {
6027
+ return deps.filter((_ref) => {
5918
6028
  let {
5919
6029
  type
5920
6030
  } = _ref;
5921
6031
  return type === depType;
5922
- }).map(_ref2 => {
6032
+ }).map((_ref2) => {
5923
6033
  let {
5924
6034
  name
5925
6035
  } = _ref2;
@@ -6375,7 +6485,7 @@ let Scheduler = /*#__PURE__*/function (_SchedulerService) {
6375
6485
  const taskProgress = await this.getTaskProgress(id);
6376
6486
  this.resolveTaskStatus(taskProgress, resolve, reject);
6377
6487
 
6378
- const taskResultCallback = async _ref => {
6488
+ const taskResultCallback = async (_ref) => {
6379
6489
  let {
6380
6490
  data
6381
6491
  } = _ref;
@@ -7613,6 +7723,7 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
7613
7723
  _this.eql = new Eql(_this.http);
7614
7724
  _this.catalog = new CatalogService(_this.http);
7615
7725
  _this.queryToken = new QueryTokenAccessService(_this.http);
7726
+ _this.dataSource = new DataSourceService(_this.http);
7616
7727
  _this.names = new Names({
7617
7728
  account: _this.account
7618
7729
  });
@@ -8104,47 +8215,47 @@ function isFeatureLayer(layer) {
8104
8215
 
8105
8216
  /**
8106
8217
  *
8107
-
8218
+
8108
8219
  None
8109
-
8220
+
8110
8221
  Array
8111
-
8222
+
8112
8223
  Min
8113
-
8224
+
8114
8225
  Max
8115
-
8226
+
8116
8227
  Avg
8117
-
8228
+
8118
8229
  Sum
8119
-
8230
+
8120
8231
  Extent
8121
-
8232
+
8122
8233
  H3
8123
-
8234
+
8124
8235
  Count
8125
-
8236
+
8126
8237
  TotalCount
8127
-
8238
+
8128
8239
  DistinctCount
8129
-
8240
+
8130
8241
  First
8131
-
8242
+
8132
8243
  Last
8133
-
8244
+
8134
8245
  Median
8135
-
8246
+
8136
8247
  Mod
8137
-
8248
+
8138
8249
  StdDeviation
8139
-
8250
+
8140
8251
  SumOfProduct
8141
-
8252
+
8142
8253
  OnlyValue
8143
-
8254
+
8144
8255
  WeightedAvg
8145
-
8256
+
8146
8257
  DensityIndicators
8147
-
8258
+
8148
8259
  DividedSum
8149
8260
  */
8150
8261
  var AggregationFunction;
@@ -8174,13 +8285,13 @@ var AggregationFunction;
8174
8285
  })(AggregationFunction || (AggregationFunction = {}));
8175
8286
  /**
8176
8287
  *
8177
-
8288
+
8178
8289
  Unknown
8179
-
8290
+
8180
8291
  Icon
8181
-
8292
+
8182
8293
  PNG
8183
-
8294
+
8184
8295
  SVG
8185
8296
  */
8186
8297
 
@@ -8195,13 +8306,13 @@ var AttributeIconType;
8195
8306
  })(AttributeIconType || (AttributeIconType = {}));
8196
8307
  /**
8197
8308
  *
8198
-
8309
+
8199
8310
  None
8200
-
8311
+
8201
8312
  SelectFromHandBook
8202
-
8313
+
8203
8314
  SelectFromRange
8204
-
8315
+
8205
8316
  ViewHandBook
8206
8317
  */
8207
8318
 
@@ -8216,31 +8327,31 @@ var AttributeSelectorType;
8216
8327
  })(AttributeSelectorType || (AttributeSelectorType = {}));
8217
8328
  /**
8218
8329
  *
8219
-
8330
+
8220
8331
  Unknown
8221
-
8332
+
8222
8333
  String
8223
-
8334
+
8224
8335
  Int32
8225
-
8336
+
8226
8337
  Int64
8227
-
8338
+
8228
8339
  Double
8229
-
8340
+
8230
8341
  DateTime
8231
-
8342
+
8232
8343
  Boolean
8233
-
8344
+
8234
8345
  Point
8235
-
8346
+
8236
8347
  Polyline
8237
-
8348
+
8238
8349
  MultiPolygon
8239
-
8350
+
8240
8351
  Multipoint
8241
-
8352
+
8242
8353
  H3Index
8243
-
8354
+
8244
8355
  Json
8245
8356
  */
8246
8357
 
@@ -8266,9 +8377,9 @@ var AttributeType;
8266
8377
  * An authorization grant is a credential representing the resource
8267
8378
  owner's authorization (to access its protected resources) used by the
8268
8379
  client to obtain an access token.
8269
-
8380
+
8270
8381
  authorization_code
8271
-
8382
+
8272
8383
  refresh_token
8273
8384
  */
8274
8385
 
@@ -8281,18 +8392,20 @@ var AuthorizationGrant;
8281
8392
  })(AuthorizationGrant || (AuthorizationGrant = {}));
8282
8393
  /**
8283
8394
  *
8284
-
8395
+
8285
8396
  None
8286
-
8397
+
8287
8398
  Map
8288
-
8399
+
8289
8400
  Layer
8290
-
8401
+
8291
8402
  Table
8292
-
8403
+
8293
8404
  File
8294
-
8405
+
8295
8406
  TaskPrototype
8407
+
8408
+ DataSource
8296
8409
  */
8297
8410
 
8298
8411
 
@@ -8305,18 +8418,19 @@ var CatalogResourceType;
8305
8418
  CatalogResourceType["Table"] = "Table";
8306
8419
  CatalogResourceType["File"] = "File";
8307
8420
  CatalogResourceType["TaskPrototype"] = "TaskPrototype";
8421
+ CatalogResourceType["DataSource"] = "DataSource";
8308
8422
  })(CatalogResourceType || (CatalogResourceType = {}));
8309
8423
  /**
8310
8424
  * Describes classification methods.
8311
-
8425
+
8312
8426
  none
8313
-
8427
+
8314
8428
  naturalBreaks
8315
-
8429
+
8316
8430
  equalInterval
8317
-
8431
+
8318
8432
  quantile
8319
-
8433
+
8320
8434
  unique
8321
8435
  */
8322
8436
 
@@ -8332,11 +8446,11 @@ var ClassificationType;
8332
8446
  })(ClassificationType || (ClassificationType = {}));
8333
8447
  /**
8334
8448
  *
8335
-
8449
+
8336
8450
  decimal
8337
-
8451
+
8338
8452
  dateTime
8339
-
8453
+
8340
8454
  text
8341
8455
  */
8342
8456
 
@@ -8350,55 +8464,55 @@ var ClassifyAttributeType;
8350
8464
  })(ClassifyAttributeType || (ClassifyAttributeType = {}));
8351
8465
  /**
8352
8466
  *
8353
-
8467
+
8354
8468
  Unknown
8355
-
8469
+
8356
8470
  SerializeError
8357
-
8471
+
8358
8472
  InvalidDataService
8359
-
8473
+
8360
8474
  InvalidConfiguration
8361
-
8475
+
8362
8476
  InvalidDataServiceName
8363
-
8477
+
8364
8478
  InvalidTableName
8365
-
8479
+
8366
8480
  InvalidLayerName
8367
-
8481
+
8368
8482
  ResourceNotFound
8369
-
8483
+
8370
8484
  InvalidCondition
8371
-
8485
+
8372
8486
  InvalidAttributes
8373
-
8487
+
8374
8488
  InvalidIdAttribute
8375
-
8489
+
8376
8490
  InvalidGeometryAttribute
8377
-
8491
+
8378
8492
  InvalidGeometryAttributeType
8379
-
8493
+
8380
8494
  InvalidColumnName
8381
-
8495
+
8382
8496
  InvalidIdColumnSettings
8383
-
8497
+
8384
8498
  ColumnNotExistsInTable
8385
-
8499
+
8386
8500
  InvalidStyle
8387
-
8501
+
8388
8502
  InvalidLayerType
8389
-
8503
+
8390
8504
  ColumnLoadingError
8391
-
8505
+
8392
8506
  InvalidAttributeFormat
8393
-
8507
+
8394
8508
  DataSourceNotFound
8395
-
8509
+
8396
8510
  DuplicateColumns
8397
-
8511
+
8398
8512
  DuplicateAttributes
8399
-
8513
+
8400
8514
  TableWithoutColumns
8401
-
8515
+
8402
8516
  InvalidTableReferenceConfiguration
8403
8517
  */
8404
8518
 
@@ -8434,11 +8548,13 @@ var ConfigurationErrorEnum;
8434
8548
  })(ConfigurationErrorEnum || (ConfigurationErrorEnum = {}));
8435
8549
  /**
8436
8550
  *
8437
-
8551
+
8438
8552
  Postgres
8439
-
8553
+
8554
+ Trino
8555
+
8440
8556
  S3
8441
-
8557
+
8442
8558
  GisServer
8443
8559
  */
8444
8560
 
@@ -8447,20 +8563,21 @@ var DataSourceType;
8447
8563
 
8448
8564
  (function (DataSourceType) {
8449
8565
  DataSourceType["Postgres"] = "Postgres";
8566
+ DataSourceType["Trino"] = "Trino";
8450
8567
  DataSourceType["S3"] = "S3";
8451
8568
  DataSourceType["GisServer"] = "GisServer";
8452
8569
  })(DataSourceType || (DataSourceType = {}));
8453
8570
  /**
8454
8571
  * Type of the error.
8455
-
8572
+
8456
8573
  ResourceLimitExceeded
8457
-
8574
+
8458
8575
  ResourceNotFound
8459
-
8576
+
8460
8577
  InternalError
8461
-
8578
+
8462
8579
  BadRequest
8463
-
8580
+
8464
8581
  DuplicateContent
8465
8582
  */
8466
8583
 
@@ -8511,9 +8628,9 @@ var ErrorType;
8511
8628
  })(ErrorType || (ErrorType = {}));
8512
8629
  /**
8513
8630
  * Type of the feature.
8514
-
8631
+
8515
8632
  Unknown
8516
-
8633
+
8517
8634
  GeometricFeature
8518
8635
  */
8519
8636
 
@@ -8526,11 +8643,11 @@ var FeatureType;
8526
8643
  })(FeatureType || (FeatureType = {}));
8527
8644
  /**
8528
8645
  * Sets whether font should be styled.
8529
-
8646
+
8530
8647
  normal
8531
-
8648
+
8532
8649
  oblique
8533
-
8650
+
8534
8651
  italic
8535
8652
  */
8536
8653
 
@@ -8544,27 +8661,27 @@ var FontStyle;
8544
8661
  })(FontStyle || (FontStyle = {}));
8545
8662
  /**
8546
8663
  * Specifies the weight (or boldness) of the font.
8547
-
8664
+
8548
8665
  Thin
8549
-
8666
+
8550
8667
  ExtraLight
8551
-
8668
+
8552
8669
  Light
8553
-
8670
+
8554
8671
  SemiLight
8555
-
8672
+
8556
8673
  Normal
8557
-
8674
+
8558
8675
  Medium
8559
-
8676
+
8560
8677
  DemiBold
8561
-
8678
+
8562
8679
  Bold
8563
-
8680
+
8564
8681
  ExtraBold
8565
-
8682
+
8566
8683
  Black
8567
-
8684
+
8568
8685
  ExtraBlack
8569
8686
  */
8570
8687
 
@@ -8586,17 +8703,17 @@ var FontWeight;
8586
8703
  })(FontWeight || (FontWeight = {}));
8587
8704
  /**
8588
8705
  *
8589
-
8706
+
8590
8707
  unknown
8591
-
8708
+
8592
8709
  point
8593
-
8710
+
8594
8711
  polyline
8595
-
8712
+
8596
8713
  multipolygon
8597
-
8714
+
8598
8715
  envelope
8599
-
8716
+
8600
8717
  multipoint
8601
8718
  */
8602
8719
 
@@ -8613,13 +8730,13 @@ var GeometryType;
8613
8730
  })(GeometryType || (GeometryType = {}));
8614
8731
  /**
8615
8732
  * Resource group.
8616
-
8733
+
8617
8734
  my
8618
-
8735
+
8619
8736
  role
8620
-
8737
+
8621
8738
  public
8622
-
8739
+
8623
8740
  all
8624
8741
  */
8625
8742
 
@@ -8634,13 +8751,13 @@ var Group;
8634
8751
  })(Group || (Group = {}));
8635
8752
  /**
8636
8753
  * Specifies the settings of line cap. This is applied to the beginning and end of each non-closed line.
8637
-
8754
+
8638
8755
  Flat
8639
-
8756
+
8640
8757
  Square
8641
-
8758
+
8642
8759
  Round
8643
-
8760
+
8644
8761
  Triangle
8645
8762
  */
8646
8763
 
@@ -8655,29 +8772,29 @@ var LineCapStyle;
8655
8772
  })(LineCapStyle || (LineCapStyle = {}));
8656
8773
  /**
8657
8774
  * Type of the line ending.
8658
-
8775
+
8659
8776
  none
8660
-
8777
+
8661
8778
  arrow
8662
-
8779
+
8663
8780
  filledArrow
8664
-
8781
+
8665
8782
  square
8666
-
8783
+
8667
8784
  filledSquare
8668
-
8785
+
8669
8786
  circle
8670
-
8787
+
8671
8788
  filledCircle
8672
-
8789
+
8673
8790
  diamond
8674
-
8791
+
8675
8792
  filledDiamond
8676
-
8793
+
8677
8794
  roundSquare
8678
-
8795
+
8679
8796
  filledRoundSquare
8680
-
8797
+
8681
8798
  svg
8682
8799
  */
8683
8800
 
@@ -8700,11 +8817,11 @@ var LineEndingType;
8700
8817
  })(LineEndingType || (LineEndingType = {}));
8701
8818
  /**
8702
8819
  * Specifies the settings of lines join. This is applied to corners in lines and rectangles.
8703
-
8820
+
8704
8821
  Miter
8705
-
8822
+
8706
8823
  Bevel
8707
-
8824
+
8708
8825
  Round
8709
8826
  */
8710
8827
 
@@ -8718,15 +8835,15 @@ var LineJoinType;
8718
8835
  })(LineJoinType || (LineJoinType = {}));
8719
8836
  /**
8720
8837
  *
8721
-
8838
+
8722
8839
  Unknown
8723
-
8840
+
8724
8841
  union
8725
-
8842
+
8726
8843
  intersection
8727
-
8844
+
8728
8845
  subtraction
8729
-
8846
+
8730
8847
  symDifference
8731
8848
  */
8732
8849
 
@@ -8742,11 +8859,11 @@ var Operation;
8742
8859
  })(Operation || (Operation = {}));
8743
8860
  /**
8744
8861
  * Filter exists resources by owner.
8745
-
8862
+
8746
8863
  My
8747
-
8864
+
8748
8865
  Shared
8749
-
8866
+
8750
8867
  Public
8751
8868
  */
8752
8869
 
@@ -8760,9 +8877,9 @@ var OwnerFilter;
8760
8877
  })(OwnerFilter || (OwnerFilter = {}));
8761
8878
  /**
8762
8879
  * Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
8763
-
8880
+
8764
8881
  xyz
8765
-
8882
+
8766
8883
  tms
8767
8884
  */
8768
8885
 
@@ -8775,19 +8892,19 @@ var PbfSchema;
8775
8892
  })(PbfSchema || (PbfSchema = {}));
8776
8893
  /**
8777
8894
  *
8778
-
8895
+
8779
8896
  none
8780
-
8897
+
8781
8898
  configure
8782
-
8899
+
8783
8900
  write
8784
-
8901
+
8785
8902
  read
8786
-
8903
+
8787
8904
  read,configure
8788
-
8905
+
8789
8906
  read,write
8790
-
8907
+
8791
8908
  read,write,configure
8792
8909
  */
8793
8910
 
@@ -8805,19 +8922,19 @@ var Permissions;
8805
8922
  })(Permissions || (Permissions = {}));
8806
8923
  /**
8807
8924
  * Type of the authorization policy.
8808
-
8925
+
8809
8926
  Unknown
8810
-
8927
+
8811
8928
  CreateTable
8812
-
8929
+
8813
8930
  CreateLayer
8814
-
8931
+
8815
8932
  CreateProject
8816
-
8933
+
8817
8934
  MaxFeaturesInOneTable
8818
-
8935
+
8819
8936
  MaxObjectsToExport
8820
-
8937
+
8821
8938
  MaxUploadContentSize
8822
8939
  */
8823
8940
 
@@ -8835,11 +8952,11 @@ var PolicyType;
8835
8952
  })(PolicyType || (PolicyType = {}));
8836
8953
  /**
8837
8954
  * Stream quality.
8838
-
8955
+
8839
8956
  Low
8840
-
8957
+
8841
8958
  Medium
8842
-
8959
+
8843
8960
  High
8844
8961
  */
8845
8962
 
@@ -8853,15 +8970,15 @@ var Quality;
8853
8970
  })(Quality || (Quality = {}));
8854
8971
  /**
8855
8972
  * Resources types filter.
8856
-
8973
+
8857
8974
  RemoteTileService
8858
-
8975
+
8859
8976
  ProxyService
8860
-
8977
+
8861
8978
  PostgresLayerService
8862
-
8979
+
8863
8980
  QueryLayerService
8864
-
8981
+
8865
8982
  TileCatalogTable
8866
8983
  */
8867
8984
 
@@ -8877,19 +8994,19 @@ var ResourceSubTypeFilter;
8877
8994
  })(ResourceSubTypeFilter || (ResourceSubTypeFilter = {}));
8878
8995
  /**
8879
8996
  *
8880
-
8997
+
8881
8998
  Unknown
8882
-
8999
+
8883
9000
  table
8884
-
9001
+
8885
9002
  layer
8886
-
9003
+
8887
9004
  project
8888
-
9005
+
8889
9006
  file
8890
-
9007
+
8891
9008
  feature
8892
-
9009
+
8893
9010
  tag
8894
9011
  */
8895
9012
 
@@ -8907,20 +9024,22 @@ var ResourceType;
8907
9024
  })(ResourceType || (ResourceType = {}));
8908
9025
  /**
8909
9026
  * Resources types filter.
8910
-
9027
+
8911
9028
  Map
8912
-
9029
+
8913
9030
  Layer
8914
-
9031
+
8915
9032
  Table
8916
-
9033
+
8917
9034
  RasterCatalog
8918
-
9035
+
8919
9036
  ProxyService
8920
-
9037
+
8921
9038
  RemoteTileService
8922
-
9039
+
8923
9040
  File
9041
+
9042
+ DataSource
8924
9043
  */
8925
9044
 
8926
9045
 
@@ -8934,6 +9053,7 @@ var ResourceTypeFilter;
8934
9053
  ResourceTypeFilter["ProxyService"] = "ProxyService";
8935
9054
  ResourceTypeFilter["RemoteTileService"] = "RemoteTileService";
8936
9055
  ResourceTypeFilter["File"] = "File";
9056
+ ResourceTypeFilter["DataSource"] = "DataSource";
8937
9057
  })(ResourceTypeFilter || (ResourceTypeFilter = {}));
8938
9058
 
8939
9059
  var ResourceTypeLink;
@@ -8945,9 +9065,9 @@ var ResourceTypeLink;
8945
9065
  })(ResourceTypeLink || (ResourceTypeLink = {}));
8946
9066
  /**
8947
9067
  * Response type.
8948
-
9068
+
8949
9069
  code
8950
-
9070
+
8951
9071
  token
8952
9072
  */
8953
9073
 
@@ -8960,21 +9080,21 @@ var ResponseType;
8960
9080
  })(ResponseType || (ResponseType = {}));
8961
9081
  /**
8962
9082
  * Status of the server task.
8963
-
9083
+
8964
9084
  None
8965
-
9085
+
8966
9086
  Scheduled
8967
-
9087
+
8968
9088
  Planning
8969
-
9089
+
8970
9090
  Executing
8971
-
9091
+
8972
9092
  Completed
8973
-
9093
+
8974
9094
  Failed
8975
-
9095
+
8976
9096
  Canceled
8977
-
9097
+
8978
9098
  Timeout
8979
9099
  */
8980
9100
 
@@ -8993,11 +9113,11 @@ var ServerTaskStatus;
8993
9113
  })(ServerTaskStatus || (ServerTaskStatus = {}));
8994
9114
  /**
8995
9115
  *
8996
-
9116
+
8997
9117
  Basic
8998
-
9118
+
8999
9119
  PreserveTopology
9000
-
9120
+
9001
9121
  VW
9002
9122
  */
9003
9123
 
@@ -9011,13 +9131,13 @@ var SimplifyType;
9011
9131
  })(SimplifyType || (SimplifyType = {}));
9012
9132
  /**
9013
9133
  *
9014
-
9134
+
9015
9135
  None
9016
-
9136
+
9017
9137
  Image
9018
-
9138
+
9019
9139
  PkkCode
9020
-
9140
+
9021
9141
  Attachments
9022
9142
  */
9023
9143
 
@@ -9032,9 +9152,9 @@ var StringSubType;
9032
9152
  })(StringSubType || (StringSubType = {}));
9033
9153
  /**
9034
9154
  * Task owner group.
9035
-
9155
+
9036
9156
  my
9037
-
9157
+
9038
9158
  all
9039
9159
  */
9040
9160
 
@@ -9047,13 +9167,13 @@ var TaskGroup;
9047
9167
  })(TaskGroup || (TaskGroup = {}));
9048
9168
  /**
9049
9169
  * Sets the horizontal alignment of text.
9050
-
9170
+
9051
9171
  right
9052
-
9172
+
9053
9173
  left
9054
-
9174
+
9055
9175
  center
9056
-
9176
+
9057
9177
  justified
9058
9178
  */
9059
9179
 
@@ -9068,11 +9188,11 @@ var TextAlignment;
9068
9188
  })(TextAlignment || (TextAlignment = {}));
9069
9189
  /**
9070
9190
  * Sets the vertical alignment of text.
9071
-
9191
+
9072
9192
  top
9073
-
9193
+
9074
9194
  bottom
9075
-
9195
+
9076
9196
  middle
9077
9197
  */
9078
9198