@eudiplo/sdk-core 1.14.0 → 1.15.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -8,6 +8,7 @@ type RoleDto = {
8
8
  role: "presentation:manage" | "presentation:offer" | "issuance:manage" | "issuance:offer" | "clients:manage" | "tenants:manage";
9
9
  };
10
10
  type ClientCredentialsDto = {
11
+ grant_type?: string;
11
12
  client_id: string;
12
13
  client_secret: string;
13
14
  };
@@ -17,6 +18,16 @@ type TokenResponse = {
17
18
  token_type: string;
18
19
  expires_in: number;
19
20
  };
21
+ type ImportTenantDto = {
22
+ /**
23
+ * The name of the tenant.
24
+ */
25
+ name: string;
26
+ /**
27
+ * The description of the tenant.
28
+ */
29
+ description?: string;
30
+ };
20
31
  type SessionStorageConfig = {
21
32
  /**
22
33
  * Time-to-live for sessions in seconds. If not set, uses global SESSION_TTL.
@@ -128,6 +139,25 @@ type CreateTenantDto = {
128
139
  */
129
140
  description?: string;
130
141
  };
142
+ type UpdateTenantDto = {
143
+ /**
144
+ * Status list configuration for this tenant. Only affects newly created status lists.
145
+ */
146
+ statusListConfig?: StatusListConfig;
147
+ /**
148
+ * Session storage configuration. Controls TTL and cleanup behavior.
149
+ */
150
+ sessionConfig?: SessionStorageConfig;
151
+ /**
152
+ * The name of the tenant.
153
+ */
154
+ name?: string;
155
+ /**
156
+ * The description of the tenant.
157
+ */
158
+ description?: string;
159
+ roles?: Array<"presentation:manage" | "presentation:offer" | "issuance:manage" | "issuance:offer" | "clients:manage" | "tenants:manage">;
160
+ };
131
161
  type ClientSecretResponseDto = {
132
162
  secret: string;
133
163
  };
