@evergis/api 3.0.142 → 3.0.144

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
@@ -29,6 +29,9 @@ function _defineProperties(target, props) {
29
29
  function _createClass(Constructor, protoProps, staticProps) {
30
30
  if (protoProps) _defineProperties(Constructor.prototype, protoProps);
31
31
  if (staticProps) _defineProperties(Constructor, staticProps);
32
+ Object.defineProperty(Constructor, "prototype", {
33
+ writable: false
34
+ });
32
35
  return Constructor;
33
36
  }
34
37
 
@@ -62,6 +65,9 @@ function _inherits(subClass, superClass) {
62
65
  configurable: true
63
66
  }
64
67
  });
68
+ Object.defineProperty(subClass, "prototype", {
69
+ writable: false
70
+ });
65
71
  if (superClass) _setPrototypeOf(subClass, superClass);
66
72
  }
67
73
 
@@ -120,6 +126,8 @@ function _assertThisInitialized(self) {
120
126
  function _possibleConstructorReturn(self, call) {
121
127
  if (call && (typeof call === "object" || typeof call === "function")) {
122
128
  return call;
129
+ } else if (call !== void 0) {
130
+ throw new TypeError("Derived constructors may only return object or undefined");
123
131
  }
124
132
 
125
133
  return _assertThisInitialized(self);
@@ -153,7 +161,7 @@ function _superPropBase(object, property) {
153
161
  return object;
154
162
  }
155
163
 
156
- function _get(target, property, receiver) {
164
+ function _get() {
157
165
  if (typeof Reflect !== "undefined" && Reflect.get) {
158
166
  _get = Reflect.get;
159
167
  } else {
@@ -164,14 +172,14 @@ function _get(target, property, receiver) {
164
172
  var desc = Object.getOwnPropertyDescriptor(base, property);
165
173
 
166
174
  if (desc.get) {
167
- return desc.get.call(receiver);
175
+ return desc.get.call(arguments.length < 3 ? target : receiver);
168
176
  }
169
177
 
170
178
  return desc.value;
171
179
  };
172
180
  }
173
181
 
174
- return _get(target, property, receiver || target);
182
+ return _get.apply(this, arguments);
175
183
  }
176
184
 
177
185
  let HttpClient = /*#__PURE__*/function () {
@@ -286,14 +294,6 @@ function toFormData(input) {
286
294
  }, new FormData());
287
295
  }
288
296
 
289
- var ApiEvent;
290
-
291
- (function (ApiEvent) {
292
- ApiEvent["ConnectionLost"] = "ConnectionLost";
293
- ApiEvent["Unauthorized"] = "Unauthorized";
294
- ApiEvent["SessionClosed"] = "SessionClosed";
295
- })(ApiEvent || (ApiEvent = {}));
296
-
297
297
  /* eslint-disable */
298
298
 
299
299
  /* tslint:disable */
@@ -312,6 +312,75 @@ let Service = /*#__PURE__*/_createClass(function Service(http) {
312
312
  this.http = http;
313
313
  });
314
314
 
315
+ const _excluded = ["taskId", "layerName"];
316
+ /**
317
+ * @title Spatial Processing Core API
318
+ * @version 1.0.0
319
+ * @baseUrl /sp
320
+ */
321
+
322
+ let UniversalSearchService = /*#__PURE__*/function (_Service) {
323
+ _inherits(UniversalSearchService, _Service);
324
+
325
+ var _super = /*#__PURE__*/_createSuper(UniversalSearchService);
326
+
327
+ function UniversalSearchService() {
328
+ _classCallCheck(this, UniversalSearchService);
329
+
330
+ return _super.apply(this, arguments);
331
+ }
332
+
333
+ _createClass(UniversalSearchService, [{
334
+ key: "getSearchResult",
335
+ value:
336
+ /**
337
+ * No description
338
+ *
339
+ * @tags UniversalSearch
340
+ * @name GetSearchResult
341
+ * @operationId UniversalSearchController_GetSearchResult
342
+ * @summary Returns search result.
343
+ * @request GET:/search/{taskId}/{layerName}
344
+ * @response `200` Success
345
+ */
346
+ function getSearchResult(_ref) {
347
+ let {
348
+ taskId,
349
+ layerName
350
+ } = _ref,
351
+ query = _objectWithoutPropertiesLoose(_ref, _excluded);
352
+
353
+ return this.http.get("/search/" + taskId + "/" + layerName, query).json();
354
+ }
355
+ /**
356
+ * No description
357
+ *
358
+ * @tags UniversalSearch
359
+ * @name GetSearchResult1
360
+ * @operationId UniversalSearchController_GetSearchResult_1
361
+ * @summary Returns search result.
362
+ * @request GET:/search/{taskId}
363
+ * @response `200` Success
364
+ */
365
+
366
+ }, {
367
+ key: "getSearchResult1",
368
+ value: function getSearchResult1(taskId) {
369
+ return this.http.get("/search/" + taskId).json();
370
+ }
371
+ }]);
372
+
373
+ return UniversalSearchService;
374
+ }(Service);
375
+
376
+ var ApiEvent;
377
+
378
+ (function (ApiEvent) {
379
+ ApiEvent["ConnectionLost"] = "ConnectionLost";
380
+ ApiEvent["Unauthorized"] = "Unauthorized";
381
+ ApiEvent["SessionClosed"] = "SessionClosed";
382
+ })(ApiEvent || (ApiEvent = {}));
383
+
315
384
  /**
316
385
  * @title Spatial Processing Core API
317
386
  * @version 1.0.0
@@ -839,6 +908,22 @@ let ImportService = /*#__PURE__*/function (_Service) {
839
908
  value: function getRasterAttributes(query) {
840
909
  return this.http.get("/import/rasterAttributes", query).json();
841
910
  }
911
+ /**
912
+ * No description
913
+ *
914
+ * @tags ImportService
915
+ * @name GetRasterMeta
916
+ * @operationId ImportServiceController_GetRasterMeta
917
+ * @summary Get raster meta data.
918
+ * @request GET:/import/rasterMeta
919
+ * @response `200` Success
920
+ */
921
+
922
+ }, {
923
+ key: "getRasterMeta",
924
+ value: function getRasterMeta(query) {
925
+ return this.http.get("/import/rasterMeta", query).json();
926
+ }
842
927
  }]);
