@pagopa/io-react-native-wallet 0.27.1 → 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/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 +10 -6
- 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/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/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 +8 -5
- 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/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 +101 -53
- package/lib/typescript/trust/index.d.ts.map +1 -1
- package/lib/typescript/trust/types.d.ts +761 -64
- 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/utils/errors.d.ts.map +1 -1
- package/lib/typescript/utils/misc.d.ts.map +1 -1
- 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 +20 -20
- package/package.json +10 -11
- package/src/client/generated/wallet-provider.ts +28 -19
- package/src/credential/presentation/types.ts +1 -1
- package/src/trust/chain.ts +48 -68
- package/src/trust/index.ts +185 -20
- package/src/trust/types.ts +9 -5
- package/src/trust/utils.ts +32 -0
- package/src/utils/errors.ts +2 -2
- package/src/utils/misc.ts +2 -2
- 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<{
|
@@ -3872,6 +4046,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
3872
4046
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
3873
4047
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
3874
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>;
|
3875
4052
|
organization_name: z.ZodOptional<z.ZodString>;
|
3876
4053
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
3877
4054
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -3883,6 +4060,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
3883
4060
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
3884
4061
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
3885
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>;
|
3886
4066
|
organization_name: z.ZodOptional<z.ZodString>;
|
3887
4067
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
3888
4068
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -3894,6 +4074,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
3894
4074
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
3895
4075
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
3896
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>;
|
3897
4080
|
organization_name: z.ZodOptional<z.ZodString>;
|
3898
4081
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
3899
4082
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -3907,6 +4090,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
3907
4090
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
3908
4091
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
3909
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>;
|
3910
4096
|
organization_name: z.ZodOptional<z.ZodString>;
|
3911
4097
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
3912
4098
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -3918,6 +4104,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
3918
4104
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
3919
4105
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
3920
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>;
|
3921
4110
|
organization_name: z.ZodOptional<z.ZodString>;
|
3922
4111
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
3923
4112
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -3929,6 +4118,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
3929
4118
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
3930
4119
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
3931
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>;
|
3932
4124
|
organization_name: z.ZodOptional<z.ZodString>;
|
3933
4125
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
3934
4126
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -3942,6 +4134,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
3942
4134
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
3943
4135
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
3944
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>;
|
3945
4140
|
organization_name: z.ZodOptional<z.ZodString>;
|
3946
4141
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
3947
4142
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -3953,6 +4148,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
3953
4148
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
3954
4149
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
3955
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>;
|
3956
4154
|
organization_name: z.ZodOptional<z.ZodString>;
|
3957
4155
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
3958
4156
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -3964,6 +4162,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
3964
4162
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
3965
4163
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
3966
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>;
|
3967
4168
|
organization_name: z.ZodOptional<z.ZodString>;
|
3968
4169
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
3969
4170
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -4106,6 +4307,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4106
4307
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
4107
4308
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
4108
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>;
|
4109
4313
|
organization_name: z.ZodOptional<z.ZodString>;
|
4110
4314
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
4111
4315
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -4117,6 +4321,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4117
4321
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
4118
4322
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
4119
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>;
|
4120
4327
|
organization_name: z.ZodOptional<z.ZodString>;
|
4121
4328
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
4122
4329
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -4128,6 +4335,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4128
4335
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
4129
4336
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
4130
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>;
|
4131
4341
|
organization_name: z.ZodOptional<z.ZodString>;
|
4132
4342
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
4133
4343
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -4141,6 +4351,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4141
4351
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
4142
4352
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
4143
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>;
|
4144
4357
|
organization_name: z.ZodOptional<z.ZodString>;
|
4145
4358
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
4146
4359
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -4152,6 +4365,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4152
4365
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
4153
4366
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
4154
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>;
|
4155
4371
|
organization_name: z.ZodOptional<z.ZodString>;
|
4156
4372
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
4157
4373
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -4163,6 +4379,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4163
4379
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
4164
4380
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
4165
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>;
|
4166
4385
|
organization_name: z.ZodOptional<z.ZodString>;
|
4167
4386
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
4168
4387
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -4176,6 +4395,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4176
4395
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
4177
4396
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
4178
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>;
|
4179
4401
|
organization_name: z.ZodOptional<z.ZodString>;
|
4180
4402
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
4181
4403
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -4187,6 +4409,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4187
4409
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
4188
4410
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
4189
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>;
|
4190
4415
|
organization_name: z.ZodOptional<z.ZodString>;
|
4191
4416
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
4192
4417
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -4198,6 +4423,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4198
4423
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
4199
4424
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
4200
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>;
|
4201
4429
|
organization_name: z.ZodOptional<z.ZodString>;
|
4202
4430
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
4203
4431
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -4340,6 +4568,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4340
4568
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
4341
4569
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
4342
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>;
|
4343
4574
|
organization_name: z.ZodOptional<z.ZodString>;
|
4344
4575
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
4345
4576
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -4351,6 +4582,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4351
4582
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
4352
4583
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
4353
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>;
|
4354
4588
|
organization_name: z.ZodOptional<z.ZodString>;
|
4355
4589
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
4356
4590
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -4362,6 +4596,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4362
4596
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
4363
4597
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
4364
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>;
|
4365
4602
|
organization_name: z.ZodOptional<z.ZodString>;
|
4366
4603
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
4367
4604
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -4375,6 +4612,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4375
4612
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
4376
4613
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
4377
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>;
|
4378
4618
|
organization_name: z.ZodOptional<z.ZodString>;
|
4379
4619
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
4380
4620
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -4386,6 +4626,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4386
4626
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
4387
4627
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
4388
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>;
|
4389
4632
|
organization_name: z.ZodOptional<z.ZodString>;
|
4390
4633
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
4391
4634
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -4397,6 +4640,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4397
4640
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
4398
4641
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
4399
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>;
|
4400
4646
|
organization_name: z.ZodOptional<z.ZodString>;
|
4401
4647
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
4402
4648
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -4410,6 +4656,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4410
4656
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
4411
4657
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
4412
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>;
|
4413
4662
|
organization_name: z.ZodOptional<z.ZodString>;
|
4414
4663
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
4415
4664
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -4421,6 +4670,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4421
4670
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
4422
4671
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
4423
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>;
|
4424
4676
|
organization_name: z.ZodOptional<z.ZodString>;
|
4425
4677
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
4426
4678
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -4432,6 +4684,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4432
4684
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
4433
4685
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
4434
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>;
|
4435
4690
|
organization_name: z.ZodOptional<z.ZodString>;
|
4436
4691
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
4437
4692
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -4563,11 +4818,6 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4563
4818
|
}>;
|
4564
4819
|
}, z.ZodTypeAny, "passthrough">>;
|
4565
4820
|
}, "strip", z.ZodTypeAny, {
|
4566
|
-
header: {
|
4567
|
-
alg: string;
|
4568
|
-
kid: string;
|
4569
|
-
typ: "entity-statement+jwt";
|
4570
|
-
};
|
4571
4821
|
payload: {
|
4572
4822
|
iss: string;
|
4573
4823
|
sub: string;
|
@@ -4606,6 +4856,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4606
4856
|
federation_resolve_endpoint?: string | undefined;
|
4607
4857
|
federation_trust_mark_status_endpoint?: string | undefined;
|
4608
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;
|
4609
4862
|
organization_name?: string | undefined;
|
4610
4863
|
homepage_uri?: string | undefined;
|
4611
4864
|
policy_uri?: string | undefined;
|
@@ -4621,12 +4874,12 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4621
4874
|
} & {
|
4622
4875
|
[k: string]: unknown;
|
4623
4876
|
};
|
4624
|
-
}, {
|
4625
4877
|
header: {
|
4626
4878
|
alg: string;
|
4627
4879
|
kid: string;
|
4628
4880
|
typ: "entity-statement+jwt";
|
4629
4881
|
};
|
4882
|
+
}, {
|
4630
4883
|
payload: {
|
4631
4884
|
iss: string;
|
4632
4885
|
sub: string;
|
@@ -4665,6 +4918,9 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4665
4918
|
federation_resolve_endpoint?: string | undefined;
|
4666
4919
|
federation_trust_mark_status_endpoint?: string | undefined;
|
4667
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;
|
4668
4924
|
organization_name?: string | undefined;
|
4669
4925
|
homepage_uri?: string | undefined;
|
4670
4926
|
policy_uri?: string | undefined;
|
@@ -4680,6 +4936,11 @@ export declare const RelyingPartyEntityConfiguration: z.ZodIntersection<z.ZodObj
|
|
4680
4936
|
} & {
|
4681
4937
|
[k: string]: unknown;
|
4682
4938
|
};
|
4939
|
+
header: {
|
4940
|
+
alg: string;
|
4941
|
+
kid: string;
|
4942
|
+
typ: "entity-statement+jwt";
|
4943
|
+
};
|
4683
4944
|
}>, z.ZodObject<{
|
4684
4945
|
payload: z.ZodObject<{
|
4685
4946
|
metadata: z.ZodObject<{
|
@@ -5114,6 +5375,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5114
5375
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5115
5376
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5116
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>;
|
5117
5381
|
organization_name: z.ZodOptional<z.ZodString>;
|
5118
5382
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5119
5383
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5125,6 +5389,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5125
5389
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5126
5390
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5127
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>;
|
5128
5395
|
organization_name: z.ZodOptional<z.ZodString>;
|
5129
5396
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5130
5397
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5136,6 +5403,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5136
5403
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5137
5404
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5138
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>;
|
5139
5409
|
organization_name: z.ZodOptional<z.ZodString>;
|
5140
5410
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5141
5411
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5149,6 +5419,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5149
5419
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5150
5420
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5151
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>;
|
5152
5425
|
organization_name: z.ZodOptional<z.ZodString>;
|
5153
5426
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5154
5427
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5160,6 +5433,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5160
5433
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5161
5434
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5162
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>;
|
5163
5439
|
organization_name: z.ZodOptional<z.ZodString>;
|
5164
5440
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5165
5441
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5171,6 +5447,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5171
5447
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5172
5448
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5173
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>;
|
5174
5453
|
organization_name: z.ZodOptional<z.ZodString>;
|
5175
5454
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5176
5455
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5184,6 +5463,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5184
5463
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5185
5464
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5186
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>;
|
5187
5469
|
organization_name: z.ZodOptional<z.ZodString>;
|
5188
5470
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5189
5471
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5195,6 +5477,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5195
5477
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5196
5478
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5197
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>;
|
5198
5483
|
organization_name: z.ZodOptional<z.ZodString>;
|
5199
5484
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5200
5485
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5206,6 +5491,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5206
5491
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5207
5492
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5208
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>;
|
5209
5497
|
organization_name: z.ZodOptional<z.ZodString>;
|
5210
5498
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5211
5499
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5348,6 +5636,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5348
5636
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5349
5637
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5350
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>;
|
5351
5642
|
organization_name: z.ZodOptional<z.ZodString>;
|
5352
5643
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5353
5644
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5359,6 +5650,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5359
5650
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5360
5651
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5361
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>;
|
5362
5656
|
organization_name: z.ZodOptional<z.ZodString>;
|
5363
5657
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5364
5658
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5370,6 +5664,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5370
5664
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5371
5665
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5372
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>;
|
5373
5670
|
organization_name: z.ZodOptional<z.ZodString>;
|
5374
5671
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5375
5672
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5383,6 +5680,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5383
5680
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5384
5681
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5385
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>;
|
5386
5686
|
organization_name: z.ZodOptional<z.ZodString>;
|
5387
5687
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5388
5688
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5394,6 +5694,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5394
5694
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5395
5695
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5396
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>;
|
5397
5700
|
organization_name: z.ZodOptional<z.ZodString>;
|
5398
5701
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5399
5702
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5405,6 +5708,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5405
5708
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5406
5709
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5407
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>;
|
5408
5714
|
organization_name: z.ZodOptional<z.ZodString>;
|
5409
5715
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5410
5716
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5418,6 +5724,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5418
5724
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5419
5725
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5420
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>;
|
5421
5730
|
organization_name: z.ZodOptional<z.ZodString>;
|
5422
5731
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5423
5732
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5429,6 +5738,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5429
5738
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5430
5739
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5431
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>;
|
5432
5744
|
organization_name: z.ZodOptional<z.ZodString>;
|
5433
5745
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5434
5746
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5440,6 +5752,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5440
5752
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5441
5753
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5442
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>;
|
5443
5758
|
organization_name: z.ZodOptional<z.ZodString>;
|
5444
5759
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5445
5760
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5582,6 +5897,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5582
5897
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5583
5898
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5584
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>;
|
5585
5903
|
organization_name: z.ZodOptional<z.ZodString>;
|
5586
5904
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5587
5905
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5593,6 +5911,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5593
5911
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5594
5912
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5595
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>;
|
5596
5917
|
organization_name: z.ZodOptional<z.ZodString>;
|
5597
5918
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5598
5919
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5604,6 +5925,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5604
5925
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5605
5926
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5606
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>;
|
5607
5931
|
organization_name: z.ZodOptional<z.ZodString>;
|
5608
5932
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5609
5933
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5617,6 +5941,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5617
5941
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5618
5942
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5619
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>;
|
5620
5947
|
organization_name: z.ZodOptional<z.ZodString>;
|
5621
5948
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5622
5949
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5628,6 +5955,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5628
5955
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5629
5956
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5630
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>;
|
5631
5961
|
organization_name: z.ZodOptional<z.ZodString>;
|
5632
5962
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5633
5963
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5639,6 +5969,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5639
5969
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5640
5970
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5641
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>;
|
5642
5975
|
organization_name: z.ZodOptional<z.ZodString>;
|
5643
5976
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5644
5977
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5652,6 +5985,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5652
5985
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5653
5986
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5654
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>;
|
5655
5991
|
organization_name: z.ZodOptional<z.ZodString>;
|
5656
5992
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5657
5993
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5663,6 +5999,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5663
5999
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5664
6000
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5665
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>;
|
5666
6005
|
organization_name: z.ZodOptional<z.ZodString>;
|
5667
6006
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5668
6007
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5674,6 +6013,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5674
6013
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
5675
6014
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
5676
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>;
|
5677
6019
|
organization_name: z.ZodOptional<z.ZodString>;
|
5678
6020
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
5679
6021
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -5805,11 +6147,6 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5805
6147
|
}>;
|
5806
6148
|
}, z.ZodTypeAny, "passthrough">>;
|
5807
6149
|
}, "strip", z.ZodTypeAny, {
|
5808
|
-
header: {
|
5809
|
-
alg: string;
|
5810
|
-
kid: string;
|
5811
|
-
typ: "entity-statement+jwt";
|
5812
|
-
};
|
5813
6150
|
payload: {
|
5814
6151
|
iss: string;
|
5815
6152
|
sub: string;
|
@@ -5848,6 +6185,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5848
6185
|
federation_resolve_endpoint?: string | undefined;
|
5849
6186
|
federation_trust_mark_status_endpoint?: string | undefined;
|
5850
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;
|
5851
6191
|
organization_name?: string | undefined;
|
5852
6192
|
homepage_uri?: string | undefined;
|
5853
6193
|
policy_uri?: string | undefined;
|
@@ -5863,12 +6203,12 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5863
6203
|
} & {
|
5864
6204
|
[k: string]: unknown;
|
5865
6205
|
};
|
5866
|
-
}, {
|
5867
6206
|
header: {
|
5868
6207
|
alg: string;
|
5869
6208
|
kid: string;
|
5870
6209
|
typ: "entity-statement+jwt";
|
5871
6210
|
};
|
6211
|
+
}, {
|
5872
6212
|
payload: {
|
5873
6213
|
iss: string;
|
5874
6214
|
sub: string;
|
@@ -5907,6 +6247,9 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5907
6247
|
federation_resolve_endpoint?: string | undefined;
|
5908
6248
|
federation_trust_mark_status_endpoint?: string | undefined;
|
5909
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;
|
5910
6253
|
organization_name?: string | undefined;
|
5911
6254
|
homepage_uri?: string | undefined;
|
5912
6255
|
policy_uri?: string | undefined;
|
@@ -5922,6 +6265,11 @@ export declare const WalletProviderEntityConfiguration: z.ZodIntersection<z.ZodO
|
|
5922
6265
|
} & {
|
5923
6266
|
[k: string]: unknown;
|
5924
6267
|
};
|
6268
|
+
header: {
|
6269
|
+
alg: string;
|
6270
|
+
kid: string;
|
6271
|
+
typ: "entity-statement+jwt";
|
6272
|
+
};
|
5925
6273
|
}>, z.ZodObject<{
|
5926
6274
|
payload: z.ZodObject<{
|
5927
6275
|
metadata: z.ZodObject<{
|
@@ -6569,6 +6917,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
6569
6917
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
6570
6918
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
6571
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>;
|
6572
6923
|
organization_name: z.ZodOptional<z.ZodString>;
|
6573
6924
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
6574
6925
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -6580,6 +6931,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
6580
6931
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
6581
6932
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
6582
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>;
|
6583
6937
|
organization_name: z.ZodOptional<z.ZodString>;
|
6584
6938
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
6585
6939
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -6591,6 +6945,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
6591
6945
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
6592
6946
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
6593
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>;
|
6594
6951
|
organization_name: z.ZodOptional<z.ZodString>;
|
6595
6952
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
6596
6953
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -6604,6 +6961,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
6604
6961
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
6605
6962
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
6606
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>;
|
6607
6967
|
organization_name: z.ZodOptional<z.ZodString>;
|
6608
6968
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
6609
6969
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -6615,6 +6975,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
6615
6975
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
6616
6976
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
6617
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>;
|
6618
6981
|
organization_name: z.ZodOptional<z.ZodString>;
|
6619
6982
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
6620
6983
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -6626,6 +6989,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
6626
6989
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
6627
6990
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
6628
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>;
|
6629
6995
|
organization_name: z.ZodOptional<z.ZodString>;
|
6630
6996
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
6631
6997
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -6639,6 +7005,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
6639
7005
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
6640
7006
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
6641
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>;
|
6642
7011
|
organization_name: z.ZodOptional<z.ZodString>;
|
6643
7012
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
6644
7013
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -6650,6 +7019,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
6650
7019
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
6651
7020
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
6652
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>;
|
6653
7025
|
organization_name: z.ZodOptional<z.ZodString>;
|
6654
7026
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
6655
7027
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -6661,6 +7033,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
6661
7033
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
6662
7034
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
6663
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>;
|
6664
7039
|
organization_name: z.ZodOptional<z.ZodString>;
|
6665
7040
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
6666
7041
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -6803,6 +7178,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
6803
7178
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
6804
7179
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
6805
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>;
|
6806
7184
|
organization_name: z.ZodOptional<z.ZodString>;
|
6807
7185
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
6808
7186
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -6814,6 +7192,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
6814
7192
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
6815
7193
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
6816
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>;
|
6817
7198
|
organization_name: z.ZodOptional<z.ZodString>;
|
6818
7199
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
6819
7200
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -6825,6 +7206,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
6825
7206
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
6826
7207
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
6827
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>;
|
6828
7212
|
organization_name: z.ZodOptional<z.ZodString>;
|
6829
7213
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
6830
7214
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -6838,6 +7222,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
6838
7222
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
6839
7223
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
6840
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>;
|
6841
7228
|
organization_name: z.ZodOptional<z.ZodString>;
|
6842
7229
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
6843
7230
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -6849,6 +7236,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
6849
7236
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
6850
7237
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
6851
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>;
|
6852
7242
|
organization_name: z.ZodOptional<z.ZodString>;
|
6853
7243
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
6854
7244
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -6860,6 +7250,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
6860
7250
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
6861
7251
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
6862
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>;
|
6863
7256
|
organization_name: z.ZodOptional<z.ZodString>;
|
6864
7257
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
6865
7258
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -6873,6 +7266,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
6873
7266
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
6874
7267
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
6875
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>;
|
6876
7272
|
organization_name: z.ZodOptional<z.ZodString>;
|
6877
7273
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
6878
7274
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -6884,6 +7280,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
6884
7280
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
6885
7281
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
6886
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>;
|
6887
7286
|
organization_name: z.ZodOptional<z.ZodString>;
|
6888
7287
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
6889
7288
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -6895,6 +7294,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
6895
7294
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
6896
7295
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
6897
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>;
|
6898
7300
|
organization_name: z.ZodOptional<z.ZodString>;
|
6899
7301
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
6900
7302
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -7037,6 +7439,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
7037
7439
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
7038
7440
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
7039
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>;
|
7040
7445
|
organization_name: z.ZodOptional<z.ZodString>;
|
7041
7446
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
7042
7447
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -7048,6 +7453,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
7048
7453
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
7049
7454
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
7050
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>;
|
7051
7459
|
organization_name: z.ZodOptional<z.ZodString>;
|
7052
7460
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
7053
7461
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -7059,6 +7467,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
7059
7467
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
7060
7468
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
7061
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>;
|
7062
7473
|
organization_name: z.ZodOptional<z.ZodString>;
|
7063
7474
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
7064
7475
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -7072,6 +7483,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
7072
7483
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
7073
7484
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
7074
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>;
|
7075
7489
|
organization_name: z.ZodOptional<z.ZodString>;
|
7076
7490
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
7077
7491
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -7083,6 +7497,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
7083
7497
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
7084
7498
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
7085
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>;
|
7086
7503
|
organization_name: z.ZodOptional<z.ZodString>;
|
7087
7504
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
7088
7505
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -7094,6 +7511,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
7094
7511
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
7095
7512
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
7096
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>;
|
7097
7517
|
organization_name: z.ZodOptional<z.ZodString>;
|
7098
7518
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
7099
7519
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -7107,6 +7527,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
7107
7527
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
7108
7528
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
7109
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>;
|
7110
7533
|
organization_name: z.ZodOptional<z.ZodString>;
|
7111
7534
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
7112
7535
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -7118,6 +7541,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
7118
7541
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
7119
7542
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
7120
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>;
|
7121
7547
|
organization_name: z.ZodOptional<z.ZodString>;
|
7122
7548
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
7123
7549
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -7129,6 +7555,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
7129
7555
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
7130
7556
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
7131
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>;
|
7132
7561
|
organization_name: z.ZodOptional<z.ZodString>;
|
7133
7562
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
7134
7563
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -7260,11 +7689,6 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
7260
7689
|
}>;
|
7261
7690
|
}, z.ZodTypeAny, "passthrough">>;
|
7262
7691
|
}, "strip", z.ZodTypeAny, {
|
7263
|
-
header: {
|
7264
|
-
alg: string;
|
7265
|
-
kid: string;
|
7266
|
-
typ: "entity-statement+jwt";
|
7267
|
-
};
|
7268
7692
|
payload: {
|
7269
7693
|
iss: string;
|
7270
7694
|
sub: string;
|
@@ -7303,6 +7727,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
7303
7727
|
federation_resolve_endpoint?: string | undefined;
|
7304
7728
|
federation_trust_mark_status_endpoint?: string | undefined;
|
7305
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;
|
7306
7733
|
organization_name?: string | undefined;
|
7307
7734
|
homepage_uri?: string | undefined;
|
7308
7735
|
policy_uri?: string | undefined;
|
@@ -7318,12 +7745,12 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
7318
7745
|
} & {
|
7319
7746
|
[k: string]: unknown;
|
7320
7747
|
};
|
7321
|
-
}, {
|
7322
7748
|
header: {
|
7323
7749
|
alg: string;
|
7324
7750
|
kid: string;
|
7325
7751
|
typ: "entity-statement+jwt";
|
7326
7752
|
};
|
7753
|
+
}, {
|
7327
7754
|
payload: {
|
7328
7755
|
iss: string;
|
7329
7756
|
sub: string;
|
@@ -7362,6 +7789,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
7362
7789
|
federation_resolve_endpoint?: string | undefined;
|
7363
7790
|
federation_trust_mark_status_endpoint?: string | undefined;
|
7364
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;
|
7365
7795
|
organization_name?: string | undefined;
|
7366
7796
|
homepage_uri?: string | undefined;
|
7367
7797
|
policy_uri?: string | undefined;
|
@@ -7377,6 +7807,11 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
7377
7807
|
} & {
|
7378
7808
|
[k: string]: unknown;
|
7379
7809
|
};
|
7810
|
+
header: {
|
7811
|
+
alg: string;
|
7812
|
+
kid: string;
|
7813
|
+
typ: "entity-statement+jwt";
|
7814
|
+
};
|
7380
7815
|
}>, z.ZodObject<{
|
7381
7816
|
payload: z.ZodObject<{
|
7382
7817
|
metadata: z.ZodObject<{
|
@@ -8022,6 +8457,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8022
8457
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8023
8458
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8024
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>;
|
8025
8463
|
organization_name: z.ZodOptional<z.ZodString>;
|
8026
8464
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8027
8465
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8033,6 +8471,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8033
8471
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8034
8472
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8035
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>;
|
8036
8477
|
organization_name: z.ZodOptional<z.ZodString>;
|
8037
8478
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8038
8479
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8044,6 +8485,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8044
8485
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8045
8486
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8046
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>;
|
8047
8491
|
organization_name: z.ZodOptional<z.ZodString>;
|
8048
8492
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8049
8493
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8057,6 +8501,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8057
8501
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8058
8502
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8059
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>;
|
8060
8507
|
organization_name: z.ZodOptional<z.ZodString>;
|
8061
8508
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8062
8509
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8068,6 +8515,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8068
8515
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8069
8516
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8070
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>;
|
8071
8521
|
organization_name: z.ZodOptional<z.ZodString>;
|
8072
8522
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8073
8523
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8079,6 +8529,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8079
8529
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8080
8530
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8081
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>;
|
8082
8535
|
organization_name: z.ZodOptional<z.ZodString>;
|
8083
8536
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8084
8537
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8092,6 +8545,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8092
8545
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8093
8546
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8094
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>;
|
8095
8551
|
organization_name: z.ZodOptional<z.ZodString>;
|
8096
8552
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8097
8553
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8103,6 +8559,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8103
8559
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8104
8560
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8105
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>;
|
8106
8565
|
organization_name: z.ZodOptional<z.ZodString>;
|
8107
8566
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8108
8567
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8114,6 +8573,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8114
8573
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8115
8574
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8116
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>;
|
8117
8579
|
organization_name: z.ZodOptional<z.ZodString>;
|
8118
8580
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8119
8581
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8256,6 +8718,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8256
8718
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8257
8719
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8258
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>;
|
8259
8724
|
organization_name: z.ZodOptional<z.ZodString>;
|
8260
8725
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8261
8726
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8267,6 +8732,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8267
8732
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8268
8733
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8269
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>;
|
8270
8738
|
organization_name: z.ZodOptional<z.ZodString>;
|
8271
8739
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8272
8740
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8278,6 +8746,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8278
8746
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8279
8747
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8280
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>;
|
8281
8752
|
organization_name: z.ZodOptional<z.ZodString>;
|
8282
8753
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8283
8754
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8291,6 +8762,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8291
8762
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8292
8763
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8293
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>;
|
8294
8768
|
organization_name: z.ZodOptional<z.ZodString>;
|
8295
8769
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8296
8770
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8302,6 +8776,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8302
8776
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8303
8777
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8304
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>;
|
8305
8782
|
organization_name: z.ZodOptional<z.ZodString>;
|
8306
8783
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8307
8784
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8313,6 +8790,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8313
8790
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8314
8791
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8315
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>;
|
8316
8796
|
organization_name: z.ZodOptional<z.ZodString>;
|
8317
8797
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8318
8798
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8326,6 +8806,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8326
8806
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8327
8807
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8328
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>;
|
8329
8812
|
organization_name: z.ZodOptional<z.ZodString>;
|
8330
8813
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8331
8814
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8337,6 +8820,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8337
8820
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8338
8821
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8339
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>;
|
8340
8826
|
organization_name: z.ZodOptional<z.ZodString>;
|
8341
8827
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8342
8828
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8348,6 +8834,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8348
8834
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8349
8835
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8350
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>;
|
8351
8840
|
organization_name: z.ZodOptional<z.ZodString>;
|
8352
8841
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8353
8842
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8490,6 +8979,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8490
8979
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8491
8980
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8492
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>;
|
8493
8985
|
organization_name: z.ZodOptional<z.ZodString>;
|
8494
8986
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8495
8987
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8501,6 +8993,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8501
8993
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8502
8994
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8503
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>;
|
8504
8999
|
organization_name: z.ZodOptional<z.ZodString>;
|
8505
9000
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8506
9001
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8512,6 +9007,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8512
9007
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8513
9008
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8514
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>;
|
8515
9013
|
organization_name: z.ZodOptional<z.ZodString>;
|
8516
9014
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8517
9015
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8525,6 +9023,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8525
9023
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8526
9024
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8527
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>;
|
8528
9029
|
organization_name: z.ZodOptional<z.ZodString>;
|
8529
9030
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8530
9031
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8536,6 +9037,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8536
9037
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8537
9038
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8538
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>;
|
8539
9043
|
organization_name: z.ZodOptional<z.ZodString>;
|
8540
9044
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8541
9045
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8547,6 +9051,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8547
9051
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8548
9052
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8549
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>;
|
8550
9057
|
organization_name: z.ZodOptional<z.ZodString>;
|
8551
9058
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8552
9059
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8560,6 +9067,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8560
9067
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8561
9068
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8562
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>;
|
8563
9073
|
organization_name: z.ZodOptional<z.ZodString>;
|
8564
9074
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8565
9075
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8571,6 +9081,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8571
9081
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8572
9082
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8573
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>;
|
8574
9087
|
organization_name: z.ZodOptional<z.ZodString>;
|
8575
9088
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8576
9089
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8582,6 +9095,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8582
9095
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
8583
9096
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
8584
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>;
|
8585
9101
|
organization_name: z.ZodOptional<z.ZodString>;
|
8586
9102
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
8587
9103
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -8713,11 +9229,6 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8713
9229
|
}>;
|
8714
9230
|
}, z.ZodTypeAny, "passthrough">>;
|
8715
9231
|
}, "strip", z.ZodTypeAny, {
|
8716
|
-
header: {
|
8717
|
-
alg: string;
|
8718
|
-
kid: string;
|
8719
|
-
typ: "entity-statement+jwt";
|
8720
|
-
};
|
8721
9232
|
payload: {
|
8722
9233
|
iss: string;
|
8723
9234
|
sub: string;
|
@@ -8756,6 +9267,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8756
9267
|
federation_resolve_endpoint?: string | undefined;
|
8757
9268
|
federation_trust_mark_status_endpoint?: string | undefined;
|
8758
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;
|
8759
9273
|
organization_name?: string | undefined;
|
8760
9274
|
homepage_uri?: string | undefined;
|
8761
9275
|
policy_uri?: string | undefined;
|
@@ -8771,12 +9285,12 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8771
9285
|
} & {
|
8772
9286
|
[k: string]: unknown;
|
8773
9287
|
};
|
8774
|
-
}, {
|
8775
9288
|
header: {
|
8776
9289
|
alg: string;
|
8777
9290
|
kid: string;
|
8778
9291
|
typ: "entity-statement+jwt";
|
8779
9292
|
};
|
9293
|
+
}, {
|
8780
9294
|
payload: {
|
8781
9295
|
iss: string;
|
8782
9296
|
sub: string;
|
@@ -8815,6 +9329,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8815
9329
|
federation_resolve_endpoint?: string | undefined;
|
8816
9330
|
federation_trust_mark_status_endpoint?: string | undefined;
|
8817
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;
|
8818
9335
|
organization_name?: string | undefined;
|
8819
9336
|
homepage_uri?: string | undefined;
|
8820
9337
|
policy_uri?: string | undefined;
|
@@ -8830,6 +9347,11 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
8830
9347
|
} & {
|
8831
9348
|
[k: string]: unknown;
|
8832
9349
|
};
|
9350
|
+
header: {
|
9351
|
+
alg: string;
|
9352
|
+
kid: string;
|
9353
|
+
typ: "entity-statement+jwt";
|
9354
|
+
};
|
8833
9355
|
}>, z.ZodObject<{
|
8834
9356
|
payload: z.ZodObject<{
|
8835
9357
|
jwks: z.ZodObject<{
|
@@ -10695,6 +11217,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
10695
11217
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
10696
11218
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
10697
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>;
|
10698
11223
|
organization_name: z.ZodOptional<z.ZodString>;
|
10699
11224
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
10700
11225
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -10706,6 +11231,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
10706
11231
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
10707
11232
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
10708
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>;
|
10709
11237
|
organization_name: z.ZodOptional<z.ZodString>;
|
10710
11238
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
10711
11239
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -10717,6 +11245,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
10717
11245
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
10718
11246
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
10719
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>;
|
10720
11251
|
organization_name: z.ZodOptional<z.ZodString>;
|
10721
11252
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
10722
11253
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -10730,6 +11261,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
10730
11261
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
10731
11262
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
10732
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>;
|
10733
11267
|
organization_name: z.ZodOptional<z.ZodString>;
|
10734
11268
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
10735
11269
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -10741,6 +11275,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
10741
11275
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
10742
11276
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
10743
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>;
|
10744
11281
|
organization_name: z.ZodOptional<z.ZodString>;
|
10745
11282
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
10746
11283
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -10752,6 +11289,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
10752
11289
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
10753
11290
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
10754
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>;
|
10755
11295
|
organization_name: z.ZodOptional<z.ZodString>;
|
10756
11296
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
10757
11297
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -10765,6 +11305,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
10765
11305
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
10766
11306
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
10767
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>;
|
10768
11311
|
organization_name: z.ZodOptional<z.ZodString>;
|
10769
11312
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
10770
11313
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -10776,6 +11319,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
10776
11319
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
10777
11320
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
10778
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>;
|
10779
11325
|
organization_name: z.ZodOptional<z.ZodString>;
|
10780
11326
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
10781
11327
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -10787,6 +11333,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
10787
11333
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
10788
11334
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
10789
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>;
|
10790
11339
|
organization_name: z.ZodOptional<z.ZodString>;
|
10791
11340
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
10792
11341
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -10929,6 +11478,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
10929
11478
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
10930
11479
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
10931
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>;
|
10932
11484
|
organization_name: z.ZodOptional<z.ZodString>;
|
10933
11485
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
10934
11486
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -10940,6 +11492,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
10940
11492
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
10941
11493
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
10942
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>;
|
10943
11498
|
organization_name: z.ZodOptional<z.ZodString>;
|
10944
11499
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
10945
11500
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -10951,6 +11506,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
10951
11506
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
10952
11507
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
10953
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>;
|
10954
11512
|
organization_name: z.ZodOptional<z.ZodString>;
|
10955
11513
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
10956
11514
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -10964,6 +11522,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
10964
11522
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
10965
11523
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
10966
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>;
|
10967
11528
|
organization_name: z.ZodOptional<z.ZodString>;
|
10968
11529
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
10969
11530
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -10975,6 +11536,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
10975
11536
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
10976
11537
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
10977
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>;
|
10978
11542
|
organization_name: z.ZodOptional<z.ZodString>;
|
10979
11543
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
10980
11544
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -10986,6 +11550,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
10986
11550
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
10987
11551
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
10988
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>;
|
10989
11556
|
organization_name: z.ZodOptional<z.ZodString>;
|
10990
11557
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
10991
11558
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -10999,6 +11566,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
10999
11566
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11000
11567
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11001
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>;
|
11002
11572
|
organization_name: z.ZodOptional<z.ZodString>;
|
11003
11573
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11004
11574
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11010,6 +11580,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11010
11580
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11011
11581
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11012
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>;
|
11013
11586
|
organization_name: z.ZodOptional<z.ZodString>;
|
11014
11587
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11015
11588
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11021,6 +11594,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11021
11594
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11022
11595
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11023
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>;
|
11024
11600
|
organization_name: z.ZodOptional<z.ZodString>;
|
11025
11601
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11026
11602
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11163,6 +11739,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11163
11739
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11164
11740
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11165
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>;
|
11166
11745
|
organization_name: z.ZodOptional<z.ZodString>;
|
11167
11746
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11168
11747
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11174,6 +11753,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11174
11753
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11175
11754
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11176
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>;
|
11177
11759
|
organization_name: z.ZodOptional<z.ZodString>;
|
11178
11760
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11179
11761
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11185,6 +11767,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11185
11767
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11186
11768
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11187
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>;
|
11188
11773
|
organization_name: z.ZodOptional<z.ZodString>;
|
11189
11774
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11190
11775
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11198,6 +11783,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11198
11783
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11199
11784
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11200
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>;
|
11201
11789
|
organization_name: z.ZodOptional<z.ZodString>;
|
11202
11790
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11203
11791
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11209,6 +11797,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11209
11797
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11210
11798
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11211
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>;
|
11212
11803
|
organization_name: z.ZodOptional<z.ZodString>;
|
11213
11804
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11214
11805
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11220,6 +11811,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11220
11811
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11221
11812
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11222
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>;
|
11223
11817
|
organization_name: z.ZodOptional<z.ZodString>;
|
11224
11818
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11225
11819
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11233,6 +11827,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11233
11827
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11234
11828
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11235
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>;
|
11236
11833
|
organization_name: z.ZodOptional<z.ZodString>;
|
11237
11834
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11238
11835
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11244,6 +11841,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11244
11841
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11245
11842
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11246
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>;
|
11247
11847
|
organization_name: z.ZodOptional<z.ZodString>;
|
11248
11848
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11249
11849
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11255,6 +11855,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11255
11855
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11256
11856
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11257
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>;
|
11258
11861
|
organization_name: z.ZodOptional<z.ZodString>;
|
11259
11862
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11260
11863
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11386,11 +11989,6 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11386
11989
|
}>;
|
11387
11990
|
}, z.ZodTypeAny, "passthrough">>;
|
11388
11991
|
}, "strip", z.ZodTypeAny, {
|
11389
|
-
header: {
|
11390
|
-
alg: string;
|
11391
|
-
kid: string;
|
11392
|
-
typ: "entity-statement+jwt";
|
11393
|
-
};
|
11394
11992
|
payload: {
|
11395
11993
|
iss: string;
|
11396
11994
|
sub: string;
|
@@ -11429,6 +12027,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11429
12027
|
federation_resolve_endpoint?: string | undefined;
|
11430
12028
|
federation_trust_mark_status_endpoint?: string | undefined;
|
11431
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;
|
11432
12033
|
organization_name?: string | undefined;
|
11433
12034
|
homepage_uri?: string | undefined;
|
11434
12035
|
policy_uri?: string | undefined;
|
@@ -11444,12 +12045,12 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11444
12045
|
} & {
|
11445
12046
|
[k: string]: unknown;
|
11446
12047
|
};
|
11447
|
-
}, {
|
11448
12048
|
header: {
|
11449
12049
|
alg: string;
|
11450
12050
|
kid: string;
|
11451
12051
|
typ: "entity-statement+jwt";
|
11452
12052
|
};
|
12053
|
+
}, {
|
11453
12054
|
payload: {
|
11454
12055
|
iss: string;
|
11455
12056
|
sub: string;
|
@@ -11488,6 +12089,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11488
12089
|
federation_resolve_endpoint?: string | undefined;
|
11489
12090
|
federation_trust_mark_status_endpoint?: string | undefined;
|
11490
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;
|
11491
12095
|
organization_name?: string | undefined;
|
11492
12096
|
homepage_uri?: string | undefined;
|
11493
12097
|
policy_uri?: string | undefined;
|
@@ -11503,6 +12107,11 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11503
12107
|
} & {
|
11504
12108
|
[k: string]: unknown;
|
11505
12109
|
};
|
12110
|
+
header: {
|
12111
|
+
alg: string;
|
12112
|
+
kid: string;
|
12113
|
+
typ: "entity-statement+jwt";
|
12114
|
+
};
|
11506
12115
|
}>, z.ZodIntersection<z.ZodObject<{
|
11507
12116
|
header: z.ZodObject<{
|
11508
12117
|
typ: z.ZodLiteral<"entity-statement+jwt">;
|
@@ -11530,6 +12139,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11530
12139
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11531
12140
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11532
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>;
|
11533
12145
|
organization_name: z.ZodOptional<z.ZodString>;
|
11534
12146
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11535
12147
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11541,6 +12153,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11541
12153
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11542
12154
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11543
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>;
|
11544
12159
|
organization_name: z.ZodOptional<z.ZodString>;
|
11545
12160
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11546
12161
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11552,6 +12167,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11552
12167
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11553
12168
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11554
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>;
|
11555
12173
|
organization_name: z.ZodOptional<z.ZodString>;
|
11556
12174
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11557
12175
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11565,6 +12183,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11565
12183
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11566
12184
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11567
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>;
|
11568
12189
|
organization_name: z.ZodOptional<z.ZodString>;
|
11569
12190
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11570
12191
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11576,6 +12197,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11576
12197
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11577
12198
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11578
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>;
|
11579
12203
|
organization_name: z.ZodOptional<z.ZodString>;
|
11580
12204
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11581
12205
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11587,6 +12211,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11587
12211
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11588
12212
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11589
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>;
|
11590
12217
|
organization_name: z.ZodOptional<z.ZodString>;
|
11591
12218
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11592
12219
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11600,6 +12227,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11600
12227
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11601
12228
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11602
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>;
|
11603
12233
|
organization_name: z.ZodOptional<z.ZodString>;
|
11604
12234
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11605
12235
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11611,6 +12241,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11611
12241
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11612
12242
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11613
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>;
|
11614
12247
|
organization_name: z.ZodOptional<z.ZodString>;
|
11615
12248
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11616
12249
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11622,6 +12255,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11622
12255
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11623
12256
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11624
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>;
|
11625
12261
|
organization_name: z.ZodOptional<z.ZodString>;
|
11626
12262
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11627
12263
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11764,6 +12400,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11764
12400
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11765
12401
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11766
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>;
|
11767
12406
|
organization_name: z.ZodOptional<z.ZodString>;
|
11768
12407
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11769
12408
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11775,6 +12414,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11775
12414
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11776
12415
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11777
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>;
|
11778
12420
|
organization_name: z.ZodOptional<z.ZodString>;
|
11779
12421
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11780
12422
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11786,6 +12428,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11786
12428
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11787
12429
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11788
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>;
|
11789
12434
|
organization_name: z.ZodOptional<z.ZodString>;
|
11790
12435
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11791
12436
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11799,6 +12444,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11799
12444
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11800
12445
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11801
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>;
|
11802
12450
|
organization_name: z.ZodOptional<z.ZodString>;
|
11803
12451
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11804
12452
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11810,6 +12458,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11810
12458
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11811
12459
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11812
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>;
|
11813
12464
|
organization_name: z.ZodOptional<z.ZodString>;
|
11814
12465
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11815
12466
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11821,6 +12472,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11821
12472
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11822
12473
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11823
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>;
|
11824
12478
|
organization_name: z.ZodOptional<z.ZodString>;
|
11825
12479
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11826
12480
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11834,6 +12488,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11834
12488
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11835
12489
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11836
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>;
|
11837
12494
|
organization_name: z.ZodOptional<z.ZodString>;
|
11838
12495
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11839
12496
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11845,6 +12502,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11845
12502
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11846
12503
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11847
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>;
|
11848
12508
|
organization_name: z.ZodOptional<z.ZodString>;
|
11849
12509
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11850
12510
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11856,6 +12516,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11856
12516
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11857
12517
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
11858
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>;
|
11859
12522
|
organization_name: z.ZodOptional<z.ZodString>;
|
11860
12523
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
11861
12524
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -11998,6 +12661,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
11998
12661
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
11999
12662
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
12000
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>;
|
12001
12667
|
organization_name: z.ZodOptional<z.ZodString>;
|
12002
12668
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
12003
12669
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -12009,6 +12675,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
12009
12675
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
12010
12676
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
12011
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>;
|
12012
12681
|
organization_name: z.ZodOptional<z.ZodString>;
|
12013
12682
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
12014
12683
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -12020,6 +12689,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
12020
12689
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
12021
12690
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
12022
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>;
|
12023
12695
|
organization_name: z.ZodOptional<z.ZodString>;
|
12024
12696
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
12025
12697
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -12033,6 +12705,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
12033
12705
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
12034
12706
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
12035
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>;
|
12036
12711
|
organization_name: z.ZodOptional<z.ZodString>;
|
12037
12712
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
12038
12713
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -12044,6 +12719,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
12044
12719
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
12045
12720
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
12046
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>;
|
12047
12725
|
organization_name: z.ZodOptional<z.ZodString>;
|
12048
12726
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
12049
12727
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -12055,6 +12733,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
12055
12733
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
12056
12734
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
12057
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>;
|
12058
12739
|
organization_name: z.ZodOptional<z.ZodString>;
|
12059
12740
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
12060
12741
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -12068,6 +12749,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
12068
12749
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
12069
12750
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
12070
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>;
|
12071
12755
|
organization_name: z.ZodOptional<z.ZodString>;
|
12072
12756
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
12073
12757
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -12079,6 +12763,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
12079
12763
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
12080
12764
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
12081
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>;
|
12082
12769
|
organization_name: z.ZodOptional<z.ZodString>;
|
12083
12770
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
12084
12771
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -12090,6 +12777,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
12090
12777
|
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
12091
12778
|
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
12092
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>;
|
12093
12783
|
organization_name: z.ZodOptional<z.ZodString>;
|
12094
12784
|
homepage_uri: z.ZodOptional<z.ZodString>;
|
12095
12785
|
policy_uri: z.ZodOptional<z.ZodString>;
|
@@ -12221,11 +12911,6 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
12221
12911
|
}>;
|
12222
12912
|
}, z.ZodTypeAny, "passthrough">>;
|
12223
12913
|
}, "strip", z.ZodTypeAny, {
|
12224
|
-
header: {
|
12225
|
-
alg: string;
|
12226
|
-
kid: string;
|
12227
|
-
typ: "entity-statement+jwt";
|
12228
|
-
};
|
12229
12914
|
payload: {
|
12230
12915
|
iss: string;
|
12231
12916
|
sub: string;
|
@@ -12264,6 +12949,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
12264
12949
|
federation_resolve_endpoint?: string | undefined;
|
12265
12950
|
federation_trust_mark_status_endpoint?: string | undefined;
|
12266
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;
|
12267
12955
|
organization_name?: string | undefined;
|
12268
12956
|
homepage_uri?: string | undefined;
|
12269
12957
|
policy_uri?: string | undefined;
|
@@ -12279,12 +12967,12 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
12279
12967
|
} & {
|
12280
12968
|
[k: string]: unknown;
|
12281
12969
|
};
|
12282
|
-
}, {
|
12283
12970
|
header: {
|
12284
12971
|
alg: string;
|
12285
12972
|
kid: string;
|
12286
12973
|
typ: "entity-statement+jwt";
|
12287
12974
|
};
|
12975
|
+
}, {
|
12288
12976
|
payload: {
|
12289
12977
|
iss: string;
|
12290
12978
|
sub: string;
|
@@ -12323,6 +13011,9 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
12323
13011
|
federation_resolve_endpoint?: string | undefined;
|
12324
13012
|
federation_trust_mark_status_endpoint?: string | undefined;
|
12325
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;
|
12326
13017
|
organization_name?: string | undefined;
|
12327
13018
|
homepage_uri?: string | undefined;
|
12328
13019
|
policy_uri?: string | undefined;
|
@@ -12338,6 +13029,11 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
12338
13029
|
} & {
|
12339
13030
|
[k: string]: unknown;
|
12340
13031
|
};
|
13032
|
+
header: {
|
13033
|
+
alg: string;
|
13034
|
+
kid: string;
|
13035
|
+
typ: "entity-statement+jwt";
|
13036
|
+
};
|
12341
13037
|
}>, z.ZodObject<{
|
12342
13038
|
payload: z.ZodObject<{
|
12343
13039
|
metadata: z.ZodObject<{
|
@@ -12744,4 +13440,5 @@ export declare const EntityConfiguration: z.ZodUnion<[z.ZodIntersection<z.ZodObj
|
|
12744
13440
|
};
|
12745
13441
|
};
|
12746
13442
|
}>>]>;
|
13443
|
+
export declare const FederationListResponse: z.ZodArray<z.ZodString, "many">;
|
12747
13444
|
//# sourceMappingURL=types.d.ts.map
|