@atproto/pds 0.4.0-beta.3 → 0.4.0-beta.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -84,4 +84,8 @@ export declare class AccountManager {
84
84
  password: string;
85
85
  token: string;
86
86
  }): Promise<void>;
87
+ updateAccountPassword(opts: {
88
+ did: string;
89
+ password: string;
90
+ }): Promise<void>;
87
91
  }
@@ -0,0 +1,3 @@
1
+ import { Server } from '../../../../lexicon';
2
+ import AppContext from '../../../../context';
3
+ export default function (server: Server, ctx: AppContext): void;