@eudiplo/sdk-core 5.1.0 → 6.0.0-main.a2a87ad
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api/client/client.gen.d.mts +1 -1
- package/dist/api/client/client.gen.d.ts +1 -1
- package/dist/api/client/index.d.mts +2 -2
- package/dist/api/client/index.d.ts +2 -2
- package/dist/api/client/index.js +13 -5
- package/dist/api/client/index.mjs +13 -5
- 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/index.d.mts +72 -14
- package/dist/api/index.d.ts +72 -14
- package/dist/api/index.js +67 -6
- package/dist/api/index.mjs +58 -6
- package/dist/index.d.mts +9 -5
- package/dist/index.d.ts +9 -5
- package/dist/index.js +136 -14
- package/dist/index.mjs +126 -14
- package/dist/{types.gen-CdvErMyl.d.mts → types.gen-Cg-nB7uf.d.mts} +904 -193
- package/dist/{types.gen-CdvErMyl.d.ts → types.gen-Cg-nB7uf.d.ts} +904 -193
- package/dist/{types.gen-zNuA7BkO.d.mts → types.gen-DZ4ax15r.d.mts} +1 -1
- package/dist/{types.gen-zNuA7BkO.d.ts → types.gen-DZ4ax15r.d.ts} +1 -1
- package/package.json +4 -4
|
@@ -401,7 +401,11 @@ type OfferRequestDto = {
|
|
|
401
401
|
/**
|
|
402
402
|
* The type of response expected for the offer request.
|
|
403
403
|
*/
|
|
404
|
-
response_type: 'uri' | 'dc-api';
|
|
404
|
+
response_type: 'uri' | 'dc-api' | 'iso-18013-7';
|
|
405
|
+
/**
|
|
406
|
+
* Authorization server id from issuer configuration. If omitted, the first enabled server is used.
|
|
407
|
+
*/
|
|
408
|
+
authorization_server?: string;
|
|
405
409
|
/**
|
|
406
410
|
* Credential claims configuration per credential. Keys must match credentialConfigurationIds.
|
|
407
411
|
*/
|
|
@@ -440,10 +444,6 @@ type OfferRequestDto = {
|
|
|
440
444
|
* List of credential configuration ids to be included in the offer.
|
|
441
445
|
*/
|
|
442
446
|
credentialConfigurationIds: Array<string>;
|
|
443
|
-
/**
|
|
444
|
-
* Optional authorization server to be used for this issuance flow.
|
|
445
|
-
*/
|
|
446
|
-
authorization_server?: string;
|
|
447
447
|
/**
|
|
448
448
|
* ID of the webhook endpoint to notify about the status of the issuance process.
|
|
449
449
|
*/
|
|
@@ -520,6 +520,16 @@ type Session = {
|
|
|
520
520
|
* Flag indicating whether to use the DC API for the presentation request.
|
|
521
521
|
*/
|
|
522
522
|
useDcApi: boolean;
|
|
523
|
+
/**
|
|
524
|
+
* DC API sub-protocol: "oid4vp" (OpenID4VP via DC API) or "iso-18013-7" (org.iso.mdoc).
|
|
525
|
+
* Null/undefined means the standard OID4VP flow (useDcApi=false).
|
|
526
|
+
*/
|
|
527
|
+
dcApiProtocol?: string;
|
|
528
|
+
/**
|
|
529
|
+
* Browser page origin recorded at offer time for BrowserHandover session transcript.
|
|
530
|
+
* Used exclusively by the ISO 18013-7 Annex C flow.
|
|
531
|
+
*/
|
|
532
|
+
browserOrigin?: string;
|
|
523
533
|
/**
|
|
524
534
|
* Tenant ID for multi-tenancy support.
|
|
525
535
|
*/
|
|
@@ -651,8 +661,9 @@ type Session = {
|
|
|
651
661
|
*/
|
|
652
662
|
consumed: boolean;
|
|
653
663
|
/**
|
|
654
|
-
* Timestamp
|
|
655
|
-
*
|
|
664
|
+
* Timestamp of the first consumption event for the session offer.
|
|
665
|
+
* For OID4VCI this can be URI resolution or later flow completion.
|
|
666
|
+
* Null if no consumption event has happened yet.
|
|
656
667
|
*/
|
|
657
668
|
consumedAt?: string;
|
|
658
669
|
};
|
|
@@ -797,6 +808,98 @@ type AuthenticationMethodPresentation = {
|
|
|
797
808
|
method: 'presentationDuringIssuance';
|
|
798
809
|
config: PresentationDuringIssuanceConfig;
|
|
799
810
|
};
|
|
811
|
+
type ManagedAuthorizationServerConfig = {
|
|
812
|
+
/**
|
|
813
|
+
* Authorization server implementation type
|
|
814
|
+
*/
|
|
815
|
+
type: 'external' | 'oid4vp' | 'chained' | 'built-in';
|
|
816
|
+
/**
|
|
817
|
+
* Unique identifier for this authorization server
|
|
818
|
+
*/
|
|
819
|
+
id: string;
|
|
820
|
+
/**
|
|
821
|
+
* Human-friendly label for the UI
|
|
822
|
+
*/
|
|
823
|
+
label?: string;
|
|
824
|
+
/**
|
|
825
|
+
* Whether this managed authorization server is enabled
|
|
826
|
+
*/
|
|
827
|
+
enabled?: boolean;
|
|
828
|
+
};
|
|
829
|
+
type ExternalAuthorizationServerConfig = {
|
|
830
|
+
/**
|
|
831
|
+
* Authorization server implementation type
|
|
832
|
+
*/
|
|
833
|
+
type: 'external';
|
|
834
|
+
/**
|
|
835
|
+
* Unique identifier for this authorization server
|
|
836
|
+
*/
|
|
837
|
+
id: string;
|
|
838
|
+
/**
|
|
839
|
+
* Human-friendly label for the UI
|
|
840
|
+
*/
|
|
841
|
+
label?: string;
|
|
842
|
+
/**
|
|
843
|
+
* Whether this managed authorization server is enabled
|
|
844
|
+
*/
|
|
845
|
+
enabled?: boolean;
|
|
846
|
+
/**
|
|
847
|
+
* Issuer URL for external authorization servers
|
|
848
|
+
*/
|
|
849
|
+
issuer: string;
|
|
850
|
+
};
|
|
851
|
+
type ChainedAsTokenConfig = {
|
|
852
|
+
/**
|
|
853
|
+
* Access token lifetime in seconds
|
|
854
|
+
*/
|
|
855
|
+
lifetimeSeconds?: number;
|
|
856
|
+
/**
|
|
857
|
+
* Key ID for token signing
|
|
858
|
+
*/
|
|
859
|
+
signingKeyId?: string;
|
|
860
|
+
/**
|
|
861
|
+
* Whether refresh tokens should be issued
|
|
862
|
+
*/
|
|
863
|
+
refreshTokenEnabled?: boolean;
|
|
864
|
+
/**
|
|
865
|
+
* Refresh token lifetime in seconds
|
|
866
|
+
*/
|
|
867
|
+
refreshTokenExpiresInSeconds?: number;
|
|
868
|
+
};
|
|
869
|
+
type Oid4VpAuthorizationServerConfig = {
|
|
870
|
+
/**
|
|
871
|
+
* Authorization server implementation type
|
|
872
|
+
*/
|
|
873
|
+
type: 'oid4vp';
|
|
874
|
+
/**
|
|
875
|
+
* Stable identifier used in the AS URL path
|
|
876
|
+
*/
|
|
877
|
+
id: string;
|
|
878
|
+
/**
|
|
879
|
+
* Human-friendly label for the UI
|
|
880
|
+
*/
|
|
881
|
+
label?: string;
|
|
882
|
+
/**
|
|
883
|
+
* Whether this managed authorization server is enabled
|
|
884
|
+
*/
|
|
885
|
+
enabled?: boolean;
|
|
886
|
+
/**
|
|
887
|
+
* Presentation configuration ID to use for OID4VP
|
|
888
|
+
*/
|
|
889
|
+
presentationConfigId: string;
|
|
890
|
+
/**
|
|
891
|
+
* Immediately redirect the browser into the wallet OID4VP request
|
|
892
|
+
*/
|
|
893
|
+
immediateWalletRedirect?: boolean;
|
|
894
|
+
/**
|
|
895
|
+
* Token configuration for this authorization server
|
|
896
|
+
*/
|
|
897
|
+
token?: ChainedAsTokenConfig;
|
|
898
|
+
/**
|
|
899
|
+
* Require DPoP for token requests issued by this authorization server
|
|
900
|
+
*/
|
|
901
|
+
requireDPoP?: boolean;
|
|
902
|
+
};
|
|
800
903
|
type UpstreamOidcConfig = {
|
|
801
904
|
/**
|
|
802
905
|
* The OIDC issuer URL of the upstream provider
|
|
@@ -815,31 +918,59 @@ type UpstreamOidcConfig = {
|
|
|
815
918
|
*/
|
|
816
919
|
scopes?: Array<string>;
|
|
817
920
|
};
|
|
818
|
-
type
|
|
921
|
+
type ChainedAuthorizationServerConfig = {
|
|
819
922
|
/**
|
|
820
|
-
*
|
|
923
|
+
* Authorization server implementation type
|
|
821
924
|
*/
|
|
822
|
-
|
|
925
|
+
type: 'chained';
|
|
823
926
|
/**
|
|
824
|
-
*
|
|
927
|
+
* Unique identifier for this authorization server
|
|
825
928
|
*/
|
|
826
|
-
|
|
929
|
+
id: string;
|
|
930
|
+
/**
|
|
931
|
+
* Human-friendly label for the UI
|
|
932
|
+
*/
|
|
933
|
+
label?: string;
|
|
934
|
+
/**
|
|
935
|
+
* Whether this managed authorization server is enabled
|
|
936
|
+
*/
|
|
937
|
+
enabled?: boolean;
|
|
938
|
+
/**
|
|
939
|
+
* Upstream OIDC provider configuration for chained mode
|
|
940
|
+
*/
|
|
941
|
+
upstream: UpstreamOidcConfig;
|
|
942
|
+
/**
|
|
943
|
+
* Token configuration for this authorization server
|
|
944
|
+
*/
|
|
945
|
+
token?: ChainedAsTokenConfig;
|
|
946
|
+
/**
|
|
947
|
+
* Require DPoP for token requests issued by this authorization server
|
|
948
|
+
*/
|
|
949
|
+
requireDPoP?: boolean;
|
|
827
950
|
};
|
|
828
|
-
type
|
|
951
|
+
type BuiltInAuthorizationServerConfig = {
|
|
829
952
|
/**
|
|
830
|
-
*
|
|
953
|
+
* Authorization server implementation type
|
|
831
954
|
*/
|
|
832
|
-
|
|
955
|
+
type: 'built-in';
|
|
833
956
|
/**
|
|
834
|
-
*
|
|
957
|
+
* Unique identifier for this authorization server
|
|
835
958
|
*/
|
|
836
|
-
|
|
959
|
+
id: string;
|
|
837
960
|
/**
|
|
838
|
-
*
|
|
961
|
+
* Human-friendly label for the UI
|
|
962
|
+
*/
|
|
963
|
+
label?: string;
|
|
964
|
+
/**
|
|
965
|
+
* Whether this managed authorization server is enabled
|
|
966
|
+
*/
|
|
967
|
+
enabled?: boolean;
|
|
968
|
+
/**
|
|
969
|
+
* Token configuration for this authorization server
|
|
839
970
|
*/
|
|
840
971
|
token?: ChainedAsTokenConfig;
|
|
841
972
|
/**
|
|
842
|
-
* Require DPoP
|
|
973
|
+
* Require DPoP for token requests issued by this authorization server
|
|
843
974
|
*/
|
|
844
975
|
requireDPoP?: boolean;
|
|
845
976
|
};
|
|
@@ -879,6 +1010,66 @@ type FederationConfig = {
|
|
|
879
1010
|
*/
|
|
880
1011
|
trustAnchors: Array<FederationTrustAnchorConfig>;
|
|
881
1012
|
};
|
|
1013
|
+
type IssuerProvidedAttestation = {
|
|
1014
|
+
/**
|
|
1015
|
+
* Attestation format as expected by the registrar (for example dc+sd-jwt, mso_mdoc).
|
|
1016
|
+
*/
|
|
1017
|
+
format?: string;
|
|
1018
|
+
/**
|
|
1019
|
+
* Arbitrary attestation metadata forwarded to the registrar.
|
|
1020
|
+
*/
|
|
1021
|
+
meta?: {
|
|
1022
|
+
[key: string]: unknown;
|
|
1023
|
+
};
|
|
1024
|
+
};
|
|
1025
|
+
type IssuerRegistrationCertificateConfig = {
|
|
1026
|
+
/**
|
|
1027
|
+
* Enable inclusion of a registration certificate in credential issuer metadata.
|
|
1028
|
+
*/
|
|
1029
|
+
enabled?: boolean;
|
|
1030
|
+
/**
|
|
1031
|
+
* import: use an existing JWT, generate: create via registrar from provided attestations and selected credential configurations.
|
|
1032
|
+
*/
|
|
1033
|
+
mode?: 'import' | 'generate';
|
|
1034
|
+
/**
|
|
1035
|
+
* Existing registration certificate JWT used when mode is import.
|
|
1036
|
+
*/
|
|
1037
|
+
jwt?: string;
|
|
1038
|
+
/**
|
|
1039
|
+
* Schema metadata IDs selected for inclusion in generated registration certificates.
|
|
1040
|
+
*/
|
|
1041
|
+
schemaMetadataIds?: Array<string>;
|
|
1042
|
+
/**
|
|
1043
|
+
* Privacy policy URL used when generating a registration certificate (optional if registrar defaults are configured).
|
|
1044
|
+
*/
|
|
1045
|
+
privacyPolicy?: string;
|
|
1046
|
+
/**
|
|
1047
|
+
* Support URI used when generating a registration certificate (optional if registrar defaults are configured).
|
|
1048
|
+
*/
|
|
1049
|
+
supportUri?: string;
|
|
1050
|
+
/**
|
|
1051
|
+
* Provided attestations included in generated registration certificates.
|
|
1052
|
+
*/
|
|
1053
|
+
providedAttestations?: Array<IssuerProvidedAttestation>;
|
|
1054
|
+
};
|
|
1055
|
+
type IssuerRegistrationCertificateCache = {
|
|
1056
|
+
/**
|
|
1057
|
+
* Cached registration certificate JWT generated by EUDIPLO.
|
|
1058
|
+
*/
|
|
1059
|
+
readonly jwt?: string;
|
|
1060
|
+
/**
|
|
1061
|
+
* Config fingerprint used to detect cache invalidation.
|
|
1062
|
+
*/
|
|
1063
|
+
readonly fingerprint?: string;
|
|
1064
|
+
/**
|
|
1065
|
+
* JWT iat claim, seconds since epoch.
|
|
1066
|
+
*/
|
|
1067
|
+
readonly issuedAt?: number;
|
|
1068
|
+
/**
|
|
1069
|
+
* JWT exp claim, seconds since epoch.
|
|
1070
|
+
*/
|
|
1071
|
+
readonly expiresAt?: number;
|
|
1072
|
+
};
|
|
882
1073
|
type DisplayLogo = {
|
|
883
1074
|
uri: string;
|
|
884
1075
|
alt_text?: string;
|
|
@@ -894,20 +1085,23 @@ type IssuanceConfig = {
|
|
|
894
1085
|
*/
|
|
895
1086
|
signingKeyId?: string;
|
|
896
1087
|
/**
|
|
897
|
-
*
|
|
898
|
-
* When enabled, EUDIPLO acts as an OAuth AS facade, delegating user authentication
|
|
899
|
-
* to an upstream OIDC provider while issuing its own tokens with issuer_state.
|
|
1088
|
+
* Dedicated managed authorization servers hosted by this issuer. At least one entry is required.
|
|
900
1089
|
*/
|
|
901
|
-
|
|
1090
|
+
authorizationServers: Array<ExternalAuthorizationServerConfig | Oid4VpAuthorizationServerConfig | ChainedAuthorizationServerConfig | BuiltInAuthorizationServerConfig>;
|
|
902
1091
|
/**
|
|
903
1092
|
* Optional OpenID Federation configuration used for trust evaluation.
|
|
904
1093
|
* When omitted, trust checks rely on existing LoTE trust-list behavior.
|
|
905
1094
|
*/
|
|
906
1095
|
federation?: FederationConfig;
|
|
907
1096
|
/**
|
|
908
|
-
*
|
|
1097
|
+
* Optional registration certificate configuration for issuer metadata (`issuer_info`).
|
|
1098
|
+
* Supports importing an existing JWT or generating one via registrar.
|
|
909
1099
|
*/
|
|
910
|
-
|
|
1100
|
+
registrationCertificate?: IssuerRegistrationCertificateConfig;
|
|
1101
|
+
/**
|
|
1102
|
+
* Server-managed cache for generated issuer registration certificates.
|
|
1103
|
+
*/
|
|
1104
|
+
readonly registrationCertificateCache?: IssuerRegistrationCertificateCache;
|
|
911
1105
|
/**
|
|
912
1106
|
* Whether `credential_response_encryption` should be advertised in the credential issuer metadata.
|
|
913
1107
|
*/
|
|
@@ -916,10 +1110,6 @@ type IssuanceConfig = {
|
|
|
916
1110
|
* Whether `credential_request_encryption` should be advertised in the credential issuer metadata.
|
|
917
1111
|
*/
|
|
918
1112
|
credentialRequestEncryption?: boolean;
|
|
919
|
-
/**
|
|
920
|
-
* Refresh token lifetime in seconds. Defaults to 2592000 (30 days).
|
|
921
|
-
*/
|
|
922
|
-
refreshTokenExpiresInSeconds?: number;
|
|
923
1113
|
/**
|
|
924
1114
|
* Maximum failed tx_code attempts before the pre-authorized code is invalidated. Defaults to 5.
|
|
925
1115
|
*/
|
|
@@ -928,10 +1118,6 @@ type IssuanceConfig = {
|
|
|
928
1118
|
* The tenant that owns this object.
|
|
929
1119
|
*/
|
|
930
1120
|
tenant: TenantEntity;
|
|
931
|
-
/**
|
|
932
|
-
* Authentication server URL for the issuance process.
|
|
933
|
-
*/
|
|
934
|
-
authServers?: Array<string>;
|
|
935
1121
|
/**
|
|
936
1122
|
* Value to determine the amount of credentials that are issued in a batch.
|
|
937
1123
|
* Default is 1.
|
|
@@ -953,13 +1139,6 @@ type IssuanceConfig = {
|
|
|
953
1139
|
* If empty and walletAttestationRequired is true, all wallet providers are rejected.
|
|
954
1140
|
*/
|
|
955
1141
|
walletProviderTrustLists?: Array<string>;
|
|
956
|
-
/**
|
|
957
|
-
* The URL of the preferred authorization server for wallet-initiated flows.
|
|
958
|
-
* When set, this AS is placed first in the `authorization_servers` array
|
|
959
|
-
* of the credential issuer metadata, signaling wallets to use it by default.
|
|
960
|
-
* Must match one of the configured auth servers, the chained AS URL, or "built-in".
|
|
961
|
-
*/
|
|
962
|
-
preferredAuthServer?: string;
|
|
963
1142
|
display: Array<DisplayInfo>;
|
|
964
1143
|
/**
|
|
965
1144
|
* The timestamp when the VP request was created.
|
|
@@ -970,26 +1149,29 @@ type IssuanceConfig = {
|
|
|
970
1149
|
*/
|
|
971
1150
|
updatedAt: string;
|
|
972
1151
|
};
|
|
973
|
-
type
|
|
1152
|
+
type UpdateIssuanceDto = {
|
|
974
1153
|
/**
|
|
975
1154
|
* Key ID for signing access tokens. If unset, the default signing key is used.
|
|
976
1155
|
*/
|
|
977
1156
|
signingKeyId?: string;
|
|
978
1157
|
/**
|
|
979
|
-
*
|
|
980
|
-
* When enabled, EUDIPLO acts as an OAuth AS facade, delegating user authentication
|
|
981
|
-
* to an upstream OIDC provider while issuing its own tokens with issuer_state.
|
|
1158
|
+
* Dedicated managed authorization servers hosted by this issuer. At least one entry is required.
|
|
982
1159
|
*/
|
|
983
|
-
|
|
1160
|
+
authorizationServers?: Array<ExternalAuthorizationServerConfig | Oid4VpAuthorizationServerConfig | ChainedAuthorizationServerConfig | BuiltInAuthorizationServerConfig>;
|
|
984
1161
|
/**
|
|
985
1162
|
* Optional OpenID Federation configuration used for trust evaluation.
|
|
986
1163
|
* When omitted, trust checks rely on existing LoTE trust-list behavior.
|
|
987
1164
|
*/
|
|
988
1165
|
federation?: FederationConfig;
|
|
989
1166
|
/**
|
|
990
|
-
*
|
|
1167
|
+
* Optional registration certificate configuration for issuer metadata (`issuer_info`).
|
|
1168
|
+
* Supports importing an existing JWT or generating one via registrar.
|
|
991
1169
|
*/
|
|
992
|
-
|
|
1170
|
+
registrationCertificate?: IssuerRegistrationCertificateConfig;
|
|
1171
|
+
/**
|
|
1172
|
+
* Server-managed cache for generated issuer registration certificates.
|
|
1173
|
+
*/
|
|
1174
|
+
readonly registrationCertificateCache?: IssuerRegistrationCertificateCache;
|
|
993
1175
|
/**
|
|
994
1176
|
* Whether `credential_response_encryption` should be advertised in the credential issuer metadata.
|
|
995
1177
|
*/
|
|
@@ -998,18 +1180,10 @@ type IssuanceDto = {
|
|
|
998
1180
|
* Whether `credential_request_encryption` should be advertised in the credential issuer metadata.
|
|
999
1181
|
*/
|
|
1000
1182
|
credentialRequestEncryption?: boolean;
|
|
1001
|
-
/**
|
|
1002
|
-
* Refresh token lifetime in seconds. Defaults to 2592000 (30 days).
|
|
1003
|
-
*/
|
|
1004
|
-
refreshTokenExpiresInSeconds?: number;
|
|
1005
1183
|
/**
|
|
1006
1184
|
* Maximum failed tx_code attempts before the pre-authorized code is invalidated. Defaults to 5.
|
|
1007
1185
|
*/
|
|
1008
1186
|
txCodeMaxAttempts?: number;
|
|
1009
|
-
/**
|
|
1010
|
-
* Authentication server URL for the issuance process.
|
|
1011
|
-
*/
|
|
1012
|
-
authServers?: Array<string>;
|
|
1013
1187
|
/**
|
|
1014
1188
|
* Value to determine the amount of credentials that are issued in a batch.
|
|
1015
1189
|
* Default is 1.
|
|
@@ -1031,14 +1205,7 @@ type IssuanceDto = {
|
|
|
1031
1205
|
* If empty and walletAttestationRequired is true, all wallet providers are rejected.
|
|
1032
1206
|
*/
|
|
1033
1207
|
walletProviderTrustLists?: Array<string>;
|
|
1034
|
-
|
|
1035
|
-
* The URL of the preferred authorization server for wallet-initiated flows.
|
|
1036
|
-
* When set, this AS is placed first in the `authorization_servers` array
|
|
1037
|
-
* of the credential issuer metadata, signaling wallets to use it by default.
|
|
1038
|
-
* Must match one of the configured auth servers, the chained AS URL, or "built-in".
|
|
1039
|
-
*/
|
|
1040
|
-
preferredAuthServer?: string;
|
|
1041
|
-
display: Array<DisplayInfo>;
|
|
1208
|
+
display?: Array<DisplayInfo>;
|
|
1042
1209
|
};
|
|
1043
1210
|
type ClaimsQuery = {
|
|
1044
1211
|
id?: string;
|
|
@@ -1050,6 +1217,10 @@ type TrustedAuthorityQuery = {
|
|
|
1050
1217
|
values: Array<string>;
|
|
1051
1218
|
};
|
|
1052
1219
|
type CredentialQuery = {
|
|
1220
|
+
/**
|
|
1221
|
+
* Ordered alternative claim combinations for this credential query.
|
|
1222
|
+
*/
|
|
1223
|
+
claim_sets?: Array<Array<string>>;
|
|
1053
1224
|
id: string;
|
|
1054
1225
|
format: string;
|
|
1055
1226
|
multiple?: boolean;
|
|
@@ -1156,7 +1327,7 @@ type SchemaUriEntry = {
|
|
|
1156
1327
|
/**
|
|
1157
1328
|
* Schema-format specific metadata (for example { vct: 'urn:example:vct' } for dc+sd-jwt).
|
|
1158
1329
|
*/
|
|
1159
|
-
meta
|
|
1330
|
+
meta?: {
|
|
1160
1331
|
[key: string]: unknown;
|
|
1161
1332
|
};
|
|
1162
1333
|
};
|
|
@@ -1173,16 +1344,12 @@ type TrustAuthorityEntry = {
|
|
|
1173
1344
|
* URI of the trust list or trust anchor (ignored when trustListId is set)
|
|
1174
1345
|
*/
|
|
1175
1346
|
value?: string;
|
|
1176
|
-
/**
|
|
1177
|
-
* Whether this trust authority is a List of Trusted Entities (LoTE)
|
|
1178
|
-
*/
|
|
1179
|
-
isLoTE?: boolean;
|
|
1180
1347
|
/**
|
|
1181
1348
|
* Optional verification material for external trusted authorities (for example a JWK). For internal trust-list URLs, EUDIPLO resolves verification material from the database.
|
|
1182
1349
|
*/
|
|
1183
1350
|
verificationMethod?: {
|
|
1184
1351
|
[key: string]: unknown;
|
|
1185
|
-
};
|
|
1352
|
+
} | string;
|
|
1186
1353
|
};
|
|
1187
1354
|
type SchemaMetaConfig = {
|
|
1188
1355
|
/**
|
|
@@ -1271,7 +1438,7 @@ type FieldDisplayDto = {
|
|
|
1271
1438
|
};
|
|
1272
1439
|
type ClaimFieldDefinitionDto = {
|
|
1273
1440
|
/**
|
|
1274
|
-
* Path to claim value
|
|
1441
|
+
* Path to claim value. For nested child fields this can be relative to the parent path.
|
|
1275
1442
|
*/
|
|
1276
1443
|
path: Array<string | number | null>;
|
|
1277
1444
|
/**
|
|
@@ -1293,7 +1460,7 @@ type ClaimFieldDefinitionDto = {
|
|
|
1293
1460
|
*/
|
|
1294
1461
|
disclosable?: boolean;
|
|
1295
1462
|
/**
|
|
1296
|
-
* Namespace for mDOC field
|
|
1463
|
+
* Namespace for mDOC field. Optional when the namespace is already present as the first path segment.
|
|
1297
1464
|
*/
|
|
1298
1465
|
namespace?: string;
|
|
1299
1466
|
display?: Array<FieldDisplayDto>;
|
|
@@ -1303,6 +1470,10 @@ type ClaimFieldDefinitionDto = {
|
|
|
1303
1470
|
constraints?: {
|
|
1304
1471
|
[key: string]: unknown;
|
|
1305
1472
|
};
|
|
1473
|
+
/**
|
|
1474
|
+
* Optional nested child fields. Child paths may be specified relative to the parent field path.
|
|
1475
|
+
*/
|
|
1476
|
+
children?: Array<ClaimFieldDefinitionDto>;
|
|
1306
1477
|
};
|
|
1307
1478
|
type AttributeProviderEntity = {
|
|
1308
1479
|
auth: WebHookAuthConfigNone | WebHookAuthConfigHeader;
|
|
@@ -1564,13 +1735,9 @@ type CredentialConfigUpdate = {
|
|
|
1564
1735
|
};
|
|
1565
1736
|
type SignSchemaMetaConfigDto = {
|
|
1566
1737
|
/**
|
|
1567
|
-
* The schema metadata configuration to
|
|
1738
|
+
* The schema metadata configuration to submit. Registrar builds and signs the final schema metadata.
|
|
1568
1739
|
*/
|
|
1569
1740
|
config: SchemaMetaConfig;
|
|
1570
|
-
/**
|
|
1571
|
-
* ID of the key chain to use for signing. Defaults to the tenant's default key chain.
|
|
1572
|
-
*/
|
|
1573
|
-
keyChainId?: string;
|
|
1574
1741
|
/**
|
|
1575
1742
|
* ID of the credential config to link back after submission. When provided, schemaMeta.id on the credential config is updated with the reserved attestation ID.
|
|
1576
1743
|
*/
|
|
@@ -1578,13 +1745,9 @@ type SignSchemaMetaConfigDto = {
|
|
|
1578
1745
|
};
|
|
1579
1746
|
type SignVersionSchemaMetaConfigDto = {
|
|
1580
1747
|
/**
|
|
1581
|
-
* The schema metadata configuration to
|
|
1748
|
+
* The schema metadata configuration to submit as a new version. Must include the existing id.
|
|
1582
1749
|
*/
|
|
1583
1750
|
config: SchemaMetaConfig;
|
|
1584
|
-
/**
|
|
1585
|
-
* ID of the key chain to use for signing. Defaults to the tenant's default key chain.
|
|
1586
|
-
*/
|
|
1587
|
-
keyChainId?: string;
|
|
1588
1751
|
};
|
|
1589
1752
|
type VocabularyEntryDto = {
|
|
1590
1753
|
/**
|
|
@@ -1632,9 +1795,9 @@ type MetadataSchemaDto = {
|
|
|
1632
1795
|
*/
|
|
1633
1796
|
uri?: string;
|
|
1634
1797
|
/**
|
|
1635
|
-
*
|
|
1798
|
+
* Format-specific metadata for the schema entry
|
|
1636
1799
|
*/
|
|
1637
|
-
|
|
1800
|
+
meta?: {
|
|
1638
1801
|
[key: string]: unknown;
|
|
1639
1802
|
};
|
|
1640
1803
|
/**
|
|
@@ -1722,10 +1885,6 @@ type SchemaMetadataResponseDto = {
|
|
|
1722
1885
|
* Issuer from the JWT (`iss` claim)
|
|
1723
1886
|
*/
|
|
1724
1887
|
issuer: string;
|
|
1725
|
-
/**
|
|
1726
|
-
* Serial number of the access certificate that signed this schema metadata
|
|
1727
|
-
*/
|
|
1728
|
-
signerCertificateSerial: string;
|
|
1729
1888
|
/**
|
|
1730
1889
|
* The access certificate used to sign this schema metadata
|
|
1731
1890
|
*/
|
|
@@ -1745,7 +1904,7 @@ type SchemaMetadataResponseDto = {
|
|
|
1745
1904
|
/**
|
|
1746
1905
|
* Whether this version is deprecated
|
|
1747
1906
|
*/
|
|
1748
|
-
deprecated
|
|
1907
|
+
deprecated: boolean;
|
|
1749
1908
|
/**
|
|
1750
1909
|
* Deprecation message shown to consumers
|
|
1751
1910
|
*/
|
|
@@ -1754,6 +1913,10 @@ type SchemaMetadataResponseDto = {
|
|
|
1754
1913
|
* The version that supersedes this one
|
|
1755
1914
|
*/
|
|
1756
1915
|
supersededByVersion?: string;
|
|
1916
|
+
/**
|
|
1917
|
+
* Timestamp when this version was marked as deprecated
|
|
1918
|
+
*/
|
|
1919
|
+
deprecatedAt?: string;
|
|
1757
1920
|
};
|
|
1758
1921
|
type UpdateSchemaMetadataDto = {
|
|
1759
1922
|
/**
|
|
@@ -1843,11 +2006,7 @@ type TrustListCreateDto = {
|
|
|
1843
2006
|
data?: {
|
|
1844
2007
|
[key: string]: unknown;
|
|
1845
2008
|
};
|
|
1846
|
-
entities: Array<
|
|
1847
|
-
type: 'internal';
|
|
1848
|
-
} & InternalTrustListEntity) | ({
|
|
1849
|
-
type: 'external';
|
|
1850
|
-
} & ExternalTrustListEntity)>;
|
|
2009
|
+
entities: Array<InternalTrustListEntity | ExternalTrustListEntity>;
|
|
1851
2010
|
id?: string;
|
|
1852
2011
|
keyChainId?: string;
|
|
1853
2012
|
};
|
|
@@ -1994,8 +2153,16 @@ type PresentationConfig = {
|
|
|
1994
2153
|
* The registration certificate request containing the necessary details.
|
|
1995
2154
|
*/
|
|
1996
2155
|
registration_cert?: RegistrationCertificateRequest;
|
|
2156
|
+
/**
|
|
2157
|
+
* Reference to the webhook endpoint used for notifications.
|
|
2158
|
+
* Optional: if set, notifications will be sent to this endpoint.
|
|
2159
|
+
*/
|
|
2160
|
+
webhookEndpointId?: string;
|
|
2161
|
+
webhookEndpoint?: WebhookEndpointEntity;
|
|
1997
2162
|
/**
|
|
1998
2163
|
* Optional webhook URL to receive the response.
|
|
2164
|
+
*
|
|
2165
|
+
* @deprecated
|
|
1999
2166
|
*/
|
|
2000
2167
|
webhook?: WebhookConfig;
|
|
2001
2168
|
/**
|
|
@@ -2038,6 +2205,12 @@ type ResolveSchemaMetadataDto = {
|
|
|
2038
2205
|
*/
|
|
2039
2206
|
schemaMetadataUrl: string;
|
|
2040
2207
|
};
|
|
2208
|
+
type ResolveSchemaMetadataJwtDto = {
|
|
2209
|
+
/**
|
|
2210
|
+
* Signed schema metadata JWT to resolve server-side. The JWT will be verified, resolved, and converted to DCQL.
|
|
2211
|
+
*/
|
|
2212
|
+
signedJwt: string;
|
|
2213
|
+
};
|
|
2041
2214
|
type PresentationConfigCreateDto = {
|
|
2042
2215
|
/**
|
|
2043
2216
|
* Unique identifier for the VP request.
|
|
@@ -2060,8 +2233,16 @@ type PresentationConfigCreateDto = {
|
|
|
2060
2233
|
* The registration certificate request containing the necessary details.
|
|
2061
2234
|
*/
|
|
2062
2235
|
registration_cert?: RegistrationCertificateRequest;
|
|
2236
|
+
/**
|
|
2237
|
+
* Reference to the webhook endpoint used for notifications.
|
|
2238
|
+
* Optional: if set, notifications will be sent to this endpoint.
|
|
2239
|
+
*/
|
|
2240
|
+
webhookEndpointId?: string;
|
|
2241
|
+
webhookEndpoint?: WebhookEndpointEntity;
|
|
2063
2242
|
/**
|
|
2064
2243
|
* Optional webhook URL to receive the response.
|
|
2244
|
+
*
|
|
2245
|
+
* @deprecated
|
|
2065
2246
|
*/
|
|
2066
2247
|
webhook?: WebhookConfig;
|
|
2067
2248
|
/**
|
|
@@ -2106,8 +2287,16 @@ type PresentationConfigUpdateDto = {
|
|
|
2106
2287
|
* The registration certificate request containing the necessary details.
|
|
2107
2288
|
*/
|
|
2108
2289
|
registration_cert?: RegistrationCertificateRequest;
|
|
2290
|
+
/**
|
|
2291
|
+
* Reference to the webhook endpoint used for notifications.
|
|
2292
|
+
* Optional: if set, notifications will be sent to this endpoint.
|
|
2293
|
+
*/
|
|
2294
|
+
webhookEndpointId?: string;
|
|
2295
|
+
webhookEndpoint?: WebhookEndpointEntity;
|
|
2109
2296
|
/**
|
|
2110
2297
|
* Optional webhook URL to receive the response.
|
|
2298
|
+
*
|
|
2299
|
+
* @deprecated
|
|
2111
2300
|
*/
|
|
2112
2301
|
webhook?: WebhookConfig;
|
|
2113
2302
|
/**
|
|
@@ -2246,6 +2435,90 @@ type NotificationRequestDto = {
|
|
|
2246
2435
|
notification_id: string;
|
|
2247
2436
|
event: 'credential_accepted' | 'credential_failure' | 'credential_deleted';
|
|
2248
2437
|
};
|
|
2438
|
+
type OfferResponse = {
|
|
2439
|
+
uri: string;
|
|
2440
|
+
/**
|
|
2441
|
+
* URI for cross-device flows (no redirect after completion)
|
|
2442
|
+
*/
|
|
2443
|
+
crossDeviceUri?: string;
|
|
2444
|
+
session: string;
|
|
2445
|
+
};
|
|
2446
|
+
type CompleteDeferredDto = {
|
|
2447
|
+
/**
|
|
2448
|
+
* Claims to include in the credential. The structure should match the credential configuration's expected claims.
|
|
2449
|
+
*/
|
|
2450
|
+
claims: {
|
|
2451
|
+
[key: string]: unknown;
|
|
2452
|
+
};
|
|
2453
|
+
};
|
|
2454
|
+
type DeferredOperationResponse = {
|
|
2455
|
+
/**
|
|
2456
|
+
* The transaction ID
|
|
2457
|
+
*/
|
|
2458
|
+
transactionId: string;
|
|
2459
|
+
/**
|
|
2460
|
+
* The new status of the transaction
|
|
2461
|
+
*/
|
|
2462
|
+
status: 'pending' | 'ready' | 'retrieved' | 'expired' | 'failed';
|
|
2463
|
+
/**
|
|
2464
|
+
* Optional message
|
|
2465
|
+
*/
|
|
2466
|
+
message?: string;
|
|
2467
|
+
};
|
|
2468
|
+
type FailDeferredDto = {
|
|
2469
|
+
/**
|
|
2470
|
+
* Optional error message explaining why the issuance failed
|
|
2471
|
+
*/
|
|
2472
|
+
error?: string;
|
|
2473
|
+
};
|
|
2474
|
+
type EcPublic = {
|
|
2475
|
+
/**
|
|
2476
|
+
* The key type, which is always 'EC' for Elliptic Curve keys.
|
|
2477
|
+
*/
|
|
2478
|
+
kty: string;
|
|
2479
|
+
/**
|
|
2480
|
+
* The algorithm intended for use with the key, such as 'ES256'.
|
|
2481
|
+
*/
|
|
2482
|
+
crv: string;
|
|
2483
|
+
/**
|
|
2484
|
+
* The x coordinate of the EC public key.
|
|
2485
|
+
*/
|
|
2486
|
+
x: string;
|
|
2487
|
+
/**
|
|
2488
|
+
* The y coordinate of the EC public key.
|
|
2489
|
+
*/
|
|
2490
|
+
y: string;
|
|
2491
|
+
};
|
|
2492
|
+
type JwksResponseDto = {
|
|
2493
|
+
/**
|
|
2494
|
+
* An array of EC public keys in JWK format.
|
|
2495
|
+
*/
|
|
2496
|
+
keys: Array<EcPublic>;
|
|
2497
|
+
};
|
|
2498
|
+
type AuthorizationResponse = {
|
|
2499
|
+
/**
|
|
2500
|
+
* The response string containing the authorization details (JWE-encrypted VP token).
|
|
2501
|
+
* Required for success responses, absent for error responses.
|
|
2502
|
+
*/
|
|
2503
|
+
response?: string;
|
|
2504
|
+
/**
|
|
2505
|
+
* When set to true, the authorization response will be sent to the client.
|
|
2506
|
+
*/
|
|
2507
|
+
sendResponse?: boolean;
|
|
2508
|
+
error?: string;
|
|
2509
|
+
/**
|
|
2510
|
+
* Human-readable description of the error.
|
|
2511
|
+
*/
|
|
2512
|
+
error_description?: string;
|
|
2513
|
+
/**
|
|
2514
|
+
* URI with additional information about the error.
|
|
2515
|
+
*/
|
|
2516
|
+
error_uri?: string;
|
|
2517
|
+
/**
|
|
2518
|
+
* State value from the authorization request (for correlation).
|
|
2519
|
+
*/
|
|
2520
|
+
state?: string;
|
|
2521
|
+
};
|
|
2249
2522
|
type Object$1 = {
|
|
2250
2523
|
[key: string]: unknown;
|
|
2251
2524
|
};
|
|
@@ -2425,139 +2698,285 @@ type ChainedAsTokenResponseDto = {
|
|
|
2425
2698
|
*/
|
|
2426
2699
|
refresh_token?: string;
|
|
2427
2700
|
};
|
|
2428
|
-
type
|
|
2429
|
-
uri: string;
|
|
2701
|
+
type KmsProviderCapabilitiesDto = {
|
|
2430
2702
|
/**
|
|
2431
|
-
*
|
|
2703
|
+
* Whether the provider supports importing existing keys.
|
|
2432
2704
|
*/
|
|
2433
|
-
|
|
2434
|
-
|
|
2705
|
+
canImport: boolean;
|
|
2706
|
+
/**
|
|
2707
|
+
* Whether the provider supports generating new keys.
|
|
2708
|
+
*/
|
|
2709
|
+
canCreate: boolean;
|
|
2710
|
+
/**
|
|
2711
|
+
* Whether the provider supports deleting keys.
|
|
2712
|
+
*/
|
|
2713
|
+
canDelete: boolean;
|
|
2714
|
+
/**
|
|
2715
|
+
* Signing algorithms supported by the provider.
|
|
2716
|
+
*/
|
|
2717
|
+
supportedAlgs: Array<string>;
|
|
2718
|
+
/**
|
|
2719
|
+
* Default signing algorithm used when caller does not specify one.
|
|
2720
|
+
*/
|
|
2721
|
+
defaultAlg: string;
|
|
2435
2722
|
};
|
|
2436
|
-
type
|
|
2723
|
+
type KmsProviderInfoDto = {
|
|
2437
2724
|
/**
|
|
2438
|
-
*
|
|
2725
|
+
* Unique provider ID (matches the id in kms.json).
|
|
2439
2726
|
*/
|
|
2440
|
-
|
|
2441
|
-
|
|
2442
|
-
|
|
2727
|
+
name: string;
|
|
2728
|
+
/**
|
|
2729
|
+
* Type of the KMS provider (db, vault, aws-kms).
|
|
2730
|
+
*/
|
|
2731
|
+
type: string;
|
|
2732
|
+
/**
|
|
2733
|
+
* Human-readable description of this provider instance.
|
|
2734
|
+
*/
|
|
2735
|
+
description?: string;
|
|
2736
|
+
/**
|
|
2737
|
+
* Capabilities of this provider.
|
|
2738
|
+
*/
|
|
2739
|
+
capabilities: KmsProviderCapabilitiesDto;
|
|
2443
2740
|
};
|
|
2444
|
-
type
|
|
2741
|
+
type KmsProvidersResponseDto = {
|
|
2445
2742
|
/**
|
|
2446
|
-
*
|
|
2743
|
+
* Detailed info for each registered KMS provider.
|
|
2447
2744
|
*/
|
|
2448
|
-
|
|
2745
|
+
providers: Array<KmsProviderInfoDto>;
|
|
2449
2746
|
/**
|
|
2450
|
-
* The
|
|
2747
|
+
* The default KMS provider name.
|
|
2451
2748
|
*/
|
|
2452
|
-
|
|
2749
|
+
default: string;
|
|
2750
|
+
};
|
|
2751
|
+
type DbKmsConfigDto = {
|
|
2453
2752
|
/**
|
|
2454
|
-
*
|
|
2753
|
+
* Unique identifier for this provider instance. Used when generating keys to specify which provider to use.
|
|
2455
2754
|
*/
|
|
2456
|
-
|
|
2755
|
+
id: string;
|
|
2756
|
+
/**
|
|
2757
|
+
* Type of the KMS provider.
|
|
2758
|
+
*/
|
|
2759
|
+
type: 'db';
|
|
2760
|
+
/**
|
|
2761
|
+
* Human-readable description of this provider instance.
|
|
2762
|
+
*/
|
|
2763
|
+
description?: string;
|
|
2457
2764
|
};
|
|
2458
|
-
type
|
|
2765
|
+
type VaultKmsConfigDto = {
|
|
2459
2766
|
/**
|
|
2460
|
-
*
|
|
2767
|
+
* Unique identifier for this provider instance. Used when generating keys to specify which provider to use.
|
|
2461
2768
|
*/
|
|
2462
|
-
|
|
2769
|
+
id: string;
|
|
2770
|
+
/**
|
|
2771
|
+
* Type of the KMS provider.
|
|
2772
|
+
*/
|
|
2773
|
+
type: 'vault';
|
|
2774
|
+
/**
|
|
2775
|
+
* Human-readable description of this provider instance.
|
|
2776
|
+
*/
|
|
2777
|
+
description?: string;
|
|
2778
|
+
/**
|
|
2779
|
+
* URL of the HashiCorp Vault instance. Supports ${ENV_VAR} placeholders.
|
|
2780
|
+
*/
|
|
2781
|
+
vaultUrl: string;
|
|
2782
|
+
/**
|
|
2783
|
+
* Authentication token for HashiCorp Vault. Supports ${ENV_VAR} placeholders.
|
|
2784
|
+
*/
|
|
2785
|
+
vaultToken: string;
|
|
2463
2786
|
};
|
|
2464
|
-
type
|
|
2787
|
+
type AwsKmsConfigDto = {
|
|
2465
2788
|
/**
|
|
2466
|
-
*
|
|
2789
|
+
* Unique identifier for this provider instance. Used when generating keys to specify which provider to use.
|
|
2467
2790
|
*/
|
|
2468
|
-
|
|
2791
|
+
id: string;
|
|
2469
2792
|
/**
|
|
2470
|
-
*
|
|
2793
|
+
* Type of the KMS provider.
|
|
2471
2794
|
*/
|
|
2472
|
-
|
|
2795
|
+
type: 'aws-kms';
|
|
2473
2796
|
/**
|
|
2474
|
-
*
|
|
2797
|
+
* Human-readable description of this provider instance.
|
|
2475
2798
|
*/
|
|
2476
|
-
|
|
2799
|
+
description?: string;
|
|
2477
2800
|
/**
|
|
2478
|
-
*
|
|
2801
|
+
* AWS region for KMS. Supports ${ENV_VAR} placeholders.
|
|
2479
2802
|
*/
|
|
2480
|
-
|
|
2803
|
+
region: string;
|
|
2804
|
+
/**
|
|
2805
|
+
* AWS access key ID. Optional — uses SDK credential chain if not provided. Supports ${ENV_VAR} placeholders.
|
|
2806
|
+
*/
|
|
2807
|
+
accessKeyId?: string;
|
|
2808
|
+
/**
|
|
2809
|
+
* AWS secret access key. Optional — uses SDK credential chain if not provided. Supports ${ENV_VAR} placeholders.
|
|
2810
|
+
*/
|
|
2811
|
+
secretAccessKey?: string;
|
|
2481
2812
|
};
|
|
2482
|
-
type
|
|
2813
|
+
type Pkcs11KmsConfigDto = {
|
|
2483
2814
|
/**
|
|
2484
|
-
*
|
|
2815
|
+
* Unique identifier for this provider instance. Used when generating keys to specify which provider to use.
|
|
2485
2816
|
*/
|
|
2486
|
-
|
|
2817
|
+
id: string;
|
|
2818
|
+
/**
|
|
2819
|
+
* Type of the KMS provider.
|
|
2820
|
+
*/
|
|
2821
|
+
type: 'pkcs11';
|
|
2822
|
+
/**
|
|
2823
|
+
* Human-readable description of this provider instance.
|
|
2824
|
+
*/
|
|
2825
|
+
description?: string;
|
|
2826
|
+
/**
|
|
2827
|
+
* Absolute path to the PKCS#11 module library (.so/.dll/.dylib). Supports ${ENV_VAR} placeholders.
|
|
2828
|
+
*/
|
|
2829
|
+
library: string;
|
|
2830
|
+
/**
|
|
2831
|
+
* Slot selection. Either the numeric slot index (as a string for ENV interpolation, or a number) or the token label. Supports ${ENV_VAR} placeholders.
|
|
2832
|
+
*/
|
|
2833
|
+
slot: {
|
|
2834
|
+
[key: string]: unknown;
|
|
2835
|
+
};
|
|
2836
|
+
/**
|
|
2837
|
+
* User PIN used for C_Login. Supports ${ENV_VAR} placeholders.
|
|
2838
|
+
*/
|
|
2839
|
+
pin: string;
|
|
2840
|
+
/**
|
|
2841
|
+
* Open the PKCS#11 session in read-only mode. Defaults to false.
|
|
2842
|
+
*/
|
|
2843
|
+
readOnly?: boolean;
|
|
2487
2844
|
};
|
|
2488
|
-
type
|
|
2845
|
+
type HttpAuthBaseConfigDto = {
|
|
2489
2846
|
/**
|
|
2490
|
-
*
|
|
2491
|
-
* Required for success responses, absent for error responses.
|
|
2847
|
+
* Authentication method for the remote KMS service.
|
|
2492
2848
|
*/
|
|
2493
|
-
|
|
2849
|
+
type: 'none' | 'bearer' | 'oauth2-client-credentials' | 'mtls';
|
|
2850
|
+
};
|
|
2851
|
+
type HttpKmsConfigDto = {
|
|
2494
2852
|
/**
|
|
2495
|
-
*
|
|
2853
|
+
* Unique identifier for this provider instance. Used when generating keys to specify which provider to use.
|
|
2496
2854
|
*/
|
|
2497
|
-
|
|
2498
|
-
error?: string;
|
|
2855
|
+
id: string;
|
|
2499
2856
|
/**
|
|
2500
|
-
*
|
|
2857
|
+
* Type of the KMS provider.
|
|
2501
2858
|
*/
|
|
2502
|
-
|
|
2859
|
+
type: 'http';
|
|
2503
2860
|
/**
|
|
2504
|
-
*
|
|
2861
|
+
* Human-readable description of this provider instance.
|
|
2505
2862
|
*/
|
|
2506
|
-
|
|
2863
|
+
description?: string;
|
|
2507
2864
|
/**
|
|
2508
|
-
*
|
|
2865
|
+
* Base URL of the remote KMS microservice (no trailing slash). Supports ${ENV_VAR} placeholders.
|
|
2509
2866
|
*/
|
|
2510
|
-
|
|
2867
|
+
baseUrl: string;
|
|
2868
|
+
/**
|
|
2869
|
+
* Authentication method for the remote KMS service. Supports bearer token, OAuth 2.0 client credentials, and mutual TLS. Omit (or set type to "none") for unauthenticated services.
|
|
2870
|
+
*/
|
|
2871
|
+
auth?: HttpAuthBaseConfigDto;
|
|
2872
|
+
/**
|
|
2873
|
+
* Path prefix for key endpoints on the remote service. Defaults to /keys.
|
|
2874
|
+
*/
|
|
2875
|
+
keysPath?: string;
|
|
2876
|
+
/**
|
|
2877
|
+
* Path for the health check endpoint on the remote service. Defaults to /health.
|
|
2878
|
+
*/
|
|
2879
|
+
healthPath?: string;
|
|
2880
|
+
/**
|
|
2881
|
+
* Whether the remote service supports key import via POST {keysPath}/{kid}/import. Defaults to false.
|
|
2882
|
+
*/
|
|
2883
|
+
canImport?: boolean;
|
|
2511
2884
|
};
|
|
2512
|
-
type
|
|
2885
|
+
type CscAuthorizeAuthDataDto = {
|
|
2513
2886
|
/**
|
|
2514
|
-
*
|
|
2887
|
+
* Authentication factor identifier expected by the CSC provider (e.g., PIN, OTP).
|
|
2515
2888
|
*/
|
|
2516
|
-
|
|
2889
|
+
id: string;
|
|
2517
2890
|
/**
|
|
2518
|
-
*
|
|
2891
|
+
* Authentication factor value sent to CSC credentials/authorize.
|
|
2519
2892
|
*/
|
|
2520
|
-
|
|
2893
|
+
value: string;
|
|
2894
|
+
};
|
|
2895
|
+
type CscKmsConfigDto = {
|
|
2521
2896
|
/**
|
|
2522
|
-
*
|
|
2897
|
+
* Unique identifier for this provider instance. Used when generating keys to specify which provider to use.
|
|
2523
2898
|
*/
|
|
2524
|
-
|
|
2899
|
+
id: string;
|
|
2900
|
+
/**
|
|
2901
|
+
* Type of the KMS provider.
|
|
2902
|
+
*/
|
|
2903
|
+
type: 'csc';
|
|
2904
|
+
/**
|
|
2905
|
+
* Human-readable description of this provider instance.
|
|
2906
|
+
*/
|
|
2907
|
+
description?: string;
|
|
2908
|
+
/**
|
|
2909
|
+
* Base URL of the CSC service (without trailing slash). Supports ${ENV_VAR} placeholders.
|
|
2910
|
+
*/
|
|
2911
|
+
baseUrl: string;
|
|
2912
|
+
/**
|
|
2913
|
+
* OAuth2 token endpoint URL for client-credentials flow. Supports ${ENV_VAR} placeholders.
|
|
2914
|
+
*/
|
|
2915
|
+
tokenUrl: string;
|
|
2916
|
+
/**
|
|
2917
|
+
* OAuth2 client ID. Supports ${ENV_VAR} placeholders.
|
|
2918
|
+
*/
|
|
2919
|
+
clientId: string;
|
|
2920
|
+
/**
|
|
2921
|
+
* OAuth2 client secret. Supports ${ENV_VAR} placeholders.
|
|
2922
|
+
*/
|
|
2923
|
+
clientSecret: string;
|
|
2924
|
+
/**
|
|
2925
|
+
* OAuth2 scope to request during token acquisition.
|
|
2926
|
+
*/
|
|
2927
|
+
scope?: string;
|
|
2928
|
+
/**
|
|
2929
|
+
* Default CSC credential ID. If omitted, the adapter calls credentials/list and picks the first entry.
|
|
2930
|
+
*/
|
|
2931
|
+
credentialId?: string;
|
|
2932
|
+
/**
|
|
2933
|
+
* Optional CSC user ID used in credentials/list requests.
|
|
2934
|
+
*/
|
|
2935
|
+
userId?: string;
|
|
2936
|
+
/**
|
|
2937
|
+
* CSC API path prefix appended to baseUrl. Defaults to /csc/v2.
|
|
2938
|
+
*/
|
|
2939
|
+
apiPath?: string;
|
|
2940
|
+
/**
|
|
2941
|
+
* Hash algorithm OID for signatures/signHash and credentials/authorize. Defaults to SHA-256 OID.
|
|
2942
|
+
*/
|
|
2943
|
+
hashAlgorithmOid?: string;
|
|
2525
2944
|
/**
|
|
2526
|
-
*
|
|
2945
|
+
* Signature algorithm OID for signatures/signHash. Defaults to ecdsa-with-SHA256 OID.
|
|
2527
2946
|
*/
|
|
2528
|
-
|
|
2947
|
+
signAlgorithmOid?: string;
|
|
2529
2948
|
/**
|
|
2530
|
-
*
|
|
2949
|
+
* Static SAD token. If set, the adapter sends it directly in signatures/signHash requests.
|
|
2531
2950
|
*/
|
|
2532
|
-
|
|
2533
|
-
};
|
|
2534
|
-
type KmsProviderInfoDto = {
|
|
2951
|
+
sad?: string;
|
|
2535
2952
|
/**
|
|
2536
|
-
*
|
|
2953
|
+
* When true and no static SAD is provided, the adapter calls credentials/authorize to obtain SAD before signatures/signHash.
|
|
2537
2954
|
*/
|
|
2538
|
-
|
|
2955
|
+
useAuthorizeEndpoint?: boolean;
|
|
2539
2956
|
/**
|
|
2540
|
-
*
|
|
2957
|
+
* Optional authData array passed to credentials/authorize (e.g., PIN/OTP factors).
|
|
2541
2958
|
*/
|
|
2542
|
-
|
|
2959
|
+
authorizeAuthData?: Array<CscAuthorizeAuthDataDto>;
|
|
2960
|
+
};
|
|
2961
|
+
type KmsConfigDto = {
|
|
2543
2962
|
/**
|
|
2544
|
-
*
|
|
2963
|
+
* ID of the default KMS provider. Defaults to "db" if not set.
|
|
2545
2964
|
*/
|
|
2546
|
-
|
|
2965
|
+
defaultProvider?: string;
|
|
2547
2966
|
/**
|
|
2548
|
-
*
|
|
2967
|
+
* List of KMS provider configurations. Each provider must have a unique id and a type.
|
|
2549
2968
|
*/
|
|
2550
|
-
|
|
2969
|
+
providers: Array<DbKmsConfigDto | VaultKmsConfigDto | AwsKmsConfigDto | Pkcs11KmsConfigDto | HttpKmsConfigDto | CscKmsConfigDto>;
|
|
2551
2970
|
};
|
|
2552
|
-
type
|
|
2971
|
+
type KmsTenantConfigResponseDto = {
|
|
2553
2972
|
/**
|
|
2554
|
-
*
|
|
2973
|
+
* Tenant-specific KMS configuration from <CONFIG_FOLDER>/<tenantId>/kms.json. Null when no tenant file exists.
|
|
2555
2974
|
*/
|
|
2556
|
-
|
|
2975
|
+
tenantConfig?: KmsConfigDto;
|
|
2557
2976
|
/**
|
|
2558
|
-
*
|
|
2977
|
+
* Effective configuration used at runtime for the tenant (global + tenant merge).
|
|
2559
2978
|
*/
|
|
2560
|
-
|
|
2979
|
+
effectiveConfig: KmsConfigDto;
|
|
2561
2980
|
};
|
|
2562
2981
|
type CertificateInfoDto = {
|
|
2563
2982
|
/**
|
|
@@ -2830,7 +3249,7 @@ type KeyChainImportDto = {
|
|
|
2830
3249
|
*/
|
|
2831
3250
|
usageType: 'access' | 'attestation' | 'trustList' | 'statusList' | 'encrypt';
|
|
2832
3251
|
/**
|
|
2833
|
-
* Certificate chain
|
|
3252
|
+
* Certificate chain (leaf first). Each entry may be PEM or base64-encoded DER; values are normalized to PEM during import.
|
|
2834
3253
|
*/
|
|
2835
3254
|
crt?: Array<string>;
|
|
2836
3255
|
/**
|
|
@@ -2874,7 +3293,7 @@ type PresentationRequest = {
|
|
|
2874
3293
|
/**
|
|
2875
3294
|
* The type of response expected from the presentation request.
|
|
2876
3295
|
*/
|
|
2877
|
-
response_type: 'uri' | 'dc-api';
|
|
3296
|
+
response_type: 'uri' | 'dc-api' | 'iso-18013-7';
|
|
2878
3297
|
/**
|
|
2879
3298
|
* Identifier of the presentation configuration
|
|
2880
3299
|
*/
|
|
@@ -2903,6 +3322,126 @@ type PresentationRequest = {
|
|
|
2903
3322
|
type FileUploadDto = {
|
|
2904
3323
|
file: Blob | File;
|
|
2905
3324
|
};
|
|
3325
|
+
type IssuanceConfigWritable = {
|
|
3326
|
+
/**
|
|
3327
|
+
* Key ID for signing access tokens. If unset, the default signing key is used.
|
|
3328
|
+
*/
|
|
3329
|
+
signingKeyId?: string;
|
|
3330
|
+
/**
|
|
3331
|
+
* Dedicated managed authorization servers hosted by this issuer. At least one entry is required.
|
|
3332
|
+
*/
|
|
3333
|
+
authorizationServers: Array<ExternalAuthorizationServerConfig | Oid4VpAuthorizationServerConfig | ChainedAuthorizationServerConfig | BuiltInAuthorizationServerConfig>;
|
|
3334
|
+
/**
|
|
3335
|
+
* Optional OpenID Federation configuration used for trust evaluation.
|
|
3336
|
+
* When omitted, trust checks rely on existing LoTE trust-list behavior.
|
|
3337
|
+
*/
|
|
3338
|
+
federation?: FederationConfig;
|
|
3339
|
+
/**
|
|
3340
|
+
* Optional registration certificate configuration for issuer metadata (`issuer_info`).
|
|
3341
|
+
* Supports importing an existing JWT or generating one via registrar.
|
|
3342
|
+
*/
|
|
3343
|
+
registrationCertificate?: IssuerRegistrationCertificateConfig;
|
|
3344
|
+
/**
|
|
3345
|
+
* Whether `credential_response_encryption` should be advertised in the credential issuer metadata.
|
|
3346
|
+
*/
|
|
3347
|
+
credentialResponseEncryption?: boolean;
|
|
3348
|
+
/**
|
|
3349
|
+
* Whether `credential_request_encryption` should be advertised in the credential issuer metadata.
|
|
3350
|
+
*/
|
|
3351
|
+
credentialRequestEncryption?: boolean;
|
|
3352
|
+
/**
|
|
3353
|
+
* Maximum failed tx_code attempts before the pre-authorized code is invalidated. Defaults to 5.
|
|
3354
|
+
*/
|
|
3355
|
+
txCodeMaxAttempts?: number;
|
|
3356
|
+
/**
|
|
3357
|
+
* The tenant that owns this object.
|
|
3358
|
+
*/
|
|
3359
|
+
tenant: TenantEntity;
|
|
3360
|
+
/**
|
|
3361
|
+
* Value to determine the amount of credentials that are issued in a batch.
|
|
3362
|
+
* Default is 1.
|
|
3363
|
+
*/
|
|
3364
|
+
batchSize?: number;
|
|
3365
|
+
/**
|
|
3366
|
+
* Indicates whether DPoP is required for the issuance process. Default value is true.
|
|
3367
|
+
*/
|
|
3368
|
+
dPopRequired?: boolean;
|
|
3369
|
+
/**
|
|
3370
|
+
* Indicates whether wallet attestation is required for the token endpoint.
|
|
3371
|
+
* When enabled, wallets must provide OAuth-Client-Attestation headers.
|
|
3372
|
+
* Default value is false.
|
|
3373
|
+
*/
|
|
3374
|
+
walletAttestationRequired?: boolean;
|
|
3375
|
+
/**
|
|
3376
|
+
* URLs of trust lists containing trusted wallet providers.
|
|
3377
|
+
* The wallet attestation's X.509 certificate will be validated against these trust lists.
|
|
3378
|
+
* If empty and walletAttestationRequired is true, all wallet providers are rejected.
|
|
3379
|
+
*/
|
|
3380
|
+
walletProviderTrustLists?: Array<string>;
|
|
3381
|
+
display: Array<DisplayInfo>;
|
|
3382
|
+
/**
|
|
3383
|
+
* The timestamp when the VP request was created.
|
|
3384
|
+
*/
|
|
3385
|
+
createdAt: string;
|
|
3386
|
+
/**
|
|
3387
|
+
* The timestamp when the VP request was last updated.
|
|
3388
|
+
*/
|
|
3389
|
+
updatedAt: string;
|
|
3390
|
+
};
|
|
3391
|
+
type UpdateIssuanceDtoWritable = {
|
|
3392
|
+
/**
|
|
3393
|
+
* Key ID for signing access tokens. If unset, the default signing key is used.
|
|
3394
|
+
*/
|
|
3395
|
+
signingKeyId?: string;
|
|
3396
|
+
/**
|
|
3397
|
+
* Dedicated managed authorization servers hosted by this issuer. At least one entry is required.
|
|
3398
|
+
*/
|
|
3399
|
+
authorizationServers?: Array<ExternalAuthorizationServerConfig | Oid4VpAuthorizationServerConfig | ChainedAuthorizationServerConfig | BuiltInAuthorizationServerConfig>;
|
|
3400
|
+
/**
|
|
3401
|
+
* Optional OpenID Federation configuration used for trust evaluation.
|
|
3402
|
+
* When omitted, trust checks rely on existing LoTE trust-list behavior.
|
|
3403
|
+
*/
|
|
3404
|
+
federation?: FederationConfig;
|
|
3405
|
+
/**
|
|
3406
|
+
* Optional registration certificate configuration for issuer metadata (`issuer_info`).
|
|
3407
|
+
* Supports importing an existing JWT or generating one via registrar.
|
|
3408
|
+
*/
|
|
3409
|
+
registrationCertificate?: IssuerRegistrationCertificateConfig;
|
|
3410
|
+
/**
|
|
3411
|
+
* Whether `credential_response_encryption` should be advertised in the credential issuer metadata.
|
|
3412
|
+
*/
|
|
3413
|
+
credentialResponseEncryption?: boolean;
|
|
3414
|
+
/**
|
|
3415
|
+
* Whether `credential_request_encryption` should be advertised in the credential issuer metadata.
|
|
3416
|
+
*/
|
|
3417
|
+
credentialRequestEncryption?: boolean;
|
|
3418
|
+
/**
|
|
3419
|
+
* Maximum failed tx_code attempts before the pre-authorized code is invalidated. Defaults to 5.
|
|
3420
|
+
*/
|
|
3421
|
+
txCodeMaxAttempts?: number;
|
|
3422
|
+
/**
|
|
3423
|
+
* Value to determine the amount of credentials that are issued in a batch.
|
|
3424
|
+
* Default is 1.
|
|
3425
|
+
*/
|
|
3426
|
+
batchSize?: number;
|
|
3427
|
+
/**
|
|
3428
|
+
* Indicates whether DPoP is required for the issuance process. Default value is true.
|
|
3429
|
+
*/
|
|
3430
|
+
dPopRequired?: boolean;
|
|
3431
|
+
/**
|
|
3432
|
+
* Indicates whether wallet attestation is required for the token endpoint.
|
|
3433
|
+
* When enabled, wallets must provide OAuth-Client-Attestation headers.
|
|
3434
|
+
* Default value is false.
|
|
3435
|
+
*/
|
|
3436
|
+
walletAttestationRequired?: boolean;
|
|
3437
|
+
/**
|
|
3438
|
+
* URLs of trust lists containing trusted wallet providers.
|
|
3439
|
+
* The wallet attestation's X.509 certificate will be validated against these trust lists.
|
|
3440
|
+
* If empty and walletAttestationRequired is true, all wallet providers are rejected.
|
|
3441
|
+
*/
|
|
3442
|
+
walletProviderTrustLists?: Array<string>;
|
|
3443
|
+
display?: Array<DisplayInfo>;
|
|
3444
|
+
};
|
|
2906
3445
|
type PresentationConfigWritable = {
|
|
2907
3446
|
/**
|
|
2908
3447
|
* Unique identifier for the VP request.
|
|
@@ -2929,8 +3468,16 @@ type PresentationConfigWritable = {
|
|
|
2929
3468
|
* The registration certificate request containing the necessary details.
|
|
2930
3469
|
*/
|
|
2931
3470
|
registration_cert?: RegistrationCertificateRequest;
|
|
3471
|
+
/**
|
|
3472
|
+
* Reference to the webhook endpoint used for notifications.
|
|
3473
|
+
* Optional: if set, notifications will be sent to this endpoint.
|
|
3474
|
+
*/
|
|
3475
|
+
webhookEndpointId?: string;
|
|
3476
|
+
webhookEndpoint?: WebhookEndpointEntity;
|
|
2932
3477
|
/**
|
|
2933
3478
|
* Optional webhook URL to receive the response.
|
|
3479
|
+
*
|
|
3480
|
+
* @deprecated
|
|
2934
3481
|
*/
|
|
2935
3482
|
webhook?: WebhookConfig;
|
|
2936
3483
|
/**
|
|
@@ -3488,7 +4035,7 @@ type IssuanceConfigControllerGetIssuanceConfigurationsResponses = {
|
|
|
3488
4035
|
};
|
|
3489
4036
|
type IssuanceConfigControllerGetIssuanceConfigurationsResponse = IssuanceConfigControllerGetIssuanceConfigurationsResponses[keyof IssuanceConfigControllerGetIssuanceConfigurationsResponses];
|
|
3490
4037
|
type IssuanceConfigControllerStoreIssuanceConfigurationData = {
|
|
3491
|
-
body:
|
|
4038
|
+
body: UpdateIssuanceDtoWritable;
|
|
3492
4039
|
path?: never;
|
|
3493
4040
|
query?: never;
|
|
3494
4041
|
url: '/api/issuer/config';
|
|
@@ -3561,36 +4108,60 @@ type CredentialConfigControllerUpdateCredentialConfigurationResponses = {
|
|
|
3561
4108
|
};
|
|
3562
4109
|
};
|
|
3563
4110
|
type CredentialConfigControllerUpdateCredentialConfigurationResponse = CredentialConfigControllerUpdateCredentialConfigurationResponses[keyof CredentialConfigControllerUpdateCredentialConfigurationResponses];
|
|
3564
|
-
type
|
|
4111
|
+
type SchemaMetadataControllerPublishSchemaMetadataData = {
|
|
3565
4112
|
body: SignSchemaMetaConfigDto;
|
|
3566
4113
|
path?: never;
|
|
3567
4114
|
query?: never;
|
|
3568
|
-
url: '/api/schema-metadata/
|
|
4115
|
+
url: '/api/schema-metadata/publish';
|
|
3569
4116
|
};
|
|
3570
|
-
type
|
|
4117
|
+
type SchemaMetadataControllerPublishSchemaMetadataErrors = {
|
|
3571
4118
|
/**
|
|
3572
|
-
* Invalid schema metadata or
|
|
4119
|
+
* Invalid schema metadata input or file mapping
|
|
3573
4120
|
*/
|
|
3574
4121
|
400: unknown;
|
|
3575
4122
|
};
|
|
4123
|
+
type SchemaMetadataControllerPublishSchemaMetadataResponses = {
|
|
4124
|
+
/**
|
|
4125
|
+
* Registrar metadata entry for the freshly submitted schema metadata.
|
|
4126
|
+
*/
|
|
4127
|
+
201: unknown;
|
|
4128
|
+
};
|
|
4129
|
+
type SchemaMetadataControllerSignSchemaMetaConfigData = {
|
|
4130
|
+
body: SignSchemaMetaConfigDto;
|
|
4131
|
+
path?: never;
|
|
4132
|
+
query?: never;
|
|
4133
|
+
url: '/api/schema-metadata/sign';
|
|
4134
|
+
};
|
|
3576
4135
|
type SchemaMetadataControllerSignSchemaMetaConfigResponses = {
|
|
3577
4136
|
/**
|
|
3578
4137
|
* Registrar metadata entry for the freshly submitted schema metadata.
|
|
3579
4138
|
*/
|
|
3580
4139
|
201: unknown;
|
|
3581
4140
|
};
|
|
3582
|
-
type
|
|
4141
|
+
type SchemaMetadataControllerPublishSchemaMetadataVersionData = {
|
|
3583
4142
|
body: SignVersionSchemaMetaConfigDto;
|
|
3584
4143
|
path?: never;
|
|
3585
4144
|
query?: never;
|
|
3586
|
-
url: '/api/schema-metadata/
|
|
4145
|
+
url: '/api/schema-metadata/publish-version';
|
|
3587
4146
|
};
|
|
3588
|
-
type
|
|
4147
|
+
type SchemaMetadataControllerPublishSchemaMetadataVersionErrors = {
|
|
3589
4148
|
/**
|
|
3590
4149
|
* config.id is required; or invalid schema metadata
|
|
3591
4150
|
*/
|
|
3592
4151
|
400: unknown;
|
|
3593
4152
|
};
|
|
4153
|
+
type SchemaMetadataControllerPublishSchemaMetadataVersionResponses = {
|
|
4154
|
+
/**
|
|
4155
|
+
* Registrar metadata entry for the newly submitted version.
|
|
4156
|
+
*/
|
|
4157
|
+
201: unknown;
|
|
4158
|
+
};
|
|
4159
|
+
type SchemaMetadataControllerSignVersionSchemaMetaConfigData = {
|
|
4160
|
+
body: SignVersionSchemaMetaConfigDto;
|
|
4161
|
+
path?: never;
|
|
4162
|
+
query?: never;
|
|
4163
|
+
url: '/api/schema-metadata/sign-version';
|
|
4164
|
+
};
|
|
3594
4165
|
type SchemaMetadataControllerSignVersionSchemaMetaConfigResponses = {
|
|
3595
4166
|
/**
|
|
3596
4167
|
* Registrar metadata entry for the newly submitted version.
|
|
@@ -3710,24 +4281,6 @@ type SchemaMetadataControllerGetJwtResponses = {
|
|
|
3710
4281
|
200: string;
|
|
3711
4282
|
};
|
|
3712
4283
|
type SchemaMetadataControllerGetJwtResponse = SchemaMetadataControllerGetJwtResponses[keyof SchemaMetadataControllerGetJwtResponses];
|
|
3713
|
-
type SchemaMetadataControllerExportData = {
|
|
3714
|
-
body?: never;
|
|
3715
|
-
path: {
|
|
3716
|
-
id: string;
|
|
3717
|
-
version: string;
|
|
3718
|
-
};
|
|
3719
|
-
query?: never;
|
|
3720
|
-
url: '/api/schema-metadata/{id}/versions/{version}/export';
|
|
3721
|
-
};
|
|
3722
|
-
type SchemaMetadataControllerExportResponses = {
|
|
3723
|
-
/**
|
|
3724
|
-
* Registrar-defined catalog document
|
|
3725
|
-
*/
|
|
3726
|
-
200: {
|
|
3727
|
-
[key: string]: unknown;
|
|
3728
|
-
};
|
|
3729
|
-
};
|
|
3730
|
-
type SchemaMetadataControllerExportResponse = SchemaMetadataControllerExportResponses[keyof SchemaMetadataControllerExportResponses];
|
|
3731
4284
|
type SchemaMetadataControllerGetSchemaData = {
|
|
3732
4285
|
body?: never;
|
|
3733
4286
|
path: {
|
|
@@ -4128,6 +4681,24 @@ type PresentationManagementControllerResolveSchemaMetadataResponses = {
|
|
|
4128
4681
|
*/
|
|
4129
4682
|
200: unknown;
|
|
4130
4683
|
};
|
|
4684
|
+
type PresentationManagementControllerResolveSchemaMetadataJwtData = {
|
|
4685
|
+
body: ResolveSchemaMetadataJwtDto;
|
|
4686
|
+
path?: never;
|
|
4687
|
+
query?: never;
|
|
4688
|
+
url: '/api/verifier/config/schema-metadata/resolve-jwt';
|
|
4689
|
+
};
|
|
4690
|
+
type PresentationManagementControllerResolveSchemaMetadataJwtErrors = {
|
|
4691
|
+
/**
|
|
4692
|
+
* Invalid JWT or invalid schema metadata
|
|
4693
|
+
*/
|
|
4694
|
+
400: unknown;
|
|
4695
|
+
};
|
|
4696
|
+
type PresentationManagementControllerResolveSchemaMetadataJwtResponses = {
|
|
4697
|
+
/**
|
|
4698
|
+
* Resolved schema metadata import payload
|
|
4699
|
+
*/
|
|
4700
|
+
200: unknown;
|
|
4701
|
+
};
|
|
4131
4702
|
type PresentationManagementControllerListSchemaMetadataCatalogData = {
|
|
4132
4703
|
body?: never;
|
|
4133
4704
|
path?: never;
|
|
@@ -4364,6 +4935,108 @@ type DeferredControllerFailDeferredResponses = {
|
|
|
4364
4935
|
200: DeferredOperationResponse;
|
|
4365
4936
|
};
|
|
4366
4937
|
type DeferredControllerFailDeferredResponse = DeferredControllerFailDeferredResponses[keyof DeferredControllerFailDeferredResponses];
|
|
4938
|
+
type ChainedAsVpControllerParData = {
|
|
4939
|
+
body?: never;
|
|
4940
|
+
headers?: {
|
|
4941
|
+
/**
|
|
4942
|
+
* DPoP proof JWT
|
|
4943
|
+
*/
|
|
4944
|
+
DPoP?: string;
|
|
4945
|
+
/**
|
|
4946
|
+
* Wallet attestation JWT
|
|
4947
|
+
*/
|
|
4948
|
+
'OAuth-Client-Attestation'?: string;
|
|
4949
|
+
/**
|
|
4950
|
+
* Wallet attestation proof-of-possession JWT
|
|
4951
|
+
*/
|
|
4952
|
+
'OAuth-Client-Attestation-PoP'?: string;
|
|
4953
|
+
};
|
|
4954
|
+
path: {
|
|
4955
|
+
/**
|
|
4956
|
+
* Tenant identifier
|
|
4957
|
+
*/
|
|
4958
|
+
tenantId: string;
|
|
4959
|
+
};
|
|
4960
|
+
query?: never;
|
|
4961
|
+
url: '/api/issuers/{tenantId}/chained-as-vp/par';
|
|
4962
|
+
};
|
|
4963
|
+
type ChainedAsVpControllerParErrors = {
|
|
4964
|
+
400: ChainedAsErrorResponseDto;
|
|
4965
|
+
};
|
|
4966
|
+
type ChainedAsVpControllerParError = ChainedAsVpControllerParErrors[keyof ChainedAsVpControllerParErrors];
|
|
4967
|
+
type ChainedAsVpControllerParResponses = {
|
|
4968
|
+
201: ChainedAsParResponseDto;
|
|
4969
|
+
};
|
|
4970
|
+
type ChainedAsVpControllerParResponse = ChainedAsVpControllerParResponses[keyof ChainedAsVpControllerParResponses];
|
|
4971
|
+
type ChainedAsVpControllerAuthorizeData = {
|
|
4972
|
+
body?: never;
|
|
4973
|
+
path: {
|
|
4974
|
+
/**
|
|
4975
|
+
* Tenant identifier
|
|
4976
|
+
*/
|
|
4977
|
+
tenantId: string;
|
|
4978
|
+
};
|
|
4979
|
+
query: {
|
|
4980
|
+
/**
|
|
4981
|
+
* Client identifier
|
|
4982
|
+
*/
|
|
4983
|
+
client_id: string;
|
|
4984
|
+
/**
|
|
4985
|
+
* Request URI from PAR response
|
|
4986
|
+
*/
|
|
4987
|
+
request_uri: string;
|
|
4988
|
+
};
|
|
4989
|
+
url: '/api/issuers/{tenantId}/chained-as-vp/authorize';
|
|
4990
|
+
};
|
|
4991
|
+
type ChainedAsVpControllerAuthorizeErrors = {
|
|
4992
|
+
400: ChainedAsErrorResponseDto;
|
|
4993
|
+
};
|
|
4994
|
+
type ChainedAsVpControllerAuthorizeError = ChainedAsVpControllerAuthorizeErrors[keyof ChainedAsVpControllerAuthorizeErrors];
|
|
4995
|
+
type ChainedAsVpControllerVpCallbackData = {
|
|
4996
|
+
body?: never;
|
|
4997
|
+
path: {
|
|
4998
|
+
/**
|
|
4999
|
+
* Tenant identifier
|
|
5000
|
+
*/
|
|
5001
|
+
tenantId: string;
|
|
5002
|
+
};
|
|
5003
|
+
query: {
|
|
5004
|
+
cas: string;
|
|
5005
|
+
response_code?: string;
|
|
5006
|
+
error?: string;
|
|
5007
|
+
error_description?: string;
|
|
5008
|
+
};
|
|
5009
|
+
url: '/api/issuers/{tenantId}/chained-as-vp/vp-callback';
|
|
5010
|
+
};
|
|
5011
|
+
type ChainedAsVpControllerVpCallbackErrors = {
|
|
5012
|
+
400: ChainedAsErrorResponseDto;
|
|
5013
|
+
};
|
|
5014
|
+
type ChainedAsVpControllerVpCallbackError = ChainedAsVpControllerVpCallbackErrors[keyof ChainedAsVpControllerVpCallbackErrors];
|
|
5015
|
+
type ChainedAsVpControllerTokenData = {
|
|
5016
|
+
body: ChainedAsTokenRequestDto;
|
|
5017
|
+
headers?: {
|
|
5018
|
+
/**
|
|
5019
|
+
* DPoP proof JWT
|
|
5020
|
+
*/
|
|
5021
|
+
DPoP?: string;
|
|
5022
|
+
};
|
|
5023
|
+
path: {
|
|
5024
|
+
/**
|
|
5025
|
+
* Tenant identifier
|
|
5026
|
+
*/
|
|
5027
|
+
tenantId: string;
|
|
5028
|
+
};
|
|
5029
|
+
query?: never;
|
|
5030
|
+
url: '/api/issuers/{tenantId}/chained-as-vp/token';
|
|
5031
|
+
};
|
|
5032
|
+
type ChainedAsVpControllerTokenErrors = {
|
|
5033
|
+
400: ChainedAsErrorResponseDto;
|
|
5034
|
+
};
|
|
5035
|
+
type ChainedAsVpControllerTokenError = ChainedAsVpControllerTokenErrors[keyof ChainedAsVpControllerTokenErrors];
|
|
5036
|
+
type ChainedAsVpControllerTokenResponses = {
|
|
5037
|
+
200: ChainedAsTokenResponseDto;
|
|
5038
|
+
};
|
|
5039
|
+
type ChainedAsVpControllerTokenResponse = ChainedAsVpControllerTokenResponses[keyof ChainedAsVpControllerTokenResponses];
|
|
4367
5040
|
type KeyChainControllerGetProvidersData = {
|
|
4368
5041
|
body?: never;
|
|
4369
5042
|
path?: never;
|
|
@@ -4389,6 +5062,44 @@ type KeyChainControllerGetProvidersHealthResponses = {
|
|
|
4389
5062
|
*/
|
|
4390
5063
|
200: unknown;
|
|
4391
5064
|
};
|
|
5065
|
+
type KeyChainControllerDeleteTenantKmsConfigData = {
|
|
5066
|
+
body?: never;
|
|
5067
|
+
path?: never;
|
|
5068
|
+
query?: never;
|
|
5069
|
+
url: '/api/key-chain/providers/config';
|
|
5070
|
+
};
|
|
5071
|
+
type KeyChainControllerDeleteTenantKmsConfigResponses = {
|
|
5072
|
+
/**
|
|
5073
|
+
* Tenant-specific KMS config removed.
|
|
5074
|
+
*/
|
|
5075
|
+
200: unknown;
|
|
5076
|
+
};
|
|
5077
|
+
type KeyChainControllerGetTenantKmsConfigData = {
|
|
5078
|
+
body?: never;
|
|
5079
|
+
path?: never;
|
|
5080
|
+
query?: never;
|
|
5081
|
+
url: '/api/key-chain/providers/config';
|
|
5082
|
+
};
|
|
5083
|
+
type KeyChainControllerGetTenantKmsConfigResponses = {
|
|
5084
|
+
/**
|
|
5085
|
+
* Tenant and effective KMS configuration.
|
|
5086
|
+
*/
|
|
5087
|
+
200: KmsTenantConfigResponseDto;
|
|
5088
|
+
};
|
|
5089
|
+
type KeyChainControllerGetTenantKmsConfigResponse = KeyChainControllerGetTenantKmsConfigResponses[keyof KeyChainControllerGetTenantKmsConfigResponses];
|
|
5090
|
+
type KeyChainControllerUpdateTenantKmsConfigData = {
|
|
5091
|
+
body: KmsConfigDto;
|
|
5092
|
+
path?: never;
|
|
5093
|
+
query?: never;
|
|
5094
|
+
url: '/api/key-chain/providers/config';
|
|
5095
|
+
};
|
|
5096
|
+
type KeyChainControllerUpdateTenantKmsConfigResponses = {
|
|
5097
|
+
/**
|
|
5098
|
+
* Updated tenant KMS config.
|
|
5099
|
+
*/
|
|
5100
|
+
200: KmsTenantConfigResponseDto;
|
|
5101
|
+
};
|
|
5102
|
+
type KeyChainControllerUpdateTenantKmsConfigResponse = KeyChainControllerUpdateTenantKmsConfigResponses[keyof KeyChainControllerUpdateTenantKmsConfigResponses];
|
|
4392
5103
|
type KeyChainControllerGetAllData = {
|
|
4393
5104
|
body?: never;
|
|
4394
5105
|
path?: never;
|
|
@@ -4559,4 +5270,4 @@ type StorageControllerUploadResponses = {
|
|
|
4559
5270
|
};
|
|
4560
5271
|
type StorageControllerUploadResponse = StorageControllerUploadResponses[keyof StorageControllerUploadResponses];
|
|
4561
5272
|
|
|
4562
|
-
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, SchemaMetadataControllerSignSchemaMetaConfigData 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, SchemaMetadataControllerGetMineData as dN, SchemaMetadataControllerGetMineResponse as dO, SchemaMetadataControllerGetMineResponses as dP, SchemaMetadataControllerGetSchemaData as dQ, SchemaMetadataControllerGetSchemaResponse as dR, SchemaMetadataControllerGetSchemaResponses as dS, SchemaMetadataControllerGetVersionsData as dT, SchemaMetadataControllerGetVersionsResponse as dU, SchemaMetadataControllerGetVersionsResponses as dV, SchemaMetadataControllerGetVocabulariesData as dW, SchemaMetadataControllerGetVocabulariesResponse as dX, SchemaMetadataControllerGetVocabulariesResponses as dY, SchemaMetadataControllerRemoveData as dZ, SchemaMetadataControllerRemoveResponses 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, StatusListManagementControllerUpdateListResponse as e$, SchemaMetadataControllerSignSchemaMetaConfigErrors as e0, SchemaMetadataControllerSignSchemaMetaConfigResponses as e1, SchemaMetadataControllerSignVersionSchemaMetaConfigData as e2, SchemaMetadataControllerSignVersionSchemaMetaConfigErrors as e3, SchemaMetadataControllerSignVersionSchemaMetaConfigResponses as e4, SchemaMetadataControllerUpdateData as e5, SchemaMetadataControllerUpdateResponse as e6, SchemaMetadataControllerUpdateResponses as e7, SchemaMetadataResponseDto as e8, SchemaMetadataVocabulariesDto as e9, SignSchemaMetaConfigDto as eA, SignVersionSchemaMetaConfigDto as eB, StatusListAggregationDto as eC, StatusListConfig as eD, StatusListConfigControllerGetConfigData as eE, StatusListConfigControllerGetConfigResponse as eF, StatusListConfigControllerGetConfigResponses as eG, StatusListConfigControllerResetConfigData as eH, StatusListConfigControllerResetConfigResponse as eI, StatusListConfigControllerResetConfigResponses as eJ, StatusListConfigControllerUpdateConfigData as eK, StatusListConfigControllerUpdateConfigResponse as eL, StatusListConfigControllerUpdateConfigResponses as eM, StatusListImportDto as eN, StatusListManagementControllerCreateListData as eO, StatusListManagementControllerCreateListResponse as eP, StatusListManagementControllerCreateListResponses as eQ, StatusListManagementControllerDeleteListData as eR, StatusListManagementControllerDeleteListResponse as eS, StatusListManagementControllerDeleteListResponses as eT, StatusListManagementControllerGetListData as eU, StatusListManagementControllerGetListResponse as eV, StatusListManagementControllerGetListResponses as eW, StatusListManagementControllerGetListsData as eX, StatusListManagementControllerGetListsResponse as eY, StatusListManagementControllerGetListsResponses as eZ, StatusListManagementControllerUpdateListData as e_, SchemaUriEntry as ea, SessionConfigControllerGetConfigData as eb, SessionConfigControllerGetConfigResponse as ec, SessionConfigControllerGetConfigResponses as ed, SessionConfigControllerResetConfigData as ee, SessionConfigControllerResetConfigResponses as ef, SessionConfigControllerUpdateConfigData as eg, SessionConfigControllerUpdateConfigResponse as eh, SessionConfigControllerUpdateConfigResponses as ei, SessionControllerDeleteSessionData as ej, SessionControllerDeleteSessionResponses as ek, SessionControllerGetAllSessionsData as el, SessionControllerGetAllSessionsResponse as em, SessionControllerGetAllSessionsResponses as en, SessionControllerGetSessionData as eo, SessionControllerGetSessionLogsData as ep, SessionControllerGetSessionLogsResponse as eq, SessionControllerGetSessionLogsResponses as er, SessionControllerGetSessionResponse as es, SessionControllerGetSessionResponses as et, SessionControllerRevokeAllData as eu, SessionControllerRevokeAllResponses as ev, SessionEventsControllerSubscribeToSessionEventsData as ew, SessionEventsControllerSubscribeToSessionEventsResponses as ex, SessionLogEntryResponseDto as ey, SessionStorageConfig as ez, AppControllerGetVersionData as f, UpstreamOidcConfig as f$, StatusListManagementControllerUpdateListResponses as f0, StatusListResponseDto as f1, StatusUpdateDto as f2, StorageControllerUploadData as f3, StorageControllerUploadResponse as f4, StorageControllerUploadResponses as f5, TenantControllerDeleteTenantData as f6, TenantControllerDeleteTenantResponses as f7, TenantControllerGetTenantData as f8, TenantControllerGetTenantResponse as f9, TrustListControllerGetAllTrustListsResponses as fA, TrustListControllerGetTrustListData as fB, TrustListControllerGetTrustListResponse as fC, TrustListControllerGetTrustListResponses as fD, TrustListControllerGetTrustListVersionData as fE, TrustListControllerGetTrustListVersionResponse as fF, TrustListControllerGetTrustListVersionResponses as fG, TrustListControllerGetTrustListVersionsData as fH, TrustListControllerGetTrustListVersionsResponse as fI, TrustListControllerGetTrustListVersionsResponses as fJ, TrustListControllerUpdateTrustListData as fK, TrustListControllerUpdateTrustListResponse as fL, TrustListControllerUpdateTrustListResponses as fM, TrustListCreateDto as fN, TrustListEntityInfo as fO, TrustListVersion as fP, TrustedAuthorityQuery as fQ, UpdateAttributeProviderDto as fR, UpdateClientDto as fS, UpdateRegistrarConfigDto as fT, UpdateSchemaMetadataDto as fU, UpdateSessionConfigDto as fV, UpdateStatusListConfigDto as fW, UpdateStatusListDto as fX, UpdateTenantDto as fY, UpdateUserDto as fZ, UpdateWebhookEndpointDto as f_, TenantControllerGetTenantResponses as fa, TenantControllerGetTenantsData as fb, TenantControllerGetTenantsResponse as fc, TenantControllerGetTenantsResponses as fd, TenantControllerInitTenantData as fe, TenantControllerInitTenantResponse as ff, TenantControllerInitTenantResponses as fg, TenantControllerUpdateTenantData as fh, TenantControllerUpdateTenantResponse as fi, TenantControllerUpdateTenantResponses as fj, TenantEntity as fk, TokenResponse as fl, TransactionData as fm, TrustAuthorityDto as fn, TrustAuthorityEntry as fo, TrustList as fp, TrustListControllerCreateTrustListData as fq, TrustListControllerCreateTrustListResponse as fr, TrustListControllerCreateTrustListResponses as fs, TrustListControllerDeleteTrustListData as ft, TrustListControllerDeleteTrustListResponses as fu, TrustListControllerExportTrustListData as fv, TrustListControllerExportTrustListResponse as fw, TrustListControllerExportTrustListResponses as fx, TrustListControllerGetAllTrustListsData as fy, TrustListControllerGetAllTrustListsResponse as fz, AppControllerGetVersionResponses as g, UserControllerCreateUserData as g0, UserControllerCreateUserResponse as g1, UserControllerCreateUserResponses as g2, UserControllerDeleteUserData as g3, UserControllerDeleteUserResponses as g4, UserControllerGetUserData as g5, UserControllerGetUserResponse as g6, UserControllerGetUserResponses as g7, UserControllerGetUsersData as g8, UserControllerGetUsersResponse as g9, WebhookEndpointEntity as gA, UserControllerGetUsersResponses as ga, UserControllerUpdateUserData as gb, UserControllerUpdateUserResponse as gc, UserControllerUpdateUserResponses as gd, Vct as ge, VerifierOfferControllerGetOfferData as gf, VerifierOfferControllerGetOfferResponse as gg, VerifierOfferControllerGetOfferResponses as gh, VocabularyEntryDto as gi, WebHookAuthConfigHeader as gj, WebHookAuthConfigNone as gk, WebhookConfig as gl, WebhookEndpointControllerCreateData as gm, WebhookEndpointControllerCreateResponses as gn, WebhookEndpointControllerDeleteData as go, WebhookEndpointControllerDeleteErrors as gp, WebhookEndpointControllerDeleteResponses as gq, WebhookEndpointControllerGetAllData as gr, WebhookEndpointControllerGetAllResponse as gs, WebhookEndpointControllerGetAllResponses as gt, WebhookEndpointControllerGetByIdData as gu, WebhookEndpointControllerGetByIdErrors as gv, WebhookEndpointControllerGetByIdResponses as gw, WebhookEndpointControllerUpdateData as gx, WebhookEndpointControllerUpdateErrors as gy, WebhookEndpointControllerUpdateResponses as gz, 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 };
|
|
5273
|
+
export type { ChainedAsErrorResponseDto 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, AwsKmsConfigDto as M, BuiltInAuthorizationServerConfig as N, CacheControllerClearAllCachesData as O, CacheControllerClearAllCachesResponse as P, CacheControllerClearAllCachesResponses as Q, CacheControllerClearStatusListCacheData as R, Session as S, CacheControllerClearStatusListCacheResponse as T, CacheControllerClearStatusListCacheResponses as U, CacheControllerClearTrustListCacheData as V, CacheControllerClearTrustListCacheResponse as W, CacheControllerClearTrustListCacheResponses as X, CacheControllerGetStatsData as Y, CacheControllerGetStatsResponses as Z, CertificateInfoDto as _, AllowListPolicy as a, CredentialConfigControllerGetConfigsResponse as a$, ChainedAsParResponseDto as a0, ChainedAsTokenConfig as a1, ChainedAsTokenRequestDto as a2, ChainedAsTokenResponseDto as a3, ChainedAsVpControllerAuthorizeData as a4, ChainedAsVpControllerAuthorizeError as a5, ChainedAsVpControllerAuthorizeErrors as a6, ChainedAsVpControllerParData as a7, ChainedAsVpControllerParError as a8, ChainedAsVpControllerParErrors as a9, ClientControllerGetClientsResponses as aA, ClientControllerRotateClientSecretData as aB, ClientControllerRotateClientSecretResponse as aC, ClientControllerRotateClientSecretResponses as aD, ClientControllerUpdateClientData as aE, ClientControllerUpdateClientResponse as aF, ClientControllerUpdateClientResponses as aG, ClientCredentialsDto as aH, ClientEntity as aI, ClientSecretResponseDto as aJ, CompleteDeferredDto as aK, CreateAccessCertificateDto as aL, CreateAttributeProviderDto as aM, CreateClientDto as aN, CreateRegistrarConfigDto as aO, CreateStatusListDto as aP, CreateTenantDto as aQ, CreateUserDto as aR, CreateWebhookEndpointDto as aS, CredentialConfig as aT, CredentialConfigControllerDeleteIssuanceConfigurationData as aU, CredentialConfigControllerDeleteIssuanceConfigurationResponse as aV, CredentialConfigControllerDeleteIssuanceConfigurationResponses as aW, CredentialConfigControllerGetConfigByIdData as aX, CredentialConfigControllerGetConfigByIdResponse as aY, CredentialConfigControllerGetConfigByIdResponses as aZ, CredentialConfigControllerGetConfigsData as a_, ChainedAsVpControllerParResponse as aa, ChainedAsVpControllerParResponses as ab, ChainedAsVpControllerTokenData as ac, ChainedAsVpControllerTokenError as ad, ChainedAsVpControllerTokenErrors as ae, ChainedAsVpControllerTokenResponse as af, ChainedAsVpControllerTokenResponses as ag, ChainedAsVpControllerVpCallbackData as ah, ChainedAsVpControllerVpCallbackError as ai, ChainedAsVpControllerVpCallbackErrors as aj, ChainedAuthorizationServerConfig as ak, ClaimFieldDefinitionDto as al, ClaimsQuery as am, ClientControllerCreateClientData as an, ClientControllerCreateClientResponse as ao, ClientControllerCreateClientResponses as ap, ClientControllerDeleteClientData as aq, ClientControllerDeleteClientResponses as ar, ClientControllerGetClientData as as, ClientControllerGetClientResponse as at, ClientControllerGetClientResponses as au, ClientControllerGetClientSecretData as av, ClientControllerGetClientSecretResponse as aw, ClientControllerGetClientSecretResponses as ax, ClientControllerGetClientsData as ay, ClientControllerGetClientsResponse as az, ApiKeyConfig as b, IssuanceConfigWritable as b$, CredentialConfigControllerGetConfigsResponses as b0, CredentialConfigControllerStoreCredentialConfigurationData as b1, CredentialConfigControllerStoreCredentialConfigurationResponse as b2, CredentialConfigControllerStoreCredentialConfigurationResponses as b3, CredentialConfigControllerUpdateCredentialConfigurationData as b4, CredentialConfigControllerUpdateCredentialConfigurationResponse as b5, CredentialConfigControllerUpdateCredentialConfigurationResponses as b6, CredentialConfigCreate as b7, CredentialConfigUpdate as b8, CredentialOfferControllerGetOfferData as b9, ExportEcJwk as bA, ExportRotationPolicyDto as bB, ExternalAuthorizationServerConfig as bC, ExternalTrustListEntity as bD, FailDeferredDto as bE, FederationConfig as bF, FederationTrustAnchorConfig as bG, FieldDisplayDto as bH, FileUploadDto as bI, FrontendConfigResponseDto as bJ, GrafanaConfigDto as bK, HttpAuthBaseConfigDto as bL, HttpKmsConfigDto as bM, IaeActionOpenid4VpPresentation as bN, IaeActionRedirectToWeb as bO, ImportTenantDto as bP, InteractiveAuthorizationCodeResponseDto as bQ, InteractiveAuthorizationErrorResponseDto as bR, InteractiveAuthorizationRequestDto as bS, InternalTrustListEntity as bT, IssuanceConfig as bU, IssuanceConfigControllerGetIssuanceConfigurationsData as bV, IssuanceConfigControllerGetIssuanceConfigurationsResponse as bW, IssuanceConfigControllerGetIssuanceConfigurationsResponses as bX, IssuanceConfigControllerStoreIssuanceConfigurationData as bY, IssuanceConfigControllerStoreIssuanceConfigurationResponse as bZ, IssuanceConfigControllerStoreIssuanceConfigurationResponses as b_, CredentialOfferControllerGetOfferResponse as ba, CredentialOfferControllerGetOfferResponses as bb, CredentialQuery as bc, CredentialSetQuery as bd, CscAuthorizeAuthDataDto as be, CscKmsConfigDto as bf, DbKmsConfigDto as bg, Dcql as bh, DeferredControllerCompleteDeferredData as bi, DeferredControllerCompleteDeferredErrors as bj, DeferredControllerCompleteDeferredResponse as bk, DeferredControllerCompleteDeferredResponses as bl, DeferredControllerFailDeferredData as bm, DeferredControllerFailDeferredErrors as bn, DeferredControllerFailDeferredResponse as bo, DeferredControllerFailDeferredResponses as bp, DeferredCredentialRequestDto as bq, DeferredOperationResponse as br, DeprecateSchemaMetadataDto as bs, Display as bt, DisplayImage as bu, DisplayInfo as bv, DisplayLogo as bw, EcJwk as bx, EcPublic as by, EmbeddedDisclosurePolicy as bz, AppControllerGetFrontendConfigData as c, Oid4VpAuthorizationServerConfig as c$, IssuerMetadataCredentialConfig as c0, IssuerProvidedAttestation as c1, IssuerRegistrationCertificateCache as c2, IssuerRegistrationCertificateConfig as c3, JwksResponseDto as c4, KeyAttestationsRequired as c5, KeyChainControllerCreateData as c6, KeyChainControllerCreateResponses as c7, KeyChainControllerDeleteData as c8, KeyChainControllerDeleteErrors as c9, KeyChainControllerRotateResponses as cA, KeyChainControllerUpdateData as cB, KeyChainControllerUpdateErrors as cC, KeyChainControllerUpdateResponses as cD, KeyChainControllerUpdateTenantKmsConfigData as cE, KeyChainControllerUpdateTenantKmsConfigResponse as cF, KeyChainControllerUpdateTenantKmsConfigResponses as cG, KeyChainCreateDto as cH, KeyChainEntity as cI, KeyChainExportDto as cJ, KeyChainImportDto as cK, KeyChainResponseDto as cL, KeyChainUpdateDto as cM, KmsConfigDto as cN, KmsProviderCapabilitiesDto as cO, KmsProviderInfoDto as cP, KmsProvidersResponseDto as cQ, KmsTenantConfigResponseDto as cR, ManagedAuthorizationServerConfig as cS, ManagedUserDto as cT, MetadataSchemaDto as cU, NoneTrustPolicy as cV, NotificationRequestDto as cW, Object$1 as cX, ObjectWritable as cY, OfferRequestDto as cZ, OfferResponse as c_, KeyChainControllerDeleteResponses as ca, KeyChainControllerDeleteTenantKmsConfigData as cb, KeyChainControllerDeleteTenantKmsConfigResponses as cc, KeyChainControllerExportData as cd, KeyChainControllerExportErrors as ce, KeyChainControllerExportResponse as cf, KeyChainControllerExportResponses as cg, KeyChainControllerGetAllData as ch, KeyChainControllerGetAllResponse as ci, KeyChainControllerGetAllResponses as cj, KeyChainControllerGetByIdData as ck, KeyChainControllerGetByIdErrors as cl, KeyChainControllerGetByIdResponse as cm, KeyChainControllerGetByIdResponses as cn, KeyChainControllerGetProvidersData as co, KeyChainControllerGetProvidersHealthData as cp, KeyChainControllerGetProvidersHealthResponses as cq, KeyChainControllerGetProvidersResponse as cr, KeyChainControllerGetProvidersResponses as cs, KeyChainControllerGetTenantKmsConfigData as ct, KeyChainControllerGetTenantKmsConfigResponse as cu, KeyChainControllerGetTenantKmsConfigResponses as cv, KeyChainControllerImportData as cw, KeyChainControllerImportResponses as cx, KeyChainControllerRotateData as cy, KeyChainControllerRotateErrors as cz, AppControllerGetFrontendConfigResponse as d, RegistrationCertificatePurpose as d$, PaginatedSessionResponseDto as d0, ParResponseDto as d1, Pkcs11KmsConfigDto as d2, PolicyCredential as d3, PresentationAttachment as d4, PresentationConfig as d5, PresentationConfigCreateDto as d6, PresentationConfigUpdateDto as d7, PresentationConfigWritable as d8, PresentationDuringIssuanceConfig as d9, PresentationManagementControllerUpdateConfigurationData as dA, PresentationManagementControllerUpdateConfigurationResponse as dB, PresentationManagementControllerUpdateConfigurationResponses as dC, PresentationRequest as dD, PublicKeyInfoDto as dE, RegistrarConfigResponseDto as dF, RegistrarControllerCreateAccessCertificateData as dG, RegistrarControllerCreateAccessCertificateErrors as dH, RegistrarControllerCreateAccessCertificateResponse as dI, RegistrarControllerCreateAccessCertificateResponses as dJ, RegistrarControllerCreateConfigData as dK, RegistrarControllerCreateConfigErrors as dL, RegistrarControllerCreateConfigResponse as dM, RegistrarControllerCreateConfigResponses as dN, RegistrarControllerDeleteConfigData as dO, RegistrarControllerDeleteConfigResponse as dP, RegistrarControllerDeleteConfigResponses as dQ, RegistrarControllerGetConfigData as dR, RegistrarControllerGetConfigErrors as dS, RegistrarControllerGetConfigResponse as dT, RegistrarControllerGetConfigResponses as dU, RegistrarControllerUpdateConfigData as dV, RegistrarControllerUpdateConfigErrors as dW, RegistrarControllerUpdateConfigResponse as dX, RegistrarControllerUpdateConfigResponses as dY, RegistrationCertificateBody as dZ, RegistrationCertificateDefaults as d_, PresentationManagementControllerConfigurationData as da, PresentationManagementControllerConfigurationResponse as db, PresentationManagementControllerConfigurationResponses as dc, PresentationManagementControllerDeleteConfigurationData as dd, PresentationManagementControllerDeleteConfigurationResponses as de, PresentationManagementControllerGetConfigurationData as df, PresentationManagementControllerGetConfigurationResponse as dg, PresentationManagementControllerGetConfigurationResponses as dh, PresentationManagementControllerListSchemaMetadataCatalogData as di, PresentationManagementControllerListSchemaMetadataCatalogResponses as dj, PresentationManagementControllerReissueRegistrationCertificateData as dk, PresentationManagementControllerReissueRegistrationCertificateErrors as dl, PresentationManagementControllerReissueRegistrationCertificateResponses as dm, PresentationManagementControllerResolveIssuerMetadataData as dn, PresentationManagementControllerResolveIssuerMetadataErrors as dp, PresentationManagementControllerResolveIssuerMetadataResponses as dq, PresentationManagementControllerResolveSchemaMetadataData as dr, PresentationManagementControllerResolveSchemaMetadataErrors as ds, PresentationManagementControllerResolveSchemaMetadataJwtData as dt, PresentationManagementControllerResolveSchemaMetadataJwtErrors as du, PresentationManagementControllerResolveSchemaMetadataJwtResponses as dv, PresentationManagementControllerResolveSchemaMetadataResponses as dw, PresentationManagementControllerStorePresentationConfigData as dx, PresentationManagementControllerStorePresentationConfigResponse as dy, PresentationManagementControllerStorePresentationConfigResponses as dz, AppControllerGetFrontendConfigResponses as e, SessionConfigControllerUpdateConfigResponses as e$, RegistrationCertificateRequest as e0, ResolveIssuerMetadataDto as e1, ResolveSchemaMetadataDto as e2, ResolveSchemaMetadataJwtDto as e3, RoleDto as e4, RootOfTrustPolicy as e5, RotationPolicyCreateDto as e6, RotationPolicyImportDto as e7, RotationPolicyResponseDto as e8, RotationPolicyUpdateDto as e9, SchemaMetadataControllerGetVocabulariesResponse as eA, SchemaMetadataControllerGetVocabulariesResponses as eB, SchemaMetadataControllerPublishSchemaMetadataData as eC, SchemaMetadataControllerPublishSchemaMetadataErrors as eD, SchemaMetadataControllerPublishSchemaMetadataResponses as eE, SchemaMetadataControllerPublishSchemaMetadataVersionData as eF, SchemaMetadataControllerPublishSchemaMetadataVersionErrors as eG, SchemaMetadataControllerPublishSchemaMetadataVersionResponses as eH, SchemaMetadataControllerRemoveData as eI, SchemaMetadataControllerRemoveResponses as eJ, SchemaMetadataControllerSignSchemaMetaConfigData as eK, SchemaMetadataControllerSignSchemaMetaConfigResponses as eL, SchemaMetadataControllerSignVersionSchemaMetaConfigData as eM, SchemaMetadataControllerSignVersionSchemaMetaConfigResponses as eN, SchemaMetadataControllerUpdateData as eO, SchemaMetadataControllerUpdateResponse as eP, SchemaMetadataControllerUpdateResponses as eQ, SchemaMetadataResponseDto as eR, SchemaMetadataVocabulariesDto as eS, SchemaUriEntry as eT, SessionConfigControllerGetConfigData as eU, SessionConfigControllerGetConfigResponse as eV, SessionConfigControllerGetConfigResponses as eW, SessionConfigControllerResetConfigData as eX, SessionConfigControllerResetConfigResponses as eY, SessionConfigControllerUpdateConfigData as eZ, SessionConfigControllerUpdateConfigResponse as e_, SchemaMetaConfig as ea, SchemaMetadataControllerDeprecateVersionData as eb, SchemaMetadataControllerDeprecateVersionResponse as ec, SchemaMetadataControllerDeprecateVersionResponses as ed, SchemaMetadataControllerFindAllData as ee, SchemaMetadataControllerFindAllResponse as ef, SchemaMetadataControllerFindAllResponses as eg, SchemaMetadataControllerFindOneData as eh, SchemaMetadataControllerFindOneResponse as ei, SchemaMetadataControllerFindOneResponses as ej, SchemaMetadataControllerGetJwtData as ek, SchemaMetadataControllerGetJwtResponse as el, SchemaMetadataControllerGetJwtResponses as em, SchemaMetadataControllerGetLatestData as en, SchemaMetadataControllerGetLatestResponse as eo, SchemaMetadataControllerGetLatestResponses as ep, SchemaMetadataControllerGetMineData as eq, SchemaMetadataControllerGetMineResponse as er, SchemaMetadataControllerGetMineResponses as es, SchemaMetadataControllerGetSchemaData as et, SchemaMetadataControllerGetSchemaResponse as eu, SchemaMetadataControllerGetSchemaResponses as ev, SchemaMetadataControllerGetVersionsData as ew, SchemaMetadataControllerGetVersionsResponse as ex, SchemaMetadataControllerGetVersionsResponses as ey, SchemaMetadataControllerGetVocabulariesData as ez, AppControllerGetVersionData as f, TenantControllerUpdateTenantResponse as f$, SessionControllerDeleteSessionData as f0, SessionControllerDeleteSessionResponses as f1, SessionControllerGetAllSessionsData as f2, SessionControllerGetAllSessionsResponse as f3, SessionControllerGetAllSessionsResponses as f4, SessionControllerGetSessionData as f5, SessionControllerGetSessionLogsData as f6, SessionControllerGetSessionLogsResponse as f7, SessionControllerGetSessionLogsResponses as f8, SessionControllerGetSessionResponse as f9, StatusListManagementControllerDeleteListResponses as fA, StatusListManagementControllerGetListData as fB, StatusListManagementControllerGetListResponse as fC, StatusListManagementControllerGetListResponses as fD, StatusListManagementControllerGetListsData as fE, StatusListManagementControllerGetListsResponse as fF, StatusListManagementControllerGetListsResponses as fG, StatusListManagementControllerUpdateListData as fH, StatusListManagementControllerUpdateListResponse as fI, StatusListManagementControllerUpdateListResponses as fJ, StatusListResponseDto as fK, StatusUpdateDto as fL, StorageControllerUploadData as fM, StorageControllerUploadResponse as fN, StorageControllerUploadResponses as fO, TenantControllerDeleteTenantData as fP, TenantControllerDeleteTenantResponses as fQ, TenantControllerGetTenantData as fR, TenantControllerGetTenantResponse as fS, TenantControllerGetTenantResponses as fT, TenantControllerGetTenantsData as fU, TenantControllerGetTenantsResponse as fV, TenantControllerGetTenantsResponses as fW, TenantControllerInitTenantData as fX, TenantControllerInitTenantResponse as fY, TenantControllerInitTenantResponses as fZ, TenantControllerUpdateTenantData as f_, SessionControllerGetSessionResponses as fa, SessionControllerRevokeAllData as fb, SessionControllerRevokeAllResponses as fc, SessionEventsControllerSubscribeToSessionEventsData as fd, SessionEventsControllerSubscribeToSessionEventsResponses as fe, SessionLogEntryResponseDto as ff, SessionStorageConfig as fg, SignSchemaMetaConfigDto as fh, SignVersionSchemaMetaConfigDto as fi, StatusListAggregationDto as fj, StatusListConfig as fk, StatusListConfigControllerGetConfigData as fl, StatusListConfigControllerGetConfigResponse as fm, StatusListConfigControllerGetConfigResponses as fn, StatusListConfigControllerResetConfigData as fo, StatusListConfigControllerResetConfigResponse as fp, StatusListConfigControllerResetConfigResponses as fq, StatusListConfigControllerUpdateConfigData as fr, StatusListConfigControllerUpdateConfigResponse as fs, StatusListConfigControllerUpdateConfigResponses as ft, StatusListImportDto as fu, StatusListManagementControllerCreateListData as fv, StatusListManagementControllerCreateListResponse as fw, StatusListManagementControllerCreateListResponses as fx, StatusListManagementControllerDeleteListData as fy, StatusListManagementControllerDeleteListResponse as fz, AppControllerGetVersionResponses as g, VerifierOfferControllerGetOfferData as g$, TenantControllerUpdateTenantResponses as g0, TenantEntity as g1, TokenResponse as g2, TransactionData as g3, TrustAuthorityDto as g4, TrustAuthorityEntry as g5, TrustList as g6, TrustListControllerCreateTrustListData as g7, TrustListControllerCreateTrustListResponse as g8, TrustListControllerCreateTrustListResponses as g9, UpdateIssuanceDto as gA, UpdateIssuanceDtoWritable as gB, UpdateRegistrarConfigDto as gC, UpdateSchemaMetadataDto as gD, UpdateSessionConfigDto as gE, UpdateStatusListConfigDto as gF, UpdateStatusListDto as gG, UpdateTenantDto as gH, UpdateUserDto as gI, UpdateWebhookEndpointDto as gJ, UpstreamOidcConfig as gK, UserControllerCreateUserData as gL, UserControllerCreateUserResponse as gM, UserControllerCreateUserResponses as gN, UserControllerDeleteUserData as gO, UserControllerDeleteUserResponses as gP, UserControllerGetUserData as gQ, UserControllerGetUserResponse as gR, UserControllerGetUserResponses as gS, UserControllerGetUsersData as gT, UserControllerGetUsersResponse as gU, UserControllerGetUsersResponses as gV, UserControllerUpdateUserData as gW, UserControllerUpdateUserResponse as gX, UserControllerUpdateUserResponses as gY, VaultKmsConfigDto as gZ, Vct as g_, TrustListControllerDeleteTrustListData as ga, TrustListControllerDeleteTrustListResponses as gb, TrustListControllerExportTrustListData as gc, TrustListControllerExportTrustListResponse as gd, TrustListControllerExportTrustListResponses as ge, TrustListControllerGetAllTrustListsData as gf, TrustListControllerGetAllTrustListsResponse as gg, TrustListControllerGetAllTrustListsResponses as gh, TrustListControllerGetTrustListData as gi, TrustListControllerGetTrustListResponse as gj, TrustListControllerGetTrustListResponses as gk, TrustListControllerGetTrustListVersionData as gl, TrustListControllerGetTrustListVersionResponse as gm, TrustListControllerGetTrustListVersionResponses as gn, TrustListControllerGetTrustListVersionsData as go, TrustListControllerGetTrustListVersionsResponse as gp, TrustListControllerGetTrustListVersionsResponses as gq, TrustListControllerUpdateTrustListData as gr, TrustListControllerUpdateTrustListResponse as gs, TrustListControllerUpdateTrustListResponses as gt, TrustListCreateDto as gu, TrustListEntityInfo as gv, TrustListVersion as gw, TrustedAuthorityQuery as gx, UpdateAttributeProviderDto as gy, UpdateClientDto as gz, AttestationBasedPolicy as h, VerifierOfferControllerGetOfferResponse as h0, VerifierOfferControllerGetOfferResponses as h1, VocabularyEntryDto as h2, WebHookAuthConfigHeader as h3, WebHookAuthConfigNone as h4, WebhookConfig as h5, WebhookEndpointControllerCreateData as h6, WebhookEndpointControllerCreateResponses as h7, WebhookEndpointControllerDeleteData as h8, WebhookEndpointControllerDeleteErrors as h9, WebhookEndpointControllerDeleteResponses as ha, WebhookEndpointControllerGetAllData as hb, WebhookEndpointControllerGetAllResponse as hc, WebhookEndpointControllerGetAllResponses as hd, WebhookEndpointControllerGetByIdData as he, WebhookEndpointControllerGetByIdErrors as hf, WebhookEndpointControllerGetByIdResponses as hg, WebhookEndpointControllerUpdateData as hh, WebhookEndpointControllerUpdateErrors as hi, WebhookEndpointControllerUpdateResponses as hj, WebhookEndpointEntity as hk, 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 };
|