@evergis/api 4.0.2 → 4.0.3

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
@@ -6436,53 +6436,8 @@ let ResourceCatalogService = /*#__PURE__*/function (_Service) {
6436
6436
  }
6437
6437
 
6438
6438
  _createClass(ResourceCatalogService, [{
6439
- key: "checkLimitsForUser",
6439
+ key: "copyResources",
6440
6440
  value:
6441
- /**
6442
- * No description
6443
- *
6444
- * @tags ResourceCatalog
6445
- * @name CheckLimitsForUser
6446
- * @operationId ResourceCatalogController_CheckLimitsForUser
6447
- * @summary Get limits of workspace.
6448
- * @request GET:/resources/checkLimits/user/{userName}
6449
- * @response `200` OK
6450
- */
6451
- function checkLimitsForUser(userName) {
6452
- return this.http.get("/resources/checkLimits/user/" + userName).json();
6453
- }
6454
- /**
6455
- * No description
6456
- *
6457
- * @tags ResourceCatalog
6458
- * @name CheckLimitsForRole
6459
- * @operationId ResourceCatalogController_CheckLimitsForRole
6460
- * @summary Get limits of workspace.
6461
- * @request GET:/resources/checkLimits/role/{roleName}
6462
- * @response `200` OK
6463
- */
6464
-
6465
- }, {
6466
- key: "checkLimitsForRole",
6467
- value: function checkLimitsForRole(roleName) {
6468
- return this.http.get("/resources/checkLimits/role/" + roleName).json();
6469
- }
6470
- /**
6471
- * No description
6472
- *
6473
- * @tags ResourceCatalog
6474
- * @name GetDefaultLimits
6475
- * @operationId ResourceCatalogController_GetDefaultLimits
6476
- * @summary Get default limits of workspace.
6477
- * @request GET:/resources/checkLimits/default
6478
- * @response `200` OK
6479
- */
6480
-
6481
- }, {
6482
- key: "getDefaultLimits",
6483
- value: function getDefaultLimits() {
6484
- return this.http.get("/resources/checkLimits/default").json();
6485
- }
6486
6441
  /**
6487
6442
  * No description
6488
6443
  *
@@ -6493,10 +6448,7 @@ let ResourceCatalogService = /*#__PURE__*/function (_Service) {
6493
6448
  * @request POST:/resources/copy
6494
6449
  * @response `200` OK
6495
6450
  */
6496
-
6497
- }, {
6498
- key: "copyResources",
6499
- value: function copyResources(data) {
6451
+ function copyResources(data) {
6500
6452
  return this.http.post("/resources/copy", data).json();
6501
6453
  }
6502
6454
  }]);
@@ -6729,6 +6681,54 @@ let SecurityService = /*#__PURE__*/function (_Service) {
6729
6681
  value: function setPolicy(data) {
6730
6682
  return this.http.post("/security/policies", data).then(() => {});
6731
6683
  }
6684
+ /**
6685
+ * No description
6686
+ *
6687
+ * @tags SecurityService
6688
+ * @name CheckLimitsForUser
6689
+ * @operationId SecurityServiceController_CheckLimitsForUser
6690
+ * @summary Get limits of workspace.
6691
+ * @request GET:/security/limits/user/{userName}
6692
+ * @response `200` OK
6693
+ */
6694
+
6695
+ }, {
6696
+ key: "checkLimitsForUser",
6697
+ value: function checkLimitsForUser(userName) {
6698
+ return this.http.get("/security/limits/user/" + userName).json();
6699
+ }
6700
+ /**
6701
+ * No description
6702
+ *
6703
+ * @tags SecurityService
6704
+ * @name CheckLimitsForRole
6705
+ * @operationId SecurityServiceController_CheckLimitsForRole
6706
+ * @summary Get limits of workspace.
6707
+ * @request GET:/security/limits/role/{roleName}
6708
+ * @response `200` OK
6709
+ */
6710
+
6711
+ }, {
6712
+ key: "checkLimitsForRole",
6713
+ value: function checkLimitsForRole(roleName) {
6714
+ return this.http.get("/security/limits/role/" + roleName).json();
6715
+ }
6716
+ /**
6717
+ * No description
6718
+ *
6719
+ * @tags SecurityService
6720
+ * @name GetDefaultLimits
6721
+ * @operationId SecurityServiceController_GetDefaultLimits
6722
+ * @summary Get default limits of workspace.
6723
+ * @request GET:/security/limits/default
6724
+ * @response `200` OK
6725
+ */
6726
+
6727
+ }, {
6728
+ key: "getDefaultLimits",
6729
+ value: function getDefaultLimits() {
6730
+ return this.http.get("/security/limits/default").json();
6731
+ }
6732
6732
  }]);
6733
6733
 
6734
6734
  return SecurityService;