@evergis/api 4.0.22 → 4.0.24

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
@@ -2084,6 +2084,214 @@ let BulkOperations = /*#__PURE__*/function (_BulkOperationsServic) {
2084
2084
  return _createClass(BulkOperations);
2085
2085
  }(BulkOperationsService);
2086
2086
 
2087
+ const _excluded$1 = ["cameraId"],
2088
+ _excluded2 = ["cameraId"],
2089
+ _excluded3 = ["cameraId"],
2090
+ _excluded4 = ["cameraId"],
2091
+ _excluded5 = ["cameraId"],
2092
+ _excluded6 = ["cameraId"];
2093
+ /**
2094
+ * @title Spatial Processing Core API
2095
+ * @version 1.5.1.0
2096
+ * @baseUrl /sp
2097
+ */
2098
+
2099
+ let CamerasService = /*#__PURE__*/function (_Service) {
2100
+ _inherits(CamerasService, _Service);
2101
+
2102
+ var _super = /*#__PURE__*/_createSuper(CamerasService);
2103
+
2104
+ function CamerasService() {
2105
+ _classCallCheck(this, CamerasService);
2106
+
2107
+ return _super.apply(this, arguments);
2108
+ }
2109
+
2110
+ _createClass(CamerasService, [{
2111
+ key: "getCameras",
2112
+ value:
2113
+ /**
2114
+ * No description
2115
+ *
2116
+ * @tags Cameras
2117
+ * @name GetCameras
2118
+ * @operationId CamerasController_GetCameras
2119
+ * @summary Get cameras list.
2120
+ * @request GET:/cameras
2121
+ * @secure
2122
+ * @response `200` OK
2123
+ */
2124
+ function getCameras(query) {
2125
+ return this.http.get("/cameras", query).json();
2126
+ }
2127
+ /**
2128
+ * No description
2129
+ *
2130
+ * @tags Cameras
2131
+ * @name GetArchiveFeed
2132
+ * @operationId CamerasController_GetArchiveFeed
2133
+ * @summary Streams an FLV-over-HTTP archive feed starting at specific time.
2134
+ * @request GET:/cameras/{cameraId}/archiveFeed
2135
+ * @secure
2136
+ * @response `200` OK
2137
+ */
2138
+
2139
+ }, {
2140
+ key: "getArchiveFeed",
2141
+ value: function getArchiveFeed(_ref) {
2142
+ let {
2143
+ cameraId
2144
+ } = _ref,
2145
+ query = _objectWithoutPropertiesLoose(_ref, _excluded$1);
2146
+
2147
+ return this.http.get("/cameras/" + cameraId + "/archiveFeed", query).blob();
2148
+ }
2149
+ /**
2150
+ * No description
2151
+ *
2152
+ * @tags Cameras
2153
+ * @name GetArchiveTimeline
2154
+ * @operationId CamerasController_GetArchiveTimeline
2155
+ * @summary Returns a list of records available within a given timeframe.
2156
+ * @request GET:/cameras/{cameraId}/archiveTimeline
2157
+ * @secure
2158
+ * @response `200` OK
2159
+ */
2160
+
2161
+ }, {
2162
+ key: "getArchiveTimeline",
2163
+ value: function getArchiveTimeline(_ref2) {
2164
+ let {
2165
+ cameraId
2166
+ } = _ref2,
2167
+ query = _objectWithoutPropertiesLoose(_ref2, _excluded2);
2168
+
2169
+ return this.http.get("/cameras/" + cameraId + "/archiveTimeline", query).json();
2170
+ }
2171
+ /**
2172
+ * No description
2173
+ *
2174
+ * @tags Cameras
2175
+ * @name GetArchiveCalendar
2176
+ * @operationId CamerasController_GetArchiveCalendar
2177
+ * @summary Returns a list of records available within a given timeframe.
2178
+ * @request GET:/cameras/{cameraId}/archiveCalendar
2179
+ * @secure
2180
+ * @response `200` OK
2181
+ */
2182
+
2183
+ }, {
2184
+ key: "getArchiveCalendar",
2185
+ value: function getArchiveCalendar(_ref3) {
2186
+ let {
2187
+ cameraId
2188
+ } = _ref3,
2189
+ query = _objectWithoutPropertiesLoose(_ref3, _excluded3);
2190
+
2191
+ return this.http.get("/cameras/" + cameraId + "/archiveCalendar", query).json();
2192
+ }
2193
+ /**
2194
+ * No description
2195
+ *
2196
+ * @tags Cameras
2197
+ * @name GetArchiveSnapshot
2198
+ * @operationId CamerasController_GetArchiveSnapshot
2199
+ * @summary Returns a JPEG image from the Camera’s archive.
2200
+ * @request GET:/cameras/{cameraId}/archiveSnapshot
2201
+ * @secure
2202
+ * @response `200` OK
2203
+ */
2204
+
2205
+ }, {
2206
+ key: "getArchiveSnapshot",
2207
+ value: function getArchiveSnapshot(_ref4) {
2208
+ let {
2209
+ cameraId
2210
+ } = _ref4,
2211
+ query = _objectWithoutPropertiesLoose(_ref4, _excluded4);
2212
+
2213
+ return this.http.get("/cameras/" + cameraId + "/archiveSnapshot", query).blob();
2214
+ }
2215
+ /**
2216
+ * No description
2217
+ *
2218
+ * @tags Cameras
2219
+ * @name GetLiveFeed
2220
+ * @operationId CamerasController_GetLiveFeed
2221
+ * @summary Streams live video feed from the Camera.
2222
+ * @request GET:/cameras/{cameraId}/liveFeed
2223
+ * @secure
2224
+ * @response `200` OK
2225
+ */
2226
+
2227
+ }, {
2228
+ key: "getLiveFeed",
2229
+ value: function getLiveFeed(_ref5) {
2230
+ let {
2231
+ cameraId
2232
+ } = _ref5,
2233
+ query = _objectWithoutPropertiesLoose(_ref5, _excluded5);
2234
+
2235
+ return this.http.get("/cameras/" + cameraId + "/liveFeed", query).blob();
2236
+ }
2237
+ /**
2238
+ * No description
2239
+ *
2240
+ * @tags Cameras
2241
+ * @name GetLiveSnapshot
2242
+ * @operationId CamerasController_GetLiveSnapshot
2243
+ * @summary Returns a JPEG image from the Camera’s live feed.
2244
+ * @request GET:/cameras/{cameraId}/liveSnapshot
2245
+ * @secure
2246
+ * @response `200` OK
2247
+ */
2248
+
2249
+ }, {
2250
+ key: "getLiveSnapshot",
2251
+ value: function getLiveSnapshot(cameraId) {
2252
+ return this.http.get("/cameras/" + cameraId + "/liveSnapshot").blob();
2253
+ }
2254
+ /**
2255
+ * No description
2256
+ *
2257
+ * @tags Cameras
2258
+ * @name GetLivePreviewStream
2259
+ * @operationId CamerasController_GetLivePreviewStream
2260
+ * @summary Get live preview stream.
2261
+ * @request GET:/cameras/{cameraId}/getLivePreviewsStream
2262
+ * @secure
2263
+ * @response `200` OK
2264
+ */
2265
+
2266
+ }, {
2267
+ key: "getLivePreviewStream",
2268
+ value: function getLivePreviewStream(_ref6) {
2269
+ let {
2270
+ cameraId
2271
+ } = _ref6,
2272
+ query = _objectWithoutPropertiesLoose(_ref6, _excluded6);
2273
+
2274
+ return this.http.get("/cameras/" + cameraId + "/getLivePreviewsStream", query).json();
2275
+ }
2276
+ }]);
2277
+
2278
+ return CamerasService;
2279
+ }(Service);
2280
+
2281
+ let Cameras = /*#__PURE__*/function (_CamerasService) {
2282
+ _inherits(Cameras, _CamerasService);
2283
+
2284
+ var _super = /*#__PURE__*/_createSuper(Cameras);
2285
+
2286
+ function Cameras() {
2287
+ _classCallCheck(this, Cameras);
2288
+
2289
+ return _super.apply(this, arguments);
2290
+ }
2291
+
2292
+ return _createClass(Cameras);
2293
+ }(CamerasService);
2294
+
2087
2295
  /**
2088
2296
  * @title Spatial Processing Core API
2089
2297
  * @version 1.5.1.0
@@ -2434,23 +2642,6 @@ let FeedbackService = /*#__PURE__*/function (_Service) {
2434
2642
  function increaseResourcesLimit(query) {
2435
2643
  return this.http.post("/feedback/limits", null, query).json();
2436
2644
  }
2437
- /**
2438
- * No description
2439
- *
2440
- * @tags Feedback
2441
- * @name MoreSymbols
2442
- * @operationId FeedbackController_MoreSymbols
2443
- * @summary More symbols request.
2444
- * @request POST:/feedback/symbol
2445
- * @secure
2446
- * @response `200` OK
2447
- */
2448
-
2449
- }, {
2450
- key: "moreSymbols",
2451
- value: function moreSymbols(query) {
2452
- return this.http.post("/feedback/symbol", null, query).json();
2453
- }
2454
2645
  /**
2455
2646
  * No description
2456
2647
  *
@@ -2484,14 +2675,7 @@ let Feedback = /*#__PURE__*/function (_FeedbackService) {
2484
2675
  return _super.apply(this, arguments);
2485
2676
  }
2486
2677
 
2487
- _createClass(Feedback, [{
2488
- key: "postFeedback",
2489
- value: function postFeedback(query, data) {
2490
- return this.feedback(query, data);
2491
- }
2492
- }]);
2493
-
2494
- return Feedback;
2678
+ return _createClass(Feedback);
2495
2679
  }(FeedbackService);
