@evergis/api 3.0.159 → 3.0.163

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,9 +29,6 @@ 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
- });
35
32
  return Constructor;
36
33
  }
37
34
 
@@ -65,9 +62,6 @@ function _inherits(subClass, superClass) {
65
62
  configurable: true
66
63
  }
67
64
  });
68
- Object.defineProperty(subClass, "prototype", {
69
- writable: false
70
- });
71
65
  if (superClass) _setPrototypeOf(subClass, superClass);
72
66
  }
73
67
 
@@ -126,8 +120,6 @@ function _assertThisInitialized(self) {
126
120
  function _possibleConstructorReturn(self, call) {
127
121
  if (call && (typeof call === "object" || typeof call === "function")) {
128
122
  return call;
129
- } else if (call !== void 0) {
130
- throw new TypeError("Derived constructors may only return object or undefined");
131
123
  }
132
124
 
133
125
  return _assertThisInitialized(self);
@@ -161,7 +153,7 @@ function _superPropBase(object, property) {
161
153
  return object;
162
154
  }
163
155
 
164
- function _get() {
156
+ function _get(target, property, receiver) {
165
157
  if (typeof Reflect !== "undefined" && Reflect.get) {
166
158
  _get = Reflect.get;
167
159
  } else {
@@ -172,14 +164,14 @@ function _get() {
172
164
  var desc = Object.getOwnPropertyDescriptor(base, property);
173
165
 
174
166
  if (desc.get) {
175
- return desc.get.call(arguments.length < 3 ? target : receiver);
167
+ return desc.get.call(receiver);
176
168
  }
177
169
 
178
170
  return desc.value;
179
171
  };
180
172
  }
181
173
 
182
- return _get.apply(this, arguments);
174
+ return _get(target, property, receiver || target);
183
175
  }
184
176
 
185
177
  let HttpClient = /*#__PURE__*/function () {
@@ -433,6 +425,184 @@ let BulkOperations = /*#__PURE__*/function (_BulkOperationsServic) {
433
425
  return _createClass(BulkOperations);
434
426
  }(BulkOperationsService);
435
427
 
428
+ const _excluded$1 = ["cameraId"],
429
+ _excluded2 = ["cameraId"],
430
+ _excluded3 = ["cameraId"],
431
+ _excluded4 = ["cameraId"],
432
+ _excluded5 = ["cameraId"];
433
+ /**
434
+ * @title Spatial Processing Core API
435
+ * @version 1.0.0
436
+ * @baseUrl /sp
437
+ */
438
+
439
+ let CamerasService = /*#__PURE__*/function (_Service) {
440
+ _inherits(CamerasService, _Service);
441
+
442
+ var _super = /*#__PURE__*/_createSuper(CamerasService);
443
+
444
+ function CamerasService() {
445
+ _classCallCheck(this, CamerasService);
446
+
447
+ return _super.apply(this, arguments);
448
+ }
449
+
450
+ _createClass(CamerasService, [{
451
+ key: "getCameras",
452
+ value:
453
+ /**
454
+ * No description
455
+ *
456
+ * @tags Cameras
457
+ * @name GetCameras
458
+ * @operationId CamerasController_GetCameras
459
+ * @summary Get cameras list.
460
+ * @request GET:/cameras
461
+ * @response `200` Success
462
+ */
463
+ function getCameras(query) {
464
+ return this.http.get("/cameras", query).json();
465
+ }
466
+ /**
467
+ * No description
468
+ *
469
+ * @tags Cameras
470
+ * @name GetArchiveFeed
471
+ * @operationId CamerasController_GetArchiveFeed
472
+ * @summary Streams an FLV-over-HTTP archive feed starting at specific time.
473
+ * @request GET:/cameras/{cameraId}/archiveFeed
474
+ * @response `200` Success
475
+ */
476
+
477
+ }, {
478
+ key: "getArchiveFeed",
479
+ value: function getArchiveFeed(_ref) {
480
+ let {
481
+ cameraId
482
+ } = _ref,
483
+ query = _objectWithoutPropertiesLoose(_ref, _excluded$1);
484
+
485
+ return this.http.get("/cameras/" + cameraId + "/archiveFeed", query).blob();
486
+ }
487
+ /**
488
+ * No description
489
+ *
490
+ * @tags Cameras
491
+ * @name GetArchiveTimeline
492
+ * @operationId CamerasController_GetArchiveTimeline
493
+ * @summary Returns a list of records available within a given timeframe.
494
+ * @request GET:/cameras/{cameraId}/archiveTimeline
495
+ * @response `200` Success
496
+ */
497
+
498
+ }, {
499
+ key: "getArchiveTimeline",
500
+ value: function getArchiveTimeline(_ref2) {
501
+ let {
502
+ cameraId
503
+ } = _ref2,
504
+ query = _objectWithoutPropertiesLoose(_ref2, _excluded2);
505
+
506
+ return this.http.get("/cameras/" + cameraId + "/archiveTimeline", query).json();
507
+ }
508
+ /**
509
+ * No description
510
+ *
511
+ * @tags Cameras
512
+ * @name GetArchiveCalendar
513
+ * @operationId CamerasController_GetArchiveCalendar
514
+ * @summary Returns a list of records available within a given timeframe.
515
+ * @request GET:/cameras/{cameraId}/archiveCalendar
516
+ * @response `200` Success
517
+ */
518
+
519
+ }, {
520
+ key: "getArchiveCalendar",
521
+ value: function getArchiveCalendar(_ref3) {
522
+ let {
523
+ cameraId
524
+ } = _ref3,
525
+ query = _objectWithoutPropertiesLoose(_ref3, _excluded3);
526
+
527
+ return this.http.get("/cameras/" + cameraId + "/archiveCalendar", query).json();
528
+ }
529
+ /**
530
+ * No description
531
+ *
532
+ * @tags Cameras
533
+ * @name GetArchiveSnapshot
534
+ * @operationId CamerasController_GetArchiveSnapshot
535
+ * @summary Returns a JPEG image from the Camera’s archive.
536
+ * @request GET:/cameras/{cameraId}/archiveSnapshot
537
+ * @response `200` Success
538
+ */
539
+
540
+ }, {
541
+ key: "getArchiveSnapshot",
542
+ value: function getArchiveSnapshot(_ref4) {
543
+ let {
544
+ cameraId
545
+ } = _ref4,
546
+ query = _objectWithoutPropertiesLoose(_ref4, _excluded4);
547
+
548
+ return this.http.get("/cameras/" + cameraId + "/archiveSnapshot", query).blob();
549
+ }
550
+ /**
551
+ * No description
552
+ *
553
+ * @tags Cameras
554
+ * @name GetLiveFeed
555
+ * @operationId CamerasController_GetLiveFeed
556
+ * @summary Streams live video feed from the Camera.
557
+ * @request GET:/cameras/{cameraId}/liveFeed
558
+ * @response `200` Success
559
+ */
560
+
561
+ }, {
562
+ key: "getLiveFeed",
563
+ value: function getLiveFeed(_ref5) {
564
+ let {
565
+ cameraId
566
+ } = _ref5,
567
+ query = _objectWithoutPropertiesLoose(_ref5, _excluded5);
568
+
569
+ return this.http.get("/cameras/" + cameraId + "/liveFeed", query).blob();
570
+ }
571
+ /**
572
+ * No description
573
+ *
574
+ * @tags Cameras
575
+ * @name GetLiveSnapshot
576
+ * @operationId CamerasController_GetLiveSnapshot
577
+ * @summary Returns a JPEG image from the Camera’s live feed.
578
+ * @request GET:/cameras/{cameraId}/liveSnapshot
579
+ * @response `200` Success
580
+ */
581
+
582
+ }, {
583
+ key: "getLiveSnapshot",
584
+ value: function getLiveSnapshot(cameraId) {
585
+ return this.http.get("/cameras/" + cameraId + "/liveSnapshot").blob();
586
+ }
587
+ }]);
588
+
589
+ return CamerasService;
590
+ }(Service);
591
+
592
+ let Cameras = /*#__PURE__*/function (_CamerasService) {
593
+ _inherits(Cameras, _CamerasService);
594
+
595
+ var _super = /*#__PURE__*/_createSuper(Cameras);
596
+
597
+ function Cameras() {
598
+ _classCallCheck(this, Cameras);
599
+
600
+ return _super.apply(this, arguments);
601
+ }
602
+
603
+ return _createClass(Cameras);
604
+ }(CamerasService);
605
+
436
606
  /**
437
607
  * @title Spatial Processing Core API
438
608
  * @version 1.0.0
@@ -876,13 +1046,29 @@ let ImportService = /*#__PURE__*/function (_Service) {
876
1046
  value: function getExternalPbfLayers(query) {
877
1047
  return this.http.get("/import/pbf", query).json();
878
1048
  }
1049
+ /**
1050
+ * No description
1051
+ *
1052
+ * @tags ImportService
1053
+ * @name GetExternalArcgisFsLayers
1054
+ * @operationId ImportServiceController_GetExternalArcgisFSLayers
1055
+ * @summary Get list of external ArcGis FeatureServer layers.
1056
+ * @request GET:/import/arcgisfeatureservice
1057
+ * @response `200` Success
1058
+ */
1059
+
1060
+ }, {
1061
+ key: "getExternalArcgisFsLayers",
1062
+ value: function getExternalArcgisFsLayers(query) {
1063
+ return this.http.get("/import/arcgisfeatureservice", query).json();
1064
+ }
879
1065
  /**
880
1066
  * No description
881
1067
  *
882
1068
  * @tags ImportService
883
1069
  * @name GetExternalArcGisLayers
884
1070
  * @operationId ImportServiceController_GetExternalArcGisLayers
885
- * @summary Get list of external ArcGis map service layers.
1071
+ * @summary Get list of external ArcGis MapServer layers.
886
1072
  * @request GET:/import/arcgismapservice
887
1073
  * @response `200` Success
888
1074
  */
@@ -1101,8 +1287,8 @@ let Notification = /*#__PURE__*/function (_NotificationService) {
1101
1287
  || event.code === 4002
1102
1288
  /* InvalidSession */
1103
1289
  ) {
1104
- _this.connectStatus = ConnectionStatus.SessionClosed;
1105
- } else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
1290
+ _this.connectStatus = ConnectionStatus.SessionClosed;
1291
+ } else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
1106
1292
  _this.connectStatus = ConnectionStatus.Break;
1107
1293
  _this.reconnectTries++;
1108
1294
 
@@ -1669,7 +1855,7 @@ let Scheduler = /*#__PURE__*/function (_SchedulerService) {
1669
1855
  const taskProgress = await this.getTaskProgress(id);
1670
1856
  this.resolveTaskStatus(taskProgress, resolve, reject);
1671
1857
 
1672
- const taskResultCallback = async _ref => {
1858
+ const taskResultCallback = async (_ref) => {
1673
1859
  let {
1674
1860
  data
1675
1861
  } = _ref;
@@ -1712,11 +1898,11 @@ let Scheduler = /*#__PURE__*/function (_SchedulerService) {
1712
1898
  return Scheduler;
1713
1899
  }(SchedulerService);
1714
1900
 
1715
- const _excluded$1 = ["name"],
1716
- _excluded2 = ["name"],
1717
- _excluded3 = ["name"],
1718
- _excluded4 = ["name", "id"],
1719
- _excluded5 = ["name", "id"],
1901
+ const _excluded$2 = ["name"],
1902
+ _excluded2$1 = ["name"],
1903
+ _excluded3$1 = ["name"],
1904
+ _excluded4$1 = ["name", "id"],
1905
+ _excluded5$1 = ["name", "id"],
1720
1906
  _excluded6 = ["name", "id"],
1721
1907
  _excluded7 = ["name", "x", "y", "z"],
1722
1908
  _excluded8 = ["name"],
@@ -2220,7 +2406,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
2220
2406
  let {
2221
2407
  name
2222
2408
  } = _ref,
2223
- query = _objectWithoutPropertiesLoose(_ref, _excluded$1);
2409
+ query = _objectWithoutPropertiesLoose(_ref, _excluded$2);
2224
2410
 
2225
2411
  return this.http.get("/layers/" + name + "/features", query).json();
2226
2412
  }
@@ -2241,7 +2427,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
2241
2427
  let {
2242
2428
  name
2243
2429
  } = _ref2,
2244
- query = _objectWithoutPropertiesLoose(_ref2, _excluded2);
2430
+ query = _objectWithoutPropertiesLoose(_ref2, _excluded2$1);
2245
2431
 
2246
2432
  return this.http.delete("/layers/" + name + "/features", null, query).json();
2247
2433
  }
@@ -2294,7 +2480,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
2294
2480
  let {
2295
2481
  name
2296
2482
  } = _ref3,
2297
- query = _objectWithoutPropertiesLoose(_ref3, _excluded3);
2483
+ query = _objectWithoutPropertiesLoose(_ref3, _excluded3$1);
2298
2484
 
2299
2485
  return this.http.get("/layers/" + name + "/features/contains", query).json();
2300
2486
  }
@@ -2316,7 +2502,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
2316
2502
  name,
2317
2503
  id
2318
2504
  } = _ref4,
2319
- query = _objectWithoutPropertiesLoose(_ref4, _excluded4);
2505
+ query = _objectWithoutPropertiesLoose(_ref4, _excluded4$1);
2320
2506
 
2321
2507
  return this.http.get("/layers/" + name + "/features/" + id, query).json();
2322
2508
  }
@@ -2338,7 +2524,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
2338
2524
  name,
2339
2525
  id
2340
2526
  } = _ref5,
2341
- query = _objectWithoutPropertiesLoose(_ref5, _excluded5);
2527
+ query = _objectWithoutPropertiesLoose(_ref5, _excluded5$1);
2342
2528
 
2343
2529
  return this.http.post("/layers/" + name + "/features/" + id + "/unite", data, query).json();
2344
2530
  }
