You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
workos.user_management.UserManagement.create_user takes a parameter password_hash_type if you want to upload a hashed password to workos.
In this library this field is typed as Optional[PasswordHashType].
In workos.types.user_management.password_hash_type this type is defined as PasswordHashType = Literal["bcrypt", "firebase-scrypt", "ssha"]
However workos also supports pbkdf2 passwords, so this literal should be added to the type