2496
2680
 
2497
2681
  let FileUpload = /*#__PURE__*/function (_CatalogService) {
@@ -2610,9 +2794,9 @@ let Filters = /*#__PURE__*/function (_FiltersService) {
2610
2794
  return _createClass(Filters);
2611
2795
  }(FiltersService);
2612
2796
 
2613
- const _excluded$1 = ["providerName"],
2614
- _excluded2 = ["providerName"],
2615
- _excluded3 = ["providerName"];
2797
+ const _excluded$2 = ["providerName"],
2798
+ _excluded2$1 = ["providerName"],
2799
+ _excluded3$1 = ["providerName"];
2616
2800
  /**
2617
2801
  * @title Spatial Processing Core API
2618
2802
  * @version 1.5.1.0
@@ -2648,7 +2832,7 @@ let GeocodeService = /*#__PURE__*/function (_Service) {
2648
2832
  let {
2649
2833
  providerName
2650
2834
  } = _ref,
2651
- query = _objectWithoutPropertiesLoose(_ref, _excluded$1);
2835
+ query = _objectWithoutPropertiesLoose(_ref, _excluded$2);
2652
2836
 
2653
2837
  return this.http.get("/geocode/" + providerName, query).json();
2654
2838
  }
@@ -2670,7 +2854,7 @@ let GeocodeService = /*#__PURE__*/function (_Service) {
2670
2854
  let {
2671
2855
  providerName
2672
2856
  } = _ref2,
2673
- query = _objectWithoutPropertiesLoose(_ref2, _excluded2);
2857
+ query = _objectWithoutPropertiesLoose(_ref2, _excluded2$1);
2674
2858
 
2675
2859
  return this.http.get("/geocode/" + providerName + "/geocodeByPoint", query).json();
2676
2860
  }
@@ -2692,7 +2876,7 @@ let GeocodeService = /*#__PURE__*/function (_Service) {
2692
2876
  let {
2693
2877
  providerName
2694
2878
  } = _ref3,
2695
- query = _objectWithoutPropertiesLoose(_ref3, _excluded3);
2879
+ query = _objectWithoutPropertiesLoose(_ref3, _excluded3$1);
2696
2880
 
2697
2881
  return this.http.get("/geocode/" + providerName + "/suggest", query).json();
2698
2882
  }
@@ -2798,7 +2982,7 @@ let ImportService = /*#__PURE__*/function (_Service) {
2798
2982
  }, {
2799
2983
  key: "readPart",
2800
2984
  value: function readPart(query) {
2801
- return this.http.get("/import/read", query).then(() => {});
2985
+ return this.http.get("/import/read", query).json();
2802
2986
  }
2803
2987
  /**
2804
2988
  * No description
@@ -2938,12 +3122,12 @@ let Import = /*#__PURE__*/function (_ImportService) {
2938
3122
  return _createClass(Import);
2939
3123
  }(ImportService);
2940
3124
 
2941
- const _excluded$2 = ["name"],
2942
- _excluded2$1 = ["name"],
2943
- _excluded3$1 = ["name", "id"],
2944
- _excluded4 = ["name", "x", "y", "z"],
2945
- _excluded5 = ["name", "x", "y", "z", "format"],
2946
- _excluded6 = ["name", "x", "y", "z", "dpi", "format"],
3125
+ const _excluded$3 = ["name"],
3126
+ _excluded2$2 = ["name"],
3127
+ _excluded3$2 = ["name", "id"],
3128
+ _excluded4$1 = ["name", "x", "y", "z"],
3129
+ _excluded5$1 = ["name", "x", "y", "z", "format"],
3130
+ _excluded6$1 = ["name", "x", "y", "z", "dpi", "format"],
2947
3131
  _excluded7 = ["name"],
2948
3132
  _excluded8 = ["name"],
2949
3133
  _excluded9 = ["name"],
@@ -3424,7 +3608,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3424
3608
  let {
3425
3609
  name
3426
3610
  } = _ref,
3427
- query = _objectWithoutPropertiesLoose(_ref, _excluded$2);
3611
+ query = _objectWithoutPropertiesLoose(_ref, _excluded$3);
3428
3612
 
3429
3613
  return this.http.get("/layers/" + name + "/features", query).json();
3430
3614
  }
@@ -3446,7 +3630,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3446
3630
  let {
3447
3631
  name
3448
3632
  } = _ref2,
3449
- query = _objectWithoutPropertiesLoose(_ref2, _excluded2$1);
3633
+ query = _objectWithoutPropertiesLoose(_ref2, _excluded2$2);
3450
3634
 
3451
3635
  return this.http.delete("/layers/" + name + "/features", null, query).json();
3452
3636
  }
