@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[];
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "type": "git",
12
12
  "url": "https://github.com/markusahlstrand/authhero"
13
13
  },
14
- "version": "0.47.0",
14
+ "version": "0.48.0",
15
15
  "files": [
16
16
  "dist"
17
17
  ],