@@ -2889,7 +3075,7 @@ function notError(v) {
2889
3075
  return !isError(v);
2890
3076
  }
2891
3077
 
2892
- const _excluded$2 = ["remote"];
3078
+ const _excluded$3 = ["remote"];
2893
3079
  let Layers = /*#__PURE__*/function (_LayersService) {
2894
3080
  _inherits(Layers, _LayersService);
2895
3081
 
@@ -2929,7 +3115,7 @@ let Layers = /*#__PURE__*/function (_LayersService) {
2929
3115
  let {
2930
3116
  remote
2931
3117
  } = _ref,
2932
- configuration = _objectWithoutPropertiesLoose(_ref, _excluded$2);
3118
+ configuration = _objectWithoutPropertiesLoose(_ref, _excluded$3);
2933
3119
 
2934
3120
  if (remote) {
2935
3121
  return this.publishRemoteTileService(configuration);
@@ -2978,10 +3164,10 @@ function isTileLayerService(layer) {
2978
3164
  return layer.type && /TileService/.test(layer.type);
2979
3165
  }
2980
3166
 
2981
- const _excluded$3 = ["name"],
2982
- _excluded2$1 = ["name"],
2983
- _excluded3$1 = ["name"],
2984
- _excluded4$1 = ["name"];
3167
+ const _excluded$4 = ["name"],
3168
+ _excluded2$2 = ["name"],
3169
+ _excluded3$2 = ["name"],
3170
+ _excluded4$2 = ["name"];
2985
3171
  /**
2986
3172
  * @title Spatial Processing Core API
2987
3173
  * @version 1.0.0
@@ -3160,7 +3346,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
3160
3346
  let {
3161
3347
  name
3162
3348
  } = _ref,
3163
- query = _objectWithoutPropertiesLoose(_ref, _excluded$3);
3349
+ query = _objectWithoutPropertiesLoose(_ref, _excluded$4);
3164
3350
 
3165
3351
  return this.http.get("/tables/" + name + "/data", query).json();
3166
3352
  }
@@ -3197,7 +3383,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
3197
3383
  let {
3198
3384
  name
3199
3385
  } = _ref2,
3200
- query = _objectWithoutPropertiesLoose(_ref2, _excluded2$1);
3386
+ query = _objectWithoutPropertiesLoose(_ref2, _excluded2$2);
3201
3387
 
3202
3388
  return this.http.patch("/tables/" + name + "/data", data, query).then(() => {});
3203
3389
  }
@@ -3218,7 +3404,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
3218
3404
  let {
3219
3405
  name
3220
3406
  } = _ref3,
3221
- query = _objectWithoutPropertiesLoose(_ref3, _excluded3$1);
3407
+ query = _objectWithoutPropertiesLoose(_ref3, _excluded3$2);
3222
3408
 
3223
3409
  return this.http.delete("/tables/" + name + "/data", null, query).then(() => {});
3224
3410
  }
@@ -3239,7 +3425,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
3239
3425
  let {
3240
3426
  name
3241
3427
  } = _ref4,
3242
- query = _objectWithoutPropertiesLoose(_ref4, _excluded4$1);
3428
+ query = _objectWithoutPropertiesLoose(_ref4, _excluded4$2);
3243
3429
 
3244
3430
  return this.http.get("/tables/" + name + "/data/unique-values", query).json();
3245
3431
  }
@@ -3987,12 +4173,12 @@ let Resources = /*#__PURE__*/function () {
3987
4173
  }, {
3988
4174
  key: "getDependentNames",
3989
4175
  value: function getDependentNames(deps, depType) {
3990
- return deps.filter(_ref => {
4176
+ return deps.filter((_ref) => {
3991
4177
  let {
3992
4178
  type
3993
4179
  } = _ref;
3994
4180
  return type === depType;
3995
- }).map(_ref2 => {
4181
+ }).map((_ref2) => {
3996
4182
  let {
3997
4183
  name
3998
4184
  } = _ref2;
@@ -4136,9 +4322,9 @@ let Styles = /*#__PURE__*/function (_StyleService) {
4136
4322
  return _createClass(Styles);
4137
4323
  }(StyleService);
4138
4324
 
4139
- const _excluded$4 = ["providerName"],
4140
- _excluded2$2 = ["providerName"],
4141
- _excluded3$2 = ["providerName"];
4325
+ const _excluded$5 = ["providerName"],
4326
+ _excluded2$3 = ["providerName"],
4327
+ _excluded3$3 = ["providerName"];
4142
4328
  /**
4143
4329
  * @title Spatial Processing Core API
4144
4330
  * @version 1.0.0
@@ -4173,7 +4359,7 @@ let GeocodeService = /*#__PURE__*/function (_Service) {
4173
4359
  let {
4174
4360
  providerName
4175
4361
  } = _ref,
4176
- query = _objectWithoutPropertiesLoose(_ref, _excluded$4);
4362
+ query = _objectWithoutPropertiesLoose(_ref, _excluded$5);
4177
4363
 
4178
4364
  return this.http.get("/geocode/" + providerName, query).json();
4179
4365
  }
@@ -4194,7 +4380,7 @@ let GeocodeService = /*#__PURE__*/function (_Service) {
4194
4380
  let {
4195
4381
  providerName
4196
4382
  } = _ref2,
4197
- query = _objectWithoutPropertiesLoose(_ref2, _excluded2$2);
4383
+ query = _objectWithoutPropertiesLoose(_ref2, _excluded2$3);
4198
4384
 
4199
4385
  return this.http.get("/geocode/" + providerName + "/geocodeByPoint", query).json();
4200
4386
  }
@@ -4215,7 +4401,7 @@ let GeocodeService = /*#__PURE__*/function (_Service) {
4215
4401
  let {
4216
4402
  providerName
4217
4403
  } = _ref3,
4218
- query = _objectWithoutPropertiesLoose(_ref3, _excluded3$2);
4404
+ query = _objectWithoutPropertiesLoose(_ref3, _excluded3$3);
4219
4405
 
4220
4406
  return this.http.get("/geocode/" + providerName + "/suggest", query).json();
4221
4407
  }
@@ -5200,7 +5386,7 @@ let Account = /*#__PURE__*/function (_AccountService) {
5200
5386
  return Account;
5201
5387
  }(AccountService);
5202
5388
 
5203
- const _excluded$5 = ["username"];
5389
+ const _excluded$6 = ["username"];
5204
5390
  /**
5205
5391
  * @title Spatial Processing Core API
5206
5392
  * @version 1.0.0
@@ -5251,7 +5437,7 @@ let AccountPreviewService = /*#__PURE__*/function (_Service) {
5251
5437
  let {
5252
5438
  username
5253
5439
  } = _ref,
5254
- query = _objectWithoutPropertiesLoose(_ref, _excluded$5);
5440
+ query = _objectWithoutPropertiesLoose(_ref, _excluded$6);
5255
5441
 
5256
5442
  return this.http.post("/account/user/preview/" + username, toFormData(data), query).json();
5257
5443
  }
@@ -6201,7 +6387,7 @@ let Feedback = /*#__PURE__*/function (_FeedbackService) {
6201
6387
  return Feedback;
6202
6388
  }(FeedbackService);
6203
6389
 
6204
- const _excluded$6 = ["name", "z", "x", "y"];
6390
+ const _excluded$7 = ["name", "z", "x", "y"];
6205
6391
  /**
6206
6392
  * @title Spatial Processing Core API
6207
6393
  * @version 1.0.0
@@ -6239,7 +6425,7 @@ let VectorTileService = /*#__PURE__*/function (_Service) {
6239
6425
  x,
6240
6426
  y
6241
6427
  } = _ref,
6242
- query = _objectWithoutPropertiesLoose(_ref, _excluded$6);
6428
+ query = _objectWithoutPropertiesLoose(_ref, _excluded$7);
6243
6429
 
6244
6430
  return this.http.get("/vt/" + name + "/" + z + "/" + x + "/" + y + ".pbf", query).then(() => {});
6245
6431
  }
@@ -6479,6 +6665,7 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
6479
6665
  _this.filters = new Filters(_this.http);
6480
6666
  _this.import = new Import(_this.http);
6481
6667
  _this.geocode = new Geocode(_this.http);
6668
+ _this.cameras = new Cameras(_this.http);
6482
6669
  _this.print = new Print(_this.http);
6483
6670
  _this.tools = new Tools(_this.http);
6484
6671
  _this.resourceCatalog = new ResourceCatalog(_this.http);
@@ -6668,7 +6855,7 @@ let EvergisTileLayer = /*#__PURE__*/function (_TileLayer) {
6668
6855
  return EvergisTileLayer;
6669
6856
  }(TileLayer);
6670
6857
 
6671
- const _excluded$7 = ["name", "style", "condition", "dataFilterId"];
6858
+ const _excluded$8 = ["name", "style", "condition", "dataFilterId"];
6672
6859
  let EvergisDynamicLayer = /*#__PURE__*/function (_DynamicLayer) {
6673
6860
  _inherits(EvergisDynamicLayer, _DynamicLayer);
6674
6861
 
@@ -6683,7 +6870,7 @@ let EvergisDynamicLayer = /*#__PURE__*/function (_DynamicLayer) {
6683
6870
  condition,
6684
6871
  dataFilterId
6685
6872
  } = _ref,
6686
- layerProps = _objectWithoutPropertiesLoose(_ref, _excluded$7);
6873
+ layerProps = _objectWithoutPropertiesLoose(_ref, _excluded$8);
6687
6874
 
6688
6875
  _classCallCheck(this, EvergisDynamicLayer);
6689
6876
 
@@ -6974,47 +7161,47 @@ function isFeatureLayer(layer) {
6974
7161
 
6975
7162
  /**
6976
7163
  *
6977
-
7164
+
6978
7165
  None
6979
-
7166
+
6980
7167
  Array
6981
-
7168
+
6982
7169
  Min
6983
-
7170
+
6984
7171
  Max
6985
-
7172
+
6986
7173
  Avg
6987
-
7174
+
6988
7175
  Sum
6989
-
7176
+
6990
7177
  Extent
6991
-
7178
+
6992
7179
  H3
6993
-
7180
+
6994
7181
  Count
6995
-
7182
+
6996
7183
  TotalCount
6997
-
7184
+
6998
7185
  DistinctCount
6999
-
7186
+
7000
7187
  First
7001
-
7188
+
7002
7189
  Last
7003
-
7190
+
7004
7191
  Median
7005
-
7192
+
7006
7193
  Mod
7007
-
7194
+
7008
7195
  StdDeviation
7009
-
7196
+
7010
7197
  SumOfProduct
7011
-
7198
+
7012
7199
  OnlyValue
7013
-
7200
+
7014
7201
  WeightedAvg
7015
-
7202
+
7016
7203
  DensityIndicators
7017
-
7204
+
7018
7205
  DividedSum
7019
7206
  */
7020
7207
  var AggregationFunction;
@@ -7043,31 +7230,54 @@ var AggregationFunction;
7043
7230
  AggregationFunction["DividedSum"] = "DividedSum";
7044
7231
  })(AggregationFunction || (AggregationFunction = {}));
7045
7232
  /**
7233
+ * Attribute selector type.
7234
+
7235
+ None
7236
+
7237
+ SelectFromHandBook
7238
+
7239
+ SelectFromRange
7240
+
7241
+ ViewHandBook
7242
+ */
7243
+
7244
+
7245
+ var AttributeSelectorType;
7246
+
7247
+ (function (AttributeSelectorType) {
7248
+ AttributeSelectorType["None"] = "None";
7249
+ AttributeSelectorType["SelectFromHandBook"] = "SelectFromHandBook";
7250
+ AttributeSelectorType["SelectFromRange"] = "SelectFromRange";
7251
+ AttributeSelectorType["ViewHandBook"] = "ViewHandBook";
7252
+ })(AttributeSelectorType || (AttributeSelectorType = {}));
7253
+ /**
7046
7254
  * Types of the attributes that are supported by the system.
7047
-
7255
+
7048
7256
  Unknown
7049
-
7257
+
7050
7258
  String
7051
-
7259
+
7052
7260
  Int32
7053
-
7261
+
7054
7262
  Int64
7055
-
7263
+
7056
7264
  Double
7057
-
7265
+
7058
7266
  DateTime
7059
-
7267
+
7060
7268
  Boolean
7061
-
7269
+
7062
7270
  Point
7063
-
7271
+
7064
7272
  Polyline
7065
-
7066
- Polygon
7067
-
7273
+
7274
+ MultiPolygon
7275
+
7068
7276
  Multipoint
7069
-
7277
+
7070
7278
  H3Index
7279
+
7280
+ Json
7071
7281
  */
7072
7282
 
7073
7283
 
@@ -7083,21 +7293,22 @@ var AttributeType;
7083
7293
  AttributeType["Boolean"] = "Boolean";
7084
7294
  AttributeType["Point"] = "Point";
7085
7295
  AttributeType["Polyline"] = "Polyline";
7086
- AttributeType["MultiPolygon"] = "Polygon";
7296
+ AttributeType["MultiPolygon"] = "MultiPolygon";
7087
7297
  AttributeType["Multipoint"] = "Multipoint";
7088
7298
  AttributeType["H3Index"] = "H3Index";
7299
+ AttributeType["Json"] = "Json";
7089
7300
  })(AttributeType || (AttributeType = {}));
7090
7301
  /**
7091
7302
  * Describes classification methods.
7092
-
7303
+
7093
7304
  none
7094
-
7305
+
7095
7306
  naturalBreaks
7096
-
7307
+
7097
7308
  equalInterval
7098
-
7309
+
7099
7310
  quantile
7100
-
7311
+
7101
7312
  unique
7102
7313
  */
7103
7314
 
@@ -7112,12 +7323,12 @@ var ClassificationType;
7112
7323
  ClassificationType["Unique"] = "unique";
7113
7324
  })(ClassificationType || (ClassificationType = {}));
7114
7325
  /**
7115
- * Type of attribute.
7116
-
7326
+ *
7327
+
7117
7328
  decimal
7118
-
7329
+
7119
7330
  dateTime
7120
-
7331
+
7121
7332
  text
7122
7333
  */
7123
7334
 
@@ -7131,55 +7342,55 @@ var ClassifyAttributeType;
7131
7342
  })(ClassifyAttributeType || (ClassifyAttributeType = {}));
7132
7343
  /**
7133
7344
  * Types of errors that can occur during layer initialize.
7134
-
7345
+
7135
7346
  Unknown
7136
-
7347
+
7137
7348
  SerializeError
7138
-
7349
+
7139
7350
  InvalidDataService
7140
-
7351
+
7141
7352
  InvalidConfiguration
7142
-
7353
+
7143
7354
  InvalidDataServiceName
7144
-
7355
+
7145
7356
  InvalidTableName
7146
-
7357
+
7147
7358
  InvalidLayerName
7148
-
7359
+
7149
7360
  ResourceNotFound
7150
-
7361
+
7151
7362
  InvalidCondition
7152
-
7363
+
7153
7364
  InvalidAttributes
7154
-
7365
+
7155
7366
  InvalidIdAttribute
7156
-
7367
+
7157
7368
  InvalidGeometryAttribute
7158
-
7369
+
7159
7370
  InvalidGeometryAttributeType
7160
-
7371
+
7161
7372
  InvalidColumnName
7162
-
7373
+
7163
7374
  InvalidIdColumnSettings
7164
-
7375
+
7165
7376
  ColumnNotExistsInTable
7166
-
7377
+
7167
7378
  InvalidStyle
7168
-
7379
+
7169
7380
  InvalidLayerType
7170
-
7381
+
7171
7382
  ColumnLoadingError
7172
-
7383
+
7173
7384
  InvalidAttributeFormat
7174
-
7385
+
7175
7386
  DataSourceNotFound
7176
-
7387
+
7177
7388
  DuplicateColumns
7178
-
7389
+
7179
7390
  DuplicateAttributes
7180
-
7391
+
7181
7392
  TableWithoutColumns
7182
-
7393
+
7183
7394
  InvalidTableReferenceConfiguration
7184
7395
  */
7185
7396
 
@@ -7215,15 +7426,15 @@ var ConfigurationErrorEnum;
7215
7426
  })(ConfigurationErrorEnum || (ConfigurationErrorEnum = {}));
