javascript-solid-server 0.0.26 → 0.0.27

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "javascript-solid-server",
3
- "version": "0.0.26",
3
+ "version": "0.0.27",
4
4
  "description": "A minimal, fast Solid server",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -149,8 +149,9 @@ export async function createProvider(issuer) {
149
149
  scopes: ['openid', 'webid', 'profile', 'email', 'offline_access'],
150
150
 
151
151
  // Claims configuration
152
+ // Always include webid with openid scope for Solid-OIDC compliance
152
153
  claims: {
153
- openid: ['sub'],
154
+ openid: ['sub', 'webid'],
154
155
  webid: ['webid'],
155
156
  profile: ['name'],
156
157
  email: ['email', 'email_verified'],