@evergis/api 3.0.192 → 3.0.193
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 -2
- package/dist/__generated__/CatalogService.d.ts +14 -3
- package/dist/__generated__/{EqlTestService.d.ts → EqlService.d.ts} +15 -15
- package/dist/__generated__/LayersService.d.ts +2 -13
- package/dist/__generated__/ProjectsService.d.ts +2 -2
- package/dist/__generated__/StatisticService.d.ts +2 -2
- package/dist/__generated__/TablesService.d.ts +13 -2
- package/dist/__generated__/TagsService.d.ts +2 -2
- package/dist/__generated__/UniversalSearchService.d.ts +7 -7
- package/dist/__generated__/WmsServerService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +91 -50
- package/dist/api.cjs.development.js +72 -56
- 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 +72 -56
- package/dist/api.esm.js.map +1 -1
- package/dist/services/Eql.d.ts +3 -0
- package/dist/services/Statistic.d.ts +2 -2
- package/dist/services/index.d.ts +1 -1
- package/package.json +2 -2
- package/dist/services/EqlTest.d.ts +0 -3
|
@@ -486,19 +486,19 @@ let UniversalSearchService = /*#__PURE__*/function (_Service) {
|
|
|
486
486
|
}
|
|
487
487
|
|
|
488
488
|
_createClass(UniversalSearchService, [{
|
|
489
|
-
key: "
|
|
489
|
+
key: "searchResultDcGetSearchResult",
|
|
490
490
|
value:
|
|
491
491
|
/**
|
|
492
492
|
* No description
|
|
493
493
|
*
|
|
494
494
|
* @tags UniversalSearch
|
|
495
|
-
* @name
|
|
496
|
-
* @operationId
|
|
495
|
+
* @name SearchResultDcGetSearchResult
|
|
496
|
+
* @operationId UniversalSearchController_SearchResultDcGetSearchResult
|
|
497
497
|
* @summary Returns search result.
|
|
498
498
|
* @request GET:/search/{taskId}/{layerName}
|
|
499
499
|
* @response `200` OK
|
|
500
500
|
*/
|
|
501
|
-
function
|
|
501
|
+
function searchResultDcGetSearchResult(_ref) {
|
|
502
502
|
let {
|
|
503
503
|
taskId,
|
|
504
504
|
layerName
|
|
@@ -511,16 +511,16 @@ let UniversalSearchService = /*#__PURE__*/function (_Service) {
|
|
|
511
511
|
* No description
|
|
512
512
|
*
|
|
513
513
|
* @tags UniversalSearch
|
|
514
|
-
* @name
|
|
515
|
-
* @operationId
|
|
514
|
+
* @name GetSearchResult
|
|
515
|
+
* @operationId UniversalSearchController_GetSearchResult
|
|
516
516
|
* @summary Returns search result.
|
|
517
517
|
* @request GET:/search/{taskId}
|
|
518
518
|
* @response `200` OK
|
|
519
519
|
*/
|
|
520
520
|
|
|
521
521
|
}, {
|
|
522
|
-
key: "
|
|
523
|
-
value: function
|
|
522
|
+
key: "getSearchResult",
|
|
523
|
+
value: function getSearchResult(taskId) {
|
|
524
524
|
return this.http.get("/search/" + taskId).json();
|
|
525
525
|
}
|
|
526
526
|
}]);
|
|
@@ -574,8 +574,8 @@ let CatalogService = /*#__PURE__*/function (_Service) {
|
|
|
574
574
|
|
|
575
575
|
}, {
|
|
576
576
|
key: "postGetAll",
|
|
577
|
-
value: function postGetAll(data) {
|
|
578
|
-
return this.http.post("/resources", data).json();
|
|
577
|
+
value: function postGetAll(query, data) {
|
|
578
|
+
return this.http.post("/resources", data, query).json();
|
|
579
579
|
}
|
|
580
580
|
/**
|
|
581
581
|
* No description
|
|
@@ -785,6 +785,22 @@ let CatalogService = /*#__PURE__*/function (_Service) {
|
|
|
785
785
|
value: function downloadFile(resourceId) {
|
|
786
786
|
return this.http.get("/resources/" + resourceId + "/download").blob();
|
|
787
787
|
}
|
|
788
|
+
/**
|
|
789
|
+
* No description
|
|
790
|
+
*
|
|
791
|
+
* @tags Catalog
|
|
792
|
+
* @name CleanResources
|
|
793
|
+
* @operationId CatalogController_CleanResources
|
|
794
|
+
* @summary Clean user resources.
|
|
795
|
+
* @request POST:/resources/clean
|
|
796
|
+
* @response `200` OK
|
|
797
|
+
*/
|
|
798
|
+
|
|
799
|
+
}, {
|
|
800
|
+
key: "cleanResources",
|
|
801
|
+
value: function cleanResources() {
|
|
802
|
+
return this.http.post("/resources/clean", null).then(() => {});
|
|
803
|
+
}
|
|
788
804
|
}]);
|
|
789
805
|
|
|
790
806
|
return CatalogService;
|
|
@@ -2007,26 +2023,26 @@ let ClientSettings = /*#__PURE__*/function (_ClientSettingsServic) {
|
|
|
2007
2023
|
* @baseUrl /sp
|
|
2008
2024
|
*/
|
|
2009
2025
|
|
|
2010
|
-
let
|
|
2011
|
-
_inherits(
|
|
2026
|
+
let EqlService = /*#__PURE__*/function (_Service) {
|
|
2027
|
+
_inherits(EqlService, _Service);
|
|
2012
2028
|
|
|
2013
|
-
var _super = /*#__PURE__*/_createSuper(
|
|
2029
|
+
var _super = /*#__PURE__*/_createSuper(EqlService);
|
|
2014
2030
|
|
|
2015
|
-
function
|
|
2016
|
-
_classCallCheck(this,
|
|
2031
|
+
function EqlService() {
|
|
2032
|
+
_classCallCheck(this, EqlService);
|
|
2017
2033
|
|
|
2018
2034
|
return _super.apply(this, arguments);
|
|
2019
2035
|
}
|
|
2020
2036
|
|
|
2021
|
-
_createClass(
|
|
2037
|
+
_createClass(EqlService, [{
|
|
2022
2038
|
key: "getQueryResult",
|
|
2023
2039
|
value:
|
|
2024
2040
|
/**
|
|
2025
2041
|
* No description
|
|
2026
2042
|
*
|
|
2027
|
-
* @tags
|
|
2043
|
+
* @tags Eql
|
|
2028
2044
|
* @name GetQueryResult
|
|
2029
|
-
* @operationId
|
|
2045
|
+
* @operationId EqlController_GetQueryResult
|
|
2030
2046
|
* @summary Perform resources set acl access batch operation.
|
|
2031
2047
|
* @request POST:/eql/query
|
|
2032
2048
|
* @response `200` OK
|
|
@@ -2037,9 +2053,9 @@ let EqlTestService = /*#__PURE__*/function (_Service) {
|
|
|
2037
2053
|
/**
|
|
2038
2054
|
* No description
|
|
2039
2055
|
*
|
|
2040
|
-
* @tags
|
|
2056
|
+
* @tags Eql
|
|
2041
2057
|
* @name GetQueryDescription
|
|
2042
|
-
* @operationId
|
|
2058
|
+
* @operationId EqlController_GetQueryDescription
|
|
2043
2059
|
* @summary Get EQL result columns definitions.
|
|
2044
2060
|
* @request POST:/eql/description
|
|
2045
2061
|
* @response `200` OK
|
|
@@ -2053,9 +2069,9 @@ let EqlTestService = /*#__PURE__*/function (_Service) {
|
|
|
2053
2069
|
/**
|
|
2054
2070
|
* No description
|
|
2055
2071
|
*
|
|
2056
|
-
* @tags
|
|
2072
|
+
* @tags Eql
|
|
2057
2073
|
* @name SetLayerParameterValue
|
|
2058
|
-
* @operationId
|
|
2074
|
+
* @operationId EqlController_SetLayerParameterValue
|
|
2059
2075
|
* @summary Set EQL layer parameter.
|
|
2060
2076
|
* @request POST:/eql/setParam
|
|
2061
2077
|
* @response `200` OK
|
|
@@ -2069,9 +2085,9 @@ let EqlTestService = /*#__PURE__*/function (_Service) {
|
|
|
2069
2085
|
/**
|
|
2070
2086
|
* No description
|
|
2071
2087
|
*
|
|
2072
|
-
* @tags
|
|
2088
|
+
* @tags Eql
|
|
2073
2089
|
* @name SetLayerParameters
|
|
2074
|
-
* @operationId
|
|
2090
|
+
* @operationId EqlController_SetLayerParameters
|
|
2075
2091
|
* @summary Set EQL layer parameters.
|
|
2076
2092
|
* @request POST:/eql/setParams
|
|
2077
2093
|
* @response `200` OK
|
|
@@ -2085,9 +2101,9 @@ let EqlTestService = /*#__PURE__*/function (_Service) {
|
|
|
2085
2101
|
/**
|
|
2086
2102
|
* No description
|
|
2087
2103
|
*
|
|
2088
|
-
* @tags
|
|
2104
|
+
* @tags Eql
|
|
2089
2105
|
* @name GetLayerParameters
|
|
2090
|
-
* @operationId
|
|
2106
|
+
* @operationId EqlController_GetLayerParameters
|
|
2091
2107
|
* @summary Get EQL parameter.
|
|
2092
2108
|
* @request GET:/eql/getParam
|
|
2093
2109
|
* @response `200` OK
|
|
@@ -2101,9 +2117,9 @@ let EqlTestService = /*#__PURE__*/function (_Service) {
|
|
|
2101
2117
|
/**
|
|
2102
2118
|
* No description
|
|
2103
2119
|
*
|
|
2104
|
-
* @tags
|
|
2120
|
+
* @tags Eql
|
|
2105
2121
|
* @name GetLayerParameters1
|
|
2106
|
-
* @operationId
|
|
2122
|
+
* @operationId EqlController_GetLayerParameters_1
|
|
2107
2123
|
* @summary Get all EQL parameters.
|
|
2108
2124
|
* @request GET:/eql/getParams
|
|
2109
2125
|
* @response `200` OK
|
|
@@ -2117,9 +2133,9 @@ let EqlTestService = /*#__PURE__*/function (_Service) {
|
|
|
2117
2133
|
/**
|
|
2118
2134
|
* No description
|
|
2119
2135
|
*
|
|
2120
|
-
* @tags
|
|
2136
|
+
* @tags Eql
|
|
2121
2137
|
* @name RemoveLayerParameterValue
|
|
2122
|
-
* @operationId
|
|
2138
|
+
* @operationId EqlController_RemoveLayerParameterValue
|
|
2123
2139
|
* @summary Remove EQL layer parameter.
|
|
2124
2140
|
* @request DELETE:/eql/removeParam
|
|
2125
2141
|
* @response `200` OK
|
|
@@ -2132,22 +2148,22 @@ let EqlTestService = /*#__PURE__*/function (_Service) {
|
|
|
2132
2148
|
}
|
|
2133
2149
|
}]);
|
|
2134
2150
|
|
|
2135
|
-
return
|
|
2151
|
+
return EqlService;
|
|
2136
2152
|
}(Service);
|
|
2137
2153
|
|
|
2138
|
-
let
|
|
2139
|
-
_inherits(
|
|
2154
|
+
let Eql = /*#__PURE__*/function (_EqlService) {
|
|
2155
|
+
_inherits(Eql, _EqlService);
|
|
2140
2156
|
|
|
2141
|
-
var _super = /*#__PURE__*/_createSuper(
|
|
2157
|
+
var _super = /*#__PURE__*/_createSuper(Eql);
|
|
2142
2158
|
|
|
2143
|
-
function
|
|
2144
|
-
_classCallCheck(this,
|
|
2159
|
+
function Eql() {
|
|
2160
|
+
_classCallCheck(this, Eql);
|
|
2145
2161
|
|
|
2146
2162
|
return _super.apply(this, arguments);
|
|
2147
2163
|
}
|
|
2148
2164
|
|
|
2149
|
-
return _createClass(
|
|
2150
|
-
}(
|
|
2165
|
+
return _createClass(Eql);
|
|
2166
|
+
}(EqlService);
|
|
2151
2167
|
|
|
2152
2168
|
/**
|
|
2153
2169
|
* @title Spatial Processing Core API
|
|
@@ -3203,22 +3219,6 @@ let LayersService = /*#__PURE__*/function (_Service) {
|
|
|
3203
3219
|
function getBulkFeatures(data) {
|
|
3204
3220
|
return this.http.post("/bulk/layers/features/query", data).json();
|
|
3205
3221
|
}
|
|
3206
|
-
/**
|
|
3207
|
-
* No description
|
|
3208
|
-
*
|
|
3209
|
-
* @tags Layers
|
|
3210
|
-
* @name GetFeaturesFromLayers
|
|
3211
|
-
* @operationId LayersController_GetFeaturesFromLayers
|
|
3212
|
-
* @summary Returns list of the layer features.
|
|
3213
|
-
* @request POST:/layers/features/query
|
|
3214
|
-
* @response `200` OK
|
|
3215
|
-
*/
|
|
3216
|
-
|
|
3217
|
-
}, {
|
|
3218
|
-
key: "getFeaturesFromLayers",
|
|
3219
|
-
value: function getFeaturesFromLayers(data) {
|
|
3220
|
-
return this.http.post("/layers/features/query", data).json();
|
|
3221
|
-
}
|
|
3222
3222
|
/**
|
|
3223
3223
|
* No description
|
|
3224
3224
|
*
|
|
@@ -6877,6 +6877,22 @@ let TablesService = /*#__PURE__*/function (_Service) {
|
|
|
6877
6877
|
value: function deleteResources(query) {
|
|
6878
6878
|
return this.http.delete("/tables", null, query).json();
|
|
6879
6879
|
}
|
|
6880
|
+
/**
|
|
6881
|
+
* No description
|
|
6882
|
+
*
|
|
6883
|
+
* @tags Tables
|
|
6884
|
+
* @name CreateViewFromQueryLayer
|
|
6885
|
+
* @operationId TablesController_CreateViewFromQueryLayer
|
|
6886
|
+
* @summary Creates a new view from query layer.
|
|
6887
|
+
* @request POST:/tables/fromLayer
|
|
6888
|
+
* @response `200` OK
|
|
6889
|
+
*/
|
|
6890
|
+
|
|
6891
|
+
}, {
|
|
6892
|
+
key: "createViewFromQueryLayer",
|
|
6893
|
+
value: function createViewFromQueryLayer(data) {
|
|
6894
|
+
return this.http.post("/tables/fromLayer", data).json();
|
|
6895
|
+
}
|
|
6880
6896
|
/**
|
|
6881
6897
|
* No description
|
|
6882
6898
|
*
|
|
@@ -7501,7 +7517,7 @@ let Api = /*#__PURE__*/function (_EventEmitter) {
|
|
|
7501
7517
|
_this.vectorTiles = new VectorTiles(_this.http);
|
|
7502
7518
|
_this.universalSearch = new UniversalSearchService(_this.http);
|
|
7503
7519
|
_this.spatialReference = new SpatialReferencesService(_this.http);
|
|
7504
|
-
_this.
|
|
7520
|
+
_this.eql = new Eql(_this.http);
|
|
7505
7521
|
_this.catalog = new CatalogService(_this.http);
|
|
7506
7522
|
_this.queryToken = new QueryTokenAccessService(_this.http);
|
|
7507
7523
|
_this.names = new Names({
|
|
@@ -8304,7 +8320,7 @@ exports.Api = Api;
|
|
|
8304
8320
|
exports.BulkOperations = BulkOperations;
|
|
8305
8321
|
exports.Cameras = Cameras;
|
|
8306
8322
|
exports.ClientSettings = ClientSettings;
|
|
8307
|
-
exports.
|
|
8323
|
+
exports.Eql = Eql;
|
|
8308
8324
|
exports.EvergisDynamicLayer = EvergisDynamicLayer;
|
|
8309
8325
|
exports.EvergisTileLayer = EvergisTileLayer;
|
|
8310
8326
|
exports.External = External;
|