7216
7427
  /**
7217
7428
  * Type of the error.
7218
-
7429
+
7219
7430
  ResourceLimitExceeded
7220
-
7431
+
7221
7432
  ResourceNotFound
7222
-
7433
+
7223
7434
  InternalError
7224
-
7435
+
7225
7436
  BadRequest
7226
-
7437
+
7227
7438
  DuplicateContent
7228
7439
  */
7229
7440
 
@@ -7274,9 +7485,9 @@ var ErrorType;
7274
7485
  })(ErrorType || (ErrorType = {}));
7275
7486
  /**
7276
7487
  * Type of the feature.
7277
-
7488
+
7278
7489
  Unknown
7279
-
7490
+
7280
7491
  GeometricFeature
7281
7492
  */
7282
7493
 
@@ -7289,11 +7500,11 @@ var FeatureType;
7289
7500
  })(FeatureType || (FeatureType = {}));
7290
7501
  /**
7291
7502
  * Sets whether font should be styled.
7292
-
7503
+
7293
7504
  normal
7294
-
7505
+
7295
7506
  oblique
7296
-
7507
+
7297
7508
  italic
7298
7509
  */
7299
7510
 
@@ -7307,27 +7518,27 @@ var FontStyle;
7307
7518
  })(FontStyle || (FontStyle = {}));