843
928
 
844
929
  return ImportService;
@@ -1016,8 +1101,8 @@ let Notification = /*#__PURE__*/function (_NotificationService) {
1016
1101
  || event.code === 4002
1017
1102
  /* InvalidSession */
1018
1103
  ) {
1019
- _this.connectStatus = ConnectionStatus.SessionClosed;
1020
- } else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
1104
+ _this.connectStatus = ConnectionStatus.SessionClosed;
1105
+ } else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
1021
1106
  _this.connectStatus = ConnectionStatus.Break;
1022
1107
  _this.reconnectTries++;
1023
1108
 
@@ -1311,6 +1396,24 @@ let SchedulerService = /*#__PURE__*/function (_Service) {
1311
1396
  type: 'tiling'
1312
1397
  }).json();
1313
1398
  }
1399
+ /**
1400
+ * No description
1401
+ *
1402
+ * @tags SchedulerService
1403
+ * @name StartNetCdfTask
1404
+ * @operationId SchedulerServiceController_StartNetCdfTask
1405
+ * @summary Plans the execution of a 'netcdf' server task.
1406
+ * @request POST:/scheduler/tasks#type=netcdf
1407
+ * @response `200` Success
1408
+ */
1409
+
1410
+ }, {
1411
+ key: "startNetCdfTask",
1412
+ value: function startNetCdfTask(data) {
1413
+ return this.http.post("/scheduler/tasks", data, {
1414
+ type: 'netcdf'
1415
+ }).json();
1416
+ }
1314
1417
  /**
1315
1418
  * No description
1316
1419
  *
@@ -1419,6 +1522,24 @@ let SchedulerService = /*#__PURE__*/function (_Service) {
1419
1522
  type: 'editAttributes'
1420
1523
  }).json();
1421
1524
  }
1525
+ /**
1526
+ * No description
1527
+ *
1528
+ * @tags SchedulerService
1529
+ * @name UniversalSearchTask
1530
+ * @operationId SchedulerServiceController_UniversalSearchTask
1531
+ * @summary Plans the execution of a 'edit attributes' server task.
1532
+ * @request POST:/scheduler/tasks#type=universalSearch
1533
+ * @response `200` Success
1534
+ */
1535
+
1536
+ }, {
1537
+ key: "universalSearchTask",
1538
+ value: function universalSearchTask(data) {
1539
+ return this.http.post("/scheduler/tasks", data, {
1540
+ type: 'universalSearch'
1541
+ }).json();
1542
+ }
1422
1543
  }]);
