@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.
package/index.d.ts
CHANGED
|
@@ -2225,7 +2225,7 @@ type AccountsOut = {
|
|
|
2225
2225
|
total: number;
|
|
2226
2226
|
};
|
|
2227
2227
|
type AccountsActivesOut = {
|
|
2228
|
-
accounts:
|
|
2228
|
+
accounts: AccountWithDefault[];
|
|
2229
2229
|
total: number;
|
|
2230
2230
|
};
|
|
2231
2231
|
type AccountIn = {
|
|
@@ -2881,13 +2881,6 @@ declare class ApiCompaniesService {
|
|
|
2881
2881
|
* or paginate the results.
|
|
2882
2882
|
*/
|
|
2883
2883
|
getAccountsActives(params: QueryParams): Observable<AccountsActivesOut>;
|
|
2884
|
-
/**
|
|
2885
|
-
* Fetches account entity data from the server based on the provided query parameters.
|
|
2886
|
-
*
|
|
2887
|
-
* @param {QueryParams} params - The query parameters to be sent with the HTTP request.
|
|
2888
|
-
* @return {Observable<AccountEntitiesOut>} An observable that emits the account entities data.
|
|
2889
|
-
*/
|
|
2890
|
-
getAccountEntities(params: QueryParams): Observable<AccountEntitiesOut>;
|
|
2891
2884
|
/**
|
|
2892
2885
|
* Updates an account entity using the provided details.
|
|
2893
2886
|
*
|