7308
7519
  /**
7309
7520
  * Specifies the weight (or boldness) of the font.
7310
-
7521
+
7311
7522
  Thin
7312
-
7523
+
7313
7524
  ExtraLight
7314
-
7525
+
7315
7526
  Light
7316
-
7527
+
7317
7528
  SemiLight
7318
-
7529
+
7319
7530
  Normal
7320
-
7531
+
7321
7532
  Medium
7322
-
7533
+
7323
7534
  DemiBold
7324
-
7535
+
7325
7536
  Bold
7326
-
7537
+
7327
7538
  ExtraBold
7328
-
7539
+
7329
7540
  Black
7330
-
7541
+
7331
7542
  ExtraBlack
7332
7543
  */
7333
7544
 
@@ -7349,17 +7560,17 @@ var FontWeight;
7349
7560
  })(FontWeight || (FontWeight = {}));
7350
7561
  /**
7351
7562
  *
7352
-
7563
+
7353
7564
  unknown
7354
-
7565
+
7355
7566
  point
7356
-
7567
+
7357
7568
  polyline
7358
-
7569
+
7359
7570
  multipolygon
7360
-
7571
+
7361
7572
  envelope
7362
-
7573
+
7363
7574
  multipoint
7364
7575
  */
7365
7576
 
@@ -7376,13 +7587,13 @@ var GeometryType;
7376
7587
  })(GeometryType || (GeometryType = {}));