@@ -3503,7 +3687,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3503
3687
  name,
3504
3688
  id
3505
3689
  } = _ref3,
3506
- query = _objectWithoutPropertiesLoose(_ref3, _excluded3$1);
3690
+ query = _objectWithoutPropertiesLoose(_ref3, _excluded3$2);
3507
3691
 
3508
3692
  return this.http.get("/layers/" + name + "/features/" + id, query).json();
3509
3693
  }
@@ -3528,7 +3712,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3528
3712
  y,
3529
3713
  z
3530
3714
  } = _ref4,
3531
- query = _objectWithoutPropertiesLoose(_ref4, _excluded4);
3715
+ query = _objectWithoutPropertiesLoose(_ref4, _excluded4$1);
3532
3716
 
3533
3717
  return this.http.createUrl("/layers/" + name + "/tile/" + z + "/" + x + "/" + y, query);
3534
3718
  }
@@ -3554,7 +3738,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3554
3738
  z,
3555
3739
  format
3556
3740
  } = _ref5,
3557
- query = _objectWithoutPropertiesLoose(_ref5, _excluded5);
3741
+ query = _objectWithoutPropertiesLoose(_ref5, _excluded5$1);
3558
3742
 
3559
3743
  return this.http.createUrl("/layers/" + name + "/tile/" + z + "/" + x + "/" + y + "." + format, query);
