@absolutejs/auth 0.38.0 → 0.40.0-beta.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/dist/index.d.ts +12 -0
- package/dist/index.js +1146 -204
- package/dist/index.js.map +18 -9
- package/dist/oidc/config.d.ts +2 -0
- package/dist/oidc/inMemoryVciStores.d.ts +3 -0
- package/dist/oidc/routes.d.ts +1 -0
- package/dist/oidc/vci.d.ts +159 -0
- package/dist/oidc/vciRoutes.d.ts +92 -0
- package/dist/vc/inMemoryVpStores.d.ts +2 -0
- package/dist/vc/openid4vp.d.ts +82 -0
- package/dist/vc/sdJwt.d.ts +37 -0
- package/dist/vc/statusList.d.ts +29 -0
- package/dist/vc/statusListRoutes.d.ts +63 -0
- package/dist/vc/vpRoutes.d.ts +120 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -13569,6 +13569,7 @@ export declare const auth: <UserType>({ providersConfiguration, authorizeRoute,
|
|
|
13569
13569
|
client_assertion?: string | undefined;
|
|
13570
13570
|
client_assertion_type?: string | undefined;
|
|
13571
13571
|
code_verifier?: string | undefined;
|
|
13572
|
+
'pre-authorized_code'?: string | undefined;
|
|
13572
13573
|
subject_token?: string | undefined;
|
|
13573
13574
|
subject_token_type?: string | undefined;
|
|
13574
13575
|
};
|
|
@@ -15209,6 +15210,17 @@ export * from './scim/types';
|
|
|
15209
15210
|
export * from './scim/config';
|
|
15210
15211
|
export * from './scim/extensions';
|
|
15211
15212
|
export { scimRoutes } from './scim/routes';
|
|
15213
|
+
export * from './vc/sdJwt';
|
|
15214
|
+
export { buildIssuerMetadata, createCredentialOffer, DEFAULT_VCI_ROUTE, exchangePreAuthorizedCode, issueCredential, PRE_AUTHORIZED_CODE_GRANT } from './oidc/vci';
|
|
15215
|
+
export type { CredentialConfiguration, CredentialIssueInput, CredentialIssueResult, CredentialNonceRecord, CredentialNonceStore, CredentialOffer, CredentialOfferStore, PreAuthExchangeResult, VciConfig } from './oidc/vci';
|
|
15216
|
+
export { createInMemoryCredentialNonceStore, createInMemoryCredentialOfferStore } from './oidc/inMemoryVciStores';
|
|
15217
|
+
export { vciRoutes } from './oidc/vciRoutes';
|
|
15218
|
+
export * from './vc/statusList';
|
|
15219
|
+
export { statusListRoutes, DEFAULT_STATUS_ROUTE } from './vc/statusListRoutes';
|
|
15220
|
+
export { buildHolderKeyBindingJwt, createPresentationRequest, parsePresentationToken, verifyPresentationResponse } from './vc/openid4vp';
|
|
15221
|
+
export type { CreatePresentationRequestInput, PresentationRequest, PresentationRequestStore, PresentationResponseInput, PresentationVerifyError, PresentationVerifyResult, VerifiedPresentation, Vp4Config } from './vc/openid4vp';
|
|
15222
|
+
export { createInMemoryPresentationRequestStore } from './vc/inMemoryVpStores';
|
|
15223
|
+
export { vpRoutes, DEFAULT_VP_ROUTE } from './vc/vpRoutes';
|
|
15212
15224
|
export { createInMemoryScimTokenStore } from './scim/inMemoryScimTokenStore';
|
|
15213
15225
|
export { createNeonScimTokenStore, createPostgresScimTokenStore, scimTokensTable } from './scim/postgresScimTokenStore';
|
|
15214
15226
|
export * from './apikeys/config';
|