@atproto/jwk-jose 0.1.5 → 0.1.6

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,12 @@
1
1
  # @atproto/jwk-jose
2
2
 
3
+ ## 0.1.6
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`26a077716`](https://github.com/bluesky-social/atproto/commit/26a07771673bf1090a61efb7c970235f0b2509fc)]:
8
+ - @atproto/jwk@0.1.5
9
+
3
10
  ## 0.1.5
4
11
 
5
12
  ### Patch Changes
@@ -9,7 +9,7 @@ export declare class JoseKey<J extends Jwk = Jwk> extends Key<J> {
9
9
  * provide the following method to ensure the `alg` is always set. We also
10
10
  * take the opportunity to ensure that the `alg` is compatible with this key.
11
11
  */
12
- protected getKeyObj(alg: string): Promise<KeyLike | Uint8Array>;
12
+ protected getKeyObj(alg: string): Promise<KeyLike | Uint8Array<ArrayBufferLike>>;
13
13
  createJwt(header: JwtHeader, payload: JwtPayload): Promise<SignedJwt>;
14
14
  verifyJwt<C extends string = never>(token: SignedJwt, options?: VerifyOptions<C>): Promise<VerifyResult<C>>;
15
15
  static generateKeyPair(allowedAlgos?: readonly string[], options?: GenerateKeyPairOptions): Promise<GenerateKeyPairResult<KeyLike>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atproto/jwk-jose",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "license": "MIT",
5
5
  "description": "`jose` based implementation of @atproto/jwk Key's",
6
6
  "keywords": [
@@ -25,7 +25,7 @@
25
25
  },
26
26
  "dependencies": {
27
27
  "jose": "^5.2.0",
28
- "@atproto/jwk": "0.1.4"
28
+ "@atproto/jwk": "0.1.5"
29
29
  },
30
30
  "devDependencies": {
31
31
  "typescript": "^5.6.3"
@@ -1 +1 @@
1
- {"root":["./src/index.ts","./src/jose-key.ts","./src/util.ts"],"version":"5.6.3"}
1
+ {"root":["./src/index.ts","./src/jose-key.ts","./src/util.ts"],"version":"5.8.2"}