@eudiplo/sdk-core 4.2.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.
@@ -625,6 +625,18 @@ type Session = {
625
625
  * Reset implicitly when the session is consumed successfully.
626
626
  */
627
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;
628
640
  };
629
641
  type SessionLogEntryResponseDto = {
630
642
  /**
@@ -1042,6 +1054,80 @@ type WebhookEndpointEntity = {
1042
1054
  description?: string;
1043
1055
  url: string;
1044
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
+ };
1045
1131
  type EmbeddedDisclosurePolicy = {
1046
1132
  policy: string;
1047
1133
  };
@@ -1250,6 +1336,15 @@ type CredentialConfig = {
1250
1336
  * List of IAE actions to execute before credential issuance
1251
1337
  */
1252
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;
1253
1348
  /**
1254
1349
  * Embedded disclosure policy (discriminated union by `policy`).
1255
1350
  * The discriminator makes class-transformer instantiate the right subclass,
@@ -1301,6 +1396,15 @@ type CredentialConfigCreate = {
1301
1396
  * List of IAE actions to execute before credential issuance
1302
1397
  */
1303
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;
1304
1408
  /**
1305
1409
  * Embedded disclosure policy (discriminated union by `policy`).
1306
1410
  * The discriminator makes class-transformer instantiate the right subclass,
@@ -1345,6 +1449,15 @@ type CredentialConfigUpdate = {
1345
1449
  * List of IAE actions to execute before credential issuance
1346
1450
  */
1347
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;
1348
1461
  /**
1349
1462
  * Embedded disclosure policy (discriminated union by `policy`).
1350
1463
  * The discriminator makes class-transformer instantiate the right subclass,
@@ -1380,6 +1493,30 @@ type CredentialConfigUpdate = {
1380
1493
  lifeTime?: number;
1381
1494
  schema?: SchemaResponse;
1382
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
+ };
1383
1520
  type CreateAttributeProviderDto = {
1384
1521
  auth: WebHookAuthConfigNone | WebHookAuthConfigHeader;
1385
1522
  id: string;
@@ -1414,6 +1551,111 @@ type UpdateWebhookEndpointDto = {
1414
1551
  description?: string;
1415
1552
  url?: string;
1416
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
+ };
1417
1659
  type Dcql = {
1418
1660
  credentials: Array<CredentialQuery>;
1419
1661
  credential_sets?: Array<CredentialSetQuery>;
@@ -1489,7 +1731,7 @@ type PresentationConfig = {
1489
1731
  /**
1490
1732
  * The registration certificate request containing the necessary details.
1491
1733
  */
1492
- registrationCert?: RegistrationCertificateRequest;
1734
+ registration_cert?: RegistrationCertificateRequest;
1493
1735
  /**
1494
1736
  * Optional webhook URL to receive the response.
1495
1737
  */
@@ -1528,6 +1770,12 @@ type ResolveIssuerMetadataDto = {
1528
1770
  */
1529
1771
  issuerUrl: string;
1530
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
+ };
1531
1779
  type PresentationConfigCreateDto = {
1532
1780
  /**
1533
1781
  * Unique identifier for the VP request.
@@ -1549,7 +1797,7 @@ type PresentationConfigCreateDto = {
1549
1797
  /**
1550
1798
  * The registration certificate request containing the necessary details.
1551
1799
  */
1552
- registrationCert?: RegistrationCertificateRequest;
1800
+ registration_cert?: RegistrationCertificateRequest;
1553
1801
  /**
1554
1802
  * Optional webhook URL to receive the response.
1555
1803
  */
@@ -1595,7 +1843,7 @@ type PresentationConfigUpdateDto = {
1595
1843
  /**
1596
1844
  * The registration certificate request containing the necessary details.
1597
1845
  */
1598
- registrationCert?: RegistrationCertificateRequest;
1846
+ registration_cert?: RegistrationCertificateRequest;
1599
1847
  /**
1600
1848
  * Optional webhook URL to receive the response.
1601
1849
  */
@@ -1726,114 +1974,307 @@ type CreateAccessCertificateDto = {
1726
1974
  */
1727
1975
  keyId: string;
1728
1976
  };
1729
- type DeferredCredentialRequestDto = {
1977
+ type VocabularyEntryDto = {
1730
1978
  /**
1731
- * The transaction identifier previously returned by the Credential Endpoint
1979
+ * Stable machine-readable value to submit in schema metadata category/tags fields.
1732
1980
  */
1733
- transaction_id: string;
1734
- };
1735
- type NotificationRequestDto = {
1736
- notification_id: string;
1737
- event: {
1738
- [key: string]: unknown;
1739
- };
1740
- };
1741
- type Object$1 = {
1742
- [key: string]: unknown;
1743
- };
1744
- type ParResponseDto = {
1981
+ code: string;
1745
1982
  /**
1746
- * The request URI for the Pushed Authorization Request.
1983
+ * Display label for UI rendering.
1747
1984
  */
1748
- request_uri: string;
1985
+ label: string;
1749
1986
  /**
1750
- * The expiration time for the request URI in seconds.
1987
+ * Vocabulary lifecycle status.
1751
1988
  */
1752
- expires_in: number;
1753
- };
1754
- type InteractiveAuthorizationRequestDto = {
1989
+ status: "active" | "deprecated";
1755
1990
  /**
1756
- * Response type (for initial request)
1991
+ * Replacement code when status is deprecated.
1757
1992
  */
1758
- response_type?: string;
1993
+ replacedBy?: string;
1994
+ };
1995
+ type SchemaMetadataVocabulariesDto = {
1759
1996
  /**
1760
- * Client identifier (for initial request)
1997
+ * Vocabulary publication version for cache invalidation.
1761
1998
  */
1762
- client_id?: string;
1999
+ version: string;
1763
2000
  /**
1764
- * Comma-separated list of supported interaction types (for initial request)
2001
+ * Allowed category values that can be used when updating schema metadata category.
1765
2002
  */
1766
- interaction_types_supported?: string;
2003
+ categories: Array<VocabularyEntryDto>;
1767
2004
  /**
1768
- * Redirect URI (for initial request)
2005
+ * Allowed tag values that can be used when updating schema metadata tags.
1769
2006
  */
1770
- redirect_uri?: string;
2007
+ tags: Array<VocabularyEntryDto>;
2008
+ };
2009
+ type MetadataSchemaDto = {
1771
2010
  /**
1772
- * OAuth scope
2011
+ * Unique identifier for this schema entry
1773
2012
  */
1774
- scope?: string;
2013
+ id: string;
1775
2014
  /**
1776
- * PKCE code challenge
2015
+ * The credential format identifier
1777
2016
  */
1778
- code_challenge?: string;
2017
+ formatIdentifier: "dc+sd-jwt" | "mso_mdoc";
1779
2018
  /**
1780
- * PKCE code challenge method
2019
+ * URI to the schema definition
1781
2020
  */
1782
- code_challenge_method?: string;
2021
+ uri?: string;
1783
2022
  /**
1784
- * Authorization details
2023
+ * Inline schema content (JSON Schema)
1785
2024
  */
1786
- authorization_details?: {
2025
+ schemaContent?: {
1787
2026
  [key: string]: unknown;
1788
2027
  };
1789
2028
  /**
1790
- * State parameter
2029
+ * Subresource Integrity hash for the schema
1791
2030
  */
1792
- state?: string;
2031
+ integrity?: string;
2032
+ };
2033
+ type TrustAuthorityDto = {
1793
2034
  /**
1794
- * Issuer state from credential offer
2035
+ * Unique identifier for this trust authority entry
1795
2036
  */
1796
- issuer_state?: string;
2037
+ id: string;
1797
2038
  /**
1798
- * Auth session identifier (for follow-up request)
2039
+ * Type of trust framework
1799
2040
  */
1800
- auth_session?: string;
2041
+ frameworkType: "etsi_tl";
1801
2042
  /**
1802
- * OpenID4VP response (for follow-up request)
2043
+ * URI or identifier for the trust list / authority
1803
2044
  */
1804
- openid4vp_response?: string;
2045
+ value: string;
1805
2046
  /**
1806
- * PKCE code verifier (for follow-up request)
2047
+ * Verification method for the trust list signature (e.g., JWK)
1807
2048
  */
1808
- code_verifier?: string;
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 = {
1809
2061
  /**
1810
- * JAR request JWT (by value)
2062
+ * The unique, server-assigned identifier (UUID) for the schema metadata
1811
2063
  */
1812
- request?: string;
2064
+ id: string;
1813
2065
  /**
1814
- * JAR request URI (by reference)
2066
+ * Version of this schema metadata (SemVer)
1815
2067
  */
1816
- request_uri?: string;
1817
- };
1818
- type InteractiveAuthorizationCodeResponseDto = {
2068
+ version: string;
1819
2069
  /**
1820
- * Response status
2070
+ * URI of the human-readable Rulebook document
1821
2071
  */
1822
- status: string;
2072
+ rulebookURI?: string;
1823
2073
  /**
1824
- * Authorization code
2074
+ * Subresource Integrity hash for the rulebook URI
1825
2075
  */
1826
- code: string;
1827
- };
1828
- type InteractiveAuthorizationErrorResponseDto = {
2076
+ rulebookIntegrity?: string;
1829
2077
  /**
1830
- * OAuth error code
2078
+ * Level of security (LoS) of this attestation
1831
2079
  */
1832
- error: string;
2080
+ attestationLoS: "iso_18045_high" | "iso_18045_moderate" | "iso_18045_enhanced-basic" | "iso_18045_basic";
1833
2081
  /**
1834
- * Human-readable error description
2082
+ * Required binding type between attestation and holder
1835
2083
  */
1836
- error_description?: string;
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
+ };
2181
+ };
2182
+ type Object$1 = {
2183
+ [key: string]: unknown;
2184
+ };
2185
+ type ParResponseDto = {
2186
+ /**
2187
+ * The request URI for the Pushed Authorization Request.
2188
+ */
2189
+ request_uri: string;
2190
+ /**
2191
+ * The expiration time for the request URI in seconds.
2192
+ */
2193
+ expires_in: number;
2194
+ };
2195
+ type InteractiveAuthorizationRequestDto = {
2196
+ /**
2197
+ * Response type (for initial request)
2198
+ */
2199
+ response_type?: string;
2200
+ /**
2201
+ * Client identifier (for initial request)
2202
+ */
2203
+ client_id?: string;
2204
+ /**
2205
+ * Comma-separated list of supported interaction types (for initial request)
2206
+ */
2207
+ interaction_types_supported?: string;
2208
+ /**
2209
+ * Redirect URI (for initial request)
2210
+ */
2211
+ redirect_uri?: string;
2212
+ /**
2213
+ * OAuth scope
2214
+ */
2215
+ scope?: string;
2216
+ /**
2217
+ * PKCE code challenge
2218
+ */
2219
+ code_challenge?: string;
2220
+ /**
2221
+ * PKCE code challenge method
2222
+ */
2223
+ code_challenge_method?: string;
2224
+ /**
2225
+ * Authorization details
2226
+ */
2227
+ authorization_details?: {
2228
+ [key: string]: unknown;
2229
+ };
2230
+ /**
2231
+ * State parameter
2232
+ */
2233
+ state?: string;
2234
+ /**
2235
+ * Issuer state from credential offer
2236
+ */
2237
+ issuer_state?: string;
2238
+ /**
2239
+ * Auth session identifier (for follow-up request)
2240
+ */
2241
+ auth_session?: string;
2242
+ /**
2243
+ * OpenID4VP response (for follow-up request)
2244
+ */
2245
+ openid4vp_response?: string;
2246
+ /**
2247
+ * PKCE code verifier (for follow-up request)
2248
+ */
2249
+ code_verifier?: string;
2250
+ /**
2251
+ * JAR request JWT (by value)
2252
+ */
2253
+ request?: string;
2254
+ /**
2255
+ * JAR request URI (by reference)
2256
+ */
2257
+ request_uri?: string;
2258
+ };
2259
+ type InteractiveAuthorizationCodeResponseDto = {
2260
+ /**
2261
+ * Response status
2262
+ */
2263
+ status: string;
2264
+ /**
2265
+ * Authorization code
2266
+ */
2267
+ code: string;
2268
+ };
2269
+ type InteractiveAuthorizationErrorResponseDto = {
2270
+ /**
2271
+ * OAuth error code
2272
+ */
2273
+ error: string;
2274
+ /**
2275
+ * Human-readable error description
2276
+ */
2277
+ error_description?: string;
1837
2278
  };
1838
2279
  type ChainedAsParResponseDto = {
1839
2280
  /**
@@ -2001,111 +2442,6 @@ type AuthorizationResponse = {
2001
2442
  */
2002
2443
  state?: string;
2003
2444
  };
2004
- type TrustListEntityInfo = {
2005
- name: string;
2006
- lang?: string;
2007
- uri?: string;
2008
- country?: string;
2009
- locality?: string;
2010
- postalCode?: string;
2011
- streetAddress?: string;
2012
- contactUri?: string;
2013
- };
2014
- type InternalTrustListEntity = {
2015
- type: "internal";
2016
- issuerKeyChainId: string;
2017
- revocationKeyChainId: string;
2018
- info: TrustListEntityInfo;
2019
- };
2020
- type ExternalTrustListEntity = {
2021
- type: "external";
2022
- issuerCertPem: string;
2023
- revocationCertPem: string;
2024
- info: TrustListEntityInfo;
2025
- };
2026
- type TrustListCreateDto = {
2027
- description?: string;
2028
- /**
2029
- * The full trust list JSON (generated LoTE structure)
2030
- */
2031
- data?: {
2032
- [key: string]: unknown;
2033
- };
2034
- entities: Array<({
2035
- type: "internal";
2036
- } & InternalTrustListEntity) | ({
2037
- type: "external";
2038
- } & ExternalTrustListEntity)>;
2039
- id?: string;
2040
- keyChainId?: string;
2041
- };
2042
- type TrustList = {
2043
- /**
2044
- * Unique identifier for the trust list
2045
- */
2046
- id: string;
2047
- description?: string;
2048
- /**
2049
- * The tenant ID for which the VP request is made.
2050
- */
2051
- tenantId: string;
2052
- /**
2053
- * The tenant that owns this object.
2054
- */
2055
- tenant: TenantEntity;
2056
- keyChainId: string;
2057
- keyChain: KeyChainEntity;
2058
- /**
2059
- * The full trust list JSON (generated LoTE structure)
2060
- */
2061
- data?: {
2062
- [key: string]: unknown;
2063
- };
2064
- /**
2065
- * The original entity configuration used to create this trust list.
2066
- * Stored for round-tripping when editing.
2067
- */
2068
- entityConfig?: Array<{
2069
- [key: string]: unknown;
2070
- }>;
2071
- /**
2072
- * The sequence number for versioning (incremented on updates)
2073
- */
2074
- sequenceNumber: number;
2075
- /**
2076
- * The signed JWT representation of this trust list
2077
- */
2078
- jwt: string;
2079
- createdAt: string;
2080
- updatedAt: string;
2081
- };
2082
- type TrustListVersion = {
2083
- id: string;
2084
- trustListId: string;
2085
- trustList: TrustList;
2086
- tenantId: string;
2087
- /**
2088
- * The sequence number at the time this version was created
2089
- */
2090
- sequenceNumber: number;
2091
- /**
2092
- * The full trust list JSON at this version
2093
- */
2094
- data: {
2095
- [key: string]: unknown;
2096
- };
2097
- /**
2098
- * The entity configuration at this version
2099
- */
2100
- entityConfig?: {
2101
- [key: string]: unknown;
2102
- };
2103
- /**
2104
- * The signed JWT at this version
2105
- */
2106
- jwt: string;
2107
- createdAt: string;
2108
- };
2109
2445
  type KmsProviderCapabilitiesDto = {
2110
2446
  /**
2111
2447
  * Whether the provider supports importing existing keys.
@@ -2512,7 +2848,7 @@ type PresentationConfigWritable = {
2512
2848
  /**
2513
2849
  * The registration certificate request containing the necessary details.
2514
2850
  */
2515
- registrationCert?: RegistrationCertificateRequest;
2851
+ registration_cert?: RegistrationCertificateRequest;
2516
2852
  /**
2517
2853
  * Optional webhook URL to receive the response.
2518
2854
  */
@@ -3055,8 +3391,11 @@ type CredentialConfigControllerDeleteIssuanceConfigurationData = {
3055
3391
  url: "/api/issuer/credentials/{id}";
3056
3392
  };
3057
3393
  type CredentialConfigControllerDeleteIssuanceConfigurationResponses = {
3058
- 200: unknown;
3394
+ 200: {
3395
+ [key: string]: unknown;
3396
+ };
3059
3397
  };
3398
+ type CredentialConfigControllerDeleteIssuanceConfigurationResponse = CredentialConfigControllerDeleteIssuanceConfigurationResponses[keyof CredentialConfigControllerDeleteIssuanceConfigurationResponses];
3060
3399
  type CredentialConfigControllerGetConfigByIdData = {
3061
3400
  body?: never;
3062
3401
  path: {
@@ -3083,6 +3422,42 @@ type CredentialConfigControllerUpdateCredentialConfigurationResponses = {
3083
3422
  };
3084
3423
  };
3085
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
+ };
3086
3461
  type AttributeProviderControllerGetAllData = {
3087
3462
  body?: never;
3088
3463
  path?: never;
@@ -3186,72 +3561,164 @@ type WebhookEndpointControllerCreateData = {
3186
3561
  query?: never;
3187
3562
  url: "/api/issuer/webhook-endpoints";
3188
3563
  };
3189
- type WebhookEndpointControllerCreateResponses = {
3190
- /**
3191
- * Webhook endpoint created
3192
- */
3193
- 201: unknown;
3564
+ type WebhookEndpointControllerCreateResponses = {
3565
+ /**
3566
+ * Webhook endpoint created
3567
+ */
3568
+ 201: unknown;
3569
+ };
3570
+ type WebhookEndpointControllerDeleteData = {
3571
+ body?: never;
3572
+ path: {
3573
+ id: string;
3574
+ };
3575
+ query?: never;
3576
+ url: "/api/issuer/webhook-endpoints/{id}";
3577
+ };
3578
+ type WebhookEndpointControllerDeleteErrors = {
3579
+ /**
3580
+ * Webhook endpoint not found
3581
+ */
3582
+ 404: unknown;
3583
+ };
3584
+ type WebhookEndpointControllerDeleteResponses = {
3585
+ /**
3586
+ * Webhook endpoint deleted
3587
+ */
3588
+ 200: unknown;
3589
+ };
3590
+ type WebhookEndpointControllerGetByIdData = {
3591
+ body?: never;
3592
+ path: {
3593
+ id: string;
3594
+ };
3595
+ query?: never;
3596
+ url: "/api/issuer/webhook-endpoints/{id}";
3597
+ };
3598
+ type WebhookEndpointControllerGetByIdErrors = {
3599
+ /**
3600
+ * Webhook endpoint not found
3601
+ */
3602
+ 404: unknown;
3603
+ };
3604
+ type WebhookEndpointControllerGetByIdResponses = {
3605
+ /**
3606
+ * The webhook endpoint
3607
+ */
3608
+ 200: unknown;
3609
+ };
3610
+ type WebhookEndpointControllerUpdateData = {
3611
+ body: UpdateWebhookEndpointDto;
3612
+ path: {
3613
+ id: string;
3614
+ };
3615
+ query?: never;
3616
+ url: "/api/issuer/webhook-endpoints/{id}";
3617
+ };
3618
+ type WebhookEndpointControllerUpdateErrors = {
3619
+ /**
3620
+ * Webhook endpoint not found
3621
+ */
3622
+ 404: unknown;
3623
+ };
3624
+ type WebhookEndpointControllerUpdateResponses = {
3625
+ /**
3626
+ * Webhook endpoint updated
3627
+ */
3628
+ 200: unknown;
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;
3194
3683
  };
3195
- type WebhookEndpointControllerDeleteData = {
3684
+ type TrustListControllerUpdateTrustListResponse = TrustListControllerUpdateTrustListResponses[keyof TrustListControllerUpdateTrustListResponses];
3685
+ type TrustListControllerExportTrustListData = {
3196
3686
  body?: never;
3197
3687
  path: {
3198
3688
  id: string;
3199
3689
  };
3200
3690
  query?: never;
3201
- url: "/api/issuer/webhook-endpoints/{id}";
3202
- };
3203
- type WebhookEndpointControllerDeleteErrors = {
3204
- /**
3205
- * Webhook endpoint not found
3206
- */
3207
- 404: unknown;
3691
+ url: "/api/trust-list/{id}/export";
3208
3692
  };
3209
- type WebhookEndpointControllerDeleteResponses = {
3210
- /**
3211
- * Webhook endpoint deleted
3212
- */
3213
- 200: unknown;
3693
+ type TrustListControllerExportTrustListResponses = {
3694
+ 200: TrustListCreateDto;
3214
3695
  };
3215
- type WebhookEndpointControllerGetByIdData = {
3696
+ type TrustListControllerExportTrustListResponse = TrustListControllerExportTrustListResponses[keyof TrustListControllerExportTrustListResponses];
3697
+ type TrustListControllerGetTrustListVersionsData = {
3216
3698
  body?: never;
3217
3699
  path: {
3218
3700
  id: string;
3219
3701
  };
3220
3702
  query?: never;
3221
- url: "/api/issuer/webhook-endpoints/{id}";
3222
- };
3223
- type WebhookEndpointControllerGetByIdErrors = {
3224
- /**
3225
- * Webhook endpoint not found
3226
- */
3227
- 404: unknown;
3703
+ url: "/api/trust-list/{id}/versions";
3228
3704
  };
3229
- type WebhookEndpointControllerGetByIdResponses = {
3230
- /**
3231
- * The webhook endpoint
3232
- */
3233
- 200: unknown;
3705
+ type TrustListControllerGetTrustListVersionsResponses = {
3706
+ 200: Array<TrustListVersion>;
3234
3707
  };
3235
- type WebhookEndpointControllerUpdateData = {
3236
- body: UpdateWebhookEndpointDto;
3708
+ type TrustListControllerGetTrustListVersionsResponse = TrustListControllerGetTrustListVersionsResponses[keyof TrustListControllerGetTrustListVersionsResponses];
3709
+ type TrustListControllerGetTrustListVersionData = {
3710
+ body?: never;
3237
3711
  path: {
3238
3712
  id: string;
3713
+ versionId: string;
3239
3714
  };
3240
3715
  query?: never;
3241
- url: "/api/issuer/webhook-endpoints/{id}";
3242
- };
3243
- type WebhookEndpointControllerUpdateErrors = {
3244
- /**
3245
- * Webhook endpoint not found
3246
- */
3247
- 404: unknown;
3716
+ url: "/api/trust-list/{id}/versions/{versionId}";
3248
3717
  };
3249
- type WebhookEndpointControllerUpdateResponses = {
3250
- /**
3251
- * Webhook endpoint updated
3252
- */
3253
- 200: unknown;
3718
+ type TrustListControllerGetTrustListVersionResponses = {
3719
+ 200: TrustListVersion;
3254
3720
  };
3721
+ type TrustListControllerGetTrustListVersionResponse = TrustListControllerGetTrustListVersionResponses[keyof TrustListControllerGetTrustListVersionResponses];
3255
3722
  type PresentationManagementControllerConfigurationData = {
3256
3723
  body?: never;
3257
3724
  path?: never;
@@ -3290,6 +3757,36 @@ type PresentationManagementControllerResolveIssuerMetadataResponses = {
3290
3757
  */
3291
3758
  200: unknown;
3292
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
+ };
3293
3790
  type PresentationManagementControllerDeleteConfigurationData = {
3294
3791
  body?: never;
3295
3792
  path: {
@@ -3502,153 +3999,214 @@ type RegistrarControllerCreateAccessCertificateResponses = {
3502
3999
  };
3503
4000
  };
3504
4001
  type RegistrarControllerCreateAccessCertificateResponse = RegistrarControllerCreateAccessCertificateResponses[keyof RegistrarControllerCreateAccessCertificateResponses];
3505
- type CredentialOfferControllerGetOfferData = {
3506
- body: OfferRequestDto;
4002
+ type SchemaMetadataControllerGetVocabulariesData = {
4003
+ body?: never;
3507
4004
  path?: never;
3508
4005
  query?: never;
3509
- url: "/api/issuer/offer";
4006
+ url: "/api/schema-metadata/vocabularies";
3510
4007
  };
3511
- type CredentialOfferControllerGetOfferResponses = {
3512
- /**
3513
- * JSON response
3514
- */
3515
- 201: OfferResponse;
4008
+ type SchemaMetadataControllerGetVocabulariesResponses = {
4009
+ 200: SchemaMetadataVocabulariesDto;
3516
4010
  };
3517
- type CredentialOfferControllerGetOfferResponse = CredentialOfferControllerGetOfferResponses[keyof CredentialOfferControllerGetOfferResponses];
3518
- type DeferredControllerCompleteDeferredData = {
3519
- 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;
3520
4027
  path: {
3521
- transactionId: string;
4028
+ id: string;
3522
4029
  };
3523
4030
  query?: never;
3524
- url: "/api/issuer/deferred/{transactionId}/complete";
3525
- };
3526
- type DeferredControllerCompleteDeferredErrors = {
3527
- /**
3528
- * Transaction not found
3529
- */
3530
- 404: unknown;
4031
+ url: "/api/schema-metadata/{id}";
3531
4032
  };
3532
- type DeferredControllerCompleteDeferredResponses = {
3533
- /**
3534
- * Transaction completed successfully
3535
- */
3536
- 200: DeferredOperationResponse;
4033
+ type SchemaMetadataControllerFindOneResponses = {
4034
+ 200: SchemaMetadataResponseDto;
3537
4035
  };
3538
- type DeferredControllerCompleteDeferredResponse = DeferredControllerCompleteDeferredResponses[keyof DeferredControllerCompleteDeferredResponses];
3539
- type DeferredControllerFailDeferredData = {
3540
- body?: FailDeferredDto;
4036
+ type SchemaMetadataControllerFindOneResponse = SchemaMetadataControllerFindOneResponses[keyof SchemaMetadataControllerFindOneResponses];
4037
+ type SchemaMetadataControllerRemoveData = {
4038
+ body?: never;
3541
4039
  path: {
3542
- transactionId: string;
4040
+ id: string;
4041
+ version: string;
3543
4042
  };
3544
4043
  query?: never;
3545
- url: "/api/issuer/deferred/{transactionId}/fail";
3546
- };
3547
- type DeferredControllerFailDeferredErrors = {
3548
- /**
3549
- * Transaction not found
3550
- */
3551
- 404: unknown;
4044
+ url: "/api/schema-metadata/{id}/versions/{version}";
3552
4045
  };
3553
- type DeferredControllerFailDeferredResponses = {
4046
+ type SchemaMetadataControllerRemoveResponses = {
3554
4047
  /**
3555
- * Transaction marked as failed
4048
+ * Deleted
3556
4049
  */
3557
- 200: DeferredOperationResponse;
4050
+ 200: unknown;
3558
4051
  };
3559
- type DeferredControllerFailDeferredResponse = DeferredControllerFailDeferredResponses[keyof DeferredControllerFailDeferredResponses];
3560
- type TrustListControllerGetAllTrustListsData = {
3561
- body?: never;
3562
- path?: never;
4052
+ type SchemaMetadataControllerUpdateData = {
4053
+ body: UpdateSchemaMetadataDto;
4054
+ path: {
4055
+ id: string;
4056
+ version: string;
4057
+ };
3563
4058
  query?: never;
3564
- url: "/api/trust-list";
4059
+ url: "/api/schema-metadata/{id}/versions/{version}";
3565
4060
  };
3566
- type TrustListControllerGetAllTrustListsResponses = {
3567
- 200: Array<TrustList>;
4061
+ type SchemaMetadataControllerUpdateResponses = {
4062
+ 200: SchemaMetadataResponseDto;
3568
4063
  };
3569
- type TrustListControllerGetAllTrustListsResponse = TrustListControllerGetAllTrustListsResponses[keyof TrustListControllerGetAllTrustListsResponses];
3570
- type TrustListControllerCreateTrustListData = {
3571
- body: TrustListCreateDto;
3572
- path?: never;
4064
+ type SchemaMetadataControllerUpdateResponse = SchemaMetadataControllerUpdateResponses[keyof SchemaMetadataControllerUpdateResponses];
4065
+ type SchemaMetadataControllerGetLatestData = {
4066
+ body?: never;
4067
+ path: {
4068
+ id: string;
4069
+ };
3573
4070
  query?: never;
3574
- url: "/api/trust-list";
4071
+ url: "/api/schema-metadata/{id}/latest";
3575
4072
  };
3576
- type TrustListControllerCreateTrustListResponses = {
3577
- 201: TrustList;
4073
+ type SchemaMetadataControllerGetLatestResponses = {
4074
+ 200: SchemaMetadataResponseDto;
3578
4075
  };
3579
- type TrustListControllerCreateTrustListResponse = TrustListControllerCreateTrustListResponses[keyof TrustListControllerCreateTrustListResponses];
3580
- type TrustListControllerDeleteTrustListData = {
4076
+ type SchemaMetadataControllerGetLatestResponse = SchemaMetadataControllerGetLatestResponses[keyof SchemaMetadataControllerGetLatestResponses];
4077
+ type SchemaMetadataControllerGetVersionsData = {
3581
4078
  body?: never;
3582
4079
  path: {
3583
4080
  id: string;
3584
4081
  };
3585
4082
  query?: never;
3586
- url: "/api/trust-list/{id}";
4083
+ url: "/api/schema-metadata/{id}/versions";
3587
4084
  };
3588
- type TrustListControllerDeleteTrustListResponses = {
3589
- 200: unknown;
4085
+ type SchemaMetadataControllerGetVersionsResponses = {
4086
+ 200: Array<SchemaMetadataResponseDto>;
3590
4087
  };
3591
- type TrustListControllerGetTrustListData = {
4088
+ type SchemaMetadataControllerGetVersionsResponse = SchemaMetadataControllerGetVersionsResponses[keyof SchemaMetadataControllerGetVersionsResponses];
4089
+ type SchemaMetadataControllerGetJwtData = {
3592
4090
  body?: never;
3593
4091
  path: {
3594
4092
  id: string;
4093
+ version: string;
3595
4094
  };
3596
4095
  query?: never;
3597
- url: "/api/trust-list/{id}";
4096
+ url: "/api/schema-metadata/{id}/versions/{version}/jwt";
3598
4097
  };
3599
- type TrustListControllerGetTrustListResponses = {
3600
- 200: TrustList;
4098
+ type SchemaMetadataControllerGetJwtResponses = {
4099
+ /**
4100
+ * Compact-serialization JWS string
4101
+ */
4102
+ 200: string;
3601
4103
  };
3602
- type TrustListControllerGetTrustListResponse = TrustListControllerGetTrustListResponses[keyof TrustListControllerGetTrustListResponses];
3603
- type TrustListControllerUpdateTrustListData = {
3604
- body: TrustListCreateDto;
4104
+ type SchemaMetadataControllerGetJwtResponse = SchemaMetadataControllerGetJwtResponses[keyof SchemaMetadataControllerGetJwtResponses];
4105
+ type SchemaMetadataControllerExportData = {
4106
+ body?: never;
3605
4107
  path: {
3606
4108
  id: string;
4109
+ version: string;
3607
4110
  };
3608
4111
  query?: never;
3609
- url: "/api/trust-list/{id}";
4112
+ url: "/api/schema-metadata/{id}/versions/{version}/export";
3610
4113
  };
3611
- type TrustListControllerUpdateTrustListResponses = {
3612
- 200: TrustList;
4114
+ type SchemaMetadataControllerExportResponses = {
4115
+ /**
4116
+ * Registrar-defined catalog document
4117
+ */
4118
+ 200: {
4119
+ [key: string]: unknown;
4120
+ };
3613
4121
  };
3614
- type TrustListControllerUpdateTrustListResponse = TrustListControllerUpdateTrustListResponses[keyof TrustListControllerUpdateTrustListResponses];
3615
- type TrustListControllerExportTrustListData = {
4122
+ type SchemaMetadataControllerExportResponse = SchemaMetadataControllerExportResponses[keyof SchemaMetadataControllerExportResponses];
4123
+ type SchemaMetadataControllerGetSchemaData = {
3616
4124
  body?: never;
3617
4125
  path: {
3618
4126
  id: string;
4127
+ version: string;
4128
+ format: string;
3619
4129
  };
3620
4130
  query?: never;
3621
- url: "/api/trust-list/{id}/export";
4131
+ url: "/api/schema-metadata/{id}/versions/{version}/schemas/{format}";
3622
4132
  };
3623
- type TrustListControllerExportTrustListResponses = {
3624
- 200: TrustListCreateDto;
4133
+ type SchemaMetadataControllerGetSchemaResponses = {
4134
+ /**
4135
+ * JSON Schema document for the requested format
4136
+ */
4137
+ 200: {
4138
+ [key: string]: unknown;
4139
+ };
3625
4140
  };
3626
- type TrustListControllerExportTrustListResponse = TrustListControllerExportTrustListResponses[keyof TrustListControllerExportTrustListResponses];
3627
- type TrustListControllerGetTrustListVersionsData = {
3628
- body?: never;
4141
+ type SchemaMetadataControllerGetSchemaResponse = SchemaMetadataControllerGetSchemaResponses[keyof SchemaMetadataControllerGetSchemaResponses];
4142
+ type SchemaMetadataControllerDeprecateVersionData = {
4143
+ body: DeprecateSchemaMetadataDto;
3629
4144
  path: {
3630
4145
  id: string;
4146
+ version: string;
3631
4147
  };
3632
4148
  query?: never;
3633
- url: "/api/trust-list/{id}/versions";
4149
+ url: "/api/schema-metadata/{id}/versions/{version}/deprecation";
3634
4150
  };
3635
- type TrustListControllerGetTrustListVersionsResponses = {
3636
- 200: Array<TrustListVersion>;
4151
+ type SchemaMetadataControllerDeprecateVersionResponses = {
4152
+ 200: SchemaMetadataResponseDto;
3637
4153
  };
3638
- type TrustListControllerGetTrustListVersionsResponse = TrustListControllerGetTrustListVersionsResponses[keyof TrustListControllerGetTrustListVersionsResponses];
3639
- type TrustListControllerGetTrustListVersionData = {
3640
- 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;
3641
4170
  path: {
3642
- id: string;
3643
- versionId: string;
4171
+ transactionId: string;
3644
4172
  };
3645
4173
  query?: never;
3646
- url: "/api/trust-list/{id}/versions/{versionId}";
4174
+ url: "/api/issuer/deferred/{transactionId}/complete";
3647
4175
  };
3648
- type TrustListControllerGetTrustListVersionResponses = {
3649
- 200: TrustListVersion;
4176
+ type DeferredControllerCompleteDeferredErrors = {
4177
+ /**
4178
+ * Transaction not found
4179
+ */
4180
+ 404: unknown;
3650
4181
  };
3651
- 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];
3652
4210
  type KeyChainControllerGetProvidersData = {
3653
4211
  body?: never;
3654
4212
  path?: never;
@@ -3665,7 +4223,12 @@ type KeyChainControllerGetProvidersResponse = KeyChainControllerGetProvidersResp
3665
4223
  type KeyChainControllerGetAllData = {
3666
4224
  body?: never;
3667
4225
  path?: never;
3668
- query?: never;
4226
+ query?: {
4227
+ /**
4228
+ * Optional usage type filter
4229
+ */
4230
+ usageType?: "access" | "attestation" | "trustList" | "statusList" | "encrypt";
4231
+ };
3669
4232
  url: "/api/key-chain";
3670
4233
  };
3671
4234
  type KeyChainControllerGetAllResponses = {
@@ -3827,4 +4390,4 @@ type StorageControllerUploadResponses = {
3827
4390
  };
3828
4391
  type StorageControllerUploadResponse = StorageControllerUploadResponses[keyof StorageControllerUploadResponses];
3829
4392
 
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 };
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 };