@eudiplo/sdk-core 1.14.0-main.d446bdf → 1.14.0-main.dd38fe7

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 CHANGED
@@ -141,14 +141,16 @@ const session = await client.submitDcApiResponse(sessionId, credential);
141
141
  When deploying to production, you should **never expose your client credentials to the browser**. The SDK provides helper functions to split the DC API flow between your server (where credentials are safe) and the browser (where the DC API runs).
142
142
 
143
143
  **Server-side Functions:**
144
- | Function | Description |
145
- | ---------------------- | --------------------------------------------------- |
144
+
145
+ | Function | Description |
146
+ | -------------------------------- | ------------------------------------------------------ |
146
147
  | `createDcApiRequestForBrowser()` | Create request on server, return safe data for browser |
147
- | `submitDcApiWalletResponse()` | Submit wallet response to EUDIPLO from server |
148
+ | `submitDcApiWalletResponse()` | Submit wallet response to EUDIPLO from server |
148
149
 
149
150
  **Browser-side Functions:**
150
- | Function | Description |
151
- | ---------------------- | --------------------------------------------------- |
151
+
152
+ | Function | Description |
153
+ | ------------- | ------------------------------------------------------ |
152
154
  | `callDcApi()` | Call the native DC API with a request from your server |
153
155
 
154
156
  ##### Example: Express.js Backend + Browser Frontend
