@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/api.esm.js CHANGED
@@ -662,8 +662,21 @@ let CatalogService = /*#__PURE__*/function (_Service) {
662
662
  }
663
663
 
664
664
  _createClass(CatalogService, [{
665
- key: "getTags",
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
- function getTags(query) {
690
+
691
+ }, {
692
+ key: "getTags",
693
+ value: function getTags(query) {
678
694
  return this.http.get("/resources/tags", query).json();
679
695
  }
680
696
  /**