@authhero/adapter-interfaces 0.47.0 → 0.48.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -4495,7 +4495,7 @@ export interface CodesAdapter {
|
|
|
4495
4495
|
export interface PasswordsAdapter {
|
|
4496
4496
|
create: (tenant_id: string, params: PasswordInsert) => Promise<Password>;
|
|
4497
4497
|
update: (tenant_id: string, params: PasswordInsert) => Promise<boolean>;
|
|
4498
|
-
get: (tenant_id: string, user_id: string) => Promise<Password>;
|
|
4498
|
+
get: (tenant_id: string, user_id: string) => Promise<Password | null>;
|
|
4499
4499
|
}
|
|
4500
4500
|
export interface ListSesssionsResponse extends Totals {
|
|
4501
4501
|
sessions: Session[];
|