@evergis/api 3.0.208 → 3.0.209
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__/CatalogService.d.ts +12 -1
- package/dist/__generated__/LayersService.d.ts +2 -2
- package/dist/__generated__/ProjectsService.d.ts +2 -2
- package/dist/__generated__/StatisticService.d.ts +2 -2
- package/dist/__generated__/TablesService.d.ts +2 -2
- package/dist/__generated__/data-contracts.d.ts +55 -3
- package/dist/api.cjs.development.js +18 -2
- 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 +18 -2
- package/dist/api.esm.js.map +1 -1
- package/dist/services/Statistic.d.ts +2 -2
- package/package.json +2 -2
package/dist/api.esm.js
CHANGED
|
@@ -662,8 +662,21 @@ let CatalogService = /*#__PURE__*/function (_Service) {
|
|
|
662
662
|
}
|
|
663
663
|
|
|
664
664
|
_createClass(CatalogService, [{
|
|
665
|
-
key: "
|
|
665
|
+
key: "getParents",
|
|
666
666
|
value:
|
|
667
|
+
/**
|
|
668
|
+
* No description
|
|
669
|
+
*
|
|
670
|
+
* @tags Catalog
|
|
671
|
+
* @name GetParents
|
|
672
|
+
* @operationId CatalogController_GetParents
|
|
673
|
+
* @summary Get parents.
|
|
674
|
+
* @request GET:/resources/{resourceId}/parents
|
|
675
|
+
* @response `200` OK
|
|
676
|
+
*/
|
|
677
|
+
function getParents(resourceId) {
|
|
678
|
+
return this.http.get("/resources/" + resourceId + "/parents").json();
|
|
679
|
+
}
|
|
667
680
|
/**
|
|
668
681
|
* No description
|
|
669
682
|
*
|
|
@@ -674,7 +687,10 @@ let CatalogService = /*#__PURE__*/function (_Service) {
|
|
|
674
687
|
* @request GET:/resources/tags
|
|
675
688
|
* @response `200` OK
|
|
676
689
|
*/
|
|
677
|
-
|
|
690
|
+
|
|
691
|
+
}, {
|
|
692
|
+
key: "getTags",
|
|
693
|
+
value: function getTags(query) {
|
|
678
694
|
return this.http.get("/resources/tags", query).json();
|
|
679
695
|
}
|
|
680
696
|
/**
|