@experteam-mx/ngx-services 20.1.17-alpha.0 → 20.1.17-alpha.2
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.
|
@@ -1563,6 +1563,9 @@ class ApiCompaniesService {
|
|
|
1563
1563
|
return this.http.put(`${this.url}/accounts/${id}`, body)
|
|
1564
1564
|
.pipe(map(({ data }) => data));
|
|
1565
1565
|
}
|
|
1566
|
+
patchAccount(id, body) {
|
|
1567
|
+
return this.http.patch(`${this.url}/accounts/${id}`, body);
|
|
1568
|
+
}
|
|
1566
1569
|
/**
|
|
1567
1570
|
* Fetches account entity data from the server based on the provided query parameters.
|
|
1568
1571
|
*
|