@evergis/api 4.0.22 → 4.0.23
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.d.ts +2 -1
- package/dist/__generated__/CamerasService.d.ts +105 -0
- package/dist/__generated__/LayersService.d.ts +2 -2
- package/dist/__generated__/ProjectsService.d.ts +2 -2
- package/dist/__generated__/TablesService.d.ts +2 -2
- package/dist/__generated__/WmsServerService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +183 -3
- package/dist/api.cjs.development.js +251 -66
- package/dist/api.cjs.development.js.map +1 -1
- package/dist/api.cjs.production.min.js +1 -1
- package/dist/api.cjs.production.min.js.map +1 -1
- package/dist/api.esm.js +263 -67
- package/dist/api.esm.js.map +1 -1
- package/dist/services/Cameras.d.ts +3 -0
- package/dist/services/Feedback.d.ts +0 -2
- package/dist/services/Statistic.d.ts +0 -5
- package/dist/services/VectorTiles.d.ts +0 -1
- package/dist/services/index.d.ts +1 -0
- package/package.json +2 -2
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
|
|
@@ -2484,14 +2692,7 @@ let Feedback = /*#__PURE__*/function (_FeedbackService) {
|
|
|
2484
2692
|
return _super.apply(this, arguments);
|
|
2485
2693
|
}
|
|
2486
2694
|
|
|
2487
|
-
_createClass(Feedback
|
|
2488
|
-
key: "postFeedback",
|
|
2489
|
-
value: function postFeedback(query, data) {
|
|
2490
|
-
return this.feedback(query, data);
|
|
2491
|
-
}
|
|
2492
|
-
}]);
|
|
2493
|
-
|
|
2494
|
-
return Feedback;
|
|
2695
|
+
return _createClass(Feedback);
|
|
2495
2696
|
}(FeedbackService);
|
|
2496
2697
|
|
|
2497
2698
|
let FileUpload = /*#__PURE__*/function (_CatalogService) {
|
|
@@ -2610,9 +2811,9 @@ let Filters = /*#__PURE__*/function (_FiltersService) {
|
|
|
2610
2811
|
return _createClass(Filters);
|
|
2611
2812
|
}(FiltersService);
|
|
2612
2813
|
|
|
2613
|
-
const _excluded$
|
|
2614
|
-
_excluded2 = ["providerName"],
|
|
2615
|
-
_excluded3 = ["providerName"];
|
|
2814
|
+
const _excluded$2 = ["providerName"],
|
|
2815
|
+
_excluded2$1 = ["providerName"],
|
|
2816
|
+
_excluded3$1 = ["providerName"];
|
|
2616
2817
|
/**
|
|
2617
2818
|
* @title Spatial Processing Core API
|
|
2618
2819
|
* @version 1.5.1.0
|
|
@@ -2648,7 +2849,7 @@ let GeocodeService = /*#__PURE__*/function (_Service) {
|
|
|
2648
2849
|
let {
|
|
2649
2850
|
providerName
|
|
2650
2851
|
} = _ref,
|
|
2651
|
-
query = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2852
|
+
query = _objectWithoutPropertiesLoose(_ref, _excluded$2);
|
|
2652
2853
|
|
|
2653
2854
|
return this.http.get("/geocode/" + providerName, query).json();
|
|
2654
2855
|
}
|
|
@@ -2670,7 +2871,7 @@ let GeocodeService = /*#__PURE__*/function (_Service) {
|
|
|
2670
2871
|
let {
|
|
2671
2872
|
providerName
|
|
2672
2873
|
} = _ref2,
|
|
2673
|
-
query = _objectWithoutPropertiesLoose(_ref2, _excluded2);
|
|
2874
|
+
query = _objectWithoutPropertiesLoose(_ref2, _excluded2$1);
|
|
2674
2875
|
|
|
2675
2876
|
return this.http.get("/geocode/" + providerName + "/geocodeByPoint", query).json();
|
|
2676
2877
|
}
|
|
@@ -2692,7 +2893,7 @@ let GeocodeService = /*#__PURE__*/function (_Service) {
|
|
|
2692
2893
|
let {
|
|
2693
2894
|
providerName
|
|
2694
2895
|
} = _ref3,
|
|
2695
|
-
query = _objectWithoutPropertiesLoose(_ref3, _excluded3);
|
|
2896
|
+
query = _objectWithoutPropertiesLoose(_ref3, _excluded3$1);
|
|
2696
2897
|
|
|
2697
2898
|
return this.http.get("/geocode/" + providerName + "/suggest", query).json();
|
|
2698
2899
|
}
|
|
@@ -2938,12 +3139,12 @@ let Import = /*#__PURE__*/function (_ImportService) {
|
|
|
2938
3139
|
return _createClass(Import);
|
|
2939
3140
|
}(ImportService);
|
|
2940
3141
|
|
|
2941
|
-
const _excluded$
|
|
2942
|
-
_excluded2$
|
|
2943
|
-
_excluded3$
|
|
2944
|
-
_excluded4 = ["name", "x", "y", "z"],
|
|
2945
|
-
_excluded5 = ["name", "x", "y", "z", "format"],
|
|
2946
|
-
_excluded6 = ["name", "x", "y", "z", "dpi", "format"],
|
|
3142
|
+
const _excluded$3 = ["name"],
|
|
3143
|
+
_excluded2$2 = ["name"],
|
|
3144
|
+
_excluded3$2 = ["name", "id"],
|
|
3145
|
+
_excluded4$1 = ["name", "x", "y", "z"],
|
|
3146
|
+
_excluded5$1 = ["name", "x", "y", "z", "format"],
|
|
3147
|
+
_excluded6$1 = ["name", "x", "y", "z", "dpi", "format"],
|
|
2947
3148
|
_excluded7 = ["name"],
|
|
2948
3149
|
_excluded8 = ["name"],
|
|
2949
3150
|
_excluded9 = ["name"],
|
|
@@ -3424,7 +3625,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3424
3625
|
let {
|
|
3425
3626
|
name
|
|
3426
3627
|
} = _ref,
|
|
3427
|
-
query = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3628
|
+
query = _objectWithoutPropertiesLoose(_ref, _excluded$3);
|
|
3428
3629
|
|
|
3429
3630
|
return this.http.get("/layers/" + name + "/features", query).json();
|
|
3430
3631
|
}
|
|
@@ -3446,7 +3647,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3446
3647
|
let {
|
|
3447
3648
|
name
|
|
3448
3649
|
} = _ref2,
|
|
3449
|
-
query = _objectWithoutPropertiesLoose(_ref2, _excluded2$
|
|
3650
|
+
query = _objectWithoutPropertiesLoose(_ref2, _excluded2$2);
|
|
3450
3651
|
|
|
3451
3652
|
return this.http.delete("/layers/" + name + "/features", null, query).json();
|
|
3452
3653
|
}
|
|
@@ -3503,7 +3704,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3503
3704
|
name,
|
|
3504
3705
|
id
|
|
3505
3706
|
} = _ref3,
|
|
3506
|
-
query = _objectWithoutPropertiesLoose(_ref3, _excluded3$
|
|
3707
|
+
query = _objectWithoutPropertiesLoose(_ref3, _excluded3$2);
|
|
3507
3708
|
|
|
3508
3709
|
return this.http.get("/layers/" + name + "/features/" + id, query).json();
|
|
3509
3710
|
}
|
|
@@ -3528,7 +3729,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3528
3729
|
y,
|
|
3529
3730
|
z
|
|
3530
3731
|
} = _ref4,
|
|
3531
|
-
query = _objectWithoutPropertiesLoose(_ref4, _excluded4);
|
|
3732
|
+
query = _objectWithoutPropertiesLoose(_ref4, _excluded4$1);
|
|
3532
3733
|
|
|
3533
3734
|
return this.http.createUrl("/layers/" + name + "/tile/" + z + "/" + x + "/" + y, query);
|
|
3534
3735
|
}
|
|
@@ -3554,7 +3755,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3554
3755
|
z,
|
|
3555
3756
|
format
|
|
3556
3757
|
} = _ref5,
|
|
3557
|
-
query = _objectWithoutPropertiesLoose(_ref5, _excluded5);
|
|
3758
|
+
query = _objectWithoutPropertiesLoose(_ref5, _excluded5$1);
|
|
3558
3759
|
|
|
3559
3760
|
return this.http.createUrl("/layers/" + name + "/tile/" + z + "/" + x + "/" + y + "." + format, query);
|
|
3560
3761
|
}
|
|
@@ -3581,7 +3782,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3581
3782
|
dpi,
|
|
3582
3783
|
format
|
|
3583
3784
|
} = _ref6,
|
|
3584
|
-
query = _objectWithoutPropertiesLoose(_ref6, _excluded6);
|
|
3785
|
+
query = _objectWithoutPropertiesLoose(_ref6, _excluded6$1);
|
|
3585
3786
|
|
|
3586
3787
|
return this.http.createUrl("/layers/" + name + "/tile/" + z + "/" + x + "/" + y + "@" + dpi + "x." + format, query);
|
|
3587
3788
|
}
|
|
@@ -4481,7 +4682,7 @@ let PortalSettings = /*#__PURE__*/function (_ClientSettingsServic) {
|
|
|
4481
4682
|
return PortalSettings;
|
|
4482
4683
|
}(ClientSettingsService);
|
|
4483
4684
|
|
|
4484
|
-
const _excluded$
|
|
4685
|
+
const _excluded$4 = ["name"];
|
|
4485
4686
|
/**
|
|
4486
4687
|
* @title Spatial Processing Core API
|
|
4487
4688
|
* @version 1.5.1.0
|
|
@@ -4653,7 +4854,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
4653
4854
|
let {
|
|
4654
4855
|
name
|
|
4655
4856
|
} = _ref,
|
|
4656
|
-
query = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4857
|
+
query = _objectWithoutPropertiesLoose(_ref, _excluded$4);
|
|
4657
4858
|
|
|
4658
4859
|
return this.http.get("/projects/" + name + "/extent", query).json();
|
|
4659
4860
|
}
|
|
@@ -4836,8 +5037,8 @@ function isProjectContentItems(v) {
|
|
|
4836
5037
|
return v !== null && v !== undefined;
|
|
4837
5038
|
}
|
|
4838
5039
|
|
|
4839
|
-
const _excluded$
|
|
4840
|
-
_excluded2$
|
|
5040
|
+
const _excluded$5 = ["id"],
|
|
5041
|
+
_excluded2$3 = ["id"];
|
|
4841
5042
|
/**
|
|
4842
5043
|
* @title Spatial Processing Core API
|
|
4843
5044
|
* @version 1.5.1.0
|
|
@@ -4992,7 +5193,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
4992
5193
|
let {
|
|
4993
5194
|
id
|
|
4994
5195
|
} = _ref,
|
|
4995
|
-
query = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5196
|
+
query = _objectWithoutPropertiesLoose(_ref, _excluded$5);
|
|
4996
5197
|
|
|
4997
5198
|
return this.http.get("/scheduler/" + id + "/tasks", query).json();
|
|
4998
5199
|
}
|
|
@@ -5048,7 +5249,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
5048
5249
|
let {
|
|
5049
5250
|
id
|
|
5050
5251
|
} = _ref2,
|
|
5051
|
-
query = _objectWithoutPropertiesLoose(_ref2, _excluded2$
|
|
5252
|
+
query = _objectWithoutPropertiesLoose(_ref2, _excluded2$3);
|
|
5052
5253
|
|
|
5053
5254
|
return this.http.get("/scheduler/taskresource/" + id, query).json();
|
|
5054
5255
|
}
|
|
@@ -5636,24 +5837,12 @@ let Statistic = /*#__PURE__*/function (_StatisticService) {
|
|
|
5636
5837
|
return _super.apply(this, arguments);
|
|
5637
5838
|
}
|
|
5638
5839
|
|
|
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;
|
|
5840
|
+
return _createClass(Statistic);
|
|
5652
5841
|
}(StatisticService);
|
|
5653
5842
|
|
|
5654
|
-
const _excluded$
|
|
5655
|
-
_excluded2$
|
|
5656
|
-
_excluded3$
|
|
5843
|
+
const _excluded$6 = ["name"],
|
|
5844
|
+
_excluded2$4 = ["name"],
|
|
5845
|
+
_excluded3$3 = ["name"];
|
|
5657
5846
|
/**
|
|
5658
5847
|
* @title Spatial Processing Core API
|
|
5659
5848
|
* @version 1.5.1.0
|
|
@@ -5825,7 +6014,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
5825
6014
|
let {
|
|
5826
6015
|
name
|
|
5827
6016
|
} = _ref,
|
|
5828
|
-
query = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
6017
|
+
query = _objectWithoutPropertiesLoose(_ref, _excluded$6);
|
|
5829
6018
|
|
|
5830
6019
|
return this.http.get("/tables/" + name + "/data", query).json();
|
|
5831
6020
|
}
|
|
@@ -5864,7 +6053,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
5864
6053
|
let {
|
|
5865
6054
|
name
|
|
5866
6055
|
} = _ref2,
|
|
5867
|
-
query = _objectWithoutPropertiesLoose(_ref2, _excluded2$
|
|
6056
|
+
query = _objectWithoutPropertiesLoose(_ref2, _excluded2$4);
|
|
5868
6057
|
|
|
5869
6058
|
return this.http.patch("/tables/" + name + "/data", data, query).then(() => {});
|
|
5870
6059
|
}
|
|
@@ -5886,7 +6075,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
5886
6075
|
let {
|
|
5887
6076
|
name
|
|
5888
6077
|
} = _ref3,
|
|
5889
|
-
query = _objectWithoutPropertiesLoose(_ref3, _excluded3$
|
|
6078
|
+
query = _objectWithoutPropertiesLoose(_ref3, _excluded3$3);
|
|
5890
6079
|
|
|
5891
6080
|
return this.http.delete("/tables/" + name + "/data", null, query).then(() => {});
|
|
5892
6081
|
}
|
|
@@ -6095,7 +6284,7 @@ let Tools = /*#__PURE__*/function (_ToolsService) {
|
|
|
6095
6284
|
return _createClass(Tools);
|
|
6096
6285
|
}(ToolsService);
|
|
6097
6286
|
|
|
6098
|
-
const _excluded$
|
|
6287
|
+
const _excluded$7 = ["name", "z", "x", "y"];
|
|
6099
6288
|
/**
|
|
6100
6289
|
* @title Spatial Processing Core API
|
|
6101
6290
|
* @version 1.5.1.0
|
|
@@ -6134,7 +6323,7 @@ let VectorTileService = /*#__PURE__*/function (_Service) {
|
|
|
6134
6323
|
x,
|
|
6135
6324
|
y
|
|
6136
6325
|
} = _ref,
|
|
6137
|
-
query = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
6326
|
+
query = _objectWithoutPropertiesLoose(_ref, _excluded$7);
|
|
6138
6327
|
|
|
6139
6328
|
return this.http.get("/vt/" + name + "/" + z + "/" + x + "/" + y + ".pbf", query).then(() => {});
|
|
6140
6329
|
}
|
|
@@ -6154,19 +6343,7 @@ let VectorTiles = /*#__PURE__*/function (_VectorTileService) {
|
|
|
6154
6343
|
return _super.apply(this, arguments);
|
|
6155
6344
|
}
|
|
6156
6345
|
|
|
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;
|
|
6346
|
+
return _createClass(VectorTiles);
|
|
6170
6347
|
}(VectorTileService);
|
|
6171
6348
|
|
|
6172
6349
|
var UrlPath;
|
|
@@ -6298,6 +6475,7 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
|
|
|
6298
6475
|
_this.queryToken = new QueryTokenAccessService(_this.http);
|
|
6299
6476
|
_this.dataSource = new DataSourceService(_this.http);
|
|
6300
6477
|
_this.remoteTaskManager = new RemoteTaskManager(_this.http);
|
|
6478
|
+
_this.cameras = new Cameras(_this.http);
|
|
6301
6479
|
_this.names = new Names({
|
|
6302
6480
|
account: _this.account
|
|
6303
6481
|
});
|
|
@@ -7131,6 +7309,24 @@ var PolicyType;
|
|
|
7131
7309
|
PolicyType["MaxEqlQueryParametersValues"] = "MaxEqlQueryParametersValues";
|
|
7132
7310
|
})(PolicyType || (PolicyType = {}));
|
|
7133
7311
|
/**
|
|
7312
|
+
* Stream quality.
|
|
7313
|
+
|
|
7314
|
+
Low
|
|
7315
|
+
|
|
7316
|
+
Medium
|
|
7317
|
+
|
|
7318
|
+
High
|
|
7319
|
+
*/
|
|
7320
|
+
|
|
7321
|
+
|
|
7322
|
+
var Quality;
|
|
7323
|
+
|
|
7324
|
+
(function (Quality) {
|
|
7325
|
+
Quality["Low"] = "Low";
|
|
7326
|
+
Quality["Medium"] = "Medium";
|
|
7327
|
+
Quality["High"] = "High";
|
|
7328
|
+
})(Quality || (Quality = {}));
|
|
7329
|
+
/**
|
|
7134
7330
|
*
|
|
7135
7331
|
|
|
7136
7332
|
Init
|
|
@@ -7469,5 +7665,5 @@ var WorkerSettingsFieldType;
|
|
|
7469
7665
|
WorkerSettingsFieldType["AttributeArray"] = "AttributeArray";
|
|
7470
7666
|
})(WorkerSettingsFieldType || (WorkerSettingsFieldType = {}));
|
|
7471
7667
|
|
|
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 };
|
|
7668
|
+
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, FontStyle, FontWeight, GEOCODE_PROVIDER, Geocode, GeometryType, Group, HttpClient, Import, Layers, LineCapStyle, LineEndingType, LineJoinType, 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, TextAlignment, TextVerticalAlignment, Tools, UrlPath, VectorTiles, WorkerMethodType, WorkerSettingsFieldType, addSubDomainToLocation, errorHandler, formDataFromFile, generateId, getFetchingUrlPath, isHTTPError, isHandledError, isProjectContentItems, isString, isTileLayerService, parseJwt, promiseAllIgnoreErrors, stripUselessSlashes, toFormData, unique };
|
|
7473
7669
|
//# sourceMappingURL=api.esm.js.map
|