@eudiplo/sdk-core 1.16.0 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +54 -15
- package/dist/api/client.gen.d.mts +1 -1
- package/dist/api/client.gen.d.ts +1 -1
- package/dist/api/index.d.mts +140 -28
- package/dist/api/index.d.ts +140 -28
- package/dist/api/index.js +133 -38
- package/dist/api/index.mjs +116 -37
- package/dist/index.d.mts +117 -15
- package/dist/index.d.ts +117 -15
- package/dist/index.js +255 -42
- package/dist/index.mjs +238 -41
- package/dist/{types.gen-KKg4o5Hj.d.mts → types.gen-CxMpZyVO.d.mts} +1000 -299
- package/dist/{types.gen-KKg4o5Hj.d.ts → types.gen-CxMpZyVO.d.ts} +1000 -299
- package/package.json +3 -3
|
@@ -5,7 +5,7 @@ type RoleDto = {
|
|
|
5
5
|
/**
|
|
6
6
|
* OAuth2 roles
|
|
7
7
|
*/
|
|
8
|
-
role: "presentation:manage" | "presentation:
|
|
8
|
+
role: "presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "tenants:manage" | "registrar:manage";
|
|
9
9
|
};
|
|
10
10
|
type ClientCredentialsDto = {
|
|
11
11
|
grant_type?: string;
|
|
@@ -91,6 +91,14 @@ type TenantEntity = {
|
|
|
91
91
|
clients: Array<ClientEntity>;
|
|
92
92
|
};
|
|
93
93
|
type ClientEntity = {
|
|
94
|
+
/**
|
|
95
|
+
* List of presentation config IDs this client can use. If empty/null, all configs are allowed.
|
|
96
|
+
*/
|
|
97
|
+
allowedPresentationConfigs?: Array<string>;
|
|
98
|
+
/**
|
|
99
|
+
* List of issuance config IDs this client can use. If empty/null, all configs are allowed.
|
|
100
|
+
*/
|
|
101
|
+
allowedIssuanceConfigs?: Array<string>;
|
|
94
102
|
/**
|
|
95
103
|
* The unique identifier for the client.
|
|
96
104
|
*/
|
|
@@ -110,7 +118,7 @@ type ClientEntity = {
|
|
|
110
118
|
/**
|
|
111
119
|
* The roles assigned to the client.
|
|
112
120
|
*/
|
|
113
|
-
roles: Array<"presentation:manage" | "presentation:
|
|
121
|
+
roles: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "tenants:manage" | "registrar:manage">;
|
|
114
122
|
/**
|
|
115
123
|
* The tenant that the client belongs to.
|
|
116
124
|
*/
|
|
@@ -125,7 +133,7 @@ type CreateTenantDto = {
|
|
|
125
133
|
* Session storage configuration. Controls TTL and cleanup behavior.
|
|
126
134
|
*/
|
|
127
135
|
sessionConfig?: SessionStorageConfig;
|
|
128
|
-
roles?: Array<"presentation:manage" | "presentation:
|
|
136
|
+
roles?: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "tenants:manage" | "registrar:manage">;
|
|
129
137
|
/**
|
|
130
138
|
* The unique identifier for the tenant.
|
|
131
139
|
*/
|
|
@@ -156,12 +164,20 @@ type UpdateTenantDto = {
|
|
|
156
164
|
* The description of the tenant.
|
|
157
165
|
*/
|
|
158
166
|
description?: string;
|
|
159
|
-
roles?: Array<"presentation:manage" | "presentation:
|
|
167
|
+
roles?: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "tenants:manage" | "registrar:manage">;
|
|
160
168
|
};
|
|
161
169
|
type ClientSecretResponseDto = {
|
|
162
170
|
secret: string;
|
|
163
171
|
};
|
|
164
172
|
type UpdateClientDto = {
|
|
173
|
+
/**
|
|
174
|
+
* List of presentation config IDs this client can use. If empty/null, all configs are allowed.
|
|
175
|
+
*/
|
|
176
|
+
allowedPresentationConfigs?: Array<string>;
|
|
177
|
+
/**
|
|
178
|
+
* List of issuance config IDs this client can use. If empty/null, all configs are allowed.
|
|
179
|
+
*/
|
|
180
|
+
allowedIssuanceConfigs?: Array<string>;
|
|
165
181
|
/**
|
|
166
182
|
* The description of the client.
|
|
167
183
|
*/
|
|
@@ -169,9 +185,17 @@ type UpdateClientDto = {
|
|
|
169
185
|
/**
|
|
170
186
|
* The roles assigned to the client.
|
|
171
187
|
*/
|
|
172
|
-
roles: Array<"presentation:manage" | "presentation:
|
|
188
|
+
roles: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "tenants:manage" | "registrar:manage">;
|
|
173
189
|
};
|
|
174
190
|
type CreateClientDto = {
|
|
191
|
+
/**
|
|
192
|
+
* List of presentation config IDs this client can use. If empty/null, all configs are allowed.
|
|
193
|
+
*/
|
|
194
|
+
allowedPresentationConfigs?: Array<string>;
|
|
195
|
+
/**
|
|
196
|
+
* List of issuance config IDs this client can use. If empty/null, all configs are allowed.
|
|
197
|
+
*/
|
|
198
|
+
allowedIssuanceConfigs?: Array<string>;
|
|
175
199
|
/**
|
|
176
200
|
* The unique identifier for the client.
|
|
177
201
|
*/
|
|
@@ -187,7 +211,7 @@ type CreateClientDto = {
|
|
|
187
211
|
/**
|
|
188
212
|
* The roles assigned to the client.
|
|
189
213
|
*/
|
|
190
|
-
roles: Array<"presentation:manage" | "presentation:
|
|
214
|
+
roles: Array<"presentation:manage" | "presentation:request" | "issuance:manage" | "issuance:offer" | "clients:manage" | "tenants:manage" | "registrar:manage">;
|
|
191
215
|
};
|
|
192
216
|
type CertUsageEntity = {
|
|
193
217
|
tenantId: string;
|
|
@@ -214,6 +238,7 @@ type KeyEntity = {
|
|
|
214
238
|
tenant: TenantEntity;
|
|
215
239
|
/**
|
|
216
240
|
* The key material.
|
|
241
|
+
* Encrypted at rest using AES-256-GCM.
|
|
217
242
|
*/
|
|
218
243
|
key: {
|
|
219
244
|
[key: string]: unknown;
|
|
@@ -255,9 +280,9 @@ type CertEntity = {
|
|
|
255
280
|
*/
|
|
256
281
|
tenant: TenantEntity;
|
|
257
282
|
/**
|
|
258
|
-
* Certificate in PEM format.
|
|
283
|
+
* Certificate chain in PEM format (leaf first, then intermediates/CA).
|
|
259
284
|
*/
|
|
260
|
-
crt: string
|
|
285
|
+
crt: Array<string>;
|
|
261
286
|
usages: Array<CertUsageEntity>;
|
|
262
287
|
/**
|
|
263
288
|
* Description of the key.
|
|
@@ -316,9 +341,10 @@ type CertImportDto = {
|
|
|
316
341
|
*/
|
|
317
342
|
certUsageTypes: Array<"access" | "signing" | "trustList" | "statusList">;
|
|
318
343
|
/**
|
|
319
|
-
* Certificate in PEM format
|
|
344
|
+
* Certificate chain in PEM format (leaf first, then intermediates/CA).
|
|
345
|
+
* If not provided, a self-signed certificate will be generated.
|
|
320
346
|
*/
|
|
321
|
-
crt?: string
|
|
347
|
+
crt?: Array<string>;
|
|
322
348
|
/**
|
|
323
349
|
* Subject name (CN) for self-signed certificate generation.
|
|
324
350
|
* If not provided, the tenant name will be used.
|
|
@@ -526,7 +552,7 @@ type OfferRequestDto = {
|
|
|
526
552
|
/**
|
|
527
553
|
* The type of response expected for the offer request.
|
|
528
554
|
*/
|
|
529
|
-
response_type: "
|
|
555
|
+
response_type: "uri" | "dc-api";
|
|
530
556
|
/**
|
|
531
557
|
* Credential claims configuration per credential. Keys must match credentialConfigurationIds.
|
|
532
558
|
*/
|
|
@@ -551,6 +577,10 @@ type OfferRequestDto = {
|
|
|
551
577
|
* Transaction code for pre-authorized code flow.
|
|
552
578
|
*/
|
|
553
579
|
tx_code?: string;
|
|
580
|
+
/**
|
|
581
|
+
* Description for the transaction code (e.g., "Please enter the PIN sent to your email").
|
|
582
|
+
*/
|
|
583
|
+
tx_code_description?: string;
|
|
554
584
|
/**
|
|
555
585
|
* List of credential configuration ids to be included in the offer.
|
|
556
586
|
*/
|
|
@@ -608,10 +638,12 @@ type Session = {
|
|
|
608
638
|
request_uri?: string;
|
|
609
639
|
/**
|
|
610
640
|
* Authorization queries associated with the session.
|
|
641
|
+
* Encrypted at rest.
|
|
611
642
|
*/
|
|
612
643
|
auth_queries?: AuthorizeQueries;
|
|
613
644
|
/**
|
|
614
645
|
* Credential offer object containing details about the credential offer or presentation request.
|
|
646
|
+
* Encrypted at rest.
|
|
615
647
|
*/
|
|
616
648
|
offer?: {
|
|
617
649
|
[key: string]: unknown;
|
|
@@ -622,6 +654,7 @@ type Session = {
|
|
|
622
654
|
offerUrl?: string;
|
|
623
655
|
/**
|
|
624
656
|
* Credential payload containing the offer request details.
|
|
657
|
+
* Encrypted at rest - may contain sensitive claim data.
|
|
625
658
|
*/
|
|
626
659
|
credentialPayload?: OfferRequestDto;
|
|
627
660
|
/**
|
|
@@ -645,6 +678,7 @@ type Session = {
|
|
|
645
678
|
requestObject?: string;
|
|
646
679
|
/**
|
|
647
680
|
* Verified credentials from the presentation process.
|
|
681
|
+
* Encrypted at rest - contains personal information.
|
|
648
682
|
*/
|
|
649
683
|
credentials?: Array<{
|
|
650
684
|
[key: string]: unknown;
|
|
@@ -674,6 +708,12 @@ type Session = {
|
|
|
674
708
|
* Can be overridden per-request from the presentation configuration.
|
|
675
709
|
*/
|
|
676
710
|
transaction_data?: Array<TransactionData>;
|
|
711
|
+
externalIssuer?: string;
|
|
712
|
+
/**
|
|
713
|
+
* The subject (sub) from the external authorization server token.
|
|
714
|
+
* Used to identify the user at the external AS.
|
|
715
|
+
*/
|
|
716
|
+
externalSubject?: string;
|
|
677
717
|
};
|
|
678
718
|
type StatusUpdateDto = {
|
|
679
719
|
/**
|
|
@@ -729,6 +769,52 @@ type AuthenticationMethodPresentation = {
|
|
|
729
769
|
method: "presentationDuringIssuance";
|
|
730
770
|
config: PresentationDuringIssuanceConfig;
|
|
731
771
|
};
|
|
772
|
+
type UpstreamOidcConfig = {
|
|
773
|
+
/**
|
|
774
|
+
* The OIDC issuer URL of the upstream provider
|
|
775
|
+
*/
|
|
776
|
+
issuer: string;
|
|
777
|
+
/**
|
|
778
|
+
* The client ID registered with the upstream provider
|
|
779
|
+
*/
|
|
780
|
+
clientId: string;
|
|
781
|
+
/**
|
|
782
|
+
* The client secret for confidential clients
|
|
783
|
+
*/
|
|
784
|
+
clientSecret?: string;
|
|
785
|
+
/**
|
|
786
|
+
* Scopes to request from the upstream provider
|
|
787
|
+
*/
|
|
788
|
+
scopes?: Array<string>;
|
|
789
|
+
};
|
|
790
|
+
type ChainedAsTokenConfig = {
|
|
791
|
+
/**
|
|
792
|
+
* Access token lifetime in seconds
|
|
793
|
+
*/
|
|
794
|
+
lifetimeSeconds?: number;
|
|
795
|
+
/**
|
|
796
|
+
* Key ID for token signing
|
|
797
|
+
*/
|
|
798
|
+
signingKeyId?: string;
|
|
799
|
+
};
|
|
800
|
+
type ChainedAsConfig = {
|
|
801
|
+
/**
|
|
802
|
+
* Enable chained AS mode
|
|
803
|
+
*/
|
|
804
|
+
enabled: boolean;
|
|
805
|
+
/**
|
|
806
|
+
* Upstream OIDC provider configuration
|
|
807
|
+
*/
|
|
808
|
+
upstream?: UpstreamOidcConfig;
|
|
809
|
+
/**
|
|
810
|
+
* Token configuration
|
|
811
|
+
*/
|
|
812
|
+
token?: ChainedAsTokenConfig;
|
|
813
|
+
/**
|
|
814
|
+
* Require DPoP binding for tokens
|
|
815
|
+
*/
|
|
816
|
+
requireDPoP?: boolean;
|
|
817
|
+
};
|
|
732
818
|
type DisplayLogo = {
|
|
733
819
|
uri: string;
|
|
734
820
|
alt_text?: string;
|
|
@@ -739,6 +825,12 @@ type DisplayInfo = {
|
|
|
739
825
|
logo?: DisplayLogo;
|
|
740
826
|
};
|
|
741
827
|
type IssuanceConfig = {
|
|
828
|
+
/**
|
|
829
|
+
* Configuration for Chained Authorization Server mode.
|
|
830
|
+
* When enabled, EUDIPLO acts as an OAuth AS facade, delegating user authentication
|
|
831
|
+
* to an upstream OIDC provider while issuing its own tokens with issuer_state.
|
|
832
|
+
*/
|
|
833
|
+
chainedAs?: ChainedAsConfig;
|
|
742
834
|
/**
|
|
743
835
|
* The tenant that owns this object.
|
|
744
836
|
*/
|
|
@@ -779,6 +871,12 @@ type IssuanceConfig = {
|
|
|
779
871
|
updatedAt: string;
|
|
780
872
|
};
|
|
781
873
|
type IssuanceDto = {
|
|
874
|
+
/**
|
|
875
|
+
* Configuration for Chained Authorization Server mode.
|
|
876
|
+
* When enabled, EUDIPLO acts as an OAuth AS facade, delegating user authentication
|
|
877
|
+
* to an upstream OIDC provider while issuing its own tokens with issuer_state.
|
|
878
|
+
*/
|
|
879
|
+
chainedAs?: ChainedAsConfig;
|
|
782
880
|
/**
|
|
783
881
|
* Authentication server URL for the issuance process.
|
|
784
882
|
*/
|
|
@@ -863,6 +961,42 @@ type Vct = {
|
|
|
863
961
|
schema_uri?: string;
|
|
864
962
|
"schema_uri#integrity"?: string;
|
|
865
963
|
};
|
|
964
|
+
type IaeActionOpenid4VpPresentation = {
|
|
965
|
+
/**
|
|
966
|
+
* Action type discriminator
|
|
967
|
+
*/
|
|
968
|
+
type: "openid4vp_presentation";
|
|
969
|
+
/**
|
|
970
|
+
* Optional label for this step (for display purposes)
|
|
971
|
+
*/
|
|
972
|
+
label?: string;
|
|
973
|
+
/**
|
|
974
|
+
* ID of the presentation configuration to use for this step
|
|
975
|
+
*/
|
|
976
|
+
presentationConfigId: string;
|
|
977
|
+
};
|
|
978
|
+
type IaeActionRedirectToWeb = {
|
|
979
|
+
/**
|
|
980
|
+
* Action type discriminator
|
|
981
|
+
*/
|
|
982
|
+
type: "redirect_to_web";
|
|
983
|
+
/**
|
|
984
|
+
* Optional label for this step (for display purposes)
|
|
985
|
+
*/
|
|
986
|
+
label?: string;
|
|
987
|
+
/**
|
|
988
|
+
* URL to redirect the user to for web-based interaction
|
|
989
|
+
*/
|
|
990
|
+
url: string;
|
|
991
|
+
/**
|
|
992
|
+
* URL where the external service should redirect back after completion. If not provided, the service must call back to the IAE endpoint.
|
|
993
|
+
*/
|
|
994
|
+
callbackUrl?: string;
|
|
995
|
+
/**
|
|
996
|
+
* Description of what the user should do on the web page (for wallet display)
|
|
997
|
+
*/
|
|
998
|
+
description?: string;
|
|
999
|
+
};
|
|
866
1000
|
type EmbeddedDisclosurePolicy = {
|
|
867
1001
|
policy: string;
|
|
868
1002
|
};
|
|
@@ -879,7 +1013,7 @@ type Display = {
|
|
|
879
1013
|
logo?: DisplayImage;
|
|
880
1014
|
};
|
|
881
1015
|
type IssuerMetadataCredentialConfig = {
|
|
882
|
-
format:
|
|
1016
|
+
format: "mso_mdoc" | "dc+sd-jwt";
|
|
883
1017
|
display: Array<Display>;
|
|
884
1018
|
scope?: string;
|
|
885
1019
|
/**
|
|
@@ -922,6 +1056,10 @@ type CredentialConfig = {
|
|
|
922
1056
|
* VCT as a URI string (e.g., urn:eudi:pid:de:1) or as an object for EUDIPLO-hosted VCT
|
|
923
1057
|
*/
|
|
924
1058
|
vct?: string | Vct;
|
|
1059
|
+
/**
|
|
1060
|
+
* List of IAE actions to execute before credential issuance
|
|
1061
|
+
*/
|
|
1062
|
+
iaeActions?: Array<IaeActionOpenid4VpPresentation | IaeActionRedirectToWeb>;
|
|
925
1063
|
/**
|
|
926
1064
|
* Embedded disclosure policy (discriminated union by `policy`).
|
|
927
1065
|
* The discriminator makes class-transformer instantiate the right subclass,
|
|
@@ -967,6 +1105,10 @@ type CredentialConfigCreate = {
|
|
|
967
1105
|
* VCT as a URI string (e.g., urn:eudi:pid:de:1) or as an object for EUDIPLO-hosted VCT
|
|
968
1106
|
*/
|
|
969
1107
|
vct?: string | Vct;
|
|
1108
|
+
/**
|
|
1109
|
+
* List of IAE actions to execute before credential issuance
|
|
1110
|
+
*/
|
|
1111
|
+
iaeActions?: Array<IaeActionOpenid4VpPresentation | IaeActionRedirectToWeb>;
|
|
970
1112
|
/**
|
|
971
1113
|
* Embedded disclosure policy (discriminated union by `policy`).
|
|
972
1114
|
* The discriminator makes class-transformer instantiate the right subclass,
|
|
@@ -1007,6 +1149,10 @@ type CredentialConfigUpdate = {
|
|
|
1007
1149
|
* VCT as a URI string (e.g., urn:eudi:pid:de:1) or as an object for EUDIPLO-hosted VCT
|
|
1008
1150
|
*/
|
|
1009
1151
|
vct?: string | Vct;
|
|
1152
|
+
/**
|
|
1153
|
+
* List of IAE actions to execute before credential issuance
|
|
1154
|
+
*/
|
|
1155
|
+
iaeActions?: Array<IaeActionOpenid4VpPresentation | IaeActionRedirectToWeb>;
|
|
1010
1156
|
/**
|
|
1011
1157
|
* Embedded disclosure policy (discriminated union by `policy`).
|
|
1012
1158
|
* The discriminator makes class-transformer instantiate the right subclass,
|
|
@@ -1042,152 +1188,6 @@ type CredentialConfigUpdate = {
|
|
|
1042
1188
|
lifeTime?: number;
|
|
1043
1189
|
schema?: SchemaResponse;
|
|
1044
1190
|
};
|
|
1045
|
-
type NotificationRequestDto = {
|
|
1046
|
-
notification_id: string;
|
|
1047
|
-
event: {
|
|
1048
|
-
[key: string]: unknown;
|
|
1049
|
-
};
|
|
1050
|
-
};
|
|
1051
|
-
type ParResponseDto = {
|
|
1052
|
-
/**
|
|
1053
|
-
* The request URI for the Pushed Authorization Request.
|
|
1054
|
-
*/
|
|
1055
|
-
request_uri: string;
|
|
1056
|
-
/**
|
|
1057
|
-
* The expiration time for the request URI in seconds.
|
|
1058
|
-
*/
|
|
1059
|
-
expires_in: number;
|
|
1060
|
-
};
|
|
1061
|
-
type OfferResponse = {
|
|
1062
|
-
uri: string;
|
|
1063
|
-
session: string;
|
|
1064
|
-
};
|
|
1065
|
-
type EcPublic = {
|
|
1066
|
-
/**
|
|
1067
|
-
* The key type, which is always 'EC' for Elliptic Curve keys.
|
|
1068
|
-
*/
|
|
1069
|
-
kty: string;
|
|
1070
|
-
/**
|
|
1071
|
-
* The algorithm intended for use with the key, such as 'ES256'.
|
|
1072
|
-
*/
|
|
1073
|
-
crv: string;
|
|
1074
|
-
/**
|
|
1075
|
-
* The x coordinate of the EC public key.
|
|
1076
|
-
*/
|
|
1077
|
-
x: string;
|
|
1078
|
-
/**
|
|
1079
|
-
* The y coordinate of the EC public key.
|
|
1080
|
-
*/
|
|
1081
|
-
y: string;
|
|
1082
|
-
};
|
|
1083
|
-
type JwksResponseDto = {
|
|
1084
|
-
/**
|
|
1085
|
-
* An array of EC public keys in JWK format.
|
|
1086
|
-
*/
|
|
1087
|
-
keys: Array<EcPublic>;
|
|
1088
|
-
};
|
|
1089
|
-
type AuthorizationResponse = {
|
|
1090
|
-
/**
|
|
1091
|
-
* The response string containing the authorization details.
|
|
1092
|
-
*/
|
|
1093
|
-
response: string;
|
|
1094
|
-
/**
|
|
1095
|
-
* When set to true, the authorization response will be sent to the client.
|
|
1096
|
-
*/
|
|
1097
|
-
sendResponse?: boolean;
|
|
1098
|
-
};
|
|
1099
|
-
type RegistrarConfigEntity = {
|
|
1100
|
-
/**
|
|
1101
|
-
* The base URL of the registrar API
|
|
1102
|
-
*/
|
|
1103
|
-
registrarUrl: string;
|
|
1104
|
-
/**
|
|
1105
|
-
* The OIDC issuer URL for authentication (e.g., Keycloak realm URL)
|
|
1106
|
-
*/
|
|
1107
|
-
oidcUrl: string;
|
|
1108
|
-
/**
|
|
1109
|
-
* The OIDC client ID for the registrar
|
|
1110
|
-
*/
|
|
1111
|
-
clientId: string;
|
|
1112
|
-
/**
|
|
1113
|
-
* The OIDC client secret (optional, for confidential clients)
|
|
1114
|
-
*/
|
|
1115
|
-
clientSecret?: string;
|
|
1116
|
-
/**
|
|
1117
|
-
* The username for OIDC login
|
|
1118
|
-
*/
|
|
1119
|
-
username: string;
|
|
1120
|
-
/**
|
|
1121
|
-
* The password for OIDC login (stored in plaintext)
|
|
1122
|
-
*/
|
|
1123
|
-
password: string;
|
|
1124
|
-
/**
|
|
1125
|
-
* The tenant ID this configuration belongs to.
|
|
1126
|
-
*/
|
|
1127
|
-
tenantId: string;
|
|
1128
|
-
/**
|
|
1129
|
-
* The tenant that owns this configuration.
|
|
1130
|
-
*/
|
|
1131
|
-
tenant: TenantEntity;
|
|
1132
|
-
};
|
|
1133
|
-
type CreateRegistrarConfigDto = {
|
|
1134
|
-
/**
|
|
1135
|
-
* The base URL of the registrar API
|
|
1136
|
-
*/
|
|
1137
|
-
registrarUrl: string;
|
|
1138
|
-
/**
|
|
1139
|
-
* The OIDC issuer URL for authentication (e.g., Keycloak realm URL)
|
|
1140
|
-
*/
|
|
1141
|
-
oidcUrl: string;
|
|
1142
|
-
/**
|
|
1143
|
-
* The OIDC client ID for the registrar
|
|
1144
|
-
*/
|
|
1145
|
-
clientId: string;
|
|
1146
|
-
/**
|
|
1147
|
-
* The OIDC client secret (optional, for confidential clients)
|
|
1148
|
-
*/
|
|
1149
|
-
clientSecret?: string;
|
|
1150
|
-
/**
|
|
1151
|
-
* The username for OIDC login
|
|
1152
|
-
*/
|
|
1153
|
-
username: string;
|
|
1154
|
-
/**
|
|
1155
|
-
* The password for OIDC login (stored in plaintext)
|
|
1156
|
-
*/
|
|
1157
|
-
password: string;
|
|
1158
|
-
};
|
|
1159
|
-
type UpdateRegistrarConfigDto = {
|
|
1160
|
-
/**
|
|
1161
|
-
* The base URL of the registrar API
|
|
1162
|
-
*/
|
|
1163
|
-
registrarUrl?: string;
|
|
1164
|
-
/**
|
|
1165
|
-
* The OIDC issuer URL for authentication (e.g., Keycloak realm URL)
|
|
1166
|
-
*/
|
|
1167
|
-
oidcUrl?: string;
|
|
1168
|
-
/**
|
|
1169
|
-
* The OIDC client ID for the registrar
|
|
1170
|
-
*/
|
|
1171
|
-
clientId?: string;
|
|
1172
|
-
/**
|
|
1173
|
-
* The OIDC client secret (optional, for confidential clients)
|
|
1174
|
-
*/
|
|
1175
|
-
clientSecret?: string;
|
|
1176
|
-
/**
|
|
1177
|
-
* The username for OIDC login
|
|
1178
|
-
*/
|
|
1179
|
-
username?: string;
|
|
1180
|
-
/**
|
|
1181
|
-
* The password for OIDC login (stored in plaintext)
|
|
1182
|
-
*/
|
|
1183
|
-
password?: string;
|
|
1184
|
-
};
|
|
1185
|
-
type CreateAccessCertificateDto = {
|
|
1186
|
-
/**
|
|
1187
|
-
* The ID of the key to create an access certificate for
|
|
1188
|
-
*/
|
|
1189
|
-
keyId: string;
|
|
1190
|
-
};
|
|
1191
1191
|
type Dcql = {
|
|
1192
1192
|
credentials: Array<CredentialQuery>;
|
|
1193
1193
|
credential_sets?: Array<CredentialSetQuery>;
|
|
@@ -1355,47 +1355,410 @@ type PresentationConfigUpdateDto = {
|
|
|
1355
1355
|
*/
|
|
1356
1356
|
accessCertId?: string;
|
|
1357
1357
|
};
|
|
1358
|
-
type
|
|
1359
|
-
id?: string;
|
|
1360
|
-
certId?: string;
|
|
1361
|
-
entities: Array<{
|
|
1362
|
-
[key: string]: unknown;
|
|
1363
|
-
}>;
|
|
1364
|
-
description?: string;
|
|
1358
|
+
type DeferredCredentialRequestDto = {
|
|
1365
1359
|
/**
|
|
1366
|
-
* The
|
|
1360
|
+
* The transaction identifier previously returned by the Credential Endpoint
|
|
1367
1361
|
*/
|
|
1368
|
-
|
|
1362
|
+
transaction_id: string;
|
|
1363
|
+
};
|
|
1364
|
+
type NotificationRequestDto = {
|
|
1365
|
+
notification_id: string;
|
|
1366
|
+
event: {
|
|
1369
1367
|
[key: string]: unknown;
|
|
1370
1368
|
};
|
|
1371
1369
|
};
|
|
1372
|
-
type
|
|
1370
|
+
type ParResponseDto = {
|
|
1373
1371
|
/**
|
|
1374
|
-
*
|
|
1372
|
+
* The request URI for the Pushed Authorization Request.
|
|
1375
1373
|
*/
|
|
1376
|
-
|
|
1377
|
-
description?: string;
|
|
1374
|
+
request_uri: string;
|
|
1378
1375
|
/**
|
|
1379
|
-
* The
|
|
1376
|
+
* The expiration time for the request URI in seconds.
|
|
1380
1377
|
*/
|
|
1381
|
-
|
|
1378
|
+
expires_in: number;
|
|
1379
|
+
};
|
|
1380
|
+
type InteractiveAuthorizationRequestDto = {
|
|
1382
1381
|
/**
|
|
1383
|
-
*
|
|
1382
|
+
* Response type (for initial request)
|
|
1384
1383
|
*/
|
|
1385
|
-
|
|
1386
|
-
certId: string;
|
|
1387
|
-
cert: CertEntity;
|
|
1384
|
+
response_type?: string;
|
|
1388
1385
|
/**
|
|
1389
|
-
*
|
|
1386
|
+
* Client identifier (for initial request)
|
|
1390
1387
|
*/
|
|
1391
|
-
|
|
1392
|
-
[key: string]: unknown;
|
|
1393
|
-
};
|
|
1388
|
+
client_id?: string;
|
|
1394
1389
|
/**
|
|
1395
|
-
*
|
|
1396
|
-
* Stored for round-tripping when editing.
|
|
1390
|
+
* Comma-separated list of supported interaction types (for initial request)
|
|
1397
1391
|
*/
|
|
1398
|
-
|
|
1392
|
+
interaction_types_supported?: string;
|
|
1393
|
+
/**
|
|
1394
|
+
* Redirect URI (for initial request)
|
|
1395
|
+
*/
|
|
1396
|
+
redirect_uri?: string;
|
|
1397
|
+
/**
|
|
1398
|
+
* OAuth scope
|
|
1399
|
+
*/
|
|
1400
|
+
scope?: string;
|
|
1401
|
+
/**
|
|
1402
|
+
* PKCE code challenge
|
|
1403
|
+
*/
|
|
1404
|
+
code_challenge?: string;
|
|
1405
|
+
/**
|
|
1406
|
+
* PKCE code challenge method
|
|
1407
|
+
*/
|
|
1408
|
+
code_challenge_method?: string;
|
|
1409
|
+
/**
|
|
1410
|
+
* Authorization details
|
|
1411
|
+
*/
|
|
1412
|
+
authorization_details?: {
|
|
1413
|
+
[key: string]: unknown;
|
|
1414
|
+
};
|
|
1415
|
+
/**
|
|
1416
|
+
* State parameter
|
|
1417
|
+
*/
|
|
1418
|
+
state?: string;
|
|
1419
|
+
/**
|
|
1420
|
+
* Issuer state from credential offer
|
|
1421
|
+
*/
|
|
1422
|
+
issuer_state?: string;
|
|
1423
|
+
/**
|
|
1424
|
+
* Auth session identifier (for follow-up request)
|
|
1425
|
+
*/
|
|
1426
|
+
auth_session?: string;
|
|
1427
|
+
/**
|
|
1428
|
+
* OpenID4VP response (for follow-up request)
|
|
1429
|
+
*/
|
|
1430
|
+
openid4vp_response?: string;
|
|
1431
|
+
/**
|
|
1432
|
+
* PKCE code verifier (for follow-up request)
|
|
1433
|
+
*/
|
|
1434
|
+
code_verifier?: string;
|
|
1435
|
+
/**
|
|
1436
|
+
* JAR request JWT (by value)
|
|
1437
|
+
*/
|
|
1438
|
+
request?: string;
|
|
1439
|
+
/**
|
|
1440
|
+
* JAR request URI (by reference)
|
|
1441
|
+
*/
|
|
1442
|
+
request_uri?: string;
|
|
1443
|
+
};
|
|
1444
|
+
type InteractiveAuthorizationCodeResponseDto = {
|
|
1445
|
+
/**
|
|
1446
|
+
* Response status
|
|
1447
|
+
*/
|
|
1448
|
+
status: string;
|
|
1449
|
+
/**
|
|
1450
|
+
* Authorization code
|
|
1451
|
+
*/
|
|
1452
|
+
code: string;
|
|
1453
|
+
};
|
|
1454
|
+
type InteractiveAuthorizationErrorResponseDto = {
|
|
1455
|
+
/**
|
|
1456
|
+
* OAuth error code
|
|
1457
|
+
*/
|
|
1458
|
+
error: string;
|
|
1459
|
+
/**
|
|
1460
|
+
* Human-readable error description
|
|
1461
|
+
*/
|
|
1462
|
+
error_description?: string;
|
|
1463
|
+
};
|
|
1464
|
+
type ChainedAsParRequestDto = {
|
|
1465
|
+
/**
|
|
1466
|
+
* OAuth response type (must be 'code')
|
|
1467
|
+
*/
|
|
1468
|
+
response_type: string;
|
|
1469
|
+
/**
|
|
1470
|
+
* Client identifier (wallet identifier)
|
|
1471
|
+
*/
|
|
1472
|
+
client_id: string;
|
|
1473
|
+
/**
|
|
1474
|
+
* URI to redirect the wallet after authorization
|
|
1475
|
+
*/
|
|
1476
|
+
redirect_uri: string;
|
|
1477
|
+
/**
|
|
1478
|
+
* PKCE code challenge
|
|
1479
|
+
*/
|
|
1480
|
+
code_challenge?: string;
|
|
1481
|
+
/**
|
|
1482
|
+
* PKCE code challenge method (e.g., S256)
|
|
1483
|
+
*/
|
|
1484
|
+
code_challenge_method?: string;
|
|
1485
|
+
/**
|
|
1486
|
+
* State parameter (returned in redirect)
|
|
1487
|
+
*/
|
|
1488
|
+
state?: string;
|
|
1489
|
+
/**
|
|
1490
|
+
* Scope requested
|
|
1491
|
+
*/
|
|
1492
|
+
scope?: string;
|
|
1493
|
+
/**
|
|
1494
|
+
* Issuer state from credential offer
|
|
1495
|
+
*/
|
|
1496
|
+
issuer_state?: string;
|
|
1497
|
+
/**
|
|
1498
|
+
* Authorization details (JSON array)
|
|
1499
|
+
*/
|
|
1500
|
+
authorization_details?: Array<{
|
|
1501
|
+
[key: string]: unknown;
|
|
1502
|
+
}>;
|
|
1503
|
+
};
|
|
1504
|
+
type ChainedAsParResponseDto = {
|
|
1505
|
+
/**
|
|
1506
|
+
* The request URI to use at the authorization endpoint
|
|
1507
|
+
*/
|
|
1508
|
+
request_uri: string;
|
|
1509
|
+
/**
|
|
1510
|
+
* The lifetime of the request URI in seconds
|
|
1511
|
+
*/
|
|
1512
|
+
expires_in: number;
|
|
1513
|
+
};
|
|
1514
|
+
type ChainedAsErrorResponseDto = {
|
|
1515
|
+
/**
|
|
1516
|
+
* Error code
|
|
1517
|
+
*/
|
|
1518
|
+
error: string;
|
|
1519
|
+
/**
|
|
1520
|
+
* Human-readable error description
|
|
1521
|
+
*/
|
|
1522
|
+
error_description?: string;
|
|
1523
|
+
};
|
|
1524
|
+
type ChainedAsTokenRequestDto = {
|
|
1525
|
+
/**
|
|
1526
|
+
* Grant type (must be 'authorization_code')
|
|
1527
|
+
*/
|
|
1528
|
+
grant_type: string;
|
|
1529
|
+
/**
|
|
1530
|
+
* Authorization code received in the callback
|
|
1531
|
+
*/
|
|
1532
|
+
code: string;
|
|
1533
|
+
/**
|
|
1534
|
+
* Client identifier
|
|
1535
|
+
*/
|
|
1536
|
+
client_id?: string;
|
|
1537
|
+
/**
|
|
1538
|
+
* Redirect URI (must match the one used in PAR)
|
|
1539
|
+
*/
|
|
1540
|
+
redirect_uri?: string;
|
|
1541
|
+
/**
|
|
1542
|
+
* PKCE code verifier
|
|
1543
|
+
*/
|
|
1544
|
+
code_verifier?: string;
|
|
1545
|
+
};
|
|
1546
|
+
type ChainedAsTokenResponseDto = {
|
|
1547
|
+
/**
|
|
1548
|
+
* The access token
|
|
1549
|
+
*/
|
|
1550
|
+
access_token: string;
|
|
1551
|
+
/**
|
|
1552
|
+
* Token type (Bearer or DPoP)
|
|
1553
|
+
*/
|
|
1554
|
+
token_type: string;
|
|
1555
|
+
/**
|
|
1556
|
+
* Token lifetime in seconds
|
|
1557
|
+
*/
|
|
1558
|
+
expires_in: number;
|
|
1559
|
+
/**
|
|
1560
|
+
* Scope granted
|
|
1561
|
+
*/
|
|
1562
|
+
scope?: string;
|
|
1563
|
+
/**
|
|
1564
|
+
* Authorized credential configurations
|
|
1565
|
+
*/
|
|
1566
|
+
authorization_details?: Array<{
|
|
1567
|
+
[key: string]: unknown;
|
|
1568
|
+
}>;
|
|
1569
|
+
/**
|
|
1570
|
+
* C_NONCE for credential request
|
|
1571
|
+
*/
|
|
1572
|
+
c_nonce?: string;
|
|
1573
|
+
/**
|
|
1574
|
+
* C_NONCE lifetime in seconds
|
|
1575
|
+
*/
|
|
1576
|
+
c_nonce_expires_in?: number;
|
|
1577
|
+
};
|
|
1578
|
+
type OfferResponse = {
|
|
1579
|
+
uri: string;
|
|
1580
|
+
/**
|
|
1581
|
+
* URI for cross-device flows (no redirect after completion)
|
|
1582
|
+
*/
|
|
1583
|
+
crossDeviceUri?: string;
|
|
1584
|
+
session: string;
|
|
1585
|
+
};
|
|
1586
|
+
type CompleteDeferredDto = {
|
|
1587
|
+
[key: string]: unknown;
|
|
1588
|
+
};
|
|
1589
|
+
type DeferredOperationResponse = {
|
|
1590
|
+
[key: string]: unknown;
|
|
1591
|
+
};
|
|
1592
|
+
type FailDeferredDto = {
|
|
1593
|
+
[key: string]: unknown;
|
|
1594
|
+
};
|
|
1595
|
+
type EcPublic = {
|
|
1596
|
+
/**
|
|
1597
|
+
* The key type, which is always 'EC' for Elliptic Curve keys.
|
|
1598
|
+
*/
|
|
1599
|
+
kty: string;
|
|
1600
|
+
/**
|
|
1601
|
+
* The algorithm intended for use with the key, such as 'ES256'.
|
|
1602
|
+
*/
|
|
1603
|
+
crv: string;
|
|
1604
|
+
/**
|
|
1605
|
+
* The x coordinate of the EC public key.
|
|
1606
|
+
*/
|
|
1607
|
+
x: string;
|
|
1608
|
+
/**
|
|
1609
|
+
* The y coordinate of the EC public key.
|
|
1610
|
+
*/
|
|
1611
|
+
y: string;
|
|
1612
|
+
};
|
|
1613
|
+
type JwksResponseDto = {
|
|
1614
|
+
/**
|
|
1615
|
+
* An array of EC public keys in JWK format.
|
|
1616
|
+
*/
|
|
1617
|
+
keys: Array<EcPublic>;
|
|
1618
|
+
};
|
|
1619
|
+
type AuthorizationResponse = {
|
|
1620
|
+
/**
|
|
1621
|
+
* The response string containing the authorization details.
|
|
1622
|
+
*/
|
|
1623
|
+
response: string;
|
|
1624
|
+
/**
|
|
1625
|
+
* When set to true, the authorization response will be sent to the client.
|
|
1626
|
+
*/
|
|
1627
|
+
sendResponse?: boolean;
|
|
1628
|
+
};
|
|
1629
|
+
type RegistrarConfigEntity = {
|
|
1630
|
+
/**
|
|
1631
|
+
* The base URL of the registrar API
|
|
1632
|
+
*/
|
|
1633
|
+
registrarUrl: string;
|
|
1634
|
+
/**
|
|
1635
|
+
* The OIDC issuer URL for authentication (e.g., Keycloak realm URL)
|
|
1636
|
+
*/
|
|
1637
|
+
oidcUrl: string;
|
|
1638
|
+
/**
|
|
1639
|
+
* The OIDC client ID for the registrar
|
|
1640
|
+
*/
|
|
1641
|
+
clientId: string;
|
|
1642
|
+
/**
|
|
1643
|
+
* The OIDC client secret (optional, for confidential clients)
|
|
1644
|
+
*/
|
|
1645
|
+
clientSecret?: string;
|
|
1646
|
+
/**
|
|
1647
|
+
* The username for OIDC login
|
|
1648
|
+
*/
|
|
1649
|
+
username: string;
|
|
1650
|
+
/**
|
|
1651
|
+
* The password for OIDC login (stored in plaintext)
|
|
1652
|
+
*/
|
|
1653
|
+
password: string;
|
|
1654
|
+
/**
|
|
1655
|
+
* The tenant ID this configuration belongs to.
|
|
1656
|
+
*/
|
|
1657
|
+
tenantId: string;
|
|
1658
|
+
/**
|
|
1659
|
+
* The tenant that owns this configuration.
|
|
1660
|
+
*/
|
|
1661
|
+
tenant: TenantEntity;
|
|
1662
|
+
};
|
|
1663
|
+
type CreateRegistrarConfigDto = {
|
|
1664
|
+
/**
|
|
1665
|
+
* The base URL of the registrar API
|
|
1666
|
+
*/
|
|
1667
|
+
registrarUrl: string;
|
|
1668
|
+
/**
|
|
1669
|
+
* The OIDC issuer URL for authentication (e.g., Keycloak realm URL)
|
|
1670
|
+
*/
|
|
1671
|
+
oidcUrl: string;
|
|
1672
|
+
/**
|
|
1673
|
+
* The OIDC client ID for the registrar
|
|
1674
|
+
*/
|
|
1675
|
+
clientId: string;
|
|
1676
|
+
/**
|
|
1677
|
+
* The OIDC client secret (optional, for confidential clients)
|
|
1678
|
+
*/
|
|
1679
|
+
clientSecret?: string;
|
|
1680
|
+
/**
|
|
1681
|
+
* The username for OIDC login
|
|
1682
|
+
*/
|
|
1683
|
+
username: string;
|
|
1684
|
+
/**
|
|
1685
|
+
* The password for OIDC login (stored in plaintext)
|
|
1686
|
+
*/
|
|
1687
|
+
password: string;
|
|
1688
|
+
};
|
|
1689
|
+
type UpdateRegistrarConfigDto = {
|
|
1690
|
+
/**
|
|
1691
|
+
* The base URL of the registrar API
|
|
1692
|
+
*/
|
|
1693
|
+
registrarUrl?: string;
|
|
1694
|
+
/**
|
|
1695
|
+
* The OIDC issuer URL for authentication (e.g., Keycloak realm URL)
|
|
1696
|
+
*/
|
|
1697
|
+
oidcUrl?: string;
|
|
1698
|
+
/**
|
|
1699
|
+
* The OIDC client ID for the registrar
|
|
1700
|
+
*/
|
|
1701
|
+
clientId?: string;
|
|
1702
|
+
/**
|
|
1703
|
+
* The OIDC client secret (optional, for confidential clients)
|
|
1704
|
+
*/
|
|
1705
|
+
clientSecret?: string;
|
|
1706
|
+
/**
|
|
1707
|
+
* The username for OIDC login
|
|
1708
|
+
*/
|
|
1709
|
+
username?: string;
|
|
1710
|
+
/**
|
|
1711
|
+
* The password for OIDC login (stored in plaintext)
|
|
1712
|
+
*/
|
|
1713
|
+
password?: string;
|
|
1714
|
+
};
|
|
1715
|
+
type CreateAccessCertificateDto = {
|
|
1716
|
+
/**
|
|
1717
|
+
* The ID of the key to create an access certificate for
|
|
1718
|
+
*/
|
|
1719
|
+
keyId: string;
|
|
1720
|
+
};
|
|
1721
|
+
type TrustListCreateDto = {
|
|
1722
|
+
id?: string;
|
|
1723
|
+
certId?: string;
|
|
1724
|
+
entities: Array<{
|
|
1725
|
+
[key: string]: unknown;
|
|
1726
|
+
}>;
|
|
1727
|
+
description?: string;
|
|
1728
|
+
/**
|
|
1729
|
+
* The full trust list JSON (generated LoTE structure)
|
|
1730
|
+
*/
|
|
1731
|
+
data?: {
|
|
1732
|
+
[key: string]: unknown;
|
|
1733
|
+
};
|
|
1734
|
+
};
|
|
1735
|
+
type TrustList = {
|
|
1736
|
+
/**
|
|
1737
|
+
* Unique identifier for the trust list
|
|
1738
|
+
*/
|
|
1739
|
+
id: string;
|
|
1740
|
+
description?: string;
|
|
1741
|
+
/**
|
|
1742
|
+
* The tenant ID for which the VP request is made.
|
|
1743
|
+
*/
|
|
1744
|
+
tenantId: string;
|
|
1745
|
+
/**
|
|
1746
|
+
* The tenant that owns this object.
|
|
1747
|
+
*/
|
|
1748
|
+
tenant: TenantEntity;
|
|
1749
|
+
certId: string;
|
|
1750
|
+
cert: CertEntity;
|
|
1751
|
+
/**
|
|
1752
|
+
* The full trust list JSON (generated LoTE structure)
|
|
1753
|
+
*/
|
|
1754
|
+
data?: {
|
|
1755
|
+
[key: string]: unknown;
|
|
1756
|
+
};
|
|
1757
|
+
/**
|
|
1758
|
+
* The original entity configuration used to create this trust list.
|
|
1759
|
+
* Stored for round-tripping when editing.
|
|
1760
|
+
*/
|
|
1761
|
+
entityConfig?: Array<{
|
|
1399
1762
|
[key: string]: unknown;
|
|
1400
1763
|
}>;
|
|
1401
1764
|
/**
|
|
@@ -1440,7 +1803,7 @@ type PresentationRequest = {
|
|
|
1440
1803
|
/**
|
|
1441
1804
|
* The type of response expected from the presentation request.
|
|
1442
1805
|
*/
|
|
1443
|
-
response_type: "
|
|
1806
|
+
response_type: "uri" | "dc-api";
|
|
1444
1807
|
/**
|
|
1445
1808
|
* Identifier of the presentation configuration
|
|
1446
1809
|
*/
|
|
@@ -1533,15 +1896,6 @@ type HealthControllerCheckResponses = {
|
|
|
1533
1896
|
};
|
|
1534
1897
|
};
|
|
1535
1898
|
type HealthControllerCheckResponse = HealthControllerCheckResponses[keyof HealthControllerCheckResponses];
|
|
1536
|
-
type PrometheusControllerIndexData = {
|
|
1537
|
-
body?: never;
|
|
1538
|
-
path?: never;
|
|
1539
|
-
query?: never;
|
|
1540
|
-
url: "/metrics";
|
|
1541
|
-
};
|
|
1542
|
-
type PrometheusControllerIndexResponses = {
|
|
1543
|
-
200: unknown;
|
|
1544
|
-
};
|
|
1545
1899
|
type AuthControllerGetOAuth2TokenData = {
|
|
1546
1900
|
body: ClientCredentialsDto;
|
|
1547
1901
|
path?: never;
|
|
@@ -1603,8 +1957,11 @@ type TenantControllerInitTenantData = {
|
|
|
1603
1957
|
url: "/tenant";
|
|
1604
1958
|
};
|
|
1605
1959
|
type TenantControllerInitTenantResponses = {
|
|
1606
|
-
201:
|
|
1960
|
+
201: {
|
|
1961
|
+
[key: string]: unknown;
|
|
1962
|
+
};
|
|
1607
1963
|
};
|
|
1964
|
+
type TenantControllerInitTenantResponse = TenantControllerInitTenantResponses[keyof TenantControllerInitTenantResponses];
|
|
1608
1965
|
type TenantControllerDeleteTenantData = {
|
|
1609
1966
|
body?: never;
|
|
1610
1967
|
path: {
|
|
@@ -1709,6 +2066,18 @@ type ClientControllerGetClientSecretResponses = {
|
|
|
1709
2066
|
200: ClientSecretResponseDto;
|
|
1710
2067
|
};
|
|
1711
2068
|
type ClientControllerGetClientSecretResponse = ClientControllerGetClientSecretResponses[keyof ClientControllerGetClientSecretResponses];
|
|
2069
|
+
type ClientControllerRotateClientSecretData = {
|
|
2070
|
+
body?: never;
|
|
2071
|
+
path: {
|
|
2072
|
+
id: string;
|
|
2073
|
+
};
|
|
2074
|
+
query?: never;
|
|
2075
|
+
url: "/client/{id}/rotate-secret";
|
|
2076
|
+
};
|
|
2077
|
+
type ClientControllerRotateClientSecretResponses = {
|
|
2078
|
+
201: ClientSecretResponseDto;
|
|
2079
|
+
};
|
|
2080
|
+
type ClientControllerRotateClientSecretResponse = ClientControllerRotateClientSecretResponses[keyof ClientControllerRotateClientSecretResponses];
|
|
1712
2081
|
type KeyControllerGetKeysData = {
|
|
1713
2082
|
body?: never;
|
|
1714
2083
|
path?: never;
|
|
@@ -2060,6 +2429,25 @@ type SessionConfigControllerUpdateConfigResponses = {
|
|
|
2060
2429
|
200: SessionStorageConfig;
|
|
2061
2430
|
};
|
|
2062
2431
|
type SessionConfigControllerUpdateConfigResponse = SessionConfigControllerUpdateConfigResponses[keyof SessionConfigControllerUpdateConfigResponses];
|
|
2432
|
+
type SessionEventsControllerSubscribeToSessionEventsData = {
|
|
2433
|
+
body?: never;
|
|
2434
|
+
path: {
|
|
2435
|
+
/**
|
|
2436
|
+
* Session ID to subscribe to
|
|
2437
|
+
*/
|
|
2438
|
+
id: string;
|
|
2439
|
+
};
|
|
2440
|
+
query: {
|
|
2441
|
+
/**
|
|
2442
|
+
* JWT access token for authentication
|
|
2443
|
+
*/
|
|
2444
|
+
token: string;
|
|
2445
|
+
};
|
|
2446
|
+
url: "/session/{id}/events";
|
|
2447
|
+
};
|
|
2448
|
+
type SessionEventsControllerSubscribeToSessionEventsResponses = {
|
|
2449
|
+
200: unknown;
|
|
2450
|
+
};
|
|
2063
2451
|
type IssuanceConfigControllerGetIssuanceConfigurationsData = {
|
|
2064
2452
|
body?: never;
|
|
2065
2453
|
path?: never;
|
|
@@ -2081,75 +2469,199 @@ type IssuanceConfigControllerStoreIssuanceConfigurationResponses = {
|
|
|
2081
2469
|
[key: string]: unknown;
|
|
2082
2470
|
};
|
|
2083
2471
|
};
|
|
2084
|
-
type IssuanceConfigControllerStoreIssuanceConfigurationResponse = IssuanceConfigControllerStoreIssuanceConfigurationResponses[keyof IssuanceConfigControllerStoreIssuanceConfigurationResponses];
|
|
2085
|
-
type CredentialConfigControllerGetConfigsData = {
|
|
2472
|
+
type IssuanceConfigControllerStoreIssuanceConfigurationResponse = IssuanceConfigControllerStoreIssuanceConfigurationResponses[keyof IssuanceConfigControllerStoreIssuanceConfigurationResponses];
|
|
2473
|
+
type CredentialConfigControllerGetConfigsData = {
|
|
2474
|
+
body?: never;
|
|
2475
|
+
path?: never;
|
|
2476
|
+
query?: never;
|
|
2477
|
+
url: "/issuer/credentials";
|
|
2478
|
+
};
|
|
2479
|
+
type CredentialConfigControllerGetConfigsResponses = {
|
|
2480
|
+
200: Array<CredentialConfig>;
|
|
2481
|
+
};
|
|
2482
|
+
type CredentialConfigControllerGetConfigsResponse = CredentialConfigControllerGetConfigsResponses[keyof CredentialConfigControllerGetConfigsResponses];
|
|
2483
|
+
type CredentialConfigControllerStoreCredentialConfigurationData = {
|
|
2484
|
+
body: CredentialConfigCreate;
|
|
2485
|
+
path?: never;
|
|
2486
|
+
query?: never;
|
|
2487
|
+
url: "/issuer/credentials";
|
|
2488
|
+
};
|
|
2489
|
+
type CredentialConfigControllerStoreCredentialConfigurationResponses = {
|
|
2490
|
+
201: {
|
|
2491
|
+
[key: string]: unknown;
|
|
2492
|
+
};
|
|
2493
|
+
};
|
|
2494
|
+
type CredentialConfigControllerStoreCredentialConfigurationResponse = CredentialConfigControllerStoreCredentialConfigurationResponses[keyof CredentialConfigControllerStoreCredentialConfigurationResponses];
|
|
2495
|
+
type CredentialConfigControllerDeleteIssuanceConfigurationData = {
|
|
2496
|
+
body?: never;
|
|
2497
|
+
path: {
|
|
2498
|
+
id: string;
|
|
2499
|
+
};
|
|
2500
|
+
query?: never;
|
|
2501
|
+
url: "/issuer/credentials/{id}";
|
|
2502
|
+
};
|
|
2503
|
+
type CredentialConfigControllerDeleteIssuanceConfigurationResponses = {
|
|
2504
|
+
200: unknown;
|
|
2505
|
+
};
|
|
2506
|
+
type CredentialConfigControllerGetConfigByIdData = {
|
|
2507
|
+
body?: never;
|
|
2508
|
+
path: {
|
|
2509
|
+
id: string;
|
|
2510
|
+
};
|
|
2511
|
+
query?: never;
|
|
2512
|
+
url: "/issuer/credentials/{id}";
|
|
2513
|
+
};
|
|
2514
|
+
type CredentialConfigControllerGetConfigByIdResponses = {
|
|
2515
|
+
200: CredentialConfig;
|
|
2516
|
+
};
|
|
2517
|
+
type CredentialConfigControllerGetConfigByIdResponse = CredentialConfigControllerGetConfigByIdResponses[keyof CredentialConfigControllerGetConfigByIdResponses];
|
|
2518
|
+
type CredentialConfigControllerUpdateCredentialConfigurationData = {
|
|
2519
|
+
body: CredentialConfigUpdate;
|
|
2520
|
+
path: {
|
|
2521
|
+
id: string;
|
|
2522
|
+
};
|
|
2523
|
+
query?: never;
|
|
2524
|
+
url: "/issuer/credentials/{id}";
|
|
2525
|
+
};
|
|
2526
|
+
type CredentialConfigControllerUpdateCredentialConfigurationResponses = {
|
|
2527
|
+
200: {
|
|
2528
|
+
[key: string]: unknown;
|
|
2529
|
+
};
|
|
2530
|
+
};
|
|
2531
|
+
type CredentialConfigControllerUpdateCredentialConfigurationResponse = CredentialConfigControllerUpdateCredentialConfigurationResponses[keyof CredentialConfigControllerUpdateCredentialConfigurationResponses];
|
|
2532
|
+
type PresentationManagementControllerConfigurationData = {
|
|
2533
|
+
body?: never;
|
|
2534
|
+
path?: never;
|
|
2535
|
+
query?: never;
|
|
2536
|
+
url: "/verifier/config";
|
|
2537
|
+
};
|
|
2538
|
+
type PresentationManagementControllerConfigurationResponses = {
|
|
2539
|
+
200: Array<PresentationConfig>;
|
|
2540
|
+
};
|
|
2541
|
+
type PresentationManagementControllerConfigurationResponse = PresentationManagementControllerConfigurationResponses[keyof PresentationManagementControllerConfigurationResponses];
|
|
2542
|
+
type PresentationManagementControllerStorePresentationConfigData = {
|
|
2543
|
+
body: PresentationConfigCreateDto;
|
|
2544
|
+
path?: never;
|
|
2545
|
+
query?: never;
|
|
2546
|
+
url: "/verifier/config";
|
|
2547
|
+
};
|
|
2548
|
+
type PresentationManagementControllerStorePresentationConfigResponses = {
|
|
2549
|
+
201: {
|
|
2550
|
+
[key: string]: unknown;
|
|
2551
|
+
};
|
|
2552
|
+
};
|
|
2553
|
+
type PresentationManagementControllerStorePresentationConfigResponse = PresentationManagementControllerStorePresentationConfigResponses[keyof PresentationManagementControllerStorePresentationConfigResponses];
|
|
2554
|
+
type PresentationManagementControllerDeleteConfigurationData = {
|
|
2555
|
+
body?: never;
|
|
2556
|
+
path: {
|
|
2557
|
+
id: string;
|
|
2558
|
+
};
|
|
2559
|
+
query?: never;
|
|
2560
|
+
url: "/verifier/config/{id}";
|
|
2561
|
+
};
|
|
2562
|
+
type PresentationManagementControllerDeleteConfigurationResponses = {
|
|
2563
|
+
200: unknown;
|
|
2564
|
+
};
|
|
2565
|
+
type PresentationManagementControllerGetConfigurationData = {
|
|
2566
|
+
body?: never;
|
|
2567
|
+
path: {
|
|
2568
|
+
id: string;
|
|
2569
|
+
};
|
|
2570
|
+
query?: never;
|
|
2571
|
+
url: "/verifier/config/{id}";
|
|
2572
|
+
};
|
|
2573
|
+
type PresentationManagementControllerGetConfigurationResponses = {
|
|
2574
|
+
200: PresentationConfig;
|
|
2575
|
+
};
|
|
2576
|
+
type PresentationManagementControllerGetConfigurationResponse = PresentationManagementControllerGetConfigurationResponses[keyof PresentationManagementControllerGetConfigurationResponses];
|
|
2577
|
+
type PresentationManagementControllerUpdateConfigurationData = {
|
|
2578
|
+
body: PresentationConfigUpdateDto;
|
|
2579
|
+
path: {
|
|
2580
|
+
id: string;
|
|
2581
|
+
};
|
|
2582
|
+
query?: never;
|
|
2583
|
+
url: "/verifier/config/{id}";
|
|
2584
|
+
};
|
|
2585
|
+
type PresentationManagementControllerUpdateConfigurationResponses = {
|
|
2586
|
+
200: {
|
|
2587
|
+
[key: string]: unknown;
|
|
2588
|
+
};
|
|
2589
|
+
};
|
|
2590
|
+
type PresentationManagementControllerUpdateConfigurationResponse = PresentationManagementControllerUpdateConfigurationResponses[keyof PresentationManagementControllerUpdateConfigurationResponses];
|
|
2591
|
+
type CacheControllerGetStatsData = {
|
|
2086
2592
|
body?: never;
|
|
2087
2593
|
path?: never;
|
|
2088
2594
|
query?: never;
|
|
2089
|
-
url: "/
|
|
2595
|
+
url: "/cache/stats";
|
|
2090
2596
|
};
|
|
2091
|
-
type
|
|
2092
|
-
|
|
2597
|
+
type CacheControllerGetStatsResponses = {
|
|
2598
|
+
/**
|
|
2599
|
+
* Cache statistics
|
|
2600
|
+
*/
|
|
2601
|
+
200: unknown;
|
|
2093
2602
|
};
|
|
2094
|
-
type
|
|
2095
|
-
|
|
2096
|
-
body: CredentialConfigCreate;
|
|
2603
|
+
type CacheControllerClearAllCachesData = {
|
|
2604
|
+
body?: never;
|
|
2097
2605
|
path?: never;
|
|
2098
2606
|
query?: never;
|
|
2099
|
-
url: "/
|
|
2607
|
+
url: "/cache";
|
|
2100
2608
|
};
|
|
2101
|
-
type
|
|
2102
|
-
|
|
2103
|
-
|
|
2104
|
-
|
|
2609
|
+
type CacheControllerClearAllCachesResponses = {
|
|
2610
|
+
/**
|
|
2611
|
+
* All caches cleared successfully
|
|
2612
|
+
*/
|
|
2613
|
+
204: void;
|
|
2105
2614
|
};
|
|
2106
|
-
type
|
|
2107
|
-
type
|
|
2615
|
+
type CacheControllerClearAllCachesResponse = CacheControllerClearAllCachesResponses[keyof CacheControllerClearAllCachesResponses];
|
|
2616
|
+
type CacheControllerClearTrustListCacheData = {
|
|
2108
2617
|
body?: never;
|
|
2109
|
-
path
|
|
2110
|
-
id: string;
|
|
2111
|
-
};
|
|
2618
|
+
path?: never;
|
|
2112
2619
|
query?: never;
|
|
2113
|
-
url: "/
|
|
2620
|
+
url: "/cache/trust-list";
|
|
2114
2621
|
};
|
|
2115
|
-
type
|
|
2116
|
-
|
|
2622
|
+
type CacheControllerClearTrustListCacheResponses = {
|
|
2623
|
+
/**
|
|
2624
|
+
* Trust list cache cleared successfully
|
|
2625
|
+
*/
|
|
2626
|
+
204: void;
|
|
2117
2627
|
};
|
|
2118
|
-
type
|
|
2628
|
+
type CacheControllerClearTrustListCacheResponse = CacheControllerClearTrustListCacheResponses[keyof CacheControllerClearTrustListCacheResponses];
|
|
2629
|
+
type CacheControllerClearStatusListCacheData = {
|
|
2119
2630
|
body?: never;
|
|
2120
|
-
path
|
|
2121
|
-
id: string;
|
|
2122
|
-
};
|
|
2631
|
+
path?: never;
|
|
2123
2632
|
query?: never;
|
|
2124
|
-
url: "/
|
|
2633
|
+
url: "/cache/status-list";
|
|
2125
2634
|
};
|
|
2126
|
-
type
|
|
2127
|
-
|
|
2635
|
+
type CacheControllerClearStatusListCacheResponses = {
|
|
2636
|
+
/**
|
|
2637
|
+
* Status list cache cleared successfully
|
|
2638
|
+
*/
|
|
2639
|
+
204: void;
|
|
2128
2640
|
};
|
|
2129
|
-
type
|
|
2130
|
-
type
|
|
2131
|
-
body
|
|
2641
|
+
type CacheControllerClearStatusListCacheResponse = CacheControllerClearStatusListCacheResponses[keyof CacheControllerClearStatusListCacheResponses];
|
|
2642
|
+
type Oid4VciControllerCredentialData = {
|
|
2643
|
+
body?: never;
|
|
2132
2644
|
path: {
|
|
2133
|
-
|
|
2645
|
+
tenantId: string;
|
|
2134
2646
|
};
|
|
2135
2647
|
query?: never;
|
|
2136
|
-
url: "/
|
|
2648
|
+
url: "/{tenantId}/vci/credential";
|
|
2137
2649
|
};
|
|
2138
|
-
type
|
|
2650
|
+
type Oid4VciControllerCredentialResponses = {
|
|
2139
2651
|
200: {
|
|
2140
2652
|
[key: string]: unknown;
|
|
2141
2653
|
};
|
|
2142
2654
|
};
|
|
2143
|
-
type
|
|
2144
|
-
type
|
|
2145
|
-
body
|
|
2655
|
+
type Oid4VciControllerCredentialResponse = Oid4VciControllerCredentialResponses[keyof Oid4VciControllerCredentialResponses];
|
|
2656
|
+
type Oid4VciControllerDeferredCredentialData = {
|
|
2657
|
+
body: DeferredCredentialRequestDto;
|
|
2146
2658
|
path: {
|
|
2147
2659
|
tenantId: string;
|
|
2148
2660
|
};
|
|
2149
2661
|
query?: never;
|
|
2150
|
-
url: "/{tenantId}/vci/
|
|
2662
|
+
url: "/{tenantId}/vci/deferred_credential";
|
|
2151
2663
|
};
|
|
2152
|
-
type
|
|
2664
|
+
type Oid4VciControllerDeferredCredentialResponses = {
|
|
2153
2665
|
200: unknown;
|
|
2154
2666
|
};
|
|
2155
2667
|
type Oid4VciControllerNotificationsData = {
|
|
@@ -2225,16 +2737,210 @@ type AuthorizeControllerTokenResponses = {
|
|
|
2225
2737
|
};
|
|
2226
2738
|
};
|
|
2227
2739
|
type AuthorizeControllerTokenResponse = AuthorizeControllerTokenResponses[keyof AuthorizeControllerTokenResponses];
|
|
2228
|
-
type
|
|
2229
|
-
|
|
2740
|
+
type InteractiveAuthorizationControllerInteractiveAuthorizationData = {
|
|
2741
|
+
/**
|
|
2742
|
+
* Interactive authorization request
|
|
2743
|
+
*/
|
|
2744
|
+
body: InteractiveAuthorizationRequestDto;
|
|
2745
|
+
headers: {
|
|
2746
|
+
origin: string;
|
|
2747
|
+
};
|
|
2230
2748
|
path: {
|
|
2231
2749
|
tenantId: string;
|
|
2232
2750
|
};
|
|
2233
2751
|
query?: never;
|
|
2234
|
-
url: "/{tenantId}/authorize/
|
|
2752
|
+
url: "/{tenantId}/authorize/interactive";
|
|
2235
2753
|
};
|
|
2236
|
-
type
|
|
2237
|
-
|
|
2754
|
+
type InteractiveAuthorizationControllerInteractiveAuthorizationErrors = {
|
|
2755
|
+
/**
|
|
2756
|
+
* Error response
|
|
2757
|
+
*/
|
|
2758
|
+
400: InteractiveAuthorizationErrorResponseDto;
|
|
2759
|
+
};
|
|
2760
|
+
type InteractiveAuthorizationControllerInteractiveAuthorizationError = InteractiveAuthorizationControllerInteractiveAuthorizationErrors[keyof InteractiveAuthorizationControllerInteractiveAuthorizationErrors];
|
|
2761
|
+
type InteractiveAuthorizationControllerInteractiveAuthorizationResponses = {
|
|
2762
|
+
/**
|
|
2763
|
+
* Authorization code response (successful completion)
|
|
2764
|
+
*/
|
|
2765
|
+
200: InteractiveAuthorizationCodeResponseDto;
|
|
2766
|
+
};
|
|
2767
|
+
type InteractiveAuthorizationControllerInteractiveAuthorizationResponse = InteractiveAuthorizationControllerInteractiveAuthorizationResponses[keyof InteractiveAuthorizationControllerInteractiveAuthorizationResponses];
|
|
2768
|
+
type InteractiveAuthorizationControllerCompleteWebAuthData = {
|
|
2769
|
+
body?: never;
|
|
2770
|
+
path: {
|
|
2771
|
+
authSession: string;
|
|
2772
|
+
tenantId: string;
|
|
2773
|
+
};
|
|
2774
|
+
query?: never;
|
|
2775
|
+
url: "/{tenantId}/authorize/interactive/complete-web-auth/{authSession}";
|
|
2776
|
+
};
|
|
2777
|
+
type InteractiveAuthorizationControllerCompleteWebAuthErrors = {
|
|
2778
|
+
/**
|
|
2779
|
+
* Auth session not found
|
|
2780
|
+
*/
|
|
2781
|
+
404: unknown;
|
|
2782
|
+
};
|
|
2783
|
+
type InteractiveAuthorizationControllerCompleteWebAuthResponses = {
|
|
2784
|
+
/**
|
|
2785
|
+
* Web authorization marked as completed
|
|
2786
|
+
*/
|
|
2787
|
+
200: unknown;
|
|
2788
|
+
};
|
|
2789
|
+
type ChainedAsControllerParData = {
|
|
2790
|
+
body: ChainedAsParRequestDto;
|
|
2791
|
+
headers?: {
|
|
2792
|
+
/**
|
|
2793
|
+
* DPoP proof JWT
|
|
2794
|
+
*/
|
|
2795
|
+
DPoP?: string;
|
|
2796
|
+
};
|
|
2797
|
+
path: {
|
|
2798
|
+
/**
|
|
2799
|
+
* Tenant identifier
|
|
2800
|
+
*/
|
|
2801
|
+
tenant: string;
|
|
2802
|
+
};
|
|
2803
|
+
query?: never;
|
|
2804
|
+
url: "/{tenant}/chained-as/par";
|
|
2805
|
+
};
|
|
2806
|
+
type ChainedAsControllerParErrors = {
|
|
2807
|
+
/**
|
|
2808
|
+
* Invalid request
|
|
2809
|
+
*/
|
|
2810
|
+
400: ChainedAsErrorResponseDto;
|
|
2811
|
+
};
|
|
2812
|
+
type ChainedAsControllerParError = ChainedAsControllerParErrors[keyof ChainedAsControllerParErrors];
|
|
2813
|
+
type ChainedAsControllerParResponses = {
|
|
2814
|
+
/**
|
|
2815
|
+
* PAR request accepted
|
|
2816
|
+
*/
|
|
2817
|
+
201: ChainedAsParResponseDto;
|
|
2818
|
+
};
|
|
2819
|
+
type ChainedAsControllerParResponse = ChainedAsControllerParResponses[keyof ChainedAsControllerParResponses];
|
|
2820
|
+
type ChainedAsControllerAuthorizeData = {
|
|
2821
|
+
body?: never;
|
|
2822
|
+
path: {
|
|
2823
|
+
/**
|
|
2824
|
+
* Tenant identifier
|
|
2825
|
+
*/
|
|
2826
|
+
tenant: string;
|
|
2827
|
+
};
|
|
2828
|
+
query: {
|
|
2829
|
+
/**
|
|
2830
|
+
* Client identifier
|
|
2831
|
+
*/
|
|
2832
|
+
client_id: string;
|
|
2833
|
+
/**
|
|
2834
|
+
* Request URI from PAR response
|
|
2835
|
+
*/
|
|
2836
|
+
request_uri: string;
|
|
2837
|
+
};
|
|
2838
|
+
url: "/{tenant}/chained-as/authorize";
|
|
2839
|
+
};
|
|
2840
|
+
type ChainedAsControllerAuthorizeErrors = {
|
|
2841
|
+
/**
|
|
2842
|
+
* Invalid request
|
|
2843
|
+
*/
|
|
2844
|
+
400: ChainedAsErrorResponseDto;
|
|
2845
|
+
};
|
|
2846
|
+
type ChainedAsControllerAuthorizeError = ChainedAsControllerAuthorizeErrors[keyof ChainedAsControllerAuthorizeErrors];
|
|
2847
|
+
type ChainedAsControllerAuthorizeResponses = {
|
|
2848
|
+
200: unknown;
|
|
2849
|
+
};
|
|
2850
|
+
type ChainedAsControllerCallbackData = {
|
|
2851
|
+
body?: never;
|
|
2852
|
+
path: {
|
|
2853
|
+
/**
|
|
2854
|
+
* Tenant identifier
|
|
2855
|
+
*/
|
|
2856
|
+
tenant: string;
|
|
2857
|
+
};
|
|
2858
|
+
query: {
|
|
2859
|
+
code: string;
|
|
2860
|
+
state: string;
|
|
2861
|
+
error: string;
|
|
2862
|
+
error_description: string;
|
|
2863
|
+
};
|
|
2864
|
+
url: "/{tenant}/chained-as/callback";
|
|
2865
|
+
};
|
|
2866
|
+
type ChainedAsControllerCallbackErrors = {
|
|
2867
|
+
/**
|
|
2868
|
+
* Invalid callback
|
|
2869
|
+
*/
|
|
2870
|
+
400: ChainedAsErrorResponseDto;
|
|
2871
|
+
};
|
|
2872
|
+
type ChainedAsControllerCallbackError = ChainedAsControllerCallbackErrors[keyof ChainedAsControllerCallbackErrors];
|
|
2873
|
+
type ChainedAsControllerCallbackResponses = {
|
|
2874
|
+
200: unknown;
|
|
2875
|
+
};
|
|
2876
|
+
type ChainedAsControllerTokenData = {
|
|
2877
|
+
body: ChainedAsTokenRequestDto;
|
|
2878
|
+
headers?: {
|
|
2879
|
+
/**
|
|
2880
|
+
* DPoP proof JWT
|
|
2881
|
+
*/
|
|
2882
|
+
DPoP?: string;
|
|
2883
|
+
};
|
|
2884
|
+
path: {
|
|
2885
|
+
/**
|
|
2886
|
+
* Tenant identifier
|
|
2887
|
+
*/
|
|
2888
|
+
tenant: string;
|
|
2889
|
+
};
|
|
2890
|
+
query?: never;
|
|
2891
|
+
url: "/{tenant}/chained-as/token";
|
|
2892
|
+
};
|
|
2893
|
+
type ChainedAsControllerTokenErrors = {
|
|
2894
|
+
/**
|
|
2895
|
+
* Invalid request
|
|
2896
|
+
*/
|
|
2897
|
+
400: ChainedAsErrorResponseDto;
|
|
2898
|
+
/**
|
|
2899
|
+
* Invalid authorization code
|
|
2900
|
+
*/
|
|
2901
|
+
401: ChainedAsErrorResponseDto;
|
|
2902
|
+
};
|
|
2903
|
+
type ChainedAsControllerTokenError = ChainedAsControllerTokenErrors[keyof ChainedAsControllerTokenErrors];
|
|
2904
|
+
type ChainedAsControllerTokenResponses = {
|
|
2905
|
+
/**
|
|
2906
|
+
* Token issued successfully
|
|
2907
|
+
*/
|
|
2908
|
+
200: ChainedAsTokenResponseDto;
|
|
2909
|
+
};
|
|
2910
|
+
type ChainedAsControllerTokenResponse = ChainedAsControllerTokenResponses[keyof ChainedAsControllerTokenResponses];
|
|
2911
|
+
type ChainedAsControllerJwksData = {
|
|
2912
|
+
body?: never;
|
|
2913
|
+
path: {
|
|
2914
|
+
/**
|
|
2915
|
+
* Tenant identifier
|
|
2916
|
+
*/
|
|
2917
|
+
tenant: string;
|
|
2918
|
+
};
|
|
2919
|
+
query?: never;
|
|
2920
|
+
url: "/{tenant}/chained-as/.well-known/jwks.json";
|
|
2921
|
+
};
|
|
2922
|
+
type ChainedAsControllerJwksResponses = {
|
|
2923
|
+
/**
|
|
2924
|
+
* JWKS document
|
|
2925
|
+
*/
|
|
2926
|
+
200: unknown;
|
|
2927
|
+
};
|
|
2928
|
+
type ChainedAsControllerGetMetadataData = {
|
|
2929
|
+
body?: never;
|
|
2930
|
+
path: {
|
|
2931
|
+
/**
|
|
2932
|
+
* Tenant identifier
|
|
2933
|
+
*/
|
|
2934
|
+
tenant: string;
|
|
2935
|
+
};
|
|
2936
|
+
query?: never;
|
|
2937
|
+
url: "/{tenant}/chained-as/.well-known/oauth-authorization-server";
|
|
2938
|
+
};
|
|
2939
|
+
type ChainedAsControllerGetMetadataResponses = {
|
|
2940
|
+
/**
|
|
2941
|
+
* OAuth AS metadata
|
|
2942
|
+
*/
|
|
2943
|
+
200: unknown;
|
|
2238
2944
|
};
|
|
2239
2945
|
type CredentialOfferControllerGetOfferData = {
|
|
2240
2946
|
body: OfferRequestDto;
|
|
@@ -2249,6 +2955,48 @@ type CredentialOfferControllerGetOfferResponses = {
|
|
|
2249
2955
|
201: OfferResponse;
|
|
2250
2956
|
};
|
|
2251
2957
|
type CredentialOfferControllerGetOfferResponse = CredentialOfferControllerGetOfferResponses[keyof CredentialOfferControllerGetOfferResponses];
|
|
2958
|
+
type DeferredControllerCompleteDeferredData = {
|
|
2959
|
+
body: CompleteDeferredDto;
|
|
2960
|
+
path: {
|
|
2961
|
+
transactionId: string;
|
|
2962
|
+
};
|
|
2963
|
+
query?: never;
|
|
2964
|
+
url: "/issuer/deferred/{transactionId}/complete";
|
|
2965
|
+
};
|
|
2966
|
+
type DeferredControllerCompleteDeferredErrors = {
|
|
2967
|
+
/**
|
|
2968
|
+
* Transaction not found
|
|
2969
|
+
*/
|
|
2970
|
+
404: unknown;
|
|
2971
|
+
};
|
|
2972
|
+
type DeferredControllerCompleteDeferredResponses = {
|
|
2973
|
+
/**
|
|
2974
|
+
* Transaction completed successfully
|
|
2975
|
+
*/
|
|
2976
|
+
200: DeferredOperationResponse;
|
|
2977
|
+
};
|
|
2978
|
+
type DeferredControllerCompleteDeferredResponse = DeferredControllerCompleteDeferredResponses[keyof DeferredControllerCompleteDeferredResponses];
|
|
2979
|
+
type DeferredControllerFailDeferredData = {
|
|
2980
|
+
body?: FailDeferredDto;
|
|
2981
|
+
path: {
|
|
2982
|
+
transactionId: string;
|
|
2983
|
+
};
|
|
2984
|
+
query?: never;
|
|
2985
|
+
url: "/issuer/deferred/{transactionId}/fail";
|
|
2986
|
+
};
|
|
2987
|
+
type DeferredControllerFailDeferredErrors = {
|
|
2988
|
+
/**
|
|
2989
|
+
* Transaction not found
|
|
2990
|
+
*/
|
|
2991
|
+
404: unknown;
|
|
2992
|
+
};
|
|
2993
|
+
type DeferredControllerFailDeferredResponses = {
|
|
2994
|
+
/**
|
|
2995
|
+
* Transaction marked as failed
|
|
2996
|
+
*/
|
|
2997
|
+
200: DeferredOperationResponse;
|
|
2998
|
+
};
|
|
2999
|
+
type DeferredControllerFailDeferredResponse = DeferredControllerFailDeferredResponses[keyof DeferredControllerFailDeferredResponses];
|
|
2252
3000
|
type Oid4VciMetadataControllerVctData = {
|
|
2253
3001
|
body?: never;
|
|
2254
3002
|
path: {
|
|
@@ -2360,6 +3108,18 @@ type Oid4VpControllerGetPostRequestWithSessionResponses = {
|
|
|
2360
3108
|
201: string;
|
|
2361
3109
|
};
|
|
2362
3110
|
type Oid4VpControllerGetPostRequestWithSessionResponse = Oid4VpControllerGetPostRequestWithSessionResponses[keyof Oid4VpControllerGetPostRequestWithSessionResponses];
|
|
3111
|
+
type Oid4VpControllerGetRequestNoRedirectWithSessionData = {
|
|
3112
|
+
body?: never;
|
|
3113
|
+
path: {
|
|
3114
|
+
session: string;
|
|
3115
|
+
};
|
|
3116
|
+
query?: never;
|
|
3117
|
+
url: "/{session}/oid4vp/request/no-redirect";
|
|
3118
|
+
};
|
|
3119
|
+
type Oid4VpControllerGetRequestNoRedirectWithSessionResponses = {
|
|
3120
|
+
200: string;
|
|
3121
|
+
};
|
|
3122
|
+
type Oid4VpControllerGetRequestNoRedirectWithSessionResponse = Oid4VpControllerGetRequestNoRedirectWithSessionResponses[keyof Oid4VpControllerGetRequestNoRedirectWithSessionResponses];
|
|
2363
3123
|
type Oid4VpControllerGetResponseData = {
|
|
2364
3124
|
body: AuthorizationResponse;
|
|
2365
3125
|
path: {
|
|
@@ -2480,65 +3240,6 @@ type RegistrarControllerCreateAccessCertificateResponses = {
|
|
|
2480
3240
|
};
|
|
2481
3241
|
};
|
|
2482
3242
|
type RegistrarControllerCreateAccessCertificateResponse = RegistrarControllerCreateAccessCertificateResponses[keyof RegistrarControllerCreateAccessCertificateResponses];
|
|
2483
|
-
type PresentationManagementControllerConfigurationData = {
|
|
2484
|
-
body?: never;
|
|
2485
|
-
path?: never;
|
|
2486
|
-
query?: never;
|
|
2487
|
-
url: "/verifier/config";
|
|
2488
|
-
};
|
|
2489
|
-
type PresentationManagementControllerConfigurationResponses = {
|
|
2490
|
-
200: Array<PresentationConfig>;
|
|
2491
|
-
};
|
|
2492
|
-
type PresentationManagementControllerConfigurationResponse = PresentationManagementControllerConfigurationResponses[keyof PresentationManagementControllerConfigurationResponses];
|
|
2493
|
-
type PresentationManagementControllerStorePresentationConfigData = {
|
|
2494
|
-
body: PresentationConfigCreateDto;
|
|
2495
|
-
path?: never;
|
|
2496
|
-
query?: never;
|
|
2497
|
-
url: "/verifier/config";
|
|
2498
|
-
};
|
|
2499
|
-
type PresentationManagementControllerStorePresentationConfigResponses = {
|
|
2500
|
-
201: {
|
|
2501
|
-
[key: string]: unknown;
|
|
2502
|
-
};
|
|
2503
|
-
};
|
|
2504
|
-
type PresentationManagementControllerStorePresentationConfigResponse = PresentationManagementControllerStorePresentationConfigResponses[keyof PresentationManagementControllerStorePresentationConfigResponses];
|
|
2505
|
-
type PresentationManagementControllerDeleteConfigurationData = {
|
|
2506
|
-
body?: never;
|
|
2507
|
-
path: {
|
|
2508
|
-
id: string;
|
|
2509
|
-
};
|
|
2510
|
-
query?: never;
|
|
2511
|
-
url: "/verifier/config/{id}";
|
|
2512
|
-
};
|
|
2513
|
-
type PresentationManagementControllerDeleteConfigurationResponses = {
|
|
2514
|
-
200: unknown;
|
|
2515
|
-
};
|
|
2516
|
-
type PresentationManagementControllerGetConfigurationData = {
|
|
2517
|
-
body?: never;
|
|
2518
|
-
path: {
|
|
2519
|
-
id: string;
|
|
2520
|
-
};
|
|
2521
|
-
query?: never;
|
|
2522
|
-
url: "/verifier/config/{id}";
|
|
2523
|
-
};
|
|
2524
|
-
type PresentationManagementControllerGetConfigurationResponses = {
|
|
2525
|
-
200: PresentationConfig;
|
|
2526
|
-
};
|
|
2527
|
-
type PresentationManagementControllerGetConfigurationResponse = PresentationManagementControllerGetConfigurationResponses[keyof PresentationManagementControllerGetConfigurationResponses];
|
|
2528
|
-
type PresentationManagementControllerUpdateConfigurationData = {
|
|
2529
|
-
body: PresentationConfigUpdateDto;
|
|
2530
|
-
path: {
|
|
2531
|
-
id: string;
|
|
2532
|
-
};
|
|
2533
|
-
query?: never;
|
|
2534
|
-
url: "/verifier/config/{id}";
|
|
2535
|
-
};
|
|
2536
|
-
type PresentationManagementControllerUpdateConfigurationResponses = {
|
|
2537
|
-
200: {
|
|
2538
|
-
[key: string]: unknown;
|
|
2539
|
-
};
|
|
2540
|
-
};
|
|
2541
|
-
type PresentationManagementControllerUpdateConfigurationResponse = PresentationManagementControllerUpdateConfigurationResponses[keyof PresentationManagementControllerUpdateConfigurationResponses];
|
|
2542
3243
|
type TrustListControllerGetAllTrustListsData = {
|
|
2543
3244
|
body?: never;
|
|
2544
3245
|
path?: never;
|
|
@@ -2684,4 +3385,4 @@ type StorageControllerDownloadResponses = {
|
|
|
2684
3385
|
200: unknown;
|
|
2685
3386
|
};
|
|
2686
3387
|
|
|
2687
|
-
export type { ClientControllerCreateClientData as $, AllowListPolicy as A, AuthorizeControllerTokenResponses as B, AuthorizeQueries as C, CertControllerAddCertificateData as D, CertControllerAddCertificateResponse as E, CertControllerAddCertificateResponses as F, CertControllerDeleteCertificateData as G, CertControllerDeleteCertificateResponses as H, CertControllerExportConfigData as I, CertControllerExportConfigResponse as J, CertControllerExportConfigResponses as K, CertControllerGetCertificateData as L, CertControllerGetCertificateResponse as M, CertControllerGetCertificateResponses as N, CertControllerGetCertificatesData as O, CertControllerGetCertificatesResponse as P, CertControllerGetCertificatesResponses as Q, CertControllerUpdateCertificateData as R, Session as S, CertControllerUpdateCertificateResponses as T, CertEntity as U, CertImportDto as V, CertResponseDto as W, CertUpdateDto as X, CertUsageEntity as Y, Claim as Z, ClaimsQuery as _, ApiKeyConfig as a, IssuanceConfigControllerGetIssuanceConfigurationsResponse as a$, ClientControllerCreateClientResponse as a0, ClientControllerCreateClientResponses as a1, ClientControllerDeleteClientData as a2, ClientControllerDeleteClientResponses as a3, ClientControllerGetClientData as a4, ClientControllerGetClientResponse as a5, ClientControllerGetClientResponses as a6, ClientControllerGetClientSecretData as a7, ClientControllerGetClientSecretResponse as a8, ClientControllerGetClientSecretResponses as a9, CredentialConfigControllerStoreCredentialConfigurationResponses as aA, CredentialConfigControllerUpdateCredentialConfigurationData as aB, CredentialConfigControllerUpdateCredentialConfigurationResponse as aC, CredentialConfigControllerUpdateCredentialConfigurationResponses as aD, CredentialConfigCreate as aE, CredentialConfigUpdate as aF, CredentialOfferControllerGetOfferData as aG, CredentialOfferControllerGetOfferResponse as aH, CredentialOfferControllerGetOfferResponses as aI, CredentialQuery as aJ, CredentialSetQuery as aK, Dcql as aL, Display as aM, DisplayImage as aN, DisplayInfo as aO, DisplayLogo as aP, EcPublic as aQ, EmbeddedDisclosurePolicy as aR, FileUploadDto as aS, HealthControllerCheckData as aT, HealthControllerCheckError as aU, HealthControllerCheckErrors as aV, HealthControllerCheckResponse as aW, HealthControllerCheckResponses as aX, ImportTenantDto as aY, IssuanceConfig as aZ, IssuanceConfigControllerGetIssuanceConfigurationsData as a_, ClientControllerGetClientsData as aa, ClientControllerGetClientsResponse as ab, ClientControllerGetClientsResponses as ac, ClientControllerUpdateClientData as ad, ClientControllerUpdateClientResponse as ae, ClientControllerUpdateClientResponses as af, ClientCredentialsDto as ag, ClientEntity as ah, ClientOptions as ai, ClientSecretResponseDto as aj, CreateAccessCertificateDto as ak, CreateClientDto as al, CreateRegistrarConfigDto as am, CreateStatusListDto as an, CreateTenantDto as ao, CredentialConfig as ap, CredentialConfigControllerDeleteIssuanceConfigurationData as aq, CredentialConfigControllerDeleteIssuanceConfigurationResponses as ar, CredentialConfigControllerGetConfigByIdData as as, CredentialConfigControllerGetConfigByIdResponse as at, CredentialConfigControllerGetConfigByIdResponses as au, CredentialConfigControllerGetConfigsData as av, CredentialConfigControllerGetConfigsResponse as aw, CredentialConfigControllerGetConfigsResponses as ax, CredentialConfigControllerStoreCredentialConfigurationData as ay, CredentialConfigControllerStoreCredentialConfigurationResponse as az, AppControllerMainData as b, PresentationManagementControllerUpdateConfigurationResponse as b$, IssuanceConfigControllerGetIssuanceConfigurationsResponses as b0, IssuanceConfigControllerStoreIssuanceConfigurationData as b1, IssuanceConfigControllerStoreIssuanceConfigurationResponse as b2, IssuanceConfigControllerStoreIssuanceConfigurationResponses as b3, IssuanceDto as b4, IssuerMetadataCredentialConfig as b5, JwksResponseDto as b6, Key as b7, KeyControllerAddKeyData as b8, KeyControllerAddKeyResponses as b9, Oid4VpControllerGetPostRequestWithSessionResponse as bA, Oid4VpControllerGetPostRequestWithSessionResponses as bB, Oid4VpControllerGetRequestWithSessionData as bC, Oid4VpControllerGetRequestWithSessionResponse as bD, Oid4VpControllerGetRequestWithSessionResponses as bE, Oid4VpControllerGetResponseData as bF, Oid4VpControllerGetResponseResponse as bG, Oid4VpControllerGetResponseResponses as bH, ParResponseDto as bI, PolicyCredential as bJ, PresentationAttachment as bK, PresentationConfig as bL, PresentationConfigCreateDto as bM, PresentationConfigUpdateDto as bN, PresentationDuringIssuanceConfig as bO, PresentationManagementControllerConfigurationData as bP, PresentationManagementControllerConfigurationResponse as bQ, PresentationManagementControllerConfigurationResponses as bR, PresentationManagementControllerDeleteConfigurationData as bS, PresentationManagementControllerDeleteConfigurationResponses as bT, PresentationManagementControllerGetConfigurationData as bU, PresentationManagementControllerGetConfigurationResponse as bV, PresentationManagementControllerGetConfigurationResponses as bW, PresentationManagementControllerStorePresentationConfigData as bX, PresentationManagementControllerStorePresentationConfigResponse as bY, PresentationManagementControllerStorePresentationConfigResponses as bZ, PresentationManagementControllerUpdateConfigurationData as b_, KeyControllerDeleteKeyData as ba, KeyControllerDeleteKeyResponses as bb, KeyControllerGetKeyData as bc, KeyControllerGetKeyResponse as bd, KeyControllerGetKeyResponses as be, KeyControllerGetKeysData as bf, KeyControllerGetKeysResponse as bg, KeyControllerGetKeysResponses as bh, KeyControllerUpdateKeyData as bi, KeyControllerUpdateKeyResponses as bj, KeyEntity as bk, KeyImportDto as bl, NoneTrustPolicy as bm, NotificationRequestDto as bn, OfferRequestDto as bo, OfferResponse as bp, Oid4VciControllerCredentialData as bq, Oid4VciControllerCredentialResponses as br, Oid4VciControllerNonceData as bs, Oid4VciControllerNonceResponses as bt, Oid4VciControllerNotificationsData as bu, Oid4VciControllerNotificationsResponses as bv, Oid4VciMetadataControllerVctData as bw, Oid4VciMetadataControllerVctResponse as bx, Oid4VciMetadataControllerVctResponses as by, Oid4VpControllerGetPostRequestWithSessionData as bz, AppControllerMainResponses as c, StatusListControllerGetStatusListAggregationResponses as c$, PresentationManagementControllerUpdateConfigurationResponses as c0, PresentationRequest as c1, PrometheusControllerIndexData as c2, PrometheusControllerIndexResponses as c3, RegistrarConfigEntity as c4, RegistrarControllerCreateAccessCertificateData as c5, RegistrarControllerCreateAccessCertificateErrors as c6, RegistrarControllerCreateAccessCertificateResponse as c7, RegistrarControllerCreateAccessCertificateResponses as c8, RegistrarControllerCreateConfigData as c9, SessionControllerDeleteSessionData as cA, SessionControllerDeleteSessionResponses as cB, SessionControllerGetAllSessionsData as cC, SessionControllerGetAllSessionsResponse as cD, SessionControllerGetAllSessionsResponses as cE, SessionControllerGetSessionData as cF, SessionControllerGetSessionResponse as cG, SessionControllerGetSessionResponses as cH, SessionControllerRevokeAllData as cI, SessionControllerRevokeAllResponses as cJ, SessionStorageConfig as cK, StatusListAggregationDto as cL, StatusListConfig as cM, StatusListConfigControllerGetConfigData as cN, StatusListConfigControllerGetConfigResponse as cO, StatusListConfigControllerGetConfigResponses as cP, StatusListConfigControllerResetConfigData as cQ, StatusListConfigControllerResetConfigResponse as cR, StatusListConfigControllerResetConfigResponses as cS, StatusListConfigControllerUpdateConfigData as cT, StatusListConfigControllerUpdateConfigResponse as cU, StatusListConfigControllerUpdateConfigResponses as cV, StatusListControllerGetListData as cW, StatusListControllerGetListResponse as cX, StatusListControllerGetListResponses as cY, StatusListControllerGetStatusListAggregationData as cZ, StatusListControllerGetStatusListAggregationResponse as c_, RegistrarControllerCreateConfigErrors as ca, RegistrarControllerCreateConfigResponse as cb, RegistrarControllerCreateConfigResponses as cc, RegistrarControllerDeleteConfigData as cd, RegistrarControllerDeleteConfigResponse as ce, RegistrarControllerDeleteConfigResponses as cf, RegistrarControllerGetConfigData as cg, RegistrarControllerGetConfigErrors as ch, RegistrarControllerGetConfigResponse as ci, RegistrarControllerGetConfigResponses as cj, RegistrarControllerUpdateConfigData as ck, RegistrarControllerUpdateConfigErrors as cl, RegistrarControllerUpdateConfigResponse as cm, RegistrarControllerUpdateConfigResponses as cn, RegistrationCertificateRequest as co, RoleDto as cp, RootOfTrustPolicy as cq, SchemaResponse as cr, SessionConfigControllerGetConfigData as cs, SessionConfigControllerGetConfigResponse as ct, SessionConfigControllerGetConfigResponses as cu, SessionConfigControllerResetConfigData as cv, SessionConfigControllerResetConfigResponses as cw, SessionConfigControllerUpdateConfigData as cx, SessionConfigControllerUpdateConfigResponse as cy, SessionConfigControllerUpdateConfigResponses as cz, AttestationBasedPolicy as d, TrustListControllerUpdateTrustListResponses as d$, StatusListImportDto as d0, StatusListManagementControllerCreateListData as d1, StatusListManagementControllerCreateListResponse as d2, StatusListManagementControllerCreateListResponses as d3, StatusListManagementControllerDeleteListData as d4, StatusListManagementControllerDeleteListResponse as d5, StatusListManagementControllerDeleteListResponses as d6, StatusListManagementControllerGetListData as d7, StatusListManagementControllerGetListResponse as d8, StatusListManagementControllerGetListResponses as d9, TenantControllerUpdateTenantResponses as dA, TenantEntity as dB, TokenResponse as dC, TransactionData as dD, TrustList as dE, TrustListControllerCreateTrustListData as dF, TrustListControllerCreateTrustListResponse as dG, TrustListControllerCreateTrustListResponses as dH, TrustListControllerDeleteTrustListData as dI, TrustListControllerDeleteTrustListResponses as dJ, TrustListControllerExportTrustListData as dK, TrustListControllerExportTrustListResponse as dL, TrustListControllerExportTrustListResponses as dM, TrustListControllerGetAllTrustListsData as dN, TrustListControllerGetAllTrustListsResponse as dO, TrustListControllerGetAllTrustListsResponses as dP, TrustListControllerGetTrustListData as dQ, TrustListControllerGetTrustListResponse as dR, TrustListControllerGetTrustListResponses as dS, TrustListControllerGetTrustListVersionData as dT, TrustListControllerGetTrustListVersionResponse as dU, TrustListControllerGetTrustListVersionResponses as dV, TrustListControllerGetTrustListVersionsData as dW, TrustListControllerGetTrustListVersionsResponse as dX, TrustListControllerGetTrustListVersionsResponses as dY, TrustListControllerUpdateTrustListData as dZ, TrustListControllerUpdateTrustListResponse as d_, StatusListManagementControllerGetListsData as da, StatusListManagementControllerGetListsResponse as db, StatusListManagementControllerGetListsResponses as dc, StatusListManagementControllerUpdateListData as dd, StatusListManagementControllerUpdateListResponse as de, StatusListManagementControllerUpdateListResponses as df, StatusListResponseDto as dg, StatusUpdateDto as dh, StorageControllerDownloadData as di, StorageControllerDownloadResponses as dj, StorageControllerUploadData as dk, StorageControllerUploadResponse as dl, StorageControllerUploadResponses as dm, TenantControllerDeleteTenantData as dn, TenantControllerDeleteTenantResponses as dp, TenantControllerGetTenantData as dq, TenantControllerGetTenantResponse as dr, TenantControllerGetTenantResponses as ds, TenantControllerGetTenantsData as dt, TenantControllerGetTenantsResponse as du, TenantControllerGetTenantsResponses as dv, TenantControllerInitTenantData as dw, TenantControllerInitTenantResponses as dx, TenantControllerUpdateTenantData as dy, TenantControllerUpdateTenantResponse as dz, AuthControllerGetGlobalJwksData as e, TrustListCreateDto as e0, TrustListPublicControllerGetTrustListJwtData as e1, TrustListPublicControllerGetTrustListJwtResponse as e2, TrustListPublicControllerGetTrustListJwtResponses as e3, TrustListVersion as e4, TrustedAuthorityQuery as e5, UpdateClientDto as e6, UpdateKeyDto as e7, UpdateRegistrarConfigDto as e8, UpdateSessionConfigDto as e9, UpdateStatusListConfigDto as ea, UpdateStatusListDto as eb, UpdateTenantDto as ec, Vct as ed, VerifierOfferControllerGetOfferData as ee, VerifierOfferControllerGetOfferResponse as ef, VerifierOfferControllerGetOfferResponses as eg, WebHookAuthConfigHeader as eh, WebHookAuthConfigNone as ei, WebhookConfig as ej, WellKnownControllerAuthzMetadata0Data as ek, WellKnownControllerAuthzMetadata0Responses as el, WellKnownControllerAuthzMetadata1Data as em, WellKnownControllerAuthzMetadata1Responses as en, WellKnownControllerGetJwks0Data as eo, WellKnownControllerGetJwks0Response as ep, WellKnownControllerGetJwks0Responses as eq, WellKnownControllerGetJwks1Data as er, WellKnownControllerGetJwks1Response as es, WellKnownControllerGetJwks1Responses as et, WellKnownControllerIssuerMetadata0Data as eu, WellKnownControllerIssuerMetadata0Response as ev, WellKnownControllerIssuerMetadata0Responses as ew, WellKnownControllerIssuerMetadata1Data as ex, WellKnownControllerIssuerMetadata1Response as ey, WellKnownControllerIssuerMetadata1Responses as ez, AuthControllerGetGlobalJwksResponses as f, AuthControllerGetOAuth2TokenData as g, AuthControllerGetOAuth2TokenErrors as h, AuthControllerGetOAuth2TokenResponse as i, AuthControllerGetOAuth2TokenResponses as j, AuthControllerGetOidcDiscoveryData as k, AuthControllerGetOidcDiscoveryResponses as l, AuthenticationMethodAuth as m, AuthenticationMethodNone as n, AuthenticationMethodPresentation as o, AuthenticationUrlConfig as p, AuthorizationResponse as q, AuthorizeControllerAuthorizationChallengeEndpointData as r, AuthorizeControllerAuthorizationChallengeEndpointResponses as s, AuthorizeControllerAuthorizeData as t, AuthorizeControllerAuthorizeResponses as u, AuthorizeControllerParData as v, AuthorizeControllerParResponse as w, AuthorizeControllerParResponses as x, AuthorizeControllerTokenData as y, AuthorizeControllerTokenResponse as z };
|
|
3388
|
+
export type { CertControllerGetCertificatesResponse as $, AllowListPolicy as A, AuthorizeQueries as B, CacheControllerClearAllCachesData as C, CacheControllerClearAllCachesResponse as D, CacheControllerClearAllCachesResponses as E, CacheControllerClearStatusListCacheData as F, CacheControllerClearStatusListCacheResponse as G, HealthControllerCheckResponse as H, CacheControllerClearStatusListCacheResponses as I, CacheControllerClearTrustListCacheData as J, CacheControllerClearTrustListCacheResponse as K, CacheControllerClearTrustListCacheResponses as L, CacheControllerGetStatsData as M, CacheControllerGetStatsResponses as N, CertControllerAddCertificateData as O, CertControllerAddCertificateResponse as P, CertControllerAddCertificateResponses as Q, CertControllerDeleteCertificateData as R, Session as S, CertControllerDeleteCertificateResponses as T, CertControllerExportConfigData as U, CertControllerExportConfigResponse as V, CertControllerExportConfigResponses as W, CertControllerGetCertificateData as X, CertControllerGetCertificateResponse as Y, CertControllerGetCertificateResponses as Z, CertControllerGetCertificatesData as _, HealthControllerCheckError as a, CompleteDeferredDto as a$, CertControllerGetCertificatesResponses as a0, CertControllerUpdateCertificateData as a1, CertControllerUpdateCertificateResponses as a2, CertEntity as a3, CertImportDto as a4, CertResponseDto as a5, CertUpdateDto as a6, CertUsageEntity as a7, ChainedAsConfig as a8, ChainedAsControllerAuthorizeData as a9, ChainedAsTokenResponseDto as aA, Claim as aB, ClaimsQuery as aC, ClientControllerCreateClientData as aD, ClientControllerCreateClientResponse as aE, ClientControllerCreateClientResponses as aF, ClientControllerDeleteClientData as aG, ClientControllerDeleteClientResponses as aH, ClientControllerGetClientData as aI, ClientControllerGetClientResponse as aJ, ClientControllerGetClientResponses as aK, ClientControllerGetClientSecretData as aL, ClientControllerGetClientSecretResponse as aM, ClientControllerGetClientSecretResponses as aN, ClientControllerGetClientsData as aO, ClientControllerGetClientsResponse as aP, ClientControllerGetClientsResponses as aQ, ClientControllerRotateClientSecretData as aR, ClientControllerRotateClientSecretResponse as aS, ClientControllerRotateClientSecretResponses as aT, ClientControllerUpdateClientData as aU, ClientControllerUpdateClientResponse as aV, ClientControllerUpdateClientResponses as aW, ClientCredentialsDto as aX, ClientEntity as aY, ClientOptions as aZ, ClientSecretResponseDto as a_, ChainedAsControllerAuthorizeError as aa, ChainedAsControllerAuthorizeErrors as ab, ChainedAsControllerAuthorizeResponses as ac, ChainedAsControllerCallbackData as ad, ChainedAsControllerCallbackError as ae, ChainedAsControllerCallbackErrors as af, ChainedAsControllerCallbackResponses as ag, ChainedAsControllerGetMetadataData as ah, ChainedAsControllerGetMetadataResponses as ai, ChainedAsControllerJwksData as aj, ChainedAsControllerJwksResponses as ak, ChainedAsControllerParData as al, ChainedAsControllerParError as am, ChainedAsControllerParErrors as an, ChainedAsControllerParResponse as ao, ChainedAsControllerParResponses as ap, ChainedAsControllerTokenData as aq, ChainedAsControllerTokenError as ar, ChainedAsControllerTokenErrors as as, ChainedAsControllerTokenResponse as at, ChainedAsControllerTokenResponses as au, ChainedAsErrorResponseDto as av, ChainedAsParRequestDto as aw, ChainedAsParResponseDto as ax, ChainedAsTokenConfig as ay, ChainedAsTokenRequestDto as az, ApiKeyConfig as b, IssuanceConfig as b$, CreateAccessCertificateDto as b0, CreateClientDto as b1, CreateRegistrarConfigDto as b2, CreateStatusListDto as b3, CreateTenantDto as b4, CredentialConfig as b5, CredentialConfigControllerDeleteIssuanceConfigurationData as b6, CredentialConfigControllerDeleteIssuanceConfigurationResponses as b7, CredentialConfigControllerGetConfigByIdData as b8, CredentialConfigControllerGetConfigByIdResponse as b9, DeferredCredentialRequestDto as bA, DeferredOperationResponse as bB, Display as bC, DisplayImage as bD, DisplayInfo as bE, DisplayLogo as bF, EcPublic as bG, EmbeddedDisclosurePolicy as bH, FailDeferredDto as bI, FileUploadDto as bJ, HealthControllerCheckData as bK, HealthControllerCheckErrors as bL, HealthControllerCheckResponses as bM, IaeActionOpenid4VpPresentation as bN, IaeActionRedirectToWeb as bO, ImportTenantDto as bP, InteractiveAuthorizationCodeResponseDto as bQ, InteractiveAuthorizationControllerCompleteWebAuthData as bR, InteractiveAuthorizationControllerCompleteWebAuthErrors as bS, InteractiveAuthorizationControllerCompleteWebAuthResponses as bT, InteractiveAuthorizationControllerInteractiveAuthorizationData as bU, InteractiveAuthorizationControllerInteractiveAuthorizationError as bV, InteractiveAuthorizationControllerInteractiveAuthorizationErrors as bW, InteractiveAuthorizationControllerInteractiveAuthorizationResponse as bX, InteractiveAuthorizationControllerInteractiveAuthorizationResponses as bY, InteractiveAuthorizationErrorResponseDto as bZ, InteractiveAuthorizationRequestDto as b_, CredentialConfigControllerGetConfigByIdResponses as ba, CredentialConfigControllerGetConfigsData as bb, CredentialConfigControllerGetConfigsResponse as bc, CredentialConfigControllerGetConfigsResponses as bd, CredentialConfigControllerStoreCredentialConfigurationData as be, CredentialConfigControllerStoreCredentialConfigurationResponse as bf, CredentialConfigControllerStoreCredentialConfigurationResponses as bg, CredentialConfigControllerUpdateCredentialConfigurationData as bh, CredentialConfigControllerUpdateCredentialConfigurationResponse as bi, CredentialConfigControllerUpdateCredentialConfigurationResponses as bj, CredentialConfigCreate as bk, CredentialConfigUpdate as bl, CredentialOfferControllerGetOfferData as bm, CredentialOfferControllerGetOfferResponse as bn, CredentialOfferControllerGetOfferResponses as bo, CredentialQuery as bp, CredentialSetQuery as bq, Dcql as br, DeferredControllerCompleteDeferredData as bs, DeferredControllerCompleteDeferredErrors as bt, DeferredControllerCompleteDeferredResponse as bu, DeferredControllerCompleteDeferredResponses as bv, DeferredControllerFailDeferredData as bw, DeferredControllerFailDeferredErrors as bx, DeferredControllerFailDeferredResponse as by, DeferredControllerFailDeferredResponses as bz, AppControllerMainData as c, PresentationManagementControllerDeleteConfigurationResponses as c$, IssuanceConfigControllerGetIssuanceConfigurationsData as c0, IssuanceConfigControllerGetIssuanceConfigurationsResponse as c1, IssuanceConfigControllerGetIssuanceConfigurationsResponses as c2, IssuanceConfigControllerStoreIssuanceConfigurationData as c3, IssuanceConfigControllerStoreIssuanceConfigurationResponse as c4, IssuanceConfigControllerStoreIssuanceConfigurationResponses as c5, IssuanceDto as c6, IssuerMetadataCredentialConfig as c7, JwksResponseDto as c8, Key as c9, Oid4VciControllerNotificationsResponses as cA, Oid4VciMetadataControllerVctData as cB, Oid4VciMetadataControllerVctResponse as cC, Oid4VciMetadataControllerVctResponses as cD, Oid4VpControllerGetPostRequestWithSessionData as cE, Oid4VpControllerGetPostRequestWithSessionResponse as cF, Oid4VpControllerGetPostRequestWithSessionResponses as cG, Oid4VpControllerGetRequestNoRedirectWithSessionData as cH, Oid4VpControllerGetRequestNoRedirectWithSessionResponse as cI, Oid4VpControllerGetRequestNoRedirectWithSessionResponses as cJ, Oid4VpControllerGetRequestWithSessionData as cK, Oid4VpControllerGetRequestWithSessionResponse as cL, Oid4VpControllerGetRequestWithSessionResponses as cM, Oid4VpControllerGetResponseData as cN, Oid4VpControllerGetResponseResponse as cO, Oid4VpControllerGetResponseResponses as cP, ParResponseDto as cQ, PolicyCredential as cR, PresentationAttachment as cS, PresentationConfig as cT, PresentationConfigCreateDto as cU, PresentationConfigUpdateDto as cV, PresentationDuringIssuanceConfig as cW, PresentationManagementControllerConfigurationData as cX, PresentationManagementControllerConfigurationResponse as cY, PresentationManagementControllerConfigurationResponses as cZ, PresentationManagementControllerDeleteConfigurationData as c_, KeyControllerAddKeyData as ca, KeyControllerAddKeyResponses as cb, KeyControllerDeleteKeyData as cc, KeyControllerDeleteKeyResponses as cd, KeyControllerGetKeyData as ce, KeyControllerGetKeyResponse as cf, KeyControllerGetKeyResponses as cg, KeyControllerGetKeysData as ch, KeyControllerGetKeysResponse as ci, KeyControllerGetKeysResponses as cj, KeyControllerUpdateKeyData as ck, KeyControllerUpdateKeyResponses as cl, KeyEntity as cm, KeyImportDto as cn, NoneTrustPolicy as co, NotificationRequestDto as cp, OfferRequestDto as cq, OfferResponse as cr, Oid4VciControllerCredentialData as cs, Oid4VciControllerCredentialResponse as ct, Oid4VciControllerCredentialResponses as cu, Oid4VciControllerDeferredCredentialData as cv, Oid4VciControllerDeferredCredentialResponses as cw, Oid4VciControllerNonceData as cx, Oid4VciControllerNonceResponses as cy, Oid4VciControllerNotificationsData as cz, AppControllerMainResponses as d, StatusListConfigControllerResetConfigResponses as d$, PresentationManagementControllerGetConfigurationData as d0, PresentationManagementControllerGetConfigurationResponse as d1, PresentationManagementControllerGetConfigurationResponses as d2, PresentationManagementControllerStorePresentationConfigData as d3, PresentationManagementControllerStorePresentationConfigResponse as d4, PresentationManagementControllerStorePresentationConfigResponses as d5, PresentationManagementControllerUpdateConfigurationData as d6, PresentationManagementControllerUpdateConfigurationResponse as d7, PresentationManagementControllerUpdateConfigurationResponses as d8, PresentationRequest as d9, SessionConfigControllerGetConfigResponse as dA, SessionConfigControllerGetConfigResponses as dB, SessionConfigControllerResetConfigData as dC, SessionConfigControllerResetConfigResponses as dD, SessionConfigControllerUpdateConfigData as dE, SessionConfigControllerUpdateConfigResponse as dF, SessionConfigControllerUpdateConfigResponses as dG, SessionControllerDeleteSessionData as dH, SessionControllerDeleteSessionResponses as dI, SessionControllerGetAllSessionsData as dJ, SessionControllerGetAllSessionsResponse as dK, SessionControllerGetAllSessionsResponses as dL, SessionControllerGetSessionData as dM, SessionControllerGetSessionResponse as dN, SessionControllerGetSessionResponses as dO, SessionControllerRevokeAllData as dP, SessionControllerRevokeAllResponses as dQ, SessionEventsControllerSubscribeToSessionEventsData as dR, SessionEventsControllerSubscribeToSessionEventsResponses as dS, SessionStorageConfig as dT, StatusListAggregationDto as dU, StatusListConfig as dV, StatusListConfigControllerGetConfigData as dW, StatusListConfigControllerGetConfigResponse as dX, StatusListConfigControllerGetConfigResponses as dY, StatusListConfigControllerResetConfigData as dZ, StatusListConfigControllerResetConfigResponse as d_, RegistrarConfigEntity as da, RegistrarControllerCreateAccessCertificateData as db, RegistrarControllerCreateAccessCertificateErrors as dc, RegistrarControllerCreateAccessCertificateResponse as dd, RegistrarControllerCreateAccessCertificateResponses as de, RegistrarControllerCreateConfigData as df, RegistrarControllerCreateConfigErrors as dg, RegistrarControllerCreateConfigResponse as dh, RegistrarControllerCreateConfigResponses as di, RegistrarControllerDeleteConfigData as dj, RegistrarControllerDeleteConfigResponse as dk, RegistrarControllerDeleteConfigResponses as dl, RegistrarControllerGetConfigData as dm, RegistrarControllerGetConfigErrors as dn, RegistrarControllerGetConfigResponse as dp, RegistrarControllerGetConfigResponses as dq, RegistrarControllerUpdateConfigData as dr, RegistrarControllerUpdateConfigErrors as ds, RegistrarControllerUpdateConfigResponse as dt, RegistrarControllerUpdateConfigResponses as du, RegistrationCertificateRequest as dv, RoleDto as dw, RootOfTrustPolicy as dx, SchemaResponse as dy, SessionConfigControllerGetConfigData as dz, AttestationBasedPolicy as e, TrustListControllerGetTrustListResponses as e$, StatusListConfigControllerUpdateConfigData as e0, StatusListConfigControllerUpdateConfigResponse as e1, StatusListConfigControllerUpdateConfigResponses as e2, StatusListControllerGetListData as e3, StatusListControllerGetListResponse as e4, StatusListControllerGetListResponses as e5, StatusListControllerGetStatusListAggregationData as e6, StatusListControllerGetStatusListAggregationResponse as e7, StatusListControllerGetStatusListAggregationResponses as e8, StatusListImportDto as e9, TenantControllerGetTenantResponses as eA, TenantControllerGetTenantsData as eB, TenantControllerGetTenantsResponse as eC, TenantControllerGetTenantsResponses as eD, TenantControllerInitTenantData as eE, TenantControllerInitTenantResponse as eF, TenantControllerInitTenantResponses as eG, TenantControllerUpdateTenantData as eH, TenantControllerUpdateTenantResponse as eI, TenantControllerUpdateTenantResponses as eJ, TenantEntity as eK, TokenResponse as eL, TransactionData as eM, TrustList as eN, TrustListControllerCreateTrustListData as eO, TrustListControllerCreateTrustListResponse as eP, TrustListControllerCreateTrustListResponses as eQ, TrustListControllerDeleteTrustListData as eR, TrustListControllerDeleteTrustListResponses as eS, TrustListControllerExportTrustListData as eT, TrustListControllerExportTrustListResponse as eU, TrustListControllerExportTrustListResponses as eV, TrustListControllerGetAllTrustListsData as eW, TrustListControllerGetAllTrustListsResponse as eX, TrustListControllerGetAllTrustListsResponses as eY, TrustListControllerGetTrustListData as eZ, TrustListControllerGetTrustListResponse as e_, StatusListManagementControllerCreateListData as ea, StatusListManagementControllerCreateListResponse as eb, StatusListManagementControllerCreateListResponses as ec, StatusListManagementControllerDeleteListData as ed, StatusListManagementControllerDeleteListResponse as ee, StatusListManagementControllerDeleteListResponses as ef, StatusListManagementControllerGetListData as eg, StatusListManagementControllerGetListResponse as eh, StatusListManagementControllerGetListResponses as ei, StatusListManagementControllerGetListsData as ej, StatusListManagementControllerGetListsResponse as ek, StatusListManagementControllerGetListsResponses as el, StatusListManagementControllerUpdateListData as em, StatusListManagementControllerUpdateListResponse as en, StatusListManagementControllerUpdateListResponses as eo, StatusListResponseDto as ep, StatusUpdateDto as eq, StorageControllerDownloadData as er, StorageControllerDownloadResponses as es, StorageControllerUploadData as et, StorageControllerUploadResponse as eu, StorageControllerUploadResponses as ev, TenantControllerDeleteTenantData as ew, TenantControllerDeleteTenantResponses as ex, TenantControllerGetTenantData as ey, TenantControllerGetTenantResponse as ez, AuthControllerGetGlobalJwksData as f, TrustListControllerGetTrustListVersionData as f0, TrustListControllerGetTrustListVersionResponse as f1, TrustListControllerGetTrustListVersionResponses as f2, TrustListControllerGetTrustListVersionsData as f3, TrustListControllerGetTrustListVersionsResponse as f4, TrustListControllerGetTrustListVersionsResponses as f5, TrustListControllerUpdateTrustListData as f6, TrustListControllerUpdateTrustListResponse as f7, TrustListControllerUpdateTrustListResponses as f8, TrustListCreateDto as f9, WellKnownControllerGetJwks0Responses as fA, WellKnownControllerGetJwks1Data as fB, WellKnownControllerGetJwks1Response as fC, WellKnownControllerGetJwks1Responses as fD, WellKnownControllerIssuerMetadata0Data as fE, WellKnownControllerIssuerMetadata0Response as fF, WellKnownControllerIssuerMetadata0Responses as fG, WellKnownControllerIssuerMetadata1Data as fH, WellKnownControllerIssuerMetadata1Response as fI, WellKnownControllerIssuerMetadata1Responses as fJ, TrustListPublicControllerGetTrustListJwtData as fa, TrustListPublicControllerGetTrustListJwtResponse as fb, TrustListPublicControllerGetTrustListJwtResponses as fc, TrustListVersion as fd, TrustedAuthorityQuery as fe, UpdateClientDto as ff, UpdateKeyDto as fg, UpdateRegistrarConfigDto as fh, UpdateSessionConfigDto as fi, UpdateStatusListConfigDto as fj, UpdateStatusListDto as fk, UpdateTenantDto as fl, UpstreamOidcConfig as fm, Vct as fn, VerifierOfferControllerGetOfferData as fo, VerifierOfferControllerGetOfferResponse as fp, VerifierOfferControllerGetOfferResponses as fq, WebHookAuthConfigHeader as fr, WebHookAuthConfigNone as fs, WebhookConfig as ft, WellKnownControllerAuthzMetadata0Data as fu, WellKnownControllerAuthzMetadata0Responses as fv, WellKnownControllerAuthzMetadata1Data as fw, WellKnownControllerAuthzMetadata1Responses as fx, WellKnownControllerGetJwks0Data as fy, WellKnownControllerGetJwks0Response as fz, AuthControllerGetGlobalJwksResponses as g, AuthControllerGetOAuth2TokenData as h, AuthControllerGetOAuth2TokenErrors as i, AuthControllerGetOAuth2TokenResponse as j, AuthControllerGetOAuth2TokenResponses as k, AuthControllerGetOidcDiscoveryData as l, AuthControllerGetOidcDiscoveryResponses as m, AuthenticationMethodAuth as n, AuthenticationMethodNone as o, AuthenticationMethodPresentation as p, AuthenticationUrlConfig as q, AuthorizationResponse as r, AuthorizeControllerAuthorizeData as s, AuthorizeControllerAuthorizeResponses as t, AuthorizeControllerParData as u, AuthorizeControllerParResponse as v, AuthorizeControllerParResponses as w, AuthorizeControllerTokenData as x, AuthorizeControllerTokenResponse as y, AuthorizeControllerTokenResponses as z };
|