diff --git a/CHANGELOG.md b/CHANGELOG.md index 20c15dc..d865387 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - Added mfaUpdate() (`PUT /mfa/{mfaId}`) to update MFA label. - Added authenticateNewUser() to authenticate using an invite code. - Added new MFA type, `manager`, for sending a "rescue" code to user's manager. +- Added 'personal_email' and 'groups' properties on User. ### Changed - Tighter validation on idBrokerUri diff --git a/src/descriptions/id-broker-api.php b/src/descriptions/id-broker-api.php index 6e052e8..02a117d 100644 --- a/src/descriptions/id-broker-api.php +++ b/src/descriptions/id-broker-api.php @@ -108,6 +108,11 @@ 'type' => 'string', 'location' => 'json', ], + 'personal_email' => [ + 'required' => false, + 'type' => 'string', + 'location' => 'json', + ], ], ], 'deactivateUserInternal' => [ @@ -350,6 +355,11 @@ 'type' => 'string', 'location' => 'json', ], + 'personal_email' => [ + 'required' => false, + 'type' => 'string', + 'location' => 'json', + ], ], ], 'createMethodInternal' => [