@pagopa/io-react-native-wallet 0.4.3 → 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +98 -22
- package/lib/commonjs/index.js +12 -8
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/pid/index.js +3 -8
- package/lib/commonjs/pid/index.js.map +1 -1
- package/lib/commonjs/pid/issuing.js +152 -169
- package/lib/commonjs/pid/issuing.js.map +1 -1
- package/lib/commonjs/pid/metadata.js +28 -25
- package/lib/commonjs/pid/metadata.js.map +1 -1
- package/lib/commonjs/rp/__test__/index.test.js +5 -3
- package/lib/commonjs/rp/__test__/index.test.js.map +1 -1
- package/lib/commonjs/rp/index.js +158 -154
- package/lib/commonjs/rp/index.js.map +1 -1
- package/lib/commonjs/trust/types.js +9 -7
- package/lib/commonjs/trust/types.js.map +1 -1
- package/lib/commonjs/utils/crypto.js +46 -0
- package/lib/commonjs/utils/crypto.js.map +1 -0
- package/lib/commonjs/utils/dpop.js +14 -7
- package/lib/commonjs/utils/dpop.js.map +1 -1
- package/lib/commonjs/wallet-instance-attestation/index.js +3 -3
- package/lib/commonjs/wallet-instance-attestation/issuing.js +50 -60
- package/lib/commonjs/wallet-instance-attestation/issuing.js.map +1 -1
- package/lib/module/index.js +4 -3
- package/lib/module/index.js.map +1 -1
- package/lib/module/pid/index.js +1 -1
- package/lib/module/pid/index.js.map +1 -1
- package/lib/module/pid/issuing.js +151 -172
- package/lib/module/pid/issuing.js.map +1 -1
- package/lib/module/pid/metadata.js +28 -25
- package/lib/module/pid/metadata.js.map +1 -1
- package/lib/module/rp/__test__/index.test.js +1 -1
- package/lib/module/rp/__test__/index.test.js.map +1 -1
- package/lib/module/rp/index.js +155 -153
- package/lib/module/rp/index.js.map +1 -1
- package/lib/module/trust/types.js +7 -6
- package/lib/module/trust/types.js.map +1 -1
- package/lib/module/utils/crypto.js +40 -0
- package/lib/module/utils/crypto.js.map +1 -0
- package/lib/module/utils/dpop.js +13 -5
- package/lib/module/utils/dpop.js.map +1 -1
- package/lib/module/wallet-instance-attestation/index.js +2 -2
- package/lib/module/wallet-instance-attestation/index.js.map +1 -1
- package/lib/module/wallet-instance-attestation/issuing.js +48 -58
- package/lib/module/wallet-instance-attestation/issuing.js.map +1 -1
- package/lib/typescript/index.d.ts +4 -3
- package/lib/typescript/index.d.ts.map +1 -1
- package/lib/typescript/pid/index.d.ts +1 -1
- package/lib/typescript/pid/index.d.ts.map +1 -1
- package/lib/typescript/pid/issuing.d.ts +51 -87
- package/lib/typescript/pid/issuing.d.ts.map +1 -1
- package/lib/typescript/pid/metadata.d.ts +1338 -408
- package/lib/typescript/pid/metadata.d.ts.map +1 -1
- package/lib/typescript/rp/index.d.ts +48 -86
- package/lib/typescript/rp/index.d.ts.map +1 -1
- package/lib/typescript/rp/types.d.ts +413 -57
- package/lib/typescript/rp/types.d.ts.map +1 -1
- package/lib/typescript/sd-jwt/index.d.ts +1 -1
- package/lib/typescript/sd-jwt/index.d.ts.map +1 -1
- package/lib/typescript/trust/types.d.ts +1000 -274
- package/lib/typescript/trust/types.d.ts.map +1 -1
- package/lib/typescript/utils/crypto.d.ts +10 -0
- package/lib/typescript/utils/crypto.d.ts.map +1 -0
- package/lib/typescript/utils/dpop.d.ts +10 -2
- package/lib/typescript/utils/dpop.d.ts.map +1 -1
- package/lib/typescript/wallet-instance-attestation/index.d.ts +2 -2
- package/lib/typescript/wallet-instance-attestation/index.d.ts.map +1 -1
- package/lib/typescript/wallet-instance-attestation/issuing.d.ts +17 -31
- package/lib/typescript/wallet-instance-attestation/issuing.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/index.ts +5 -3
- package/src/pid/index.ts +1 -1
- package/src/pid/issuing.ts +233 -226
- package/src/pid/metadata.ts +32 -27
- package/src/rp/__test__/index.test.ts +1 -1
- package/src/rp/index.ts +180 -188
- package/src/sd-jwt/index.ts +1 -1
- package/src/trust/types.ts +39 -32
- package/src/utils/crypto.ts +41 -0
- package/src/utils/dpop.ts +17 -7
- package/src/wallet-instance-attestation/index.ts +2 -2
- package/src/wallet-instance-attestation/issuing.ts +55 -62
@@ -318,6 +318,20 @@ export declare const EntityStatement: z.ZodObject<{
|
|
318
318
|
}[];
|
319
319
|
};
|
320
320
|
}>;
|
321
|
+
export type EntityConfigurationHeader = z.infer<typeof EntityConfigurationHeader>;
|
322
|
+
export declare const EntityConfigurationHeader: z.ZodObject<{
|
323
|
+
typ: z.ZodLiteral<"entity-statement+jwt">;
|
324
|
+
alg: z.ZodString;
|
325
|
+
kid: z.ZodString;
|
326
|
+
}, "strip", z.ZodTypeAny, {
|
327
|
+
alg: string;
|
328
|
+
kid: string;
|
329
|
+
typ: "entity-statement+jwt";
|
330
|
+
}, {
|
331
|
+
alg: string;
|
332
|
+
kid: string;
|
333
|
+
typ: "entity-statement+jwt";
|
334
|
+
}>;
|
321
335
|
export type EntityConfiguration = z.infer<typeof EntityConfiguration>;
|
322
336
|
export declare const EntityConfiguration: z.ZodObject<{
|
323
337
|
header: z.ZodObject<{
|
@@ -558,234 +572,7 @@ export declare const EntityConfiguration: z.ZodObject<{
|
|
558
572
|
}, z.ZodTypeAny, "passthrough">>;
|
559
573
|
}, z.ZodTypeAny, "passthrough">>;
|
560
574
|
authority_hints: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
561
|
-
}, "
|
562
|
-
iss: string;
|
563
|
-
sub: string;
|
564
|
-
iat: number;
|
565
|
-
exp: number;
|
566
|
-
jwks: {
|
567
|
-
keys: {
|
568
|
-
kty: "RSA" | "EC";
|
569
|
-
alg?: string | undefined;
|
570
|
-
crv?: string | undefined;
|
571
|
-
d?: string | undefined;
|
572
|
-
dp?: string | undefined;
|
573
|
-
dq?: string | undefined;
|
574
|
-
e?: string | undefined;
|
575
|
-
ext?: boolean | undefined;
|
576
|
-
k?: string | undefined;
|
577
|
-
key_ops?: string[] | undefined;
|
578
|
-
kid?: string | undefined;
|
579
|
-
n?: string | undefined;
|
580
|
-
p?: string | undefined;
|
581
|
-
q?: string | undefined;
|
582
|
-
qi?: string | undefined;
|
583
|
-
use?: string | undefined;
|
584
|
-
x?: string | undefined;
|
585
|
-
y?: string | undefined;
|
586
|
-
x5c?: string[] | undefined;
|
587
|
-
x5t?: string | undefined;
|
588
|
-
"x5t#S256"?: string | undefined;
|
589
|
-
x5u?: string | undefined;
|
590
|
-
}[];
|
591
|
-
};
|
592
|
-
metadata: {
|
593
|
-
federation_entity: {
|
594
|
-
federation_fetch_endpoint?: string | undefined;
|
595
|
-
federation_list_endpoint?: string | undefined;
|
596
|
-
federation_resolve_endpoint?: string | undefined;
|
597
|
-
federation_trust_mark_status_endpoint?: string | undefined;
|
598
|
-
federation_trust_mark_list_endpoint?: string | undefined;
|
599
|
-
homepage_uri?: string | undefined;
|
600
|
-
policy_uri?: string | undefined;
|
601
|
-
logo_uri?: string | undefined;
|
602
|
-
contacts?: string[] | undefined;
|
603
|
-
} & {
|
604
|
-
[k: string]: unknown;
|
605
|
-
};
|
606
|
-
} & {
|
607
|
-
[k: string]: unknown;
|
608
|
-
};
|
609
|
-
authority_hints?: string[] | undefined;
|
610
|
-
}, {
|
611
|
-
iss: string;
|
612
|
-
sub: string;
|
613
|
-
iat: number;
|
614
|
-
exp: number;
|
615
|
-
jwks: {
|
616
|
-
keys: {
|
617
|
-
kty: "RSA" | "EC";
|
618
|
-
alg?: string | undefined;
|
619
|
-
crv?: string | undefined;
|
620
|
-
d?: string | undefined;
|
621
|
-
dp?: string | undefined;
|
622
|
-
dq?: string | undefined;
|
623
|
-
e?: string | undefined;
|
624
|
-
ext?: boolean | undefined;
|
625
|
-
k?: string | undefined;
|
626
|
-
key_ops?: string[] | undefined;
|
627
|
-
kid?: string | undefined;
|
628
|
-
n?: string | undefined;
|
629
|
-
p?: string | undefined;
|
630
|
-
q?: string | undefined;
|
631
|
-
qi?: string | undefined;
|
632
|
-
use?: string | undefined;
|
633
|
-
x?: string | undefined;
|
634
|
-
y?: string | undefined;
|
635
|
-
x5c?: string[] | undefined;
|
636
|
-
x5t?: string | undefined;
|
637
|
-
"x5t#S256"?: string | undefined;
|
638
|
-
x5u?: string | undefined;
|
639
|
-
}[];
|
640
|
-
};
|
641
|
-
metadata: {
|
642
|
-
federation_entity: {
|
643
|
-
federation_fetch_endpoint?: string | undefined;
|
644
|
-
federation_list_endpoint?: string | undefined;
|
645
|
-
federation_resolve_endpoint?: string | undefined;
|
646
|
-
federation_trust_mark_status_endpoint?: string | undefined;
|
647
|
-
federation_trust_mark_list_endpoint?: string | undefined;
|
648
|
-
homepage_uri?: string | undefined;
|
649
|
-
policy_uri?: string | undefined;
|
650
|
-
logo_uri?: string | undefined;
|
651
|
-
contacts?: string[] | undefined;
|
652
|
-
} & {
|
653
|
-
[k: string]: unknown;
|
654
|
-
};
|
655
|
-
} & {
|
656
|
-
[k: string]: unknown;
|
657
|
-
};
|
658
|
-
authority_hints?: string[] | undefined;
|
659
|
-
}>;
|
660
|
-
}, "strip", z.ZodTypeAny, {
|
661
|
-
header: {
|
662
|
-
alg: string;
|
663
|
-
kid: string;
|
664
|
-
typ: "entity-statement+jwt";
|
665
|
-
};
|
666
|
-
payload: {
|
667
|
-
iss: string;
|
668
|
-
sub: string;
|
669
|
-
iat: number;
|
670
|
-
exp: number;
|
671
|
-
jwks: {
|
672
|
-
keys: {
|
673
|
-
kty: "RSA" | "EC";
|
674
|
-
alg?: string | undefined;
|
675
|
-
crv?: string | undefined;
|
676
|
-
d?: string | undefined;
|
677
|
-
dp?: string | undefined;
|
678
|
-
dq?: string | undefined;
|
679
|
-
e?: string | undefined;
|
680
|
-
ext?: boolean | undefined;
|
681
|
-
k?: string | undefined;
|
682
|
-
key_ops?: string[] | undefined;
|
683
|
-
kid?: string | undefined;
|
684
|
-
n?: string | undefined;
|
685
|
-
p?: string | undefined;
|
686
|
-
q?: string | undefined;
|
687
|
-
qi?: string | undefined;
|
688
|
-
use?: string | undefined;
|
689
|
-
x?: string | undefined;
|
690
|
-
y?: string | undefined;
|
691
|
-
x5c?: string[] | undefined;
|
692
|
-
x5t?: string | undefined;
|
693
|
-
"x5t#S256"?: string | undefined;
|
694
|
-
x5u?: string | undefined;
|
695
|
-
}[];
|
696
|
-
};
|
697
|
-
metadata: {
|
698
|
-
federation_entity: {
|
699
|
-
federation_fetch_endpoint?: string | undefined;
|
700
|
-
federation_list_endpoint?: string | undefined;
|
701
|
-
federation_resolve_endpoint?: string | undefined;
|
702
|
-
federation_trust_mark_status_endpoint?: string | undefined;
|
703
|
-
federation_trust_mark_list_endpoint?: string | undefined;
|
704
|
-
homepage_uri?: string | undefined;
|
705
|
-
policy_uri?: string | undefined;
|
706
|
-
logo_uri?: string | undefined;
|
707
|
-
contacts?: string[] | undefined;
|
708
|
-
} & {
|
709
|
-
[k: string]: unknown;
|
710
|
-
};
|
711
|
-
} & {
|
712
|
-
[k: string]: unknown;
|
713
|
-
};
|
714
|
-
authority_hints?: string[] | undefined;
|
715
|
-
};
|
716
|
-
}, {
|
717
|
-
header: {
|
718
|
-
alg: string;
|
719
|
-
kid: string;
|
720
|
-
typ: "entity-statement+jwt";
|
721
|
-
};
|
722
|
-
payload: {
|
723
|
-
iss: string;
|
724
|
-
sub: string;
|
725
|
-
iat: number;
|
726
|
-
exp: number;
|
727
|
-
jwks: {
|
728
|
-
keys: {
|
729
|
-
kty: "RSA" | "EC";
|
730
|
-
alg?: string | undefined;
|
731
|
-
crv?: string | undefined;
|
732
|
-
d?: string | undefined;
|
733
|
-
dp?: string | undefined;
|
734
|
-
dq?: string | undefined;
|
735
|
-
e?: string | undefined;
|
736
|
-
ext?: boolean | undefined;
|
737
|
-
k?: string | undefined;
|
738
|
-
key_ops?: string[] | undefined;
|
739
|
-
kid?: string | undefined;
|
740
|
-
n?: string | undefined;
|
741
|
-
p?: string | undefined;
|
742
|
-
q?: string | undefined;
|
743
|
-
qi?: string | undefined;
|
744
|
-
use?: string | undefined;
|
745
|
-
x?: string | undefined;
|
746
|
-
y?: string | undefined;
|
747
|
-
x5c?: string[] | undefined;
|
748
|
-
x5t?: string | undefined;
|
749
|
-
"x5t#S256"?: string | undefined;
|
750
|
-
x5u?: string | undefined;
|
751
|
-
}[];
|
752
|
-
};
|
753
|
-
metadata: {
|
754
|
-
federation_entity: {
|
755
|
-
federation_fetch_endpoint?: string | undefined;
|
756
|
-
federation_list_endpoint?: string | undefined;
|
757
|
-
federation_resolve_endpoint?: string | undefined;
|
758
|
-
federation_trust_mark_status_endpoint?: string | undefined;
|
759
|
-
federation_trust_mark_list_endpoint?: string | undefined;
|
760
|
-
homepage_uri?: string | undefined;
|
761
|
-
policy_uri?: string | undefined;
|
762
|
-
logo_uri?: string | undefined;
|
763
|
-
contacts?: string[] | undefined;
|
764
|
-
} & {
|
765
|
-
[k: string]: unknown;
|
766
|
-
};
|
767
|
-
} & {
|
768
|
-
[k: string]: unknown;
|
769
|
-
};
|
770
|
-
authority_hints?: string[] | undefined;
|
771
|
-
};
|
772
|
-
}>;
|
773
|
-
export type TrustAnchorEntityConfiguration = z.infer<typeof TrustAnchorEntityConfiguration>;
|
774
|
-
export declare const TrustAnchorEntityConfiguration: z.ZodObject<{
|
775
|
-
header: z.ZodObject<{
|
776
|
-
typ: z.ZodLiteral<"entity-statement+jwt">;
|
777
|
-
alg: z.ZodString;
|
778
|
-
kid: z.ZodString;
|
779
|
-
}, "strip", z.ZodTypeAny, {
|
780
|
-
alg: string;
|
781
|
-
kid: string;
|
782
|
-
typ: "entity-statement+jwt";
|
783
|
-
}, {
|
784
|
-
alg: string;
|
785
|
-
kid: string;
|
786
|
-
typ: "entity-statement+jwt";
|
787
|
-
}>;
|
788
|
-
payload: z.ZodObject<{
|
575
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
789
576
|
exp: z.ZodNumber;
|
790
577
|
iat: z.ZodNumber;
|
791
578
|
iss: z.ZodString;
|
@@ -1010,56 +797,239 @@ export declare const TrustAnchorEntityConfiguration: z.ZodObject<{
|
|
1010
797
|
}, z.ZodTypeAny, "passthrough">>;
|
1011
798
|
}, z.ZodTypeAny, "passthrough">>;
|
1012
799
|
authority_hints: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
1013
|
-
}, "
|
1014
|
-
|
1015
|
-
|
1016
|
-
|
1017
|
-
|
1018
|
-
jwks: {
|
1019
|
-
keys: {
|
1020
|
-
|
1021
|
-
|
1022
|
-
|
1023
|
-
|
1024
|
-
|
1025
|
-
|
1026
|
-
|
1027
|
-
|
1028
|
-
|
1029
|
-
|
1030
|
-
|
1031
|
-
n
|
1032
|
-
p
|
1033
|
-
q
|
1034
|
-
qi
|
1035
|
-
use
|
1036
|
-
x
|
1037
|
-
y
|
800
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
801
|
+
exp: z.ZodNumber;
|
802
|
+
iat: z.ZodNumber;
|
803
|
+
iss: z.ZodString;
|
804
|
+
sub: z.ZodString;
|
805
|
+
jwks: z.ZodObject<{
|
806
|
+
keys: z.ZodArray<z.ZodObject<{
|
807
|
+
alg: z.ZodOptional<z.ZodString>;
|
808
|
+
crv: z.ZodOptional<z.ZodString>;
|
809
|
+
d: z.ZodOptional<z.ZodString>;
|
810
|
+
dp: z.ZodOptional<z.ZodString>;
|
811
|
+
dq: z.ZodOptional<z.ZodString>;
|
812
|
+
e: z.ZodOptional<z.ZodString>;
|
813
|
+
ext: z.ZodOptional<z.ZodBoolean>;
|
814
|
+
k: z.ZodOptional<z.ZodString>;
|
815
|
+
key_ops: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
816
|
+
kid: z.ZodOptional<z.ZodString>;
|
817
|
+
kty: z.ZodUnion<[z.ZodLiteral<"RSA">, z.ZodLiteral<"EC">]>;
|
818
|
+
n: z.ZodOptional<z.ZodString>;
|
819
|
+
p: z.ZodOptional<z.ZodString>;
|
820
|
+
q: z.ZodOptional<z.ZodString>;
|
821
|
+
qi: z.ZodOptional<z.ZodString>;
|
822
|
+
use: z.ZodOptional<z.ZodString>;
|
823
|
+
x: z.ZodOptional<z.ZodString>;
|
824
|
+
y: z.ZodOptional<z.ZodString>;
|
825
|
+
x5c: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
826
|
+
x5t: z.ZodOptional<z.ZodString>;
|
827
|
+
"x5t#S256": z.ZodOptional<z.ZodString>;
|
828
|
+
x5u: z.ZodOptional<z.ZodString>;
|
829
|
+
}, "strip", z.ZodTypeAny, {
|
830
|
+
kty: "RSA" | "EC";
|
831
|
+
alg?: string | undefined;
|
832
|
+
crv?: string | undefined;
|
833
|
+
d?: string | undefined;
|
834
|
+
dp?: string | undefined;
|
835
|
+
dq?: string | undefined;
|
836
|
+
e?: string | undefined;
|
837
|
+
ext?: boolean | undefined;
|
838
|
+
k?: string | undefined;
|
839
|
+
key_ops?: string[] | undefined;
|
840
|
+
kid?: string | undefined;
|
841
|
+
n?: string | undefined;
|
842
|
+
p?: string | undefined;
|
843
|
+
q?: string | undefined;
|
844
|
+
qi?: string | undefined;
|
845
|
+
use?: string | undefined;
|
846
|
+
x?: string | undefined;
|
847
|
+
y?: string | undefined;
|
848
|
+
x5c?: string[] | undefined;
|
849
|
+
x5t?: string | undefined;
|
850
|
+
"x5t#S256"?: string | undefined;
|
851
|
+
x5u?: string | undefined;
|
852
|
+
}, {
|
853
|
+
kty: "RSA" | "EC";
|
854
|
+
alg?: string | undefined;
|
855
|
+
crv?: string | undefined;
|
856
|
+
d?: string | undefined;
|
857
|
+
dp?: string | undefined;
|
858
|
+
dq?: string | undefined;
|
859
|
+
e?: string | undefined;
|
860
|
+
ext?: boolean | undefined;
|
861
|
+
k?: string | undefined;
|
862
|
+
key_ops?: string[] | undefined;
|
863
|
+
kid?: string | undefined;
|
864
|
+
n?: string | undefined;
|
865
|
+
p?: string | undefined;
|
866
|
+
q?: string | undefined;
|
867
|
+
qi?: string | undefined;
|
868
|
+
use?: string | undefined;
|
869
|
+
x?: string | undefined;
|
870
|
+
y?: string | undefined;
|
871
|
+
x5c?: string[] | undefined;
|
872
|
+
x5t?: string | undefined;
|
873
|
+
"x5t#S256"?: string | undefined;
|
874
|
+
x5u?: string | undefined;
|
875
|
+
}>, "many">;
|
876
|
+
}, "strip", z.ZodTypeAny, {
|
877
|
+
keys: {
|
878
|
+
kty: "RSA" | "EC";
|
879
|
+
alg?: string | undefined;
|
880
|
+
crv?: string | undefined;
|
881
|
+
d?: string | undefined;
|
882
|
+
dp?: string | undefined;
|
883
|
+
dq?: string | undefined;
|
884
|
+
e?: string | undefined;
|
885
|
+
ext?: boolean | undefined;
|
886
|
+
k?: string | undefined;
|
887
|
+
key_ops?: string[] | undefined;
|
888
|
+
kid?: string | undefined;
|
889
|
+
n?: string | undefined;
|
890
|
+
p?: string | undefined;
|
891
|
+
q?: string | undefined;
|
892
|
+
qi?: string | undefined;
|
893
|
+
use?: string | undefined;
|
894
|
+
x?: string | undefined;
|
895
|
+
y?: string | undefined;
|
1038
896
|
x5c?: string[] | undefined;
|
1039
897
|
x5t?: string | undefined;
|
1040
898
|
"x5t#S256"?: string | undefined;
|
1041
899
|
x5u?: string | undefined;
|
1042
900
|
}[];
|
1043
|
-
}
|
1044
|
-
|
1045
|
-
|
1046
|
-
|
1047
|
-
|
1048
|
-
|
1049
|
-
|
1050
|
-
|
1051
|
-
|
1052
|
-
|
1053
|
-
|
1054
|
-
|
1055
|
-
|
1056
|
-
|
1057
|
-
|
1058
|
-
|
1059
|
-
|
1060
|
-
|
1061
|
-
|
1062
|
-
|
901
|
+
}, {
|
902
|
+
keys: {
|
903
|
+
kty: "RSA" | "EC";
|
904
|
+
alg?: string | undefined;
|
905
|
+
crv?: string | undefined;
|
906
|
+
d?: string | undefined;
|
907
|
+
dp?: string | undefined;
|
908
|
+
dq?: string | undefined;
|
909
|
+
e?: string | undefined;
|
910
|
+
ext?: boolean | undefined;
|
911
|
+
k?: string | undefined;
|
912
|
+
key_ops?: string[] | undefined;
|
913
|
+
kid?: string | undefined;
|
914
|
+
n?: string | undefined;
|
915
|
+
p?: string | undefined;
|
916
|
+
q?: string | undefined;
|
917
|
+
qi?: string | undefined;
|
918
|
+
use?: string | undefined;
|
919
|
+
x?: string | undefined;
|
920
|
+
y?: string | undefined;
|
921
|
+
x5c?: string[] | undefined;
|
922
|
+
x5t?: string | undefined;
|
923
|
+
"x5t#S256"?: string | undefined;
|
924
|
+
x5u?: string | undefined;
|
925
|
+
}[];
|
926
|
+
}>;
|
927
|
+
metadata: z.ZodObject<{
|
928
|
+
federation_entity: z.ZodObject<{
|
929
|
+
federation_fetch_endpoint: z.ZodOptional<z.ZodString>;
|
930
|
+
federation_list_endpoint: z.ZodOptional<z.ZodString>;
|
931
|
+
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
932
|
+
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
933
|
+
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
934
|
+
homepage_uri: z.ZodOptional<z.ZodString>;
|
935
|
+
policy_uri: z.ZodOptional<z.ZodString>;
|
936
|
+
logo_uri: z.ZodOptional<z.ZodString>;
|
937
|
+
contacts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
938
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
939
|
+
federation_fetch_endpoint: z.ZodOptional<z.ZodString>;
|
940
|
+
federation_list_endpoint: z.ZodOptional<z.ZodString>;
|
941
|
+
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
942
|
+
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
943
|
+
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
944
|
+
homepage_uri: z.ZodOptional<z.ZodString>;
|
945
|
+
policy_uri: z.ZodOptional<z.ZodString>;
|
946
|
+
logo_uri: z.ZodOptional<z.ZodString>;
|
947
|
+
contacts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
948
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
949
|
+
federation_fetch_endpoint: z.ZodOptional<z.ZodString>;
|
950
|
+
federation_list_endpoint: z.ZodOptional<z.ZodString>;
|
951
|
+
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
952
|
+
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
953
|
+
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
954
|
+
homepage_uri: z.ZodOptional<z.ZodString>;
|
955
|
+
policy_uri: z.ZodOptional<z.ZodString>;
|
956
|
+
logo_uri: z.ZodOptional<z.ZodString>;
|
957
|
+
contacts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
958
|
+
}, z.ZodTypeAny, "passthrough">>;
|
959
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
960
|
+
federation_entity: z.ZodObject<{
|
961
|
+
federation_fetch_endpoint: z.ZodOptional<z.ZodString>;
|
962
|
+
federation_list_endpoint: z.ZodOptional<z.ZodString>;
|
963
|
+
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
964
|
+
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
965
|
+
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
966
|
+
homepage_uri: z.ZodOptional<z.ZodString>;
|
967
|
+
policy_uri: z.ZodOptional<z.ZodString>;
|
968
|
+
logo_uri: z.ZodOptional<z.ZodString>;
|
969
|
+
contacts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
970
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
971
|
+
federation_fetch_endpoint: z.ZodOptional<z.ZodString>;
|
972
|
+
federation_list_endpoint: z.ZodOptional<z.ZodString>;
|
973
|
+
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
974
|
+
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
975
|
+
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
976
|
+
homepage_uri: z.ZodOptional<z.ZodString>;
|
977
|
+
policy_uri: z.ZodOptional<z.ZodString>;
|
978
|
+
logo_uri: z.ZodOptional<z.ZodString>;
|
979
|
+
contacts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
980
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
981
|
+
federation_fetch_endpoint: z.ZodOptional<z.ZodString>;
|
982
|
+
federation_list_endpoint: z.ZodOptional<z.ZodString>;
|
983
|
+
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
984
|
+
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
985
|
+
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
986
|
+
homepage_uri: z.ZodOptional<z.ZodString>;
|
987
|
+
policy_uri: z.ZodOptional<z.ZodString>;
|
988
|
+
logo_uri: z.ZodOptional<z.ZodString>;
|
989
|
+
contacts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
990
|
+
}, z.ZodTypeAny, "passthrough">>;
|
991
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
992
|
+
federation_entity: z.ZodObject<{
|
993
|
+
federation_fetch_endpoint: z.ZodOptional<z.ZodString>;
|
994
|
+
federation_list_endpoint: z.ZodOptional<z.ZodString>;
|
995
|
+
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
996
|
+
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
997
|
+
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
998
|
+
homepage_uri: z.ZodOptional<z.ZodString>;
|
999
|
+
policy_uri: z.ZodOptional<z.ZodString>;
|
1000
|
+
logo_uri: z.ZodOptional<z.ZodString>;
|
1001
|
+
contacts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
1002
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
1003
|
+
federation_fetch_endpoint: z.ZodOptional<z.ZodString>;
|
1004
|
+
federation_list_endpoint: z.ZodOptional<z.ZodString>;
|
1005
|
+
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1006
|
+
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1007
|
+
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1008
|
+
homepage_uri: z.ZodOptional<z.ZodString>;
|
1009
|
+
policy_uri: z.ZodOptional<z.ZodString>;
|
1010
|
+
logo_uri: z.ZodOptional<z.ZodString>;
|
1011
|
+
contacts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
1012
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
1013
|
+
federation_fetch_endpoint: z.ZodOptional<z.ZodString>;
|
1014
|
+
federation_list_endpoint: z.ZodOptional<z.ZodString>;
|
1015
|
+
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1016
|
+
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1017
|
+
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1018
|
+
homepage_uri: z.ZodOptional<z.ZodString>;
|
1019
|
+
policy_uri: z.ZodOptional<z.ZodString>;
|
1020
|
+
logo_uri: z.ZodOptional<z.ZodString>;
|
1021
|
+
contacts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
1022
|
+
}, z.ZodTypeAny, "passthrough">>;
|
1023
|
+
}, z.ZodTypeAny, "passthrough">>;
|
1024
|
+
authority_hints: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
1025
|
+
}, z.ZodTypeAny, "passthrough">>;
|
1026
|
+
}, "strip", z.ZodTypeAny, {
|
1027
|
+
header: {
|
1028
|
+
alg: string;
|
1029
|
+
kid: string;
|
1030
|
+
typ: "entity-statement+jwt";
|
1031
|
+
};
|
1032
|
+
payload: {
|
1063
1033
|
iss: string;
|
1064
1034
|
sub: string;
|
1065
1035
|
iat: number;
|
@@ -1108,7 +1078,759 @@ export declare const TrustAnchorEntityConfiguration: z.ZodObject<{
|
|
1108
1078
|
[k: string]: unknown;
|
1109
1079
|
};
|
1110
1080
|
authority_hints?: string[] | undefined;
|
1111
|
-
}
|
1081
|
+
} & {
|
1082
|
+
[k: string]: unknown;
|
1083
|
+
};
|
1084
|
+
}, {
|
1085
|
+
header: {
|
1086
|
+
alg: string;
|
1087
|
+
kid: string;
|
1088
|
+
typ: "entity-statement+jwt";
|
1089
|
+
};
|
1090
|
+
payload: {
|
1091
|
+
iss: string;
|
1092
|
+
sub: string;
|
1093
|
+
iat: number;
|
1094
|
+
exp: number;
|
1095
|
+
jwks: {
|
1096
|
+
keys: {
|
1097
|
+
kty: "RSA" | "EC";
|
1098
|
+
alg?: string | undefined;
|
1099
|
+
crv?: string | undefined;
|
1100
|
+
d?: string | undefined;
|
1101
|
+
dp?: string | undefined;
|
1102
|
+
dq?: string | undefined;
|
1103
|
+
e?: string | undefined;
|
1104
|
+
ext?: boolean | undefined;
|
1105
|
+
k?: string | undefined;
|
1106
|
+
key_ops?: string[] | undefined;
|
1107
|
+
kid?: string | undefined;
|
1108
|
+
n?: string | undefined;
|
1109
|
+
p?: string | undefined;
|
1110
|
+
q?: string | undefined;
|
1111
|
+
qi?: string | undefined;
|
1112
|
+
use?: string | undefined;
|
1113
|
+
x?: string | undefined;
|
1114
|
+
y?: string | undefined;
|
1115
|
+
x5c?: string[] | undefined;
|
1116
|
+
x5t?: string | undefined;
|
1117
|
+
"x5t#S256"?: string | undefined;
|
1118
|
+
x5u?: string | undefined;
|
1119
|
+
}[];
|
1120
|
+
};
|
1121
|
+
metadata: {
|
1122
|
+
federation_entity: {
|
1123
|
+
federation_fetch_endpoint?: string | undefined;
|
1124
|
+
federation_list_endpoint?: string | undefined;
|
1125
|
+
federation_resolve_endpoint?: string | undefined;
|
1126
|
+
federation_trust_mark_status_endpoint?: string | undefined;
|
1127
|
+
federation_trust_mark_list_endpoint?: string | undefined;
|
1128
|
+
homepage_uri?: string | undefined;
|
1129
|
+
policy_uri?: string | undefined;
|
1130
|
+
logo_uri?: string | undefined;
|
1131
|
+
contacts?: string[] | undefined;
|
1132
|
+
} & {
|
1133
|
+
[k: string]: unknown;
|
1134
|
+
};
|
1135
|
+
} & {
|
1136
|
+
[k: string]: unknown;
|
1137
|
+
};
|
1138
|
+
authority_hints?: string[] | undefined;
|
1139
|
+
} & {
|
1140
|
+
[k: string]: unknown;
|
1141
|
+
};
|
1142
|
+
}>;
|
1143
|
+
export type TrustAnchorEntityConfiguration = z.infer<typeof TrustAnchorEntityConfiguration>;
|
1144
|
+
export declare const TrustAnchorEntityConfiguration: z.ZodObject<{
|
1145
|
+
header: z.ZodObject<{
|
1146
|
+
typ: z.ZodLiteral<"entity-statement+jwt">;
|
1147
|
+
alg: z.ZodString;
|
1148
|
+
kid: z.ZodString;
|
1149
|
+
}, "strip", z.ZodTypeAny, {
|
1150
|
+
alg: string;
|
1151
|
+
kid: string;
|
1152
|
+
typ: "entity-statement+jwt";
|
1153
|
+
}, {
|
1154
|
+
alg: string;
|
1155
|
+
kid: string;
|
1156
|
+
typ: "entity-statement+jwt";
|
1157
|
+
}>;
|
1158
|
+
payload: z.ZodObject<{
|
1159
|
+
exp: z.ZodNumber;
|
1160
|
+
iat: z.ZodNumber;
|
1161
|
+
iss: z.ZodString;
|
1162
|
+
sub: z.ZodString;
|
1163
|
+
jwks: z.ZodObject<{
|
1164
|
+
keys: z.ZodArray<z.ZodObject<{
|
1165
|
+
alg: z.ZodOptional<z.ZodString>;
|
1166
|
+
crv: z.ZodOptional<z.ZodString>;
|
1167
|
+
d: z.ZodOptional<z.ZodString>;
|
1168
|
+
dp: z.ZodOptional<z.ZodString>;
|
1169
|
+
dq: z.ZodOptional<z.ZodString>;
|
1170
|
+
e: z.ZodOptional<z.ZodString>;
|
1171
|
+
ext: z.ZodOptional<z.ZodBoolean>;
|
1172
|
+
k: z.ZodOptional<z.ZodString>;
|
1173
|
+
key_ops: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
1174
|
+
kid: z.ZodOptional<z.ZodString>;
|
1175
|
+
kty: z.ZodUnion<[z.ZodLiteral<"RSA">, z.ZodLiteral<"EC">]>;
|
1176
|
+
n: z.ZodOptional<z.ZodString>;
|
1177
|
+
p: z.ZodOptional<z.ZodString>;
|
1178
|
+
q: z.ZodOptional<z.ZodString>;
|
1179
|
+
qi: z.ZodOptional<z.ZodString>;
|
1180
|
+
use: z.ZodOptional<z.ZodString>;
|
1181
|
+
x: z.ZodOptional<z.ZodString>;
|
1182
|
+
y: z.ZodOptional<z.ZodString>;
|
1183
|
+
x5c: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
1184
|
+
x5t: z.ZodOptional<z.ZodString>;
|
1185
|
+
"x5t#S256": z.ZodOptional<z.ZodString>;
|
1186
|
+
x5u: z.ZodOptional<z.ZodString>;
|
1187
|
+
}, "strip", z.ZodTypeAny, {
|
1188
|
+
kty: "RSA" | "EC";
|
1189
|
+
alg?: string | undefined;
|
1190
|
+
crv?: string | undefined;
|
1191
|
+
d?: string | undefined;
|
1192
|
+
dp?: string | undefined;
|
1193
|
+
dq?: string | undefined;
|
1194
|
+
e?: string | undefined;
|
1195
|
+
ext?: boolean | undefined;
|
1196
|
+
k?: string | undefined;
|
1197
|
+
key_ops?: string[] | undefined;
|
1198
|
+
kid?: string | undefined;
|
1199
|
+
n?: string | undefined;
|
1200
|
+
p?: string | undefined;
|
1201
|
+
q?: string | undefined;
|
1202
|
+
qi?: string | undefined;
|
1203
|
+
use?: string | undefined;
|
1204
|
+
x?: string | undefined;
|
1205
|
+
y?: string | undefined;
|
1206
|
+
x5c?: string[] | undefined;
|
1207
|
+
x5t?: string | undefined;
|
1208
|
+
"x5t#S256"?: string | undefined;
|
1209
|
+
x5u?: string | undefined;
|
1210
|
+
}, {
|
1211
|
+
kty: "RSA" | "EC";
|
1212
|
+
alg?: string | undefined;
|
1213
|
+
crv?: string | undefined;
|
1214
|
+
d?: string | undefined;
|
1215
|
+
dp?: string | undefined;
|
1216
|
+
dq?: string | undefined;
|
1217
|
+
e?: string | undefined;
|
1218
|
+
ext?: boolean | undefined;
|
1219
|
+
k?: string | undefined;
|
1220
|
+
key_ops?: string[] | undefined;
|
1221
|
+
kid?: string | undefined;
|
1222
|
+
n?: string | undefined;
|
1223
|
+
p?: string | undefined;
|
1224
|
+
q?: string | undefined;
|
1225
|
+
qi?: string | undefined;
|
1226
|
+
use?: string | undefined;
|
1227
|
+
x?: string | undefined;
|
1228
|
+
y?: string | undefined;
|
1229
|
+
x5c?: string[] | undefined;
|
1230
|
+
x5t?: string | undefined;
|
1231
|
+
"x5t#S256"?: string | undefined;
|
1232
|
+
x5u?: string | undefined;
|
1233
|
+
}>, "many">;
|
1234
|
+
}, "strip", z.ZodTypeAny, {
|
1235
|
+
keys: {
|
1236
|
+
kty: "RSA" | "EC";
|
1237
|
+
alg?: string | undefined;
|
1238
|
+
crv?: string | undefined;
|
1239
|
+
d?: string | undefined;
|
1240
|
+
dp?: string | undefined;
|
1241
|
+
dq?: string | undefined;
|
1242
|
+
e?: string | undefined;
|
1243
|
+
ext?: boolean | undefined;
|
1244
|
+
k?: string | undefined;
|
1245
|
+
key_ops?: string[] | undefined;
|
1246
|
+
kid?: string | undefined;
|
1247
|
+
n?: string | undefined;
|
1248
|
+
p?: string | undefined;
|
1249
|
+
q?: string | undefined;
|
1250
|
+
qi?: string | undefined;
|
1251
|
+
use?: string | undefined;
|
1252
|
+
x?: string | undefined;
|
1253
|
+
y?: string | undefined;
|
1254
|
+
x5c?: string[] | undefined;
|
1255
|
+
x5t?: string | undefined;
|
1256
|
+
"x5t#S256"?: string | undefined;
|
1257
|
+
x5u?: string | undefined;
|
1258
|
+
}[];
|
1259
|
+
}, {
|
1260
|
+
keys: {
|
1261
|
+
kty: "RSA" | "EC";
|
1262
|
+
alg?: string | undefined;
|
1263
|
+
crv?: string | undefined;
|
1264
|
+
d?: string | undefined;
|
1265
|
+
dp?: string | undefined;
|
1266
|
+
dq?: string | undefined;
|
1267
|
+
e?: string | undefined;
|
1268
|
+
ext?: boolean | undefined;
|
1269
|
+
k?: string | undefined;
|
1270
|
+
key_ops?: string[] | undefined;
|
1271
|
+
kid?: string | undefined;
|
1272
|
+
n?: string | undefined;
|
1273
|
+
p?: string | undefined;
|
1274
|
+
q?: string | undefined;
|
1275
|
+
qi?: string | undefined;
|
1276
|
+
use?: string | undefined;
|
1277
|
+
x?: string | undefined;
|
1278
|
+
y?: string | undefined;
|
1279
|
+
x5c?: string[] | undefined;
|
1280
|
+
x5t?: string | undefined;
|
1281
|
+
"x5t#S256"?: string | undefined;
|
1282
|
+
x5u?: string | undefined;
|
1283
|
+
}[];
|
1284
|
+
}>;
|
1285
|
+
metadata: z.ZodObject<{
|
1286
|
+
federation_entity: z.ZodObject<{
|
1287
|
+
federation_fetch_endpoint: z.ZodOptional<z.ZodString>;
|
1288
|
+
federation_list_endpoint: z.ZodOptional<z.ZodString>;
|
1289
|
+
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1290
|
+
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1291
|
+
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1292
|
+
homepage_uri: z.ZodOptional<z.ZodString>;
|
1293
|
+
policy_uri: z.ZodOptional<z.ZodString>;
|
1294
|
+
logo_uri: z.ZodOptional<z.ZodString>;
|
1295
|
+
contacts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
1296
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
1297
|
+
federation_fetch_endpoint: z.ZodOptional<z.ZodString>;
|
1298
|
+
federation_list_endpoint: z.ZodOptional<z.ZodString>;
|
1299
|
+
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1300
|
+
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1301
|
+
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1302
|
+
homepage_uri: z.ZodOptional<z.ZodString>;
|
1303
|
+
policy_uri: z.ZodOptional<z.ZodString>;
|
1304
|
+
logo_uri: z.ZodOptional<z.ZodString>;
|
1305
|
+
contacts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
1306
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
1307
|
+
federation_fetch_endpoint: z.ZodOptional<z.ZodString>;
|
1308
|
+
federation_list_endpoint: z.ZodOptional<z.ZodString>;
|
1309
|
+
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1310
|
+
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1311
|
+
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1312
|
+
homepage_uri: z.ZodOptional<z.ZodString>;
|
1313
|
+
policy_uri: z.ZodOptional<z.ZodString>;
|
1314
|
+
logo_uri: z.ZodOptional<z.ZodString>;
|
1315
|
+
contacts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
1316
|
+
}, z.ZodTypeAny, "passthrough">>;
|
1317
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
1318
|
+
federation_entity: z.ZodObject<{
|
1319
|
+
federation_fetch_endpoint: z.ZodOptional<z.ZodString>;
|
1320
|
+
federation_list_endpoint: z.ZodOptional<z.ZodString>;
|
1321
|
+
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1322
|
+
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1323
|
+
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1324
|
+
homepage_uri: z.ZodOptional<z.ZodString>;
|
1325
|
+
policy_uri: z.ZodOptional<z.ZodString>;
|
1326
|
+
logo_uri: z.ZodOptional<z.ZodString>;
|
1327
|
+
contacts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
1328
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
1329
|
+
federation_fetch_endpoint: z.ZodOptional<z.ZodString>;
|
1330
|
+
federation_list_endpoint: z.ZodOptional<z.ZodString>;
|
1331
|
+
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1332
|
+
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1333
|
+
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1334
|
+
homepage_uri: z.ZodOptional<z.ZodString>;
|
1335
|
+
policy_uri: z.ZodOptional<z.ZodString>;
|
1336
|
+
logo_uri: z.ZodOptional<z.ZodString>;
|
1337
|
+
contacts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
1338
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
1339
|
+
federation_fetch_endpoint: z.ZodOptional<z.ZodString>;
|
1340
|
+
federation_list_endpoint: z.ZodOptional<z.ZodString>;
|
1341
|
+
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1342
|
+
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1343
|
+
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1344
|
+
homepage_uri: z.ZodOptional<z.ZodString>;
|
1345
|
+
policy_uri: z.ZodOptional<z.ZodString>;
|
1346
|
+
logo_uri: z.ZodOptional<z.ZodString>;
|
1347
|
+
contacts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
1348
|
+
}, z.ZodTypeAny, "passthrough">>;
|
1349
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
1350
|
+
federation_entity: z.ZodObject<{
|
1351
|
+
federation_fetch_endpoint: z.ZodOptional<z.ZodString>;
|
1352
|
+
federation_list_endpoint: z.ZodOptional<z.ZodString>;
|
1353
|
+
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1354
|
+
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1355
|
+
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1356
|
+
homepage_uri: z.ZodOptional<z.ZodString>;
|
1357
|
+
policy_uri: z.ZodOptional<z.ZodString>;
|
1358
|
+
logo_uri: z.ZodOptional<z.ZodString>;
|
1359
|
+
contacts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
1360
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
1361
|
+
federation_fetch_endpoint: z.ZodOptional<z.ZodString>;
|
1362
|
+
federation_list_endpoint: z.ZodOptional<z.ZodString>;
|
1363
|
+
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1364
|
+
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1365
|
+
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1366
|
+
homepage_uri: z.ZodOptional<z.ZodString>;
|
1367
|
+
policy_uri: z.ZodOptional<z.ZodString>;
|
1368
|
+
logo_uri: z.ZodOptional<z.ZodString>;
|
1369
|
+
contacts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
1370
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
1371
|
+
federation_fetch_endpoint: z.ZodOptional<z.ZodString>;
|
1372
|
+
federation_list_endpoint: z.ZodOptional<z.ZodString>;
|
1373
|
+
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1374
|
+
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1375
|
+
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1376
|
+
homepage_uri: z.ZodOptional<z.ZodString>;
|
1377
|
+
policy_uri: z.ZodOptional<z.ZodString>;
|
1378
|
+
logo_uri: z.ZodOptional<z.ZodString>;
|
1379
|
+
contacts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
1380
|
+
}, z.ZodTypeAny, "passthrough">>;
|
1381
|
+
}, z.ZodTypeAny, "passthrough">>;
|
1382
|
+
authority_hints: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
1383
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
1384
|
+
exp: z.ZodNumber;
|
1385
|
+
iat: z.ZodNumber;
|
1386
|
+
iss: z.ZodString;
|
1387
|
+
sub: z.ZodString;
|
1388
|
+
jwks: z.ZodObject<{
|
1389
|
+
keys: z.ZodArray<z.ZodObject<{
|
1390
|
+
alg: z.ZodOptional<z.ZodString>;
|
1391
|
+
crv: z.ZodOptional<z.ZodString>;
|
1392
|
+
d: z.ZodOptional<z.ZodString>;
|
1393
|
+
dp: z.ZodOptional<z.ZodString>;
|
1394
|
+
dq: z.ZodOptional<z.ZodString>;
|
1395
|
+
e: z.ZodOptional<z.ZodString>;
|
1396
|
+
ext: z.ZodOptional<z.ZodBoolean>;
|
1397
|
+
k: z.ZodOptional<z.ZodString>;
|
1398
|
+
key_ops: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
1399
|
+
kid: z.ZodOptional<z.ZodString>;
|
1400
|
+
kty: z.ZodUnion<[z.ZodLiteral<"RSA">, z.ZodLiteral<"EC">]>;
|
1401
|
+
n: z.ZodOptional<z.ZodString>;
|
1402
|
+
p: z.ZodOptional<z.ZodString>;
|
1403
|
+
q: z.ZodOptional<z.ZodString>;
|
1404
|
+
qi: z.ZodOptional<z.ZodString>;
|
1405
|
+
use: z.ZodOptional<z.ZodString>;
|
1406
|
+
x: z.ZodOptional<z.ZodString>;
|
1407
|
+
y: z.ZodOptional<z.ZodString>;
|
1408
|
+
x5c: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
1409
|
+
x5t: z.ZodOptional<z.ZodString>;
|
1410
|
+
"x5t#S256": z.ZodOptional<z.ZodString>;
|
1411
|
+
x5u: z.ZodOptional<z.ZodString>;
|
1412
|
+
}, "strip", z.ZodTypeAny, {
|
1413
|
+
kty: "RSA" | "EC";
|
1414
|
+
alg?: string | undefined;
|
1415
|
+
crv?: string | undefined;
|
1416
|
+
d?: string | undefined;
|
1417
|
+
dp?: string | undefined;
|
1418
|
+
dq?: string | undefined;
|
1419
|
+
e?: string | undefined;
|
1420
|
+
ext?: boolean | undefined;
|
1421
|
+
k?: string | undefined;
|
1422
|
+
key_ops?: string[] | undefined;
|
1423
|
+
kid?: string | undefined;
|
1424
|
+
n?: string | undefined;
|
1425
|
+
p?: string | undefined;
|
1426
|
+
q?: string | undefined;
|
1427
|
+
qi?: string | undefined;
|
1428
|
+
use?: string | undefined;
|
1429
|
+
x?: string | undefined;
|
1430
|
+
y?: string | undefined;
|
1431
|
+
x5c?: string[] | undefined;
|
1432
|
+
x5t?: string | undefined;
|
1433
|
+
"x5t#S256"?: string | undefined;
|
1434
|
+
x5u?: string | undefined;
|
1435
|
+
}, {
|
1436
|
+
kty: "RSA" | "EC";
|
1437
|
+
alg?: string | undefined;
|
1438
|
+
crv?: string | undefined;
|
1439
|
+
d?: string | undefined;
|
1440
|
+
dp?: string | undefined;
|
1441
|
+
dq?: string | undefined;
|
1442
|
+
e?: string | undefined;
|
1443
|
+
ext?: boolean | undefined;
|
1444
|
+
k?: string | undefined;
|
1445
|
+
key_ops?: string[] | undefined;
|
1446
|
+
kid?: string | undefined;
|
1447
|
+
n?: string | undefined;
|
1448
|
+
p?: string | undefined;
|
1449
|
+
q?: string | undefined;
|
1450
|
+
qi?: string | undefined;
|
1451
|
+
use?: string | undefined;
|
1452
|
+
x?: string | undefined;
|
1453
|
+
y?: string | undefined;
|
1454
|
+
x5c?: string[] | undefined;
|
1455
|
+
x5t?: string | undefined;
|
1456
|
+
"x5t#S256"?: string | undefined;
|
1457
|
+
x5u?: string | undefined;
|
1458
|
+
}>, "many">;
|
1459
|
+
}, "strip", z.ZodTypeAny, {
|
1460
|
+
keys: {
|
1461
|
+
kty: "RSA" | "EC";
|
1462
|
+
alg?: string | undefined;
|
1463
|
+
crv?: string | undefined;
|
1464
|
+
d?: string | undefined;
|
1465
|
+
dp?: string | undefined;
|
1466
|
+
dq?: string | undefined;
|
1467
|
+
e?: string | undefined;
|
1468
|
+
ext?: boolean | undefined;
|
1469
|
+
k?: string | undefined;
|
1470
|
+
key_ops?: string[] | undefined;
|
1471
|
+
kid?: string | undefined;
|
1472
|
+
n?: string | undefined;
|
1473
|
+
p?: string | undefined;
|
1474
|
+
q?: string | undefined;
|
1475
|
+
qi?: string | undefined;
|
1476
|
+
use?: string | undefined;
|
1477
|
+
x?: string | undefined;
|
1478
|
+
y?: string | undefined;
|
1479
|
+
x5c?: string[] | undefined;
|
1480
|
+
x5t?: string | undefined;
|
1481
|
+
"x5t#S256"?: string | undefined;
|
1482
|
+
x5u?: string | undefined;
|
1483
|
+
}[];
|
1484
|
+
}, {
|
1485
|
+
keys: {
|
1486
|
+
kty: "RSA" | "EC";
|
1487
|
+
alg?: string | undefined;
|
1488
|
+
crv?: string | undefined;
|
1489
|
+
d?: string | undefined;
|
1490
|
+
dp?: string | undefined;
|
1491
|
+
dq?: string | undefined;
|
1492
|
+
e?: string | undefined;
|
1493
|
+
ext?: boolean | undefined;
|
1494
|
+
k?: string | undefined;
|
1495
|
+
key_ops?: string[] | undefined;
|
1496
|
+
kid?: string | undefined;
|
1497
|
+
n?: string | undefined;
|
1498
|
+
p?: string | undefined;
|
1499
|
+
q?: string | undefined;
|
1500
|
+
qi?: string | undefined;
|
1501
|
+
use?: string | undefined;
|
1502
|
+
x?: string | undefined;
|
1503
|
+
y?: string | undefined;
|
1504
|
+
x5c?: string[] | undefined;
|
1505
|
+
x5t?: string | undefined;
|
1506
|
+
"x5t#S256"?: string | undefined;
|
1507
|
+
x5u?: string | undefined;
|
1508
|
+
}[];
|
1509
|
+
}>;
|
1510
|
+
metadata: z.ZodObject<{
|
1511
|
+
federation_entity: z.ZodObject<{
|
1512
|
+
federation_fetch_endpoint: z.ZodOptional<z.ZodString>;
|
1513
|
+
federation_list_endpoint: z.ZodOptional<z.ZodString>;
|
1514
|
+
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1515
|
+
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1516
|
+
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1517
|
+
homepage_uri: z.ZodOptional<z.ZodString>;
|
1518
|
+
policy_uri: z.ZodOptional<z.ZodString>;
|
1519
|
+
logo_uri: z.ZodOptional<z.ZodString>;
|
1520
|
+
contacts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
1521
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
1522
|
+
federation_fetch_endpoint: z.ZodOptional<z.ZodString>;
|
1523
|
+
federation_list_endpoint: z.ZodOptional<z.ZodString>;
|
1524
|
+
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1525
|
+
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1526
|
+
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1527
|
+
homepage_uri: z.ZodOptional<z.ZodString>;
|
1528
|
+
policy_uri: z.ZodOptional<z.ZodString>;
|
1529
|
+
logo_uri: z.ZodOptional<z.ZodString>;
|
1530
|
+
contacts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
1531
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
1532
|
+
federation_fetch_endpoint: z.ZodOptional<z.ZodString>;
|
1533
|
+
federation_list_endpoint: z.ZodOptional<z.ZodString>;
|
1534
|
+
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1535
|
+
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1536
|
+
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1537
|
+
homepage_uri: z.ZodOptional<z.ZodString>;
|
1538
|
+
policy_uri: z.ZodOptional<z.ZodString>;
|
1539
|
+
logo_uri: z.ZodOptional<z.ZodString>;
|
1540
|
+
contacts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
1541
|
+
}, z.ZodTypeAny, "passthrough">>;
|
1542
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
1543
|
+
federation_entity: z.ZodObject<{
|
1544
|
+
federation_fetch_endpoint: z.ZodOptional<z.ZodString>;
|
1545
|
+
federation_list_endpoint: z.ZodOptional<z.ZodString>;
|
1546
|
+
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1547
|
+
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1548
|
+
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1549
|
+
homepage_uri: z.ZodOptional<z.ZodString>;
|
1550
|
+
policy_uri: z.ZodOptional<z.ZodString>;
|
1551
|
+
logo_uri: z.ZodOptional<z.ZodString>;
|
1552
|
+
contacts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
1553
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
1554
|
+
federation_fetch_endpoint: z.ZodOptional<z.ZodString>;
|
1555
|
+
federation_list_endpoint: z.ZodOptional<z.ZodString>;
|
1556
|
+
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1557
|
+
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1558
|
+
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1559
|
+
homepage_uri: z.ZodOptional<z.ZodString>;
|
1560
|
+
policy_uri: z.ZodOptional<z.ZodString>;
|
1561
|
+
logo_uri: z.ZodOptional<z.ZodString>;
|
1562
|
+
contacts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
1563
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
1564
|
+
federation_fetch_endpoint: z.ZodOptional<z.ZodString>;
|
1565
|
+
federation_list_endpoint: z.ZodOptional<z.ZodString>;
|
1566
|
+
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1567
|
+
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1568
|
+
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1569
|
+
homepage_uri: z.ZodOptional<z.ZodString>;
|
1570
|
+
policy_uri: z.ZodOptional<z.ZodString>;
|
1571
|
+
logo_uri: z.ZodOptional<z.ZodString>;
|
1572
|
+
contacts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
1573
|
+
}, z.ZodTypeAny, "passthrough">>;
|
1574
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
1575
|
+
federation_entity: z.ZodObject<{
|
1576
|
+
federation_fetch_endpoint: z.ZodOptional<z.ZodString>;
|
1577
|
+
federation_list_endpoint: z.ZodOptional<z.ZodString>;
|
1578
|
+
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1579
|
+
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1580
|
+
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1581
|
+
homepage_uri: z.ZodOptional<z.ZodString>;
|
1582
|
+
policy_uri: z.ZodOptional<z.ZodString>;
|
1583
|
+
logo_uri: z.ZodOptional<z.ZodString>;
|
1584
|
+
contacts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
1585
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
1586
|
+
federation_fetch_endpoint: z.ZodOptional<z.ZodString>;
|
1587
|
+
federation_list_endpoint: z.ZodOptional<z.ZodString>;
|
1588
|
+
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1589
|
+
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1590
|
+
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1591
|
+
homepage_uri: z.ZodOptional<z.ZodString>;
|
1592
|
+
policy_uri: z.ZodOptional<z.ZodString>;
|
1593
|
+
logo_uri: z.ZodOptional<z.ZodString>;
|
1594
|
+
contacts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
1595
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
1596
|
+
federation_fetch_endpoint: z.ZodOptional<z.ZodString>;
|
1597
|
+
federation_list_endpoint: z.ZodOptional<z.ZodString>;
|
1598
|
+
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1599
|
+
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1600
|
+
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1601
|
+
homepage_uri: z.ZodOptional<z.ZodString>;
|
1602
|
+
policy_uri: z.ZodOptional<z.ZodString>;
|
1603
|
+
logo_uri: z.ZodOptional<z.ZodString>;
|
1604
|
+
contacts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
1605
|
+
}, z.ZodTypeAny, "passthrough">>;
|
1606
|
+
}, z.ZodTypeAny, "passthrough">>;
|
1607
|
+
authority_hints: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
1608
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
1609
|
+
exp: z.ZodNumber;
|
1610
|
+
iat: z.ZodNumber;
|
1611
|
+
iss: z.ZodString;
|
1612
|
+
sub: z.ZodString;
|
1613
|
+
jwks: z.ZodObject<{
|
1614
|
+
keys: z.ZodArray<z.ZodObject<{
|
1615
|
+
alg: z.ZodOptional<z.ZodString>;
|
1616
|
+
crv: z.ZodOptional<z.ZodString>;
|
1617
|
+
d: z.ZodOptional<z.ZodString>;
|
1618
|
+
dp: z.ZodOptional<z.ZodString>;
|
1619
|
+
dq: z.ZodOptional<z.ZodString>;
|
1620
|
+
e: z.ZodOptional<z.ZodString>;
|
1621
|
+
ext: z.ZodOptional<z.ZodBoolean>;
|
1622
|
+
k: z.ZodOptional<z.ZodString>;
|
1623
|
+
key_ops: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
1624
|
+
kid: z.ZodOptional<z.ZodString>;
|
1625
|
+
kty: z.ZodUnion<[z.ZodLiteral<"RSA">, z.ZodLiteral<"EC">]>;
|
1626
|
+
n: z.ZodOptional<z.ZodString>;
|
1627
|
+
p: z.ZodOptional<z.ZodString>;
|
1628
|
+
q: z.ZodOptional<z.ZodString>;
|
1629
|
+
qi: z.ZodOptional<z.ZodString>;
|
1630
|
+
use: z.ZodOptional<z.ZodString>;
|
1631
|
+
x: z.ZodOptional<z.ZodString>;
|
1632
|
+
y: z.ZodOptional<z.ZodString>;
|
1633
|
+
x5c: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
1634
|
+
x5t: z.ZodOptional<z.ZodString>;
|
1635
|
+
"x5t#S256": z.ZodOptional<z.ZodString>;
|
1636
|
+
x5u: z.ZodOptional<z.ZodString>;
|
1637
|
+
}, "strip", z.ZodTypeAny, {
|
1638
|
+
kty: "RSA" | "EC";
|
1639
|
+
alg?: string | undefined;
|
1640
|
+
crv?: string | undefined;
|
1641
|
+
d?: string | undefined;
|
1642
|
+
dp?: string | undefined;
|
1643
|
+
dq?: string | undefined;
|
1644
|
+
e?: string | undefined;
|
1645
|
+
ext?: boolean | undefined;
|
1646
|
+
k?: string | undefined;
|
1647
|
+
key_ops?: string[] | undefined;
|
1648
|
+
kid?: string | undefined;
|
1649
|
+
n?: string | undefined;
|
1650
|
+
p?: string | undefined;
|
1651
|
+
q?: string | undefined;
|
1652
|
+
qi?: string | undefined;
|
1653
|
+
use?: string | undefined;
|
1654
|
+
x?: string | undefined;
|
1655
|
+
y?: string | undefined;
|
1656
|
+
x5c?: string[] | undefined;
|
1657
|
+
x5t?: string | undefined;
|
1658
|
+
"x5t#S256"?: string | undefined;
|
1659
|
+
x5u?: string | undefined;
|
1660
|
+
}, {
|
1661
|
+
kty: "RSA" | "EC";
|
1662
|
+
alg?: string | undefined;
|
1663
|
+
crv?: string | undefined;
|
1664
|
+
d?: string | undefined;
|
1665
|
+
dp?: string | undefined;
|
1666
|
+
dq?: string | undefined;
|
1667
|
+
e?: string | undefined;
|
1668
|
+
ext?: boolean | undefined;
|
1669
|
+
k?: string | undefined;
|
1670
|
+
key_ops?: string[] | undefined;
|
1671
|
+
kid?: string | undefined;
|
1672
|
+
n?: string | undefined;
|
1673
|
+
p?: string | undefined;
|
1674
|
+
q?: string | undefined;
|
1675
|
+
qi?: string | undefined;
|
1676
|
+
use?: string | undefined;
|
1677
|
+
x?: string | undefined;
|
1678
|
+
y?: string | undefined;
|
1679
|
+
x5c?: string[] | undefined;
|
1680
|
+
x5t?: string | undefined;
|
1681
|
+
"x5t#S256"?: string | undefined;
|
1682
|
+
x5u?: string | undefined;
|
1683
|
+
}>, "many">;
|
1684
|
+
}, "strip", z.ZodTypeAny, {
|
1685
|
+
keys: {
|
1686
|
+
kty: "RSA" | "EC";
|
1687
|
+
alg?: string | undefined;
|
1688
|
+
crv?: string | undefined;
|
1689
|
+
d?: string | undefined;
|
1690
|
+
dp?: string | undefined;
|
1691
|
+
dq?: string | undefined;
|
1692
|
+
e?: string | undefined;
|
1693
|
+
ext?: boolean | undefined;
|
1694
|
+
k?: string | undefined;
|
1695
|
+
key_ops?: string[] | undefined;
|
1696
|
+
kid?: string | undefined;
|
1697
|
+
n?: string | undefined;
|
1698
|
+
p?: string | undefined;
|
1699
|
+
q?: string | undefined;
|
1700
|
+
qi?: string | undefined;
|
1701
|
+
use?: string | undefined;
|
1702
|
+
x?: string | undefined;
|
1703
|
+
y?: string | undefined;
|
1704
|
+
x5c?: string[] | undefined;
|
1705
|
+
x5t?: string | undefined;
|
1706
|
+
"x5t#S256"?: string | undefined;
|
1707
|
+
x5u?: string | undefined;
|
1708
|
+
}[];
|
1709
|
+
}, {
|
1710
|
+
keys: {
|
1711
|
+
kty: "RSA" | "EC";
|
1712
|
+
alg?: string | undefined;
|
1713
|
+
crv?: string | undefined;
|
1714
|
+
d?: string | undefined;
|
1715
|
+
dp?: string | undefined;
|
1716
|
+
dq?: string | undefined;
|
1717
|
+
e?: string | undefined;
|
1718
|
+
ext?: boolean | undefined;
|
1719
|
+
k?: string | undefined;
|
1720
|
+
key_ops?: string[] | undefined;
|
1721
|
+
kid?: string | undefined;
|
1722
|
+
n?: string | undefined;
|
1723
|
+
p?: string | undefined;
|
1724
|
+
q?: string | undefined;
|
1725
|
+
qi?: string | undefined;
|
1726
|
+
use?: string | undefined;
|
1727
|
+
x?: string | undefined;
|
1728
|
+
y?: string | undefined;
|
1729
|
+
x5c?: string[] | undefined;
|
1730
|
+
x5t?: string | undefined;
|
1731
|
+
"x5t#S256"?: string | undefined;
|
1732
|
+
x5u?: string | undefined;
|
1733
|
+
}[];
|
1734
|
+
}>;
|
1735
|
+
metadata: z.ZodObject<{
|
1736
|
+
federation_entity: z.ZodObject<{
|
1737
|
+
federation_fetch_endpoint: z.ZodOptional<z.ZodString>;
|
1738
|
+
federation_list_endpoint: z.ZodOptional<z.ZodString>;
|
1739
|
+
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1740
|
+
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1741
|
+
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1742
|
+
homepage_uri: z.ZodOptional<z.ZodString>;
|
1743
|
+
policy_uri: z.ZodOptional<z.ZodString>;
|
1744
|
+
logo_uri: z.ZodOptional<z.ZodString>;
|
1745
|
+
contacts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
1746
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
1747
|
+
federation_fetch_endpoint: z.ZodOptional<z.ZodString>;
|
1748
|
+
federation_list_endpoint: z.ZodOptional<z.ZodString>;
|
1749
|
+
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1750
|
+
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1751
|
+
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1752
|
+
homepage_uri: z.ZodOptional<z.ZodString>;
|
1753
|
+
policy_uri: z.ZodOptional<z.ZodString>;
|
1754
|
+
logo_uri: z.ZodOptional<z.ZodString>;
|
1755
|
+
contacts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
1756
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
1757
|
+
federation_fetch_endpoint: z.ZodOptional<z.ZodString>;
|
1758
|
+
federation_list_endpoint: z.ZodOptional<z.ZodString>;
|
1759
|
+
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1760
|
+
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1761
|
+
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1762
|
+
homepage_uri: z.ZodOptional<z.ZodString>;
|
1763
|
+
policy_uri: z.ZodOptional<z.ZodString>;
|
1764
|
+
logo_uri: z.ZodOptional<z.ZodString>;
|
1765
|
+
contacts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
1766
|
+
}, z.ZodTypeAny, "passthrough">>;
|
1767
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
1768
|
+
federation_entity: z.ZodObject<{
|
1769
|
+
federation_fetch_endpoint: z.ZodOptional<z.ZodString>;
|
1770
|
+
federation_list_endpoint: z.ZodOptional<z.ZodString>;
|
1771
|
+
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1772
|
+
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1773
|
+
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1774
|
+
homepage_uri: z.ZodOptional<z.ZodString>;
|
1775
|
+
policy_uri: z.ZodOptional<z.ZodString>;
|
1776
|
+
logo_uri: z.ZodOptional<z.ZodString>;
|
1777
|
+
contacts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
1778
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
1779
|
+
federation_fetch_endpoint: z.ZodOptional<z.ZodString>;
|
1780
|
+
federation_list_endpoint: z.ZodOptional<z.ZodString>;
|
1781
|
+
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1782
|
+
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1783
|
+
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1784
|
+
homepage_uri: z.ZodOptional<z.ZodString>;
|
1785
|
+
policy_uri: z.ZodOptional<z.ZodString>;
|
1786
|
+
logo_uri: z.ZodOptional<z.ZodString>;
|
1787
|
+
contacts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
1788
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
1789
|
+
federation_fetch_endpoint: z.ZodOptional<z.ZodString>;
|
1790
|
+
federation_list_endpoint: z.ZodOptional<z.ZodString>;
|
1791
|
+
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1792
|
+
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1793
|
+
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1794
|
+
homepage_uri: z.ZodOptional<z.ZodString>;
|
1795
|
+
policy_uri: z.ZodOptional<z.ZodString>;
|
1796
|
+
logo_uri: z.ZodOptional<z.ZodString>;
|
1797
|
+
contacts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
1798
|
+
}, z.ZodTypeAny, "passthrough">>;
|
1799
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
1800
|
+
federation_entity: z.ZodObject<{
|
1801
|
+
federation_fetch_endpoint: z.ZodOptional<z.ZodString>;
|
1802
|
+
federation_list_endpoint: z.ZodOptional<z.ZodString>;
|
1803
|
+
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1804
|
+
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1805
|
+
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1806
|
+
homepage_uri: z.ZodOptional<z.ZodString>;
|
1807
|
+
policy_uri: z.ZodOptional<z.ZodString>;
|
1808
|
+
logo_uri: z.ZodOptional<z.ZodString>;
|
1809
|
+
contacts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
1810
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
1811
|
+
federation_fetch_endpoint: z.ZodOptional<z.ZodString>;
|
1812
|
+
federation_list_endpoint: z.ZodOptional<z.ZodString>;
|
1813
|
+
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1814
|
+
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1815
|
+
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1816
|
+
homepage_uri: z.ZodOptional<z.ZodString>;
|
1817
|
+
policy_uri: z.ZodOptional<z.ZodString>;
|
1818
|
+
logo_uri: z.ZodOptional<z.ZodString>;
|
1819
|
+
contacts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
1820
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
1821
|
+
federation_fetch_endpoint: z.ZodOptional<z.ZodString>;
|
1822
|
+
federation_list_endpoint: z.ZodOptional<z.ZodString>;
|
1823
|
+
federation_resolve_endpoint: z.ZodOptional<z.ZodString>;
|
1824
|
+
federation_trust_mark_status_endpoint: z.ZodOptional<z.ZodString>;
|
1825
|
+
federation_trust_mark_list_endpoint: z.ZodOptional<z.ZodString>;
|
1826
|
+
homepage_uri: z.ZodOptional<z.ZodString>;
|
1827
|
+
policy_uri: z.ZodOptional<z.ZodString>;
|
1828
|
+
logo_uri: z.ZodOptional<z.ZodString>;
|
1829
|
+
contacts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
1830
|
+
}, z.ZodTypeAny, "passthrough">>;
|
1831
|
+
}, z.ZodTypeAny, "passthrough">>;
|
1832
|
+
authority_hints: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
1833
|
+
}, z.ZodTypeAny, "passthrough">>;
|
1112
1834
|
}, "strip", z.ZodTypeAny, {
|
1113
1835
|
header: {
|
1114
1836
|
alg: string;
|
@@ -1164,6 +1886,8 @@ export declare const TrustAnchorEntityConfiguration: z.ZodObject<{
|
|
1164
1886
|
[k: string]: unknown;
|
1165
1887
|
};
|
1166
1888
|
authority_hints?: string[] | undefined;
|
1889
|
+
} & {
|
1890
|
+
[k: string]: unknown;
|
1167
1891
|
};
|
1168
1892
|
}, {
|
1169
1893
|
header: {
|
@@ -1220,6 +1944,8 @@ export declare const TrustAnchorEntityConfiguration: z.ZodObject<{
|
|
1220
1944
|
[k: string]: unknown;
|
1221
1945
|
};
|
1222
1946
|
authority_hints?: string[] | undefined;
|
1947
|
+
} & {
|
1948
|
+
[k: string]: unknown;
|
1223
1949
|
};
|
1224
1950
|
}>;
|
1225
1951
|
//# sourceMappingURL=types.d.ts.map
|