1423
1544
 
1424
1545
  return SchedulerService;
@@ -1530,7 +1651,7 @@ let Scheduler = /*#__PURE__*/function (_SchedulerService) {
1530
1651
  const taskProgress = await this.getTaskProgress(id);
1531
1652
  this.resolveTaskStatus(taskProgress, resolve, reject);
1532
1653
 
1533
- const taskResultCallback = async (_ref) => {
1654
+ const taskResultCallback = async _ref => {
1534
1655
  let {
1535
1656
  data
1536
1657
  } = _ref;
@@ -1573,7 +1694,7 @@ let Scheduler = /*#__PURE__*/function (_SchedulerService) {
1573
1694
  return Scheduler;
1574
1695
  }(SchedulerService);
1575
1696
 
1576
- const _excluded = ["name"],
1697
+ const _excluded$1 = ["name"],
1577
1698
  _excluded2 = ["name"],
1578
1699
  _excluded3 = ["name"],
1579
1700
  _excluded4 = ["name", "id"],
@@ -1591,7 +1712,8 @@ const _excluded = ["name"],
1591
1712
  _excluded16 = ["name"],
1592
1713
  _excluded17 = ["name"],
1593
1714
  _excluded18 = ["name"],
1594
- _excluded19 = ["layerName"];
1715
+ _excluded19 = ["layerName"],
1716
+ _excluded20 = ["name", "id"];
1595
1717
  /**
1596
1718
  * @title Spatial Processing Core API
1597
1719
  * @version 1.0.0
@@ -2008,7 +2130,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
2008
2130
  let {
2009
2131
  name
2010
2132
  } = _ref,
2011
- query = _objectWithoutPropertiesLoose(_ref, _excluded);
2133
+ query = _objectWithoutPropertiesLoose(_ref, _excluded$1);
2012
2134
 
2013
2135
  return this.http.get("/layers/" + name + "/features", query).json();
2014
2136
  }
@@ -2461,6 +2583,28 @@ let LayersService = /*#__PURE__*/function (_Service) {
2461
2583
 
2462
2584
  return this.http.get("/layers/" + layerName + "/validateExpression", query).json();
2463
2585
  }
2586
+ /**
2587
+ * No description
2588
+ *
2589
+ * @tags Layers
2590
+ * @name GetRasterMeta
2591
+ * @operationId LayersController_GetRasterMeta
2592
+ * @summary Get raster metadata.
2593
+ * @request GET:/layers/{name}/{id}/metadata
2594
+ * @response `200` Success
2595
+ */
2596
+
2597
+ }, {
2598
+ key: "getRasterMeta",
2599
+ value: function getRasterMeta(_ref20) {
2600
+ let {
2601
+ name,
2602
+ id
2603
+ } = _ref20,
2604
+ query = _objectWithoutPropertiesLoose(_ref20, _excluded20);
2605
+
2606
+ return this.http.get("/layers/" + name + "/" + id + "/metadata", query).json();
2607
+ }
2464
2608
  /**
2465
2609
  * No description
2466
2610
  *
@@ -2655,7 +2799,7 @@ function notError(v) {
2655
2799
  return !isError(v);
2656
2800
  }
2657
2801
 
2658
- const _excluded$1 = ["remote"];
2802
+ const _excluded$2 = ["remote"];
2659
2803
  let Layers = /*#__PURE__*/function (_LayersService) {
2660
2804
  _inherits(Layers, _LayersService);
2661
2805
 
@@ -2695,7 +2839,7 @@ let Layers = /*#__PURE__*/function (_LayersService) {
2695
2839
  let {
2696
2840
  remote
2697
2841
  } = _ref,
2698
- configuration = _objectWithoutPropertiesLoose(_ref, _excluded$1);
2842
+ configuration = _objectWithoutPropertiesLoose(_ref, _excluded$2);
2699
2843
 
2700
2844
  if (remote) {
2701
2845
  return this.publishRemoteTileService(configuration);
@@ -2744,7 +2888,7 @@ function isTileLayerService(layer) {
2744
2888
  return layer.type && /TileService/.test(layer.type);
2745
2889
  }
2746
2890
 
2747
- const _excluded$2 = ["name"],
2891
+ const _excluded$3 = ["name"],
2748
2892
  _excluded2$1 = ["name"],
2749
2893
  _excluded3$1 = ["name"],
2750
2894
  _excluded4$1 = ["name"];
@@ -2926,7 +3070,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
2926
3070
  let {
2927
3071
  name
2928
3072
  } = _ref,
2929
- query = _objectWithoutPropertiesLoose(_ref, _excluded$2);
3073
+ query = _objectWithoutPropertiesLoose(_ref, _excluded$3);
2930
3074
 
2931
3075
  return this.http.get("/tables/" + name + "/data", query).json();
2932
3076
  }
@@ -3753,12 +3897,12 @@ let Resources = /*#__PURE__*/function () {
3753
3897
  }, {
3754
3898
  key: "getDependentNames",
3755
3899
  value: function getDependentNames(deps, depType) {
3756
- return deps.filter((_ref) => {
3900
+ return deps.filter(_ref => {
3757
3901
  let {
3758
3902
  type
3759
3903
  } = _ref;
3760
3904
  return type === depType;
3761
- }).map((_ref2) => {
3905
+ }).map(_ref2 => {
3762
3906
  let {
3763
3907
  name
3764
3908
  } = _ref2;
@@ -3902,7 +4046,7 @@ let Styles = /*#__PURE__*/function (_StyleService) {
3902
4046
  return _createClass(Styles);
3903
4047
  }(StyleService);
3904
4048
 
3905
- const _excluded$3 = ["providerName"],
4049
+ const _excluded$4 = ["providerName"],
3906
4050
  _excluded2$2 = ["providerName"],
3907
4051
  _excluded3$2 = ["providerName"];
3908
4052
  /**
@@ -3939,7 +4083,7 @@ let GeocodeService = /*#__PURE__*/function (_Service) {
3939
4083
  let {
3940
4084
  providerName
3941
4085
  } = _ref,
3942
- query = _objectWithoutPropertiesLoose(_ref, _excluded$3);
4086
+ query = _objectWithoutPropertiesLoose(_ref, _excluded$4);
3943
4087
 
3944
4088
  return this.http.get("/geocode/" + providerName, query).json();
3945
4089
  }
@@ -4982,7 +5126,7 @@ let Account = /*#__PURE__*/function (_AccountService) {
4982
5126
  return Account;
4983
5127
  }(AccountService);
4984
5128
 
4985
- const _excluded$4 = ["username"];
5129
+ const _excluded$5 = ["username"];
4986
5130
  /**
4987
5131
  * @title Spatial Processing Core API
4988
5132
  * @version 1.0.0
@@ -5033,7 +5177,7 @@ let AccountPreviewService = /*#__PURE__*/function (_Service) {
5033
5177
  let {
5034
5178
  username
5035
5179
  } = _ref,
5036
- query = _objectWithoutPropertiesLoose(_ref, _excluded$4);
5180
+ query = _objectWithoutPropertiesLoose(_ref, _excluded$5);
5037
5181
 
5038
5182
  return this.http.post("/account/user/preview/" + username, toFormData(data), query).json();
5039
5183
  }
@@ -5983,7 +6127,7 @@ let Feedback = /*#__PURE__*/function (_FeedbackService) {
5983
6127
  return Feedback;
5984
6128
  }(FeedbackService);
5985
6129
 
5986
- const _excluded$5 = ["name", "z", "x", "y"];
6130
+ const _excluded$6 = ["name", "z", "x", "y"];
5987
6131
  /**
5988
6132
  * @title Spatial Processing Core API
5989
6133
  * @version 1.0.0
@@ -6021,7 +6165,7 @@ let VectorTileService = /*#__PURE__*/function (_Service) {
6021
6165
  x,
6022
6166
  y
6023
6167
  } = _ref,
6024
- query = _objectWithoutPropertiesLoose(_ref, _excluded$5);
6168
+ query = _objectWithoutPropertiesLoose(_ref, _excluded$6);
6025
6169
 
6026
6170
  return this.http.get("/vt/" + name + "/" + z + "/" + x + "/" + y + ".pbf", query).then(() => {});
6027
6171
  }
@@ -6273,6 +6417,7 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
6273
6417
  _this.statistic = new Statistic(_this.http);
6274
6418
  _this.feedback = new Feedback(_this.http);
6275
6419
  _this.vectorTiles = new VectorTiles(_this.http);
6420
+ _this.universalSearch = new UniversalSearchService(_this.http);
6276
6421
  _this.names = new Names({
6277
6422
  account: _this.account
6278
6423
  });
@@ -6449,7 +6594,7 @@ let EvergisTileLayer = /*#__PURE__*/function (_TileLayer) {
6449
6594
  return EvergisTileLayer;
6450
6595
  }(TileLayer);
6451
6596
 
6452
- const _excluded$6 = ["name", "style", "condition", "dataFilterId"];
6597
+ const _excluded$7 = ["name", "style", "condition", "dataFilterId"];
6453
6598
  let EvergisDynamicLayer = /*#__PURE__*/function (_DynamicLayer) {
6454
6599
  _inherits(EvergisDynamicLayer, _DynamicLayer);
6455
6600
 
@@ -6464,7 +6609,7 @@ let EvergisDynamicLayer = /*#__PURE__*/function (_DynamicLayer) {
6464
6609
  condition,
6465
6610
  dataFilterId
6466
6611
  } = _ref,
6467
- layerProps = _objectWithoutPropertiesLoose(_ref, _excluded$6);
6612
+ layerProps = _objectWithoutPropertiesLoose(_ref, _excluded$7);
6468
6613
 
6469
6614
  _classCallCheck(this, EvergisDynamicLayer);
6470
6615
 
@@ -6755,47 +6900,47 @@ function isFeatureLayer(layer) {
6755
6900
 
6756
6901
  /**
6757
6902
  *
6758
-
6903
+
6759
6904
  None
6760
-
6905
+
6761
6906
  Array
6762
-
6907
+
6763
6908
  Min
6764
-
6909
+
6765
6910
  Max
6766
-
6911
+
6767
6912
  Avg
6768
-
6913
+
6769
6914
  Sum
6770
-
6915
+
6771
6916
  Extent
6772
-
6917
+
6773
6918
  H3
6774
-
6919
+
6775
6920
  Count
6776
-
6921
+
6777
6922
  TotalCount
6778
-
6923
+
6779
6924
  DistinctCount
6780
-
6925
+
6781
6926
  First
6782
-
6927
+
6783
6928
  Last
6784
-
6929
+
6785
6930
  Median
6786
-
6931
+
6787
6932
  Mod
6788
-
6933
+
6789
6934
  StdDeviation
6790
-
6935
+
6791
6936
  SumOfProduct
6792
-
6937
+
6793
6938
  OnlyValue
6794
-
6939
+
6795
6940
  WeightedAvg
6796
-
6941
+
6797
6942
  DensityIndicators
6798
-
6943
+
6799
6944
  DividedSum
6800
6945
  */
6801
6946
  var AggregationFunction;
@@ -6825,29 +6970,29 @@ var AggregationFunction;
6825
6970
  })(AggregationFunction || (AggregationFunction = {}));
6826
6971
  /**
6827
6972
  * Types of the attributes that are supported by the system.
6828
-
6973
+
6829
6974
  Unknown
6830
-
6975
+
6831
6976
  String
6832
-
6977
+
6833
6978
  Int32
6834
-
6979
+
6835
6980
  Int64
6836
-
6981
+
6837
6982
  Double
6838
-
6983
+
6839
6984
  DateTime
6840
-
6985
+
6841
6986
  Boolean
6842
-
6987
+
6843
6988
  Point
6844
-
6989
+
6845
6990
  Polyline
6846
-
6991
+
6847
6992
  Polygon
6848
-
6993
+
6849
6994
  Multipoint
6850
-
6995
+
6851
6996
  H3Index
6852
6997
  */
6853
6998
 
@@ -6864,21 +7009,21 @@ var AttributeType;
6864
7009
  AttributeType["Boolean"] = "Boolean";
6865
7010
  AttributeType["Point"] = "Point";
6866
7011
  AttributeType["Polyline"] = "Polyline";
6867
- AttributeType["Polygon"] = "Polygon";
7012
+ AttributeType["MultiPolygon"] = "Polygon";
6868
7013
  AttributeType["Multipoint"] = "Multipoint";
6869
7014
  AttributeType["H3Index"] = "H3Index";
6870
7015
  })(AttributeType || (AttributeType = {}));
6871
7016
  /**
6872
7017
  * Describes classification methods.
6873
-
7018
+
6874
7019
  none
6875
-
7020
+
6876
7021
  naturalBreaks
6877
-
7022
+
6878
7023
  equalInterval
6879
-
7024
+
6880
7025
  quantile
6881
-
7026
+
6882
7027
  unique
6883
7028
  */
6884
7029
 
@@ -6894,11 +7039,11 @@ var ClassificationType;
6894
7039
  })(ClassificationType || (ClassificationType = {}));
6895
7040
  /**
6896
7041
  * Type of attribute.
6897
-
7042
+
6898
7043
  decimal
6899
-
7044
+
6900
7045
  dateTime
6901
-
7046
+
6902
7047
  text
6903
7048
  */
6904
7049
 
@@ -6912,55 +7057,55 @@ var ClassifyAttributeType;
6912
7057
  })(ClassifyAttributeType || (ClassifyAttributeType = {}));
6913
7058
  /**
6914
7059
  * Types of errors that can occur during layer initialize.
6915
-
7060
+
6916
7061
  Unknown
6917
-
7062
+
6918
7063
  SerializeError
6919
-
7064
+
6920
7065
  InvalidDataService
6921
-
7066
+
6922
7067
  InvalidConfiguration
6923
-
7068
+
6924
7069
  InvalidDataServiceName
6925
-
7070
+
6926
7071
  InvalidTableName
6927
-
7072
+
6928
7073
  InvalidLayerName
6929
-
7074
+
6930
7075
  ResourceNotFound
6931
-
7076
+
6932
7077
  InvalidCondition
6933
-
7078
+
6934
7079
  InvalidAttributes
6935
-
7080
+
6936
7081
  InvalidIdAttribute
6937
-
7082
+
6938
7083
  InvalidGeometryAttribute
6939
-
7084
+
6940
7085
  InvalidGeometryAttributeType
6941
-
7086
+
6942
7087
  InvalidColumnName
6943
-
7088
+
6944
7089
  InvalidIdColumnSettings
6945
-
7090
+
6946
7091
  ColumnNotExistsInTable
6947
-
7092
+
6948
7093
  InvalidStyle
6949
-
7094
+
6950
7095
  InvalidLayerType
6951
-
7096
+
6952
7097
  ColumnLoadingError
6953
-
7098
+
6954
7099
  InvalidAttributeFormat
6955
-
7100
+
6956
7101
  DataSourceNotFound
6957
-
7102
+
6958
7103
  DuplicateColumns
6959
-
7104
+
6960
7105
  DuplicateAttributes
6961
-
7106
+
6962
7107
  TableWithoutColumns
6963
-
7108
+
6964
7109
  InvalidTableReferenceConfiguration
6965
7110
  */
6966
7111
 
@@ -6996,15 +7141,15 @@ var ConfigurationErrorEnum;
6996
7141
  })(ConfigurationErrorEnum || (ConfigurationErrorEnum = {}));
6997
7142
  /**
6998
7143
  * Type of the error.
6999
-
7144
+
7000
7145
  ResourceLimitExceeded
7001
-
7146
+
7002
7147
  ResourceNotFound
7003
-
7148
+
7004
7149
  InternalError
7005
-
7150
+
7006
7151
  BadRequest
7007
-
7152
+
7008
7153
  DuplicateContent
7009
7154
  */
7010
7155
 
@@ -7059,9 +7204,9 @@ var ErrorType;
7059
7204
  })(ErrorType || (ErrorType = {}));
