@memberjunction/auth-providers 5.49.0 → 5.51.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.
- package/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +20 -0
- package/README.md +3 -3
- package/package.json +3 -3
package/.turbo/turbo-build.log
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @memberjunction/auth-providers
|
|
2
2
|
|
|
3
|
+
## 5.51.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [a8fc549]
|
|
8
|
+
- @memberjunction/core@5.51.0
|
|
9
|
+
- @memberjunction/global@5.51.0
|
|
10
|
+
|
|
11
|
+
## 5.50.0
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [623dfc5]
|
|
16
|
+
- Updated dependencies [ce6374c]
|
|
17
|
+
- Updated dependencies [deb02b4]
|
|
18
|
+
- Updated dependencies [0ba33b3]
|
|
19
|
+
- Updated dependencies [dd04a24]
|
|
20
|
+
- @memberjunction/core@5.50.0
|
|
21
|
+
- @memberjunction/global@5.50.0
|
|
22
|
+
|
|
3
23
|
## 5.49.0
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -243,7 +243,7 @@ export class KeycloakProvider extends BaseAuthProvider {
|
|
|
243
243
|
// Then in mj.config.cjs use type: 'keycloak'
|
|
244
244
|
```
|
|
245
245
|
|
|
246
|
-
> **Important:** because the provider is loaded via class-factory metadata and not by direct reference, your bundler may tree-shake it out. Make sure the file containing the `@RegisterClass` decorator is imported (directly or transitively) before `AuthProviderFactory.createProvider()` runs. The built-in providers do this from [`AuthProviderFactory.ts`](src/AuthProviderFactory.ts); follow the same pattern in your own entry point or a manifest. See the class-registration manifest discussion in
|
|
246
|
+
> **Important:** because the provider is loaded via class-factory metadata and not by direct reference, your bundler may tree-shake it out. Make sure the file containing the `@RegisterClass` decorator is imported (directly or transitively) before `AuthProviderFactory.createProvider()` runs. The built-in providers do this from [`AuthProviderFactory.ts`](src/AuthProviderFactory.ts); follow the same pattern in your own entry point or a manifest. See the class-registration manifest discussion in [packages/CodeGenLib/CLAUDE.md](../CodeGenLib/CLAUDE.md) for background.
|
|
247
247
|
|
|
248
248
|
## API reference
|
|
249
249
|
|
|
@@ -309,8 +309,8 @@ A `GraphQLError` with `extensions.code = 'JWT_EXPIRED'` and `extensions.expiryDa
|
|
|
309
309
|
|
|
310
310
|
## Project guidelines
|
|
311
311
|
|
|
312
|
-
- Class registration & tree-shaking caveats: see the manifest section of
|
|
313
|
-
- Singleton best practices: see the `BaseSingleton` rules in
|
|
312
|
+
- Class registration & tree-shaking caveats: see the manifest section of [packages/CodeGenLib/CLAUDE.md](../CodeGenLib/CLAUDE.md)
|
|
313
|
+
- Singleton best practices: see the `BaseSingleton` rules in [.claude/rules/typescript-style.md](../../.claude/rules/typescript-style.md)
|
|
314
314
|
|
|
315
315
|
## License
|
|
316
316
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@memberjunction/auth-providers",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.51.0",
|
|
4
4
|
"description": "Authentication provider interfaces, base classes, and implementations for MemberJunction",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
"test:watch": "vitest"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@memberjunction/core": "5.
|
|
15
|
-
"@memberjunction/global": "5.
|
|
14
|
+
"@memberjunction/core": "5.51.0",
|
|
15
|
+
"@memberjunction/global": "5.51.0",
|
|
16
16
|
"graphql": "^16.12.0",
|
|
17
17
|
"jsonwebtoken": "9.0.3",
|
|
18
18
|
"jwks-rsa": "^3.2.2"
|