3560
3744
  }
@@ -3581,7 +3765,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
3581
3765
  dpi,
3582
3766
  format
3583
3767
  } = _ref6,
3584
- query = _objectWithoutPropertiesLoose(_ref6, _excluded6);
3768
+ query = _objectWithoutPropertiesLoose(_ref6, _excluded6$1);
3585
3769
 
3586
3770
  return this.http.createUrl("/layers/" + name + "/tile/" + z + "/" + x + "/" + y + "@" + dpi + "x." + format, query);
3587
3771
  }
@@ -4481,7 +4665,7 @@ let PortalSettings = /*#__PURE__*/function (_ClientSettingsServic) {
4481
4665
  return PortalSettings;
4482
4666
  }(ClientSettingsService);
4483
4667
 
4484
- const _excluded$3 = ["name"];
4668
+ const _excluded$4 = ["name"];
4485
4669
  /**
4486
4670
  * @title Spatial Processing Core API
4487
4671
  * @version 1.5.1.0
@@ -4653,7 +4837,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
4653
4837
  let {
4654
4838
  name
4655
4839
  } = _ref,
4656
- query = _objectWithoutPropertiesLoose(_ref, _excluded$3);
4840
+ query = _objectWithoutPropertiesLoose(_ref, _excluded$4);
4657
4841
 
4658
4842
  return this.http.get("/projects/" + name + "/extent", query).json();
4659
4843
  }
@@ -4836,8 +5020,8 @@ function isProjectContentItems(v) {
4836
5020
  return v !== null && v !== undefined;
4837
5021
  }
4838
5022
 
4839
- const _excluded$4 = ["id"],
4840
- _excluded2$2 = ["id"];
5023
+ const _excluded$5 = ["id"],
5024
+ _excluded2$3 = ["id"];
4841
5025
  /**
4842
5026
  * @title Spatial Processing Core API
4843
5027
  * @version 1.5.1.0
@@ -4992,7 +5176,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
4992
5176
  let {
4993
5177
  id
4994
5178
  } = _ref,
4995
- query = _objectWithoutPropertiesLoose(_ref, _excluded$4);
5179
+ query = _objectWithoutPropertiesLoose(_ref, _excluded$5);
4996
5180
 
4997
5181
  return this.http.get("/scheduler/" + id + "/tasks", query).json();
4998
5182
  }
@@ -5048,7 +5232,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
5048
5232
  let {
5049
5233
  id
5050
5234
  } = _ref2,
5051
- query = _objectWithoutPropertiesLoose(_ref2, _excluded2$2);
5235
+ query = _objectWithoutPropertiesLoose(_ref2, _excluded2$3);
5052
5236
 
5053
5237
  return this.http.get("/scheduler/taskresource/" + id, query).json();
5054
5238
  }
@@ -5636,24 +5820,12 @@ let Statistic = /*#__PURE__*/function (_StatisticService) {
5636
5820
  return _super.apply(this, arguments);
5637
5821
  }