7060
7205
  /**
7061
7206
  * Type of the feature.
7062
-
7207
+
7063
7208
  Unknown
7064
-
7209
+
7065
7210
  GeometricFeature
7066
7211
  */
7067
7212
 
@@ -7074,11 +7219,11 @@ var FeatureType;
7074
7219
  })(FeatureType || (FeatureType = {}));
7075
7220
  /**
7076
7221
  * Sets whether font should be styled.
7077
-
7222
+
7078
7223
  normal
7079
-
7224
+
7080
7225
  oblique
7081
-
7226
+
7082
7227
  italic
7083
7228
  */
7084
7229
 
@@ -7092,27 +7237,27 @@ var FontStyle;
7092
7237
  })(FontStyle || (FontStyle = {}));
7093
7238
  /**
7094
7239
  * Specifies the weight (or boldness) of the font.
7095
-
7240
+
7096
7241
  Thin
7097
-
7242
+
7098
7243
  ExtraLight
7099
-
7244
+
7100
7245
  Light
7101
-
7246
+
7102
7247
  SemiLight
7103
-
7248
+
7104
7249
  Normal
7105
-
7250
+
7106
7251
  Medium
7107
-
7252
+
7108
7253
  DemiBold
7109
-
7254
+
7110
7255
  Bold
7111
-
7256
+
7112
7257
  ExtraBold
7113
-
7258
+
7114
7259
  Black
7115
-
7260
+
7116
7261
  ExtraBlack
7117
7262
  */