@@ -165,8 +167,8 @@ import {
165
167
  app.post('/api/start-verification', async (req, res) => {
166
168
  const requestData = await createDcApiRequestForBrowser({
167
169
  baseUrl: process.env.EUDIPLO_URL,
168
- clientId: process.env.EUDIPLO_CLIENT_ID, // ✅ Safe on server
169
- clientSecret: process.env.EUDIPLO_SECRET, // ✅ Safe on server
170
+ clientId: process.env.EUDIPLO_CLIENT_ID, // ✅ Safe on server
171
+ clientSecret: process.env.EUDIPLO_SECRET, // ✅ Safe on server
170
172
  configId: 'age-over-18',
171
173
  });
172
174
 
@@ -181,7 +183,7 @@ app.post('/api/complete-verification', async (req, res) => {
181
183
  const result = await submitDcApiWalletResponse({
182
184
  responseUri,
183
185
  walletResponse,
184
- sendResponse: true, // Get verified claims back
186
+ sendResponse: true, // Get verified claims back
185
187
  });
186
188
 
187
189
  // result.credentials contains the verified data
@@ -224,13 +226,13 @@ async function verifyAge() {
224
226
 
225
227
  **What stays where:**
226
228
 
227
- | Data | Location | Safe to expose? |
228
- |------|----------|-----------------|
229
- | `clientId` / `clientSecret` | Server only | ❌ Never expose |
230
- | `requestObject` (signed JWT) | Server → Browser | ✅ Yes |
231
- | `responseUri` | Server → Browser | ✅ Yes |
232
- | Wallet response (encrypted VP) | Browser → Server | ✅ Yes |
233
- | Verified credentials | Server only | Depends on use case |
229
+ | Data | Location | Safe to expose? |
230
+ | ------------------------------ | ---------------- | ------------------- |
231
+ | `clientId` / `clientSecret` | Server only | ❌ Never expose |
232
+ | `requestObject` (signed JWT) | Server → Browser | ✅ Yes |
233
+ | `responseUri` | Server → Browser | ✅ Yes |
234
+ | Wallet response (encrypted VP) | Browser → Server | ✅ Yes |
235
+ | Verified credentials | Server only | Depends on use case |
234
236
 
235
237
  ### Class-based API (More Control)
236
238
 
@@ -325,6 +327,43 @@ const session = await client.waitForSession(sessionId, {
325
327
  });
326
328
  ```
327
329
 
330
+ ### `subscribeToSession(sessionId, options)`
331
+
332
+ Subscribe to real-time session status updates via Server-Sent Events (SSE).
333
+ This is more efficient than polling and provides instant updates.
334
+
335
+ ```typescript
336
+ const subscription = await client.subscribeToSession(sessionId, {
337
+ onStatusChange: (event) => {
338
+ console.log(`Status: ${event.status}`);
339
+ if (['completed', 'expired', 'failed'].includes(event.status)) {
340
+ subscription.close();
341
+ }
342
+ },
343
+ onError: (error) => console.error('SSE error:', error),
344
+ onOpen: () => console.log('Connected'),
345
+ });
346
+
347
+ // Later, to close the connection:
348
+ subscription.close();
349
+ ```
350
+
351
+ ### `waitForSessionWithSse(sessionId, options)`
352
+
353
+ Wait for session completion using SSE instead of polling. Returns a Promise
354
+ that resolves when the session completes.
355
+
356
+ ```typescript
357
+ try {
358
+ const finalStatus = await client.waitForSessionWithSse(sessionId, {
359
+ onStatusChange: (event) => console.log('Status:', event.status),
360
+ });
361
+ console.log('Session completed:', finalStatus);
362
+ } catch (error) {
363
+ console.error('Session failed:', error);
364
+ }
365
+ ```
366
+
328
367
  ## Examples
329
368
 
330
369
  ### Age Verification in a Web Shop
@@ -1,4 +1,4 @@
1
- import { b as Config, C as Client } from '../../types.gen-DDunhhsd.mjs';
1
+ import { b as Config, C as Client } from '../../types.gen-D8LjzWc0.mjs';
2
2
 
3
3
  declare const createClient: (config?: Config) => Client;
4
4
 
@@ -1,4 +1,4 @@
1
- import { b as Config, C as Client } from '../../types.gen-DDunhhsd.js';
1
+ import { b as Config, C as Client } from '../../types.gen-D8LjzWc0.js';
2
2
 
3
3
  declare const createClient: (config?: Config) => Client;
4
4
 
@@ -1,4 +1,4 @@
1
- export { A as Auth, C as Client, a as ClientOptions, b as Config, c as CreateClientConfig, O as Options, Q as QuerySerializerOptions, R as RequestOptions, d as RequestResult, e as ResolvedRequestOptions, f as ResponseStyle, T as TDataShape, g as createConfig, h as formDataBodySerializer, j as jsonBodySerializer, m as mergeHeaders, u as urlSearchParamsBodySerializer } from '../../types.gen-DDunhhsd.mjs';
1
+ export { A as Auth, C as Client, a as ClientOptions, b as Config, c as CreateClientConfig, O as Options, Q as QuerySerializerOptions, R as RequestOptions, d as RequestResult, e as ResolvedRequestOptions, f as ResponseStyle, T as TDataShape, g as createConfig, h as formDataBodySerializer, j as jsonBodySerializer, m as mergeHeaders, u as urlSearchParamsBodySerializer } from '../../types.gen-D8LjzWc0.mjs';
2
2
  export { createClient } from './client.gen.mjs';
3
3
 
4
4
  type Slot = "body" | "headers" | "path" | "query";
@@ -1,4 +1,4 @@
1
- export { A as Auth, C as Client, a as ClientOptions, b as Config, c as CreateClientConfig, O as Options, Q as QuerySerializerOptions, R as RequestOptions, d as RequestResult, e as ResolvedRequestOptions, f as ResponseStyle, T as TDataShape, g as createConfig, h as formDataBodySerializer, j as jsonBodySerializer, m as mergeHeaders, u as urlSearchParamsBodySerializer } from '../../types.gen-DDunhhsd.js';
1
+ export { A as Auth, C as Client, a as ClientOptions, b as Config, c as CreateClientConfig, O as Options, Q as QuerySerializerOptions, R as RequestOptions, d as RequestResult, e as ResolvedRequestOptions, f as ResponseStyle, T as TDataShape, g as createConfig, h as formDataBodySerializer, j as jsonBodySerializer, m as mergeHeaders, u as urlSearchParamsBodySerializer } from '../../types.gen-D8LjzWc0.js';
2
2
  export { createClient } from './client.gen.js';
3
3
 
4
4
  type Slot = "body" | "headers" | "path" | "query";
@@ -88,7 +88,7 @@ var buildKeyMap = (fields, map) => {
88
88
  };
89
89
  var stripEmptySlots = (params) => {
90
90
  for (const [slot, value] of Object.entries(params)) {
91
- if (value && typeof value === "object" && !Object.keys(value).length) {
91
+ if (value && typeof value === "object" && !Array.isArray(value) && !Object.keys(value).length) {
92
92
  delete params[slot];
93
93
  }
94
94
  }
@@ -86,7 +86,7 @@ var buildKeyMap = (fields, map) => {
86
86
  };
87
87
  var stripEmptySlots = (params) => {
88
88
  for (const [slot, value] of Object.entries(params)) {
89
- if (value && typeof value === "object" && !Object.keys(value).length) {
89
+ if (value && typeof value === "object" && !Array.isArray(value) && !Object.keys(value).length) {
90
90
  delete params[slot];
91
91
  }
92
92
  }
@@ -1 +1 @@
1
- export { C as Client, a as ClientOptions, b as Config, c as CreateClientConfig, O as Options, R as RequestOptions, d as RequestResult, e as ResolvedRequestOptions, f as ResponseStyle, T as TDataShape } from '../../types.gen-DDunhhsd.mjs';
1
+ export { C as Client, a as ClientOptions, b as Config, c as CreateClientConfig, O as Options, R as RequestOptions, d as RequestResult, e as ResolvedRequestOptions, f as ResponseStyle, T as TDataShape } from '../../types.gen-D8LjzWc0.mjs';
@@ -1 +1 @@
1
- export { C as Client, a as ClientOptions, b as Config, c as CreateClientConfig, O as Options, R as RequestOptions, d as RequestResult, e as ResolvedRequestOptions, f as ResponseStyle, T as TDataShape } from '../../types.gen-DDunhhsd.js';
1
+ export { C as Client, a as ClientOptions, b as Config, c as CreateClientConfig, O as Options, R as RequestOptions, d as RequestResult, e as ResolvedRequestOptions, f as ResponseStyle, T as TDataShape } from '../../types.gen-D8LjzWc0.js';
@@ -1,5 +1,5 @@
1
- import { C as Client, a as ClientOptions, b as Config } from '../types.gen-DDunhhsd.mjs';
2
- import { aw as ClientOptions$1 } from '../types.gen-D7mQfhiG.mjs';
1
+ import { C as Client, a as ClientOptions, b as Config } from '../types.gen-D8LjzWc0.mjs';
2
+ import { aS as ClientOptions$1 } from '../types.gen-4IUe6Aiy.mjs';
3
3
 
4
4
  /**
5
5
  * The `createClientConfig()` function will be called on client initialization
@@ -9,7 +9,7 @@ import { aw as ClientOptions$1 } from '../types.gen-D7mQfhiG.mjs';
9
9
  * `setConfig()`. This is useful for example if you're using Next.js
10
10
  * to ensure your client always has the correct values.
11
11
  */
12
- type CreateClientConfig<T extends ClientOptions = ClientOptions$1> = (override?: Config<ClientOptions & T>) => Config<Required<ClientOptions> & T>;
12
+ type CreateClientConfig<T extends ClientOptions = ClientOptions$1> = (override?: Config<ClientOptions & T>) => Config<Required<ClientOptions> & T> | Promise<Config<Required<ClientOptions> & T>>;
13
13
  declare const client: Client;
14
14
 
15
15
  export { type CreateClientConfig, client };
@@ -1,5 +1,5 @@
1
- import { C as Client, a as ClientOptions, b as Config } from '../types.gen-DDunhhsd.js';
2
- import { aw as ClientOptions$1 } from '../types.gen-D7mQfhiG.js';
1
+ import { C as Client, a as ClientOptions, b as Config } from '../types.gen-D8LjzWc0.js';
2
+ import { aS as ClientOptions$1 } from '../types.gen-4IUe6Aiy.js';
3
3
 
4
4
  /**
5
5
  * The `createClientConfig()` function will be called on client initialization
@@ -9,7 +9,7 @@ import { aw as ClientOptions$1 } from '../types.gen-D7mQfhiG.js';
9
9
  * `setConfig()`. This is useful for example if you're using Next.js
10
10
  * to ensure your client always has the correct values.
11
11
  */
12
- type CreateClientConfig<T extends ClientOptions = ClientOptions$1> = (override?: Config<ClientOptions & T>) => Config<Required<ClientOptions> & T>;
12
+ type CreateClientConfig<T extends ClientOptions = ClientOptions$1> = (override?: Config<ClientOptions & T>) => Config<Required<ClientOptions> & T> | Promise<Config<Required<ClientOptions> & T>>;
13
13
  declare const client: Client;
14
14
 
15
15
  export { type CreateClientConfig, client };
@@ -1,6 +1,6 @@
1
- import { T as TDataShape, O as Options$1, C as Client, d as RequestResult } from '../types.gen-DDunhhsd.mjs';
2
- import { b as AppControllerMainData, c as AppControllerMainResponses, e as AuthControllerGetGlobalJwksData, f as AuthControllerGetGlobalJwksResponses, g as AuthControllerGetOAuth2TokenData, j as AuthControllerGetOAuth2TokenResponses, h as AuthControllerGetOAuth2TokenErrors, k as AuthControllerGetOidcDiscoveryData, l as AuthControllerGetOidcDiscoveryResponses, r as AuthorizeControllerAuthorizationChallengeEndpointData, s as AuthorizeControllerAuthorizationChallengeEndpointResponses, t as AuthorizeControllerAuthorizeData, u as AuthorizeControllerAuthorizeResponses, v as AuthorizeControllerParData, x as AuthorizeControllerParResponses, y as AuthorizeControllerTokenData, B as AuthorizeControllerTokenResponses, D as CacheControllerClearAllCachesData, F as CacheControllerClearAllCachesResponses, G as CacheControllerClearStatusListCacheData, I as CacheControllerClearStatusListCacheResponses, J as CacheControllerClearTrustListCacheData, L as CacheControllerClearTrustListCacheResponses, M as CacheControllerGetStatsData, N as CacheControllerGetStatsResponses, O as CertControllerAddCertificateData, Q as CertControllerAddCertificateResponses, R as CertControllerDeleteCertificateData, T as CertControllerDeleteCertificateResponses, U as CertControllerExportConfigData, W as CertControllerExportConfigResponses, X as CertControllerGetCertificateData, Z as CertControllerGetCertificateResponses, _ as CertControllerGetCertificatesData, a0 as CertControllerGetCertificatesResponses, a1 as CertControllerUpdateCertificateData, a2 as CertControllerUpdateCertificateResponses, aa as ClientControllerCreateClientData, ac as ClientControllerCreateClientResponses, ad as ClientControllerDeleteClientData, ae as ClientControllerDeleteClientResponses, af as ClientControllerGetClientData, ah as ClientControllerGetClientResponses, ai as ClientControllerGetClientSecretData, ak as ClientControllerGetClientSecretResponses, al as ClientControllerGetClientsData, an as ClientControllerGetClientsResponses, ao as ClientControllerRotateClientSecretData, aq as ClientControllerRotateClientSecretResponses, ar as ClientControllerUpdateClientData, at as ClientControllerUpdateClientResponses, aF as CredentialConfigControllerDeleteIssuanceConfigurationData, aG as CredentialConfigControllerDeleteIssuanceConfigurationResponses, aH as CredentialConfigControllerGetConfigByIdData, aJ as CredentialConfigControllerGetConfigByIdResponses, aK as CredentialConfigControllerGetConfigsData, aM as CredentialConfigControllerGetConfigsResponses, aN as CredentialConfigControllerStoreCredentialConfigurationData, aP as CredentialConfigControllerStoreCredentialConfigurationResponses, aQ as CredentialConfigControllerUpdateCredentialConfigurationData, aS as CredentialConfigControllerUpdateCredentialConfigurationResponses, aV as CredentialOfferControllerGetOfferData, aX as CredentialOfferControllerGetOfferResponses, a$ as DeferredControllerCompleteDeferredData, b2 as DeferredControllerCompleteDeferredResponses, b0 as DeferredControllerCompleteDeferredErrors, b3 as DeferredControllerFailDeferredData, b6 as DeferredControllerFailDeferredResponses, b4 as DeferredControllerFailDeferredErrors, bh as HealthControllerCheckData, bl as HealthControllerCheckResponses, bj as HealthControllerCheckErrors, bq as InteractiveAuthorizationControllerCompleteWebAuthData, bs as InteractiveAuthorizationControllerCompleteWebAuthResponses, br as InteractiveAuthorizationControllerCompleteWebAuthErrors, bt as InteractiveAuthorizationControllerInteractiveAuthorizationData, bx as InteractiveAuthorizationControllerInteractiveAuthorizationResponses, bv as InteractiveAuthorizationControllerInteractiveAuthorizationErrors, bB as IssuanceConfigControllerGetIssuanceConfigurationsData, bD as IssuanceConfigControllerGetIssuanceConfigurationsResponses, bE as IssuanceConfigControllerStoreIssuanceConfigurationData, bG as IssuanceConfigControllerStoreIssuanceConfigurationResponses, bL as KeyControllerAddKeyData, bM as KeyControllerAddKeyResponses, bN as KeyControllerDeleteKeyData, bO as KeyControllerDeleteKeyResponses, bP as KeyControllerGetKeyData, bR as KeyControllerGetKeyResponses, bS as KeyControllerGetKeysData, bU as KeyControllerGetKeysResponses, bV as KeyControllerUpdateKeyData, bW as KeyControllerUpdateKeyResponses, c1 as Oid4VciControllerCredentialData, c3 as Oid4VciControllerCredentialResponses, c4 as Oid4VciControllerDeferredCredentialData, c5 as Oid4VciControllerDeferredCredentialResponses, c6 as Oid4VciControllerNonceData, c7 as Oid4VciControllerNonceResponses, c8 as Oid4VciControllerNotificationsData, c9 as Oid4VciControllerNotificationsResponses, ca as Oid4VciMetadataControllerVctData, cc as Oid4VciMetadataControllerVctResponses, cd as Oid4VpControllerGetPostRequestWithSessionData, cf as Oid4VpControllerGetPostRequestWithSessionResponses, cg as Oid4VpControllerGetRequestNoRedirectWithSessionData, ci as Oid4VpControllerGetRequestNoRedirectWithSessionResponses, cj as Oid4VpControllerGetRequestWithSessionData, cl as Oid4VpControllerGetRequestWithSessionResponses, cm as Oid4VpControllerGetResponseData, co as Oid4VpControllerGetResponseResponses, cw as PresentationManagementControllerConfigurationData, cy as PresentationManagementControllerConfigurationResponses, cz as PresentationManagementControllerDeleteConfigurationData, cA as PresentationManagementControllerDeleteConfigurationResponses, cB as PresentationManagementControllerGetConfigurationData, cD as PresentationManagementControllerGetConfigurationResponses, cE as PresentationManagementControllerStorePresentationConfigData, cG as PresentationManagementControllerStorePresentationConfigResponses, cH as PresentationManagementControllerUpdateConfigurationData, cJ as PresentationManagementControllerUpdateConfigurationResponses, cL as PrometheusControllerIndexData, cM as PrometheusControllerIndexResponses, cO as RegistrarControllerCreateAccessCertificateData, cR as RegistrarControllerCreateAccessCertificateResponses, cP as RegistrarControllerCreateAccessCertificateErrors, cS as RegistrarControllerCreateConfigData, cV as RegistrarControllerCreateConfigResponses, cT as RegistrarControllerCreateConfigErrors, cW as RegistrarControllerDeleteConfigData, cY as RegistrarControllerDeleteConfigResponses, cZ as RegistrarControllerGetConfigData, d0 as RegistrarControllerGetConfigResponses, c_ as RegistrarControllerGetConfigErrors, d1 as RegistrarControllerUpdateConfigData, d4 as RegistrarControllerUpdateConfigResponses, d2 as RegistrarControllerUpdateConfigErrors, d9 as SessionConfigControllerGetConfigData, db as SessionConfigControllerGetConfigResponses, dc as SessionConfigControllerResetConfigData, dd as SessionConfigControllerResetConfigResponses, de as SessionConfigControllerUpdateConfigData, dg as SessionConfigControllerUpdateConfigResponses, dh as SessionControllerDeleteSessionData, di as SessionControllerDeleteSessionResponses, dj as SessionControllerGetAllSessionsData, dl as SessionControllerGetAllSessionsResponses, dm as SessionControllerGetSessionData, dp as SessionControllerGetSessionResponses, dq as SessionControllerRevokeAllData, dr as SessionControllerRevokeAllResponses, dv as StatusListConfigControllerGetConfigData, dx as StatusListConfigControllerGetConfigResponses, dy as StatusListConfigControllerResetConfigData, dA as StatusListConfigControllerResetConfigResponses, dB as StatusListConfigControllerUpdateConfigData, dD as StatusListConfigControllerUpdateConfigResponses, dE as StatusListControllerGetListData, dG as StatusListControllerGetListResponses, dH as StatusListControllerGetStatusListAggregationData, dJ as StatusListControllerGetStatusListAggregationResponses, dL as StatusListManagementControllerCreateListData, dN as StatusListManagementControllerCreateListResponses, dO as StatusListManagementControllerDeleteListData, dQ as StatusListManagementControllerDeleteListResponses, dR as StatusListManagementControllerGetListData, dT as StatusListManagementControllerGetListResponses, dU as StatusListManagementControllerGetListsData, dW as StatusListManagementControllerGetListsResponses, dX as StatusListManagementControllerUpdateListData, dZ as StatusListManagementControllerUpdateListResponses, e0 as StorageControllerDownloadData, e1 as StorageControllerDownloadResponses, e2 as StorageControllerUploadData, e4 as StorageControllerUploadResponses, e5 as TenantControllerDeleteTenantData, e6 as TenantControllerDeleteTenantResponses, e7 as TenantControllerGetTenantData, e9 as TenantControllerGetTenantResponses, ea as TenantControllerGetTenantsData, ec as TenantControllerGetTenantsResponses, ed as TenantControllerInitTenantData, ef as TenantControllerInitTenantResponses, eg as TenantControllerUpdateTenantData, ei as TenantControllerUpdateTenantResponses, en as TrustListControllerCreateTrustListData, ep as TrustListControllerCreateTrustListResponses, eq as TrustListControllerDeleteTrustListData, er as TrustListControllerDeleteTrustListResponses, es as TrustListControllerExportTrustListData, eu as TrustListControllerExportTrustListResponses, ev as TrustListControllerGetAllTrustListsData, ex as TrustListControllerGetAllTrustListsResponses, ey as TrustListControllerGetTrustListData, eA as TrustListControllerGetTrustListResponses, eB as TrustListControllerGetTrustListVersionData, eD as TrustListControllerGetTrustListVersionResponses, eE as TrustListControllerGetTrustListVersionsData, eG as TrustListControllerGetTrustListVersionsResponses, eH as TrustListControllerUpdateTrustListData, eJ as TrustListControllerUpdateTrustListResponses, eL as TrustListPublicControllerGetTrustListJwtData, eN as TrustListPublicControllerGetTrustListJwtResponses, eY as VerifierOfferControllerGetOfferData, e_ as VerifierOfferControllerGetOfferResponses, f2 as WellKnownControllerAuthzMetadata0Data, f3 as WellKnownControllerAuthzMetadata0Responses, f4 as WellKnownControllerAuthzMetadata1Data, f5 as WellKnownControllerAuthzMetadata1Responses, f6 as WellKnownControllerGetJwks0Data, f8 as WellKnownControllerGetJwks0Responses, f9 as WellKnownControllerGetJwks1Data, fb as WellKnownControllerGetJwks1Responses, fc as WellKnownControllerIssuerMetadata0Data, fe as WellKnownControllerIssuerMetadata0Responses, ff as WellKnownControllerIssuerMetadata1Data, fh as WellKnownControllerIssuerMetadata1Responses } from '../types.gen-D7mQfhiG.mjs';
3
- export { A as AllowListPolicy, a as ApiKeyConfig, d as AttestationBasedPolicy, i as AuthControllerGetOAuth2TokenResponse, m as AuthenticationMethodAuth, n as AuthenticationMethodNone, o as AuthenticationMethodPresentation, p as AuthenticationUrlConfig, q as AuthorizationResponse, w as AuthorizeControllerParResponse, z as AuthorizeControllerTokenResponse, C as AuthorizeQueries, E as CacheControllerClearAllCachesResponse, H as CacheControllerClearStatusListCacheResponse, K as CacheControllerClearTrustListCacheResponse, P as CertControllerAddCertificateResponse, V as CertControllerExportConfigResponse, Y as CertControllerGetCertificateResponse, $ as CertControllerGetCertificatesResponse, a3 as CertEntity, a4 as CertImportDto, a5 as CertResponseDto, a6 as CertUpdateDto, a7 as CertUsageEntity, a8 as Claim, a9 as ClaimsQuery, ab as ClientControllerCreateClientResponse, ag as ClientControllerGetClientResponse, aj as ClientControllerGetClientSecretResponse, am as ClientControllerGetClientsResponse, ap as ClientControllerRotateClientSecretResponse, as as ClientControllerUpdateClientResponse, au as ClientCredentialsDto, av as ClientEntity, aw as ClientOptions, ax as ClientSecretResponseDto, ay as CompleteDeferredDto, az as CreateAccessCertificateDto, aA as CreateClientDto, aB as CreateRegistrarConfigDto, aC as CreateStatusListDto, aD as CreateTenantDto, aE as CredentialConfig, aI as CredentialConfigControllerGetConfigByIdResponse, aL as CredentialConfigControllerGetConfigsResponse, aO as CredentialConfigControllerStoreCredentialConfigurationResponse, aR as CredentialConfigControllerUpdateCredentialConfigurationResponse, aT as CredentialConfigCreate, aU as CredentialConfigUpdate, aW as CredentialOfferControllerGetOfferResponse, aY as CredentialQuery, aZ as CredentialSetQuery, a_ as Dcql, b1 as DeferredControllerCompleteDeferredResponse, b5 as DeferredControllerFailDeferredResponse, b7 as DeferredCredentialRequestDto, b8 as DeferredOperationResponse, b9 as Display, ba as DisplayImage, bb as DisplayInfo, bc as DisplayLogo, bd as EcPublic, be as EmbeddedDisclosurePolicy, bf as FailDeferredDto, bg as FileUploadDto, bi as HealthControllerCheckError, bk as HealthControllerCheckResponse, bm as IaeActionOpenid4VpPresentation, bn as IaeActionRedirectToWeb, bo as ImportTenantDto, bp as InteractiveAuthorizationCodeResponseDto, bu as InteractiveAuthorizationControllerInteractiveAuthorizationError, bw as InteractiveAuthorizationControllerInteractiveAuthorizationResponse, by as InteractiveAuthorizationErrorResponseDto, bz as InteractiveAuthorizationRequestDto, bA as IssuanceConfig, bC as IssuanceConfigControllerGetIssuanceConfigurationsResponse, bF as IssuanceConfigControllerStoreIssuanceConfigurationResponse, bH as IssuanceDto, bI as IssuerMetadataCredentialConfig, bJ as JwksResponseDto, bK as Key, bQ as KeyControllerGetKeyResponse, bT as KeyControllerGetKeysResponse, bX as KeyEntity, bY as KeyImportDto, bZ as NoneTrustPolicy, b_ as NotificationRequestDto, b$ as OfferRequestDto, c0 as OfferResponse, c2 as Oid4VciControllerCredentialResponse, cb as Oid4VciMetadataControllerVctResponse, ce as Oid4VpControllerGetPostRequestWithSessionResponse, ch as Oid4VpControllerGetRequestNoRedirectWithSessionResponse, ck as Oid4VpControllerGetRequestWithSessionResponse, cn as Oid4VpControllerGetResponseResponse, cp as ParResponseDto, cq as PolicyCredential, cr as PresentationAttachment, cs as PresentationConfig, ct as PresentationConfigCreateDto, cu as PresentationConfigUpdateDto, cv as PresentationDuringIssuanceConfig, cx as PresentationManagementControllerConfigurationResponse, cC as PresentationManagementControllerGetConfigurationResponse, cF as PresentationManagementControllerStorePresentationConfigResponse, cI as PresentationManagementControllerUpdateConfigurationResponse, cK as PresentationRequest, cN as RegistrarConfigEntity, cQ as RegistrarControllerCreateAccessCertificateResponse, cU as RegistrarControllerCreateConfigResponse, cX as RegistrarControllerDeleteConfigResponse, c$ as RegistrarControllerGetConfigResponse, d3 as RegistrarControllerUpdateConfigResponse, d5 as RegistrationCertificateRequest, d6 as RoleDto, d7 as RootOfTrustPolicy, d8 as SchemaResponse, S as Session, da as SessionConfigControllerGetConfigResponse, df as SessionConfigControllerUpdateConfigResponse, dk as SessionControllerGetAllSessionsResponse, dn as SessionControllerGetSessionResponse, ds as SessionStorageConfig, dt as StatusListAggregationDto, du as StatusListConfig, dw as StatusListConfigControllerGetConfigResponse, dz as StatusListConfigControllerResetConfigResponse, dC as StatusListConfigControllerUpdateConfigResponse, dF as StatusListControllerGetListResponse, dI as StatusListControllerGetStatusListAggregationResponse, dK as StatusListImportDto, dM as StatusListManagementControllerCreateListResponse, dP as StatusListManagementControllerDeleteListResponse, dS as StatusListManagementControllerGetListResponse, dV as StatusListManagementControllerGetListsResponse, dY as StatusListManagementControllerUpdateListResponse, d_ as StatusListResponseDto, d$ as StatusUpdateDto, e3 as StorageControllerUploadResponse, e8 as TenantControllerGetTenantResponse, eb as TenantControllerGetTenantsResponse, ee as TenantControllerInitTenantResponse, eh as TenantControllerUpdateTenantResponse, ej as TenantEntity, ek as TokenResponse, el as TransactionData, em as TrustList, eo as TrustListControllerCreateTrustListResponse, et as TrustListControllerExportTrustListResponse, ew as TrustListControllerGetAllTrustListsResponse, ez as TrustListControllerGetTrustListResponse, eC as TrustListControllerGetTrustListVersionResponse, eF as TrustListControllerGetTrustListVersionsResponse, eI as TrustListControllerUpdateTrustListResponse, eK as TrustListCreateDto, eM as TrustListPublicControllerGetTrustListJwtResponse, eO as TrustListVersion, eP as TrustedAuthorityQuery, eQ as UpdateClientDto, eR as UpdateKeyDto, eS as UpdateRegistrarConfigDto, eT as UpdateSessionConfigDto, eU as UpdateStatusListConfigDto, eV as UpdateStatusListDto, eW as UpdateTenantDto, eX as Vct, eZ as VerifierOfferControllerGetOfferResponse, e$ as WebHookAuthConfigHeader, f0 as WebHookAuthConfigNone, f1 as WebhookConfig, f7 as WellKnownControllerGetJwks0Response, fa as WellKnownControllerGetJwks1Response, fd as WellKnownControllerIssuerMetadata0Response, fg as WellKnownControllerIssuerMetadata1Response } from '../types.gen-D7mQfhiG.mjs';
1
+ import { T as TDataShape, O as Options$1, C as Client, d as RequestResult } from '../types.gen-D8LjzWc0.mjs';
2
+ import { c as AppControllerMainData, d as AppControllerMainResponses, f as AttributeProviderControllerCreateData, g as AttributeProviderControllerCreateResponses, h as AttributeProviderControllerDeleteData, j as AttributeProviderControllerDeleteResponses, i as AttributeProviderControllerDeleteErrors, k as AttributeProviderControllerGetAllData, l as AttributeProviderControllerGetAllResponses, m as AttributeProviderControllerGetByIdData, o as AttributeProviderControllerGetByIdResponses, n as AttributeProviderControllerGetByIdErrors, p as AttributeProviderControllerUpdateData, r as AttributeProviderControllerUpdateResponses, q as AttributeProviderControllerUpdateErrors, t as AuthControllerGetGlobalJwksData, u as AuthControllerGetGlobalJwksResponses, v as AuthControllerGetOAuth2TokenData, y as AuthControllerGetOAuth2TokenResponses, w as AuthControllerGetOAuth2TokenErrors, z as AuthControllerGetOidcDiscoveryData, B as AuthControllerGetOidcDiscoveryResponses, I as AuthorizeControllerAuthorizeData, J as AuthorizeControllerAuthorizeResponses, K as AuthorizeControllerParData, M as AuthorizeControllerParResponses, N as AuthorizeControllerTokenData, P as AuthorizeControllerTokenResponses, R as CacheControllerClearAllCachesData, U as CacheControllerClearAllCachesResponses, V as CacheControllerClearStatusListCacheData, X as CacheControllerClearStatusListCacheResponses, Y as CacheControllerClearTrustListCacheData, _ as CacheControllerClearTrustListCacheResponses, $ as CacheControllerGetStatsData, a0 as CacheControllerGetStatsResponses, a3 as ChainedAsControllerAuthorizeData, a6 as ChainedAsControllerAuthorizeResponses, a5 as ChainedAsControllerAuthorizeErrors, a7 as ChainedAsControllerCallbackData, aa as ChainedAsControllerCallbackResponses, a9 as ChainedAsControllerCallbackErrors, ab as ChainedAsControllerGetMetadataData, ac as ChainedAsControllerGetMetadataResponses, ad as ChainedAsControllerJwksData, ae as ChainedAsControllerJwksResponses, af as ChainedAsControllerParData, aj as ChainedAsControllerParResponses, ah as ChainedAsControllerParErrors, ak as ChainedAsControllerTokenData, ao as ChainedAsControllerTokenResponses, am as ChainedAsControllerTokenErrors, aw as ClientControllerCreateClientData, ay as ClientControllerCreateClientResponses, az as ClientControllerDeleteClientData, aA as ClientControllerDeleteClientResponses, aB as ClientControllerGetClientData, aD as ClientControllerGetClientResponses, aE as ClientControllerGetClientSecretData, aG as ClientControllerGetClientSecretResponses, aH as ClientControllerGetClientsData, aJ as ClientControllerGetClientsResponses, aK as ClientControllerRotateClientSecretData, aM as ClientControllerRotateClientSecretResponses, aN as ClientControllerUpdateClientData, aP as ClientControllerUpdateClientResponses, b1 as CredentialConfigControllerDeleteIssuanceConfigurationData, b2 as CredentialConfigControllerDeleteIssuanceConfigurationResponses, b3 as CredentialConfigControllerGetConfigByIdData, b5 as CredentialConfigControllerGetConfigByIdResponses, b6 as CredentialConfigControllerGetConfigsData, b8 as CredentialConfigControllerGetConfigsResponses, b9 as CredentialConfigControllerStoreCredentialConfigurationData, bb as CredentialConfigControllerStoreCredentialConfigurationResponses, bc as CredentialConfigControllerUpdateCredentialConfigurationData, be as CredentialConfigControllerUpdateCredentialConfigurationResponses, bh as CredentialOfferControllerGetOfferData, bj as CredentialOfferControllerGetOfferResponses, bn as DeferredControllerCompleteDeferredData, bq as DeferredControllerCompleteDeferredResponses, bo as DeferredControllerCompleteDeferredErrors, br as DeferredControllerFailDeferredData, bu as DeferredControllerFailDeferredResponses, bs as DeferredControllerFailDeferredErrors, bI as HealthControllerCheckData, bK as HealthControllerCheckResponses, bJ as HealthControllerCheckErrors, bP as InteractiveAuthorizationControllerCompleteWebAuthData, bR as InteractiveAuthorizationControllerCompleteWebAuthResponses, bQ as InteractiveAuthorizationControllerCompleteWebAuthErrors, bS as InteractiveAuthorizationControllerInteractiveAuthorizationData, bW as InteractiveAuthorizationControllerInteractiveAuthorizationResponses, bU as InteractiveAuthorizationControllerInteractiveAuthorizationErrors, b_ as IssuanceConfigControllerGetIssuanceConfigurationsData, c0 as IssuanceConfigControllerGetIssuanceConfigurationsResponses, c1 as IssuanceConfigControllerStoreIssuanceConfigurationData, c3 as IssuanceConfigControllerStoreIssuanceConfigurationResponses, c7 as KeyChainControllerCreateData, c8 as KeyChainControllerCreateResponses, c9 as KeyChainControllerDeleteData, cb as KeyChainControllerDeleteResponses, ca as KeyChainControllerDeleteErrors, cc as KeyChainControllerExportData, cf as KeyChainControllerExportResponses, cd as KeyChainControllerExportErrors, cg as KeyChainControllerGetAllData, ci as KeyChainControllerGetAllResponses, cj as KeyChainControllerGetByIdData, cm as KeyChainControllerGetByIdResponses, ck as KeyChainControllerGetByIdErrors, cn as KeyChainControllerGetProvidersData, cp as KeyChainControllerGetProvidersResponses, cq as KeyChainControllerImportData, cr as KeyChainControllerImportResponses, cs as KeyChainControllerRotateData, cu as KeyChainControllerRotateResponses, ct as KeyChainControllerRotateErrors, cv as KeyChainControllerUpdateData, cx as KeyChainControllerUpdateResponses, cw as KeyChainControllerUpdateErrors, cL as Oid4VciControllerCredentialData, cN as Oid4VciControllerCredentialResponses, cO as Oid4VciControllerDeferredCredentialData, cP as Oid4VciControllerDeferredCredentialResponses, cQ as Oid4VciControllerNonceData, cR as Oid4VciControllerNonceResponses, cS as Oid4VciControllerNotificationsData, cT as Oid4VciControllerNotificationsResponses, cU as Oid4VciMetadataControllerVctData, cW as Oid4VciMetadataControllerVctResponses, cX as Oid4VpControllerGetPostRequestWithSessionData, cZ as Oid4VpControllerGetPostRequestWithSessionResponses, c_ as Oid4VpControllerGetRequestNoRedirectWithSessionData, d0 as Oid4VpControllerGetRequestNoRedirectWithSessionResponses, d1 as Oid4VpControllerGetRequestWithSessionData, d3 as Oid4VpControllerGetRequestWithSessionResponses, d4 as Oid4VpControllerGetResponseData, d6 as Oid4VpControllerGetResponseResponses, de as PresentationManagementControllerConfigurationData, dg as PresentationManagementControllerConfigurationResponses, dh as PresentationManagementControllerDeleteConfigurationData, di as PresentationManagementControllerDeleteConfigurationResponses, dj as PresentationManagementControllerGetConfigurationData, dl as PresentationManagementControllerGetConfigurationResponses, dm as PresentationManagementControllerStorePresentationConfigData, dp as PresentationManagementControllerStorePresentationConfigResponses, dq as PresentationManagementControllerUpdateConfigurationData, ds as PresentationManagementControllerUpdateConfigurationResponses, dw as RegistrarControllerCreateAccessCertificateData, dz as RegistrarControllerCreateAccessCertificateResponses, dx as RegistrarControllerCreateAccessCertificateErrors, dA as RegistrarControllerCreateConfigData, dD as RegistrarControllerCreateConfigResponses, dB as RegistrarControllerCreateConfigErrors, dE as RegistrarControllerDeleteConfigData, dG as RegistrarControllerDeleteConfigResponses, dH as RegistrarControllerGetConfigData, dK as RegistrarControllerGetConfigResponses, dI as RegistrarControllerGetConfigErrors, dL as RegistrarControllerUpdateConfigData, dO as RegistrarControllerUpdateConfigResponses, dM as RegistrarControllerUpdateConfigErrors, dX as SessionConfigControllerGetConfigData, dZ as SessionConfigControllerGetConfigResponses, d_ as SessionConfigControllerResetConfigData, d$ as SessionConfigControllerResetConfigResponses, e0 as SessionConfigControllerUpdateConfigData, e2 as SessionConfigControllerUpdateConfigResponses, e3 as SessionControllerDeleteSessionData, e4 as SessionControllerDeleteSessionResponses, e5 as SessionControllerGetAllSessionsData, e7 as SessionControllerGetAllSessionsResponses, e8 as SessionControllerGetSessionData, ea as SessionControllerGetSessionResponses, eb as SessionControllerRevokeAllData, ec as SessionControllerRevokeAllResponses, ed as SessionEventsControllerSubscribeToSessionEventsData, ee as SessionEventsControllerSubscribeToSessionEventsResponses, ei as StatusListConfigControllerGetConfigData, ek as StatusListConfigControllerGetConfigResponses, el as StatusListConfigControllerResetConfigData, en as StatusListConfigControllerResetConfigResponses, eo as StatusListConfigControllerUpdateConfigData, eq as StatusListConfigControllerUpdateConfigResponses, er as StatusListControllerGetListData, et as StatusListControllerGetListResponses, eu as StatusListControllerGetStatusListAggregationData, ew as StatusListControllerGetStatusListAggregationResponses, ey as StatusListManagementControllerCreateListData, eA as StatusListManagementControllerCreateListResponses, eB as StatusListManagementControllerDeleteListData, eD as StatusListManagementControllerDeleteListResponses, eE as StatusListManagementControllerGetListData, eG as StatusListManagementControllerGetListResponses, eH as StatusListManagementControllerGetListsData, eJ as StatusListManagementControllerGetListsResponses, eK as StatusListManagementControllerUpdateListData, eM as StatusListManagementControllerUpdateListResponses, eP as StorageControllerDownloadData, eQ as StorageControllerDownloadResponses, eR as StorageControllerUploadData, eT as StorageControllerUploadResponses, eU as TenantControllerDeleteTenantData, eV as TenantControllerDeleteTenantResponses, eW as TenantControllerGetTenantData, eY as TenantControllerGetTenantResponses, eZ as TenantControllerGetTenantsData, e$ as TenantControllerGetTenantsResponses, f0 as TenantControllerInitTenantData, f2 as TenantControllerInitTenantResponses, f3 as TenantControllerUpdateTenantData, f5 as TenantControllerUpdateTenantResponses, fa as TrustListControllerCreateTrustListData, fc as TrustListControllerCreateTrustListResponses, fd as TrustListControllerDeleteTrustListData, fe as TrustListControllerDeleteTrustListResponses, ff as TrustListControllerExportTrustListData, fh as TrustListControllerExportTrustListResponses, fi as TrustListControllerGetAllTrustListsData, fk as TrustListControllerGetAllTrustListsResponses, fl as TrustListControllerGetTrustListData, fn as TrustListControllerGetTrustListResponses, fo as TrustListControllerGetTrustListVersionData, fq as TrustListControllerGetTrustListVersionResponses, fr as TrustListControllerGetTrustListVersionsData, ft as TrustListControllerGetTrustListVersionsResponses, fu as TrustListControllerUpdateTrustListData, fw as TrustListControllerUpdateTrustListResponses, fy as TrustListPublicControllerGetTrustListJwtData, fA as TrustListPublicControllerGetTrustListJwtResponses, fN as VerifierOfferControllerGetOfferData, fP as VerifierOfferControllerGetOfferResponses, fT as WebhookEndpointControllerCreateData, fU as WebhookEndpointControllerCreateResponses, fV as WebhookEndpointControllerDeleteData, fX as WebhookEndpointControllerDeleteResponses, fW as WebhookEndpointControllerDeleteErrors, fY as WebhookEndpointControllerGetAllData, fZ as WebhookEndpointControllerGetAllResponses, f_ as WebhookEndpointControllerGetByIdData, g0 as WebhookEndpointControllerGetByIdResponses, f$ as WebhookEndpointControllerGetByIdErrors, g1 as WebhookEndpointControllerUpdateData, g3 as WebhookEndpointControllerUpdateResponses, g2 as WebhookEndpointControllerUpdateErrors, g5 as WellKnownControllerAuthzMetadata0Data, g6 as WellKnownControllerAuthzMetadata0Responses, g7 as WellKnownControllerAuthzMetadata1Data, g8 as WellKnownControllerAuthzMetadata1Responses, g9 as WellKnownControllerChainedAsMetadataData, gb as WellKnownControllerChainedAsMetadataResponses, gc as WellKnownControllerGetJwks0Data, ge as WellKnownControllerGetJwks0Responses, gf as WellKnownControllerGetJwks1Data, gh as WellKnownControllerGetJwks1Responses, gi as WellKnownControllerIssuerMetadata0Data, gk as WellKnownControllerIssuerMetadata0Responses, gl as WellKnownControllerIssuerMetadata1Data, gn as WellKnownControllerIssuerMetadata1Responses } from '../types.gen-4IUe6Aiy.mjs';
3
+ export { A as AllowListPolicy, b as ApiKeyConfig, e as AttestationBasedPolicy, s as AttributeProviderEntity, x as AuthControllerGetOAuth2TokenResponse, C as AuthenticationMethodAuth, D as AuthenticationMethodNone, E as AuthenticationMethodPresentation, F as AuthenticationUrlConfig, G as AuthorizationResponse, L as AuthorizeControllerParResponse, O as AuthorizeControllerTokenResponse, Q as AuthorizeQueries, T as CacheControllerClearAllCachesResponse, W as CacheControllerClearStatusListCacheResponse, Z as CacheControllerClearTrustListCacheResponse, a1 as CertificateInfoDto, a2 as ChainedAsConfig, a4 as ChainedAsControllerAuthorizeError, a8 as ChainedAsControllerCallbackError, ag as ChainedAsControllerParError, ai as ChainedAsControllerParResponse, al as ChainedAsControllerTokenError, an as ChainedAsControllerTokenResponse, ap as ChainedAsErrorResponseDto, aq as ChainedAsParRequestDto, ar as ChainedAsParResponseDto, as as ChainedAsTokenConfig, at as ChainedAsTokenRequestDto, au as ChainedAsTokenResponseDto, av as ClaimsQuery, ax as ClientControllerCreateClientResponse, aC as ClientControllerGetClientResponse, aF as ClientControllerGetClientSecretResponse, aI as ClientControllerGetClientsResponse, aL as ClientControllerRotateClientSecretResponse, aO as ClientControllerUpdateClientResponse, aQ as ClientCredentialsDto, aR as ClientEntity, aS as ClientOptions, aT as ClientSecretResponseDto, aU as CompleteDeferredDto, aV as CreateAccessCertificateDto, aW as CreateAttributeProviderDto, aX as CreateClientDto, aY as CreateRegistrarConfigDto, aZ as CreateStatusListDto, a_ as CreateTenantDto, a$ as CreateWebhookEndpointDto, b0 as CredentialConfig, b4 as CredentialConfigControllerGetConfigByIdResponse, b7 as CredentialConfigControllerGetConfigsResponse, ba as CredentialConfigControllerStoreCredentialConfigurationResponse, bd as CredentialConfigControllerUpdateCredentialConfigurationResponse, bf as CredentialConfigCreate, bg as CredentialConfigUpdate, bi as CredentialOfferControllerGetOfferResponse, bk as CredentialQuery, bl as CredentialSetQuery, bm as Dcql, bp as DeferredControllerCompleteDeferredResponse, bt as DeferredControllerFailDeferredResponse, bv as DeferredCredentialRequestDto, bw as DeferredOperationResponse, bx as Display, by as DisplayImage, bz as DisplayInfo, bA as DisplayLogo, bB as EcJwk, bC as EcPublic, bD as EmbeddedDisclosurePolicy, bE as ExportEcJwk, bF as ExportRotationPolicyDto, bG as FailDeferredDto, bH as FileUploadDto, a as HealthControllerCheckError, H as HealthControllerCheckResponse, bL as IaeActionOpenid4VpPresentation, bM as IaeActionRedirectToWeb, bN as ImportTenantDto, bO as InteractiveAuthorizationCodeResponseDto, bT as InteractiveAuthorizationControllerInteractiveAuthorizationError, bV as InteractiveAuthorizationControllerInteractiveAuthorizationResponse, bX as InteractiveAuthorizationErrorResponseDto, bY as InteractiveAuthorizationRequestDto, bZ as IssuanceConfig, b$ as IssuanceConfigControllerGetIssuanceConfigurationsResponse, c2 as IssuanceConfigControllerStoreIssuanceConfigurationResponse, c4 as IssuanceDto, c5 as IssuerMetadataCredentialConfig, c6 as JwksResponseDto, ce as KeyChainControllerExportResponse, ch as KeyChainControllerGetAllResponse, cl as KeyChainControllerGetByIdResponse, co as KeyChainControllerGetProvidersResponse, cy as KeyChainCreateDto, cz as KeyChainEntity, cA as KeyChainExportDto, cB as KeyChainImportDto, cC as KeyChainResponseDto, cD as KeyChainUpdateDto, cE as KmsProviderCapabilitiesDto, cF as KmsProviderInfoDto, cG as KmsProvidersResponseDto, cH as NoneTrustPolicy, cI as NotificationRequestDto, cJ as OfferRequestDto, cK as OfferResponse, cM as Oid4VciControllerCredentialResponse, cV as Oid4VciMetadataControllerVctResponse, cY as Oid4VpControllerGetPostRequestWithSessionResponse, c$ as Oid4VpControllerGetRequestNoRedirectWithSessionResponse, d2 as Oid4VpControllerGetRequestWithSessionResponse, d5 as Oid4VpControllerGetResponseResponse, d7 as ParResponseDto, d8 as PolicyCredential, d9 as PresentationAttachment, da as PresentationConfig, db as PresentationConfigCreateDto, dc as PresentationConfigUpdateDto, dd as PresentationDuringIssuanceConfig, df as PresentationManagementControllerConfigurationResponse, dk as PresentationManagementControllerGetConfigurationResponse, dn as PresentationManagementControllerStorePresentationConfigResponse, dr as PresentationManagementControllerUpdateConfigurationResponse, dt as PresentationRequest, du as PublicKeyInfoDto, dv as RegistrarConfigEntity, dy as RegistrarControllerCreateAccessCertificateResponse, dC as RegistrarControllerCreateConfigResponse, dF as RegistrarControllerDeleteConfigResponse, dJ as RegistrarControllerGetConfigResponse, dN as RegistrarControllerUpdateConfigResponse, dP as RegistrationCertificateRequest, dQ as RoleDto, dR as RootOfTrustPolicy, dS as RotationPolicyCreateDto, dT as RotationPolicyImportDto, dU as RotationPolicyResponseDto, dV as RotationPolicyUpdateDto, dW as SchemaResponse, S as Session, dY as SessionConfigControllerGetConfigResponse, e1 as SessionConfigControllerUpdateConfigResponse, e6 as SessionControllerGetAllSessionsResponse, e9 as SessionControllerGetSessionResponse, ef as SessionStorageConfig, eg as StatusListAggregationDto, eh as StatusListConfig, ej as StatusListConfigControllerGetConfigResponse, em as StatusListConfigControllerResetConfigResponse, ep as StatusListConfigControllerUpdateConfigResponse, es as StatusListControllerGetListResponse, ev as StatusListControllerGetStatusListAggregationResponse, ex as StatusListImportDto, ez as StatusListManagementControllerCreateListResponse, eC as StatusListManagementControllerDeleteListResponse, eF as StatusListManagementControllerGetListResponse, eI as StatusListManagementControllerGetListsResponse, eL as StatusListManagementControllerUpdateListResponse, eN as StatusListResponseDto, eO as StatusUpdateDto, eS as StorageControllerUploadResponse, eX as TenantControllerGetTenantResponse, e_ as TenantControllerGetTenantsResponse, f1 as TenantControllerInitTenantResponse, f4 as TenantControllerUpdateTenantResponse, f6 as TenantEntity, f7 as TokenResponse, f8 as TransactionData, f9 as TrustList, fb as TrustListControllerCreateTrustListResponse, fg as TrustListControllerExportTrustListResponse, fj as TrustListControllerGetAllTrustListsResponse, fm as TrustListControllerGetTrustListResponse, fp as TrustListControllerGetTrustListVersionResponse, fs as TrustListControllerGetTrustListVersionsResponse, fv as TrustListControllerUpdateTrustListResponse, fx as TrustListCreateDto, fz as TrustListPublicControllerGetTrustListJwtResponse, fB as TrustListVersion, fC as TrustedAuthorityQuery, fD as UpdateAttributeProviderDto, fE as UpdateClientDto, fF as UpdateRegistrarConfigDto, fG as UpdateSessionConfigDto, fH as UpdateStatusListConfigDto, fI as UpdateStatusListDto, fJ as UpdateTenantDto, fK as UpdateWebhookEndpointDto, fL as UpstreamOidcConfig, fM as Vct, fO as VerifierOfferControllerGetOfferResponse, fQ as WebHookAuthConfigHeader, fR as WebHookAuthConfigNone, fS as WebhookConfig, g4 as WebhookEndpointEntity, ga as WellKnownControllerChainedAsMetadataResponse, gd as WellKnownControllerGetJwks0Response, gg as WellKnownControllerGetJwks1Response, gj as WellKnownControllerIssuerMetadata0Response, gm as WellKnownControllerIssuerMetadata1Response } from '../types.gen-4IUe6Aiy.mjs';
4
4
 
5
5
  type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = Options$1<TData, ThrowOnError> & {
6
6
  /**
@@ -23,7 +23,6 @@ declare const appControllerMain: <ThrowOnError extends boolean = true>(options?:
23
23
  * Endpoint to check the health of the service.
24
24
  */
25
25
  declare const healthControllerCheck: <ThrowOnError extends boolean = true>(options?: Options<HealthControllerCheckData, ThrowOnError>) => RequestResult<HealthControllerCheckResponses, HealthControllerCheckErrors, ThrowOnError, "fields">;
26
- declare const prometheusControllerIndex: <ThrowOnError extends boolean = true>(options?: Options<PrometheusControllerIndexData, ThrowOnError>) => RequestResult<PrometheusControllerIndexResponses, unknown, ThrowOnError, "fields">;
27
26
  /**
28
27
  * OAuth2 Token endpoint - supports client credentials flow only
29
28
  * Accepts client credentials either in Authorization header (Basic auth) or request body
@@ -90,51 +89,6 @@ declare const clientControllerGetClientSecret: <ThrowOnError extends boolean = t
90
89
  * Users with `clients:manage` role can only rotate secrets for clients in their tenant.
91
90
  */
92
91
  declare const clientControllerRotateClientSecret: <ThrowOnError extends boolean = true>(options: Options<ClientControllerRotateClientSecretData, ThrowOnError>) => RequestResult<ClientControllerRotateClientSecretResponses, unknown, ThrowOnError, "fields">;
93
- /**
94
- * Get all keys for the tenant.
95
- */
96
- declare const keyControllerGetKeys: <ThrowOnError extends boolean = true>(options?: Options<KeyControllerGetKeysData, ThrowOnError>) => RequestResult<KeyControllerGetKeysResponses, unknown, ThrowOnError, "fields">;
97
- /**
98
- * Add a new key to the key service.
99
- */
100
- declare const keyControllerAddKey: <ThrowOnError extends boolean = true>(options: Options<KeyControllerAddKeyData, ThrowOnError>) => RequestResult<KeyControllerAddKeyResponses, unknown, ThrowOnError, "fields">;
101
- /**
102
- * Delete a key from the key service.
103
- */
104
- declare const keyControllerDeleteKey: <ThrowOnError extends boolean = true>(options: Options<KeyControllerDeleteKeyData, ThrowOnError>) => RequestResult<KeyControllerDeleteKeyResponses, unknown, ThrowOnError, "fields">;
105
- /**
106
- * Get a specific key by ID
107
- */
108
- declare const keyControllerGetKey: <ThrowOnError extends boolean = true>(options: Options<KeyControllerGetKeyData, ThrowOnError>) => RequestResult<KeyControllerGetKeyResponses, unknown, ThrowOnError, "fields">;
109
- /**
110
- * Updates an existing key in the key service.
111
- */
112
- declare const keyControllerUpdateKey: <ThrowOnError extends boolean = true>(options: Options<KeyControllerUpdateKeyData, ThrowOnError>) => RequestResult<KeyControllerUpdateKeyResponses, unknown, ThrowOnError, "fields">;
113
- /**
114
- * Get all certificates for the authenticated tenant.
115
- * Can be filtered by keyId using query parameter.
116
- */
117
- declare const certControllerGetCertificates: <ThrowOnError extends boolean = true>(options?: Options<CertControllerGetCertificatesData, ThrowOnError>) => RequestResult<CertControllerGetCertificatesResponses, unknown, ThrowOnError, "fields">;
118
- /**
119
- * Add a new certificate to a key. If no certificate is provided, a self-signed certificate will be generated.
120
- */
121
- declare const certControllerAddCertificate: <ThrowOnError extends boolean = true>(options: Options<CertControllerAddCertificateData, ThrowOnError>) => RequestResult<CertControllerAddCertificateResponses, unknown, ThrowOnError, "fields">;
122
- /**
123
- * Delete a certificate.
124
- */
125
- declare const certControllerDeleteCertificate: <ThrowOnError extends boolean = true>(options: Options<CertControllerDeleteCertificateData, ThrowOnError>) => RequestResult<CertControllerDeleteCertificateResponses, unknown, ThrowOnError, "fields">;
126
- /**
127
- * Get a specific certificate by ID.
128
- */
129
- declare const certControllerGetCertificate: <ThrowOnError extends boolean = true>(options: Options<CertControllerGetCertificateData, ThrowOnError>) => RequestResult<CertControllerGetCertificateResponses, unknown, ThrowOnError, "fields">;
130
- /**
131
- * Update certificate metadata (description and usage types).
132
- */
133
- declare const certControllerUpdateCertificate: <ThrowOnError extends boolean = true>(options: Options<CertControllerUpdateCertificateData, ThrowOnError>) => RequestResult<CertControllerUpdateCertificateResponses, unknown, ThrowOnError, "fields">;
134
- /**
135
- * Export the configuration of a certificate for import/export purposes.
136
- */
137
- declare const certControllerExportConfig: <ThrowOnError extends boolean = true>(options: Options<CertControllerExportConfigData, ThrowOnError>) => RequestResult<CertControllerExportConfigResponses, unknown, ThrowOnError, "fields">;
138
92
  /**
139
93
  * Get the JWT for a specific status list.
140
94
  */
@@ -228,7 +182,13 @@ declare const sessionConfigControllerGetConfig: <ThrowOnError extends boolean =
228
182
  */
229
183
  declare const sessionConfigControllerUpdateConfig: <ThrowOnError extends boolean = true>(options: Options<SessionConfigControllerUpdateConfigData, ThrowOnError>) => RequestResult<SessionConfigControllerUpdateConfigResponses, unknown, ThrowOnError, "fields">;
230
184
  /**
231
- * Returns the issuance configurations for this tenant.
185
+ * Subscribe to session status updates
186
+ *
187
+ * Server-Sent Events endpoint for real-time session status updates. Requires JWT authentication via query parameter.
188
+ */
189
+ declare const sessionEventsControllerSubscribeToSessionEvents: <ThrowOnError extends boolean = true>(options: Options<SessionEventsControllerSubscribeToSessionEventsData, ThrowOnError>) => RequestResult<SessionEventsControllerSubscribeToSessionEventsResponses, unknown, ThrowOnError, "fields">;
190
+ /**
191
+ * Returns the issuance configurations for this tenant. Creates a default one if it does not exist.
232
192
  */
233
193
  declare const issuanceConfigControllerGetIssuanceConfigurations: <ThrowOnError extends boolean = true>(options?: Options<IssuanceConfigControllerGetIssuanceConfigurationsData, ThrowOnError>) => RequestResult<IssuanceConfigControllerGetIssuanceConfigurationsResponses, unknown, ThrowOnError, "fields">;
234
194
  /**
@@ -255,6 +215,46 @@ declare const credentialConfigControllerGetConfigById: <ThrowOnError extends boo
255
215
  * Updates a credential configuration by ID.
256
216
  */
257
217
  declare const credentialConfigControllerUpdateCredentialConfiguration: <ThrowOnError extends boolean = true>(options: Options<CredentialConfigControllerUpdateCredentialConfigurationData, ThrowOnError>) => RequestResult<CredentialConfigControllerUpdateCredentialConfigurationResponses, unknown, ThrowOnError, "fields">;
218
+ /**
219
+ * List all attribute providers
220
+ */
221
+ declare const attributeProviderControllerGetAll: <ThrowOnError extends boolean = true>(options?: Options<AttributeProviderControllerGetAllData, ThrowOnError>) => RequestResult<AttributeProviderControllerGetAllResponses, unknown, ThrowOnError, "fields">;
222
+ /**
223
+ * Create a new attribute provider
224
+ */
225
+ declare const attributeProviderControllerCreate: <ThrowOnError extends boolean = true>(options: Options<AttributeProviderControllerCreateData, ThrowOnError>) => RequestResult<AttributeProviderControllerCreateResponses, unknown, ThrowOnError, "fields">;
226
+ /**
227
+ * Delete an attribute provider
228
+ */
229
+ declare const attributeProviderControllerDelete: <ThrowOnError extends boolean = true>(options: Options<AttributeProviderControllerDeleteData, ThrowOnError>) => RequestResult<AttributeProviderControllerDeleteResponses, AttributeProviderControllerDeleteErrors, ThrowOnError, "fields">;
230
+ /**
231
+ * Get an attribute provider by ID
232
+ */
233
+ declare const attributeProviderControllerGetById: <ThrowOnError extends boolean = true>(options: Options<AttributeProviderControllerGetByIdData, ThrowOnError>) => RequestResult<AttributeProviderControllerGetByIdResponses, AttributeProviderControllerGetByIdErrors, ThrowOnError, "fields">;
234
+ /**
235
+ * Update an attribute provider
236
+ */
237
+ declare const attributeProviderControllerUpdate: <ThrowOnError extends boolean = true>(options: Options<AttributeProviderControllerUpdateData, ThrowOnError>) => RequestResult<AttributeProviderControllerUpdateResponses, AttributeProviderControllerUpdateErrors, ThrowOnError, "fields">;
238
+ /**
239
+ * List all webhook endpoints
240
+ */
241
+ declare const webhookEndpointControllerGetAll: <ThrowOnError extends boolean = true>(options?: Options<WebhookEndpointControllerGetAllData, ThrowOnError>) => RequestResult<WebhookEndpointControllerGetAllResponses, unknown, ThrowOnError, "fields">;
242
+ /**
243
+ * Create a new webhook endpoint
244
+ */
245
+ declare const webhookEndpointControllerCreate: <ThrowOnError extends boolean = true>(options: Options<WebhookEndpointControllerCreateData, ThrowOnError>) => RequestResult<WebhookEndpointControllerCreateResponses, unknown, ThrowOnError, "fields">;
246
+ /**
247
+ * Delete a webhook endpoint
248
+ */
249
+ declare const webhookEndpointControllerDelete: <ThrowOnError extends boolean = true>(options: Options<WebhookEndpointControllerDeleteData, ThrowOnError>) => RequestResult<WebhookEndpointControllerDeleteResponses, WebhookEndpointControllerDeleteErrors, ThrowOnError, "fields">;
250
+ /**
251
+ * Get a webhook endpoint by ID
252
+ */
253
+ declare const webhookEndpointControllerGetById: <ThrowOnError extends boolean = true>(options: Options<WebhookEndpointControllerGetByIdData, ThrowOnError>) => RequestResult<WebhookEndpointControllerGetByIdResponses, WebhookEndpointControllerGetByIdErrors, ThrowOnError, "fields">;
254
+ /**
255
+ * Update a webhook endpoint
256
+ */
257
+ declare const webhookEndpointControllerUpdate: <ThrowOnError extends boolean = true>(options: Options<WebhookEndpointControllerUpdateData, ThrowOnError>) => RequestResult<WebhookEndpointControllerUpdateResponses, WebhookEndpointControllerUpdateErrors, ThrowOnError, "fields">;
258
258
  /**
259
259
  * Returns the presentation request configurations.
260
260
  */
@@ -328,10 +328,6 @@ declare const authorizeControllerPar: <ThrowOnError extends boolean = true>(opti
328
328
  * This endpoint is used to exchange the authorization code for an access token.
329
329
  */
330
330
  declare const authorizeControllerToken: <ThrowOnError extends boolean = true>(options: Options<AuthorizeControllerTokenData, ThrowOnError>) => RequestResult<AuthorizeControllerTokenResponses, unknown, ThrowOnError, "fields">;
331
- /**
332
- * Endpoint for the authorization challenge.
333
- */
334
- declare const authorizeControllerAuthorizationChallengeEndpoint: <ThrowOnError extends boolean = true>(options: Options<AuthorizeControllerAuthorizationChallengeEndpointData, ThrowOnError>) => RequestResult<AuthorizeControllerAuthorizationChallengeEndpointResponses, unknown, ThrowOnError, "fields">;
335
331
  /**
336
332
  * Interactive Authorization Endpoint
337
333
  *
@@ -355,6 +351,42 @@ declare const interactiveAuthorizationControllerInteractiveAuthorization: <Throw
355
351
  * Mark a web authorization session as completed after user interaction
356
352
  */
357
353
  declare const interactiveAuthorizationControllerCompleteWebAuth: <ThrowOnError extends boolean = true>(options: Options<InteractiveAuthorizationControllerCompleteWebAuthData, ThrowOnError>) => RequestResult<InteractiveAuthorizationControllerCompleteWebAuthResponses, InteractiveAuthorizationControllerCompleteWebAuthErrors, ThrowOnError, "fields">;
354
+ /**
355
+ * Pushed Authorization Request
356
+ *
357
+ * Submit authorization request parameters. Returns a request_uri for use at the authorization endpoint.
358
+ */
359
+ declare const chainedAsControllerPar: <ThrowOnError extends boolean = true>(options: Options<ChainedAsControllerParData, ThrowOnError>) => RequestResult<ChainedAsControllerParResponses, ChainedAsControllerParErrors, ThrowOnError, "fields">;
360
+ /**
361
+ * Authorization endpoint
362
+ *
363
+ * Validates the request_uri from PAR and redirects to the upstream OIDC provider for authentication.
364
+ */
365
+ declare const chainedAsControllerAuthorize: <ThrowOnError extends boolean = true>(options: Options<ChainedAsControllerAuthorizeData, ThrowOnError>) => RequestResult<ChainedAsControllerAuthorizeResponses, ChainedAsControllerAuthorizeErrors, ThrowOnError, "fields">;
366
+ /**
367
+ * Upstream OIDC callback
368
+ *
369
+ * Receives the authorization response from the upstream OIDC provider, exchanges the code, and redirects back to the wallet.
370
+ */
371
+ declare const chainedAsControllerCallback: <ThrowOnError extends boolean = true>(options: Options<ChainedAsControllerCallbackData, ThrowOnError>) => RequestResult<ChainedAsControllerCallbackResponses, ChainedAsControllerCallbackErrors, ThrowOnError, "fields">;
372
+ /**
373
+ * Token endpoint
374
+ *
375
+ * Exchanges the authorization code for an access token containing issuer_state.
376
+ */
377
+ declare const chainedAsControllerToken: <ThrowOnError extends boolean = true>(options: Options<ChainedAsControllerTokenData, ThrowOnError>) => RequestResult<ChainedAsControllerTokenResponses, ChainedAsControllerTokenErrors, ThrowOnError, "fields">;
378
+ /**
379
+ * JSON Web Key Set
380
+ *
381
+ * Returns the public keys for verifying tokens issued by this Chained AS.
382
+ */
383
+ declare const chainedAsControllerJwks: <ThrowOnError extends boolean = true>(options: Options<ChainedAsControllerJwksData, ThrowOnError>) => RequestResult<ChainedAsControllerJwksResponses, unknown, ThrowOnError, "fields">;
384
+ /**
385
+ * OAuth AS Metadata
386
+ *
387
+ * Returns the OAuth Authorization Server metadata for the Chained AS.
388
+ */
389
+ declare const chainedAsControllerGetMetadata: <ThrowOnError extends boolean = true>(options: Options<ChainedAsControllerGetMetadataData, ThrowOnError>) => RequestResult<ChainedAsControllerGetMetadataResponses, unknown, ThrowOnError, "fields">;
358
390
  /**
359
391
  * Create an offer for a credential.
360
392
  */
@@ -395,6 +427,12 @@ declare const wellKnownControllerAuthzMetadata0: <ThrowOnError extends boolean =
395
427
  * Authorization Server Metadata
396
428
  */
397
429
  declare const wellKnownControllerAuthzMetadata1: <ThrowOnError extends boolean = true>(options: Options<WellKnownControllerAuthzMetadata1Data, ThrowOnError>) => RequestResult<WellKnownControllerAuthzMetadata1Responses, unknown, ThrowOnError, "fields">;
430
+ /**
431
+ * Chained Authorization Server Metadata (RFC 8414 alternative path format).
432
+ * Supports discovery via `/.well-known/oauth-authorization-server/:tenantId/chained-as`
433
+ * for wallets that construct the discovery URL per RFC 8414.
434
+ */
435
+ declare const wellKnownControllerChainedAsMetadata: <ThrowOnError extends boolean = true>(options: Options<WellKnownControllerChainedAsMetadataData, ThrowOnError>) => RequestResult<WellKnownControllerChainedAsMetadataResponses, unknown, ThrowOnError, "fields">;
398
436
  /**
399
437
  * Returns the JSON Web Key Set (JWKS) for the authorization server.
400
438
  */
@@ -478,6 +516,44 @@ declare const trustListControllerGetTrustListVersion: <ThrowOnError extends bool
478
516
  * Returns the JWT of the trust list
479
517
  */
480
518
  declare const trustListPublicControllerGetTrustListJwt: <ThrowOnError extends boolean = true>(options: Options<TrustListPublicControllerGetTrustListJwtData, ThrowOnError>) => RequestResult<TrustListPublicControllerGetTrustListJwtResponses, unknown, ThrowOnError, "fields">;
519
+ /**
520
+ * Get available KMS providers
521
+ */
522
+ declare const keyChainControllerGetProviders: <ThrowOnError extends boolean = true>(options?: Options<KeyChainControllerGetProvidersData, ThrowOnError>) => RequestResult<KeyChainControllerGetProvidersResponses, unknown, ThrowOnError, "fields">;
523
+ /**
524
+ * List all key chains for the tenant
525
+ */
526
+ declare const keyChainControllerGetAll: <ThrowOnError extends boolean = true>(options?: Options<KeyChainControllerGetAllData, ThrowOnError>) => RequestResult<KeyChainControllerGetAllResponses, unknown, ThrowOnError, "fields">;
527
+ /**
528
+ * Create a new key chain
529
+ */
530
+ declare const keyChainControllerCreate: <ThrowOnError extends boolean = true>(options: Options<KeyChainControllerCreateData, ThrowOnError>) => RequestResult<KeyChainControllerCreateResponses, unknown, ThrowOnError, "fields">;
531
+ /**
532
+ * Delete a key chain
533
+ */
534
+ declare const keyChainControllerDelete: <ThrowOnError extends boolean = true>(options: Options<KeyChainControllerDeleteData, ThrowOnError>) => RequestResult<KeyChainControllerDeleteResponses, KeyChainControllerDeleteErrors, ThrowOnError, "fields">;
535
+ /**
536
+ * Get a key chain by ID
537
+ */
538
+ declare const keyChainControllerGetById: <ThrowOnError extends boolean = true>(options: Options<KeyChainControllerGetByIdData, ThrowOnError>) => RequestResult<KeyChainControllerGetByIdResponses, KeyChainControllerGetByIdErrors, ThrowOnError, "fields">;
539
+ /**
540
+ * Update key chain metadata and rotation policy
541
+ */
542
+ declare const keyChainControllerUpdate: <ThrowOnError extends boolean = true>(options: Options<KeyChainControllerUpdateData, ThrowOnError>) => RequestResult<KeyChainControllerUpdateResponses, KeyChainControllerUpdateErrors, ThrowOnError, "fields">;
543
+ /**
544
+ * Export a key chain in config-import format
545
+ *
546
+ * Returns the key chain including private key material in the same format used by config import JSON files.
547
+ */
548
+ declare const keyChainControllerExport: <ThrowOnError extends boolean = true>(options: Options<KeyChainControllerExportData, ThrowOnError>) => RequestResult<KeyChainControllerExportResponses, KeyChainControllerExportErrors, ThrowOnError, "fields">;
549
+ /**
550
+ * Import an existing key chain
551
+ */
552
+ declare const keyChainControllerImport: <ThrowOnError extends boolean = true>(options: Options<KeyChainControllerImportData, ThrowOnError>) => RequestResult<KeyChainControllerImportResponses, unknown, ThrowOnError, "fields">;
553
+ /**
554
+ * Rotate the signing key in a key chain
555
+ */
556
+ declare const keyChainControllerRotate: <ThrowOnError extends boolean = true>(options: Options<KeyChainControllerRotateData, ThrowOnError>) => RequestResult<KeyChainControllerRotateResponses, KeyChainControllerRotateErrors, ThrowOnError, "fields">;
481
557
  /**
482
558
  * Create an presentation request that can be sent to the user
483
559
  */
@@ -488,4 +564,4 @@ declare const verifierOfferControllerGetOffer: <ThrowOnError extends boolean = t
488
564
  declare const storageControllerUpload: <ThrowOnError extends boolean = true>(options: Options<StorageControllerUploadData, ThrowOnError>) => RequestResult<StorageControllerUploadResponses, unknown, ThrowOnError, "fields">;
489
565
  declare const storageControllerDownload: <ThrowOnError extends boolean = true>(options: Options<StorageControllerDownloadData, ThrowOnError>) => RequestResult<StorageControllerDownloadResponses, unknown, ThrowOnError, "fields">;
490
566
 
491
- export { AppControllerMainData, AppControllerMainResponses, AuthControllerGetGlobalJwksData, AuthControllerGetGlobalJwksResponses, AuthControllerGetOAuth2TokenData, AuthControllerGetOAuth2TokenErrors, AuthControllerGetOAuth2TokenResponses, AuthControllerGetOidcDiscoveryData, AuthControllerGetOidcDiscoveryResponses, AuthorizeControllerAuthorizationChallengeEndpointData, AuthorizeControllerAuthorizationChallengeEndpointResponses, AuthorizeControllerAuthorizeData, AuthorizeControllerAuthorizeResponses, AuthorizeControllerParData, AuthorizeControllerParResponses, AuthorizeControllerTokenData, AuthorizeControllerTokenResponses, CacheControllerClearAllCachesData, CacheControllerClearAllCachesResponses, CacheControllerClearStatusListCacheData, CacheControllerClearStatusListCacheResponses, CacheControllerClearTrustListCacheData, CacheControllerClearTrustListCacheResponses, CacheControllerGetStatsData, CacheControllerGetStatsResponses, CertControllerAddCertificateData, CertControllerAddCertificateResponses, CertControllerDeleteCertificateData, CertControllerDeleteCertificateResponses, CertControllerExportConfigData, CertControllerExportConfigResponses, CertControllerGetCertificateData, CertControllerGetCertificateResponses, CertControllerGetCertificatesData, CertControllerGetCertificatesResponses, CertControllerUpdateCertificateData, CertControllerUpdateCertificateResponses, ClientControllerCreateClientData, ClientControllerCreateClientResponses, ClientControllerDeleteClientData, ClientControllerDeleteClientResponses, ClientControllerGetClientData, ClientControllerGetClientResponses, ClientControllerGetClientSecretData, ClientControllerGetClientSecretResponses, ClientControllerGetClientsData, ClientControllerGetClientsResponses, ClientControllerRotateClientSecretData, ClientControllerRotateClientSecretResponses, ClientControllerUpdateClientData, ClientControllerUpdateClientResponses, CredentialConfigControllerDeleteIssuanceConfigurationData, CredentialConfigControllerDeleteIssuanceConfigurationResponses, CredentialConfigControllerGetConfigByIdData, CredentialConfigControllerGetConfigByIdResponses, CredentialConfigControllerGetConfigsData, CredentialConfigControllerGetConfigsResponses, CredentialConfigControllerStoreCredentialConfigurationData, CredentialConfigControllerStoreCredentialConfigurationResponses, CredentialConfigControllerUpdateCredentialConfigurationData, CredentialConfigControllerUpdateCredentialConfigurationResponses, CredentialOfferControllerGetOfferData, CredentialOfferControllerGetOfferResponses, DeferredControllerCompleteDeferredData, DeferredControllerCompleteDeferredErrors, DeferredControllerCompleteDeferredResponses, DeferredControllerFailDeferredData, DeferredControllerFailDeferredErrors, DeferredControllerFailDeferredResponses, HealthControllerCheckData, HealthControllerCheckErrors, HealthControllerCheckResponses, InteractiveAuthorizationControllerCompleteWebAuthData, InteractiveAuthorizationControllerCompleteWebAuthErrors, InteractiveAuthorizationControllerCompleteWebAuthResponses, InteractiveAuthorizationControllerInteractiveAuthorizationData, InteractiveAuthorizationControllerInteractiveAuthorizationErrors, InteractiveAuthorizationControllerInteractiveAuthorizationResponses, IssuanceConfigControllerGetIssuanceConfigurationsData, IssuanceConfigControllerGetIssuanceConfigurationsResponses, IssuanceConfigControllerStoreIssuanceConfigurationData, IssuanceConfigControllerStoreIssuanceConfigurationResponses, KeyControllerAddKeyData, KeyControllerAddKeyResponses, KeyControllerDeleteKeyData, KeyControllerDeleteKeyResponses, KeyControllerGetKeyData, KeyControllerGetKeyResponses, KeyControllerGetKeysData, KeyControllerGetKeysResponses, KeyControllerUpdateKeyData, KeyControllerUpdateKeyResponses, Oid4VciControllerCredentialData, Oid4VciControllerCredentialResponses, Oid4VciControllerDeferredCredentialData, Oid4VciControllerDeferredCredentialResponses, Oid4VciControllerNonceData, Oid4VciControllerNonceResponses, Oid4VciControllerNotificationsData, Oid4VciControllerNotificationsResponses, Oid4VciMetadataControllerVctData, Oid4VciMetadataControllerVctResponses, Oid4VpControllerGetPostRequestWithSessionData, Oid4VpControllerGetPostRequestWithSessionResponses, Oid4VpControllerGetRequestNoRedirectWithSessionData, Oid4VpControllerGetRequestNoRedirectWithSessionResponses, Oid4VpControllerGetRequestWithSessionData, Oid4VpControllerGetRequestWithSessionResponses, Oid4VpControllerGetResponseData, Oid4VpControllerGetResponseResponses, type Options, PresentationManagementControllerConfigurationData, PresentationManagementControllerConfigurationResponses, PresentationManagementControllerDeleteConfigurationData, PresentationManagementControllerDeleteConfigurationResponses, PresentationManagementControllerGetConfigurationData, PresentationManagementControllerGetConfigurationResponses, PresentationManagementControllerStorePresentationConfigData, PresentationManagementControllerStorePresentationConfigResponses, PresentationManagementControllerUpdateConfigurationData, PresentationManagementControllerUpdateConfigurationResponses, PrometheusControllerIndexData, PrometheusControllerIndexResponses, RegistrarControllerCreateAccessCertificateData, RegistrarControllerCreateAccessCertificateErrors, RegistrarControllerCreateAccessCertificateResponses, RegistrarControllerCreateConfigData, RegistrarControllerCreateConfigErrors, RegistrarControllerCreateConfigResponses, RegistrarControllerDeleteConfigData, RegistrarControllerDeleteConfigResponses, RegistrarControllerGetConfigData, RegistrarControllerGetConfigErrors, RegistrarControllerGetConfigResponses, RegistrarControllerUpdateConfigData, RegistrarControllerUpdateConfigErrors, RegistrarControllerUpdateConfigResponses, SessionConfigControllerGetConfigData, SessionConfigControllerGetConfigResponses, SessionConfigControllerResetConfigData, SessionConfigControllerResetConfigResponses, SessionConfigControllerUpdateConfigData, SessionConfigControllerUpdateConfigResponses, SessionControllerDeleteSessionData, SessionControllerDeleteSessionResponses, SessionControllerGetAllSessionsData, SessionControllerGetAllSessionsResponses, SessionControllerGetSessionData, SessionControllerGetSessionResponses, SessionControllerRevokeAllData, SessionControllerRevokeAllResponses, StatusListConfigControllerGetConfigData, StatusListConfigControllerGetConfigResponses, StatusListConfigControllerResetConfigData, StatusListConfigControllerResetConfigResponses, StatusListConfigControllerUpdateConfigData, StatusListConfigControllerUpdateConfigResponses, StatusListControllerGetListData, StatusListControllerGetListResponses, StatusListControllerGetStatusListAggregationData, StatusListControllerGetStatusListAggregationResponses, StatusListManagementControllerCreateListData, StatusListManagementControllerCreateListResponses, StatusListManagementControllerDeleteListData, StatusListManagementControllerDeleteListResponses, StatusListManagementControllerGetListData, StatusListManagementControllerGetListResponses, StatusListManagementControllerGetListsData, StatusListManagementControllerGetListsResponses, StatusListManagementControllerUpdateListData, StatusListManagementControllerUpdateListResponses, StorageControllerDownloadData, StorageControllerDownloadResponses, StorageControllerUploadData, StorageControllerUploadResponses, TenantControllerDeleteTenantData, TenantControllerDeleteTenantResponses, TenantControllerGetTenantData, TenantControllerGetTenantResponses, TenantControllerGetTenantsData, TenantControllerGetTenantsResponses, TenantControllerInitTenantData, TenantControllerInitTenantResponses, TenantControllerUpdateTenantData, TenantControllerUpdateTenantResponses, TrustListControllerCreateTrustListData, TrustListControllerCreateTrustListResponses, TrustListControllerDeleteTrustListData, TrustListControllerDeleteTrustListResponses, TrustListControllerExportTrustListData, TrustListControllerExportTrustListResponses, TrustListControllerGetAllTrustListsData, TrustListControllerGetAllTrustListsResponses, TrustListControllerGetTrustListData, TrustListControllerGetTrustListResponses, TrustListControllerGetTrustListVersionData, TrustListControllerGetTrustListVersionResponses, TrustListControllerGetTrustListVersionsData, TrustListControllerGetTrustListVersionsResponses, TrustListControllerUpdateTrustListData, TrustListControllerUpdateTrustListResponses, TrustListPublicControllerGetTrustListJwtData, TrustListPublicControllerGetTrustListJwtResponses, VerifierOfferControllerGetOfferData, VerifierOfferControllerGetOfferResponses, WellKnownControllerAuthzMetadata0Data, WellKnownControllerAuthzMetadata0Responses, WellKnownControllerAuthzMetadata1Data, WellKnownControllerAuthzMetadata1Responses, WellKnownControllerGetJwks0Data, WellKnownControllerGetJwks0Responses, WellKnownControllerGetJwks1Data, WellKnownControllerGetJwks1Responses, WellKnownControllerIssuerMetadata0Data, WellKnownControllerIssuerMetadata0Responses, WellKnownControllerIssuerMetadata1Data, WellKnownControllerIssuerMetadata1Responses, appControllerMain, authControllerGetGlobalJwks, authControllerGetOAuth2Token, authControllerGetOidcDiscovery, authorizeControllerAuthorizationChallengeEndpoint, authorizeControllerAuthorize, authorizeControllerPar, authorizeControllerToken, cacheControllerClearAllCaches, cacheControllerClearStatusListCache, cacheControllerClearTrustListCache, cacheControllerGetStats, certControllerAddCertificate, certControllerDeleteCertificate, certControllerExportConfig, certControllerGetCertificate, certControllerGetCertificates, certControllerUpdateCertificate, clientControllerCreateClient, clientControllerDeleteClient, clientControllerGetClient, clientControllerGetClientSecret, clientControllerGetClients, clientControllerRotateClientSecret, clientControllerUpdateClient, credentialConfigControllerDeleteIssuanceConfiguration, credentialConfigControllerGetConfigById, credentialConfigControllerGetConfigs, credentialConfigControllerStoreCredentialConfiguration, credentialConfigControllerUpdateCredentialConfiguration, credentialOfferControllerGetOffer, deferredControllerCompleteDeferred, deferredControllerFailDeferred, healthControllerCheck, interactiveAuthorizationControllerCompleteWebAuth, interactiveAuthorizationControllerInteractiveAuthorization, issuanceConfigControllerGetIssuanceConfigurations, issuanceConfigControllerStoreIssuanceConfiguration, keyControllerAddKey, keyControllerDeleteKey, keyControllerGetKey, keyControllerGetKeys, keyControllerUpdateKey, oid4VciControllerCredential, oid4VciControllerDeferredCredential, oid4VciControllerNonce, oid4VciControllerNotifications, oid4VciMetadataControllerVct, oid4VpControllerGetPostRequestWithSession, oid4VpControllerGetRequestNoRedirectWithSession, oid4VpControllerGetRequestWithSession, oid4VpControllerGetResponse, presentationManagementControllerConfiguration, presentationManagementControllerDeleteConfiguration, presentationManagementControllerGetConfiguration, presentationManagementControllerStorePresentationConfig, presentationManagementControllerUpdateConfiguration, prometheusControllerIndex, registrarControllerCreateAccessCertificate, registrarControllerCreateConfig, registrarControllerDeleteConfig, registrarControllerGetConfig, registrarControllerUpdateConfig, sessionConfigControllerGetConfig, sessionConfigControllerResetConfig, sessionConfigControllerUpdateConfig, sessionControllerDeleteSession, sessionControllerGetAllSessions, sessionControllerGetSession, sessionControllerRevokeAll, statusListConfigControllerGetConfig, statusListConfigControllerResetConfig, statusListConfigControllerUpdateConfig, statusListControllerGetList, statusListControllerGetStatusListAggregation, statusListManagementControllerCreateList, statusListManagementControllerDeleteList, statusListManagementControllerGetList, statusListManagementControllerGetLists, statusListManagementControllerUpdateList, storageControllerDownload, storageControllerUpload, tenantControllerDeleteTenant, tenantControllerGetTenant, tenantControllerGetTenants, tenantControllerInitTenant, tenantControllerUpdateTenant, trustListControllerCreateTrustList, trustListControllerDeleteTrustList, trustListControllerExportTrustList, trustListControllerGetAllTrustLists, trustListControllerGetTrustList, trustListControllerGetTrustListVersion, trustListControllerGetTrustListVersions, trustListControllerUpdateTrustList, trustListPublicControllerGetTrustListJwt, verifierOfferControllerGetOffer, wellKnownControllerAuthzMetadata0, wellKnownControllerAuthzMetadata1, wellKnownControllerGetJwks0, wellKnownControllerGetJwks1, wellKnownControllerIssuerMetadata0, wellKnownControllerIssuerMetadata1 };
567
+ export { AppControllerMainData, AppControllerMainResponses, AttributeProviderControllerCreateData, AttributeProviderControllerCreateResponses, AttributeProviderControllerDeleteData, AttributeProviderControllerDeleteErrors, AttributeProviderControllerDeleteResponses, AttributeProviderControllerGetAllData, AttributeProviderControllerGetAllResponses, AttributeProviderControllerGetByIdData, AttributeProviderControllerGetByIdErrors, AttributeProviderControllerGetByIdResponses, AttributeProviderControllerUpdateData, AttributeProviderControllerUpdateErrors, AttributeProviderControllerUpdateResponses, AuthControllerGetGlobalJwksData, AuthControllerGetGlobalJwksResponses, AuthControllerGetOAuth2TokenData, AuthControllerGetOAuth2TokenErrors, AuthControllerGetOAuth2TokenResponses, AuthControllerGetOidcDiscoveryData, AuthControllerGetOidcDiscoveryResponses, AuthorizeControllerAuthorizeData, AuthorizeControllerAuthorizeResponses, AuthorizeControllerParData, AuthorizeControllerParResponses, AuthorizeControllerTokenData, AuthorizeControllerTokenResponses, CacheControllerClearAllCachesData, CacheControllerClearAllCachesResponses, CacheControllerClearStatusListCacheData, CacheControllerClearStatusListCacheResponses, CacheControllerClearTrustListCacheData, CacheControllerClearTrustListCacheResponses, CacheControllerGetStatsData, CacheControllerGetStatsResponses, ChainedAsControllerAuthorizeData, ChainedAsControllerAuthorizeErrors, ChainedAsControllerAuthorizeResponses, ChainedAsControllerCallbackData, ChainedAsControllerCallbackErrors, ChainedAsControllerCallbackResponses, ChainedAsControllerGetMetadataData, ChainedAsControllerGetMetadataResponses, ChainedAsControllerJwksData, ChainedAsControllerJwksResponses, ChainedAsControllerParData, ChainedAsControllerParErrors, ChainedAsControllerParResponses, ChainedAsControllerTokenData, ChainedAsControllerTokenErrors, ChainedAsControllerTokenResponses, ClientControllerCreateClientData, ClientControllerCreateClientResponses, ClientControllerDeleteClientData, ClientControllerDeleteClientResponses, ClientControllerGetClientData, ClientControllerGetClientResponses, ClientControllerGetClientSecretData, ClientControllerGetClientSecretResponses, ClientControllerGetClientsData, ClientControllerGetClientsResponses, ClientControllerRotateClientSecretData, ClientControllerRotateClientSecretResponses, ClientControllerUpdateClientData, ClientControllerUpdateClientResponses, CredentialConfigControllerDeleteIssuanceConfigurationData, CredentialConfigControllerDeleteIssuanceConfigurationResponses, CredentialConfigControllerGetConfigByIdData, CredentialConfigControllerGetConfigByIdResponses, CredentialConfigControllerGetConfigsData, CredentialConfigControllerGetConfigsResponses, CredentialConfigControllerStoreCredentialConfigurationData, CredentialConfigControllerStoreCredentialConfigurationResponses, CredentialConfigControllerUpdateCredentialConfigurationData, CredentialConfigControllerUpdateCredentialConfigurationResponses, CredentialOfferControllerGetOfferData, CredentialOfferControllerGetOfferResponses, DeferredControllerCompleteDeferredData, DeferredControllerCompleteDeferredErrors, DeferredControllerCompleteDeferredResponses, DeferredControllerFailDeferredData, DeferredControllerFailDeferredErrors, DeferredControllerFailDeferredResponses, HealthControllerCheckData, HealthControllerCheckErrors, HealthControllerCheckResponses, InteractiveAuthorizationControllerCompleteWebAuthData, InteractiveAuthorizationControllerCompleteWebAuthErrors, InteractiveAuthorizationControllerCompleteWebAuthResponses, InteractiveAuthorizationControllerInteractiveAuthorizationData, InteractiveAuthorizationControllerInteractiveAuthorizationErrors, InteractiveAuthorizationControllerInteractiveAuthorizationResponses, IssuanceConfigControllerGetIssuanceConfigurationsData, IssuanceConfigControllerGetIssuanceConfigurationsResponses, IssuanceConfigControllerStoreIssuanceConfigurationData, IssuanceConfigControllerStoreIssuanceConfigurationResponses, KeyChainControllerCreateData, KeyChainControllerCreateResponses, KeyChainControllerDeleteData, KeyChainControllerDeleteErrors, KeyChainControllerDeleteResponses, KeyChainControllerExportData, KeyChainControllerExportErrors, KeyChainControllerExportResponses, KeyChainControllerGetAllData, KeyChainControllerGetAllResponses, KeyChainControllerGetByIdData, KeyChainControllerGetByIdErrors, KeyChainControllerGetByIdResponses, KeyChainControllerGetProvidersData, KeyChainControllerGetProvidersResponses, KeyChainControllerImportData, KeyChainControllerImportResponses, KeyChainControllerRotateData, KeyChainControllerRotateErrors, KeyChainControllerRotateResponses, KeyChainControllerUpdateData, KeyChainControllerUpdateErrors, KeyChainControllerUpdateResponses, Oid4VciControllerCredentialData, Oid4VciControllerCredentialResponses, Oid4VciControllerDeferredCredentialData, Oid4VciControllerDeferredCredentialResponses, Oid4VciControllerNonceData, Oid4VciControllerNonceResponses, Oid4VciControllerNotificationsData, Oid4VciControllerNotificationsResponses, Oid4VciMetadataControllerVctData, Oid4VciMetadataControllerVctResponses, Oid4VpControllerGetPostRequestWithSessionData, Oid4VpControllerGetPostRequestWithSessionResponses, Oid4VpControllerGetRequestNoRedirectWithSessionData, Oid4VpControllerGetRequestNoRedirectWithSessionResponses, Oid4VpControllerGetRequestWithSessionData, Oid4VpControllerGetRequestWithSessionResponses, Oid4VpControllerGetResponseData, Oid4VpControllerGetResponseResponses, type Options, PresentationManagementControllerConfigurationData, PresentationManagementControllerConfigurationResponses, PresentationManagementControllerDeleteConfigurationData, PresentationManagementControllerDeleteConfigurationResponses, PresentationManagementControllerGetConfigurationData, PresentationManagementControllerGetConfigurationResponses, PresentationManagementControllerStorePresentationConfigData, PresentationManagementControllerStorePresentationConfigResponses, PresentationManagementControllerUpdateConfigurationData, PresentationManagementControllerUpdateConfigurationResponses, RegistrarControllerCreateAccessCertificateData, RegistrarControllerCreateAccessCertificateErrors, RegistrarControllerCreateAccessCertificateResponses, RegistrarControllerCreateConfigData, RegistrarControllerCreateConfigErrors, RegistrarControllerCreateConfigResponses, RegistrarControllerDeleteConfigData, RegistrarControllerDeleteConfigResponses, RegistrarControllerGetConfigData, RegistrarControllerGetConfigErrors, RegistrarControllerGetConfigResponses, RegistrarControllerUpdateConfigData, RegistrarControllerUpdateConfigErrors, RegistrarControllerUpdateConfigResponses, SessionConfigControllerGetConfigData, SessionConfigControllerGetConfigResponses, SessionConfigControllerResetConfigData, SessionConfigControllerResetConfigResponses, SessionConfigControllerUpdateConfigData, SessionConfigControllerUpdateConfigResponses, SessionControllerDeleteSessionData, SessionControllerDeleteSessionResponses, SessionControllerGetAllSessionsData, SessionControllerGetAllSessionsResponses, SessionControllerGetSessionData, SessionControllerGetSessionResponses, SessionControllerRevokeAllData, SessionControllerRevokeAllResponses, SessionEventsControllerSubscribeToSessionEventsData, SessionEventsControllerSubscribeToSessionEventsResponses, StatusListConfigControllerGetConfigData, StatusListConfigControllerGetConfigResponses, StatusListConfigControllerResetConfigData, StatusListConfigControllerResetConfigResponses, StatusListConfigControllerUpdateConfigData, StatusListConfigControllerUpdateConfigResponses, StatusListControllerGetListData, StatusListControllerGetListResponses, StatusListControllerGetStatusListAggregationData, StatusListControllerGetStatusListAggregationResponses, StatusListManagementControllerCreateListData, StatusListManagementControllerCreateListResponses, StatusListManagementControllerDeleteListData, StatusListManagementControllerDeleteListResponses, StatusListManagementControllerGetListData, StatusListManagementControllerGetListResponses, StatusListManagementControllerGetListsData, StatusListManagementControllerGetListsResponses, StatusListManagementControllerUpdateListData, StatusListManagementControllerUpdateListResponses, StorageControllerDownloadData, StorageControllerDownloadResponses, StorageControllerUploadData, StorageControllerUploadResponses, TenantControllerDeleteTenantData, TenantControllerDeleteTenantResponses, TenantControllerGetTenantData, TenantControllerGetTenantResponses, TenantControllerGetTenantsData, TenantControllerGetTenantsResponses, TenantControllerInitTenantData, TenantControllerInitTenantResponses, TenantControllerUpdateTenantData, TenantControllerUpdateTenantResponses, TrustListControllerCreateTrustListData, TrustListControllerCreateTrustListResponses, TrustListControllerDeleteTrustListData, TrustListControllerDeleteTrustListResponses, TrustListControllerExportTrustListData, TrustListControllerExportTrustListResponses, TrustListControllerGetAllTrustListsData, TrustListControllerGetAllTrustListsResponses, TrustListControllerGetTrustListData, TrustListControllerGetTrustListResponses, TrustListControllerGetTrustListVersionData, TrustListControllerGetTrustListVersionResponses, TrustListControllerGetTrustListVersionsData, TrustListControllerGetTrustListVersionsResponses, TrustListControllerUpdateTrustListData, TrustListControllerUpdateTrustListResponses, TrustListPublicControllerGetTrustListJwtData, TrustListPublicControllerGetTrustListJwtResponses, VerifierOfferControllerGetOfferData, VerifierOfferControllerGetOfferResponses, WebhookEndpointControllerCreateData, WebhookEndpointControllerCreateResponses, WebhookEndpointControllerDeleteData, WebhookEndpointControllerDeleteErrors, WebhookEndpointControllerDeleteResponses, WebhookEndpointControllerGetAllData, WebhookEndpointControllerGetAllResponses, WebhookEndpointControllerGetByIdData, WebhookEndpointControllerGetByIdErrors, WebhookEndpointControllerGetByIdResponses, WebhookEndpointControllerUpdateData, WebhookEndpointControllerUpdateErrors, WebhookEndpointControllerUpdateResponses, WellKnownControllerAuthzMetadata0Data, WellKnownControllerAuthzMetadata0Responses, WellKnownControllerAuthzMetadata1Data, WellKnownControllerAuthzMetadata1Responses, WellKnownControllerChainedAsMetadataData, WellKnownControllerChainedAsMetadataResponses, WellKnownControllerGetJwks0Data, WellKnownControllerGetJwks0Responses, WellKnownControllerGetJwks1Data, WellKnownControllerGetJwks1Responses, WellKnownControllerIssuerMetadata0Data, WellKnownControllerIssuerMetadata0Responses, WellKnownControllerIssuerMetadata1Data, WellKnownControllerIssuerMetadata1Responses, appControllerMain, attributeProviderControllerCreate, attributeProviderControllerDelete, attributeProviderControllerGetAll, attributeProviderControllerGetById, attributeProviderControllerUpdate, authControllerGetGlobalJwks, authControllerGetOAuth2Token, authControllerGetOidcDiscovery, authorizeControllerAuthorize, authorizeControllerPar, authorizeControllerToken, cacheControllerClearAllCaches, cacheControllerClearStatusListCache, cacheControllerClearTrustListCache, cacheControllerGetStats, chainedAsControllerAuthorize, chainedAsControllerCallback, chainedAsControllerGetMetadata, chainedAsControllerJwks, chainedAsControllerPar, chainedAsControllerToken, clientControllerCreateClient, clientControllerDeleteClient, clientControllerGetClient, clientControllerGetClientSecret, clientControllerGetClients, clientControllerRotateClientSecret, clientControllerUpdateClient, credentialConfigControllerDeleteIssuanceConfiguration, credentialConfigControllerGetConfigById, credentialConfigControllerGetConfigs, credentialConfigControllerStoreCredentialConfiguration, credentialConfigControllerUpdateCredentialConfiguration, credentialOfferControllerGetOffer, deferredControllerCompleteDeferred, deferredControllerFailDeferred, healthControllerCheck, interactiveAuthorizationControllerCompleteWebAuth, interactiveAuthorizationControllerInteractiveAuthorization, issuanceConfigControllerGetIssuanceConfigurations, issuanceConfigControllerStoreIssuanceConfiguration, keyChainControllerCreate, keyChainControllerDelete, keyChainControllerExport, keyChainControllerGetAll, keyChainControllerGetById, keyChainControllerGetProviders, keyChainControllerImport, keyChainControllerRotate, keyChainControllerUpdate, oid4VciControllerCredential, oid4VciControllerDeferredCredential, oid4VciControllerNonce, oid4VciControllerNotifications, oid4VciMetadataControllerVct, oid4VpControllerGetPostRequestWithSession, oid4VpControllerGetRequestNoRedirectWithSession, oid4VpControllerGetRequestWithSession, oid4VpControllerGetResponse, presentationManagementControllerConfiguration, presentationManagementControllerDeleteConfiguration, presentationManagementControllerGetConfiguration, presentationManagementControllerStorePresentationConfig, presentationManagementControllerUpdateConfiguration, registrarControllerCreateAccessCertificate, registrarControllerCreateConfig, registrarControllerDeleteConfig, registrarControllerGetConfig, registrarControllerUpdateConfig, sessionConfigControllerGetConfig, sessionConfigControllerResetConfig, sessionConfigControllerUpdateConfig, sessionControllerDeleteSession, sessionControllerGetAllSessions, sessionControllerGetSession, sessionControllerRevokeAll, sessionEventsControllerSubscribeToSessionEvents, statusListConfigControllerGetConfig, statusListConfigControllerResetConfig, statusListConfigControllerUpdateConfig, statusListControllerGetList, statusListControllerGetStatusListAggregation, statusListManagementControllerCreateList, statusListManagementControllerDeleteList, statusListManagementControllerGetList, statusListManagementControllerGetLists, statusListManagementControllerUpdateList, storageControllerDownload, storageControllerUpload, tenantControllerDeleteTenant, tenantControllerGetTenant, tenantControllerGetTenants, tenantControllerInitTenant, tenantControllerUpdateTenant, trustListControllerCreateTrustList, trustListControllerDeleteTrustList, trustListControllerExportTrustList, trustListControllerGetAllTrustLists, trustListControllerGetTrustList, trustListControllerGetTrustListVersion, trustListControllerGetTrustListVersions, trustListControllerUpdateTrustList, trustListPublicControllerGetTrustListJwt, verifierOfferControllerGetOffer, webhookEndpointControllerCreate, webhookEndpointControllerDelete, webhookEndpointControllerGetAll, webhookEndpointControllerGetById, webhookEndpointControllerUpdate, wellKnownControllerAuthzMetadata0, wellKnownControllerAuthzMetadata1, wellKnownControllerChainedAsMetadata, wellKnownControllerGetJwks0, wellKnownControllerGetJwks1, wellKnownControllerIssuerMetadata0, wellKnownControllerIssuerMetadata1 };