@osovitny/anatoly 2.0.44 → 2.0.45

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.
@@ -1516,12 +1516,6 @@
1516
1516
  return this.http.delete(url, { responseType: responseType });
1517
1517
  };
1518
1518
  //gets
1519
- BaseApiService.prototype.getById = function (id) {
1520
- return this.get('getById', { id: id });
1521
- };
1522
- BaseApiService.prototype.getAll = function (data) {
1523
- return this.get('getAll', data).pipe(operators.map(function (res) { return res; }));
1524
- };
1525
1519
  BaseApiService.prototype.getExternalTextFile = function (url) {
1526
1520
  return this.http.get(url);
1527
1521
  };