@veloceapps/api 8.0.0-62 → 8.0.0-63

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.
@@ -2948,6 +2948,16 @@ class PortalsApiService {
2948
2948
  body,
2949
2949
  });
2950
2950
  }
2951
+ updatePortal$(portal, settings) {
2952
+ return this.baseHttpService.api({
2953
+ url: `${this.serviceUrl}/${portal.id}`,
2954
+ method: 'put',
2955
+ body: {
2956
+ ...portal,
2957
+ settings: JSON.stringify(settings),
2958
+ },
2959
+ });
2960
+ }
2951
2961
  }
2952
2962
  PortalsApiService.MAX_RESULTS = 60;
2953
2963
  PortalsApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: PortalsApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable });