@eudiplo/sdk-core 1.14.0-main.fd4c0a7 → 1.14.0

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,7 +8,6 @@ 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;
12
11
  client_id: string;
13
12
  client_secret: string;
14
13
  };
@@ -18,16 +17,6 @@ type TokenResponse = {
18
17
  token_type: string;
19
18
  expires_in: number;
20
19
  };
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
- };
31
20
  type SessionStorageConfig = {
32
21
  /**
33
22
  * Time-to-live for sessions in seconds. If not set, uses global SESSION_TTL.
@@ -139,25 +128,6 @@ type CreateTenantDto = {
139
128
  */
140
129
  description?: string;
141
130
  };
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
- };
161
131
  type ClientSecretResponseDto = {
162
132
  secret: string;
163
133
  };
@@ -176,10 +146,6 @@ type CreateClientDto = {
176
146
  * The unique identifier for the client.
177
147
  */
178
148
  clientId: string;
179
- /**
180
- * The secret key for the client.
181
- */
182
- secret?: string;
183
149
  /**
184
150
  * The description of the client.
185
151
  */
@@ -319,11 +285,6 @@ type CertImportDto = {
319
285
  * Certificate in PEM format, if not provided, a self-signed certificate will be generated.
320
286
  */
321
287
  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;
327
288
  /**
328
289
  * Description of the key.
329
290
  */
@@ -817,15 +778,6 @@ type RootOfTrustPolicy = {
817
778
  policy: "rootOfTrust";
818
779
  values: string;
819
780
  };
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
- };
829
781
  type EmbeddedDisclosurePolicy = {
830
782
  policy: string;
831
783
  };
@@ -870,6 +822,15 @@ type IssuerMetadataCredentialConfig = {
870
822
  [key: string]: unknown;
871
823
  };
872
824
  };
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
+ };
873
834
  type SchemaResponse = {
874
835
  $schema: string;
875
836
  type: string;
@@ -881,10 +842,6 @@ type SchemaResponse = {
881
842
  description?: string;
882
843
  };
883
844
  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;
888
845
  /**
889
846
  * Embedded disclosure policy (discriminated union by `policy`).
890
847
  * The discriminator makes class-transformer instantiate the right subclass,
@@ -912,6 +869,7 @@ type CredentialConfig = {
912
869
  disclosureFrame?: {
913
870
  [key: string]: unknown;
914
871
  };
872
+ vct?: Vct;
915
873
  keyBinding?: boolean;
916
874
  certId?: string;
917
875
  cert: CertEntity;
@@ -920,10 +878,6 @@ type CredentialConfig = {
920
878
  schema?: SchemaResponse;
921
879
  };
922
880
  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;
927
881
  /**
928
882
  * Embedded disclosure policy (discriminated union by `policy`).
929
883
  * The discriminator makes class-transformer instantiate the right subclass,
@@ -947,6 +901,7 @@ type CredentialConfigCreate = {
947
901
  disclosureFrame?: {
948
902
  [key: string]: unknown;
949
903
  };
904
+ vct?: Vct;
950
905
  keyBinding?: boolean;
951
906
  certId?: string;
952
907
  statusManagement?: boolean;
@@ -954,10 +909,6 @@ type CredentialConfigCreate = {
954
909
  schema?: SchemaResponse;
955
910
  };
956
911
  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;
961
912
  /**
962
913
  * Embedded disclosure policy (discriminated union by `policy`).
963
914
  * The discriminator makes class-transformer instantiate the right subclass,
@@ -981,6 +932,7 @@ type CredentialConfigUpdate = {
981
932
  disclosureFrame?: {
982
933
  [key: string]: unknown;
983
934
  };
935
+ vct?: Vct;
984
936
  keyBinding?: boolean;
985
937
  certId?: string;
986
938
  statusManagement?: boolean;
@@ -1043,7 +995,7 @@ type AuthorizationResponse = {
1043
995
  };
1044
996
  type Dcql = {
1045
997
  credentials: Array<CredentialQuery>;
1046
- credential_sets?: Array<CredentialSetQuery>;
998
+ credential_set?: Array<CredentialSetQuery>;
1047
999
  };
1048
1000
  type RegistrationCertificateRequest = {
1049
1001
  /**
@@ -1101,19 +1053,8 @@ type PresentationConfig = {
1101
1053
  attached?: Array<PresentationAttachment>;
1102
1054
  /**
1103
1055
  * 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.
1105
1056
  */
1106
1057
  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;
1117
1058
  };
1118
1059
  type PresentationConfigCreateDto = {
1119
1060
  /**
@@ -1146,19 +1087,8 @@ type PresentationConfigCreateDto = {
1146
1087
  attached?: Array<PresentationAttachment>;
1147
1088
  /**
1148
1089
  * 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.
1150
1090
  */
1151
1091
  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;
1162
1092
  };
1163
1093
  type PresentationConfigUpdateDto = {
1164
1094
  /**
@@ -1191,19 +1121,8 @@ type PresentationConfigUpdateDto = {
1191
1121
  attached?: Array<PresentationAttachment>;
1192
1122
  /**
1193
1123
  * 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.
1195
1124
  */
1196
1125
  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;
1207
1126
  };
1208
1127
  type TrustListCreateDto = {
1209
1128
  certId?: string;
@@ -1213,7 +1132,7 @@ type TrustListCreateDto = {
1213
1132
  /**
1214
1133
  * Unique identifier for the trust list
1215
1134
  */
1216
- id: string;
1135
+ id?: string;
1217
1136
  description?: string;
1218
1137
  /**
1219
1138
  * The full trust list JSON (generated LoTE structure)
@@ -1226,7 +1145,7 @@ type TrustList = {
1226
1145
  /**
1227
1146
  * Unique identifier for the trust list
1228
1147
  */
1229
- id: string;
1148
+ id?: string;
1230
1149
  description?: string;
1231
1150
  /**
1232
1151
  * The tenant ID for which the VP request is made.
@@ -1305,7 +1224,6 @@ type PresentationRequest = {
1305
1224
  webhook?: WebhookConfig;
1306
1225
  /**
1307
1226
  * 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.
1309
1227
  */
1310
1228
  redirectUri?: string;
1311
1229
  };
@@ -1476,18 +1394,6 @@ type TenantControllerGetTenantResponses = {
1476
1394
  200: TenantEntity;
1477
1395
  };
1478
1396
  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];
1491
1397
  type ClientControllerGetClientsData = {
1492
1398
  body?: never;
1493
1399
  path?: never;
@@ -2788,10 +2694,6 @@ declare const tenantControllerDeleteTenant: <ThrowOnError extends boolean = true
2788
2694
  * Get a tenant by ID
2789
2695
  */
2790
2696
  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">;
2795
2697
  /**
2796
2698
  * Get all clients for a user
2797
2699
  */
@@ -3122,4 +3024,4 @@ declare const verifierOfferControllerGetOffer: <ThrowOnError extends boolean = t
3122
3024
  declare const storageControllerUpload: <ThrowOnError extends boolean = true>(options: Options<StorageControllerUploadData, ThrowOnError>) => RequestResult<StorageControllerUploadResponses, unknown, ThrowOnError, "fields">;
3123
3025
  declare const storageControllerDownload: <ThrowOnError extends boolean = true>(options: Options<StorageControllerDownloadData, ThrowOnError>) => RequestResult<StorageControllerDownloadResponses, unknown, ThrowOnError, "fields">;
3124
3026
 
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 };
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 };