verben-authentication-ui 0.9.0 → 0.9.1

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.
@@ -26,7 +26,7 @@ export declare class UserManagementService {
26
26
  * @returns Promise containing the filtered list of users
27
27
  */
28
28
  getUsersWithParam(param: string, skip: number, limit: number, sortParam: string, sortOrder: string): Promise<UserManagement[]>;
29
- getRealUsers(role: string | null, skip: number, limit: number, sortParam: string, sortOrder: string): Promise<PagedResult<UserManagement> | ErrorResponse>;
29
+ getRealUsers(role: string | null, skip: number, limit: number, sortParam: string, sortOrder: string): Promise<ErrorResponse | PagedResult<UserManagement>>;
30
30
  /**
31
31
  * Save multiple users
32
32
  * @param users Array of users to save
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "verben-authentication-ui",
3
- "version": "0.9.0",
3
+ "version": "0.9.1",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "^18.2.0",
6
6
  "@angular/common": "^14.0.0 || ^18.0.0",