@seamless-auth/express 0.0.2-beta.20 → 0.0.2-beta.21

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -147,7 +147,7 @@ function buildServiceAuthorization(req, opts) {
147
147
  issuer: opts.issuer,
148
148
  audience: opts.audience,
149
149
  serviceSecret: opts.serviceSecret,
150
- keyId: opts.jwksKid
150
+ keyId: opts.jwksKid || "dev-main"
151
151
  });
152
152
  return `Bearer ${token}`;
153
153
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamless-auth/express",
3
- "version": "0.0.2-beta.20",
3
+ "version": "0.0.2-beta.21",
4
4
  "description": "Express adapter for Seamless Auth passwordless authentication",
5
5
  "license": "AGPL-3.0-only",
6
6
  "type": "module",