@eudiplo/sdk-core 1.14.0-main.07a91c4 → 1.14.0-main.0ab528d

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,4 +1,4 @@
1
- import { C as Config, a as Client } from '../../types.gen-CIiveH8G.mjs';
1
+ import { b as Config, C as Client } from '../../types.gen-DDunhhsd.mjs';
2
2
 
3
3
  declare const createClient: (config?: Config) => Client;
4
4
 
@@ -1,4 +1,4 @@
1
- import { C as Config, a as Client } from '../../types.gen-CIiveH8G.js';
1
+ import { b as Config, C as Client } from '../../types.gen-DDunhhsd.js';
2
2
 
3
3
  declare const createClient: (config?: Config) => Client;
4
4
 
@@ -719,10 +719,14 @@ var createClient = (config = {}) => {
719
719
  case "arrayBuffer":
720
720
  case "blob":
721
721
  case "formData":
722
- case "json":
723
722
  case "text":
724
723
  data = await response[parseAs]();
725
724
  break;
725
+ case "json": {
726
+ const text = await response.text();
727
+ data = text ? JSON.parse(text) : {};
728
+ break;
729
+ }
726
730
  case "stream":
727
731
  return opts.responseStyle === "data" ? response.body : {
728
732
  data: response.body,
@@ -717,10 +717,14 @@ var createClient = (config = {}) => {
717
717
  case "arrayBuffer":
718
718
  case "blob":
719
719
  case "formData":
720
- case "json":
721
720
  case "text":
722
721
  data = await response[parseAs]();
723
722
  break;
723
+ case "json": {
724
+ const text = await response.text();
725
+ data = text ? JSON.parse(text) : {};
726
+ break;
727
+ }
724
728
  case "stream":
725
729
  return opts.responseStyle === "data" ? response.body : {
726
730
  data: response.body,
@@ -1,4 +1,4 @@
1
- export { A as Auth, a as Client, b as ClientOptions, C 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-CIiveH8G.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-DDunhhsd.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, a as Client, b as ClientOptions, C 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-CIiveH8G.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-DDunhhsd.js';
2
2
  export { createClient } from './client.gen.js';
3
3
 
4
4
  type Slot = "body" | "headers" | "path" | "query";
@@ -941,10 +941,14 @@ var createClient = (config = {}) => {
941
941
  case "arrayBuffer":
942
942
  case "blob":
943
943
  case "formData":
944
- case "json":
945
944
  case "text":
946
945
  data = await response[parseAs]();
947
946
  break;
947
+ case "json": {
948
+ const text = await response.text();
949
+ data = text ? JSON.parse(text) : {};
950
+ break;
951
+ }
948
952
  case "stream":
949
953
  return opts.responseStyle === "data" ? response.body : {
950
954
  data: response.body,
@@ -939,10 +939,14 @@ var createClient = (config = {}) => {
939
939
  case "arrayBuffer":
940
940
  case "blob":
941
941
  case "formData":
942
- case "json":
943
942
  case "text":
944
943
  data = await response[parseAs]();
945
944
  break;
945
+ case "json": {
946
+ const text = await response.text();
947
+ data = text ? JSON.parse(text) : {};
948
+ break;
949
+ }
946
950
  case "stream":
947
951
  return opts.responseStyle === "data" ? response.body : {
948
952
  data: response.body,
@@ -1 +1 @@
1
- export { a as Client, b as ClientOptions, C 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-CIiveH8G.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-DDunhhsd.mjs';
@@ -1 +1 @@
1
- export { a as Client, b as ClientOptions, C 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-CIiveH8G.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-DDunhhsd.js';
@@ -1,2 +1,15 @@
1
- import '../types.gen-CIiveH8G.mjs';
2
- export { ed as CreateClientConfig, ec as client } from '../client.gen-CU56lLgT.mjs';
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-CecAMjTS.mjs';
3
+
4
+ /**
5
+ * The `createClientConfig()` function will be called on client initialization
6
+ * and the returned object will become the client's initial configuration.
7
+ *
8
+ * You may want to initialize your client this way instead of calling
9
+ * `setConfig()`. This is useful for example if you're using Next.js
10
+ * to ensure your client always has the correct values.
11
+ */
12
+ type CreateClientConfig<T extends ClientOptions = ClientOptions$1> = (override?: Config<ClientOptions & T>) => Config<Required<ClientOptions> & T>;
13
+ declare const client: Client;
14
+
15
+ export { type CreateClientConfig, client };
@@ -1,2 +1,15 @@
1
- import '../types.gen-CIiveH8G.js';
2
- export { ed as CreateClientConfig, ec as client } from '../client.gen-CsfHl8pY.js';
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-CecAMjTS.js';
3
+
4
+ /**
5
+ * The `createClientConfig()` function will be called on client initialization
6
+ * and the returned object will become the client's initial configuration.
7
+ *
8
+ * You may want to initialize your client this way instead of calling
9
+ * `setConfig()`. This is useful for example if you're using Next.js
10
+ * to ensure your client always has the correct values.
11
+ */
12
+ type CreateClientConfig<T extends ClientOptions = ClientOptions$1> = (override?: Config<ClientOptions & T>) => Config<Required<ClientOptions> & T>;
13
+ declare const client: Client;
14
+
15
+ export { type CreateClientConfig, client };
@@ -719,10 +719,14 @@ var createClient = (config = {}) => {
719
719
  case "arrayBuffer":
720
720
  case "blob":
721
721
  case "formData":
722
- case "json":
723
722
  case "text":
724
723
  data = await response[parseAs]();
725
724
  break;
725
+ case "json": {
726
+ const text = await response.text();
727
+ data = text ? JSON.parse(text) : {};
728
+ break;
729
+ }
726
730
  case "stream":
727
731
  return opts.responseStyle === "data" ? response.body : {
728
732
  data: response.body,
@@ -717,10 +717,14 @@ var createClient = (config = {}) => {
717
717
  case "arrayBuffer":
718
718
  case "blob":
719
719
  case "formData":
720
- case "json":
721
720
  case "text":
722
721
  data = await response[parseAs]();
723
722
  break;
723
+ case "json": {
724
+ const text = await response.text();
725
+ data = text ? JSON.parse(text) : {};
726
+ break;
727
+ }
724
728
  case "stream":
725
729
  return opts.responseStyle === "data" ? response.body : {
726
730
  data: response.body,
@@ -1,6 +1,6 @@
1
- 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, ao as CredentialConfigControllerDeleteIssuanceConfigurationData, ap as CredentialConfigControllerDeleteIssuanceConfigurationResponses, aq as CredentialConfigControllerGetConfigByIdData, as as CredentialConfigControllerGetConfigByIdResponses, at as CredentialConfigControllerGetConfigsData, av as CredentialConfigControllerGetConfigsResponses, aw as CredentialConfigControllerStoreCredentialConfigurationData, ay as CredentialConfigControllerStoreCredentialConfigurationResponses, az as CredentialConfigControllerUpdateCredentialConfigurationData, aB as CredentialConfigControllerUpdateCredentialConfigurationResponses, aE as CredentialOfferControllerGetOfferData, aG as CredentialOfferControllerGetOfferResponses, aR as HealthControllerCheckData, aV as HealthControllerCheckResponses, aT as HealthControllerCheckErrors, aY as IssuanceConfigControllerGetIssuanceConfigurationsData, a_ as IssuanceConfigControllerGetIssuanceConfigurationsResponses, a$ as IssuanceConfigControllerStoreIssuanceConfigurationData, b1 as IssuanceConfigControllerStoreIssuanceConfigurationResponses, b6 as KeyControllerAddKeyData, b7 as KeyControllerAddKeyResponses, b8 as KeyControllerDeleteKeyData, b9 as KeyControllerDeleteKeyResponses, ba as KeyControllerGetKeyData, bc as KeyControllerGetKeyResponses, bd as KeyControllerGetKeysData, bf as KeyControllerGetKeysResponses, bg as KeyControllerUpdateKeyData, bh as KeyControllerUpdateKeyResponses, bo as Oid4VciControllerCredentialData, bp as Oid4VciControllerCredentialResponses, bq as Oid4VciControllerNonceData, br as Oid4VciControllerNonceResponses, bs as Oid4VciControllerNotificationsData, bt as Oid4VciControllerNotificationsResponses, bu as Oid4VciMetadataControllerVctData, bw as Oid4VciMetadataControllerVctResponses, bx as Oid4VpControllerGetPostRequestWithSessionData, bz as Oid4VpControllerGetPostRequestWithSessionResponses, bA as Oid4VpControllerGetRequestWithSessionData, bC as Oid4VpControllerGetRequestWithSessionResponses, bD as Oid4VpControllerGetResponseData, bF as Oid4VpControllerGetResponseResponses, bN as PresentationManagementControllerConfigurationData, bP as PresentationManagementControllerConfigurationResponses, bQ as PresentationManagementControllerDeleteConfigurationData, bR as PresentationManagementControllerDeleteConfigurationResponses, bS as PresentationManagementControllerGetConfigurationData, bU as PresentationManagementControllerGetConfigurationResponses, bV as PresentationManagementControllerStorePresentationConfigData, bX as PresentationManagementControllerStorePresentationConfigResponses, bY as PresentationManagementControllerUpdateConfigurationData, b_ as PresentationManagementControllerUpdateConfigurationResponses, c0 as PrometheusControllerIndexData, c1 as PrometheusControllerIndexResponses, c6 as SessionConfigControllerGetConfigData, c8 as SessionConfigControllerGetConfigResponses, c9 as SessionConfigControllerResetConfigData, ca as SessionConfigControllerResetConfigResponses, cb as SessionConfigControllerUpdateConfigData, cd as SessionConfigControllerUpdateConfigResponses, ce as SessionControllerDeleteSessionData, cf as SessionControllerDeleteSessionResponses, cg as SessionControllerGetAllSessionsData, ci as SessionControllerGetAllSessionsResponses, cj as SessionControllerGetSessionData, cl as SessionControllerGetSessionResponses, cm as SessionControllerRevokeAllData, cn as SessionControllerRevokeAllResponses, cr as StatusListConfigControllerGetConfigData, ct as StatusListConfigControllerGetConfigResponses, cu as StatusListConfigControllerResetConfigData, cw as StatusListConfigControllerResetConfigResponses, cx as StatusListConfigControllerUpdateConfigData, cz as StatusListConfigControllerUpdateConfigResponses, cA as StatusListControllerGetListData, cC as StatusListControllerGetListResponses, cD as StatusListControllerGetStatusListAggregationData, cF as StatusListControllerGetStatusListAggregationResponses, cH as StatusListManagementControllerCreateListData, cJ as StatusListManagementControllerCreateListResponses, cK as StatusListManagementControllerDeleteListData, cM as StatusListManagementControllerDeleteListResponses, cN as StatusListManagementControllerGetListData, cP as StatusListManagementControllerGetListResponses, cQ as StatusListManagementControllerGetListsData, cS as StatusListManagementControllerGetListsResponses, cT as StatusListManagementControllerUpdateListData, cV as StatusListManagementControllerUpdateListResponses, cY as StorageControllerDownloadData, cZ as StorageControllerDownloadResponses, c_ as StorageControllerUploadData, d0 as StorageControllerUploadResponses, d1 as TenantControllerDeleteTenantData, d2 as TenantControllerDeleteTenantResponses, d3 as TenantControllerGetTenantData, d5 as TenantControllerGetTenantResponses, d6 as TenantControllerGetTenantsData, d8 as TenantControllerGetTenantsResponses, d9 as TenantControllerInitTenantData, da as TenantControllerInitTenantResponses, db as TenantControllerUpdateTenantData, dd as TenantControllerUpdateTenantResponses, dh as TrustListControllerCreateTrustListData, dj as TrustListControllerCreateTrustListResponses, dk as TrustListControllerDeleteTrustListData, dl as TrustListControllerDeleteTrustListResponses, dm as TrustListControllerExportTrustListData, dp as TrustListControllerExportTrustListResponses, dq as TrustListControllerGetAllTrustListsData, ds as TrustListControllerGetAllTrustListsResponses, dt as TrustListControllerGetTrustListData, dv as TrustListControllerGetTrustListResponses, dw as TrustListControllerGetTrustListVersionData, dy as TrustListControllerGetTrustListVersionResponses, dz as TrustListControllerGetTrustListVersionsData, dB as TrustListControllerGetTrustListVersionsResponses, dC as TrustListControllerUpdateTrustListData, dE as TrustListControllerUpdateTrustListResponses, dG as TrustListPublicControllerGetTrustListJwtData, dI as TrustListPublicControllerGetTrustListJwtResponses, dS as VerifierOfferControllerGetOfferData, dU as VerifierOfferControllerGetOfferResponses, dY as WellKnownControllerAuthzMetadata0Data, dZ as WellKnownControllerAuthzMetadata0Responses, d_ as WellKnownControllerAuthzMetadata1Data, d$ as WellKnownControllerAuthzMetadata1Responses, e0 as WellKnownControllerGetJwks0Data, e2 as WellKnownControllerGetJwks0Responses, e3 as WellKnownControllerGetJwks1Data, e5 as WellKnownControllerGetJwks1Responses, e6 as WellKnownControllerIssuerMetadata0Data, e8 as WellKnownControllerIssuerMetadata0Responses, e9 as WellKnownControllerIssuerMetadata1Data, eb as WellKnownControllerIssuerMetadata1Responses } from '../client.gen-CU56lLgT.mjs';
2
- 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 CreateClientDto, al as CreateStatusListDto, am as CreateTenantDto, an as CredentialConfig, ar as CredentialConfigControllerGetConfigByIdResponse, au as CredentialConfigControllerGetConfigsResponse, ax as CredentialConfigControllerStoreCredentialConfigurationResponse, aA as CredentialConfigControllerUpdateCredentialConfigurationResponse, aC as CredentialConfigCreate, aD as CredentialConfigUpdate, aF as CredentialOfferControllerGetOfferResponse, aH as CredentialQuery, aI as CredentialSetQuery, aJ as Dcql, aK as Display, aL as DisplayImage, aM as DisplayInfo, aN as DisplayLogo, aO as EcPublic, aP as EmbeddedDisclosurePolicy, aQ as FileUploadDto, aS as HealthControllerCheckError, aU as HealthControllerCheckResponse, aW as ImportTenantDto, aX as IssuanceConfig, aZ as IssuanceConfigControllerGetIssuanceConfigurationsResponse, b0 as IssuanceConfigControllerStoreIssuanceConfigurationResponse, b2 as IssuanceDto, b3 as IssuerMetadataCredentialConfig, b4 as JwksResponseDto, b5 as Key, bb as KeyControllerGetKeyResponse, be as KeyControllerGetKeysResponse, bi as KeyEntity, bj as KeyImportDto, bk as NoneTrustPolicy, bl as NotificationRequestDto, bm as OfferRequestDto, bn as OfferResponse, bv as Oid4VciMetadataControllerVctResponse, by as Oid4VpControllerGetPostRequestWithSessionResponse, bB as Oid4VpControllerGetRequestWithSessionResponse, bE as Oid4VpControllerGetResponseResponse, bG as ParResponseDto, bH as PolicyCredential, bI as PresentationAttachment, bJ as PresentationConfig, bK as PresentationConfigCreateDto, bL as PresentationConfigUpdateDto, bM as PresentationDuringIssuanceConfig, bO as PresentationManagementControllerConfigurationResponse, bT as PresentationManagementControllerGetConfigurationResponse, bW as PresentationManagementControllerStorePresentationConfigResponse, bZ as PresentationManagementControllerUpdateConfigurationResponse, b$ as PresentationRequest, c2 as RegistrationCertificateRequest, c3 as RoleDto, c4 as RootOfTrustPolicy, c5 as SchemaResponse, S as Session, c7 as SessionConfigControllerGetConfigResponse, cc as SessionConfigControllerUpdateConfigResponse, ch as SessionControllerGetAllSessionsResponse, ck as SessionControllerGetSessionResponse, co as SessionStorageConfig, cp as StatusListAggregationDto, cq as StatusListConfig, cs as StatusListConfigControllerGetConfigResponse, cv as StatusListConfigControllerResetConfigResponse, cy as StatusListConfigControllerUpdateConfigResponse, cB as StatusListControllerGetListResponse, cE as StatusListControllerGetStatusListAggregationResponse, cG as StatusListImportDto, cI as StatusListManagementControllerCreateListResponse, cL as StatusListManagementControllerDeleteListResponse, cO as StatusListManagementControllerGetListResponse, cR as StatusListManagementControllerGetListsResponse, cU as StatusListManagementControllerUpdateListResponse, cW as StatusListResponseDto, cX as StatusUpdateDto, c$ as StorageControllerUploadResponse, d4 as TenantControllerGetTenantResponse, d7 as TenantControllerGetTenantsResponse, dc as TenantControllerUpdateTenantResponse, de as TenantEntity, df as TokenResponse, dg as TrustList, di as TrustListControllerCreateTrustListResponse, dn as TrustListControllerExportTrustListResponse, dr as TrustListControllerGetAllTrustListsResponse, du as TrustListControllerGetTrustListResponse, dx as TrustListControllerGetTrustListVersionResponse, dA as TrustListControllerGetTrustListVersionsResponse, dD as TrustListControllerUpdateTrustListResponse, dF as TrustListCreateDto, dH as TrustListPublicControllerGetTrustListJwtResponse, dJ as TrustListVersion, dK as TrustedAuthorityQuery, dL as UpdateClientDto, dM as UpdateKeyDto, dN as UpdateSessionConfigDto, dO as UpdateStatusListConfigDto, dP as UpdateStatusListDto, dQ as UpdateTenantDto, dR as Vct, dT as VerifierOfferControllerGetOfferResponse, dV as WebHookAuthConfigHeader, dW as WebHookAuthConfigNone, dX as WebhookConfig, e1 as WellKnownControllerGetJwks0Response, e4 as WellKnownControllerGetJwks1Response, e7 as WellKnownControllerIssuerMetadata0Response, ea as WellKnownControllerIssuerMetadata1Response, ec as client } from '../client.gen-CU56lLgT.mjs';
3
- import { T as TDataShape, O as Options$1, a as Client, d as RequestResult } from '../types.gen-CIiveH8G.mjs';
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-CecAMjTS.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-CecAMjTS.mjs';
4
4
 
5
5
  type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = Options$1<TData, ThrowOnError> & {
6
6
  /**
@@ -324,6 +324,28 @@ declare const oid4VpControllerGetPostRequestWithSession: <ThrowOnError extends b
324
324
  * Endpoint to receive the response from the wallet.
325
325
  */
326
326
  declare const oid4VpControllerGetResponse: <ThrowOnError extends boolean = true>(options: Options<Oid4VpControllerGetResponseData, ThrowOnError>) => RequestResult<Oid4VpControllerGetResponseResponses, unknown, ThrowOnError, "fields">;
327
+ /**
328
+ * Delete registrar configuration
329
+ */
330
+ declare const registrarControllerDeleteConfig: <ThrowOnError extends boolean = true>(options?: Options<RegistrarControllerDeleteConfigData, ThrowOnError>) => RequestResult<RegistrarControllerDeleteConfigResponses, unknown, ThrowOnError, "fields">;
331
+ /**
332
+ * Get registrar configuration
333
+ */
334
+ declare const registrarControllerGetConfig: <ThrowOnError extends boolean = true>(options?: Options<RegistrarControllerGetConfigData, ThrowOnError>) => RequestResult<RegistrarControllerGetConfigResponses, RegistrarControllerGetConfigErrors, ThrowOnError, "fields">;
335
+ /**
336
+ * Update registrar configuration
337
+ */
338
+ declare const registrarControllerUpdateConfig: <ThrowOnError extends boolean = true>(options: Options<RegistrarControllerUpdateConfigData, ThrowOnError>) => RequestResult<RegistrarControllerUpdateConfigResponses, RegistrarControllerUpdateConfigErrors, ThrowOnError, "fields">;
339
+ /**
340
+ * Create or replace registrar configuration
341
+ */
342
+ declare const registrarControllerCreateConfig: <ThrowOnError extends boolean = true>(options: Options<RegistrarControllerCreateConfigData, ThrowOnError>) => RequestResult<RegistrarControllerCreateConfigResponses, RegistrarControllerCreateConfigErrors, ThrowOnError, "fields">;
343
+ /**
344
+ * Create an access certificate for a key
345
+ *
346
+ * Creates an access certificate at the registrar for the specified key. Requires a relying party to be already registered at the registrar. The certificate is automatically stored in EUDIPLO.
347
+ */
348
+ declare const registrarControllerCreateAccessCertificate: <ThrowOnError extends boolean = true>(options: Options<RegistrarControllerCreateAccessCertificateData, ThrowOnError>) => RequestResult<RegistrarControllerCreateAccessCertificateResponses, RegistrarControllerCreateAccessCertificateErrors, ThrowOnError, "fields">;
327
349
  /**
328
350
  * Returns the presentation request configurations.
329
351
  */
@@ -391,4 +413,4 @@ declare const verifierOfferControllerGetOffer: <ThrowOnError extends boolean = t
391
413
  declare const storageControllerUpload: <ThrowOnError extends boolean = true>(options: Options<StorageControllerUploadData, ThrowOnError>) => RequestResult<StorageControllerUploadResponses, unknown, ThrowOnError, "fields">;
392
414
  declare const storageControllerDownload: <ThrowOnError extends boolean = true>(options: Options<StorageControllerDownloadData, ThrowOnError>) => RequestResult<StorageControllerDownloadResponses, unknown, ThrowOnError, "fields">;
393
415
 
394
- 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, 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, 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 };
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 };