@eudiplo/sdk-core 4.1.0 → 4.2.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.
@@ -25,7 +25,7 @@ type RoleDto = {
25
25
  /**
26
26
  * OAuth2 roles
27
27
  */
28
- role: "presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "tenants:manage" | "registrar:manage";
28
+ role: "presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "users:manage" | "tenants:manage" | "registrar:manage";
29
29
  };
30
30
  type ClientCredentialsDto = {
31
31
  grant_type?: string;
@@ -138,7 +138,7 @@ type ClientEntity = {
138
138
  /**
139
139
  * The roles assigned to the client.
140
140
  */
141
- roles: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "tenants:manage" | "registrar:manage">;
141
+ roles: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "users:manage" | "tenants:manage" | "registrar:manage">;
142
142
  /**
143
143
  * The tenant that the client belongs to.
144
144
  */
@@ -165,7 +165,7 @@ type CreateTenantDto = {
165
165
  * Session storage configuration. Controls TTL and cleanup behavior.
166
166
  */
167
167
  sessionConfig?: SessionStorageConfig;
168
- roles?: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "tenants:manage" | "registrar:manage">;
168
+ roles?: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "users:manage" | "tenants:manage" | "registrar:manage">;
169
169
  };
170
170
  type UpdateTenantDto = {
171
171
  /**
@@ -184,7 +184,7 @@ type UpdateTenantDto = {
184
184
  * Session storage configuration. Controls TTL and cleanup behavior.
185
185
  */
186
186
  sessionConfig?: SessionStorageConfig;
187
- roles?: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "tenants:manage" | "registrar:manage">;
187
+ roles?: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "users:manage" | "tenants:manage" | "registrar:manage">;
188
188
  };
189
189
  type ClientSecretResponseDto = {
190
190
  secret: string;
@@ -205,7 +205,7 @@ type UpdateClientDto = {
205
205
  /**
206
206
  * The roles assigned to the client.
207
207
  */
208
- roles: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "tenants:manage" | "registrar:manage">;
208
+ roles: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "users:manage" | "tenants:manage" | "registrar:manage">;
209
209
  };
210
210
  type CreateClientDto = {
211
211
  /**
@@ -231,7 +231,7 @@ type CreateClientDto = {
231
231
  /**
232
232
  * The roles assigned to the client.
233
233
  */
234
- roles: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "tenants:manage" | "registrar:manage">;
234
+ roles: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "users:manage" | "tenants:manage" | "registrar:manage">;
235
235
  };
236
236
  type StatusListImportDto = {
237
237
  /**
@@ -619,6 +619,12 @@ type Session = {
619
619
  * Stores the error message when status is 'failed'.
620
620
  */
621
621
  errorReason?: string;
622
+ /**
623
+ * Number of failed tx_code (transaction code) validation attempts.
624
+ * Used to enforce brute-force protection in the pre-authorized code flow.
625
+ * Reset implicitly when the session is consumed successfully.
626
+ */
627
+ txCodeFailedAttempts: number;
622
628
  };
623
629
  type SessionLogEntryResponseDto = {
624
630
  /**
@@ -678,6 +684,39 @@ type UpdateSessionConfigDto = {
678
684
  */
679
685
  cleanupMode?: "full" | "anonymize";
680
686
  };
687
+ type ManagedUserDto = {
688
+ id: string;
689
+ username: string;
690
+ email?: string;
691
+ enabled: boolean;
692
+ roles: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "users:manage" | "tenants:manage" | "registrar:manage">;
693
+ tenantId?: string;
694
+ /**
695
+ * One-time temporary password returned only on user creation.
696
+ */
697
+ temporaryPassword?: string;
698
+ };
699
+ type CreateUserDto = {
700
+ username: string;
701
+ email?: string;
702
+ roles: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "users:manage" | "tenants:manage" | "registrar:manage">;
703
+ /**
704
+ * One-time temporary password returned only on user creation.
705
+ */
706
+ temporaryPassword?: string;
707
+ enabled?: boolean;
708
+ };
709
+ type UpdateUserDto = {
710
+ username?: string;
711
+ email?: string;
712
+ roles?: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "users:manage" | "tenants:manage" | "registrar:manage">;
713
+ /**
714
+ * One-time temporary password returned only on user creation.
715
+ */
716
+ temporaryPassword?: string;
717
+ enabled?: boolean;
718
+ password?: string;
719
+ };
681
720
  type AuthenticationMethodNone = {
682
721
  method: "none";
683
722
  };
@@ -780,10 +819,18 @@ type IssuanceConfig = {
780
819
  * Whether `credential_response_encryption` should be advertised in the credential issuer metadata.
781
820
  */
782
821
  credentialResponseEncryption?: boolean;
822
+ /**
823
+ * Whether `credential_request_encryption` should be advertised in the credential issuer metadata.
824
+ */
825
+ credentialRequestEncryption?: boolean;
783
826
  /**
784
827
  * Refresh token lifetime in seconds. Defaults to 2592000 (30 days).
785
828
  */
786
829
  refreshTokenExpiresInSeconds?: number;
830
+ /**
831
+ * Maximum failed tx_code attempts before the pre-authorized code is invalidated. Defaults to 5.
832
+ */
833
+ txCodeMaxAttempts?: number;
787
834
  /**
788
835
  * The tenant that owns this object.
789
836
  */
@@ -849,10 +896,18 @@ type IssuanceDto = {
849
896
  * Whether `credential_response_encryption` should be advertised in the credential issuer metadata.
850
897
  */
851
898
  credentialResponseEncryption?: boolean;
899
+ /**
900
+ * Whether `credential_request_encryption` should be advertised in the credential issuer metadata.
901
+ */
902
+ credentialRequestEncryption?: boolean;
852
903
  /**
853
904
  * Refresh token lifetime in seconds. Defaults to 2592000 (30 days).
854
905
  */
855
906
  refreshTokenExpiresInSeconds?: number;
907
+ /**
908
+ * Maximum failed tx_code attempts before the pre-authorized code is invalidated. Defaults to 5.
909
+ */
910
+ txCodeMaxAttempts?: number;
856
911
  /**
857
912
  * Authentication server URL for the issuance process.
858
913
  */
@@ -975,6 +1030,18 @@ type IaeActionRedirectToWeb = {
975
1030
  */
976
1031
  description?: string;
977
1032
  };
1033
+ type WebhookEndpointEntity = {
1034
+ /**
1035
+ * Unique identifier for the webhook endpoint
1036
+ */
1037
+ id: string;
1038
+ auth: WebHookAuthConfigNone | WebHookAuthConfigHeader;
1039
+ tenantId: string;
1040
+ tenant: TenantEntity;
1041
+ name: string;
1042
+ description?: string;
1043
+ url: string;
1044
+ };
978
1045
  type EmbeddedDisclosurePolicy = {
979
1046
  policy: string;
980
1047
  };
@@ -1081,15 +1148,6 @@ type AttributeProviderEntity = {
1081
1148
  description?: string;
1082
1149
  url: string;
1083
1150
  };
1084
- type WebhookEndpointEntity = {
1085
- auth: WebHookAuthConfigNone | WebHookAuthConfigHeader;
1086
- id: string;
1087
- tenantId: string;
1088
- tenant: TenantEntity;
1089
- name: string;
1090
- description?: string;
1091
- url: string;
1092
- };
1093
1151
  type KeyChainEntity = {
1094
1152
  /**
1095
1153
  * Unique identifier for the key chain.
@@ -1337,15 +1395,21 @@ type UpdateAttributeProviderDto = {
1337
1395
  url?: string;
1338
1396
  };
1339
1397
  type CreateWebhookEndpointDto = {
1340
- auth: WebHookAuthConfigNone | WebHookAuthConfigHeader;
1398
+ /**
1399
+ * Unique identifier for the webhook endpoint
1400
+ */
1341
1401
  id: string;
1402
+ auth: WebHookAuthConfigNone | WebHookAuthConfigHeader;
1342
1403
  name: string;
1343
1404
  description?: string;
1344
1405
  url: string;
1345
1406
  };
1346
1407
  type UpdateWebhookEndpointDto = {
1347
- auth?: WebHookAuthConfigNone | WebHookAuthConfigHeader;
1408
+ /**
1409
+ * Unique identifier for the webhook endpoint
1410
+ */
1348
1411
  id?: string;
1412
+ auth?: WebHookAuthConfigNone | WebHookAuthConfigHeader;
1349
1413
  name?: string;
1350
1414
  description?: string;
1351
1415
  url?: string;
@@ -1356,11 +1420,11 @@ type Dcql = {
1356
1420
  };
1357
1421
  type RegistrationCertificatePurpose = {
1358
1422
  lang: string;
1359
- value: string;
1423
+ content: string;
1360
1424
  };
1361
1425
  type RegistrationCertificateBody = {
1362
- privacy_policy: string;
1363
- support_uri: string;
1426
+ privacy_policy?: string;
1427
+ support_uri?: string;
1364
1428
  intermediary?: string;
1365
1429
  purpose?: Array<RegistrationCertificatePurpose>;
1366
1430
  credentials?: Array<{
@@ -1556,6 +1620,16 @@ type PresentationConfigUpdateDto = {
1556
1620
  */
1557
1621
  accessKeyChainId?: string;
1558
1622
  };
1623
+ type RegistrationCertificateDefaults = {
1624
+ /**
1625
+ * Default privacy policy URL for registration certificate creation.
1626
+ */
1627
+ privacy_policy?: string;
1628
+ /**
1629
+ * Default support contact URI for registration certificate creation.
1630
+ */
1631
+ support_uri?: string;
1632
+ };
1559
1633
  type RegistrarConfigResponseDto = {
1560
1634
  /**
1561
1635
  * The base URL of the registrar API
@@ -1578,11 +1652,9 @@ type RegistrarConfigResponseDto = {
1578
1652
  */
1579
1653
  username: string;
1580
1654
  /**
1581
- * Optional default values merged into registration certificate creation requests (for example privacy_policy, support_uri, provided_attestations)
1655
+ * Optional default values merged into registration certificate creation requests (for example privacy_policy, support_uri)
1582
1656
  */
1583
- registrationCertificateDefaults?: {
1584
- [key: string]: unknown;
1585
- };
1657
+ registrationCertificateDefaults?: RegistrationCertificateDefaults;
1586
1658
  /**
1587
1659
  * Indicates whether a password is configured (actual password is never returned)
1588
1660
  */
@@ -1614,11 +1686,9 @@ type CreateRegistrarConfigDto = {
1614
1686
  */
1615
1687
  password: string;
1616
1688
  /**
1617
- * Optional default values merged into registration certificate creation requests (for example privacy_policy, support_uri, provided_attestations)
1689
+ * Optional default values merged into registration certificate creation requests (for example privacy_policy, support_uri)
1618
1690
  */
1619
- registrationCertificateDefaults?: {
1620
- [key: string]: unknown;
1621
- };
1691
+ registrationCertificateDefaults?: RegistrationCertificateDefaults;
1622
1692
  };
1623
1693
  type UpdateRegistrarConfigDto = {
1624
1694
  /**
@@ -1646,11 +1716,9 @@ type UpdateRegistrarConfigDto = {
1646
1716
  */
1647
1717
  password?: string;
1648
1718
  /**
1649
- * Optional default values merged into registration certificate creation requests (for example privacy_policy, support_uri, provided_attestations)
1719
+ * Optional default values merged into registration certificate creation requests (for example privacy_policy, support_uri)
1650
1720
  */
1651
- registrationCertificateDefaults?: {
1652
- [key: string]: unknown;
1653
- };
1721
+ registrationCertificateDefaults?: RegistrationCertificateDefaults;
1654
1722
  };
1655
1723
  type CreateAccessCertificateDto = {
1656
1724
  /**
@@ -2879,6 +2947,61 @@ type SessionEventsControllerSubscribeToSessionEventsData = {
2879
2947
  type SessionEventsControllerSubscribeToSessionEventsResponses = {
2880
2948
  200: unknown;
2881
2949
  };
2950
+ type UserControllerGetUsersData = {
2951
+ body?: never;
2952
+ path?: never;
2953
+ query?: never;
2954
+ url: "/api/user";
2955
+ };
2956
+ type UserControllerGetUsersResponses = {
2957
+ 200: Array<ManagedUserDto>;
2958
+ };
2959
+ type UserControllerGetUsersResponse = UserControllerGetUsersResponses[keyof UserControllerGetUsersResponses];
2960
+ type UserControllerCreateUserData = {
2961
+ body: CreateUserDto;
2962
+ path?: never;
2963
+ query?: never;
2964
+ url: "/api/user";
2965
+ };
2966
+ type UserControllerCreateUserResponses = {
2967
+ 201: ManagedUserDto;
2968
+ };
2969
+ type UserControllerCreateUserResponse = UserControllerCreateUserResponses[keyof UserControllerCreateUserResponses];
2970
+ type UserControllerDeleteUserData = {
2971
+ body?: never;
2972
+ path: {
2973
+ id: string;
2974
+ };
2975
+ query?: never;
2976
+ url: "/api/user/{id}";
2977
+ };
2978
+ type UserControllerDeleteUserResponses = {
2979
+ 200: unknown;
2980
+ };
2981
+ type UserControllerGetUserData = {
2982
+ body?: never;
2983
+ path: {
2984
+ id: string;
2985
+ };
2986
+ query?: never;
2987
+ url: "/api/user/{id}";
2988
+ };
2989
+ type UserControllerGetUserResponses = {
2990
+ 200: ManagedUserDto;
2991
+ };
2992
+ type UserControllerGetUserResponse = UserControllerGetUserResponses[keyof UserControllerGetUserResponses];
2993
+ type UserControllerUpdateUserData = {
2994
+ body: UpdateUserDto;
2995
+ path: {
2996
+ id: string;
2997
+ };
2998
+ query?: never;
2999
+ url: "/api/user/{id}";
3000
+ };
3001
+ type UserControllerUpdateUserResponses = {
3002
+ 200: ManagedUserDto;
3003
+ };
3004
+ type UserControllerUpdateUserResponse = UserControllerUpdateUserResponses[keyof UserControllerUpdateUserResponses];
2882
3005
  type IssuanceConfigControllerGetIssuanceConfigurationsData = {
2883
3006
  body?: never;
2884
3007
  path?: never;
@@ -3054,8 +3177,9 @@ type WebhookEndpointControllerGetAllResponses = {
3054
3177
  /**
3055
3178
  * List of webhook endpoints
3056
3179
  */
3057
- 200: unknown;
3180
+ 200: Array<WebhookEndpointEntity>;
3058
3181
  };
3182
+ type WebhookEndpointControllerGetAllResponse = WebhookEndpointControllerGetAllResponses[keyof WebhookEndpointControllerGetAllResponses];
3059
3183
  type WebhookEndpointControllerCreateData = {
3060
3184
  body: CreateWebhookEndpointDto;
3061
3185
  path?: never;
@@ -3703,4 +3827,4 @@ type StorageControllerUploadResponses = {
3703
3827
  };
3704
3828
  type StorageControllerUploadResponse = StorageControllerUploadResponses[keyof StorageControllerUploadResponses];
3705
3829
 
3706
- export type { ClientControllerDeleteClientData as $, AllowListPolicy as A, AuthorizeQueries as B, CacheControllerClearAllCachesData as C, CacheControllerClearAllCachesResponse as D, CacheControllerClearAllCachesResponses as E, CacheControllerClearStatusListCacheData as F, CacheControllerClearStatusListCacheResponse as G, CacheControllerClearStatusListCacheResponses as H, CacheControllerClearTrustListCacheData as I, CacheControllerClearTrustListCacheResponse as J, CacheControllerClearTrustListCacheResponses as K, CacheControllerGetStatsData as L, CacheControllerGetStatsResponses as M, CertificateInfoDto as N, ChainedAsConfig as O, ChainedAsErrorResponseDto as P, ChainedAsParResponseDto as Q, ChainedAsTokenConfig as R, Session as S, ChainedAsTokenRequestDto as T, ChainedAsTokenResponseDto as U, ClaimDisplayInfo as V, ClaimMetadata as W, ClaimsQuery as X, ClientControllerCreateClientData as Y, ClientControllerCreateClientResponse as Z, ClientControllerCreateClientResponses as _, ApiKeyConfig as a, DisplayInfo as a$, ClientControllerDeleteClientResponses as a0, ClientControllerGetClientData as a1, ClientControllerGetClientResponse as a2, ClientControllerGetClientResponses as a3, ClientControllerGetClientSecretData as a4, ClientControllerGetClientSecretResponse as a5, ClientControllerGetClientSecretResponses as a6, ClientControllerGetClientsData as a7, ClientControllerGetClientsResponse as a8, ClientControllerGetClientsResponses as a9, CredentialConfigControllerGetConfigsResponses as aA, CredentialConfigControllerStoreCredentialConfigurationData as aB, CredentialConfigControllerStoreCredentialConfigurationResponse as aC, CredentialConfigControllerStoreCredentialConfigurationResponses as aD, CredentialConfigControllerUpdateCredentialConfigurationData as aE, CredentialConfigControllerUpdateCredentialConfigurationResponse as aF, CredentialConfigControllerUpdateCredentialConfigurationResponses as aG, CredentialConfigCreate as aH, CredentialConfigUpdate as aI, CredentialOfferControllerGetOfferData as aJ, CredentialOfferControllerGetOfferResponse as aK, CredentialOfferControllerGetOfferResponses as aL, CredentialQuery as aM, CredentialSetQuery as aN, Dcql as aO, DeferredControllerCompleteDeferredData as aP, DeferredControllerCompleteDeferredErrors as aQ, DeferredControllerCompleteDeferredResponse as aR, DeferredControllerCompleteDeferredResponses as aS, DeferredControllerFailDeferredData as aT, DeferredControllerFailDeferredErrors as aU, DeferredControllerFailDeferredResponse as aV, DeferredControllerFailDeferredResponses as aW, DeferredCredentialRequestDto as aX, DeferredOperationResponse as aY, Display as aZ, DisplayImage as a_, ClientControllerRotateClientSecretData as aa, ClientControllerRotateClientSecretResponse as ab, ClientControllerRotateClientSecretResponses as ac, ClientControllerUpdateClientData as ad, ClientControllerUpdateClientResponse as ae, ClientControllerUpdateClientResponses as af, ClientCredentialsDto as ag, ClientEntity as ah, ClientOptions as ai, ClientSecretResponseDto as aj, CompleteDeferredDto as ak, CreateAccessCertificateDto as al, CreateAttributeProviderDto as am, CreateClientDto as an, CreateRegistrarConfigDto as ao, CreateStatusListDto as ap, CreateTenantDto as aq, CreateWebhookEndpointDto as ar, CredentialConfig as as, CredentialConfigControllerDeleteIssuanceConfigurationData as at, CredentialConfigControllerDeleteIssuanceConfigurationResponses as au, CredentialConfigControllerGetConfigByIdData as av, CredentialConfigControllerGetConfigByIdResponse as aw, CredentialConfigControllerGetConfigByIdResponses as ax, CredentialConfigControllerGetConfigsData as ay, CredentialConfigControllerGetConfigsResponse as az, AppControllerGetFrontendConfigData as b, KmsProviderInfoDto as b$, DisplayLogo as b0, EcJwk as b1, EcPublic as b2, EmbeddedDisclosurePolicy as b3, ExportEcJwk as b4, ExportRotationPolicyDto as b5, ExternalTrustListEntity as b6, FailDeferredDto as b7, FileUploadDto as b8, FrontendConfigResponseDto as b9, KeyChainControllerExportResponse as bA, KeyChainControllerExportResponses as bB, KeyChainControllerGetAllData as bC, KeyChainControllerGetAllResponse as bD, KeyChainControllerGetAllResponses as bE, KeyChainControllerGetByIdData as bF, KeyChainControllerGetByIdErrors as bG, KeyChainControllerGetByIdResponse as bH, KeyChainControllerGetByIdResponses as bI, KeyChainControllerGetProvidersData as bJ, KeyChainControllerGetProvidersResponse as bK, KeyChainControllerGetProvidersResponses as bL, KeyChainControllerImportData as bM, KeyChainControllerImportResponses as bN, KeyChainControllerRotateData as bO, KeyChainControllerRotateErrors as bP, KeyChainControllerRotateResponses as bQ, KeyChainControllerUpdateData as bR, KeyChainControllerUpdateErrors as bS, KeyChainControllerUpdateResponses as bT, KeyChainCreateDto as bU, KeyChainEntity as bV, KeyChainExportDto as bW, KeyChainImportDto as bX, KeyChainResponseDto as bY, KeyChainUpdateDto as bZ, KmsProviderCapabilitiesDto as b_, GrafanaConfigDto as ba, IaeActionOpenid4VpPresentation as bb, IaeActionRedirectToWeb as bc, ImportTenantDto as bd, InteractiveAuthorizationCodeResponseDto as be, InteractiveAuthorizationErrorResponseDto as bf, InteractiveAuthorizationRequestDto as bg, InternalTrustListEntity as bh, IssuanceConfig as bi, IssuanceConfigControllerGetIssuanceConfigurationsData as bj, IssuanceConfigControllerGetIssuanceConfigurationsResponse as bk, IssuanceConfigControllerGetIssuanceConfigurationsResponses as bl, IssuanceConfigControllerStoreIssuanceConfigurationData as bm, IssuanceConfigControllerStoreIssuanceConfigurationResponse as bn, IssuanceConfigControllerStoreIssuanceConfigurationResponses as bo, IssuanceDto as bp, IssuerMetadataCredentialConfig as bq, JwksResponseDto as br, KeyAttestationsRequired as bs, KeyChainControllerCreateData as bt, KeyChainControllerCreateResponses as bu, KeyChainControllerDeleteData as bv, KeyChainControllerDeleteErrors as bw, KeyChainControllerDeleteResponses as bx, KeyChainControllerExportData as by, KeyChainControllerExportErrors as bz, AppControllerGetFrontendConfigResponse as c, RotationPolicyCreateDto as c$, KmsProvidersResponseDto as c0, NoneTrustPolicy as c1, NotificationRequestDto as c2, Object$1 as c3, ObjectWritable as c4, OfferRequestDto as c5, OfferResponse as c6, ParResponseDto as c7, PolicyCredential as c8, PresentationAttachment as c9, PublicKeyInfoDto as cA, RegistrarConfigResponseDto as cB, RegistrarControllerCreateAccessCertificateData as cC, RegistrarControllerCreateAccessCertificateErrors as cD, RegistrarControllerCreateAccessCertificateResponse as cE, RegistrarControllerCreateAccessCertificateResponses as cF, RegistrarControllerCreateConfigData as cG, RegistrarControllerCreateConfigErrors as cH, RegistrarControllerCreateConfigResponse as cI, RegistrarControllerCreateConfigResponses as cJ, RegistrarControllerDeleteConfigData as cK, RegistrarControllerDeleteConfigResponse as cL, RegistrarControllerDeleteConfigResponses as cM, RegistrarControllerGetConfigData as cN, RegistrarControllerGetConfigErrors as cO, RegistrarControllerGetConfigResponse as cP, RegistrarControllerGetConfigResponses as cQ, RegistrarControllerUpdateConfigData as cR, RegistrarControllerUpdateConfigErrors as cS, RegistrarControllerUpdateConfigResponse as cT, RegistrarControllerUpdateConfigResponses as cU, RegistrationCertificateBody as cV, RegistrationCertificatePurpose as cW, RegistrationCertificateRequest as cX, ResolveIssuerMetadataDto as cY, RoleDto as cZ, RootOfTrustPolicy as c_, PresentationConfig as ca, PresentationConfigCreateDto as cb, PresentationConfigUpdateDto as cc, PresentationConfigWritable as cd, PresentationDuringIssuanceConfig as ce, PresentationManagementControllerConfigurationData as cf, PresentationManagementControllerConfigurationResponse as cg, PresentationManagementControllerConfigurationResponses as ch, PresentationManagementControllerDeleteConfigurationData as ci, PresentationManagementControllerDeleteConfigurationResponses as cj, PresentationManagementControllerGetConfigurationData as ck, PresentationManagementControllerGetConfigurationResponse as cl, PresentationManagementControllerGetConfigurationResponses as cm, PresentationManagementControllerReissueRegistrationCertificateData as cn, PresentationManagementControllerReissueRegistrationCertificateErrors as co, PresentationManagementControllerReissueRegistrationCertificateResponses as cp, PresentationManagementControllerResolveIssuerMetadataData as cq, PresentationManagementControllerResolveIssuerMetadataErrors as cr, PresentationManagementControllerResolveIssuerMetadataResponses as cs, PresentationManagementControllerStorePresentationConfigData as ct, PresentationManagementControllerStorePresentationConfigResponse as cu, PresentationManagementControllerStorePresentationConfigResponses as cv, PresentationManagementControllerUpdateConfigurationData as cw, PresentationManagementControllerUpdateConfigurationResponse as cx, PresentationManagementControllerUpdateConfigurationResponses as cy, PresentationRequest as cz, AppControllerGetFrontendConfigResponses as d, TenantControllerDeleteTenantResponses as d$, RotationPolicyImportDto as d0, RotationPolicyResponseDto as d1, RotationPolicyUpdateDto as d2, SchemaResponse as d3, SessionConfigControllerGetConfigData as d4, SessionConfigControllerGetConfigResponse as d5, SessionConfigControllerGetConfigResponses as d6, SessionConfigControllerResetConfigData as d7, SessionConfigControllerResetConfigResponses as d8, SessionConfigControllerUpdateConfigData as d9, StatusListConfigControllerResetConfigResponse as dA, StatusListConfigControllerResetConfigResponses as dB, StatusListConfigControllerUpdateConfigData as dC, StatusListConfigControllerUpdateConfigResponse as dD, StatusListConfigControllerUpdateConfigResponses as dE, StatusListImportDto as dF, StatusListManagementControllerCreateListData as dG, StatusListManagementControllerCreateListResponse as dH, StatusListManagementControllerCreateListResponses as dI, StatusListManagementControllerDeleteListData as dJ, StatusListManagementControllerDeleteListResponse as dK, StatusListManagementControllerDeleteListResponses as dL, StatusListManagementControllerGetListData as dM, StatusListManagementControllerGetListResponse as dN, StatusListManagementControllerGetListResponses as dO, StatusListManagementControllerGetListsData as dP, StatusListManagementControllerGetListsResponse as dQ, StatusListManagementControllerGetListsResponses as dR, StatusListManagementControllerUpdateListData as dS, StatusListManagementControllerUpdateListResponse as dT, StatusListManagementControllerUpdateListResponses as dU, StatusListResponseDto as dV, StatusUpdateDto as dW, StorageControllerUploadData as dX, StorageControllerUploadResponse as dY, StorageControllerUploadResponses as dZ, TenantControllerDeleteTenantData as d_, SessionConfigControllerUpdateConfigResponse as da, SessionConfigControllerUpdateConfigResponses as db, SessionControllerDeleteSessionData as dc, SessionControllerDeleteSessionResponses as dd, SessionControllerGetAllSessionsData as de, SessionControllerGetAllSessionsResponse as df, SessionControllerGetAllSessionsResponses as dg, SessionControllerGetSessionData as dh, SessionControllerGetSessionLogsData as di, SessionControllerGetSessionLogsResponse as dj, SessionControllerGetSessionLogsResponses as dk, SessionControllerGetSessionResponse as dl, SessionControllerGetSessionResponses as dm, SessionControllerRevokeAllData as dn, SessionControllerRevokeAllResponses as dp, SessionEventsControllerSubscribeToSessionEventsData as dq, SessionEventsControllerSubscribeToSessionEventsResponses as dr, SessionLogEntryResponseDto as ds, SessionStorageConfig as dt, StatusListAggregationDto as du, StatusListConfig as dv, StatusListConfigControllerGetConfigData as dw, StatusListConfigControllerGetConfigResponse as dx, StatusListConfigControllerGetConfigResponses as dy, StatusListConfigControllerResetConfigData as dz, AppControllerGetVersionData as e, WebhookEndpointControllerDeleteResponses as e$, TenantControllerGetTenantData as e0, TenantControllerGetTenantResponse as e1, TenantControllerGetTenantResponses as e2, TenantControllerGetTenantsData as e3, TenantControllerGetTenantsResponse as e4, TenantControllerGetTenantsResponses as e5, TenantControllerInitTenantData as e6, TenantControllerInitTenantResponse as e7, TenantControllerInitTenantResponses as e8, TenantControllerUpdateTenantData as e9, TrustListControllerUpdateTrustListData as eA, TrustListControllerUpdateTrustListResponse as eB, TrustListControllerUpdateTrustListResponses as eC, TrustListCreateDto as eD, TrustListEntityInfo as eE, TrustListVersion as eF, TrustedAuthorityQuery as eG, UpdateAttributeProviderDto as eH, UpdateClientDto as eI, UpdateRegistrarConfigDto as eJ, UpdateSessionConfigDto as eK, UpdateStatusListConfigDto as eL, UpdateStatusListDto as eM, UpdateTenantDto as eN, UpdateWebhookEndpointDto as eO, UpstreamOidcConfig as eP, Vct as eQ, VerifierOfferControllerGetOfferData as eR, VerifierOfferControllerGetOfferResponse as eS, VerifierOfferControllerGetOfferResponses as eT, WebHookAuthConfigHeader as eU, WebHookAuthConfigNone as eV, WebhookConfig as eW, WebhookEndpointControllerCreateData as eX, WebhookEndpointControllerCreateResponses as eY, WebhookEndpointControllerDeleteData as eZ, WebhookEndpointControllerDeleteErrors as e_, TenantControllerUpdateTenantResponse as ea, TenantControllerUpdateTenantResponses as eb, TenantEntity as ec, TokenResponse as ed, TransactionData as ee, TrustList as ef, TrustListControllerCreateTrustListData as eg, TrustListControllerCreateTrustListResponse as eh, TrustListControllerCreateTrustListResponses as ei, TrustListControllerDeleteTrustListData as ej, TrustListControllerDeleteTrustListResponses as ek, TrustListControllerExportTrustListData as el, TrustListControllerExportTrustListResponse as em, TrustListControllerExportTrustListResponses as en, TrustListControllerGetAllTrustListsData as eo, TrustListControllerGetAllTrustListsResponse as ep, TrustListControllerGetAllTrustListsResponses as eq, TrustListControllerGetTrustListData as er, TrustListControllerGetTrustListResponse as es, TrustListControllerGetTrustListResponses as et, TrustListControllerGetTrustListVersionData as eu, TrustListControllerGetTrustListVersionResponse as ev, TrustListControllerGetTrustListVersionResponses as ew, TrustListControllerGetTrustListVersionsData as ex, TrustListControllerGetTrustListVersionsResponse as ey, TrustListControllerGetTrustListVersionsResponses as ez, AppControllerGetVersionResponses as f, WebhookEndpointControllerGetAllData as f0, WebhookEndpointControllerGetAllResponses as f1, WebhookEndpointControllerGetByIdData as f2, WebhookEndpointControllerGetByIdErrors as f3, WebhookEndpointControllerGetByIdResponses as f4, WebhookEndpointControllerUpdateData as f5, WebhookEndpointControllerUpdateErrors as f6, WebhookEndpointControllerUpdateResponses as f7, WebhookEndpointEntity as f8, AttestationBasedPolicy as g, AttributeProviderControllerCreateData as h, AttributeProviderControllerCreateResponses as i, AttributeProviderControllerDeleteData as j, AttributeProviderControllerDeleteErrors as k, AttributeProviderControllerDeleteResponses as l, AttributeProviderControllerGetAllData as m, AttributeProviderControllerGetAllResponses as n, AttributeProviderControllerGetByIdData as o, AttributeProviderControllerGetByIdErrors as p, AttributeProviderControllerGetByIdResponses as q, AttributeProviderControllerUpdateData as r, AttributeProviderControllerUpdateErrors as s, AttributeProviderControllerUpdateResponses as t, AttributeProviderEntity as u, AuthenticationMethodAuth as v, AuthenticationMethodNone as w, AuthenticationMethodPresentation as x, AuthenticationUrlConfig as y, AuthorizationResponse as z };
3830
+ export type { ClientControllerDeleteClientData as $, AllowListPolicy as A, AuthorizeQueries as B, CacheControllerClearAllCachesData as C, CacheControllerClearAllCachesResponse as D, CacheControllerClearAllCachesResponses as E, CacheControllerClearStatusListCacheData as F, CacheControllerClearStatusListCacheResponse as G, CacheControllerClearStatusListCacheResponses as H, CacheControllerClearTrustListCacheData as I, CacheControllerClearTrustListCacheResponse as J, CacheControllerClearTrustListCacheResponses as K, CacheControllerGetStatsData as L, CacheControllerGetStatsResponses as M, CertificateInfoDto as N, ChainedAsConfig as O, ChainedAsErrorResponseDto as P, ChainedAsParResponseDto as Q, ChainedAsTokenConfig as R, Session as S, ChainedAsTokenRequestDto as T, ChainedAsTokenResponseDto as U, ClaimDisplayInfo as V, ClaimMetadata as W, ClaimsQuery as X, ClientControllerCreateClientData as Y, ClientControllerCreateClientResponse as Z, ClientControllerCreateClientResponses as _, ApiKeyConfig as a, DisplayImage as a$, ClientControllerDeleteClientResponses as a0, ClientControllerGetClientData as a1, ClientControllerGetClientResponse as a2, ClientControllerGetClientResponses as a3, ClientControllerGetClientSecretData as a4, ClientControllerGetClientSecretResponse as a5, ClientControllerGetClientSecretResponses as a6, ClientControllerGetClientsData as a7, ClientControllerGetClientsResponse as a8, ClientControllerGetClientsResponses as a9, CredentialConfigControllerGetConfigsResponse as aA, CredentialConfigControllerGetConfigsResponses as aB, CredentialConfigControllerStoreCredentialConfigurationData as aC, CredentialConfigControllerStoreCredentialConfigurationResponse as aD, CredentialConfigControllerStoreCredentialConfigurationResponses as aE, CredentialConfigControllerUpdateCredentialConfigurationData as aF, CredentialConfigControllerUpdateCredentialConfigurationResponse as aG, CredentialConfigControllerUpdateCredentialConfigurationResponses as aH, CredentialConfigCreate as aI, CredentialConfigUpdate as aJ, CredentialOfferControllerGetOfferData as aK, CredentialOfferControllerGetOfferResponse as aL, CredentialOfferControllerGetOfferResponses as aM, CredentialQuery as aN, CredentialSetQuery as aO, Dcql as aP, DeferredControllerCompleteDeferredData as aQ, DeferredControllerCompleteDeferredErrors as aR, DeferredControllerCompleteDeferredResponse as aS, DeferredControllerCompleteDeferredResponses as aT, DeferredControllerFailDeferredData as aU, DeferredControllerFailDeferredErrors as aV, DeferredControllerFailDeferredResponse as aW, DeferredControllerFailDeferredResponses as aX, DeferredCredentialRequestDto as aY, DeferredOperationResponse as aZ, Display as a_, ClientControllerRotateClientSecretData as aa, ClientControllerRotateClientSecretResponse as ab, ClientControllerRotateClientSecretResponses as ac, ClientControllerUpdateClientData as ad, ClientControllerUpdateClientResponse as ae, ClientControllerUpdateClientResponses as af, ClientCredentialsDto as ag, ClientEntity as ah, ClientOptions as ai, ClientSecretResponseDto as aj, CompleteDeferredDto as ak, CreateAccessCertificateDto as al, CreateAttributeProviderDto as am, CreateClientDto as an, CreateRegistrarConfigDto as ao, CreateStatusListDto as ap, CreateTenantDto as aq, CreateUserDto as ar, CreateWebhookEndpointDto as as, CredentialConfig as at, CredentialConfigControllerDeleteIssuanceConfigurationData as au, CredentialConfigControllerDeleteIssuanceConfigurationResponses as av, CredentialConfigControllerGetConfigByIdData as aw, CredentialConfigControllerGetConfigByIdResponse as ax, CredentialConfigControllerGetConfigByIdResponses as ay, CredentialConfigControllerGetConfigsData as az, AppControllerGetFrontendConfigData as b, KmsProviderCapabilitiesDto as b$, DisplayInfo as b0, DisplayLogo as b1, EcJwk as b2, EcPublic as b3, EmbeddedDisclosurePolicy as b4, ExportEcJwk as b5, ExportRotationPolicyDto as b6, ExternalTrustListEntity as b7, FailDeferredDto as b8, FileUploadDto as b9, KeyChainControllerExportErrors as bA, KeyChainControllerExportResponse as bB, KeyChainControllerExportResponses as bC, KeyChainControllerGetAllData as bD, KeyChainControllerGetAllResponse as bE, KeyChainControllerGetAllResponses as bF, KeyChainControllerGetByIdData as bG, KeyChainControllerGetByIdErrors as bH, KeyChainControllerGetByIdResponse as bI, KeyChainControllerGetByIdResponses as bJ, KeyChainControllerGetProvidersData as bK, KeyChainControllerGetProvidersResponse as bL, KeyChainControllerGetProvidersResponses as bM, KeyChainControllerImportData as bN, KeyChainControllerImportResponses as bO, KeyChainControllerRotateData as bP, KeyChainControllerRotateErrors as bQ, KeyChainControllerRotateResponses as bR, KeyChainControllerUpdateData as bS, KeyChainControllerUpdateErrors as bT, KeyChainControllerUpdateResponses as bU, KeyChainCreateDto as bV, KeyChainEntity as bW, KeyChainExportDto as bX, KeyChainImportDto as bY, KeyChainResponseDto as bZ, KeyChainUpdateDto as b_, FrontendConfigResponseDto as ba, GrafanaConfigDto as bb, IaeActionOpenid4VpPresentation as bc, IaeActionRedirectToWeb as bd, ImportTenantDto as be, InteractiveAuthorizationCodeResponseDto as bf, InteractiveAuthorizationErrorResponseDto as bg, InteractiveAuthorizationRequestDto as bh, InternalTrustListEntity as bi, IssuanceConfig as bj, IssuanceConfigControllerGetIssuanceConfigurationsData as bk, IssuanceConfigControllerGetIssuanceConfigurationsResponse as bl, IssuanceConfigControllerGetIssuanceConfigurationsResponses as bm, IssuanceConfigControllerStoreIssuanceConfigurationData as bn, IssuanceConfigControllerStoreIssuanceConfigurationResponse as bo, IssuanceConfigControllerStoreIssuanceConfigurationResponses as bp, IssuanceDto as bq, IssuerMetadataCredentialConfig as br, JwksResponseDto as bs, KeyAttestationsRequired as bt, KeyChainControllerCreateData as bu, KeyChainControllerCreateResponses as bv, KeyChainControllerDeleteData as bw, KeyChainControllerDeleteErrors as bx, KeyChainControllerDeleteResponses as by, KeyChainControllerExportData as bz, AppControllerGetFrontendConfigResponse as c, ResolveIssuerMetadataDto as c$, KmsProviderInfoDto as c0, KmsProvidersResponseDto as c1, ManagedUserDto as c2, NoneTrustPolicy as c3, NotificationRequestDto as c4, Object$1 as c5, ObjectWritable as c6, OfferRequestDto as c7, OfferResponse as c8, ParResponseDto as c9, PresentationManagementControllerUpdateConfigurationResponses as cA, PresentationRequest as cB, PublicKeyInfoDto as cC, RegistrarConfigResponseDto as cD, RegistrarControllerCreateAccessCertificateData as cE, RegistrarControllerCreateAccessCertificateErrors as cF, RegistrarControllerCreateAccessCertificateResponse as cG, RegistrarControllerCreateAccessCertificateResponses as cH, RegistrarControllerCreateConfigData as cI, RegistrarControllerCreateConfigErrors as cJ, RegistrarControllerCreateConfigResponse as cK, RegistrarControllerCreateConfigResponses as cL, RegistrarControllerDeleteConfigData as cM, RegistrarControllerDeleteConfigResponse as cN, RegistrarControllerDeleteConfigResponses as cO, RegistrarControllerGetConfigData as cP, RegistrarControllerGetConfigErrors as cQ, RegistrarControllerGetConfigResponse as cR, RegistrarControllerGetConfigResponses as cS, RegistrarControllerUpdateConfigData as cT, RegistrarControllerUpdateConfigErrors as cU, RegistrarControllerUpdateConfigResponse as cV, RegistrarControllerUpdateConfigResponses as cW, RegistrationCertificateBody as cX, RegistrationCertificateDefaults as cY, RegistrationCertificatePurpose as cZ, RegistrationCertificateRequest as c_, PolicyCredential as ca, PresentationAttachment as cb, PresentationConfig as cc, PresentationConfigCreateDto as cd, PresentationConfigUpdateDto as ce, PresentationConfigWritable as cf, PresentationDuringIssuanceConfig as cg, PresentationManagementControllerConfigurationData as ch, PresentationManagementControllerConfigurationResponse as ci, PresentationManagementControllerConfigurationResponses as cj, PresentationManagementControllerDeleteConfigurationData as ck, PresentationManagementControllerDeleteConfigurationResponses as cl, PresentationManagementControllerGetConfigurationData as cm, PresentationManagementControllerGetConfigurationResponse as cn, PresentationManagementControllerGetConfigurationResponses as co, PresentationManagementControllerReissueRegistrationCertificateData as cp, PresentationManagementControllerReissueRegistrationCertificateErrors as cq, PresentationManagementControllerReissueRegistrationCertificateResponses as cr, PresentationManagementControllerResolveIssuerMetadataData as cs, PresentationManagementControllerResolveIssuerMetadataErrors as ct, PresentationManagementControllerResolveIssuerMetadataResponses as cu, PresentationManagementControllerStorePresentationConfigData as cv, PresentationManagementControllerStorePresentationConfigResponse as cw, PresentationManagementControllerStorePresentationConfigResponses as cx, PresentationManagementControllerUpdateConfigurationData as cy, PresentationManagementControllerUpdateConfigurationResponse as cz, AppControllerGetFrontendConfigResponses as d, StorageControllerUploadResponse as d$, RoleDto as d0, RootOfTrustPolicy as d1, RotationPolicyCreateDto as d2, RotationPolicyImportDto as d3, RotationPolicyResponseDto as d4, RotationPolicyUpdateDto as d5, SchemaResponse as d6, SessionConfigControllerGetConfigData as d7, SessionConfigControllerGetConfigResponse as d8, SessionConfigControllerGetConfigResponses as d9, StatusListConfigControllerGetConfigResponse as dA, StatusListConfigControllerGetConfigResponses as dB, StatusListConfigControllerResetConfigData as dC, StatusListConfigControllerResetConfigResponse as dD, StatusListConfigControllerResetConfigResponses as dE, StatusListConfigControllerUpdateConfigData as dF, StatusListConfigControllerUpdateConfigResponse as dG, StatusListConfigControllerUpdateConfigResponses as dH, StatusListImportDto as dI, StatusListManagementControllerCreateListData as dJ, StatusListManagementControllerCreateListResponse as dK, StatusListManagementControllerCreateListResponses as dL, StatusListManagementControllerDeleteListData as dM, StatusListManagementControllerDeleteListResponse as dN, StatusListManagementControllerDeleteListResponses as dO, StatusListManagementControllerGetListData as dP, StatusListManagementControllerGetListResponse as dQ, StatusListManagementControllerGetListResponses as dR, StatusListManagementControllerGetListsData as dS, StatusListManagementControllerGetListsResponse as dT, StatusListManagementControllerGetListsResponses as dU, StatusListManagementControllerUpdateListData as dV, StatusListManagementControllerUpdateListResponse as dW, StatusListManagementControllerUpdateListResponses as dX, StatusListResponseDto as dY, StatusUpdateDto as dZ, StorageControllerUploadData as d_, SessionConfigControllerResetConfigData as da, SessionConfigControllerResetConfigResponses as db, SessionConfigControllerUpdateConfigData as dc, SessionConfigControllerUpdateConfigResponse as dd, SessionConfigControllerUpdateConfigResponses as de, SessionControllerDeleteSessionData as df, SessionControllerDeleteSessionResponses as dg, SessionControllerGetAllSessionsData as dh, SessionControllerGetAllSessionsResponse as di, SessionControllerGetAllSessionsResponses as dj, SessionControllerGetSessionData as dk, SessionControllerGetSessionLogsData as dl, SessionControllerGetSessionLogsResponse as dm, SessionControllerGetSessionLogsResponses as dn, SessionControllerGetSessionResponse as dp, SessionControllerGetSessionResponses as dq, SessionControllerRevokeAllData as dr, SessionControllerRevokeAllResponses as ds, SessionEventsControllerSubscribeToSessionEventsData as dt, SessionEventsControllerSubscribeToSessionEventsResponses as du, SessionLogEntryResponseDto as dv, SessionStorageConfig as dw, StatusListAggregationDto as dx, StatusListConfig as dy, StatusListConfigControllerGetConfigData as dz, AppControllerGetVersionData as e, UserControllerGetUserResponses as e$, StorageControllerUploadResponses as e0, TenantControllerDeleteTenantData as e1, TenantControllerDeleteTenantResponses as e2, TenantControllerGetTenantData as e3, TenantControllerGetTenantResponse as e4, TenantControllerGetTenantResponses as e5, TenantControllerGetTenantsData as e6, TenantControllerGetTenantsResponse as e7, TenantControllerGetTenantsResponses as e8, TenantControllerInitTenantData as e9, TrustListControllerGetTrustListVersionsData as eA, TrustListControllerGetTrustListVersionsResponse as eB, TrustListControllerGetTrustListVersionsResponses as eC, TrustListControllerUpdateTrustListData as eD, TrustListControllerUpdateTrustListResponse as eE, TrustListControllerUpdateTrustListResponses as eF, TrustListCreateDto as eG, TrustListEntityInfo as eH, TrustListVersion as eI, TrustedAuthorityQuery as eJ, UpdateAttributeProviderDto as eK, UpdateClientDto as eL, UpdateRegistrarConfigDto as eM, UpdateSessionConfigDto as eN, UpdateStatusListConfigDto as eO, UpdateStatusListDto as eP, UpdateTenantDto as eQ, UpdateUserDto as eR, UpdateWebhookEndpointDto as eS, UpstreamOidcConfig as eT, UserControllerCreateUserData as eU, UserControllerCreateUserResponse as eV, UserControllerCreateUserResponses as eW, UserControllerDeleteUserData as eX, UserControllerDeleteUserResponses as eY, UserControllerGetUserData as eZ, UserControllerGetUserResponse as e_, TenantControllerInitTenantResponse as ea, TenantControllerInitTenantResponses as eb, TenantControllerUpdateTenantData as ec, TenantControllerUpdateTenantResponse as ed, TenantControllerUpdateTenantResponses as ee, TenantEntity as ef, TokenResponse as eg, TransactionData as eh, TrustList as ei, TrustListControllerCreateTrustListData as ej, TrustListControllerCreateTrustListResponse as ek, TrustListControllerCreateTrustListResponses as el, TrustListControllerDeleteTrustListData as em, TrustListControllerDeleteTrustListResponses as en, TrustListControllerExportTrustListData as eo, TrustListControllerExportTrustListResponse as ep, TrustListControllerExportTrustListResponses as eq, TrustListControllerGetAllTrustListsData as er, TrustListControllerGetAllTrustListsResponse as es, TrustListControllerGetAllTrustListsResponses as et, TrustListControllerGetTrustListData as eu, TrustListControllerGetTrustListResponse as ev, TrustListControllerGetTrustListResponses as ew, TrustListControllerGetTrustListVersionData as ex, TrustListControllerGetTrustListVersionResponse as ey, TrustListControllerGetTrustListVersionResponses as ez, AppControllerGetVersionResponses as f, UserControllerGetUsersData as f0, UserControllerGetUsersResponse as f1, UserControllerGetUsersResponses as f2, UserControllerUpdateUserData as f3, UserControllerUpdateUserResponse as f4, UserControllerUpdateUserResponses as f5, Vct as f6, VerifierOfferControllerGetOfferData as f7, VerifierOfferControllerGetOfferResponse as f8, VerifierOfferControllerGetOfferResponses as f9, WebHookAuthConfigHeader as fa, WebHookAuthConfigNone as fb, WebhookConfig as fc, WebhookEndpointControllerCreateData as fd, WebhookEndpointControllerCreateResponses as fe, WebhookEndpointControllerDeleteData as ff, WebhookEndpointControllerDeleteErrors as fg, WebhookEndpointControllerDeleteResponses as fh, WebhookEndpointControllerGetAllData as fi, WebhookEndpointControllerGetAllResponse as fj, WebhookEndpointControllerGetAllResponses as fk, WebhookEndpointControllerGetByIdData as fl, WebhookEndpointControllerGetByIdErrors as fm, WebhookEndpointControllerGetByIdResponses as fn, WebhookEndpointControllerUpdateData as fo, WebhookEndpointControllerUpdateErrors as fp, WebhookEndpointControllerUpdateResponses as fq, WebhookEndpointEntity as fr, AttestationBasedPolicy as g, AttributeProviderControllerCreateData as h, AttributeProviderControllerCreateResponses as i, AttributeProviderControllerDeleteData as j, AttributeProviderControllerDeleteErrors as k, AttributeProviderControllerDeleteResponses as l, AttributeProviderControllerGetAllData as m, AttributeProviderControllerGetAllResponses as n, AttributeProviderControllerGetByIdData as o, AttributeProviderControllerGetByIdErrors as p, AttributeProviderControllerGetByIdResponses as q, AttributeProviderControllerUpdateData as r, AttributeProviderControllerUpdateErrors as s, AttributeProviderControllerUpdateResponses as t, AttributeProviderEntity as u, AuthenticationMethodAuth as v, AuthenticationMethodNone as w, AuthenticationMethodPresentation as x, AuthenticationUrlConfig as y, AuthorizationResponse as z };
@@ -193,7 +193,11 @@ type ServerSentEventsResult<TData = unknown, TReturn = void, TNext = unknown> =
193
193
  };
194
194
 
195
195
  declare const mergeHeaders: (...headers: Array<Required<Config>["headers"] | undefined>) => Headers;
196
- type ErrInterceptor<Err, Res, Req, Options> = (error: Err, response: Res, request: Req, options: Options) => Err | Promise<Err>;
196
+ type ErrInterceptor<Err, Res, Req, Options> = (error: Err,
197
+ /** response may be undefined due to a network error where no response object is produced */
198
+ response: Res | undefined,
199
+ /** request may be undefined, because error may be from building the request object itself */
200
+ request: Req | undefined, options: Options) => Err | Promise<Err>;
197
201
  type ReqInterceptor<Req, Options> = (request: Req, options: Options) => Req | Promise<Req>;
198
202
  type ResInterceptor<Res, Req, Options> = (response: Res, request: Req, options: Options) => Res | Promise<Res>;
199
203
  declare class Interceptors<Interceptor> {
@@ -287,8 +291,10 @@ type RequestResult<TData = unknown, TError = unknown, ThrowOnError extends boole
287
291
  data: undefined;
288
292
  error: TError extends Record<string, unknown> ? TError[keyof TError] : TError;
289
293
  }) & {
290
- request: Request;
291
- response: Response;
294
+ /** request may be undefined, because error may be from building the request object itself */
295
+ request?: Request;
296
+ /** response may be undefined, because error may be from building the request object itself or from a network error */
297
+ response?: Response;
292
298
  }>;
293
299
  interface ClientOptions {
294
300
  baseUrl?: string;
@@ -193,7 +193,11 @@ type ServerSentEventsResult<TData = unknown, TReturn = void, TNext = unknown> =
193
193
  };
194
194
 
195
195
  declare const mergeHeaders: (...headers: Array<Required<Config>["headers"] | undefined>) => Headers;
196
- type ErrInterceptor<Err, Res, Req, Options> = (error: Err, response: Res, request: Req, options: Options) => Err | Promise<Err>;
196
+ type ErrInterceptor<Err, Res, Req, Options> = (error: Err,
197
+ /** response may be undefined due to a network error where no response object is produced */
198
+ response: Res | undefined,
199
+ /** request may be undefined, because error may be from building the request object itself */
200
+ request: Req | undefined, options: Options) => Err | Promise<Err>;
197
201
  type ReqInterceptor<Req, Options> = (request: Req, options: Options) => Req | Promise<Req>;
198
202
  type ResInterceptor<Res, Req, Options> = (response: Res, request: Req, options: Options) => Res | Promise<Res>;
199
203
  declare class Interceptors<Interceptor> {
@@ -287,8 +291,10 @@ type RequestResult<TData = unknown, TError = unknown, ThrowOnError extends boole
287
291
  data: undefined;
288
292
  error: TError extends Record<string, unknown> ? TError[keyof TError] : TError;
289
293
  }) & {
290
- request: Request;
291
- response: Response;
294
+ /** request may be undefined, because error may be from building the request object itself */
295
+ request?: Request;
296
+ /** response may be undefined, because error may be from building the request object itself or from a network error */
297
+ response?: Response;
292
298
  }>;
293
299
  interface ClientOptions {
294
300
  baseUrl?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eudiplo/sdk-core",
3
- "version": "4.1.0",
3
+ "version": "4.2.0",
4
4
  "description": "Framework-agnostic EUDIPLO SDK for demos and integrations",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -35,7 +35,7 @@
35
35
  "prepublishOnly": "pnpm build"
36
36
  },
37
37
  "devDependencies": {
38
- "@hey-api/openapi-ts": "^0.96.0",
38
+ "@hey-api/openapi-ts": "^0.97.0",
39
39
  "@types/node": "^25.3.3",
40
40
  "tsup": "^8.5.1",
41
41
  "typescript": "^5.9.3"