@esolve/ng-esolve-connect 0.26.0 → 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;
@@ -1073,6 +1077,9 @@ class EsolveManufacturer {
1073
1077
  this.article = record.article ?? '';
1074
1078
  this.sort_priority = +(record.sort_priority ?? 0);
1075
1079
  this.image_name = record.image_name ?? '';
1080
+ seo_title = record.seo_page_title ?? '';
1081
+ seo_keywords = record.seo_keywords ?? '';
1082
+ seo_description = record.seo_description ?? '';
1076
1083
  if (record.is_active) {
1077
1084
  this.is_active = !!+record.is_active;
1078
1085
  }