@veloceapps/api 8.0.0-62 → 8.0.0-65
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.
- package/esm2020/lib/services/portals-api.service.mjs +11 -1
- package/fesm2015/veloceapps-api.mjs +7 -0
- package/fesm2015/veloceapps-api.mjs.map +1 -1
- package/fesm2020/veloceapps-api.mjs +10 -0
- package/fesm2020/veloceapps-api.mjs.map +1 -1
- package/lib/services/portals-api.service.d.ts +2 -1
- package/package.json +1 -1
@@ -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 });
|