Skip to content

Commit d507740

Browse files
Update generated code (#1710)
* update generated code * Fix test --------- Co-authored-by: Jérémy Derussé <[email protected]>
1 parent 21f710c commit d507740

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
### Added
66

77
- AWS api-change: Add LimitExceededException to SignUp errors
8+
- AWS api-change: Add EXTERNAL_PROVIDER enum value to UserStatusType.
89

910
### Changed
1011

src/Enum/UserStatusType.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ final class UserStatusType
77
public const ARCHIVED = 'ARCHIVED';
88
public const COMPROMISED = 'COMPROMISED';
99
public const CONFIRMED = 'CONFIRMED';
10+
public const EXTERNAL_PROVIDER = 'EXTERNAL_PROVIDER';
1011
public const FORCE_CHANGE_PASSWORD = 'FORCE_CHANGE_PASSWORD';
1112
public const RESET_REQUIRED = 'RESET_REQUIRED';
1213
public const UNCONFIRMED = 'UNCONFIRMED';
@@ -18,6 +19,7 @@ public static function exists(string $value): bool
1819
self::ARCHIVED => true,
1920
self::COMPROMISED => true,
2021
self::CONFIRMED => true,
22+
self::EXTERNAL_PROVIDER => true,
2123
self::FORCE_CHANGE_PASSWORD => true,
2224
self::RESET_REQUIRED => true,
2325
self::UNCONFIRMED => true,

0 commit comments

Comments
 (0)