@eudiplo/sdk-core 4.2.0 → 4.4.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.
- package/dist/api/client.gen.d.mts +1 -1
- package/dist/api/client.gen.d.ts +1 -1
- package/dist/api/index.d.mts +105 -43
- package/dist/api/index.d.ts +105 -43
- package/dist/api/index.js +165 -40
- package/dist/api/index.mjs +149 -41
- package/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +166 -41
- package/dist/index.mjs +150 -42
- package/dist/{types.gen-5zlqZUfP.d.mts → types.gen-DpwDhqbe.d.mts} +871 -257
- package/dist/{types.gen-5zlqZUfP.d.ts → types.gen-DpwDhqbe.d.ts} +871 -257
- package/package.json +4 -4
|
@@ -186,6 +186,23 @@ type UpdateTenantDto = {
|
|
|
186
186
|
sessionConfig?: SessionStorageConfig;
|
|
187
187
|
roles?: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "users:manage" | "tenants:manage" | "registrar:manage">;
|
|
188
188
|
};
|
|
189
|
+
type AuditLogResponseDto = {
|
|
190
|
+
id: string;
|
|
191
|
+
tenantId: string;
|
|
192
|
+
actionType: "tenant_created" | "tenant_updated" | "tenant_deleted" | "presentation_config_created" | "presentation_config_updated" | "presentation_config_deleted" | "issuance_config_updated" | "credential_config_created" | "credential_config_updated" | "credential_config_deleted" | "status_list_config_updated" | "status_list_config_reset" | "webhook_endpoint_created" | "webhook_endpoint_updated" | "webhook_endpoint_deleted" | "attribute_provider_created" | "attribute_provider_updated" | "attribute_provider_deleted";
|
|
193
|
+
actorType: "user" | "client" | "system";
|
|
194
|
+
actorId?: string;
|
|
195
|
+
actorDisplay?: string;
|
|
196
|
+
changedFields?: Array<string>;
|
|
197
|
+
before?: {
|
|
198
|
+
[key: string]: unknown;
|
|
199
|
+
};
|
|
200
|
+
after?: {
|
|
201
|
+
[key: string]: unknown;
|
|
202
|
+
};
|
|
203
|
+
requestId?: string;
|
|
204
|
+
timestamp: string;
|
|
205
|
+
};
|
|
189
206
|
type ClientSecretResponseDto = {
|
|
190
207
|
secret: string;
|
|
191
208
|
};
|
|
@@ -625,6 +642,18 @@ type Session = {
|
|
|
625
642
|
* Reset implicitly when the session is consumed successfully.
|
|
626
643
|
*/
|
|
627
644
|
txCodeFailedAttempts: number;
|
|
645
|
+
/**
|
|
646
|
+
* Flag indicating whether the session offer has been consumed.
|
|
647
|
+
* Prevents replay attacks by ensuring each offer can only be used once.
|
|
648
|
+
* For OID4VCI: set after successful token exchange.
|
|
649
|
+
* For OID4VP: set after successful response validation.
|
|
650
|
+
*/
|
|
651
|
+
consumed: boolean;
|
|
652
|
+
/**
|
|
653
|
+
* Timestamp when the session offer was consumed.
|
|
654
|
+
* Null if the offer has not yet been consumed.
|
|
655
|
+
*/
|
|
656
|
+
consumedAt?: string;
|
|
628
657
|
};
|
|
629
658
|
type SessionLogEntryResponseDto = {
|
|
630
659
|
/**
|
|
@@ -1042,6 +1071,80 @@ type WebhookEndpointEntity = {
|
|
|
1042
1071
|
description?: string;
|
|
1043
1072
|
url: string;
|
|
1044
1073
|
};
|
|
1074
|
+
type SchemaUriEntry = {
|
|
1075
|
+
/**
|
|
1076
|
+
* Credential config ID to resolve and upload its schema content. When set, uri can be omitted and is resolved server-side.
|
|
1077
|
+
*/
|
|
1078
|
+
credentialConfigId?: string;
|
|
1079
|
+
/**
|
|
1080
|
+
* Attestation format this schema URI applies to (e.g. dc+sd-jwt, mso_mdoc)
|
|
1081
|
+
*/
|
|
1082
|
+
format?: string;
|
|
1083
|
+
/**
|
|
1084
|
+
* URI pointing to the schema document for this format
|
|
1085
|
+
*/
|
|
1086
|
+
uri?: string;
|
|
1087
|
+
/**
|
|
1088
|
+
* Schema-format specific metadata (for example { vct: 'urn:example:vct' } for dc+sd-jwt).
|
|
1089
|
+
*/
|
|
1090
|
+
metadata: {
|
|
1091
|
+
[key: string]: unknown;
|
|
1092
|
+
};
|
|
1093
|
+
};
|
|
1094
|
+
type TrustAuthorityEntry = {
|
|
1095
|
+
/**
|
|
1096
|
+
* Trust list ID to resolve from the database. When set, frameworkType, value, and verificationMethod are derived automatically.
|
|
1097
|
+
*/
|
|
1098
|
+
trustListId?: string;
|
|
1099
|
+
/**
|
|
1100
|
+
* Trust framework type (ignored when trustListId is set)
|
|
1101
|
+
*/
|
|
1102
|
+
frameworkType?: "aki" | "etsi_tl" | "openid_federation";
|
|
1103
|
+
/**
|
|
1104
|
+
* URI of the trust list or trust anchor (ignored when trustListId is set)
|
|
1105
|
+
*/
|
|
1106
|
+
value?: string;
|
|
1107
|
+
/**
|
|
1108
|
+
* Whether this trust authority is a List of Trusted Entities (LoTE)
|
|
1109
|
+
*/
|
|
1110
|
+
isLoTE?: boolean;
|
|
1111
|
+
/**
|
|
1112
|
+
* Optional verification material for external trusted authorities (for example a JWK). For internal trust-list URLs, EUDIPLO resolves verification material from the database.
|
|
1113
|
+
*/
|
|
1114
|
+
verificationMethod?: {
|
|
1115
|
+
[key: string]: unknown;
|
|
1116
|
+
};
|
|
1117
|
+
};
|
|
1118
|
+
type SchemaMetaConfig = {
|
|
1119
|
+
/**
|
|
1120
|
+
* Optional override for the schema ID (attestation identifier URI). When not set, derived from vct (dc+sd-jwt) or docType (mso_mdoc).
|
|
1121
|
+
*/
|
|
1122
|
+
id?: string;
|
|
1123
|
+
/**
|
|
1124
|
+
* Schema version in SemVer format
|
|
1125
|
+
*/
|
|
1126
|
+
version?: string;
|
|
1127
|
+
/**
|
|
1128
|
+
* URI of the Attestation Rulebook
|
|
1129
|
+
*/
|
|
1130
|
+
rulebookURI?: string;
|
|
1131
|
+
/**
|
|
1132
|
+
* Attestation Level of Security
|
|
1133
|
+
*/
|
|
1134
|
+
attestationLoS?: "iso_18045_high" | "iso_18045_moderate" | "iso_18045_enhanced-basic" | "iso_18045_basic";
|
|
1135
|
+
/**
|
|
1136
|
+
* Cryptographic binding type
|
|
1137
|
+
*/
|
|
1138
|
+
bindingType?: "claim" | "key" | "biometric" | "none";
|
|
1139
|
+
/**
|
|
1140
|
+
* Schema URIs per attestation format. When omitted, the format is derived from the credential config format field.
|
|
1141
|
+
*/
|
|
1142
|
+
schemaURIs?: Array<SchemaUriEntry>;
|
|
1143
|
+
/**
|
|
1144
|
+
* Trust authorities for this attestation schema
|
|
1145
|
+
*/
|
|
1146
|
+
trustedAuthorities?: Array<TrustAuthorityEntry>;
|
|
1147
|
+
};
|
|
1045
1148
|
type EmbeddedDisclosurePolicy = {
|
|
1046
1149
|
policy: string;
|
|
1047
1150
|
};
|
|
@@ -1250,6 +1353,15 @@ type CredentialConfig = {
|
|
|
1250
1353
|
* List of IAE actions to execute before credential issuance
|
|
1251
1354
|
*/
|
|
1252
1355
|
iaeActions?: Array<IaeActionOpenid4VpPresentation | IaeActionRedirectToWeb>;
|
|
1356
|
+
/**
|
|
1357
|
+
* TS11 schema metadata configuration for EUDI Catalogue of Attestations.
|
|
1358
|
+
*
|
|
1359
|
+
* When present, EUDIPLO can generate a SchemaMeta object per the TS11 spec
|
|
1360
|
+
* using the GET /issuer/credentials/:id/schema-metadata endpoint.
|
|
1361
|
+
*
|
|
1362
|
+
* The underlying TS11 specification is not yet finalized.
|
|
1363
|
+
*/
|
|
1364
|
+
schemaMeta?: SchemaMetaConfig;
|
|
1253
1365
|
/**
|
|
1254
1366
|
* Embedded disclosure policy (discriminated union by `policy`).
|
|
1255
1367
|
* The discriminator makes class-transformer instantiate the right subclass,
|
|
@@ -1301,6 +1413,15 @@ type CredentialConfigCreate = {
|
|
|
1301
1413
|
* List of IAE actions to execute before credential issuance
|
|
1302
1414
|
*/
|
|
1303
1415
|
iaeActions?: Array<IaeActionOpenid4VpPresentation | IaeActionRedirectToWeb>;
|
|
1416
|
+
/**
|
|
1417
|
+
* TS11 schema metadata configuration for EUDI Catalogue of Attestations.
|
|
1418
|
+
*
|
|
1419
|
+
* When present, EUDIPLO can generate a SchemaMeta object per the TS11 spec
|
|
1420
|
+
* using the GET /issuer/credentials/:id/schema-metadata endpoint.
|
|
1421
|
+
*
|
|
1422
|
+
* The underlying TS11 specification is not yet finalized.
|
|
1423
|
+
*/
|
|
1424
|
+
schemaMeta?: SchemaMetaConfig;
|
|
1304
1425
|
/**
|
|
1305
1426
|
* Embedded disclosure policy (discriminated union by `policy`).
|
|
1306
1427
|
* The discriminator makes class-transformer instantiate the right subclass,
|
|
@@ -1345,6 +1466,15 @@ type CredentialConfigUpdate = {
|
|
|
1345
1466
|
* List of IAE actions to execute before credential issuance
|
|
1346
1467
|
*/
|
|
1347
1468
|
iaeActions?: Array<IaeActionOpenid4VpPresentation | IaeActionRedirectToWeb>;
|
|
1469
|
+
/**
|
|
1470
|
+
* TS11 schema metadata configuration for EUDI Catalogue of Attestations.
|
|
1471
|
+
*
|
|
1472
|
+
* When present, EUDIPLO can generate a SchemaMeta object per the TS11 spec
|
|
1473
|
+
* using the GET /issuer/credentials/:id/schema-metadata endpoint.
|
|
1474
|
+
*
|
|
1475
|
+
* The underlying TS11 specification is not yet finalized.
|
|
1476
|
+
*/
|
|
1477
|
+
schemaMeta?: SchemaMetaConfig;
|
|
1348
1478
|
/**
|
|
1349
1479
|
* Embedded disclosure policy (discriminated union by `policy`).
|
|
1350
1480
|
* The discriminator makes class-transformer instantiate the right subclass,
|
|
@@ -1380,6 +1510,30 @@ type CredentialConfigUpdate = {
|
|
|
1380
1510
|
lifeTime?: number;
|
|
1381
1511
|
schema?: SchemaResponse;
|
|
1382
1512
|
};
|
|
1513
|
+
type SignSchemaMetaConfigDto = {
|
|
1514
|
+
/**
|
|
1515
|
+
* The schema metadata configuration to sign and submit
|
|
1516
|
+
*/
|
|
1517
|
+
config: SchemaMetaConfig;
|
|
1518
|
+
/**
|
|
1519
|
+
* ID of the key chain to use for signing. Defaults to the tenant's default key chain.
|
|
1520
|
+
*/
|
|
1521
|
+
keyChainId?: string;
|
|
1522
|
+
/**
|
|
1523
|
+
* 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.
|
|
1524
|
+
*/
|
|
1525
|
+
credentialConfigId?: string;
|
|
1526
|
+
};
|
|
1527
|
+
type SignVersionSchemaMetaConfigDto = {
|
|
1528
|
+
/**
|
|
1529
|
+
* The schema metadata configuration to sign and submit as a new version. Must include the existing id.
|
|
1530
|
+
*/
|
|
1531
|
+
config: SchemaMetaConfig;
|
|
1532
|
+
/**
|
|
1533
|
+
* ID of the key chain to use for signing. Defaults to the tenant's default key chain.
|
|
1534
|
+
*/
|
|
1535
|
+
keyChainId?: string;
|
|
1536
|
+
};
|
|
1383
1537
|
type CreateAttributeProviderDto = {
|
|
1384
1538
|
auth: WebHookAuthConfigNone | WebHookAuthConfigHeader;
|
|
1385
1539
|
id: string;
|
|
@@ -1414,6 +1568,111 @@ type UpdateWebhookEndpointDto = {
|
|
|
1414
1568
|
description?: string;
|
|
1415
1569
|
url?: string;
|
|
1416
1570
|
};
|
|
1571
|
+
type TrustListEntityInfo = {
|
|
1572
|
+
name: string;
|
|
1573
|
+
lang?: string;
|
|
1574
|
+
uri?: string;
|
|
1575
|
+
country?: string;
|
|
1576
|
+
locality?: string;
|
|
1577
|
+
postalCode?: string;
|
|
1578
|
+
streetAddress?: string;
|
|
1579
|
+
contactUri?: string;
|
|
1580
|
+
};
|
|
1581
|
+
type InternalTrustListEntity = {
|
|
1582
|
+
type: "internal";
|
|
1583
|
+
issuerKeyChainId: string;
|
|
1584
|
+
revocationKeyChainId: string;
|
|
1585
|
+
info: TrustListEntityInfo;
|
|
1586
|
+
};
|
|
1587
|
+
type ExternalTrustListEntity = {
|
|
1588
|
+
type: "external";
|
|
1589
|
+
issuerCertPem: string;
|
|
1590
|
+
revocationCertPem: string;
|
|
1591
|
+
info: TrustListEntityInfo;
|
|
1592
|
+
};
|
|
1593
|
+
type TrustListCreateDto = {
|
|
1594
|
+
description?: string;
|
|
1595
|
+
/**
|
|
1596
|
+
* The full trust list JSON (generated LoTE structure)
|
|
1597
|
+
*/
|
|
1598
|
+
data?: {
|
|
1599
|
+
[key: string]: unknown;
|
|
1600
|
+
};
|
|
1601
|
+
entities: Array<({
|
|
1602
|
+
type: "internal";
|
|
1603
|
+
} & InternalTrustListEntity) | ({
|
|
1604
|
+
type: "external";
|
|
1605
|
+
} & ExternalTrustListEntity)>;
|
|
1606
|
+
id?: string;
|
|
1607
|
+
keyChainId?: string;
|
|
1608
|
+
};
|
|
1609
|
+
type TrustList = {
|
|
1610
|
+
/**
|
|
1611
|
+
* Unique identifier for the trust list
|
|
1612
|
+
*/
|
|
1613
|
+
id: string;
|
|
1614
|
+
description?: string;
|
|
1615
|
+
/**
|
|
1616
|
+
* The tenant ID for which the VP request is made.
|
|
1617
|
+
*/
|
|
1618
|
+
tenantId: string;
|
|
1619
|
+
/**
|
|
1620
|
+
* The tenant that owns this object.
|
|
1621
|
+
*/
|
|
1622
|
+
tenant: TenantEntity;
|
|
1623
|
+
keyChainId: string;
|
|
1624
|
+
keyChain: KeyChainEntity;
|
|
1625
|
+
/**
|
|
1626
|
+
* The full trust list JSON (generated LoTE structure)
|
|
1627
|
+
*/
|
|
1628
|
+
data?: {
|
|
1629
|
+
[key: string]: unknown;
|
|
1630
|
+
};
|
|
1631
|
+
/**
|
|
1632
|
+
* The original entity configuration used to create this trust list.
|
|
1633
|
+
* Stored for round-tripping when editing.
|
|
1634
|
+
*/
|
|
1635
|
+
entityConfig?: Array<{
|
|
1636
|
+
[key: string]: unknown;
|
|
1637
|
+
}>;
|
|
1638
|
+
/**
|
|
1639
|
+
* The sequence number for versioning (incremented on updates)
|
|
1640
|
+
*/
|
|
1641
|
+
sequenceNumber: number;
|
|
1642
|
+
/**
|
|
1643
|
+
* The signed JWT representation of this trust list
|
|
1644
|
+
*/
|
|
1645
|
+
jwt: string;
|
|
1646
|
+
createdAt: string;
|
|
1647
|
+
updatedAt: string;
|
|
1648
|
+
};
|
|
1649
|
+
type TrustListVersion = {
|
|
1650
|
+
id: string;
|
|
1651
|
+
trustListId: string;
|
|
1652
|
+
trustList: TrustList;
|
|
1653
|
+
tenantId: string;
|
|
1654
|
+
/**
|
|
1655
|
+
* The sequence number at the time this version was created
|
|
1656
|
+
*/
|
|
1657
|
+
sequenceNumber: number;
|
|
1658
|
+
/**
|
|
1659
|
+
* The full trust list JSON at this version
|
|
1660
|
+
*/
|
|
1661
|
+
data: {
|
|
1662
|
+
[key: string]: unknown;
|
|
1663
|
+
};
|
|
1664
|
+
/**
|
|
1665
|
+
* The entity configuration at this version
|
|
1666
|
+
*/
|
|
1667
|
+
entityConfig?: {
|
|
1668
|
+
[key: string]: unknown;
|
|
1669
|
+
};
|
|
1670
|
+
/**
|
|
1671
|
+
* The signed JWT at this version
|
|
1672
|
+
*/
|
|
1673
|
+
jwt: string;
|
|
1674
|
+
createdAt: string;
|
|
1675
|
+
};
|
|
1417
1676
|
type Dcql = {
|
|
1418
1677
|
credentials: Array<CredentialQuery>;
|
|
1419
1678
|
credential_sets?: Array<CredentialSetQuery>;
|
|
@@ -1489,7 +1748,7 @@ type PresentationConfig = {
|
|
|
1489
1748
|
/**
|
|
1490
1749
|
* The registration certificate request containing the necessary details.
|
|
1491
1750
|
*/
|
|
1492
|
-
|
|
1751
|
+
registration_cert?: RegistrationCertificateRequest;
|
|
1493
1752
|
/**
|
|
1494
1753
|
* Optional webhook URL to receive the response.
|
|
1495
1754
|
*/
|
|
@@ -1528,6 +1787,12 @@ type ResolveIssuerMetadataDto = {
|
|
|
1528
1787
|
*/
|
|
1529
1788
|
issuerUrl: string;
|
|
1530
1789
|
};
|
|
1790
|
+
type ResolveSchemaMetadataDto = {
|
|
1791
|
+
/**
|
|
1792
|
+
* Schema metadata URL to resolve server-side. The response must contain a signedJwt field.
|
|
1793
|
+
*/
|
|
1794
|
+
schemaMetadataUrl: string;
|
|
1795
|
+
};
|
|
1531
1796
|
type PresentationConfigCreateDto = {
|
|
1532
1797
|
/**
|
|
1533
1798
|
* Unique identifier for the VP request.
|
|
@@ -1549,7 +1814,7 @@ type PresentationConfigCreateDto = {
|
|
|
1549
1814
|
/**
|
|
1550
1815
|
* The registration certificate request containing the necessary details.
|
|
1551
1816
|
*/
|
|
1552
|
-
|
|
1817
|
+
registration_cert?: RegistrationCertificateRequest;
|
|
1553
1818
|
/**
|
|
1554
1819
|
* Optional webhook URL to receive the response.
|
|
1555
1820
|
*/
|
|
@@ -1595,7 +1860,7 @@ type PresentationConfigUpdateDto = {
|
|
|
1595
1860
|
/**
|
|
1596
1861
|
* The registration certificate request containing the necessary details.
|
|
1597
1862
|
*/
|
|
1598
|
-
|
|
1863
|
+
registration_cert?: RegistrationCertificateRequest;
|
|
1599
1864
|
/**
|
|
1600
1865
|
* Optional webhook URL to receive the response.
|
|
1601
1866
|
*/
|
|
@@ -1726,98 +1991,291 @@ type CreateAccessCertificateDto = {
|
|
|
1726
1991
|
*/
|
|
1727
1992
|
keyId: string;
|
|
1728
1993
|
};
|
|
1729
|
-
type
|
|
1994
|
+
type VocabularyEntryDto = {
|
|
1730
1995
|
/**
|
|
1731
|
-
*
|
|
1996
|
+
* Stable machine-readable value to submit in schema metadata category/tags fields.
|
|
1732
1997
|
*/
|
|
1733
|
-
|
|
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 = {
|
|
1998
|
+
code: string;
|
|
1745
1999
|
/**
|
|
1746
|
-
*
|
|
2000
|
+
* Display label for UI rendering.
|
|
1747
2001
|
*/
|
|
1748
|
-
|
|
2002
|
+
label: string;
|
|
1749
2003
|
/**
|
|
1750
|
-
*
|
|
2004
|
+
* Vocabulary lifecycle status.
|
|
1751
2005
|
*/
|
|
1752
|
-
|
|
1753
|
-
};
|
|
1754
|
-
type InteractiveAuthorizationRequestDto = {
|
|
2006
|
+
status: "active" | "deprecated";
|
|
1755
2007
|
/**
|
|
1756
|
-
*
|
|
2008
|
+
* Replacement code when status is deprecated.
|
|
1757
2009
|
*/
|
|
1758
|
-
|
|
2010
|
+
replacedBy?: string;
|
|
2011
|
+
};
|
|
2012
|
+
type SchemaMetadataVocabulariesDto = {
|
|
1759
2013
|
/**
|
|
1760
|
-
*
|
|
2014
|
+
* Vocabulary publication version for cache invalidation.
|
|
1761
2015
|
*/
|
|
1762
|
-
|
|
2016
|
+
version: string;
|
|
1763
2017
|
/**
|
|
1764
|
-
*
|
|
2018
|
+
* Allowed category values that can be used when updating schema metadata category.
|
|
1765
2019
|
*/
|
|
1766
|
-
|
|
2020
|
+
categories: Array<VocabularyEntryDto>;
|
|
1767
2021
|
/**
|
|
1768
|
-
*
|
|
2022
|
+
* Allowed tag values that can be used when updating schema metadata tags.
|
|
1769
2023
|
*/
|
|
1770
|
-
|
|
2024
|
+
tags: Array<VocabularyEntryDto>;
|
|
2025
|
+
};
|
|
2026
|
+
type MetadataSchemaDto = {
|
|
1771
2027
|
/**
|
|
1772
|
-
*
|
|
2028
|
+
* Unique identifier for this schema entry
|
|
1773
2029
|
*/
|
|
1774
|
-
|
|
2030
|
+
id: string;
|
|
1775
2031
|
/**
|
|
1776
|
-
*
|
|
2032
|
+
* The credential format identifier
|
|
1777
2033
|
*/
|
|
1778
|
-
|
|
2034
|
+
formatIdentifier: "dc+sd-jwt" | "mso_mdoc";
|
|
1779
2035
|
/**
|
|
1780
|
-
*
|
|
2036
|
+
* URI to the schema definition
|
|
1781
2037
|
*/
|
|
1782
|
-
|
|
2038
|
+
uri?: string;
|
|
1783
2039
|
/**
|
|
1784
|
-
*
|
|
2040
|
+
* Inline schema content (JSON Schema)
|
|
1785
2041
|
*/
|
|
1786
|
-
|
|
2042
|
+
schemaContent?: {
|
|
1787
2043
|
[key: string]: unknown;
|
|
1788
2044
|
};
|
|
1789
2045
|
/**
|
|
1790
|
-
*
|
|
2046
|
+
* Subresource Integrity hash for the schema
|
|
1791
2047
|
*/
|
|
1792
|
-
|
|
2048
|
+
integrity?: string;
|
|
2049
|
+
};
|
|
2050
|
+
type TrustAuthorityDto = {
|
|
1793
2051
|
/**
|
|
1794
|
-
*
|
|
2052
|
+
* Unique identifier for this trust authority entry
|
|
1795
2053
|
*/
|
|
1796
|
-
|
|
2054
|
+
id: string;
|
|
1797
2055
|
/**
|
|
1798
|
-
*
|
|
2056
|
+
* Type of trust framework
|
|
1799
2057
|
*/
|
|
1800
|
-
|
|
2058
|
+
frameworkType: "etsi_tl";
|
|
1801
2059
|
/**
|
|
1802
|
-
*
|
|
2060
|
+
* URI or identifier for the trust list / authority
|
|
1803
2061
|
*/
|
|
1804
|
-
|
|
2062
|
+
value: string;
|
|
1805
2063
|
/**
|
|
1806
|
-
*
|
|
2064
|
+
* Verification method for the trust list signature (e.g., JWK)
|
|
1807
2065
|
*/
|
|
1808
|
-
|
|
2066
|
+
verificationMethod?: {
|
|
2067
|
+
[key: string]: unknown;
|
|
2068
|
+
};
|
|
2069
|
+
};
|
|
2070
|
+
type AccessCertificateRefDto = {
|
|
2071
|
+
id: string;
|
|
2072
|
+
relyingPartyId: string;
|
|
2073
|
+
certificate: string;
|
|
2074
|
+
revoked: string;
|
|
2075
|
+
createdAt: string;
|
|
2076
|
+
};
|
|
2077
|
+
type SchemaMetadataResponseDto = {
|
|
1809
2078
|
/**
|
|
1810
|
-
*
|
|
2079
|
+
* The unique, server-assigned identifier (UUID) for the schema metadata
|
|
1811
2080
|
*/
|
|
1812
|
-
|
|
2081
|
+
id: string;
|
|
1813
2082
|
/**
|
|
1814
|
-
*
|
|
2083
|
+
* Version of this schema metadata (SemVer)
|
|
1815
2084
|
*/
|
|
1816
|
-
|
|
1817
|
-
};
|
|
1818
|
-
type InteractiveAuthorizationCodeResponseDto = {
|
|
2085
|
+
version: string;
|
|
1819
2086
|
/**
|
|
1820
|
-
*
|
|
2087
|
+
* URI of the human-readable Rulebook document
|
|
2088
|
+
*/
|
|
2089
|
+
rulebookURI?: string;
|
|
2090
|
+
/**
|
|
2091
|
+
* Subresource Integrity hash for the rulebook URI
|
|
2092
|
+
*/
|
|
2093
|
+
rulebookIntegrity?: string;
|
|
2094
|
+
/**
|
|
2095
|
+
* Level of security (LoS) of this attestation
|
|
2096
|
+
*/
|
|
2097
|
+
attestationLoS: "iso_18045_high" | "iso_18045_moderate" | "iso_18045_enhanced-basic" | "iso_18045_basic";
|
|
2098
|
+
/**
|
|
2099
|
+
* Required binding type between attestation and holder
|
|
2100
|
+
*/
|
|
2101
|
+
bindingType: "claim" | "key" | "biometric" | "none";
|
|
2102
|
+
/**
|
|
2103
|
+
* Credential formats in which this attestation is available
|
|
2104
|
+
*/
|
|
2105
|
+
supportedFormats: Array<"dc+sd-jwt" | "mso_mdoc">;
|
|
2106
|
+
/**
|
|
2107
|
+
* Format-specific schema URIs for this schema metadata
|
|
2108
|
+
*/
|
|
2109
|
+
schemaURIs: Array<MetadataSchemaDto>;
|
|
2110
|
+
/**
|
|
2111
|
+
* Trust frameworks / trust anchors applicable to this schema metadata
|
|
2112
|
+
*/
|
|
2113
|
+
trustedAuthorities: Array<TrustAuthorityDto>;
|
|
2114
|
+
/**
|
|
2115
|
+
* Domain category for filtering
|
|
2116
|
+
*/
|
|
2117
|
+
category?: "identity" | "health" | "finance" | "education" | "mobility" | "employment" | "other";
|
|
2118
|
+
/**
|
|
2119
|
+
* Free-form tags for filtering and search
|
|
2120
|
+
*/
|
|
2121
|
+
tags?: Array<string>;
|
|
2122
|
+
/**
|
|
2123
|
+
* The original signed JWT
|
|
2124
|
+
*/
|
|
2125
|
+
signedJwt: string;
|
|
2126
|
+
/**
|
|
2127
|
+
* Issuer from the JWT (`iss` claim)
|
|
2128
|
+
*/
|
|
2129
|
+
issuer: string;
|
|
2130
|
+
/**
|
|
2131
|
+
* Serial number of the access certificate that signed this schema metadata
|
|
2132
|
+
*/
|
|
2133
|
+
signerCertificateSerial: string;
|
|
2134
|
+
/**
|
|
2135
|
+
* The access certificate used to sign this schema metadata
|
|
2136
|
+
*/
|
|
2137
|
+
signerCertificate?: AccessCertificateRefDto;
|
|
2138
|
+
/**
|
|
2139
|
+
* Timestamp when the JWT was issued (from the `iat` claim)
|
|
2140
|
+
*/
|
|
2141
|
+
issuedAt: string;
|
|
2142
|
+
/**
|
|
2143
|
+
* Server creation timestamp
|
|
2144
|
+
*/
|
|
2145
|
+
createdAt: string;
|
|
2146
|
+
/**
|
|
2147
|
+
* Last update timestamp
|
|
2148
|
+
*/
|
|
2149
|
+
updatedAt: string;
|
|
2150
|
+
/**
|
|
2151
|
+
* Whether this version is deprecated
|
|
2152
|
+
*/
|
|
2153
|
+
deprecated?: boolean;
|
|
2154
|
+
/**
|
|
2155
|
+
* Deprecation message shown to consumers
|
|
2156
|
+
*/
|
|
2157
|
+
deprecationMessage?: string;
|
|
2158
|
+
/**
|
|
2159
|
+
* The version that supersedes this one
|
|
2160
|
+
*/
|
|
2161
|
+
supersededByVersion?: string;
|
|
2162
|
+
};
|
|
2163
|
+
type UpdateSchemaMetadataDto = {
|
|
2164
|
+
/**
|
|
2165
|
+
* Domain category for filtering
|
|
2166
|
+
*/
|
|
2167
|
+
category?: "identity" | "health" | "finance" | "education" | "mobility" | "employment" | "other";
|
|
2168
|
+
/**
|
|
2169
|
+
* Predefined tags for filtering and search
|
|
2170
|
+
*/
|
|
2171
|
+
tags?: Array<"pid" | "eudi" | "kyc" | "aml" | "age-verification" | "residency" | "membership" | "education" | "employment" | "mobility">;
|
|
2172
|
+
};
|
|
2173
|
+
type DeprecateSchemaMetadataDto = {
|
|
2174
|
+
/**
|
|
2175
|
+
* Whether to mark this version as deprecated
|
|
2176
|
+
*/
|
|
2177
|
+
deprecated: boolean;
|
|
2178
|
+
/**
|
|
2179
|
+
* Deprecation message shown to consumers
|
|
2180
|
+
*/
|
|
2181
|
+
message?: string;
|
|
2182
|
+
/**
|
|
2183
|
+
* The version that supersedes this one
|
|
2184
|
+
*/
|
|
2185
|
+
supersededByVersion?: string;
|
|
2186
|
+
};
|
|
2187
|
+
type DeferredCredentialRequestDto = {
|
|
2188
|
+
/**
|
|
2189
|
+
* The transaction identifier previously returned by the Credential Endpoint
|
|
2190
|
+
*/
|
|
2191
|
+
transaction_id: string;
|
|
2192
|
+
};
|
|
2193
|
+
type NotificationRequestDto = {
|
|
2194
|
+
notification_id: string;
|
|
2195
|
+
event: {
|
|
2196
|
+
[key: string]: unknown;
|
|
2197
|
+
};
|
|
2198
|
+
};
|
|
2199
|
+
type Object$1 = {
|
|
2200
|
+
[key: string]: unknown;
|
|
2201
|
+
};
|
|
2202
|
+
type ParResponseDto = {
|
|
2203
|
+
/**
|
|
2204
|
+
* The request URI for the Pushed Authorization Request.
|
|
2205
|
+
*/
|
|
2206
|
+
request_uri: string;
|
|
2207
|
+
/**
|
|
2208
|
+
* The expiration time for the request URI in seconds.
|
|
2209
|
+
*/
|
|
2210
|
+
expires_in: number;
|
|
2211
|
+
};
|
|
2212
|
+
type InteractiveAuthorizationRequestDto = {
|
|
2213
|
+
/**
|
|
2214
|
+
* Response type (for initial request)
|
|
2215
|
+
*/
|
|
2216
|
+
response_type?: string;
|
|
2217
|
+
/**
|
|
2218
|
+
* Client identifier (for initial request)
|
|
2219
|
+
*/
|
|
2220
|
+
client_id?: string;
|
|
2221
|
+
/**
|
|
2222
|
+
* Comma-separated list of supported interaction types (for initial request)
|
|
2223
|
+
*/
|
|
2224
|
+
interaction_types_supported?: string;
|
|
2225
|
+
/**
|
|
2226
|
+
* Redirect URI (for initial request)
|
|
2227
|
+
*/
|
|
2228
|
+
redirect_uri?: string;
|
|
2229
|
+
/**
|
|
2230
|
+
* OAuth scope
|
|
2231
|
+
*/
|
|
2232
|
+
scope?: string;
|
|
2233
|
+
/**
|
|
2234
|
+
* PKCE code challenge
|
|
2235
|
+
*/
|
|
2236
|
+
code_challenge?: string;
|
|
2237
|
+
/**
|
|
2238
|
+
* PKCE code challenge method
|
|
2239
|
+
*/
|
|
2240
|
+
code_challenge_method?: string;
|
|
2241
|
+
/**
|
|
2242
|
+
* Authorization details
|
|
2243
|
+
*/
|
|
2244
|
+
authorization_details?: {
|
|
2245
|
+
[key: string]: unknown;
|
|
2246
|
+
};
|
|
2247
|
+
/**
|
|
2248
|
+
* State parameter
|
|
2249
|
+
*/
|
|
2250
|
+
state?: string;
|
|
2251
|
+
/**
|
|
2252
|
+
* Issuer state from credential offer
|
|
2253
|
+
*/
|
|
2254
|
+
issuer_state?: string;
|
|
2255
|
+
/**
|
|
2256
|
+
* Auth session identifier (for follow-up request)
|
|
2257
|
+
*/
|
|
2258
|
+
auth_session?: string;
|
|
2259
|
+
/**
|
|
2260
|
+
* OpenID4VP response (for follow-up request)
|
|
2261
|
+
*/
|
|
2262
|
+
openid4vp_response?: string;
|
|
2263
|
+
/**
|
|
2264
|
+
* PKCE code verifier (for follow-up request)
|
|
2265
|
+
*/
|
|
2266
|
+
code_verifier?: string;
|
|
2267
|
+
/**
|
|
2268
|
+
* JAR request JWT (by value)
|
|
2269
|
+
*/
|
|
2270
|
+
request?: string;
|
|
2271
|
+
/**
|
|
2272
|
+
* JAR request URI (by reference)
|
|
2273
|
+
*/
|
|
2274
|
+
request_uri?: string;
|
|
2275
|
+
};
|
|
2276
|
+
type InteractiveAuthorizationCodeResponseDto = {
|
|
2277
|
+
/**
|
|
2278
|
+
* Response status
|
|
1821
2279
|
*/
|
|
1822
2280
|
status: string;
|
|
1823
2281
|
/**
|
|
@@ -2001,111 +2459,6 @@ type AuthorizationResponse = {
|
|
|
2001
2459
|
*/
|
|
2002
2460
|
state?: string;
|
|
2003
2461
|
};
|
|
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
2462
|
type KmsProviderCapabilitiesDto = {
|
|
2110
2463
|
/**
|
|
2111
2464
|
* Whether the provider supports importing existing keys.
|
|
@@ -2512,7 +2865,7 @@ type PresentationConfigWritable = {
|
|
|
2512
2865
|
/**
|
|
2513
2866
|
* The registration certificate request containing the necessary details.
|
|
2514
2867
|
*/
|
|
2515
|
-
|
|
2868
|
+
registration_cert?: RegistrationCertificateRequest;
|
|
2516
2869
|
/**
|
|
2517
2870
|
* Optional webhook URL to receive the response.
|
|
2518
2871
|
*/
|
|
@@ -2573,14 +2926,33 @@ type AppControllerGetFrontendConfigResponses = {
|
|
|
2573
2926
|
200: FrontendConfigResponseDto;
|
|
2574
2927
|
};
|
|
2575
2928
|
type AppControllerGetFrontendConfigResponse = AppControllerGetFrontendConfigResponses[keyof AppControllerGetFrontendConfigResponses];
|
|
2576
|
-
type
|
|
2577
|
-
body
|
|
2929
|
+
type AuthControllerGetOAuth2TokenData = {
|
|
2930
|
+
body: ClientCredentialsDto;
|
|
2578
2931
|
path?: never;
|
|
2579
2932
|
query?: never;
|
|
2580
|
-
url: "/api/
|
|
2933
|
+
url: "/api/oauth2/token";
|
|
2581
2934
|
};
|
|
2582
|
-
type
|
|
2583
|
-
|
|
2935
|
+
type AuthControllerGetOAuth2TokenErrors = {
|
|
2936
|
+
/**
|
|
2937
|
+
* Invalid client credentials
|
|
2938
|
+
*/
|
|
2939
|
+
401: unknown;
|
|
2940
|
+
};
|
|
2941
|
+
type AuthControllerGetOAuth2TokenResponses = {
|
|
2942
|
+
/**
|
|
2943
|
+
* OAuth2 token response
|
|
2944
|
+
*/
|
|
2945
|
+
200: TokenResponse;
|
|
2946
|
+
};
|
|
2947
|
+
type AuthControllerGetOAuth2TokenResponse = AuthControllerGetOAuth2TokenResponses[keyof AuthControllerGetOAuth2TokenResponses];
|
|
2948
|
+
type TenantControllerGetTenantsData = {
|
|
2949
|
+
body?: never;
|
|
2950
|
+
path?: never;
|
|
2951
|
+
query?: never;
|
|
2952
|
+
url: "/api/tenant";
|
|
2953
|
+
};
|
|
2954
|
+
type TenantControllerGetTenantsResponses = {
|
|
2955
|
+
200: Array<TenantEntity>;
|
|
2584
2956
|
};
|
|
2585
2957
|
type TenantControllerGetTenantsResponse = TenantControllerGetTenantsResponses[keyof TenantControllerGetTenantsResponses];
|
|
2586
2958
|
type TenantControllerInitTenantData = {
|
|
@@ -2630,6 +3002,21 @@ type TenantControllerUpdateTenantResponses = {
|
|
|
2630
3002
|
200: TenantEntity;
|
|
2631
3003
|
};
|
|
2632
3004
|
type TenantControllerUpdateTenantResponse = TenantControllerUpdateTenantResponses[keyof TenantControllerUpdateTenantResponses];
|
|
3005
|
+
type AuditLogControllerGetAuditLogsData = {
|
|
3006
|
+
body?: never;
|
|
3007
|
+
path?: never;
|
|
3008
|
+
query?: {
|
|
3009
|
+
/**
|
|
3010
|
+
* Maximum number of entries to return (1–500)
|
|
3011
|
+
*/
|
|
3012
|
+
limit?: number;
|
|
3013
|
+
};
|
|
3014
|
+
url: "/api/admin/audit-logs";
|
|
3015
|
+
};
|
|
3016
|
+
type AuditLogControllerGetAuditLogsResponses = {
|
|
3017
|
+
200: Array<AuditLogResponseDto>;
|
|
3018
|
+
};
|
|
3019
|
+
type AuditLogControllerGetAuditLogsResponse = AuditLogControllerGetAuditLogsResponses[keyof AuditLogControllerGetAuditLogsResponses];
|
|
2633
3020
|
type ClientControllerGetClientsData = {
|
|
2634
3021
|
body?: never;
|
|
2635
3022
|
path?: never;
|
|
@@ -3055,8 +3442,11 @@ type CredentialConfigControllerDeleteIssuanceConfigurationData = {
|
|
|
3055
3442
|
url: "/api/issuer/credentials/{id}";
|
|
3056
3443
|
};
|
|
3057
3444
|
type CredentialConfigControllerDeleteIssuanceConfigurationResponses = {
|
|
3058
|
-
200:
|
|
3445
|
+
200: {
|
|
3446
|
+
[key: string]: unknown;
|
|
3447
|
+
};
|
|
3059
3448
|
};
|
|
3449
|
+
type CredentialConfigControllerDeleteIssuanceConfigurationResponse = CredentialConfigControllerDeleteIssuanceConfigurationResponses[keyof CredentialConfigControllerDeleteIssuanceConfigurationResponses];
|
|
3060
3450
|
type CredentialConfigControllerGetConfigByIdData = {
|
|
3061
3451
|
body?: never;
|
|
3062
3452
|
path: {
|
|
@@ -3083,6 +3473,42 @@ type CredentialConfigControllerUpdateCredentialConfigurationResponses = {
|
|
|
3083
3473
|
};
|
|
3084
3474
|
};
|
|
3085
3475
|
type CredentialConfigControllerUpdateCredentialConfigurationResponse = CredentialConfigControllerUpdateCredentialConfigurationResponses[keyof CredentialConfigControllerUpdateCredentialConfigurationResponses];
|
|
3476
|
+
type CredentialConfigControllerSignSchemaMetaConfigData = {
|
|
3477
|
+
body: SignSchemaMetaConfigDto;
|
|
3478
|
+
path?: never;
|
|
3479
|
+
query?: never;
|
|
3480
|
+
url: "/api/issuer/credentials/schema-metadata/sign";
|
|
3481
|
+
};
|
|
3482
|
+
type CredentialConfigControllerSignSchemaMetaConfigErrors = {
|
|
3483
|
+
/**
|
|
3484
|
+
* Invalid schema metadata or missing certificate for signing
|
|
3485
|
+
*/
|
|
3486
|
+
400: unknown;
|
|
3487
|
+
};
|
|
3488
|
+
type CredentialConfigControllerSignSchemaMetaConfigResponses = {
|
|
3489
|
+
/**
|
|
3490
|
+
* Registrar metadata entry for the freshly submitted schema metadata.
|
|
3491
|
+
*/
|
|
3492
|
+
201: unknown;
|
|
3493
|
+
};
|
|
3494
|
+
type CredentialConfigControllerSignVersionSchemaMetaConfigData = {
|
|
3495
|
+
body: SignVersionSchemaMetaConfigDto;
|
|
3496
|
+
path?: never;
|
|
3497
|
+
query?: never;
|
|
3498
|
+
url: "/api/issuer/credentials/schema-metadata/sign-version";
|
|
3499
|
+
};
|
|
3500
|
+
type CredentialConfigControllerSignVersionSchemaMetaConfigErrors = {
|
|
3501
|
+
/**
|
|
3502
|
+
* config.id is required; or invalid schema metadata
|
|
3503
|
+
*/
|
|
3504
|
+
400: unknown;
|
|
3505
|
+
};
|
|
3506
|
+
type CredentialConfigControllerSignVersionSchemaMetaConfigResponses = {
|
|
3507
|
+
/**
|
|
3508
|
+
* Registrar metadata entry for the newly submitted version.
|
|
3509
|
+
*/
|
|
3510
|
+
201: unknown;
|
|
3511
|
+
};
|
|
3086
3512
|
type AttributeProviderControllerGetAllData = {
|
|
3087
3513
|
body?: never;
|
|
3088
3514
|
path?: never;
|
|
@@ -3252,6 +3678,98 @@ type WebhookEndpointControllerUpdateResponses = {
|
|
|
3252
3678
|
*/
|
|
3253
3679
|
200: unknown;
|
|
3254
3680
|
};
|
|
3681
|
+
type TrustListControllerGetAllTrustListsData = {
|
|
3682
|
+
body?: never;
|
|
3683
|
+
path?: never;
|
|
3684
|
+
query?: never;
|
|
3685
|
+
url: "/api/trust-list";
|
|
3686
|
+
};
|
|
3687
|
+
type TrustListControllerGetAllTrustListsResponses = {
|
|
3688
|
+
200: Array<TrustList>;
|
|
3689
|
+
};
|
|
3690
|
+
type TrustListControllerGetAllTrustListsResponse = TrustListControllerGetAllTrustListsResponses[keyof TrustListControllerGetAllTrustListsResponses];
|
|
3691
|
+
type TrustListControllerCreateTrustListData = {
|
|
3692
|
+
body: TrustListCreateDto;
|
|
3693
|
+
path?: never;
|
|
3694
|
+
query?: never;
|
|
3695
|
+
url: "/api/trust-list";
|
|
3696
|
+
};
|
|
3697
|
+
type TrustListControllerCreateTrustListResponses = {
|
|
3698
|
+
201: TrustList;
|
|
3699
|
+
};
|
|
3700
|
+
type TrustListControllerCreateTrustListResponse = TrustListControllerCreateTrustListResponses[keyof TrustListControllerCreateTrustListResponses];
|
|
3701
|
+
type TrustListControllerDeleteTrustListData = {
|
|
3702
|
+
body?: never;
|
|
3703
|
+
path: {
|
|
3704
|
+
id: string;
|
|
3705
|
+
};
|
|
3706
|
+
query?: never;
|
|
3707
|
+
url: "/api/trust-list/{id}";
|
|
3708
|
+
};
|
|
3709
|
+
type TrustListControllerDeleteTrustListResponses = {
|
|
3710
|
+
200: unknown;
|
|
3711
|
+
};
|
|
3712
|
+
type TrustListControllerGetTrustListData = {
|
|
3713
|
+
body?: never;
|
|
3714
|
+
path: {
|
|
3715
|
+
id: string;
|
|
3716
|
+
};
|
|
3717
|
+
query?: never;
|
|
3718
|
+
url: "/api/trust-list/{id}";
|
|
3719
|
+
};
|
|
3720
|
+
type TrustListControllerGetTrustListResponses = {
|
|
3721
|
+
200: TrustList;
|
|
3722
|
+
};
|
|
3723
|
+
type TrustListControllerGetTrustListResponse = TrustListControllerGetTrustListResponses[keyof TrustListControllerGetTrustListResponses];
|
|
3724
|
+
type TrustListControllerUpdateTrustListData = {
|
|
3725
|
+
body: TrustListCreateDto;
|
|
3726
|
+
path: {
|
|
3727
|
+
id: string;
|
|
3728
|
+
};
|
|
3729
|
+
query?: never;
|
|
3730
|
+
url: "/api/trust-list/{id}";
|
|
3731
|
+
};
|
|
3732
|
+
type TrustListControllerUpdateTrustListResponses = {
|
|
3733
|
+
200: TrustList;
|
|
3734
|
+
};
|
|
3735
|
+
type TrustListControllerUpdateTrustListResponse = TrustListControllerUpdateTrustListResponses[keyof TrustListControllerUpdateTrustListResponses];
|
|
3736
|
+
type TrustListControllerExportTrustListData = {
|
|
3737
|
+
body?: never;
|
|
3738
|
+
path: {
|
|
3739
|
+
id: string;
|
|
3740
|
+
};
|
|
3741
|
+
query?: never;
|
|
3742
|
+
url: "/api/trust-list/{id}/export";
|
|
3743
|
+
};
|
|
3744
|
+
type TrustListControllerExportTrustListResponses = {
|
|
3745
|
+
200: TrustListCreateDto;
|
|
3746
|
+
};
|
|
3747
|
+
type TrustListControllerExportTrustListResponse = TrustListControllerExportTrustListResponses[keyof TrustListControllerExportTrustListResponses];
|
|
3748
|
+
type TrustListControllerGetTrustListVersionsData = {
|
|
3749
|
+
body?: never;
|
|
3750
|
+
path: {
|
|
3751
|
+
id: string;
|
|
3752
|
+
};
|
|
3753
|
+
query?: never;
|
|
3754
|
+
url: "/api/trust-list/{id}/versions";
|
|
3755
|
+
};
|
|
3756
|
+
type TrustListControllerGetTrustListVersionsResponses = {
|
|
3757
|
+
200: Array<TrustListVersion>;
|
|
3758
|
+
};
|
|
3759
|
+
type TrustListControllerGetTrustListVersionsResponse = TrustListControllerGetTrustListVersionsResponses[keyof TrustListControllerGetTrustListVersionsResponses];
|
|
3760
|
+
type TrustListControllerGetTrustListVersionData = {
|
|
3761
|
+
body?: never;
|
|
3762
|
+
path: {
|
|
3763
|
+
id: string;
|
|
3764
|
+
versionId: string;
|
|
3765
|
+
};
|
|
3766
|
+
query?: never;
|
|
3767
|
+
url: "/api/trust-list/{id}/versions/{versionId}";
|
|
3768
|
+
};
|
|
3769
|
+
type TrustListControllerGetTrustListVersionResponses = {
|
|
3770
|
+
200: TrustListVersion;
|
|
3771
|
+
};
|
|
3772
|
+
type TrustListControllerGetTrustListVersionResponse = TrustListControllerGetTrustListVersionResponses[keyof TrustListControllerGetTrustListVersionResponses];
|
|
3255
3773
|
type PresentationManagementControllerConfigurationData = {
|
|
3256
3774
|
body?: never;
|
|
3257
3775
|
path?: never;
|
|
@@ -3290,6 +3808,36 @@ type PresentationManagementControllerResolveIssuerMetadataResponses = {
|
|
|
3290
3808
|
*/
|
|
3291
3809
|
200: unknown;
|
|
3292
3810
|
};
|
|
3811
|
+
type PresentationManagementControllerResolveSchemaMetadataData = {
|
|
3812
|
+
body: ResolveSchemaMetadataDto;
|
|
3813
|
+
path?: never;
|
|
3814
|
+
query?: never;
|
|
3815
|
+
url: "/api/verifier/config/schema-metadata/resolve";
|
|
3816
|
+
};
|
|
3817
|
+
type PresentationManagementControllerResolveSchemaMetadataErrors = {
|
|
3818
|
+
/**
|
|
3819
|
+
* Invalid URL, invalid response, or invalid schema metadata JWT
|
|
3820
|
+
*/
|
|
3821
|
+
400: unknown;
|
|
3822
|
+
};
|
|
3823
|
+
type PresentationManagementControllerResolveSchemaMetadataResponses = {
|
|
3824
|
+
/**
|
|
3825
|
+
* Resolved schema metadata import payload
|
|
3826
|
+
*/
|
|
3827
|
+
200: unknown;
|
|
3828
|
+
};
|
|
3829
|
+
type PresentationManagementControllerListSchemaMetadataCatalogData = {
|
|
3830
|
+
body?: never;
|
|
3831
|
+
path?: never;
|
|
3832
|
+
query?: never;
|
|
3833
|
+
url: "/api/verifier/config/schema-metadata/catalog";
|
|
3834
|
+
};
|
|
3835
|
+
type PresentationManagementControllerListSchemaMetadataCatalogResponses = {
|
|
3836
|
+
/**
|
|
3837
|
+
* Catalog entries from the registrar
|
|
3838
|
+
*/
|
|
3839
|
+
200: unknown;
|
|
3840
|
+
};
|
|
3293
3841
|
type PresentationManagementControllerDeleteConfigurationData = {
|
|
3294
3842
|
body?: never;
|
|
3295
3843
|
path: {
|
|
@@ -3502,153 +4050,214 @@ type RegistrarControllerCreateAccessCertificateResponses = {
|
|
|
3502
4050
|
};
|
|
3503
4051
|
};
|
|
3504
4052
|
type RegistrarControllerCreateAccessCertificateResponse = RegistrarControllerCreateAccessCertificateResponses[keyof RegistrarControllerCreateAccessCertificateResponses];
|
|
3505
|
-
type
|
|
3506
|
-
body
|
|
4053
|
+
type SchemaMetadataControllerGetVocabulariesData = {
|
|
4054
|
+
body?: never;
|
|
3507
4055
|
path?: never;
|
|
3508
4056
|
query?: never;
|
|
3509
|
-
url: "/api/
|
|
4057
|
+
url: "/api/schema-metadata/vocabularies";
|
|
3510
4058
|
};
|
|
3511
|
-
type
|
|
3512
|
-
|
|
3513
|
-
* JSON response
|
|
3514
|
-
*/
|
|
3515
|
-
201: OfferResponse;
|
|
4059
|
+
type SchemaMetadataControllerGetVocabulariesResponses = {
|
|
4060
|
+
200: SchemaMetadataVocabulariesDto;
|
|
3516
4061
|
};
|
|
3517
|
-
type
|
|
3518
|
-
type
|
|
3519
|
-
body
|
|
4062
|
+
type SchemaMetadataControllerGetVocabulariesResponse = SchemaMetadataControllerGetVocabulariesResponses[keyof SchemaMetadataControllerGetVocabulariesResponses];
|
|
4063
|
+
type SchemaMetadataControllerFindAllData = {
|
|
4064
|
+
body?: never;
|
|
4065
|
+
path?: never;
|
|
4066
|
+
query?: {
|
|
4067
|
+
attestationId?: string;
|
|
4068
|
+
version?: string;
|
|
4069
|
+
};
|
|
4070
|
+
url: "/api/schema-metadata";
|
|
4071
|
+
};
|
|
4072
|
+
type SchemaMetadataControllerFindAllResponses = {
|
|
4073
|
+
200: Array<SchemaMetadataResponseDto>;
|
|
4074
|
+
};
|
|
4075
|
+
type SchemaMetadataControllerFindAllResponse = SchemaMetadataControllerFindAllResponses[keyof SchemaMetadataControllerFindAllResponses];
|
|
4076
|
+
type SchemaMetadataControllerFindOneData = {
|
|
4077
|
+
body?: never;
|
|
3520
4078
|
path: {
|
|
3521
|
-
|
|
4079
|
+
id: string;
|
|
3522
4080
|
};
|
|
3523
4081
|
query?: never;
|
|
3524
|
-
url: "/api/
|
|
3525
|
-
};
|
|
3526
|
-
type DeferredControllerCompleteDeferredErrors = {
|
|
3527
|
-
/**
|
|
3528
|
-
* Transaction not found
|
|
3529
|
-
*/
|
|
3530
|
-
404: unknown;
|
|
4082
|
+
url: "/api/schema-metadata/{id}";
|
|
3531
4083
|
};
|
|
3532
|
-
type
|
|
3533
|
-
|
|
3534
|
-
* Transaction completed successfully
|
|
3535
|
-
*/
|
|
3536
|
-
200: DeferredOperationResponse;
|
|
4084
|
+
type SchemaMetadataControllerFindOneResponses = {
|
|
4085
|
+
200: SchemaMetadataResponseDto;
|
|
3537
4086
|
};
|
|
3538
|
-
type
|
|
3539
|
-
type
|
|
3540
|
-
body?:
|
|
4087
|
+
type SchemaMetadataControllerFindOneResponse = SchemaMetadataControllerFindOneResponses[keyof SchemaMetadataControllerFindOneResponses];
|
|
4088
|
+
type SchemaMetadataControllerRemoveData = {
|
|
4089
|
+
body?: never;
|
|
3541
4090
|
path: {
|
|
3542
|
-
|
|
4091
|
+
id: string;
|
|
4092
|
+
version: string;
|
|
3543
4093
|
};
|
|
3544
4094
|
query?: never;
|
|
3545
|
-
url: "/api/
|
|
4095
|
+
url: "/api/schema-metadata/{id}/versions/{version}";
|
|
3546
4096
|
};
|
|
3547
|
-
type
|
|
3548
|
-
/**
|
|
3549
|
-
* Transaction not found
|
|
3550
|
-
*/
|
|
3551
|
-
404: unknown;
|
|
3552
|
-
};
|
|
3553
|
-
type DeferredControllerFailDeferredResponses = {
|
|
4097
|
+
type SchemaMetadataControllerRemoveResponses = {
|
|
3554
4098
|
/**
|
|
3555
|
-
*
|
|
4099
|
+
* Deleted
|
|
3556
4100
|
*/
|
|
3557
|
-
200:
|
|
4101
|
+
200: unknown;
|
|
3558
4102
|
};
|
|
3559
|
-
type
|
|
3560
|
-
|
|
3561
|
-
|
|
3562
|
-
|
|
4103
|
+
type SchemaMetadataControllerUpdateData = {
|
|
4104
|
+
body: UpdateSchemaMetadataDto;
|
|
4105
|
+
path: {
|
|
4106
|
+
id: string;
|
|
4107
|
+
version: string;
|
|
4108
|
+
};
|
|
3563
4109
|
query?: never;
|
|
3564
|
-
url: "/api/
|
|
4110
|
+
url: "/api/schema-metadata/{id}/versions/{version}";
|
|
3565
4111
|
};
|
|
3566
|
-
type
|
|
3567
|
-
200:
|
|
4112
|
+
type SchemaMetadataControllerUpdateResponses = {
|
|
4113
|
+
200: SchemaMetadataResponseDto;
|
|
3568
4114
|
};
|
|
3569
|
-
type
|
|
3570
|
-
type
|
|
3571
|
-
body
|
|
3572
|
-
path
|
|
4115
|
+
type SchemaMetadataControllerUpdateResponse = SchemaMetadataControllerUpdateResponses[keyof SchemaMetadataControllerUpdateResponses];
|
|
4116
|
+
type SchemaMetadataControllerGetLatestData = {
|
|
4117
|
+
body?: never;
|
|
4118
|
+
path: {
|
|
4119
|
+
id: string;
|
|
4120
|
+
};
|
|
3573
4121
|
query?: never;
|
|
3574
|
-
url: "/api/
|
|
4122
|
+
url: "/api/schema-metadata/{id}/latest";
|
|
3575
4123
|
};
|
|
3576
|
-
type
|
|
3577
|
-
|
|
4124
|
+
type SchemaMetadataControllerGetLatestResponses = {
|
|
4125
|
+
200: SchemaMetadataResponseDto;
|
|
3578
4126
|
};
|
|
3579
|
-
type
|
|
3580
|
-
type
|
|
4127
|
+
type SchemaMetadataControllerGetLatestResponse = SchemaMetadataControllerGetLatestResponses[keyof SchemaMetadataControllerGetLatestResponses];
|
|
4128
|
+
type SchemaMetadataControllerGetVersionsData = {
|
|
3581
4129
|
body?: never;
|
|
3582
4130
|
path: {
|
|
3583
4131
|
id: string;
|
|
3584
4132
|
};
|
|
3585
4133
|
query?: never;
|
|
3586
|
-
url: "/api/
|
|
4134
|
+
url: "/api/schema-metadata/{id}/versions";
|
|
3587
4135
|
};
|
|
3588
|
-
type
|
|
3589
|
-
200:
|
|
4136
|
+
type SchemaMetadataControllerGetVersionsResponses = {
|
|
4137
|
+
200: Array<SchemaMetadataResponseDto>;
|
|
3590
4138
|
};
|
|
3591
|
-
type
|
|
4139
|
+
type SchemaMetadataControllerGetVersionsResponse = SchemaMetadataControllerGetVersionsResponses[keyof SchemaMetadataControllerGetVersionsResponses];
|
|
4140
|
+
type SchemaMetadataControllerGetJwtData = {
|
|
3592
4141
|
body?: never;
|
|
3593
4142
|
path: {
|
|
3594
4143
|
id: string;
|
|
4144
|
+
version: string;
|
|
3595
4145
|
};
|
|
3596
4146
|
query?: never;
|
|
3597
|
-
url: "/api/
|
|
4147
|
+
url: "/api/schema-metadata/{id}/versions/{version}/jwt";
|
|
3598
4148
|
};
|
|
3599
|
-
type
|
|
3600
|
-
|
|
4149
|
+
type SchemaMetadataControllerGetJwtResponses = {
|
|
4150
|
+
/**
|
|
4151
|
+
* Compact-serialization JWS string
|
|
4152
|
+
*/
|
|
4153
|
+
200: string;
|
|
3601
4154
|
};
|
|
3602
|
-
type
|
|
3603
|
-
type
|
|
3604
|
-
body
|
|
4155
|
+
type SchemaMetadataControllerGetJwtResponse = SchemaMetadataControllerGetJwtResponses[keyof SchemaMetadataControllerGetJwtResponses];
|
|
4156
|
+
type SchemaMetadataControllerExportData = {
|
|
4157
|
+
body?: never;
|
|
3605
4158
|
path: {
|
|
3606
4159
|
id: string;
|
|
4160
|
+
version: string;
|
|
3607
4161
|
};
|
|
3608
4162
|
query?: never;
|
|
3609
|
-
url: "/api/
|
|
4163
|
+
url: "/api/schema-metadata/{id}/versions/{version}/export";
|
|
3610
4164
|
};
|
|
3611
|
-
type
|
|
3612
|
-
|
|
4165
|
+
type SchemaMetadataControllerExportResponses = {
|
|
4166
|
+
/**
|
|
4167
|
+
* Registrar-defined catalog document
|
|
4168
|
+
*/
|
|
4169
|
+
200: {
|
|
4170
|
+
[key: string]: unknown;
|
|
4171
|
+
};
|
|
3613
4172
|
};
|
|
3614
|
-
type
|
|
3615
|
-
type
|
|
4173
|
+
type SchemaMetadataControllerExportResponse = SchemaMetadataControllerExportResponses[keyof SchemaMetadataControllerExportResponses];
|
|
4174
|
+
type SchemaMetadataControllerGetSchemaData = {
|
|
3616
4175
|
body?: never;
|
|
3617
4176
|
path: {
|
|
3618
4177
|
id: string;
|
|
4178
|
+
version: string;
|
|
4179
|
+
format: string;
|
|
3619
4180
|
};
|
|
3620
4181
|
query?: never;
|
|
3621
|
-
url: "/api/
|
|
4182
|
+
url: "/api/schema-metadata/{id}/versions/{version}/schemas/{format}";
|
|
3622
4183
|
};
|
|
3623
|
-
type
|
|
3624
|
-
|
|
4184
|
+
type SchemaMetadataControllerGetSchemaResponses = {
|
|
4185
|
+
/**
|
|
4186
|
+
* JSON Schema document for the requested format
|
|
4187
|
+
*/
|
|
4188
|
+
200: {
|
|
4189
|
+
[key: string]: unknown;
|
|
4190
|
+
};
|
|
3625
4191
|
};
|
|
3626
|
-
type
|
|
3627
|
-
type
|
|
3628
|
-
body
|
|
4192
|
+
type SchemaMetadataControllerGetSchemaResponse = SchemaMetadataControllerGetSchemaResponses[keyof SchemaMetadataControllerGetSchemaResponses];
|
|
4193
|
+
type SchemaMetadataControllerDeprecateVersionData = {
|
|
4194
|
+
body: DeprecateSchemaMetadataDto;
|
|
3629
4195
|
path: {
|
|
3630
4196
|
id: string;
|
|
4197
|
+
version: string;
|
|
3631
4198
|
};
|
|
3632
4199
|
query?: never;
|
|
3633
|
-
url: "/api/
|
|
4200
|
+
url: "/api/schema-metadata/{id}/versions/{version}/deprecation";
|
|
3634
4201
|
};
|
|
3635
|
-
type
|
|
3636
|
-
200:
|
|
4202
|
+
type SchemaMetadataControllerDeprecateVersionResponses = {
|
|
4203
|
+
200: SchemaMetadataResponseDto;
|
|
3637
4204
|
};
|
|
3638
|
-
type
|
|
3639
|
-
type
|
|
3640
|
-
body
|
|
4205
|
+
type SchemaMetadataControllerDeprecateVersionResponse = SchemaMetadataControllerDeprecateVersionResponses[keyof SchemaMetadataControllerDeprecateVersionResponses];
|
|
4206
|
+
type CredentialOfferControllerGetOfferData = {
|
|
4207
|
+
body: OfferRequestDto;
|
|
4208
|
+
path?: never;
|
|
4209
|
+
query?: never;
|
|
4210
|
+
url: "/api/issuer/offer";
|
|
4211
|
+
};
|
|
4212
|
+
type CredentialOfferControllerGetOfferResponses = {
|
|
4213
|
+
/**
|
|
4214
|
+
* JSON response
|
|
4215
|
+
*/
|
|
4216
|
+
201: OfferResponse;
|
|
4217
|
+
};
|
|
4218
|
+
type CredentialOfferControllerGetOfferResponse = CredentialOfferControllerGetOfferResponses[keyof CredentialOfferControllerGetOfferResponses];
|
|
4219
|
+
type DeferredControllerCompleteDeferredData = {
|
|
4220
|
+
body: CompleteDeferredDto;
|
|
3641
4221
|
path: {
|
|
3642
|
-
|
|
3643
|
-
versionId: string;
|
|
4222
|
+
transactionId: string;
|
|
3644
4223
|
};
|
|
3645
4224
|
query?: never;
|
|
3646
|
-
url: "/api/
|
|
4225
|
+
url: "/api/issuer/deferred/{transactionId}/complete";
|
|
3647
4226
|
};
|
|
3648
|
-
type
|
|
3649
|
-
|
|
4227
|
+
type DeferredControllerCompleteDeferredErrors = {
|
|
4228
|
+
/**
|
|
4229
|
+
* Transaction not found
|
|
4230
|
+
*/
|
|
4231
|
+
404: unknown;
|
|
3650
4232
|
};
|
|
3651
|
-
type
|
|
4233
|
+
type DeferredControllerCompleteDeferredResponses = {
|
|
4234
|
+
/**
|
|
4235
|
+
* Transaction completed successfully
|
|
4236
|
+
*/
|
|
4237
|
+
200: DeferredOperationResponse;
|
|
4238
|
+
};
|
|
4239
|
+
type DeferredControllerCompleteDeferredResponse = DeferredControllerCompleteDeferredResponses[keyof DeferredControllerCompleteDeferredResponses];
|
|
4240
|
+
type DeferredControllerFailDeferredData = {
|
|
4241
|
+
body?: FailDeferredDto;
|
|
4242
|
+
path: {
|
|
4243
|
+
transactionId: string;
|
|
4244
|
+
};
|
|
4245
|
+
query?: never;
|
|
4246
|
+
url: "/api/issuer/deferred/{transactionId}/fail";
|
|
4247
|
+
};
|
|
4248
|
+
type DeferredControllerFailDeferredErrors = {
|
|
4249
|
+
/**
|
|
4250
|
+
* Transaction not found
|
|
4251
|
+
*/
|
|
4252
|
+
404: unknown;
|
|
4253
|
+
};
|
|
4254
|
+
type DeferredControllerFailDeferredResponses = {
|
|
4255
|
+
/**
|
|
4256
|
+
* Transaction marked as failed
|
|
4257
|
+
*/
|
|
4258
|
+
200: DeferredOperationResponse;
|
|
4259
|
+
};
|
|
4260
|
+
type DeferredControllerFailDeferredResponse = DeferredControllerFailDeferredResponses[keyof DeferredControllerFailDeferredResponses];
|
|
3652
4261
|
type KeyChainControllerGetProvidersData = {
|
|
3653
4262
|
body?: never;
|
|
3654
4263
|
path?: never;
|
|
@@ -3665,7 +4274,12 @@ type KeyChainControllerGetProvidersResponse = KeyChainControllerGetProvidersResp
|
|
|
3665
4274
|
type KeyChainControllerGetAllData = {
|
|
3666
4275
|
body?: never;
|
|
3667
4276
|
path?: never;
|
|
3668
|
-
query?:
|
|
4277
|
+
query?: {
|
|
4278
|
+
/**
|
|
4279
|
+
* Optional usage type filter
|
|
4280
|
+
*/
|
|
4281
|
+
usageType?: "access" | "attestation" | "trustList" | "statusList" | "encrypt";
|
|
4282
|
+
};
|
|
3669
4283
|
url: "/api/key-chain";
|
|
3670
4284
|
};
|
|
3671
4285
|
type KeyChainControllerGetAllResponses = {
|
|
@@ -3827,4 +4441,4 @@ type StorageControllerUploadResponses = {
|
|
|
3827
4441
|
};
|
|
3828
4442
|
type StorageControllerUploadResponse = StorageControllerUploadResponses[keyof StorageControllerUploadResponses];
|
|
3829
4443
|
|
|
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 };
|
|
4444
|
+
export type { ChainedAsTokenConfig as $, AccessCertificateRefDto as A, AuthControllerGetOAuth2TokenData as B, AuthControllerGetOAuth2TokenErrors as C, AuthControllerGetOAuth2TokenResponse as D, AuthControllerGetOAuth2TokenResponses as E, AuthenticationMethodAuth as F, AuthenticationMethodNone as G, AuthenticationMethodPresentation as H, AuthenticationUrlConfig as I, AuthorizationResponse as J, AuthorizeQueries as K, CacheControllerClearAllCachesData as L, CacheControllerClearAllCachesResponse as M, CacheControllerClearAllCachesResponses as N, CacheControllerClearStatusListCacheData as O, CacheControllerClearStatusListCacheResponse as P, CacheControllerClearStatusListCacheResponses as Q, CacheControllerClearTrustListCacheData as R, Session as S, CacheControllerClearTrustListCacheResponse as T, CacheControllerClearTrustListCacheResponses as U, CacheControllerGetStatsData as V, CacheControllerGetStatsResponses as W, CertificateInfoDto as X, ChainedAsConfig as Y, ChainedAsErrorResponseDto as Z, ChainedAsParResponseDto as _, AllowListPolicy as a, CredentialOfferControllerGetOfferResponse as a$, ChainedAsTokenRequestDto as a0, ChainedAsTokenResponseDto as a1, ClaimDisplayInfo as a2, ClaimMetadata as a3, ClaimsQuery as a4, ClientControllerCreateClientData as a5, ClientControllerCreateClientResponse as a6, ClientControllerCreateClientResponses as a7, ClientControllerDeleteClientData as a8, ClientControllerDeleteClientResponses as a9, CreateUserDto as aA, CreateWebhookEndpointDto as aB, CredentialConfig as aC, CredentialConfigControllerDeleteIssuanceConfigurationData as aD, CredentialConfigControllerDeleteIssuanceConfigurationResponse as aE, CredentialConfigControllerDeleteIssuanceConfigurationResponses as aF, CredentialConfigControllerGetConfigByIdData as aG, CredentialConfigControllerGetConfigByIdResponse as aH, CredentialConfigControllerGetConfigByIdResponses as aI, CredentialConfigControllerGetConfigsData as aJ, CredentialConfigControllerGetConfigsResponse as aK, CredentialConfigControllerGetConfigsResponses as aL, CredentialConfigControllerSignSchemaMetaConfigData as aM, CredentialConfigControllerSignSchemaMetaConfigErrors as aN, CredentialConfigControllerSignSchemaMetaConfigResponses as aO, CredentialConfigControllerSignVersionSchemaMetaConfigData as aP, CredentialConfigControllerSignVersionSchemaMetaConfigErrors as aQ, CredentialConfigControllerSignVersionSchemaMetaConfigResponses as aR, CredentialConfigControllerStoreCredentialConfigurationData as aS, CredentialConfigControllerStoreCredentialConfigurationResponse as aT, CredentialConfigControllerStoreCredentialConfigurationResponses as aU, CredentialConfigControllerUpdateCredentialConfigurationData as aV, CredentialConfigControllerUpdateCredentialConfigurationResponse as aW, CredentialConfigControllerUpdateCredentialConfigurationResponses as aX, CredentialConfigCreate as aY, CredentialConfigUpdate as aZ, CredentialOfferControllerGetOfferData as a_, ClientControllerGetClientData as aa, ClientControllerGetClientResponse as ab, ClientControllerGetClientResponses as ac, ClientControllerGetClientSecretData as ad, ClientControllerGetClientSecretResponse as ae, ClientControllerGetClientSecretResponses as af, ClientControllerGetClientsData as ag, ClientControllerGetClientsResponse as ah, ClientControllerGetClientsResponses as ai, ClientControllerRotateClientSecretData as aj, ClientControllerRotateClientSecretResponse as ak, ClientControllerRotateClientSecretResponses as al, ClientControllerUpdateClientData as am, ClientControllerUpdateClientResponse as an, ClientControllerUpdateClientResponses as ao, ClientCredentialsDto as ap, ClientEntity as aq, ClientOptions as ar, ClientSecretResponseDto as as, CompleteDeferredDto as at, CreateAccessCertificateDto as au, CreateAttributeProviderDto as av, CreateClientDto as aw, CreateRegistrarConfigDto as ax, CreateStatusListDto as ay, CreateTenantDto as az, ApiKeyConfig as b, KeyChainControllerGetProvidersData as b$, CredentialOfferControllerGetOfferResponses as b0, CredentialQuery as b1, CredentialSetQuery as b2, Dcql as b3, DeferredControllerCompleteDeferredData as b4, DeferredControllerCompleteDeferredErrors as b5, DeferredControllerCompleteDeferredResponse as b6, DeferredControllerCompleteDeferredResponses as b7, DeferredControllerFailDeferredData as b8, DeferredControllerFailDeferredErrors as b9, IssuanceConfig as bA, IssuanceConfigControllerGetIssuanceConfigurationsData as bB, IssuanceConfigControllerGetIssuanceConfigurationsResponse as bC, IssuanceConfigControllerGetIssuanceConfigurationsResponses as bD, IssuanceConfigControllerStoreIssuanceConfigurationData as bE, IssuanceConfigControllerStoreIssuanceConfigurationResponse as bF, IssuanceConfigControllerStoreIssuanceConfigurationResponses as bG, IssuanceDto as bH, IssuerMetadataCredentialConfig as bI, JwksResponseDto as bJ, KeyAttestationsRequired as bK, KeyChainControllerCreateData as bL, KeyChainControllerCreateResponses as bM, KeyChainControllerDeleteData as bN, KeyChainControllerDeleteErrors as bO, KeyChainControllerDeleteResponses as bP, KeyChainControllerExportData as bQ, KeyChainControllerExportErrors as bR, KeyChainControllerExportResponse as bS, KeyChainControllerExportResponses as bT, KeyChainControllerGetAllData as bU, KeyChainControllerGetAllResponse as bV, KeyChainControllerGetAllResponses as bW, KeyChainControllerGetByIdData as bX, KeyChainControllerGetByIdErrors as bY, KeyChainControllerGetByIdResponse as bZ, KeyChainControllerGetByIdResponses as b_, DeferredControllerFailDeferredResponse as ba, DeferredControllerFailDeferredResponses as bb, DeferredCredentialRequestDto as bc, DeferredOperationResponse as bd, DeprecateSchemaMetadataDto as be, Display as bf, DisplayImage as bg, DisplayInfo as bh, DisplayLogo as bi, EcJwk as bj, EcPublic as bk, EmbeddedDisclosurePolicy as bl, ExportEcJwk as bm, ExportRotationPolicyDto as bn, ExternalTrustListEntity as bo, FailDeferredDto as bp, FileUploadDto as bq, FrontendConfigResponseDto as br, GrafanaConfigDto as bs, IaeActionOpenid4VpPresentation as bt, IaeActionRedirectToWeb as bu, ImportTenantDto as bv, InteractiveAuthorizationCodeResponseDto as bw, InteractiveAuthorizationErrorResponseDto as bx, InteractiveAuthorizationRequestDto as by, InternalTrustListEntity as bz, AppControllerGetFrontendConfigData as c, RegistrarControllerCreateAccessCertificateData as c$, KeyChainControllerGetProvidersResponse as c0, KeyChainControllerGetProvidersResponses as c1, KeyChainControllerImportData as c2, KeyChainControllerImportResponses as c3, KeyChainControllerRotateData as c4, KeyChainControllerRotateErrors as c5, KeyChainControllerRotateResponses as c6, KeyChainControllerUpdateData as c7, KeyChainControllerUpdateErrors as c8, KeyChainControllerUpdateResponses as c9, PresentationManagementControllerConfigurationResponse as cA, PresentationManagementControllerConfigurationResponses as cB, PresentationManagementControllerDeleteConfigurationData as cC, PresentationManagementControllerDeleteConfigurationResponses as cD, PresentationManagementControllerGetConfigurationData as cE, PresentationManagementControllerGetConfigurationResponse as cF, PresentationManagementControllerGetConfigurationResponses as cG, PresentationManagementControllerListSchemaMetadataCatalogData as cH, PresentationManagementControllerListSchemaMetadataCatalogResponses as cI, PresentationManagementControllerReissueRegistrationCertificateData as cJ, PresentationManagementControllerReissueRegistrationCertificateErrors as cK, PresentationManagementControllerReissueRegistrationCertificateResponses as cL, PresentationManagementControllerResolveIssuerMetadataData as cM, PresentationManagementControllerResolveIssuerMetadataErrors as cN, PresentationManagementControllerResolveIssuerMetadataResponses as cO, PresentationManagementControllerResolveSchemaMetadataData as cP, PresentationManagementControllerResolveSchemaMetadataErrors as cQ, PresentationManagementControllerResolveSchemaMetadataResponses as cR, PresentationManagementControllerStorePresentationConfigData as cS, PresentationManagementControllerStorePresentationConfigResponse as cT, PresentationManagementControllerStorePresentationConfigResponses as cU, PresentationManagementControllerUpdateConfigurationData as cV, PresentationManagementControllerUpdateConfigurationResponse as cW, PresentationManagementControllerUpdateConfigurationResponses as cX, PresentationRequest as cY, PublicKeyInfoDto as cZ, RegistrarConfigResponseDto as c_, KeyChainCreateDto as ca, KeyChainEntity as cb, KeyChainExportDto as cc, KeyChainImportDto as cd, KeyChainResponseDto as ce, KeyChainUpdateDto as cf, KmsProviderCapabilitiesDto as cg, KmsProviderInfoDto as ch, KmsProvidersResponseDto as ci, ManagedUserDto as cj, MetadataSchemaDto as ck, NoneTrustPolicy as cl, NotificationRequestDto as cm, Object$1 as cn, ObjectWritable as co, OfferRequestDto as cp, OfferResponse as cq, ParResponseDto as cr, PolicyCredential as cs, PresentationAttachment as ct, PresentationConfig as cu, PresentationConfigCreateDto as cv, PresentationConfigUpdateDto as cw, PresentationConfigWritable as cx, PresentationDuringIssuanceConfig as cy, PresentationManagementControllerConfigurationData as cz, AppControllerGetFrontendConfigResponse as d, SchemaMetadataControllerUpdateResponses as d$, RegistrarControllerCreateAccessCertificateErrors as d0, RegistrarControllerCreateAccessCertificateResponse as d1, RegistrarControllerCreateAccessCertificateResponses as d2, RegistrarControllerCreateConfigData as d3, RegistrarControllerCreateConfigErrors as d4, RegistrarControllerCreateConfigResponse as d5, RegistrarControllerCreateConfigResponses as d6, RegistrarControllerDeleteConfigData as d7, RegistrarControllerDeleteConfigResponse as d8, RegistrarControllerDeleteConfigResponses as d9, SchemaMetadataControllerExportResponse as dA, SchemaMetadataControllerExportResponses as dB, SchemaMetadataControllerFindAllData as dC, SchemaMetadataControllerFindAllResponse as dD, SchemaMetadataControllerFindAllResponses as dE, SchemaMetadataControllerFindOneData as dF, SchemaMetadataControllerFindOneResponse as dG, SchemaMetadataControllerFindOneResponses as dH, SchemaMetadataControllerGetJwtData as dI, SchemaMetadataControllerGetJwtResponse as dJ, SchemaMetadataControllerGetJwtResponses as dK, SchemaMetadataControllerGetLatestData as dL, SchemaMetadataControllerGetLatestResponse as dM, SchemaMetadataControllerGetLatestResponses as dN, SchemaMetadataControllerGetSchemaData as dO, SchemaMetadataControllerGetSchemaResponse as dP, SchemaMetadataControllerGetSchemaResponses as dQ, SchemaMetadataControllerGetVersionsData as dR, SchemaMetadataControllerGetVersionsResponse as dS, SchemaMetadataControllerGetVersionsResponses as dT, SchemaMetadataControllerGetVocabulariesData as dU, SchemaMetadataControllerGetVocabulariesResponse as dV, SchemaMetadataControllerGetVocabulariesResponses as dW, SchemaMetadataControllerRemoveData as dX, SchemaMetadataControllerRemoveResponses as dY, SchemaMetadataControllerUpdateData as dZ, SchemaMetadataControllerUpdateResponse as d_, RegistrarControllerGetConfigData as da, RegistrarControllerGetConfigErrors as db, RegistrarControllerGetConfigResponse as dc, RegistrarControllerGetConfigResponses as dd, RegistrarControllerUpdateConfigData as de, RegistrarControllerUpdateConfigErrors as df, RegistrarControllerUpdateConfigResponse as dg, RegistrarControllerUpdateConfigResponses as dh, RegistrationCertificateBody as di, RegistrationCertificateDefaults as dj, RegistrationCertificatePurpose as dk, RegistrationCertificateRequest as dl, ResolveIssuerMetadataDto as dm, ResolveSchemaMetadataDto as dn, RoleDto as dp, RootOfTrustPolicy as dq, RotationPolicyCreateDto as dr, RotationPolicyImportDto as ds, RotationPolicyResponseDto as dt, RotationPolicyUpdateDto as du, SchemaMetaConfig as dv, SchemaMetadataControllerDeprecateVersionData as dw, SchemaMetadataControllerDeprecateVersionResponse as dx, SchemaMetadataControllerDeprecateVersionResponses as dy, SchemaMetadataControllerExportData as dz, AppControllerGetFrontendConfigResponses as e, TenantControllerDeleteTenantData as e$, SchemaMetadataResponseDto as e0, SchemaMetadataVocabulariesDto as e1, SchemaResponse as e2, SchemaUriEntry as e3, SessionConfigControllerGetConfigData as e4, SessionConfigControllerGetConfigResponse as e5, SessionConfigControllerGetConfigResponses as e6, SessionConfigControllerResetConfigData as e7, SessionConfigControllerResetConfigResponses as e8, SessionConfigControllerUpdateConfigData as e9, StatusListConfigControllerResetConfigData as eA, StatusListConfigControllerResetConfigResponse as eB, StatusListConfigControllerResetConfigResponses as eC, StatusListConfigControllerUpdateConfigData as eD, StatusListConfigControllerUpdateConfigResponse as eE, StatusListConfigControllerUpdateConfigResponses as eF, StatusListImportDto as eG, StatusListManagementControllerCreateListData as eH, StatusListManagementControllerCreateListResponse as eI, StatusListManagementControllerCreateListResponses as eJ, StatusListManagementControllerDeleteListData as eK, StatusListManagementControllerDeleteListResponse as eL, StatusListManagementControllerDeleteListResponses as eM, StatusListManagementControllerGetListData as eN, StatusListManagementControllerGetListResponse as eO, StatusListManagementControllerGetListResponses as eP, StatusListManagementControllerGetListsData as eQ, StatusListManagementControllerGetListsResponse as eR, StatusListManagementControllerGetListsResponses as eS, StatusListManagementControllerUpdateListData as eT, StatusListManagementControllerUpdateListResponse as eU, StatusListManagementControllerUpdateListResponses as eV, StatusListResponseDto as eW, StatusUpdateDto as eX, StorageControllerUploadData as eY, StorageControllerUploadResponse as eZ, StorageControllerUploadResponses as e_, SessionConfigControllerUpdateConfigResponse as ea, SessionConfigControllerUpdateConfigResponses as eb, SessionControllerDeleteSessionData as ec, SessionControllerDeleteSessionResponses as ed, SessionControllerGetAllSessionsData as ee, SessionControllerGetAllSessionsResponse as ef, SessionControllerGetAllSessionsResponses as eg, SessionControllerGetSessionData as eh, SessionControllerGetSessionLogsData as ei, SessionControllerGetSessionLogsResponse as ej, SessionControllerGetSessionLogsResponses as ek, SessionControllerGetSessionResponse as el, SessionControllerGetSessionResponses as em, SessionControllerRevokeAllData as en, SessionControllerRevokeAllResponses as eo, SessionEventsControllerSubscribeToSessionEventsData as ep, SessionEventsControllerSubscribeToSessionEventsResponses as eq, SessionLogEntryResponseDto as er, SessionStorageConfig as es, SignSchemaMetaConfigDto as et, SignVersionSchemaMetaConfigDto as eu, StatusListAggregationDto as ev, StatusListConfig as ew, StatusListConfigControllerGetConfigData as ex, StatusListConfigControllerGetConfigResponse as ey, StatusListConfigControllerGetConfigResponses as ez, AppControllerGetVersionData as f, UserControllerGetUserResponse as f$, TenantControllerDeleteTenantResponses as f0, TenantControllerGetTenantData as f1, TenantControllerGetTenantResponse as f2, TenantControllerGetTenantResponses as f3, TenantControllerGetTenantsData as f4, TenantControllerGetTenantsResponse as f5, TenantControllerGetTenantsResponses as f6, TenantControllerInitTenantData as f7, TenantControllerInitTenantResponse as f8, TenantControllerInitTenantResponses as f9, TrustListControllerGetTrustListVersionsData as fA, TrustListControllerGetTrustListVersionsResponse as fB, TrustListControllerGetTrustListVersionsResponses as fC, TrustListControllerUpdateTrustListData as fD, TrustListControllerUpdateTrustListResponse as fE, TrustListControllerUpdateTrustListResponses as fF, TrustListCreateDto as fG, TrustListEntityInfo as fH, TrustListVersion as fI, TrustedAuthorityQuery as fJ, UpdateAttributeProviderDto as fK, UpdateClientDto as fL, UpdateRegistrarConfigDto as fM, UpdateSchemaMetadataDto as fN, UpdateSessionConfigDto as fO, UpdateStatusListConfigDto as fP, UpdateStatusListDto as fQ, UpdateTenantDto as fR, UpdateUserDto as fS, UpdateWebhookEndpointDto as fT, UpstreamOidcConfig as fU, UserControllerCreateUserData as fV, UserControllerCreateUserResponse as fW, UserControllerCreateUserResponses as fX, UserControllerDeleteUserData as fY, UserControllerDeleteUserResponses as fZ, UserControllerGetUserData as f_, TenantControllerUpdateTenantData as fa, TenantControllerUpdateTenantResponse as fb, TenantControllerUpdateTenantResponses as fc, TenantEntity as fd, TokenResponse as fe, TransactionData as ff, TrustAuthorityDto as fg, TrustAuthorityEntry as fh, TrustList as fi, TrustListControllerCreateTrustListData as fj, TrustListControllerCreateTrustListResponse as fk, TrustListControllerCreateTrustListResponses as fl, TrustListControllerDeleteTrustListData as fm, TrustListControllerDeleteTrustListResponses as fn, TrustListControllerExportTrustListData as fo, TrustListControllerExportTrustListResponse as fp, TrustListControllerExportTrustListResponses as fq, TrustListControllerGetAllTrustListsData as fr, TrustListControllerGetAllTrustListsResponse as fs, TrustListControllerGetAllTrustListsResponses as ft, TrustListControllerGetTrustListData as fu, TrustListControllerGetTrustListResponse as fv, TrustListControllerGetTrustListResponses as fw, TrustListControllerGetTrustListVersionData as fx, TrustListControllerGetTrustListVersionResponse as fy, TrustListControllerGetTrustListVersionResponses as fz, AppControllerGetVersionResponses as g, UserControllerGetUserResponses as g0, UserControllerGetUsersData as g1, UserControllerGetUsersResponse as g2, UserControllerGetUsersResponses as g3, UserControllerUpdateUserData as g4, UserControllerUpdateUserResponse as g5, UserControllerUpdateUserResponses as g6, Vct as g7, VerifierOfferControllerGetOfferData as g8, VerifierOfferControllerGetOfferResponse as g9, VerifierOfferControllerGetOfferResponses as ga, VocabularyEntryDto as gb, WebHookAuthConfigHeader as gc, WebHookAuthConfigNone as gd, WebhookConfig as ge, WebhookEndpointControllerCreateData as gf, WebhookEndpointControllerCreateResponses as gg, WebhookEndpointControllerDeleteData as gh, WebhookEndpointControllerDeleteErrors as gi, WebhookEndpointControllerDeleteResponses as gj, WebhookEndpointControllerGetAllData as gk, WebhookEndpointControllerGetAllResponse as gl, WebhookEndpointControllerGetAllResponses as gm, WebhookEndpointControllerGetByIdData as gn, WebhookEndpointControllerGetByIdErrors as go, WebhookEndpointControllerGetByIdResponses as gp, WebhookEndpointControllerUpdateData as gq, WebhookEndpointControllerUpdateErrors as gr, WebhookEndpointControllerUpdateResponses as gs, WebhookEndpointEntity as gt, 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, AuditLogControllerGetAuditLogsData as w, AuditLogControllerGetAuditLogsResponse as x, AuditLogControllerGetAuditLogsResponses as y, AuditLogResponseDto as z };
|