@eudiplo/sdk-core 4.4.0 → 4.5.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/README.md +45 -170
- package/dist/api/client/client.gen.d.mts +1 -1
- package/dist/api/client/client.gen.d.ts +1 -1
- package/dist/api/client/client.gen.js +12 -44
- package/dist/api/client/client.gen.mjs +12 -44
- package/dist/api/client/index.d.mts +4 -4
- package/dist/api/client/index.d.ts +4 -4
- package/dist/api/client/index.js +18 -54
- package/dist/api/client/index.mjs +18 -54
- package/dist/api/client/types.gen.d.mts +1 -1
- package/dist/api/client/types.gen.d.ts +1 -1
- package/dist/api/client.gen.d.mts +2 -2
- package/dist/api/client.gen.d.ts +2 -2
- package/dist/api/client.gen.js +13 -47
- package/dist/api/client.gen.mjs +13 -47
- package/dist/api/index.d.mts +79 -75
- package/dist/api/index.d.ts +79 -75
- package/dist/api/index.js +108 -136
- package/dist/api/index.mjs +106 -135
- package/dist/index.d.mts +56 -295
- package/dist/index.d.ts +56 -295
- package/dist/index.js +389 -308
- package/dist/index.mjs +381 -298
- package/dist/{types.gen-DKrNRB-E.d.mts → types.gen-Cc6DtXw9.d.mts} +23 -23
- package/dist/{types.gen-DKrNRB-E.d.ts → types.gen-Cc6DtXw9.d.ts} +23 -23
- package/dist/{types.gen-DpwDhqbe.d.mts → types.gen-z3We9JHj.d.mts} +898 -787
- package/dist/{types.gen-DpwDhqbe.d.ts → types.gen-z3We9JHj.d.ts} +898 -787
- package/package.json +5 -3
|
@@ -25,7 +25,7 @@ type RoleDto = {
|
|
|
25
25
|
/**
|
|
26
26
|
* OAuth2 roles
|
|
27
27
|
*/
|
|
28
|
-
role:
|
|
28
|
+
role: 'presentation:manage' | 'presentation:request' | 'issuance:manage' | 'issuance:offer' | 'clients:manage' | 'users:manage' | 'tenants:manage' | 'registrar:manage';
|
|
29
29
|
};
|
|
30
30
|
type ClientCredentialsDto = {
|
|
31
31
|
grant_type?: string;
|
|
@@ -37,6 +37,7 @@ type TokenResponse = {
|
|
|
37
37
|
refresh_token?: string;
|
|
38
38
|
token_type: string;
|
|
39
39
|
expires_in: number;
|
|
40
|
+
state: string;
|
|
40
41
|
};
|
|
41
42
|
type ImportTenantDto = {
|
|
42
43
|
/**
|
|
@@ -56,7 +57,7 @@ type SessionStorageConfig = {
|
|
|
56
57
|
/**
|
|
57
58
|
* Cleanup mode: 'full' deletes everything, 'anonymize' keeps metadata but removes PII.
|
|
58
59
|
*/
|
|
59
|
-
cleanupMode?:
|
|
60
|
+
cleanupMode?: 'full' | 'anonymize';
|
|
60
61
|
};
|
|
61
62
|
type StatusListConfig = {
|
|
62
63
|
/**
|
|
@@ -138,7 +139,7 @@ type ClientEntity = {
|
|
|
138
139
|
/**
|
|
139
140
|
* The roles assigned to the client.
|
|
140
141
|
*/
|
|
141
|
-
roles: Array<
|
|
142
|
+
roles: Array<'presentation:manage' | 'presentation:request' | 'issuance:manage' | 'issuance:offer' | 'clients:manage' | 'users:manage' | 'tenants:manage' | 'registrar:manage'>;
|
|
142
143
|
/**
|
|
143
144
|
* The tenant that the client belongs to.
|
|
144
145
|
*/
|
|
@@ -165,7 +166,7 @@ type CreateTenantDto = {
|
|
|
165
166
|
* Session storage configuration. Controls TTL and cleanup behavior.
|
|
166
167
|
*/
|
|
167
168
|
sessionConfig?: SessionStorageConfig;
|
|
168
|
-
roles?: Array<
|
|
169
|
+
roles?: Array<'presentation:manage' | 'presentation:request' | 'issuance:manage' | 'issuance:offer' | 'clients:manage' | 'users:manage' | 'tenants:manage' | 'registrar:manage'>;
|
|
169
170
|
};
|
|
170
171
|
type UpdateTenantDto = {
|
|
171
172
|
/**
|
|
@@ -184,13 +185,13 @@ type UpdateTenantDto = {
|
|
|
184
185
|
* Session storage configuration. Controls TTL and cleanup behavior.
|
|
185
186
|
*/
|
|
186
187
|
sessionConfig?: SessionStorageConfig;
|
|
187
|
-
roles?: Array<
|
|
188
|
+
roles?: Array<'presentation:manage' | 'presentation:request' | 'issuance:manage' | 'issuance:offer' | 'clients:manage' | 'users:manage' | 'tenants:manage' | 'registrar:manage'>;
|
|
188
189
|
};
|
|
189
190
|
type AuditLogResponseDto = {
|
|
190
191
|
id: string;
|
|
191
192
|
tenantId: string;
|
|
192
|
-
actionType:
|
|
193
|
-
actorType:
|
|
193
|
+
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';
|
|
194
|
+
actorType: 'user' | 'client' | 'system';
|
|
194
195
|
actorId?: string;
|
|
195
196
|
actorDisplay?: string;
|
|
196
197
|
changedFields?: Array<string>;
|
|
@@ -222,7 +223,7 @@ type UpdateClientDto = {
|
|
|
222
223
|
/**
|
|
223
224
|
* The roles assigned to the client.
|
|
224
225
|
*/
|
|
225
|
-
roles: Array<
|
|
226
|
+
roles: Array<'presentation:manage' | 'presentation:request' | 'issuance:manage' | 'issuance:offer' | 'clients:manage' | 'users:manage' | 'tenants:manage' | 'registrar:manage'>;
|
|
226
227
|
};
|
|
227
228
|
type CreateClientDto = {
|
|
228
229
|
/**
|
|
@@ -248,7 +249,7 @@ type CreateClientDto = {
|
|
|
248
249
|
/**
|
|
249
250
|
* The roles assigned to the client.
|
|
250
251
|
*/
|
|
251
|
-
roles: Array<
|
|
252
|
+
roles: Array<'presentation:manage' | 'presentation:request' | 'issuance:manage' | 'issuance:offer' | 'clients:manage' | 'users:manage' | 'tenants:manage' | 'registrar:manage'>;
|
|
252
253
|
};
|
|
253
254
|
type StatusListImportDto = {
|
|
254
255
|
/**
|
|
@@ -400,21 +401,21 @@ type OfferRequestDto = {
|
|
|
400
401
|
/**
|
|
401
402
|
* The type of response expected for the offer request.
|
|
402
403
|
*/
|
|
403
|
-
response_type:
|
|
404
|
+
response_type: 'uri' | 'dc-api';
|
|
404
405
|
/**
|
|
405
406
|
* Credential claims configuration per credential. Keys must match credentialConfigurationIds.
|
|
406
407
|
*/
|
|
407
408
|
credentialClaims?: {
|
|
408
|
-
|
|
409
|
-
type:
|
|
409
|
+
[key: string]: {
|
|
410
|
+
type: 'inline';
|
|
410
411
|
claims: {
|
|
411
412
|
[key: string]: unknown;
|
|
412
413
|
};
|
|
413
414
|
} | {
|
|
414
|
-
type:
|
|
415
|
+
type: 'attributeProvider';
|
|
415
416
|
attributeProviderId: string;
|
|
416
417
|
} | {
|
|
417
|
-
type:
|
|
418
|
+
type: 'webhook';
|
|
418
419
|
webhook: {
|
|
419
420
|
url: string;
|
|
420
421
|
auth?: {
|
|
@@ -426,7 +427,7 @@ type OfferRequestDto = {
|
|
|
426
427
|
/**
|
|
427
428
|
* The flow type for the offer request.
|
|
428
429
|
*/
|
|
429
|
-
flow:
|
|
430
|
+
flow: 'authorization_code' | 'pre_authorized_code';
|
|
430
431
|
/**
|
|
431
432
|
* Transaction code for pre-authorized code flow.
|
|
432
433
|
*/
|
|
@@ -452,7 +453,7 @@ type WebHookAuthConfigNone = {
|
|
|
452
453
|
/**
|
|
453
454
|
* The type of authentication used for the webhook.
|
|
454
455
|
*/
|
|
455
|
-
type:
|
|
456
|
+
type: 'none';
|
|
456
457
|
};
|
|
457
458
|
type ApiKeyConfig = {
|
|
458
459
|
/**
|
|
@@ -468,7 +469,7 @@ type WebHookAuthConfigHeader = {
|
|
|
468
469
|
/**
|
|
469
470
|
* The type of authentication used for the webhook.
|
|
470
471
|
*/
|
|
471
|
-
type:
|
|
472
|
+
type: 'apiKey';
|
|
472
473
|
/**
|
|
473
474
|
* Configuration for API key authentication.
|
|
474
475
|
* This is required if the type is 'apiKey'.
|
|
@@ -498,7 +499,7 @@ type Session = {
|
|
|
498
499
|
/**
|
|
499
500
|
* Status of the session.
|
|
500
501
|
*/
|
|
501
|
-
status:
|
|
502
|
+
status: 'active' | 'fetched' | 'completed' | 'expired' | 'failed';
|
|
502
503
|
/**
|
|
503
504
|
* Unique identifier for the session.
|
|
504
505
|
*/
|
|
@@ -655,6 +656,28 @@ type Session = {
|
|
|
655
656
|
*/
|
|
656
657
|
consumedAt?: string;
|
|
657
658
|
};
|
|
659
|
+
type PaginatedSessionResponseDto = {
|
|
660
|
+
/**
|
|
661
|
+
* The sessions for the current page.
|
|
662
|
+
*/
|
|
663
|
+
items: Array<Session>;
|
|
664
|
+
/**
|
|
665
|
+
* Total number of sessions matching the query
|
|
666
|
+
*/
|
|
667
|
+
total: number;
|
|
668
|
+
/**
|
|
669
|
+
* Current page number (1-based)
|
|
670
|
+
*/
|
|
671
|
+
page: number;
|
|
672
|
+
/**
|
|
673
|
+
* Number of items per page
|
|
674
|
+
*/
|
|
675
|
+
pageSize: number;
|
|
676
|
+
/**
|
|
677
|
+
* Total number of pages
|
|
678
|
+
*/
|
|
679
|
+
totalPages: number;
|
|
680
|
+
};
|
|
658
681
|
type SessionLogEntryResponseDto = {
|
|
659
682
|
/**
|
|
660
683
|
* Log entry ID
|
|
@@ -671,7 +694,7 @@ type SessionLogEntryResponseDto = {
|
|
|
671
694
|
/**
|
|
672
695
|
* Log level
|
|
673
696
|
*/
|
|
674
|
-
level:
|
|
697
|
+
level: 'info' | 'warn' | 'error';
|
|
675
698
|
/**
|
|
676
699
|
* Flow stage
|
|
677
700
|
*/
|
|
@@ -711,14 +734,14 @@ type UpdateSessionConfigDto = {
|
|
|
711
734
|
/**
|
|
712
735
|
* Cleanup mode: 'full' deletes everything, 'anonymize' keeps metadata but removes PII.
|
|
713
736
|
*/
|
|
714
|
-
cleanupMode?:
|
|
737
|
+
cleanupMode?: 'full' | 'anonymize';
|
|
715
738
|
};
|
|
716
739
|
type ManagedUserDto = {
|
|
717
740
|
id: string;
|
|
718
741
|
username: string;
|
|
719
742
|
email?: string;
|
|
720
743
|
enabled: boolean;
|
|
721
|
-
roles: Array<
|
|
744
|
+
roles: Array<'presentation:manage' | 'presentation:request' | 'issuance:manage' | 'issuance:offer' | 'clients:manage' | 'users:manage' | 'tenants:manage' | 'registrar:manage'>;
|
|
722
745
|
tenantId?: string;
|
|
723
746
|
/**
|
|
724
747
|
* One-time temporary password returned only on user creation.
|
|
@@ -728,7 +751,7 @@ type ManagedUserDto = {
|
|
|
728
751
|
type CreateUserDto = {
|
|
729
752
|
username: string;
|
|
730
753
|
email?: string;
|
|
731
|
-
roles: Array<
|
|
754
|
+
roles: Array<'presentation:manage' | 'presentation:request' | 'issuance:manage' | 'issuance:offer' | 'clients:manage' | 'users:manage' | 'tenants:manage' | 'registrar:manage'>;
|
|
732
755
|
/**
|
|
733
756
|
* One-time temporary password returned only on user creation.
|
|
734
757
|
*/
|
|
@@ -738,7 +761,7 @@ type CreateUserDto = {
|
|
|
738
761
|
type UpdateUserDto = {
|
|
739
762
|
username?: string;
|
|
740
763
|
email?: string;
|
|
741
|
-
roles?: Array<
|
|
764
|
+
roles?: Array<'presentation:manage' | 'presentation:request' | 'issuance:manage' | 'issuance:offer' | 'clients:manage' | 'users:manage' | 'tenants:manage' | 'registrar:manage'>;
|
|
742
765
|
/**
|
|
743
766
|
* One-time temporary password returned only on user creation.
|
|
744
767
|
*/
|
|
@@ -747,7 +770,7 @@ type UpdateUserDto = {
|
|
|
747
770
|
password?: string;
|
|
748
771
|
};
|
|
749
772
|
type AuthenticationMethodNone = {
|
|
750
|
-
method:
|
|
773
|
+
method: 'none';
|
|
751
774
|
};
|
|
752
775
|
type AuthenticationUrlConfig = {
|
|
753
776
|
/**
|
|
@@ -761,7 +784,7 @@ type AuthenticationUrlConfig = {
|
|
|
761
784
|
webhook?: WebhookConfig;
|
|
762
785
|
};
|
|
763
786
|
type AuthenticationMethodAuth = {
|
|
764
|
-
method:
|
|
787
|
+
method: 'auth';
|
|
765
788
|
config: AuthenticationUrlConfig;
|
|
766
789
|
};
|
|
767
790
|
type PresentationDuringIssuanceConfig = {
|
|
@@ -771,7 +794,7 @@ type PresentationDuringIssuanceConfig = {
|
|
|
771
794
|
type: string;
|
|
772
795
|
};
|
|
773
796
|
type AuthenticationMethodPresentation = {
|
|
774
|
-
method:
|
|
797
|
+
method: 'presentationDuringIssuance';
|
|
775
798
|
config: PresentationDuringIssuanceConfig;
|
|
776
799
|
};
|
|
777
800
|
type UpstreamOidcConfig = {
|
|
@@ -820,6 +843,42 @@ type ChainedAsConfig = {
|
|
|
820
843
|
*/
|
|
821
844
|
requireDPoP?: boolean;
|
|
822
845
|
};
|
|
846
|
+
type FederationTrustAnchorConfig = {
|
|
847
|
+
/**
|
|
848
|
+
* Entity identifier (sub) of the federation trust anchor.
|
|
849
|
+
*/
|
|
850
|
+
entityId: string;
|
|
851
|
+
/**
|
|
852
|
+
* Federation endpoint URL for the trust anchor entity configuration.
|
|
853
|
+
*/
|
|
854
|
+
entityConfigurationUri: string;
|
|
855
|
+
};
|
|
856
|
+
type FederationConfig = {
|
|
857
|
+
/**
|
|
858
|
+
* Role this tenant plays in the OpenID Federation topology.
|
|
859
|
+
*/
|
|
860
|
+
role?: 'trust_anchor' | 'intermediate' | 'leaf';
|
|
861
|
+
/**
|
|
862
|
+
* Trust decision strategy when both LoTE trust lists and OpenID Federation are configured.
|
|
863
|
+
*/
|
|
864
|
+
mode?: 'federation-only' | 'hybrid';
|
|
865
|
+
/**
|
|
866
|
+
* Entity identifier of this issuer/verifier in the federation.
|
|
867
|
+
*/
|
|
868
|
+
entityId?: string;
|
|
869
|
+
/**
|
|
870
|
+
* Whether federation checks are enforced for upstream metadata and signer trust decisions.
|
|
871
|
+
*/
|
|
872
|
+
enforceSigningPolicy?: boolean;
|
|
873
|
+
/**
|
|
874
|
+
* Cache TTL in seconds for federation entity statements and trust chain results.
|
|
875
|
+
*/
|
|
876
|
+
cacheTtlSeconds?: number;
|
|
877
|
+
/**
|
|
878
|
+
* Configured federation trust anchors.
|
|
879
|
+
*/
|
|
880
|
+
trustAnchors: Array<FederationTrustAnchorConfig>;
|
|
881
|
+
};
|
|
823
882
|
type DisplayLogo = {
|
|
824
883
|
uri: string;
|
|
825
884
|
alt_text?: string;
|
|
@@ -840,6 +899,11 @@ type IssuanceConfig = {
|
|
|
840
899
|
* to an upstream OIDC provider while issuing its own tokens with issuer_state.
|
|
841
900
|
*/
|
|
842
901
|
chainedAs?: ChainedAsConfig;
|
|
902
|
+
/**
|
|
903
|
+
* Optional OpenID Federation configuration used for trust evaluation.
|
|
904
|
+
* When omitted, trust checks rely on existing LoTE trust-list behavior.
|
|
905
|
+
*/
|
|
906
|
+
federation?: FederationConfig;
|
|
843
907
|
/**
|
|
844
908
|
* Whether refresh tokens should be issued for OID4VCI token responses.
|
|
845
909
|
*/
|
|
@@ -917,6 +981,11 @@ type IssuanceDto = {
|
|
|
917
981
|
* to an upstream OIDC provider while issuing its own tokens with issuer_state.
|
|
918
982
|
*/
|
|
919
983
|
chainedAs?: ChainedAsConfig;
|
|
984
|
+
/**
|
|
985
|
+
* Optional OpenID Federation configuration used for trust evaluation.
|
|
986
|
+
* When omitted, trust checks rely on existing LoTE trust-list behavior.
|
|
987
|
+
*/
|
|
988
|
+
federation?: FederationConfig;
|
|
920
989
|
/**
|
|
921
990
|
* Whether refresh tokens should be issued for OID4VCI token responses.
|
|
922
991
|
*/
|
|
@@ -977,7 +1046,7 @@ type ClaimsQuery = {
|
|
|
977
1046
|
values?: Array<string>;
|
|
978
1047
|
};
|
|
979
1048
|
type TrustedAuthorityQuery = {
|
|
980
|
-
type:
|
|
1049
|
+
type: 'etsi_tl' | 'openid_federation';
|
|
981
1050
|
values: Array<string>;
|
|
982
1051
|
};
|
|
983
1052
|
type CredentialQuery = {
|
|
@@ -1000,18 +1069,18 @@ type PolicyCredential = {
|
|
|
1000
1069
|
credential_sets?: Array<CredentialSetQuery>;
|
|
1001
1070
|
};
|
|
1002
1071
|
type AttestationBasedPolicy = {
|
|
1003
|
-
policy:
|
|
1072
|
+
policy: 'attestationBased';
|
|
1004
1073
|
values: Array<PolicyCredential>;
|
|
1005
1074
|
};
|
|
1006
1075
|
type NoneTrustPolicy = {
|
|
1007
|
-
policy:
|
|
1076
|
+
policy: 'none';
|
|
1008
1077
|
};
|
|
1009
1078
|
type AllowListPolicy = {
|
|
1010
|
-
policy:
|
|
1079
|
+
policy: 'allowList';
|
|
1011
1080
|
values: Array<string>;
|
|
1012
1081
|
};
|
|
1013
1082
|
type RootOfTrustPolicy = {
|
|
1014
|
-
policy:
|
|
1083
|
+
policy: 'rootOfTrust';
|
|
1015
1084
|
values: string;
|
|
1016
1085
|
};
|
|
1017
1086
|
type Vct = {
|
|
@@ -1019,15 +1088,15 @@ type Vct = {
|
|
|
1019
1088
|
name?: string;
|
|
1020
1089
|
description?: string;
|
|
1021
1090
|
extends?: string;
|
|
1022
|
-
|
|
1091
|
+
'extends#integrity'?: string;
|
|
1023
1092
|
schema_uri?: string;
|
|
1024
|
-
|
|
1093
|
+
'schema_uri#integrity'?: string;
|
|
1025
1094
|
};
|
|
1026
1095
|
type IaeActionOpenid4VpPresentation = {
|
|
1027
1096
|
/**
|
|
1028
1097
|
* Action type discriminator
|
|
1029
1098
|
*/
|
|
1030
|
-
type:
|
|
1099
|
+
type: 'openid4vp_presentation';
|
|
1031
1100
|
/**
|
|
1032
1101
|
* Optional label for this step (for display purposes)
|
|
1033
1102
|
*/
|
|
@@ -1041,7 +1110,7 @@ type IaeActionRedirectToWeb = {
|
|
|
1041
1110
|
/**
|
|
1042
1111
|
* Action type discriminator
|
|
1043
1112
|
*/
|
|
1044
|
-
type:
|
|
1113
|
+
type: 'redirect_to_web';
|
|
1045
1114
|
/**
|
|
1046
1115
|
* Optional label for this step (for display purposes)
|
|
1047
1116
|
*/
|
|
@@ -1087,7 +1156,7 @@ type SchemaUriEntry = {
|
|
|
1087
1156
|
/**
|
|
1088
1157
|
* Schema-format specific metadata (for example { vct: 'urn:example:vct' } for dc+sd-jwt).
|
|
1089
1158
|
*/
|
|
1090
|
-
|
|
1159
|
+
meta: {
|
|
1091
1160
|
[key: string]: unknown;
|
|
1092
1161
|
};
|
|
1093
1162
|
};
|
|
@@ -1099,7 +1168,7 @@ type TrustAuthorityEntry = {
|
|
|
1099
1168
|
/**
|
|
1100
1169
|
* Trust framework type (ignored when trustListId is set)
|
|
1101
1170
|
*/
|
|
1102
|
-
frameworkType?:
|
|
1171
|
+
frameworkType?: 'aki' | 'etsi_tl' | 'openid_federation';
|
|
1103
1172
|
/**
|
|
1104
1173
|
* URI of the trust list or trust anchor (ignored when trustListId is set)
|
|
1105
1174
|
*/
|
|
@@ -1131,11 +1200,11 @@ type SchemaMetaConfig = {
|
|
|
1131
1200
|
/**
|
|
1132
1201
|
* Attestation Level of Security
|
|
1133
1202
|
*/
|
|
1134
|
-
attestationLoS?:
|
|
1203
|
+
attestationLoS?: 'iso_18045_high' | 'iso_18045_moderate' | 'iso_18045_enhanced-basic' | 'iso_18045_basic';
|
|
1135
1204
|
/**
|
|
1136
1205
|
* Cryptographic binding type
|
|
1137
1206
|
*/
|
|
1138
|
-
bindingType?:
|
|
1207
|
+
bindingType?: 'claim' | 'key' | 'biometric' | 'none';
|
|
1139
1208
|
/**
|
|
1140
1209
|
* Schema URIs per attestation format. When omitted, the format is derived from the credential config format field.
|
|
1141
1210
|
*/
|
|
@@ -1170,77 +1239,70 @@ type Display = {
|
|
|
1170
1239
|
background_image?: DisplayImage;
|
|
1171
1240
|
logo?: DisplayImage;
|
|
1172
1241
|
};
|
|
1173
|
-
type
|
|
1242
|
+
type IssuerMetadataCredentialConfig = {
|
|
1174
1243
|
/**
|
|
1175
|
-
*
|
|
1244
|
+
* Key attestation requirements for JWT proofs for this credential.
|
|
1245
|
+
* When set, this is published in proof_types_supported.jwt.key_attestations_required
|
|
1246
|
+
* for this specific credential configuration.
|
|
1176
1247
|
*/
|
|
1177
|
-
|
|
1248
|
+
keyAttestationsRequired?: KeyAttestationsRequired;
|
|
1249
|
+
format: 'mso_mdoc' | 'dc+sd-jwt';
|
|
1250
|
+
display: Array<Display>;
|
|
1251
|
+
scope?: string;
|
|
1178
1252
|
/**
|
|
1179
|
-
*
|
|
1253
|
+
* Document type for mDOC credentials (e.g., "org.iso.18013.5.1.mDL").
|
|
1254
|
+
* Only applicable when format is "mso_mdoc".
|
|
1180
1255
|
*/
|
|
1181
|
-
|
|
1256
|
+
docType?: string;
|
|
1182
1257
|
};
|
|
1183
|
-
type
|
|
1258
|
+
type FieldDisplayDto = {
|
|
1184
1259
|
/**
|
|
1185
|
-
*
|
|
1260
|
+
* Locale code based on BCP47 (RFC 5646)
|
|
1186
1261
|
*/
|
|
1187
|
-
|
|
1262
|
+
locale: string;
|
|
1188
1263
|
/**
|
|
1189
|
-
*
|
|
1264
|
+
* Display name
|
|
1190
1265
|
*/
|
|
1191
|
-
|
|
1266
|
+
name: string;
|
|
1192
1267
|
/**
|
|
1193
|
-
*
|
|
1268
|
+
* Optional display description
|
|
1194
1269
|
*/
|
|
1195
|
-
|
|
1270
|
+
description?: string;
|
|
1196
1271
|
};
|
|
1197
|
-
type
|
|
1272
|
+
type ClaimFieldDefinitionDto = {
|
|
1198
1273
|
/**
|
|
1199
|
-
*
|
|
1200
|
-
* When set, this is published in proof_types_supported.jwt.key_attestations_required
|
|
1201
|
-
* for this specific credential configuration.
|
|
1274
|
+
* Path to claim value
|
|
1202
1275
|
*/
|
|
1203
|
-
|
|
1204
|
-
format: "mso_mdoc" | "dc+sd-jwt";
|
|
1205
|
-
display: Array<Display>;
|
|
1206
|
-
scope?: string;
|
|
1276
|
+
path: Array<string | number | null>;
|
|
1207
1277
|
/**
|
|
1208
|
-
*
|
|
1209
|
-
* Only applicable when format is "mso_mdoc".
|
|
1278
|
+
* Claim value type
|
|
1210
1279
|
*/
|
|
1211
|
-
|
|
1280
|
+
type: 'string' | 'number' | 'integer' | 'boolean' | 'object' | 'array' | 'date';
|
|
1212
1281
|
/**
|
|
1213
|
-
*
|
|
1214
|
-
|
|
1215
|
-
|
|
1282
|
+
* Default value
|
|
1283
|
+
*/
|
|
1284
|
+
defaultValue?: string | number | boolean | {
|
|
1285
|
+
[key: string]: unknown;
|
|
1286
|
+
} | Array<unknown> | null;
|
|
1287
|
+
/**
|
|
1288
|
+
* Whether claim is mandatory
|
|
1289
|
+
*/
|
|
1290
|
+
mandatory?: boolean;
|
|
1291
|
+
/**
|
|
1292
|
+
* Whether claim is disclosable in SD-JWT
|
|
1293
|
+
*/
|
|
1294
|
+
disclosable?: boolean;
|
|
1295
|
+
/**
|
|
1296
|
+
* Namespace for mDOC field
|
|
1216
1297
|
*/
|
|
1217
1298
|
namespace?: string;
|
|
1299
|
+
display?: Array<FieldDisplayDto>;
|
|
1218
1300
|
/**
|
|
1219
|
-
*
|
|
1220
|
-
* Allows specifying claims across multiple namespaces.
|
|
1221
|
-
* Only applicable when format is "mso_mdoc".
|
|
1222
|
-
* Example:
|
|
1223
|
-
* {
|
|
1224
|
-
* "org.iso.18013.5.1": { "given_name": "John", "family_name": "Doe" },
|
|
1225
|
-
* "org.iso.18013.5.1.aamva": { "DHS_compliance": "F" }
|
|
1226
|
-
* }
|
|
1301
|
+
* Additional JSON schema constraints for this field
|
|
1227
1302
|
*/
|
|
1228
|
-
|
|
1303
|
+
constraints?: {
|
|
1229
1304
|
[key: string]: unknown;
|
|
1230
1305
|
};
|
|
1231
|
-
/**
|
|
1232
|
-
* Claims metadata for wallet rendering.
|
|
1233
|
-
* Follows the OID4VCI credential_metadata.claims specification.
|
|
1234
|
-
* Each claim includes a path (JSONPath-like array), optional mandatory flag,
|
|
1235
|
-
* and display information with multi-language support.
|
|
1236
|
-
*
|
|
1237
|
-
* Example:
|
|
1238
|
-
* [
|
|
1239
|
-
* { "path": ["given_name"], "mandatory": false, "display": [{ "name": "Given Name", "locale": "en-US" }] },
|
|
1240
|
-
* { "path": ["address", "street_address"], "display": [{ "name": "Street Address", "locale": "en-US" }] }
|
|
1241
|
-
* ]
|
|
1242
|
-
*/
|
|
1243
|
-
claimsMetadata?: Array<ClaimMetadata>;
|
|
1244
1306
|
};
|
|
1245
1307
|
type AttributeProviderEntity = {
|
|
1246
1308
|
auth: WebHookAuthConfigNone | WebHookAuthConfigHeader;
|
|
@@ -1272,11 +1334,11 @@ type KeyChainEntity = {
|
|
|
1272
1334
|
/**
|
|
1273
1335
|
* The purpose/role of this key chain in the system.
|
|
1274
1336
|
*/
|
|
1275
|
-
usageType:
|
|
1337
|
+
usageType: 'access' | 'attestation' | 'trustList' | 'statusList' | 'encrypt';
|
|
1276
1338
|
/**
|
|
1277
1339
|
* The usage type of the keys (sign or encrypt).
|
|
1278
1340
|
*/
|
|
1279
|
-
usage:
|
|
1341
|
+
usage: 'sign' | 'encrypt';
|
|
1280
1342
|
/**
|
|
1281
1343
|
* The KMS provider used for this key chain.
|
|
1282
1344
|
* References a configured KMS provider name.
|
|
@@ -1287,7 +1349,7 @@ type KeyChainEntity = {
|
|
|
1287
1349
|
* This field stores the provider-specific key reference for the active signing key.
|
|
1288
1350
|
*/
|
|
1289
1351
|
externalKeyId?: string;
|
|
1290
|
-
|
|
1352
|
+
rootJwk?: {
|
|
1291
1353
|
[key: string]: unknown;
|
|
1292
1354
|
};
|
|
1293
1355
|
/**
|
|
@@ -1295,7 +1357,7 @@ type KeyChainEntity = {
|
|
|
1295
1357
|
* Self-signed certificate for the root CA key.
|
|
1296
1358
|
*/
|
|
1297
1359
|
rootCertificate?: string;
|
|
1298
|
-
|
|
1360
|
+
activeJwk: {
|
|
1299
1361
|
[key: string]: unknown;
|
|
1300
1362
|
};
|
|
1301
1363
|
/**
|
|
@@ -1316,7 +1378,7 @@ type KeyChainEntity = {
|
|
|
1316
1378
|
* Timestamp of when the key was last rotated.
|
|
1317
1379
|
*/
|
|
1318
1380
|
lastRotatedAt?: string;
|
|
1319
|
-
|
|
1381
|
+
previousJwk?: {
|
|
1320
1382
|
[key: string]: unknown;
|
|
1321
1383
|
};
|
|
1322
1384
|
/**
|
|
@@ -1334,21 +1396,11 @@ type KeyChainEntity = {
|
|
|
1334
1396
|
*/
|
|
1335
1397
|
updatedAt: string;
|
|
1336
1398
|
};
|
|
1337
|
-
type SchemaResponse = {
|
|
1338
|
-
$schema: string;
|
|
1339
|
-
type: string;
|
|
1340
|
-
properties: {
|
|
1341
|
-
[key: string]: unknown;
|
|
1342
|
-
};
|
|
1343
|
-
required?: Array<string>;
|
|
1344
|
-
title?: string;
|
|
1345
|
-
description?: string;
|
|
1346
|
-
};
|
|
1347
1399
|
type CredentialConfig = {
|
|
1348
1400
|
/**
|
|
1349
1401
|
* VCT as a URI string (e.g., urn:eudi:pid:de:1) or as an object for EUDIPLO-hosted VCT
|
|
1350
1402
|
*/
|
|
1351
|
-
vct?: string | Vct;
|
|
1403
|
+
vct?: string | Vct | null;
|
|
1352
1404
|
/**
|
|
1353
1405
|
* List of IAE actions to execute before credential issuance
|
|
1354
1406
|
*/
|
|
@@ -1375,9 +1427,8 @@ type CredentialConfig = {
|
|
|
1375
1427
|
*/
|
|
1376
1428
|
tenant: TenantEntity;
|
|
1377
1429
|
config: IssuerMetadataCredentialConfig;
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
};
|
|
1430
|
+
configVersion: number;
|
|
1431
|
+
fields: Array<ClaimFieldDefinitionDto>;
|
|
1381
1432
|
/**
|
|
1382
1433
|
* Reference to the attribute provider used for fetching claims.
|
|
1383
1434
|
* Optional: if set, claims will be fetched from this provider during issuance.
|
|
@@ -1390,9 +1441,6 @@ type CredentialConfig = {
|
|
|
1390
1441
|
*/
|
|
1391
1442
|
webhookEndpointId?: string;
|
|
1392
1443
|
webhookEndpoint?: WebhookEndpointEntity;
|
|
1393
|
-
disclosureFrame?: {
|
|
1394
|
-
[key: string]: unknown;
|
|
1395
|
-
};
|
|
1396
1444
|
keyBinding?: boolean;
|
|
1397
1445
|
/**
|
|
1398
1446
|
* Reference to the key chain used for signing.
|
|
@@ -1401,14 +1449,19 @@ type CredentialConfig = {
|
|
|
1401
1449
|
keyChainId?: string;
|
|
1402
1450
|
keyChain?: KeyChainEntity;
|
|
1403
1451
|
statusManagement?: boolean;
|
|
1452
|
+
/**
|
|
1453
|
+
* For SD-JWT credentials: determines whether to include certificate chain (x5c)
|
|
1454
|
+
* or use federation-based trust (iss claim).
|
|
1455
|
+
* Default: "x5c" (federation must be explicitly selected)
|
|
1456
|
+
*/
|
|
1457
|
+
sdJwtTrustFormat?: 'x5c' | 'federation';
|
|
1404
1458
|
lifeTime?: number;
|
|
1405
|
-
schema?: SchemaResponse;
|
|
1406
1459
|
};
|
|
1407
1460
|
type CredentialConfigCreate = {
|
|
1408
1461
|
/**
|
|
1409
1462
|
* VCT as a URI string (e.g., urn:eudi:pid:de:1) or as an object for EUDIPLO-hosted VCT
|
|
1410
1463
|
*/
|
|
1411
|
-
vct?: string | Vct;
|
|
1464
|
+
vct?: string | Vct | null;
|
|
1412
1465
|
/**
|
|
1413
1466
|
* List of IAE actions to execute before credential issuance
|
|
1414
1467
|
*/
|
|
@@ -1431,9 +1484,8 @@ type CredentialConfigCreate = {
|
|
|
1431
1484
|
id: string;
|
|
1432
1485
|
description?: string;
|
|
1433
1486
|
config: IssuerMetadataCredentialConfig;
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
};
|
|
1487
|
+
configVersion: number;
|
|
1488
|
+
fields: Array<ClaimFieldDefinitionDto>;
|
|
1437
1489
|
/**
|
|
1438
1490
|
* Reference to the attribute provider used for fetching claims.
|
|
1439
1491
|
* Optional: if set, claims will be fetched from this provider during issuance.
|
|
@@ -1444,9 +1496,6 @@ type CredentialConfigCreate = {
|
|
|
1444
1496
|
* Optional: if set, notifications will be sent to this endpoint.
|
|
1445
1497
|
*/
|
|
1446
1498
|
webhookEndpointId?: string;
|
|
1447
|
-
disclosureFrame?: {
|
|
1448
|
-
[key: string]: unknown;
|
|
1449
|
-
};
|
|
1450
1499
|
keyBinding?: boolean;
|
|
1451
1500
|
/**
|
|
1452
1501
|
* Reference to the key chain used for signing.
|
|
@@ -1454,14 +1503,19 @@ type CredentialConfigCreate = {
|
|
|
1454
1503
|
*/
|
|
1455
1504
|
keyChainId?: string;
|
|
1456
1505
|
statusManagement?: boolean;
|
|
1506
|
+
/**
|
|
1507
|
+
* For SD-JWT credentials: determines whether to include certificate chain (x5c)
|
|
1508
|
+
* or use federation-based trust (iss claim).
|
|
1509
|
+
* Default: "x5c" (federation must be explicitly selected)
|
|
1510
|
+
*/
|
|
1511
|
+
sdJwtTrustFormat?: 'x5c' | 'federation';
|
|
1457
1512
|
lifeTime?: number;
|
|
1458
|
-
schema?: SchemaResponse;
|
|
1459
1513
|
};
|
|
1460
1514
|
type CredentialConfigUpdate = {
|
|
1461
1515
|
/**
|
|
1462
1516
|
* VCT as a URI string (e.g., urn:eudi:pid:de:1) or as an object for EUDIPLO-hosted VCT
|
|
1463
1517
|
*/
|
|
1464
|
-
vct?: string | Vct;
|
|
1518
|
+
vct?: string | Vct | null;
|
|
1465
1519
|
/**
|
|
1466
1520
|
* List of IAE actions to execute before credential issuance
|
|
1467
1521
|
*/
|
|
@@ -1484,9 +1538,8 @@ type CredentialConfigUpdate = {
|
|
|
1484
1538
|
id?: string;
|
|
1485
1539
|
description?: string;
|
|
1486
1540
|
config?: IssuerMetadataCredentialConfig;
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
};
|
|
1541
|
+
configVersion?: number;
|
|
1542
|
+
fields?: Array<ClaimFieldDefinitionDto>;
|
|
1490
1543
|
/**
|
|
1491
1544
|
* Reference to the attribute provider used for fetching claims.
|
|
1492
1545
|
* Optional: if set, claims will be fetched from this provider during issuance.
|
|
@@ -1497,9 +1550,6 @@ type CredentialConfigUpdate = {
|
|
|
1497
1550
|
* Optional: if set, notifications will be sent to this endpoint.
|
|
1498
1551
|
*/
|
|
1499
1552
|
webhookEndpointId?: string;
|
|
1500
|
-
disclosureFrame?: {
|
|
1501
|
-
[key: string]: unknown;
|
|
1502
|
-
};
|
|
1503
1553
|
keyBinding?: boolean;
|
|
1504
1554
|
/**
|
|
1505
1555
|
* Reference to the key chain used for signing.
|
|
@@ -1507,8 +1557,13 @@ type CredentialConfigUpdate = {
|
|
|
1507
1557
|
*/
|
|
1508
1558
|
keyChainId?: string;
|
|
1509
1559
|
statusManagement?: boolean;
|
|
1560
|
+
/**
|
|
1561
|
+
* For SD-JWT credentials: determines whether to include certificate chain (x5c)
|
|
1562
|
+
* or use federation-based trust (iss claim).
|
|
1563
|
+
* Default: "x5c" (federation must be explicitly selected)
|
|
1564
|
+
*/
|
|
1565
|
+
sdJwtTrustFormat?: 'x5c' | 'federation';
|
|
1510
1566
|
lifeTime?: number;
|
|
1511
|
-
schema?: SchemaResponse;
|
|
1512
1567
|
};
|
|
1513
1568
|
type SignSchemaMetaConfigDto = {
|
|
1514
1569
|
/**
|
|
@@ -1534,138 +1589,331 @@ type SignVersionSchemaMetaConfigDto = {
|
|
|
1534
1589
|
*/
|
|
1535
1590
|
keyChainId?: string;
|
|
1536
1591
|
};
|
|
1537
|
-
type
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
|
-
|
|
1592
|
+
type VocabularyEntryDto = {
|
|
1593
|
+
/**
|
|
1594
|
+
* Stable machine-readable value to submit in schema metadata category/tags fields.
|
|
1595
|
+
*/
|
|
1596
|
+
code: string;
|
|
1597
|
+
/**
|
|
1598
|
+
* Display label for UI rendering.
|
|
1599
|
+
*/
|
|
1600
|
+
label: string;
|
|
1601
|
+
/**
|
|
1602
|
+
* Vocabulary lifecycle status.
|
|
1603
|
+
*/
|
|
1604
|
+
status: 'active' | 'deprecated';
|
|
1605
|
+
/**
|
|
1606
|
+
* Replacement code when status is deprecated.
|
|
1607
|
+
*/
|
|
1608
|
+
replacedBy?: string;
|
|
1543
1609
|
};
|
|
1544
|
-
type
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1610
|
+
type SchemaMetadataVocabulariesDto = {
|
|
1611
|
+
/**
|
|
1612
|
+
* Vocabulary publication version for cache invalidation.
|
|
1613
|
+
*/
|
|
1614
|
+
version: string;
|
|
1615
|
+
/**
|
|
1616
|
+
* Allowed category values that can be used when updating schema metadata category.
|
|
1617
|
+
*/
|
|
1618
|
+
categories: Array<VocabularyEntryDto>;
|
|
1619
|
+
/**
|
|
1620
|
+
* Allowed tag values that can be used when updating schema metadata tags.
|
|
1621
|
+
*/
|
|
1622
|
+
tags: Array<VocabularyEntryDto>;
|
|
1550
1623
|
};
|
|
1551
|
-
type
|
|
1624
|
+
type MetadataSchemaDto = {
|
|
1552
1625
|
/**
|
|
1553
|
-
* Unique identifier for
|
|
1626
|
+
* Unique identifier for this schema entry
|
|
1554
1627
|
*/
|
|
1555
1628
|
id: string;
|
|
1556
|
-
auth: WebHookAuthConfigNone | WebHookAuthConfigHeader;
|
|
1557
|
-
name: string;
|
|
1558
|
-
description?: string;
|
|
1559
|
-
url: string;
|
|
1560
|
-
};
|
|
1561
|
-
type UpdateWebhookEndpointDto = {
|
|
1562
1629
|
/**
|
|
1563
|
-
*
|
|
1630
|
+
* The credential format identifier
|
|
1631
|
+
*/
|
|
1632
|
+
formatIdentifier: 'dc+sd-jwt' | 'mso_mdoc';
|
|
1633
|
+
/**
|
|
1634
|
+
* URI to the schema definition
|
|
1564
1635
|
*/
|
|
1565
|
-
id?: string;
|
|
1566
|
-
auth?: WebHookAuthConfigNone | WebHookAuthConfigHeader;
|
|
1567
|
-
name?: string;
|
|
1568
|
-
description?: string;
|
|
1569
|
-
url?: string;
|
|
1570
|
-
};
|
|
1571
|
-
type TrustListEntityInfo = {
|
|
1572
|
-
name: string;
|
|
1573
|
-
lang?: string;
|
|
1574
1636
|
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
1637
|
/**
|
|
1596
|
-
*
|
|
1638
|
+
* Inline schema content (JSON Schema)
|
|
1597
1639
|
*/
|
|
1598
|
-
|
|
1640
|
+
schemaContent?: {
|
|
1599
1641
|
[key: string]: unknown;
|
|
1600
1642
|
};
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
} & ExternalTrustListEntity)>;
|
|
1606
|
-
id?: string;
|
|
1607
|
-
keyChainId?: string;
|
|
1643
|
+
/**
|
|
1644
|
+
* Subresource Integrity hash for the schema
|
|
1645
|
+
*/
|
|
1646
|
+
integrity?: string;
|
|
1608
1647
|
};
|
|
1609
|
-
type
|
|
1648
|
+
type TrustAuthorityDto = {
|
|
1610
1649
|
/**
|
|
1611
|
-
* Unique identifier for
|
|
1650
|
+
* Unique identifier for this trust authority entry
|
|
1612
1651
|
*/
|
|
1613
1652
|
id: string;
|
|
1614
|
-
description?: string;
|
|
1615
1653
|
/**
|
|
1616
|
-
*
|
|
1654
|
+
* Type of trust framework
|
|
1617
1655
|
*/
|
|
1618
|
-
|
|
1656
|
+
frameworkType: 'etsi_tl';
|
|
1619
1657
|
/**
|
|
1620
|
-
*
|
|
1658
|
+
* URI or identifier for the trust list / authority
|
|
1621
1659
|
*/
|
|
1622
|
-
|
|
1623
|
-
keyChainId: string;
|
|
1624
|
-
keyChain: KeyChainEntity;
|
|
1660
|
+
value: string;
|
|
1625
1661
|
/**
|
|
1626
|
-
*
|
|
1662
|
+
* Verification method for the trust list signature (e.g., JWK)
|
|
1627
1663
|
*/
|
|
1628
|
-
|
|
1664
|
+
verificationMethod?: {
|
|
1629
1665
|
[key: string]: unknown;
|
|
1630
1666
|
};
|
|
1667
|
+
};
|
|
1668
|
+
type AccessCertificateRefDto = {
|
|
1669
|
+
id: string;
|
|
1670
|
+
relyingPartyId: string;
|
|
1671
|
+
certificate: string;
|
|
1672
|
+
revoked: string;
|
|
1673
|
+
createdAt: string;
|
|
1674
|
+
};
|
|
1675
|
+
type SchemaMetadataResponseDto = {
|
|
1631
1676
|
/**
|
|
1632
|
-
* The
|
|
1633
|
-
* Stored for round-tripping when editing.
|
|
1677
|
+
* The unique, server-assigned identifier (UUID) for the schema metadata
|
|
1634
1678
|
*/
|
|
1635
|
-
|
|
1636
|
-
[key: string]: unknown;
|
|
1637
|
-
}>;
|
|
1679
|
+
id: string;
|
|
1638
1680
|
/**
|
|
1639
|
-
*
|
|
1681
|
+
* Version of this schema metadata (SemVer)
|
|
1640
1682
|
*/
|
|
1641
|
-
|
|
1683
|
+
version: string;
|
|
1642
1684
|
/**
|
|
1643
|
-
*
|
|
1685
|
+
* URI of the human-readable Rulebook document
|
|
1644
1686
|
*/
|
|
1645
|
-
|
|
1646
|
-
createdAt: string;
|
|
1647
|
-
updatedAt: string;
|
|
1648
|
-
};
|
|
1649
|
-
type TrustListVersion = {
|
|
1650
|
-
id: string;
|
|
1651
|
-
trustListId: string;
|
|
1652
|
-
trustList: TrustList;
|
|
1653
|
-
tenantId: string;
|
|
1687
|
+
rulebookURI?: string;
|
|
1654
1688
|
/**
|
|
1655
|
-
*
|
|
1689
|
+
* Subresource Integrity hash for the rulebook URI
|
|
1656
1690
|
*/
|
|
1657
|
-
|
|
1691
|
+
rulebookIntegrity?: string;
|
|
1658
1692
|
/**
|
|
1659
|
-
*
|
|
1693
|
+
* Level of security (LoS) of this attestation
|
|
1660
1694
|
*/
|
|
1661
|
-
|
|
1662
|
-
[key: string]: unknown;
|
|
1663
|
-
};
|
|
1695
|
+
attestationLoS: 'iso_18045_high' | 'iso_18045_moderate' | 'iso_18045_enhanced-basic' | 'iso_18045_basic';
|
|
1664
1696
|
/**
|
|
1665
|
-
*
|
|
1697
|
+
* Required binding type between attestation and holder
|
|
1666
1698
|
*/
|
|
1667
|
-
|
|
1668
|
-
|
|
1699
|
+
bindingType: 'claim' | 'key' | 'biometric' | 'none';
|
|
1700
|
+
/**
|
|
1701
|
+
* Credential formats in which this attestation is available
|
|
1702
|
+
*/
|
|
1703
|
+
supportedFormats: Array<'dc+sd-jwt' | 'mso_mdoc'>;
|
|
1704
|
+
/**
|
|
1705
|
+
* Format-specific schema URIs for this schema metadata
|
|
1706
|
+
*/
|
|
1707
|
+
schemaURIs: Array<MetadataSchemaDto>;
|
|
1708
|
+
/**
|
|
1709
|
+
* Trust frameworks / trust anchors applicable to this schema metadata
|
|
1710
|
+
*/
|
|
1711
|
+
trustedAuthorities: Array<TrustAuthorityDto>;
|
|
1712
|
+
/**
|
|
1713
|
+
* Domain category for filtering
|
|
1714
|
+
*/
|
|
1715
|
+
category?: 'identity' | 'health' | 'finance' | 'education' | 'mobility' | 'employment' | 'other';
|
|
1716
|
+
/**
|
|
1717
|
+
* Free-form tags for filtering and search
|
|
1718
|
+
*/
|
|
1719
|
+
tags?: Array<string>;
|
|
1720
|
+
/**
|
|
1721
|
+
* The original signed JWT
|
|
1722
|
+
*/
|
|
1723
|
+
signedJwt: string;
|
|
1724
|
+
/**
|
|
1725
|
+
* Issuer from the JWT (`iss` claim)
|
|
1726
|
+
*/
|
|
1727
|
+
issuer: string;
|
|
1728
|
+
/**
|
|
1729
|
+
* Serial number of the access certificate that signed this schema metadata
|
|
1730
|
+
*/
|
|
1731
|
+
signerCertificateSerial: string;
|
|
1732
|
+
/**
|
|
1733
|
+
* The access certificate used to sign this schema metadata
|
|
1734
|
+
*/
|
|
1735
|
+
signerCertificate?: AccessCertificateRefDto;
|
|
1736
|
+
/**
|
|
1737
|
+
* Timestamp when the JWT was issued (from the `iat` claim)
|
|
1738
|
+
*/
|
|
1739
|
+
issuedAt: string;
|
|
1740
|
+
/**
|
|
1741
|
+
* Server creation timestamp
|
|
1742
|
+
*/
|
|
1743
|
+
createdAt: string;
|
|
1744
|
+
/**
|
|
1745
|
+
* Last update timestamp
|
|
1746
|
+
*/
|
|
1747
|
+
updatedAt: string;
|
|
1748
|
+
/**
|
|
1749
|
+
* Whether this version is deprecated
|
|
1750
|
+
*/
|
|
1751
|
+
deprecated?: boolean;
|
|
1752
|
+
/**
|
|
1753
|
+
* Deprecation message shown to consumers
|
|
1754
|
+
*/
|
|
1755
|
+
deprecationMessage?: string;
|
|
1756
|
+
/**
|
|
1757
|
+
* The version that supersedes this one
|
|
1758
|
+
*/
|
|
1759
|
+
supersededByVersion?: string;
|
|
1760
|
+
};
|
|
1761
|
+
type UpdateSchemaMetadataDto = {
|
|
1762
|
+
/**
|
|
1763
|
+
* Domain category for filtering
|
|
1764
|
+
*/
|
|
1765
|
+
category?: 'identity' | 'health' | 'finance' | 'education' | 'mobility' | 'employment' | 'other';
|
|
1766
|
+
/**
|
|
1767
|
+
* Predefined tags for filtering and search
|
|
1768
|
+
*/
|
|
1769
|
+
tags?: Array<'pid' | 'eudi' | 'kyc' | 'aml' | 'age-verification' | 'residency' | 'membership' | 'education' | 'employment' | 'mobility'>;
|
|
1770
|
+
};
|
|
1771
|
+
type DeprecateSchemaMetadataDto = {
|
|
1772
|
+
/**
|
|
1773
|
+
* Whether to mark this version as deprecated
|
|
1774
|
+
*/
|
|
1775
|
+
deprecated: boolean;
|
|
1776
|
+
/**
|
|
1777
|
+
* Deprecation message shown to consumers
|
|
1778
|
+
*/
|
|
1779
|
+
message?: string;
|
|
1780
|
+
/**
|
|
1781
|
+
* The version that supersedes this one
|
|
1782
|
+
*/
|
|
1783
|
+
supersededByVersion?: string;
|
|
1784
|
+
};
|
|
1785
|
+
type CreateAttributeProviderDto = {
|
|
1786
|
+
auth: WebHookAuthConfigNone | WebHookAuthConfigHeader;
|
|
1787
|
+
id: string;
|
|
1788
|
+
name: string;
|
|
1789
|
+
description?: string;
|
|
1790
|
+
url: string;
|
|
1791
|
+
};
|
|
1792
|
+
type UpdateAttributeProviderDto = {
|
|
1793
|
+
auth?: WebHookAuthConfigNone | WebHookAuthConfigHeader;
|
|
1794
|
+
id?: string;
|
|
1795
|
+
name?: string;
|
|
1796
|
+
description?: string;
|
|
1797
|
+
url?: string;
|
|
1798
|
+
};
|
|
1799
|
+
type CreateWebhookEndpointDto = {
|
|
1800
|
+
/**
|
|
1801
|
+
* Unique identifier for the webhook endpoint
|
|
1802
|
+
*/
|
|
1803
|
+
id: string;
|
|
1804
|
+
auth: WebHookAuthConfigNone | WebHookAuthConfigHeader;
|
|
1805
|
+
name: string;
|
|
1806
|
+
description?: string;
|
|
1807
|
+
url: string;
|
|
1808
|
+
};
|
|
1809
|
+
type UpdateWebhookEndpointDto = {
|
|
1810
|
+
/**
|
|
1811
|
+
* Unique identifier for the webhook endpoint
|
|
1812
|
+
*/
|
|
1813
|
+
id?: string;
|
|
1814
|
+
auth?: WebHookAuthConfigNone | WebHookAuthConfigHeader;
|
|
1815
|
+
name?: string;
|
|
1816
|
+
description?: string;
|
|
1817
|
+
url?: string;
|
|
1818
|
+
};
|
|
1819
|
+
type TrustListEntityInfo = {
|
|
1820
|
+
name: string;
|
|
1821
|
+
lang?: string;
|
|
1822
|
+
uri?: string;
|
|
1823
|
+
country?: string;
|
|
1824
|
+
locality?: string;
|
|
1825
|
+
postalCode?: string;
|
|
1826
|
+
streetAddress?: string;
|
|
1827
|
+
contactUri?: string;
|
|
1828
|
+
};
|
|
1829
|
+
type InternalTrustListEntity = {
|
|
1830
|
+
type: 'internal';
|
|
1831
|
+
issuerKeyChainId: string;
|
|
1832
|
+
revocationKeyChainId: string;
|
|
1833
|
+
info: TrustListEntityInfo;
|
|
1834
|
+
};
|
|
1835
|
+
type ExternalTrustListEntity = {
|
|
1836
|
+
type: 'external';
|
|
1837
|
+
issuerCertPem: string;
|
|
1838
|
+
revocationCertPem: string;
|
|
1839
|
+
info: TrustListEntityInfo;
|
|
1840
|
+
};
|
|
1841
|
+
type TrustListCreateDto = {
|
|
1842
|
+
description?: string;
|
|
1843
|
+
/**
|
|
1844
|
+
* The full trust list JSON (generated LoTE structure)
|
|
1845
|
+
*/
|
|
1846
|
+
data?: {
|
|
1847
|
+
[key: string]: unknown;
|
|
1848
|
+
};
|
|
1849
|
+
entities: Array<({
|
|
1850
|
+
type: 'internal';
|
|
1851
|
+
} & InternalTrustListEntity) | ({
|
|
1852
|
+
type: 'external';
|
|
1853
|
+
} & ExternalTrustListEntity)>;
|
|
1854
|
+
id?: string;
|
|
1855
|
+
keyChainId?: string;
|
|
1856
|
+
};
|
|
1857
|
+
type TrustList = {
|
|
1858
|
+
/**
|
|
1859
|
+
* Unique identifier for the trust list
|
|
1860
|
+
*/
|
|
1861
|
+
id: string;
|
|
1862
|
+
description?: string;
|
|
1863
|
+
/**
|
|
1864
|
+
* The tenant ID for which the VP request is made.
|
|
1865
|
+
*/
|
|
1866
|
+
tenantId: string;
|
|
1867
|
+
/**
|
|
1868
|
+
* The tenant that owns this object.
|
|
1869
|
+
*/
|
|
1870
|
+
tenant: TenantEntity;
|
|
1871
|
+
keyChainId: string;
|
|
1872
|
+
keyChain: KeyChainEntity;
|
|
1873
|
+
/**
|
|
1874
|
+
* The full trust list JSON (generated LoTE structure)
|
|
1875
|
+
*/
|
|
1876
|
+
data?: {
|
|
1877
|
+
[key: string]: unknown;
|
|
1878
|
+
};
|
|
1879
|
+
/**
|
|
1880
|
+
* The original entity configuration used to create this trust list.
|
|
1881
|
+
* Stored for round-tripping when editing.
|
|
1882
|
+
*/
|
|
1883
|
+
entityConfig?: Array<{
|
|
1884
|
+
[key: string]: unknown;
|
|
1885
|
+
}>;
|
|
1886
|
+
/**
|
|
1887
|
+
* The sequence number for versioning (incremented on updates)
|
|
1888
|
+
*/
|
|
1889
|
+
sequenceNumber: number;
|
|
1890
|
+
/**
|
|
1891
|
+
* The signed JWT representation of this trust list
|
|
1892
|
+
*/
|
|
1893
|
+
jwt: string;
|
|
1894
|
+
createdAt: string;
|
|
1895
|
+
updatedAt: string;
|
|
1896
|
+
};
|
|
1897
|
+
type TrustListVersion = {
|
|
1898
|
+
id: string;
|
|
1899
|
+
trustListId: string;
|
|
1900
|
+
trustList: TrustList;
|
|
1901
|
+
tenantId: string;
|
|
1902
|
+
/**
|
|
1903
|
+
* The sequence number at the time this version was created
|
|
1904
|
+
*/
|
|
1905
|
+
sequenceNumber: number;
|
|
1906
|
+
/**
|
|
1907
|
+
* The full trust list JSON at this version
|
|
1908
|
+
*/
|
|
1909
|
+
data: {
|
|
1910
|
+
[key: string]: unknown;
|
|
1911
|
+
};
|
|
1912
|
+
/**
|
|
1913
|
+
* The entity configuration at this version
|
|
1914
|
+
*/
|
|
1915
|
+
entityConfig?: {
|
|
1916
|
+
[key: string]: unknown;
|
|
1669
1917
|
};
|
|
1670
1918
|
/**
|
|
1671
1919
|
* The signed JWT at this version
|
|
@@ -1897,292 +2145,99 @@ type RegistrationCertificateDefaults = {
|
|
|
1897
2145
|
};
|
|
1898
2146
|
type RegistrarConfigResponseDto = {
|
|
1899
2147
|
/**
|
|
1900
|
-
* The base URL of the registrar API
|
|
1901
|
-
*/
|
|
1902
|
-
registrarUrl: string;
|
|
1903
|
-
/**
|
|
1904
|
-
* The OIDC issuer URL for authentication (e.g., Keycloak realm URL)
|
|
1905
|
-
*/
|
|
1906
|
-
oidcUrl: string;
|
|
1907
|
-
/**
|
|
1908
|
-
* The OIDC client ID for the registrar
|
|
1909
|
-
*/
|
|
1910
|
-
clientId: string;
|
|
1911
|
-
/**
|
|
1912
|
-
* The OIDC client secret (optional, for confidential clients)
|
|
1913
|
-
*/
|
|
1914
|
-
clientSecret?: string;
|
|
1915
|
-
/**
|
|
1916
|
-
* The username for OIDC login
|
|
1917
|
-
*/
|
|
1918
|
-
username: string;
|
|
1919
|
-
/**
|
|
1920
|
-
* Optional default values merged into registration certificate creation requests (for example privacy_policy, support_uri)
|
|
1921
|
-
*/
|
|
1922
|
-
registrationCertificateDefaults?: RegistrationCertificateDefaults;
|
|
1923
|
-
/**
|
|
1924
|
-
* Indicates whether a password is configured (actual password is never returned)
|
|
1925
|
-
*/
|
|
1926
|
-
hasPassword: boolean;
|
|
1927
|
-
};
|
|
1928
|
-
type CreateRegistrarConfigDto = {
|
|
1929
|
-
/**
|
|
1930
|
-
* The base URL of the registrar API
|
|
1931
|
-
*/
|
|
1932
|
-
registrarUrl: string;
|
|
1933
|
-
/**
|
|
1934
|
-
* The OIDC issuer URL for authentication (e.g., Keycloak realm URL)
|
|
1935
|
-
*/
|
|
1936
|
-
oidcUrl: string;
|
|
1937
|
-
/**
|
|
1938
|
-
* The OIDC client ID for the registrar
|
|
1939
|
-
*/
|
|
1940
|
-
clientId: string;
|
|
1941
|
-
/**
|
|
1942
|
-
* The OIDC client secret (optional, for confidential clients)
|
|
1943
|
-
*/
|
|
1944
|
-
clientSecret?: string;
|
|
1945
|
-
/**
|
|
1946
|
-
* The username for OIDC login
|
|
1947
|
-
*/
|
|
1948
|
-
username: string;
|
|
1949
|
-
/**
|
|
1950
|
-
* The password for OIDC login (stored in plaintext)
|
|
1951
|
-
*/
|
|
1952
|
-
password: string;
|
|
1953
|
-
/**
|
|
1954
|
-
* Optional default values merged into registration certificate creation requests (for example privacy_policy, support_uri)
|
|
1955
|
-
*/
|
|
1956
|
-
registrationCertificateDefaults?: RegistrationCertificateDefaults;
|
|
1957
|
-
};
|
|
1958
|
-
type UpdateRegistrarConfigDto = {
|
|
1959
|
-
/**
|
|
1960
|
-
* The base URL of the registrar API
|
|
1961
|
-
*/
|
|
1962
|
-
registrarUrl?: string;
|
|
1963
|
-
/**
|
|
1964
|
-
* The OIDC issuer URL for authentication (e.g., Keycloak realm URL)
|
|
1965
|
-
*/
|
|
1966
|
-
oidcUrl?: string;
|
|
1967
|
-
/**
|
|
1968
|
-
* The OIDC client ID for the registrar
|
|
1969
|
-
*/
|
|
1970
|
-
clientId?: string;
|
|
1971
|
-
/**
|
|
1972
|
-
* The OIDC client secret (optional, for confidential clients)
|
|
1973
|
-
*/
|
|
1974
|
-
clientSecret?: string;
|
|
1975
|
-
/**
|
|
1976
|
-
* The username for OIDC login
|
|
1977
|
-
*/
|
|
1978
|
-
username?: string;
|
|
1979
|
-
/**
|
|
1980
|
-
* The password for OIDC login (stored in plaintext)
|
|
1981
|
-
*/
|
|
1982
|
-
password?: string;
|
|
1983
|
-
/**
|
|
1984
|
-
* Optional default values merged into registration certificate creation requests (for example privacy_policy, support_uri)
|
|
1985
|
-
*/
|
|
1986
|
-
registrationCertificateDefaults?: RegistrationCertificateDefaults;
|
|
1987
|
-
};
|
|
1988
|
-
type CreateAccessCertificateDto = {
|
|
1989
|
-
/**
|
|
1990
|
-
* The ID of the key to create an access certificate for
|
|
1991
|
-
*/
|
|
1992
|
-
keyId: string;
|
|
1993
|
-
};
|
|
1994
|
-
type VocabularyEntryDto = {
|
|
1995
|
-
/**
|
|
1996
|
-
* Stable machine-readable value to submit in schema metadata category/tags fields.
|
|
1997
|
-
*/
|
|
1998
|
-
code: string;
|
|
1999
|
-
/**
|
|
2000
|
-
* Display label for UI rendering.
|
|
2001
|
-
*/
|
|
2002
|
-
label: string;
|
|
2003
|
-
/**
|
|
2004
|
-
* Vocabulary lifecycle status.
|
|
2005
|
-
*/
|
|
2006
|
-
status: "active" | "deprecated";
|
|
2007
|
-
/**
|
|
2008
|
-
* Replacement code when status is deprecated.
|
|
2009
|
-
*/
|
|
2010
|
-
replacedBy?: string;
|
|
2011
|
-
};
|
|
2012
|
-
type SchemaMetadataVocabulariesDto = {
|
|
2013
|
-
/**
|
|
2014
|
-
* Vocabulary publication version for cache invalidation.
|
|
2015
|
-
*/
|
|
2016
|
-
version: string;
|
|
2017
|
-
/**
|
|
2018
|
-
* Allowed category values that can be used when updating schema metadata category.
|
|
2019
|
-
*/
|
|
2020
|
-
categories: Array<VocabularyEntryDto>;
|
|
2021
|
-
/**
|
|
2022
|
-
* Allowed tag values that can be used when updating schema metadata tags.
|
|
2023
|
-
*/
|
|
2024
|
-
tags: Array<VocabularyEntryDto>;
|
|
2025
|
-
};
|
|
2026
|
-
type MetadataSchemaDto = {
|
|
2027
|
-
/**
|
|
2028
|
-
* Unique identifier for this schema entry
|
|
2029
|
-
*/
|
|
2030
|
-
id: string;
|
|
2031
|
-
/**
|
|
2032
|
-
* The credential format identifier
|
|
2033
|
-
*/
|
|
2034
|
-
formatIdentifier: "dc+sd-jwt" | "mso_mdoc";
|
|
2035
|
-
/**
|
|
2036
|
-
* URI to the schema definition
|
|
2037
|
-
*/
|
|
2038
|
-
uri?: string;
|
|
2039
|
-
/**
|
|
2040
|
-
* Inline schema content (JSON Schema)
|
|
2041
|
-
*/
|
|
2042
|
-
schemaContent?: {
|
|
2043
|
-
[key: string]: unknown;
|
|
2044
|
-
};
|
|
2045
|
-
/**
|
|
2046
|
-
* Subresource Integrity hash for the schema
|
|
2047
|
-
*/
|
|
2048
|
-
integrity?: string;
|
|
2049
|
-
};
|
|
2050
|
-
type TrustAuthorityDto = {
|
|
2051
|
-
/**
|
|
2052
|
-
* Unique identifier for this trust authority entry
|
|
2053
|
-
*/
|
|
2054
|
-
id: string;
|
|
2055
|
-
/**
|
|
2056
|
-
* Type of trust framework
|
|
2057
|
-
*/
|
|
2058
|
-
frameworkType: "etsi_tl";
|
|
2059
|
-
/**
|
|
2060
|
-
* URI or identifier for the trust list / authority
|
|
2061
|
-
*/
|
|
2062
|
-
value: string;
|
|
2063
|
-
/**
|
|
2064
|
-
* Verification method for the trust list signature (e.g., JWK)
|
|
2065
|
-
*/
|
|
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 = {
|
|
2078
|
-
/**
|
|
2079
|
-
* The unique, server-assigned identifier (UUID) for the schema metadata
|
|
2080
|
-
*/
|
|
2081
|
-
id: string;
|
|
2082
|
-
/**
|
|
2083
|
-
* Version of this schema metadata (SemVer)
|
|
2084
|
-
*/
|
|
2085
|
-
version: string;
|
|
2086
|
-
/**
|
|
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
|
|
2148
|
+
* The base URL of the registrar API
|
|
2096
2149
|
*/
|
|
2097
|
-
|
|
2150
|
+
registrarUrl: string;
|
|
2098
2151
|
/**
|
|
2099
|
-
*
|
|
2152
|
+
* The OIDC issuer URL for authentication (e.g., Keycloak realm URL)
|
|
2100
2153
|
*/
|
|
2101
|
-
|
|
2154
|
+
oidcUrl: string;
|
|
2102
2155
|
/**
|
|
2103
|
-
*
|
|
2156
|
+
* The OIDC client ID for the registrar
|
|
2104
2157
|
*/
|
|
2105
|
-
|
|
2158
|
+
clientId: string;
|
|
2106
2159
|
/**
|
|
2107
|
-
*
|
|
2160
|
+
* The OIDC client secret (optional, for confidential clients)
|
|
2108
2161
|
*/
|
|
2109
|
-
|
|
2162
|
+
clientSecret?: string;
|
|
2110
2163
|
/**
|
|
2111
|
-
*
|
|
2164
|
+
* The username for OIDC login
|
|
2112
2165
|
*/
|
|
2113
|
-
|
|
2166
|
+
username: string;
|
|
2114
2167
|
/**
|
|
2115
|
-
*
|
|
2168
|
+
* Optional default values merged into registration certificate creation requests (for example privacy_policy, support_uri)
|
|
2116
2169
|
*/
|
|
2117
|
-
|
|
2170
|
+
registrationCertificateDefaults?: RegistrationCertificateDefaults;
|
|
2118
2171
|
/**
|
|
2119
|
-
*
|
|
2172
|
+
* Indicates whether a password is configured (actual password is never returned)
|
|
2120
2173
|
*/
|
|
2121
|
-
|
|
2174
|
+
hasPassword: boolean;
|
|
2175
|
+
};
|
|
2176
|
+
type CreateRegistrarConfigDto = {
|
|
2122
2177
|
/**
|
|
2123
|
-
* The
|
|
2178
|
+
* The base URL of the registrar API
|
|
2124
2179
|
*/
|
|
2125
|
-
|
|
2180
|
+
registrarUrl: string;
|
|
2126
2181
|
/**
|
|
2127
|
-
*
|
|
2182
|
+
* The OIDC issuer URL for authentication (e.g., Keycloak realm URL)
|
|
2128
2183
|
*/
|
|
2129
|
-
|
|
2184
|
+
oidcUrl: string;
|
|
2130
2185
|
/**
|
|
2131
|
-
*
|
|
2186
|
+
* The OIDC client ID for the registrar
|
|
2132
2187
|
*/
|
|
2133
|
-
|
|
2188
|
+
clientId: string;
|
|
2134
2189
|
/**
|
|
2135
|
-
* The
|
|
2190
|
+
* The OIDC client secret (optional, for confidential clients)
|
|
2136
2191
|
*/
|
|
2137
|
-
|
|
2192
|
+
clientSecret?: string;
|
|
2138
2193
|
/**
|
|
2139
|
-
*
|
|
2194
|
+
* The username for OIDC login
|
|
2140
2195
|
*/
|
|
2141
|
-
|
|
2196
|
+
username: string;
|
|
2142
2197
|
/**
|
|
2143
|
-
*
|
|
2198
|
+
* The password for OIDC login (stored in plaintext)
|
|
2144
2199
|
*/
|
|
2145
|
-
|
|
2200
|
+
password: string;
|
|
2146
2201
|
/**
|
|
2147
|
-
*
|
|
2202
|
+
* Optional default values merged into registration certificate creation requests (for example privacy_policy, support_uri)
|
|
2148
2203
|
*/
|
|
2149
|
-
|
|
2204
|
+
registrationCertificateDefaults?: RegistrationCertificateDefaults;
|
|
2205
|
+
};
|
|
2206
|
+
type UpdateRegistrarConfigDto = {
|
|
2150
2207
|
/**
|
|
2151
|
-
*
|
|
2208
|
+
* The base URL of the registrar API
|
|
2152
2209
|
*/
|
|
2153
|
-
|
|
2210
|
+
registrarUrl?: string;
|
|
2154
2211
|
/**
|
|
2155
|
-
*
|
|
2212
|
+
* The OIDC issuer URL for authentication (e.g., Keycloak realm URL)
|
|
2156
2213
|
*/
|
|
2157
|
-
|
|
2214
|
+
oidcUrl?: string;
|
|
2158
2215
|
/**
|
|
2159
|
-
* The
|
|
2216
|
+
* The OIDC client ID for the registrar
|
|
2160
2217
|
*/
|
|
2161
|
-
|
|
2162
|
-
};
|
|
2163
|
-
type UpdateSchemaMetadataDto = {
|
|
2218
|
+
clientId?: string;
|
|
2164
2219
|
/**
|
|
2165
|
-
*
|
|
2220
|
+
* The OIDC client secret (optional, for confidential clients)
|
|
2166
2221
|
*/
|
|
2167
|
-
|
|
2222
|
+
clientSecret?: string;
|
|
2168
2223
|
/**
|
|
2169
|
-
*
|
|
2224
|
+
* The username for OIDC login
|
|
2170
2225
|
*/
|
|
2171
|
-
|
|
2172
|
-
};
|
|
2173
|
-
type DeprecateSchemaMetadataDto = {
|
|
2226
|
+
username?: string;
|
|
2174
2227
|
/**
|
|
2175
|
-
*
|
|
2228
|
+
* The password for OIDC login (stored in plaintext)
|
|
2176
2229
|
*/
|
|
2177
|
-
|
|
2230
|
+
password?: string;
|
|
2178
2231
|
/**
|
|
2179
|
-
*
|
|
2232
|
+
* Optional default values merged into registration certificate creation requests (for example privacy_policy, support_uri)
|
|
2180
2233
|
*/
|
|
2181
|
-
|
|
2234
|
+
registrationCertificateDefaults?: RegistrationCertificateDefaults;
|
|
2235
|
+
};
|
|
2236
|
+
type CreateAccessCertificateDto = {
|
|
2182
2237
|
/**
|
|
2183
|
-
* The
|
|
2238
|
+
* The ID of the key to create an access certificate for
|
|
2184
2239
|
*/
|
|
2185
|
-
|
|
2240
|
+
keyId: string;
|
|
2186
2241
|
};
|
|
2187
2242
|
type DeferredCredentialRequestDto = {
|
|
2188
2243
|
/**
|
|
@@ -2192,9 +2247,7 @@ type DeferredCredentialRequestDto = {
|
|
|
2192
2247
|
};
|
|
2193
2248
|
type NotificationRequestDto = {
|
|
2194
2249
|
notification_id: string;
|
|
2195
|
-
event:
|
|
2196
|
-
[key: string]: unknown;
|
|
2197
|
-
};
|
|
2250
|
+
event: 'credential_accepted' | 'credential_failure' | 'credential_deleted';
|
|
2198
2251
|
};
|
|
2199
2252
|
type Object$1 = {
|
|
2200
2253
|
[key: string]: unknown;
|
|
@@ -2399,7 +2452,7 @@ type DeferredOperationResponse = {
|
|
|
2399
2452
|
/**
|
|
2400
2453
|
* The new status of the transaction
|
|
2401
2454
|
*/
|
|
2402
|
-
status:
|
|
2455
|
+
status: 'pending' | 'ready' | 'retrieved' | 'expired' | 'failed';
|
|
2403
2456
|
/**
|
|
2404
2457
|
* Optional message
|
|
2405
2458
|
*/
|
|
@@ -2472,6 +2525,14 @@ type KmsProviderCapabilitiesDto = {
|
|
|
2472
2525
|
* Whether the provider supports deleting keys.
|
|
2473
2526
|
*/
|
|
2474
2527
|
canDelete: boolean;
|
|
2528
|
+
/**
|
|
2529
|
+
* Signing algorithms supported by the provider.
|
|
2530
|
+
*/
|
|
2531
|
+
supportedAlgs: Array<string>;
|
|
2532
|
+
/**
|
|
2533
|
+
* Default signing algorithm used when caller does not specify one.
|
|
2534
|
+
*/
|
|
2535
|
+
defaultAlg: string;
|
|
2475
2536
|
};
|
|
2476
2537
|
type KmsProviderInfoDto = {
|
|
2477
2538
|
/**
|
|
@@ -2571,11 +2632,11 @@ type KeyChainResponseDto = {
|
|
|
2571
2632
|
/**
|
|
2572
2633
|
* Usage type of the key chain.
|
|
2573
2634
|
*/
|
|
2574
|
-
usageType:
|
|
2635
|
+
usageType: 'access' | 'attestation' | 'trustList' | 'statusList' | 'encrypt';
|
|
2575
2636
|
/**
|
|
2576
2637
|
* Type of key chain (standalone or internalChain).
|
|
2577
2638
|
*/
|
|
2578
|
-
type:
|
|
2639
|
+
type: 'standalone' | 'internalChain';
|
|
2579
2640
|
/**
|
|
2580
2641
|
* Human-readable description.
|
|
2581
2642
|
*/
|
|
@@ -2677,7 +2738,7 @@ type KeyChainExportDto = {
|
|
|
2677
2738
|
/**
|
|
2678
2739
|
* Usage type for this key chain.
|
|
2679
2740
|
*/
|
|
2680
|
-
usageType:
|
|
2741
|
+
usageType: 'access' | 'attestation' | 'trustList' | 'statusList' | 'encrypt';
|
|
2681
2742
|
/**
|
|
2682
2743
|
* The private key in JWK format (EC).
|
|
2683
2744
|
*/
|
|
@@ -2713,11 +2774,11 @@ type KeyChainCreateDto = {
|
|
|
2713
2774
|
/**
|
|
2714
2775
|
* Usage type determines the purpose of this key chain (access, attestation, etc.).
|
|
2715
2776
|
*/
|
|
2716
|
-
usageType:
|
|
2777
|
+
usageType: 'access' | 'attestation' | 'trustList' | 'statusList' | 'encrypt';
|
|
2717
2778
|
/**
|
|
2718
2779
|
* Type of key chain to create.
|
|
2719
2780
|
*/
|
|
2720
|
-
type:
|
|
2781
|
+
type: 'standalone' | 'internalChain';
|
|
2721
2782
|
/**
|
|
2722
2783
|
* Human-readable description for the key chain.
|
|
2723
2784
|
*/
|
|
@@ -2770,7 +2831,7 @@ type KeyChainImportDto = {
|
|
|
2770
2831
|
/**
|
|
2771
2832
|
* Usage type for this key chain.
|
|
2772
2833
|
*/
|
|
2773
|
-
usageType:
|
|
2834
|
+
usageType: 'access' | 'attestation' | 'trustList' | 'statusList' | 'encrypt';
|
|
2774
2835
|
/**
|
|
2775
2836
|
* Certificate chain in PEM format (leaf first, then intermediates/CA).
|
|
2776
2837
|
*/
|
|
@@ -2816,7 +2877,7 @@ type PresentationRequest = {
|
|
|
2816
2877
|
/**
|
|
2817
2878
|
* The type of response expected from the presentation request.
|
|
2818
2879
|
*/
|
|
2819
|
-
response_type:
|
|
2880
|
+
response_type: 'uri' | 'dc-api';
|
|
2820
2881
|
/**
|
|
2821
2882
|
* Identifier of the presentation configuration
|
|
2822
2883
|
*/
|
|
@@ -2831,6 +2892,11 @@ type PresentationRequest = {
|
|
|
2831
2892
|
* You can use the `{sessionId}` placeholder in the URI, which will be replaced with the actual session ID.
|
|
2832
2893
|
*/
|
|
2833
2894
|
redirectUri?: string;
|
|
2895
|
+
/**
|
|
2896
|
+
* Optional expected browser origin for DC API key-binding audience.
|
|
2897
|
+
* Example: "http://localhost:8080"
|
|
2898
|
+
*/
|
|
2899
|
+
expected_origin?: string;
|
|
2834
2900
|
/**
|
|
2835
2901
|
* Optional transaction data to include in the OID4VP request.
|
|
2836
2902
|
* If provided, this will override the transaction_data from the presentation configuration.
|
|
@@ -2905,7 +2971,7 @@ type AppControllerGetVersionData = {
|
|
|
2905
2971
|
body?: never;
|
|
2906
2972
|
path?: never;
|
|
2907
2973
|
query?: never;
|
|
2908
|
-
url:
|
|
2974
|
+
url: '/api/version';
|
|
2909
2975
|
};
|
|
2910
2976
|
type AppControllerGetVersionResponses = {
|
|
2911
2977
|
/**
|
|
@@ -2917,7 +2983,7 @@ type AppControllerGetFrontendConfigData = {
|
|
|
2917
2983
|
body?: never;
|
|
2918
2984
|
path?: never;
|
|
2919
2985
|
query?: never;
|
|
2920
|
-
url:
|
|
2986
|
+
url: '/api/frontend-config';
|
|
2921
2987
|
};
|
|
2922
2988
|
type AppControllerGetFrontendConfigResponses = {
|
|
2923
2989
|
/**
|
|
@@ -2930,7 +2996,7 @@ type AuthControllerGetOAuth2TokenData = {
|
|
|
2930
2996
|
body: ClientCredentialsDto;
|
|
2931
2997
|
path?: never;
|
|
2932
2998
|
query?: never;
|
|
2933
|
-
url:
|
|
2999
|
+
url: '/api/oauth2/token';
|
|
2934
3000
|
};
|
|
2935
3001
|
type AuthControllerGetOAuth2TokenErrors = {
|
|
2936
3002
|
/**
|
|
@@ -2949,7 +3015,7 @@ type TenantControllerGetTenantsData = {
|
|
|
2949
3015
|
body?: never;
|
|
2950
3016
|
path?: never;
|
|
2951
3017
|
query?: never;
|
|
2952
|
-
url:
|
|
3018
|
+
url: '/api/tenant';
|
|
2953
3019
|
};
|
|
2954
3020
|
type TenantControllerGetTenantsResponses = {
|
|
2955
3021
|
200: Array<TenantEntity>;
|
|
@@ -2959,7 +3025,7 @@ type TenantControllerInitTenantData = {
|
|
|
2959
3025
|
body: CreateTenantDto;
|
|
2960
3026
|
path?: never;
|
|
2961
3027
|
query?: never;
|
|
2962
|
-
url:
|
|
3028
|
+
url: '/api/tenant';
|
|
2963
3029
|
};
|
|
2964
3030
|
type TenantControllerInitTenantResponses = {
|
|
2965
3031
|
201: {
|
|
@@ -2973,7 +3039,7 @@ type TenantControllerDeleteTenantData = {
|
|
|
2973
3039
|
id: string;
|
|
2974
3040
|
};
|
|
2975
3041
|
query?: never;
|
|
2976
|
-
url:
|
|
3042
|
+
url: '/api/tenant/{id}';
|
|
2977
3043
|
};
|
|
2978
3044
|
type TenantControllerDeleteTenantResponses = {
|
|
2979
3045
|
200: unknown;
|
|
@@ -2984,7 +3050,7 @@ type TenantControllerGetTenantData = {
|
|
|
2984
3050
|
id: string;
|
|
2985
3051
|
};
|
|
2986
3052
|
query?: never;
|
|
2987
|
-
url:
|
|
3053
|
+
url: '/api/tenant/{id}';
|
|
2988
3054
|
};
|
|
2989
3055
|
type TenantControllerGetTenantResponses = {
|
|
2990
3056
|
200: TenantEntity;
|
|
@@ -2996,7 +3062,7 @@ type TenantControllerUpdateTenantData = {
|
|
|
2996
3062
|
id: string;
|
|
2997
3063
|
};
|
|
2998
3064
|
query?: never;
|
|
2999
|
-
url:
|
|
3065
|
+
url: '/api/tenant/{id}';
|
|
3000
3066
|
};
|
|
3001
3067
|
type TenantControllerUpdateTenantResponses = {
|
|
3002
3068
|
200: TenantEntity;
|
|
@@ -3011,7 +3077,7 @@ type AuditLogControllerGetAuditLogsData = {
|
|
|
3011
3077
|
*/
|
|
3012
3078
|
limit?: number;
|
|
3013
3079
|
};
|
|
3014
|
-
url:
|
|
3080
|
+
url: '/api/admin/audit-logs';
|
|
3015
3081
|
};
|
|
3016
3082
|
type AuditLogControllerGetAuditLogsResponses = {
|
|
3017
3083
|
200: Array<AuditLogResponseDto>;
|
|
@@ -3021,7 +3087,7 @@ type ClientControllerGetClientsData = {
|
|
|
3021
3087
|
body?: never;
|
|
3022
3088
|
path?: never;
|
|
3023
3089
|
query?: never;
|
|
3024
|
-
url:
|
|
3090
|
+
url: '/api/client';
|
|
3025
3091
|
};
|
|
3026
3092
|
type ClientControllerGetClientsResponses = {
|
|
3027
3093
|
200: Array<ClientEntity>;
|
|
@@ -3031,7 +3097,7 @@ type ClientControllerCreateClientData = {
|
|
|
3031
3097
|
body: CreateClientDto;
|
|
3032
3098
|
path?: never;
|
|
3033
3099
|
query?: never;
|
|
3034
|
-
url:
|
|
3100
|
+
url: '/api/client';
|
|
3035
3101
|
};
|
|
3036
3102
|
type ClientControllerCreateClientResponses = {
|
|
3037
3103
|
201: ClientEntity;
|
|
@@ -3043,7 +3109,7 @@ type ClientControllerDeleteClientData = {
|
|
|
3043
3109
|
id: string;
|
|
3044
3110
|
};
|
|
3045
3111
|
query?: never;
|
|
3046
|
-
url:
|
|
3112
|
+
url: '/api/client/{id}';
|
|
3047
3113
|
};
|
|
3048
3114
|
type ClientControllerDeleteClientResponses = {
|
|
3049
3115
|
200: unknown;
|
|
@@ -3054,7 +3120,7 @@ type ClientControllerGetClientData = {
|
|
|
3054
3120
|
id: string;
|
|
3055
3121
|
};
|
|
3056
3122
|
query?: never;
|
|
3057
|
-
url:
|
|
3123
|
+
url: '/api/client/{id}';
|
|
3058
3124
|
};
|
|
3059
3125
|
type ClientControllerGetClientResponses = {
|
|
3060
3126
|
200: ClientEntity;
|
|
@@ -3066,7 +3132,7 @@ type ClientControllerUpdateClientData = {
|
|
|
3066
3132
|
id: string;
|
|
3067
3133
|
};
|
|
3068
3134
|
query?: never;
|
|
3069
|
-
url:
|
|
3135
|
+
url: '/api/client/{id}';
|
|
3070
3136
|
};
|
|
3071
3137
|
type ClientControllerUpdateClientResponses = {
|
|
3072
3138
|
200: {
|
|
@@ -3080,7 +3146,7 @@ type ClientControllerGetClientSecretData = {
|
|
|
3080
3146
|
id: string;
|
|
3081
3147
|
};
|
|
3082
3148
|
query?: never;
|
|
3083
|
-
url:
|
|
3149
|
+
url: '/api/client/{id}/secret';
|
|
3084
3150
|
};
|
|
3085
3151
|
type ClientControllerGetClientSecretResponses = {
|
|
3086
3152
|
200: ClientSecretResponseDto;
|
|
@@ -3092,7 +3158,7 @@ type ClientControllerRotateClientSecretData = {
|
|
|
3092
3158
|
id: string;
|
|
3093
3159
|
};
|
|
3094
3160
|
query?: never;
|
|
3095
|
-
url:
|
|
3161
|
+
url: '/api/client/{id}/rotate-secret';
|
|
3096
3162
|
};
|
|
3097
3163
|
type ClientControllerRotateClientSecretResponses = {
|
|
3098
3164
|
201: ClientSecretResponseDto;
|
|
@@ -3102,7 +3168,7 @@ type StatusListConfigControllerResetConfigData = {
|
|
|
3102
3168
|
body?: never;
|
|
3103
3169
|
path?: never;
|
|
3104
3170
|
query?: never;
|
|
3105
|
-
url:
|
|
3171
|
+
url: '/api/status-list-config';
|
|
3106
3172
|
};
|
|
3107
3173
|
type StatusListConfigControllerResetConfigResponses = {
|
|
3108
3174
|
/**
|
|
@@ -3115,7 +3181,7 @@ type StatusListConfigControllerGetConfigData = {
|
|
|
3115
3181
|
body?: never;
|
|
3116
3182
|
path?: never;
|
|
3117
3183
|
query?: never;
|
|
3118
|
-
url:
|
|
3184
|
+
url: '/api/status-list-config';
|
|
3119
3185
|
};
|
|
3120
3186
|
type StatusListConfigControllerGetConfigResponses = {
|
|
3121
3187
|
/**
|
|
@@ -3128,7 +3194,7 @@ type StatusListConfigControllerUpdateConfigData = {
|
|
|
3128
3194
|
body: UpdateStatusListConfigDto;
|
|
3129
3195
|
path?: never;
|
|
3130
3196
|
query?: never;
|
|
3131
|
-
url:
|
|
3197
|
+
url: '/api/status-list-config';
|
|
3132
3198
|
};
|
|
3133
3199
|
type StatusListConfigControllerUpdateConfigResponses = {
|
|
3134
3200
|
/**
|
|
@@ -3141,7 +3207,7 @@ type StatusListManagementControllerGetListsData = {
|
|
|
3141
3207
|
body?: never;
|
|
3142
3208
|
path?: never;
|
|
3143
3209
|
query?: never;
|
|
3144
|
-
url:
|
|
3210
|
+
url: '/api/status-lists';
|
|
3145
3211
|
};
|
|
3146
3212
|
type StatusListManagementControllerGetListsResponses = {
|
|
3147
3213
|
/**
|
|
@@ -3154,7 +3220,7 @@ type StatusListManagementControllerCreateListData = {
|
|
|
3154
3220
|
body: CreateStatusListDto;
|
|
3155
3221
|
path?: never;
|
|
3156
3222
|
query?: never;
|
|
3157
|
-
url:
|
|
3223
|
+
url: '/api/status-lists';
|
|
3158
3224
|
};
|
|
3159
3225
|
type StatusListManagementControllerCreateListResponses = {
|
|
3160
3226
|
/**
|
|
@@ -3172,7 +3238,7 @@ type StatusListManagementControllerDeleteListData = {
|
|
|
3172
3238
|
listId: string;
|
|
3173
3239
|
};
|
|
3174
3240
|
query?: never;
|
|
3175
|
-
url:
|
|
3241
|
+
url: '/api/status-lists/{listId}';
|
|
3176
3242
|
};
|
|
3177
3243
|
type StatusListManagementControllerDeleteListResponses = {
|
|
3178
3244
|
/**
|
|
@@ -3190,7 +3256,7 @@ type StatusListManagementControllerGetListData = {
|
|
|
3190
3256
|
listId: string;
|
|
3191
3257
|
};
|
|
3192
3258
|
query?: never;
|
|
3193
|
-
url:
|
|
3259
|
+
url: '/api/status-lists/{listId}';
|
|
3194
3260
|
};
|
|
3195
3261
|
type StatusListManagementControllerGetListResponses = {
|
|
3196
3262
|
/**
|
|
@@ -3208,7 +3274,7 @@ type StatusListManagementControllerUpdateListData = {
|
|
|
3208
3274
|
listId: string;
|
|
3209
3275
|
};
|
|
3210
3276
|
query?: never;
|
|
3211
|
-
url:
|
|
3277
|
+
url: '/api/status-lists/{listId}';
|
|
3212
3278
|
};
|
|
3213
3279
|
type StatusListManagementControllerUpdateListResponses = {
|
|
3214
3280
|
/**
|
|
@@ -3220,11 +3286,36 @@ type StatusListManagementControllerUpdateListResponse = StatusListManagementCont
|
|
|
3220
3286
|
type SessionControllerGetAllSessionsData = {
|
|
3221
3287
|
body?: never;
|
|
3222
3288
|
path?: never;
|
|
3223
|
-
query?:
|
|
3224
|
-
|
|
3289
|
+
query?: {
|
|
3290
|
+
/**
|
|
3291
|
+
* Page number (1-based)
|
|
3292
|
+
*/
|
|
3293
|
+
page?: number;
|
|
3294
|
+
/**
|
|
3295
|
+
* Number of items per page
|
|
3296
|
+
*/
|
|
3297
|
+
pageSize?: number;
|
|
3298
|
+
/**
|
|
3299
|
+
* Filter by session status
|
|
3300
|
+
*/
|
|
3301
|
+
status?: 'active' | 'fetched' | 'completed' | 'expired' | 'failed';
|
|
3302
|
+
/**
|
|
3303
|
+
* Filter by session type
|
|
3304
|
+
*/
|
|
3305
|
+
type?: 'issuance' | 'presentation';
|
|
3306
|
+
/**
|
|
3307
|
+
* Field to sort by
|
|
3308
|
+
*/
|
|
3309
|
+
sortBy?: 'id' | 'status' | 'createdAt' | 'requestId';
|
|
3310
|
+
/**
|
|
3311
|
+
* Sort direction
|
|
3312
|
+
*/
|
|
3313
|
+
sortOrder?: 'asc' | 'desc';
|
|
3314
|
+
};
|
|
3315
|
+
url: '/api/session';
|
|
3225
3316
|
};
|
|
3226
3317
|
type SessionControllerGetAllSessionsResponses = {
|
|
3227
|
-
200:
|
|
3318
|
+
200: PaginatedSessionResponseDto;
|
|
3228
3319
|
};
|
|
3229
3320
|
type SessionControllerGetAllSessionsResponse = SessionControllerGetAllSessionsResponses[keyof SessionControllerGetAllSessionsResponses];
|
|
3230
3321
|
type SessionControllerDeleteSessionData = {
|
|
@@ -3233,7 +3324,7 @@ type SessionControllerDeleteSessionData = {
|
|
|
3233
3324
|
id: string;
|
|
3234
3325
|
};
|
|
3235
3326
|
query?: never;
|
|
3236
|
-
url:
|
|
3327
|
+
url: '/api/session/{id}';
|
|
3237
3328
|
};
|
|
3238
3329
|
type SessionControllerDeleteSessionResponses = {
|
|
3239
3330
|
200: unknown;
|
|
@@ -3247,7 +3338,7 @@ type SessionControllerGetSessionData = {
|
|
|
3247
3338
|
id: string;
|
|
3248
3339
|
};
|
|
3249
3340
|
query?: never;
|
|
3250
|
-
url:
|
|
3341
|
+
url: '/api/session/{id}';
|
|
3251
3342
|
};
|
|
3252
3343
|
type SessionControllerGetSessionResponses = {
|
|
3253
3344
|
200: Session;
|
|
@@ -3262,7 +3353,7 @@ type SessionControllerGetSessionLogsData = {
|
|
|
3262
3353
|
id: string;
|
|
3263
3354
|
};
|
|
3264
3355
|
query?: never;
|
|
3265
|
-
url:
|
|
3356
|
+
url: '/api/session/{id}/logs';
|
|
3266
3357
|
};
|
|
3267
3358
|
type SessionControllerGetSessionLogsResponses = {
|
|
3268
3359
|
200: Array<SessionLogEntryResponseDto>;
|
|
@@ -3272,7 +3363,7 @@ type SessionControllerRevokeAllData = {
|
|
|
3272
3363
|
body: StatusUpdateDto;
|
|
3273
3364
|
path?: never;
|
|
3274
3365
|
query?: never;
|
|
3275
|
-
url:
|
|
3366
|
+
url: '/api/session/revoke';
|
|
3276
3367
|
};
|
|
3277
3368
|
type SessionControllerRevokeAllResponses = {
|
|
3278
3369
|
201: unknown;
|
|
@@ -3281,7 +3372,7 @@ type SessionConfigControllerResetConfigData = {
|
|
|
3281
3372
|
body?: never;
|
|
3282
3373
|
path?: never;
|
|
3283
3374
|
query?: never;
|
|
3284
|
-
url:
|
|
3375
|
+
url: '/api/session-config';
|
|
3285
3376
|
};
|
|
3286
3377
|
type SessionConfigControllerResetConfigResponses = {
|
|
3287
3378
|
/**
|
|
@@ -3293,7 +3384,7 @@ type SessionConfigControllerGetConfigData = {
|
|
|
3293
3384
|
body?: never;
|
|
3294
3385
|
path?: never;
|
|
3295
3386
|
query?: never;
|
|
3296
|
-
url:
|
|
3387
|
+
url: '/api/session-config';
|
|
3297
3388
|
};
|
|
3298
3389
|
type SessionConfigControllerGetConfigResponses = {
|
|
3299
3390
|
/**
|
|
@@ -3306,7 +3397,7 @@ type SessionConfigControllerUpdateConfigData = {
|
|
|
3306
3397
|
body: UpdateSessionConfigDto;
|
|
3307
3398
|
path?: never;
|
|
3308
3399
|
query?: never;
|
|
3309
|
-
url:
|
|
3400
|
+
url: '/api/session-config';
|
|
3310
3401
|
};
|
|
3311
3402
|
type SessionConfigControllerUpdateConfigResponses = {
|
|
3312
3403
|
/**
|
|
@@ -3329,7 +3420,7 @@ type SessionEventsControllerSubscribeToSessionEventsData = {
|
|
|
3329
3420
|
*/
|
|
3330
3421
|
token: string;
|
|
3331
3422
|
};
|
|
3332
|
-
url:
|
|
3423
|
+
url: '/api/session/{id}/events';
|
|
3333
3424
|
};
|
|
3334
3425
|
type SessionEventsControllerSubscribeToSessionEventsResponses = {
|
|
3335
3426
|
200: unknown;
|
|
@@ -3338,7 +3429,7 @@ type UserControllerGetUsersData = {
|
|
|
3338
3429
|
body?: never;
|
|
3339
3430
|
path?: never;
|
|
3340
3431
|
query?: never;
|
|
3341
|
-
url:
|
|
3432
|
+
url: '/api/user';
|
|
3342
3433
|
};
|
|
3343
3434
|
type UserControllerGetUsersResponses = {
|
|
3344
3435
|
200: Array<ManagedUserDto>;
|
|
@@ -3348,7 +3439,7 @@ type UserControllerCreateUserData = {
|
|
|
3348
3439
|
body: CreateUserDto;
|
|
3349
3440
|
path?: never;
|
|
3350
3441
|
query?: never;
|
|
3351
|
-
url:
|
|
3442
|
+
url: '/api/user';
|
|
3352
3443
|
};
|
|
3353
3444
|
type UserControllerCreateUserResponses = {
|
|
3354
3445
|
201: ManagedUserDto;
|
|
@@ -3360,7 +3451,7 @@ type UserControllerDeleteUserData = {
|
|
|
3360
3451
|
id: string;
|
|
3361
3452
|
};
|
|
3362
3453
|
query?: never;
|
|
3363
|
-
url:
|
|
3454
|
+
url: '/api/user/{id}';
|
|
3364
3455
|
};
|
|
3365
3456
|
type UserControllerDeleteUserResponses = {
|
|
3366
3457
|
200: unknown;
|
|
@@ -3371,7 +3462,7 @@ type UserControllerGetUserData = {
|
|
|
3371
3462
|
id: string;
|
|
3372
3463
|
};
|
|
3373
3464
|
query?: never;
|
|
3374
|
-
url:
|
|
3465
|
+
url: '/api/user/{id}';
|
|
3375
3466
|
};
|
|
3376
3467
|
type UserControllerGetUserResponses = {
|
|
3377
3468
|
200: ManagedUserDto;
|
|
@@ -3383,7 +3474,7 @@ type UserControllerUpdateUserData = {
|
|
|
3383
3474
|
id: string;
|
|
3384
3475
|
};
|
|
3385
3476
|
query?: never;
|
|
3386
|
-
url:
|
|
3477
|
+
url: '/api/user/{id}';
|
|
3387
3478
|
};
|
|
3388
3479
|
type UserControllerUpdateUserResponses = {
|
|
3389
3480
|
200: ManagedUserDto;
|
|
@@ -3393,7 +3484,7 @@ type IssuanceConfigControllerGetIssuanceConfigurationsData = {
|
|
|
3393
3484
|
body?: never;
|
|
3394
3485
|
path?: never;
|
|
3395
3486
|
query?: never;
|
|
3396
|
-
url:
|
|
3487
|
+
url: '/api/issuer/config';
|
|
3397
3488
|
};
|
|
3398
3489
|
type IssuanceConfigControllerGetIssuanceConfigurationsResponses = {
|
|
3399
3490
|
200: IssuanceConfig;
|
|
@@ -3403,7 +3494,7 @@ type IssuanceConfigControllerStoreIssuanceConfigurationData = {
|
|
|
3403
3494
|
body: IssuanceDto;
|
|
3404
3495
|
path?: never;
|
|
3405
3496
|
query?: never;
|
|
3406
|
-
url:
|
|
3497
|
+
url: '/api/issuer/config';
|
|
3407
3498
|
};
|
|
3408
3499
|
type IssuanceConfigControllerStoreIssuanceConfigurationResponses = {
|
|
3409
3500
|
201: {
|
|
@@ -3415,7 +3506,7 @@ type CredentialConfigControllerGetConfigsData = {
|
|
|
3415
3506
|
body?: never;
|
|
3416
3507
|
path?: never;
|
|
3417
3508
|
query?: never;
|
|
3418
|
-
url:
|
|
3509
|
+
url: '/api/issuer/credentials';
|
|
3419
3510
|
};
|
|
3420
3511
|
type CredentialConfigControllerGetConfigsResponses = {
|
|
3421
3512
|
200: Array<CredentialConfig>;
|
|
@@ -3425,7 +3516,7 @@ type CredentialConfigControllerStoreCredentialConfigurationData = {
|
|
|
3425
3516
|
body: CredentialConfigCreate;
|
|
3426
3517
|
path?: never;
|
|
3427
3518
|
query?: never;
|
|
3428
|
-
url:
|
|
3519
|
+
url: '/api/issuer/credentials';
|
|
3429
3520
|
};
|
|
3430
3521
|
type CredentialConfigControllerStoreCredentialConfigurationResponses = {
|
|
3431
3522
|
201: {
|
|
@@ -3439,7 +3530,7 @@ type CredentialConfigControllerDeleteIssuanceConfigurationData = {
|
|
|
3439
3530
|
id: string;
|
|
3440
3531
|
};
|
|
3441
3532
|
query?: never;
|
|
3442
|
-
url:
|
|
3533
|
+
url: '/api/issuer/credentials/{id}';
|
|
3443
3534
|
};
|
|
3444
3535
|
type CredentialConfigControllerDeleteIssuanceConfigurationResponses = {
|
|
3445
3536
|
200: {
|
|
@@ -3453,7 +3544,7 @@ type CredentialConfigControllerGetConfigByIdData = {
|
|
|
3453
3544
|
id: string;
|
|
3454
3545
|
};
|
|
3455
3546
|
query?: never;
|
|
3456
|
-
url:
|
|
3547
|
+
url: '/api/issuer/credentials/{id}';
|
|
3457
3548
|
};
|
|
3458
3549
|
type CredentialConfigControllerGetConfigByIdResponses = {
|
|
3459
3550
|
200: CredentialConfig;
|
|
@@ -3465,7 +3556,7 @@ type CredentialConfigControllerUpdateCredentialConfigurationData = {
|
|
|
3465
3556
|
id: string;
|
|
3466
3557
|
};
|
|
3467
3558
|
query?: never;
|
|
3468
|
-
url:
|
|
3559
|
+
url: '/api/issuer/credentials/{id}';
|
|
3469
3560
|
};
|
|
3470
3561
|
type CredentialConfigControllerUpdateCredentialConfigurationResponses = {
|
|
3471
3562
|
200: {
|
|
@@ -3473,47 +3564,200 @@ type CredentialConfigControllerUpdateCredentialConfigurationResponses = {
|
|
|
3473
3564
|
};
|
|
3474
3565
|
};
|
|
3475
3566
|
type CredentialConfigControllerUpdateCredentialConfigurationResponse = CredentialConfigControllerUpdateCredentialConfigurationResponses[keyof CredentialConfigControllerUpdateCredentialConfigurationResponses];
|
|
3476
|
-
type
|
|
3567
|
+
type SchemaMetadataControllerSignSchemaMetaConfigData = {
|
|
3477
3568
|
body: SignSchemaMetaConfigDto;
|
|
3478
3569
|
path?: never;
|
|
3479
3570
|
query?: never;
|
|
3480
|
-
url:
|
|
3571
|
+
url: '/api/schema-metadata/sign';
|
|
3481
3572
|
};
|
|
3482
|
-
type
|
|
3573
|
+
type SchemaMetadataControllerSignSchemaMetaConfigErrors = {
|
|
3483
3574
|
/**
|
|
3484
3575
|
* Invalid schema metadata or missing certificate for signing
|
|
3485
3576
|
*/
|
|
3486
3577
|
400: unknown;
|
|
3487
3578
|
};
|
|
3488
|
-
type
|
|
3579
|
+
type SchemaMetadataControllerSignSchemaMetaConfigResponses = {
|
|
3489
3580
|
/**
|
|
3490
3581
|
* Registrar metadata entry for the freshly submitted schema metadata.
|
|
3491
3582
|
*/
|
|
3492
3583
|
201: unknown;
|
|
3493
3584
|
};
|
|
3494
|
-
type
|
|
3585
|
+
type SchemaMetadataControllerSignVersionSchemaMetaConfigData = {
|
|
3495
3586
|
body: SignVersionSchemaMetaConfigDto;
|
|
3496
3587
|
path?: never;
|
|
3497
3588
|
query?: never;
|
|
3498
|
-
url:
|
|
3589
|
+
url: '/api/schema-metadata/sign-version';
|
|
3499
3590
|
};
|
|
3500
|
-
type
|
|
3591
|
+
type SchemaMetadataControllerSignVersionSchemaMetaConfigErrors = {
|
|
3501
3592
|
/**
|
|
3502
3593
|
* config.id is required; or invalid schema metadata
|
|
3503
3594
|
*/
|
|
3504
3595
|
400: unknown;
|
|
3505
3596
|
};
|
|
3506
|
-
type
|
|
3507
|
-
/**
|
|
3508
|
-
* Registrar metadata entry for the newly submitted version.
|
|
3509
|
-
*/
|
|
3510
|
-
201: unknown;
|
|
3597
|
+
type SchemaMetadataControllerSignVersionSchemaMetaConfigResponses = {
|
|
3598
|
+
/**
|
|
3599
|
+
* Registrar metadata entry for the newly submitted version.
|
|
3600
|
+
*/
|
|
3601
|
+
201: unknown;
|
|
3602
|
+
};
|
|
3603
|
+
type SchemaMetadataControllerGetVocabulariesData = {
|
|
3604
|
+
body?: never;
|
|
3605
|
+
path?: never;
|
|
3606
|
+
query?: never;
|
|
3607
|
+
url: '/api/schema-metadata/vocabularies';
|
|
3608
|
+
};
|
|
3609
|
+
type SchemaMetadataControllerGetVocabulariesResponses = {
|
|
3610
|
+
200: SchemaMetadataVocabulariesDto;
|
|
3611
|
+
};
|
|
3612
|
+
type SchemaMetadataControllerGetVocabulariesResponse = SchemaMetadataControllerGetVocabulariesResponses[keyof SchemaMetadataControllerGetVocabulariesResponses];
|
|
3613
|
+
type SchemaMetadataControllerFindAllData = {
|
|
3614
|
+
body?: never;
|
|
3615
|
+
path?: never;
|
|
3616
|
+
query?: {
|
|
3617
|
+
attestationId?: string;
|
|
3618
|
+
version?: string;
|
|
3619
|
+
};
|
|
3620
|
+
url: '/api/schema-metadata';
|
|
3621
|
+
};
|
|
3622
|
+
type SchemaMetadataControllerFindAllResponses = {
|
|
3623
|
+
200: Array<SchemaMetadataResponseDto>;
|
|
3624
|
+
};
|
|
3625
|
+
type SchemaMetadataControllerFindAllResponse = SchemaMetadataControllerFindAllResponses[keyof SchemaMetadataControllerFindAllResponses];
|
|
3626
|
+
type SchemaMetadataControllerFindOneData = {
|
|
3627
|
+
body?: never;
|
|
3628
|
+
path: {
|
|
3629
|
+
id: string;
|
|
3630
|
+
};
|
|
3631
|
+
query?: never;
|
|
3632
|
+
url: '/api/schema-metadata/{id}';
|
|
3633
|
+
};
|
|
3634
|
+
type SchemaMetadataControllerFindOneResponses = {
|
|
3635
|
+
200: SchemaMetadataResponseDto;
|
|
3636
|
+
};
|
|
3637
|
+
type SchemaMetadataControllerFindOneResponse = SchemaMetadataControllerFindOneResponses[keyof SchemaMetadataControllerFindOneResponses];
|
|
3638
|
+
type SchemaMetadataControllerRemoveData = {
|
|
3639
|
+
body?: never;
|
|
3640
|
+
path: {
|
|
3641
|
+
id: string;
|
|
3642
|
+
version: string;
|
|
3643
|
+
};
|
|
3644
|
+
query?: never;
|
|
3645
|
+
url: '/api/schema-metadata/{id}/versions/{version}';
|
|
3646
|
+
};
|
|
3647
|
+
type SchemaMetadataControllerRemoveResponses = {
|
|
3648
|
+
/**
|
|
3649
|
+
* Deleted
|
|
3650
|
+
*/
|
|
3651
|
+
200: unknown;
|
|
3652
|
+
};
|
|
3653
|
+
type SchemaMetadataControllerUpdateData = {
|
|
3654
|
+
body: UpdateSchemaMetadataDto;
|
|
3655
|
+
path: {
|
|
3656
|
+
id: string;
|
|
3657
|
+
version: string;
|
|
3658
|
+
};
|
|
3659
|
+
query?: never;
|
|
3660
|
+
url: '/api/schema-metadata/{id}/versions/{version}';
|
|
3661
|
+
};
|
|
3662
|
+
type SchemaMetadataControllerUpdateResponses = {
|
|
3663
|
+
200: SchemaMetadataResponseDto;
|
|
3664
|
+
};
|
|
3665
|
+
type SchemaMetadataControllerUpdateResponse = SchemaMetadataControllerUpdateResponses[keyof SchemaMetadataControllerUpdateResponses];
|
|
3666
|
+
type SchemaMetadataControllerGetLatestData = {
|
|
3667
|
+
body?: never;
|
|
3668
|
+
path: {
|
|
3669
|
+
id: string;
|
|
3670
|
+
};
|
|
3671
|
+
query?: never;
|
|
3672
|
+
url: '/api/schema-metadata/{id}/latest';
|
|
3673
|
+
};
|
|
3674
|
+
type SchemaMetadataControllerGetLatestResponses = {
|
|
3675
|
+
200: SchemaMetadataResponseDto;
|
|
3676
|
+
};
|
|
3677
|
+
type SchemaMetadataControllerGetLatestResponse = SchemaMetadataControllerGetLatestResponses[keyof SchemaMetadataControllerGetLatestResponses];
|
|
3678
|
+
type SchemaMetadataControllerGetVersionsData = {
|
|
3679
|
+
body?: never;
|
|
3680
|
+
path: {
|
|
3681
|
+
id: string;
|
|
3682
|
+
};
|
|
3683
|
+
query?: never;
|
|
3684
|
+
url: '/api/schema-metadata/{id}/versions';
|
|
3685
|
+
};
|
|
3686
|
+
type SchemaMetadataControllerGetVersionsResponses = {
|
|
3687
|
+
200: Array<SchemaMetadataResponseDto>;
|
|
3688
|
+
};
|
|
3689
|
+
type SchemaMetadataControllerGetVersionsResponse = SchemaMetadataControllerGetVersionsResponses[keyof SchemaMetadataControllerGetVersionsResponses];
|
|
3690
|
+
type SchemaMetadataControllerGetJwtData = {
|
|
3691
|
+
body?: never;
|
|
3692
|
+
path: {
|
|
3693
|
+
id: string;
|
|
3694
|
+
version: string;
|
|
3695
|
+
};
|
|
3696
|
+
query?: never;
|
|
3697
|
+
url: '/api/schema-metadata/{id}/versions/{version}/jwt';
|
|
3698
|
+
};
|
|
3699
|
+
type SchemaMetadataControllerGetJwtResponses = {
|
|
3700
|
+
/**
|
|
3701
|
+
* Compact-serialization JWS string
|
|
3702
|
+
*/
|
|
3703
|
+
200: string;
|
|
3704
|
+
};
|
|
3705
|
+
type SchemaMetadataControllerGetJwtResponse = SchemaMetadataControllerGetJwtResponses[keyof SchemaMetadataControllerGetJwtResponses];
|
|
3706
|
+
type SchemaMetadataControllerExportData = {
|
|
3707
|
+
body?: never;
|
|
3708
|
+
path: {
|
|
3709
|
+
id: string;
|
|
3710
|
+
version: string;
|
|
3711
|
+
};
|
|
3712
|
+
query?: never;
|
|
3713
|
+
url: '/api/schema-metadata/{id}/versions/{version}/export';
|
|
3714
|
+
};
|
|
3715
|
+
type SchemaMetadataControllerExportResponses = {
|
|
3716
|
+
/**
|
|
3717
|
+
* Registrar-defined catalog document
|
|
3718
|
+
*/
|
|
3719
|
+
200: {
|
|
3720
|
+
[key: string]: unknown;
|
|
3721
|
+
};
|
|
3722
|
+
};
|
|
3723
|
+
type SchemaMetadataControllerExportResponse = SchemaMetadataControllerExportResponses[keyof SchemaMetadataControllerExportResponses];
|
|
3724
|
+
type SchemaMetadataControllerGetSchemaData = {
|
|
3725
|
+
body?: never;
|
|
3726
|
+
path: {
|
|
3727
|
+
id: string;
|
|
3728
|
+
version: string;
|
|
3729
|
+
format: string;
|
|
3730
|
+
};
|
|
3731
|
+
query?: never;
|
|
3732
|
+
url: '/api/schema-metadata/{id}/versions/{version}/schemas/{format}';
|
|
3733
|
+
};
|
|
3734
|
+
type SchemaMetadataControllerGetSchemaResponses = {
|
|
3735
|
+
/**
|
|
3736
|
+
* JSON Schema document for the requested format
|
|
3737
|
+
*/
|
|
3738
|
+
200: {
|
|
3739
|
+
[key: string]: unknown;
|
|
3740
|
+
};
|
|
3741
|
+
};
|
|
3742
|
+
type SchemaMetadataControllerGetSchemaResponse = SchemaMetadataControllerGetSchemaResponses[keyof SchemaMetadataControllerGetSchemaResponses];
|
|
3743
|
+
type SchemaMetadataControllerDeprecateVersionData = {
|
|
3744
|
+
body: DeprecateSchemaMetadataDto;
|
|
3745
|
+
path: {
|
|
3746
|
+
id: string;
|
|
3747
|
+
version: string;
|
|
3748
|
+
};
|
|
3749
|
+
query?: never;
|
|
3750
|
+
url: '/api/schema-metadata/{id}/versions/{version}/deprecation';
|
|
3751
|
+
};
|
|
3752
|
+
type SchemaMetadataControllerDeprecateVersionResponses = {
|
|
3753
|
+
200: SchemaMetadataResponseDto;
|
|
3511
3754
|
};
|
|
3755
|
+
type SchemaMetadataControllerDeprecateVersionResponse = SchemaMetadataControllerDeprecateVersionResponses[keyof SchemaMetadataControllerDeprecateVersionResponses];
|
|
3512
3756
|
type AttributeProviderControllerGetAllData = {
|
|
3513
3757
|
body?: never;
|
|
3514
3758
|
path?: never;
|
|
3515
3759
|
query?: never;
|
|
3516
|
-
url:
|
|
3760
|
+
url: '/api/issuer/attribute-providers';
|
|
3517
3761
|
};
|
|
3518
3762
|
type AttributeProviderControllerGetAllResponses = {
|
|
3519
3763
|
/**
|
|
@@ -3525,7 +3769,7 @@ type AttributeProviderControllerCreateData = {
|
|
|
3525
3769
|
body: CreateAttributeProviderDto;
|
|
3526
3770
|
path?: never;
|
|
3527
3771
|
query?: never;
|
|
3528
|
-
url:
|
|
3772
|
+
url: '/api/issuer/attribute-providers';
|
|
3529
3773
|
};
|
|
3530
3774
|
type AttributeProviderControllerCreateResponses = {
|
|
3531
3775
|
/**
|
|
@@ -3539,7 +3783,7 @@ type AttributeProviderControllerDeleteData = {
|
|
|
3539
3783
|
id: string;
|
|
3540
3784
|
};
|
|
3541
3785
|
query?: never;
|
|
3542
|
-
url:
|
|
3786
|
+
url: '/api/issuer/attribute-providers/{id}';
|
|
3543
3787
|
};
|
|
3544
3788
|
type AttributeProviderControllerDeleteErrors = {
|
|
3545
3789
|
/**
|
|
@@ -3559,7 +3803,7 @@ type AttributeProviderControllerGetByIdData = {
|
|
|
3559
3803
|
id: string;
|
|
3560
3804
|
};
|
|
3561
3805
|
query?: never;
|
|
3562
|
-
url:
|
|
3806
|
+
url: '/api/issuer/attribute-providers/{id}';
|
|
3563
3807
|
};
|
|
3564
3808
|
type AttributeProviderControllerGetByIdErrors = {
|
|
3565
3809
|
/**
|
|
@@ -3579,7 +3823,7 @@ type AttributeProviderControllerUpdateData = {
|
|
|
3579
3823
|
id: string;
|
|
3580
3824
|
};
|
|
3581
3825
|
query?: never;
|
|
3582
|
-
url:
|
|
3826
|
+
url: '/api/issuer/attribute-providers/{id}';
|
|
3583
3827
|
};
|
|
3584
3828
|
type AttributeProviderControllerUpdateErrors = {
|
|
3585
3829
|
/**
|
|
@@ -3597,7 +3841,7 @@ type WebhookEndpointControllerGetAllData = {
|
|
|
3597
3841
|
body?: never;
|
|
3598
3842
|
path?: never;
|
|
3599
3843
|
query?: never;
|
|
3600
|
-
url:
|
|
3844
|
+
url: '/api/issuer/webhook-endpoints';
|
|
3601
3845
|
};
|
|
3602
3846
|
type WebhookEndpointControllerGetAllResponses = {
|
|
3603
3847
|
/**
|
|
@@ -3610,7 +3854,7 @@ type WebhookEndpointControllerCreateData = {
|
|
|
3610
3854
|
body: CreateWebhookEndpointDto;
|
|
3611
3855
|
path?: never;
|
|
3612
3856
|
query?: never;
|
|
3613
|
-
url:
|
|
3857
|
+
url: '/api/issuer/webhook-endpoints';
|
|
3614
3858
|
};
|
|
3615
3859
|
type WebhookEndpointControllerCreateResponses = {
|
|
3616
3860
|
/**
|
|
@@ -3624,7 +3868,7 @@ type WebhookEndpointControllerDeleteData = {
|
|
|
3624
3868
|
id: string;
|
|
3625
3869
|
};
|
|
3626
3870
|
query?: never;
|
|
3627
|
-
url:
|
|
3871
|
+
url: '/api/issuer/webhook-endpoints/{id}';
|
|
3628
3872
|
};
|
|
3629
3873
|
type WebhookEndpointControllerDeleteErrors = {
|
|
3630
3874
|
/**
|
|
@@ -3644,7 +3888,7 @@ type WebhookEndpointControllerGetByIdData = {
|
|
|
3644
3888
|
id: string;
|
|
3645
3889
|
};
|
|
3646
3890
|
query?: never;
|
|
3647
|
-
url:
|
|
3891
|
+
url: '/api/issuer/webhook-endpoints/{id}';
|
|
3648
3892
|
};
|
|
3649
3893
|
type WebhookEndpointControllerGetByIdErrors = {
|
|
3650
3894
|
/**
|
|
@@ -3664,7 +3908,7 @@ type WebhookEndpointControllerUpdateData = {
|
|
|
3664
3908
|
id: string;
|
|
3665
3909
|
};
|
|
3666
3910
|
query?: never;
|
|
3667
|
-
url:
|
|
3911
|
+
url: '/api/issuer/webhook-endpoints/{id}';
|
|
3668
3912
|
};
|
|
3669
3913
|
type WebhookEndpointControllerUpdateErrors = {
|
|
3670
3914
|
/**
|
|
@@ -3682,7 +3926,7 @@ type TrustListControllerGetAllTrustListsData = {
|
|
|
3682
3926
|
body?: never;
|
|
3683
3927
|
path?: never;
|
|
3684
3928
|
query?: never;
|
|
3685
|
-
url:
|
|
3929
|
+
url: '/api/trust-list';
|
|
3686
3930
|
};
|
|
3687
3931
|
type TrustListControllerGetAllTrustListsResponses = {
|
|
3688
3932
|
200: Array<TrustList>;
|
|
@@ -3692,7 +3936,7 @@ type TrustListControllerCreateTrustListData = {
|
|
|
3692
3936
|
body: TrustListCreateDto;
|
|
3693
3937
|
path?: never;
|
|
3694
3938
|
query?: never;
|
|
3695
|
-
url:
|
|
3939
|
+
url: '/api/trust-list';
|
|
3696
3940
|
};
|
|
3697
3941
|
type TrustListControllerCreateTrustListResponses = {
|
|
3698
3942
|
201: TrustList;
|
|
@@ -3704,7 +3948,7 @@ type TrustListControllerDeleteTrustListData = {
|
|
|
3704
3948
|
id: string;
|
|
3705
3949
|
};
|
|
3706
3950
|
query?: never;
|
|
3707
|
-
url:
|
|
3951
|
+
url: '/api/trust-list/{id}';
|
|
3708
3952
|
};
|
|
3709
3953
|
type TrustListControllerDeleteTrustListResponses = {
|
|
3710
3954
|
200: unknown;
|
|
@@ -3715,7 +3959,7 @@ type TrustListControllerGetTrustListData = {
|
|
|
3715
3959
|
id: string;
|
|
3716
3960
|
};
|
|
3717
3961
|
query?: never;
|
|
3718
|
-
url:
|
|
3962
|
+
url: '/api/trust-list/{id}';
|
|
3719
3963
|
};
|
|
3720
3964
|
type TrustListControllerGetTrustListResponses = {
|
|
3721
3965
|
200: TrustList;
|
|
@@ -3727,7 +3971,7 @@ type TrustListControllerUpdateTrustListData = {
|
|
|
3727
3971
|
id: string;
|
|
3728
3972
|
};
|
|
3729
3973
|
query?: never;
|
|
3730
|
-
url:
|
|
3974
|
+
url: '/api/trust-list/{id}';
|
|
3731
3975
|
};
|
|
3732
3976
|
type TrustListControllerUpdateTrustListResponses = {
|
|
3733
3977
|
200: TrustList;
|
|
@@ -3739,7 +3983,7 @@ type TrustListControllerExportTrustListData = {
|
|
|
3739
3983
|
id: string;
|
|
3740
3984
|
};
|
|
3741
3985
|
query?: never;
|
|
3742
|
-
url:
|
|
3986
|
+
url: '/api/trust-list/{id}/export';
|
|
3743
3987
|
};
|
|
3744
3988
|
type TrustListControllerExportTrustListResponses = {
|
|
3745
3989
|
200: TrustListCreateDto;
|
|
@@ -3751,7 +3995,7 @@ type TrustListControllerGetTrustListVersionsData = {
|
|
|
3751
3995
|
id: string;
|
|
3752
3996
|
};
|
|
3753
3997
|
query?: never;
|
|
3754
|
-
url:
|
|
3998
|
+
url: '/api/trust-list/{id}/versions';
|
|
3755
3999
|
};
|
|
3756
4000
|
type TrustListControllerGetTrustListVersionsResponses = {
|
|
3757
4001
|
200: Array<TrustListVersion>;
|
|
@@ -3764,17 +4008,68 @@ type TrustListControllerGetTrustListVersionData = {
|
|
|
3764
4008
|
versionId: string;
|
|
3765
4009
|
};
|
|
3766
4010
|
query?: never;
|
|
3767
|
-
url:
|
|
4011
|
+
url: '/api/trust-list/{id}/versions/{versionId}';
|
|
3768
4012
|
};
|
|
3769
4013
|
type TrustListControllerGetTrustListVersionResponses = {
|
|
3770
4014
|
200: TrustListVersion;
|
|
3771
4015
|
};
|
|
3772
4016
|
type TrustListControllerGetTrustListVersionResponse = TrustListControllerGetTrustListVersionResponses[keyof TrustListControllerGetTrustListVersionResponses];
|
|
4017
|
+
type CacheControllerGetStatsData = {
|
|
4018
|
+
body?: never;
|
|
4019
|
+
path?: never;
|
|
4020
|
+
query?: never;
|
|
4021
|
+
url: '/api/cache/stats';
|
|
4022
|
+
};
|
|
4023
|
+
type CacheControllerGetStatsResponses = {
|
|
4024
|
+
/**
|
|
4025
|
+
* Cache statistics
|
|
4026
|
+
*/
|
|
4027
|
+
200: unknown;
|
|
4028
|
+
};
|
|
4029
|
+
type CacheControllerClearAllCachesData = {
|
|
4030
|
+
body?: never;
|
|
4031
|
+
path?: never;
|
|
4032
|
+
query?: never;
|
|
4033
|
+
url: '/api/cache';
|
|
4034
|
+
};
|
|
4035
|
+
type CacheControllerClearAllCachesResponses = {
|
|
4036
|
+
/**
|
|
4037
|
+
* All caches cleared successfully
|
|
4038
|
+
*/
|
|
4039
|
+
204: void;
|
|
4040
|
+
};
|
|
4041
|
+
type CacheControllerClearAllCachesResponse = CacheControllerClearAllCachesResponses[keyof CacheControllerClearAllCachesResponses];
|
|
4042
|
+
type CacheControllerClearTrustListCacheData = {
|
|
4043
|
+
body?: never;
|
|
4044
|
+
path?: never;
|
|
4045
|
+
query?: never;
|
|
4046
|
+
url: '/api/cache/trust-list';
|
|
4047
|
+
};
|
|
4048
|
+
type CacheControllerClearTrustListCacheResponses = {
|
|
4049
|
+
/**
|
|
4050
|
+
* Trust list cache cleared successfully
|
|
4051
|
+
*/
|
|
4052
|
+
204: void;
|
|
4053
|
+
};
|
|
4054
|
+
type CacheControllerClearTrustListCacheResponse = CacheControllerClearTrustListCacheResponses[keyof CacheControllerClearTrustListCacheResponses];
|
|
4055
|
+
type CacheControllerClearStatusListCacheData = {
|
|
4056
|
+
body?: never;
|
|
4057
|
+
path?: never;
|
|
4058
|
+
query?: never;
|
|
4059
|
+
url: '/api/cache/status-list';
|
|
4060
|
+
};
|
|
4061
|
+
type CacheControllerClearStatusListCacheResponses = {
|
|
4062
|
+
/**
|
|
4063
|
+
* Status list cache cleared successfully
|
|
4064
|
+
*/
|
|
4065
|
+
204: void;
|
|
4066
|
+
};
|
|
4067
|
+
type CacheControllerClearStatusListCacheResponse = CacheControllerClearStatusListCacheResponses[keyof CacheControllerClearStatusListCacheResponses];
|
|
3773
4068
|
type PresentationManagementControllerConfigurationData = {
|
|
3774
4069
|
body?: never;
|
|
3775
4070
|
path?: never;
|
|
3776
4071
|
query?: never;
|
|
3777
|
-
url:
|
|
4072
|
+
url: '/api/verifier/config';
|
|
3778
4073
|
};
|
|
3779
4074
|
type PresentationManagementControllerConfigurationResponses = {
|
|
3780
4075
|
200: Array<PresentationConfig>;
|
|
@@ -3784,7 +4079,7 @@ type PresentationManagementControllerStorePresentationConfigData = {
|
|
|
3784
4079
|
body: PresentationConfigCreateDto;
|
|
3785
4080
|
path?: never;
|
|
3786
4081
|
query?: never;
|
|
3787
|
-
url:
|
|
4082
|
+
url: '/api/verifier/config';
|
|
3788
4083
|
};
|
|
3789
4084
|
type PresentationManagementControllerStorePresentationConfigResponses = {
|
|
3790
4085
|
201: PresentationConfig;
|
|
@@ -3794,7 +4089,7 @@ type PresentationManagementControllerResolveIssuerMetadataData = {
|
|
|
3794
4089
|
body: ResolveIssuerMetadataDto;
|
|
3795
4090
|
path?: never;
|
|
3796
4091
|
query?: never;
|
|
3797
|
-
url:
|
|
4092
|
+
url: '/api/verifier/config/issuer-metadata/resolve';
|
|
3798
4093
|
};
|
|
3799
4094
|
type PresentationManagementControllerResolveIssuerMetadataErrors = {
|
|
3800
4095
|
/**
|
|
@@ -3812,7 +4107,7 @@ type PresentationManagementControllerResolveSchemaMetadataData = {
|
|
|
3812
4107
|
body: ResolveSchemaMetadataDto;
|
|
3813
4108
|
path?: never;
|
|
3814
4109
|
query?: never;
|
|
3815
|
-
url:
|
|
4110
|
+
url: '/api/verifier/config/schema-metadata/resolve';
|
|
3816
4111
|
};
|
|
3817
4112
|
type PresentationManagementControllerResolveSchemaMetadataErrors = {
|
|
3818
4113
|
/**
|
|
@@ -3830,7 +4125,7 @@ type PresentationManagementControllerListSchemaMetadataCatalogData = {
|
|
|
3830
4125
|
body?: never;
|
|
3831
4126
|
path?: never;
|
|
3832
4127
|
query?: never;
|
|
3833
|
-
url:
|
|
4128
|
+
url: '/api/verifier/config/schema-metadata/catalog';
|
|
3834
4129
|
};
|
|
3835
4130
|
type PresentationManagementControllerListSchemaMetadataCatalogResponses = {
|
|
3836
4131
|
/**
|
|
@@ -3844,7 +4139,7 @@ type PresentationManagementControllerDeleteConfigurationData = {
|
|
|
3844
4139
|
id: string;
|
|
3845
4140
|
};
|
|
3846
4141
|
query?: never;
|
|
3847
|
-
url:
|
|
4142
|
+
url: '/api/verifier/config/{id}';
|
|
3848
4143
|
};
|
|
3849
4144
|
type PresentationManagementControllerDeleteConfigurationResponses = {
|
|
3850
4145
|
200: unknown;
|
|
@@ -3855,7 +4150,7 @@ type PresentationManagementControllerGetConfigurationData = {
|
|
|
3855
4150
|
id: string;
|
|
3856
4151
|
};
|
|
3857
4152
|
query?: never;
|
|
3858
|
-
url:
|
|
4153
|
+
url: '/api/verifier/config/{id}';
|
|
3859
4154
|
};
|
|
3860
4155
|
type PresentationManagementControllerGetConfigurationResponses = {
|
|
3861
4156
|
200: PresentationConfig;
|
|
@@ -3867,7 +4162,7 @@ type PresentationManagementControllerUpdateConfigurationData = {
|
|
|
3867
4162
|
id: string;
|
|
3868
4163
|
};
|
|
3869
4164
|
query?: never;
|
|
3870
|
-
url:
|
|
4165
|
+
url: '/api/verifier/config/{id}';
|
|
3871
4166
|
};
|
|
3872
4167
|
type PresentationManagementControllerUpdateConfigurationResponses = {
|
|
3873
4168
|
200: PresentationConfig;
|
|
@@ -3879,7 +4174,7 @@ type PresentationManagementControllerReissueRegistrationCertificateData = {
|
|
|
3879
4174
|
id: string;
|
|
3880
4175
|
};
|
|
3881
4176
|
query?: never;
|
|
3882
|
-
url:
|
|
4177
|
+
url: '/api/verifier/config/{id}/registration-cert/reissue';
|
|
3883
4178
|
};
|
|
3884
4179
|
type PresentationManagementControllerReissueRegistrationCertificateErrors = {
|
|
3885
4180
|
/**
|
|
@@ -3893,62 +4188,11 @@ type PresentationManagementControllerReissueRegistrationCertificateResponses = {
|
|
|
3893
4188
|
*/
|
|
3894
4189
|
200: unknown;
|
|
3895
4190
|
};
|
|
3896
|
-
type CacheControllerGetStatsData = {
|
|
3897
|
-
body?: never;
|
|
3898
|
-
path?: never;
|
|
3899
|
-
query?: never;
|
|
3900
|
-
url: "/api/cache/stats";
|
|
3901
|
-
};
|
|
3902
|
-
type CacheControllerGetStatsResponses = {
|
|
3903
|
-
/**
|
|
3904
|
-
* Cache statistics
|
|
3905
|
-
*/
|
|
3906
|
-
200: unknown;
|
|
3907
|
-
};
|
|
3908
|
-
type CacheControllerClearAllCachesData = {
|
|
3909
|
-
body?: never;
|
|
3910
|
-
path?: never;
|
|
3911
|
-
query?: never;
|
|
3912
|
-
url: "/api/cache";
|
|
3913
|
-
};
|
|
3914
|
-
type CacheControllerClearAllCachesResponses = {
|
|
3915
|
-
/**
|
|
3916
|
-
* All caches cleared successfully
|
|
3917
|
-
*/
|
|
3918
|
-
204: void;
|
|
3919
|
-
};
|
|
3920
|
-
type CacheControllerClearAllCachesResponse = CacheControllerClearAllCachesResponses[keyof CacheControllerClearAllCachesResponses];
|
|
3921
|
-
type CacheControllerClearTrustListCacheData = {
|
|
3922
|
-
body?: never;
|
|
3923
|
-
path?: never;
|
|
3924
|
-
query?: never;
|
|
3925
|
-
url: "/api/cache/trust-list";
|
|
3926
|
-
};
|
|
3927
|
-
type CacheControllerClearTrustListCacheResponses = {
|
|
3928
|
-
/**
|
|
3929
|
-
* Trust list cache cleared successfully
|
|
3930
|
-
*/
|
|
3931
|
-
204: void;
|
|
3932
|
-
};
|
|
3933
|
-
type CacheControllerClearTrustListCacheResponse = CacheControllerClearTrustListCacheResponses[keyof CacheControllerClearTrustListCacheResponses];
|
|
3934
|
-
type CacheControllerClearStatusListCacheData = {
|
|
3935
|
-
body?: never;
|
|
3936
|
-
path?: never;
|
|
3937
|
-
query?: never;
|
|
3938
|
-
url: "/api/cache/status-list";
|
|
3939
|
-
};
|
|
3940
|
-
type CacheControllerClearStatusListCacheResponses = {
|
|
3941
|
-
/**
|
|
3942
|
-
* Status list cache cleared successfully
|
|
3943
|
-
*/
|
|
3944
|
-
204: void;
|
|
3945
|
-
};
|
|
3946
|
-
type CacheControllerClearStatusListCacheResponse = CacheControllerClearStatusListCacheResponses[keyof CacheControllerClearStatusListCacheResponses];
|
|
3947
4191
|
type RegistrarControllerDeleteConfigData = {
|
|
3948
4192
|
body?: never;
|
|
3949
4193
|
path?: never;
|
|
3950
4194
|
query?: never;
|
|
3951
|
-
url:
|
|
4195
|
+
url: '/api/registrar/config';
|
|
3952
4196
|
};
|
|
3953
4197
|
type RegistrarControllerDeleteConfigResponses = {
|
|
3954
4198
|
/**
|
|
@@ -3961,7 +4205,7 @@ type RegistrarControllerGetConfigData = {
|
|
|
3961
4205
|
body?: never;
|
|
3962
4206
|
path?: never;
|
|
3963
4207
|
query?: never;
|
|
3964
|
-
url:
|
|
4208
|
+
url: '/api/registrar/config';
|
|
3965
4209
|
};
|
|
3966
4210
|
type RegistrarControllerGetConfigErrors = {
|
|
3967
4211
|
/**
|
|
@@ -3980,7 +4224,7 @@ type RegistrarControllerUpdateConfigData = {
|
|
|
3980
4224
|
body: UpdateRegistrarConfigDto;
|
|
3981
4225
|
path?: never;
|
|
3982
4226
|
query?: never;
|
|
3983
|
-
url:
|
|
4227
|
+
url: '/api/registrar/config';
|
|
3984
4228
|
};
|
|
3985
4229
|
type RegistrarControllerUpdateConfigErrors = {
|
|
3986
4230
|
/**
|
|
@@ -3991,6 +4235,10 @@ type RegistrarControllerUpdateConfigErrors = {
|
|
|
3991
4235
|
* No registrar configuration found
|
|
3992
4236
|
*/
|
|
3993
4237
|
404: unknown;
|
|
4238
|
+
/**
|
|
4239
|
+
* Registrar OIDC endpoint unreachable — credentials could not be verified
|
|
4240
|
+
*/
|
|
4241
|
+
503: unknown;
|
|
3994
4242
|
};
|
|
3995
4243
|
type RegistrarControllerUpdateConfigResponses = {
|
|
3996
4244
|
/**
|
|
@@ -4003,13 +4251,17 @@ type RegistrarControllerCreateConfigData = {
|
|
|
4003
4251
|
body: CreateRegistrarConfigDto;
|
|
4004
4252
|
path?: never;
|
|
4005
4253
|
query?: never;
|
|
4006
|
-
url:
|
|
4254
|
+
url: '/api/registrar/config';
|
|
4007
4255
|
};
|
|
4008
4256
|
type RegistrarControllerCreateConfigErrors = {
|
|
4009
4257
|
/**
|
|
4010
4258
|
* Invalid credentials
|
|
4011
4259
|
*/
|
|
4012
4260
|
400: unknown;
|
|
4261
|
+
/**
|
|
4262
|
+
* Registrar OIDC endpoint unreachable — credentials could not be verified
|
|
4263
|
+
*/
|
|
4264
|
+
503: unknown;
|
|
4013
4265
|
};
|
|
4014
4266
|
type RegistrarControllerCreateConfigResponses = {
|
|
4015
4267
|
/**
|
|
@@ -4022,7 +4274,7 @@ type RegistrarControllerCreateAccessCertificateData = {
|
|
|
4022
4274
|
body: CreateAccessCertificateDto;
|
|
4023
4275
|
path?: never;
|
|
4024
4276
|
query?: never;
|
|
4025
|
-
url:
|
|
4277
|
+
url: '/api/registrar/access-certificate';
|
|
4026
4278
|
};
|
|
4027
4279
|
type RegistrarControllerCreateAccessCertificateErrors = {
|
|
4028
4280
|
/**
|
|
@@ -4050,164 +4302,11 @@ type RegistrarControllerCreateAccessCertificateResponses = {
|
|
|
4050
4302
|
};
|
|
4051
4303
|
};
|
|
4052
4304
|
type RegistrarControllerCreateAccessCertificateResponse = RegistrarControllerCreateAccessCertificateResponses[keyof RegistrarControllerCreateAccessCertificateResponses];
|
|
4053
|
-
type SchemaMetadataControllerGetVocabulariesData = {
|
|
4054
|
-
body?: never;
|
|
4055
|
-
path?: never;
|
|
4056
|
-
query?: never;
|
|
4057
|
-
url: "/api/schema-metadata/vocabularies";
|
|
4058
|
-
};
|
|
4059
|
-
type SchemaMetadataControllerGetVocabulariesResponses = {
|
|
4060
|
-
200: SchemaMetadataVocabulariesDto;
|
|
4061
|
-
};
|
|
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;
|
|
4078
|
-
path: {
|
|
4079
|
-
id: string;
|
|
4080
|
-
};
|
|
4081
|
-
query?: never;
|
|
4082
|
-
url: "/api/schema-metadata/{id}";
|
|
4083
|
-
};
|
|
4084
|
-
type SchemaMetadataControllerFindOneResponses = {
|
|
4085
|
-
200: SchemaMetadataResponseDto;
|
|
4086
|
-
};
|
|
4087
|
-
type SchemaMetadataControllerFindOneResponse = SchemaMetadataControllerFindOneResponses[keyof SchemaMetadataControllerFindOneResponses];
|
|
4088
|
-
type SchemaMetadataControllerRemoveData = {
|
|
4089
|
-
body?: never;
|
|
4090
|
-
path: {
|
|
4091
|
-
id: string;
|
|
4092
|
-
version: string;
|
|
4093
|
-
};
|
|
4094
|
-
query?: never;
|
|
4095
|
-
url: "/api/schema-metadata/{id}/versions/{version}";
|
|
4096
|
-
};
|
|
4097
|
-
type SchemaMetadataControllerRemoveResponses = {
|
|
4098
|
-
/**
|
|
4099
|
-
* Deleted
|
|
4100
|
-
*/
|
|
4101
|
-
200: unknown;
|
|
4102
|
-
};
|
|
4103
|
-
type SchemaMetadataControllerUpdateData = {
|
|
4104
|
-
body: UpdateSchemaMetadataDto;
|
|
4105
|
-
path: {
|
|
4106
|
-
id: string;
|
|
4107
|
-
version: string;
|
|
4108
|
-
};
|
|
4109
|
-
query?: never;
|
|
4110
|
-
url: "/api/schema-metadata/{id}/versions/{version}";
|
|
4111
|
-
};
|
|
4112
|
-
type SchemaMetadataControllerUpdateResponses = {
|
|
4113
|
-
200: SchemaMetadataResponseDto;
|
|
4114
|
-
};
|
|
4115
|
-
type SchemaMetadataControllerUpdateResponse = SchemaMetadataControllerUpdateResponses[keyof SchemaMetadataControllerUpdateResponses];
|
|
4116
|
-
type SchemaMetadataControllerGetLatestData = {
|
|
4117
|
-
body?: never;
|
|
4118
|
-
path: {
|
|
4119
|
-
id: string;
|
|
4120
|
-
};
|
|
4121
|
-
query?: never;
|
|
4122
|
-
url: "/api/schema-metadata/{id}/latest";
|
|
4123
|
-
};
|
|
4124
|
-
type SchemaMetadataControllerGetLatestResponses = {
|
|
4125
|
-
200: SchemaMetadataResponseDto;
|
|
4126
|
-
};
|
|
4127
|
-
type SchemaMetadataControllerGetLatestResponse = SchemaMetadataControllerGetLatestResponses[keyof SchemaMetadataControllerGetLatestResponses];
|
|
4128
|
-
type SchemaMetadataControllerGetVersionsData = {
|
|
4129
|
-
body?: never;
|
|
4130
|
-
path: {
|
|
4131
|
-
id: string;
|
|
4132
|
-
};
|
|
4133
|
-
query?: never;
|
|
4134
|
-
url: "/api/schema-metadata/{id}/versions";
|
|
4135
|
-
};
|
|
4136
|
-
type SchemaMetadataControllerGetVersionsResponses = {
|
|
4137
|
-
200: Array<SchemaMetadataResponseDto>;
|
|
4138
|
-
};
|
|
4139
|
-
type SchemaMetadataControllerGetVersionsResponse = SchemaMetadataControllerGetVersionsResponses[keyof SchemaMetadataControllerGetVersionsResponses];
|
|
4140
|
-
type SchemaMetadataControllerGetJwtData = {
|
|
4141
|
-
body?: never;
|
|
4142
|
-
path: {
|
|
4143
|
-
id: string;
|
|
4144
|
-
version: string;
|
|
4145
|
-
};
|
|
4146
|
-
query?: never;
|
|
4147
|
-
url: "/api/schema-metadata/{id}/versions/{version}/jwt";
|
|
4148
|
-
};
|
|
4149
|
-
type SchemaMetadataControllerGetJwtResponses = {
|
|
4150
|
-
/**
|
|
4151
|
-
* Compact-serialization JWS string
|
|
4152
|
-
*/
|
|
4153
|
-
200: string;
|
|
4154
|
-
};
|
|
4155
|
-
type SchemaMetadataControllerGetJwtResponse = SchemaMetadataControllerGetJwtResponses[keyof SchemaMetadataControllerGetJwtResponses];
|
|
4156
|
-
type SchemaMetadataControllerExportData = {
|
|
4157
|
-
body?: never;
|
|
4158
|
-
path: {
|
|
4159
|
-
id: string;
|
|
4160
|
-
version: string;
|
|
4161
|
-
};
|
|
4162
|
-
query?: never;
|
|
4163
|
-
url: "/api/schema-metadata/{id}/versions/{version}/export";
|
|
4164
|
-
};
|
|
4165
|
-
type SchemaMetadataControllerExportResponses = {
|
|
4166
|
-
/**
|
|
4167
|
-
* Registrar-defined catalog document
|
|
4168
|
-
*/
|
|
4169
|
-
200: {
|
|
4170
|
-
[key: string]: unknown;
|
|
4171
|
-
};
|
|
4172
|
-
};
|
|
4173
|
-
type SchemaMetadataControllerExportResponse = SchemaMetadataControllerExportResponses[keyof SchemaMetadataControllerExportResponses];
|
|
4174
|
-
type SchemaMetadataControllerGetSchemaData = {
|
|
4175
|
-
body?: never;
|
|
4176
|
-
path: {
|
|
4177
|
-
id: string;
|
|
4178
|
-
version: string;
|
|
4179
|
-
format: string;
|
|
4180
|
-
};
|
|
4181
|
-
query?: never;
|
|
4182
|
-
url: "/api/schema-metadata/{id}/versions/{version}/schemas/{format}";
|
|
4183
|
-
};
|
|
4184
|
-
type SchemaMetadataControllerGetSchemaResponses = {
|
|
4185
|
-
/**
|
|
4186
|
-
* JSON Schema document for the requested format
|
|
4187
|
-
*/
|
|
4188
|
-
200: {
|
|
4189
|
-
[key: string]: unknown;
|
|
4190
|
-
};
|
|
4191
|
-
};
|
|
4192
|
-
type SchemaMetadataControllerGetSchemaResponse = SchemaMetadataControllerGetSchemaResponses[keyof SchemaMetadataControllerGetSchemaResponses];
|
|
4193
|
-
type SchemaMetadataControllerDeprecateVersionData = {
|
|
4194
|
-
body: DeprecateSchemaMetadataDto;
|
|
4195
|
-
path: {
|
|
4196
|
-
id: string;
|
|
4197
|
-
version: string;
|
|
4198
|
-
};
|
|
4199
|
-
query?: never;
|
|
4200
|
-
url: "/api/schema-metadata/{id}/versions/{version}/deprecation";
|
|
4201
|
-
};
|
|
4202
|
-
type SchemaMetadataControllerDeprecateVersionResponses = {
|
|
4203
|
-
200: SchemaMetadataResponseDto;
|
|
4204
|
-
};
|
|
4205
|
-
type SchemaMetadataControllerDeprecateVersionResponse = SchemaMetadataControllerDeprecateVersionResponses[keyof SchemaMetadataControllerDeprecateVersionResponses];
|
|
4206
4305
|
type CredentialOfferControllerGetOfferData = {
|
|
4207
4306
|
body: OfferRequestDto;
|
|
4208
4307
|
path?: never;
|
|
4209
4308
|
query?: never;
|
|
4210
|
-
url:
|
|
4309
|
+
url: '/api/issuer/offer';
|
|
4211
4310
|
};
|
|
4212
4311
|
type CredentialOfferControllerGetOfferResponses = {
|
|
4213
4312
|
/**
|
|
@@ -4222,7 +4321,7 @@ type DeferredControllerCompleteDeferredData = {
|
|
|
4222
4321
|
transactionId: string;
|
|
4223
4322
|
};
|
|
4224
4323
|
query?: never;
|
|
4225
|
-
url:
|
|
4324
|
+
url: '/api/issuer/deferred/{transactionId}/complete';
|
|
4226
4325
|
};
|
|
4227
4326
|
type DeferredControllerCompleteDeferredErrors = {
|
|
4228
4327
|
/**
|
|
@@ -4243,7 +4342,7 @@ type DeferredControllerFailDeferredData = {
|
|
|
4243
4342
|
transactionId: string;
|
|
4244
4343
|
};
|
|
4245
4344
|
query?: never;
|
|
4246
|
-
url:
|
|
4345
|
+
url: '/api/issuer/deferred/{transactionId}/fail';
|
|
4247
4346
|
};
|
|
4248
4347
|
type DeferredControllerFailDeferredErrors = {
|
|
4249
4348
|
/**
|
|
@@ -4262,7 +4361,7 @@ type KeyChainControllerGetProvidersData = {
|
|
|
4262
4361
|
body?: never;
|
|
4263
4362
|
path?: never;
|
|
4264
4363
|
query?: never;
|
|
4265
|
-
url:
|
|
4364
|
+
url: '/api/key-chain/providers';
|
|
4266
4365
|
};
|
|
4267
4366
|
type KeyChainControllerGetProvidersResponses = {
|
|
4268
4367
|
/**
|
|
@@ -4271,6 +4370,18 @@ type KeyChainControllerGetProvidersResponses = {
|
|
|
4271
4370
|
200: KmsProvidersResponseDto;
|
|
4272
4371
|
};
|
|
4273
4372
|
type KeyChainControllerGetProvidersResponse = KeyChainControllerGetProvidersResponses[keyof KeyChainControllerGetProvidersResponses];
|
|
4373
|
+
type KeyChainControllerGetProvidersHealthData = {
|
|
4374
|
+
body?: never;
|
|
4375
|
+
path?: never;
|
|
4376
|
+
query?: never;
|
|
4377
|
+
url: '/api/key-chain/providers/health';
|
|
4378
|
+
};
|
|
4379
|
+
type KeyChainControllerGetProvidersHealthResponses = {
|
|
4380
|
+
/**
|
|
4381
|
+
* Per-provider health result (ok, latencyMs, optional error).
|
|
4382
|
+
*/
|
|
4383
|
+
200: unknown;
|
|
4384
|
+
};
|
|
4274
4385
|
type KeyChainControllerGetAllData = {
|
|
4275
4386
|
body?: never;
|
|
4276
4387
|
path?: never;
|
|
@@ -4278,9 +4389,9 @@ type KeyChainControllerGetAllData = {
|
|
|
4278
4389
|
/**
|
|
4279
4390
|
* Optional usage type filter
|
|
4280
4391
|
*/
|
|
4281
|
-
usageType?:
|
|
4392
|
+
usageType?: 'access' | 'attestation' | 'trustList' | 'statusList' | 'encrypt';
|
|
4282
4393
|
};
|
|
4283
|
-
url:
|
|
4394
|
+
url: '/api/key-chain';
|
|
4284
4395
|
};
|
|
4285
4396
|
type KeyChainControllerGetAllResponses = {
|
|
4286
4397
|
/**
|
|
@@ -4293,7 +4404,7 @@ type KeyChainControllerCreateData = {
|
|
|
4293
4404
|
body: KeyChainCreateDto;
|
|
4294
4405
|
path?: never;
|
|
4295
4406
|
query?: never;
|
|
4296
|
-
url:
|
|
4407
|
+
url: '/api/key-chain';
|
|
4297
4408
|
};
|
|
4298
4409
|
type KeyChainControllerCreateResponses = {
|
|
4299
4410
|
/**
|
|
@@ -4307,7 +4418,7 @@ type KeyChainControllerDeleteData = {
|
|
|
4307
4418
|
id: string;
|
|
4308
4419
|
};
|
|
4309
4420
|
query?: never;
|
|
4310
|
-
url:
|
|
4421
|
+
url: '/api/key-chain/{id}';
|
|
4311
4422
|
};
|
|
4312
4423
|
type KeyChainControllerDeleteErrors = {
|
|
4313
4424
|
/**
|
|
@@ -4327,7 +4438,7 @@ type KeyChainControllerGetByIdData = {
|
|
|
4327
4438
|
id: string;
|
|
4328
4439
|
};
|
|
4329
4440
|
query?: never;
|
|
4330
|
-
url:
|
|
4441
|
+
url: '/api/key-chain/{id}';
|
|
4331
4442
|
};
|
|
4332
4443
|
type KeyChainControllerGetByIdErrors = {
|
|
4333
4444
|
/**
|
|
@@ -4348,7 +4459,7 @@ type KeyChainControllerUpdateData = {
|
|
|
4348
4459
|
id: string;
|
|
4349
4460
|
};
|
|
4350
4461
|
query?: never;
|
|
4351
|
-
url:
|
|
4462
|
+
url: '/api/key-chain/{id}';
|
|
4352
4463
|
};
|
|
4353
4464
|
type KeyChainControllerUpdateErrors = {
|
|
4354
4465
|
/**
|
|
@@ -4368,7 +4479,7 @@ type KeyChainControllerExportData = {
|
|
|
4368
4479
|
id: string;
|
|
4369
4480
|
};
|
|
4370
4481
|
query?: never;
|
|
4371
|
-
url:
|
|
4482
|
+
url: '/api/key-chain/{id}/export';
|
|
4372
4483
|
};
|
|
4373
4484
|
type KeyChainControllerExportErrors = {
|
|
4374
4485
|
/**
|
|
@@ -4387,7 +4498,7 @@ type KeyChainControllerImportData = {
|
|
|
4387
4498
|
body: KeyChainImportDto;
|
|
4388
4499
|
path?: never;
|
|
4389
4500
|
query?: never;
|
|
4390
|
-
url:
|
|
4501
|
+
url: '/api/key-chain/import';
|
|
4391
4502
|
};
|
|
4392
4503
|
type KeyChainControllerImportResponses = {
|
|
4393
4504
|
/**
|
|
@@ -4401,7 +4512,7 @@ type KeyChainControllerRotateData = {
|
|
|
4401
4512
|
id: string;
|
|
4402
4513
|
};
|
|
4403
4514
|
query?: never;
|
|
4404
|
-
url:
|
|
4515
|
+
url: '/api/key-chain/{id}/rotate';
|
|
4405
4516
|
};
|
|
4406
4517
|
type KeyChainControllerRotateErrors = {
|
|
4407
4518
|
/**
|
|
@@ -4419,7 +4530,7 @@ type VerifierOfferControllerGetOfferData = {
|
|
|
4419
4530
|
body: PresentationRequest;
|
|
4420
4531
|
path?: never;
|
|
4421
4532
|
query?: never;
|
|
4422
|
-
url:
|
|
4533
|
+
url: '/api/verifier/offer';
|
|
4423
4534
|
};
|
|
4424
4535
|
type VerifierOfferControllerGetOfferResponses = {
|
|
4425
4536
|
/**
|
|
@@ -4432,7 +4543,7 @@ type StorageControllerUploadData = {
|
|
|
4432
4543
|
body: FileUploadDto;
|
|
4433
4544
|
path?: never;
|
|
4434
4545
|
query?: never;
|
|
4435
|
-
url:
|
|
4546
|
+
url: '/api/storage';
|
|
4436
4547
|
};
|
|
4437
4548
|
type StorageControllerUploadResponses = {
|
|
4438
4549
|
201: {
|
|
@@ -4441,4 +4552,4 @@ type StorageControllerUploadResponses = {
|
|
|
4441
4552
|
};
|
|
4442
4553
|
type StorageControllerUploadResponse = StorageControllerUploadResponses[keyof StorageControllerUploadResponses];
|
|
4443
4554
|
|
|
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 };
|
|
4555
|
+
export type { ChainedAsParResponseDto as $, AccessCertificateRefDto as A, AuthControllerGetOAuth2TokenData as B, ClientOptions as C, AuthControllerGetOAuth2TokenErrors as D, AuthControllerGetOAuth2TokenResponse as E, AuthControllerGetOAuth2TokenResponses as F, AuthenticationMethodAuth as G, AuthenticationMethodNone as H, AuthenticationMethodPresentation as I, AuthenticationUrlConfig as J, AuthorizationResponse as K, AuthorizeQueries as L, CacheControllerClearAllCachesData as M, CacheControllerClearAllCachesResponse as N, CacheControllerClearAllCachesResponses as O, CacheControllerClearStatusListCacheData as P, CacheControllerClearStatusListCacheResponse as Q, CacheControllerClearStatusListCacheResponses as R, Session as S, CacheControllerClearTrustListCacheData as T, CacheControllerClearTrustListCacheResponse as U, CacheControllerClearTrustListCacheResponses as V, CacheControllerGetStatsData as W, CacheControllerGetStatsResponses as X, CertificateInfoDto as Y, ChainedAsConfig as Z, ChainedAsErrorResponseDto as _, AllowListPolicy as a, DeferredControllerCompleteDeferredResponse as a$, ChainedAsTokenConfig as a0, ChainedAsTokenRequestDto as a1, ChainedAsTokenResponseDto as a2, ClaimFieldDefinitionDto as a3, ClaimsQuery as a4, ClientControllerCreateClientData as a5, ClientControllerCreateClientResponse as a6, ClientControllerCreateClientResponses as a7, ClientControllerDeleteClientData as a8, ClientControllerDeleteClientResponses as a9, CreateWebhookEndpointDto as aA, CredentialConfig as aB, CredentialConfigControllerDeleteIssuanceConfigurationData as aC, CredentialConfigControllerDeleteIssuanceConfigurationResponse as aD, CredentialConfigControllerDeleteIssuanceConfigurationResponses as aE, CredentialConfigControllerGetConfigByIdData as aF, CredentialConfigControllerGetConfigByIdResponse as aG, CredentialConfigControllerGetConfigByIdResponses as aH, CredentialConfigControllerGetConfigsData as aI, CredentialConfigControllerGetConfigsResponse as aJ, CredentialConfigControllerGetConfigsResponses as aK, CredentialConfigControllerStoreCredentialConfigurationData as aL, CredentialConfigControllerStoreCredentialConfigurationResponse as aM, CredentialConfigControllerStoreCredentialConfigurationResponses as aN, CredentialConfigControllerUpdateCredentialConfigurationData as aO, CredentialConfigControllerUpdateCredentialConfigurationResponse as aP, CredentialConfigControllerUpdateCredentialConfigurationResponses as aQ, CredentialConfigCreate as aR, CredentialConfigUpdate as aS, CredentialOfferControllerGetOfferData as aT, CredentialOfferControllerGetOfferResponse as aU, CredentialOfferControllerGetOfferResponses as aV, CredentialQuery as aW, CredentialSetQuery as aX, Dcql as aY, DeferredControllerCompleteDeferredData as aZ, DeferredControllerCompleteDeferredErrors 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, ClientSecretResponseDto as ar, CompleteDeferredDto as as, CreateAccessCertificateDto as at, CreateAttributeProviderDto as au, CreateClientDto as av, CreateRegistrarConfigDto as aw, CreateStatusListDto as ax, CreateTenantDto as ay, CreateUserDto as az, ApiKeyConfig as b, KeyChainControllerGetProvidersResponses as b$, DeferredControllerCompleteDeferredResponses as b0, DeferredControllerFailDeferredData as b1, DeferredControllerFailDeferredErrors as b2, DeferredControllerFailDeferredResponse as b3, DeferredControllerFailDeferredResponses as b4, DeferredCredentialRequestDto as b5, DeferredOperationResponse as b6, DeprecateSchemaMetadataDto as b7, Display as b8, DisplayImage as b9, IssuanceConfigControllerStoreIssuanceConfigurationData as bA, IssuanceConfigControllerStoreIssuanceConfigurationResponse as bB, IssuanceConfigControllerStoreIssuanceConfigurationResponses as bC, IssuanceDto as bD, IssuerMetadataCredentialConfig as bE, JwksResponseDto as bF, KeyAttestationsRequired as bG, KeyChainControllerCreateData as bH, KeyChainControllerCreateResponses as bI, KeyChainControllerDeleteData as bJ, KeyChainControllerDeleteErrors as bK, KeyChainControllerDeleteResponses as bL, KeyChainControllerExportData as bM, KeyChainControllerExportErrors as bN, KeyChainControllerExportResponse as bO, KeyChainControllerExportResponses as bP, KeyChainControllerGetAllData as bQ, KeyChainControllerGetAllResponse as bR, KeyChainControllerGetAllResponses as bS, KeyChainControllerGetByIdData as bT, KeyChainControllerGetByIdErrors as bU, KeyChainControllerGetByIdResponse as bV, KeyChainControllerGetByIdResponses as bW, KeyChainControllerGetProvidersData as bX, KeyChainControllerGetProvidersHealthData as bY, KeyChainControllerGetProvidersHealthResponses as bZ, KeyChainControllerGetProvidersResponse as b_, DisplayInfo as ba, DisplayLogo as bb, EcJwk as bc, EcPublic as bd, EmbeddedDisclosurePolicy as be, ExportEcJwk as bf, ExportRotationPolicyDto as bg, ExternalTrustListEntity as bh, FailDeferredDto as bi, FederationConfig as bj, FederationTrustAnchorConfig as bk, FieldDisplayDto as bl, FileUploadDto as bm, FrontendConfigResponseDto as bn, GrafanaConfigDto as bo, IaeActionOpenid4VpPresentation as bp, IaeActionRedirectToWeb as bq, ImportTenantDto as br, InteractiveAuthorizationCodeResponseDto as bs, InteractiveAuthorizationErrorResponseDto as bt, InteractiveAuthorizationRequestDto as bu, InternalTrustListEntity as bv, IssuanceConfig as bw, IssuanceConfigControllerGetIssuanceConfigurationsData as bx, IssuanceConfigControllerGetIssuanceConfigurationsResponse as by, IssuanceConfigControllerGetIssuanceConfigurationsResponses as bz, AppControllerGetFrontendConfigData as c, RegistrarControllerCreateAccessCertificateErrors as c$, KeyChainControllerImportData as c0, KeyChainControllerImportResponses as c1, KeyChainControllerRotateData as c2, KeyChainControllerRotateErrors as c3, KeyChainControllerRotateResponses as c4, KeyChainControllerUpdateData as c5, KeyChainControllerUpdateErrors as c6, KeyChainControllerUpdateResponses as c7, KeyChainCreateDto as c8, KeyChainEntity as c9, PresentationManagementControllerConfigurationResponses as cA, PresentationManagementControllerDeleteConfigurationData as cB, PresentationManagementControllerDeleteConfigurationResponses as cC, PresentationManagementControllerGetConfigurationData as cD, PresentationManagementControllerGetConfigurationResponse as cE, PresentationManagementControllerGetConfigurationResponses as cF, PresentationManagementControllerListSchemaMetadataCatalogData as cG, PresentationManagementControllerListSchemaMetadataCatalogResponses as cH, PresentationManagementControllerReissueRegistrationCertificateData as cI, PresentationManagementControllerReissueRegistrationCertificateErrors as cJ, PresentationManagementControllerReissueRegistrationCertificateResponses as cK, PresentationManagementControllerResolveIssuerMetadataData as cL, PresentationManagementControllerResolveIssuerMetadataErrors as cM, PresentationManagementControllerResolveIssuerMetadataResponses as cN, PresentationManagementControllerResolveSchemaMetadataData as cO, PresentationManagementControllerResolveSchemaMetadataErrors as cP, PresentationManagementControllerResolveSchemaMetadataResponses as cQ, PresentationManagementControllerStorePresentationConfigData as cR, PresentationManagementControllerStorePresentationConfigResponse as cS, PresentationManagementControllerStorePresentationConfigResponses as cT, PresentationManagementControllerUpdateConfigurationData as cU, PresentationManagementControllerUpdateConfigurationResponse as cV, PresentationManagementControllerUpdateConfigurationResponses as cW, PresentationRequest as cX, PublicKeyInfoDto as cY, RegistrarConfigResponseDto as cZ, RegistrarControllerCreateAccessCertificateData as c_, KeyChainExportDto as ca, KeyChainImportDto as cb, KeyChainResponseDto as cc, KeyChainUpdateDto as cd, KmsProviderCapabilitiesDto as ce, KmsProviderInfoDto as cf, KmsProvidersResponseDto as cg, ManagedUserDto as ch, MetadataSchemaDto as ci, NoneTrustPolicy as cj, NotificationRequestDto as ck, Object$1 as cl, ObjectWritable as cm, OfferRequestDto as cn, OfferResponse as co, PaginatedSessionResponseDto as cp, ParResponseDto as cq, PolicyCredential as cr, PresentationAttachment as cs, PresentationConfig as ct, PresentationConfigCreateDto as cu, PresentationConfigUpdateDto as cv, PresentationConfigWritable as cw, PresentationDuringIssuanceConfig as cx, PresentationManagementControllerConfigurationData as cy, PresentationManagementControllerConfigurationResponse as cz, AppControllerGetFrontendConfigResponse as d, SchemaMetadataControllerSignVersionSchemaMetaConfigData as d$, RegistrarControllerCreateAccessCertificateResponse as d0, RegistrarControllerCreateAccessCertificateResponses as d1, RegistrarControllerCreateConfigData as d2, RegistrarControllerCreateConfigErrors as d3, RegistrarControllerCreateConfigResponse as d4, RegistrarControllerCreateConfigResponses as d5, RegistrarControllerDeleteConfigData as d6, RegistrarControllerDeleteConfigResponse as d7, RegistrarControllerDeleteConfigResponses as d8, RegistrarControllerGetConfigData as d9, SchemaMetadataControllerExportResponses as dA, SchemaMetadataControllerFindAllData as dB, SchemaMetadataControllerFindAllResponse as dC, SchemaMetadataControllerFindAllResponses as dD, SchemaMetadataControllerFindOneData as dE, SchemaMetadataControllerFindOneResponse as dF, SchemaMetadataControllerFindOneResponses as dG, SchemaMetadataControllerGetJwtData as dH, SchemaMetadataControllerGetJwtResponse as dI, SchemaMetadataControllerGetJwtResponses as dJ, SchemaMetadataControllerGetLatestData as dK, SchemaMetadataControllerGetLatestResponse as dL, SchemaMetadataControllerGetLatestResponses as dM, SchemaMetadataControllerGetSchemaData as dN, SchemaMetadataControllerGetSchemaResponse as dO, SchemaMetadataControllerGetSchemaResponses as dP, SchemaMetadataControllerGetVersionsData as dQ, SchemaMetadataControllerGetVersionsResponse as dR, SchemaMetadataControllerGetVersionsResponses as dS, SchemaMetadataControllerGetVocabulariesData as dT, SchemaMetadataControllerGetVocabulariesResponse as dU, SchemaMetadataControllerGetVocabulariesResponses as dV, SchemaMetadataControllerRemoveData as dW, SchemaMetadataControllerRemoveResponses as dX, SchemaMetadataControllerSignSchemaMetaConfigData as dY, SchemaMetadataControllerSignSchemaMetaConfigErrors as dZ, SchemaMetadataControllerSignSchemaMetaConfigResponses as d_, RegistrarControllerGetConfigErrors as da, RegistrarControllerGetConfigResponse as db, RegistrarControllerGetConfigResponses as dc, RegistrarControllerUpdateConfigData as dd, RegistrarControllerUpdateConfigErrors as de, RegistrarControllerUpdateConfigResponse as df, RegistrarControllerUpdateConfigResponses as dg, RegistrationCertificateBody as dh, RegistrationCertificateDefaults as di, RegistrationCertificatePurpose as dj, RegistrationCertificateRequest as dk, ResolveIssuerMetadataDto as dl, ResolveSchemaMetadataDto as dm, RoleDto as dn, RootOfTrustPolicy as dp, RotationPolicyCreateDto as dq, RotationPolicyImportDto as dr, RotationPolicyResponseDto as ds, RotationPolicyUpdateDto as dt, SchemaMetaConfig as du, SchemaMetadataControllerDeprecateVersionData as dv, SchemaMetadataControllerDeprecateVersionResponse as dw, SchemaMetadataControllerDeprecateVersionResponses as dx, SchemaMetadataControllerExportData as dy, SchemaMetadataControllerExportResponse as dz, AppControllerGetFrontendConfigResponses as e, StatusUpdateDto as e$, SchemaMetadataControllerSignVersionSchemaMetaConfigErrors as e0, SchemaMetadataControllerSignVersionSchemaMetaConfigResponses as e1, SchemaMetadataControllerUpdateData as e2, SchemaMetadataControllerUpdateResponse as e3, SchemaMetadataControllerUpdateResponses as e4, SchemaMetadataResponseDto as e5, SchemaMetadataVocabulariesDto as e6, SchemaUriEntry as e7, SessionConfigControllerGetConfigData as e8, SessionConfigControllerGetConfigResponse as e9, StatusListConfig as eA, StatusListConfigControllerGetConfigData as eB, StatusListConfigControllerGetConfigResponse as eC, StatusListConfigControllerGetConfigResponses as eD, StatusListConfigControllerResetConfigData as eE, StatusListConfigControllerResetConfigResponse as eF, StatusListConfigControllerResetConfigResponses as eG, StatusListConfigControllerUpdateConfigData as eH, StatusListConfigControllerUpdateConfigResponse as eI, StatusListConfigControllerUpdateConfigResponses as eJ, StatusListImportDto as eK, StatusListManagementControllerCreateListData as eL, StatusListManagementControllerCreateListResponse as eM, StatusListManagementControllerCreateListResponses as eN, StatusListManagementControllerDeleteListData as eO, StatusListManagementControllerDeleteListResponse as eP, StatusListManagementControllerDeleteListResponses as eQ, StatusListManagementControllerGetListData as eR, StatusListManagementControllerGetListResponse as eS, StatusListManagementControllerGetListResponses as eT, StatusListManagementControllerGetListsData as eU, StatusListManagementControllerGetListsResponse as eV, StatusListManagementControllerGetListsResponses as eW, StatusListManagementControllerUpdateListData as eX, StatusListManagementControllerUpdateListResponse as eY, StatusListManagementControllerUpdateListResponses as eZ, StatusListResponseDto as e_, SessionConfigControllerGetConfigResponses as ea, SessionConfigControllerResetConfigData as eb, SessionConfigControllerResetConfigResponses as ec, SessionConfigControllerUpdateConfigData as ed, SessionConfigControllerUpdateConfigResponse as ee, SessionConfigControllerUpdateConfigResponses as ef, SessionControllerDeleteSessionData as eg, SessionControllerDeleteSessionResponses as eh, SessionControllerGetAllSessionsData as ei, SessionControllerGetAllSessionsResponse as ej, SessionControllerGetAllSessionsResponses as ek, SessionControllerGetSessionData as el, SessionControllerGetSessionLogsData as em, SessionControllerGetSessionLogsResponse as en, SessionControllerGetSessionLogsResponses as eo, SessionControllerGetSessionResponse as ep, SessionControllerGetSessionResponses as eq, SessionControllerRevokeAllData as er, SessionControllerRevokeAllResponses as es, SessionEventsControllerSubscribeToSessionEventsData as et, SessionEventsControllerSubscribeToSessionEventsResponses as eu, SessionLogEntryResponseDto as ev, SessionStorageConfig as ew, SignSchemaMetaConfigDto as ex, SignVersionSchemaMetaConfigDto as ey, StatusListAggregationDto as ez, AppControllerGetVersionData as f, UserControllerCreateUserResponses as f$, StorageControllerUploadData as f0, StorageControllerUploadResponse as f1, StorageControllerUploadResponses as f2, TenantControllerDeleteTenantData as f3, TenantControllerDeleteTenantResponses as f4, TenantControllerGetTenantData as f5, TenantControllerGetTenantResponse as f6, TenantControllerGetTenantResponses as f7, TenantControllerGetTenantsData as f8, TenantControllerGetTenantsResponse as f9, TrustListControllerGetTrustListResponses as fA, TrustListControllerGetTrustListVersionData as fB, TrustListControllerGetTrustListVersionResponse as fC, TrustListControllerGetTrustListVersionResponses as fD, TrustListControllerGetTrustListVersionsData as fE, TrustListControllerGetTrustListVersionsResponse as fF, TrustListControllerGetTrustListVersionsResponses as fG, TrustListControllerUpdateTrustListData as fH, TrustListControllerUpdateTrustListResponse as fI, TrustListControllerUpdateTrustListResponses as fJ, TrustListCreateDto as fK, TrustListEntityInfo as fL, TrustListVersion as fM, TrustedAuthorityQuery as fN, UpdateAttributeProviderDto as fO, UpdateClientDto as fP, UpdateRegistrarConfigDto as fQ, UpdateSchemaMetadataDto as fR, UpdateSessionConfigDto as fS, UpdateStatusListConfigDto as fT, UpdateStatusListDto as fU, UpdateTenantDto as fV, UpdateUserDto as fW, UpdateWebhookEndpointDto as fX, UpstreamOidcConfig as fY, UserControllerCreateUserData as fZ, UserControllerCreateUserResponse as f_, TenantControllerGetTenantsResponses as fa, TenantControllerInitTenantData as fb, TenantControllerInitTenantResponse as fc, TenantControllerInitTenantResponses as fd, TenantControllerUpdateTenantData as fe, TenantControllerUpdateTenantResponse as ff, TenantControllerUpdateTenantResponses as fg, TenantEntity as fh, TokenResponse as fi, TransactionData as fj, TrustAuthorityDto as fk, TrustAuthorityEntry as fl, TrustList as fm, TrustListControllerCreateTrustListData as fn, TrustListControllerCreateTrustListResponse as fo, TrustListControllerCreateTrustListResponses as fp, TrustListControllerDeleteTrustListData as fq, TrustListControllerDeleteTrustListResponses as fr, TrustListControllerExportTrustListData as fs, TrustListControllerExportTrustListResponse as ft, TrustListControllerExportTrustListResponses as fu, TrustListControllerGetAllTrustListsData as fv, TrustListControllerGetAllTrustListsResponse as fw, TrustListControllerGetAllTrustListsResponses as fx, TrustListControllerGetTrustListData as fy, TrustListControllerGetTrustListResponse as fz, AppControllerGetVersionResponses as g, UserControllerDeleteUserData as g0, UserControllerDeleteUserResponses as g1, UserControllerGetUserData as g2, UserControllerGetUserResponse as g3, UserControllerGetUserResponses as g4, UserControllerGetUsersData as g5, UserControllerGetUsersResponse as g6, UserControllerGetUsersResponses as g7, UserControllerUpdateUserData as g8, UserControllerUpdateUserResponse as g9, UserControllerUpdateUserResponses as ga, Vct as gb, VerifierOfferControllerGetOfferData as gc, VerifierOfferControllerGetOfferResponse as gd, VerifierOfferControllerGetOfferResponses as ge, VocabularyEntryDto as gf, WebHookAuthConfigHeader as gg, WebHookAuthConfigNone as gh, WebhookConfig as gi, WebhookEndpointControllerCreateData as gj, WebhookEndpointControllerCreateResponses as gk, WebhookEndpointControllerDeleteData as gl, WebhookEndpointControllerDeleteErrors as gm, WebhookEndpointControllerDeleteResponses as gn, WebhookEndpointControllerGetAllData as go, WebhookEndpointControllerGetAllResponse as gp, WebhookEndpointControllerGetAllResponses as gq, WebhookEndpointControllerGetByIdData as gr, WebhookEndpointControllerGetByIdErrors as gs, WebhookEndpointControllerGetByIdResponses as gt, WebhookEndpointControllerUpdateData as gu, WebhookEndpointControllerUpdateErrors as gv, WebhookEndpointControllerUpdateResponses as gw, WebhookEndpointEntity as gx, 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 };
|