@atproto/oauth-provider 0.2.14 → 0.2.15

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atproto/oauth-provider",
3
- "version": "0.2.14",
3
+ "version": "0.2.15",
4
4
  "license": "MIT",
5
5
  "description": "Generic OAuth2 and OpenID Connect provider for Node.js. Currently only supports features needed for Atproto.",
6
6
  "keywords": [
@@ -127,6 +127,10 @@ function getScopeDescription(scope: string): string {
127
127
  switch (scope) {
128
128
  case 'atproto':
129
129
  return 'Uniquely identify you'
130
+ case 'transition:generic':
131
+ return 'Access your account data (except chat messages)'
132
+ case 'transition:chat.bsky':
133
+ return 'Access your chat messages'
130
134
  default:
131
135
  return scope
132
136
  }