@atproto/xrpc-server 0.4.3 → 0.4.4

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @atproto/xrpc-server
2
2
 
3
+ ## 0.4.4
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies []:
8
+ - @atproto/common@0.3.4
9
+ - @atproto/lexicon@0.3.3
10
+ - @atproto/crypto@0.3.0
11
+
3
12
  ## 0.4.3
4
13
 
5
14
  ### Patch Changes
package/dist/auth.d.ts CHANGED
@@ -13,5 +13,5 @@ export declare const createServiceAuthHeaders: (params: ServiceJwtParams) => Pro
13
13
  authorization: string;
14
14
  };
15
15
  }>;
16
- export declare const verifyJwt: (jwtStr: string, ownDid: string | null, getSigningKey: (did: string, forceRefresh: boolean) => Promise<string>) => Promise<ServiceJwtPayload>;
16
+ export declare const verifyJwt: (jwtStr: string, ownDid: string | null, getSigningKey: (iss: string, forceRefresh: boolean) => Promise<string>) => Promise<ServiceJwtPayload>;
17
17
  export {};