@experteam-mx/ngx-services 20.1.17-dev1.0 → 20.1.17-dev1.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.
|
@@ -1593,16 +1593,6 @@ class ApiCompaniesService {
|
|
|
1593
1593
|
return this.http.get(`${this.url}/accounts/actives`, { params })
|
|
1594
1594
|
.pipe(map(({ data }) => data));
|
|
1595
1595
|
}
|
|
1596
|
-
/**
|
|
1597
|
-
* Fetches account entity data from the server based on the provided query parameters.
|
|
1598
|
-
*
|
|
1599
|
-
* @param {QueryParams} params - The query parameters to be sent with the HTTP request.
|
|
1600
|
-
* @return {Observable<AccountEntitiesOut>} An observable that emits the account entities data.
|
|
1601
|
-
*/
|
|
1602
|
-
getAccountEntities(params) {
|
|
1603
|
-
return this.http.get(`${this.url}/account-entities`, { params })
|
|
1604
|
-
.pipe(map(({ data }) => data));
|
|
1605
|
-
}
|
|
1606
1596
|
/**
|
|
1607
1597
|
* Updates an account entity using the provided details.
|
|
1608
1598
|
*
|