Skip to content

Commit 9d177b5

Browse files
authored
Add argon2 type to PasswordHashType interface (#1384)
## Description Add argon2 type to PasswordHashType interface ## Documentation Does this require changes to the WorkOS Docs? E.g. the [API Reference](https://workos.com/docs/reference) or code snippets need updates. ``` [ ] Yes ``` If yes, link a related docs PR and add a docs maintainer as a reviewer. Their approval is required.
1 parent 416bdf7 commit 9d177b5

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed
Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,6 @@
1-
export type PasswordHashType = 'bcrypt' | 'firebase-scrypt' | 'ssha' | 'scrypt';
1+
export type PasswordHashType =
2+
| 'bcrypt'
3+
| 'firebase-scrypt'
4+
| 'ssha'
5+
| 'scrypt'
6+
| 'argon2';

0 commit comments

Comments
 (0)