@absolutejs/auth 0.30.0-beta.4 → 0.30.0-beta.6
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/dist/index.d.ts +7 -1
- package/dist/index.js +389 -48
- package/dist/index.js.map +12 -8
- package/dist/oidc/clientAuth.d.ts +7 -0
- package/dist/oidc/jar.d.ts +14 -0
- package/dist/oidc/postgresStores.d.ts +34 -0
- package/dist/oidc/routes.d.ts +1 -0
- package/dist/oidc/types.d.ts +1 -0
- package/dist/sso/config.d.ts +38 -0
- package/dist/sso/inMemorySamlServiceProviderStore.d.ts +2 -0
- package/dist/sso/postgresSamlServiceProviderStore.d.ts +119 -0
- package/dist/sso/samlIdpRoutes.d.ts +139 -0
- package/dist/sso/types.d.ts +14 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -13454,6 +13454,7 @@ export declare const auth: <UserType>({ providersConfiguration, authorizeRoute,
|
|
|
13454
13454
|
scope?: string | undefined;
|
|
13455
13455
|
claims?: string | undefined;
|
|
13456
13456
|
nonce?: string | undefined;
|
|
13457
|
+
request?: string | undefined;
|
|
13457
13458
|
redirect_uri?: string | undefined;
|
|
13458
13459
|
acr_values?: string | undefined;
|
|
13459
13460
|
code_challenge?: string | undefined;
|
|
@@ -15120,7 +15121,9 @@ export { generateSigningKey, jwkThumbprint, signJwt, toPublicJwk, verifyJwt } fr
|
|
|
15120
15121
|
export type { SigningKey } from './oidc/keys';
|
|
15121
15122
|
export { extractDpopNonceClaim, mintDpopNonce, verifyDpopNonce, verifyDpopProof } from './oidc/dpop';
|
|
15122
15123
|
export type { DpopResult } from './oidc/dpop';
|
|
15123
|
-
export { CLIENT_ASSERTION_TYPE, verifyClientAssertion } from './oidc/clientAuth';
|
|
15124
|
+
export { CLIENT_ASSERTION_TYPE, verifyClientAssertion, verifyJwtSignedByClient } from './oidc/clientAuth';
|
|
15125
|
+
export { parseSignedRequestObject } from './oidc/jar';
|
|
15126
|
+
export type { JarParseResult } from './oidc/jar';
|
|
15124
15127
|
export { createInMemoryAuthorizationCodeStore, createInMemoryClientAssertionJtiStore, createInMemoryClientRegistrationTokenStore, createInMemoryDeviceAuthorizationStore, createInMemoryInitialAccessTokenStore, createInMemoryLogoutDeliveryStore, createInMemoryOAuthClientStore, createInMemoryOidcRefreshTokenStore, createInMemoryPushedAuthorizationRequestStore } from './oidc/inMemoryStores';
|
|
15125
15128
|
export { consumePushedRequest, pushAuthorizationRequest, DEFAULT_PAR_TTL_MS, REQUEST_URI_PREFIX } from './oidc/par';
|
|
15126
15129
|
export { fetchUserInfo, readUserInfoBearer, userInfoChallengeHeader } from './oidc/userinfo';
|
|
@@ -15140,8 +15143,11 @@ export { createInMemoryWarrantStore, warrantKey } from './fga/inMemoryStores';
|
|
|
15140
15143
|
export { createNeonWarrantStore, createPostgresWarrantStore, warrantsTable } from './fga/postgresStores';
|
|
15141
15144
|
export { ssoDiscoveryRoute } from './sso/discoveryRoute';
|
|
15142
15145
|
export { oidcSsoRoutes } from './sso/oidcRoutes';
|
|
15146
|
+
export { samlIdpRoutes } from './sso/samlIdpRoutes';
|
|
15143
15147
|
export { samlSsoRoutes } from './sso/samlRoutes';
|
|
15148
|
+
export { createInMemorySamlServiceProviderStore } from './sso/inMemorySamlServiceProviderStore';
|
|
15144
15149
|
export { createInMemorySsoConnectionStore } from './sso/inMemorySsoConnectionStore';
|
|
15150
|
+
export { createNeonSamlServiceProviderStore, createPostgresSamlServiceProviderStore, samlServiceProvidersTable } from './sso/postgresSamlServiceProviderStore';
|
|
15145
15151
|
export { createNeonSsoConnectionStore, createPostgresSsoConnectionStore, ssoConnectionsTable } from './sso/postgresSsoConnectionStore';
|
|
15146
15152
|
export * from './webauthn/adapter';
|
|
15147
15153
|
export * from './webauthn/config';
|