d5-api-initializer 1.7.4 → 1.8.0

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.
@@ -405,6 +405,14 @@ var ApiInvoker = class {
405
405
  this._jsWapiInvoker = this._jsWapiInvoker.putFilters(filters);
406
406
  return this;
407
407
  }
408
+ addAggregatedFilter(name, value) {
409
+ this._jsWapiInvoker = this._jsWapiInvoker.putAggregatedFilter(name, value);
410
+ return this;
411
+ }
412
+ addAggregatedFilters(filters) {
413
+ this._jsWapiInvoker = this._jsWapiInvoker.putAggregatedFilters(filters);
414
+ return this;
415
+ }
408
416
  addSorts(sorts) {
409
417
  this._jsWapiInvoker = this._jsWapiInvoker.addSorts(sorts);
410
418
  return this;
@@ -806,6 +814,20 @@ var ApiRequest = class {
806
814
  this.aggregatedColumns = aggregatedColumns;
807
815
  return this;
808
816
  }
817
+ getAggregatedFilter(name) {
818
+ return this._jsWapiRequest.getAggregatedFilter(name);
819
+ }
820
+ getAggregatedFilters() {
821
+ return this._jsWapiRequest.getAggregatedFilters();
822
+ }
823
+ removeAggregatedFilter(name) {
824
+ this._jsWapiRequest = this._jsWapiRequest.removeAggregatedFilter(name);
825
+ return this;
826
+ }
827
+ removeAggregatedFilters(names) {
828
+ this._jsWapiRequest = this._jsWapiRequest.removeAggregatedFilters(names);
829
+ return this;
830
+ }
809
831
  setFilters(filters) {
810
832
  this.filters = filters;
811
833
  return this;
@@ -870,6 +892,14 @@ var ApiRequest = class {
870
892
  this._jsWapiRequest = this._jsWapiRequest.putFilters(filters);
871
893
  return this;
872
894
  }
895
+ addAggregatedFilter(name, value) {
896
+ this._jsWapiRequest = this._jsWapiRequest.putAggregatedFilter(name, value);
897
+ return this;
898
+ }
899
+ addAggregatedFilters(filters) {
900
+ this._jsWapiRequest = this._jsWapiRequest.putAggregatedFilters(filters);
901
+ return this;
902
+ }
873
903
  addParams(params) {
874
904
  for (const name in params) {
875
905
  this._jsWapiRequest = this._jsWapiRequest.putParam(name, params[name]);
@@ -405,6 +405,14 @@ var ApiInvoker = class {
405
405
  this._jsWapiInvoker = this._jsWapiInvoker.putFilters(filters);
406
406
  return this;
407
407
  }
408
+ addAggregatedFilter(name, value) {
409
+ this._jsWapiInvoker = this._jsWapiInvoker.putAggregatedFilter(name, value);
410
+ return this;
411
+ }
412
+ addAggregatedFilters(filters) {
413
+ this._jsWapiInvoker = this._jsWapiInvoker.putAggregatedFilters(filters);
414
+ return this;
415
+ }
408
416
  addSorts(sorts) {
409
417
  this._jsWapiInvoker = this._jsWapiInvoker.addSorts(sorts);
410
418
  return this;
@@ -806,6 +814,20 @@ var ApiRequest = class {
806
814
  this.aggregatedColumns = aggregatedColumns;
807
815
  return this;
808
816
  }
817
+ getAggregatedFilter(name) {
818
+ return this._jsWapiRequest.getAggregatedFilter(name);
819
+ }
820
+ getAggregatedFilters() {
821
+ return this._jsWapiRequest.getAggregatedFilters();
822
+ }
823
+ removeAggregatedFilter(name) {
824
+ this._jsWapiRequest = this._jsWapiRequest.removeAggregatedFilter(name);
825
+ return this;
826
+ }
827
+ removeAggregatedFilters(names) {
828
+ this._jsWapiRequest = this._jsWapiRequest.removeAggregatedFilters(names);
829
+ return this;
830
+ }
809
831
  setFilters(filters) {
810
832
  this.filters = filters;
811
833
  return this;
@@ -870,6 +892,14 @@ var ApiRequest = class {
870
892
  this._jsWapiRequest = this._jsWapiRequest.putFilters(filters);
871
893
  return this;
872
894
  }
895
+ addAggregatedFilter(name, value) {
896
+ this._jsWapiRequest = this._jsWapiRequest.putAggregatedFilter(name, value);
897
+ return this;
898
+ }
899
+ addAggregatedFilters(filters) {
900
+ this._jsWapiRequest = this._jsWapiRequest.putAggregatedFilters(filters);
901
+ return this;
902
+ }
873
903
  addParams(params) {
874
904
  for (const name in params) {
875
905
  this._jsWapiRequest = this._jsWapiRequest.putParam(name, params[name]);
package/CHANGELOG.md DELETED
File without changes