@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.
@@ -35,9 +35,6 @@ function _defineProperties(target, props) {
35
35
  function _createClass(Constructor, protoProps, staticProps) {
36
36
  if (protoProps) _defineProperties(Constructor.prototype, protoProps);
37
37
  if (staticProps) _defineProperties(Constructor, staticProps);
38
- Object.defineProperty(Constructor, "prototype", {
39
- writable: false
40
- });
41
38
  return Constructor;
42
39
  }
43
40
 
@@ -71,9 +68,6 @@ function _inherits(subClass, superClass) {
71
68
  configurable: true
72
69
  }
73
70
  });
74
- Object.defineProperty(subClass, "prototype", {
75
- writable: false
76
- });
77
71
  if (superClass) _setPrototypeOf(subClass, superClass);
78
72
  }
79
73
 
@@ -132,8 +126,6 @@ function _assertThisInitialized(self) {
132
126
  function _possibleConstructorReturn(self, call) {
133
127
  if (call && (typeof call === "object" || typeof call === "function")) {
134
128
  return call;
135
- } else if (call !== void 0) {
136
- throw new TypeError("Derived constructors may only return object or undefined");
137
129
  }
138
130
 
139
131
  return _assertThisInitialized(self);
@@ -167,7 +159,7 @@ function _superPropBase(object, property) {
167
159
  return object;
168
160
  }
169
161
 
170
- function _get() {
162
+ function _get(target, property, receiver) {
171
163
  if (typeof Reflect !== "undefined" && Reflect.get) {
172
164
  _get = Reflect.get;
173
165
  } else {
@@ -178,14 +170,14 @@ function _get() {
178
170
  var desc = Object.getOwnPropertyDescriptor(base, property);
179
171
 
180
172
  if (desc.get) {
181
- return desc.get.call(arguments.length < 3 ? target : receiver);
173
+ return desc.get.call(receiver);
182
174
  }
183
175
 
184
176
  return desc.value;
185
177
  };
186
178
  }
187
179
 
188
- return _get.apply(this, arguments);
180
+ return _get(target, property, receiver || target);
189
181
  }
190
182
 
191
183
  let HttpClient = /*#__PURE__*/function () {
@@ -437,6 +429,184 @@ let BulkOperations = /*#__PURE__*/function (_BulkOperationsServic) {
437
429
  return _createClass(BulkOperations);
438
430
  }(BulkOperationsService);
439
431
 
432
+ const _excluded$1 = ["cameraId"],
433
+ _excluded2 = ["cameraId"],
434
+ _excluded3 = ["cameraId"],
435
+ _excluded4 = ["cameraId"],
436
+ _excluded5 = ["cameraId"];
437
+ /**
438
+ * @title Spatial Processing Core API
439
+ * @version 1.0.0
440
+ * @baseUrl /sp
441
+ */
442
+
443
+ let CamerasService = /*#__PURE__*/function (_Service) {
444
+ _inherits(CamerasService, _Service);
445
+
446
+ var _super = /*#__PURE__*/_createSuper(CamerasService);
447
+
448
+ function CamerasService() {
449
+ _classCallCheck(this, CamerasService);
450
+
451
+ return _super.apply(this, arguments);
452
+ }
453
+
454
+ _createClass(CamerasService, [{
455
+ key: "getCameras",
456
+ value:
457
+ /**
458
+ * No description
459
+ *
460
+ * @tags Cameras
461
+ * @name GetCameras
462
+ * @operationId CamerasController_GetCameras
463
+ * @summary Get cameras list.
464
+ * @request GET:/cameras
465
+ * @response `200` Success
466
+ */
467
+ function getCameras(query) {
468
+ return this.http.get("/cameras", query).json();
469
+ }
470
+ /**
471
+ * No description
472
+ *
473
+ * @tags Cameras
474
+ * @name GetArchiveFeed
475
+ * @operationId CamerasController_GetArchiveFeed
476
+ * @summary Streams an FLV-over-HTTP archive feed starting at specific time.
477
+ * @request GET:/cameras/{cameraId}/archiveFeed
478
+ * @response `200` Success
479
+ */
480
+
481
+ }, {
482
+ key: "getArchiveFeed",
483
+ value: function getArchiveFeed(_ref) {
484
+ let {
485
+ cameraId
486
+ } = _ref,
487
+ query = _objectWithoutPropertiesLoose(_ref, _excluded$1);
488
+
489
+ return this.http.get("/cameras/" + cameraId + "/archiveFeed", query).blob();
490
+ }
491
+ /**
492
+ * No description
493
+ *
494
+ * @tags Cameras
495
+ * @name GetArchiveTimeline
496
+ * @operationId CamerasController_GetArchiveTimeline
497
+ * @summary Returns a list of records available within a given timeframe.
498
+ * @request GET:/cameras/{cameraId}/archiveTimeline
499
+ * @response `200` Success
500
+ */
501
+
502
+ }, {
503
+ key: "getArchiveTimeline",
504
+ value: function getArchiveTimeline(_ref2) {
505
+ let {
506
+ cameraId
507
+ } = _ref2,
508
+ query = _objectWithoutPropertiesLoose(_ref2, _excluded2);
509
+
510
+ return this.http.get("/cameras/" + cameraId + "/archiveTimeline", query).json();
511
+ }
512
+ /**
513
+ * No description
514
+ *
515
+ * @tags Cameras
516
+ * @name GetArchiveCalendar
517
+ * @operationId CamerasController_GetArchiveCalendar
518
+ * @summary Returns a list of records available within a given timeframe.
519
+ * @request GET:/cameras/{cameraId}/archiveCalendar
520
+ * @response `200` Success
521
+ */
522
+
523
+ }, {
524
+ key: "getArchiveCalendar",
525
+ value: function getArchiveCalendar(_ref3) {
526
+ let {
527
+ cameraId
528
+ } = _ref3,
529
+ query = _objectWithoutPropertiesLoose(_ref3, _excluded3);
530
+
531
+ return this.http.get("/cameras/" + cameraId + "/archiveCalendar", query).json();
532
+ }
533
+ /**
534
+ * No description
535
+ *
536
+ * @tags Cameras
537
+ * @name GetArchiveSnapshot
538
+ * @operationId CamerasController_GetArchiveSnapshot
539
+ * @summary Returns a JPEG image from the Camera’s archive.
540
+ * @request GET:/cameras/{cameraId}/archiveSnapshot
541
+ * @response `200` Success
542
+ */
543
+
544
+ }, {
545
+ key: "getArchiveSnapshot",
546
+ value: function getArchiveSnapshot(_ref4) {
547
+ let {
548
+ cameraId
549
+ } = _ref4,
550
+ query = _objectWithoutPropertiesLoose(_ref4, _excluded4);
551
+
552
+ return this.http.get("/cameras/" + cameraId + "/archiveSnapshot", query).blob();
553
+ }
554
+ /**
555
+ * No description
556
+ *
557
+ * @tags Cameras
558
+ * @name GetLiveFeed
559
+ * @operationId CamerasController_GetLiveFeed
560
+ * @summary Streams live video feed from the Camera.
561
+ * @request GET:/cameras/{cameraId}/liveFeed
562
+ * @response `200` Success
563
+ */
564
+
565
+ }, {
566
+ key: "getLiveFeed",
567
+ value: function getLiveFeed(_ref5) {
568
+ let {
569
+ cameraId
570
+ } = _ref5,
571
+ query = _objectWithoutPropertiesLoose(_ref5, _excluded5);
572
+
573
+ return this.http.get("/cameras/" + cameraId + "/liveFeed", query).blob();
574
+ }
575
+ /**
576
+ * No description
577
+ *
578
+ * @tags Cameras
579
+ * @name GetLiveSnapshot
580
+ * @operationId CamerasController_GetLiveSnapshot
581
+ * @summary Returns a JPEG image from the Camera’s live feed.
582
+ * @request GET:/cameras/{cameraId}/liveSnapshot
583
+ * @response `200` Success
584
+ */
585
+
586
+ }, {
587
+ key: "getLiveSnapshot",
588
+ value: function getLiveSnapshot(cameraId) {
589
+ return this.http.get("/cameras/" + cameraId + "/liveSnapshot").blob();
590
+ }
591
+ }]);
592
+
593
+ return CamerasService;
594
+ }(Service);
595
+
596
+ let Cameras = /*#__PURE__*/function (_CamerasService) {
597
+ _inherits(Cameras, _CamerasService);
598
+
599
+ var _super = /*#__PURE__*/_createSuper(Cameras);
600
+
601
+ function Cameras() {
602
+ _classCallCheck(this, Cameras);
603
+
604
+ return _super.apply(this, arguments);
605
+ }
606
+
607
+ return _createClass(Cameras);
608
+ }(CamerasService);
609
+
440
610
  /**
441
611
  * @title Spatial Processing Core API
442
612
  * @version 1.0.0
@@ -880,13 +1050,29 @@ let ImportService = /*#__PURE__*/function (_Service) {
880
1050
  value: function getExternalPbfLayers(query) {
881
1051
  return this.http.get("/import/pbf", query).json();
882
1052
  }
1053
+ /**
1054
+ * No description
1055
+ *
1056
+ * @tags ImportService
1057
+ * @name GetExternalArcgisFsLayers
1058
+ * @operationId ImportServiceController_GetExternalArcgisFSLayers
1059
+ * @summary Get list of external ArcGis FeatureServer layers.
1060
+ * @request GET:/import/arcgisfeatureservice
1061
+ * @response `200` Success
1062
+ */
1063
+
1064
+ }, {
1065
+ key: "getExternalArcgisFsLayers",
1066
+ value: function getExternalArcgisFsLayers(query) {
1067
+ return this.http.get("/import/arcgisfeatureservice", query).json();
1068
+ }
883
1069
  /**
884
1070
  * No description
885
1071
  *
886
1072
  * @tags ImportService
887
1073
  * @name GetExternalArcGisLayers
888
1074
  * @operationId ImportServiceController_GetExternalArcGisLayers
889
- * @summary Get list of external ArcGis map service layers.
1075
+ * @summary Get list of external ArcGis MapServer layers.
890
1076
  * @request GET:/import/arcgismapservice
891
1077
  * @response `200` Success
892
1078
  */
@@ -1103,8 +1289,8 @@ let Notification = /*#__PURE__*/function (_NotificationService) {
1103
1289
  || event.code === 4002
1104
1290
  /* InvalidSession */
1105
1291
  ) {
1106
- _this.connectStatus = exports.ConnectionStatus.SessionClosed;
1107
- } else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
1292
+ _this.connectStatus = exports.ConnectionStatus.SessionClosed;
1293
+ } else if (_this.reconnectTries < _this.MAX_WS_RECONNECT_TRIES) {
1108
1294
  _this.connectStatus = exports.ConnectionStatus.Break;
1109
1295
  _this.reconnectTries++;
1110
1296
 
@@ -1671,7 +1857,7 @@ let Scheduler = /*#__PURE__*/function (_SchedulerService) {
1671
1857
  const taskProgress = await this.getTaskProgress(id);
1672
1858
  this.resolveTaskStatus(taskProgress, resolve, reject);
1673
1859
 
1674
- const taskResultCallback = async _ref => {
1860
+ const taskResultCallback = async (_ref) => {
1675
1861
  let {
1676
1862
  data
1677
1863
  } = _ref;
@@ -1714,11 +1900,11 @@ let Scheduler = /*#__PURE__*/function (_SchedulerService) {
1714
1900
  return Scheduler;
1715
1901
  }(SchedulerService);
1716
1902
 
1717
- const _excluded$1 = ["name"],
1718
- _excluded2 = ["name"],
1719
- _excluded3 = ["name"],
1720
- _excluded4 = ["name", "id"],
1721
- _excluded5 = ["name", "id"],
1903
+ const _excluded$2 = ["name"],
1904
+ _excluded2$1 = ["name"],
1905
+ _excluded3$1 = ["name"],
1906
+ _excluded4$1 = ["name", "id"],
1907
+ _excluded5$1 = ["name", "id"],
1722
1908
  _excluded6 = ["name", "id"],
1723
1909
  _excluded7 = ["name", "x", "y", "z"],
1724
1910
  _excluded8 = ["name"],
@@ -2222,7 +2408,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
2222
2408
  let {
2223
2409
  name
2224
2410
  } = _ref,
2225
- query = _objectWithoutPropertiesLoose(_ref, _excluded$1);
2411
+ query = _objectWithoutPropertiesLoose(_ref, _excluded$2);
2226
2412
 
2227
2413
  return this.http.get("/layers/" + name + "/features", query).json();
2228
2414
  }
@@ -2243,7 +2429,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
2243
2429
  let {
2244
2430
  name
2245
2431
  } = _ref2,
2246
- query = _objectWithoutPropertiesLoose(_ref2, _excluded2);
2432
+ query = _objectWithoutPropertiesLoose(_ref2, _excluded2$1);
2247
2433
 
2248
2434
  return this.http.delete("/layers/" + name + "/features", null, query).json();
2249
2435
  }
@@ -2296,7 +2482,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
2296
2482
  let {
2297
2483
  name
2298
2484
  } = _ref3,
2299
- query = _objectWithoutPropertiesLoose(_ref3, _excluded3);
2485
+ query = _objectWithoutPropertiesLoose(_ref3, _excluded3$1);
2300
2486
 
2301
2487
  return this.http.get("/layers/" + name + "/features/contains", query).json();
2302
2488
  }
@@ -2318,7 +2504,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
2318
2504
  name,
2319
2505
  id
2320
2506
  } = _ref4,
2321
- query = _objectWithoutPropertiesLoose(_ref4, _excluded4);
2507
+ query = _objectWithoutPropertiesLoose(_ref4, _excluded4$1);
2322
2508
 
2323
2509
  return this.http.get("/layers/" + name + "/features/" + id, query).json();
2324
2510
  }
@@ -2340,7 +2526,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
2340
2526
  name,
2341
2527
  id
2342
2528
  } = _ref5,
2343
- query = _objectWithoutPropertiesLoose(_ref5, _excluded5);
2529
+ query = _objectWithoutPropertiesLoose(_ref5, _excluded5$1);
2344
2530
 
2345
2531
  return this.http.post("/layers/" + name + "/features/" + id + "/unite", data, query).json();
2346
2532
  }
@@ -2891,7 +3077,7 @@ function notError(v) {
2891
3077
  return !isError(v);
2892
3078
  }
2893
3079
 
2894
- const _excluded$2 = ["remote"];
3080
+ const _excluded$3 = ["remote"];
2895
3081
  let Layers = /*#__PURE__*/function (_LayersService) {
2896
3082
  _inherits(Layers, _LayersService);
2897
3083
 
@@ -2931,7 +3117,7 @@ let Layers = /*#__PURE__*/function (_LayersService) {
2931
3117
  let {
2932
3118
  remote
2933
3119
  } = _ref,
2934
- configuration = _objectWithoutPropertiesLoose(_ref, _excluded$2);
3120
+ configuration = _objectWithoutPropertiesLoose(_ref, _excluded$3);
2935
3121
 
2936
3122
  if (remote) {
2937
3123
  return this.publishRemoteTileService(configuration);
@@ -2980,10 +3166,10 @@ function isTileLayerService(layer) {
2980
3166
  return layer.type && /TileService/.test(layer.type);
2981
3167
  }
2982
3168
 
2983
- const _excluded$3 = ["name"],
2984
- _excluded2$1 = ["name"],
2985
- _excluded3$1 = ["name"],
2986
- _excluded4$1 = ["name"];
3169
+ const _excluded$4 = ["name"],
3170
+ _excluded2$2 = ["name"],
3171
+ _excluded3$2 = ["name"],
3172
+ _excluded4$2 = ["name"];
2987
3173
  /**
2988
3174
  * @title Spatial Processing Core API
2989
3175
  * @version 1.0.0
@@ -3162,7 +3348,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
3162
3348
  let {
3163
3349
  name
3164
3350
  } = _ref,
3165
- query = _objectWithoutPropertiesLoose(_ref, _excluded$3);
3351
+ query = _objectWithoutPropertiesLoose(_ref, _excluded$4);
3166
3352
 
3167
3353
  return this.http.get("/tables/" + name + "/data", query).json();
3168
3354
  }
@@ -3199,7 +3385,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
3199
3385
  let {
3200
3386
  name
3201
3387
  } = _ref2,
3202
- query = _objectWithoutPropertiesLoose(_ref2, _excluded2$1);
3388
+ query = _objectWithoutPropertiesLoose(_ref2, _excluded2$2);
3203
3389
 
3204
3390
  return this.http.patch("/tables/" + name + "/data", data, query).then(() => {});
3205
3391
  }
@@ -3220,7 +3406,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
3220
3406
  let {
3221
3407
  name
3222
3408
  } = _ref3,
3223
- query = _objectWithoutPropertiesLoose(_ref3, _excluded3$1);
3409
+ query = _objectWithoutPropertiesLoose(_ref3, _excluded3$2);
3224
3410
 
3225
3411
  return this.http.delete("/tables/" + name + "/data", null, query).then(() => {});
3226
3412
  }
@@ -3241,7 +3427,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
3241
3427
  let {
3242
3428
  name
3243
3429
  } = _ref4,
3244
- query = _objectWithoutPropertiesLoose(_ref4, _excluded4$1);
3430
+ query = _objectWithoutPropertiesLoose(_ref4, _excluded4$2);
3245
3431
 
3246
3432
  return this.http.get("/tables/" + name + "/data/unique-values", query).json();
3247
3433
  }
@@ -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
  }
@@ -6198,7 +6384,7 @@ let Feedback = /*#__PURE__*/function (_FeedbackService) {
6198
6384
  return Feedback;
6199
6385
  }(FeedbackService);
6200
6386
 
6201
- const _excluded$6 = ["name", "z", "x", "y"];
6387
+ const _excluded$7 = ["name", "z", "x", "y"];
6202
6388
  /**
6203
6389
  * @title Spatial Processing Core API
6204
6390
  * @version 1.0.0
@@ -6236,7 +6422,7 @@ let VectorTileService = /*#__PURE__*/function (_Service) {
6236
6422
  x,
6237
6423
  y
6238
6424
  } = _ref,
6239
- query = _objectWithoutPropertiesLoose(_ref, _excluded$6);
6425
+ query = _objectWithoutPropertiesLoose(_ref, _excluded$7);
6240
6426
 
6241
6427
  return this.http.get("/vt/" + name + "/" + z + "/" + x + "/" + y + ".pbf", query).then(() => {});
6242
6428
  }
@@ -6474,6 +6660,7 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
6474
6660
  _this.filters = new Filters(_this.http);
6475
6661
  _this.import = new Import(_this.http);
6476
6662
  _this.geocode = new Geocode(_this.http);
6663
+ _this.cameras = new Cameras(_this.http);
6477
6664
  _this.print = new Print(_this.http);
6478
6665
  _this.tools = new Tools(_this.http);
6479
6666
  _this.resourceCatalog = new ResourceCatalog(_this.http);
@@ -6663,7 +6850,7 @@ let EvergisTileLayer = /*#__PURE__*/function (_TileLayer) {
6663
6850
  return EvergisTileLayer;
6664
6851
  }(TileLayer.TileLayer);
6665
6852
 
6666
- const _excluded$7 = ["name", "style", "condition", "dataFilterId"];
6853
+ const _excluded$8 = ["name", "style", "condition", "dataFilterId"];
6667
6854
  let EvergisDynamicLayer = /*#__PURE__*/function (_DynamicLayer) {
6668
6855
  _inherits(EvergisDynamicLayer, _DynamicLayer);
6669
6856
 
@@ -6678,7 +6865,7 @@ let EvergisDynamicLayer = /*#__PURE__*/function (_DynamicLayer) {
6678
6865
  condition,
6679
6866
  dataFilterId
6680
6867
  } = _ref,
6681
- layerProps = _objectWithoutPropertiesLoose(_ref, _excluded$7);
6868
+ layerProps = _objectWithoutPropertiesLoose(_ref, _excluded$8);
6682
6869
 
6683
6870
  _classCallCheck(this, EvergisDynamicLayer);
6684
6871
 
@@ -6980,6 +7167,13 @@ function isFeatureLayer(layer) {
6980
7167
  AggregationFunction["DividedSum"] = "DividedSum";
6981
7168
  })(exports.AggregationFunction || (exports.AggregationFunction = {}));
6982
7169
 
7170
+ (function (AttributeSelectorType) {
7171
+ AttributeSelectorType["None"] = "None";
7172
+ AttributeSelectorType["SelectFromHandBook"] = "SelectFromHandBook";
7173
+ AttributeSelectorType["SelectFromRange"] = "SelectFromRange";
7174
+ AttributeSelectorType["ViewHandBook"] = "ViewHandBook";
7175
+ })(exports.AttributeSelectorType || (exports.AttributeSelectorType = {}));
7176
+
6983
7177
  (function (AttributeType) {
6984
7178
  AttributeType["Unknown"] = "Unknown";
6985
7179
  AttributeType["String"] = "String";
@@ -6990,9 +7184,10 @@ function isFeatureLayer(layer) {
6990
7184
  AttributeType["Boolean"] = "Boolean";
6991
7185
  AttributeType["Point"] = "Point";
6992
7186
  AttributeType["Polyline"] = "Polyline";
6993
- AttributeType["MultiPolygon"] = "Polygon";
7187
+ AttributeType["MultiPolygon"] = "MultiPolygon";
6994
7188
  AttributeType["Multipoint"] = "Multipoint";
6995
7189
  AttributeType["H3Index"] = "H3Index";
7190
+ AttributeType["Json"] = "Json";
6996
7191
  })(exports.AttributeType || (exports.AttributeType = {}));
6997
7192
 
6998
7193
  (function (ClassificationType) {
@@ -7226,6 +7421,7 @@ function isFeatureLayer(layer) {
7226
7421
  StringSubType["None"] = "None";
7227
7422
  StringSubType["Image"] = "Image";
7228
7423
  StringSubType["PkkCode"] = "PkkCode";
7424
+ StringSubType["Attachments"] = "Attachments";
7229
7425
  })(exports.StringSubType || (exports.StringSubType = {}));
7230
7426
 
7231
7427
  (function (TaskGroup) {
@@ -7262,6 +7458,7 @@ exports.Account = Account;
7262
7458
  exports.AccountPreview = AccountPreview;
7263
7459
  exports.Api = Api;
7264
7460
  exports.BulkOperations = BulkOperations;
7461
+ exports.Cameras = Cameras;
7265
7462
  exports.ClientSettings = ClientSettings;
7266
7463
  exports.EvergisDynamicLayer = EvergisDynamicLayer;
7267
7464
  exports.EvergisTileLayer = EvergisTileLayer;