@tsed/oidc-provider 8.21.0 → 8.23.0

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.
@@ -100,7 +100,7 @@ let OidcInteractionContext = class OidcInteractionContext {
100
100
  }
101
101
  const key = `$account:${sub}`;
102
102
  return this.$ctx.cacheAsync(key, (() => {
103
- return this.oidcProvider.get().Account.findAccount(undefined, sub, token);
103
+ return inject(constant("oidc.Accounts")).findAccount(sub, token);
104
104
  }));
105
105
  }
106
106
  getGrant() {
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@tsed/oidc-provider",
3
3
  "description": "OIDC provider package for Ts.ED framework",
4
4
  "type": "module",
5
- "version": "8.21.0",
5
+ "version": "8.23.0",
6
6
  "source": "./src/index.ts",
7
7
  "main": "./lib/esm/index.js",
8
8
  "module": "./lib/esm/index.js",
@@ -24,7 +24,7 @@
24
24
  "test:ci": "vitest run --coverage.thresholds.autoUpdate=true"
25
25
  },
26
26
  "dependencies": {
27
- "@tsed/adapters": "8.21.0",
27
+ "@tsed/adapters": "8.23.0",
28
28
  "express-urlrewrite": "^2.0.3",
29
29
  "jose2": "npm:jose@^2.0.4",
30
30
  "koa-mount": "^4.0.0",
@@ -34,20 +34,20 @@
34
34
  "uuid": "^10.0.0"
35
35
  },
36
36
  "devDependencies": {
37
- "@tsed/barrels": "8.21.0",
38
- "@tsed/core": "8.21.0",
39
- "@tsed/di": "8.21.0",
40
- "@tsed/exceptions": "8.21.0",
41
- "@tsed/jwks": "8.21.0",
42
- "@tsed/platform-http": "8.21.0",
43
- "@tsed/typescript": "8.21.0",
37
+ "@tsed/barrels": "8.23.0",
38
+ "@tsed/core": "8.23.0",
39
+ "@tsed/di": "8.23.0",
40
+ "@tsed/exceptions": "8.23.0",
41
+ "@tsed/jwks": "8.23.0",
42
+ "@tsed/platform-http": "8.23.0",
43
+ "@tsed/typescript": "8.23.0",
44
44
  "@types/lowdb": "1.0.15",
45
45
  "@types/oidc-provider": "8.5.2",
46
46
  "@types/uuid": "10.0.0",
47
47
  "cross-env": "7.0.3",
48
48
  "eslint": "9.12.0",
49
49
  "lowdb": "7.0.1",
50
- "oidc-provider": "8.8.1",
50
+ "oidc-provider": "9.6.0",
51
51
  "typescript": "5.9.3",
52
52
  "vitest": "3.2.4"
53
53
  },