@eudiplo/sdk-core 5.1.0 → 6.0.0-main.072fb7a
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 +78 -14
- package/dist/api/index.d.ts +78 -14
- package/dist/api/index.js +73 -6
- package/dist/api/index.mjs +63 -6
- package/dist/index.d.mts +9 -5
- package/dist/index.d.ts +9 -5
- package/dist/index.js +142 -14
- package/dist/index.mjs +131 -14
- package/dist/{types.gen-CdvErMyl.d.mts → types.gen-D3fUOR7f.d.mts} +952 -191
- package/dist/{types.gen-CdvErMyl.d.ts → types.gen-D3fUOR7f.d.ts} +952 -191
- 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,46 @@ type FederationConfig = {
|
|
|
879
1010
|
*/
|
|
880
1011
|
trustAnchors: Array<FederationTrustAnchorConfig>;
|
|
881
1012
|
};
|
|
1013
|
+
type IssuerRegistrationCertificateConfig = {
|
|
1014
|
+
/**
|
|
1015
|
+
* Enable inclusion of a registration certificate in credential issuer metadata.
|
|
1016
|
+
*/
|
|
1017
|
+
enabled?: boolean;
|
|
1018
|
+
/**
|
|
1019
|
+
* import: use an existing JWT, generate: create via registrar using attestation data derived from configured credential configurations.
|
|
1020
|
+
*/
|
|
1021
|
+
mode?: 'import' | 'generate';
|
|
1022
|
+
/**
|
|
1023
|
+
* Existing registration certificate JWT used when mode is import.
|
|
1024
|
+
*/
|
|
1025
|
+
jwt?: string;
|
|
1026
|
+
/**
|
|
1027
|
+
* Privacy policy URL used when generating a registration certificate (optional if registrar defaults are configured).
|
|
1028
|
+
*/
|
|
1029
|
+
privacyPolicy?: string;
|
|
1030
|
+
/**
|
|
1031
|
+
* Support URI used when generating a registration certificate (optional if registrar defaults are configured).
|
|
1032
|
+
*/
|
|
1033
|
+
supportUri?: string;
|
|
1034
|
+
};
|
|
1035
|
+
type IssuerRegistrationCertificateCache = {
|
|
1036
|
+
/**
|
|
1037
|
+
* Cached registration certificate JWT generated by EUDIPLO.
|
|
1038
|
+
*/
|
|
1039
|
+
readonly jwt?: string;
|
|
1040
|
+
/**
|
|
1041
|
+
* Config fingerprint used to detect cache invalidation.
|
|
1042
|
+
*/
|
|
1043
|
+
readonly fingerprint?: string;
|
|
1044
|
+
/**
|
|
1045
|
+
* JWT iat claim, seconds since epoch.
|
|
1046
|
+
*/
|
|
1047
|
+
readonly issuedAt?: number;
|
|
1048
|
+
/**
|
|
1049
|
+
* JWT exp claim, seconds since epoch.
|
|
1050
|
+
*/
|
|
1051
|
+
readonly expiresAt?: number;
|
|
1052
|
+
};
|
|
882
1053
|
type DisplayLogo = {
|
|
883
1054
|
uri: string;
|
|
884
1055
|
alt_text?: string;
|
|
@@ -894,20 +1065,23 @@ type IssuanceConfig = {
|
|
|
894
1065
|
*/
|
|
895
1066
|
signingKeyId?: string;
|
|
896
1067
|
/**
|
|
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.
|
|
1068
|
+
* Dedicated managed authorization servers hosted by this issuer. At least one entry is required.
|
|
900
1069
|
*/
|
|
901
|
-
|
|
1070
|
+
authorizationServers: Array<ExternalAuthorizationServerConfig | Oid4VpAuthorizationServerConfig | ChainedAuthorizationServerConfig | BuiltInAuthorizationServerConfig>;
|
|
902
1071
|
/**
|
|
903
1072
|
* Optional OpenID Federation configuration used for trust evaluation.
|
|
904
1073
|
* When omitted, trust checks rely on existing LoTE trust-list behavior.
|
|
905
1074
|
*/
|
|
906
1075
|
federation?: FederationConfig;
|
|
907
1076
|
/**
|
|
908
|
-
*
|
|
1077
|
+
* Optional registration certificate configuration for issuer metadata (`issuer_info`).
|
|
1078
|
+
* Supports importing an existing JWT or generating one via registrar.
|
|
909
1079
|
*/
|
|
910
|
-
|
|
1080
|
+
registrationCertificate?: IssuerRegistrationCertificateConfig;
|
|
1081
|
+
/**
|
|
1082
|
+
* Server-managed cache for generated issuer registration certificates.
|
|
1083
|
+
*/
|
|
1084
|
+
readonly registrationCertificateCache?: IssuerRegistrationCertificateCache;
|
|
911
1085
|
/**
|
|
912
1086
|
* Whether `credential_response_encryption` should be advertised in the credential issuer metadata.
|
|
913
1087
|
*/
|
|
@@ -916,10 +1090,6 @@ type IssuanceConfig = {
|
|
|
916
1090
|
* Whether `credential_request_encryption` should be advertised in the credential issuer metadata.
|
|
917
1091
|
*/
|
|
918
1092
|
credentialRequestEncryption?: boolean;
|
|
919
|
-
/**
|
|
920
|
-
* Refresh token lifetime in seconds. Defaults to 2592000 (30 days).
|
|
921
|
-
*/
|
|
922
|
-
refreshTokenExpiresInSeconds?: number;
|
|
923
1093
|
/**
|
|
924
1094
|
* Maximum failed tx_code attempts before the pre-authorized code is invalidated. Defaults to 5.
|
|
925
1095
|
*/
|
|
@@ -928,10 +1098,6 @@ type IssuanceConfig = {
|
|
|
928
1098
|
* The tenant that owns this object.
|
|
929
1099
|
*/
|
|
930
1100
|
tenant: TenantEntity;
|
|
931
|
-
/**
|
|
932
|
-
* Authentication server URL for the issuance process.
|
|
933
|
-
*/
|
|
934
|
-
authServers?: Array<string>;
|
|
935
1101
|
/**
|
|
936
1102
|
* Value to determine the amount of credentials that are issued in a batch.
|
|
937
1103
|
* Default is 1.
|
|
@@ -953,13 +1119,6 @@ type IssuanceConfig = {
|
|
|
953
1119
|
* If empty and walletAttestationRequired is true, all wallet providers are rejected.
|
|
954
1120
|
*/
|
|
955
1121
|
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
1122
|
display: Array<DisplayInfo>;
|
|
964
1123
|
/**
|
|
965
1124
|
* The timestamp when the VP request was created.
|
|
@@ -970,26 +1129,29 @@ type IssuanceConfig = {
|
|
|
970
1129
|
*/
|
|
971
1130
|
updatedAt: string;
|
|
972
1131
|
};
|
|
973
|
-
type
|
|
1132
|
+
type UpdateIssuanceDto = {
|
|
974
1133
|
/**
|
|
975
1134
|
* Key ID for signing access tokens. If unset, the default signing key is used.
|
|
976
1135
|
*/
|
|
977
1136
|
signingKeyId?: string;
|
|
978
1137
|
/**
|
|
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.
|
|
1138
|
+
* Dedicated managed authorization servers hosted by this issuer. At least one entry is required.
|
|
982
1139
|
*/
|
|
983
|
-
|
|
1140
|
+
authorizationServers?: Array<ExternalAuthorizationServerConfig | Oid4VpAuthorizationServerConfig | ChainedAuthorizationServerConfig | BuiltInAuthorizationServerConfig>;
|
|
984
1141
|
/**
|
|
985
1142
|
* Optional OpenID Federation configuration used for trust evaluation.
|
|
986
1143
|
* When omitted, trust checks rely on existing LoTE trust-list behavior.
|
|
987
1144
|
*/
|
|
988
1145
|
federation?: FederationConfig;
|
|
989
1146
|
/**
|
|
990
|
-
*
|
|
1147
|
+
* Optional registration certificate configuration for issuer metadata (`issuer_info`).
|
|
1148
|
+
* Supports importing an existing JWT or generating one via registrar.
|
|
991
1149
|
*/
|
|
992
|
-
|
|
1150
|
+
registrationCertificate?: IssuerRegistrationCertificateConfig;
|
|
1151
|
+
/**
|
|
1152
|
+
* Server-managed cache for generated issuer registration certificates.
|
|
1153
|
+
*/
|
|
1154
|
+
readonly registrationCertificateCache?: IssuerRegistrationCertificateCache;
|
|
993
1155
|
/**
|
|
994
1156
|
* Whether `credential_response_encryption` should be advertised in the credential issuer metadata.
|
|
995
1157
|
*/
|
|
@@ -998,18 +1160,10 @@ type IssuanceDto = {
|
|
|
998
1160
|
* Whether `credential_request_encryption` should be advertised in the credential issuer metadata.
|
|
999
1161
|
*/
|
|
1000
1162
|
credentialRequestEncryption?: boolean;
|
|
1001
|
-
/**
|
|
1002
|
-
* Refresh token lifetime in seconds. Defaults to 2592000 (30 days).
|
|
1003
|
-
*/
|
|
1004
|
-
refreshTokenExpiresInSeconds?: number;
|
|
1005
1163
|
/**
|
|
1006
1164
|
* Maximum failed tx_code attempts before the pre-authorized code is invalidated. Defaults to 5.
|
|
1007
1165
|
*/
|
|
1008
1166
|
txCodeMaxAttempts?: number;
|
|
1009
|
-
/**
|
|
1010
|
-
* Authentication server URL for the issuance process.
|
|
1011
|
-
*/
|
|
1012
|
-
authServers?: Array<string>;
|
|
1013
1167
|
/**
|
|
1014
1168
|
* Value to determine the amount of credentials that are issued in a batch.
|
|
1015
1169
|
* Default is 1.
|
|
@@ -1031,14 +1185,7 @@ type IssuanceDto = {
|
|
|
1031
1185
|
* If empty and walletAttestationRequired is true, all wallet providers are rejected.
|
|
1032
1186
|
*/
|
|
1033
1187
|
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>;
|
|
1188
|
+
display?: Array<DisplayInfo>;
|
|
1042
1189
|
};
|
|
1043
1190
|
type ClaimsQuery = {
|
|
1044
1191
|
id?: string;
|
|
@@ -1050,6 +1197,10 @@ type TrustedAuthorityQuery = {
|
|
|
1050
1197
|
values: Array<string>;
|
|
1051
1198
|
};
|
|
1052
1199
|
type CredentialQuery = {
|
|
1200
|
+
/**
|
|
1201
|
+
* Ordered alternative claim combinations for this credential query.
|
|
1202
|
+
*/
|
|
1203
|
+
claim_sets?: Array<Array<string>>;
|
|
1053
1204
|
id: string;
|
|
1054
1205
|
format: string;
|
|
1055
1206
|
multiple?: boolean;
|
|
@@ -1156,7 +1307,7 @@ type SchemaUriEntry = {
|
|
|
1156
1307
|
/**
|
|
1157
1308
|
* Schema-format specific metadata (for example { vct: 'urn:example:vct' } for dc+sd-jwt).
|
|
1158
1309
|
*/
|
|
1159
|
-
meta
|
|
1310
|
+
meta?: {
|
|
1160
1311
|
[key: string]: unknown;
|
|
1161
1312
|
};
|
|
1162
1313
|
};
|
|
@@ -1173,28 +1324,28 @@ type TrustAuthorityEntry = {
|
|
|
1173
1324
|
* URI of the trust list or trust anchor (ignored when trustListId is set)
|
|
1174
1325
|
*/
|
|
1175
1326
|
value?: string;
|
|
1176
|
-
/**
|
|
1177
|
-
* Whether this trust authority is a List of Trusted Entities (LoTE)
|
|
1178
|
-
*/
|
|
1179
|
-
isLoTE?: boolean;
|
|
1180
1327
|
/**
|
|
1181
1328
|
* Optional verification material for external trusted authorities (for example a JWK). For internal trust-list URLs, EUDIPLO resolves verification material from the database.
|
|
1182
1329
|
*/
|
|
1183
1330
|
verificationMethod?: {
|
|
1184
1331
|
[key: string]: unknown;
|
|
1185
|
-
};
|
|
1332
|
+
} | string;
|
|
1186
1333
|
};
|
|
1187
1334
|
type SchemaMetaConfig = {
|
|
1188
1335
|
/**
|
|
1189
1336
|
* Optional override for the schema ID (attestation identifier URI). When not set, derived from vct (dc+sd-jwt) or docType (mso_mdoc).
|
|
1190
1337
|
*/
|
|
1191
1338
|
id?: string;
|
|
1339
|
+
/**
|
|
1340
|
+
* Human-readable name of the schema metadata entry. Required when publishing new schema metadata; optional when linking an existing schema metadata id to a credential config.
|
|
1341
|
+
*/
|
|
1342
|
+
name?: string;
|
|
1192
1343
|
/**
|
|
1193
1344
|
* Schema version in SemVer format
|
|
1194
1345
|
*/
|
|
1195
1346
|
version?: string;
|
|
1196
1347
|
/**
|
|
1197
|
-
* URI of the Attestation Rulebook
|
|
1348
|
+
* URI of the Attestation Rulebook. Required when publishing new schema metadata; optional when linking an existing schema metadata id to a credential config.
|
|
1198
1349
|
*/
|
|
1199
1350
|
rulebookURI?: string;
|
|
1200
1351
|
/**
|
|
@@ -1271,7 +1422,7 @@ type FieldDisplayDto = {
|
|
|
1271
1422
|
};
|
|
1272
1423
|
type ClaimFieldDefinitionDto = {
|
|
1273
1424
|
/**
|
|
1274
|
-
* Path to claim value
|
|
1425
|
+
* Path to claim value. For nested child fields this can be relative to the parent path.
|
|
1275
1426
|
*/
|
|
1276
1427
|
path: Array<string | number | null>;
|
|
1277
1428
|
/**
|
|
@@ -1293,7 +1444,7 @@ type ClaimFieldDefinitionDto = {
|
|
|
1293
1444
|
*/
|
|
1294
1445
|
disclosable?: boolean;
|
|
1295
1446
|
/**
|
|
1296
|
-
* Namespace for mDOC field
|
|
1447
|
+
* Namespace for mDOC field. Optional when the namespace is already present as the first path segment.
|
|
1297
1448
|
*/
|
|
1298
1449
|
namespace?: string;
|
|
1299
1450
|
display?: Array<FieldDisplayDto>;
|
|
@@ -1303,6 +1454,10 @@ type ClaimFieldDefinitionDto = {
|
|
|
1303
1454
|
constraints?: {
|
|
1304
1455
|
[key: string]: unknown;
|
|
1305
1456
|
};
|
|
1457
|
+
/**
|
|
1458
|
+
* Optional nested child fields. Child paths may be specified relative to the parent field path.
|
|
1459
|
+
*/
|
|
1460
|
+
children?: Array<ClaimFieldDefinitionDto>;
|
|
1306
1461
|
};
|
|
1307
1462
|
type AttributeProviderEntity = {
|
|
1308
1463
|
auth: WebHookAuthConfigNone | WebHookAuthConfigHeader;
|
|
@@ -1564,27 +1719,31 @@ type CredentialConfigUpdate = {
|
|
|
1564
1719
|
};
|
|
1565
1720
|
type SignSchemaMetaConfigDto = {
|
|
1566
1721
|
/**
|
|
1567
|
-
* The schema metadata configuration to
|
|
1722
|
+
* The schema metadata configuration to submit. Registrar builds and signs the final schema metadata.
|
|
1568
1723
|
*/
|
|
1569
1724
|
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
1725
|
/**
|
|
1575
1726
|
* 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
1727
|
*/
|
|
1577
1728
|
credentialConfigId?: string;
|
|
1729
|
+
/**
|
|
1730
|
+
* How to update credential config pinning after publish. keep_current: do not change existing pin (unless empty). update_to_new_version: update pinned version under current id. replace_id: repoint pin to a different schema id.
|
|
1731
|
+
*/
|
|
1732
|
+
pinMode?: 'keep_current' | 'update_to_new_version' | 'replace_id';
|
|
1578
1733
|
};
|
|
1579
1734
|
type SignVersionSchemaMetaConfigDto = {
|
|
1580
1735
|
/**
|
|
1581
|
-
* The schema metadata configuration to
|
|
1736
|
+
* The schema metadata configuration to submit as a new version. Must include the existing id.
|
|
1582
1737
|
*/
|
|
1583
1738
|
config: SchemaMetaConfig;
|
|
1584
1739
|
/**
|
|
1585
|
-
*
|
|
1740
|
+
* Optional credential config to update pinning for after successful version publish.
|
|
1586
1741
|
*/
|
|
1587
|
-
|
|
1742
|
+
credentialConfigId?: string;
|
|
1743
|
+
/**
|
|
1744
|
+
* How to update credential config pinning after version publish. keep_current: do not change existing pin (unless empty). update_to_new_version: update pinned version under current id. replace_id: repoint pin to config.id.
|
|
1745
|
+
*/
|
|
1746
|
+
pinMode?: 'keep_current' | 'update_to_new_version' | 'replace_id';
|
|
1588
1747
|
};
|
|
1589
1748
|
type VocabularyEntryDto = {
|
|
1590
1749
|
/**
|
|
@@ -1632,9 +1791,9 @@ type MetadataSchemaDto = {
|
|
|
1632
1791
|
*/
|
|
1633
1792
|
uri?: string;
|
|
1634
1793
|
/**
|
|
1635
|
-
*
|
|
1794
|
+
* Format-specific metadata for the schema entry
|
|
1636
1795
|
*/
|
|
1637
|
-
|
|
1796
|
+
meta?: {
|
|
1638
1797
|
[key: string]: unknown;
|
|
1639
1798
|
};
|
|
1640
1799
|
/**
|
|
@@ -1662,6 +1821,16 @@ type TrustAuthorityDto = {
|
|
|
1662
1821
|
[key: string]: unknown;
|
|
1663
1822
|
};
|
|
1664
1823
|
};
|
|
1824
|
+
type IssuerOfferEntryDto = {
|
|
1825
|
+
/**
|
|
1826
|
+
* URL where the user can receive a credential offer from this issuer.
|
|
1827
|
+
*/
|
|
1828
|
+
credentialOfferUrl: string;
|
|
1829
|
+
/**
|
|
1830
|
+
* Human-readable description explaining when this issuer offer is relevant for the user.
|
|
1831
|
+
*/
|
|
1832
|
+
description: string;
|
|
1833
|
+
};
|
|
1665
1834
|
type AccessCertificateRefDto = {
|
|
1666
1835
|
id: string;
|
|
1667
1836
|
relyingPartyId: string;
|
|
@@ -1714,6 +1883,14 @@ type SchemaMetadataResponseDto = {
|
|
|
1714
1883
|
* Free-form tags for filtering and search
|
|
1715
1884
|
*/
|
|
1716
1885
|
tags?: Array<string>;
|
|
1886
|
+
/**
|
|
1887
|
+
* Optional human-readable schema name for UI display and filtering.
|
|
1888
|
+
*/
|
|
1889
|
+
displayName?: string;
|
|
1890
|
+
/**
|
|
1891
|
+
* Issuer offer entries for this schema metadata. Each entry provides a credential offer URL and user-facing description.
|
|
1892
|
+
*/
|
|
1893
|
+
issuerOffers: Array<IssuerOfferEntryDto>;
|
|
1717
1894
|
/**
|
|
1718
1895
|
* The original signed JWT
|
|
1719
1896
|
*/
|
|
@@ -1722,10 +1899,6 @@ type SchemaMetadataResponseDto = {
|
|
|
1722
1899
|
* Issuer from the JWT (`iss` claim)
|
|
1723
1900
|
*/
|
|
1724
1901
|
issuer: string;
|
|
1725
|
-
/**
|
|
1726
|
-
* Serial number of the access certificate that signed this schema metadata
|
|
1727
|
-
*/
|
|
1728
|
-
signerCertificateSerial: string;
|
|
1729
1902
|
/**
|
|
1730
1903
|
* The access certificate used to sign this schema metadata
|
|
1731
1904
|
*/
|
|
@@ -1745,7 +1918,7 @@ type SchemaMetadataResponseDto = {
|
|
|
1745
1918
|
/**
|
|
1746
1919
|
* Whether this version is deprecated
|
|
1747
1920
|
*/
|
|
1748
|
-
deprecated
|
|
1921
|
+
deprecated: boolean;
|
|
1749
1922
|
/**
|
|
1750
1923
|
* Deprecation message shown to consumers
|
|
1751
1924
|
*/
|
|
@@ -1754,6 +1927,20 @@ type SchemaMetadataResponseDto = {
|
|
|
1754
1927
|
* The version that supersedes this one
|
|
1755
1928
|
*/
|
|
1756
1929
|
supersededByVersion?: string;
|
|
1930
|
+
/**
|
|
1931
|
+
* Timestamp when this version was marked as deprecated
|
|
1932
|
+
*/
|
|
1933
|
+
deprecatedAt?: string;
|
|
1934
|
+
};
|
|
1935
|
+
type UpdateIssuerOfferDto = {
|
|
1936
|
+
/**
|
|
1937
|
+
* URL where the user can receive a credential offer from this issuer.
|
|
1938
|
+
*/
|
|
1939
|
+
credentialOfferUrl?: string;
|
|
1940
|
+
/**
|
|
1941
|
+
* Human-readable description to help users choose the right issuer.
|
|
1942
|
+
*/
|
|
1943
|
+
description?: string;
|
|
1757
1944
|
};
|
|
1758
1945
|
type UpdateSchemaMetadataDto = {
|
|
1759
1946
|
/**
|
|
@@ -1764,6 +1951,14 @@ type UpdateSchemaMetadataDto = {
|
|
|
1764
1951
|
* Predefined tags for filtering and search
|
|
1765
1952
|
*/
|
|
1766
1953
|
tags?: Array<'pid' | 'eudi' | 'kyc' | 'aml' | 'age-verification' | 'residency' | 'membership' | 'education' | 'employment' | 'mobility'>;
|
|
1954
|
+
/**
|
|
1955
|
+
* Optional human-readable schema name for UI display and search
|
|
1956
|
+
*/
|
|
1957
|
+
displayName?: string;
|
|
1958
|
+
/**
|
|
1959
|
+
* Issuer offer entries shown to users, each with credential-offer URL and description
|
|
1960
|
+
*/
|
|
1961
|
+
issuerOffers?: Array<UpdateIssuerOfferDto>;
|
|
1767
1962
|
};
|
|
1768
1963
|
type DeprecateSchemaMetadataDto = {
|
|
1769
1964
|
/**
|
|
@@ -1843,11 +2038,7 @@ type TrustListCreateDto = {
|
|
|
1843
2038
|
data?: {
|
|
1844
2039
|
[key: string]: unknown;
|
|
1845
2040
|
};
|
|
1846
|
-
entities: Array<
|
|
1847
|
-
type: 'internal';
|
|
1848
|
-
} & InternalTrustListEntity) | ({
|
|
1849
|
-
type: 'external';
|
|
1850
|
-
} & ExternalTrustListEntity)>;
|
|
2041
|
+
entities: Array<InternalTrustListEntity | ExternalTrustListEntity>;
|
|
1851
2042
|
id?: string;
|
|
1852
2043
|
keyChainId?: string;
|
|
1853
2044
|
};
|
|
@@ -1994,8 +2185,16 @@ type PresentationConfig = {
|
|
|
1994
2185
|
* The registration certificate request containing the necessary details.
|
|
1995
2186
|
*/
|
|
1996
2187
|
registration_cert?: RegistrationCertificateRequest;
|
|
2188
|
+
/**
|
|
2189
|
+
* Reference to the webhook endpoint used for notifications.
|
|
2190
|
+
* Optional: if set, notifications will be sent to this endpoint.
|
|
2191
|
+
*/
|
|
2192
|
+
webhookEndpointId?: string;
|
|
2193
|
+
webhookEndpoint?: WebhookEndpointEntity;
|
|
1997
2194
|
/**
|
|
1998
2195
|
* Optional webhook URL to receive the response.
|
|
2196
|
+
*
|
|
2197
|
+
* @deprecated
|
|
1999
2198
|
*/
|
|
2000
2199
|
webhook?: WebhookConfig;
|
|
2001
2200
|
/**
|
|
@@ -2038,6 +2237,12 @@ type ResolveSchemaMetadataDto = {
|
|
|
2038
2237
|
*/
|
|
2039
2238
|
schemaMetadataUrl: string;
|
|
2040
2239
|
};
|
|
2240
|
+
type ResolveSchemaMetadataJwtDto = {
|
|
2241
|
+
/**
|
|
2242
|
+
* Signed schema metadata JWT to resolve server-side. The JWT will be verified, resolved, and converted to DCQL.
|
|
2243
|
+
*/
|
|
2244
|
+
signedJwt: string;
|
|
2245
|
+
};
|
|
2041
2246
|
type PresentationConfigCreateDto = {
|
|
2042
2247
|
/**
|
|
2043
2248
|
* Unique identifier for the VP request.
|
|
@@ -2060,8 +2265,16 @@ type PresentationConfigCreateDto = {
|
|
|
2060
2265
|
* The registration certificate request containing the necessary details.
|
|
2061
2266
|
*/
|
|
2062
2267
|
registration_cert?: RegistrationCertificateRequest;
|
|
2268
|
+
/**
|
|
2269
|
+
* Reference to the webhook endpoint used for notifications.
|
|
2270
|
+
* Optional: if set, notifications will be sent to this endpoint.
|
|
2271
|
+
*/
|
|
2272
|
+
webhookEndpointId?: string;
|
|
2273
|
+
webhookEndpoint?: WebhookEndpointEntity;
|
|
2063
2274
|
/**
|
|
2064
2275
|
* Optional webhook URL to receive the response.
|
|
2276
|
+
*
|
|
2277
|
+
* @deprecated
|
|
2065
2278
|
*/
|
|
2066
2279
|
webhook?: WebhookConfig;
|
|
2067
2280
|
/**
|
|
@@ -2106,8 +2319,16 @@ type PresentationConfigUpdateDto = {
|
|
|
2106
2319
|
* The registration certificate request containing the necessary details.
|
|
2107
2320
|
*/
|
|
2108
2321
|
registration_cert?: RegistrationCertificateRequest;
|
|
2322
|
+
/**
|
|
2323
|
+
* Reference to the webhook endpoint used for notifications.
|
|
2324
|
+
* Optional: if set, notifications will be sent to this endpoint.
|
|
2325
|
+
*/
|
|
2326
|
+
webhookEndpointId?: string;
|
|
2327
|
+
webhookEndpoint?: WebhookEndpointEntity;
|
|
2109
2328
|
/**
|
|
2110
2329
|
* Optional webhook URL to receive the response.
|
|
2330
|
+
*
|
|
2331
|
+
* @deprecated
|
|
2111
2332
|
*/
|
|
2112
2333
|
webhook?: WebhookConfig;
|
|
2113
2334
|
/**
|
|
@@ -2246,6 +2467,90 @@ type NotificationRequestDto = {
|
|
|
2246
2467
|
notification_id: string;
|
|
2247
2468
|
event: 'credential_accepted' | 'credential_failure' | 'credential_deleted';
|
|
2248
2469
|
};
|
|
2470
|
+
type OfferResponse = {
|
|
2471
|
+
uri: string;
|
|
2472
|
+
/**
|
|
2473
|
+
* URI for cross-device flows (no redirect after completion)
|
|
2474
|
+
*/
|
|
2475
|
+
crossDeviceUri?: string;
|
|
2476
|
+
session: string;
|
|
2477
|
+
};
|
|
2478
|
+
type CompleteDeferredDto = {
|
|
2479
|
+
/**
|
|
2480
|
+
* Claims to include in the credential. The structure should match the credential configuration's expected claims.
|
|
2481
|
+
*/
|
|
2482
|
+
claims: {
|
|
2483
|
+
[key: string]: unknown;
|
|
2484
|
+
};
|
|
2485
|
+
};
|
|
2486
|
+
type DeferredOperationResponse = {
|
|
2487
|
+
/**
|
|
2488
|
+
* The transaction ID
|
|
2489
|
+
*/
|
|
2490
|
+
transactionId: string;
|
|
2491
|
+
/**
|
|
2492
|
+
* The new status of the transaction
|
|
2493
|
+
*/
|
|
2494
|
+
status: 'pending' | 'ready' | 'retrieved' | 'expired' | 'failed';
|
|
2495
|
+
/**
|
|
2496
|
+
* Optional message
|
|
2497
|
+
*/
|
|
2498
|
+
message?: string;
|
|
2499
|
+
};
|
|
2500
|
+
type FailDeferredDto = {
|
|
2501
|
+
/**
|
|
2502
|
+
* Optional error message explaining why the issuance failed
|
|
2503
|
+
*/
|
|
2504
|
+
error?: string;
|
|
2505
|
+
};
|
|
2506
|
+
type EcPublic = {
|
|
2507
|
+
/**
|
|
2508
|
+
* The key type, which is always 'EC' for Elliptic Curve keys.
|
|
2509
|
+
*/
|
|
2510
|
+
kty: string;
|
|
2511
|
+
/**
|
|
2512
|
+
* The algorithm intended for use with the key, such as 'ES256'.
|
|
2513
|
+
*/
|
|
2514
|
+
crv: string;
|
|
2515
|
+
/**
|
|
2516
|
+
* The x coordinate of the EC public key.
|
|
2517
|
+
*/
|
|
2518
|
+
x: string;
|
|
2519
|
+
/**
|
|
2520
|
+
* The y coordinate of the EC public key.
|
|
2521
|
+
*/
|
|
2522
|
+
y: string;
|
|
2523
|
+
};
|
|
2524
|
+
type JwksResponseDto = {
|
|
2525
|
+
/**
|
|
2526
|
+
* An array of EC public keys in JWK format.
|
|
2527
|
+
*/
|
|
2528
|
+
keys: Array<EcPublic>;
|
|
2529
|
+
};
|
|
2530
|
+
type AuthorizationResponse = {
|
|
2531
|
+
/**
|
|
2532
|
+
* The response string containing the authorization details (JWE-encrypted VP token).
|
|
2533
|
+
* Required for success responses, absent for error responses.
|
|
2534
|
+
*/
|
|
2535
|
+
response?: string;
|
|
2536
|
+
/**
|
|
2537
|
+
* When set to true, the authorization response will be sent to the client.
|
|
2538
|
+
*/
|
|
2539
|
+
sendResponse?: boolean;
|
|
2540
|
+
error?: string;
|
|
2541
|
+
/**
|
|
2542
|
+
* Human-readable description of the error.
|
|
2543
|
+
*/
|
|
2544
|
+
error_description?: string;
|
|
2545
|
+
/**
|
|
2546
|
+
* URI with additional information about the error.
|
|
2547
|
+
*/
|
|
2548
|
+
error_uri?: string;
|
|
2549
|
+
/**
|
|
2550
|
+
* State value from the authorization request (for correlation).
|
|
2551
|
+
*/
|
|
2552
|
+
state?: string;
|
|
2553
|
+
};
|
|
2249
2554
|
type Object$1 = {
|
|
2250
2555
|
[key: string]: unknown;
|
|
2251
2556
|
};
|
|
@@ -2425,139 +2730,285 @@ type ChainedAsTokenResponseDto = {
|
|
|
2425
2730
|
*/
|
|
2426
2731
|
refresh_token?: string;
|
|
2427
2732
|
};
|
|
2428
|
-
type
|
|
2429
|
-
uri: string;
|
|
2733
|
+
type KmsProviderCapabilitiesDto = {
|
|
2430
2734
|
/**
|
|
2431
|
-
*
|
|
2735
|
+
* Whether the provider supports importing existing keys.
|
|
2432
2736
|
*/
|
|
2433
|
-
|
|
2434
|
-
session: string;
|
|
2435
|
-
};
|
|
2436
|
-
type CompleteDeferredDto = {
|
|
2737
|
+
canImport: boolean;
|
|
2437
2738
|
/**
|
|
2438
|
-
*
|
|
2739
|
+
* Whether the provider supports generating new keys.
|
|
2439
2740
|
*/
|
|
2440
|
-
|
|
2441
|
-
|
|
2442
|
-
|
|
2741
|
+
canCreate: boolean;
|
|
2742
|
+
/**
|
|
2743
|
+
* Whether the provider supports deleting keys.
|
|
2744
|
+
*/
|
|
2745
|
+
canDelete: boolean;
|
|
2746
|
+
/**
|
|
2747
|
+
* Signing algorithms supported by the provider.
|
|
2748
|
+
*/
|
|
2749
|
+
supportedAlgs: Array<string>;
|
|
2750
|
+
/**
|
|
2751
|
+
* Default signing algorithm used when caller does not specify one.
|
|
2752
|
+
*/
|
|
2753
|
+
defaultAlg: string;
|
|
2443
2754
|
};
|
|
2444
|
-
type
|
|
2755
|
+
type KmsProviderInfoDto = {
|
|
2445
2756
|
/**
|
|
2446
|
-
*
|
|
2757
|
+
* Unique provider ID (matches the id in kms.json).
|
|
2447
2758
|
*/
|
|
2448
|
-
|
|
2759
|
+
name: string;
|
|
2449
2760
|
/**
|
|
2450
|
-
*
|
|
2761
|
+
* Type of the KMS provider (db, vault, aws-kms).
|
|
2451
2762
|
*/
|
|
2452
|
-
|
|
2763
|
+
type: string;
|
|
2453
2764
|
/**
|
|
2454
|
-
*
|
|
2765
|
+
* Human-readable description of this provider instance.
|
|
2455
2766
|
*/
|
|
2456
|
-
|
|
2767
|
+
description?: string;
|
|
2768
|
+
/**
|
|
2769
|
+
* Capabilities of this provider.
|
|
2770
|
+
*/
|
|
2771
|
+
capabilities: KmsProviderCapabilitiesDto;
|
|
2457
2772
|
};
|
|
2458
|
-
type
|
|
2773
|
+
type KmsProvidersResponseDto = {
|
|
2459
2774
|
/**
|
|
2460
|
-
*
|
|
2775
|
+
* Detailed info for each registered KMS provider.
|
|
2461
2776
|
*/
|
|
2462
|
-
|
|
2777
|
+
providers: Array<KmsProviderInfoDto>;
|
|
2778
|
+
/**
|
|
2779
|
+
* The default KMS provider name.
|
|
2780
|
+
*/
|
|
2781
|
+
default: string;
|
|
2463
2782
|
};
|
|
2464
|
-
type
|
|
2783
|
+
type DbKmsConfigDto = {
|
|
2465
2784
|
/**
|
|
2466
|
-
*
|
|
2785
|
+
* Unique identifier for this provider instance. Used when generating keys to specify which provider to use.
|
|
2467
2786
|
*/
|
|
2468
|
-
|
|
2787
|
+
id: string;
|
|
2469
2788
|
/**
|
|
2470
|
-
*
|
|
2789
|
+
* Type of the KMS provider.
|
|
2471
2790
|
*/
|
|
2472
|
-
|
|
2791
|
+
type: 'db';
|
|
2473
2792
|
/**
|
|
2474
|
-
*
|
|
2793
|
+
* Human-readable description of this provider instance.
|
|
2475
2794
|
*/
|
|
2476
|
-
|
|
2795
|
+
description?: string;
|
|
2796
|
+
};
|
|
2797
|
+
type VaultKmsConfigDto = {
|
|
2477
2798
|
/**
|
|
2478
|
-
*
|
|
2799
|
+
* Unique identifier for this provider instance. Used when generating keys to specify which provider to use.
|
|
2479
2800
|
*/
|
|
2480
|
-
|
|
2801
|
+
id: string;
|
|
2802
|
+
/**
|
|
2803
|
+
* Type of the KMS provider.
|
|
2804
|
+
*/
|
|
2805
|
+
type: 'vault';
|
|
2806
|
+
/**
|
|
2807
|
+
* Human-readable description of this provider instance.
|
|
2808
|
+
*/
|
|
2809
|
+
description?: string;
|
|
2810
|
+
/**
|
|
2811
|
+
* URL of the HashiCorp Vault instance. Supports ${ENV_VAR} placeholders.
|
|
2812
|
+
*/
|
|
2813
|
+
vaultUrl: string;
|
|
2814
|
+
/**
|
|
2815
|
+
* Authentication token for HashiCorp Vault. Supports ${ENV_VAR} placeholders.
|
|
2816
|
+
*/
|
|
2817
|
+
vaultToken: string;
|
|
2481
2818
|
};
|
|
2482
|
-
type
|
|
2819
|
+
type AwsKmsConfigDto = {
|
|
2483
2820
|
/**
|
|
2484
|
-
*
|
|
2821
|
+
* Unique identifier for this provider instance. Used when generating keys to specify which provider to use.
|
|
2485
2822
|
*/
|
|
2486
|
-
|
|
2823
|
+
id: string;
|
|
2824
|
+
/**
|
|
2825
|
+
* Type of the KMS provider.
|
|
2826
|
+
*/
|
|
2827
|
+
type: 'aws-kms';
|
|
2828
|
+
/**
|
|
2829
|
+
* Human-readable description of this provider instance.
|
|
2830
|
+
*/
|
|
2831
|
+
description?: string;
|
|
2832
|
+
/**
|
|
2833
|
+
* AWS region for KMS. Supports ${ENV_VAR} placeholders.
|
|
2834
|
+
*/
|
|
2835
|
+
region: string;
|
|
2836
|
+
/**
|
|
2837
|
+
* AWS access key ID. Optional — uses SDK credential chain if not provided. Supports ${ENV_VAR} placeholders.
|
|
2838
|
+
*/
|
|
2839
|
+
accessKeyId?: string;
|
|
2840
|
+
/**
|
|
2841
|
+
* AWS secret access key. Optional — uses SDK credential chain if not provided. Supports ${ENV_VAR} placeholders.
|
|
2842
|
+
*/
|
|
2843
|
+
secretAccessKey?: string;
|
|
2487
2844
|
};
|
|
2488
|
-
type
|
|
2845
|
+
type Pkcs11KmsConfigDto = {
|
|
2489
2846
|
/**
|
|
2490
|
-
*
|
|
2491
|
-
* Required for success responses, absent for error responses.
|
|
2847
|
+
* Unique identifier for this provider instance. Used when generating keys to specify which provider to use.
|
|
2492
2848
|
*/
|
|
2493
|
-
|
|
2849
|
+
id: string;
|
|
2494
2850
|
/**
|
|
2495
|
-
*
|
|
2851
|
+
* Type of the KMS provider.
|
|
2496
2852
|
*/
|
|
2497
|
-
|
|
2498
|
-
error?: string;
|
|
2853
|
+
type: 'pkcs11';
|
|
2499
2854
|
/**
|
|
2500
|
-
* Human-readable description of
|
|
2855
|
+
* Human-readable description of this provider instance.
|
|
2501
2856
|
*/
|
|
2502
|
-
|
|
2857
|
+
description?: string;
|
|
2503
2858
|
/**
|
|
2504
|
-
*
|
|
2859
|
+
* Absolute path to the PKCS#11 module library (.so/.dll/.dylib). Supports ${ENV_VAR} placeholders.
|
|
2505
2860
|
*/
|
|
2506
|
-
|
|
2861
|
+
library: string;
|
|
2507
2862
|
/**
|
|
2508
|
-
*
|
|
2863
|
+
* Slot selection. Either the numeric slot index (as a string for ENV interpolation, or a number) or the token label. Supports ${ENV_VAR} placeholders.
|
|
2509
2864
|
*/
|
|
2510
|
-
|
|
2865
|
+
slot: {
|
|
2866
|
+
[key: string]: unknown;
|
|
2867
|
+
};
|
|
2868
|
+
/**
|
|
2869
|
+
* User PIN used for C_Login. Supports ${ENV_VAR} placeholders.
|
|
2870
|
+
*/
|
|
2871
|
+
pin: string;
|
|
2872
|
+
/**
|
|
2873
|
+
* Open the PKCS#11 session in read-only mode. Defaults to false.
|
|
2874
|
+
*/
|
|
2875
|
+
readOnly?: boolean;
|
|
2511
2876
|
};
|
|
2512
|
-
type
|
|
2877
|
+
type HttpAuthBaseConfigDto = {
|
|
2513
2878
|
/**
|
|
2514
|
-
*
|
|
2879
|
+
* Authentication method for the remote KMS service.
|
|
2515
2880
|
*/
|
|
2516
|
-
|
|
2881
|
+
type: 'none' | 'bearer' | 'oauth2-client-credentials' | 'mtls';
|
|
2882
|
+
};
|
|
2883
|
+
type HttpKmsConfigDto = {
|
|
2517
2884
|
/**
|
|
2518
|
-
*
|
|
2885
|
+
* Unique identifier for this provider instance. Used when generating keys to specify which provider to use.
|
|
2519
2886
|
*/
|
|
2520
|
-
|
|
2887
|
+
id: string;
|
|
2521
2888
|
/**
|
|
2522
|
-
*
|
|
2889
|
+
* Type of the KMS provider.
|
|
2523
2890
|
*/
|
|
2524
|
-
|
|
2891
|
+
type: 'http';
|
|
2525
2892
|
/**
|
|
2526
|
-
*
|
|
2893
|
+
* Human-readable description of this provider instance.
|
|
2527
2894
|
*/
|
|
2528
|
-
|
|
2895
|
+
description?: string;
|
|
2529
2896
|
/**
|
|
2530
|
-
*
|
|
2897
|
+
* Base URL of the remote KMS microservice (no trailing slash). Supports ${ENV_VAR} placeholders.
|
|
2531
2898
|
*/
|
|
2532
|
-
|
|
2899
|
+
baseUrl: string;
|
|
2900
|
+
/**
|
|
2901
|
+
* 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.
|
|
2902
|
+
*/
|
|
2903
|
+
auth?: HttpAuthBaseConfigDto;
|
|
2904
|
+
/**
|
|
2905
|
+
* Path prefix for key endpoints on the remote service. Defaults to /keys.
|
|
2906
|
+
*/
|
|
2907
|
+
keysPath?: string;
|
|
2908
|
+
/**
|
|
2909
|
+
* Path for the health check endpoint on the remote service. Defaults to /health.
|
|
2910
|
+
*/
|
|
2911
|
+
healthPath?: string;
|
|
2912
|
+
/**
|
|
2913
|
+
* Whether the remote service supports key import via POST {keysPath}/{kid}/import. Defaults to false.
|
|
2914
|
+
*/
|
|
2915
|
+
canImport?: boolean;
|
|
2533
2916
|
};
|
|
2534
|
-
type
|
|
2917
|
+
type CscAuthorizeAuthDataDto = {
|
|
2535
2918
|
/**
|
|
2536
|
-
*
|
|
2919
|
+
* Authentication factor identifier expected by the CSC provider (e.g., PIN, OTP).
|
|
2537
2920
|
*/
|
|
2538
|
-
|
|
2921
|
+
id: string;
|
|
2539
2922
|
/**
|
|
2540
|
-
*
|
|
2923
|
+
* Authentication factor value sent to CSC credentials/authorize.
|
|
2541
2924
|
*/
|
|
2542
|
-
|
|
2925
|
+
value: string;
|
|
2926
|
+
};
|
|
2927
|
+
type CscKmsConfigDto = {
|
|
2928
|
+
/**
|
|
2929
|
+
* Unique identifier for this provider instance. Used when generating keys to specify which provider to use.
|
|
2930
|
+
*/
|
|
2931
|
+
id: string;
|
|
2932
|
+
/**
|
|
2933
|
+
* Type of the KMS provider.
|
|
2934
|
+
*/
|
|
2935
|
+
type: 'csc';
|
|
2543
2936
|
/**
|
|
2544
2937
|
* Human-readable description of this provider instance.
|
|
2545
2938
|
*/
|
|
2546
|
-
description?: string;
|
|
2939
|
+
description?: string;
|
|
2940
|
+
/**
|
|
2941
|
+
* Base URL of the CSC service (without trailing slash). Supports ${ENV_VAR} placeholders.
|
|
2942
|
+
*/
|
|
2943
|
+
baseUrl: string;
|
|
2944
|
+
/**
|
|
2945
|
+
* OAuth2 token endpoint URL for client-credentials flow. Supports ${ENV_VAR} placeholders.
|
|
2946
|
+
*/
|
|
2947
|
+
tokenUrl: string;
|
|
2948
|
+
/**
|
|
2949
|
+
* OAuth2 client ID. Supports ${ENV_VAR} placeholders.
|
|
2950
|
+
*/
|
|
2951
|
+
clientId: string;
|
|
2952
|
+
/**
|
|
2953
|
+
* OAuth2 client secret. Supports ${ENV_VAR} placeholders.
|
|
2954
|
+
*/
|
|
2955
|
+
clientSecret: string;
|
|
2956
|
+
/**
|
|
2957
|
+
* OAuth2 scope to request during token acquisition.
|
|
2958
|
+
*/
|
|
2959
|
+
scope?: string;
|
|
2960
|
+
/**
|
|
2961
|
+
* Default CSC credential ID. If omitted, the adapter calls credentials/list and picks the first entry.
|
|
2962
|
+
*/
|
|
2963
|
+
credentialId?: string;
|
|
2964
|
+
/**
|
|
2965
|
+
* Optional CSC user ID used in credentials/list requests.
|
|
2966
|
+
*/
|
|
2967
|
+
userId?: string;
|
|
2968
|
+
/**
|
|
2969
|
+
* CSC API path prefix appended to baseUrl. Defaults to /csc/v2.
|
|
2970
|
+
*/
|
|
2971
|
+
apiPath?: string;
|
|
2972
|
+
/**
|
|
2973
|
+
* Hash algorithm OID for signatures/signHash and credentials/authorize. Defaults to SHA-256 OID.
|
|
2974
|
+
*/
|
|
2975
|
+
hashAlgorithmOid?: string;
|
|
2976
|
+
/**
|
|
2977
|
+
* Signature algorithm OID for signatures/signHash. Defaults to ecdsa-with-SHA256 OID.
|
|
2978
|
+
*/
|
|
2979
|
+
signAlgorithmOid?: string;
|
|
2980
|
+
/**
|
|
2981
|
+
* Static SAD token. If set, the adapter sends it directly in signatures/signHash requests.
|
|
2982
|
+
*/
|
|
2983
|
+
sad?: string;
|
|
2984
|
+
/**
|
|
2985
|
+
* When true and no static SAD is provided, the adapter calls credentials/authorize to obtain SAD before signatures/signHash.
|
|
2986
|
+
*/
|
|
2987
|
+
useAuthorizeEndpoint?: boolean;
|
|
2988
|
+
/**
|
|
2989
|
+
* Optional authData array passed to credentials/authorize (e.g., PIN/OTP factors).
|
|
2990
|
+
*/
|
|
2991
|
+
authorizeAuthData?: Array<CscAuthorizeAuthDataDto>;
|
|
2992
|
+
};
|
|
2993
|
+
type KmsConfigDto = {
|
|
2994
|
+
/**
|
|
2995
|
+
* ID of the default KMS provider. Defaults to "db" if not set.
|
|
2996
|
+
*/
|
|
2997
|
+
defaultProvider?: string;
|
|
2547
2998
|
/**
|
|
2548
|
-
*
|
|
2999
|
+
* List of KMS provider configurations. Each provider must have a unique id and a type.
|
|
2549
3000
|
*/
|
|
2550
|
-
|
|
3001
|
+
providers: Array<DbKmsConfigDto | VaultKmsConfigDto | AwsKmsConfigDto | Pkcs11KmsConfigDto | HttpKmsConfigDto | CscKmsConfigDto>;
|
|
2551
3002
|
};
|
|
2552
|
-
type
|
|
3003
|
+
type KmsTenantConfigResponseDto = {
|
|
2553
3004
|
/**
|
|
2554
|
-
*
|
|
3005
|
+
* Tenant-specific KMS configuration from <CONFIG_FOLDER>/<tenantId>/kms.json. Null when no tenant file exists.
|
|
2555
3006
|
*/
|
|
2556
|
-
|
|
3007
|
+
tenantConfig?: KmsConfigDto;
|
|
2557
3008
|
/**
|
|
2558
|
-
*
|
|
3009
|
+
* Effective configuration used at runtime for the tenant (global + tenant merge).
|
|
2559
3010
|
*/
|
|
2560
|
-
|
|
3011
|
+
effectiveConfig: KmsConfigDto;
|
|
2561
3012
|
};
|
|
2562
3013
|
type CertificateInfoDto = {
|
|
2563
3014
|
/**
|
|
@@ -2830,7 +3281,7 @@ type KeyChainImportDto = {
|
|
|
2830
3281
|
*/
|
|
2831
3282
|
usageType: 'access' | 'attestation' | 'trustList' | 'statusList' | 'encrypt';
|
|
2832
3283
|
/**
|
|
2833
|
-
* Certificate chain
|
|
3284
|
+
* Certificate chain (leaf first). Each entry may be PEM or base64-encoded DER; values are normalized to PEM during import.
|
|
2834
3285
|
*/
|
|
2835
3286
|
crt?: Array<string>;
|
|
2836
3287
|
/**
|
|
@@ -2874,7 +3325,7 @@ type PresentationRequest = {
|
|
|
2874
3325
|
/**
|
|
2875
3326
|
* The type of response expected from the presentation request.
|
|
2876
3327
|
*/
|
|
2877
|
-
response_type: 'uri' | 'dc-api';
|
|
3328
|
+
response_type: 'uri' | 'dc-api' | 'iso-18013-7';
|
|
2878
3329
|
/**
|
|
2879
3330
|
* Identifier of the presentation configuration
|
|
2880
3331
|
*/
|
|
@@ -2903,6 +3354,126 @@ type PresentationRequest = {
|
|
|
2903
3354
|
type FileUploadDto = {
|
|
2904
3355
|
file: Blob | File;
|
|
2905
3356
|
};
|
|
3357
|
+
type IssuanceConfigWritable = {
|
|
3358
|
+
/**
|
|
3359
|
+
* Key ID for signing access tokens. If unset, the default signing key is used.
|
|
3360
|
+
*/
|
|
3361
|
+
signingKeyId?: string;
|
|
3362
|
+
/**
|
|
3363
|
+
* Dedicated managed authorization servers hosted by this issuer. At least one entry is required.
|
|
3364
|
+
*/
|
|
3365
|
+
authorizationServers: Array<ExternalAuthorizationServerConfig | Oid4VpAuthorizationServerConfig | ChainedAuthorizationServerConfig | BuiltInAuthorizationServerConfig>;
|
|
3366
|
+
/**
|
|
3367
|
+
* Optional OpenID Federation configuration used for trust evaluation.
|
|
3368
|
+
* When omitted, trust checks rely on existing LoTE trust-list behavior.
|
|
3369
|
+
*/
|
|
3370
|
+
federation?: FederationConfig;
|
|
3371
|
+
/**
|
|
3372
|
+
* Optional registration certificate configuration for issuer metadata (`issuer_info`).
|
|
3373
|
+
* Supports importing an existing JWT or generating one via registrar.
|
|
3374
|
+
*/
|
|
3375
|
+
registrationCertificate?: IssuerRegistrationCertificateConfig;
|
|
3376
|
+
/**
|
|
3377
|
+
* Whether `credential_response_encryption` should be advertised in the credential issuer metadata.
|
|
3378
|
+
*/
|
|
3379
|
+
credentialResponseEncryption?: boolean;
|
|
3380
|
+
/**
|
|
3381
|
+
* Whether `credential_request_encryption` should be advertised in the credential issuer metadata.
|
|
3382
|
+
*/
|
|
3383
|
+
credentialRequestEncryption?: boolean;
|
|
3384
|
+
/**
|
|
3385
|
+
* Maximum failed tx_code attempts before the pre-authorized code is invalidated. Defaults to 5.
|
|
3386
|
+
*/
|
|
3387
|
+
txCodeMaxAttempts?: number;
|
|
3388
|
+
/**
|
|
3389
|
+
* The tenant that owns this object.
|
|
3390
|
+
*/
|
|
3391
|
+
tenant: TenantEntity;
|
|
3392
|
+
/**
|
|
3393
|
+
* Value to determine the amount of credentials that are issued in a batch.
|
|
3394
|
+
* Default is 1.
|
|
3395
|
+
*/
|
|
3396
|
+
batchSize?: number;
|
|
3397
|
+
/**
|
|
3398
|
+
* Indicates whether DPoP is required for the issuance process. Default value is true.
|
|
3399
|
+
*/
|
|
3400
|
+
dPopRequired?: boolean;
|
|
3401
|
+
/**
|
|
3402
|
+
* Indicates whether wallet attestation is required for the token endpoint.
|
|
3403
|
+
* When enabled, wallets must provide OAuth-Client-Attestation headers.
|
|
3404
|
+
* Default value is false.
|
|
3405
|
+
*/
|
|
3406
|
+
walletAttestationRequired?: boolean;
|
|
3407
|
+
/**
|
|
3408
|
+
* URLs of trust lists containing trusted wallet providers.
|
|
3409
|
+
* The wallet attestation's X.509 certificate will be validated against these trust lists.
|
|
3410
|
+
* If empty and walletAttestationRequired is true, all wallet providers are rejected.
|
|
3411
|
+
*/
|
|
3412
|
+
walletProviderTrustLists?: Array<string>;
|
|
3413
|
+
display: Array<DisplayInfo>;
|
|
3414
|
+
/**
|
|
3415
|
+
* The timestamp when the VP request was created.
|
|
3416
|
+
*/
|
|
3417
|
+
createdAt: string;
|
|
3418
|
+
/**
|
|
3419
|
+
* The timestamp when the VP request was last updated.
|
|
3420
|
+
*/
|
|
3421
|
+
updatedAt: string;
|
|
3422
|
+
};
|
|
3423
|
+
type UpdateIssuanceDtoWritable = {
|
|
3424
|
+
/**
|
|
3425
|
+
* Key ID for signing access tokens. If unset, the default signing key is used.
|
|
3426
|
+
*/
|
|
3427
|
+
signingKeyId?: string;
|
|
3428
|
+
/**
|
|
3429
|
+
* Dedicated managed authorization servers hosted by this issuer. At least one entry is required.
|
|
3430
|
+
*/
|
|
3431
|
+
authorizationServers?: Array<ExternalAuthorizationServerConfig | Oid4VpAuthorizationServerConfig | ChainedAuthorizationServerConfig | BuiltInAuthorizationServerConfig>;
|
|
3432
|
+
/**
|
|
3433
|
+
* Optional OpenID Federation configuration used for trust evaluation.
|
|
3434
|
+
* When omitted, trust checks rely on existing LoTE trust-list behavior.
|
|
3435
|
+
*/
|
|
3436
|
+
federation?: FederationConfig;
|
|
3437
|
+
/**
|
|
3438
|
+
* Optional registration certificate configuration for issuer metadata (`issuer_info`).
|
|
3439
|
+
* Supports importing an existing JWT or generating one via registrar.
|
|
3440
|
+
*/
|
|
3441
|
+
registrationCertificate?: IssuerRegistrationCertificateConfig;
|
|
3442
|
+
/**
|
|
3443
|
+
* Whether `credential_response_encryption` should be advertised in the credential issuer metadata.
|
|
3444
|
+
*/
|
|
3445
|
+
credentialResponseEncryption?: boolean;
|
|
3446
|
+
/**
|
|
3447
|
+
* Whether `credential_request_encryption` should be advertised in the credential issuer metadata.
|
|
3448
|
+
*/
|
|
3449
|
+
credentialRequestEncryption?: boolean;
|
|
3450
|
+
/**
|
|
3451
|
+
* Maximum failed tx_code attempts before the pre-authorized code is invalidated. Defaults to 5.
|
|
3452
|
+
*/
|
|
3453
|
+
txCodeMaxAttempts?: number;
|
|
3454
|
+
/**
|
|
3455
|
+
* Value to determine the amount of credentials that are issued in a batch.
|
|
3456
|
+
* Default is 1.
|
|
3457
|
+
*/
|
|
3458
|
+
batchSize?: number;
|
|
3459
|
+
/**
|
|
3460
|
+
* Indicates whether DPoP is required for the issuance process. Default value is true.
|
|
3461
|
+
*/
|
|
3462
|
+
dPopRequired?: boolean;
|
|
3463
|
+
/**
|
|
3464
|
+
* Indicates whether wallet attestation is required for the token endpoint.
|
|
3465
|
+
* When enabled, wallets must provide OAuth-Client-Attestation headers.
|
|
3466
|
+
* Default value is false.
|
|
3467
|
+
*/
|
|
3468
|
+
walletAttestationRequired?: boolean;
|
|
3469
|
+
/**
|
|
3470
|
+
* URLs of trust lists containing trusted wallet providers.
|
|
3471
|
+
* The wallet attestation's X.509 certificate will be validated against these trust lists.
|
|
3472
|
+
* If empty and walletAttestationRequired is true, all wallet providers are rejected.
|
|
3473
|
+
*/
|
|
3474
|
+
walletProviderTrustLists?: Array<string>;
|
|
3475
|
+
display?: Array<DisplayInfo>;
|
|
3476
|
+
};
|
|
2906
3477
|
type PresentationConfigWritable = {
|
|
2907
3478
|
/**
|
|
2908
3479
|
* Unique identifier for the VP request.
|
|
@@ -2929,8 +3500,16 @@ type PresentationConfigWritable = {
|
|
|
2929
3500
|
* The registration certificate request containing the necessary details.
|
|
2930
3501
|
*/
|
|
2931
3502
|
registration_cert?: RegistrationCertificateRequest;
|
|
3503
|
+
/**
|
|
3504
|
+
* Reference to the webhook endpoint used for notifications.
|
|
3505
|
+
* Optional: if set, notifications will be sent to this endpoint.
|
|
3506
|
+
*/
|
|
3507
|
+
webhookEndpointId?: string;
|
|
3508
|
+
webhookEndpoint?: WebhookEndpointEntity;
|
|
2932
3509
|
/**
|
|
2933
3510
|
* Optional webhook URL to receive the response.
|
|
3511
|
+
*
|
|
3512
|
+
* @deprecated
|
|
2934
3513
|
*/
|
|
2935
3514
|
webhook?: WebhookConfig;
|
|
2936
3515
|
/**
|
|
@@ -3488,7 +4067,7 @@ type IssuanceConfigControllerGetIssuanceConfigurationsResponses = {
|
|
|
3488
4067
|
};
|
|
3489
4068
|
type IssuanceConfigControllerGetIssuanceConfigurationsResponse = IssuanceConfigControllerGetIssuanceConfigurationsResponses[keyof IssuanceConfigControllerGetIssuanceConfigurationsResponses];
|
|
3490
4069
|
type IssuanceConfigControllerStoreIssuanceConfigurationData = {
|
|
3491
|
-
body:
|
|
4070
|
+
body: UpdateIssuanceDtoWritable;
|
|
3492
4071
|
path?: never;
|
|
3493
4072
|
query?: never;
|
|
3494
4073
|
url: '/api/issuer/config';
|
|
@@ -3499,6 +4078,24 @@ type IssuanceConfigControllerStoreIssuanceConfigurationResponses = {
|
|
|
3499
4078
|
};
|
|
3500
4079
|
};
|
|
3501
4080
|
type IssuanceConfigControllerStoreIssuanceConfigurationResponse = IssuanceConfigControllerStoreIssuanceConfigurationResponses[keyof IssuanceConfigControllerStoreIssuanceConfigurationResponses];
|
|
4081
|
+
type IssuanceConfigControllerReissueRegistrationCertificateData = {
|
|
4082
|
+
body?: never;
|
|
4083
|
+
path?: never;
|
|
4084
|
+
query?: never;
|
|
4085
|
+
url: '/api/issuer/config/registration-cert/reissue';
|
|
4086
|
+
};
|
|
4087
|
+
type IssuanceConfigControllerReissueRegistrationCertificateErrors = {
|
|
4088
|
+
/**
|
|
4089
|
+
* Registration certificate is not enabled/generate mode or registrar is unavailable
|
|
4090
|
+
*/
|
|
4091
|
+
400: unknown;
|
|
4092
|
+
};
|
|
4093
|
+
type IssuanceConfigControllerReissueRegistrationCertificateResponses = {
|
|
4094
|
+
/**
|
|
4095
|
+
* Updated issuance configuration
|
|
4096
|
+
*/
|
|
4097
|
+
201: unknown;
|
|
4098
|
+
};
|
|
3502
4099
|
type CredentialConfigControllerGetConfigsData = {
|
|
3503
4100
|
body?: never;
|
|
3504
4101
|
path?: never;
|
|
@@ -3561,36 +4158,60 @@ type CredentialConfigControllerUpdateCredentialConfigurationResponses = {
|
|
|
3561
4158
|
};
|
|
3562
4159
|
};
|
|
3563
4160
|
type CredentialConfigControllerUpdateCredentialConfigurationResponse = CredentialConfigControllerUpdateCredentialConfigurationResponses[keyof CredentialConfigControllerUpdateCredentialConfigurationResponses];
|
|
3564
|
-
type
|
|
4161
|
+
type SchemaMetadataControllerPublishSchemaMetadataData = {
|
|
3565
4162
|
body: SignSchemaMetaConfigDto;
|
|
3566
4163
|
path?: never;
|
|
3567
4164
|
query?: never;
|
|
3568
|
-
url: '/api/schema-metadata/
|
|
4165
|
+
url: '/api/schema-metadata/publish';
|
|
3569
4166
|
};
|
|
3570
|
-
type
|
|
4167
|
+
type SchemaMetadataControllerPublishSchemaMetadataErrors = {
|
|
3571
4168
|
/**
|
|
3572
|
-
* Invalid schema metadata or
|
|
4169
|
+
* Invalid schema metadata input or file mapping
|
|
3573
4170
|
*/
|
|
3574
4171
|
400: unknown;
|
|
3575
4172
|
};
|
|
4173
|
+
type SchemaMetadataControllerPublishSchemaMetadataResponses = {
|
|
4174
|
+
/**
|
|
4175
|
+
* Registrar metadata entry for the freshly submitted schema metadata.
|
|
4176
|
+
*/
|
|
4177
|
+
201: unknown;
|
|
4178
|
+
};
|
|
4179
|
+
type SchemaMetadataControllerSignSchemaMetaConfigData = {
|
|
4180
|
+
body: SignSchemaMetaConfigDto;
|
|
4181
|
+
path?: never;
|
|
4182
|
+
query?: never;
|
|
4183
|
+
url: '/api/schema-metadata/sign';
|
|
4184
|
+
};
|
|
3576
4185
|
type SchemaMetadataControllerSignSchemaMetaConfigResponses = {
|
|
3577
4186
|
/**
|
|
3578
4187
|
* Registrar metadata entry for the freshly submitted schema metadata.
|
|
3579
4188
|
*/
|
|
3580
4189
|
201: unknown;
|
|
3581
4190
|
};
|
|
3582
|
-
type
|
|
4191
|
+
type SchemaMetadataControllerPublishSchemaMetadataVersionData = {
|
|
3583
4192
|
body: SignVersionSchemaMetaConfigDto;
|
|
3584
4193
|
path?: never;
|
|
3585
4194
|
query?: never;
|
|
3586
|
-
url: '/api/schema-metadata/
|
|
4195
|
+
url: '/api/schema-metadata/publish-version';
|
|
3587
4196
|
};
|
|
3588
|
-
type
|
|
4197
|
+
type SchemaMetadataControllerPublishSchemaMetadataVersionErrors = {
|
|
3589
4198
|
/**
|
|
3590
4199
|
* config.id is required; or invalid schema metadata
|
|
3591
4200
|
*/
|
|
3592
4201
|
400: unknown;
|
|
3593
4202
|
};
|
|
4203
|
+
type SchemaMetadataControllerPublishSchemaMetadataVersionResponses = {
|
|
4204
|
+
/**
|
|
4205
|
+
* Registrar metadata entry for the newly submitted version.
|
|
4206
|
+
*/
|
|
4207
|
+
201: unknown;
|
|
4208
|
+
};
|
|
4209
|
+
type SchemaMetadataControllerSignVersionSchemaMetaConfigData = {
|
|
4210
|
+
body: SignVersionSchemaMetaConfigDto;
|
|
4211
|
+
path?: never;
|
|
4212
|
+
query?: never;
|
|
4213
|
+
url: '/api/schema-metadata/sign-version';
|
|
4214
|
+
};
|
|
3594
4215
|
type SchemaMetadataControllerSignVersionSchemaMetaConfigResponses = {
|
|
3595
4216
|
/**
|
|
3596
4217
|
* Registrar metadata entry for the newly submitted version.
|
|
@@ -3710,24 +4331,6 @@ type SchemaMetadataControllerGetJwtResponses = {
|
|
|
3710
4331
|
200: string;
|
|
3711
4332
|
};
|
|
3712
4333
|
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
4334
|
type SchemaMetadataControllerGetSchemaData = {
|
|
3732
4335
|
body?: never;
|
|
3733
4336
|
path: {
|
|
@@ -4128,6 +4731,24 @@ type PresentationManagementControllerResolveSchemaMetadataResponses = {
|
|
|
4128
4731
|
*/
|
|
4129
4732
|
200: unknown;
|
|
4130
4733
|
};
|
|
4734
|
+
type PresentationManagementControllerResolveSchemaMetadataJwtData = {
|
|
4735
|
+
body: ResolveSchemaMetadataJwtDto;
|
|
4736
|
+
path?: never;
|
|
4737
|
+
query?: never;
|
|
4738
|
+
url: '/api/verifier/config/schema-metadata/resolve-jwt';
|
|
4739
|
+
};
|
|
4740
|
+
type PresentationManagementControllerResolveSchemaMetadataJwtErrors = {
|
|
4741
|
+
/**
|
|
4742
|
+
* Invalid JWT or invalid schema metadata
|
|
4743
|
+
*/
|
|
4744
|
+
400: unknown;
|
|
4745
|
+
};
|
|
4746
|
+
type PresentationManagementControllerResolveSchemaMetadataJwtResponses = {
|
|
4747
|
+
/**
|
|
4748
|
+
* Resolved schema metadata import payload
|
|
4749
|
+
*/
|
|
4750
|
+
200: unknown;
|
|
4751
|
+
};
|
|
4131
4752
|
type PresentationManagementControllerListSchemaMetadataCatalogData = {
|
|
4132
4753
|
body?: never;
|
|
4133
4754
|
path?: never;
|
|
@@ -4364,6 +4985,108 @@ type DeferredControllerFailDeferredResponses = {
|
|
|
4364
4985
|
200: DeferredOperationResponse;
|
|
4365
4986
|
};
|
|
4366
4987
|
type DeferredControllerFailDeferredResponse = DeferredControllerFailDeferredResponses[keyof DeferredControllerFailDeferredResponses];
|
|
4988
|
+
type ChainedAsVpControllerParData = {
|
|
4989
|
+
body?: never;
|
|
4990
|
+
headers?: {
|
|
4991
|
+
/**
|
|
4992
|
+
* DPoP proof JWT
|
|
4993
|
+
*/
|
|
4994
|
+
DPoP?: string;
|
|
4995
|
+
/**
|
|
4996
|
+
* Wallet attestation JWT
|
|
4997
|
+
*/
|
|
4998
|
+
'OAuth-Client-Attestation'?: string;
|
|
4999
|
+
/**
|
|
5000
|
+
* Wallet attestation proof-of-possession JWT
|
|
5001
|
+
*/
|
|
5002
|
+
'OAuth-Client-Attestation-PoP'?: string;
|
|
5003
|
+
};
|
|
5004
|
+
path: {
|
|
5005
|
+
/**
|
|
5006
|
+
* Tenant identifier
|
|
5007
|
+
*/
|
|
5008
|
+
tenantId: string;
|
|
5009
|
+
};
|
|
5010
|
+
query?: never;
|
|
5011
|
+
url: '/api/issuers/{tenantId}/chained-as-vp/par';
|
|
5012
|
+
};
|
|
5013
|
+
type ChainedAsVpControllerParErrors = {
|
|
5014
|
+
400: ChainedAsErrorResponseDto;
|
|
5015
|
+
};
|
|
5016
|
+
type ChainedAsVpControllerParError = ChainedAsVpControllerParErrors[keyof ChainedAsVpControllerParErrors];
|
|
5017
|
+
type ChainedAsVpControllerParResponses = {
|
|
5018
|
+
201: ChainedAsParResponseDto;
|
|
5019
|
+
};
|
|
5020
|
+
type ChainedAsVpControllerParResponse = ChainedAsVpControllerParResponses[keyof ChainedAsVpControllerParResponses];
|
|
5021
|
+
type ChainedAsVpControllerAuthorizeData = {
|
|
5022
|
+
body?: never;
|
|
5023
|
+
path: {
|
|
5024
|
+
/**
|
|
5025
|
+
* Tenant identifier
|
|
5026
|
+
*/
|
|
5027
|
+
tenantId: string;
|
|
5028
|
+
};
|
|
5029
|
+
query: {
|
|
5030
|
+
/**
|
|
5031
|
+
* Client identifier
|
|
5032
|
+
*/
|
|
5033
|
+
client_id: string;
|
|
5034
|
+
/**
|
|
5035
|
+
* Request URI from PAR response
|
|
5036
|
+
*/
|
|
5037
|
+
request_uri: string;
|
|
5038
|
+
};
|
|
5039
|
+
url: '/api/issuers/{tenantId}/chained-as-vp/authorize';
|
|
5040
|
+
};
|
|
5041
|
+
type ChainedAsVpControllerAuthorizeErrors = {
|
|
5042
|
+
400: ChainedAsErrorResponseDto;
|
|
5043
|
+
};
|
|
5044
|
+
type ChainedAsVpControllerAuthorizeError = ChainedAsVpControllerAuthorizeErrors[keyof ChainedAsVpControllerAuthorizeErrors];
|
|
5045
|
+
type ChainedAsVpControllerVpCallbackData = {
|
|
5046
|
+
body?: never;
|
|
5047
|
+
path: {
|
|
5048
|
+
/**
|
|
5049
|
+
* Tenant identifier
|
|
5050
|
+
*/
|
|
5051
|
+
tenantId: string;
|
|
5052
|
+
};
|
|
5053
|
+
query: {
|
|
5054
|
+
cas: string;
|
|
5055
|
+
response_code?: string;
|
|
5056
|
+
error?: string;
|
|
5057
|
+
error_description?: string;
|
|
5058
|
+
};
|
|
5059
|
+
url: '/api/issuers/{tenantId}/chained-as-vp/vp-callback';
|
|
5060
|
+
};
|
|
5061
|
+
type ChainedAsVpControllerVpCallbackErrors = {
|
|
5062
|
+
400: ChainedAsErrorResponseDto;
|
|
5063
|
+
};
|
|
5064
|
+
type ChainedAsVpControllerVpCallbackError = ChainedAsVpControllerVpCallbackErrors[keyof ChainedAsVpControllerVpCallbackErrors];
|
|
5065
|
+
type ChainedAsVpControllerTokenData = {
|
|
5066
|
+
body: ChainedAsTokenRequestDto;
|
|
5067
|
+
headers?: {
|
|
5068
|
+
/**
|
|
5069
|
+
* DPoP proof JWT
|
|
5070
|
+
*/
|
|
5071
|
+
DPoP?: string;
|
|
5072
|
+
};
|
|
5073
|
+
path: {
|
|
5074
|
+
/**
|
|
5075
|
+
* Tenant identifier
|
|
5076
|
+
*/
|
|
5077
|
+
tenantId: string;
|
|
5078
|
+
};
|
|
5079
|
+
query?: never;
|
|
5080
|
+
url: '/api/issuers/{tenantId}/chained-as-vp/token';
|
|
5081
|
+
};
|
|
5082
|
+
type ChainedAsVpControllerTokenErrors = {
|
|
5083
|
+
400: ChainedAsErrorResponseDto;
|
|
5084
|
+
};
|
|
5085
|
+
type ChainedAsVpControllerTokenError = ChainedAsVpControllerTokenErrors[keyof ChainedAsVpControllerTokenErrors];
|
|
5086
|
+
type ChainedAsVpControllerTokenResponses = {
|
|
5087
|
+
200: ChainedAsTokenResponseDto;
|
|
5088
|
+
};
|
|
5089
|
+
type ChainedAsVpControllerTokenResponse = ChainedAsVpControllerTokenResponses[keyof ChainedAsVpControllerTokenResponses];
|
|
4367
5090
|
type KeyChainControllerGetProvidersData = {
|
|
4368
5091
|
body?: never;
|
|
4369
5092
|
path?: never;
|
|
@@ -4389,6 +5112,44 @@ type KeyChainControllerGetProvidersHealthResponses = {
|
|
|
4389
5112
|
*/
|
|
4390
5113
|
200: unknown;
|
|
4391
5114
|
};
|
|
5115
|
+
type KeyChainControllerDeleteTenantKmsConfigData = {
|
|
5116
|
+
body?: never;
|
|
5117
|
+
path?: never;
|
|
5118
|
+
query?: never;
|
|
5119
|
+
url: '/api/key-chain/providers/config';
|
|
5120
|
+
};
|
|
5121
|
+
type KeyChainControllerDeleteTenantKmsConfigResponses = {
|
|
5122
|
+
/**
|
|
5123
|
+
* Tenant-specific KMS config removed.
|
|
5124
|
+
*/
|
|
5125
|
+
200: unknown;
|
|
5126
|
+
};
|
|
5127
|
+
type KeyChainControllerGetTenantKmsConfigData = {
|
|
5128
|
+
body?: never;
|
|
5129
|
+
path?: never;
|
|
5130
|
+
query?: never;
|
|
5131
|
+
url: '/api/key-chain/providers/config';
|
|
5132
|
+
};
|
|
5133
|
+
type KeyChainControllerGetTenantKmsConfigResponses = {
|
|
5134
|
+
/**
|
|
5135
|
+
* Tenant and effective KMS configuration.
|
|
5136
|
+
*/
|
|
5137
|
+
200: KmsTenantConfigResponseDto;
|
|
5138
|
+
};
|
|
5139
|
+
type KeyChainControllerGetTenantKmsConfigResponse = KeyChainControllerGetTenantKmsConfigResponses[keyof KeyChainControllerGetTenantKmsConfigResponses];
|
|
5140
|
+
type KeyChainControllerUpdateTenantKmsConfigData = {
|
|
5141
|
+
body: KmsConfigDto;
|
|
5142
|
+
path?: never;
|
|
5143
|
+
query?: never;
|
|
5144
|
+
url: '/api/key-chain/providers/config';
|
|
5145
|
+
};
|
|
5146
|
+
type KeyChainControllerUpdateTenantKmsConfigResponses = {
|
|
5147
|
+
/**
|
|
5148
|
+
* Updated tenant KMS config.
|
|
5149
|
+
*/
|
|
5150
|
+
200: KmsTenantConfigResponseDto;
|
|
5151
|
+
};
|
|
5152
|
+
type KeyChainControllerUpdateTenantKmsConfigResponse = KeyChainControllerUpdateTenantKmsConfigResponses[keyof KeyChainControllerUpdateTenantKmsConfigResponses];
|
|
4392
5153
|
type KeyChainControllerGetAllData = {
|
|
4393
5154
|
body?: never;
|
|
4394
5155
|
path?: never;
|
|
@@ -4559,4 +5320,4 @@ type StorageControllerUploadResponses = {
|
|
|
4559
5320
|
};
|
|
4560
5321
|
type StorageControllerUploadResponse = StorageControllerUploadResponses[keyof StorageControllerUploadResponses];
|
|
4561
5322
|
|
|
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 };
|
|
5323
|
+
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, IssuanceConfigControllerStoreIssuanceConfigurationData 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, IssuanceConfigControllerReissueRegistrationCertificateData as bY, IssuanceConfigControllerReissueRegistrationCertificateErrors as bZ, IssuanceConfigControllerReissueRegistrationCertificateResponses 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, ObjectWritable as c$, IssuanceConfigControllerStoreIssuanceConfigurationResponse as c0, IssuanceConfigControllerStoreIssuanceConfigurationResponses as c1, IssuanceConfigWritable as c2, IssuerMetadataCredentialConfig as c3, IssuerOfferEntryDto as c4, IssuerRegistrationCertificateCache as c5, IssuerRegistrationCertificateConfig as c6, JwksResponseDto as c7, KeyAttestationsRequired as c8, KeyChainControllerCreateData as c9, KeyChainControllerImportResponses as cA, KeyChainControllerRotateData as cB, KeyChainControllerRotateErrors as cC, KeyChainControllerRotateResponses as cD, KeyChainControllerUpdateData as cE, KeyChainControllerUpdateErrors as cF, KeyChainControllerUpdateResponses as cG, KeyChainControllerUpdateTenantKmsConfigData as cH, KeyChainControllerUpdateTenantKmsConfigResponse as cI, KeyChainControllerUpdateTenantKmsConfigResponses as cJ, KeyChainCreateDto as cK, KeyChainEntity as cL, KeyChainExportDto as cM, KeyChainImportDto as cN, KeyChainResponseDto as cO, KeyChainUpdateDto as cP, KmsConfigDto as cQ, KmsProviderCapabilitiesDto as cR, KmsProviderInfoDto as cS, KmsProvidersResponseDto as cT, KmsTenantConfigResponseDto as cU, ManagedAuthorizationServerConfig as cV, ManagedUserDto as cW, MetadataSchemaDto as cX, NoneTrustPolicy as cY, NotificationRequestDto as cZ, Object$1 as c_, KeyChainControllerCreateResponses as ca, KeyChainControllerDeleteData as cb, KeyChainControllerDeleteErrors as cc, KeyChainControllerDeleteResponses as cd, KeyChainControllerDeleteTenantKmsConfigData as ce, KeyChainControllerDeleteTenantKmsConfigResponses as cf, KeyChainControllerExportData as cg, KeyChainControllerExportErrors as ch, KeyChainControllerExportResponse as ci, KeyChainControllerExportResponses as cj, KeyChainControllerGetAllData as ck, KeyChainControllerGetAllResponse as cl, KeyChainControllerGetAllResponses as cm, KeyChainControllerGetByIdData as cn, KeyChainControllerGetByIdErrors as co, KeyChainControllerGetByIdResponse as cp, KeyChainControllerGetByIdResponses as cq, KeyChainControllerGetProvidersData as cr, KeyChainControllerGetProvidersHealthData as cs, KeyChainControllerGetProvidersHealthResponses as ct, KeyChainControllerGetProvidersResponse as cu, KeyChainControllerGetProvidersResponses as cv, KeyChainControllerGetTenantKmsConfigData as cw, KeyChainControllerGetTenantKmsConfigResponse as cx, KeyChainControllerGetTenantKmsConfigResponses as cy, KeyChainControllerImportData as cz, AppControllerGetFrontendConfigResponse as d, RegistrarControllerUpdateConfigResponses as d$, OfferRequestDto as d0, OfferResponse as d1, Oid4VpAuthorizationServerConfig as d2, PaginatedSessionResponseDto as d3, ParResponseDto as d4, Pkcs11KmsConfigDto as d5, PolicyCredential as d6, PresentationAttachment as d7, PresentationConfig as d8, PresentationConfigCreateDto as d9, PresentationManagementControllerStorePresentationConfigData as dA, PresentationManagementControllerStorePresentationConfigResponse as dB, PresentationManagementControllerStorePresentationConfigResponses as dC, PresentationManagementControllerUpdateConfigurationData as dD, PresentationManagementControllerUpdateConfigurationResponse as dE, PresentationManagementControllerUpdateConfigurationResponses as dF, PresentationRequest as dG, PublicKeyInfoDto as dH, RegistrarConfigResponseDto as dI, RegistrarControllerCreateAccessCertificateData as dJ, RegistrarControllerCreateAccessCertificateErrors as dK, RegistrarControllerCreateAccessCertificateResponse as dL, RegistrarControllerCreateAccessCertificateResponses as dM, RegistrarControllerCreateConfigData as dN, RegistrarControllerCreateConfigErrors as dO, RegistrarControllerCreateConfigResponse as dP, RegistrarControllerCreateConfigResponses as dQ, RegistrarControllerDeleteConfigData as dR, RegistrarControllerDeleteConfigResponse as dS, RegistrarControllerDeleteConfigResponses as dT, RegistrarControllerGetConfigData as dU, RegistrarControllerGetConfigErrors as dV, RegistrarControllerGetConfigResponse as dW, RegistrarControllerGetConfigResponses as dX, RegistrarControllerUpdateConfigData as dY, RegistrarControllerUpdateConfigErrors as dZ, RegistrarControllerUpdateConfigResponse as d_, PresentationConfigUpdateDto as da, PresentationConfigWritable as db, PresentationDuringIssuanceConfig as dc, PresentationManagementControllerConfigurationData as dd, PresentationManagementControllerConfigurationResponse as de, PresentationManagementControllerConfigurationResponses as df, PresentationManagementControllerDeleteConfigurationData as dg, PresentationManagementControllerDeleteConfigurationResponses as dh, PresentationManagementControllerGetConfigurationData as di, PresentationManagementControllerGetConfigurationResponse as dj, PresentationManagementControllerGetConfigurationResponses as dk, PresentationManagementControllerListSchemaMetadataCatalogData as dl, PresentationManagementControllerListSchemaMetadataCatalogResponses as dm, PresentationManagementControllerReissueRegistrationCertificateData as dn, PresentationManagementControllerReissueRegistrationCertificateErrors as dp, PresentationManagementControllerReissueRegistrationCertificateResponses as dq, PresentationManagementControllerResolveIssuerMetadataData as dr, PresentationManagementControllerResolveIssuerMetadataErrors as ds, PresentationManagementControllerResolveIssuerMetadataResponses as dt, PresentationManagementControllerResolveSchemaMetadataData as du, PresentationManagementControllerResolveSchemaMetadataErrors as dv, PresentationManagementControllerResolveSchemaMetadataJwtData as dw, PresentationManagementControllerResolveSchemaMetadataJwtErrors as dx, PresentationManagementControllerResolveSchemaMetadataJwtResponses as dy, PresentationManagementControllerResolveSchemaMetadataResponses as dz, AppControllerGetFrontendConfigResponses as e, SessionConfigControllerResetConfigResponses as e$, RegistrationCertificateBody as e0, RegistrationCertificateDefaults as e1, RegistrationCertificatePurpose as e2, RegistrationCertificateRequest as e3, ResolveIssuerMetadataDto as e4, ResolveSchemaMetadataDto as e5, ResolveSchemaMetadataJwtDto as e6, RoleDto as e7, RootOfTrustPolicy as e8, RotationPolicyCreateDto as e9, SchemaMetadataControllerGetVersionsResponse as eA, SchemaMetadataControllerGetVersionsResponses as eB, SchemaMetadataControllerGetVocabulariesData as eC, SchemaMetadataControllerGetVocabulariesResponse as eD, SchemaMetadataControllerGetVocabulariesResponses as eE, SchemaMetadataControllerPublishSchemaMetadataData as eF, SchemaMetadataControllerPublishSchemaMetadataErrors as eG, SchemaMetadataControllerPublishSchemaMetadataResponses as eH, SchemaMetadataControllerPublishSchemaMetadataVersionData as eI, SchemaMetadataControllerPublishSchemaMetadataVersionErrors as eJ, SchemaMetadataControllerPublishSchemaMetadataVersionResponses as eK, SchemaMetadataControllerRemoveData as eL, SchemaMetadataControllerRemoveResponses as eM, SchemaMetadataControllerSignSchemaMetaConfigData as eN, SchemaMetadataControllerSignSchemaMetaConfigResponses as eO, SchemaMetadataControllerSignVersionSchemaMetaConfigData as eP, SchemaMetadataControllerSignVersionSchemaMetaConfigResponses as eQ, SchemaMetadataControllerUpdateData as eR, SchemaMetadataControllerUpdateResponse as eS, SchemaMetadataControllerUpdateResponses as eT, SchemaMetadataResponseDto as eU, SchemaMetadataVocabulariesDto as eV, SchemaUriEntry as eW, SessionConfigControllerGetConfigData as eX, SessionConfigControllerGetConfigResponse as eY, SessionConfigControllerGetConfigResponses as eZ, SessionConfigControllerResetConfigData as e_, RotationPolicyImportDto as ea, RotationPolicyResponseDto as eb, RotationPolicyUpdateDto as ec, SchemaMetaConfig as ed, SchemaMetadataControllerDeprecateVersionData as ee, SchemaMetadataControllerDeprecateVersionResponse as ef, SchemaMetadataControllerDeprecateVersionResponses as eg, SchemaMetadataControllerFindAllData as eh, SchemaMetadataControllerFindAllResponse as ei, SchemaMetadataControllerFindAllResponses as ej, SchemaMetadataControllerFindOneData as ek, SchemaMetadataControllerFindOneResponse as el, SchemaMetadataControllerFindOneResponses as em, SchemaMetadataControllerGetJwtData as en, SchemaMetadataControllerGetJwtResponse as eo, SchemaMetadataControllerGetJwtResponses as ep, SchemaMetadataControllerGetLatestData as eq, SchemaMetadataControllerGetLatestResponse as er, SchemaMetadataControllerGetLatestResponses as es, SchemaMetadataControllerGetMineData as et, SchemaMetadataControllerGetMineResponse as eu, SchemaMetadataControllerGetMineResponses as ev, SchemaMetadataControllerGetSchemaData as ew, SchemaMetadataControllerGetSchemaResponse as ex, SchemaMetadataControllerGetSchemaResponses as ey, SchemaMetadataControllerGetVersionsData as ez, AppControllerGetVersionData as f, TenantControllerInitTenantResponse as f$, SessionConfigControllerUpdateConfigData as f0, SessionConfigControllerUpdateConfigResponse as f1, SessionConfigControllerUpdateConfigResponses as f2, SessionControllerDeleteSessionData as f3, SessionControllerDeleteSessionResponses as f4, SessionControllerGetAllSessionsData as f5, SessionControllerGetAllSessionsResponse as f6, SessionControllerGetAllSessionsResponses as f7, SessionControllerGetSessionData as f8, SessionControllerGetSessionLogsData as f9, StatusListManagementControllerCreateListResponses as fA, StatusListManagementControllerDeleteListData as fB, StatusListManagementControllerDeleteListResponse as fC, StatusListManagementControllerDeleteListResponses as fD, StatusListManagementControllerGetListData as fE, StatusListManagementControllerGetListResponse as fF, StatusListManagementControllerGetListResponses as fG, StatusListManagementControllerGetListsData as fH, StatusListManagementControllerGetListsResponse as fI, StatusListManagementControllerGetListsResponses as fJ, StatusListManagementControllerUpdateListData as fK, StatusListManagementControllerUpdateListResponse as fL, StatusListManagementControllerUpdateListResponses as fM, StatusListResponseDto as fN, StatusUpdateDto as fO, StorageControllerUploadData as fP, StorageControllerUploadResponse as fQ, StorageControllerUploadResponses as fR, TenantControllerDeleteTenantData as fS, TenantControllerDeleteTenantResponses as fT, TenantControllerGetTenantData as fU, TenantControllerGetTenantResponse as fV, TenantControllerGetTenantResponses as fW, TenantControllerGetTenantsData as fX, TenantControllerGetTenantsResponse as fY, TenantControllerGetTenantsResponses as fZ, TenantControllerInitTenantData as f_, SessionControllerGetSessionLogsResponse as fa, SessionControllerGetSessionLogsResponses as fb, SessionControllerGetSessionResponse as fc, SessionControllerGetSessionResponses as fd, SessionControllerRevokeAllData as fe, SessionControllerRevokeAllResponses as ff, SessionEventsControllerSubscribeToSessionEventsData as fg, SessionEventsControllerSubscribeToSessionEventsResponses as fh, SessionLogEntryResponseDto as fi, SessionStorageConfig as fj, SignSchemaMetaConfigDto as fk, SignVersionSchemaMetaConfigDto as fl, StatusListAggregationDto as fm, StatusListConfig as fn, StatusListConfigControllerGetConfigData as fo, StatusListConfigControllerGetConfigResponse as fp, StatusListConfigControllerGetConfigResponses as fq, StatusListConfigControllerResetConfigData as fr, StatusListConfigControllerResetConfigResponse as fs, StatusListConfigControllerResetConfigResponses as ft, StatusListConfigControllerUpdateConfigData as fu, StatusListConfigControllerUpdateConfigResponse as fv, StatusListConfigControllerUpdateConfigResponses as fw, StatusListImportDto as fx, StatusListManagementControllerCreateListData as fy, StatusListManagementControllerCreateListResponse as fz, AppControllerGetVersionResponses as g, UserControllerUpdateUserResponse as g$, TenantControllerInitTenantResponses as g0, TenantControllerUpdateTenantData as g1, TenantControllerUpdateTenantResponse as g2, TenantControllerUpdateTenantResponses as g3, TenantEntity as g4, TokenResponse as g5, TransactionData as g6, TrustAuthorityDto as g7, TrustAuthorityEntry as g8, TrustList as g9, TrustedAuthorityQuery as gA, UpdateAttributeProviderDto as gB, UpdateClientDto as gC, UpdateIssuanceDto as gD, UpdateIssuanceDtoWritable as gE, UpdateIssuerOfferDto as gF, UpdateRegistrarConfigDto as gG, UpdateSchemaMetadataDto as gH, UpdateSessionConfigDto as gI, UpdateStatusListConfigDto as gJ, UpdateStatusListDto as gK, UpdateTenantDto as gL, UpdateUserDto as gM, UpdateWebhookEndpointDto as gN, UpstreamOidcConfig as gO, UserControllerCreateUserData as gP, UserControllerCreateUserResponse as gQ, UserControllerCreateUserResponses as gR, UserControllerDeleteUserData as gS, UserControllerDeleteUserResponses as gT, UserControllerGetUserData as gU, UserControllerGetUserResponse as gV, UserControllerGetUserResponses as gW, UserControllerGetUsersData as gX, UserControllerGetUsersResponse as gY, UserControllerGetUsersResponses as gZ, UserControllerUpdateUserData as g_, TrustListControllerCreateTrustListData as ga, TrustListControllerCreateTrustListResponse as gb, TrustListControllerCreateTrustListResponses as gc, TrustListControllerDeleteTrustListData as gd, TrustListControllerDeleteTrustListResponses as ge, TrustListControllerExportTrustListData as gf, TrustListControllerExportTrustListResponse as gg, TrustListControllerExportTrustListResponses as gh, TrustListControllerGetAllTrustListsData as gi, TrustListControllerGetAllTrustListsResponse as gj, TrustListControllerGetAllTrustListsResponses as gk, TrustListControllerGetTrustListData as gl, TrustListControllerGetTrustListResponse as gm, TrustListControllerGetTrustListResponses as gn, TrustListControllerGetTrustListVersionData as go, TrustListControllerGetTrustListVersionResponse as gp, TrustListControllerGetTrustListVersionResponses as gq, TrustListControllerGetTrustListVersionsData as gr, TrustListControllerGetTrustListVersionsResponse as gs, TrustListControllerGetTrustListVersionsResponses as gt, TrustListControllerUpdateTrustListData as gu, TrustListControllerUpdateTrustListResponse as gv, TrustListControllerUpdateTrustListResponses as gw, TrustListCreateDto as gx, TrustListEntityInfo as gy, TrustListVersion as gz, AttestationBasedPolicy as h, UserControllerUpdateUserResponses as h0, VaultKmsConfigDto as h1, Vct as h2, VerifierOfferControllerGetOfferData as h3, VerifierOfferControllerGetOfferResponse as h4, VerifierOfferControllerGetOfferResponses as h5, VocabularyEntryDto as h6, WebHookAuthConfigHeader as h7, WebHookAuthConfigNone as h8, WebhookConfig as h9, WebhookEndpointControllerCreateData as ha, WebhookEndpointControllerCreateResponses as hb, WebhookEndpointControllerDeleteData as hc, WebhookEndpointControllerDeleteErrors as hd, WebhookEndpointControllerDeleteResponses as he, WebhookEndpointControllerGetAllData as hf, WebhookEndpointControllerGetAllResponse as hg, WebhookEndpointControllerGetAllResponses as hh, WebhookEndpointControllerGetByIdData as hi, WebhookEndpointControllerGetByIdErrors as hj, WebhookEndpointControllerGetByIdResponses as hk, WebhookEndpointControllerUpdateData as hl, WebhookEndpointControllerUpdateErrors as hm, WebhookEndpointControllerUpdateResponses as hn, WebhookEndpointEntity as ho, 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 };
|