5638
5822
 
5639
- _createClass(Statistic, [{
5640
- key: "getStatistic",
5641
- value: function getStatistic(params) {
5642
- return this.statisticsDb(params);
5643
- }
5644
- }, {
5645
- key: "getClassify",
5646
- value: function getClassify(params) {
5647
- return this.classify(params);
5648
- }
5649
- }]);
5650
-
5651
- return Statistic;
5823
+ return _createClass(Statistic);
5652
5824
  }(StatisticService);
5653
5825
 
5654
- const _excluded$5 = ["name"],
5655
- _excluded2$3 = ["name"],
5656
- _excluded3$2 = ["name"];
5826
+ const _excluded$6 = ["name"],
5827
+ _excluded2$4 = ["name"],
5828
+ _excluded3$3 = ["name"];
5657
5829
  /**
5658
5830
  * @title Spatial Processing Core API
5659
5831
  * @version 1.5.1.0
@@ -5825,7 +5997,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
5825
5997
  let {
5826
5998
  name
5827
5999
  } = _ref,
5828
- query = _objectWithoutPropertiesLoose(_ref, _excluded$5);
6000
+ query = _objectWithoutPropertiesLoose(_ref, _excluded$6);
5829
6001
 
5830
6002
  return this.http.get("/tables/" + name + "/data", query).json();
5831
6003
  }
@@ -5864,7 +6036,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
5864
6036
  let {
5865
6037
  name
5866
6038
  } = _ref2,
5867
- query = _objectWithoutPropertiesLoose(_ref2, _excluded2$3);
6039
+ query = _objectWithoutPropertiesLoose(_ref2, _excluded2$4);
5868
6040
 
5869
6041
  return this.http.patch("/tables/" + name + "/data", data, query).then(() => {});
5870
6042
  }
@@ -5886,7 +6058,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
5886
6058
  let {
5887
6059
  name
5888
6060
  } = _ref3,
5889
- query = _objectWithoutPropertiesLoose(_ref3, _excluded3$2);
6061
+ query = _objectWithoutPropertiesLoose(_ref3, _excluded3$3);
5890
6062
 
5891
6063
  return this.http.delete("/tables/" + name + "/data", null, query).then(() => {});
5892
6064
  }
@@ -6095,7 +6267,7 @@ let Tools = /*#__PURE__*/function (_ToolsService) {
6095
6267
  return _createClass(Tools);
6096
6268
  }(ToolsService);
6097
6269
 
6098
- const _excluded$6 = ["name", "z", "x", "y"];
6270
+ const _excluded$7 = ["name", "z", "x", "y"];
6099
6271
  /**
6100
6272
  * @title Spatial Processing Core API
6101
6273
  * @version 1.5.1.0
@@ -6134,7 +6306,7 @@ let VectorTileService = /*#__PURE__*/function (_Service) {
6134
6306
  x,
6135
6307
  y
6136
6308
  } = _ref,