7118
7263
 
@@ -7134,17 +7279,17 @@ var FontWeight;
7134
7279
  })(FontWeight || (FontWeight = {}));
7135
7280
  /**
7136
7281
  *
7137
-
7282
+
7138
7283
  unknown
7139
-
7284
+
7140
7285
  point
7141
-
7286
+
7142
7287
  polyline
7143
-
7288
+
7144
7289
  multipolygon
7145
-
7290
+
7146
7291
  envelope
7147
-
7292
+
7148
7293
  multipoint
7149
7294
  */
7150
7295
 
@@ -7161,13 +7306,13 @@ var GeometryType;
7161
7306
  })(GeometryType || (GeometryType = {}));
7162
7307
  /**
7163
7308
  * Resource group.
7164
-
7309
+
7165
7310
  my
7166
-
7311
+
7167
7312
  role
7168
-
7313
+
7169
7314
  public
7170
-
7315
+
7171
7316
  all
7172
7317
  */
7173
7318
 
@@ -7183,9 +7328,9 @@ var Group;
7183
7328
  /**
7184
7329
  * The size of the line ending in a SPCore.Kernel.Rendering.Symbols.SimplePolylineSymbol. The values sent here can be one
7185
7330
  of the preset values, or a number representing the size of the ending in pixels for 1px wide lines.
7186
-
7331
+
7187
7332
  small
7188
-
7333
+
7189
7334
  large
7190
7335
  */
