@absolutejs/auth 0.55.9 → 0.56.1
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/README.md +8 -0
- package/dist/agents/index.js +13 -3
- package/dist/agents/index.js.map +3 -3
- package/dist/index.js +13 -3
- package/dist/index.js.map +3 -3
- package/dist/oidc/index.d.ts +11 -0
- package/dist/oidc/index.js +11409 -0
- package/dist/oidc/index.js.map +108 -0
- package/dist/oidc/keys.d.ts +12 -2
- package/dist/server.js +13 -3
- package/dist/server.js.map +3 -3
- package/package.json +10 -2
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Declaration-stable OIDC provider entry point.
|
|
3
|
+
*
|
|
4
|
+
* Server applications that only need to issue and verify OAuth/OIDC tokens
|
|
5
|
+
* should import this subpath instead of loading every optional Auth feature
|
|
6
|
+
* through the package root.
|
|
7
|
+
*/
|
|
8
|
+
export type { OidcProviderConfig } from './config';
|
|
9
|
+
export { generateSigningKey, jwkThumbprint, signJwt, toPublicJwk, verifyJwt, type SigningKey } from './keys';
|
|
10
|
+
export { createNeonAuthorizationCodeStore, createNeonClientAssertionJtiStore, createNeonClientRegistrationTokenStore, createNeonDeviceAuthorizationStore, createNeonInitialAccessTokenStore, createNeonOAuthClientStore, createNeonOidcRefreshTokenStore, createPostgresAuthorizationCodeStore, createPostgresClientAssertionJtiStore, createPostgresClientRegistrationTokenStore, createPostgresDeviceAuthorizationStore, createPostgresInitialAccessTokenStore, createPostgresOAuthClientStore, createPostgresOidcRefreshTokenStore } from './postgresStores';
|
|
11
|
+
export type { AuthorizationCodeStore, ClientAssertionJtiStore, ClientRegistrationTokenStore, DeviceAuthorizationStore, InitialAccessTokenStore, OAuthClient, OAuthClientStore, OidcRefreshTokenStore } from './types';
|