6137
- query = _objectWithoutPropertiesLoose(_ref, _excluded$6);
6309
+ query = _objectWithoutPropertiesLoose(_ref, _excluded$7);
6138
6310
 
6139
6311
  return this.http.get("/vt/" + name + "/" + z + "/" + x + "/" + y + ".pbf", query).then(() => {});
6140
6312
  }
@@ -6154,19 +6326,7 @@ let VectorTiles = /*#__PURE__*/function (_VectorTileService) {
6154
6326
  return _super.apply(this, arguments);
6155
6327
  }
6156
6328
 
6157
- _createClass(VectorTiles, [{
6158
- key: "getVt",
6159
- value: function getVt(name, z, x, y) {
6160
- return this.getVectorTile({
6161
- name,
6162
- z,
6163
- x,
6164
- y
6165
- });
6166
- }
6167
- }]);
6168
-
6169
- return VectorTiles;
6329
+ return _createClass(VectorTiles);
6170
6330
  }(VectorTileService);
6171
6331
 
6172
6332
  var UrlPath;
@@ -6298,6 +6458,7 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
6298
6458
  _this.queryToken = new QueryTokenAccessService(_this.http);
6299
6459
  _this.dataSource = new DataSourceService(_this.http);
6300
6460
  _this.remoteTaskManager = new RemoteTaskManager(_this.http);
6461
+ _this.cameras = new Cameras(_this.http);
6301
6462
  _this.names = new Names({
6302
6463
  account: _this.account
6303
6464
  });
@@ -6843,66 +7004,6 @@ var ErrorType;
6843
7004
  ErrorType["EmailNotSet"] = "EmailNotSet";
6844
7005
  })(ErrorType || (ErrorType = {}));