7191
7336
 
@@ -7198,19 +7343,19 @@ var LineEndingSize;
7198
7343
  })(LineEndingSize || (LineEndingSize = {}));
7199
7344
  /**
7200
7345
  * Type of the line ending.
7201
-
7346
+
7202
7347
  none
7203
-
7348
+
7204
7349
  arrow
7205
-
7350
+
7206
7351
  filledArrow
7207
-
7352
+
7208
7353
  square
7209
-
7354
+
7210
7355
  filledSquare
7211
-
7356
+
7212
7357
  circle
7213
-
7358
+
7214
7359
  filledCircle
7215
7360
  */
7216
7361
 
@@ -7228,15 +7373,15 @@ var LineEndingType;
7228
7373
  })(LineEndingType || (LineEndingType = {}));
7229
7374
  /**
7230
7375
  *
7231
-
7376
+
7232
7377
  Unknown
7233
-
7378
+
7234
7379
  union
7235
-
7380
+
7236
7381
  intersection
7237
-
7382
+
7238
7383
  subtraction
7239
-
7384
+
7240
7385
  symDifference
7241
7386
  */
7242
7387
 
@@ -7252,19 +7397,19 @@ var Operation;
7252
7397
  })(Operation || (Operation = {}));
7253
7398
  /**
7254
7399
  * User permissions for server security objects (services, projects etc.)
7255
-
7400
+
7256
7401
  none
7257
-
7402
+
7258
7403
  configure
7259
-
7404
+
7260
7405
  write
7261
-
7406
+
7262
7407
  read
7263
-
7408
+
7264
7409
  read,configure
7265
-
7410
+
7266
7411
  read,write
7267
-
7412
+
7268
7413
  read,write,configure
7269
7414
  */
