@absolutejs/auth 0.40.0-beta.0 → 0.40.0-beta.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.
package/dist/index.d.ts CHANGED
@@ -13522,8 +13522,8 @@ export declare const auth: <UserType>({ providersConfiguration, authorizeRoute,
13522
13522
  query: {
13523
13523
  client_id?: string | undefined;
13524
13524
  scope?: string | undefined;
13525
- claims?: string | undefined;
13526
13525
  nonce?: string | undefined;
13526
+ claims?: string | undefined;
13527
13527
  request?: string | undefined;
13528
13528
  redirect_uri?: string | undefined;
13529
13529
  acr_values?: string | undefined;
@@ -13596,9 +13596,9 @@ export declare const auth: <UserType>({ providersConfiguration, authorizeRoute,
13596
13596
  body: {
13597
13597
  client_id?: string | undefined;
13598
13598
  scope?: string | undefined;
13599
+ nonce?: string | undefined;
13599
13600
  audience?: string | undefined;
13600
13601
  claims?: string | undefined;
13601
- nonce?: string | undefined;
13602
13602
  resource?: string | undefined;
13603
13603
  client_secret?: string | undefined;
13604
13604
  redirect_uri?: string | undefined;
@@ -15215,6 +15215,13 @@ export { buildIssuerMetadata, createCredentialOffer, DEFAULT_VCI_ROUTE, exchange
15215
15215
  export type { CredentialConfiguration, CredentialIssueInput, CredentialIssueResult, CredentialNonceRecord, CredentialNonceStore, CredentialOffer, CredentialOfferStore, PreAuthExchangeResult, VciConfig } from './oidc/vci';
15216
15216
  export { createInMemoryCredentialNonceStore, createInMemoryCredentialOfferStore } from './oidc/inMemoryVciStores';
15217
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';
15224
+ export { createNeonCredentialNonceStore, createNeonCredentialOfferStore, createNeonPresentationRequestStore, createPostgresCredentialNonceStore, createPostgresCredentialOfferStore, createPostgresPresentationRequestStore, vcCredentialNoncesTable, vcCredentialOffersTable, vcPresentationRequestsTable } from './vc/postgresVcStores';
15218
15225
  export { createInMemoryScimTokenStore } from './scim/inMemoryScimTokenStore';
15219
15226
  export { createNeonScimTokenStore, createPostgresScimTokenStore, scimTokensTable } from './scim/postgresScimTokenStore';
15220
15227
  export * from './apikeys/config';