@authhero/adapter-interfaces 0.11.3 → 0.11.4
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.
|
@@ -550,6 +550,58 @@ export declare const userResponseSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
550
550
|
user_id: z.ZodString;
|
|
551
551
|
}>, z.ZodAny, "strip">>;
|
|
552
552
|
export type UserResponse = z.infer<typeof userResponseSchema>;
|
|
553
|
+
export declare const samlpAddon: z.ZodObject<{
|
|
554
|
+
audience: z.ZodOptional<z.ZodString>;
|
|
555
|
+
recipient: z.ZodOptional<z.ZodString>;
|
|
556
|
+
createUpnClaim: z.ZodOptional<z.ZodBoolean>;
|
|
557
|
+
mapUnknownClaimsAsIs: z.ZodOptional<z.ZodBoolean>;
|
|
558
|
+
passthroughClaimsWithNoMapping: z.ZodOptional<z.ZodBoolean>;
|
|
559
|
+
mapIdentities: z.ZodOptional<z.ZodBoolean>;
|
|
560
|
+
signatureAlgorithm: z.ZodOptional<z.ZodString>;
|
|
561
|
+
digestAlgorithm: z.ZodOptional<z.ZodString>;
|
|
562
|
+
issuer: z.ZodOptional<z.ZodString>;
|
|
563
|
+
destination: z.ZodOptional<z.ZodString>;
|
|
564
|
+
lifetimeInSeconds: z.ZodOptional<z.ZodNumber>;
|
|
565
|
+
signResponse: z.ZodOptional<z.ZodBoolean>;
|
|
566
|
+
nameIdentifierFormat: z.ZodOptional<z.ZodString>;
|
|
567
|
+
nameIdentifierProbes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
568
|
+
authnContextClassRef: z.ZodOptional<z.ZodString>;
|
|
569
|
+
mappings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
570
|
+
}, "strip", z.ZodTypeAny, {
|
|
571
|
+
audience?: string | undefined;
|
|
572
|
+
recipient?: string | undefined;
|
|
573
|
+
createUpnClaim?: boolean | undefined;
|
|
574
|
+
mapUnknownClaimsAsIs?: boolean | undefined;
|
|
575
|
+
passthroughClaimsWithNoMapping?: boolean | undefined;
|
|
576
|
+
mapIdentities?: boolean | undefined;
|
|
577
|
+
signatureAlgorithm?: string | undefined;
|
|
578
|
+
digestAlgorithm?: string | undefined;
|
|
579
|
+
issuer?: string | undefined;
|
|
580
|
+
destination?: string | undefined;
|
|
581
|
+
lifetimeInSeconds?: number | undefined;
|
|
582
|
+
signResponse?: boolean | undefined;
|
|
583
|
+
nameIdentifierFormat?: string | undefined;
|
|
584
|
+
nameIdentifierProbes?: string[] | undefined;
|
|
585
|
+
authnContextClassRef?: string | undefined;
|
|
586
|
+
mappings?: Record<string, string> | undefined;
|
|
587
|
+
}, {
|
|
588
|
+
audience?: string | undefined;
|
|
589
|
+
recipient?: string | undefined;
|
|
590
|
+
createUpnClaim?: boolean | undefined;
|
|
591
|
+
mapUnknownClaimsAsIs?: boolean | undefined;
|
|
592
|
+
passthroughClaimsWithNoMapping?: boolean | undefined;
|
|
593
|
+
mapIdentities?: boolean | undefined;
|
|
594
|
+
signatureAlgorithm?: string | undefined;
|
|
595
|
+
digestAlgorithm?: string | undefined;
|
|
596
|
+
issuer?: string | undefined;
|
|
597
|
+
destination?: string | undefined;
|
|
598
|
+
lifetimeInSeconds?: number | undefined;
|
|
599
|
+
signResponse?: boolean | undefined;
|
|
600
|
+
nameIdentifierFormat?: string | undefined;
|
|
601
|
+
nameIdentifierProbes?: string[] | undefined;
|
|
602
|
+
authnContextClassRef?: string | undefined;
|
|
603
|
+
mappings?: Record<string, string> | undefined;
|
|
604
|
+
}>;
|
|
553
605
|
export declare const applicationInsertSchema: z.ZodObject<{
|
|
554
606
|
id: z.ZodString;
|
|
555
607
|
name: z.ZodString;
|
|
@@ -557,10 +609,98 @@ export declare const applicationInsertSchema: z.ZodObject<{
|
|
|
557
609
|
allowed_origins: z.ZodArray<z.ZodString, "many">;
|
|
558
610
|
web_origins: z.ZodArray<z.ZodString, "many">;
|
|
559
611
|
allowed_logout_urls: z.ZodArray<z.ZodString, "many">;
|
|
560
|
-
addons: z.ZodOptional<z.
|
|
561
|
-
z.
|
|
562
|
-
|
|
563
|
-
|
|
612
|
+
addons: z.ZodOptional<z.ZodObject<{
|
|
613
|
+
samlp: z.ZodOptional<z.ZodObject<{
|
|
614
|
+
audience: z.ZodOptional<z.ZodString>;
|
|
615
|
+
recipient: z.ZodOptional<z.ZodString>;
|
|
616
|
+
createUpnClaim: z.ZodOptional<z.ZodBoolean>;
|
|
617
|
+
mapUnknownClaimsAsIs: z.ZodOptional<z.ZodBoolean>;
|
|
618
|
+
passthroughClaimsWithNoMapping: z.ZodOptional<z.ZodBoolean>;
|
|
619
|
+
mapIdentities: z.ZodOptional<z.ZodBoolean>;
|
|
620
|
+
signatureAlgorithm: z.ZodOptional<z.ZodString>;
|
|
621
|
+
digestAlgorithm: z.ZodOptional<z.ZodString>;
|
|
622
|
+
issuer: z.ZodOptional<z.ZodString>;
|
|
623
|
+
destination: z.ZodOptional<z.ZodString>;
|
|
624
|
+
lifetimeInSeconds: z.ZodOptional<z.ZodNumber>;
|
|
625
|
+
signResponse: z.ZodOptional<z.ZodBoolean>;
|
|
626
|
+
nameIdentifierFormat: z.ZodOptional<z.ZodString>;
|
|
627
|
+
nameIdentifierProbes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
628
|
+
authnContextClassRef: z.ZodOptional<z.ZodString>;
|
|
629
|
+
mappings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
630
|
+
}, "strip", z.ZodTypeAny, {
|
|
631
|
+
audience?: string | undefined;
|
|
632
|
+
recipient?: string | undefined;
|
|
633
|
+
createUpnClaim?: boolean | undefined;
|
|
634
|
+
mapUnknownClaimsAsIs?: boolean | undefined;
|
|
635
|
+
passthroughClaimsWithNoMapping?: boolean | undefined;
|
|
636
|
+
mapIdentities?: boolean | undefined;
|
|
637
|
+
signatureAlgorithm?: string | undefined;
|
|
638
|
+
digestAlgorithm?: string | undefined;
|
|
639
|
+
issuer?: string | undefined;
|
|
640
|
+
destination?: string | undefined;
|
|
641
|
+
lifetimeInSeconds?: number | undefined;
|
|
642
|
+
signResponse?: boolean | undefined;
|
|
643
|
+
nameIdentifierFormat?: string | undefined;
|
|
644
|
+
nameIdentifierProbes?: string[] | undefined;
|
|
645
|
+
authnContextClassRef?: string | undefined;
|
|
646
|
+
mappings?: Record<string, string> | undefined;
|
|
647
|
+
}, {
|
|
648
|
+
audience?: string | undefined;
|
|
649
|
+
recipient?: string | undefined;
|
|
650
|
+
createUpnClaim?: boolean | undefined;
|
|
651
|
+
mapUnknownClaimsAsIs?: boolean | undefined;
|
|
652
|
+
passthroughClaimsWithNoMapping?: boolean | undefined;
|
|
653
|
+
mapIdentities?: boolean | undefined;
|
|
654
|
+
signatureAlgorithm?: string | undefined;
|
|
655
|
+
digestAlgorithm?: string | undefined;
|
|
656
|
+
issuer?: string | undefined;
|
|
657
|
+
destination?: string | undefined;
|
|
658
|
+
lifetimeInSeconds?: number | undefined;
|
|
659
|
+
signResponse?: boolean | undefined;
|
|
660
|
+
nameIdentifierFormat?: string | undefined;
|
|
661
|
+
nameIdentifierProbes?: string[] | undefined;
|
|
662
|
+
authnContextClassRef?: string | undefined;
|
|
663
|
+
mappings?: Record<string, string> | undefined;
|
|
664
|
+
}>>;
|
|
665
|
+
}, "strip", z.ZodTypeAny, {
|
|
666
|
+
samlp?: {
|
|
667
|
+
audience?: string | undefined;
|
|
668
|
+
recipient?: string | undefined;
|
|
669
|
+
createUpnClaim?: boolean | undefined;
|
|
670
|
+
mapUnknownClaimsAsIs?: boolean | undefined;
|
|
671
|
+
passthroughClaimsWithNoMapping?: boolean | undefined;
|
|
672
|
+
mapIdentities?: boolean | undefined;
|
|
673
|
+
signatureAlgorithm?: string | undefined;
|
|
674
|
+
digestAlgorithm?: string | undefined;
|
|
675
|
+
issuer?: string | undefined;
|
|
676
|
+
destination?: string | undefined;
|
|
677
|
+
lifetimeInSeconds?: number | undefined;
|
|
678
|
+
signResponse?: boolean | undefined;
|
|
679
|
+
nameIdentifierFormat?: string | undefined;
|
|
680
|
+
nameIdentifierProbes?: string[] | undefined;
|
|
681
|
+
authnContextClassRef?: string | undefined;
|
|
682
|
+
mappings?: Record<string, string> | undefined;
|
|
683
|
+
} | undefined;
|
|
684
|
+
}, {
|
|
685
|
+
samlp?: {
|
|
686
|
+
audience?: string | undefined;
|
|
687
|
+
recipient?: string | undefined;
|
|
688
|
+
createUpnClaim?: boolean | undefined;
|
|
689
|
+
mapUnknownClaimsAsIs?: boolean | undefined;
|
|
690
|
+
passthroughClaimsWithNoMapping?: boolean | undefined;
|
|
691
|
+
mapIdentities?: boolean | undefined;
|
|
692
|
+
signatureAlgorithm?: string | undefined;
|
|
693
|
+
digestAlgorithm?: string | undefined;
|
|
694
|
+
issuer?: string | undefined;
|
|
695
|
+
destination?: string | undefined;
|
|
696
|
+
lifetimeInSeconds?: number | undefined;
|
|
697
|
+
signResponse?: boolean | undefined;
|
|
698
|
+
nameIdentifierFormat?: string | undefined;
|
|
699
|
+
nameIdentifierProbes?: string[] | undefined;
|
|
700
|
+
authnContextClassRef?: string | undefined;
|
|
701
|
+
mappings?: Record<string, string> | undefined;
|
|
702
|
+
} | undefined;
|
|
703
|
+
}>>;
|
|
564
704
|
email_validation: z.ZodDefault<z.ZodEnum<[
|
|
565
705
|
"enabled",
|
|
566
706
|
"disabled",
|
|
@@ -578,7 +718,26 @@ export declare const applicationInsertSchema: z.ZodObject<{
|
|
|
578
718
|
email_validation: "enabled" | "disabled" | "enforced";
|
|
579
719
|
client_secret: string;
|
|
580
720
|
disable_sign_ups: boolean;
|
|
581
|
-
addons?:
|
|
721
|
+
addons?: {
|
|
722
|
+
samlp?: {
|
|
723
|
+
audience?: string | undefined;
|
|
724
|
+
recipient?: string | undefined;
|
|
725
|
+
createUpnClaim?: boolean | undefined;
|
|
726
|
+
mapUnknownClaimsAsIs?: boolean | undefined;
|
|
727
|
+
passthroughClaimsWithNoMapping?: boolean | undefined;
|
|
728
|
+
mapIdentities?: boolean | undefined;
|
|
729
|
+
signatureAlgorithm?: string | undefined;
|
|
730
|
+
digestAlgorithm?: string | undefined;
|
|
731
|
+
issuer?: string | undefined;
|
|
732
|
+
destination?: string | undefined;
|
|
733
|
+
lifetimeInSeconds?: number | undefined;
|
|
734
|
+
signResponse?: boolean | undefined;
|
|
735
|
+
nameIdentifierFormat?: string | undefined;
|
|
736
|
+
nameIdentifierProbes?: string[] | undefined;
|
|
737
|
+
authnContextClassRef?: string | undefined;
|
|
738
|
+
mappings?: Record<string, string> | undefined;
|
|
739
|
+
} | undefined;
|
|
740
|
+
} | undefined;
|
|
582
741
|
}, {
|
|
583
742
|
name: string;
|
|
584
743
|
id: string;
|
|
@@ -586,7 +745,26 @@ export declare const applicationInsertSchema: z.ZodObject<{
|
|
|
586
745
|
allowed_origins: string[];
|
|
587
746
|
web_origins: string[];
|
|
588
747
|
allowed_logout_urls: string[];
|
|
589
|
-
addons?:
|
|
748
|
+
addons?: {
|
|
749
|
+
samlp?: {
|
|
750
|
+
audience?: string | undefined;
|
|
751
|
+
recipient?: string | undefined;
|
|
752
|
+
createUpnClaim?: boolean | undefined;
|
|
753
|
+
mapUnknownClaimsAsIs?: boolean | undefined;
|
|
754
|
+
passthroughClaimsWithNoMapping?: boolean | undefined;
|
|
755
|
+
mapIdentities?: boolean | undefined;
|
|
756
|
+
signatureAlgorithm?: string | undefined;
|
|
757
|
+
digestAlgorithm?: string | undefined;
|
|
758
|
+
issuer?: string | undefined;
|
|
759
|
+
destination?: string | undefined;
|
|
760
|
+
lifetimeInSeconds?: number | undefined;
|
|
761
|
+
signResponse?: boolean | undefined;
|
|
762
|
+
nameIdentifierFormat?: string | undefined;
|
|
763
|
+
nameIdentifierProbes?: string[] | undefined;
|
|
764
|
+
authnContextClassRef?: string | undefined;
|
|
765
|
+
mappings?: Record<string, string> | undefined;
|
|
766
|
+
} | undefined;
|
|
767
|
+
} | undefined;
|
|
590
768
|
email_validation?: "enabled" | "disabled" | "enforced" | undefined;
|
|
591
769
|
client_secret?: string | undefined;
|
|
592
770
|
disable_sign_ups?: boolean | undefined;
|
|
@@ -599,10 +777,98 @@ export declare const applicationSchema: z.ZodObject<{
|
|
|
599
777
|
allowed_origins: z.ZodArray<z.ZodString, "many">;
|
|
600
778
|
web_origins: z.ZodArray<z.ZodString, "many">;
|
|
601
779
|
allowed_logout_urls: z.ZodArray<z.ZodString, "many">;
|
|
602
|
-
addons: z.ZodOptional<z.
|
|
603
|
-
z.
|
|
604
|
-
|
|
605
|
-
|
|
780
|
+
addons: z.ZodOptional<z.ZodObject<{
|
|
781
|
+
samlp: z.ZodOptional<z.ZodObject<{
|
|
782
|
+
audience: z.ZodOptional<z.ZodString>;
|
|
783
|
+
recipient: z.ZodOptional<z.ZodString>;
|
|
784
|
+
createUpnClaim: z.ZodOptional<z.ZodBoolean>;
|
|
785
|
+
mapUnknownClaimsAsIs: z.ZodOptional<z.ZodBoolean>;
|
|
786
|
+
passthroughClaimsWithNoMapping: z.ZodOptional<z.ZodBoolean>;
|
|
787
|
+
mapIdentities: z.ZodOptional<z.ZodBoolean>;
|
|
788
|
+
signatureAlgorithm: z.ZodOptional<z.ZodString>;
|
|
789
|
+
digestAlgorithm: z.ZodOptional<z.ZodString>;
|
|
790
|
+
issuer: z.ZodOptional<z.ZodString>;
|
|
791
|
+
destination: z.ZodOptional<z.ZodString>;
|
|
792
|
+
lifetimeInSeconds: z.ZodOptional<z.ZodNumber>;
|
|
793
|
+
signResponse: z.ZodOptional<z.ZodBoolean>;
|
|
794
|
+
nameIdentifierFormat: z.ZodOptional<z.ZodString>;
|
|
795
|
+
nameIdentifierProbes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
796
|
+
authnContextClassRef: z.ZodOptional<z.ZodString>;
|
|
797
|
+
mappings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
798
|
+
}, "strip", z.ZodTypeAny, {
|
|
799
|
+
audience?: string | undefined;
|
|
800
|
+
recipient?: string | undefined;
|
|
801
|
+
createUpnClaim?: boolean | undefined;
|
|
802
|
+
mapUnknownClaimsAsIs?: boolean | undefined;
|
|
803
|
+
passthroughClaimsWithNoMapping?: boolean | undefined;
|
|
804
|
+
mapIdentities?: boolean | undefined;
|
|
805
|
+
signatureAlgorithm?: string | undefined;
|
|
806
|
+
digestAlgorithm?: string | undefined;
|
|
807
|
+
issuer?: string | undefined;
|
|
808
|
+
destination?: string | undefined;
|
|
809
|
+
lifetimeInSeconds?: number | undefined;
|
|
810
|
+
signResponse?: boolean | undefined;
|
|
811
|
+
nameIdentifierFormat?: string | undefined;
|
|
812
|
+
nameIdentifierProbes?: string[] | undefined;
|
|
813
|
+
authnContextClassRef?: string | undefined;
|
|
814
|
+
mappings?: Record<string, string> | undefined;
|
|
815
|
+
}, {
|
|
816
|
+
audience?: string | undefined;
|
|
817
|
+
recipient?: string | undefined;
|
|
818
|
+
createUpnClaim?: boolean | undefined;
|
|
819
|
+
mapUnknownClaimsAsIs?: boolean | undefined;
|
|
820
|
+
passthroughClaimsWithNoMapping?: boolean | undefined;
|
|
821
|
+
mapIdentities?: boolean | undefined;
|
|
822
|
+
signatureAlgorithm?: string | undefined;
|
|
823
|
+
digestAlgorithm?: string | undefined;
|
|
824
|
+
issuer?: string | undefined;
|
|
825
|
+
destination?: string | undefined;
|
|
826
|
+
lifetimeInSeconds?: number | undefined;
|
|
827
|
+
signResponse?: boolean | undefined;
|
|
828
|
+
nameIdentifierFormat?: string | undefined;
|
|
829
|
+
nameIdentifierProbes?: string[] | undefined;
|
|
830
|
+
authnContextClassRef?: string | undefined;
|
|
831
|
+
mappings?: Record<string, string> | undefined;
|
|
832
|
+
}>>;
|
|
833
|
+
}, "strip", z.ZodTypeAny, {
|
|
834
|
+
samlp?: {
|
|
835
|
+
audience?: string | undefined;
|
|
836
|
+
recipient?: string | undefined;
|
|
837
|
+
createUpnClaim?: boolean | undefined;
|
|
838
|
+
mapUnknownClaimsAsIs?: boolean | undefined;
|
|
839
|
+
passthroughClaimsWithNoMapping?: boolean | undefined;
|
|
840
|
+
mapIdentities?: boolean | undefined;
|
|
841
|
+
signatureAlgorithm?: string | undefined;
|
|
842
|
+
digestAlgorithm?: string | undefined;
|
|
843
|
+
issuer?: string | undefined;
|
|
844
|
+
destination?: string | undefined;
|
|
845
|
+
lifetimeInSeconds?: number | undefined;
|
|
846
|
+
signResponse?: boolean | undefined;
|
|
847
|
+
nameIdentifierFormat?: string | undefined;
|
|
848
|
+
nameIdentifierProbes?: string[] | undefined;
|
|
849
|
+
authnContextClassRef?: string | undefined;
|
|
850
|
+
mappings?: Record<string, string> | undefined;
|
|
851
|
+
} | undefined;
|
|
852
|
+
}, {
|
|
853
|
+
samlp?: {
|
|
854
|
+
audience?: string | undefined;
|
|
855
|
+
recipient?: string | undefined;
|
|
856
|
+
createUpnClaim?: boolean | undefined;
|
|
857
|
+
mapUnknownClaimsAsIs?: boolean | undefined;
|
|
858
|
+
passthroughClaimsWithNoMapping?: boolean | undefined;
|
|
859
|
+
mapIdentities?: boolean | undefined;
|
|
860
|
+
signatureAlgorithm?: string | undefined;
|
|
861
|
+
digestAlgorithm?: string | undefined;
|
|
862
|
+
issuer?: string | undefined;
|
|
863
|
+
destination?: string | undefined;
|
|
864
|
+
lifetimeInSeconds?: number | undefined;
|
|
865
|
+
signResponse?: boolean | undefined;
|
|
866
|
+
nameIdentifierFormat?: string | undefined;
|
|
867
|
+
nameIdentifierProbes?: string[] | undefined;
|
|
868
|
+
authnContextClassRef?: string | undefined;
|
|
869
|
+
mappings?: Record<string, string> | undefined;
|
|
870
|
+
} | undefined;
|
|
871
|
+
}>>;
|
|
606
872
|
email_validation: z.ZodDefault<z.ZodEnum<[
|
|
607
873
|
"enabled",
|
|
608
874
|
"disabled",
|
|
@@ -624,7 +890,26 @@ export declare const applicationSchema: z.ZodObject<{
|
|
|
624
890
|
email_validation: "enabled" | "disabled" | "enforced";
|
|
625
891
|
client_secret: string;
|
|
626
892
|
disable_sign_ups: boolean;
|
|
627
|
-
addons?:
|
|
893
|
+
addons?: {
|
|
894
|
+
samlp?: {
|
|
895
|
+
audience?: string | undefined;
|
|
896
|
+
recipient?: string | undefined;
|
|
897
|
+
createUpnClaim?: boolean | undefined;
|
|
898
|
+
mapUnknownClaimsAsIs?: boolean | undefined;
|
|
899
|
+
passthroughClaimsWithNoMapping?: boolean | undefined;
|
|
900
|
+
mapIdentities?: boolean | undefined;
|
|
901
|
+
signatureAlgorithm?: string | undefined;
|
|
902
|
+
digestAlgorithm?: string | undefined;
|
|
903
|
+
issuer?: string | undefined;
|
|
904
|
+
destination?: string | undefined;
|
|
905
|
+
lifetimeInSeconds?: number | undefined;
|
|
906
|
+
signResponse?: boolean | undefined;
|
|
907
|
+
nameIdentifierFormat?: string | undefined;
|
|
908
|
+
nameIdentifierProbes?: string[] | undefined;
|
|
909
|
+
authnContextClassRef?: string | undefined;
|
|
910
|
+
mappings?: Record<string, string> | undefined;
|
|
911
|
+
} | undefined;
|
|
912
|
+
} | undefined;
|
|
628
913
|
}, {
|
|
629
914
|
created_at: string;
|
|
630
915
|
updated_at: string;
|
|
@@ -634,7 +919,26 @@ export declare const applicationSchema: z.ZodObject<{
|
|
|
634
919
|
allowed_origins: string[];
|
|
635
920
|
web_origins: string[];
|
|
636
921
|
allowed_logout_urls: string[];
|
|
637
|
-
addons?:
|
|
922
|
+
addons?: {
|
|
923
|
+
samlp?: {
|
|
924
|
+
audience?: string | undefined;
|
|
925
|
+
recipient?: string | undefined;
|
|
926
|
+
createUpnClaim?: boolean | undefined;
|
|
927
|
+
mapUnknownClaimsAsIs?: boolean | undefined;
|
|
928
|
+
passthroughClaimsWithNoMapping?: boolean | undefined;
|
|
929
|
+
mapIdentities?: boolean | undefined;
|
|
930
|
+
signatureAlgorithm?: string | undefined;
|
|
931
|
+
digestAlgorithm?: string | undefined;
|
|
932
|
+
issuer?: string | undefined;
|
|
933
|
+
destination?: string | undefined;
|
|
934
|
+
lifetimeInSeconds?: number | undefined;
|
|
935
|
+
signResponse?: boolean | undefined;
|
|
936
|
+
nameIdentifierFormat?: string | undefined;
|
|
937
|
+
nameIdentifierProbes?: string[] | undefined;
|
|
938
|
+
authnContextClassRef?: string | undefined;
|
|
939
|
+
mappings?: Record<string, string> | undefined;
|
|
940
|
+
} | undefined;
|
|
941
|
+
} | undefined;
|
|
638
942
|
email_validation?: "enabled" | "disabled" | "enforced" | undefined;
|
|
639
943
|
client_secret?: string | undefined;
|
|
640
944
|
disable_sign_ups?: boolean | undefined;
|
|
@@ -672,11 +976,11 @@ export declare const authParamsSchema: z.ZodObject<{
|
|
|
672
976
|
}, "strip", z.ZodTypeAny, {
|
|
673
977
|
client_id: string;
|
|
674
978
|
username?: string | undefined;
|
|
979
|
+
audience?: string | undefined;
|
|
675
980
|
vendor_id?: string | undefined;
|
|
676
981
|
response_type?: AuthorizationResponseType | undefined;
|
|
677
982
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
678
983
|
redirect_uri?: string | undefined;
|
|
679
|
-
audience?: string | undefined;
|
|
680
984
|
state?: string | undefined;
|
|
681
985
|
nonce?: string | undefined;
|
|
682
986
|
scope?: string | undefined;
|
|
@@ -685,11 +989,11 @@ export declare const authParamsSchema: z.ZodObject<{
|
|
|
685
989
|
}, {
|
|
686
990
|
client_id: string;
|
|
687
991
|
username?: string | undefined;
|
|
992
|
+
audience?: string | undefined;
|
|
688
993
|
vendor_id?: string | undefined;
|
|
689
994
|
response_type?: AuthorizationResponseType | undefined;
|
|
690
995
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
691
996
|
redirect_uri?: string | undefined;
|
|
692
|
-
audience?: string | undefined;
|
|
693
997
|
state?: string | undefined;
|
|
694
998
|
nonce?: string | undefined;
|
|
695
999
|
scope?: string | undefined;
|
|
@@ -814,8 +1118,8 @@ declare const ClientSchema: z.ZodObject<{
|
|
|
814
1118
|
created_at: string;
|
|
815
1119
|
updated_at: string;
|
|
816
1120
|
name: string;
|
|
817
|
-
id: string;
|
|
818
1121
|
audience: string;
|
|
1122
|
+
id: string;
|
|
819
1123
|
sender_email: string;
|
|
820
1124
|
sender_name: string;
|
|
821
1125
|
support_url?: string | undefined;
|
|
@@ -827,8 +1131,8 @@ declare const ClientSchema: z.ZodObject<{
|
|
|
827
1131
|
created_at: string;
|
|
828
1132
|
updated_at: string;
|
|
829
1133
|
name: string;
|
|
830
|
-
id: string;
|
|
831
1134
|
audience: string;
|
|
1135
|
+
id: string;
|
|
832
1136
|
sender_email: string;
|
|
833
1137
|
sender_name: string;
|
|
834
1138
|
support_url?: string | undefined;
|
|
@@ -897,10 +1201,98 @@ declare const ClientSchema: z.ZodObject<{
|
|
|
897
1201
|
allowed_origins: z.ZodArray<z.ZodString, "many">;
|
|
898
1202
|
web_origins: z.ZodArray<z.ZodString, "many">;
|
|
899
1203
|
allowed_logout_urls: z.ZodArray<z.ZodString, "many">;
|
|
900
|
-
addons: z.ZodOptional<z.
|
|
901
|
-
z.
|
|
902
|
-
|
|
903
|
-
|
|
1204
|
+
addons: z.ZodOptional<z.ZodObject<{
|
|
1205
|
+
samlp: z.ZodOptional<z.ZodObject<{
|
|
1206
|
+
audience: z.ZodOptional<z.ZodString>;
|
|
1207
|
+
recipient: z.ZodOptional<z.ZodString>;
|
|
1208
|
+
createUpnClaim: z.ZodOptional<z.ZodBoolean>;
|
|
1209
|
+
mapUnknownClaimsAsIs: z.ZodOptional<z.ZodBoolean>;
|
|
1210
|
+
passthroughClaimsWithNoMapping: z.ZodOptional<z.ZodBoolean>;
|
|
1211
|
+
mapIdentities: z.ZodOptional<z.ZodBoolean>;
|
|
1212
|
+
signatureAlgorithm: z.ZodOptional<z.ZodString>;
|
|
1213
|
+
digestAlgorithm: z.ZodOptional<z.ZodString>;
|
|
1214
|
+
issuer: z.ZodOptional<z.ZodString>;
|
|
1215
|
+
destination: z.ZodOptional<z.ZodString>;
|
|
1216
|
+
lifetimeInSeconds: z.ZodOptional<z.ZodNumber>;
|
|
1217
|
+
signResponse: z.ZodOptional<z.ZodBoolean>;
|
|
1218
|
+
nameIdentifierFormat: z.ZodOptional<z.ZodString>;
|
|
1219
|
+
nameIdentifierProbes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1220
|
+
authnContextClassRef: z.ZodOptional<z.ZodString>;
|
|
1221
|
+
mappings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1222
|
+
}, "strip", z.ZodTypeAny, {
|
|
1223
|
+
audience?: string | undefined;
|
|
1224
|
+
recipient?: string | undefined;
|
|
1225
|
+
createUpnClaim?: boolean | undefined;
|
|
1226
|
+
mapUnknownClaimsAsIs?: boolean | undefined;
|
|
1227
|
+
passthroughClaimsWithNoMapping?: boolean | undefined;
|
|
1228
|
+
mapIdentities?: boolean | undefined;
|
|
1229
|
+
signatureAlgorithm?: string | undefined;
|
|
1230
|
+
digestAlgorithm?: string | undefined;
|
|
1231
|
+
issuer?: string | undefined;
|
|
1232
|
+
destination?: string | undefined;
|
|
1233
|
+
lifetimeInSeconds?: number | undefined;
|
|
1234
|
+
signResponse?: boolean | undefined;
|
|
1235
|
+
nameIdentifierFormat?: string | undefined;
|
|
1236
|
+
nameIdentifierProbes?: string[] | undefined;
|
|
1237
|
+
authnContextClassRef?: string | undefined;
|
|
1238
|
+
mappings?: Record<string, string> | undefined;
|
|
1239
|
+
}, {
|
|
1240
|
+
audience?: string | undefined;
|
|
1241
|
+
recipient?: string | undefined;
|
|
1242
|
+
createUpnClaim?: boolean | undefined;
|
|
1243
|
+
mapUnknownClaimsAsIs?: boolean | undefined;
|
|
1244
|
+
passthroughClaimsWithNoMapping?: boolean | undefined;
|
|
1245
|
+
mapIdentities?: boolean | undefined;
|
|
1246
|
+
signatureAlgorithm?: string | undefined;
|
|
1247
|
+
digestAlgorithm?: string | undefined;
|
|
1248
|
+
issuer?: string | undefined;
|
|
1249
|
+
destination?: string | undefined;
|
|
1250
|
+
lifetimeInSeconds?: number | undefined;
|
|
1251
|
+
signResponse?: boolean | undefined;
|
|
1252
|
+
nameIdentifierFormat?: string | undefined;
|
|
1253
|
+
nameIdentifierProbes?: string[] | undefined;
|
|
1254
|
+
authnContextClassRef?: string | undefined;
|
|
1255
|
+
mappings?: Record<string, string> | undefined;
|
|
1256
|
+
}>>;
|
|
1257
|
+
}, "strip", z.ZodTypeAny, {
|
|
1258
|
+
samlp?: {
|
|
1259
|
+
audience?: string | undefined;
|
|
1260
|
+
recipient?: string | undefined;
|
|
1261
|
+
createUpnClaim?: boolean | undefined;
|
|
1262
|
+
mapUnknownClaimsAsIs?: boolean | undefined;
|
|
1263
|
+
passthroughClaimsWithNoMapping?: boolean | undefined;
|
|
1264
|
+
mapIdentities?: boolean | undefined;
|
|
1265
|
+
signatureAlgorithm?: string | undefined;
|
|
1266
|
+
digestAlgorithm?: string | undefined;
|
|
1267
|
+
issuer?: string | undefined;
|
|
1268
|
+
destination?: string | undefined;
|
|
1269
|
+
lifetimeInSeconds?: number | undefined;
|
|
1270
|
+
signResponse?: boolean | undefined;
|
|
1271
|
+
nameIdentifierFormat?: string | undefined;
|
|
1272
|
+
nameIdentifierProbes?: string[] | undefined;
|
|
1273
|
+
authnContextClassRef?: string | undefined;
|
|
1274
|
+
mappings?: Record<string, string> | undefined;
|
|
1275
|
+
} | undefined;
|
|
1276
|
+
}, {
|
|
1277
|
+
samlp?: {
|
|
1278
|
+
audience?: string | undefined;
|
|
1279
|
+
recipient?: string | undefined;
|
|
1280
|
+
createUpnClaim?: boolean | undefined;
|
|
1281
|
+
mapUnknownClaimsAsIs?: boolean | undefined;
|
|
1282
|
+
passthroughClaimsWithNoMapping?: boolean | undefined;
|
|
1283
|
+
mapIdentities?: boolean | undefined;
|
|
1284
|
+
signatureAlgorithm?: string | undefined;
|
|
1285
|
+
digestAlgorithm?: string | undefined;
|
|
1286
|
+
issuer?: string | undefined;
|
|
1287
|
+
destination?: string | undefined;
|
|
1288
|
+
lifetimeInSeconds?: number | undefined;
|
|
1289
|
+
signResponse?: boolean | undefined;
|
|
1290
|
+
nameIdentifierFormat?: string | undefined;
|
|
1291
|
+
nameIdentifierProbes?: string[] | undefined;
|
|
1292
|
+
authnContextClassRef?: string | undefined;
|
|
1293
|
+
mappings?: Record<string, string> | undefined;
|
|
1294
|
+
} | undefined;
|
|
1295
|
+
}>>;
|
|
904
1296
|
email_validation: z.ZodDefault<z.ZodEnum<[
|
|
905
1297
|
"enabled",
|
|
906
1298
|
"disabled",
|
|
@@ -933,8 +1325,8 @@ declare const ClientSchema: z.ZodObject<{
|
|
|
933
1325
|
created_at: string;
|
|
934
1326
|
updated_at: string;
|
|
935
1327
|
name: string;
|
|
936
|
-
id: string;
|
|
937
1328
|
audience: string;
|
|
1329
|
+
id: string;
|
|
938
1330
|
sender_email: string;
|
|
939
1331
|
sender_name: string;
|
|
940
1332
|
support_url?: string | undefined;
|
|
@@ -961,7 +1353,26 @@ declare const ClientSchema: z.ZodObject<{
|
|
|
961
1353
|
token_exchange_basic_auth?: boolean | undefined;
|
|
962
1354
|
userinfo_endpoint?: string | undefined;
|
|
963
1355
|
}[];
|
|
964
|
-
addons?:
|
|
1356
|
+
addons?: {
|
|
1357
|
+
samlp?: {
|
|
1358
|
+
audience?: string | undefined;
|
|
1359
|
+
recipient?: string | undefined;
|
|
1360
|
+
createUpnClaim?: boolean | undefined;
|
|
1361
|
+
mapUnknownClaimsAsIs?: boolean | undefined;
|
|
1362
|
+
passthroughClaimsWithNoMapping?: boolean | undefined;
|
|
1363
|
+
mapIdentities?: boolean | undefined;
|
|
1364
|
+
signatureAlgorithm?: string | undefined;
|
|
1365
|
+
digestAlgorithm?: string | undefined;
|
|
1366
|
+
issuer?: string | undefined;
|
|
1367
|
+
destination?: string | undefined;
|
|
1368
|
+
lifetimeInSeconds?: number | undefined;
|
|
1369
|
+
signResponse?: boolean | undefined;
|
|
1370
|
+
nameIdentifierFormat?: string | undefined;
|
|
1371
|
+
nameIdentifierProbes?: string[] | undefined;
|
|
1372
|
+
authnContextClassRef?: string | undefined;
|
|
1373
|
+
mappings?: Record<string, string> | undefined;
|
|
1374
|
+
} | undefined;
|
|
1375
|
+
} | undefined;
|
|
965
1376
|
}, {
|
|
966
1377
|
created_at: string;
|
|
967
1378
|
updated_at: string;
|
|
@@ -982,8 +1393,8 @@ declare const ClientSchema: z.ZodObject<{
|
|
|
982
1393
|
created_at: string;
|
|
983
1394
|
updated_at: string;
|
|
984
1395
|
name: string;
|
|
985
|
-
id: string;
|
|
986
1396
|
audience: string;
|
|
1397
|
+
id: string;
|
|
987
1398
|
sender_email: string;
|
|
988
1399
|
sender_name: string;
|
|
989
1400
|
support_url?: string | undefined;
|
|
@@ -1010,7 +1421,26 @@ declare const ClientSchema: z.ZodObject<{
|
|
|
1010
1421
|
token_exchange_basic_auth?: boolean | undefined;
|
|
1011
1422
|
userinfo_endpoint?: string | undefined;
|
|
1012
1423
|
}[];
|
|
1013
|
-
addons?:
|
|
1424
|
+
addons?: {
|
|
1425
|
+
samlp?: {
|
|
1426
|
+
audience?: string | undefined;
|
|
1427
|
+
recipient?: string | undefined;
|
|
1428
|
+
createUpnClaim?: boolean | undefined;
|
|
1429
|
+
mapUnknownClaimsAsIs?: boolean | undefined;
|
|
1430
|
+
passthroughClaimsWithNoMapping?: boolean | undefined;
|
|
1431
|
+
mapIdentities?: boolean | undefined;
|
|
1432
|
+
signatureAlgorithm?: string | undefined;
|
|
1433
|
+
digestAlgorithm?: string | undefined;
|
|
1434
|
+
issuer?: string | undefined;
|
|
1435
|
+
destination?: string | undefined;
|
|
1436
|
+
lifetimeInSeconds?: number | undefined;
|
|
1437
|
+
signResponse?: boolean | undefined;
|
|
1438
|
+
nameIdentifierFormat?: string | undefined;
|
|
1439
|
+
nameIdentifierProbes?: string[] | undefined;
|
|
1440
|
+
authnContextClassRef?: string | undefined;
|
|
1441
|
+
mappings?: Record<string, string> | undefined;
|
|
1442
|
+
} | undefined;
|
|
1443
|
+
} | undefined;
|
|
1014
1444
|
email_validation?: "enabled" | "disabled" | "enforced" | undefined;
|
|
1015
1445
|
client_secret?: string | undefined;
|
|
1016
1446
|
disable_sign_ups?: boolean | undefined;
|
|
@@ -1490,10 +1920,10 @@ export declare const openIDConfigurationSchema: z.ZodObject<{
|
|
|
1490
1920
|
request_parameter_supported: z.ZodBoolean;
|
|
1491
1921
|
token_endpoint_auth_signing_alg_values_supported: z.ZodArray<z.ZodString, "many">;
|
|
1492
1922
|
}, "strip", z.ZodTypeAny, {
|
|
1923
|
+
issuer: string;
|
|
1493
1924
|
authorization_endpoint: string;
|
|
1494
1925
|
token_endpoint: string;
|
|
1495
1926
|
userinfo_endpoint: string;
|
|
1496
|
-
issuer: string;
|
|
1497
1927
|
device_authorization_endpoint: string;
|
|
1498
1928
|
mfa_challenge_endpoint: string;
|
|
1499
1929
|
jwks_uri: string;
|
|
@@ -1511,10 +1941,10 @@ export declare const openIDConfigurationSchema: z.ZodObject<{
|
|
|
1511
1941
|
request_parameter_supported: boolean;
|
|
1512
1942
|
token_endpoint_auth_signing_alg_values_supported: string[];
|
|
1513
1943
|
}, {
|
|
1944
|
+
issuer: string;
|
|
1514
1945
|
authorization_endpoint: string;
|
|
1515
1946
|
token_endpoint: string;
|
|
1516
1947
|
userinfo_endpoint: string;
|
|
1517
|
-
issuer: string;
|
|
1518
1948
|
device_authorization_endpoint: string;
|
|
1519
1949
|
mfa_challenge_endpoint: string;
|
|
1520
1950
|
jwks_uri: string;
|
|
@@ -1550,11 +1980,11 @@ export declare const loginInsertSchema: z.ZodObject<{
|
|
|
1550
1980
|
}, "strip", z.ZodTypeAny, {
|
|
1551
1981
|
client_id: string;
|
|
1552
1982
|
username?: string | undefined;
|
|
1983
|
+
audience?: string | undefined;
|
|
1553
1984
|
vendor_id?: string | undefined;
|
|
1554
1985
|
response_type?: AuthorizationResponseType | undefined;
|
|
1555
1986
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
1556
1987
|
redirect_uri?: string | undefined;
|
|
1557
|
-
audience?: string | undefined;
|
|
1558
1988
|
state?: string | undefined;
|
|
1559
1989
|
nonce?: string | undefined;
|
|
1560
1990
|
scope?: string | undefined;
|
|
@@ -1563,11 +1993,11 @@ export declare const loginInsertSchema: z.ZodObject<{
|
|
|
1563
1993
|
}, {
|
|
1564
1994
|
client_id: string;
|
|
1565
1995
|
username?: string | undefined;
|
|
1996
|
+
audience?: string | undefined;
|
|
1566
1997
|
vendor_id?: string | undefined;
|
|
1567
1998
|
response_type?: AuthorizationResponseType | undefined;
|
|
1568
1999
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
1569
2000
|
redirect_uri?: string | undefined;
|
|
1570
|
-
audience?: string | undefined;
|
|
1571
2001
|
state?: string | undefined;
|
|
1572
2002
|
nonce?: string | undefined;
|
|
1573
2003
|
scope?: string | undefined;
|
|
@@ -1582,11 +2012,11 @@ export declare const loginInsertSchema: z.ZodObject<{
|
|
|
1582
2012
|
authParams: {
|
|
1583
2013
|
client_id: string;
|
|
1584
2014
|
username?: string | undefined;
|
|
2015
|
+
audience?: string | undefined;
|
|
1585
2016
|
vendor_id?: string | undefined;
|
|
1586
2017
|
response_type?: AuthorizationResponseType | undefined;
|
|
1587
2018
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
1588
2019
|
redirect_uri?: string | undefined;
|
|
1589
|
-
audience?: string | undefined;
|
|
1590
2020
|
state?: string | undefined;
|
|
1591
2021
|
nonce?: string | undefined;
|
|
1592
2022
|
scope?: string | undefined;
|
|
@@ -1601,11 +2031,11 @@ export declare const loginInsertSchema: z.ZodObject<{
|
|
|
1601
2031
|
authParams: {
|
|
1602
2032
|
client_id: string;
|
|
1603
2033
|
username?: string | undefined;
|
|
2034
|
+
audience?: string | undefined;
|
|
1604
2035
|
vendor_id?: string | undefined;
|
|
1605
2036
|
response_type?: AuthorizationResponseType | undefined;
|
|
1606
2037
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
1607
2038
|
redirect_uri?: string | undefined;
|
|
1608
|
-
audience?: string | undefined;
|
|
1609
2039
|
state?: string | undefined;
|
|
1610
2040
|
nonce?: string | undefined;
|
|
1611
2041
|
scope?: string | undefined;
|
|
@@ -1638,11 +2068,11 @@ export declare const loginSchema: z.ZodObject<{
|
|
|
1638
2068
|
}, "strip", z.ZodTypeAny, {
|
|
1639
2069
|
client_id: string;
|
|
1640
2070
|
username?: string | undefined;
|
|
2071
|
+
audience?: string | undefined;
|
|
1641
2072
|
vendor_id?: string | undefined;
|
|
1642
2073
|
response_type?: AuthorizationResponseType | undefined;
|
|
1643
2074
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
1644
2075
|
redirect_uri?: string | undefined;
|
|
1645
|
-
audience?: string | undefined;
|
|
1646
2076
|
state?: string | undefined;
|
|
1647
2077
|
nonce?: string | undefined;
|
|
1648
2078
|
scope?: string | undefined;
|
|
@@ -1651,11 +2081,11 @@ export declare const loginSchema: z.ZodObject<{
|
|
|
1651
2081
|
}, {
|
|
1652
2082
|
client_id: string;
|
|
1653
2083
|
username?: string | undefined;
|
|
2084
|
+
audience?: string | undefined;
|
|
1654
2085
|
vendor_id?: string | undefined;
|
|
1655
2086
|
response_type?: AuthorizationResponseType | undefined;
|
|
1656
2087
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
1657
2088
|
redirect_uri?: string | undefined;
|
|
1658
|
-
audience?: string | undefined;
|
|
1659
2089
|
state?: string | undefined;
|
|
1660
2090
|
nonce?: string | undefined;
|
|
1661
2091
|
scope?: string | undefined;
|
|
@@ -1673,11 +2103,11 @@ export declare const loginSchema: z.ZodObject<{
|
|
|
1673
2103
|
authParams: {
|
|
1674
2104
|
client_id: string;
|
|
1675
2105
|
username?: string | undefined;
|
|
2106
|
+
audience?: string | undefined;
|
|
1676
2107
|
vendor_id?: string | undefined;
|
|
1677
2108
|
response_type?: AuthorizationResponseType | undefined;
|
|
1678
2109
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
1679
2110
|
redirect_uri?: string | undefined;
|
|
1680
|
-
audience?: string | undefined;
|
|
1681
2111
|
state?: string | undefined;
|
|
1682
2112
|
nonce?: string | undefined;
|
|
1683
2113
|
scope?: string | undefined;
|
|
@@ -1695,11 +2125,11 @@ export declare const loginSchema: z.ZodObject<{
|
|
|
1695
2125
|
authParams: {
|
|
1696
2126
|
client_id: string;
|
|
1697
2127
|
username?: string | undefined;
|
|
2128
|
+
audience?: string | undefined;
|
|
1698
2129
|
vendor_id?: string | undefined;
|
|
1699
2130
|
response_type?: AuthorizationResponseType | undefined;
|
|
1700
2131
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
1701
2132
|
redirect_uri?: string | undefined;
|
|
1702
|
-
audience?: string | undefined;
|
|
1703
2133
|
state?: string | undefined;
|
|
1704
2134
|
nonce?: string | undefined;
|
|
1705
2135
|
scope?: string | undefined;
|
|
@@ -1864,8 +2294,8 @@ export declare const logSchema: z.ZodObject<{
|
|
|
1864
2294
|
description?: string | undefined;
|
|
1865
2295
|
connection?: string | undefined;
|
|
1866
2296
|
user_id?: string | undefined;
|
|
1867
|
-
client_id?: string | undefined;
|
|
1868
2297
|
audience?: string | undefined;
|
|
2298
|
+
client_id?: string | undefined;
|
|
1869
2299
|
scope?: string[] | undefined;
|
|
1870
2300
|
log_id?: string | undefined;
|
|
1871
2301
|
_id?: string | undefined;
|
|
@@ -1892,8 +2322,8 @@ export declare const logSchema: z.ZodObject<{
|
|
|
1892
2322
|
description?: string | undefined;
|
|
1893
2323
|
connection?: string | undefined;
|
|
1894
2324
|
user_id?: string | undefined;
|
|
1895
|
-
client_id?: string | undefined;
|
|
1896
2325
|
audience?: string | undefined;
|
|
2326
|
+
client_id?: string | undefined;
|
|
1897
2327
|
scope?: string[] | undefined;
|
|
1898
2328
|
log_id?: string | undefined;
|
|
1899
2329
|
_id?: string | undefined;
|
|
@@ -2120,8 +2550,8 @@ export declare const tenantSchema: z.ZodObject<{
|
|
|
2120
2550
|
created_at: string;
|
|
2121
2551
|
updated_at: string;
|
|
2122
2552
|
name: string;
|
|
2123
|
-
id: string;
|
|
2124
2553
|
audience: string;
|
|
2554
|
+
id: string;
|
|
2125
2555
|
sender_email: string;
|
|
2126
2556
|
sender_name: string;
|
|
2127
2557
|
support_url?: string | undefined;
|
|
@@ -2133,8 +2563,8 @@ export declare const tenantSchema: z.ZodObject<{
|
|
|
2133
2563
|
created_at: string;
|
|
2134
2564
|
updated_at: string;
|
|
2135
2565
|
name: string;
|
|
2136
|
-
id: string;
|
|
2137
2566
|
audience: string;
|
|
2567
|
+
id: string;
|
|
2138
2568
|
sender_email: string;
|
|
2139
2569
|
sender_name: string;
|
|
2140
2570
|
support_url?: string | undefined;
|
|
@@ -3467,11 +3897,11 @@ export declare const universalLoginSessionInsertSchema: z.ZodObject<{
|
|
|
3467
3897
|
}, "strip", z.ZodTypeAny, {
|
|
3468
3898
|
client_id: string;
|
|
3469
3899
|
username?: string | undefined;
|
|
3900
|
+
audience?: string | undefined;
|
|
3470
3901
|
vendor_id?: string | undefined;
|
|
3471
3902
|
response_type?: AuthorizationResponseType | undefined;
|
|
3472
3903
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
3473
3904
|
redirect_uri?: string | undefined;
|
|
3474
|
-
audience?: string | undefined;
|
|
3475
3905
|
state?: string | undefined;
|
|
3476
3906
|
nonce?: string | undefined;
|
|
3477
3907
|
scope?: string | undefined;
|
|
@@ -3480,11 +3910,11 @@ export declare const universalLoginSessionInsertSchema: z.ZodObject<{
|
|
|
3480
3910
|
}, {
|
|
3481
3911
|
client_id: string;
|
|
3482
3912
|
username?: string | undefined;
|
|
3913
|
+
audience?: string | undefined;
|
|
3483
3914
|
vendor_id?: string | undefined;
|
|
3484
3915
|
response_type?: AuthorizationResponseType | undefined;
|
|
3485
3916
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
3486
3917
|
redirect_uri?: string | undefined;
|
|
3487
|
-
audience?: string | undefined;
|
|
3488
3918
|
state?: string | undefined;
|
|
3489
3919
|
nonce?: string | undefined;
|
|
3490
3920
|
scope?: string | undefined;
|
|
@@ -3497,11 +3927,11 @@ export declare const universalLoginSessionInsertSchema: z.ZodObject<{
|
|
|
3497
3927
|
authParams: {
|
|
3498
3928
|
client_id: string;
|
|
3499
3929
|
username?: string | undefined;
|
|
3930
|
+
audience?: string | undefined;
|
|
3500
3931
|
vendor_id?: string | undefined;
|
|
3501
3932
|
response_type?: AuthorizationResponseType | undefined;
|
|
3502
3933
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
3503
3934
|
redirect_uri?: string | undefined;
|
|
3504
|
-
audience?: string | undefined;
|
|
3505
3935
|
state?: string | undefined;
|
|
3506
3936
|
nonce?: string | undefined;
|
|
3507
3937
|
scope?: string | undefined;
|
|
@@ -3515,11 +3945,11 @@ export declare const universalLoginSessionInsertSchema: z.ZodObject<{
|
|
|
3515
3945
|
authParams: {
|
|
3516
3946
|
client_id: string;
|
|
3517
3947
|
username?: string | undefined;
|
|
3948
|
+
audience?: string | undefined;
|
|
3518
3949
|
vendor_id?: string | undefined;
|
|
3519
3950
|
response_type?: AuthorizationResponseType | undefined;
|
|
3520
3951
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
3521
3952
|
redirect_uri?: string | undefined;
|
|
3522
|
-
audience?: string | undefined;
|
|
3523
3953
|
state?: string | undefined;
|
|
3524
3954
|
nonce?: string | undefined;
|
|
3525
3955
|
scope?: string | undefined;
|
|
@@ -3551,11 +3981,11 @@ export declare const universalLoginSessionSchema: z.ZodObject<{
|
|
|
3551
3981
|
}, "strip", z.ZodTypeAny, {
|
|
3552
3982
|
client_id: string;
|
|
3553
3983
|
username?: string | undefined;
|
|
3984
|
+
audience?: string | undefined;
|
|
3554
3985
|
vendor_id?: string | undefined;
|
|
3555
3986
|
response_type?: AuthorizationResponseType | undefined;
|
|
3556
3987
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
3557
3988
|
redirect_uri?: string | undefined;
|
|
3558
|
-
audience?: string | undefined;
|
|
3559
3989
|
state?: string | undefined;
|
|
3560
3990
|
nonce?: string | undefined;
|
|
3561
3991
|
scope?: string | undefined;
|
|
@@ -3564,11 +3994,11 @@ export declare const universalLoginSessionSchema: z.ZodObject<{
|
|
|
3564
3994
|
}, {
|
|
3565
3995
|
client_id: string;
|
|
3566
3996
|
username?: string | undefined;
|
|
3997
|
+
audience?: string | undefined;
|
|
3567
3998
|
vendor_id?: string | undefined;
|
|
3568
3999
|
response_type?: AuthorizationResponseType | undefined;
|
|
3569
4000
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
3570
4001
|
redirect_uri?: string | undefined;
|
|
3571
|
-
audience?: string | undefined;
|
|
3572
4002
|
state?: string | undefined;
|
|
3573
4003
|
nonce?: string | undefined;
|
|
3574
4004
|
scope?: string | undefined;
|
|
@@ -3583,11 +4013,11 @@ export declare const universalLoginSessionSchema: z.ZodObject<{
|
|
|
3583
4013
|
authParams: {
|
|
3584
4014
|
client_id: string;
|
|
3585
4015
|
username?: string | undefined;
|
|
4016
|
+
audience?: string | undefined;
|
|
3586
4017
|
vendor_id?: string | undefined;
|
|
3587
4018
|
response_type?: AuthorizationResponseType | undefined;
|
|
3588
4019
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
3589
4020
|
redirect_uri?: string | undefined;
|
|
3590
|
-
audience?: string | undefined;
|
|
3591
4021
|
state?: string | undefined;
|
|
3592
4022
|
nonce?: string | undefined;
|
|
3593
4023
|
scope?: string | undefined;
|
|
@@ -3603,11 +4033,11 @@ export declare const universalLoginSessionSchema: z.ZodObject<{
|
|
|
3603
4033
|
authParams: {
|
|
3604
4034
|
client_id: string;
|
|
3605
4035
|
username?: string | undefined;
|
|
4036
|
+
audience?: string | undefined;
|
|
3606
4037
|
vendor_id?: string | undefined;
|
|
3607
4038
|
response_type?: AuthorizationResponseType | undefined;
|
|
3608
4039
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
3609
4040
|
redirect_uri?: string | undefined;
|
|
3610
|
-
audience?: string | undefined;
|
|
3611
4041
|
state?: string | undefined;
|
|
3612
4042
|
nonce?: string | undefined;
|
|
3613
4043
|
scope?: string | undefined;
|
|
@@ -3642,11 +4072,11 @@ export declare const otpInsertSchema: z.ZodObject<{
|
|
|
3642
4072
|
}, "strip", z.ZodTypeAny, {
|
|
3643
4073
|
client_id: string;
|
|
3644
4074
|
username?: string | undefined;
|
|
4075
|
+
audience?: string | undefined;
|
|
3645
4076
|
vendor_id?: string | undefined;
|
|
3646
4077
|
response_type?: AuthorizationResponseType | undefined;
|
|
3647
4078
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
3648
4079
|
redirect_uri?: string | undefined;
|
|
3649
|
-
audience?: string | undefined;
|
|
3650
4080
|
state?: string | undefined;
|
|
3651
4081
|
nonce?: string | undefined;
|
|
3652
4082
|
scope?: string | undefined;
|
|
@@ -3655,11 +4085,11 @@ export declare const otpInsertSchema: z.ZodObject<{
|
|
|
3655
4085
|
}, {
|
|
3656
4086
|
client_id: string;
|
|
3657
4087
|
username?: string | undefined;
|
|
4088
|
+
audience?: string | undefined;
|
|
3658
4089
|
vendor_id?: string | undefined;
|
|
3659
4090
|
response_type?: AuthorizationResponseType | undefined;
|
|
3660
4091
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
3661
4092
|
redirect_uri?: string | undefined;
|
|
3662
|
-
audience?: string | undefined;
|
|
3663
4093
|
state?: string | undefined;
|
|
3664
4094
|
nonce?: string | undefined;
|
|
3665
4095
|
scope?: string | undefined;
|
|
@@ -3677,11 +4107,11 @@ export declare const otpInsertSchema: z.ZodObject<{
|
|
|
3677
4107
|
authParams: {
|
|
3678
4108
|
client_id: string;
|
|
3679
4109
|
username?: string | undefined;
|
|
4110
|
+
audience?: string | undefined;
|
|
3680
4111
|
vendor_id?: string | undefined;
|
|
3681
4112
|
response_type?: AuthorizationResponseType | undefined;
|
|
3682
4113
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
3683
4114
|
redirect_uri?: string | undefined;
|
|
3684
|
-
audience?: string | undefined;
|
|
3685
4115
|
state?: string | undefined;
|
|
3686
4116
|
nonce?: string | undefined;
|
|
3687
4117
|
scope?: string | undefined;
|
|
@@ -3700,11 +4130,11 @@ export declare const otpInsertSchema: z.ZodObject<{
|
|
|
3700
4130
|
authParams: {
|
|
3701
4131
|
client_id: string;
|
|
3702
4132
|
username?: string | undefined;
|
|
4133
|
+
audience?: string | undefined;
|
|
3703
4134
|
vendor_id?: string | undefined;
|
|
3704
4135
|
response_type?: AuthorizationResponseType | undefined;
|
|
3705
4136
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
3706
4137
|
redirect_uri?: string | undefined;
|
|
3707
|
-
audience?: string | undefined;
|
|
3708
4138
|
state?: string | undefined;
|
|
3709
4139
|
nonce?: string | undefined;
|
|
3710
4140
|
scope?: string | undefined;
|
|
@@ -3742,11 +4172,11 @@ export declare const otpSchema: z.ZodObject<{
|
|
|
3742
4172
|
}, "strip", z.ZodTypeAny, {
|
|
3743
4173
|
client_id: string;
|
|
3744
4174
|
username?: string | undefined;
|
|
4175
|
+
audience?: string | undefined;
|
|
3745
4176
|
vendor_id?: string | undefined;
|
|
3746
4177
|
response_type?: AuthorizationResponseType | undefined;
|
|
3747
4178
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
3748
4179
|
redirect_uri?: string | undefined;
|
|
3749
|
-
audience?: string | undefined;
|
|
3750
4180
|
state?: string | undefined;
|
|
3751
4181
|
nonce?: string | undefined;
|
|
3752
4182
|
scope?: string | undefined;
|
|
@@ -3755,11 +4185,11 @@ export declare const otpSchema: z.ZodObject<{
|
|
|
3755
4185
|
}, {
|
|
3756
4186
|
client_id: string;
|
|
3757
4187
|
username?: string | undefined;
|
|
4188
|
+
audience?: string | undefined;
|
|
3758
4189
|
vendor_id?: string | undefined;
|
|
3759
4190
|
response_type?: AuthorizationResponseType | undefined;
|
|
3760
4191
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
3761
4192
|
redirect_uri?: string | undefined;
|
|
3762
|
-
audience?: string | undefined;
|
|
3763
4193
|
state?: string | undefined;
|
|
3764
4194
|
nonce?: string | undefined;
|
|
3765
4195
|
scope?: string | undefined;
|
|
@@ -3779,11 +4209,11 @@ export declare const otpSchema: z.ZodObject<{
|
|
|
3779
4209
|
authParams: {
|
|
3780
4210
|
client_id: string;
|
|
3781
4211
|
username?: string | undefined;
|
|
4212
|
+
audience?: string | undefined;
|
|
3782
4213
|
vendor_id?: string | undefined;
|
|
3783
4214
|
response_type?: AuthorizationResponseType | undefined;
|
|
3784
4215
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
3785
4216
|
redirect_uri?: string | undefined;
|
|
3786
|
-
audience?: string | undefined;
|
|
3787
4217
|
state?: string | undefined;
|
|
3788
4218
|
nonce?: string | undefined;
|
|
3789
4219
|
scope?: string | undefined;
|
|
@@ -3803,11 +4233,11 @@ export declare const otpSchema: z.ZodObject<{
|
|
|
3803
4233
|
authParams: {
|
|
3804
4234
|
client_id: string;
|
|
3805
4235
|
username?: string | undefined;
|
|
4236
|
+
audience?: string | undefined;
|
|
3806
4237
|
vendor_id?: string | undefined;
|
|
3807
4238
|
response_type?: AuthorizationResponseType | undefined;
|
|
3808
4239
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
3809
4240
|
redirect_uri?: string | undefined;
|
|
3810
|
-
audience?: string | undefined;
|
|
3811
4241
|
state?: string | undefined;
|
|
3812
4242
|
nonce?: string | undefined;
|
|
3813
4243
|
scope?: string | undefined;
|
|
@@ -3837,11 +4267,11 @@ export declare const authenticationCodeInsertSchema: z.ZodObject<{
|
|
|
3837
4267
|
}, "strip", z.ZodTypeAny, {
|
|
3838
4268
|
client_id: string;
|
|
3839
4269
|
username?: string | undefined;
|
|
4270
|
+
audience?: string | undefined;
|
|
3840
4271
|
vendor_id?: string | undefined;
|
|
3841
4272
|
response_type?: AuthorizationResponseType | undefined;
|
|
3842
4273
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
3843
4274
|
redirect_uri?: string | undefined;
|
|
3844
|
-
audience?: string | undefined;
|
|
3845
4275
|
state?: string | undefined;
|
|
3846
4276
|
nonce?: string | undefined;
|
|
3847
4277
|
scope?: string | undefined;
|
|
@@ -3850,11 +4280,11 @@ export declare const authenticationCodeInsertSchema: z.ZodObject<{
|
|
|
3850
4280
|
}, {
|
|
3851
4281
|
client_id: string;
|
|
3852
4282
|
username?: string | undefined;
|
|
4283
|
+
audience?: string | undefined;
|
|
3853
4284
|
vendor_id?: string | undefined;
|
|
3854
4285
|
response_type?: AuthorizationResponseType | undefined;
|
|
3855
4286
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
3856
4287
|
redirect_uri?: string | undefined;
|
|
3857
|
-
audience?: string | undefined;
|
|
3858
4288
|
state?: string | undefined;
|
|
3859
4289
|
nonce?: string | undefined;
|
|
3860
4290
|
scope?: string | undefined;
|
|
@@ -3874,11 +4304,11 @@ export declare const authenticationCodeInsertSchema: z.ZodObject<{
|
|
|
3874
4304
|
authParams: {
|
|
3875
4305
|
client_id: string;
|
|
3876
4306
|
username?: string | undefined;
|
|
4307
|
+
audience?: string | undefined;
|
|
3877
4308
|
vendor_id?: string | undefined;
|
|
3878
4309
|
response_type?: AuthorizationResponseType | undefined;
|
|
3879
4310
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
3880
4311
|
redirect_uri?: string | undefined;
|
|
3881
|
-
audience?: string | undefined;
|
|
3882
4312
|
state?: string | undefined;
|
|
3883
4313
|
nonce?: string | undefined;
|
|
3884
4314
|
scope?: string | undefined;
|
|
@@ -3894,11 +4324,11 @@ export declare const authenticationCodeInsertSchema: z.ZodObject<{
|
|
|
3894
4324
|
authParams: {
|
|
3895
4325
|
client_id: string;
|
|
3896
4326
|
username?: string | undefined;
|
|
4327
|
+
audience?: string | undefined;
|
|
3897
4328
|
vendor_id?: string | undefined;
|
|
3898
4329
|
response_type?: AuthorizationResponseType | undefined;
|
|
3899
4330
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
3900
4331
|
redirect_uri?: string | undefined;
|
|
3901
|
-
audience?: string | undefined;
|
|
3902
4332
|
state?: string | undefined;
|
|
3903
4333
|
nonce?: string | undefined;
|
|
3904
4334
|
scope?: string | undefined;
|
|
@@ -3926,11 +4356,11 @@ export declare const authenticationCodeSchema: z.ZodObject<{
|
|
|
3926
4356
|
}, "strip", z.ZodTypeAny, {
|
|
3927
4357
|
client_id: string;
|
|
3928
4358
|
username?: string | undefined;
|
|
4359
|
+
audience?: string | undefined;
|
|
3929
4360
|
vendor_id?: string | undefined;
|
|
3930
4361
|
response_type?: AuthorizationResponseType | undefined;
|
|
3931
4362
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
3932
4363
|
redirect_uri?: string | undefined;
|
|
3933
|
-
audience?: string | undefined;
|
|
3934
4364
|
state?: string | undefined;
|
|
3935
4365
|
nonce?: string | undefined;
|
|
3936
4366
|
scope?: string | undefined;
|
|
@@ -3939,11 +4369,11 @@ export declare const authenticationCodeSchema: z.ZodObject<{
|
|
|
3939
4369
|
}, {
|
|
3940
4370
|
client_id: string;
|
|
3941
4371
|
username?: string | undefined;
|
|
4372
|
+
audience?: string | undefined;
|
|
3942
4373
|
vendor_id?: string | undefined;
|
|
3943
4374
|
response_type?: AuthorizationResponseType | undefined;
|
|
3944
4375
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
3945
4376
|
redirect_uri?: string | undefined;
|
|
3946
|
-
audience?: string | undefined;
|
|
3947
4377
|
state?: string | undefined;
|
|
3948
4378
|
nonce?: string | undefined;
|
|
3949
4379
|
scope?: string | undefined;
|
|
@@ -3962,11 +4392,11 @@ export declare const authenticationCodeSchema: z.ZodObject<{
|
|
|
3962
4392
|
authParams: {
|
|
3963
4393
|
client_id: string;
|
|
3964
4394
|
username?: string | undefined;
|
|
4395
|
+
audience?: string | undefined;
|
|
3965
4396
|
vendor_id?: string | undefined;
|
|
3966
4397
|
response_type?: AuthorizationResponseType | undefined;
|
|
3967
4398
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
3968
4399
|
redirect_uri?: string | undefined;
|
|
3969
|
-
audience?: string | undefined;
|
|
3970
4400
|
state?: string | undefined;
|
|
3971
4401
|
nonce?: string | undefined;
|
|
3972
4402
|
scope?: string | undefined;
|
|
@@ -3982,11 +4412,11 @@ export declare const authenticationCodeSchema: z.ZodObject<{
|
|
|
3982
4412
|
authParams: {
|
|
3983
4413
|
client_id: string;
|
|
3984
4414
|
username?: string | undefined;
|
|
4415
|
+
audience?: string | undefined;
|
|
3985
4416
|
vendor_id?: string | undefined;
|
|
3986
4417
|
response_type?: AuthorizationResponseType | undefined;
|
|
3987
4418
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
3988
4419
|
redirect_uri?: string | undefined;
|
|
3989
|
-
audience?: string | undefined;
|
|
3990
4420
|
state?: string | undefined;
|
|
3991
4421
|
nonce?: string | undefined;
|
|
3992
4422
|
scope?: string | undefined;
|