@veloceapps/api 12.0.0-12 → 12.0.0-13

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.
@@ -631,13 +631,14 @@ class EndpointsAdminApiService {
631
631
  });
632
632
  }
633
633
  executeEndpoint$(body) {
634
- return this.baseHttpService.api({
634
+ return this.baseHttpService
635
+ .api({
635
636
  url: `${this.serviceUrl}/execute`,
636
637
  method: 'post',
637
638
  body,
638
- responseType: 'text',
639
639
  skipErrorHandler: true,
640
- });
640
+ })
641
+ .pipe(map$1(result => result || {}));
641
642
  }
642
643
  }
643
644
  EndpointsAdminApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: EndpointsAdminApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable });