@evergis/api 3.0.82 → 3.0.85
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/__generated__/ImportService.d.ts +12 -1
- package/dist/__generated__/LayersService.d.ts +1 -1
- package/dist/__generated__/ProjectsService.d.ts +3 -3
- package/dist/__generated__/ResourceCatalogService.d.ts +1 -1
- package/dist/__generated__/StatisticService.d.ts +2 -2
- package/dist/__generated__/TablesService.d.ts +3 -3
- package/dist/__generated__/WmsServerService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +35 -31
- package/dist/api.cjs.development.js +18 -1
- 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 +20 -1
- package/dist/api.esm.js.map +1 -1
- package/package.json +2 -2
package/dist/api.esm.js
CHANGED
|
@@ -659,6 +659,22 @@ let ImportService = /*#__PURE__*/function (_Service) {
|
|
|
659
659
|
value: function getFeaturesCount(data) {
|
|
660
660
|
return this.http.post("/import/count", data).json();
|
|
661
661
|
}
|
|
662
|
+
/**
|
|
663
|
+
* No description
|
|
664
|
+
*
|
|
665
|
+
* @tags ImportService
|
|
666
|
+
* @name GetExternalWmsLayers
|
|
667
|
+
* @operationId ImportServiceController_GetExternalWmsLayers
|
|
668
|
+
* @summary Get list of external WMS layers.
|
|
669
|
+
* @request GET:/import/wms
|
|
670
|
+
* @response `200` Success
|
|
671
|
+
*/
|
|
672
|
+
|
|
673
|
+
}, {
|
|
674
|
+
key: "getExternalWmsLayers",
|
|
675
|
+
value: function getExternalWmsLayers(query) {
|
|
676
|
+
return this.http.get("/import/wms", query).then(() => {});
|
|
677
|
+
}
|
|
662
678
|
/**
|
|
663
679
|
* No description
|
|
664
680
|
*
|
|
@@ -3711,7 +3727,7 @@ let ResourceCatalogService = /*#__PURE__*/function (_Service) {
|
|
|
3711
3727
|
key: "checkLimits",
|
|
3712
3728
|
value:
|
|
3713
3729
|
/**
|
|
3714
|
-
*
|
|
3730
|
+
* @description This method requires superuser permission.
|
|
3715
3731
|
*
|
|
3716
3732
|
* @tags ResourceCatalog
|
|
3717
3733
|
* @name CheckLimits
|
|
@@ -6714,6 +6730,8 @@ CreateLayer
|
|
|
6714
6730
|
CreateProject
|
|
6715
6731
|
|
|
6716
6732
|
MaxFeaturesInOneTable
|
|
6733
|
+
|
|
6734
|
+
MaxObjectsToExport
|
|
6717
6735
|
*/
|
|
6718
6736
|
|
|
6719
6737
|
|
|
@@ -6725,6 +6743,7 @@ var PolicyType;
|
|
|
6725
6743
|
PolicyType["CreateLayer"] = "CreateLayer";
|
|
6726
6744
|
PolicyType["CreateProject"] = "CreateProject";
|
|
6727
6745
|
PolicyType["MaxFeaturesInOneTable"] = "MaxFeaturesInOneTable";
|
|
6746
|
+
PolicyType["MaxObjectsToExport"] = "MaxObjectsToExport";
|
|
6728
6747
|
})(PolicyType || (PolicyType = {}));
|
|
6729
6748
|
/**
|
|
6730
6749
|
* The `ResourceType` represents resource manager supports types.
|