From 1225239e239bde1b25037a88867d4c484caf8301 Mon Sep 17 00:00:00 2001 From: Joel Lee Date: Thu, 26 Dec 2024 16:17:13 +0530 Subject: [PATCH] fix: update docs to add scrypt (#1012) ## What kind of change does this PR introduce? As per title - relevant PR: https://github.com/supabase/auth/pull/1768 --- src/lib/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/types.ts b/src/lib/types.ts index 6d947c75..8ff309a1 100644 --- a/src/lib/types.ts +++ b/src/lib/types.ts @@ -449,7 +449,7 @@ export interface AdminUserAttributes extends Omit { * * Allows you to specify a password hash for the user. This is useful for migrating a user's password hash from another service. * - * Supports bcrypt and argon2 password hashes. + * Supports bcrypt, scrypt (firebase), and argon2 password hashes. */ password_hash?: string