6845
7006
  /**
6846
- * Sets whether font should be styled.
6847
-
6848
- normal
6849
-
6850
- oblique
6851
-
6852
- italic
6853
- */
6854
-
6855
-
6856
- var FontStyle;
6857
-
6858
- (function (FontStyle) {
6859
- FontStyle["Normal"] = "normal";
6860
- FontStyle["Oblique"] = "oblique";
6861
- FontStyle["Italic"] = "italic";
6862
- })(FontStyle || (FontStyle = {}));
6863
- /**
6864
- * Specifies the weight (or boldness) of the font.
6865
-
6866
- Thin
6867
-
6868
- ExtraLight
6869
-
6870
- Light
6871
-
6872
- SemiLight
6873
-
6874
- Normal
6875
-
6876
- Medium
6877
-
6878
- DemiBold
6879
-
6880
- Bold
6881
-
6882
- ExtraBold
6883
-
6884
- Black
6885
-
6886
- ExtraBlack
6887
- */
6888
-
6889
-
6890
- var FontWeight;
6891
-
6892
- (function (FontWeight) {
6893
- FontWeight["Thin"] = "Thin";
6894
- FontWeight["ExtraLight"] = "ExtraLight";
6895
- FontWeight["Light"] = "Light";
6896
- FontWeight["SemiLight"] = "SemiLight";
6897
- FontWeight["Normal"] = "Normal";
6898
- FontWeight["Medium"] = "Medium";
6899
- FontWeight["DemiBold"] = "DemiBold";
6900
- FontWeight["Bold"] = "Bold";
6901
- FontWeight["ExtraBold"] = "ExtraBold";
6902
- FontWeight["Black"] = "Black";
6903
- FontWeight["ExtraBlack"] = "ExtraBlack";
6904
- })(FontWeight || (FontWeight = {}));
6905
- /**
6906
7007
  *
6907
7008
 
6908
7009
  unknown
@@ -6951,90 +7052,6 @@ var Group;
6951
7052
  Group["All"] = "all";
6952
7053
  })(Group || (Group = {}));
6953
7054
  /**
6954
- * Specifies the settings of line cap. This is applied to the beginning and end of each non-closed line.
6955
-
6956
- Flat
6957
-
6958
- Square
6959
-
6960
- Round
6961
-
6962
- Triangle
6963
- */
6964
-
6965
-
6966
- var LineCapStyle;
6967
-
6968
- (function (LineCapStyle) {
6969
- LineCapStyle["Flat"] = "Flat";
6970
- LineCapStyle["Square"] = "Square";
6971
- LineCapStyle["Round"] = "Round";
6972
- LineCapStyle["Triangle"] = "Triangle";
6973
- })(LineCapStyle || (LineCapStyle = {}));
6974
- /**
6975
- * Type of the line ending.
6976
-
6977
- none
6978
-
6979
- arrow
6980
-
6981
- filledArrow
6982
-
6983
- square
6984
-
6985
- filledSquare
6986
-
6987
- circle
6988
-
6989
- filledCircle
6990
-
6991
- diamond
6992
-
6993
- filledDiamond
6994
-
6995
- roundSquare
6996
-
6997
- filledRoundSquare
6998
-
6999
- svg
7000
- */
7001
-
7002
-
7003
- var LineEndingType;
7004
-
7005
- (function (LineEndingType) {
7006
- LineEndingType["None"] = "none";
7007
- LineEndingType["Arrow"] = "arrow";
7008
- LineEndingType["FilledArrow"] = "filledArrow";
7009
- LineEndingType["Square"] = "square";
7010
- LineEndingType["FilledSquare"] = "filledSquare";
7011
- LineEndingType["Circle"] = "circle";
7012
- LineEndingType["FilledCircle"] = "filledCircle";
7013
- LineEndingType["Diamond"] = "diamond";
7014
- LineEndingType["FilledDiamond"] = "filledDiamond";
7015
- LineEndingType["RoundSquare"] = "roundSquare";
7016
- LineEndingType["FilledRoundSquare"] = "filledRoundSquare";
7017
- LineEndingType["Svg"] = "svg";
7018
- })(LineEndingType || (LineEndingType = {}));
7019
- /**
7020
- * Specifies the settings of lines join. This is applied to corners in lines and rectangles.
7021
-
7022
- Miter
7023
-
7024
- Bevel
7025
-
7026
- Round
7027
- */
7028
-
7029
-
7030
- var LineJoinType;
7031
-
7032
- (function (LineJoinType) {
7033
- LineJoinType["Miter"] = "Miter";
7034
- LineJoinType["Bevel"] = "Bevel";
7035
- LineJoinType["Round"] = "Round";
7036
- })(LineJoinType || (LineJoinType = {}));
7037
- /**
7038
7055
  * Filter exists resources by owner.
7039
7056
 
7040
7057
  My
@@ -7131,6 +7148,24 @@ var PolicyType;
7131
7148
  PolicyType["MaxEqlQueryParametersValues"] = "MaxEqlQueryParametersValues";
7132
7149
  })(PolicyType || (PolicyType = {}));
7133
7150
  /**
7151
+ * Stream quality.
7152
+
7153
+ Low
7154
+
7155
+ Medium
7156
+
7157
+ High
7158
+ */
7159
+
7160
+
7161
+ var Quality;
7162
+
7163
+ (function (Quality) {
7164
+ Quality["Low"] = "Low";
7165
+ Quality["Medium"] = "Medium";
7166
+ Quality["High"] = "High";
7167
+ })(Quality || (Quality = {}));
7168
+ /**
7134
7169
  *
7135
7170
 
7136
7171
  Init
@@ -7173,8 +7208,6 @@ RemoteTileService
7173
7208
 
7174
7209
  ProxyService
7175
7210
 
7176
- PostgresLayerService
7177
-
7178
7211
  QueryLayerService
7179
7212
 
7180
7213
  TileCatalogTable
@@ -7186,7 +7219,6 @@ var ResourceSubTypeFilter;
7186
7219
  (function (ResourceSubTypeFilter) {
7187
7220
  ResourceSubTypeFilter["RemoteTileService"] = "RemoteTileService";
7188
7221
  ResourceSubTypeFilter["ProxyService"] = "ProxyService";
7189
- ResourceSubTypeFilter["PostgresLayerService"] = "PostgresLayerService";
7190
7222
  ResourceSubTypeFilter["QueryLayerService"] = "QueryLayerService";
7191
7223
  ResourceSubTypeFilter["TileCatalogTable"] = "TileCatalogTable";
7192
7224
  })(ResourceSubTypeFilter || (ResourceSubTypeFilter = {}));
@@ -7337,45 +7369,6 @@ var TaskResourceSubType;
7337
7369
  TaskResourceSubType["PythonTask"] = "PythonTask";
7338
7370
  })(TaskResourceSubType || (TaskResourceSubType = {}));
7339
7371
  /**
7340
- * Sets the horizontal alignment of text.
7341
-
7342
- right
7343
-
7344
- left
7345
-
7346
- center
7347
-
7348
- justified
7349
- */
7350
-
7351
-
7352
- var TextAlignment;
7353
-
7354
- (function (TextAlignment) {
7355
- TextAlignment["Right"] = "right";
7356
- TextAlignment["Left"] = "left";
7357
- TextAlignment["Center"] = "center";
7358
- TextAlignment["Justified"] = "justified";
7359
- })(TextAlignment || (TextAlignment = {}));
7360
- /**
7361
- * Sets the vertical alignment of text.
7362
-
7363
- top
7364
-
7365
- bottom
7366
-
7367
- middle
7368
- */
7369
-
7370
-
7371
- var TextVerticalAlignment;
7372
-
7373
- (function (TextVerticalAlignment) {
7374
- TextVerticalAlignment["Top"] = "top";
7375
- TextVerticalAlignment["Bottom"] = "bottom";
7376
- TextVerticalAlignment["Middle"] = "middle";
7377
- })(TextVerticalAlignment || (TextVerticalAlignment = {}));
7378
- /**
7379
7372
  *
7380
7373
 
7381
7374
  Task
@@ -7469,5 +7462,5 @@ var WorkerSettingsFieldType;
7469
7462
  WorkerSettingsFieldType["AttributeArray"] = "AttributeArray";
7470
7463
  })(WorkerSettingsFieldType || (WorkerSettingsFieldType = {}));
7471
7464
 
7472
- export { Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeIconType, AttributeSelectorType, AttributeType, AuthorizationGrant, BulkOperations, CatalogResourceType, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConnectionStatus, DataSourceType, DependencyType, Eql, ErrorDetailsType, ErrorReason, ErrorType, Feedback, FileUpload, Filters, FontStyle, FontWeight, GEOCODE_PROVIDER, Geocode, GeometryType, Group, HttpClient, Import, Layers, LineCapStyle, LineEndingType, LineJoinType, Names, Notification, NotificationEvent, OwnerFilter, PbfSchema, Permissions, PolicyType, PortalSettings, Projects, RemoteTaskManager, RemoteTaskStatus, ResourceSeparator, ResourceSubTypeFilter, ResourceType, ResourceTypeFilter, ResourceTypeLink, Resources, ResponseType, STORAGE_REFRESH_TOKEN_KEY, STORAGE_TOKEN_KEY, Security, SimplifyType, Statistic, StringSubType, Tables, TaskResourceSubType, TextAlignment, TextVerticalAlignment, Tools, UrlPath, VectorTiles, WorkerMethodType, WorkerSettingsFieldType, addSubDomainToLocation, errorHandler, formDataFromFile, generateId, getFetchingUrlPath, isHTTPError, isHandledError, isProjectContentItems, isString, isTileLayerService, parseJwt, promiseAllIgnoreErrors, stripUselessSlashes, toFormData, unique };
7465
+ export { Account, AccountPreview, AggregationFunction, Api, ApiEvent, AttributeIconType, AttributeSelectorType, AttributeType, AuthorizationGrant, BulkOperations, Cameras, CatalogResourceType, ClassificationType, ClassifyAttributeType, ClientSettings, ConfigurationErrorEnum, ConnectionStatus, DataSourceType, DependencyType, Eql, ErrorDetailsType, ErrorReason, ErrorType, Feedback, FileUpload, Filters, GEOCODE_PROVIDER, Geocode, GeometryType, Group, HttpClient, Import, Layers, Names, Notification, NotificationEvent, OwnerFilter, PbfSchema, Permissions, PolicyType, PortalSettings, Projects, Quality, RemoteTaskManager, RemoteTaskStatus, ResourceSeparator, ResourceSubTypeFilter, ResourceType, ResourceTypeFilter, ResourceTypeLink, Resources, ResponseType, STORAGE_REFRESH_TOKEN_KEY, STORAGE_TOKEN_KEY, Security, SimplifyType, Statistic, StringSubType, Tables, TaskResourceSubType, Tools, UrlPath, VectorTiles, WorkerMethodType, WorkerSettingsFieldType, addSubDomainToLocation, errorHandler, formDataFromFile, generateId, getFetchingUrlPath, isHTTPError, isHandledError, isProjectContentItems, isString, isTileLayerService, parseJwt, promiseAllIgnoreErrors, stripUselessSlashes, toFormData, unique };
7473
7466
  //# sourceMappingURL=api.esm.js.map