@pagopa/io-react-native-wallet 0.27.0 → 0.28.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/lib/commonjs/client/generated/wallet-provider.js +27 -19
- package/lib/commonjs/client/generated/wallet-provider.js.map +1 -1
- package/lib/commonjs/credential/issuance/04-complete-user-authorization.js +5 -5
- package/lib/commonjs/credential/issuance/04-complete-user-authorization.js.map +1 -1
- package/lib/commonjs/credential/issuance/05-authorize-access.js +3 -4
- package/lib/commonjs/credential/issuance/05-authorize-access.js.map +1 -1
- package/lib/commonjs/credential/issuance/06-obtain-credential.js +2 -3
- package/lib/commonjs/credential/issuance/06-obtain-credential.js.map +1 -1
- package/lib/commonjs/credential/issuance/README.md +2 -2
- package/lib/commonjs/credential/presentation/03-get-request-object.js +2 -3
- package/lib/commonjs/credential/presentation/03-get-request-object.js.map +1 -1
- package/lib/commonjs/credential/presentation/04-send-authorization-response.js +4 -5
- package/lib/commonjs/credential/presentation/04-send-authorization-response.js.map +1 -1
- package/lib/commonjs/credential/status/02-status-attestation.js +2 -3
- package/lib/commonjs/credential/status/02-status-attestation.js.map +1 -1
- package/lib/commonjs/trust/chain.js +35 -50
- package/lib/commonjs/trust/chain.js.map +1 -1
- package/lib/commonjs/trust/index.js +139 -16
- package/lib/commonjs/trust/index.js.map +1 -1
- package/lib/commonjs/trust/types.js +13 -37
- package/lib/commonjs/trust/types.js.map +1 -1
- package/lib/commonjs/trust/utils.js +36 -0
- package/lib/commonjs/trust/utils.js.map +1 -0
- package/lib/commonjs/utils/crypto.js +2 -3
- package/lib/commonjs/utils/crypto.js.map +1 -1
- package/lib/commonjs/utils/par.js +3 -4
- package/lib/commonjs/utils/par.js.map +1 -1
- package/lib/commonjs/wallet-instance/index.js +10 -0
- package/lib/commonjs/wallet-instance/index.js.map +1 -1
- package/lib/module/client/generated/wallet-provider.js +22 -15
- package/lib/module/client/generated/wallet-provider.js.map +1 -1
- package/lib/module/credential/issuance/04-complete-user-authorization.js +5 -5
- package/lib/module/credential/issuance/04-complete-user-authorization.js.map +1 -1
- package/lib/module/credential/issuance/05-authorize-access.js +3 -3
- package/lib/module/credential/issuance/05-authorize-access.js.map +1 -1
- package/lib/module/credential/issuance/06-obtain-credential.js +2 -2
- package/lib/module/credential/issuance/06-obtain-credential.js.map +1 -1
- package/lib/module/credential/issuance/README.md +2 -2
- package/lib/module/credential/presentation/03-get-request-object.js +2 -2
- package/lib/module/credential/presentation/03-get-request-object.js.map +1 -1
- package/lib/module/credential/presentation/04-send-authorization-response.js +4 -4
- package/lib/module/credential/presentation/04-send-authorization-response.js.map +1 -1
- package/lib/module/credential/status/02-status-attestation.js +2 -2
- package/lib/module/credential/status/02-status-attestation.js.map +1 -1
- package/lib/module/trust/chain.js +32 -46
- package/lib/module/trust/chain.js.map +1 -1
- package/lib/module/trust/index.js +139 -18
- package/lib/module/trust/index.js.map +1 -1
- package/lib/module/trust/types.js +11 -36
- package/lib/module/trust/types.js.map +1 -1
- package/lib/module/trust/utils.js +28 -0
- package/lib/module/trust/utils.js.map +1 -0
- package/lib/module/utils/crypto.js +2 -2
- package/lib/module/utils/crypto.js.map +1 -1
- package/lib/module/utils/par.js +3 -3
- package/lib/module/utils/par.js.map +1 -1
- package/lib/module/wallet-instance/index.js +9 -0
- package/lib/module/wallet-instance/index.js.map +1 -1
- package/lib/typescript/client/generated/wallet-provider.d.ts +91 -54
- package/lib/typescript/client/generated/wallet-provider.d.ts.map +1 -1
- package/lib/typescript/credential/status/types.d.ts +6 -6
- package/lib/typescript/sd-jwt/index.d.ts +12 -12
- package/lib/typescript/sd-jwt/types.d.ts +6 -6
- package/lib/typescript/trust/chain.d.ts +4 -9
- package/lib/typescript/trust/chain.d.ts.map +1 -1
- package/lib/typescript/trust/index.d.ts +109 -95
- package/lib/typescript/trust/index.d.ts.map +1 -1
- package/lib/typescript/trust/types.d.ts +845 -542
- package/lib/typescript/trust/types.d.ts.map +1 -1
- package/lib/typescript/trust/utils.d.ts +12 -0
- package/lib/typescript/trust/utils.d.ts.map +1 -0
- package/lib/typescript/wallet-instance/index.d.ts +8 -0
- package/lib/typescript/wallet-instance/index.d.ts.map +1 -1
- package/lib/typescript/wallet-instance-attestation/types.d.ts +24 -24
- package/package.json +9 -3
- package/src/client/generated/wallet-provider.ts +28 -19
- package/src/credential/issuance/04-complete-user-authorization.ts +5 -5
- package/src/credential/issuance/05-authorize-access.ts +3 -3
- package/src/credential/issuance/06-obtain-credential.ts +2 -2
- package/src/credential/issuance/README.md +2 -2
- package/src/credential/presentation/03-get-request-object.ts +2 -2
- package/src/credential/presentation/04-send-authorization-response.ts +4 -4
- package/src/credential/status/02-status-attestation.ts +2 -2
- package/src/trust/chain.ts +46 -62
- package/src/trust/index.ts +185 -20
- package/src/trust/types.ts +10 -27
- package/src/trust/utils.ts +32 -0
- package/src/utils/crypto.ts +2 -2
- package/src/utils/par.ts +3 -3
- package/src/wallet-instance/index.ts +13 -0
@@ -150,7 +150,7 @@ export declare const EntityStatement: z.ZodObject<{
|
|
150
150
|
x5u?: string | undefined;
|
151
151
|
}[];
|
152
152
|
}>;
|
153
|
-
trust_marks: z.ZodArray<z.ZodObject<{
|
153
|
+
trust_marks: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
154
154
|
id: z.ZodString;
|
155
155
|
trust_mark: z.ZodString;
|
156
156
|
}, "strip", z.ZodTypeAny, {
|
@@ -159,7 +159,7 @@ export declare const EntityStatement: z.ZodObject<{
|
|
159
159
|
}, {
|
160
160
|
id: string;
|
161
161
|
trust_mark: string;
|
162
|
-
}>, "many"
|
162
|
+
}>, "many">>;
|
163
163
|
iat: z.ZodNumber;
|
164
164
|
exp: z.ZodNumber;
|
165
165
|
}, "strip", z.ZodTypeAny, {
|
@@ -193,10 +193,10 @@ export declare const EntityStatement: z.ZodObject<{
|
|
193
193
|
x5u?: string | undefined;
|
194
194
|
}[];
|
195
195
|
};
|
196
|
-
trust_marks
|
196
|
+
trust_marks?: {
|
197
197
|
id: string;
|
198
198
|
trust_mark: string;
|
199
|
-
}[];
|
199
|
+
}[] | undefined;
|
200
200
|
}, {
|
201
201
|
iss: string;
|
202
202
|
sub: string;
|
@@ -228,17 +228,12 @@ export declare const EntityStatement: z.ZodObject<{
|
|
228
228
|
x5u?: string | undefined;
|
229
229
|
}[];
|
230
230
|
};
|
231
|
-
trust_marks
|
231
|
+
trust_marks?: {
|
232
232
|
id: string;
|
233
233
|
trust_mark: string;
|
234
|
-
}[];
|
234
|
+
}[] | undefined;
|
235
235
|
}>;
|
236
236
|
}, "strip", z.ZodTypeAny, {
|
237
|
-
header: {
|
238
|
-
alg: string;
|
239
|
-
kid: string;
|
240
|
-
typ: "entity-statement+jwt";
|
241
|
-
};
|
242
237
|
payload: {
|
243
238
|
iss: string;
|
244
239
|
sub: string;
|
@@ -270,17 +265,17 @@ export declare const EntityStatement: z.ZodObject<{
|
|
270
265
|
x5u?: string | undefined;
|
271
266
|
}[];
|
272
267
|
};
|
273
|
-
trust_marks
|
268
|
+
trust_marks?: {
|
274
269
|
id: string;
|
275
270
|
trust_mark: string;
|
276
|
-
}[];
|
271
|
+
}[] | undefined;
|
277
272
|
};
|
278
|
-
}, {
|
279
273
|
header: {
|
280
274
|
alg: string;
|
281
275
|
kid: string;
|
282
276
|
typ: "entity-statement+jwt";
|
283
277
|
};
|
278
|
+
}, {
|
284
279
|
payload: {
|
285
280
|
iss: string;
|
286
281
|
sub: string;
|
@@ -312,10 +307,15 @@ export declare const EntityStatement: z.ZodObject<{
|
|
312
307
|
x5u?: string | undefined;
|
313
308
|
}[];
|
314
309
|
};
|
315
|
-
trust_marks
|
310
|
+
trust_marks?: {
|
316
311
|
id: string;
|
317
312
|
trust_mark: string;
|
318
|
-
}[];
|
313
|
+
}[] | undefined;
|
314
|
+
};
|
315
|
+
header: {
|
316
|
+
alg: string;
|
317
|
+
kid: string;
|
318
|
+
typ: "entity-statement+jwt";
|
319
319
|
};
|
320
320
|
}>;
|
321
321
|
export type EntityConfigurationHeader = z.infer<typeof EntityConfigurationHeader>;
|
@@ -360,6 +360,9 @@ export declare const TrustAnchorEntityConfiguration: z.ZodObject<{
|
|
360
360
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
361
361
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
362
362
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
363
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
364
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
365
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
363
366
|
organization_name: z.ZodOptional<z.ZodString>;
|
364
367
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
365
368
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -371,6 +374,9 @@ export declare const TrustAnchorEntityConfiguration: z.ZodObject<{
|
|
371
374
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
372
375
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
373
376
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
377
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
378
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
379
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
374
380
|
organization_name: z.ZodOptional<z.ZodString>;
|
375
381
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
376
382
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -382,6 +388,9 @@ export declare const TrustAnchorEntityConfiguration: z.ZodObject<{
|
|
382
388
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
383
389
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
384
390
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
391
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
392
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
393
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
385
394
|
organization_name: z.ZodOptional<z.ZodString>;
|
386
395
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
387
396
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -395,6 +404,9 @@ export declare const TrustAnchorEntityConfiguration: z.ZodObject<{
|
|
395
404
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
396
405
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
397
406
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
407
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
408
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
409
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
398
410
|
organization_name: z.ZodOptional<z.ZodString>;
|
399
411
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
400
412
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -406,6 +418,9 @@ export declare const TrustAnchorEntityConfiguration: z.ZodObject<{
|
|
406
418
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
407
419
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
408
420
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
421
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
422
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
423
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
409
424
|
organization_name: z.ZodOptional<z.ZodString>;
|
410
425
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
411
426
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -417,6 +432,9 @@ export declare const TrustAnchorEntityConfiguration: z.ZodObject<{
|
|
417
432
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
418
433
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
419
434
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
435
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
436
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
437
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
420
438
|
organization_name: z.ZodOptional<z.ZodString>;
|
421
439
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
422
440
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -430,6 +448,9 @@ export declare const TrustAnchorEntityConfiguration: z.ZodObject<{
|
|
430
448
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
431
449
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
432
450
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
451
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
452
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
453
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
433
454
|
organization_name: z.ZodOptional<z.ZodString>;
|
434
455
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
435
456
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -441,6 +462,9 @@ export declare const TrustAnchorEntityConfiguration: z.ZodObject<{
|
|
441
462
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
442
463
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
443
464
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
465
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
466
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
467
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
444
468
|
organization_name: z.ZodOptional<z.ZodString>;
|
445
469
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
446
470
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -452,6 +476,9 @@ export declare const TrustAnchorEntityConfiguration: z.ZodObject<{
|
|
452
476
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
453
477
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
454
478
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
479
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
480
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
481
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
455
482
|
organization_name: z.ZodOptional<z.ZodString>;
|
456
483
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
457
484
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -594,6 +621,9 @@ export declare const TrustAnchorEntityConfiguration: z.ZodObject<{
|
|
594
621
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
595
622
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
596
623
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
624
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
625
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
626
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
597
627
|
organization_name: z.ZodOptional<z.ZodString>;
|
598
628
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
599
629
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -605,6 +635,9 @@ export declare const TrustAnchorEntityConfiguration: z.ZodObject<{
|
|
605
635
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
606
636
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
607
637
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
638
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
639
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
640
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
608
641
|
organization_name: z.ZodOptional<z.ZodString>;
|
609
642
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
610
643
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -616,6 +649,9 @@ export declare const TrustAnchorEntityConfiguration: z.ZodObject<{
|
|
616
649
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
617
650
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
618
651
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
652
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
653
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
654
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
619
655
|
organization_name: z.ZodOptional<z.ZodString>;
|
620
656
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
621
657
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -629,6 +665,9 @@ export declare const TrustAnchorEntityConfiguration: z.ZodObject<{
|
|
629
665
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
630
666
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
631
667
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
668
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
669
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
670
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
632
671
|
organization_name: z.ZodOptional<z.ZodString>;
|
633
672
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
634
673
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -640,6 +679,9 @@ export declare const TrustAnchorEntityConfiguration: z.ZodObject<{
|
|
640
679
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
641
680
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
642
681
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
682
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
683
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
684
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
643
685
|
organization_name: z.ZodOptional<z.ZodString>;
|
644
686
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
645
687
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -651,6 +693,9 @@ export declare const TrustAnchorEntityConfiguration: z.ZodObject<{
|
|
651
693
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
652
694
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
653
695
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
696
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
697
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
698
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
654
699
|
organization_name: z.ZodOptional<z.ZodString>;
|
655
700
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
656
701
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -664,6 +709,9 @@ export declare const TrustAnchorEntityConfiguration: z.ZodObject<{
|
|
664
709
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
665
710
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
666
711
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
712
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
713
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
714
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
667
715
|
organization_name: z.ZodOptional<z.ZodString>;
|
668
716
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
669
717
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -675,6 +723,9 @@ export declare const TrustAnchorEntityConfiguration: z.ZodObject<{
|
|
675
723
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
676
724
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
677
725
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
726
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
727
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
728
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
678
729
|
organization_name: z.ZodOptional<z.ZodString>;
|
679
730
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
680
731
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -686,6 +737,9 @@ export declare const TrustAnchorEntityConfiguration: z.ZodObject<{
|
|
686
737
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
687
738
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
688
739
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
740
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
741
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
742
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
689
743
|
organization_name: z.ZodOptional<z.ZodString>;
|
690
744
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
691
745
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -828,6 +882,9 @@ export declare const TrustAnchorEntityConfiguration: z.ZodObject<{
|
|
828
882
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
829
883
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
830
884
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
885
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
886
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
887
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
831
888
|
organization_name: z.ZodOptional<z.ZodString>;
|
832
889
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
833
890
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -839,6 +896,9 @@ export declare const TrustAnchorEntityConfiguration: z.ZodObject<{
|
|
839
896
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
840
897
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
841
898
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
899
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
900
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
901
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
842
902
|
organization_name: z.ZodOptional<z.ZodString>;
|
843
903
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
844
904
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -850,6 +910,9 @@ export declare const TrustAnchorEntityConfiguration: z.ZodObject<{
|
|
850
910
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
851
911
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
852
912
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
913
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
914
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
915
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
853
916
|
organization_name: z.ZodOptional<z.ZodString>;
|
854
917
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
855
918
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -863,6 +926,9 @@ export declare const TrustAnchorEntityConfiguration: z.ZodObject<{
|
|
863
926
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
864
927
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
865
928
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
929
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
930
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
931
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
866
932
|
organization_name: z.ZodOptional<z.ZodString>;
|
867
933
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
868
934
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -874,6 +940,9 @@ export declare const TrustAnchorEntityConfiguration: z.ZodObject<{
|
|
874
940
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
875
941
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
876
942
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
943
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
944
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
945
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
877
946
|
organization_name: z.ZodOptional<z.ZodString>;
|
878
947
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
879
948
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -885,6 +954,9 @@ export declare const TrustAnchorEntityConfiguration: z.ZodObject<{
|
|
885
954
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
886
955
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
887
956
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
957
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
958
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
959
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
888
960
|
organization_name: z.ZodOptional<z.ZodString>;
|
889
961
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
890
962
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -898,6 +970,9 @@ export declare const TrustAnchorEntityConfiguration: z.ZodObject<{
|
|
898
970
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
899
971
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
900
972
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
973
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
974
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
975
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
901
976
|
organization_name: z.ZodOptional<z.ZodString>;
|
902
977
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
903
978
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -909,6 +984,9 @@ export declare const TrustAnchorEntityConfiguration: z.ZodObject<{
|
|
909
984
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
910
985
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
911
986
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
987
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
988
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
989
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
912
990
|
organization_name: z.ZodOptional<z.ZodString>;
|
913
991
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
914
992
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -920,6 +998,9 @@ export declare const TrustAnchorEntityConfiguration: z.ZodObject<{
|
|
920
998
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
921
999
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
922
1000
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1001
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
1002
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
1003
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
923
1004
|
organization_name: z.ZodOptional<z.ZodString>;
|
924
1005
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
925
1006
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -1051,11 +1132,6 @@ export declare const TrustAnchorEntityConfiguration: z.ZodObject<{
|
|
1051
1132
|
}>;
|
1052
1133
|
}, z.ZodTypeAny, "passthrough">>;
|
1053
1134
|
}, "strip", z.ZodTypeAny, {
|
1054
|
-
header: {
|
1055
|
-
alg: string;
|
1056
|
-
kid: string;
|
1057
|
-
typ: "entity-statement+jwt";
|
1058
|
-
};
|
1059
1135
|
payload: {
|
1060
1136
|
iss: string;
|
1061
1137
|
sub: string;
|
@@ -1094,6 +1170,9 @@ export declare const TrustAnchorEntityConfiguration: z.ZodObject<{
|
|
1094
1170
|
federation_resolve_endpoint?: string | undefined;
|
1095
1171
|
federation_trust_mark_status_endpoint?: string | undefined;
|
1096
1172
|
federation_trust_mark_list_endpoint?: string | undefined;
|
1173
|
+
federation_trust_mark_endpoint?: string | undefined;
|
1174
|
+
federation_historical_keys_endpoint?: string | undefined;
|
1175
|
+
endpoint_auth_signing_alg_values_supported?: string | undefined;
|
1097
1176
|
organization_name?: string | undefined;
|
1098
1177
|
homepage_uri?: string | undefined;
|
1099
1178
|
policy_uri?: string | undefined;
|
@@ -1109,12 +1188,12 @@ export declare const TrustAnchorEntityConfiguration: z.ZodObject<{
|
|
1109
1188
|
} & {
|
1110
1189
|
[k: string]: unknown;
|
1111
1190
|
};
|
1112
|
-
}, {
|
1113
1191
|
header: {
|
1114
1192
|
alg: string;
|
1115
1193
|
kid: string;
|
1116
1194
|
typ: "entity-statement+jwt";
|
1117
1195
|
};
|
1196
|
+
}, {
|
1118
1197
|
payload: {
|
1119
1198
|
iss: string;
|
1120
1199
|
sub: string;
|
@@ -1153,6 +1232,9 @@ export declare const TrustAnchorEntityConfiguration: z.ZodObject<{
|
|
1153
1232
|
federation_resolve_endpoint?: string | undefined;
|
1154
1233
|
federation_trust_mark_status_endpoint?: string | undefined;
|
1155
1234
|
federation_trust_mark_list_endpoint?: string | undefined;
|
1235
|
+
federation_trust_mark_endpoint?: string | undefined;
|
1236
|
+
federation_historical_keys_endpoint?: string | undefined;
|
1237
|
+
endpoint_auth_signing_alg_values_supported?: string | undefined;
|
1156
1238
|
organization_name?: string | undefined;
|
1157
1239
|
homepage_uri?: string | undefined;
|
1158
1240
|
policy_uri?: string | undefined;
|
@@ -1168,6 +1250,11 @@ export declare const TrustAnchorEntityConfiguration: z.ZodObject<{
|
|
1168
1250
|
} & {
|
1169
1251
|
[k: string]: unknown;
|
1170
1252
|
};
|
1253
|
+
header: {
|
1254
|
+
alg: string;
|
1255
|
+
kid: string;
|
1256
|
+
typ: "entity-statement+jwt";
|
1257
|
+
};
|
1171
1258
|
}>;
|
1172
1259
|
export type CredentialIssuerEntityConfiguration = z.infer<typeof CredentialIssuerEntityConfiguration>;
|
1173
1260
|
export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.ZodObject<{
|
@@ -1197,6 +1284,9 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
1197
1284
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1198
1285
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1199
1286
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1287
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
1288
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
1289
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
1200
1290
|
organization_name: z.ZodOptional<z.ZodString>;
|
1201
1291
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
1202
1292
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -1208,6 +1298,9 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
1208
1298
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1209
1299
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1210
1300
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1301
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
1302
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
1303
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
1211
1304
|
organization_name: z.ZodOptional<z.ZodString>;
|
1212
1305
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
1213
1306
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -1219,6 +1312,9 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
1219
1312
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1220
1313
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1221
1314
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1315
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
1316
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
1317
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
1222
1318
|
organization_name: z.ZodOptional<z.ZodString>;
|
1223
1319
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
1224
1320
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -1232,6 +1328,9 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
1232
1328
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1233
1329
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1234
1330
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1331
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
1332
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
1333
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
1235
1334
|
organization_name: z.ZodOptional<z.ZodString>;
|
1236
1335
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
1237
1336
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -1243,6 +1342,9 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
1243
1342
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1244
1343
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1245
1344
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1345
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
1346
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
1347
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
1246
1348
|
organization_name: z.ZodOptional<z.ZodString>;
|
1247
1349
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
1248
1350
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -1254,6 +1356,9 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
1254
1356
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1255
1357
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1256
1358
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1359
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
1360
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
1361
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
1257
1362
|
organization_name: z.ZodOptional<z.ZodString>;
|
1258
1363
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
1259
1364
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -1267,6 +1372,9 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
1267
1372
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1268
1373
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1269
1374
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1375
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
1376
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
1377
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
1270
1378
|
organization_name: z.ZodOptional<z.ZodString>;
|
1271
1379
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
1272
1380
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -1278,6 +1386,9 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
1278
1386
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1279
1387
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1280
1388
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1389
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
1390
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
1391
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
1281
1392
|
organization_name: z.ZodOptional<z.ZodString>;
|
1282
1393
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
1283
1394
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -1289,6 +1400,9 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
1289
1400
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1290
1401
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1291
1402
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1403
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
1404
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
1405
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
1292
1406
|
organization_name: z.ZodOptional<z.ZodString>;
|
1293
1407
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
1294
1408
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -1431,6 +1545,9 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
1431
1545
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1432
1546
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1433
1547
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1548
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
1549
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
1550
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
1434
1551
|
organization_name: z.ZodOptional<z.ZodString>;
|
1435
1552
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
1436
1553
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -1442,6 +1559,9 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
1442
1559
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1443
1560
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1444
1561
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1562
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
1563
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
1564
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
1445
1565
|
organization_name: z.ZodOptional<z.ZodString>;
|
1446
1566
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
1447
1567
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -1453,6 +1573,9 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
1453
1573
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1454
1574
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1455
1575
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1576
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
1577
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
1578
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
1456
1579
|
organization_name: z.ZodOptional<z.ZodString>;
|
1457
1580
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
1458
1581
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -1466,6 +1589,9 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
1466
1589
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1467
1590
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1468
1591
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1592
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
1593
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
1594
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
1469
1595
|
organization_name: z.ZodOptional<z.ZodString>;
|
1470
1596
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
1471
1597
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -1477,6 +1603,9 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
1477
1603
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1478
1604
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1479
1605
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1606
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
1607
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
1608
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
1480
1609
|
organization_name: z.ZodOptional<z.ZodString>;
|
1481
1610
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
1482
1611
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -1488,6 +1617,9 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
1488
1617
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1489
1618
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1490
1619
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1620
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
1621
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
1622
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
1491
1623
|
organization_name: z.ZodOptional<z.ZodString>;
|
1492
1624
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
1493
1625
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -1501,6 +1633,9 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
1501
1633
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1502
1634
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1503
1635
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1636
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
1637
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
1638
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
1504
1639
|
organization_name: z.ZodOptional<z.ZodString>;
|
1505
1640
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
1506
1641
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -1512,6 +1647,9 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
1512
1647
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1513
1648
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1514
1649
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1650
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
1651
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
1652
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
1515
1653
|
organization_name: z.ZodOptional<z.ZodString>;
|
1516
1654
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
1517
1655
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -1523,6 +1661,9 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
1523
1661
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1524
1662
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1525
1663
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1664
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
1665
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
1666
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
1526
1667
|
organization_name: z.ZodOptional<z.ZodString>;
|
1527
1668
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
1528
1669
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -1665,6 +1806,9 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
1665
1806
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1666
1807
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1667
1808
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1809
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
1810
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
1811
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
1668
1812
|
organization_name: z.ZodOptional<z.ZodString>;
|
1669
1813
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
1670
1814
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -1676,6 +1820,9 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
1676
1820
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1677
1821
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1678
1822
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1823
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
1824
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
1825
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
1679
1826
|
organization_name: z.ZodOptional<z.ZodString>;
|
1680
1827
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
1681
1828
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -1687,6 +1834,9 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
1687
1834
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1688
1835
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1689
1836
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1837
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
1838
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
1839
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
1690
1840
|
organization_name: z.ZodOptional<z.ZodString>;
|
1691
1841
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
1692
1842
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -1700,6 +1850,9 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
1700
1850
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1701
1851
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1702
1852
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1853
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
1854
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
1855
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
1703
1856
|
organization_name: z.ZodOptional<z.ZodString>;
|
1704
1857
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
1705
1858
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -1711,6 +1864,9 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
1711
1864
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1712
1865
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1713
1866
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1867
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
1868
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
1869
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
1714
1870
|
organization_name: z.ZodOptional<z.ZodString>;
|
1715
1871
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
1716
1872
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -1722,6 +1878,9 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
1722
1878
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1723
1879
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1724
1880
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1881
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
1882
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
1883
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
1725
1884
|
organization_name: z.ZodOptional<z.ZodString>;
|
1726
1885
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
1727
1886
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -1735,6 +1894,9 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
1735
1894
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1736
1895
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1737
1896
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1897
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
1898
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
1899
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
1738
1900
|
organization_name: z.ZodOptional<z.ZodString>;
|
1739
1901
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
1740
1902
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -1746,6 +1908,9 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
1746
1908
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1747
1909
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1748
1910
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1911
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
1912
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
1913
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
1749
1914
|
organization_name: z.ZodOptional<z.ZodString>;
|
1750
1915
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
1751
1916
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -1757,6 +1922,9 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
1757
1922
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1758
1923
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1759
1924
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1925
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
1926
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
1927
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
1760
1928
|
organization_name: z.ZodOptional<z.ZodString>;
|
1761
1929
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
1762
1930
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -1888,11 +2056,6 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
1888
2056
|
}>;
|
1889
2057
|
}, z.ZodTypeAny, "passthrough">>;
|
1890
2058
|
}, "strip", z.ZodTypeAny, {
|
1891
|
-
header: {
|
1892
|
-
alg: string;
|
1893
|
-
kid: string;
|
1894
|
-
typ: "entity-statement+jwt";
|
1895
|
-
};
|
1896
2059
|
payload: {
|
1897
2060
|
iss: string;
|
1898
2061
|
sub: string;
|
@@ -1931,6 +2094,9 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
1931
2094
|
federation_resolve_endpoint?: string | undefined;
|
1932
2095
|
federation_trust_mark_status_endpoint?: string | undefined;
|
1933
2096
|
federation_trust_mark_list_endpoint?: string | undefined;
|
2097
|
+
federation_trust_mark_endpoint?: string | undefined;
|
2098
|
+
federation_historical_keys_endpoint?: string | undefined;
|
2099
|
+
endpoint_auth_signing_alg_values_supported?: string | undefined;
|
1934
2100
|
organization_name?: string | undefined;
|
1935
2101
|
homepage_uri?: string | undefined;
|
1936
2102
|
policy_uri?: string | undefined;
|
@@ -1946,12 +2112,12 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
1946
2112
|
} & {
|
1947
2113
|
[k: string]: unknown;
|
1948
2114
|
};
|
1949
|
-
}, {
|
1950
2115
|
header: {
|
1951
2116
|
alg: string;
|
1952
2117
|
kid: string;
|
1953
2118
|
typ: "entity-statement+jwt";
|
1954
2119
|
};
|
2120
|
+
}, {
|
1955
2121
|
payload: {
|
1956
2122
|
iss: string;
|
1957
2123
|
sub: string;
|
@@ -1990,6 +2156,9 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
1990
2156
|
federation_resolve_endpoint?: string | undefined;
|
1991
2157
|
federation_trust_mark_status_endpoint?: string | undefined;
|
1992
2158
|
federation_trust_mark_list_endpoint?: string | undefined;
|
2159
|
+
federation_trust_mark_endpoint?: string | undefined;
|
2160
|
+
federation_historical_keys_endpoint?: string | undefined;
|
2161
|
+
endpoint_auth_signing_alg_values_supported?: string | undefined;
|
1993
2162
|
organization_name?: string | undefined;
|
1994
2163
|
homepage_uri?: string | undefined;
|
1995
2164
|
policy_uri?: string | undefined;
|
@@ -2005,6 +2174,11 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
2005
2174
|
} & {
|
2006
2175
|
[k: string]: unknown;
|
2007
2176
|
};
|
2177
|
+
header: {
|
2178
|
+
alg: string;
|
2179
|
+
kid: string;
|
2180
|
+
typ: "entity-statement+jwt";
|
2181
|
+
};
|
2008
2182
|
}>, z.ZodObject<{
|
2009
2183
|
payload: z.ZodObject<{
|
2010
2184
|
jwks: z.ZodObject<{
|
@@ -2138,30 +2312,12 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
2138
2312
|
display: z.ZodArray<z.ZodObject<{
|
2139
2313
|
name: z.ZodString;
|
2140
2314
|
locale: z.ZodString;
|
2141
|
-
logo: z.ZodOptional<z.ZodObject<{
|
2142
|
-
url: z.ZodString;
|
2143
|
-
alt_text: z.ZodString;
|
2144
|
-
}, "strip", z.ZodTypeAny, {
|
2145
|
-
url: string;
|
2146
|
-
alt_text: string;
|
2147
|
-
}, {
|
2148
|
-
url: string;
|
2149
|
-
alt_text: string;
|
2150
|
-
}>>;
|
2151
2315
|
}, "strip", z.ZodTypeAny, {
|
2152
2316
|
name: string;
|
2153
2317
|
locale: string;
|
2154
|
-
logo?: {
|
2155
|
-
url: string;
|
2156
|
-
alt_text: string;
|
2157
|
-
} | undefined;
|
2158
2318
|
}, {
|
2159
2319
|
name: string;
|
2160
2320
|
locale: string;
|
2161
|
-
logo?: {
|
2162
|
-
url: string;
|
2163
|
-
alt_text: string;
|
2164
|
-
} | undefined;
|
2165
2321
|
}>, "many">;
|
2166
2322
|
credential_configurations_supported: z.ZodRecord<z.ZodString, z.ZodObject<{
|
2167
2323
|
format: z.ZodUnion<[z.ZodLiteral<"vc+sd-jwt">, z.ZodLiteral<"vc+mdoc-cbor">]>;
|
@@ -2169,38 +2325,14 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
2169
2325
|
display: z.ZodArray<z.ZodObject<{
|
2170
2326
|
name: z.ZodString;
|
2171
2327
|
locale: z.ZodString;
|
2172
|
-
logo: z.ZodOptional<z.ZodObject<{
|
2173
|
-
url: z.ZodString;
|
2174
|
-
alt_text: z.ZodString;
|
2175
|
-
}, "strip", z.ZodTypeAny, {
|
2176
|
-
url: string;
|
2177
|
-
alt_text: string;
|
2178
|
-
}, {
|
2179
|
-
url: string;
|
2180
|
-
alt_text: string;
|
2181
|
-
}>>;
|
2182
|
-
background_color: z.ZodOptional<z.ZodString>;
|
2183
|
-
text_color: z.ZodOptional<z.ZodString>;
|
2184
2328
|
}, "strip", z.ZodTypeAny, {
|
2185
2329
|
name: string;
|
2186
2330
|
locale: string;
|
2187
|
-
logo?: {
|
2188
|
-
url: string;
|
2189
|
-
alt_text: string;
|
2190
|
-
} | undefined;
|
2191
|
-
background_color?: string | undefined;
|
2192
|
-
text_color?: string | undefined;
|
2193
2331
|
}, {
|
2194
2332
|
name: string;
|
2195
2333
|
locale: string;
|
2196
|
-
logo?: {
|
2197
|
-
url: string;
|
2198
|
-
alt_text: string;
|
2199
|
-
} | undefined;
|
2200
|
-
background_color?: string | undefined;
|
2201
|
-
text_color?: string | undefined;
|
2202
2334
|
}>, "many">;
|
2203
|
-
claims: z.
|
2335
|
+
claims: z.ZodRecord<z.ZodString, z.ZodObject<{
|
2204
2336
|
value_type: z.ZodString;
|
2205
2337
|
display: z.ZodArray<z.ZodObject<{
|
2206
2338
|
name: z.ZodString;
|
@@ -2224,7 +2356,7 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
2224
2356
|
name: string;
|
2225
2357
|
locale: string;
|
2226
2358
|
}[];
|
2227
|
-
}
|
2359
|
+
}>>;
|
2228
2360
|
cryptographic_binding_methods_supported: z.ZodArray<z.ZodString, "many">;
|
2229
2361
|
credential_signing_alg_values_supported: z.ZodArray<z.ZodString, "many">;
|
2230
2362
|
authentic_source: z.ZodOptional<z.ZodString>;
|
@@ -2259,24 +2391,18 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
2259
2391
|
display: {
|
2260
2392
|
name: string;
|
2261
2393
|
locale: string;
|
2262
|
-
logo?: {
|
2263
|
-
url: string;
|
2264
|
-
alt_text: string;
|
2265
|
-
} | undefined;
|
2266
|
-
background_color?: string | undefined;
|
2267
|
-
text_color?: string | undefined;
|
2268
2394
|
}[];
|
2269
2395
|
format: "vc+sd-jwt" | "vc+mdoc-cbor";
|
2270
2396
|
scope: string;
|
2271
|
-
|
2272
|
-
credential_signing_alg_values_supported: string[];
|
2273
|
-
claims?: Record<string, {
|
2397
|
+
claims: Record<string, {
|
2274
2398
|
value_type: string;
|
2275
2399
|
display: {
|
2276
2400
|
name: string;
|
2277
2401
|
locale: string;
|
2278
2402
|
}[];
|
2279
|
-
}
|
2403
|
+
}>;
|
2404
|
+
cryptographic_binding_methods_supported: string[];
|
2405
|
+
credential_signing_alg_values_supported: string[];
|
2280
2406
|
authentic_source?: string | undefined;
|
2281
2407
|
issuance_errors_supported?: Record<string, {
|
2282
2408
|
display: {
|
@@ -2289,24 +2415,18 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
2289
2415
|
display: {
|
2290
2416
|
name: string;
|
2291
2417
|
locale: string;
|
2292
|
-
logo?: {
|
2293
|
-
url: string;
|
2294
|
-
alt_text: string;
|
2295
|
-
} | undefined;
|
2296
|
-
background_color?: string | undefined;
|
2297
|
-
text_color?: string | undefined;
|
2298
2418
|
}[];
|
2299
2419
|
format: "vc+sd-jwt" | "vc+mdoc-cbor";
|
2300
2420
|
scope: string;
|
2301
|
-
|
2302
|
-
credential_signing_alg_values_supported: string[];
|
2303
|
-
claims?: Record<string, {
|
2421
|
+
claims: Record<string, {
|
2304
2422
|
value_type: string;
|
2305
2423
|
display: {
|
2306
2424
|
name: string;
|
2307
2425
|
locale: string;
|
2308
2426
|
}[];
|
2309
|
-
}
|
2427
|
+
}>;
|
2428
|
+
cryptographic_binding_methods_supported: string[];
|
2429
|
+
credential_signing_alg_values_supported: string[];
|
2310
2430
|
authentic_source?: string | undefined;
|
2311
2431
|
issuance_errors_supported?: Record<string, {
|
2312
2432
|
display: {
|
@@ -2468,10 +2588,6 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
2468
2588
|
display: {
|
2469
2589
|
name: string;
|
2470
2590
|
locale: string;
|
2471
|
-
logo?: {
|
2472
|
-
url: string;
|
2473
|
-
alt_text: string;
|
2474
|
-
} | undefined;
|
2475
2591
|
}[];
|
2476
2592
|
credential_issuer: string;
|
2477
2593
|
credential_endpoint: string;
|
@@ -2481,24 +2597,18 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
2481
2597
|
display: {
|
2482
2598
|
name: string;
|
2483
2599
|
locale: string;
|
2484
|
-
logo?: {
|
2485
|
-
url: string;
|
2486
|
-
alt_text: string;
|
2487
|
-
} | undefined;
|
2488
|
-
background_color?: string | undefined;
|
2489
|
-
text_color?: string | undefined;
|
2490
2600
|
}[];
|
2491
2601
|
format: "vc+sd-jwt" | "vc+mdoc-cbor";
|
2492
2602
|
scope: string;
|
2493
|
-
|
2494
|
-
credential_signing_alg_values_supported: string[];
|
2495
|
-
claims?: Record<string, {
|
2603
|
+
claims: Record<string, {
|
2496
2604
|
value_type: string;
|
2497
2605
|
display: {
|
2498
2606
|
name: string;
|
2499
2607
|
locale: string;
|
2500
2608
|
}[];
|
2501
|
-
}
|
2609
|
+
}>;
|
2610
|
+
cryptographic_binding_methods_supported: string[];
|
2611
|
+
credential_signing_alg_values_supported: string[];
|
2502
2612
|
authentic_source?: string | undefined;
|
2503
2613
|
issuance_errors_supported?: Record<string, {
|
2504
2614
|
display: {
|
@@ -2538,10 +2648,6 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
2538
2648
|
display: {
|
2539
2649
|
name: string;
|
2540
2650
|
locale: string;
|
2541
|
-
logo?: {
|
2542
|
-
url: string;
|
2543
|
-
alt_text: string;
|
2544
|
-
} | undefined;
|
2545
2651
|
}[];
|
2546
2652
|
credential_issuer: string;
|
2547
2653
|
credential_endpoint: string;
|
@@ -2551,24 +2657,18 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
2551
2657
|
display: {
|
2552
2658
|
name: string;
|
2553
2659
|
locale: string;
|
2554
|
-
logo?: {
|
2555
|
-
url: string;
|
2556
|
-
alt_text: string;
|
2557
|
-
} | undefined;
|
2558
|
-
background_color?: string | undefined;
|
2559
|
-
text_color?: string | undefined;
|
2560
2660
|
}[];
|
2561
2661
|
format: "vc+sd-jwt" | "vc+mdoc-cbor";
|
2562
2662
|
scope: string;
|
2563
|
-
|
2564
|
-
credential_signing_alg_values_supported: string[];
|
2565
|
-
claims?: Record<string, {
|
2663
|
+
claims: Record<string, {
|
2566
2664
|
value_type: string;
|
2567
2665
|
display: {
|
2568
2666
|
name: string;
|
2569
2667
|
locale: string;
|
2570
2668
|
}[];
|
2571
|
-
}
|
2669
|
+
}>;
|
2670
|
+
cryptographic_binding_methods_supported: string[];
|
2671
|
+
credential_signing_alg_values_supported: string[];
|
2572
2672
|
authentic_source?: string | undefined;
|
2573
2673
|
issuance_errors_supported?: Record<string, {
|
2574
2674
|
display: {
|
@@ -2582,12 +2682,9 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
2582
2682
|
oauth_authorization_server: z.ZodObject<{
|
2583
2683
|
authorization_endpoint: z.ZodString;
|
2584
2684
|
pushed_authorization_request_endpoint: z.ZodString;
|
2585
|
-
dpop_signing_alg_values_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
2586
2685
|
token_endpoint: z.ZodString;
|
2587
|
-
introspection_endpoint: z.ZodOptional<z.ZodString>;
|
2588
2686
|
client_registration_types_supported: z.ZodArray<z.ZodString, "many">;
|
2589
2687
|
code_challenge_methods_supported: z.ZodArray<z.ZodString, "many">;
|
2590
|
-
authorization_details_types_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
2591
2688
|
acr_values_supported: z.ZodArray<z.ZodString, "many">;
|
2592
2689
|
grant_types_supported: z.ZodArray<z.ZodString, "many">;
|
2593
2690
|
issuer: z.ZodString;
|
@@ -2714,11 +2811,7 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
2714
2811
|
}[];
|
2715
2812
|
}>;
|
2716
2813
|
scopes_supported: z.ZodArray<z.ZodString, "many">;
|
2717
|
-
request_parameter_supported: z.ZodOptional<z.ZodBoolean>;
|
2718
|
-
request_uri_parameter_supported: z.ZodOptional<z.ZodBoolean>;
|
2719
|
-
response_types_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
2720
2814
|
response_modes_supported: z.ZodArray<z.ZodString, "many">;
|
2721
|
-
subject_types_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
2722
2815
|
token_endpoint_auth_methods_supported: z.ZodArray<z.ZodString, "many">;
|
2723
2816
|
token_endpoint_auth_signing_alg_values_supported: z.ZodArray<z.ZodString, "many">;
|
2724
2817
|
request_object_signing_alg_values_supported: z.ZodArray<z.ZodString, "many">;
|
@@ -2762,13 +2855,6 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
2762
2855
|
token_endpoint_auth_methods_supported: string[];
|
2763
2856
|
token_endpoint_auth_signing_alg_values_supported: string[];
|
2764
2857
|
request_object_signing_alg_values_supported: string[];
|
2765
|
-
dpop_signing_alg_values_supported?: string[] | undefined;
|
2766
|
-
introspection_endpoint?: string | undefined;
|
2767
|
-
authorization_details_types_supported?: string[] | undefined;
|
2768
|
-
request_parameter_supported?: boolean | undefined;
|
2769
|
-
request_uri_parameter_supported?: boolean | undefined;
|
2770
|
-
response_types_supported?: string[] | undefined;
|
2771
|
-
subject_types_supported?: string[] | undefined;
|
2772
2858
|
}, {
|
2773
2859
|
jwks: {
|
2774
2860
|
keys: {
|
@@ -2809,13 +2895,6 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
2809
2895
|
token_endpoint_auth_methods_supported: string[];
|
2810
2896
|
token_endpoint_auth_signing_alg_values_supported: string[];
|
2811
2897
|
request_object_signing_alg_values_supported: string[];
|
2812
|
-
dpop_signing_alg_values_supported?: string[] | undefined;
|
2813
|
-
introspection_endpoint?: string | undefined;
|
2814
|
-
authorization_details_types_supported?: string[] | undefined;
|
2815
|
-
request_parameter_supported?: boolean | undefined;
|
2816
|
-
request_uri_parameter_supported?: boolean | undefined;
|
2817
|
-
response_types_supported?: string[] | undefined;
|
2818
|
-
subject_types_supported?: string[] | undefined;
|
2819
2898
|
}>;
|
2820
2899
|
/** Credential Issuers act as Relying Party
|
2821
2900
|
when they require the presentation of other credentials.
|
@@ -3041,10 +3120,6 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
3041
3120
|
display: {
|
3042
3121
|
name: string;
|
3043
3122
|
locale: string;
|
3044
|
-
logo?: {
|
3045
|
-
url: string;
|
3046
|
-
alt_text: string;
|
3047
|
-
} | undefined;
|
3048
3123
|
}[];
|
3049
3124
|
credential_issuer: string;
|
3050
3125
|
credential_endpoint: string;
|
@@ -3054,24 +3129,18 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
3054
3129
|
display: {
|
3055
3130
|
name: string;
|
3056
3131
|
locale: string;
|
3057
|
-
logo?: {
|
3058
|
-
url: string;
|
3059
|
-
alt_text: string;
|
3060
|
-
} | undefined;
|
3061
|
-
background_color?: string | undefined;
|
3062
|
-
text_color?: string | undefined;
|
3063
3132
|
}[];
|
3064
3133
|
format: "vc+sd-jwt" | "vc+mdoc-cbor";
|
3065
3134
|
scope: string;
|
3066
|
-
|
3067
|
-
credential_signing_alg_values_supported: string[];
|
3068
|
-
claims?: Record<string, {
|
3135
|
+
claims: Record<string, {
|
3069
3136
|
value_type: string;
|
3070
3137
|
display: {
|
3071
3138
|
name: string;
|
3072
3139
|
locale: string;
|
3073
3140
|
}[];
|
3074
|
-
}
|
3141
|
+
}>;
|
3142
|
+
cryptographic_binding_methods_supported: string[];
|
3143
|
+
credential_signing_alg_values_supported: string[];
|
3075
3144
|
authentic_source?: string | undefined;
|
3076
3145
|
issuance_errors_supported?: Record<string, {
|
3077
3146
|
display: {
|
@@ -3122,13 +3191,6 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
3122
3191
|
token_endpoint_auth_methods_supported: string[];
|
3123
3192
|
token_endpoint_auth_signing_alg_values_supported: string[];
|
3124
3193
|
request_object_signing_alg_values_supported: string[];
|
3125
|
-
dpop_signing_alg_values_supported?: string[] | undefined;
|
3126
|
-
introspection_endpoint?: string | undefined;
|
3127
|
-
authorization_details_types_supported?: string[] | undefined;
|
3128
|
-
request_parameter_supported?: boolean | undefined;
|
3129
|
-
request_uri_parameter_supported?: boolean | undefined;
|
3130
|
-
response_types_supported?: string[] | undefined;
|
3131
|
-
subject_types_supported?: string[] | undefined;
|
3132
3194
|
};
|
3133
3195
|
wallet_relying_party?: {
|
3134
3196
|
jwks: {
|
@@ -3193,10 +3255,6 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
3193
3255
|
display: {
|
3194
3256
|
name: string;
|
3195
3257
|
locale: string;
|
3196
|
-
logo?: {
|
3197
|
-
url: string;
|
3198
|
-
alt_text: string;
|
3199
|
-
} | undefined;
|
3200
3258
|
}[];
|
3201
3259
|
credential_issuer: string;
|
3202
3260
|
credential_endpoint: string;
|
@@ -3206,24 +3264,18 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
3206
3264
|
display: {
|
3207
3265
|
name: string;
|
3208
3266
|
locale: string;
|
3209
|
-
logo?: {
|
3210
|
-
url: string;
|
3211
|
-
alt_text: string;
|
3212
|
-
} | undefined;
|
3213
|
-
background_color?: string | undefined;
|
3214
|
-
text_color?: string | undefined;
|
3215
3267
|
}[];
|
3216
3268
|
format: "vc+sd-jwt" | "vc+mdoc-cbor";
|
3217
3269
|
scope: string;
|
3218
|
-
|
3219
|
-
credential_signing_alg_values_supported: string[];
|
3220
|
-
claims?: Record<string, {
|
3270
|
+
claims: Record<string, {
|
3221
3271
|
value_type: string;
|
3222
3272
|
display: {
|
3223
3273
|
name: string;
|
3224
3274
|
locale: string;
|
3225
3275
|
}[];
|
3226
|
-
}
|
3276
|
+
}>;
|
3277
|
+
cryptographic_binding_methods_supported: string[];
|
3278
|
+
credential_signing_alg_values_supported: string[];
|
3227
3279
|
authentic_source?: string | undefined;
|
3228
3280
|
issuance_errors_supported?: Record<string, {
|
3229
3281
|
display: {
|
@@ -3274,13 +3326,6 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
3274
3326
|
token_endpoint_auth_methods_supported: string[];
|
3275
3327
|
token_endpoint_auth_signing_alg_values_supported: string[];
|
3276
3328
|
request_object_signing_alg_values_supported: string[];
|
3277
|
-
dpop_signing_alg_values_supported?: string[] | undefined;
|
3278
|
-
introspection_endpoint?: string | undefined;
|
3279
|
-
authorization_details_types_supported?: string[] | undefined;
|
3280
|
-
request_parameter_supported?: boolean | undefined;
|
3281
|
-
request_uri_parameter_supported?: boolean | undefined;
|
3282
|
-
response_types_supported?: string[] | undefined;
|
3283
|
-
subject_types_supported?: string[] | undefined;
|
3284
3329
|
};
|
3285
3330
|
wallet_relying_party?: {
|
3286
3331
|
jwks: {
|
@@ -3373,10 +3418,6 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
3373
3418
|
display: {
|
3374
3419
|
name: string;
|
3375
3420
|
locale: string;
|
3376
|
-
logo?: {
|
3377
|
-
url: string;
|
3378
|
-
alt_text: string;
|
3379
|
-
} | undefined;
|
3380
3421
|
}[];
|
3381
3422
|
credential_issuer: string;
|
3382
3423
|
credential_endpoint: string;
|
@@ -3386,24 +3427,18 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
3386
3427
|
display: {
|
3387
3428
|
name: string;
|
3388
3429
|
locale: string;
|
3389
|
-
logo?: {
|
3390
|
-
url: string;
|
3391
|
-
alt_text: string;
|
3392
|
-
} | undefined;
|
3393
|
-
background_color?: string | undefined;
|
3394
|
-
text_color?: string | undefined;
|
3395
3430
|
}[];
|
3396
3431
|
format: "vc+sd-jwt" | "vc+mdoc-cbor";
|
3397
3432
|
scope: string;
|
3398
|
-
|
3399
|
-
credential_signing_alg_values_supported: string[];
|
3400
|
-
claims?: Record<string, {
|
3433
|
+
claims: Record<string, {
|
3401
3434
|
value_type: string;
|
3402
3435
|
display: {
|
3403
3436
|
name: string;
|
3404
3437
|
locale: string;
|
3405
3438
|
}[];
|
3406
|
-
}
|
3439
|
+
}>;
|
3440
|
+
cryptographic_binding_methods_supported: string[];
|
3441
|
+
credential_signing_alg_values_supported: string[];
|
3407
3442
|
authentic_source?: string | undefined;
|
3408
3443
|
issuance_errors_supported?: Record<string, {
|
3409
3444
|
display: {
|
@@ -3454,13 +3489,6 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
3454
3489
|
token_endpoint_auth_methods_supported: string[];
|
3455
3490
|
token_endpoint_auth_signing_alg_values_supported: string[];
|
3456
3491
|
request_object_signing_alg_values_supported: string[];
|
3457
|
-
dpop_signing_alg_values_supported?: string[] | undefined;
|
3458
|
-
introspection_endpoint?: string | undefined;
|
3459
|
-
authorization_details_types_supported?: string[] | undefined;
|
3460
|
-
request_parameter_supported?: boolean | undefined;
|
3461
|
-
request_uri_parameter_supported?: boolean | undefined;
|
3462
|
-
response_types_supported?: string[] | undefined;
|
3463
|
-
subject_types_supported?: string[] | undefined;
|
3464
3492
|
};
|
3465
3493
|
wallet_relying_party?: {
|
3466
3494
|
jwks: {
|
@@ -3553,10 +3581,6 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
3553
3581
|
display: {
|
3554
3582
|
name: string;
|
3555
3583
|
locale: string;
|
3556
|
-
logo?: {
|
3557
|
-
url: string;
|
3558
|
-
alt_text: string;
|
3559
|
-
} | undefined;
|
3560
3584
|
}[];
|
3561
3585
|
credential_issuer: string;
|
3562
3586
|
credential_endpoint: string;
|
@@ -3566,24 +3590,18 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
3566
3590
|
display: {
|
3567
3591
|
name: string;
|
3568
3592
|
locale: string;
|
3569
|
-
logo?: {
|
3570
|
-
url: string;
|
3571
|
-
alt_text: string;
|
3572
|
-
} | undefined;
|
3573
|
-
background_color?: string | undefined;
|
3574
|
-
text_color?: string | undefined;
|
3575
3593
|
}[];
|
3576
3594
|
format: "vc+sd-jwt" | "vc+mdoc-cbor";
|
3577
3595
|
scope: string;
|
3578
|
-
|
3579
|
-
credential_signing_alg_values_supported: string[];
|
3580
|
-
claims?: Record<string, {
|
3596
|
+
claims: Record<string, {
|
3581
3597
|
value_type: string;
|
3582
3598
|
display: {
|
3583
3599
|
name: string;
|
3584
3600
|
locale: string;
|
3585
3601
|
}[];
|
3586
|
-
}
|
3602
|
+
}>;
|
3603
|
+
cryptographic_binding_methods_supported: string[];
|
3604
|
+
credential_signing_alg_values_supported: string[];
|
3587
3605
|
authentic_source?: string | undefined;
|
3588
3606
|
issuance_errors_supported?: Record<string, {
|
3589
3607
|
display: {
|
@@ -3634,13 +3652,6 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
3634
3652
|
token_endpoint_auth_methods_supported: string[];
|
3635
3653
|
token_endpoint_auth_signing_alg_values_supported: string[];
|
3636
3654
|
request_object_signing_alg_values_supported: string[];
|
3637
|
-
dpop_signing_alg_values_supported?: string[] | undefined;
|
3638
|
-
introspection_endpoint?: string | undefined;
|
3639
|
-
authorization_details_types_supported?: string[] | undefined;
|
3640
|
-
request_parameter_supported?: boolean | undefined;
|
3641
|
-
request_uri_parameter_supported?: boolean | undefined;
|
3642
|
-
response_types_supported?: string[] | undefined;
|
3643
|
-
subject_types_supported?: string[] | undefined;
|
3644
3655
|
};
|
3645
3656
|
wallet_relying_party?: {
|
3646
3657
|
jwks: {
|
@@ -3735,10 +3746,6 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
3735
3746
|
display: {
|
3736
3747
|
name: string;
|
3737
3748
|
locale: string;
|
3738
|
-
logo?: {
|
3739
|
-
url: string;
|
3740
|
-
alt_text: string;
|
3741
|
-
} | undefined;
|
3742
3749
|
}[];
|
3743
3750
|
credential_issuer: string;
|
3744
3751
|
credential_endpoint: string;
|
@@ -3748,24 +3755,18 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
3748
3755
|
display: {
|
3749
3756
|
name: string;
|
3750
3757
|
locale: string;
|
3751
|
-
logo?: {
|
3752
|
-
url: string;
|
3753
|
-
alt_text: string;
|
3754
|
-
} | undefined;
|
3755
|
-
background_color?: string | undefined;
|
3756
|
-
text_color?: string | undefined;
|
3757
3758
|
}[];
|
3758
3759
|
format: "vc+sd-jwt" | "vc+mdoc-cbor";
|
3759
3760
|
scope: string;
|
3760
|
-
|
3761
|
-
credential_signing_alg_values_supported: string[];
|
3762
|
-
claims?: Record<string, {
|
3761
|
+
claims: Record<string, {
|
3763
3762
|
value_type: string;
|
3764
3763
|
display: {
|
3765
3764
|
name: string;
|
3766
3765
|
locale: string;
|
3767
3766
|
}[];
|
3768
|
-
}
|
3767
|
+
}>;
|
3768
|
+
cryptographic_binding_methods_supported: string[];
|
3769
|
+
credential_signing_alg_values_supported: string[];
|
3769
3770
|
authentic_source?: string | undefined;
|
3770
3771
|
issuance_errors_supported?: Record<string, {
|
3771
3772
|
display: {
|
@@ -3816,13 +3817,6 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
3816
3817
|
token_endpoint_auth_methods_supported: string[];
|
3817
3818
|
token_endpoint_auth_signing_alg_values_supported: string[];
|
3818
3819
|
request_object_signing_alg_values_supported: string[];
|
3819
|
-
dpop_signing_alg_values_supported?: string[] | undefined;
|
3820
|
-
introspection_endpoint?: string | undefined;
|
3821
|
-
authorization_details_types_supported?: string[] | undefined;
|
3822
|
-
request_parameter_supported?: boolean | undefined;
|
3823
|
-
request_uri_parameter_supported?: boolean | undefined;
|
3824
|
-
response_types_supported?: string[] | undefined;
|
3825
|
-
subject_types_supported?: string[] | undefined;
|
3826
3820
|
};
|
3827
3821
|
wallet_relying_party?: {
|
3828
3822
|
jwks: {
|
@@ -3917,10 +3911,6 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
3917
3911
|
display: {
|
3918
3912
|
name: string;
|
3919
3913
|
locale: string;
|
3920
|
-
logo?: {
|
3921
|
-
url: string;
|
3922
|
-
alt_text: string;
|
3923
|
-
} | undefined;
|
3924
3914
|
}[];
|
3925
3915
|
credential_issuer: string;
|
3926
3916
|
credential_endpoint: string;
|
@@ -3930,24 +3920,18 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
3930
3920
|
display: {
|
3931
3921
|
name: string;
|
3932
3922
|
locale: string;
|
3933
|
-
logo?: {
|
3934
|
-
url: string;
|
3935
|
-
alt_text: string;
|
3936
|
-
} | undefined;
|
3937
|
-
background_color?: string | undefined;
|
3938
|
-
text_color?: string | undefined;
|
3939
3923
|
}[];
|
3940
3924
|
format: "vc+sd-jwt" | "vc+mdoc-cbor";
|
3941
3925
|
scope: string;
|
3942
|
-
|
3943
|
-
credential_signing_alg_values_supported: string[];
|
3944
|
-
claims?: Record<string, {
|
3926
|
+
claims: Record<string, {
|
3945
3927
|
value_type: string;
|
3946
3928
|
display: {
|
3947
3929
|
name: string;
|
3948
3930
|
locale: string;
|
3949
3931
|
}[];
|
3950
|
-
}
|
3932
|
+
}>;
|
3933
|
+
cryptographic_binding_methods_supported: string[];
|
3934
|
+
credential_signing_alg_values_supported: string[];
|
3951
3935
|
authentic_source?: string | undefined;
|
3952
3936
|
issuance_errors_supported?: Record<string, {
|
3953
3937
|
display: {
|
@@ -3998,13 +3982,6 @@ export declare const CredentialIssuerEntityConfiguration: z.ZodIntersection<z.Zo
|
|
3998
3982
|
token_endpoint_auth_methods_supported: string[];
|
3999
3983
|
token_endpoint_auth_signing_alg_values_supported: string[];
|
4000
3984
|
request_object_signing_alg_values_supported: string[];
|
4001
|
-
dpop_signing_alg_values_supported?: string[] | undefined;
|
4002
|
-
introspection_endpoint?: string | undefined;
|
4003
|
-
authorization_details_types_supported?: string[] | undefined;
|
4004
|
-
request_parameter_supported?: boolean | undefined;
|
4005
|
-
request_uri_parameter_supported?: boolean | undefined;
|
4006
|
-
response_types_supported?: string[] | undefined;
|
4007
|
-
subject_types_supported?: string[] | undefined;
|
4008
3985
|
};
|
4009
3986
|
wallet_relying_party?: {
|
4010
3987
|
jwks: {
|
@@ -4069,6 +4046,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4069
4046
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
4070
4047
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
4071
4048
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
4049
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
4050
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
4051
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
4072
4052
|
organization_name: z.ZodOptional<z.ZodString>;
|
4073
4053
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
4074
4054
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -4080,6 +4060,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4080
4060
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
4081
4061
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
4082
4062
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
4063
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
4064
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
4065
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
4083
4066
|
organization_name: z.ZodOptional<z.ZodString>;
|
4084
4067
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
4085
4068
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -4091,6 +4074,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4091
4074
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
4092
4075
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
4093
4076
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
4077
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
4078
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
4079
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
4094
4080
|
organization_name: z.ZodOptional<z.ZodString>;
|
4095
4081
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
4096
4082
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -4104,6 +4090,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4104
4090
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
4105
4091
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
4106
4092
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
4093
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
4094
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
4095
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
4107
4096
|
organization_name: z.ZodOptional<z.ZodString>;
|
4108
4097
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
4109
4098
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -4115,6 +4104,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4115
4104
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
4116
4105
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
4117
4106
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
4107
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
4108
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
4109
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
4118
4110
|
organization_name: z.ZodOptional<z.ZodString>;
|
4119
4111
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
4120
4112
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -4126,6 +4118,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4126
4118
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
4127
4119
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
4128
4120
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
4121
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
4122
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
4123
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
4129
4124
|
organization_name: z.ZodOptional<z.ZodString>;
|
4130
4125
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
4131
4126
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -4139,6 +4134,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4139
4134
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
4140
4135
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
4141
4136
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
4137
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
4138
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
4139
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
4142
4140
|
organization_name: z.ZodOptional<z.ZodString>;
|
4143
4141
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
4144
4142
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -4150,6 +4148,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4150
4148
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
4151
4149
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
4152
4150
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
4151
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
4152
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
4153
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
4153
4154
|
organization_name: z.ZodOptional<z.ZodString>;
|
4154
4155
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
4155
4156
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -4161,6 +4162,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4161
4162
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
4162
4163
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
4163
4164
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
4165
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
4166
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
4167
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
4164
4168
|
organization_name: z.ZodOptional<z.ZodString>;
|
4165
4169
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
4166
4170
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -4303,6 +4307,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4303
4307
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
4304
4308
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
4305
4309
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
4310
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
4311
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
4312
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
4306
4313
|
organization_name: z.ZodOptional<z.ZodString>;
|
4307
4314
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
4308
4315
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -4314,6 +4321,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4314
4321
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
4315
4322
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
4316
4323
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
4324
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
4325
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
4326
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
4317
4327
|
organization_name: z.ZodOptional<z.ZodString>;
|
4318
4328
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
4319
4329
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -4325,6 +4335,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4325
4335
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
4326
4336
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
4327
4337
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
4338
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
4339
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
4340
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
4328
4341
|
organization_name: z.ZodOptional<z.ZodString>;
|
4329
4342
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
4330
4343
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -4338,6 +4351,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4338
4351
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
4339
4352
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
4340
4353
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
4354
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
4355
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
4356
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
4341
4357
|
organization_name: z.ZodOptional<z.ZodString>;
|
4342
4358
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
4343
4359
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -4349,6 +4365,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4349
4365
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
4350
4366
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
4351
4367
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
4368
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
4369
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
4370
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
4352
4371
|
organization_name: z.ZodOptional<z.ZodString>;
|
4353
4372
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
4354
4373
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -4360,6 +4379,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4360
4379
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
4361
4380
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
4362
4381
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
4382
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
4383
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
4384
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
4363
4385
|
organization_name: z.ZodOptional<z.ZodString>;
|
4364
4386
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
4365
4387
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -4373,6 +4395,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4373
4395
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
4374
4396
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
4375
4397
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
4398
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
4399
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
4400
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
4376
4401
|
organization_name: z.ZodOptional<z.ZodString>;
|
4377
4402
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
4378
4403
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -4384,6 +4409,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4384
4409
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
4385
4410
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
4386
4411
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
4412
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
4413
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
4414
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
4387
4415
|
organization_name: z.ZodOptional<z.ZodString>;
|
4388
4416
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
4389
4417
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -4395,6 +4423,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4395
4423
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
4396
4424
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
4397
4425
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
4426
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
4427
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
4428
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
4398
4429
|
organization_name: z.ZodOptional<z.ZodString>;
|
4399
4430
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
4400
4431
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -4537,6 +4568,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4537
4568
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
4538
4569
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
4539
4570
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
4571
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
4572
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
4573
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
4540
4574
|
organization_name: z.ZodOptional<z.ZodString>;
|
4541
4575
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
4542
4576
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -4548,6 +4582,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4548
4582
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
4549
4583
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
4550
4584
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
4585
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
4586
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
4587
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
4551
4588
|
organization_name: z.ZodOptional<z.ZodString>;
|
4552
4589
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
4553
4590
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -4559,6 +4596,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4559
4596
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
4560
4597
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
4561
4598
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
4599
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
4600
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
4601
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
4562
4602
|
organization_name: z.ZodOptional<z.ZodString>;
|
4563
4603
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
4564
4604
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -4572,6 +4612,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4572
4612
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
4573
4613
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
4574
4614
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
4615
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
4616
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
4617
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
4575
4618
|
organization_name: z.ZodOptional<z.ZodString>;
|
4576
4619
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
4577
4620
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -4583,6 +4626,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4583
4626
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
4584
4627
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
4585
4628
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
4629
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
4630
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
4631
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
4586
4632
|
organization_name: z.ZodOptional<z.ZodString>;
|
4587
4633
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
4588
4634
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -4594,6 +4640,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4594
4640
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
4595
4641
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
4596
4642
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
4643
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
4644
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
4645
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
4597
4646
|
organization_name: z.ZodOptional<z.ZodString>;
|
4598
4647
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
4599
4648
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -4607,6 +4656,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4607
4656
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
4608
4657
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
4609
4658
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
4659
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
4660
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
4661
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
4610
4662
|
organization_name: z.ZodOptional<z.ZodString>;
|
4611
4663
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
4612
4664
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -4618,6 +4670,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4618
4670
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
4619
4671
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
4620
4672
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
4673
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
4674
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
4675
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
4621
4676
|
organization_name: z.ZodOptional<z.ZodString>;
|
4622
4677
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
4623
4678
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -4629,6 +4684,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4629
4684
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
4630
4685
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
4631
4686
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
4687
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
4688
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
4689
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
4632
4690
|
organization_name: z.ZodOptional<z.ZodString>;
|
4633
4691
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
4634
4692
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -4760,11 +4818,6 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4760
4818
|
}>;
|
4761
4819
|
}, z.ZodTypeAny, "passthrough">>;
|
4762
4820
|
}, "strip", z.ZodTypeAny, {
|
4763
|
-
header: {
|
4764
|
-
alg: string;
|
4765
|
-
kid: string;
|
4766
|
-
typ: "entity-statement+jwt";
|
4767
|
-
};
|
4768
4821
|
payload: {
|
4769
4822
|
iss: string;
|
4770
4823
|
sub: string;
|
@@ -4803,6 +4856,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4803
4856
|
federation_resolve_endpoint?: string | undefined;
|
4804
4857
|
federation_trust_mark_status_endpoint?: string | undefined;
|
4805
4858
|
federation_trust_mark_list_endpoint?: string | undefined;
|
4859
|
+
federation_trust_mark_endpoint?: string | undefined;
|
4860
|
+
federation_historical_keys_endpoint?: string | undefined;
|
4861
|
+
endpoint_auth_signing_alg_values_supported?: string | undefined;
|
4806
4862
|
organization_name?: string | undefined;
|
4807
4863
|
homepage_uri?: string | undefined;
|
4808
4864
|
policy_uri?: string | undefined;
|
@@ -4818,12 +4874,12 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4818
4874
|
} & {
|
4819
4875
|
[k: string]: unknown;
|
4820
4876
|
};
|
4821
|
-
}, {
|
4822
4877
|
header: {
|
4823
4878
|
alg: string;
|
4824
4879
|
kid: string;
|
4825
4880
|
typ: "entity-statement+jwt";
|
4826
4881
|
};
|
4882
|
+
}, {
|
4827
4883
|
payload: {
|
4828
4884
|
iss: string;
|
4829
4885
|
sub: string;
|
@@ -4862,6 +4918,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4862
4918
|
federation_resolve_endpoint?: string | undefined;
|
4863
4919
|
federation_trust_mark_status_endpoint?: string | undefined;
|
4864
4920
|
federation_trust_mark_list_endpoint?: string | undefined;
|
4921
|
+
federation_trust_mark_endpoint?: string | undefined;
|
4922
|
+
federation_historical_keys_endpoint?: string | undefined;
|
4923
|
+
endpoint_auth_signing_alg_values_supported?: string | undefined;
|
4865
4924
|
organization_name?: string | undefined;
|
4866
4925
|
homepage_uri?: string | undefined;
|
4867
4926
|
policy_uri?: string | undefined;
|
@@ -4877,6 +4936,11 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4877
4936
|
} & {
|
4878
4937
|
[k: string]: unknown;
|
4879
4938
|
};
|
4939
|
+
header: {
|
4940
|
+
alg: string;
|
4941
|
+
kid: string;
|
4942
|
+
typ: "entity-statement+jwt";
|
4943
|
+
};
|
4880
4944
|
}>, z.ZodObject<{
|
4881
4945
|
payload: z.ZodObject<{
|
4882
4946
|
metadata: z.ZodObject<{
|
@@ -5311,6 +5375,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5311
5375
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5312
5376
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5313
5377
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
5378
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
5379
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
5380
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
5314
5381
|
organization_name: z.ZodOptional<z.ZodString>;
|
5315
5382
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5316
5383
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5322,6 +5389,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5322
5389
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5323
5390
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5324
5391
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
5392
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
5393
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
5394
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
5325
5395
|
organization_name: z.ZodOptional<z.ZodString>;
|
5326
5396
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5327
5397
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5333,6 +5403,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5333
5403
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5334
5404
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5335
5405
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
5406
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
5407
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
5408
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
5336
5409
|
organization_name: z.ZodOptional<z.ZodString>;
|
5337
5410
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5338
5411
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5346,6 +5419,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5346
5419
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5347
5420
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5348
5421
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
5422
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
5423
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
5424
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
5349
5425
|
organization_name: z.ZodOptional<z.ZodString>;
|
5350
5426
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5351
5427
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5357,6 +5433,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5357
5433
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5358
5434
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5359
5435
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
5436
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
5437
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
5438
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
5360
5439
|
organization_name: z.ZodOptional<z.ZodString>;
|
5361
5440
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5362
5441
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5368,6 +5447,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5368
5447
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5369
5448
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5370
5449
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
5450
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
5451
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
5452
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
5371
5453
|
organization_name: z.ZodOptional<z.ZodString>;
|
5372
5454
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5373
5455
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5381,6 +5463,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5381
5463
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5382
5464
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5383
5465
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
5466
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
5467
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
5468
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
5384
5469
|
organization_name: z.ZodOptional<z.ZodString>;
|
5385
5470
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5386
5471
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5392,6 +5477,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5392
5477
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5393
5478
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5394
5479
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
5480
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
5481
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
5482
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
5395
5483
|
organization_name: z.ZodOptional<z.ZodString>;
|
5396
5484
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5397
5485
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5403,6 +5491,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5403
5491
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5404
5492
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5405
5493
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
5494
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
5495
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
5496
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
5406
5497
|
organization_name: z.ZodOptional<z.ZodString>;
|
5407
5498
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5408
5499
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5545,6 +5636,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5545
5636
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5546
5637
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5547
5638
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
5639
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
5640
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
5641
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
5548
5642
|
organization_name: z.ZodOptional<z.ZodString>;
|
5549
5643
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5550
5644
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5556,6 +5650,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5556
5650
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5557
5651
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5558
5652
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
5653
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
5654
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
5655
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
5559
5656
|
organization_name: z.ZodOptional<z.ZodString>;
|
5560
5657
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5561
5658
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5567,6 +5664,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5567
5664
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5568
5665
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5569
5666
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
5667
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
5668
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
5669
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
5570
5670
|
organization_name: z.ZodOptional<z.ZodString>;
|
5571
5671
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5572
5672
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5580,6 +5680,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5580
5680
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5581
5681
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5582
5682
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
5683
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
5684
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
5685
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
5583
5686
|
organization_name: z.ZodOptional<z.ZodString>;
|
5584
5687
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5585
5688
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5591,6 +5694,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5591
5694
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5592
5695
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5593
5696
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
5697
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
5698
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
5699
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
5594
5700
|
organization_name: z.ZodOptional<z.ZodString>;
|
5595
5701
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5596
5702
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5602,6 +5708,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5602
5708
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5603
5709
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5604
5710
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
5711
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
5712
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
5713
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
5605
5714
|
organization_name: z.ZodOptional<z.ZodString>;
|
5606
5715
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5607
5716
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5615,6 +5724,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5615
5724
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5616
5725
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5617
5726
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
5727
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
5728
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
5729
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
5618
5730
|
organization_name: z.ZodOptional<z.ZodString>;
|
5619
5731
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5620
5732
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5626,6 +5738,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5626
5738
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5627
5739
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5628
5740
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
5741
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
5742
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
5743
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
5629
5744
|
organization_name: z.ZodOptional<z.ZodString>;
|
5630
5745
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5631
5746
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5637,6 +5752,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5637
5752
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5638
5753
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5639
5754
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
5755
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
5756
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
5757
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
5640
5758
|
organization_name: z.ZodOptional<z.ZodString>;
|
5641
5759
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5642
5760
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5779,6 +5897,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5779
5897
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5780
5898
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5781
5899
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
5900
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
5901
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
5902
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
5782
5903
|
organization_name: z.ZodOptional<z.ZodString>;
|
5783
5904
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5784
5905
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5790,6 +5911,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5790
5911
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5791
5912
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5792
5913
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
5914
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
5915
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
5916
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
5793
5917
|
organization_name: z.ZodOptional<z.ZodString>;
|
5794
5918
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5795
5919
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5801,6 +5925,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5801
5925
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5802
5926
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5803
5927
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
5928
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
5929
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
5930
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
5804
5931
|
organization_name: z.ZodOptional<z.ZodString>;
|
5805
5932
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5806
5933
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5814,6 +5941,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5814
5941
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5815
5942
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5816
5943
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
5944
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
5945
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
5946
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
5817
5947
|
organization_name: z.ZodOptional<z.ZodString>;
|
5818
5948
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5819
5949
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5825,6 +5955,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5825
5955
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5826
5956
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5827
5957
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
5958
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
5959
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
5960
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
5828
5961
|
organization_name: z.ZodOptional<z.ZodString>;
|
5829
5962
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5830
5963
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5836,6 +5969,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5836
5969
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5837
5970
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5838
5971
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
5972
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
5973
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
5974
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
5839
5975
|
organization_name: z.ZodOptional<z.ZodString>;
|
5840
5976
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5841
5977
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5849,6 +5985,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5849
5985
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5850
5986
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5851
5987
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
5988
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
5989
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
5990
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
5852
5991
|
organization_name: z.ZodOptional<z.ZodString>;
|
5853
5992
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5854
5993
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5860,6 +5999,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5860
5999
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5861
6000
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5862
6001
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
6002
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
6003
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
6004
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
5863
6005
|
organization_name: z.ZodOptional<z.ZodString>;
|
5864
6006
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5865
6007
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5871,6 +6013,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5871
6013
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5872
6014
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5873
6015
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
6016
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
6017
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
6018
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
5874
6019
|
organization_name: z.ZodOptional<z.ZodString>;
|
5875
6020
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5876
6021
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -6002,11 +6147,6 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
6002
6147
|
}>;
|
6003
6148
|
}, z.ZodTypeAny, "passthrough">>;
|
6004
6149
|
}, "strip", z.ZodTypeAny, {
|
6005
|
-
header: {
|
6006
|
-
alg: string;
|
6007
|
-
kid: string;
|
6008
|
-
typ: "entity-statement+jwt";
|
6009
|
-
};
|
6010
6150
|
payload: {
|
6011
6151
|
iss: string;
|
6012
6152
|
sub: string;
|
@@ -6045,6 +6185,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
6045
6185
|
federation_resolve_endpoint?: string | undefined;
|
6046
6186
|
federation_trust_mark_status_endpoint?: string | undefined;
|
6047
6187
|
federation_trust_mark_list_endpoint?: string | undefined;
|
6188
|
+
federation_trust_mark_endpoint?: string | undefined;
|
6189
|
+
federation_historical_keys_endpoint?: string | undefined;
|
6190
|
+
endpoint_auth_signing_alg_values_supported?: string | undefined;
|
6048
6191
|
organization_name?: string | undefined;
|
6049
6192
|
homepage_uri?: string | undefined;
|
6050
6193
|
policy_uri?: string | undefined;
|
@@ -6060,12 +6203,12 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
6060
6203
|
} & {
|
6061
6204
|
[k: string]: unknown;
|
6062
6205
|
};
|
6063
|
-
}, {
|
6064
6206
|
header: {
|
6065
6207
|
alg: string;
|
6066
6208
|
kid: string;
|
6067
6209
|
typ: "entity-statement+jwt";
|
6068
6210
|
};
|
6211
|
+
}, {
|
6069
6212
|
payload: {
|
6070
6213
|
iss: string;
|
6071
6214
|
sub: string;
|
@@ -6104,6 +6247,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
6104
6247
|
federation_resolve_endpoint?: string | undefined;
|
6105
6248
|
federation_trust_mark_status_endpoint?: string | undefined;
|
6106
6249
|
federation_trust_mark_list_endpoint?: string | undefined;
|
6250
|
+
federation_trust_mark_endpoint?: string | undefined;
|
6251
|
+
federation_historical_keys_endpoint?: string | undefined;
|
6252
|
+
endpoint_auth_signing_alg_values_supported?: string | undefined;
|
6107
6253
|
organization_name?: string | undefined;
|
6108
6254
|
homepage_uri?: string | undefined;
|
6109
6255
|
policy_uri?: string | undefined;
|
@@ -6119,6 +6265,11 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
6119
6265
|
} & {
|
6120
6266
|
[k: string]: unknown;
|
6121
6267
|
};
|
6268
|
+
header: {
|
6269
|
+
alg: string;
|
6270
|
+
kid: string;
|
6271
|
+
typ: "entity-statement+jwt";
|
6272
|
+
};
|
6122
6273
|
}>, z.ZodObject<{
|
6123
6274
|
payload: z.ZodObject<{
|
6124
6275
|
metadata: z.ZodObject<{
|
@@ -6766,6 +6917,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
6766
6917
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
6767
6918
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
6768
6919
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
6920
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
6921
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
6922
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
6769
6923
|
organization_name: z.ZodOptional<z.ZodString>;
|
6770
6924
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
6771
6925
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -6777,6 +6931,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
6777
6931
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
6778
6932
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
6779
6933
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
6934
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
6935
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
6936
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
6780
6937
|
organization_name: z.ZodOptional<z.ZodString>;
|
6781
6938
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
6782
6939
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -6788,6 +6945,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
6788
6945
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
6789
6946
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
6790
6947
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
6948
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
6949
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
6950
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
6791
6951
|
organization_name: z.ZodOptional<z.ZodString>;
|
6792
6952
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
6793
6953
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -6801,6 +6961,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
6801
6961
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
6802
6962
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
6803
6963
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
6964
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
6965
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
6966
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
6804
6967
|
organization_name: z.ZodOptional<z.ZodString>;
|
6805
6968
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
6806
6969
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -6812,6 +6975,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
6812
6975
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
6813
6976
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
6814
6977
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
6978
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
6979
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
6980
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
6815
6981
|
organization_name: z.ZodOptional<z.ZodString>;
|
6816
6982
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
6817
6983
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -6823,6 +6989,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
6823
6989
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
6824
6990
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
6825
6991
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
6992
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
6993
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
6994
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
6826
6995
|
organization_name: z.ZodOptional<z.ZodString>;
|
6827
6996
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
6828
6997
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -6836,6 +7005,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
6836
7005
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
6837
7006
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
6838
7007
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
7008
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
7009
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
7010
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
6839
7011
|
organization_name: z.ZodOptional<z.ZodString>;
|
6840
7012
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
6841
7013
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -6847,6 +7019,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
6847
7019
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
6848
7020
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
6849
7021
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
7022
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
7023
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
7024
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
6850
7025
|
organization_name: z.ZodOptional<z.ZodString>;
|
6851
7026
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
6852
7027
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -6858,6 +7033,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
6858
7033
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
6859
7034
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
6860
7035
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
7036
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
7037
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
7038
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
6861
7039
|
organization_name: z.ZodOptional<z.ZodString>;
|
6862
7040
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
6863
7041
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -7000,6 +7178,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
7000
7178
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
7001
7179
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
7002
7180
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
7181
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
7182
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
7183
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
7003
7184
|
organization_name: z.ZodOptional<z.ZodString>;
|
7004
7185
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
7005
7186
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -7011,6 +7192,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
7011
7192
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
7012
7193
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
7013
7194
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
7195
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
7196
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
7197
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
7014
7198
|
organization_name: z.ZodOptional<z.ZodString>;
|
7015
7199
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
7016
7200
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -7022,6 +7206,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
7022
7206
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
7023
7207
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
7024
7208
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
7209
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
7210
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
7211
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
7025
7212
|
organization_name: z.ZodOptional<z.ZodString>;
|
7026
7213
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
7027
7214
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -7035,6 +7222,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
7035
7222
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
7036
7223
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
7037
7224
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
7225
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
7226
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
7227
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
7038
7228
|
organization_name: z.ZodOptional<z.ZodString>;
|
7039
7229
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
7040
7230
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -7046,6 +7236,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
7046
7236
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
7047
7237
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
7048
7238
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
7239
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
7240
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
7241
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
7049
7242
|
organization_name: z.ZodOptional<z.ZodString>;
|
7050
7243
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
7051
7244
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -7057,6 +7250,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
7057
7250
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
7058
7251
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
7059
7252
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
7253
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
7254
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
7255
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
7060
7256
|
organization_name: z.ZodOptional<z.ZodString>;
|
7061
7257
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
7062
7258
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -7070,6 +7266,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
7070
7266
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
7071
7267
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
7072
7268
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
7269
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
7270
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
7271
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
7073
7272
|
organization_name: z.ZodOptional<z.ZodString>;
|
7074
7273
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
7075
7274
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -7081,6 +7280,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
7081
7280
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
7082
7281
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
7083
7282
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
7283
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
7284
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
7285
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
7084
7286
|
organization_name: z.ZodOptional<z.ZodString>;
|
7085
7287
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
7086
7288
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -7092,6 +7294,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
7092
7294
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
7093
7295
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
7094
7296
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
7297
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
7298
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
7299
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
7095
7300
|
organization_name: z.ZodOptional<z.ZodString>;
|
7096
7301
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
7097
7302
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -7234,6 +7439,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
7234
7439
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
7235
7440
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
7236
7441
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
7442
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
7443
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
7444
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
7237
7445
|
organization_name: z.ZodOptional<z.ZodString>;
|
7238
7446
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
7239
7447
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -7245,6 +7453,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
7245
7453
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
7246
7454
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
7247
7455
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
7456
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
7457
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
7458
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
7248
7459
|
organization_name: z.ZodOptional<z.ZodString>;
|
7249
7460
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
7250
7461
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -7256,6 +7467,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
7256
7467
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
7257
7468
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
7258
7469
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
7470
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
7471
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
7472
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
7259
7473
|
organization_name: z.ZodOptional<z.ZodString>;
|
7260
7474
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
7261
7475
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -7269,6 +7483,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
7269
7483
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
7270
7484
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
7271
7485
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
7486
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
7487
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
7488
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
7272
7489
|
organization_name: z.ZodOptional<z.ZodString>;
|
7273
7490
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
7274
7491
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -7280,6 +7497,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
7280
7497
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
7281
7498
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
7282
7499
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
7500
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
7501
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
7502
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
7283
7503
|
organization_name: z.ZodOptional<z.ZodString>;
|
7284
7504
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
7285
7505
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -7291,6 +7511,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
7291
7511
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
7292
7512
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
7293
7513
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
7514
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
7515
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
7516
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
7294
7517
|
organization_name: z.ZodOptional<z.ZodString>;
|
7295
7518
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
7296
7519
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -7304,6 +7527,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
7304
7527
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
7305
7528
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
7306
7529
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
7530
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
7531
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
7532
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
7307
7533
|
organization_name: z.ZodOptional<z.ZodString>;
|
7308
7534
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
7309
7535
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -7315,6 +7541,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
7315
7541
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
7316
7542
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
7317
7543
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
7544
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
7545
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
7546
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
7318
7547
|
organization_name: z.ZodOptional<z.ZodString>;
|
7319
7548
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
7320
7549
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -7326,6 +7555,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
7326
7555
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
7327
7556
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
7328
7557
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
7558
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
7559
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
7560
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
7329
7561
|
organization_name: z.ZodOptional<z.ZodString>;
|
7330
7562
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
7331
7563
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -7457,11 +7689,6 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
7457
7689
|
}>;
|
7458
7690
|
}, z.ZodTypeAny, "passthrough">>;
|
7459
7691
|
}, "strip", z.ZodTypeAny, {
|
7460
|
-
header: {
|
7461
|
-
alg: string;
|
7462
|
-
kid: string;
|
7463
|
-
typ: "entity-statement+jwt";
|
7464
|
-
};
|
7465
7692
|
payload: {
|
7466
7693
|
iss: string;
|
7467
7694
|
sub: string;
|
@@ -7500,6 +7727,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
7500
7727
|
federation_resolve_endpoint?: string | undefined;
|
7501
7728
|
federation_trust_mark_status_endpoint?: string | undefined;
|
7502
7729
|
federation_trust_mark_list_endpoint?: string | undefined;
|
7730
|
+
federation_trust_mark_endpoint?: string | undefined;
|
7731
|
+
federation_historical_keys_endpoint?: string | undefined;
|
7732
|
+
endpoint_auth_signing_alg_values_supported?: string | undefined;
|
7503
7733
|
organization_name?: string | undefined;
|
7504
7734
|
homepage_uri?: string | undefined;
|
7505
7735
|
policy_uri?: string | undefined;
|
@@ -7515,12 +7745,12 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
7515
7745
|
} & {
|
7516
7746
|
[k: string]: unknown;
|
7517
7747
|
};
|
7518
|
-
}, {
|
7519
7748
|
header: {
|
7520
7749
|
alg: string;
|
7521
7750
|
kid: string;
|
7522
7751
|
typ: "entity-statement+jwt";
|
7523
7752
|
};
|
7753
|
+
}, {
|
7524
7754
|
payload: {
|
7525
7755
|
iss: string;
|
7526
7756
|
sub: string;
|
@@ -7559,6 +7789,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
7559
7789
|
federation_resolve_endpoint?: string | undefined;
|
7560
7790
|
federation_trust_mark_status_endpoint?: string | undefined;
|
7561
7791
|
federation_trust_mark_list_endpoint?: string | undefined;
|
7792
|
+
federation_trust_mark_endpoint?: string | undefined;
|
7793
|
+
federation_historical_keys_endpoint?: string | undefined;
|
7794
|
+
endpoint_auth_signing_alg_values_supported?: string | undefined;
|
7562
7795
|
organization_name?: string | undefined;
|
7563
7796
|
homepage_uri?: string | undefined;
|
7564
7797
|
policy_uri?: string | undefined;
|
@@ -7574,6 +7807,11 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
7574
7807
|
} & {
|
7575
7808
|
[k: string]: unknown;
|
7576
7809
|
};
|
7810
|
+
header: {
|
7811
|
+
alg: string;
|
7812
|
+
kid: string;
|
7813
|
+
typ: "entity-statement+jwt";
|
7814
|
+
};
|
7577
7815
|
}>, z.ZodObject<{
|
7578
7816
|
payload: z.ZodObject<{
|
7579
7817
|
metadata: z.ZodObject<{
|
@@ -8219,6 +8457,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8219
8457
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8220
8458
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8221
8459
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
8460
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
8461
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
8462
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
8222
8463
|
organization_name: z.ZodOptional<z.ZodString>;
|
8223
8464
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8224
8465
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8230,6 +8471,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8230
8471
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8231
8472
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8232
8473
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
8474
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
8475
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
8476
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
8233
8477
|
organization_name: z.ZodOptional<z.ZodString>;
|
8234
8478
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8235
8479
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8241,6 +8485,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8241
8485
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8242
8486
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8243
8487
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
8488
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
8489
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
8490
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
8244
8491
|
organization_name: z.ZodOptional<z.ZodString>;
|
8245
8492
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8246
8493
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8254,6 +8501,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8254
8501
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8255
8502
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8256
8503
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
8504
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
8505
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
8506
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
8257
8507
|
organization_name: z.ZodOptional<z.ZodString>;
|
8258
8508
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8259
8509
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8265,6 +8515,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8265
8515
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8266
8516
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8267
8517
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
8518
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
8519
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
8520
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
8268
8521
|
organization_name: z.ZodOptional<z.ZodString>;
|
8269
8522
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8270
8523
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8276,6 +8529,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8276
8529
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8277
8530
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8278
8531
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
8532
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
8533
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
8534
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
8279
8535
|
organization_name: z.ZodOptional<z.ZodString>;
|
8280
8536
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8281
8537
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8289,6 +8545,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8289
8545
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8290
8546
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8291
8547
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
8548
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
8549
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
8550
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
8292
8551
|
organization_name: z.ZodOptional<z.ZodString>;
|
8293
8552
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8294
8553
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8300,6 +8559,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8300
8559
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8301
8560
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8302
8561
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
8562
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
8563
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
8564
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
8303
8565
|
organization_name: z.ZodOptional<z.ZodString>;
|
8304
8566
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8305
8567
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8311,6 +8573,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8311
8573
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8312
8574
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8313
8575
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
8576
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
8577
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
8578
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
8314
8579
|
organization_name: z.ZodOptional<z.ZodString>;
|
8315
8580
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8316
8581
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8453,6 +8718,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8453
8718
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8454
8719
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8455
8720
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
8721
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
8722
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
8723
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
8456
8724
|
organization_name: z.ZodOptional<z.ZodString>;
|
8457
8725
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8458
8726
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8464,6 +8732,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8464
8732
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8465
8733
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8466
8734
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
8735
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
8736
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
8737
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
8467
8738
|
organization_name: z.ZodOptional<z.ZodString>;
|
8468
8739
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8469
8740
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8475,6 +8746,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8475
8746
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8476
8747
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8477
8748
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
8749
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
8750
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
8751
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
8478
8752
|
organization_name: z.ZodOptional<z.ZodString>;
|
8479
8753
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8480
8754
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8488,6 +8762,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8488
8762
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8489
8763
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8490
8764
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
8765
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
8766
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
8767
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
8491
8768
|
organization_name: z.ZodOptional<z.ZodString>;
|
8492
8769
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8493
8770
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8499,6 +8776,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8499
8776
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8500
8777
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8501
8778
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
8779
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
8780
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
8781
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
8502
8782
|
organization_name: z.ZodOptional<z.ZodString>;
|
8503
8783
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8504
8784
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8510,6 +8790,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8510
8790
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8511
8791
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8512
8792
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
8793
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
8794
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
8795
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
8513
8796
|
organization_name: z.ZodOptional<z.ZodString>;
|
8514
8797
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8515
8798
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8523,6 +8806,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8523
8806
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8524
8807
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8525
8808
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
8809
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
8810
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
8811
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
8526
8812
|
organization_name: z.ZodOptional<z.ZodString>;
|
8527
8813
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8528
8814
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8534,6 +8820,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8534
8820
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8535
8821
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8536
8822
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
8823
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
8824
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
8825
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
8537
8826
|
organization_name: z.ZodOptional<z.ZodString>;
|
8538
8827
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8539
8828
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8545,6 +8834,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8545
8834
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8546
8835
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8547
8836
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
8837
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
8838
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
8839
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
8548
8840
|
organization_name: z.ZodOptional<z.ZodString>;
|
8549
8841
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8550
8842
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8687,6 +8979,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8687
8979
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8688
8980
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8689
8981
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
8982
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
8983
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
8984
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
8690
8985
|
organization_name: z.ZodOptional<z.ZodString>;
|
8691
8986
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8692
8987
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8698,6 +8993,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8698
8993
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8699
8994
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8700
8995
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
8996
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
8997
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
8998
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
8701
8999
|
organization_name: z.ZodOptional<z.ZodString>;
|
8702
9000
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8703
9001
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8709,6 +9007,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8709
9007
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8710
9008
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8711
9009
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
9010
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
9011
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
9012
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
8712
9013
|
organization_name: z.ZodOptional<z.ZodString>;
|
8713
9014
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8714
9015
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8722,6 +9023,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8722
9023
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8723
9024
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8724
9025
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
9026
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
9027
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
9028
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
8725
9029
|
organization_name: z.ZodOptional<z.ZodString>;
|
8726
9030
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8727
9031
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8733,6 +9037,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8733
9037
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8734
9038
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8735
9039
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
9040
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
9041
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
9042
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
8736
9043
|
organization_name: z.ZodOptional<z.ZodString>;
|
8737
9044
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8738
9045
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8744,6 +9051,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8744
9051
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8745
9052
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8746
9053
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
9054
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
9055
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
9056
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
8747
9057
|
organization_name: z.ZodOptional<z.ZodString>;
|
8748
9058
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8749
9059
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8757,6 +9067,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8757
9067
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8758
9068
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8759
9069
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
9070
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
9071
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
9072
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
8760
9073
|
organization_name: z.ZodOptional<z.ZodString>;
|
8761
9074
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8762
9075
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8768,6 +9081,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8768
9081
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8769
9082
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8770
9083
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
9084
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
9085
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
9086
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
8771
9087
|
organization_name: z.ZodOptional<z.ZodString>;
|
8772
9088
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8773
9089
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8779,6 +9095,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8779
9095
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8780
9096
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8781
9097
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
9098
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
9099
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
9100
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
8782
9101
|
organization_name: z.ZodOptional<z.ZodString>;
|
8783
9102
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8784
9103
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8910,11 +9229,6 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8910
9229
|
}>;
|
8911
9230
|
}, z.ZodTypeAny, "passthrough">>;
|
8912
9231
|
}, "strip", z.ZodTypeAny, {
|
8913
|
-
header: {
|
8914
|
-
alg: string;
|
8915
|
-
kid: string;
|
8916
|
-
typ: "entity-statement+jwt";
|
8917
|
-
};
|
8918
9232
|
payload: {
|
8919
9233
|
iss: string;
|
8920
9234
|
sub: string;
|
@@ -8953,6 +9267,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8953
9267
|
federation_resolve_endpoint?: string | undefined;
|
8954
9268
|
federation_trust_mark_status_endpoint?: string | undefined;
|
8955
9269
|
federation_trust_mark_list_endpoint?: string | undefined;
|
9270
|
+
federation_trust_mark_endpoint?: string | undefined;
|
9271
|
+
federation_historical_keys_endpoint?: string | undefined;
|
9272
|
+
endpoint_auth_signing_alg_values_supported?: string | undefined;
|
8956
9273
|
organization_name?: string | undefined;
|
8957
9274
|
homepage_uri?: string | undefined;
|
8958
9275
|
policy_uri?: string | undefined;
|
@@ -8968,12 +9285,12 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8968
9285
|
} & {
|
8969
9286
|
[k: string]: unknown;
|
8970
9287
|
};
|
8971
|
-
}, {
|
8972
9288
|
header: {
|
8973
9289
|
alg: string;
|
8974
9290
|
kid: string;
|
8975
9291
|
typ: "entity-statement+jwt";
|
8976
9292
|
};
|
9293
|
+
}, {
|
8977
9294
|
payload: {
|
8978
9295
|
iss: string;
|
8979
9296
|
sub: string;
|
@@ -9012,6 +9329,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
9012
9329
|
federation_resolve_endpoint?: string | undefined;
|
9013
9330
|
federation_trust_mark_status_endpoint?: string | undefined;
|
9014
9331
|
federation_trust_mark_list_endpoint?: string | undefined;
|
9332
|
+
federation_trust_mark_endpoint?: string | undefined;
|
9333
|
+
federation_historical_keys_endpoint?: string | undefined;
|
9334
|
+
endpoint_auth_signing_alg_values_supported?: string | undefined;
|
9015
9335
|
organization_name?: string | undefined;
|
9016
9336
|
homepage_uri?: string | undefined;
|
9017
9337
|
policy_uri?: string | undefined;
|
@@ -9027,6 +9347,11 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
9027
9347
|
} & {
|
9028
9348
|
[k: string]: unknown;
|
9029
9349
|
};
|
9350
|
+
header: {
|
9351
|
+
alg: string;
|
9352
|
+
kid: string;
|
9353
|
+
typ: "entity-statement+jwt";
|
9354
|
+
};
|
9030
9355
|
}>, z.ZodObject<{
|
9031
9356
|
payload: z.ZodObject<{
|
9032
9357
|
jwks: z.ZodObject<{
|
@@ -9160,30 +9485,12 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
9160
9485
|
display: z.ZodArray<z.ZodObject<{
|
9161
9486
|
name: z.ZodString;
|
9162
9487
|
locale: z.ZodString;
|
9163
|
-
logo: z.ZodOptional<z.ZodObject<{
|
9164
|
-
url: z.ZodString;
|
9165
|
-
alt_text: z.ZodString;
|
9166
|
-
}, "strip", z.ZodTypeAny, {
|
9167
|
-
url: string;
|
9168
|
-
alt_text: string;
|
9169
|
-
}, {
|
9170
|
-
url: string;
|
9171
|
-
alt_text: string;
|
9172
|
-
}>>;
|
9173
9488
|
}, "strip", z.ZodTypeAny, {
|
9174
9489
|
name: string;
|
9175
9490
|
locale: string;
|
9176
|
-
logo?: {
|
9177
|
-
url: string;
|
9178
|
-
alt_text: string;
|
9179
|
-
} | undefined;
|
9180
9491
|
}, {
|
9181
9492
|
name: string;
|
9182
9493
|
locale: string;
|
9183
|
-
logo?: {
|
9184
|
-
url: string;
|
9185
|
-
alt_text: string;
|
9186
|
-
} | undefined;
|
9187
9494
|
}>, "many">;
|
9188
9495
|
credential_configurations_supported: z.ZodRecord<z.ZodString, z.ZodObject<{
|
9189
9496
|
format: z.ZodUnion<[z.ZodLiteral<"vc+sd-jwt">, z.ZodLiteral<"vc+mdoc-cbor">]>;
|
@@ -9191,38 +9498,14 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
9191
9498
|
display: z.ZodArray<z.ZodObject<{
|
9192
9499
|
name: z.ZodString;
|
9193
9500
|
locale: z.ZodString;
|
9194
|
-
logo: z.ZodOptional<z.ZodObject<{
|
9195
|
-
url: z.ZodString;
|
9196
|
-
alt_text: z.ZodString;
|
9197
|
-
}, "strip", z.ZodTypeAny, {
|
9198
|
-
url: string;
|
9199
|
-
alt_text: string;
|
9200
|
-
}, {
|
9201
|
-
url: string;
|
9202
|
-
alt_text: string;
|
9203
|
-
}>>;
|
9204
|
-
background_color: z.ZodOptional<z.ZodString>;
|
9205
|
-
text_color: z.ZodOptional<z.ZodString>;
|
9206
9501
|
}, "strip", z.ZodTypeAny, {
|
9207
9502
|
name: string;
|
9208
9503
|
locale: string;
|
9209
|
-
logo?: {
|
9210
|
-
url: string;
|
9211
|
-
alt_text: string;
|
9212
|
-
} | undefined;
|
9213
|
-
background_color?: string | undefined;
|
9214
|
-
text_color?: string | undefined;
|
9215
9504
|
}, {
|
9216
9505
|
name: string;
|
9217
9506
|
locale: string;
|
9218
|
-
logo?: {
|
9219
|
-
url: string;
|
9220
|
-
alt_text: string;
|
9221
|
-
} | undefined;
|
9222
|
-
background_color?: string | undefined;
|
9223
|
-
text_color?: string | undefined;
|
9224
9507
|
}>, "many">;
|
9225
|
-
claims: z.
|
9508
|
+
claims: z.ZodRecord<z.ZodString, z.ZodObject<{
|
9226
9509
|
value_type: z.ZodString;
|
9227
9510
|
display: z.ZodArray<z.ZodObject<{
|
9228
9511
|
name: z.ZodString;
|
@@ -9246,7 +9529,7 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
9246
9529
|
name: string;
|
9247
9530
|
locale: string;
|
9248
9531
|
}[];
|
9249
|
-
}
|
9532
|
+
}>>;
|
9250
9533
|
cryptographic_binding_methods_supported: z.ZodArray<z.ZodString, "many">;
|
9251
9534
|
credential_signing_alg_values_supported: z.ZodArray<z.ZodString, "many">;
|
9252
9535
|
authentic_source: z.ZodOptional<z.ZodString>;
|
@@ -9281,24 +9564,18 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
9281
9564
|
display: {
|
9282
9565
|
name: string;
|
9283
9566
|
locale: string;
|
9284
|
-
logo?: {
|
9285
|
-
url: string;
|
9286
|
-
alt_text: string;
|
9287
|
-
} | undefined;
|
9288
|
-
background_color?: string | undefined;
|
9289
|
-
text_color?: string | undefined;
|
9290
9567
|
}[];
|
9291
9568
|
format: "vc+sd-jwt" | "vc+mdoc-cbor";
|
9292
9569
|
scope: string;
|
9293
|
-
|
9294
|
-
credential_signing_alg_values_supported: string[];
|
9295
|
-
claims?: Record<string, {
|
9570
|
+
claims: Record<string, {
|
9296
9571
|
value_type: string;
|
9297
9572
|
display: {
|
9298
9573
|
name: string;
|
9299
9574
|
locale: string;
|
9300
9575
|
}[];
|
9301
|
-
}
|
9576
|
+
}>;
|
9577
|
+
cryptographic_binding_methods_supported: string[];
|
9578
|
+
credential_signing_alg_values_supported: string[];
|
9302
9579
|
authentic_source?: string | undefined;
|
9303
9580
|
issuance_errors_supported?: Record<string, {
|
9304
9581
|
display: {
|
@@ -9311,24 +9588,18 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
9311
9588
|
display: {
|
9312
9589
|
name: string;
|
9313
9590
|
locale: string;
|
9314
|
-
logo?: {
|
9315
|
-
url: string;
|
9316
|
-
alt_text: string;
|
9317
|
-
} | undefined;
|
9318
|
-
background_color?: string | undefined;
|
9319
|
-
text_color?: string | undefined;
|
9320
9591
|
}[];
|
9321
9592
|
format: "vc+sd-jwt" | "vc+mdoc-cbor";
|
9322
9593
|
scope: string;
|
9323
|
-
|
9324
|
-
credential_signing_alg_values_supported: string[];
|
9325
|
-
claims?: Record<string, {
|
9594
|
+
claims: Record<string, {
|
9326
9595
|
value_type: string;
|
9327
9596
|
display: {
|
9328
9597
|
name: string;
|
9329
9598
|
locale: string;
|
9330
9599
|
}[];
|
9331
|
-
}
|
9600
|
+
}>;
|
9601
|
+
cryptographic_binding_methods_supported: string[];
|
9602
|
+
credential_signing_alg_values_supported: string[];
|
9332
9603
|
authentic_source?: string | undefined;
|
9333
9604
|
issuance_errors_supported?: Record<string, {
|
9334
9605
|
display: {
|
@@ -9490,10 +9761,6 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
9490
9761
|
display: {
|
9491
9762
|
name: string;
|
9492
9763
|
locale: string;
|
9493
|
-
logo?: {
|
9494
|
-
url: string;
|
9495
|
-
alt_text: string;
|
9496
|
-
} | undefined;
|
9497
9764
|
}[];
|
9498
9765
|
credential_issuer: string;
|
9499
9766
|
credential_endpoint: string;
|
@@ -9503,24 +9770,18 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
9503
9770
|
display: {
|
9504
9771
|
name: string;
|
9505
9772
|
locale: string;
|
9506
|
-
logo?: {
|
9507
|
-
url: string;
|
9508
|
-
alt_text: string;
|
9509
|
-
} | undefined;
|
9510
|
-
background_color?: string | undefined;
|
9511
|
-
text_color?: string | undefined;
|
9512
9773
|
}[];
|
9513
9774
|
format: "vc+sd-jwt" | "vc+mdoc-cbor";
|
9514
9775
|
scope: string;
|
9515
|
-
|
9516
|
-
credential_signing_alg_values_supported: string[];
|
9517
|
-
claims?: Record<string, {
|
9776
|
+
claims: Record<string, {
|
9518
9777
|
value_type: string;
|
9519
9778
|
display: {
|
9520
9779
|
name: string;
|
9521
9780
|
locale: string;
|
9522
9781
|
}[];
|
9523
|
-
}
|
9782
|
+
}>;
|
9783
|
+
cryptographic_binding_methods_supported: string[];
|
9784
|
+
credential_signing_alg_values_supported: string[];
|
9524
9785
|
authentic_source?: string | undefined;
|
9525
9786
|
issuance_errors_supported?: Record<string, {
|
9526
9787
|
display: {
|
@@ -9560,10 +9821,6 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
9560
9821
|
display: {
|
9561
9822
|
name: string;
|
9562
9823
|
locale: string;
|
9563
|
-
logo?: {
|
9564
|
-
url: string;
|
9565
|
-
alt_text: string;
|
9566
|
-
} | undefined;
|
9567
9824
|
}[];
|
9568
9825
|
credential_issuer: string;
|
9569
9826
|
credential_endpoint: string;
|
@@ -9573,24 +9830,18 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
9573
9830
|
display: {
|
9574
9831
|
name: string;
|
9575
9832
|
locale: string;
|
9576
|
-
logo?: {
|
9577
|
-
url: string;
|
9578
|
-
alt_text: string;
|
9579
|
-
} | undefined;
|
9580
|
-
background_color?: string | undefined;
|
9581
|
-
text_color?: string | undefined;
|
9582
9833
|
}[];
|
9583
9834
|
format: "vc+sd-jwt" | "vc+mdoc-cbor";
|
9584
9835
|
scope: string;
|
9585
|
-
|
9586
|
-
credential_signing_alg_values_supported: string[];
|
9587
|
-
claims?: Record<string, {
|
9836
|
+
claims: Record<string, {
|
9588
9837
|
value_type: string;
|
9589
9838
|
display: {
|
9590
9839
|
name: string;
|
9591
9840
|
locale: string;
|
9592
9841
|
}[];
|
9593
|
-
}
|
9842
|
+
}>;
|
9843
|
+
cryptographic_binding_methods_supported: string[];
|
9844
|
+
credential_signing_alg_values_supported: string[];
|
9594
9845
|
authentic_source?: string | undefined;
|
9595
9846
|
issuance_errors_supported?: Record<string, {
|
9596
9847
|
display: {
|
@@ -9604,12 +9855,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
9604
9855
|
oauth_authorization_server: z.ZodObject<{
|
9605
9856
|
authorization_endpoint: z.ZodString;
|
9606
9857
|
pushed_authorization_request_endpoint: z.ZodString;
|
9607
|
-
dpop_signing_alg_values_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
9608
9858
|
token_endpoint: z.ZodString;
|
9609
|
-
introspection_endpoint: z.ZodOptional<z.ZodString>;
|
9610
9859
|
client_registration_types_supported: z.ZodArray<z.ZodString, "many">;
|
9611
9860
|
code_challenge_methods_supported: z.ZodArray<z.ZodString, "many">;
|
9612
|
-
authorization_details_types_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
9613
9861
|
acr_values_supported: z.ZodArray<z.ZodString, "many">;
|
9614
9862
|
grant_types_supported: z.ZodArray<z.ZodString, "many">;
|
9615
9863
|
issuer: z.ZodString;
|
@@ -9736,11 +9984,7 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
9736
9984
|
}[];
|
9737
9985
|
}>;
|
9738
9986
|
scopes_supported: z.ZodArray<z.ZodString, "many">;
|
9739
|
-
request_parameter_supported: z.ZodOptional<z.ZodBoolean>;
|
9740
|
-
request_uri_parameter_supported: z.ZodOptional<z.ZodBoolean>;
|
9741
|
-
response_types_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
9742
9987
|
response_modes_supported: z.ZodArray<z.ZodString, "many">;
|
9743
|
-
subject_types_supported: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
9744
9988
|
token_endpoint_auth_methods_supported: z.ZodArray<z.ZodString, "many">;
|
9745
9989
|
token_endpoint_auth_signing_alg_values_supported: z.ZodArray<z.ZodString, "many">;
|
9746
9990
|
request_object_signing_alg_values_supported: z.ZodArray<z.ZodString, "many">;
|
@@ -9784,13 +10028,6 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
9784
10028
|
token_endpoint_auth_methods_supported: string[];
|
9785
10029
|
token_endpoint_auth_signing_alg_values_supported: string[];
|
9786
10030
|
request_object_signing_alg_values_supported: string[];
|
9787
|
-
dpop_signing_alg_values_supported?: string[] | undefined;
|
9788
|
-
introspection_endpoint?: string | undefined;
|
9789
|
-
authorization_details_types_supported?: string[] | undefined;
|
9790
|
-
request_parameter_supported?: boolean | undefined;
|
9791
|
-
request_uri_parameter_supported?: boolean | undefined;
|
9792
|
-
response_types_supported?: string[] | undefined;
|
9793
|
-
subject_types_supported?: string[] | undefined;
|
9794
10031
|
}, {
|
9795
10032
|
jwks: {
|
9796
10033
|
keys: {
|
@@ -9831,13 +10068,6 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
9831
10068
|
token_endpoint_auth_methods_supported: string[];
|
9832
10069
|
token_endpoint_auth_signing_alg_values_supported: string[];
|
9833
10070
|
request_object_signing_alg_values_supported: string[];
|
9834
|
-
dpop_signing_alg_values_supported?: string[] | undefined;
|
9835
|
-
introspection_endpoint?: string | undefined;
|
9836
|
-
authorization_details_types_supported?: string[] | undefined;
|
9837
|
-
request_parameter_supported?: boolean | undefined;
|
9838
|
-
request_uri_parameter_supported?: boolean | undefined;
|
9839
|
-
response_types_supported?: string[] | undefined;
|
9840
|
-
subject_types_supported?: string[] | undefined;
|
9841
10071
|
}>;
|
9842
10072
|
/** Credential Issuers act as Relying Party
|
9843
10073
|
when they require the presentation of other credentials.
|
@@ -10063,10 +10293,6 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
10063
10293
|
display: {
|
10064
10294
|
name: string;
|
10065
10295
|
locale: string;
|
10066
|
-
logo?: {
|
10067
|
-
url: string;
|
10068
|
-
alt_text: string;
|
10069
|
-
} | undefined;
|
10070
10296
|
}[];
|
10071
10297
|
credential_issuer: string;
|
10072
10298
|
credential_endpoint: string;
|
@@ -10076,24 +10302,18 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
10076
10302
|
display: {
|
10077
10303
|
name: string;
|
10078
10304
|
locale: string;
|
10079
|
-
logo?: {
|
10080
|
-
url: string;
|
10081
|
-
alt_text: string;
|
10082
|
-
} | undefined;
|
10083
|
-
background_color?: string | undefined;
|
10084
|
-
text_color?: string | undefined;
|
10085
10305
|
}[];
|
10086
10306
|
format: "vc+sd-jwt" | "vc+mdoc-cbor";
|
10087
10307
|
scope: string;
|
10088
|
-
|
10089
|
-
credential_signing_alg_values_supported: string[];
|
10090
|
-
claims?: Record<string, {
|
10308
|
+
claims: Record<string, {
|
10091
10309
|
value_type: string;
|
10092
10310
|
display: {
|
10093
10311
|
name: string;
|
10094
10312
|
locale: string;
|
10095
10313
|
}[];
|
10096
|
-
}
|
10314
|
+
}>;
|
10315
|
+
cryptographic_binding_methods_supported: string[];
|
10316
|
+
credential_signing_alg_values_supported: string[];
|
10097
10317
|
authentic_source?: string | undefined;
|
10098
10318
|
issuance_errors_supported?: Record<string, {
|
10099
10319
|
display: {
|
@@ -10144,13 +10364,6 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
10144
10364
|
token_endpoint_auth_methods_supported: string[];
|
10145
10365
|
token_endpoint_auth_signing_alg_values_supported: string[];
|
10146
10366
|
request_object_signing_alg_values_supported: string[];
|
10147
|
-
dpop_signing_alg_values_supported?: string[] | undefined;
|
10148
|
-
introspection_endpoint?: string | undefined;
|
10149
|
-
authorization_details_types_supported?: string[] | undefined;
|
10150
|
-
request_parameter_supported?: boolean | undefined;
|
10151
|
-
request_uri_parameter_supported?: boolean | undefined;
|
10152
|
-
response_types_supported?: string[] | undefined;
|
10153
|
-
subject_types_supported?: string[] | undefined;
|
10154
10367
|
};
|
10155
10368
|
wallet_relying_party?: {
|
10156
10369
|
jwks: {
|
@@ -10215,10 +10428,6 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
10215
10428
|
display: {
|
10216
10429
|
name: string;
|
10217
10430
|
locale: string;
|
10218
|
-
logo?: {
|
10219
|
-
url: string;
|
10220
|
-
alt_text: string;
|
10221
|
-
} | undefined;
|
10222
10431
|
}[];
|
10223
10432
|
credential_issuer: string;
|
10224
10433
|
credential_endpoint: string;
|
@@ -10228,24 +10437,18 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
10228
10437
|
display: {
|
10229
10438
|
name: string;
|
10230
10439
|
locale: string;
|
10231
|
-
logo?: {
|
10232
|
-
url: string;
|
10233
|
-
alt_text: string;
|
10234
|
-
} | undefined;
|
10235
|
-
background_color?: string | undefined;
|
10236
|
-
text_color?: string | undefined;
|
10237
10440
|
}[];
|
10238
10441
|
format: "vc+sd-jwt" | "vc+mdoc-cbor";
|
10239
10442
|
scope: string;
|
10240
|
-
|
10241
|
-
credential_signing_alg_values_supported: string[];
|
10242
|
-
claims?: Record<string, {
|
10443
|
+
claims: Record<string, {
|
10243
10444
|
value_type: string;
|
10244
10445
|
display: {
|
10245
10446
|
name: string;
|
10246
10447
|
locale: string;
|
10247
10448
|
}[];
|
10248
|
-
}
|
10449
|
+
}>;
|
10450
|
+
cryptographic_binding_methods_supported: string[];
|
10451
|
+
credential_signing_alg_values_supported: string[];
|
10249
10452
|
authentic_source?: string | undefined;
|
10250
10453
|
issuance_errors_supported?: Record<string, {
|
10251
10454
|
display: {
|
@@ -10296,13 +10499,6 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
10296
10499
|
token_endpoint_auth_methods_supported: string[];
|
10297
10500
|
token_endpoint_auth_signing_alg_values_supported: string[];
|
10298
10501
|
request_object_signing_alg_values_supported: string[];
|
10299
|
-
dpop_signing_alg_values_supported?: string[] | undefined;
|
10300
|
-
introspection_endpoint?: string | undefined;
|
10301
|
-
authorization_details_types_supported?: string[] | undefined;
|
10302
|
-
request_parameter_supported?: boolean | undefined;
|
10303
|
-
request_uri_parameter_supported?: boolean | undefined;
|
10304
|
-
response_types_supported?: string[] | undefined;
|
10305
|
-
subject_types_supported?: string[] | undefined;
|
10306
10502
|
};
|
10307
10503
|
wallet_relying_party?: {
|
10308
10504
|
jwks: {
|
@@ -10395,10 +10591,6 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
10395
10591
|
display: {
|
10396
10592
|
name: string;
|
10397
10593
|
locale: string;
|
10398
|
-
logo?: {
|
10399
|
-
url: string;
|
10400
|
-
alt_text: string;
|
10401
|
-
} | undefined;
|
10402
10594
|
}[];
|
10403
10595
|
credential_issuer: string;
|
10404
10596
|
credential_endpoint: string;
|
@@ -10408,24 +10600,18 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
10408
10600
|
display: {
|
10409
10601
|
name: string;
|
10410
10602
|
locale: string;
|
10411
|
-
logo?: {
|
10412
|
-
url: string;
|
10413
|
-
alt_text: string;
|
10414
|
-
} | undefined;
|
10415
|
-
background_color?: string | undefined;
|
10416
|
-
text_color?: string | undefined;
|
10417
10603
|
}[];
|
10418
10604
|
format: "vc+sd-jwt" | "vc+mdoc-cbor";
|
10419
10605
|
scope: string;
|
10420
|
-
|
10421
|
-
credential_signing_alg_values_supported: string[];
|
10422
|
-
claims?: Record<string, {
|
10606
|
+
claims: Record<string, {
|
10423
10607
|
value_type: string;
|
10424
10608
|
display: {
|
10425
10609
|
name: string;
|
10426
10610
|
locale: string;
|
10427
10611
|
}[];
|
10428
|
-
}
|
10612
|
+
}>;
|
10613
|
+
cryptographic_binding_methods_supported: string[];
|
10614
|
+
credential_signing_alg_values_supported: string[];
|
10429
10615
|
authentic_source?: string | undefined;
|
10430
10616
|
issuance_errors_supported?: Record<string, {
|
10431
10617
|
display: {
|
@@ -10476,13 +10662,6 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
10476
10662
|
token_endpoint_auth_methods_supported: string[];
|
10477
10663
|
token_endpoint_auth_signing_alg_values_supported: string[];
|
10478
10664
|
request_object_signing_alg_values_supported: string[];
|
10479
|
-
dpop_signing_alg_values_supported?: string[] | undefined;
|
10480
|
-
introspection_endpoint?: string | undefined;
|
10481
|
-
authorization_details_types_supported?: string[] | undefined;
|
10482
|
-
request_parameter_supported?: boolean | undefined;
|
10483
|
-
request_uri_parameter_supported?: boolean | undefined;
|
10484
|
-
response_types_supported?: string[] | undefined;
|
10485
|
-
subject_types_supported?: string[] | undefined;
|
10486
10665
|
};
|
10487
10666
|
wallet_relying_party?: {
|
10488
10667
|
jwks: {
|
@@ -10575,10 +10754,6 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
10575
10754
|
display: {
|
10576
10755
|
name: string;
|
10577
10756
|
locale: string;
|
10578
|
-
logo?: {
|
10579
|
-
url: string;
|
10580
|
-
alt_text: string;
|
10581
|
-
} | undefined;
|
10582
10757
|
}[];
|
10583
10758
|
credential_issuer: string;
|
10584
10759
|
credential_endpoint: string;
|
@@ -10588,24 +10763,18 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
10588
10763
|
display: {
|
10589
10764
|
name: string;
|
10590
10765
|
locale: string;
|
10591
|
-
logo?: {
|
10592
|
-
url: string;
|
10593
|
-
alt_text: string;
|
10594
|
-
} | undefined;
|
10595
|
-
background_color?: string | undefined;
|
10596
|
-
text_color?: string | undefined;
|
10597
10766
|
}[];
|
10598
10767
|
format: "vc+sd-jwt" | "vc+mdoc-cbor";
|
10599
10768
|
scope: string;
|
10600
|
-
|
10601
|
-
credential_signing_alg_values_supported: string[];
|
10602
|
-
claims?: Record<string, {
|
10769
|
+
claims: Record<string, {
|
10603
10770
|
value_type: string;
|
10604
10771
|
display: {
|
10605
10772
|
name: string;
|
10606
10773
|
locale: string;
|
10607
10774
|
}[];
|
10608
|
-
}
|
10775
|
+
}>;
|
10776
|
+
cryptographic_binding_methods_supported: string[];
|
10777
|
+
credential_signing_alg_values_supported: string[];
|
10609
10778
|
authentic_source?: string | undefined;
|
10610
10779
|
issuance_errors_supported?: Record<string, {
|
10611
10780
|
display: {
|
@@ -10656,13 +10825,6 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
10656
10825
|
token_endpoint_auth_methods_supported: string[];
|
10657
10826
|
token_endpoint_auth_signing_alg_values_supported: string[];
|
10658
10827
|
request_object_signing_alg_values_supported: string[];
|
10659
|
-
dpop_signing_alg_values_supported?: string[] | undefined;
|
10660
|
-
introspection_endpoint?: string | undefined;
|
10661
|
-
authorization_details_types_supported?: string[] | undefined;
|
10662
|
-
request_parameter_supported?: boolean | undefined;
|
10663
|
-
request_uri_parameter_supported?: boolean | undefined;
|
10664
|
-
response_types_supported?: string[] | undefined;
|
10665
|
-
subject_types_supported?: string[] | undefined;
|
10666
10828
|
};
|
10667
10829
|
wallet_relying_party?: {
|
10668
10830
|
jwks: {
|
@@ -10757,10 +10919,6 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
10757
10919
|
display: {
|
10758
10920
|
name: string;
|
10759
10921
|
locale: string;
|
10760
|
-
logo?: {
|
10761
|
-
url: string;
|
10762
|
-
alt_text: string;
|
10763
|
-
} | undefined;
|
10764
10922
|
}[];
|
10765
10923
|
credential_issuer: string;
|
10766
10924
|
credential_endpoint: string;
|
@@ -10770,24 +10928,18 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
10770
10928
|
display: {
|
10771
10929
|
name: string;
|
10772
10930
|
locale: string;
|
10773
|
-
logo?: {
|
10774
|
-
url: string;
|
10775
|
-
alt_text: string;
|
10776
|
-
} | undefined;
|
10777
|
-
background_color?: string | undefined;
|
10778
|
-
text_color?: string | undefined;
|
10779
10931
|
}[];
|
10780
10932
|
format: "vc+sd-jwt" | "vc+mdoc-cbor";
|
10781
10933
|
scope: string;
|
10782
|
-
|
10783
|
-
credential_signing_alg_values_supported: string[];
|
10784
|
-
claims?: Record<string, {
|
10934
|
+
claims: Record<string, {
|
10785
10935
|
value_type: string;
|
10786
10936
|
display: {
|
10787
10937
|
name: string;
|
10788
10938
|
locale: string;
|
10789
10939
|
}[];
|
10790
|
-
}
|
10940
|
+
}>;
|
10941
|
+
cryptographic_binding_methods_supported: string[];
|
10942
|
+
credential_signing_alg_values_supported: string[];
|
10791
10943
|
authentic_source?: string | undefined;
|
10792
10944
|
issuance_errors_supported?: Record<string, {
|
10793
10945
|
display: {
|
@@ -10838,13 +10990,6 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
10838
10990
|
token_endpoint_auth_methods_supported: string[];
|
10839
10991
|
token_endpoint_auth_signing_alg_values_supported: string[];
|
10840
10992
|
request_object_signing_alg_values_supported: string[];
|
10841
|
-
dpop_signing_alg_values_supported?: string[] | undefined;
|
10842
|
-
introspection_endpoint?: string | undefined;
|
10843
|
-
authorization_details_types_supported?: string[] | undefined;
|
10844
|
-
request_parameter_supported?: boolean | undefined;
|
10845
|
-
request_uri_parameter_supported?: boolean | undefined;
|
10846
|
-
response_types_supported?: string[] | undefined;
|
10847
|
-
subject_types_supported?: string[] | undefined;
|
10848
10993
|
};
|
10849
10994
|
wallet_relying_party?: {
|
10850
10995
|
jwks: {
|
@@ -10939,10 +11084,6 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
10939
11084
|
display: {
|
10940
11085
|
name: string;
|
10941
11086
|
locale: string;
|
10942
|
-
logo?: {
|
10943
|
-
url: string;
|
10944
|
-
alt_text: string;
|
10945
|
-
} | undefined;
|
10946
11087
|
}[];
|
10947
11088
|
credential_issuer: string;
|
10948
11089
|
credential_endpoint: string;
|
@@ -10952,24 +11093,18 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
10952
11093
|
display: {
|
10953
11094
|
name: string;
|
10954
11095
|
locale: string;
|
10955
|
-
logo?: {
|
10956
|
-
url: string;
|
10957
|
-
alt_text: string;
|
10958
|
-
} | undefined;
|
10959
|
-
background_color?: string | undefined;
|
10960
|
-
text_color?: string | undefined;
|
10961
11096
|
}[];
|
10962
11097
|
format: "vc+sd-jwt" | "vc+mdoc-cbor";
|
10963
11098
|
scope: string;
|
10964
|
-
|
10965
|
-
credential_signing_alg_values_supported: string[];
|
10966
|
-
claims?: Record<string, {
|
11099
|
+
claims: Record<string, {
|
10967
11100
|
value_type: string;
|
10968
11101
|
display: {
|
10969
11102
|
name: string;
|
10970
11103
|
locale: string;
|
10971
11104
|
}[];
|
10972
|
-
}
|
11105
|
+
}>;
|
11106
|
+
cryptographic_binding_methods_supported: string[];
|
11107
|
+
credential_signing_alg_values_supported: string[];
|
10973
11108
|
authentic_source?: string | undefined;
|
10974
11109
|
issuance_errors_supported?: Record<string, {
|
10975
11110
|
display: {
|
@@ -11020,13 +11155,6 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11020
11155
|
token_endpoint_auth_methods_supported: string[];
|
11021
11156
|
token_endpoint_auth_signing_alg_values_supported: string[];
|
11022
11157
|
request_object_signing_alg_values_supported: string[];
|
11023
|
-
dpop_signing_alg_values_supported?: string[] | undefined;
|
11024
|
-
introspection_endpoint?: string | undefined;
|
11025
|
-
authorization_details_types_supported?: string[] | undefined;
|
11026
|
-
request_parameter_supported?: boolean | undefined;
|
11027
|
-
request_uri_parameter_supported?: boolean | undefined;
|
11028
|
-
response_types_supported?: string[] | undefined;
|
11029
|
-
subject_types_supported?: string[] | undefined;
|
11030
11158
|
};
|
11031
11159
|
wallet_relying_party?: {
|
11032
11160
|
jwks: {
|
@@ -11089,6 +11217,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11089
11217
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11090
11218
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11091
11219
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
11220
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
11221
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
11222
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
11092
11223
|
organization_name: z.ZodOptional<z.ZodString>;
|
11093
11224
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11094
11225
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11100,6 +11231,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11100
11231
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11101
11232
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11102
11233
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
11234
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
11235
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
11236
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
11103
11237
|
organization_name: z.ZodOptional<z.ZodString>;
|
11104
11238
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11105
11239
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11111,6 +11245,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11111
11245
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11112
11246
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11113
11247
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
11248
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
11249
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
11250
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
11114
11251
|
organization_name: z.ZodOptional<z.ZodString>;
|
11115
11252
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11116
11253
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11124,6 +11261,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11124
11261
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11125
11262
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11126
11263
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
11264
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
11265
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
11266
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
11127
11267
|
organization_name: z.ZodOptional<z.ZodString>;
|
11128
11268
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11129
11269
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11135,6 +11275,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11135
11275
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11136
11276
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11137
11277
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
11278
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
11279
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
11280
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
11138
11281
|
organization_name: z.ZodOptional<z.ZodString>;
|
11139
11282
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11140
11283
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11146,6 +11289,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11146
11289
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11147
11290
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11148
11291
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
11292
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
11293
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
11294
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
11149
11295
|
organization_name: z.ZodOptional<z.ZodString>;
|
11150
11296
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11151
11297
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11159,6 +11305,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11159
11305
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11160
11306
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11161
11307
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
11308
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
11309
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
11310
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
11162
11311
|
organization_name: z.ZodOptional<z.ZodString>;
|
11163
11312
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11164
11313
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11170,6 +11319,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11170
11319
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11171
11320
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11172
11321
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
11322
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
11323
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
11324
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
11173
11325
|
organization_name: z.ZodOptional<z.ZodString>;
|
11174
11326
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11175
11327
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11181,6 +11333,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11181
11333
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11182
11334
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11183
11335
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
11336
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
11337
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
11338
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
11184
11339
|
organization_name: z.ZodOptional<z.ZodString>;
|
11185
11340
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11186
11341
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11323,6 +11478,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11323
11478
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11324
11479
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11325
11480
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
11481
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
11482
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
11483
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
11326
11484
|
organization_name: z.ZodOptional<z.ZodString>;
|
11327
11485
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11328
11486
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11334,6 +11492,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11334
11492
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11335
11493
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11336
11494
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
11495
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
11496
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
11497
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
11337
11498
|
organization_name: z.ZodOptional<z.ZodString>;
|
11338
11499
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11339
11500
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11345,6 +11506,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11345
11506
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11346
11507
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11347
11508
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
11509
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
11510
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
11511
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
11348
11512
|
organization_name: z.ZodOptional<z.ZodString>;
|
11349
11513
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11350
11514
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11358,6 +11522,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11358
11522
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11359
11523
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11360
11524
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
11525
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
11526
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
11527
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
11361
11528
|
organization_name: z.ZodOptional<z.ZodString>;
|
11362
11529
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11363
11530
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11369,6 +11536,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11369
11536
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11370
11537
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11371
11538
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
11539
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
11540
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
11541
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
11372
11542
|
organization_name: z.ZodOptional<z.ZodString>;
|
11373
11543
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11374
11544
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11380,6 +11550,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11380
11550
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11381
11551
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11382
11552
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
11553
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
11554
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
11555
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
11383
11556
|
organization_name: z.ZodOptional<z.ZodString>;
|
11384
11557
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11385
11558
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11393,6 +11566,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11393
11566
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11394
11567
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11395
11568
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
11569
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
11570
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
11571
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
11396
11572
|
organization_name: z.ZodOptional<z.ZodString>;
|
11397
11573
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11398
11574
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11404,6 +11580,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11404
11580
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11405
11581
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11406
11582
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
11583
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
11584
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
11585
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
11407
11586
|
organization_name: z.ZodOptional<z.ZodString>;
|
11408
11587
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11409
11588
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11415,6 +11594,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11415
11594
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11416
11595
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11417
11596
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
11597
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
11598
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
11599
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
11418
11600
|
organization_name: z.ZodOptional<z.ZodString>;
|
11419
11601
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11420
11602
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11557,6 +11739,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11557
11739
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11558
11740
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11559
11741
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
11742
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
11743
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
11744
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
11560
11745
|
organization_name: z.ZodOptional<z.ZodString>;
|
11561
11746
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11562
11747
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11568,6 +11753,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11568
11753
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11569
11754
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11570
11755
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
11756
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
11757
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
11758
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
11571
11759
|
organization_name: z.ZodOptional<z.ZodString>;
|
11572
11760
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11573
11761
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11579,6 +11767,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11579
11767
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11580
11768
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11581
11769
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
11770
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
11771
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
11772
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
11582
11773
|
organization_name: z.ZodOptional<z.ZodString>;
|
11583
11774
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11584
11775
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11592,6 +11783,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11592
11783
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11593
11784
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11594
11785
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
11786
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
11787
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
11788
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
11595
11789
|
organization_name: z.ZodOptional<z.ZodString>;
|
11596
11790
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11597
11791
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11603,6 +11797,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11603
11797
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11604
11798
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11605
11799
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
11800
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
11801
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
11802
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
11606
11803
|
organization_name: z.ZodOptional<z.ZodString>;
|
11607
11804
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11608
11805
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11614,6 +11811,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11614
11811
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11615
11812
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11616
11813
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
11814
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
11815
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
11816
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
11617
11817
|
organization_name: z.ZodOptional<z.ZodString>;
|
11618
11818
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11619
11819
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11627,6 +11827,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11627
11827
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11628
11828
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11629
11829
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
11830
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
11831
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
11832
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
11630
11833
|
organization_name: z.ZodOptional<z.ZodString>;
|
11631
11834
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11632
11835
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11638,6 +11841,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11638
11841
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11639
11842
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11640
11843
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
11844
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
11845
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
11846
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
11641
11847
|
organization_name: z.ZodOptional<z.ZodString>;
|
11642
11848
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11643
11849
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11649,6 +11855,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11649
11855
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11650
11856
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11651
11857
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
11858
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
11859
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
11860
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
11652
11861
|
organization_name: z.ZodOptional<z.ZodString>;
|
11653
11862
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11654
11863
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11780,11 +11989,6 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11780
11989
|
}>;
|
11781
11990
|
}, z.ZodTypeAny, "passthrough">>;
|
11782
11991
|
}, "strip", z.ZodTypeAny, {
|
11783
|
-
header: {
|
11784
|
-
alg: string;
|
11785
|
-
kid: string;
|
11786
|
-
typ: "entity-statement+jwt";
|
11787
|
-
};
|
11788
11992
|
payload: {
|
11789
11993
|
iss: string;
|
11790
11994
|
sub: string;
|
@@ -11823,6 +12027,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11823
12027
|
federation_resolve_endpoint?: string | undefined;
|
11824
12028
|
federation_trust_mark_status_endpoint?: string | undefined;
|
11825
12029
|
federation_trust_mark_list_endpoint?: string | undefined;
|
12030
|
+
federation_trust_mark_endpoint?: string | undefined;
|
12031
|
+
federation_historical_keys_endpoint?: string | undefined;
|
12032
|
+
endpoint_auth_signing_alg_values_supported?: string | undefined;
|
11826
12033
|
organization_name?: string | undefined;
|
11827
12034
|
homepage_uri?: string | undefined;
|
11828
12035
|
policy_uri?: string | undefined;
|
@@ -11838,12 +12045,12 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11838
12045
|
} & {
|
11839
12046
|
[k: string]: unknown;
|
11840
12047
|
};
|
11841
|
-
}, {
|
11842
12048
|
header: {
|
11843
12049
|
alg: string;
|
11844
12050
|
kid: string;
|
11845
12051
|
typ: "entity-statement+jwt";
|
11846
12052
|
};
|
12053
|
+
}, {
|
11847
12054
|
payload: {
|
11848
12055
|
iss: string;
|
11849
12056
|
sub: string;
|
@@ -11882,6 +12089,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11882
12089
|
federation_resolve_endpoint?: string | undefined;
|
11883
12090
|
federation_trust_mark_status_endpoint?: string | undefined;
|
11884
12091
|
federation_trust_mark_list_endpoint?: string | undefined;
|
12092
|
+
federation_trust_mark_endpoint?: string | undefined;
|
12093
|
+
federation_historical_keys_endpoint?: string | undefined;
|
12094
|
+
endpoint_auth_signing_alg_values_supported?: string | undefined;
|
11885
12095
|
organization_name?: string | undefined;
|
11886
12096
|
homepage_uri?: string | undefined;
|
11887
12097
|
policy_uri?: string | undefined;
|
@@ -11897,6 +12107,11 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11897
12107
|
} & {
|
11898
12108
|
[k: string]: unknown;
|
11899
12109
|
};
|
12110
|
+
header: {
|
12111
|
+
alg: string;
|
12112
|
+
kid: string;
|
12113
|
+
typ: "entity-statement+jwt";
|
12114
|
+
};
|
11900
12115
|
}>, z.ZodIntersection<z.ZodObject<{
|
11901
12116
|
header: z.ZodObject<{
|
11902
12117
|
typ: z.ZodLiteral<"entity-statement+jwt">;
|
@@ -11924,6 +12139,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11924
12139
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11925
12140
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11926
12141
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
12142
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
12143
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
12144
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
11927
12145
|
organization_name: z.ZodOptional<z.ZodString>;
|
11928
12146
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11929
12147
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11935,6 +12153,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11935
12153
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11936
12154
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11937
12155
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
12156
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
12157
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
12158
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
11938
12159
|
organization_name: z.ZodOptional<z.ZodString>;
|
11939
12160
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11940
12161
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11946,6 +12167,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11946
12167
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11947
12168
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11948
12169
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
12170
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
12171
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
12172
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
11949
12173
|
organization_name: z.ZodOptional<z.ZodString>;
|
11950
12174
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11951
12175
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11959,6 +12183,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11959
12183
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11960
12184
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11961
12185
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
12186
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
12187
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
12188
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
11962
12189
|
organization_name: z.ZodOptional<z.ZodString>;
|
11963
12190
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11964
12191
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11970,6 +12197,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11970
12197
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11971
12198
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11972
12199
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
12200
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
12201
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
12202
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
11973
12203
|
organization_name: z.ZodOptional<z.ZodString>;
|
11974
12204
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11975
12205
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11981,6 +12211,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11981
12211
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11982
12212
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11983
12213
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
12214
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
12215
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
12216
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
11984
12217
|
organization_name: z.ZodOptional<z.ZodString>;
|
11985
12218
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11986
12219
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11994,6 +12227,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11994
12227
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11995
12228
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11996
12229
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
12230
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
12231
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
12232
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
11997
12233
|
organization_name: z.ZodOptional<z.ZodString>;
|
11998
12234
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11999
12235
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -12005,6 +12241,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
12005
12241
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
12006
12242
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
12007
12243
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
12244
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
12245
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
12246
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
12008
12247
|
organization_name: z.ZodOptional<z.ZodString>;
|
12009
12248
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
12010
12249
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -12016,6 +12255,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
12016
12255
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
12017
12256
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
12018
12257
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
12258
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
12259
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
12260
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
12019
12261
|
organization_name: z.ZodOptional<z.ZodString>;
|
12020
12262
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
12021
12263
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -12158,6 +12400,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
12158
12400
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
12159
12401
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
12160
12402
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
12403
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
12404
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
12405
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
12161
12406
|
organization_name: z.ZodOptional<z.ZodString>;
|
12162
12407
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
12163
12408
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -12169,6 +12414,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
12169
12414
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
12170
12415
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
12171
12416
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
12417
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
12418
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
12419
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
12172
12420
|
organization_name: z.ZodOptional<z.ZodString>;
|
12173
12421
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
12174
12422
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -12180,6 +12428,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
12180
12428
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
12181
12429
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
12182
12430
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
12431
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
12432
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
12433
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
12183
12434
|
organization_name: z.ZodOptional<z.ZodString>;
|
12184
12435
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
12185
12436
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -12193,6 +12444,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
12193
12444
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
12194
12445
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
12195
12446
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
12447
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
12448
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
12449
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
12196
12450
|
organization_name: z.ZodOptional<z.ZodString>;
|
12197
12451
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
12198
12452
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -12204,6 +12458,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
12204
12458
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
12205
12459
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
12206
12460
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
12461
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
12462
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
12463
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
12207
12464
|
organization_name: z.ZodOptional<z.ZodString>;
|
12208
12465
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
12209
12466
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -12215,6 +12472,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
12215
12472
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
12216
12473
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
12217
12474
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
12475
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
12476
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
12477
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
12218
12478
|
organization_name: z.ZodOptional<z.ZodString>;
|
12219
12479
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
12220
12480
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -12228,6 +12488,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
12228
12488
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
12229
12489
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
12230
12490
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
12491
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
12492
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
12493
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
12231
12494
|
organization_name: z.ZodOptional<z.ZodString>;
|
12232
12495
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
12233
12496
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -12239,6 +12502,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
12239
12502
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
12240
12503
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
12241
12504
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
12505
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
12506
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
12507
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
12242
12508
|
organization_name: z.ZodOptional<z.ZodString>;
|
12243
12509
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
12244
12510
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -12250,6 +12516,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
12250
12516
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
12251
12517
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
12252
12518
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
12519
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
12520
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
12521
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
12253
12522
|
organization_name: z.ZodOptional<z.ZodString>;
|
12254
12523
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
12255
12524
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -12392,6 +12661,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
12392
12661
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
12393
12662
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
12394
12663
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
12664
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
12665
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
12666
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
12395
12667
|
organization_name: z.ZodOptional<z.ZodString>;
|
12396
12668
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
12397
12669
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -12403,6 +12675,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
12403
12675
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
12404
12676
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
12405
12677
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
12678
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
12679
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
12680
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
12406
12681
|
organization_name: z.ZodOptional<z.ZodString>;
|
12407
12682
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
12408
12683
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -12414,6 +12689,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
12414
12689
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
12415
12690
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
12416
12691
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
12692
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
12693
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
12694
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
12417
12695
|
organization_name: z.ZodOptional<z.ZodString>;
|
12418
12696
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
12419
12697
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -12427,6 +12705,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
12427
12705
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
12428
12706
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
12429
12707
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
12708
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
12709
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
12710
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
12430
12711
|
organization_name: z.ZodOptional<z.ZodString>;
|
12431
12712
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
12432
12713
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -12438,6 +12719,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
12438
12719
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
12439
12720
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
12440
12721
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
12722
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
12723
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
12724
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
12441
12725
|
organization_name: z.ZodOptional<z.ZodString>;
|
12442
12726
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
12443
12727
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -12449,6 +12733,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
12449
12733
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
12450
12734
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
12451
12735
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
12736
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
12737
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
12738
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
12452
12739
|
organization_name: z.ZodOptional<z.ZodString>;
|
12453
12740
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
12454
12741
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -12462,6 +12749,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
12462
12749
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
12463
12750
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
12464
12751
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
12752
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
12753
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
12754
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
12465
12755
|
organization_name: z.ZodOptional<z.ZodString>;
|
12466
12756
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
12467
12757
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -12473,6 +12763,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
12473
12763
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
12474
12764
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
12475
12765
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
12766
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
12767
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
12768
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
12476
12769
|
organization_name: z.ZodOptional<z.ZodString>;
|
12477
12770
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
12478
12771
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -12484,6 +12777,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
12484
12777
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
12485
12778
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
12486
12779
|
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
12780
|
+
federation_trust_mark_endpoint: z.ZodOptional<z.ZodString>;
|
12781
|
+
federation_historical_keys_endpoint: z.ZodOptional<z.ZodString>;
|
12782
|
+
endpoint_auth_signing_alg_values_supported: z.ZodOptional<z.ZodString>;
|
12487
12783
|
organization_name: z.ZodOptional<z.ZodString>;
|
12488
12784
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
12489
12785
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -12615,11 +12911,6 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
12615
12911
|
}>;
|
12616
12912
|
}, z.ZodTypeAny, "passthrough">>;
|
12617
12913
|
}, "strip", z.ZodTypeAny, {
|
12618
|
-
header: {
|
12619
|
-
alg: string;
|
12620
|
-
kid: string;
|
12621
|
-
typ: "entity-statement+jwt";
|
12622
|
-
};
|
12623
12914
|
payload: {
|
12624
12915
|
iss: string;
|
12625
12916
|
sub: string;
|
@@ -12658,6 +12949,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
12658
12949
|
federation_resolve_endpoint?: string | undefined;
|
12659
12950
|
federation_trust_mark_status_endpoint?: string | undefined;
|
12660
12951
|
federation_trust_mark_list_endpoint?: string | undefined;
|
12952
|
+
federation_trust_mark_endpoint?: string | undefined;
|
12953
|
+
federation_historical_keys_endpoint?: string | undefined;
|
12954
|
+
endpoint_auth_signing_alg_values_supported?: string | undefined;
|
12661
12955
|
organization_name?: string | undefined;
|
12662
12956
|
homepage_uri?: string | undefined;
|
12663
12957
|
policy_uri?: string | undefined;
|
@@ -12673,12 +12967,12 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
12673
12967
|
} & {
|
12674
12968
|
[k: string]: unknown;
|
12675
12969
|
};
|
12676
|
-
}, {
|
12677
12970
|
header: {
|
12678
12971
|
alg: string;
|
12679
12972
|
kid: string;
|
12680
12973
|
typ: "entity-statement+jwt";
|
12681
12974
|
};
|
12975
|
+
}, {
|
12682
12976
|
payload: {
|
12683
12977
|
iss: string;
|
12684
12978
|
sub: string;
|
@@ -12717,6 +13011,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
12717
13011
|
federation_resolve_endpoint?: string | undefined;
|
12718
13012
|
federation_trust_mark_status_endpoint?: string | undefined;
|
12719
13013
|
federation_trust_mark_list_endpoint?: string | undefined;
|
13014
|
+
federation_trust_mark_endpoint?: string | undefined;
|
13015
|
+
federation_historical_keys_endpoint?: string | undefined;
|
13016
|
+
endpoint_auth_signing_alg_values_supported?: string | undefined;
|
12720
13017
|
organization_name?: string | undefined;
|
12721
13018
|
homepage_uri?: string | undefined;
|
12722
13019
|
policy_uri?: string | undefined;
|
@@ -12732,6 +13029,11 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
12732
13029
|
} & {
|
12733
13030
|
[k: string]: unknown;
|
12734
13031
|
};
|
13032
|
+
header: {
|
13033
|
+
alg: string;
|
13034
|
+
kid: string;
|
13035
|
+
typ: "entity-statement+jwt";
|
13036
|
+
};
|
12735
13037
|
}>, z.ZodObject<{
|
12736
13038
|
payload: z.ZodObject<{
|
12737
13039
|
metadata: z.ZodObject<{
|
@@ -13138,4 +13440,5 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
13138
13440
|
};
|
13139
13441
|
};
|
13140
13442
|
}>>]>;
|
13443
|
+
export declare const FederationListResponse: z.ZodArray<z.ZodString, "many">;
|
13141
13444
|
//# sourceMappingURL=types.d.ts.map
|