@@ -146,6 +176,10 @@ type CreateClientDto = {
146
176
  * The unique identifier for the client.
147
177
  */
148
178
  clientId: string;
179
+ /**
180
+ * The secret key for the client.
181
+ */
182
+ secret?: string;
149
183
  /**
150
184
  * The description of the client.
151
185
  */
@@ -285,6 +319,11 @@ type CertImportDto = {
285
319
  * Certificate in PEM format, if not provided, a self-signed certificate will be generated.
286
320
  */
287
321
  crt?: string;
322
+ /**
323
+ * Subject name (CN) for self-signed certificate generation.
324
+ * If not provided, the tenant name will be used.
325
+ */
326
+ subjectName?: string;
288
327
  /**
289
328
  * Description of the key.
290
329
  */
@@ -778,6 +817,15 @@ type RootOfTrustPolicy = {
778
817
  policy: "rootOfTrust";
779
818
  values: string;
780
819
  };
820
+ type Vct = {
821
+ vct?: string;
822
+ name?: string;
823
+ description?: string;
824
+ extends?: string;
825
+ "extends#integrity"?: string;
826
+ schema_uri?: string;
827
+ "schema_uri#integrity"?: string;
828
+ };
781
829
  type EmbeddedDisclosurePolicy = {
782
830
  policy: string;
783
831
  };
@@ -822,15 +870,6 @@ type IssuerMetadataCredentialConfig = {
822
870
  [key: string]: unknown;
823
871
  };
824
872
  };
825
- type Vct = {
826
- vct?: string;
827
- name?: string;
828
- description?: string;
829
- extends?: string;
830
- "extends#integrity"?: string;
831
- schema_uri?: string;
832
- "schema_uri#integrity"?: string;
833
- };
834
873
  type SchemaResponse = {
835
874
  $schema: string;
836
875
  type: string;
@@ -842,6 +881,10 @@ type SchemaResponse = {
842
881
  description?: string;
843
882
  };
844
883
  type CredentialConfig = {
884
+ /**
885
+ * VCT as a URI string (e.g., urn:eudi:pid:de:1) or as an object for EUDIPLO-hosted VCT
886
+ */
887
+ vct?: string | Vct;
845
888
  /**
846
889
  * Embedded disclosure policy (discriminated union by `policy`).
847
890
  * The discriminator makes class-transformer instantiate the right subclass,
@@ -869,7 +912,6 @@ type CredentialConfig = {
869
912
  disclosureFrame?: {
870
913
  [key: string]: unknown;
871
914
  };
872
- vct?: Vct;
873
915
  keyBinding?: boolean;
874
916
  certId?: string;
875
917
  cert: CertEntity;
@@ -878,6 +920,10 @@ type CredentialConfig = {
878
920
  schema?: SchemaResponse;
879
921
  };
880
922
  type CredentialConfigCreate = {
923
+ /**
924
+ * VCT as a URI string (e.g., urn:eudi:pid:de:1) or as an object for EUDIPLO-hosted VCT
925
+ */
926
+ vct?: string | Vct;
881
927
  /**
882
928
  * Embedded disclosure policy (discriminated union by `policy`).
883
929
  * The discriminator makes class-transformer instantiate the right subclass,
@@ -901,7 +947,6 @@ type CredentialConfigCreate = {
901
947
  disclosureFrame?: {
902
948
  [key: string]: unknown;
903
949
  };
904
- vct?: Vct;
905
950
  keyBinding?: boolean;
906
951
  certId?: string;
907
952
  statusManagement?: boolean;
@@ -909,6 +954,10 @@ type CredentialConfigCreate = {
909
954
  schema?: SchemaResponse;
910
955
  };
911
956
  type CredentialConfigUpdate = {
957
+ /**
958
+ * VCT as a URI string (e.g., urn:eudi:pid:de:1) or as an object for EUDIPLO-hosted VCT
959
+ */
960
+ vct?: string | Vct;
912
961
  /**
913
962
  * Embedded disclosure policy (discriminated union by `policy`).
914
963
  * The discriminator makes class-transformer instantiate the right subclass,
@@ -932,7 +981,6 @@ type CredentialConfigUpdate = {
932
981
  disclosureFrame?: {
933
982
  [key: string]: unknown;
934
983
  };
935
- vct?: Vct;
936
984
  keyBinding?: boolean;
937
985
  certId?: string;
938
986
  statusManagement?: boolean;
@@ -995,7 +1043,7 @@ type AuthorizationResponse = {
995
1043
  };
996
1044
  type Dcql = {
997
1045
  credentials: Array<CredentialQuery>;
998
- credential_set?: Array<CredentialSetQuery>;
1046
+ credential_sets?: Array<CredentialSetQuery>;
999
1047
  };
1000
1048
  type RegistrationCertificateRequest = {
1001
1049
  /**
@@ -1053,8 +1101,19 @@ type PresentationConfig = {
1053
1101
  attached?: Array<PresentationAttachment>;
1054
1102
  /**
1055
1103
  * Redirect URI to which the user-agent should be redirected after the presentation is completed.
1104
+ * You can use the `{sessionId}` placeholder in the URI, which will be replaced with the actual session ID.
1056
1105
  */
1057
1106
  redirectUri?: string;
1107
+ /**
1108
+ * Optional ID of the access certificate to use for signing the presentation request.
1109
+ * If not provided, the default access certificate for the tenant will be used.
1110
+ *
1111
+ * Note: This is intentionally NOT a TypeORM relationship because CertEntity uses
1112
+ * a composite primary key (id + tenantId), and SQLite cannot create foreign keys
1113
+ * that reference only part of a composite primary key. The relationship is handled
1114
+ * at the application level in the service layer.
1115
+ */
1116
+ accessCertId?: string;
1058
1117
  };
1059
1118
  type PresentationConfigCreateDto = {
1060
1119
  /**
@@ -1087,8 +1146,19 @@ type PresentationConfigCreateDto = {
1087
1146
  attached?: Array<PresentationAttachment>;
1088
1147
  /**
1089
1148
  * Redirect URI to which the user-agent should be redirected after the presentation is completed.
1149
+ * You can use the `{sessionId}` placeholder in the URI, which will be replaced with the actual session ID.
1090
1150
  */
1091
1151
  redirectUri?: string;
1152
+ /**
1153
+ * Optional ID of the access certificate to use for signing the presentation request.
1154
+ * If not provided, the default access certificate for the tenant will be used.
1155
+ *
1156
+ * Note: This is intentionally NOT a TypeORM relationship because CertEntity uses
1157
+ * a composite primary key (id + tenantId), and SQLite cannot create foreign keys
1158
+ * that reference only part of a composite primary key. The relationship is handled
1159
+ * at the application level in the service layer.
1160
+ */
1161
+ accessCertId?: string;
1092
1162
  };
1093
1163
  type PresentationConfigUpdateDto = {
1094
1164
  /**
@@ -1121,8 +1191,19 @@ type PresentationConfigUpdateDto = {
1121
1191
  attached?: Array<PresentationAttachment>;
1122
1192
  /**
1123
1193
  * Redirect URI to which the user-agent should be redirected after the presentation is completed.
1194
+ * You can use the `{sessionId}` placeholder in the URI, which will be replaced with the actual session ID.
1124
1195
  */
1125
1196
  redirectUri?: string;
1197
+ /**
1198
+ * Optional ID of the access certificate to use for signing the presentation request.
1199
+ * If not provided, the default access certificate for the tenant will be used.
1200
+ *
1201
+ * Note: This is intentionally NOT a TypeORM relationship because CertEntity uses
1202
+ * a composite primary key (id + tenantId), and SQLite cannot create foreign keys
1203
+ * that reference only part of a composite primary key. The relationship is handled
1204
+ * at the application level in the service layer.
1205
+ */
1206
+ accessCertId?: string;
1126
1207
  };
1127
1208
  type TrustListCreateDto = {
1128
1209
  certId?: string;
@@ -1132,7 +1213,7 @@ type TrustListCreateDto = {
1132
1213
  /**
1133
1214
  * Unique identifier for the trust list
1134
1215
  */
1135
- id?: string;
1216
+ id: string;
1136
1217
  description?: string;
1137
1218
  /**
1138
1219
  * The full trust list JSON (generated LoTE structure)
@@ -1145,7 +1226,7 @@ type TrustList = {
1145
1226
  /**
1146
1227
  * Unique identifier for the trust list
1147
1228
  */
1148
- id?: string;
1229
+ id: string;
1149
1230
  description?: string;
1150
1231
  /**
1151
1232
  * The tenant ID for which the VP request is made.
@@ -1224,6 +1305,7 @@ type PresentationRequest = {
1224
1305
  webhook?: WebhookConfig;
1225
1306
  /**
1226
1307
  * Optional redirect URI to which the user-agent should be redirected after the presentation is completed.
1308
+ * You can use the `{sessionId}` placeholder in the URI, which will be replaced with the actual session ID.
1227
1309
  */
1228
1310
  redirectUri?: string;
1229
1311
  };
@@ -1394,6 +1476,18 @@ type TenantControllerGetTenantResponses = {
1394
1476
  200: TenantEntity;
1395
1477
  };
1396
1478
  type TenantControllerGetTenantResponse = TenantControllerGetTenantResponses[keyof TenantControllerGetTenantResponses];
1479
+ type TenantControllerUpdateTenantData = {
1480
+ body: UpdateTenantDto;
1481
+ path: {
1482
+ id: string;
1483
+ };
1484
+ query?: never;
1485
+ url: "/tenant/{id}";
1486
+ };
1487
+ type TenantControllerUpdateTenantResponses = {
1488
+ 200: TenantEntity;
1489
+ };
1490
+ type TenantControllerUpdateTenantResponse = TenantControllerUpdateTenantResponses[keyof TenantControllerUpdateTenantResponses];
1397
1491
  type ClientControllerGetClientsData = {
1398
1492
  body?: never;
1399
1493
  path?: never;
@@ -2694,6 +2788,10 @@ declare const tenantControllerDeleteTenant: <ThrowOnError extends boolean = true
2694
2788
  * Get a tenant by ID
2695
2789
  */
2696
2790
  declare const tenantControllerGetTenant: <ThrowOnError extends boolean = true>(options: Options<TenantControllerGetTenantData, ThrowOnError>) => RequestResult<TenantControllerGetTenantResponses, unknown, ThrowOnError, "fields">;
2791
+ /**
2792
+ * Update a tenant by ID
2793
+ */
2794
+ declare const tenantControllerUpdateTenant: <ThrowOnError extends boolean = true>(options: Options<TenantControllerUpdateTenantData, ThrowOnError>) => RequestResult<TenantControllerUpdateTenantResponses, unknown, ThrowOnError, "fields">;
2697
2795
  /**
2698
2796
  * Get all clients for a user
2699
2797
  */
@@ -3024,4 +3122,4 @@ declare const verifierOfferControllerGetOffer: <ThrowOnError extends boolean = t
3024
3122
  declare const storageControllerUpload: <ThrowOnError extends boolean = true>(options: Options<StorageControllerUploadData, ThrowOnError>) => RequestResult<StorageControllerUploadResponses, unknown, ThrowOnError, "fields">;
3025
3123
  declare const storageControllerDownload: <ThrowOnError extends boolean = true>(options: Options<StorageControllerDownloadData, ThrowOnError>) => RequestResult<StorageControllerDownloadResponses, unknown, ThrowOnError, "fields">;
3026
3124
 
3027
- export { type AllowListPolicy, type ApiKeyConfig, type AppControllerMainData, type AppControllerMainResponses, type AttestationBasedPolicy, type AuthControllerGetGlobalJwksData, type AuthControllerGetGlobalJwksResponses, type AuthControllerGetOAuth2TokenData, type AuthControllerGetOAuth2TokenErrors, type AuthControllerGetOAuth2TokenResponse, type AuthControllerGetOAuth2TokenResponses, type AuthControllerGetOidcDiscoveryData, type AuthControllerGetOidcDiscoveryResponses, type AuthenticationMethodAuth, type AuthenticationMethodNone, type AuthenticationMethodPresentation, type AuthenticationUrlConfig, type AuthorizationResponse, type AuthorizeControllerAuthorizationChallengeEndpointData, type AuthorizeControllerAuthorizationChallengeEndpointResponses, type AuthorizeControllerAuthorizeData, type AuthorizeControllerAuthorizeResponses, type AuthorizeControllerParData, type AuthorizeControllerParResponse, type AuthorizeControllerParResponses, type AuthorizeControllerTokenData, type AuthorizeControllerTokenResponse, type AuthorizeControllerTokenResponses, type AuthorizeQueries, type CertControllerAddCertificateData, type CertControllerAddCertificateResponse, type CertControllerAddCertificateResponses, type CertControllerDeleteCertificateData, type CertControllerDeleteCertificateResponses, type CertControllerExportConfigData, type CertControllerExportConfigResponse, type CertControllerExportConfigResponses, type CertControllerGetCertificateData, type CertControllerGetCertificateResponse, type CertControllerGetCertificateResponses, type CertControllerGetCertificatesData, type CertControllerGetCertificatesResponse, type CertControllerGetCertificatesResponses, type CertControllerUpdateCertificateData, type CertControllerUpdateCertificateResponses, type CertEntity, type CertImportDto, type CertResponseDto, type CertUpdateDto, type CertUsageEntity, type Claim, type ClaimsQuery, type ClientControllerCreateClientData, type ClientControllerCreateClientResponse, type ClientControllerCreateClientResponses, type ClientControllerDeleteClientData, type ClientControllerDeleteClientResponses, type ClientControllerGetClientData, type ClientControllerGetClientResponse, type ClientControllerGetClientResponses, type ClientControllerGetClientSecretData, type ClientControllerGetClientSecretResponse, type ClientControllerGetClientSecretResponses, type ClientControllerGetClientsData, type ClientControllerGetClientsResponse, type ClientControllerGetClientsResponses, type ClientControllerUpdateClientData, type ClientControllerUpdateClientResponse, type ClientControllerUpdateClientResponses, type ClientCredentialsDto, type ClientEntity, type ClientOptions$1 as ClientOptions, type ClientSecretResponseDto, type CreateClientDto, type CreateStatusListDto, type CreateTenantDto, type CredentialConfig, type CredentialConfigControllerDeleteIssuanceConfigurationData, type CredentialConfigControllerDeleteIssuanceConfigurationResponses, type CredentialConfigControllerGetConfigByIdData, type CredentialConfigControllerGetConfigByIdResponse, type CredentialConfigControllerGetConfigByIdResponses, type CredentialConfigControllerGetConfigsData, type CredentialConfigControllerGetConfigsResponse, type CredentialConfigControllerGetConfigsResponses, type CredentialConfigControllerStoreCredentialConfigurationData, type CredentialConfigControllerStoreCredentialConfigurationResponse, type CredentialConfigControllerStoreCredentialConfigurationResponses, type CredentialConfigControllerUpdateCredentialConfigurationData, type CredentialConfigControllerUpdateCredentialConfigurationResponse, type CredentialConfigControllerUpdateCredentialConfigurationResponses, type CredentialConfigCreate, type CredentialConfigUpdate, type CredentialOfferControllerGetOfferData, type CredentialOfferControllerGetOfferResponse, type CredentialOfferControllerGetOfferResponses, type CredentialQuery, type CredentialSetQuery, type Dcql, type Display, type DisplayImage, type DisplayInfo, type DisplayLogo, type EcPublic, type EmbeddedDisclosurePolicy, type FileUploadDto, type HealthControllerCheckData, type HealthControllerCheckError, type HealthControllerCheckErrors, type HealthControllerCheckResponse, type HealthControllerCheckResponses, type IssuanceConfig, type IssuanceConfigControllerGetIssuanceConfigurationsData, type IssuanceConfigControllerGetIssuanceConfigurationsResponse, type IssuanceConfigControllerGetIssuanceConfigurationsResponses, type IssuanceConfigControllerStoreIssuanceConfigurationData, type IssuanceConfigControllerStoreIssuanceConfigurationResponse, type IssuanceConfigControllerStoreIssuanceConfigurationResponses, type IssuanceDto, type IssuerMetadataCredentialConfig, type JwksResponseDto, type Key, type KeyControllerAddKeyData, type KeyControllerAddKeyResponses, type KeyControllerDeleteKeyData, type KeyControllerDeleteKeyResponses, type KeyControllerGetKeyData, type KeyControllerGetKeyResponse, type KeyControllerGetKeyResponses, type KeyControllerGetKeysData, type KeyControllerGetKeysResponse, type KeyControllerGetKeysResponses, type KeyControllerUpdateKeyData, type KeyControllerUpdateKeyResponses, type KeyEntity, type KeyImportDto, type NoneTrustPolicy, type NotificationRequestDto, type OfferRequestDto, type OfferResponse, type Oid4VciControllerCredentialData, type Oid4VciControllerCredentialResponses, type Oid4VciControllerNonceData, type Oid4VciControllerNonceResponses, type Oid4VciControllerNotificationsData, type Oid4VciControllerNotificationsResponses, type Oid4VciMetadataControllerVctData, type Oid4VciMetadataControllerVctResponse, type Oid4VciMetadataControllerVctResponses, type Oid4VpControllerGetPostRequestWithSessionData, type Oid4VpControllerGetPostRequestWithSessionResponse, type Oid4VpControllerGetPostRequestWithSessionResponses, type Oid4VpControllerGetRequestWithSessionData, type Oid4VpControllerGetRequestWithSessionResponse, type Oid4VpControllerGetRequestWithSessionResponses, type Oid4VpControllerGetResponseData, type Oid4VpControllerGetResponseResponse, type Oid4VpControllerGetResponseResponses, type Options, type ParResponseDto, type PolicyCredential, type PresentationAttachment, type PresentationConfig, type PresentationConfigCreateDto, type PresentationConfigUpdateDto, type PresentationDuringIssuanceConfig, type PresentationManagementControllerConfigurationData, type PresentationManagementControllerConfigurationResponse, type PresentationManagementControllerConfigurationResponses, type PresentationManagementControllerDeleteConfigurationData, type PresentationManagementControllerDeleteConfigurationResponses, type PresentationManagementControllerGetConfigurationData, type PresentationManagementControllerGetConfigurationResponse, type PresentationManagementControllerGetConfigurationResponses, type PresentationManagementControllerStorePresentationConfigData, type PresentationManagementControllerStorePresentationConfigResponse, type PresentationManagementControllerStorePresentationConfigResponses, type PresentationManagementControllerUpdateConfigurationData, type PresentationManagementControllerUpdateConfigurationResponse, type PresentationManagementControllerUpdateConfigurationResponses, type PresentationRequest, type PrometheusControllerIndexData, type PrometheusControllerIndexResponses, type RegistrationCertificateRequest, type RoleDto, type RootOfTrustPolicy, type SchemaResponse, type Session, type SessionConfigControllerGetConfigData, type SessionConfigControllerGetConfigResponse, type SessionConfigControllerGetConfigResponses, type SessionConfigControllerResetConfigData, type SessionConfigControllerResetConfigResponses, type SessionConfigControllerUpdateConfigData, type SessionConfigControllerUpdateConfigResponse, type SessionConfigControllerUpdateConfigResponses, type SessionControllerDeleteSessionData, type SessionControllerDeleteSessionResponses, type SessionControllerGetAllSessionsData, type SessionControllerGetAllSessionsResponse, type SessionControllerGetAllSessionsResponses, type SessionControllerGetSessionData, type SessionControllerGetSessionResponse, type SessionControllerGetSessionResponses, type SessionControllerRevokeAllData, type SessionControllerRevokeAllResponses, type SessionStorageConfig, type StatusListAggregationDto, type StatusListConfig, type StatusListConfigControllerGetConfigData, type StatusListConfigControllerGetConfigResponse, type StatusListConfigControllerGetConfigResponses, type StatusListConfigControllerResetConfigData, type StatusListConfigControllerResetConfigResponse, type StatusListConfigControllerResetConfigResponses, type StatusListConfigControllerUpdateConfigData, type StatusListConfigControllerUpdateConfigResponse, type StatusListConfigControllerUpdateConfigResponses, type StatusListControllerGetListData, type StatusListControllerGetListResponse, type StatusListControllerGetListResponses, type StatusListControllerGetStatusListAggregationData, type StatusListControllerGetStatusListAggregationResponse, type StatusListControllerGetStatusListAggregationResponses, type StatusListImportDto, type StatusListManagementControllerCreateListData, type StatusListManagementControllerCreateListResponse, type StatusListManagementControllerCreateListResponses, type StatusListManagementControllerDeleteListData, type StatusListManagementControllerDeleteListResponse, type StatusListManagementControllerDeleteListResponses, type StatusListManagementControllerGetListData, type StatusListManagementControllerGetListResponse, type StatusListManagementControllerGetListResponses, type StatusListManagementControllerGetListsData, type StatusListManagementControllerGetListsResponse, type StatusListManagementControllerGetListsResponses, type StatusListManagementControllerUpdateListData, type StatusListManagementControllerUpdateListResponse, type StatusListManagementControllerUpdateListResponses, type StatusListResponseDto, type StatusUpdateDto, type StorageControllerDownloadData, type StorageControllerDownloadResponses, type StorageControllerUploadData, type StorageControllerUploadResponse, type StorageControllerUploadResponses, type TenantControllerDeleteTenantData, type TenantControllerDeleteTenantResponses, type TenantControllerGetTenantData, type TenantControllerGetTenantResponse, type TenantControllerGetTenantResponses, type TenantControllerGetTenantsData, type TenantControllerGetTenantsResponse, type TenantControllerGetTenantsResponses, type TenantControllerInitTenantData, type TenantControllerInitTenantResponses, type TenantEntity, type TokenResponse, type TrustList, type TrustListControllerCreateTrustListData, type TrustListControllerCreateTrustListResponse, type TrustListControllerCreateTrustListResponses, type TrustListControllerDeleteTrustListData, type TrustListControllerDeleteTrustListResponses, type TrustListControllerExportTrustListData, type TrustListControllerExportTrustListResponse, type TrustListControllerExportTrustListResponses, type TrustListControllerGetAllTrustListsData, type TrustListControllerGetAllTrustListsResponse, type TrustListControllerGetAllTrustListsResponses, type TrustListControllerGetTrustListData, type TrustListControllerGetTrustListResponse, type TrustListControllerGetTrustListResponses, type TrustListControllerGetTrustListVersionData, type TrustListControllerGetTrustListVersionResponse, type TrustListControllerGetTrustListVersionResponses, type TrustListControllerGetTrustListVersionsData, type TrustListControllerGetTrustListVersionsResponse, type TrustListControllerGetTrustListVersionsResponses, type TrustListControllerUpdateTrustListData, type TrustListControllerUpdateTrustListResponse, type TrustListControllerUpdateTrustListResponses, type TrustListCreateDto, type TrustListPublicControllerGetTrustListJwtData, type TrustListPublicControllerGetTrustListJwtResponse, type TrustListPublicControllerGetTrustListJwtResponses, type TrustListVersion, type TrustedAuthorityQuery, type UpdateClientDto, type UpdateKeyDto, type UpdateSessionConfigDto, type UpdateStatusListConfigDto, type UpdateStatusListDto, type Vct, type VerifierOfferControllerGetOfferData, type VerifierOfferControllerGetOfferResponse, type VerifierOfferControllerGetOfferResponses, type WebHookAuthConfigHeader, type WebHookAuthConfigNone, type WebhookConfig, type WellKnownControllerAuthzMetadata0Data, type WellKnownControllerAuthzMetadata0Responses, type WellKnownControllerAuthzMetadata1Data, type WellKnownControllerAuthzMetadata1Responses, type WellKnownControllerGetJwks0Data, type WellKnownControllerGetJwks0Response, type WellKnownControllerGetJwks0Responses, type WellKnownControllerGetJwks1Data, type WellKnownControllerGetJwks1Response, type WellKnownControllerGetJwks1Responses, type WellKnownControllerIssuerMetadata0Data, type WellKnownControllerIssuerMetadata0Response, type WellKnownControllerIssuerMetadata0Responses, type WellKnownControllerIssuerMetadata1Data, type WellKnownControllerIssuerMetadata1Response, type 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, trustListControllerCreateTrustList, trustListControllerDeleteTrustList, trustListControllerExportTrustList, trustListControllerGetAllTrustLists, trustListControllerGetTrustList, trustListControllerGetTrustListVersion, trustListControllerGetTrustListVersions, trustListControllerUpdateTrustList, trustListPublicControllerGetTrustListJwt, verifierOfferControllerGetOffer, wellKnownControllerAuthzMetadata0, wellKnownControllerAuthzMetadata1, wellKnownControllerGetJwks0, wellKnownControllerGetJwks1, wellKnownControllerIssuerMetadata0, wellKnownControllerIssuerMetadata1 };
3125
+ export { type AllowListPolicy, type ApiKeyConfig, type AppControllerMainData, type AppControllerMainResponses, type AttestationBasedPolicy, type AuthControllerGetGlobalJwksData, type AuthControllerGetGlobalJwksResponses, type AuthControllerGetOAuth2TokenData, type AuthControllerGetOAuth2TokenErrors, type AuthControllerGetOAuth2TokenResponse, type AuthControllerGetOAuth2TokenResponses, type AuthControllerGetOidcDiscoveryData, type AuthControllerGetOidcDiscoveryResponses, type AuthenticationMethodAuth, type AuthenticationMethodNone, type AuthenticationMethodPresentation, type AuthenticationUrlConfig, type AuthorizationResponse, type AuthorizeControllerAuthorizationChallengeEndpointData, type AuthorizeControllerAuthorizationChallengeEndpointResponses, type AuthorizeControllerAuthorizeData, type AuthorizeControllerAuthorizeResponses, type AuthorizeControllerParData, type AuthorizeControllerParResponse, type AuthorizeControllerParResponses, type AuthorizeControllerTokenData, type AuthorizeControllerTokenResponse, type AuthorizeControllerTokenResponses, type AuthorizeQueries, type CertControllerAddCertificateData, type CertControllerAddCertificateResponse, type CertControllerAddCertificateResponses, type CertControllerDeleteCertificateData, type CertControllerDeleteCertificateResponses, type CertControllerExportConfigData, type CertControllerExportConfigResponse, type CertControllerExportConfigResponses, type CertControllerGetCertificateData, type CertControllerGetCertificateResponse, type CertControllerGetCertificateResponses, type CertControllerGetCertificatesData, type CertControllerGetCertificatesResponse, type CertControllerGetCertificatesResponses, type CertControllerUpdateCertificateData, type CertControllerUpdateCertificateResponses, type CertEntity, type CertImportDto, type CertResponseDto, type CertUpdateDto, type CertUsageEntity, type Claim, type ClaimsQuery, type ClientControllerCreateClientData, type ClientControllerCreateClientResponse, type ClientControllerCreateClientResponses, type ClientControllerDeleteClientData, type ClientControllerDeleteClientResponses, type ClientControllerGetClientData, type ClientControllerGetClientResponse, type ClientControllerGetClientResponses, type ClientControllerGetClientSecretData, type ClientControllerGetClientSecretResponse, type ClientControllerGetClientSecretResponses, type ClientControllerGetClientsData, type ClientControllerGetClientsResponse, type ClientControllerGetClientsResponses, type ClientControllerUpdateClientData, type ClientControllerUpdateClientResponse, type ClientControllerUpdateClientResponses, type ClientCredentialsDto, type ClientEntity, type ClientOptions$1 as ClientOptions, type ClientSecretResponseDto, type CreateClientDto, type CreateStatusListDto, type CreateTenantDto, type CredentialConfig, type CredentialConfigControllerDeleteIssuanceConfigurationData, type CredentialConfigControllerDeleteIssuanceConfigurationResponses, type CredentialConfigControllerGetConfigByIdData, type CredentialConfigControllerGetConfigByIdResponse, type CredentialConfigControllerGetConfigByIdResponses, type CredentialConfigControllerGetConfigsData, type CredentialConfigControllerGetConfigsResponse, type CredentialConfigControllerGetConfigsResponses, type CredentialConfigControllerStoreCredentialConfigurationData, type CredentialConfigControllerStoreCredentialConfigurationResponse, type CredentialConfigControllerStoreCredentialConfigurationResponses, type CredentialConfigControllerUpdateCredentialConfigurationData, type CredentialConfigControllerUpdateCredentialConfigurationResponse, type CredentialConfigControllerUpdateCredentialConfigurationResponses, type CredentialConfigCreate, type CredentialConfigUpdate, type CredentialOfferControllerGetOfferData, type CredentialOfferControllerGetOfferResponse, type CredentialOfferControllerGetOfferResponses, type CredentialQuery, type CredentialSetQuery, type Dcql, type Display, type DisplayImage, type DisplayInfo, type DisplayLogo, type EcPublic, type EmbeddedDisclosurePolicy, type FileUploadDto, type HealthControllerCheckData, type HealthControllerCheckError, type HealthControllerCheckErrors, type HealthControllerCheckResponse, type HealthControllerCheckResponses, type ImportTenantDto, type IssuanceConfig, type IssuanceConfigControllerGetIssuanceConfigurationsData, type IssuanceConfigControllerGetIssuanceConfigurationsResponse, type IssuanceConfigControllerGetIssuanceConfigurationsResponses, type IssuanceConfigControllerStoreIssuanceConfigurationData, type IssuanceConfigControllerStoreIssuanceConfigurationResponse, type IssuanceConfigControllerStoreIssuanceConfigurationResponses, type IssuanceDto, type IssuerMetadataCredentialConfig, type JwksResponseDto, type Key, type KeyControllerAddKeyData, type KeyControllerAddKeyResponses, type KeyControllerDeleteKeyData, type KeyControllerDeleteKeyResponses, type KeyControllerGetKeyData, type KeyControllerGetKeyResponse, type KeyControllerGetKeyResponses, type KeyControllerGetKeysData, type KeyControllerGetKeysResponse, type KeyControllerGetKeysResponses, type KeyControllerUpdateKeyData, type KeyControllerUpdateKeyResponses, type KeyEntity, type KeyImportDto, type NoneTrustPolicy, type NotificationRequestDto, type OfferRequestDto, type OfferResponse, type Oid4VciControllerCredentialData, type Oid4VciControllerCredentialResponses, type Oid4VciControllerNonceData, type Oid4VciControllerNonceResponses, type Oid4VciControllerNotificationsData, type Oid4VciControllerNotificationsResponses, type Oid4VciMetadataControllerVctData, type Oid4VciMetadataControllerVctResponse, type Oid4VciMetadataControllerVctResponses, type Oid4VpControllerGetPostRequestWithSessionData, type Oid4VpControllerGetPostRequestWithSessionResponse, type Oid4VpControllerGetPostRequestWithSessionResponses, type Oid4VpControllerGetRequestWithSessionData, type Oid4VpControllerGetRequestWithSessionResponse, type Oid4VpControllerGetRequestWithSessionResponses, type Oid4VpControllerGetResponseData, type Oid4VpControllerGetResponseResponse, type Oid4VpControllerGetResponseResponses, type Options, type ParResponseDto, type PolicyCredential, type PresentationAttachment, type PresentationConfig, type PresentationConfigCreateDto, type PresentationConfigUpdateDto, type PresentationDuringIssuanceConfig, type PresentationManagementControllerConfigurationData, type PresentationManagementControllerConfigurationResponse, type PresentationManagementControllerConfigurationResponses, type PresentationManagementControllerDeleteConfigurationData, type PresentationManagementControllerDeleteConfigurationResponses, type PresentationManagementControllerGetConfigurationData, type PresentationManagementControllerGetConfigurationResponse, type PresentationManagementControllerGetConfigurationResponses, type PresentationManagementControllerStorePresentationConfigData, type PresentationManagementControllerStorePresentationConfigResponse, type PresentationManagementControllerStorePresentationConfigResponses, type PresentationManagementControllerUpdateConfigurationData, type PresentationManagementControllerUpdateConfigurationResponse, type PresentationManagementControllerUpdateConfigurationResponses, type PresentationRequest, type PrometheusControllerIndexData, type PrometheusControllerIndexResponses, type RegistrationCertificateRequest, type RoleDto, type RootOfTrustPolicy, type SchemaResponse, type Session, type SessionConfigControllerGetConfigData, type SessionConfigControllerGetConfigResponse, type SessionConfigControllerGetConfigResponses, type SessionConfigControllerResetConfigData, type SessionConfigControllerResetConfigResponses, type SessionConfigControllerUpdateConfigData, type SessionConfigControllerUpdateConfigResponse, type SessionConfigControllerUpdateConfigResponses, type SessionControllerDeleteSessionData, type SessionControllerDeleteSessionResponses, type SessionControllerGetAllSessionsData, type SessionControllerGetAllSessionsResponse, type SessionControllerGetAllSessionsResponses, type SessionControllerGetSessionData, type SessionControllerGetSessionResponse, type SessionControllerGetSessionResponses, type SessionControllerRevokeAllData, type SessionControllerRevokeAllResponses, type SessionStorageConfig, type StatusListAggregationDto, type StatusListConfig, type StatusListConfigControllerGetConfigData, type StatusListConfigControllerGetConfigResponse, type StatusListConfigControllerGetConfigResponses, type StatusListConfigControllerResetConfigData, type StatusListConfigControllerResetConfigResponse, type StatusListConfigControllerResetConfigResponses, type StatusListConfigControllerUpdateConfigData, type StatusListConfigControllerUpdateConfigResponse, type StatusListConfigControllerUpdateConfigResponses, type StatusListControllerGetListData, type StatusListControllerGetListResponse, type StatusListControllerGetListResponses, type StatusListControllerGetStatusListAggregationData, type StatusListControllerGetStatusListAggregationResponse, type StatusListControllerGetStatusListAggregationResponses, type StatusListImportDto, type StatusListManagementControllerCreateListData, type StatusListManagementControllerCreateListResponse, type StatusListManagementControllerCreateListResponses, type StatusListManagementControllerDeleteListData, type StatusListManagementControllerDeleteListResponse, type StatusListManagementControllerDeleteListResponses, type StatusListManagementControllerGetListData, type StatusListManagementControllerGetListResponse, type StatusListManagementControllerGetListResponses, type StatusListManagementControllerGetListsData, type StatusListManagementControllerGetListsResponse, type StatusListManagementControllerGetListsResponses, type StatusListManagementControllerUpdateListData, type StatusListManagementControllerUpdateListResponse, type StatusListManagementControllerUpdateListResponses, type StatusListResponseDto, type StatusUpdateDto, type StorageControllerDownloadData, type StorageControllerDownloadResponses, type StorageControllerUploadData, type StorageControllerUploadResponse, type StorageControllerUploadResponses, type TenantControllerDeleteTenantData, type TenantControllerDeleteTenantResponses, type TenantControllerGetTenantData, type TenantControllerGetTenantResponse, type TenantControllerGetTenantResponses, type TenantControllerGetTenantsData, type TenantControllerGetTenantsResponse, type TenantControllerGetTenantsResponses, type TenantControllerInitTenantData, type TenantControllerInitTenantResponses, type TenantControllerUpdateTenantData, type TenantControllerUpdateTenantResponse, type TenantControllerUpdateTenantResponses, type TenantEntity, type TokenResponse, type TrustList, type TrustListControllerCreateTrustListData, type TrustListControllerCreateTrustListResponse, type TrustListControllerCreateTrustListResponses, type TrustListControllerDeleteTrustListData, type TrustListControllerDeleteTrustListResponses, type TrustListControllerExportTrustListData, type TrustListControllerExportTrustListResponse, type TrustListControllerExportTrustListResponses, type TrustListControllerGetAllTrustListsData, type TrustListControllerGetAllTrustListsResponse, type TrustListControllerGetAllTrustListsResponses, type TrustListControllerGetTrustListData, type TrustListControllerGetTrustListResponse, type TrustListControllerGetTrustListResponses, type TrustListControllerGetTrustListVersionData, type TrustListControllerGetTrustListVersionResponse, type TrustListControllerGetTrustListVersionResponses, type TrustListControllerGetTrustListVersionsData, type TrustListControllerGetTrustListVersionsResponse, type TrustListControllerGetTrustListVersionsResponses, type TrustListControllerUpdateTrustListData, type TrustListControllerUpdateTrustListResponse, type TrustListControllerUpdateTrustListResponses, type TrustListCreateDto, type TrustListPublicControllerGetTrustListJwtData, type TrustListPublicControllerGetTrustListJwtResponse, type TrustListPublicControllerGetTrustListJwtResponses, type TrustListVersion, type TrustedAuthorityQuery, type UpdateClientDto, type UpdateKeyDto, type UpdateSessionConfigDto, type UpdateStatusListConfigDto, type UpdateStatusListDto, type UpdateTenantDto, type Vct, type VerifierOfferControllerGetOfferData, type VerifierOfferControllerGetOfferResponse, type VerifierOfferControllerGetOfferResponses, type WebHookAuthConfigHeader, type WebHookAuthConfigNone, type WebhookConfig, type WellKnownControllerAuthzMetadata0Data, type WellKnownControllerAuthzMetadata0Responses, type WellKnownControllerAuthzMetadata1Data, type WellKnownControllerAuthzMetadata1Responses, type WellKnownControllerGetJwks0Data, type WellKnownControllerGetJwks0Response, type WellKnownControllerGetJwks0Responses, type WellKnownControllerGetJwks1Data, type WellKnownControllerGetJwks1Response, type WellKnownControllerGetJwks1Responses, type WellKnownControllerIssuerMetadata0Data, type WellKnownControllerIssuerMetadata0Response, type WellKnownControllerIssuerMetadata0Responses, type WellKnownControllerIssuerMetadata1Data, type WellKnownControllerIssuerMetadata1Response, type 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 };