7377
7588
  /**
7378
7589
  * Resource group.
7379
-
7590
+
7380
7591
  my
7381
-
7592
+
7382
7593
  role
7383
-
7594
+
7384
7595
  public
7385
-
7596
+
7386
7597
  all
7387
7598
  */
7388
7599
 
@@ -7397,13 +7608,13 @@ var Group;
7397
7608
  })(Group || (Group = {}));
7398
7609
  /**
7399
7610
  * Specifies the settings of line cap. This is applied to the beginning and end of each non-closed line.
7400
-
7611
+
7401
7612
  Flat
7402
-
7613
+
7403
7614
  Square
7404
-
7615
+
7405
7616
  Round
7406
-
7617
+
7407
7618
  Triangle
7408
7619
  */
7409
7620
 
@@ -7418,29 +7629,29 @@ var LineCapStyle;
7418
7629
  })(LineCapStyle || (LineCapStyle = {}));
7419
7630
  /**
7420
7631
  * Type of the line ending.
7421
-
7632
+
7422
7633
  none
7423
-
7634
+
7424
7635
  arrow
7425
-
7636
+
7426
7637
  filledArrow
7427
-
7638
+
7428
7639
  square
7429
-
7640
+
7430
7641
  filledSquare
7431
-
7642
+
7432
7643
  circle
7433
-
7644
+
7434
7645
  filledCircle
7435
-
7646
+
7436
7647
  diamond
7437
-
7648
+
7438
7649
  filledDiamond
7439
-
7650
+
7440
7651
  roundSquare
7441
-
7652
+
7442
7653
  filledRoundSquare
7443
-
7654
+
7444
7655
  svg
7445
7656
  */
