diff --git a/README.md b/README.md index c03d57e..5def0d6 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,8 @@ [![Total Downloads](https://img.shields.io/packagist/dt/mohammad-waleed/keycloak-admin-client.svg?style=flat-square)](https://packagist.org/packages/mohammad-waleed/keycloak-admin-client) +[![Donate](https://img.shields.io/badge/Paypal-Donate-blue?style=flat-square)](https://paypal.me/mbarghash?locale.x=en_US) + - [Introduction](#introduction) - [How to use](#how-to-use) - [Customization](#customization) diff --git a/src/Admin/Resources/keycloak-1_0.php b/src/Admin/Resources/keycloak-1_0.php index c1e7826..c459745 100644 --- a/src/Admin/Resources/keycloak-1_0.php +++ b/src/Admin/Resources/keycloak-1_0.php @@ -5023,7 +5023,7 @@ ), ) + $UserRepresentation ), - + 'getUserCount' => array( 'uri' => 'auth/admin/realms/{realm}/users/count', 'description' => 'Get the number of users', @@ -5035,6 +5035,37 @@ 'type' => 'string', 'required' => true, ), + 'emailVerified' => array( + 'location' => 'query', + 'type' => 'boolean', + 'required' => false, + ), + 'email' => array( + 'location' => 'query', + 'type' => 'string', + 'required' => false, + ), + 'firstName' => array( + 'location' => 'query', + 'type' => 'string', + 'required' => false, + ), + 'lastName' => array( + 'location' => 'query', + 'type' => 'string', + 'required' => false, + ), + 'search' => array( + 'location' => 'query', + 'description' => 'A String contained in username, first or last name, or email', + 'type' => 'string', + 'required' => false, + ), + 'username' => array( + 'location' => 'query', + 'type' => 'string', + 'required' => false, + ) ), ),