@atproto/pds 0.4.0 → 0.4.1

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @atproto/pds
2
2
 
3
+ ## 0.4.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`514aab92d`](https://github.com/bluesky-social/atproto/commit/514aab92d26acd43859285f46318e386846522b1)]:
8
+ - @atproto/api@0.10.1
9
+
3
10
  ## 0.4.0
4
11
 
5
12
  ### Patch Changes
@@ -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;
@@ -24,9 +24,10 @@ export type ServiceConfig = {
24
24
  publicUrl: string;
25
25
  did: string;
26
26
  version?: string;
27
- acceptingImports: boolean;
28
27
  privacyPolicyUrl?: string;
29
28
  termsOfServiceUrl?: string;
29
+ acceptingImports: boolean;
30
+ blobUploadLimit: number;
30
31
  };
31
32
  export type DatabaseConfig = {
32
33
  accountDbLoc: string;
@@ -7,6 +7,7 @@ export type ServerEnvironment = {
7
7
  privacyPolicyUrl?: string;
8
8
  termsOfServiceUrl?: string;
9
9
  acceptingImports?: boolean;
10
+ blobUploadLimit?: number;
10
11
  dataDirectory?: string;
11
12
  disableWalAutoCheckpoint?: boolean;
12
13
  accountDbLocation?: string;