@absolutejs/auth 0.56.0 → 0.56.2

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.
@@ -122,8 +122,9 @@ export declare const exchangeToken: <UserType>({ actorClientId, audience, config
122
122
  requestedScopes?: string[];
123
123
  subjectToken: string;
124
124
  }) => Promise<TokenExchangeResult>;
125
- export declare const issueTokenSet: <UserType>({ acr, claims, clientCertThumbprint, clientId, config, dpopJkt, nonce, now, scopes, sub }: {
125
+ export declare const issueTokenSet: <UserType>({ acr, audience, claims, clientCertThumbprint, clientId, config, dpopJkt, nonce, now, scopes, sub }: {
126
126
  acr?: string;
127
+ audience?: string;
127
128
  claims?: Record<string, unknown>;
128
129
  clientCertThumbprint?: string;
129
130
  clientId: string;
@@ -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';