7446
7657
 
@@ -7463,11 +7674,11 @@ var LineEndingType;
7463
7674
  })(LineEndingType || (LineEndingType = {}));
7464
7675
  /**
7465
7676
  * Specifies the settings of lines join. This is applied to corners in lines and rectangles.
7466
-
7677
+
7467
7678
  Miter
7468
-
7679
+
7469
7680
  Bevel
7470
-
7681
+
7471
7682
  Round
7472
7683
  */
7473
7684
 
@@ -7481,15 +7692,15 @@ var LineJoinType;
7481
7692
  })(LineJoinType || (LineJoinType = {}));
7482
7693
  /**
7483
7694
  *
7484
-
7695
+
7485
7696
  Unknown
7486
-
7697
+
7487
7698
  union
7488
-
7699
+
7489
7700
  intersection
7490
-
7701
+
7491
7702
  subtraction
7492
-
7703
+
7493
7704
  symDifference
7494
7705
  */
7495
7706
 
@@ -7505,9 +7716,9 @@ var Operation;
7505
7716
  })(Operation || (Operation = {}));
7506
7717
  /**
7507
7718
  * Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.
7508
-
7719
+
7509
7720
  xyz
7510
-
7721
+
7511
7722
  tms
7512
7723
  */
7513
7724
 
