@eudiplo/sdk-core 1.14.0-main.a789f79 → 1.14.0-main.a8faebc

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
@@ -82,6 +82,156 @@ await waitForCompletion();
82
82
  | `verifyAndWait(options)` | One-liner: create request + wait for result |
83
83
  | `issueAndWait(options)` | One-liner: create offer + wait for result |
84
84
 
85
+ ### Digital Credentials API (Browser Native)
86
+
87
+ The SDK includes utilities for the [Digital Credentials API](https://wicg.github.io/digital-credentials/), enabling browser-native credential presentation without QR codes.
88
+
89
+ ```typescript
90
+ import { isDcApiAvailable, verifyWithDcApi } from '@eudiplo/sdk-core';
91
+
92
+ // Check if browser supports DC API
93
+ if (isDcApiAvailable()) {
94
+ const result = await verifyWithDcApi({
95
+ baseUrl: 'https://eudiplo.example.com',
96
+ clientId: 'my-demo',
97
+ clientSecret: 'secret',
98
+ configId: 'age-over-18',
99
+ });
100
+
101
+ console.log('Verified!', result.session.credentials);
102
+ } else {
103
+ // Fall back to QR code flow
104
+ const session = await verifyAndWait({...});
105
+ }
106
+ ```
107
+
108
+ #### DC API Functions
109
+
110
+ | Function | Description |
111
+ | ---------------------- | --------------------------------------------------- |
112
+ | `isDcApiAvailable()` | Check if browser supports Digital Credentials API |
113
+ | `verifyWithDcApi()` | Complete verification flow using browser-native API |
114
+ | `createDcApiRequest()` | Create a `DigitalCredentialRequestOptions` object |
115
+
116
+ #### Lower-level DC API Usage
117
+
118
+ ```typescript
119
+ import { createDcApiRequest, EudiploClient } from '@eudiplo/sdk-core';
120
+
121
+ const client = new EudiploClient({...});
122
+
123
+ // Create presentation request
124
+ const { uri, sessionId } = await client.createPresentationRequest({
125
+ configId: 'age-over-18',
126
+ responseType: 'dc-api',
127
+ });
128
+
129
+ // Create the browser request object
130
+ const request = createDcApiRequest(uri);
131
+
132
+ // Call the browser API directly
133
+ const credential = await navigator.credentials.get(request);
134
+
135
+ // Submit the response and get verified session
136
+ const session = await client.submitDcApiResponse(sessionId, credential);
137
+ ```
138
+
139
+ #### Secure Server/Client Deployment (Recommended for Production)
140
+
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
+
143
+ **Server-side Functions:**
144
+ | Function | Description |
145
+ | ---------------------- | --------------------------------------------------- |
146
+ | `createDcApiRequestForBrowser()` | Create request on server, return safe data for browser |
147
+ | `submitDcApiWalletResponse()` | Submit wallet response to EUDIPLO from server |
148
+
149
+ **Browser-side Functions:**
150
+ | Function | Description |
151
+ | ---------------------- | --------------------------------------------------- |
152
+ | `callDcApi()` | Call the native DC API with a request from your server |
153
+
154
+ ##### Example: Express.js Backend + Browser Frontend
155
+
156
+ **Server (Express.js / Next.js API route):**
157
+
158
+ ```typescript
159
+ import {
160
+ createDcApiRequestForBrowser,
161
+ submitDcApiWalletResponse,
162
+ } from '@eudiplo/sdk-core';
163
+
164
+ // POST /api/start-verification
165
+ app.post('/api/start-verification', async (req, res) => {
166
+ const requestData = await createDcApiRequestForBrowser({
167
+ 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
+ configId: 'age-over-18',
171
+ });
172
+
173
+ // Only safe data is sent to browser (no secrets)
174
+ res.json(requestData);
175
+ });
176
+
177
+ // POST /api/complete-verification
178
+ app.post('/api/complete-verification', async (req, res) => {
179
+ const { responseUri, walletResponse } = req.body;
180
+
181
+ const result = await submitDcApiWalletResponse({
182
+ responseUri,
183
+ walletResponse,
184
+ sendResponse: true, // Get verified claims back
185
+ });
186
+
187
+ // result.credentials contains the verified data
188
+ res.json(result);
189
+ });
190
+ ```
191
+
192
+ **Browser (React / vanilla JS):**
193
+
194
+ ```typescript
195
+ import { callDcApi, isDcApiAvailable } from '@eudiplo/sdk-core';
196
+
197
+ async function verifyAge() {
198
+ // 1. Get the request from your server (credentials stay on server)
199
+ const requestData = await fetch('/api/start-verification', {
200
+ method: 'POST',
201
+ }).then((r) => r.json());
202
+
203
+ // 2. Check DC API support and call it locally
204
+ if (!isDcApiAvailable()) {
205
+ throw new Error('Digital Credentials API not supported');
206
+ }
207
+
208
+ const walletResponse = await callDcApi(requestData.requestObject);
209
+
210
+ // 3. Send the wallet response back to your server for verification
211
+ const result = await fetch('/api/complete-verification', {
212
+ method: 'POST',
213
+ headers: { 'Content-Type': 'application/json' },
214
+ body: JSON.stringify({
215
+ responseUri: requestData.responseUri,
216
+ walletResponse,
217
+ }),
218
+ }).then((r) => r.json());
219
+
220
+ console.log('Verified!', result.credentials);
221
+ return result;
222
+ }
223
+ ```
224
+
225
+ **What stays where:**
226
+
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 |
234
+
85
235
  ### Class-based API (More Control)
86
236
 
87
237
  ```typescript
@@ -1,5 +1,5 @@
1
1
  import { C as Client, a as ClientOptions, b as Config } from '../types.gen-DDunhhsd.mjs';
2
- import { ai as ClientOptions$1 } from '../types.gen-KKg4o5Hj.mjs';
2
+ import { aw as ClientOptions$1 } from '../types.gen-CVlM1-va.mjs';
3
3
 
4
4
  /**
5
5
  * The `createClientConfig()` function will be called on client initialization
@@ -1,5 +1,5 @@
1
1
  import { C as Client, a as ClientOptions, b as Config } from '../types.gen-DDunhhsd.js';
2
- import { ai as ClientOptions$1 } from '../types.gen-KKg4o5Hj.js';
2
+ import { aw as ClientOptions$1 } from '../types.gen-CVlM1-va.js';
3
3
 
4
4
  /**
5
5
  * The `createClientConfig()` function will be called on client initialization
@@ -1,6 +1,6 @@
1
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 CertControllerAddCertificateData, F as CertControllerAddCertificateResponses, G as CertControllerDeleteCertificateData, H as CertControllerDeleteCertificateResponses, I as CertControllerExportConfigData, K as CertControllerExportConfigResponses, L as CertControllerGetCertificateData, N as CertControllerGetCertificateResponses, O as CertControllerGetCertificatesData, Q as CertControllerGetCertificatesResponses, R as CertControllerUpdateCertificateData, T as CertControllerUpdateCertificateResponses, $ as ClientControllerCreateClientData, a1 as ClientControllerCreateClientResponses, a2 as ClientControllerDeleteClientData, a3 as ClientControllerDeleteClientResponses, a4 as ClientControllerGetClientData, a6 as ClientControllerGetClientResponses, a7 as ClientControllerGetClientSecretData, a9 as ClientControllerGetClientSecretResponses, aa as ClientControllerGetClientsData, ac as ClientControllerGetClientsResponses, ad as ClientControllerUpdateClientData, af as ClientControllerUpdateClientResponses, aq as CredentialConfigControllerDeleteIssuanceConfigurationData, ar as CredentialConfigControllerDeleteIssuanceConfigurationResponses, as as CredentialConfigControllerGetConfigByIdData, au as CredentialConfigControllerGetConfigByIdResponses, av as CredentialConfigControllerGetConfigsData, ax as CredentialConfigControllerGetConfigsResponses, ay as CredentialConfigControllerStoreCredentialConfigurationData, aA as CredentialConfigControllerStoreCredentialConfigurationResponses, aB as CredentialConfigControllerUpdateCredentialConfigurationData, aD as CredentialConfigControllerUpdateCredentialConfigurationResponses, aG as CredentialOfferControllerGetOfferData, aI as CredentialOfferControllerGetOfferResponses, aT as HealthControllerCheckData, aX as HealthControllerCheckResponses, aV as HealthControllerCheckErrors, a_ as IssuanceConfigControllerGetIssuanceConfigurationsData, b0 as IssuanceConfigControllerGetIssuanceConfigurationsResponses, b1 as IssuanceConfigControllerStoreIssuanceConfigurationData, b3 as IssuanceConfigControllerStoreIssuanceConfigurationResponses, b8 as KeyControllerAddKeyData, b9 as KeyControllerAddKeyResponses, ba as KeyControllerDeleteKeyData, bb as KeyControllerDeleteKeyResponses, bc as KeyControllerGetKeyData, be as KeyControllerGetKeyResponses, bf as KeyControllerGetKeysData, bh as KeyControllerGetKeysResponses, bi as KeyControllerUpdateKeyData, bj as KeyControllerUpdateKeyResponses, bq as Oid4VciControllerCredentialData, br as Oid4VciControllerCredentialResponses, bs as Oid4VciControllerNonceData, bt as Oid4VciControllerNonceResponses, bu as Oid4VciControllerNotificationsData, bv as Oid4VciControllerNotificationsResponses, bw as Oid4VciMetadataControllerVctData, by as Oid4VciMetadataControllerVctResponses, bz as Oid4VpControllerGetPostRequestWithSessionData, bB as Oid4VpControllerGetPostRequestWithSessionResponses, bC as Oid4VpControllerGetRequestWithSessionData, bE as Oid4VpControllerGetRequestWithSessionResponses, bF as Oid4VpControllerGetResponseData, bH as Oid4VpControllerGetResponseResponses, bP as PresentationManagementControllerConfigurationData, bR as PresentationManagementControllerConfigurationResponses, bS as PresentationManagementControllerDeleteConfigurationData, bT as PresentationManagementControllerDeleteConfigurationResponses, bU as PresentationManagementControllerGetConfigurationData, bW as PresentationManagementControllerGetConfigurationResponses, bX as PresentationManagementControllerStorePresentationConfigData, bZ as PresentationManagementControllerStorePresentationConfigResponses, b_ as PresentationManagementControllerUpdateConfigurationData, c0 as PresentationManagementControllerUpdateConfigurationResponses, c2 as PrometheusControllerIndexData, c3 as PrometheusControllerIndexResponses, c5 as RegistrarControllerCreateAccessCertificateData, c8 as RegistrarControllerCreateAccessCertificateResponses, c6 as RegistrarControllerCreateAccessCertificateErrors, c9 as RegistrarControllerCreateConfigData, cc as RegistrarControllerCreateConfigResponses, ca as RegistrarControllerCreateConfigErrors, cd as RegistrarControllerDeleteConfigData, cf as RegistrarControllerDeleteConfigResponses, cg as RegistrarControllerGetConfigData, cj as RegistrarControllerGetConfigResponses, ch as RegistrarControllerGetConfigErrors, ck as RegistrarControllerUpdateConfigData, cn as RegistrarControllerUpdateConfigResponses, cl as RegistrarControllerUpdateConfigErrors, cs as SessionConfigControllerGetConfigData, cu as SessionConfigControllerGetConfigResponses, cv as SessionConfigControllerResetConfigData, cw as SessionConfigControllerResetConfigResponses, cx as SessionConfigControllerUpdateConfigData, cz as SessionConfigControllerUpdateConfigResponses, cA as SessionControllerDeleteSessionData, cB as SessionControllerDeleteSessionResponses, cC as SessionControllerGetAllSessionsData, cE as SessionControllerGetAllSessionsResponses, cF as SessionControllerGetSessionData, cH as SessionControllerGetSessionResponses, cI as SessionControllerRevokeAllData, cJ as SessionControllerRevokeAllResponses, cN as StatusListConfigControllerGetConfigData, cP as StatusListConfigControllerGetConfigResponses, cQ as StatusListConfigControllerResetConfigData, cS as StatusListConfigControllerResetConfigResponses, cT as StatusListConfigControllerUpdateConfigData, cV as StatusListConfigControllerUpdateConfigResponses, cW as StatusListControllerGetListData, cY as StatusListControllerGetListResponses, cZ as StatusListControllerGetStatusListAggregationData, c$ as StatusListControllerGetStatusListAggregationResponses, d1 as StatusListManagementControllerCreateListData, d3 as StatusListManagementControllerCreateListResponses, d4 as StatusListManagementControllerDeleteListData, d6 as StatusListManagementControllerDeleteListResponses, d7 as StatusListManagementControllerGetListData, d9 as StatusListManagementControllerGetListResponses, da as StatusListManagementControllerGetListsData, dc as StatusListManagementControllerGetListsResponses, dd as StatusListManagementControllerUpdateListData, df as StatusListManagementControllerUpdateListResponses, di as StorageControllerDownloadData, dj as StorageControllerDownloadResponses, dk as StorageControllerUploadData, dm as StorageControllerUploadResponses, dn as TenantControllerDeleteTenantData, dp as TenantControllerDeleteTenantResponses, dq as TenantControllerGetTenantData, ds as TenantControllerGetTenantResponses, dt as TenantControllerGetTenantsData, dv as TenantControllerGetTenantsResponses, dw as TenantControllerInitTenantData, dx as TenantControllerInitTenantResponses, dy as TenantControllerUpdateTenantData, dA as TenantControllerUpdateTenantResponses, dF as TrustListControllerCreateTrustListData, dH as TrustListControllerCreateTrustListResponses, dI as TrustListControllerDeleteTrustListData, dJ as TrustListControllerDeleteTrustListResponses, dK as TrustListControllerExportTrustListData, dM as TrustListControllerExportTrustListResponses, dN as TrustListControllerGetAllTrustListsData, dP as TrustListControllerGetAllTrustListsResponses, dQ as TrustListControllerGetTrustListData, dS as TrustListControllerGetTrustListResponses, dT as TrustListControllerGetTrustListVersionData, dV as TrustListControllerGetTrustListVersionResponses, dW as TrustListControllerGetTrustListVersionsData, dY as TrustListControllerGetTrustListVersionsResponses, dZ as TrustListControllerUpdateTrustListData, d$ as TrustListControllerUpdateTrustListResponses, e1 as TrustListPublicControllerGetTrustListJwtData, e3 as TrustListPublicControllerGetTrustListJwtResponses, ee as VerifierOfferControllerGetOfferData, eg as VerifierOfferControllerGetOfferResponses, ek as WellKnownControllerAuthzMetadata0Data, el as WellKnownControllerAuthzMetadata0Responses, em as WellKnownControllerAuthzMetadata1Data, en as WellKnownControllerAuthzMetadata1Responses, eo as WellKnownControllerGetJwks0Data, eq as WellKnownControllerGetJwks0Responses, er as WellKnownControllerGetJwks1Data, et as WellKnownControllerGetJwks1Responses, eu as WellKnownControllerIssuerMetadata0Data, ew as WellKnownControllerIssuerMetadata0Responses, ex as WellKnownControllerIssuerMetadata1Data, ez as WellKnownControllerIssuerMetadata1Responses } from '../types.gen-KKg4o5Hj.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 CertControllerAddCertificateResponse, J as CertControllerExportConfigResponse, M as CertControllerGetCertificateResponse, P as CertControllerGetCertificatesResponse, U as CertEntity, V as CertImportDto, W as CertResponseDto, X as CertUpdateDto, Y as CertUsageEntity, Z as Claim, _ as ClaimsQuery, a0 as ClientControllerCreateClientResponse, a5 as ClientControllerGetClientResponse, a8 as ClientControllerGetClientSecretResponse, ab as ClientControllerGetClientsResponse, ae as ClientControllerUpdateClientResponse, ag as ClientCredentialsDto, ah as ClientEntity, ai as ClientOptions, aj as ClientSecretResponseDto, ak as CreateAccessCertificateDto, al as CreateClientDto, am as CreateRegistrarConfigDto, an as CreateStatusListDto, ao as CreateTenantDto, ap as CredentialConfig, at as CredentialConfigControllerGetConfigByIdResponse, aw as CredentialConfigControllerGetConfigsResponse, az as CredentialConfigControllerStoreCredentialConfigurationResponse, aC as CredentialConfigControllerUpdateCredentialConfigurationResponse, aE as CredentialConfigCreate, aF as CredentialConfigUpdate, aH as CredentialOfferControllerGetOfferResponse, aJ as CredentialQuery, aK as CredentialSetQuery, aL as Dcql, aM as Display, aN as DisplayImage, aO as DisplayInfo, aP as DisplayLogo, aQ as EcPublic, aR as EmbeddedDisclosurePolicy, aS as FileUploadDto, aU as HealthControllerCheckError, aW as HealthControllerCheckResponse, aY as ImportTenantDto, aZ as IssuanceConfig, a$ as IssuanceConfigControllerGetIssuanceConfigurationsResponse, b2 as IssuanceConfigControllerStoreIssuanceConfigurationResponse, b4 as IssuanceDto, b5 as IssuerMetadataCredentialConfig, b6 as JwksResponseDto, b7 as Key, bd as KeyControllerGetKeyResponse, bg as KeyControllerGetKeysResponse, bk as KeyEntity, bl as KeyImportDto, bm as NoneTrustPolicy, bn as NotificationRequestDto, bo as OfferRequestDto, bp as OfferResponse, bx as Oid4VciMetadataControllerVctResponse, bA as Oid4VpControllerGetPostRequestWithSessionResponse, bD as Oid4VpControllerGetRequestWithSessionResponse, bG as Oid4VpControllerGetResponseResponse, bI as ParResponseDto, bJ as PolicyCredential, bK as PresentationAttachment, bL as PresentationConfig, bM as PresentationConfigCreateDto, bN as PresentationConfigUpdateDto, bO as PresentationDuringIssuanceConfig, bQ as PresentationManagementControllerConfigurationResponse, bV as PresentationManagementControllerGetConfigurationResponse, bY as PresentationManagementControllerStorePresentationConfigResponse, b$ as PresentationManagementControllerUpdateConfigurationResponse, c1 as PresentationRequest, c4 as RegistrarConfigEntity, c7 as RegistrarControllerCreateAccessCertificateResponse, cb as RegistrarControllerCreateConfigResponse, ce as RegistrarControllerDeleteConfigResponse, ci as RegistrarControllerGetConfigResponse, cm as RegistrarControllerUpdateConfigResponse, co as RegistrationCertificateRequest, cp as RoleDto, cq as RootOfTrustPolicy, cr as SchemaResponse, S as Session, ct as SessionConfigControllerGetConfigResponse, cy as SessionConfigControllerUpdateConfigResponse, cD as SessionControllerGetAllSessionsResponse, cG as SessionControllerGetSessionResponse, cK as SessionStorageConfig, cL as StatusListAggregationDto, cM as StatusListConfig, cO as StatusListConfigControllerGetConfigResponse, cR as StatusListConfigControllerResetConfigResponse, cU as StatusListConfigControllerUpdateConfigResponse, cX as StatusListControllerGetListResponse, c_ as StatusListControllerGetStatusListAggregationResponse, d0 as StatusListImportDto, d2 as StatusListManagementControllerCreateListResponse, d5 as StatusListManagementControllerDeleteListResponse, d8 as StatusListManagementControllerGetListResponse, db as StatusListManagementControllerGetListsResponse, de as StatusListManagementControllerUpdateListResponse, dg as StatusListResponseDto, dh as StatusUpdateDto, dl as StorageControllerUploadResponse, dr as TenantControllerGetTenantResponse, du as TenantControllerGetTenantsResponse, dz as TenantControllerUpdateTenantResponse, dB as TenantEntity, dC as TokenResponse, dD as TransactionData, dE as TrustList, dG as TrustListControllerCreateTrustListResponse, dL as TrustListControllerExportTrustListResponse, dO as TrustListControllerGetAllTrustListsResponse, dR as TrustListControllerGetTrustListResponse, dU as TrustListControllerGetTrustListVersionResponse, dX as TrustListControllerGetTrustListVersionsResponse, d_ as TrustListControllerUpdateTrustListResponse, e0 as TrustListCreateDto, e2 as TrustListPublicControllerGetTrustListJwtResponse, e4 as TrustListVersion, e5 as TrustedAuthorityQuery, e6 as UpdateClientDto, e7 as UpdateKeyDto, e8 as UpdateRegistrarConfigDto, e9 as UpdateSessionConfigDto, ea as UpdateStatusListConfigDto, eb as UpdateStatusListDto, ec as UpdateTenantDto, ed as Vct, ef as VerifierOfferControllerGetOfferResponse, eh as WebHookAuthConfigHeader, ei as WebHookAuthConfigNone, ej as WebhookConfig, ep as WellKnownControllerGetJwks0Response, es as WellKnownControllerGetJwks1Response, ev as WellKnownControllerIssuerMetadata0Response, ey as WellKnownControllerIssuerMetadata1Response } from '../types.gen-KKg4o5Hj.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, bo as IssuanceConfigControllerGetIssuanceConfigurationsData, bq as IssuanceConfigControllerGetIssuanceConfigurationsResponses, br as IssuanceConfigControllerStoreIssuanceConfigurationData, bt as IssuanceConfigControllerStoreIssuanceConfigurationResponses, by as KeyControllerAddKeyData, bz as KeyControllerAddKeyResponses, bA as KeyControllerDeleteKeyData, bB as KeyControllerDeleteKeyResponses, bC as KeyControllerGetKeyData, bE as KeyControllerGetKeyResponses, bF as KeyControllerGetKeysData, bH as KeyControllerGetKeysResponses, bI as KeyControllerUpdateKeyData, bJ as KeyControllerUpdateKeyResponses, bQ as Oid4VciControllerCredentialData, bS as Oid4VciControllerCredentialResponses, bT as Oid4VciControllerDeferredCredentialData, bU as Oid4VciControllerDeferredCredentialResponses, bV as Oid4VciControllerNonceData, bW as Oid4VciControllerNonceResponses, bX as Oid4VciControllerNotificationsData, bY as Oid4VciControllerNotificationsResponses, bZ as Oid4VciMetadataControllerVctData, b$ as Oid4VciMetadataControllerVctResponses, c0 as Oid4VpControllerGetPostRequestWithSessionData, c2 as Oid4VpControllerGetPostRequestWithSessionResponses, c3 as Oid4VpControllerGetRequestNoRedirectWithSessionData, c5 as Oid4VpControllerGetRequestNoRedirectWithSessionResponses, c6 as Oid4VpControllerGetRequestWithSessionData, c8 as Oid4VpControllerGetRequestWithSessionResponses, c9 as Oid4VpControllerGetResponseData, cb as Oid4VpControllerGetResponseResponses, cj as PresentationManagementControllerConfigurationData, cl as PresentationManagementControllerConfigurationResponses, cm as PresentationManagementControllerDeleteConfigurationData, cn as PresentationManagementControllerDeleteConfigurationResponses, co as PresentationManagementControllerGetConfigurationData, cq as PresentationManagementControllerGetConfigurationResponses, cr as PresentationManagementControllerStorePresentationConfigData, ct as PresentationManagementControllerStorePresentationConfigResponses, cu as PresentationManagementControllerUpdateConfigurationData, cw as PresentationManagementControllerUpdateConfigurationResponses, cy as PrometheusControllerIndexData, cz as PrometheusControllerIndexResponses, cB as RegistrarControllerCreateAccessCertificateData, cE as RegistrarControllerCreateAccessCertificateResponses, cC as RegistrarControllerCreateAccessCertificateErrors, cF as RegistrarControllerCreateConfigData, cI as RegistrarControllerCreateConfigResponses, cG as RegistrarControllerCreateConfigErrors, cJ as RegistrarControllerDeleteConfigData, cL as RegistrarControllerDeleteConfigResponses, cM as RegistrarControllerGetConfigData, cP as RegistrarControllerGetConfigResponses, cN as RegistrarControllerGetConfigErrors, cQ as RegistrarControllerUpdateConfigData, cT as RegistrarControllerUpdateConfigResponses, cR as RegistrarControllerUpdateConfigErrors, cY as SessionConfigControllerGetConfigData, c_ as SessionConfigControllerGetConfigResponses, c$ as SessionConfigControllerResetConfigData, d0 as SessionConfigControllerResetConfigResponses, d1 as SessionConfigControllerUpdateConfigData, d3 as SessionConfigControllerUpdateConfigResponses, d4 as SessionControllerDeleteSessionData, d5 as SessionControllerDeleteSessionResponses, d6 as SessionControllerGetAllSessionsData, d8 as SessionControllerGetAllSessionsResponses, d9 as SessionControllerGetSessionData, db as SessionControllerGetSessionResponses, dc as SessionControllerRevokeAllData, dd as SessionControllerRevokeAllResponses, dh as StatusListConfigControllerGetConfigData, dj as StatusListConfigControllerGetConfigResponses, dk as StatusListConfigControllerResetConfigData, dm as StatusListConfigControllerResetConfigResponses, dn as StatusListConfigControllerUpdateConfigData, dq as StatusListConfigControllerUpdateConfigResponses, dr as StatusListControllerGetListData, dt as StatusListControllerGetListResponses, du as StatusListControllerGetStatusListAggregationData, dw as StatusListControllerGetStatusListAggregationResponses, dy as StatusListManagementControllerCreateListData, dA as StatusListManagementControllerCreateListResponses, dB as StatusListManagementControllerDeleteListData, dD as StatusListManagementControllerDeleteListResponses, dE as StatusListManagementControllerGetListData, dG as StatusListManagementControllerGetListResponses, dH as StatusListManagementControllerGetListsData, dJ as StatusListManagementControllerGetListsResponses, dK as StatusListManagementControllerUpdateListData, dM as StatusListManagementControllerUpdateListResponses, dP as StorageControllerDownloadData, dQ as StorageControllerDownloadResponses, dR as StorageControllerUploadData, dT as StorageControllerUploadResponses, dU as TenantControllerDeleteTenantData, dV as TenantControllerDeleteTenantResponses, dW as TenantControllerGetTenantData, dY as TenantControllerGetTenantResponses, dZ as TenantControllerGetTenantsData, d$ as TenantControllerGetTenantsResponses, e0 as TenantControllerInitTenantData, e2 as TenantControllerInitTenantResponses, e3 as TenantControllerUpdateTenantData, e5 as TenantControllerUpdateTenantResponses, ea as TrustListControllerCreateTrustListData, ec as TrustListControllerCreateTrustListResponses, ed as TrustListControllerDeleteTrustListData, ee as TrustListControllerDeleteTrustListResponses, ef as TrustListControllerExportTrustListData, eh as TrustListControllerExportTrustListResponses, ei as TrustListControllerGetAllTrustListsData, ek as TrustListControllerGetAllTrustListsResponses, el as TrustListControllerGetTrustListData, en as TrustListControllerGetTrustListResponses, eo as TrustListControllerGetTrustListVersionData, eq as TrustListControllerGetTrustListVersionResponses, er as TrustListControllerGetTrustListVersionsData, et as TrustListControllerGetTrustListVersionsResponses, eu as TrustListControllerUpdateTrustListData, ew as TrustListControllerUpdateTrustListResponses, ey as TrustListPublicControllerGetTrustListJwtData, eA as TrustListPublicControllerGetTrustListJwtResponses, eL as VerifierOfferControllerGetOfferData, eN as VerifierOfferControllerGetOfferResponses, eR as WellKnownControllerAuthzMetadata0Data, eS as WellKnownControllerAuthzMetadata0Responses, eT as WellKnownControllerAuthzMetadata1Data, eU as WellKnownControllerAuthzMetadata1Responses, eV as WellKnownControllerGetJwks0Data, eX as WellKnownControllerGetJwks0Responses, eY as WellKnownControllerGetJwks1Data, e_ as WellKnownControllerGetJwks1Responses, e$ as WellKnownControllerIssuerMetadata0Data, f1 as WellKnownControllerIssuerMetadata0Responses, f2 as WellKnownControllerIssuerMetadata1Data, f4 as WellKnownControllerIssuerMetadata1Responses } from '../types.gen-CVlM1-va.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 ImportTenantDto, bn as IssuanceConfig, bp as IssuanceConfigControllerGetIssuanceConfigurationsResponse, bs as IssuanceConfigControllerStoreIssuanceConfigurationResponse, bu as IssuanceDto, bv as IssuerMetadataCredentialConfig, bw as JwksResponseDto, bx as Key, bD as KeyControllerGetKeyResponse, bG as KeyControllerGetKeysResponse, bK as KeyEntity, bL as KeyImportDto, bM as NoneTrustPolicy, bN as NotificationRequestDto, bO as OfferRequestDto, bP as OfferResponse, bR as Oid4VciControllerCredentialResponse, b_ as Oid4VciMetadataControllerVctResponse, c1 as Oid4VpControllerGetPostRequestWithSessionResponse, c4 as Oid4VpControllerGetRequestNoRedirectWithSessionResponse, c7 as Oid4VpControllerGetRequestWithSessionResponse, ca as Oid4VpControllerGetResponseResponse, cc as ParResponseDto, cd as PolicyCredential, ce as PresentationAttachment, cf as PresentationConfig, cg as PresentationConfigCreateDto, ch as PresentationConfigUpdateDto, ci as PresentationDuringIssuanceConfig, ck as PresentationManagementControllerConfigurationResponse, cp as PresentationManagementControllerGetConfigurationResponse, cs as PresentationManagementControllerStorePresentationConfigResponse, cv as PresentationManagementControllerUpdateConfigurationResponse, cx as PresentationRequest, cA as RegistrarConfigEntity, cD as RegistrarControllerCreateAccessCertificateResponse, cH as RegistrarControllerCreateConfigResponse, cK as RegistrarControllerDeleteConfigResponse, cO as RegistrarControllerGetConfigResponse, cS as RegistrarControllerUpdateConfigResponse, cU as RegistrationCertificateRequest, cV as RoleDto, cW as RootOfTrustPolicy, cX as SchemaResponse, S as Session, cZ as SessionConfigControllerGetConfigResponse, d2 as SessionConfigControllerUpdateConfigResponse, d7 as SessionControllerGetAllSessionsResponse, da as SessionControllerGetSessionResponse, de as SessionStorageConfig, df as StatusListAggregationDto, dg as StatusListConfig, di as StatusListConfigControllerGetConfigResponse, dl as StatusListConfigControllerResetConfigResponse, dp as StatusListConfigControllerUpdateConfigResponse, ds as StatusListControllerGetListResponse, dv as StatusListControllerGetStatusListAggregationResponse, dx as StatusListImportDto, dz as StatusListManagementControllerCreateListResponse, dC as StatusListManagementControllerDeleteListResponse, dF as StatusListManagementControllerGetListResponse, dI as StatusListManagementControllerGetListsResponse, dL as StatusListManagementControllerUpdateListResponse, dN as StatusListResponseDto, dO as StatusUpdateDto, dS as StorageControllerUploadResponse, dX as TenantControllerGetTenantResponse, d_ as TenantControllerGetTenantsResponse, e1 as TenantControllerInitTenantResponse, e4 as TenantControllerUpdateTenantResponse, e6 as TenantEntity, e7 as TokenResponse, e8 as TransactionData, e9 as TrustList, eb as TrustListControllerCreateTrustListResponse, eg as TrustListControllerExportTrustListResponse, ej as TrustListControllerGetAllTrustListsResponse, em as TrustListControllerGetTrustListResponse, ep as TrustListControllerGetTrustListVersionResponse, es as TrustListControllerGetTrustListVersionsResponse, ev as TrustListControllerUpdateTrustListResponse, ex as TrustListCreateDto, ez as TrustListPublicControllerGetTrustListJwtResponse, eB as TrustListVersion, eC as TrustedAuthorityQuery, eD as UpdateClientDto, eE as UpdateKeyDto, eF as UpdateRegistrarConfigDto, eG as UpdateSessionConfigDto, eH as UpdateStatusListConfigDto, eI as UpdateStatusListDto, eJ as UpdateTenantDto, eK as Vct, eM as VerifierOfferControllerGetOfferResponse, eO as WebHookAuthConfigHeader, eP as WebHookAuthConfigNone, eQ as WebhookConfig, eW as WellKnownControllerGetJwks0Response, eZ as WellKnownControllerGetJwks1Response, f0 as WellKnownControllerIssuerMetadata0Response, f3 as WellKnownControllerIssuerMetadata1Response } from '../types.gen-CVlM1-va.mjs';
4
4
 
5
5
  type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = Options$1<TData, ThrowOnError> & {
6
6
  /**
@@ -81,10 +81,12 @@ declare const clientControllerGetClient: <ThrowOnError extends boolean = true>(o
81
81
  * Update a client by its id
82
82
  */
83
83
  declare const clientControllerUpdateClient: <ThrowOnError extends boolean = true>(options: Options<ClientControllerUpdateClientData, ThrowOnError>) => RequestResult<ClientControllerUpdateClientResponses, unknown, ThrowOnError, "fields">;
84
+ declare const clientControllerGetClientSecret: <ThrowOnError extends boolean = true>(options: Options<ClientControllerGetClientSecretData, ThrowOnError>) => RequestResult<ClientControllerGetClientSecretResponses, unknown, ThrowOnError, "fields">;
84
85
  /**
85
- * Get a client's secret by its id
86
+ * Rotate (regenerate) a client's secret.
87
+ * Returns the new secret for one-time display - save it immediately!
86
88
  */
87
- declare const clientControllerGetClientSecret: <ThrowOnError extends boolean = true>(options: Options<ClientControllerGetClientSecretData, ThrowOnError>) => RequestResult<ClientControllerGetClientSecretResponses, unknown, ThrowOnError, "fields">;
89
+ declare const clientControllerRotateClientSecret: <ThrowOnError extends boolean = true>(options: Options<ClientControllerRotateClientSecretData, ThrowOnError>) => RequestResult<ClientControllerRotateClientSecretResponses, unknown, ThrowOnError, "fields">;
88
90
  /**
89
91
  * Get all keys for the tenant.
90
92
  */
@@ -254,6 +256,13 @@ declare const credentialConfigControllerUpdateCredentialConfiguration: <ThrowOnE
254
256
  * Endpoint to issue credentials
255
257
  */
256
258
  declare const oid4VciControllerCredential: <ThrowOnError extends boolean = true>(options: Options<Oid4VciControllerCredentialData, ThrowOnError>) => RequestResult<Oid4VciControllerCredentialResponses, unknown, ThrowOnError, "fields">;
259
+ /**
260
+ * Deferred Credential Endpoint
261
+ *
262
+ * According to OID4VCI Section 9, this endpoint is used by the wallet to poll
263
+ * for credentials that were not immediately available.
264
+ */
265
+ declare const oid4VciControllerDeferredCredential: <ThrowOnError extends boolean = true>(options: Options<Oid4VciControllerDeferredCredentialData, ThrowOnError>) => RequestResult<Oid4VciControllerDeferredCredentialResponses, unknown, ThrowOnError, "fields">;
257
266
  /**
258
267
  * Notification endpoint
259
268
  */
@@ -280,6 +289,18 @@ declare const authorizeControllerAuthorizationChallengeEndpoint: <ThrowOnError e
280
289
  * Create an offer for a credential.
281
290
  */
282
291
  declare const credentialOfferControllerGetOffer: <ThrowOnError extends boolean = true>(options: Options<CredentialOfferControllerGetOfferData, ThrowOnError>) => RequestResult<CredentialOfferControllerGetOfferResponses, unknown, ThrowOnError, "fields">;
292
+ /**
293
+ * Complete a deferred credential transaction
294
+ *
295
+ * Completes a pending deferred credential transaction by providing the claims. The credential will be generated and marked as ready for wallet retrieval.
296
+ */
297
+ declare const deferredControllerCompleteDeferred: <ThrowOnError extends boolean = true>(options: Options<DeferredControllerCompleteDeferredData, ThrowOnError>) => RequestResult<DeferredControllerCompleteDeferredResponses, DeferredControllerCompleteDeferredErrors, ThrowOnError, "fields">;
298
+ /**
299
+ * Fail a deferred credential transaction
300
+ *
301
+ * Marks a deferred credential transaction as failed. The wallet will receive an invalid_transaction_id error when attempting retrieval.
302
+ */
303
+ declare const deferredControllerFailDeferred: <ThrowOnError extends boolean = true>(options: Options<DeferredControllerFailDeferredData, ThrowOnError>) => RequestResult<DeferredControllerFailDeferredResponses, DeferredControllerFailDeferredErrors, ThrowOnError, "fields">;
283
304
  /**
284
305
  * Retrieves the VCT (Verifiable Credential Type) from the credentials service.
285
306
  */
@@ -320,6 +341,10 @@ declare const oid4VpControllerGetRequestWithSession: <ThrowOnError extends boole
320
341
  * Returns the authorization request for a given requestId and session.
321
342
  */
322
343
  declare const oid4VpControllerGetPostRequestWithSession: <ThrowOnError extends boolean = true>(options: Options<Oid4VpControllerGetPostRequestWithSessionData, ThrowOnError>) => RequestResult<Oid4VpControllerGetPostRequestWithSessionResponses, unknown, ThrowOnError, "fields">;
344
+ /**
345
+ * Returns the authorization request for a given requestId and session, but does not redirect in the end.
346
+ */
347
+ declare const oid4VpControllerGetRequestNoRedirectWithSession: <ThrowOnError extends boolean = true>(options: Options<Oid4VpControllerGetRequestNoRedirectWithSessionData, ThrowOnError>) => RequestResult<Oid4VpControllerGetRequestNoRedirectWithSessionResponses, unknown, ThrowOnError, "fields">;
323
348
  /**
324
349
  * Endpoint to receive the response from the wallet.
325
350
  */
@@ -366,6 +391,30 @@ declare const presentationManagementControllerGetConfiguration: <ThrowOnError ex
366
391
  * Update a presentation request configuration by its ID.
367
392
  */
368
393
  declare const presentationManagementControllerUpdateConfiguration: <ThrowOnError extends boolean = true>(options: Options<PresentationManagementControllerUpdateConfigurationData, ThrowOnError>) => RequestResult<PresentationManagementControllerUpdateConfigurationResponses, unknown, ThrowOnError, "fields">;
394
+ /**
395
+ * Get cache statistics
396
+ *
397
+ * Returns statistics about the trust list and status list caches.
398
+ */
399
+ declare const cacheControllerGetStats: <ThrowOnError extends boolean = true>(options?: Options<CacheControllerGetStatsData, ThrowOnError>) => RequestResult<CacheControllerGetStatsResponses, unknown, ThrowOnError, "fields">;
400
+ /**
401
+ * Clear all caches
402
+ *
403
+ * Clears both trust list and status list caches. Next verification will fetch fresh data.
404
+ */
405
+ declare const cacheControllerClearAllCaches: <ThrowOnError extends boolean = true>(options?: Options<CacheControllerClearAllCachesData, ThrowOnError>) => RequestResult<CacheControllerClearAllCachesResponses, unknown, ThrowOnError, "fields">;
406
+ /**
407
+ * Clear trust list cache
408
+ *
409
+ * Clears the trust list cache. Next verification will fetch fresh trust lists.
410
+ */
411
+ declare const cacheControllerClearTrustListCache: <ThrowOnError extends boolean = true>(options?: Options<CacheControllerClearTrustListCacheData, ThrowOnError>) => RequestResult<CacheControllerClearTrustListCacheResponses, unknown, ThrowOnError, "fields">;
412
+ /**
413
+ * Clear status list cache
414
+ *
415
+ * Clears the status list (revocation) cache. Next status check will fetch fresh status lists.
416
+ */
417
+ declare const cacheControllerClearStatusListCache: <ThrowOnError extends boolean = true>(options?: Options<CacheControllerClearStatusListCacheData, ThrowOnError>) => RequestResult<CacheControllerClearStatusListCacheResponses, unknown, ThrowOnError, "fields">;
369
418
  /**
370
419
  * Returns all trust lists for the tenant
371
420
  */
@@ -413,4 +462,4 @@ declare const verifierOfferControllerGetOffer: <ThrowOnError extends boolean = t
413
462
  declare const storageControllerUpload: <ThrowOnError extends boolean = true>(options: Options<StorageControllerUploadData, ThrowOnError>) => RequestResult<StorageControllerUploadResponses, unknown, ThrowOnError, "fields">;
414
463
  declare const storageControllerDownload: <ThrowOnError extends boolean = true>(options: Options<StorageControllerDownloadData, ThrowOnError>) => RequestResult<StorageControllerDownloadResponses, unknown, ThrowOnError, "fields">;
415
464
 
416
- export { AppControllerMainData, AppControllerMainResponses, AuthControllerGetGlobalJwksData, AuthControllerGetGlobalJwksResponses, AuthControllerGetOAuth2TokenData, AuthControllerGetOAuth2TokenErrors, AuthControllerGetOAuth2TokenResponses, AuthControllerGetOidcDiscoveryData, AuthControllerGetOidcDiscoveryResponses, AuthorizeControllerAuthorizationChallengeEndpointData, AuthorizeControllerAuthorizationChallengeEndpointResponses, AuthorizeControllerAuthorizeData, AuthorizeControllerAuthorizeResponses, AuthorizeControllerParData, AuthorizeControllerParResponses, AuthorizeControllerTokenData, AuthorizeControllerTokenResponses, CertControllerAddCertificateData, CertControllerAddCertificateResponses, CertControllerDeleteCertificateData, CertControllerDeleteCertificateResponses, CertControllerExportConfigData, CertControllerExportConfigResponses, CertControllerGetCertificateData, CertControllerGetCertificateResponses, CertControllerGetCertificatesData, CertControllerGetCertificatesResponses, CertControllerUpdateCertificateData, CertControllerUpdateCertificateResponses, ClientControllerCreateClientData, ClientControllerCreateClientResponses, ClientControllerDeleteClientData, ClientControllerDeleteClientResponses, ClientControllerGetClientData, ClientControllerGetClientResponses, ClientControllerGetClientSecretData, ClientControllerGetClientSecretResponses, ClientControllerGetClientsData, ClientControllerGetClientsResponses, ClientControllerUpdateClientData, ClientControllerUpdateClientResponses, CredentialConfigControllerDeleteIssuanceConfigurationData, CredentialConfigControllerDeleteIssuanceConfigurationResponses, CredentialConfigControllerGetConfigByIdData, CredentialConfigControllerGetConfigByIdResponses, CredentialConfigControllerGetConfigsData, CredentialConfigControllerGetConfigsResponses, CredentialConfigControllerStoreCredentialConfigurationData, CredentialConfigControllerStoreCredentialConfigurationResponses, CredentialConfigControllerUpdateCredentialConfigurationData, CredentialConfigControllerUpdateCredentialConfigurationResponses, CredentialOfferControllerGetOfferData, CredentialOfferControllerGetOfferResponses, HealthControllerCheckData, HealthControllerCheckErrors, HealthControllerCheckResponses, IssuanceConfigControllerGetIssuanceConfigurationsData, IssuanceConfigControllerGetIssuanceConfigurationsResponses, IssuanceConfigControllerStoreIssuanceConfigurationData, IssuanceConfigControllerStoreIssuanceConfigurationResponses, KeyControllerAddKeyData, KeyControllerAddKeyResponses, KeyControllerDeleteKeyData, KeyControllerDeleteKeyResponses, KeyControllerGetKeyData, KeyControllerGetKeyResponses, KeyControllerGetKeysData, KeyControllerGetKeysResponses, KeyControllerUpdateKeyData, KeyControllerUpdateKeyResponses, Oid4VciControllerCredentialData, Oid4VciControllerCredentialResponses, Oid4VciControllerNonceData, Oid4VciControllerNonceResponses, Oid4VciControllerNotificationsData, Oid4VciControllerNotificationsResponses, Oid4VciMetadataControllerVctData, Oid4VciMetadataControllerVctResponses, Oid4VpControllerGetPostRequestWithSessionData, Oid4VpControllerGetPostRequestWithSessionResponses, 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, certControllerAddCertificate, certControllerDeleteCertificate, certControllerExportConfig, certControllerGetCertificate, certControllerGetCertificates, certControllerUpdateCertificate, clientControllerCreateClient, clientControllerDeleteClient, clientControllerGetClient, clientControllerGetClientSecret, clientControllerGetClients, clientControllerUpdateClient, credentialConfigControllerDeleteIssuanceConfiguration, credentialConfigControllerGetConfigById, credentialConfigControllerGetConfigs, credentialConfigControllerStoreCredentialConfiguration, credentialConfigControllerUpdateCredentialConfiguration, credentialOfferControllerGetOffer, healthControllerCheck, issuanceConfigControllerGetIssuanceConfigurations, issuanceConfigControllerStoreIssuanceConfiguration, keyControllerAddKey, keyControllerDeleteKey, keyControllerGetKey, keyControllerGetKeys, keyControllerUpdateKey, oid4VciControllerCredential, oid4VciControllerNonce, oid4VciControllerNotifications, oid4VciMetadataControllerVct, oid4VpControllerGetPostRequestWithSession, 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 };
465
+ 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, 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, 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 };