@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.d.ts +2 -1
- package/dist/__generated__/CamerasService.d.ts +105 -0
- package/dist/__generated__/DataSourceService.d.ts +2 -2
- package/dist/__generated__/FeedbackService.d.ts +1 -13
- package/dist/__generated__/ImportService.d.ts +3 -3
- package/dist/__generated__/LayersService.d.ts +2 -2
- package/dist/__generated__/ProjectsService.d.ts +3 -3
- package/dist/__generated__/TablesService.d.ts +2 -2
- package/dist/__generated__/WmsServerService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +198 -1055
- package/dist/api.cjs.development.js +252 -146
- 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 +264 -271
- 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
|
@@ -2088,6 +2088,214 @@ let BulkOperations = /*#__PURE__*/function (_BulkOperationsServic) {
|
|
|
2088
2088
|
return _createClass(BulkOperations);
|
|
2089
2089
|
}(BulkOperationsService);
|
|
2090
2090
|
|
|
2091
|
+
const _excluded$1 = ["cameraId"],
|
|
2092
|
+
_excluded2 = ["cameraId"],
|
|
2093
|
+
_excluded3 = ["cameraId"],
|
|
2094
|
+
_excluded4 = ["cameraId"],
|
|
2095
|
+
_excluded5 = ["cameraId"],
|
|
2096
|
+
_excluded6 = ["cameraId"];
|
|
2097
|
+
/**
|
|
2098
|
+
* @title Spatial Processing Core API
|
|
2099
|
+
* @version 1.5.1.0
|
|
2100
|
+
* @baseUrl /sp
|
|
2101
|
+
*/
|
|
2102
|
+
|
|
2103
|
+
let CamerasService = /*#__PURE__*/function (_Service) {
|
|
2104
|
+
_inherits(CamerasService, _Service);
|
|
2105
|
+
|
|
2106
|
+
var _super = /*#__PURE__*/_createSuper(CamerasService);
|
|
2107
|
+
|
|
2108
|
+
function CamerasService() {
|
|
2109
|
+
_classCallCheck(this, CamerasService);
|
|
2110
|
+
|
|
2111
|
+
return _super.apply(this, arguments);
|
|
2112
|
+
}
|
|
2113
|
+
|
|
2114
|
+
_createClass(CamerasService, [{
|
|
2115
|
+
key: "getCameras",
|
|
2116
|
+
value:
|
|
2117
|
+
/**
|
|
2118
|
+
* No description
|
|
2119
|
+
*
|
|
2120
|
+
* @tags Cameras
|
|
2121
|
+
* @name GetCameras
|
|
2122
|
+
* @operationId CamerasController_GetCameras
|
|
2123
|
+
* @summary Get cameras list.
|
|
2124
|
+
* @request GET:/cameras
|
|
2125
|
+
* @secure
|
|
2126
|
+
* @response `200` OK
|
|
2127
|
+
*/
|
|
2128
|
+
function getCameras(query) {
|
|
2129
|
+
return this.http.get("/cameras", query).json();
|
|
2130
|
+
}
|
|
2131
|
+
/**
|
|
2132
|
+
* No description
|
|
2133
|
+
*
|
|
2134
|
+
* @tags Cameras
|
|
2135
|
+
* @name GetArchiveFeed
|
|
2136
|
+
* @operationId CamerasController_GetArchiveFeed
|
|
2137
|
+
* @summary Streams an FLV-over-HTTP archive feed starting at specific time.
|
|
2138
|
+
* @request GET:/cameras/{cameraId}/archiveFeed
|
|
2139
|
+
* @secure
|
|
2140
|
+
* @response `200` OK
|
|
2141
|
+
*/
|
|
2142
|
+
|
|
2143
|
+
}, {
|
|
2144
|
+
key: "getArchiveFeed",
|
|
2145
|
+
value: function getArchiveFeed(_ref) {
|
|
2146
|
+
let {
|
|
2147
|
+
cameraId
|
|
2148
|
+
} = _ref,
|
|
2149
|
+
query = _objectWithoutPropertiesLoose(_ref, _excluded$1);
|
|
2150
|
+
|
|
2151
|
+
return this.http.get("/cameras/" + cameraId + "/archiveFeed", query).blob();
|
|
2152
|
+
}
|
|
2153
|
+
/**
|
|
2154
|
+
* No description
|
|
2155
|
+
*
|
|
2156
|
+
* @tags Cameras
|
|
2157
|
+
* @name GetArchiveTimeline
|
|
2158
|
+
* @operationId CamerasController_GetArchiveTimeline
|
|
2159
|
+
* @summary Returns a list of records available within a given timeframe.
|
|
2160
|
+
* @request GET:/cameras/{cameraId}/archiveTimeline
|
|
2161
|
+
* @secure
|
|
2162
|
+
* @response `200` OK
|
|
2163
|
+
*/
|
|
2164
|
+
|
|
2165
|
+
}, {
|
|
2166
|
+
key: "getArchiveTimeline",
|
|
2167
|
+
value: function getArchiveTimeline(_ref2) {
|
|
2168
|
+
let {
|
|
2169
|
+
cameraId
|
|
2170
|
+
} = _ref2,
|
|
2171
|
+
query = _objectWithoutPropertiesLoose(_ref2, _excluded2);
|
|
2172
|
+
|
|
2173
|
+
return this.http.get("/cameras/" + cameraId + "/archiveTimeline", query).json();
|
|
2174
|
+
}
|
|
2175
|
+
/**
|
|
2176
|
+
* No description
|
|
2177
|
+
*
|
|
2178
|
+
* @tags Cameras
|
|
2179
|
+
* @name GetArchiveCalendar
|
|
2180
|
+
* @operationId CamerasController_GetArchiveCalendar
|
|
2181
|
+
* @summary Returns a list of records available within a given timeframe.
|
|
2182
|
+
* @request GET:/cameras/{cameraId}/archiveCalendar
|
|
2183
|
+
* @secure
|
|
2184
|
+
* @response `200` OK
|
|
2185
|
+
*/
|
|
2186
|
+
|
|
2187
|
+
}, {
|
|
2188
|
+
key: "getArchiveCalendar",
|
|
2189
|
+
value: function getArchiveCalendar(_ref3) {
|
|
2190
|
+
let {
|
|
2191
|
+
cameraId
|
|
2192
|
+
} = _ref3,
|
|
2193
|
+
query = _objectWithoutPropertiesLoose(_ref3, _excluded3);
|
|
2194
|
+
|
|
2195
|
+
return this.http.get("/cameras/" + cameraId + "/archiveCalendar", query).json();
|
|
2196
|
+
}
|
|
2197
|
+
/**
|
|
2198
|
+
* No description
|
|
2199
|
+
*
|
|
2200
|
+
* @tags Cameras
|
|
2201
|
+
* @name GetArchiveSnapshot
|
|
2202
|
+
* @operationId CamerasController_GetArchiveSnapshot
|
|
2203
|
+
* @summary Returns a JPEG image from the Camera’s archive.
|
|
2204
|
+
* @request GET:/cameras/{cameraId}/archiveSnapshot
|
|
2205
|
+
* @secure
|
|
2206
|
+
* @response `200` OK
|
|
2207
|
+
*/
|
|
2208
|
+
|
|
2209
|
+
}, {
|
|
2210
|
+
key: "getArchiveSnapshot",
|
|
2211
|
+
value: function getArchiveSnapshot(_ref4) {
|
|
2212
|
+
let {
|
|
2213
|
+
cameraId
|
|
2214
|
+
} = _ref4,
|
|
2215
|
+
query = _objectWithoutPropertiesLoose(_ref4, _excluded4);
|
|
2216
|
+
|
|
2217
|
+
return this.http.get("/cameras/" + cameraId + "/archiveSnapshot", query).blob();
|
|
2218
|
+
}
|
|
2219
|
+
/**
|
|
2220
|
+
* No description
|
|
2221
|
+
*
|
|
2222
|
+
* @tags Cameras
|
|
2223
|
+
* @name GetLiveFeed
|
|
2224
|
+
* @operationId CamerasController_GetLiveFeed
|
|
2225
|
+
* @summary Streams live video feed from the Camera.
|
|
2226
|
+
* @request GET:/cameras/{cameraId}/liveFeed
|
|
2227
|
+
* @secure
|
|
2228
|
+
* @response `200` OK
|
|
2229
|
+
*/
|
|
2230
|
+
|
|
2231
|
+
}, {
|
|
2232
|
+
key: "getLiveFeed",
|
|
2233
|
+
value: function getLiveFeed(_ref5) {
|
|
2234
|
+
let {
|
|
2235
|
+
cameraId
|
|
2236
|
+
} = _ref5,
|
|
2237
|
+
query = _objectWithoutPropertiesLoose(_ref5, _excluded5);
|
|
2238
|
+
|
|
2239
|
+
return this.http.get("/cameras/" + cameraId + "/liveFeed", query).blob();
|
|
2240
|
+
}
|
|
2241
|
+
/**
|
|
2242
|
+
* No description
|
|
2243
|
+
*
|
|
2244
|
+
* @tags Cameras
|
|
2245
|
+
* @name GetLiveSnapshot
|
|
2246
|
+
* @operationId CamerasController_GetLiveSnapshot
|
|
2247
|
+
* @summary Returns a JPEG image from the Camera’s live feed.
|
|
2248
|
+
* @request GET:/cameras/{cameraId}/liveSnapshot
|
|
2249
|
+
* @secure
|
|
2250
|
+
* @response `200` OK
|
|
2251
|
+
*/
|
|
2252
|
+
|
|
2253
|
+
}, {
|
|
2254
|
+
key: "getLiveSnapshot",
|
|
2255
|
+
value: function getLiveSnapshot(cameraId) {
|
|
2256
|
+
return this.http.get("/cameras/" + cameraId + "/liveSnapshot").blob();
|
|
2257
|
+
}
|
|
2258
|
+
/**
|
|
2259
|
+
* No description
|
|
2260
|
+
*
|
|
2261
|
+
* @tags Cameras
|
|
2262
|
+
* @name GetLivePreviewStream
|
|
2263
|
+
* @operationId CamerasController_GetLivePreviewStream
|
|
2264
|
+
* @summary Get live preview stream.
|
|
2265
|
+
* @request GET:/cameras/{cameraId}/getLivePreviewsStream
|
|
2266
|
+
* @secure
|
|
2267
|
+
* @response `200` OK
|
|
2268
|
+
*/
|
|
2269
|
+
|
|
2270
|
+
}, {
|
|
2271
|
+
key: "getLivePreviewStream",
|
|
2272
|
+
value: function getLivePreviewStream(_ref6) {
|
|
2273
|
+
let {
|
|
2274
|
+
cameraId
|
|
2275
|
+
} = _ref6,
|
|
2276
|
+
query = _objectWithoutPropertiesLoose(_ref6, _excluded6);
|
|
2277
|
+
|
|
2278
|
+
return this.http.get("/cameras/" + cameraId + "/getLivePreviewsStream", query).json();
|
|
2279
|
+
}
|
|
2280
|
+
}]);
|
|
2281
|
+
|
|
2282
|
+
return CamerasService;
|
|
2283
|
+
}(Service);
|
|
2284
|
+
|
|
2285
|
+
let Cameras = /*#__PURE__*/function (_CamerasService) {
|
|
2286
|
+
_inherits(Cameras, _CamerasService);
|
|
2287
|
+
|
|
2288
|
+
var _super = /*#__PURE__*/_createSuper(Cameras);
|
|
2289
|
+
|
|
2290
|
+
function Cameras() {
|
|
2291
|
+
_classCallCheck(this, Cameras);
|
|
2292
|
+
|
|
2293
|
+
return _super.apply(this, arguments);
|
|
2294
|
+
}
|
|
2295
|
+
|
|
2296
|
+
return _createClass(Cameras);
|
|
2297
|
+
}(CamerasService);
|
|
2298
|
+
|
|
2091
2299
|
/**
|
|
2092
2300
|
* @title Spatial Processing Core API
|
|
2093
2301
|
* @version 1.5.1.0
|
|
@@ -2438,23 +2646,6 @@ let FeedbackService = /*#__PURE__*/function (_Service) {
|
|
|
2438
2646
|
function increaseResourcesLimit(query) {
|
|
2439
2647
|
return this.http.post("/feedback/limits", null, query).json();
|
|
2440
2648
|
}
|
|
2441
|
-
/**
|
|
2442
|
-
* No description
|
|
2443
|
-
*
|
|
2444
|
-
* @tags Feedback
|
|
2445
|
-
* @name MoreSymbols
|
|
2446
|
-
* @operationId FeedbackController_MoreSymbols
|
|
2447
|
-
* @summary More symbols request.
|
|
2448
|
-
* @request POST:/feedback/symbol
|
|
2449
|
-
* @secure
|
|
2450
|
-
* @response `200` OK
|
|
2451
|
-
*/
|
|
2452
|
-
|
|
2453
|
-
}, {
|
|
2454
|
-
key: "moreSymbols",
|
|
2455
|
-
value: function moreSymbols(query) {
|
|
2456
|
-
return this.http.post("/feedback/symbol", null, query).json();
|
|
2457
|
-
}
|
|
2458
2649
|
/**
|
|
2459
2650
|
* No description
|
|
2460
2651
|
*
|
|
@@ -2488,14 +2679,7 @@ let Feedback = /*#__PURE__*/function (_FeedbackService) {
|
|
|
2488
2679
|
return _super.apply(this, arguments);
|
|
2489
2680
|
}
|
|
2490
2681
|
|
|
2491
|
-
_createClass(Feedback
|
|
2492
|
-
key: "postFeedback",
|
|
2493
|
-
value: function postFeedback(query, data) {
|
|
2494
|
-
return this.feedback(query, data);
|
|
2495
|
-
}
|
|
2496
|
-
}]);
|
|
2497
|
-
|
|
2498
|
-
return Feedback;
|
|
2682
|
+
return _createClass(Feedback);
|
|
2499
2683
|
}(FeedbackService);
|
|
2500
2684
|
|
|
2501
2685
|
let FileUpload = /*#__PURE__*/function (_CatalogService) {
|
|
@@ -2614,9 +2798,9 @@ let Filters = /*#__PURE__*/function (_FiltersService) {
|
|
|
2614
2798
|
return _createClass(Filters);
|
|
2615
2799
|
}(FiltersService);
|
|
2616
2800
|
|
|
2617
|
-
const _excluded$
|
|
2618
|
-
_excluded2 = ["providerName"],
|
|
2619
|
-
_excluded3 = ["providerName"];
|
|
2801
|
+
const _excluded$2 = ["providerName"],
|
|
2802
|
+
_excluded2$1 = ["providerName"],
|
|
2803
|
+
_excluded3$1 = ["providerName"];
|
|
2620
2804
|
/**
|
|
2621
2805
|
* @title Spatial Processing Core API
|
|
2622
2806
|
* @version 1.5.1.0
|
|
@@ -2652,7 +2836,7 @@ let GeocodeService = /*#__PURE__*/function (_Service) {
|
|
|
2652
2836
|
let {
|
|
2653
2837
|
providerName
|
|
2654
2838
|
} = _ref,
|
|
2655
|
-
query = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
2839
|
+
query = _objectWithoutPropertiesLoose(_ref, _excluded$2);
|
|
2656
2840
|
|
|
2657
2841
|
return this.http.get("/geocode/" + providerName, query).json();
|
|
2658
2842
|
}
|
|
@@ -2674,7 +2858,7 @@ let GeocodeService = /*#__PURE__*/function (_Service) {
|
|
|
2674
2858
|
let {
|
|
2675
2859
|
providerName
|
|
2676
2860
|
} = _ref2,
|
|
2677
|
-
query = _objectWithoutPropertiesLoose(_ref2, _excluded2);
|
|
2861
|
+
query = _objectWithoutPropertiesLoose(_ref2, _excluded2$1);
|
|
2678
2862
|
|
|
2679
2863
|
return this.http.get("/geocode/" + providerName + "/geocodeByPoint", query).json();
|
|
2680
2864
|
}
|
|
@@ -2696,7 +2880,7 @@ let GeocodeService = /*#__PURE__*/function (_Service) {
|
|
|
2696
2880
|
let {
|
|
2697
2881
|
providerName
|
|
2698
2882
|
} = _ref3,
|
|
2699
|
-
query = _objectWithoutPropertiesLoose(_ref3, _excluded3);
|
|
2883
|
+
query = _objectWithoutPropertiesLoose(_ref3, _excluded3$1);
|
|
2700
2884
|
|
|
2701
2885
|
return this.http.get("/geocode/" + providerName + "/suggest", query).json();
|
|
2702
2886
|
}
|
|
@@ -2802,7 +2986,7 @@ let ImportService = /*#__PURE__*/function (_Service) {
|
|
|
2802
2986
|
}, {
|
|
2803
2987
|
key: "readPart",
|
|
2804
2988
|
value: function readPart(query) {
|
|
2805
|
-
return this.http.get("/import/read", query).
|
|
2989
|
+
return this.http.get("/import/read", query).json();
|
|
2806
2990
|
}
|
|
2807
2991
|
/**
|
|
2808
2992
|
* No description
|
|
@@ -2942,12 +3126,12 @@ let Import = /*#__PURE__*/function (_ImportService) {
|
|
|
2942
3126
|
return _createClass(Import);
|
|
2943
3127
|
}(ImportService);
|
|
2944
3128
|
|
|
2945
|
-
const _excluded$
|
|
2946
|
-
_excluded2$
|
|
2947
|
-
_excluded3$
|
|
2948
|
-
_excluded4 = ["name", "x", "y", "z"],
|
|
2949
|
-
_excluded5 = ["name", "x", "y", "z", "format"],
|
|
2950
|
-
_excluded6 = ["name", "x", "y", "z", "dpi", "format"],
|
|
3129
|
+
const _excluded$3 = ["name"],
|
|
3130
|
+
_excluded2$2 = ["name"],
|
|
3131
|
+
_excluded3$2 = ["name", "id"],
|
|
3132
|
+
_excluded4$1 = ["name", "x", "y", "z"],
|
|
3133
|
+
_excluded5$1 = ["name", "x", "y", "z", "format"],
|
|
3134
|
+
_excluded6$1 = ["name", "x", "y", "z", "dpi", "format"],
|
|
2951
3135
|
_excluded7 = ["name"],
|
|
2952
3136
|
_excluded8 = ["name"],
|
|
2953
3137
|
_excluded9 = ["name"],
|
|
@@ -3428,7 +3612,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3428
3612
|
let {
|
|
3429
3613
|
name
|
|
3430
3614
|
} = _ref,
|
|
3431
|
-
query = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
3615
|
+
query = _objectWithoutPropertiesLoose(_ref, _excluded$3);
|
|
3432
3616
|
|
|
3433
3617
|
return this.http.get("/layers/" + name + "/features", query).json();
|
|
3434
3618
|
}
|
|
@@ -3450,7 +3634,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3450
3634
|
let {
|
|
3451
3635
|
name
|
|
3452
3636
|
} = _ref2,
|
|
3453
|
-
query = _objectWithoutPropertiesLoose(_ref2, _excluded2$
|
|
3637
|
+
query = _objectWithoutPropertiesLoose(_ref2, _excluded2$2);
|
|
3454
3638
|
|
|
3455
3639
|
return this.http.delete("/layers/" + name + "/features", null, query).json();
|
|
3456
3640
|
}
|
|
@@ -3507,7 +3691,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3507
3691
|
name,
|
|
3508
3692
|
id
|
|
3509
3693
|
} = _ref3,
|
|
3510
|
-
query = _objectWithoutPropertiesLoose(_ref3, _excluded3$
|
|
3694
|
+
query = _objectWithoutPropertiesLoose(_ref3, _excluded3$2);
|
|
3511
3695
|
|
|
3512
3696
|
return this.http.get("/layers/" + name + "/features/" + id, query).json();
|
|
3513
3697
|
}
|
|
@@ -3532,7 +3716,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3532
3716
|
y,
|
|
3533
3717
|
z
|
|
3534
3718
|
} = _ref4,
|
|
3535
|
-
query = _objectWithoutPropertiesLoose(_ref4, _excluded4);
|
|
3719
|
+
query = _objectWithoutPropertiesLoose(_ref4, _excluded4$1);
|
|
3536
3720
|
|
|
3537
3721
|
return this.http.createUrl("/layers/" + name + "/tile/" + z + "/" + x + "/" + y, query);
|
|
3538
3722
|
}
|
|
@@ -3558,7 +3742,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3558
3742
|
z,
|
|
3559
3743
|
format
|
|
3560
3744
|
} = _ref5,
|
|
3561
|
-
query = _objectWithoutPropertiesLoose(_ref5, _excluded5);
|
|
3745
|
+
query = _objectWithoutPropertiesLoose(_ref5, _excluded5$1);
|
|
3562
3746
|
|
|
3563
3747
|
return this.http.createUrl("/layers/" + name + "/tile/" + z + "/" + x + "/" + y + "." + format, query);
|
|
3564
3748
|
}
|
|
@@ -3585,7 +3769,7 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3585
3769
|
dpi,
|
|
3586
3770
|
format
|
|
3587
3771
|
} = _ref6,
|
|
3588
|
-
query = _objectWithoutPropertiesLoose(_ref6, _excluded6);
|
|
3772
|
+
query = _objectWithoutPropertiesLoose(_ref6, _excluded6$1);
|
|
3589
3773
|
|
|
3590
3774
|
return this.http.createUrl("/layers/" + name + "/tile/" + z + "/" + x + "/" + y + "@" + dpi + "x." + format, query);
|
|
3591
3775
|
}
|
|
@@ -4480,7 +4664,7 @@ let PortalSettings = /*#__PURE__*/function (_ClientSettingsServic) {
|
|
|
4480
4664
|
return PortalSettings;
|
|
4481
4665
|
}(ClientSettingsService);
|
|
4482
4666
|
|
|
4483
|
-
const _excluded$
|
|
4667
|
+
const _excluded$4 = ["name"];
|
|
4484
4668
|
/**
|
|
4485
4669
|
* @title Spatial Processing Core API
|
|
4486
4670
|
* @version 1.5.1.0
|
|
@@ -4652,7 +4836,7 @@ let ProjectsService = /*#__PURE__*/function (_Service) {
|
|
|
4652
4836
|
let {
|
|
4653
4837
|
name
|
|
4654
4838
|
} = _ref,
|
|
4655
|
-
query = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
4839
|
+
query = _objectWithoutPropertiesLoose(_ref, _excluded$4);
|
|
4656
4840
|
|
|
4657
4841
|
return this.http.get("/projects/" + name + "/extent", query).json();
|
|
4658
4842
|
}
|
|
@@ -4835,8 +5019,8 @@ function isProjectContentItems(v) {
|
|
|
4835
5019
|
return v !== null && v !== undefined;
|
|
4836
5020
|
}
|
|
4837
5021
|
|
|
4838
|
-
const _excluded$
|
|
4839
|
-
_excluded2$
|
|
5022
|
+
const _excluded$5 = ["id"],
|
|
5023
|
+
_excluded2$3 = ["id"];
|
|
4840
5024
|
/**
|
|
4841
5025
|
* @title Spatial Processing Core API
|
|
4842
5026
|
* @version 1.5.1.0
|
|
@@ -4991,7 +5175,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
4991
5175
|
let {
|
|
4992
5176
|
id
|
|
4993
5177
|
} = _ref,
|
|
4994
|
-
query = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5178
|
+
query = _objectWithoutPropertiesLoose(_ref, _excluded$5);
|
|
4995
5179
|
|
|
4996
5180
|
return this.http.get("/scheduler/" + id + "/tasks", query).json();
|
|
4997
5181
|
}
|
|
@@ -5047,7 +5231,7 @@ let RemoteTaskManagerService = /*#__PURE__*/function (_Service) {
|
|
|
5047
5231
|
let {
|
|
5048
5232
|
id
|
|
5049
5233
|
} = _ref2,
|
|
5050
|
-
query = _objectWithoutPropertiesLoose(_ref2, _excluded2$
|
|
5234
|
+
query = _objectWithoutPropertiesLoose(_ref2, _excluded2$3);
|
|
5051
5235
|
|
|
5052
5236
|
return this.http.get("/scheduler/taskresource/" + id, query).json();
|
|
5053
5237
|
}
|
|
@@ -5633,24 +5817,12 @@ let Statistic = /*#__PURE__*/function (_StatisticService) {
|
|
|
5633
5817
|
return _super.apply(this, arguments);
|
|
5634
5818
|
}
|
|
5635
5819
|
|
|
5636
|
-
_createClass(Statistic
|
|
5637
|
-
key: "getStatistic",
|
|
5638
|
-
value: function getStatistic(params) {
|
|
5639
|
-
return this.statisticsDb(params);
|
|
5640
|
-
}
|
|
5641
|
-
}, {
|
|
5642
|
-
key: "getClassify",
|
|
5643
|
-
value: function getClassify(params) {
|
|
5644
|
-
return this.classify(params);
|
|
5645
|
-
}
|
|
5646
|
-
}]);
|
|
5647
|
-
|
|
5648
|
-
return Statistic;
|
|
5820
|
+
return _createClass(Statistic);
|
|
5649
5821
|
}(StatisticService);
|
|
5650
5822
|
|
|
5651
|
-
const _excluded$
|
|
5652
|
-
_excluded2$
|
|
5653
|
-
_excluded3$
|
|
5823
|
+
const _excluded$6 = ["name"],
|
|
5824
|
+
_excluded2$4 = ["name"],
|
|
5825
|
+
_excluded3$3 = ["name"];
|
|
5654
5826
|
/**
|
|
5655
5827
|
* @title Spatial Processing Core API
|
|
5656
5828
|
* @version 1.5.1.0
|
|
@@ -5822,7 +5994,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
5822
5994
|
let {
|
|
5823
5995
|
name
|
|
5824
5996
|
} = _ref,
|
|
5825
|
-
query = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
5997
|
+
query = _objectWithoutPropertiesLoose(_ref, _excluded$6);
|
|
5826
5998
|
|
|
5827
5999
|
return this.http.get("/tables/" + name + "/data", query).json();
|
|
5828
6000
|
}
|
|
@@ -5861,7 +6033,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
5861
6033
|
let {
|
|
5862
6034
|
name
|
|
5863
6035
|
} = _ref2,
|
|
5864
|
-
query = _objectWithoutPropertiesLoose(_ref2, _excluded2$
|
|
6036
|
+
query = _objectWithoutPropertiesLoose(_ref2, _excluded2$4);
|
|
5865
6037
|
|
|
5866
6038
|
return this.http.patch("/tables/" + name + "/data", data, query).then(() => {});
|
|
5867
6039
|
}
|
|
@@ -5883,7 +6055,7 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
5883
6055
|
let {
|
|
5884
6056
|
name
|
|
5885
6057
|
} = _ref3,
|
|
5886
|
-
query = _objectWithoutPropertiesLoose(_ref3, _excluded3$
|
|
6058
|
+
query = _objectWithoutPropertiesLoose(_ref3, _excluded3$3);
|
|
5887
6059
|
|
|
5888
6060
|
return this.http.delete("/tables/" + name + "/data", null, query).then(() => {});
|
|
5889
6061
|
}
|
|
@@ -6092,7 +6264,7 @@ let Tools = /*#__PURE__*/function (_ToolsService) {
|
|
|
6092
6264
|
return _createClass(Tools);
|
|
6093
6265
|
}(ToolsService);
|
|
6094
6266
|
|
|
6095
|
-
const _excluded$
|
|
6267
|
+
const _excluded$7 = ["name", "z", "x", "y"];
|
|
6096
6268
|
/**
|
|
6097
6269
|
* @title Spatial Processing Core API
|
|
6098
6270
|
* @version 1.5.1.0
|
|
@@ -6131,7 +6303,7 @@ let VectorTileService = /*#__PURE__*/function (_Service) {
|
|
|
6131
6303
|
x,
|
|
6132
6304
|
y
|
|
6133
6305
|
} = _ref,
|
|
6134
|
-
query = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
6306
|
+
query = _objectWithoutPropertiesLoose(_ref, _excluded$7);
|
|
6135
6307
|
|
|
6136
6308
|
return this.http.get("/vt/" + name + "/" + z + "/" + x + "/" + y + ".pbf", query).then(() => {});
|
|
6137
6309
|
}
|
|
@@ -6151,19 +6323,7 @@ let VectorTiles = /*#__PURE__*/function (_VectorTileService) {
|
|
|
6151
6323
|
return _super.apply(this, arguments);
|
|
6152
6324
|
}
|
|
6153
6325
|
|
|
6154
|
-
_createClass(VectorTiles
|
|
6155
|
-
key: "getVt",
|
|
6156
|
-
value: function getVt(name, z, x, y) {
|
|
6157
|
-
return this.getVectorTile({
|
|
6158
|
-
name,
|
|
6159
|
-
z,
|
|
6160
|
-
x,
|
|
6161
|
-
y
|
|
6162
|
-
});
|
|
6163
|
-
}
|
|
6164
|
-
}]);
|
|
6165
|
-
|
|
6166
|
-
return VectorTiles;
|
|
6326
|
+
return _createClass(VectorTiles);
|
|
6167
6327
|
}(VectorTileService);
|
|
6168
6328
|
|
|
6169
6329
|
(function (UrlPath) {
|
|
@@ -6293,6 +6453,7 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
|
|
|
6293
6453
|
_this.queryToken = new QueryTokenAccessService(_this.http);
|
|
6294
6454
|
_this.dataSource = new DataSourceService(_this.http);
|
|
6295
6455
|
_this.remoteTaskManager = new RemoteTaskManager(_this.http);
|
|
6456
|
+
_this.cameras = new Cameras(_this.http);
|
|
6296
6457
|
_this.names = new Names({
|
|
6297
6458
|
account: _this.account
|
|
6298
6459
|
});
|
|
@@ -6572,26 +6733,6 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
|
|
|
6572
6733
|
ErrorType["EmailNotSet"] = "EmailNotSet";
|
|
6573
6734
|
})(exports.ErrorType || (exports.ErrorType = {}));
|
|
6574
6735
|
|
|
6575
|
-
(function (FontStyle) {
|
|
6576
|
-
FontStyle["Normal"] = "normal";
|
|
6577
|
-
FontStyle["Oblique"] = "oblique";
|
|
6578
|
-
FontStyle["Italic"] = "italic";
|
|
6579
|
-
})(exports.FontStyle || (exports.FontStyle = {}));
|
|
6580
|
-
|
|
6581
|
-
(function (FontWeight) {
|
|
6582
|
-
FontWeight["Thin"] = "Thin";
|
|
6583
|
-
FontWeight["ExtraLight"] = "ExtraLight";
|
|
6584
|
-
FontWeight["Light"] = "Light";
|
|
6585
|
-
FontWeight["SemiLight"] = "SemiLight";
|
|
6586
|
-
FontWeight["Normal"] = "Normal";
|
|
6587
|
-
FontWeight["Medium"] = "Medium";
|
|
6588
|
-
FontWeight["DemiBold"] = "DemiBold";
|
|
6589
|
-
FontWeight["Bold"] = "Bold";
|
|
6590
|
-
FontWeight["ExtraBold"] = "ExtraBold";
|
|
6591
|
-
FontWeight["Black"] = "Black";
|
|
6592
|
-
FontWeight["ExtraBlack"] = "ExtraBlack";
|
|
6593
|
-
})(exports.FontWeight || (exports.FontWeight = {}));
|
|
6594
|
-
|
|
6595
6736
|
(function (GeometryType) {
|
|
6596
6737
|
GeometryType["Unknown"] = "unknown";
|
|
6597
6738
|
GeometryType["Point"] = "point";
|
|
@@ -6608,34 +6749,6 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
|
|
|
6608
6749
|
Group["All"] = "all";
|
|
6609
6750
|
})(exports.Group || (exports.Group = {}));
|
|
6610
6751
|
|
|
6611
|
-
(function (LineCapStyle) {
|
|
6612
|
-
LineCapStyle["Flat"] = "Flat";
|
|
6613
|
-
LineCapStyle["Square"] = "Square";
|
|
6614
|
-
LineCapStyle["Round"] = "Round";
|
|
6615
|
-
LineCapStyle["Triangle"] = "Triangle";
|
|
6616
|
-
})(exports.LineCapStyle || (exports.LineCapStyle = {}));
|
|
6617
|
-
|
|
6618
|
-
(function (LineEndingType) {
|
|
6619
|
-
LineEndingType["None"] = "none";
|
|
6620
|
-
LineEndingType["Arrow"] = "arrow";
|
|
6621
|
-
LineEndingType["FilledArrow"] = "filledArrow";
|
|
6622
|
-
LineEndingType["Square"] = "square";
|
|
6623
|
-
LineEndingType["FilledSquare"] = "filledSquare";
|
|
6624
|
-
LineEndingType["Circle"] = "circle";
|
|
6625
|
-
LineEndingType["FilledCircle"] = "filledCircle";
|
|
6626
|
-
LineEndingType["Diamond"] = "diamond";
|
|
6627
|
-
LineEndingType["FilledDiamond"] = "filledDiamond";
|
|
6628
|
-
LineEndingType["RoundSquare"] = "roundSquare";
|
|
6629
|
-
LineEndingType["FilledRoundSquare"] = "filledRoundSquare";
|
|
6630
|
-
LineEndingType["Svg"] = "svg";
|
|
6631
|
-
})(exports.LineEndingType || (exports.LineEndingType = {}));
|
|
6632
|
-
|
|
6633
|
-
(function (LineJoinType) {
|
|
6634
|
-
LineJoinType["Miter"] = "Miter";
|
|
6635
|
-
LineJoinType["Bevel"] = "Bevel";
|
|
6636
|
-
LineJoinType["Round"] = "Round";
|
|
6637
|
-
})(exports.LineJoinType || (exports.LineJoinType = {}));
|
|
6638
|
-
|
|
6639
6752
|
(function (OwnerFilter) {
|
|
6640
6753
|
OwnerFilter["My"] = "My";
|
|
6641
6754
|
OwnerFilter["Shared"] = "Shared";
|
|
@@ -6668,6 +6781,12 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
|
|
|
6668
6781
|
PolicyType["MaxEqlQueryParametersValues"] = "MaxEqlQueryParametersValues";
|
|
6669
6782
|
})(exports.PolicyType || (exports.PolicyType = {}));
|
|
6670
6783
|
|
|
6784
|
+
(function (Quality) {
|
|
6785
|
+
Quality["Low"] = "Low";
|
|
6786
|
+
Quality["Medium"] = "Medium";
|
|
6787
|
+
Quality["High"] = "High";
|
|
6788
|
+
})(exports.Quality || (exports.Quality = {}));
|
|
6789
|
+
|
|
6671
6790
|
(function (RemoteTaskStatus) {
|
|
6672
6791
|
RemoteTaskStatus["Init"] = "Init";
|
|
6673
6792
|
RemoteTaskStatus["Process"] = "Process";
|
|
@@ -6683,7 +6802,6 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
|
|
|
6683
6802
|
(function (ResourceSubTypeFilter) {
|
|
6684
6803
|
ResourceSubTypeFilter["RemoteTileService"] = "RemoteTileService";
|
|
6685
6804
|
ResourceSubTypeFilter["ProxyService"] = "ProxyService";
|
|
6686
|
-
ResourceSubTypeFilter["PostgresLayerService"] = "PostgresLayerService";
|
|
6687
6805
|
ResourceSubTypeFilter["QueryLayerService"] = "QueryLayerService";
|
|
6688
6806
|
ResourceSubTypeFilter["TileCatalogTable"] = "TileCatalogTable";
|
|
6689
6807
|
})(exports.ResourceSubTypeFilter || (exports.ResourceSubTypeFilter = {}));
|
|
@@ -6740,19 +6858,6 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
|
|
|
6740
6858
|
TaskResourceSubType["PythonTask"] = "PythonTask";
|
|
6741
6859
|
})(exports.TaskResourceSubType || (exports.TaskResourceSubType = {}));
|
|
6742
6860
|
|
|
6743
|
-
(function (TextAlignment) {
|
|
6744
|
-
TextAlignment["Right"] = "right";
|
|
6745
|
-
TextAlignment["Left"] = "left";
|
|
6746
|
-
TextAlignment["Center"] = "center";
|
|
6747
|
-
TextAlignment["Justified"] = "justified";
|
|
6748
|
-
})(exports.TextAlignment || (exports.TextAlignment = {}));
|
|
6749
|
-
|
|
6750
|
-
(function (TextVerticalAlignment) {
|
|
6751
|
-
TextVerticalAlignment["Top"] = "top";
|
|
6752
|
-
TextVerticalAlignment["Bottom"] = "bottom";
|
|
6753
|
-
TextVerticalAlignment["Middle"] = "middle";
|
|
6754
|
-
})(exports.TextVerticalAlignment || (exports.TextVerticalAlignment = {}));
|
|
6755
|
-
|
|
6756
6861
|
(function (WorkerMethodType) {
|
|
6757
6862
|
WorkerMethodType["Task"] = "Task";
|
|
6758
6863
|
WorkerMethodType["Rest"] = "Rest";
|
|
@@ -6800,6 +6905,7 @@ exports.Account = Account;
|
|
|
6800
6905
|
exports.AccountPreview = AccountPreview;
|
|
6801
6906
|
exports.Api = Api;
|
|
6802
6907
|
exports.BulkOperations = BulkOperations;
|
|
6908
|
+
exports.Cameras = Cameras;
|
|
6803
6909
|
exports.ClientSettings = ClientSettings;
|
|
6804
6910
|
exports.Eql = Eql;
|
|
6805
6911
|
exports.Feedback = Feedback;
|