7270
7415
 
@@ -7282,19 +7427,19 @@ var Permissions;
7282
7427
  })(Permissions || (Permissions = {}));
7283
7428
  /**
7284
7429
  * Type of the authorization policy.
7285
-
7430
+
7286
7431
  Unknown
7287
-
7432
+
7288
7433
  CreateTable
7289
-
7434
+
7290
7435
  CreateLayer
7291
-
7436
+
7292
7437
  CreateProject
7293
-
7438
+
7294
7439
  MaxFeaturesInOneTable
7295
-
7440
+
7296
7441
  MaxObjectsToExport
7297
-
7442
+
7298
7443
  MaxUploadContentSize
7299
7444
  */
7300
7445
 
@@ -7312,11 +7457,11 @@ var PolicyType;
7312
7457
  })(PolicyType || (PolicyType = {}));
7313
7458
  /**
7314
7459
  * Types of table reference.
7315
-
7460
+
7316
7461
  OneToMany
7317
-
7462
+
7318
7463
  OneToOne
7319
-
7464
+
7320
7465
  Intersect
7321
7466
  */
7322
7467
 
@@ -7330,19 +7475,19 @@ var ReferenceJoinType;
7330
7475
  })(ReferenceJoinType || (ReferenceJoinType = {}));
7331
7476
  /**
7332
7477
  * The `ResourceType` represents resource manager supports types.
7333
-
7478
+
7334
7479
  Unknown
7335
-
7480
+
7336
7481
  table
7337
-
7482
+
7338
7483
  layer
7339
-
7484
+
7340
7485
  project
7341
-
7486
+
7342
7487
  file
7343
-
7488
+
7344
7489
  feature
7345
-
7490
+
7346
7491
  tag
7347
7492
  */
