File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change 5
5
### Added
6
6
7
7
- AWS api-change: Add LimitExceededException to SignUp errors
8
+ - AWS api-change: Add EXTERNAL_PROVIDER enum value to UserStatusType.
8
9
9
10
### Changed
10
11
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ final class UserStatusType
7
7
public const ARCHIVED = 'ARCHIVED ' ;
8
8
public const COMPROMISED = 'COMPROMISED ' ;
9
9
public const CONFIRMED = 'CONFIRMED ' ;
10
+ public const EXTERNAL_PROVIDER = 'EXTERNAL_PROVIDER ' ;
10
11
public const FORCE_CHANGE_PASSWORD = 'FORCE_CHANGE_PASSWORD ' ;
11
12
public const RESET_REQUIRED = 'RESET_REQUIRED ' ;
12
13
public const UNCONFIRMED = 'UNCONFIRMED ' ;
@@ -18,6 +19,7 @@ public static function exists(string $value): bool
18
19
self ::ARCHIVED => true ,
19
20
self ::COMPROMISED => true ,
20
21
self ::CONFIRMED => true ,
22
+ self ::EXTERNAL_PROVIDER => true ,
21
23
self ::FORCE_CHANGE_PASSWORD => true ,
22
24
self ::RESET_REQUIRED => true ,
23
25
self ::UNCONFIRMED => true ,
You can’t perform that action at this time.
0 commit comments