@@ -7520,19 +7731,19 @@ var PbfSchema;
7520
7731
  })(PbfSchema || (PbfSchema = {}));
7521
7732
  /**
7522
7733
  * User permissions for server security objects (services, projects etc.)
7523
-
7734
+
7524
7735
  none
7525
-
7736
+
7526
7737
  configure
7527
-
7738
+
7528
7739
  write
7529
-
7740
+
7530
7741
  read
7531
-
7742
+
7532
7743
  read,configure
7533
-
7744
+
7534
7745
  read,write
7535
-
7746
+
7536
7747
  read,write,configure
7537
7748
  */
7538
7749
 
@@ -7550,19 +7761,19 @@ var Permissions;
7550
7761
  })(Permissions || (Permissions = {}));
7551
7762
  /**
7552
7763
  * Type of the authorization policy.
7553
-
7764
+
7554
7765
  Unknown
7555
-
7766
+
7556
7767
  CreateTable
7557
-
7768
+
7558
7769
  CreateLayer
7559
-
7770
+
7560
7771
  CreateProject
7561
-
7772
+
7562
7773
  MaxFeaturesInOneTable
7563
-
7774
+
7564
7775
  MaxObjectsToExport
7565
-
7776
+
7566
7777
  MaxUploadContentSize
7567
7778
  */
7568
7779
 
@@ -7580,17 +7791,17 @@ var PolicyType;
7580
7791
  })(PolicyType || (PolicyType = {}));
7581
7792
  /**
7582
7793
  * Types of table reference.
7583
-
7794
+
7584
7795
  OneToMany
7585
-
7796
+
7586
7797
  OneToOne
7587
-
7798
+
7588
7799
  Intersect
7589
-
7800
+
7590
7801
  RightJoin
7591
-
7802
+
7592
7803
  FullJoin
7593
-
7804
+
7594
7805
  CrossJoin
7595
7806
  */
7596
7807
 
@@ -7607,19 +7818,19 @@ var ReferenceJoinType;
7607
7818
  })(ReferenceJoinType || (ReferenceJoinType = {}));
7608
7819
  /**
7609
7820
  * The `ResourceType` represents resource manager supports types.
7610
-
7821
+
7611
7822
  Unknown
7612
-
7823
+
7613
7824
  table
7614
-
7825
+
7615
7826
  layer
7616
-
7827
+
7617
7828
  project
7618
-
7829
+
7619
7830
  file
7620
-
7831
+
7621
7832
  feature
7622
-
7833
+
7623
7834
  tag
7624
7835
  */
7625
7836
 
@@ -7645,21 +7856,21 @@ var ResourceTypeLink;
7645
7856
  })(ResourceTypeLink || (ResourceTypeLink = {}));