7348
7493
 
@@ -7368,21 +7513,21 @@ var ResourceTypeLink;
7368
7513
  })(ResourceTypeLink || (ResourceTypeLink = {}));
7369
7514
  /**
7370
7515
  * Status of the server task.
7371
-
7516
+
7372
7517
  None
7373
-
7518
+
7374
7519
  Scheduled
7375
-
7520
+
7376
7521
  Planning
7377
-
7522
+
7378
7523
  Executing
7379
-
7524
+
7380
7525
  Completed
7381
-
7526
+
7382
7527
  Failed
7383
-
7528
+
7384
7529
  Canceled
7385
-
7530
+
7386
7531
  Timeout
7387
7532
  */
7388
7533
 
@@ -7401,11 +7546,11 @@ var ServerTaskStatus;
7401
7546
  })(ServerTaskStatus || (ServerTaskStatus = {}));
7402
7547
  /**
7403
7548
  * Simplify type.
7404
-
7549
+
7405
7550
  Basic
7406
-
7551
+
7407
7552
  PreserveTopology
7408
-
7553
+
7409
7554
  VW
7410
7555
  */
7411
7556
 
@@ -7419,11 +7564,11 @@ var SimplifyType;
7419
7564
  })(SimplifyType || (SimplifyType = {}));
7420
7565
  /**
7421
7566
  * The `StringSubType` provides information about string attribute subtype.
7422
-
7567
+
7423
7568
  None
7424
-
7569
+
7425
7570
  Image
7426
-
7571
+
7427
7572
  PkkCode
7428
7573
  */
7429
7574
 
@@ -7437,9 +7582,9 @@ var StringSubType;
7437
7582
  })(StringSubType || (StringSubType = {}));
7438
7583
  /**
7439
7584
  * Task owner group.
7440
-
7585
+
7441
7586
  my
7442
-
7587
+
7443
7588
  all
7444
7589
  */
7445
7590
 
@@ -7452,13 +7597,13 @@ var TaskGroup;
7452
7597
  })(TaskGroup || (TaskGroup = {}));
7453
7598
  /**
7454
7599
  * Sets the horizontal alignment of text.
7455
-
7600
+
7456
7601
  right
7457
-
7602
+
7458
7603
  left
7459
-
7604
+
7460
7605
  center
7461
-
7606
+
7462
7607
  justified
7463
7608
  */
7464
7609
 
@@ -7473,11 +7618,11 @@ var TextAlignment;
7473
7618
  })(TextAlignment || (TextAlignment = {}));
7474
7619
  /**
7475
7620
  * Sets the vertical alignment of text.
7476
-
7621
+
7477
7622
  top
7478
-
7623
+
7479
7624
  bottom
7480
-
7625
+
7481
7626
  middle
7482
7627
  */
7483
7628