@eudiplo/sdk-core 4.1.0 → 4.3.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,24 @@ 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;
628
+ /**
629
+ * Flag indicating whether the session offer has been consumed.
630
+ * Prevents replay attacks by ensuring each offer can only be used once.
631
+ * For OID4VCI: set after successful token exchange.
632
+ * For OID4VP: set after successful response validation.
633
+ */
634
+ consumed: boolean;
635
+ /**
636
+ * Timestamp when the session offer was consumed.
637
+ * Null if the offer has not yet been consumed.
638
+ */
639
+ consumedAt?: string;
622
640
  };
623
641
  type SessionLogEntryResponseDto = {
624
642
  /**
@@ -678,6 +696,39 @@ type UpdateSessionConfigDto = {
678
696
  */
679
697
  cleanupMode?: "full" | "anonymize";
680
698
  };
699
+ type ManagedUserDto = {
700
+ id: string;
701
+ username: string;
702
+ email?: string;
703
+ enabled: boolean;
704
+ roles: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "users:manage" | "tenants:manage" | "registrar:manage">;
705
+ tenantId?: string;
706
+ /**
707
+ * One-time temporary password returned only on user creation.
708
+ */
709
+ temporaryPassword?: string;
710
+ };
711
+ type CreateUserDto = {
712
+ username: string;
713
+ email?: string;
714
+ roles: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "users:manage" | "tenants:manage" | "registrar:manage">;
715
+ /**
716
+ * One-time temporary password returned only on user creation.
717
+ */
718
+ temporaryPassword?: string;
719
+ enabled?: boolean;
720
+ };
721
+ type UpdateUserDto = {
722
+ username?: string;
723
+ email?: string;
724
+ roles?: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "users:manage" | "tenants:manage" | "registrar:manage">;
725
+ /**
726
+ * One-time temporary password returned only on user creation.
727
+ */
728
+ temporaryPassword?: string;
729
+ enabled?: boolean;
730
+ password?: string;
731
+ };
681
732
  type AuthenticationMethodNone = {
682
733
  method: "none";
683
734
  };
