@esolve/ng-esolve-connect 0.26.2 → 0.26.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.
@@ -916,9 +916,13 @@ class EsolveCategoryTreeService {
916
916
  /**
917
917
  * Retrieves the category tree from eSolve instance and coverts it to the correct format.
918
918
  */
919
- getCategoryTree() {
919
+ getCategoryTree(identifier) {
920
+ let params = new HttpParams();
921
+ if (identifier) {
922
+ params = params.set('identifier', identifier);
923
+ }
920
924
  return this.http
921
- .get(`${this.config.api_url}/get-tree.php`)
925
+ .get(`${this.config.api_url}/get-tree.php`, { params })
922
926
  .pipe(map((response) => {
923
927
  if (response.records === undefined) {
924
928
  throw response;