From 11022f8ab6fff39545ee367ba7974c61790d345a Mon Sep 17 00:00:00 2001 From: Thibault Buathier Date: Mon, 18 Oct 2021 17:47:12 +0200 Subject: [PATCH] add missing parameters on getUserCount --- src/Admin/Resources/keycloak-1_0.php | 33 +++++++++++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) 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, + ) ), ),