@@ -780,10 +831,18 @@ type IssuanceConfig = {
780
831
  * Whether `credential_response_encryption` should be advertised in the credential issuer metadata.
781
832
  */
782
833
  credentialResponseEncryption?: boolean;
834
+ /**
835
+ * Whether `credential_request_encryption` should be advertised in the credential issuer metadata.
836
+ */
837
+ credentialRequestEncryption?: boolean;
783
838
  /**
784
839
  * Refresh token lifetime in seconds. Defaults to 2592000 (30 days).
785
840
  */
786
841
  refreshTokenExpiresInSeconds?: number;
842
+ /**
843
+ * Maximum failed tx_code attempts before the pre-authorized code is invalidated. Defaults to 5.
844
+ */
845
+ txCodeMaxAttempts?: number;
787
846
  /**
788
847
  * The tenant that owns this object.
789
848
  */
@@ -849,10 +908,18 @@ type IssuanceDto = {
849
908
  * Whether `credential_response_encryption` should be advertised in the credential issuer metadata.
850
909
  */
851
910
  credentialResponseEncryption?: boolean;
911
+ /**
912
+ * Whether `credential_request_encryption` should be advertised in the credential issuer metadata.
913
+ */
914
+ credentialRequestEncryption?: boolean;
852
915
  /**
853
916
  * Refresh token lifetime in seconds. Defaults to 2592000 (30 days).
854
917
  */
855
918
  refreshTokenExpiresInSeconds?: number;
919
+ /**
920
+ * Maximum failed tx_code attempts before the pre-authorized code is invalidated. Defaults to 5.
921
+ */
922
+ txCodeMaxAttempts?: number;
856
923
  /**
857
924
  * Authentication server URL for the issuance process.
858
925
  */
@@ -975,6 +1042,92 @@ type IaeActionRedirectToWeb = {
975
1042
  */
976
1043
  description?: string;
977
1044
  };
1045
+ type WebhookEndpointEntity = {
1046
+ /**
1047
+ * Unique identifier for the webhook endpoint
1048
+ */
1049
+ id: string;
1050
+ auth: WebHookAuthConfigNone | WebHookAuthConfigHeader;
1051
+ tenantId: string;
1052
+ tenant: TenantEntity;
1053
+ name: string;
1054
+ description?: string;
1055
+ url: string;
1056
+ };
1057
+ type SchemaUriEntry = {
1058
+ /**
1059
+ * Credential config ID to resolve and upload its schema content. When set, uri can be omitted and is resolved server-side.
1060
+ */
1061
+ credentialConfigId?: string;
1062
+ /**
1063
+ * Attestation format this schema URI applies to (e.g. dc+sd-jwt, mso_mdoc)
1064
+ */
1065
+ format?: string;
1066
+ /**
1067
+ * URI pointing to the schema document for this format
1068
+ */
1069
+ uri?: string;
1070
+ /**
1071
+ * Schema-format specific metadata (for example { vct: 'urn:example:vct' } for dc+sd-jwt).
1072
+ */
1073
+ metadata: {
1074
+ [key: string]: unknown;
1075
+ };
1076
+ };
1077
+ type TrustAuthorityEntry = {
1078
+ /**
1079
+ * Trust list ID to resolve from the database. When set, frameworkType, value, and verificationMethod are derived automatically.
1080
+ */
1081
+ trustListId?: string;
1082
+ /**
1083
+ * Trust framework type (ignored when trustListId is set)
1084
+ */
1085
+ frameworkType?: "aki" | "etsi_tl" | "openid_federation";
1086
+ /**
1087
+ * URI of the trust list or trust anchor (ignored when trustListId is set)
1088
+ */
1089
+ value?: string;
1090
+ /**
1091
+ * Whether this trust authority is a List of Trusted Entities (LoTE)
1092
+ */
1093
+ isLoTE?: boolean;
1094
+ /**
1095
+ * Optional verification material for external trusted authorities (for example a JWK). For internal trust-list URLs, EUDIPLO resolves verification material from the database.
1096
+ */
1097
+ verificationMethod?: {
1098
+ [key: string]: unknown;
1099
+ };
1100
+ };
1101
+ type SchemaMetaConfig = {
1102
+ /**
1103
+ * Optional override for the schema ID (attestation identifier URI). When not set, derived from vct (dc+sd-jwt) or docType (mso_mdoc).
1104
+ */
1105
+ id?: string;
1106
+ /**
1107
+ * Schema version in SemVer format
1108
+ */
1109
+ version?: string;
1110
+ /**
1111
+ * URI of the Attestation Rulebook
1112
+ */
1113
+ rulebookURI?: string;
1114
+ /**
1115
+ * Attestation Level of Security
1116
+ */
1117
+ attestationLoS?: "iso_18045_high" | "iso_18045_moderate" | "iso_18045_enhanced-basic" | "iso_18045_basic";
1118
+ /**
1119
+ * Cryptographic binding type
1120
+ */
1121
+ bindingType?: "claim" | "key" | "biometric" | "none";
1122
+ /**
1123
+ * Schema URIs per attestation format. When omitted, the format is derived from the credential config format field.
1124
+ */
1125
+ schemaURIs?: Array<SchemaUriEntry>;
1126
+ /**
1127
+ * Trust authorities for this attestation schema
1128
+ */
1129
+ trustedAuthorities?: Array<TrustAuthorityEntry>;
1130
+ };
978
1131
  type EmbeddedDisclosurePolicy = {
979
1132
  policy: string;
980
1133
  };
@@ -1081,15 +1234,6 @@ type AttributeProviderEntity = {
1081
1234
  description?: string;
1082
1235
  url: string;
1083
1236
  };
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
1237
  type KeyChainEntity = {
1094
1238
  /**
1095
1239
  * Unique identifier for the key chain.
@@ -1192,6 +1336,15 @@ type CredentialConfig = {
1192
1336
  * List of IAE actions to execute before credential issuance
1193
1337
  */
1194
1338
  iaeActions?: Array<IaeActionOpenid4VpPresentation | IaeActionRedirectToWeb>;
1339
+ /**
1340
+ * TS11 schema metadata configuration for EUDI Catalogue of Attestations.
1341
+ *
1342
+ * When present, EUDIPLO can generate a SchemaMeta object per the TS11 spec
1343
+ * using the GET /issuer/credentials/:id/schema-metadata endpoint.
1344
+ *
1345
+ * The underlying TS11 specification is not yet finalized.
1346
+ */
1347
+ schemaMeta?: SchemaMetaConfig;
1195
1348
  /**
1196
1349
  * Embedded disclosure policy (discriminated union by `policy`).
1197
1350
  * The discriminator makes class-transformer instantiate the right subclass,
@@ -1243,6 +1396,15 @@ type CredentialConfigCreate = {
1243
1396
  * List of IAE actions to execute before credential issuance
1244
1397
  */
1245
1398
  iaeActions?: Array<IaeActionOpenid4VpPresentation | IaeActionRedirectToWeb>;
1399
+ /**
1400
+ * TS11 schema metadata configuration for EUDI Catalogue of Attestations.
1401
+ *
1402
+ * When present, EUDIPLO can generate a SchemaMeta object per the TS11 spec
1403
+ * using the GET /issuer/credentials/:id/schema-metadata endpoint.
1404
+ *
1405
+ * The underlying TS11 specification is not yet finalized.
1406
+ */
1407
+ schemaMeta?: SchemaMetaConfig;
1246
1408
  /**
1247
1409
  * Embedded disclosure policy (discriminated union by `policy`).
1248
1410
  * The discriminator makes class-transformer instantiate the right subclass,
@@ -1287,6 +1449,15 @@ type CredentialConfigUpdate = {
1287
1449
  * List of IAE actions to execute before credential issuance
1288
1450
  */
1289
1451
  iaeActions?: Array<IaeActionOpenid4VpPresentation | IaeActionRedirectToWeb>;
1452
+ /**
1453
+ * TS11 schema metadata configuration for EUDI Catalogue of Attestations.
1454
+ *
1455
+ * When present, EUDIPLO can generate a SchemaMeta object per the TS11 spec
1456
+ * using the GET /issuer/credentials/:id/schema-metadata endpoint.
1457
+ *
1458
+ * The underlying TS11 specification is not yet finalized.
1459
+ */
1460
+ schemaMeta?: SchemaMetaConfig;
1290
1461
  /**
1291
1462
  * Embedded disclosure policy (discriminated union by `policy`).
1292
1463
  * The discriminator makes class-transformer instantiate the right subclass,
@@ -1322,6 +1493,30 @@ type CredentialConfigUpdate = {
1322
1493
  lifeTime?: number;
1323
1494
  schema?: SchemaResponse;
1324
1495
  };
1496
+ type SignSchemaMetaConfigDto = {
1497
+ /**
1498
+ * The schema metadata configuration to sign and submit
1499
+ */
1500
+ config: SchemaMetaConfig;
1501
+ /**
1502
+ * ID of the key chain to use for signing. Defaults to the tenant's default key chain.
1503
+ */
1504
+ keyChainId?: string;
1505
+ /**
1506
+ * ID of the credential config to link back after submission. When provided, schemaMeta.id on the credential config is updated with the reserved attestation ID.
1507
+ */
1508
+ credentialConfigId?: string;
1509
+ };
1510
+ type SignVersionSchemaMetaConfigDto = {
1511
+ /**
1512
+ * The schema metadata configuration to sign and submit as a new version. Must include the existing id.
1513
+ */
1514
+ config: SchemaMetaConfig;
1515
+ /**
1516
+ * ID of the key chain to use for signing. Defaults to the tenant's default key chain.
1517
+ */
1518
+ keyChainId?: string;
1519
+ };
1325
1520
  type CreateAttributeProviderDto = {
1326
1521
  auth: WebHookAuthConfigNone | WebHookAuthConfigHeader;
1327
1522
  id: string;
@@ -1337,30 +1532,141 @@ type UpdateAttributeProviderDto = {
1337
1532
  url?: string;
1338
1533
  };
1339
1534
  type CreateWebhookEndpointDto = {
1340
- auth: WebHookAuthConfigNone | WebHookAuthConfigHeader;
1535
+ /**
1536
+ * Unique identifier for the webhook endpoint
1537
+ */
1341
1538
  id: string;
1539
+ auth: WebHookAuthConfigNone | WebHookAuthConfigHeader;
1342
1540
  name: string;
1343
1541
  description?: string;
1344
1542
  url: string;
1345
1543
  };
1346
1544
  type UpdateWebhookEndpointDto = {
1347
- auth?: WebHookAuthConfigNone | WebHookAuthConfigHeader;
1545
+ /**
1546
+ * Unique identifier for the webhook endpoint
1547
+ */
1348
1548
  id?: string;
1549
+ auth?: WebHookAuthConfigNone | WebHookAuthConfigHeader;
1349
1550
  name?: string;
1350
1551
  description?: string;
1351
1552
  url?: string;
1352
1553
  };
1554
+ type TrustListEntityInfo = {
1555
+ name: string;
1556
+ lang?: string;
1557
+ uri?: string;
1558
+ country?: string;
1559
+ locality?: string;
1560
+ postalCode?: string;
1561
+ streetAddress?: string;
1562
+ contactUri?: string;
1563
+ };
1564
+ type InternalTrustListEntity = {
1565
+ type: "internal";
1566
+ issuerKeyChainId: string;
1567
+ revocationKeyChainId: string;
1568
+ info: TrustListEntityInfo;
1569
+ };
1570
+ type ExternalTrustListEntity = {
1571
+ type: "external";
1572
+ issuerCertPem: string;
1573
+ revocationCertPem: string;
1574
+ info: TrustListEntityInfo;
1575
+ };
1576
+ type TrustListCreateDto = {
1577
+ description?: string;
1578
+ /**
1579
+ * The full trust list JSON (generated LoTE structure)
1580
+ */
1581
+ data?: {
1582
+ [key: string]: unknown;
1583
+ };
1584
+ entities: Array<({
1585
+ type: "internal";
1586
+ } & InternalTrustListEntity) | ({
1587
+ type: "external";
1588
+ } & ExternalTrustListEntity)>;
1589
+ id?: string;
1590
+ keyChainId?: string;
1591
+ };
1592
+ type TrustList = {
1593
+ /**
1594
+ * Unique identifier for the trust list
1595
+ */
1596
+ id: string;
1597
+ description?: string;
1598
+ /**
1599
+ * The tenant ID for which the VP request is made.
1600
+ */
1601
+ tenantId: string;
1602
+ /**
1603
+ * The tenant that owns this object.
1604
+ */
1605
+ tenant: TenantEntity;
1606
+ keyChainId: string;
1607
+ keyChain: KeyChainEntity;
1608
+ /**
1609
+ * The full trust list JSON (generated LoTE structure)
1610
+ */
1611
+ data?: {
1612
+ [key: string]: unknown;
1613
+ };
1614
+ /**
1615
+ * The original entity configuration used to create this trust list.
1616
+ * Stored for round-tripping when editing.
1617
+ */
1618
+ entityConfig?: Array<{
1619
+ [key: string]: unknown;
1620
+ }>;
1621
+ /**
1622
+ * The sequence number for versioning (incremented on updates)
1623
+ */
1624
+ sequenceNumber: number;
1625
+ /**
1626
+ * The signed JWT representation of this trust list
1627
+ */
1628
+ jwt: string;
1629
+ createdAt: string;
1630
+ updatedAt: string;
1631
+ };
1632
+ type TrustListVersion = {
1633
+ id: string;
1634
+ trustListId: string;
1635
+ trustList: TrustList;
1636
+ tenantId: string;
1637
+ /**
1638
+ * The sequence number at the time this version was created
1639
+ */
1640
+ sequenceNumber: number;
1641
+ /**
1642
+ * The full trust list JSON at this version
1643
+ */
1644
+ data: {
1645
+ [key: string]: unknown;
1646
+ };
1647
+ /**
1648
+ * The entity configuration at this version
1649
+ */
1650
+ entityConfig?: {
1651
+ [key: string]: unknown;
1652
+ };
1653
+ /**
1654
+ * The signed JWT at this version
1655
+ */
1656
+ jwt: string;
1657
+ createdAt: string;
1658
+ };
1353
1659
  type Dcql = {
1354
1660
  credentials: Array<CredentialQuery>;
1355
1661
  credential_sets?: Array<CredentialSetQuery>;
1356
1662
  };
1357
1663
  type RegistrationCertificatePurpose = {
1358
1664
  lang: string;
1359
- value: string;
1665
+ content: string;
1360
1666
  };
1361
1667
  type RegistrationCertificateBody = {
1362
- privacy_policy: string;
1363
- support_uri: string;
1668
+ privacy_policy?: string;
1669
+ support_uri?: string;
1364
1670
  intermediary?: string;
1365
1671
  purpose?: Array<RegistrationCertificatePurpose>;
1366
1672
  credentials?: Array<{
@@ -1425,7 +1731,7 @@ type PresentationConfig = {
1425
1731
  /**
1426
1732
  * The registration certificate request containing the necessary details.
1427
1733
  */
1428
- registrationCert?: RegistrationCertificateRequest;
1734
+ registration_cert?: RegistrationCertificateRequest;
1429
1735
  /**
1430
1736
  * Optional webhook URL to receive the response.
1431
1737
  */
@@ -1464,6 +1770,12 @@ type ResolveIssuerMetadataDto = {
1464
1770
  */
1465
1771
  issuerUrl: string;
1466
1772
  };
1773
+ type ResolveSchemaMetadataDto = {
1774
+ /**
1775
+ * Schema metadata URL to resolve server-side. The response must contain a signedJwt field.
1776
+ */
1777
+ schemaMetadataUrl: string;
1778
+ };
1467
1779
  type PresentationConfigCreateDto = {
1468
1780
  /**
1469
1781
  * Unique identifier for the VP request.
@@ -1485,7 +1797,7 @@ type PresentationConfigCreateDto = {
1485
1797
  /**
1486
1798
  * The registration certificate request containing the necessary details.
1487
1799
  */
1488
- registrationCert?: RegistrationCertificateRequest;
1800
+ registration_cert?: RegistrationCertificateRequest;
1489
1801
  /**
1490
1802
  * Optional webhook URL to receive the response.
1491
1803
  */
@@ -1531,7 +1843,7 @@ type PresentationConfigUpdateDto = {
1531
1843
  /**
1532
1844
  * The registration certificate request containing the necessary details.
1533
1845
  */
1534
- registrationCert?: RegistrationCertificateRequest;
1846
+ registration_cert?: RegistrationCertificateRequest;
1535
1847
  /**
1536
1848
  * Optional webhook URL to receive the response.
1537
1849
  */
@@ -1556,6 +1868,16 @@ type PresentationConfigUpdateDto = {
1556
1868
  */
1557
1869
  accessKeyChainId?: string;
1558
1870
  };
1871
+ type RegistrationCertificateDefaults = {
1872
+ /**
1873
+ * Default privacy policy URL for registration certificate creation.
1874
+ */
1875
+ privacy_policy?: string;
1876
+ /**
1877
+ * Default support contact URI for registration certificate creation.
1878
+ */
1879
+ support_uri?: string;
1880
+ };
1559
1881
  type RegistrarConfigResponseDto = {
1560
1882
  /**
1561
1883
  * The base URL of the registrar API
@@ -1578,11 +1900,9 @@ type RegistrarConfigResponseDto = {
1578
1900
  */
1579
1901
  username: string;
1580
1902
  /**
1581
- * Optional default values merged into registration certificate creation requests (for example privacy_policy, support_uri, provided_attestations)
1903
+ * Optional default values merged into registration certificate creation requests (for example privacy_policy, support_uri)
1582
1904
  */
1583
- registrationCertificateDefaults?: {
1584
- [key: string]: unknown;
1585
- };
1905
+ registrationCertificateDefaults?: RegistrationCertificateDefaults;
1586
1906
  /**
1587
1907
  * Indicates whether a password is configured (actual password is never returned)
1588
1908
  */
@@ -1614,11 +1934,9 @@ type CreateRegistrarConfigDto = {
1614
1934
  */
1615
1935
  password: string;
1616
1936
  /**
1617
- * Optional default values merged into registration certificate creation requests (for example privacy_policy, support_uri, provided_attestations)
1937
+ * Optional default values merged into registration certificate creation requests (for example privacy_policy, support_uri)
1618
1938
  */
1619
- registrationCertificateDefaults?: {
1620
- [key: string]: unknown;
1621
- };
1939
+ registrationCertificateDefaults?: RegistrationCertificateDefaults;
1622
1940
  };
1623
1941
  type UpdateRegistrarConfigDto = {
1624
1942
  /**
@@ -1646,11 +1964,9 @@ type UpdateRegistrarConfigDto = {
1646
1964
  */
1647
1965
  password?: string;
1648
1966
  /**
1649
- * Optional default values merged into registration certificate creation requests (for example privacy_policy, support_uri, provided_attestations)
1967
+ * Optional default values merged into registration certificate creation requests (for example privacy_policy, support_uri)
1650
1968
  */
1651
- registrationCertificateDefaults?: {
1652
- [key: string]: unknown;
1653
- };
1969
+ registrationCertificateDefaults?: RegistrationCertificateDefaults;
1654
1970
  };
1655
1971
  type CreateAccessCertificateDto = {
1656
1972
  /**
@@ -1658,17 +1974,210 @@ type CreateAccessCertificateDto = {
1658
1974
  */
1659
1975
  keyId: string;
1660
1976
  };
1661
- type DeferredCredentialRequestDto = {
1977
+ type VocabularyEntryDto = {
1662
1978
  /**
1663
- * The transaction identifier previously returned by the Credential Endpoint
1979
+ * Stable machine-readable value to submit in schema metadata category/tags fields.
1664
1980
  */
1665
- transaction_id: string;
1666
- };
1667
- type NotificationRequestDto = {
1668
- notification_id: string;
1669
- event: {
1670
- [key: string]: unknown;
1671
- };
1981
+ code: string;
1982
+ /**
1983
+ * Display label for UI rendering.
1984
+ */
1985
+ label: string;
1986
+ /**
1987
+ * Vocabulary lifecycle status.
1988
+ */
1989
+ status: "active" | "deprecated";
1990
+ /**
1991
+ * Replacement code when status is deprecated.
1992
+ */
1993
+ replacedBy?: string;
1994
+ };
1995
+ type SchemaMetadataVocabulariesDto = {
1996
+ /**
1997
+ * Vocabulary publication version for cache invalidation.
1998
+ */
1999
+ version: string;
2000
+ /**
2001
+ * Allowed category values that can be used when updating schema metadata category.
2002
+ */
2003
+ categories: Array<VocabularyEntryDto>;
2004
+ /**
2005
+ * Allowed tag values that can be used when updating schema metadata tags.
2006
+ */
2007
+ tags: Array<VocabularyEntryDto>;
2008
+ };
2009
+ type MetadataSchemaDto = {
2010
+ /**
2011
+ * Unique identifier for this schema entry
2012
+ */
2013
+ id: string;
2014
+ /**
2015
+ * The credential format identifier
2016
+ */
2017
+ formatIdentifier: "dc+sd-jwt" | "mso_mdoc";
2018
+ /**
2019
+ * URI to the schema definition
2020
+ */
2021
+ uri?: string;
2022
+ /**
2023
+ * Inline schema content (JSON Schema)
2024
+ */
2025
+ schemaContent?: {
2026
+ [key: string]: unknown;
2027
+ };
2028
+ /**
2029
+ * Subresource Integrity hash for the schema
2030
+ */
2031
+ integrity?: string;
2032
+ };
2033
+ type TrustAuthorityDto = {
2034
+ /**
2035
+ * Unique identifier for this trust authority entry
2036
+ */
2037
+ id: string;
2038
+ /**
2039
+ * Type of trust framework
2040
+ */
2041
+ frameworkType: "etsi_tl";
2042
+ /**
2043
+ * URI or identifier for the trust list / authority
2044
+ */
2045
+ value: string;
2046
+ /**
2047
+ * Verification method for the trust list signature (e.g., JWK)
2048
+ */
2049
+ verificationMethod?: {
2050
+ [key: string]: unknown;
2051
+ };
2052
+ };
2053
+ type AccessCertificateRefDto = {
2054
+ id: string;
2055
+ relyingPartyId: string;
2056
+ certificate: string;
2057
+ revoked: string;
2058
+ createdAt: string;
2059
+ };
2060
+ type SchemaMetadataResponseDto = {
2061
+ /**
2062
+ * The unique, server-assigned identifier (UUID) for the schema metadata
2063
+ */
2064
+ id: string;
2065
+ /**
2066
+ * Version of this schema metadata (SemVer)
2067
+ */
2068
+ version: string;
2069
+ /**
2070
+ * URI of the human-readable Rulebook document
2071
+ */
2072
+ rulebookURI?: string;
2073
+ /**
2074
+ * Subresource Integrity hash for the rulebook URI
2075
+ */
2076
+ rulebookIntegrity?: string;
2077
+ /**
2078
+ * Level of security (LoS) of this attestation
2079
+ */
2080
+ attestationLoS: "iso_18045_high" | "iso_18045_moderate" | "iso_18045_enhanced-basic" | "iso_18045_basic";
2081
+ /**
2082
+ * Required binding type between attestation and holder
2083
+ */
2084
+ bindingType: "claim" | "key" | "biometric" | "none";
2085
+ /**
2086
+ * Credential formats in which this attestation is available
2087
+ */
2088
+ supportedFormats: Array<"dc+sd-jwt" | "mso_mdoc">;
2089
+ /**
2090
+ * Format-specific schema URIs for this schema metadata
2091
+ */
2092
+ schemaURIs: Array<MetadataSchemaDto>;
2093
+ /**
2094
+ * Trust frameworks / trust anchors applicable to this schema metadata
2095
+ */
2096
+ trustedAuthorities: Array<TrustAuthorityDto>;
2097
+ /**
2098
+ * Domain category for filtering
2099
+ */
2100
+ category?: "identity" | "health" | "finance" | "education" | "mobility" | "employment" | "other";
2101
+ /**
2102
+ * Free-form tags for filtering and search
2103
+ */
2104
+ tags?: Array<string>;
2105
+ /**
2106
+ * The original signed JWT
2107
+ */
2108
+ signedJwt: string;
2109
+ /**
2110
+ * Issuer from the JWT (`iss` claim)
2111
+ */
2112
+ issuer: string;
2113
+ /**
2114
+ * Serial number of the access certificate that signed this schema metadata
2115
+ */
2116
+ signerCertificateSerial: string;
2117
+ /**
2118
+ * The access certificate used to sign this schema metadata
2119
+ */
2120
+ signerCertificate?: AccessCertificateRefDto;
2121
+ /**
2122
+ * Timestamp when the JWT was issued (from the `iat` claim)
2123
+ */
2124
+ issuedAt: string;
2125
+ /**
2126
+ * Server creation timestamp
2127
+ */
2128
+ createdAt: string;
2129
+ /**
2130
+ * Last update timestamp
2131
+ */
2132
+ updatedAt: string;
2133
+ /**
2134
+ * Whether this version is deprecated
2135
+ */
2136
+ deprecated?: boolean;
2137
+ /**
2138
+ * Deprecation message shown to consumers
2139
+ */
2140
+ deprecationMessage?: string;
2141
+ /**
2142
+ * The version that supersedes this one
2143
+ */
2144
+ supersededByVersion?: string;
2145
+ };
2146
+ type UpdateSchemaMetadataDto = {
2147
+ /**
2148
+ * Domain category for filtering
2149
+ */
2150
+ category?: "identity" | "health" | "finance" | "education" | "mobility" | "employment" | "other";
2151
+ /**
2152
+ * Predefined tags for filtering and search
2153
+ */
2154
+ tags?: Array<"pid" | "eudi" | "kyc" | "aml" | "age-verification" | "residency" | "membership" | "education" | "employment" | "mobility">;
2155
+ };
2156
+ type DeprecateSchemaMetadataDto = {
2157
+ /**
2158
+ * Whether to mark this version as deprecated
2159
+ */
2160
+ deprecated: boolean;
2161
+ /**
2162
+ * Deprecation message shown to consumers
2163
+ */
2164
+ message?: string;
2165
+ /**
2166
+ * The version that supersedes this one
2167
+ */
2168
+ supersededByVersion?: string;
2169
+ };
2170
+ type DeferredCredentialRequestDto = {
2171
+ /**
2172
+ * The transaction identifier previously returned by the Credential Endpoint
2173
+ */
2174
+ transaction_id: string;
2175
+ };
2176
+ type NotificationRequestDto = {
2177
+ notification_id: string;
2178
+ event: {
2179
+ [key: string]: unknown;
2180
+ };
1672
2181
  };
1673
2182
  type Object$1 = {
1674
2183
  [key: string]: unknown;
@@ -1933,111 +2442,6 @@ type AuthorizationResponse = {
1933
2442
  */
1934
2443
  state?: string;
1935
2444
  };
1936
- type TrustListEntityInfo = {
1937
- name: string;
1938
- lang?: string;
1939
- uri?: string;
1940
- country?: string;
1941
- locality?: string;
1942
- postalCode?: string;
1943
- streetAddress?: string;
1944
- contactUri?: string;
1945
- };
1946
- type InternalTrustListEntity = {
1947
- type: "internal";
1948
- issuerKeyChainId: string;
1949
- revocationKeyChainId: string;
1950
- info: TrustListEntityInfo;
1951
- };
1952
- type ExternalTrustListEntity = {
1953
- type: "external";
1954
- issuerCertPem: string;
1955
- revocationCertPem: string;
1956
- info: TrustListEntityInfo;
1957
- };
1958
- type TrustListCreateDto = {
1959
- description?: string;
1960
- /**
1961
- * The full trust list JSON (generated LoTE structure)
1962
- */
1963
- data?: {
1964
- [key: string]: unknown;
1965
- };
1966
- entities: Array<({
1967
- type: "internal";
1968
- } & InternalTrustListEntity) | ({
1969
- type: "external";
1970
- } & ExternalTrustListEntity)>;
1971
- id?: string;
1972
- keyChainId?: string;
1973
- };
1974
- type TrustList = {
1975
- /**
1976
- * Unique identifier for the trust list
1977
- */
1978
- id: string;
1979
- description?: string;
1980
- /**
1981
- * The tenant ID for which the VP request is made.
1982
- */
1983
- tenantId: string;
1984
- /**
1985
- * The tenant that owns this object.
1986
- */
1987
- tenant: TenantEntity;
1988
- keyChainId: string;
1989
- keyChain: KeyChainEntity;
1990
- /**
1991
- * The full trust list JSON (generated LoTE structure)
1992
- */
1993
- data?: {
1994
- [key: string]: unknown;
1995
- };
1996
- /**
1997
- * The original entity configuration used to create this trust list.
1998
- * Stored for round-tripping when editing.
1999
- */
2000
- entityConfig?: Array<{
2001
- [key: string]: unknown;
2002
- }>;
2003
- /**
2004
- * The sequence number for versioning (incremented on updates)
2005
- */
2006
- sequenceNumber: number;
2007
- /**
2008
- * The signed JWT representation of this trust list
2009
- */
2010
- jwt: string;
2011
- createdAt: string;
2012
- updatedAt: string;
2013
- };
2014
- type TrustListVersion = {
2015
- id: string;
2016
- trustListId: string;
2017
- trustList: TrustList;
2018
- tenantId: string;
2019
- /**
2020
- * The sequence number at the time this version was created
2021
- */
2022
- sequenceNumber: number;
2023
- /**
2024
- * The full trust list JSON at this version
2025
- */
2026
- data: {
2027
- [key: string]: unknown;
2028
- };
2029
- /**
2030
- * The entity configuration at this version
2031
- */
2032
- entityConfig?: {
2033
- [key: string]: unknown;
2034
- };
2035
- /**
2036
- * The signed JWT at this version
2037
- */
2038
- jwt: string;
2039
- createdAt: string;
2040
- };
2041
2445
  type KmsProviderCapabilitiesDto = {
2042
2446
  /**
2043
2447
  * Whether the provider supports importing existing keys.
@@ -2444,7 +2848,7 @@ type PresentationConfigWritable = {
2444
2848
  /**
2445
2849
  * The registration certificate request containing the necessary details.
2446
2850
  */
2447
- registrationCert?: RegistrationCertificateRequest;
2851
+ registration_cert?: RegistrationCertificateRequest;
2448
2852
  /**
2449
2853
  * Optional webhook URL to receive the response.
2450
2854
  */
@@ -2879,6 +3283,61 @@ type SessionEventsControllerSubscribeToSessionEventsData = {
2879
3283
  type SessionEventsControllerSubscribeToSessionEventsResponses = {
2880
3284
  200: unknown;
2881
3285
  };
3286
+ type UserControllerGetUsersData = {
3287
+ body?: never;
3288
+ path?: never;
3289
+ query?: never;
3290
+ url: "/api/user";
3291
+ };
3292
+ type UserControllerGetUsersResponses = {
3293
+ 200: Array<ManagedUserDto>;
3294
+ };
3295
+ type UserControllerGetUsersResponse = UserControllerGetUsersResponses[keyof UserControllerGetUsersResponses];
3296
+ type UserControllerCreateUserData = {
3297
+ body: CreateUserDto;
3298
+ path?: never;
3299
+ query?: never;
3300
+ url: "/api/user";
3301
+ };
3302
+ type UserControllerCreateUserResponses = {
3303
+ 201: ManagedUserDto;
3304
+ };
3305
+ type UserControllerCreateUserResponse = UserControllerCreateUserResponses[keyof UserControllerCreateUserResponses];
3306
+ type UserControllerDeleteUserData = {
3307
+ body?: never;
3308
+ path: {
3309
+ id: string;
3310
+ };
3311
+ query?: never;
3312
+ url: "/api/user/{id}";
3313
+ };
3314
+ type UserControllerDeleteUserResponses = {
3315
+ 200: unknown;
3316
+ };
3317
+ type UserControllerGetUserData = {
3318
+ body?: never;
3319
+ path: {
3320
+ id: string;
3321
+ };
3322
+ query?: never;
3323
+ url: "/api/user/{id}";
3324
+ };
3325
+ type UserControllerGetUserResponses = {
3326
+ 200: ManagedUserDto;
3327
+ };
3328
+ type UserControllerGetUserResponse = UserControllerGetUserResponses[keyof UserControllerGetUserResponses];
3329
+ type UserControllerUpdateUserData = {
3330
+ body: UpdateUserDto;
3331
+ path: {
3332
+ id: string;
3333
+ };
3334
+ query?: never;
3335
+ url: "/api/user/{id}";
3336
+ };
3337
+ type UserControllerUpdateUserResponses = {
3338
+ 200: ManagedUserDto;
3339
+ };
3340
+ type UserControllerUpdateUserResponse = UserControllerUpdateUserResponses[keyof UserControllerUpdateUserResponses];
2882
3341
  type IssuanceConfigControllerGetIssuanceConfigurationsData = {
2883
3342
  body?: never;
2884
3343
  path?: never;
@@ -2932,8 +3391,11 @@ type CredentialConfigControllerDeleteIssuanceConfigurationData = {
2932
3391
  url: "/api/issuer/credentials/{id}";
2933
3392
  };
2934
3393
  type CredentialConfigControllerDeleteIssuanceConfigurationResponses = {
2935
- 200: unknown;
3394
+ 200: {
3395
+ [key: string]: unknown;
3396
+ };
2936
3397
  };
3398
+ type CredentialConfigControllerDeleteIssuanceConfigurationResponse = CredentialConfigControllerDeleteIssuanceConfigurationResponses[keyof CredentialConfigControllerDeleteIssuanceConfigurationResponses];
2937
3399
  type CredentialConfigControllerGetConfigByIdData = {
2938
3400
  body?: never;
2939
3401
  path: {
@@ -2960,6 +3422,42 @@ type CredentialConfigControllerUpdateCredentialConfigurationResponses = {
2960
3422
  };
2961
3423
  };
2962
3424
  type CredentialConfigControllerUpdateCredentialConfigurationResponse = CredentialConfigControllerUpdateCredentialConfigurationResponses[keyof CredentialConfigControllerUpdateCredentialConfigurationResponses];
3425
+ type CredentialConfigControllerSignSchemaMetaConfigData = {
3426
+ body: SignSchemaMetaConfigDto;
3427
+ path?: never;
3428
+ query?: never;
3429
+ url: "/api/issuer/credentials/schema-metadata/sign";
3430
+ };
3431
+ type CredentialConfigControllerSignSchemaMetaConfigErrors = {
3432
+ /**
3433
+ * Invalid schema metadata or missing certificate for signing
3434
+ */
3435
+ 400: unknown;
3436
+ };
3437
+ type CredentialConfigControllerSignSchemaMetaConfigResponses = {
3438
+ /**
3439
+ * Registrar metadata entry for the freshly submitted schema metadata.
3440
+ */
3441
+ 201: unknown;
3442
+ };
3443
+ type CredentialConfigControllerSignVersionSchemaMetaConfigData = {
3444
+ body: SignVersionSchemaMetaConfigDto;
3445
+ path?: never;
3446
+ query?: never;
3447
+ url: "/api/issuer/credentials/schema-metadata/sign-version";
3448
+ };
3449
+ type CredentialConfigControllerSignVersionSchemaMetaConfigErrors = {
3450
+ /**
3451
+ * config.id is required; or invalid schema metadata
3452
+ */
3453
+ 400: unknown;
3454
+ };
3455
+ type CredentialConfigControllerSignVersionSchemaMetaConfigResponses = {
3456
+ /**
3457
+ * Registrar metadata entry for the newly submitted version.
3458
+ */
3459
+ 201: unknown;
3460
+ };
2963
3461
  type AttributeProviderControllerGetAllData = {
2964
3462
  body?: never;
2965
3463
  path?: never;
@@ -3054,8 +3552,9 @@ type WebhookEndpointControllerGetAllResponses = {
3054
3552
  /**
3055
3553
  * List of webhook endpoints
3056
3554
  */
3057
- 200: unknown;
3555
+ 200: Array<WebhookEndpointEntity>;
3058
3556
  };
3557
+ type WebhookEndpointControllerGetAllResponse = WebhookEndpointControllerGetAllResponses[keyof WebhookEndpointControllerGetAllResponses];
3059
3558
  type WebhookEndpointControllerCreateData = {
3060
3559
  body: CreateWebhookEndpointDto;
3061
3560
  path?: never;
@@ -3128,6 +3627,98 @@ type WebhookEndpointControllerUpdateResponses = {
3128
3627
  */
3129
3628
  200: unknown;
3130
3629
  };
3630
+ type TrustListControllerGetAllTrustListsData = {
3631
+ body?: never;
3632
+ path?: never;
3633
+ query?: never;
3634
+ url: "/api/trust-list";
3635
+ };
3636
+ type TrustListControllerGetAllTrustListsResponses = {
3637
+ 200: Array<TrustList>;
3638
+ };
3639
+ type TrustListControllerGetAllTrustListsResponse = TrustListControllerGetAllTrustListsResponses[keyof TrustListControllerGetAllTrustListsResponses];
3640
+ type TrustListControllerCreateTrustListData = {
3641
+ body: TrustListCreateDto;
3642
+ path?: never;
3643
+ query?: never;
3644
+ url: "/api/trust-list";
3645
+ };
3646
+ type TrustListControllerCreateTrustListResponses = {
3647
+ 201: TrustList;
3648
+ };
3649
+ type TrustListControllerCreateTrustListResponse = TrustListControllerCreateTrustListResponses[keyof TrustListControllerCreateTrustListResponses];
3650
+ type TrustListControllerDeleteTrustListData = {
3651
+ body?: never;
3652
+ path: {
3653
+ id: string;
3654
+ };
3655
+ query?: never;
3656
+ url: "/api/trust-list/{id}";
3657
+ };
3658
+ type TrustListControllerDeleteTrustListResponses = {
3659
+ 200: unknown;
3660
+ };
3661
+ type TrustListControllerGetTrustListData = {
3662
+ body?: never;
3663
+ path: {
3664
+ id: string;
3665
+ };
3666
+ query?: never;
3667
+ url: "/api/trust-list/{id}";
3668
+ };
3669
+ type TrustListControllerGetTrustListResponses = {
3670
+ 200: TrustList;
3671
+ };
3672
+ type TrustListControllerGetTrustListResponse = TrustListControllerGetTrustListResponses[keyof TrustListControllerGetTrustListResponses];
3673
+ type TrustListControllerUpdateTrustListData = {
3674
+ body: TrustListCreateDto;
3675
+ path: {
3676
+ id: string;
3677
+ };
3678
+ query?: never;
3679
+ url: "/api/trust-list/{id}";
3680
+ };
3681
+ type TrustListControllerUpdateTrustListResponses = {
3682
+ 200: TrustList;
3683
+ };
3684
+ type TrustListControllerUpdateTrustListResponse = TrustListControllerUpdateTrustListResponses[keyof TrustListControllerUpdateTrustListResponses];
3685
+ type TrustListControllerExportTrustListData = {
3686
+ body?: never;
3687
+ path: {
3688
+ id: string;
3689
+ };
3690
+ query?: never;
3691
+ url: "/api/trust-list/{id}/export";
3692
+ };
3693
+ type TrustListControllerExportTrustListResponses = {
3694
+ 200: TrustListCreateDto;
3695
+ };
3696
+ type TrustListControllerExportTrustListResponse = TrustListControllerExportTrustListResponses[keyof TrustListControllerExportTrustListResponses];
3697
+ type TrustListControllerGetTrustListVersionsData = {
3698
+ body?: never;
3699
+ path: {
3700
+ id: string;
3701
+ };
3702
+ query?: never;
3703
+ url: "/api/trust-list/{id}/versions";
3704
+ };
3705
+ type TrustListControllerGetTrustListVersionsResponses = {
3706
+ 200: Array<TrustListVersion>;
3707
+ };
3708
+ type TrustListControllerGetTrustListVersionsResponse = TrustListControllerGetTrustListVersionsResponses[keyof TrustListControllerGetTrustListVersionsResponses];
3709
+ type TrustListControllerGetTrustListVersionData = {
3710
+ body?: never;
3711
+ path: {
3712
+ id: string;
3713
+ versionId: string;
3714
+ };
3715
+ query?: never;
3716
+ url: "/api/trust-list/{id}/versions/{versionId}";
3717
+ };
3718
+ type TrustListControllerGetTrustListVersionResponses = {
3719
+ 200: TrustListVersion;
3720
+ };
3721
+ type TrustListControllerGetTrustListVersionResponse = TrustListControllerGetTrustListVersionResponses[keyof TrustListControllerGetTrustListVersionResponses];
3131
3722
  type PresentationManagementControllerConfigurationData = {
3132
3723
  body?: never;
3133
3724
  path?: never;
@@ -3166,6 +3757,36 @@ type PresentationManagementControllerResolveIssuerMetadataResponses = {
3166
3757
  */
3167
3758
  200: unknown;
3168
3759
  };
3760
+ type PresentationManagementControllerResolveSchemaMetadataData = {
3761
+ body: ResolveSchemaMetadataDto;
3762
+ path?: never;
3763
+ query?: never;
3764
+ url: "/api/verifier/config/schema-metadata/resolve";
3765
+ };
3766
+ type PresentationManagementControllerResolveSchemaMetadataErrors = {
3767
+ /**
3768
+ * Invalid URL, invalid response, or invalid schema metadata JWT
3769
+ */
3770
+ 400: unknown;
3771
+ };
3772
+ type PresentationManagementControllerResolveSchemaMetadataResponses = {
3773
+ /**
3774
+ * Resolved schema metadata import payload
3775
+ */
3776
+ 200: unknown;
3777
+ };
3778
+ type PresentationManagementControllerListSchemaMetadataCatalogData = {
3779
+ body?: never;
3780
+ path?: never;
3781
+ query?: never;
3782
+ url: "/api/verifier/config/schema-metadata/catalog";
3783
+ };
3784
+ type PresentationManagementControllerListSchemaMetadataCatalogResponses = {
3785
+ /**
3786
+ * Catalog entries from the registrar
3787
+ */
3788
+ 200: unknown;
3789
+ };
3169
3790
  type PresentationManagementControllerDeleteConfigurationData = {
3170
3791
  body?: never;
3171
3792
  path: {
@@ -3378,153 +3999,214 @@ type RegistrarControllerCreateAccessCertificateResponses = {
3378
3999
  };
3379
4000
  };
3380
4001
  type RegistrarControllerCreateAccessCertificateResponse = RegistrarControllerCreateAccessCertificateResponses[keyof RegistrarControllerCreateAccessCertificateResponses];
3381
- type CredentialOfferControllerGetOfferData = {
3382
- body: OfferRequestDto;
4002
+ type SchemaMetadataControllerGetVocabulariesData = {
4003
+ body?: never;
3383
4004
  path?: never;
3384
4005
  query?: never;
3385
- url: "/api/issuer/offer";
4006
+ url: "/api/schema-metadata/vocabularies";
3386
4007
  };
3387
- type CredentialOfferControllerGetOfferResponses = {
3388
- /**
3389
- * JSON response
3390
- */
3391
- 201: OfferResponse;
4008
+ type SchemaMetadataControllerGetVocabulariesResponses = {
4009
+ 200: SchemaMetadataVocabulariesDto;
3392
4010
  };
3393
- type CredentialOfferControllerGetOfferResponse = CredentialOfferControllerGetOfferResponses[keyof CredentialOfferControllerGetOfferResponses];
3394
- type DeferredControllerCompleteDeferredData = {
3395
- body: CompleteDeferredDto;
4011
+ type SchemaMetadataControllerGetVocabulariesResponse = SchemaMetadataControllerGetVocabulariesResponses[keyof SchemaMetadataControllerGetVocabulariesResponses];
4012
+ type SchemaMetadataControllerFindAllData = {
4013
+ body?: never;
4014
+ path?: never;
4015
+ query?: {
4016
+ attestationId?: string;
4017
+ version?: string;
4018
+ };
4019
+ url: "/api/schema-metadata";
4020
+ };
4021
+ type SchemaMetadataControllerFindAllResponses = {
4022
+ 200: Array<SchemaMetadataResponseDto>;
4023
+ };
4024
+ type SchemaMetadataControllerFindAllResponse = SchemaMetadataControllerFindAllResponses[keyof SchemaMetadataControllerFindAllResponses];
4025
+ type SchemaMetadataControllerFindOneData = {
4026
+ body?: never;
3396
4027
  path: {
3397
- transactionId: string;
4028
+ id: string;
3398
4029
  };
3399
4030
  query?: never;
3400
- url: "/api/issuer/deferred/{transactionId}/complete";
3401
- };
3402
- type DeferredControllerCompleteDeferredErrors = {
3403
- /**
3404
- * Transaction not found
3405
- */
3406
- 404: unknown;
4031
+ url: "/api/schema-metadata/{id}";
3407
4032
  };
3408
- type DeferredControllerCompleteDeferredResponses = {
3409
- /**
3410
- * Transaction completed successfully
3411
- */
3412
- 200: DeferredOperationResponse;
4033
+ type SchemaMetadataControllerFindOneResponses = {
4034
+ 200: SchemaMetadataResponseDto;
3413
4035
  };
3414
- type DeferredControllerCompleteDeferredResponse = DeferredControllerCompleteDeferredResponses[keyof DeferredControllerCompleteDeferredResponses];
3415
- type DeferredControllerFailDeferredData = {
3416
- body?: FailDeferredDto;
4036
+ type SchemaMetadataControllerFindOneResponse = SchemaMetadataControllerFindOneResponses[keyof SchemaMetadataControllerFindOneResponses];
4037
+ type SchemaMetadataControllerRemoveData = {
4038
+ body?: never;
3417
4039
  path: {
3418
- transactionId: string;
4040
+ id: string;
4041
+ version: string;
3419
4042
  };
3420
4043
  query?: never;
3421
- url: "/api/issuer/deferred/{transactionId}/fail";
4044
+ url: "/api/schema-metadata/{id}/versions/{version}";
3422
4045
  };
3423
- type DeferredControllerFailDeferredErrors = {
3424
- /**
3425
- * Transaction not found
3426
- */
3427
- 404: unknown;
3428
- };
3429
- type DeferredControllerFailDeferredResponses = {
4046
+ type SchemaMetadataControllerRemoveResponses = {
3430
4047
  /**
3431
- * Transaction marked as failed
4048
+ * Deleted
3432
4049
  */
3433
- 200: DeferredOperationResponse;
4050
+ 200: unknown;
3434
4051
  };
3435
- type DeferredControllerFailDeferredResponse = DeferredControllerFailDeferredResponses[keyof DeferredControllerFailDeferredResponses];
3436
- type TrustListControllerGetAllTrustListsData = {
3437
- body?: never;
3438
- path?: never;
4052
+ type SchemaMetadataControllerUpdateData = {
4053
+ body: UpdateSchemaMetadataDto;
4054
+ path: {
4055
+ id: string;
4056
+ version: string;
4057
+ };
3439
4058
  query?: never;
3440
- url: "/api/trust-list";
4059
+ url: "/api/schema-metadata/{id}/versions/{version}";
3441
4060
  };
3442
- type TrustListControllerGetAllTrustListsResponses = {
3443
- 200: Array<TrustList>;
4061
+ type SchemaMetadataControllerUpdateResponses = {
4062
+ 200: SchemaMetadataResponseDto;
3444
4063
  };
3445
- type TrustListControllerGetAllTrustListsResponse = TrustListControllerGetAllTrustListsResponses[keyof TrustListControllerGetAllTrustListsResponses];
3446
- type TrustListControllerCreateTrustListData = {
3447
- body: TrustListCreateDto;
3448
- path?: never;
4064
+ type SchemaMetadataControllerUpdateResponse = SchemaMetadataControllerUpdateResponses[keyof SchemaMetadataControllerUpdateResponses];
4065
+ type SchemaMetadataControllerGetLatestData = {
4066
+ body?: never;
4067
+ path: {
4068
+ id: string;
4069
+ };
3449
4070
  query?: never;
3450
- url: "/api/trust-list";
4071
+ url: "/api/schema-metadata/{id}/latest";
3451
4072
  };
3452
- type TrustListControllerCreateTrustListResponses = {
3453
- 201: TrustList;
4073
+ type SchemaMetadataControllerGetLatestResponses = {
4074
+ 200: SchemaMetadataResponseDto;
3454
4075
  };
3455
- type TrustListControllerCreateTrustListResponse = TrustListControllerCreateTrustListResponses[keyof TrustListControllerCreateTrustListResponses];
3456
- type TrustListControllerDeleteTrustListData = {
4076
+ type SchemaMetadataControllerGetLatestResponse = SchemaMetadataControllerGetLatestResponses[keyof SchemaMetadataControllerGetLatestResponses];
4077
+ type SchemaMetadataControllerGetVersionsData = {
3457
4078
  body?: never;
3458
4079
  path: {
3459
4080
  id: string;
3460
4081
  };
3461
4082
  query?: never;
3462
- url: "/api/trust-list/{id}";
4083
+ url: "/api/schema-metadata/{id}/versions";
3463
4084
  };
3464
- type TrustListControllerDeleteTrustListResponses = {
3465
- 200: unknown;
4085
+ type SchemaMetadataControllerGetVersionsResponses = {
4086
+ 200: Array<SchemaMetadataResponseDto>;
3466
4087
  };
3467
- type TrustListControllerGetTrustListData = {
4088
+ type SchemaMetadataControllerGetVersionsResponse = SchemaMetadataControllerGetVersionsResponses[keyof SchemaMetadataControllerGetVersionsResponses];
4089
+ type SchemaMetadataControllerGetJwtData = {
3468
4090
  body?: never;
3469
4091
  path: {
3470
4092
  id: string;
4093
+ version: string;
3471
4094
  };
3472
4095
  query?: never;
3473
- url: "/api/trust-list/{id}";
4096
+ url: "/api/schema-metadata/{id}/versions/{version}/jwt";
3474
4097
  };
3475
- type TrustListControllerGetTrustListResponses = {
3476
- 200: TrustList;
4098
+ type SchemaMetadataControllerGetJwtResponses = {
4099
+ /**
4100
+ * Compact-serialization JWS string
4101
+ */
4102
+ 200: string;
3477
4103
  };
3478
- type TrustListControllerGetTrustListResponse = TrustListControllerGetTrustListResponses[keyof TrustListControllerGetTrustListResponses];
3479
- type TrustListControllerUpdateTrustListData = {
3480
- body: TrustListCreateDto;
4104
+ type SchemaMetadataControllerGetJwtResponse = SchemaMetadataControllerGetJwtResponses[keyof SchemaMetadataControllerGetJwtResponses];
4105
+ type SchemaMetadataControllerExportData = {
4106
+ body?: never;
3481
4107
  path: {
3482
4108
  id: string;
4109
+ version: string;
3483
4110
  };
3484
4111
  query?: never;
3485
- url: "/api/trust-list/{id}";
4112
+ url: "/api/schema-metadata/{id}/versions/{version}/export";
3486
4113
  };
3487
- type TrustListControllerUpdateTrustListResponses = {
3488
- 200: TrustList;
4114
+ type SchemaMetadataControllerExportResponses = {
4115
+ /**
4116
+ * Registrar-defined catalog document
4117
+ */
4118
+ 200: {
4119
+ [key: string]: unknown;
4120
+ };
3489
4121
  };
3490
- type TrustListControllerUpdateTrustListResponse = TrustListControllerUpdateTrustListResponses[keyof TrustListControllerUpdateTrustListResponses];
3491
- type TrustListControllerExportTrustListData = {
4122
+ type SchemaMetadataControllerExportResponse = SchemaMetadataControllerExportResponses[keyof SchemaMetadataControllerExportResponses];
4123
+ type SchemaMetadataControllerGetSchemaData = {
3492
4124
  body?: never;
3493
4125
  path: {
3494
4126
  id: string;
4127
+ version: string;
4128
+ format: string;
3495
4129
  };
3496
4130
  query?: never;
3497
- url: "/api/trust-list/{id}/export";
4131
+ url: "/api/schema-metadata/{id}/versions/{version}/schemas/{format}";
3498
4132
  };
3499
- type TrustListControllerExportTrustListResponses = {
3500
- 200: TrustListCreateDto;
4133
+ type SchemaMetadataControllerGetSchemaResponses = {
4134
+ /**
4135
+ * JSON Schema document for the requested format
4136
+ */
4137
+ 200: {
4138
+ [key: string]: unknown;
4139
+ };
3501
4140
  };
3502
- type TrustListControllerExportTrustListResponse = TrustListControllerExportTrustListResponses[keyof TrustListControllerExportTrustListResponses];
3503
- type TrustListControllerGetTrustListVersionsData = {
3504
- body?: never;
4141
+ type SchemaMetadataControllerGetSchemaResponse = SchemaMetadataControllerGetSchemaResponses[keyof SchemaMetadataControllerGetSchemaResponses];
4142
+ type SchemaMetadataControllerDeprecateVersionData = {
4143
+ body: DeprecateSchemaMetadataDto;
3505
4144
  path: {
3506
4145
  id: string;
4146
+ version: string;
3507
4147
  };
3508
4148
  query?: never;
3509
- url: "/api/trust-list/{id}/versions";
4149
+ url: "/api/schema-metadata/{id}/versions/{version}/deprecation";
3510
4150
  };
3511
- type TrustListControllerGetTrustListVersionsResponses = {
3512
- 200: Array<TrustListVersion>;
4151
+ type SchemaMetadataControllerDeprecateVersionResponses = {
4152
+ 200: SchemaMetadataResponseDto;
3513
4153
  };
3514
- type TrustListControllerGetTrustListVersionsResponse = TrustListControllerGetTrustListVersionsResponses[keyof TrustListControllerGetTrustListVersionsResponses];
3515
- type TrustListControllerGetTrustListVersionData = {
3516
- body?: never;
4154
+ type SchemaMetadataControllerDeprecateVersionResponse = SchemaMetadataControllerDeprecateVersionResponses[keyof SchemaMetadataControllerDeprecateVersionResponses];
4155
+ type CredentialOfferControllerGetOfferData = {
4156
+ body: OfferRequestDto;
4157
+ path?: never;
4158
+ query?: never;
4159
+ url: "/api/issuer/offer";
4160
+ };
4161
+ type CredentialOfferControllerGetOfferResponses = {
4162
+ /**
4163
+ * JSON response
4164
+ */
4165
+ 201: OfferResponse;
4166
+ };
4167
+ type CredentialOfferControllerGetOfferResponse = CredentialOfferControllerGetOfferResponses[keyof CredentialOfferControllerGetOfferResponses];
4168
+ type DeferredControllerCompleteDeferredData = {
4169
+ body: CompleteDeferredDto;
3517
4170
  path: {
3518
- id: string;
3519
- versionId: string;
4171
+ transactionId: string;
3520
4172
  };
3521
4173
  query?: never;
3522
- url: "/api/trust-list/{id}/versions/{versionId}";
4174
+ url: "/api/issuer/deferred/{transactionId}/complete";
3523
4175
  };
3524
- type TrustListControllerGetTrustListVersionResponses = {
3525
- 200: TrustListVersion;
4176
+ type DeferredControllerCompleteDeferredErrors = {
4177
+ /**
4178
+ * Transaction not found
4179
+ */
4180
+ 404: unknown;
3526
4181
  };
3527
- type TrustListControllerGetTrustListVersionResponse = TrustListControllerGetTrustListVersionResponses[keyof TrustListControllerGetTrustListVersionResponses];
4182
+ type DeferredControllerCompleteDeferredResponses = {
4183
+ /**
4184
+ * Transaction completed successfully
4185
+ */
4186
+ 200: DeferredOperationResponse;
4187
+ };
4188
+ type DeferredControllerCompleteDeferredResponse = DeferredControllerCompleteDeferredResponses[keyof DeferredControllerCompleteDeferredResponses];
4189
+ type DeferredControllerFailDeferredData = {
4190
+ body?: FailDeferredDto;
4191
+ path: {
4192
+ transactionId: string;
4193
+ };
4194
+ query?: never;
4195
+ url: "/api/issuer/deferred/{transactionId}/fail";
4196
+ };
4197
+ type DeferredControllerFailDeferredErrors = {
4198
+ /**
4199
+ * Transaction not found
4200
+ */
4201
+ 404: unknown;
4202
+ };
4203
+ type DeferredControllerFailDeferredResponses = {
4204
+ /**
4205
+ * Transaction marked as failed
4206
+ */
4207
+ 200: DeferredOperationResponse;
4208
+ };
4209
+ type DeferredControllerFailDeferredResponse = DeferredControllerFailDeferredResponses[keyof DeferredControllerFailDeferredResponses];
3528
4210
  type KeyChainControllerGetProvidersData = {
3529
4211
  body?: never;
3530
4212
  path?: never;
@@ -3541,7 +4223,12 @@ type KeyChainControllerGetProvidersResponse = KeyChainControllerGetProvidersResp
3541
4223
  type KeyChainControllerGetAllData = {
3542
4224
  body?: never;
3543
4225
  path?: never;
3544
- query?: never;
4226
+ query?: {
4227
+ /**
4228
+ * Optional usage type filter
4229
+ */
4230
+ usageType?: "access" | "attestation" | "trustList" | "statusList" | "encrypt";
4231
+ };
3545
4232
  url: "/api/key-chain";
3546
4233
  };
3547
4234
  type KeyChainControllerGetAllResponses = {
@@ -3703,4 +4390,4 @@ type StorageControllerUploadResponses = {
3703
4390
  };
3704
4391
  type StorageControllerUploadResponse = StorageControllerUploadResponses[keyof StorageControllerUploadResponses];
3705
4392
 
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 };
4393
+ export type { ClientControllerCreateClientResponses as $, AccessCertificateRefDto as A, AuthorizationResponse as B, AuthorizeQueries as C, CacheControllerClearAllCachesData as D, CacheControllerClearAllCachesResponse as E, CacheControllerClearAllCachesResponses as F, CacheControllerClearStatusListCacheData as G, CacheControllerClearStatusListCacheResponse as H, CacheControllerClearStatusListCacheResponses as I, CacheControllerClearTrustListCacheData as J, CacheControllerClearTrustListCacheResponse as K, CacheControllerClearTrustListCacheResponses as L, CacheControllerGetStatsData as M, CacheControllerGetStatsResponses as N, CertificateInfoDto as O, ChainedAsConfig as P, ChainedAsErrorResponseDto as Q, ChainedAsParResponseDto as R, Session as S, ChainedAsTokenConfig as T, ChainedAsTokenRequestDto as U, ChainedAsTokenResponseDto as V, ClaimDisplayInfo as W, ClaimMetadata as X, ClaimsQuery as Y, ClientControllerCreateClientData as Z, ClientControllerCreateClientResponse as _, AllowListPolicy as a, DeferredControllerCompleteDeferredResponses as a$, ClientControllerDeleteClientData as a0, ClientControllerDeleteClientResponses as a1, ClientControllerGetClientData as a2, ClientControllerGetClientResponse as a3, ClientControllerGetClientResponses as a4, ClientControllerGetClientSecretData as a5, ClientControllerGetClientSecretResponse as a6, ClientControllerGetClientSecretResponses as a7, ClientControllerGetClientsData as a8, ClientControllerGetClientsResponse as a9, CredentialConfigControllerGetConfigByIdResponses as aA, CredentialConfigControllerGetConfigsData as aB, CredentialConfigControllerGetConfigsResponse as aC, CredentialConfigControllerGetConfigsResponses as aD, CredentialConfigControllerSignSchemaMetaConfigData as aE, CredentialConfigControllerSignSchemaMetaConfigErrors as aF, CredentialConfigControllerSignSchemaMetaConfigResponses as aG, CredentialConfigControllerSignVersionSchemaMetaConfigData as aH, CredentialConfigControllerSignVersionSchemaMetaConfigErrors as aI, CredentialConfigControllerSignVersionSchemaMetaConfigResponses as aJ, CredentialConfigControllerStoreCredentialConfigurationData as aK, CredentialConfigControllerStoreCredentialConfigurationResponse as aL, CredentialConfigControllerStoreCredentialConfigurationResponses as aM, CredentialConfigControllerUpdateCredentialConfigurationData as aN, CredentialConfigControllerUpdateCredentialConfigurationResponse as aO, CredentialConfigControllerUpdateCredentialConfigurationResponses as aP, CredentialConfigCreate as aQ, CredentialConfigUpdate as aR, CredentialOfferControllerGetOfferData as aS, CredentialOfferControllerGetOfferResponse as aT, CredentialOfferControllerGetOfferResponses as aU, CredentialQuery as aV, CredentialSetQuery as aW, Dcql as aX, DeferredControllerCompleteDeferredData as aY, DeferredControllerCompleteDeferredErrors as aZ, DeferredControllerCompleteDeferredResponse as a_, ClientControllerGetClientsResponses as aa, ClientControllerRotateClientSecretData as ab, ClientControllerRotateClientSecretResponse as ac, ClientControllerRotateClientSecretResponses as ad, ClientControllerUpdateClientData as ae, ClientControllerUpdateClientResponse as af, ClientControllerUpdateClientResponses as ag, ClientCredentialsDto as ah, ClientEntity as ai, ClientOptions as aj, ClientSecretResponseDto as ak, CompleteDeferredDto as al, CreateAccessCertificateDto as am, CreateAttributeProviderDto as an, CreateClientDto as ao, CreateRegistrarConfigDto as ap, CreateStatusListDto as aq, CreateTenantDto as ar, CreateUserDto as as, CreateWebhookEndpointDto as at, CredentialConfig as au, CredentialConfigControllerDeleteIssuanceConfigurationData as av, CredentialConfigControllerDeleteIssuanceConfigurationResponse as aw, CredentialConfigControllerDeleteIssuanceConfigurationResponses as ax, CredentialConfigControllerGetConfigByIdData as ay, CredentialConfigControllerGetConfigByIdResponse as az, ApiKeyConfig as b, KeyChainControllerUpdateData as b$, DeferredControllerFailDeferredData as b0, DeferredControllerFailDeferredErrors as b1, DeferredControllerFailDeferredResponse as b2, DeferredControllerFailDeferredResponses as b3, DeferredCredentialRequestDto as b4, DeferredOperationResponse as b5, DeprecateSchemaMetadataDto as b6, Display as b7, DisplayImage as b8, DisplayInfo as b9, IssuerMetadataCredentialConfig as bA, JwksResponseDto as bB, KeyAttestationsRequired as bC, KeyChainControllerCreateData as bD, KeyChainControllerCreateResponses as bE, KeyChainControllerDeleteData as bF, KeyChainControllerDeleteErrors as bG, KeyChainControllerDeleteResponses as bH, KeyChainControllerExportData as bI, KeyChainControllerExportErrors as bJ, KeyChainControllerExportResponse as bK, KeyChainControllerExportResponses as bL, KeyChainControllerGetAllData as bM, KeyChainControllerGetAllResponse as bN, KeyChainControllerGetAllResponses as bO, KeyChainControllerGetByIdData as bP, KeyChainControllerGetByIdErrors as bQ, KeyChainControllerGetByIdResponse as bR, KeyChainControllerGetByIdResponses as bS, KeyChainControllerGetProvidersData as bT, KeyChainControllerGetProvidersResponse as bU, KeyChainControllerGetProvidersResponses as bV, KeyChainControllerImportData as bW, KeyChainControllerImportResponses as bX, KeyChainControllerRotateData as bY, KeyChainControllerRotateErrors as bZ, KeyChainControllerRotateResponses as b_, DisplayLogo as ba, EcJwk as bb, EcPublic as bc, EmbeddedDisclosurePolicy as bd, ExportEcJwk as be, ExportRotationPolicyDto as bf, ExternalTrustListEntity as bg, FailDeferredDto as bh, FileUploadDto as bi, FrontendConfigResponseDto as bj, GrafanaConfigDto as bk, IaeActionOpenid4VpPresentation as bl, IaeActionRedirectToWeb as bm, ImportTenantDto as bn, InteractiveAuthorizationCodeResponseDto as bo, InteractiveAuthorizationErrorResponseDto as bp, InteractiveAuthorizationRequestDto as bq, InternalTrustListEntity as br, IssuanceConfig as bs, IssuanceConfigControllerGetIssuanceConfigurationsData as bt, IssuanceConfigControllerGetIssuanceConfigurationsResponse as bu, IssuanceConfigControllerGetIssuanceConfigurationsResponses as bv, IssuanceConfigControllerStoreIssuanceConfigurationData as bw, IssuanceConfigControllerStoreIssuanceConfigurationResponse as bx, IssuanceConfigControllerStoreIssuanceConfigurationResponses as by, IssuanceDto as bz, AppControllerGetFrontendConfigData as c, RegistrarControllerDeleteConfigData as c$, KeyChainControllerUpdateErrors as c0, KeyChainControllerUpdateResponses as c1, KeyChainCreateDto as c2, KeyChainEntity as c3, KeyChainExportDto as c4, KeyChainImportDto as c5, KeyChainResponseDto as c6, KeyChainUpdateDto as c7, KmsProviderCapabilitiesDto as c8, KmsProviderInfoDto as c9, PresentationManagementControllerListSchemaMetadataCatalogResponses as cA, PresentationManagementControllerReissueRegistrationCertificateData as cB, PresentationManagementControllerReissueRegistrationCertificateErrors as cC, PresentationManagementControllerReissueRegistrationCertificateResponses as cD, PresentationManagementControllerResolveIssuerMetadataData as cE, PresentationManagementControllerResolveIssuerMetadataErrors as cF, PresentationManagementControllerResolveIssuerMetadataResponses as cG, PresentationManagementControllerResolveSchemaMetadataData as cH, PresentationManagementControllerResolveSchemaMetadataErrors as cI, PresentationManagementControllerResolveSchemaMetadataResponses as cJ, PresentationManagementControllerStorePresentationConfigData as cK, PresentationManagementControllerStorePresentationConfigResponse as cL, PresentationManagementControllerStorePresentationConfigResponses as cM, PresentationManagementControllerUpdateConfigurationData as cN, PresentationManagementControllerUpdateConfigurationResponse as cO, PresentationManagementControllerUpdateConfigurationResponses as cP, PresentationRequest as cQ, PublicKeyInfoDto as cR, RegistrarConfigResponseDto as cS, RegistrarControllerCreateAccessCertificateData as cT, RegistrarControllerCreateAccessCertificateErrors as cU, RegistrarControllerCreateAccessCertificateResponse as cV, RegistrarControllerCreateAccessCertificateResponses as cW, RegistrarControllerCreateConfigData as cX, RegistrarControllerCreateConfigErrors as cY, RegistrarControllerCreateConfigResponse as cZ, RegistrarControllerCreateConfigResponses as c_, KmsProvidersResponseDto as ca, ManagedUserDto as cb, MetadataSchemaDto as cc, NoneTrustPolicy as cd, NotificationRequestDto as ce, Object$1 as cf, ObjectWritable as cg, OfferRequestDto as ch, OfferResponse as ci, ParResponseDto as cj, PolicyCredential as ck, PresentationAttachment as cl, PresentationConfig as cm, PresentationConfigCreateDto as cn, PresentationConfigUpdateDto as co, PresentationConfigWritable as cp, PresentationDuringIssuanceConfig as cq, PresentationManagementControllerConfigurationData as cr, PresentationManagementControllerConfigurationResponse as cs, PresentationManagementControllerConfigurationResponses as ct, PresentationManagementControllerDeleteConfigurationData as cu, PresentationManagementControllerDeleteConfigurationResponses as cv, PresentationManagementControllerGetConfigurationData as cw, PresentationManagementControllerGetConfigurationResponse as cx, PresentationManagementControllerGetConfigurationResponses as cy, PresentationManagementControllerListSchemaMetadataCatalogData as cz, AppControllerGetFrontendConfigResponse as d, SessionConfigControllerResetConfigData as d$, RegistrarControllerDeleteConfigResponse as d0, RegistrarControllerDeleteConfigResponses as d1, RegistrarControllerGetConfigData as d2, RegistrarControllerGetConfigErrors as d3, RegistrarControllerGetConfigResponse as d4, RegistrarControllerGetConfigResponses as d5, RegistrarControllerUpdateConfigData as d6, RegistrarControllerUpdateConfigErrors as d7, RegistrarControllerUpdateConfigResponse as d8, RegistrarControllerUpdateConfigResponses as d9, SchemaMetadataControllerGetJwtData as dA, SchemaMetadataControllerGetJwtResponse as dB, SchemaMetadataControllerGetJwtResponses as dC, SchemaMetadataControllerGetLatestData as dD, SchemaMetadataControllerGetLatestResponse as dE, SchemaMetadataControllerGetLatestResponses as dF, SchemaMetadataControllerGetSchemaData as dG, SchemaMetadataControllerGetSchemaResponse as dH, SchemaMetadataControllerGetSchemaResponses as dI, SchemaMetadataControllerGetVersionsData as dJ, SchemaMetadataControllerGetVersionsResponse as dK, SchemaMetadataControllerGetVersionsResponses as dL, SchemaMetadataControllerGetVocabulariesData as dM, SchemaMetadataControllerGetVocabulariesResponse as dN, SchemaMetadataControllerGetVocabulariesResponses as dO, SchemaMetadataControllerRemoveData as dP, SchemaMetadataControllerRemoveResponses as dQ, SchemaMetadataControllerUpdateData as dR, SchemaMetadataControllerUpdateResponse as dS, SchemaMetadataControllerUpdateResponses as dT, SchemaMetadataResponseDto as dU, SchemaMetadataVocabulariesDto as dV, SchemaResponse as dW, SchemaUriEntry as dX, SessionConfigControllerGetConfigData as dY, SessionConfigControllerGetConfigResponse as dZ, SessionConfigControllerGetConfigResponses as d_, RegistrationCertificateBody as da, RegistrationCertificateDefaults as db, RegistrationCertificatePurpose as dc, RegistrationCertificateRequest as dd, ResolveIssuerMetadataDto as de, ResolveSchemaMetadataDto as df, RoleDto as dg, RootOfTrustPolicy as dh, RotationPolicyCreateDto as di, RotationPolicyImportDto as dj, RotationPolicyResponseDto as dk, RotationPolicyUpdateDto as dl, SchemaMetaConfig as dm, SchemaMetadataControllerDeprecateVersionData as dn, SchemaMetadataControllerDeprecateVersionResponse as dp, SchemaMetadataControllerDeprecateVersionResponses as dq, SchemaMetadataControllerExportData as dr, SchemaMetadataControllerExportResponse as ds, SchemaMetadataControllerExportResponses as dt, SchemaMetadataControllerFindAllData as du, SchemaMetadataControllerFindAllResponse as dv, SchemaMetadataControllerFindAllResponses as dw, SchemaMetadataControllerFindOneData as dx, SchemaMetadataControllerFindOneResponse as dy, SchemaMetadataControllerFindOneResponses as dz, AppControllerGetFrontendConfigResponses as e, TenantControllerInitTenantData as e$, SessionConfigControllerResetConfigResponses as e0, SessionConfigControllerUpdateConfigData as e1, SessionConfigControllerUpdateConfigResponse as e2, SessionConfigControllerUpdateConfigResponses as e3, SessionControllerDeleteSessionData as e4, SessionControllerDeleteSessionResponses as e5, SessionControllerGetAllSessionsData as e6, SessionControllerGetAllSessionsResponse as e7, SessionControllerGetAllSessionsResponses as e8, SessionControllerGetSessionData as e9, StatusListManagementControllerCreateListResponse as eA, StatusListManagementControllerCreateListResponses as eB, StatusListManagementControllerDeleteListData as eC, StatusListManagementControllerDeleteListResponse as eD, StatusListManagementControllerDeleteListResponses as eE, StatusListManagementControllerGetListData as eF, StatusListManagementControllerGetListResponse as eG, StatusListManagementControllerGetListResponses as eH, StatusListManagementControllerGetListsData as eI, StatusListManagementControllerGetListsResponse as eJ, StatusListManagementControllerGetListsResponses as eK, StatusListManagementControllerUpdateListData as eL, StatusListManagementControllerUpdateListResponse as eM, StatusListManagementControllerUpdateListResponses as eN, StatusListResponseDto as eO, StatusUpdateDto as eP, StorageControllerUploadData as eQ, StorageControllerUploadResponse as eR, StorageControllerUploadResponses as eS, TenantControllerDeleteTenantData as eT, TenantControllerDeleteTenantResponses as eU, TenantControllerGetTenantData as eV, TenantControllerGetTenantResponse as eW, TenantControllerGetTenantResponses as eX, TenantControllerGetTenantsData as eY, TenantControllerGetTenantsResponse as eZ, TenantControllerGetTenantsResponses as e_, SessionControllerGetSessionLogsData as ea, SessionControllerGetSessionLogsResponse as eb, SessionControllerGetSessionLogsResponses as ec, SessionControllerGetSessionResponse as ed, SessionControllerGetSessionResponses as ee, SessionControllerRevokeAllData as ef, SessionControllerRevokeAllResponses as eg, SessionEventsControllerSubscribeToSessionEventsData as eh, SessionEventsControllerSubscribeToSessionEventsResponses as ei, SessionLogEntryResponseDto as ej, SessionStorageConfig as ek, SignSchemaMetaConfigDto as el, SignVersionSchemaMetaConfigDto as em, StatusListAggregationDto as en, StatusListConfig as eo, StatusListConfigControllerGetConfigData as ep, StatusListConfigControllerGetConfigResponse as eq, StatusListConfigControllerGetConfigResponses as er, StatusListConfigControllerResetConfigData as es, StatusListConfigControllerResetConfigResponse as et, StatusListConfigControllerResetConfigResponses as eu, StatusListConfigControllerUpdateConfigData as ev, StatusListConfigControllerUpdateConfigResponse as ew, StatusListConfigControllerUpdateConfigResponses as ex, StatusListImportDto as ey, StatusListManagementControllerCreateListData as ez, AppControllerGetVersionData as f, Vct as f$, TenantControllerInitTenantResponse as f0, TenantControllerInitTenantResponses as f1, TenantControllerUpdateTenantData as f2, TenantControllerUpdateTenantResponse as f3, TenantControllerUpdateTenantResponses as f4, TenantEntity as f5, TokenResponse as f6, TransactionData as f7, TrustAuthorityDto as f8, TrustAuthorityEntry as f9, TrustListVersion as fA, TrustedAuthorityQuery as fB, UpdateAttributeProviderDto as fC, UpdateClientDto as fD, UpdateRegistrarConfigDto as fE, UpdateSchemaMetadataDto as fF, UpdateSessionConfigDto as fG, UpdateStatusListConfigDto as fH, UpdateStatusListDto as fI, UpdateTenantDto as fJ, UpdateUserDto as fK, UpdateWebhookEndpointDto as fL, UpstreamOidcConfig as fM, UserControllerCreateUserData as fN, UserControllerCreateUserResponse as fO, UserControllerCreateUserResponses as fP, UserControllerDeleteUserData as fQ, UserControllerDeleteUserResponses as fR, UserControllerGetUserData as fS, UserControllerGetUserResponse as fT, UserControllerGetUserResponses as fU, UserControllerGetUsersData as fV, UserControllerGetUsersResponse as fW, UserControllerGetUsersResponses as fX, UserControllerUpdateUserData as fY, UserControllerUpdateUserResponse as fZ, UserControllerUpdateUserResponses as f_, TrustList as fa, TrustListControllerCreateTrustListData as fb, TrustListControllerCreateTrustListResponse as fc, TrustListControllerCreateTrustListResponses as fd, TrustListControllerDeleteTrustListData as fe, TrustListControllerDeleteTrustListResponses as ff, TrustListControllerExportTrustListData as fg, TrustListControllerExportTrustListResponse as fh, TrustListControllerExportTrustListResponses as fi, TrustListControllerGetAllTrustListsData as fj, TrustListControllerGetAllTrustListsResponse as fk, TrustListControllerGetAllTrustListsResponses as fl, TrustListControllerGetTrustListData as fm, TrustListControllerGetTrustListResponse as fn, TrustListControllerGetTrustListResponses as fo, TrustListControllerGetTrustListVersionData as fp, TrustListControllerGetTrustListVersionResponse as fq, TrustListControllerGetTrustListVersionResponses as fr, TrustListControllerGetTrustListVersionsData as fs, TrustListControllerGetTrustListVersionsResponse as ft, TrustListControllerGetTrustListVersionsResponses as fu, TrustListControllerUpdateTrustListData as fv, TrustListControllerUpdateTrustListResponse as fw, TrustListControllerUpdateTrustListResponses as fx, TrustListCreateDto as fy, TrustListEntityInfo as fz, AppControllerGetVersionResponses as g, VerifierOfferControllerGetOfferData as g0, VerifierOfferControllerGetOfferResponse as g1, VerifierOfferControllerGetOfferResponses as g2, VocabularyEntryDto as g3, WebHookAuthConfigHeader as g4, WebHookAuthConfigNone as g5, WebhookConfig as g6, WebhookEndpointControllerCreateData as g7, WebhookEndpointControllerCreateResponses as g8, WebhookEndpointControllerDeleteData as g9, WebhookEndpointControllerDeleteErrors as ga, WebhookEndpointControllerDeleteResponses as gb, WebhookEndpointControllerGetAllData as gc, WebhookEndpointControllerGetAllResponse as gd, WebhookEndpointControllerGetAllResponses as ge, WebhookEndpointControllerGetByIdData as gf, WebhookEndpointControllerGetByIdErrors as gg, WebhookEndpointControllerGetByIdResponses as gh, WebhookEndpointControllerUpdateData as gi, WebhookEndpointControllerUpdateErrors as gj, WebhookEndpointControllerUpdateResponses as gk, WebhookEndpointEntity as gl, AttestationBasedPolicy as h, AttributeProviderControllerCreateData as i, AttributeProviderControllerCreateResponses as j, AttributeProviderControllerDeleteData as k, AttributeProviderControllerDeleteErrors as l, AttributeProviderControllerDeleteResponses as m, AttributeProviderControllerGetAllData as n, AttributeProviderControllerGetAllResponses as o, AttributeProviderControllerGetByIdData as p, AttributeProviderControllerGetByIdErrors as q, AttributeProviderControllerGetByIdResponses as r, AttributeProviderControllerUpdateData as s, AttributeProviderControllerUpdateErrors as t, AttributeProviderControllerUpdateResponses as u, AttributeProviderEntity as v, AuthenticationMethodAuth as w, AuthenticationMethodNone as x, AuthenticationMethodPresentation as y, AuthenticationUrlConfig as z };