@evergis/api 3.0.53 → 3.0.54

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
@@ -352,7 +352,7 @@ let SecurityService = /*#__PURE__*/function (_Service) {
352
352
  * @tags SecurityService
353
353
  * @name FindUserByName
354
354
  * @operationId SecurityServiceController_FindUserByName
355
- * @summary Returns the list of users found by username or email.
355
+ * @summary Returns the list of users found by username.
356
356
  * @request GET:/security/users
357
357
  * @response `200` Success
358
358
  */
@@ -2601,6 +2601,27 @@ let TablesService = /*#__PURE__*/function (_Service) {
2601
2601
  value: function getTableInfo(name) {
2602
2602
  return this.http.get("/tables/" + name).json();
2603
2603
  }
2604
+ /**
2605
+ * No description
2606
+ *
2607
+ * @tags Tables
2608
+ * @name GetTableData
2609
+ * @operationId TablesController_GetTableData
2610
+ * @summary Retrieves the data from the table.
2611
+ * @request GET:/tables/{name}/data
2612
+ * @response `200` Success
2613
+ */
2614
+
2615
+ }, {
2616
+ key: "getTableData",
2617
+ value: function getTableData(_ref) {
2618
+ let {
2619
+ name
2620
+ } = _ref,
2621
+ query = _objectWithoutPropertiesLoose(_ref, ["name"]);
2622
+
2623
+ return this.http.get("/tables/" + name + "/data", query).json();
2624
+ }
2604
2625
  /**
2605
2626
  * No description
2606
2627
  *
@@ -2614,11 +2635,11 @@ let TablesService = /*#__PURE__*/function (_Service) {
2614
2635
 
2615
2636
  }, {
2616
2637
  key: "updateTableData",
2617
- value: function updateTableData(_ref, data) {
2638
+ value: function updateTableData(_ref2, data) {
2618
2639
  let {
2619
2640
  name
2620
- } = _ref,
2621
- query = _objectWithoutPropertiesLoose(_ref, ["name"]);
2641
+ } = _ref2,
2642
+ query = _objectWithoutPropertiesLoose(_ref2, ["name"]);
2622
2643
 
2623
2644
  return this.http.patch("/tables/" + name + "/data", data, query).then(() => {});
2624
2645
  }
@@ -2635,11 +2656,11 @@ let TablesService = /*#__PURE__*/function (_Service) {
2635
2656
 
2636
2657
  }, {
2637
2658
  key: "deleteTableData",
2638
- value: function deleteTableData(_ref2) {
2659
+ value: function deleteTableData(_ref3) {
2639
2660
  let {
2640
2661
  name
2641
- } = _ref2,
2642
- query = _objectWithoutPropertiesLoose(_ref2, ["name"]);
2662
+ } = _ref3,
2663
+ query = _objectWithoutPropertiesLoose(_ref3, ["name"]);
2643
2664
 
2644
2665
  return this.http.delete("/tables/" + name + "/data", null, query).then(() => {});
2645
2666
  }
@@ -2656,11 +2677,11 @@ let TablesService = /*#__PURE__*/function (_Service) {
2656
2677
 
2657
2678
  }, {
2658
2679
  key: "getUniqueDataRows",
2659
- value: function getUniqueDataRows(_ref3) {
2680
+ value: function getUniqueDataRows(_ref4) {
2660
2681
  let {
2661
2682
  name
2662
- } = _ref3,
2663
- query = _objectWithoutPropertiesLoose(_ref3, ["name"]);
2683
+ } = _ref4,
2684
+ query = _objectWithoutPropertiesLoose(_ref4, ["name"]);
2664
2685
 
2665
2686
  return this.http.get("/tables/" + name + "/data/unique-values", query).json();
2666
2687
  }