@atproto/oauth-client-node 0.0.2-rc.0 → 0.0.2-rc.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +8 -8
package/README.md CHANGED
@@ -39,7 +39,7 @@ const client = new NodeOAuthClientOptions({
39
39
  grant_types: ['authorization_code', 'refresh_token'],
40
40
  response_types: ['code'],
41
41
  application_type: 'web',
42
- token_endpoint_auth_method: 'client_secret_jwt',
42
+ token_endpoint_auth_method: 'private_key_jwt',
43
43
  dpop_bound_access_tokens: true,
44
44
  jwks_uri: 'https://my-app.com/jwks.json',
45
45
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atproto/oauth-client-node",
3
- "version": "0.0.2-rc.0",
3
+ "version": "0.0.2-rc.1",
4
4
  "license": "MIT",
5
5
  "description": "ATPROTO OAuth client for the NodeJS",
6
6
  "keywords": [
@@ -28,15 +28,15 @@
28
28
  "dist"
29
29
  ],
30
30
  "dependencies": {
31
- "@atproto-labs/did-resolver": "0.1.1",
32
31
  "@atproto-labs/handle-resolver-node": "0.1.1",
33
- "@atproto-labs/simple-store": "0.1.1",
34
- "@atproto/did": "0.1.0",
32
+ "@atproto/jwk-webcrypto": "0.1.2-rc.0",
35
33
  "@atproto/jwk": "0.1.1",
36
- "@atproto/jwk-jose": "0.1.1",
37
- "@atproto/jwk-webcrypto": "0.1.1",
38
- "@atproto/oauth-client": "0.1.2-rc.0",
39
- "@atproto/oauth-types": "0.1.1"
34
+ "@atproto-labs/did-resolver": "0.1.1",
35
+ "@atproto/oauth-client": "0.1.2-rc.1",
36
+ "@atproto-labs/simple-store": "0.1.1",
37
+ "@atproto/jwk-jose": "0.1.2-rc.0",
38
+ "@atproto/oauth-types": "0.1.1",
39
+ "@atproto/did": "0.1.0"
40
40
  },
41
41
  "devDependencies": {
42
42
  "typescript": "^5.3.3",