7646
7857
  /**
7647
7858
  * Status of the server task.
7648
-
7859
+
7649
7860
  None
7650
-
7861
+
7651
7862
  Scheduled
7652
-
7863
+
7653
7864
  Planning
7654
-
7865
+
7655
7866
  Executing
7656
-
7867
+
7657
7868
  Completed
7658
-
7869
+
7659
7870
  Failed
7660
-
7871
+
7661
7872
  Canceled
7662
-
7873
+
7663
7874
  Timeout
7664
7875
  */
7665
7876
 
@@ -7678,11 +7889,11 @@ var ServerTaskStatus;
7678
7889
  })(ServerTaskStatus || (ServerTaskStatus = {}));
7679
7890
  /**
7680
7891
  * Simplify type.
7681
-
7892
+
7682
7893
  Basic
7683
-
7894
+
7684
7895
  PreserveTopology
7685
-
7896
+
7686
7897
  VW
7687
7898
  */
7688
7899
 
@@ -7696,12 +7907,14 @@ var SimplifyType;
7696
7907
  })(SimplifyType || (SimplifyType = {}));
7697
7908
  /**
7698
7909
  * The `StringSubType` provides information about string attribute subtype.
7699
-
7910
+
7700
7911
  None
7701
-
7912
+
7702
7913
  Image
7703
-
7914
+
7704
7915
  PkkCode
7916
+
7917
+ Attachments
7705
7918
  */
7706
7919
 
7707
7920
 
@@ -7711,12 +7924,13 @@ var StringSubType;
7711
7924
  StringSubType["None"] = "None";
7712
7925
  StringSubType["Image"] = "Image";
7713
7926
  StringSubType["PkkCode"] = "PkkCode";
7927
+ StringSubType["Attachments"] = "Attachments";
7714
7928
  })(StringSubType || (StringSubType = {}));
7715
7929
  /**
7716
7930
  * Task owner group.
7717
-
7931
+
7718
7932
  my
7719
-
7933
+
7720
7934
  all
7721
7935
  */
7722
7936
 
@@ -7729,13 +7943,13 @@ var TaskGroup;
7729
7943
  })(TaskGroup || (TaskGroup = {}));
7730
7944
  /**
7731
7945
  * Sets the horizontal alignment of text.
7732
-
7946
+
7733
7947
  right
7734
-
7948
+
7735
7949
  left
7736
-
7950
+
7737
7951
  center
7738
-
7952
+
7739
7953
  justified
7740
7954
  */
7741
7955
 
@@ -7750,11 +7964,11 @@ var TextAlignment;
7750
7964
  })(TextAlignment || (TextAlignment = {}));
7751
7965
  /**
7752
7966
  * Sets the vertical alignment of text.
7753
-
7967
+
7754
7968
  top
7755
-
7969
+
7756
7970
  bottom
7757
-
7971
+
7758
7972
  middle
7759
7973
  */
7760
7974
 
@@ -7767,5 +7981,5 @@ var TextVerticalAlignment;
7767
7981
  TextVerticalAlignment["Middle"] = "middle";
7768
7982
  })(TextVerticalAlignment || (TextVerticalAlignment = {}));
7769
7983
 
7770
- export { Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeType, BulkOperations, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConnectionStatus, DependencyType, ErrorDetailsType, ErrorReason, ErrorType, EvergisDynamicLayer, EvergisTileLayer, External, FeatureType, Feedback, FileUpload, Filters, FontStyle, FontWeight, GEOCODE_PROVIDER, General, Geocode, GeometryType, Group, HttpClient, IceRouter, Import, Layers, LayersManager, LineCapStyle, LineEndingType, LineJoinType, Names, Namespace, Notification, NotificationEvent, Operation, PbfSchema, Permissions, PolicyType, PortalSettings, Projects, ReferenceJoinType, ResourceCatalog, ResourceSeparator, ResourceType, ResourceTypeLink, Resources, Scheduler, Security, ServerTaskStatus, SimplifyType, SpatialProcessor, Statistic, StringSubType, Styles, Tables, TaskGroup, TextAlignment, TextVerticalAlignment, Tools, UrlPath, VectorTiles, addSubDomainToLocation, errorHandler, formDataFromFile, generateId, isEvergisDynamicLayer, isEvergisTileLayer, isFeatureLayer, isHTTPError, isHandledError, isLayer, isProjectContentItems, isString, isTileLayerService, promiseAllIgnoreErrors, stripUselessSlashes, toFormData, unique };
7984
+ export { Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeSelectorType, AttributeType, BulkOperations, Cameras, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConnectionStatus, DependencyType, ErrorDetailsType, ErrorReason, ErrorType, EvergisDynamicLayer, EvergisTileLayer, External, FeatureType, Feedback, FileUpload, Filters, FontStyle, FontWeight, GEOCODE_PROVIDER, General, Geocode, GeometryType, Group, HttpClient, IceRouter, Import, Layers, LayersManager, LineCapStyle, LineEndingType, LineJoinType, Names, Namespace, Notification, NotificationEvent, Operation, PbfSchema, Permissions, PolicyType, PortalSettings, Projects, ReferenceJoinType, ResourceCatalog, ResourceSeparator, ResourceType, ResourceTypeLink, Resources, Scheduler, Security, ServerTaskStatus, SimplifyType, SpatialProcessor, Statistic, StringSubType, Styles, Tables, TaskGroup, TextAlignment, TextVerticalAlignment, Tools, UrlPath, VectorTiles, addSubDomainToLocation, errorHandler, formDataFromFile, generateId, isEvergisDynamicLayer, isEvergisTileLayer, isFeatureLayer, isHTTPError, isHandledError, isLayer, isProjectContentItems, isString, isTileLayerService, promiseAllIgnoreErrors, stripUselessSlashes, toFormData, unique };
7771
7985
  //# sourceMappingURL=api.esm.js.map