@authhero/adapter-interfaces 0.132.0 → 0.134.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/adapter-interfaces.cjs +1 -1
- package/dist/adapter-interfaces.d.ts +850 -100
- package/dist/adapter-interfaces.mjs +407 -333
- package/package.json +1 -1
|
@@ -10454,6 +10454,47 @@ export declare const connectionOptionsSchema: z.ZodObject<{
|
|
|
10454
10454
|
twilio_sid: z.ZodOptional<z.ZodString>;
|
|
10455
10455
|
twilio_token: z.ZodOptional<z.ZodString>;
|
|
10456
10456
|
icon_url: z.ZodOptional<z.ZodString>;
|
|
10457
|
+
passwordPolicy: z.ZodOptional<z.ZodEnum<[
|
|
10458
|
+
"none",
|
|
10459
|
+
"low",
|
|
10460
|
+
"fair",
|
|
10461
|
+
"good",
|
|
10462
|
+
"excellent"
|
|
10463
|
+
]>>;
|
|
10464
|
+
password_complexity_options: z.ZodOptional<z.ZodObject<{
|
|
10465
|
+
min_length: z.ZodOptional<z.ZodNumber>;
|
|
10466
|
+
}, "strip", z.ZodTypeAny, {
|
|
10467
|
+
min_length?: number | undefined;
|
|
10468
|
+
}, {
|
|
10469
|
+
min_length?: number | undefined;
|
|
10470
|
+
}>>;
|
|
10471
|
+
password_history: z.ZodOptional<z.ZodObject<{
|
|
10472
|
+
enable: z.ZodOptional<z.ZodBoolean>;
|
|
10473
|
+
size: z.ZodOptional<z.ZodNumber>;
|
|
10474
|
+
}, "strip", z.ZodTypeAny, {
|
|
10475
|
+
enable?: boolean | undefined;
|
|
10476
|
+
size?: number | undefined;
|
|
10477
|
+
}, {
|
|
10478
|
+
enable?: boolean | undefined;
|
|
10479
|
+
size?: number | undefined;
|
|
10480
|
+
}>>;
|
|
10481
|
+
password_no_personal_info: z.ZodOptional<z.ZodObject<{
|
|
10482
|
+
enable: z.ZodOptional<z.ZodBoolean>;
|
|
10483
|
+
}, "strip", z.ZodTypeAny, {
|
|
10484
|
+
enable?: boolean | undefined;
|
|
10485
|
+
}, {
|
|
10486
|
+
enable?: boolean | undefined;
|
|
10487
|
+
}>>;
|
|
10488
|
+
password_dictionary: z.ZodOptional<z.ZodObject<{
|
|
10489
|
+
enable: z.ZodOptional<z.ZodBoolean>;
|
|
10490
|
+
dictionary: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
10491
|
+
}, "strip", z.ZodTypeAny, {
|
|
10492
|
+
enable?: boolean | undefined;
|
|
10493
|
+
dictionary?: string[] | undefined;
|
|
10494
|
+
}, {
|
|
10495
|
+
enable?: boolean | undefined;
|
|
10496
|
+
dictionary?: string[] | undefined;
|
|
10497
|
+
}>>;
|
|
10457
10498
|
}, "strip", z.ZodTypeAny, {
|
|
10458
10499
|
provider?: string | undefined;
|
|
10459
10500
|
client_id?: string | undefined;
|
|
@@ -10474,6 +10515,21 @@ export declare const connectionOptionsSchema: z.ZodObject<{
|
|
|
10474
10515
|
twilio_sid?: string | undefined;
|
|
10475
10516
|
twilio_token?: string | undefined;
|
|
10476
10517
|
icon_url?: string | undefined;
|
|
10518
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
10519
|
+
password_complexity_options?: {
|
|
10520
|
+
min_length?: number | undefined;
|
|
10521
|
+
} | undefined;
|
|
10522
|
+
password_history?: {
|
|
10523
|
+
enable?: boolean | undefined;
|
|
10524
|
+
size?: number | undefined;
|
|
10525
|
+
} | undefined;
|
|
10526
|
+
password_no_personal_info?: {
|
|
10527
|
+
enable?: boolean | undefined;
|
|
10528
|
+
} | undefined;
|
|
10529
|
+
password_dictionary?: {
|
|
10530
|
+
enable?: boolean | undefined;
|
|
10531
|
+
dictionary?: string[] | undefined;
|
|
10532
|
+
} | undefined;
|
|
10477
10533
|
}, {
|
|
10478
10534
|
provider?: string | undefined;
|
|
10479
10535
|
client_id?: string | undefined;
|
|
@@ -10494,6 +10550,21 @@ export declare const connectionOptionsSchema: z.ZodObject<{
|
|
|
10494
10550
|
twilio_sid?: string | undefined;
|
|
10495
10551
|
twilio_token?: string | undefined;
|
|
10496
10552
|
icon_url?: string | undefined;
|
|
10553
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
10554
|
+
password_complexity_options?: {
|
|
10555
|
+
min_length?: number | undefined;
|
|
10556
|
+
} | undefined;
|
|
10557
|
+
password_history?: {
|
|
10558
|
+
enable?: boolean | undefined;
|
|
10559
|
+
size?: number | undefined;
|
|
10560
|
+
} | undefined;
|
|
10561
|
+
password_no_personal_info?: {
|
|
10562
|
+
enable?: boolean | undefined;
|
|
10563
|
+
} | undefined;
|
|
10564
|
+
password_dictionary?: {
|
|
10565
|
+
enable?: boolean | undefined;
|
|
10566
|
+
dictionary?: string[] | undefined;
|
|
10567
|
+
} | undefined;
|
|
10497
10568
|
}>;
|
|
10498
10569
|
export declare const connectionInsertSchema: z.ZodObject<{
|
|
10499
10570
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -10520,6 +10591,47 @@ export declare const connectionInsertSchema: z.ZodObject<{
|
|
|
10520
10591
|
twilio_sid: z.ZodOptional<z.ZodString>;
|
|
10521
10592
|
twilio_token: z.ZodOptional<z.ZodString>;
|
|
10522
10593
|
icon_url: z.ZodOptional<z.ZodString>;
|
|
10594
|
+
passwordPolicy: z.ZodOptional<z.ZodEnum<[
|
|
10595
|
+
"none",
|
|
10596
|
+
"low",
|
|
10597
|
+
"fair",
|
|
10598
|
+
"good",
|
|
10599
|
+
"excellent"
|
|
10600
|
+
]>>;
|
|
10601
|
+
password_complexity_options: z.ZodOptional<z.ZodObject<{
|
|
10602
|
+
min_length: z.ZodOptional<z.ZodNumber>;
|
|
10603
|
+
}, "strip", z.ZodTypeAny, {
|
|
10604
|
+
min_length?: number | undefined;
|
|
10605
|
+
}, {
|
|
10606
|
+
min_length?: number | undefined;
|
|
10607
|
+
}>>;
|
|
10608
|
+
password_history: z.ZodOptional<z.ZodObject<{
|
|
10609
|
+
enable: z.ZodOptional<z.ZodBoolean>;
|
|
10610
|
+
size: z.ZodOptional<z.ZodNumber>;
|
|
10611
|
+
}, "strip", z.ZodTypeAny, {
|
|
10612
|
+
enable?: boolean | undefined;
|
|
10613
|
+
size?: number | undefined;
|
|
10614
|
+
}, {
|
|
10615
|
+
enable?: boolean | undefined;
|
|
10616
|
+
size?: number | undefined;
|
|
10617
|
+
}>>;
|
|
10618
|
+
password_no_personal_info: z.ZodOptional<z.ZodObject<{
|
|
10619
|
+
enable: z.ZodOptional<z.ZodBoolean>;
|
|
10620
|
+
}, "strip", z.ZodTypeAny, {
|
|
10621
|
+
enable?: boolean | undefined;
|
|
10622
|
+
}, {
|
|
10623
|
+
enable?: boolean | undefined;
|
|
10624
|
+
}>>;
|
|
10625
|
+
password_dictionary: z.ZodOptional<z.ZodObject<{
|
|
10626
|
+
enable: z.ZodOptional<z.ZodBoolean>;
|
|
10627
|
+
dictionary: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
10628
|
+
}, "strip", z.ZodTypeAny, {
|
|
10629
|
+
enable?: boolean | undefined;
|
|
10630
|
+
dictionary?: string[] | undefined;
|
|
10631
|
+
}, {
|
|
10632
|
+
enable?: boolean | undefined;
|
|
10633
|
+
dictionary?: string[] | undefined;
|
|
10634
|
+
}>>;
|
|
10523
10635
|
}, "strip", z.ZodTypeAny, {
|
|
10524
10636
|
provider?: string | undefined;
|
|
10525
10637
|
client_id?: string | undefined;
|
|
@@ -10540,6 +10652,21 @@ export declare const connectionInsertSchema: z.ZodObject<{
|
|
|
10540
10652
|
twilio_sid?: string | undefined;
|
|
10541
10653
|
twilio_token?: string | undefined;
|
|
10542
10654
|
icon_url?: string | undefined;
|
|
10655
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
10656
|
+
password_complexity_options?: {
|
|
10657
|
+
min_length?: number | undefined;
|
|
10658
|
+
} | undefined;
|
|
10659
|
+
password_history?: {
|
|
10660
|
+
enable?: boolean | undefined;
|
|
10661
|
+
size?: number | undefined;
|
|
10662
|
+
} | undefined;
|
|
10663
|
+
password_no_personal_info?: {
|
|
10664
|
+
enable?: boolean | undefined;
|
|
10665
|
+
} | undefined;
|
|
10666
|
+
password_dictionary?: {
|
|
10667
|
+
enable?: boolean | undefined;
|
|
10668
|
+
dictionary?: string[] | undefined;
|
|
10669
|
+
} | undefined;
|
|
10543
10670
|
}, {
|
|
10544
10671
|
provider?: string | undefined;
|
|
10545
10672
|
client_id?: string | undefined;
|
|
@@ -10560,6 +10687,21 @@ export declare const connectionInsertSchema: z.ZodObject<{
|
|
|
10560
10687
|
twilio_sid?: string | undefined;
|
|
10561
10688
|
twilio_token?: string | undefined;
|
|
10562
10689
|
icon_url?: string | undefined;
|
|
10690
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
10691
|
+
password_complexity_options?: {
|
|
10692
|
+
min_length?: number | undefined;
|
|
10693
|
+
} | undefined;
|
|
10694
|
+
password_history?: {
|
|
10695
|
+
enable?: boolean | undefined;
|
|
10696
|
+
size?: number | undefined;
|
|
10697
|
+
} | undefined;
|
|
10698
|
+
password_no_personal_info?: {
|
|
10699
|
+
enable?: boolean | undefined;
|
|
10700
|
+
} | undefined;
|
|
10701
|
+
password_dictionary?: {
|
|
10702
|
+
enable?: boolean | undefined;
|
|
10703
|
+
dictionary?: string[] | undefined;
|
|
10704
|
+
} | undefined;
|
|
10563
10705
|
}>>;
|
|
10564
10706
|
enabled_clients: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
|
|
10565
10707
|
response_type: z.ZodOptional<z.ZodType<AuthorizationResponseType, z.ZodTypeDef, AuthorizationResponseType>>;
|
|
@@ -10589,6 +10731,21 @@ export declare const connectionInsertSchema: z.ZodObject<{
|
|
|
10589
10731
|
twilio_sid?: string | undefined;
|
|
10590
10732
|
twilio_token?: string | undefined;
|
|
10591
10733
|
icon_url?: string | undefined;
|
|
10734
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
10735
|
+
password_complexity_options?: {
|
|
10736
|
+
min_length?: number | undefined;
|
|
10737
|
+
} | undefined;
|
|
10738
|
+
password_history?: {
|
|
10739
|
+
enable?: boolean | undefined;
|
|
10740
|
+
size?: number | undefined;
|
|
10741
|
+
} | undefined;
|
|
10742
|
+
password_no_personal_info?: {
|
|
10743
|
+
enable?: boolean | undefined;
|
|
10744
|
+
} | undefined;
|
|
10745
|
+
password_dictionary?: {
|
|
10746
|
+
enable?: boolean | undefined;
|
|
10747
|
+
dictionary?: string[] | undefined;
|
|
10748
|
+
} | undefined;
|
|
10592
10749
|
};
|
|
10593
10750
|
name: string;
|
|
10594
10751
|
strategy: string;
|
|
@@ -10624,6 +10781,21 @@ export declare const connectionInsertSchema: z.ZodObject<{
|
|
|
10624
10781
|
twilio_sid?: string | undefined;
|
|
10625
10782
|
twilio_token?: string | undefined;
|
|
10626
10783
|
icon_url?: string | undefined;
|
|
10784
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
10785
|
+
password_complexity_options?: {
|
|
10786
|
+
min_length?: number | undefined;
|
|
10787
|
+
} | undefined;
|
|
10788
|
+
password_history?: {
|
|
10789
|
+
enable?: boolean | undefined;
|
|
10790
|
+
size?: number | undefined;
|
|
10791
|
+
} | undefined;
|
|
10792
|
+
password_no_personal_info?: {
|
|
10793
|
+
enable?: boolean | undefined;
|
|
10794
|
+
} | undefined;
|
|
10795
|
+
password_dictionary?: {
|
|
10796
|
+
enable?: boolean | undefined;
|
|
10797
|
+
dictionary?: string[] | undefined;
|
|
10798
|
+
} | undefined;
|
|
10627
10799
|
} | undefined;
|
|
10628
10800
|
id?: string | undefined;
|
|
10629
10801
|
is_system?: boolean | undefined;
|
|
@@ -10664,6 +10836,47 @@ export declare const connectionSchema: z.ZodObject<{
|
|
|
10664
10836
|
twilio_sid: z.ZodOptional<z.ZodString>;
|
|
10665
10837
|
twilio_token: z.ZodOptional<z.ZodString>;
|
|
10666
10838
|
icon_url: z.ZodOptional<z.ZodString>;
|
|
10839
|
+
passwordPolicy: z.ZodOptional<z.ZodEnum<[
|
|
10840
|
+
"none",
|
|
10841
|
+
"low",
|
|
10842
|
+
"fair",
|
|
10843
|
+
"good",
|
|
10844
|
+
"excellent"
|
|
10845
|
+
]>>;
|
|
10846
|
+
password_complexity_options: z.ZodOptional<z.ZodObject<{
|
|
10847
|
+
min_length: z.ZodOptional<z.ZodNumber>;
|
|
10848
|
+
}, "strip", z.ZodTypeAny, {
|
|
10849
|
+
min_length?: number | undefined;
|
|
10850
|
+
}, {
|
|
10851
|
+
min_length?: number | undefined;
|
|
10852
|
+
}>>;
|
|
10853
|
+
password_history: z.ZodOptional<z.ZodObject<{
|
|
10854
|
+
enable: z.ZodOptional<z.ZodBoolean>;
|
|
10855
|
+
size: z.ZodOptional<z.ZodNumber>;
|
|
10856
|
+
}, "strip", z.ZodTypeAny, {
|
|
10857
|
+
enable?: boolean | undefined;
|
|
10858
|
+
size?: number | undefined;
|
|
10859
|
+
}, {
|
|
10860
|
+
enable?: boolean | undefined;
|
|
10861
|
+
size?: number | undefined;
|
|
10862
|
+
}>>;
|
|
10863
|
+
password_no_personal_info: z.ZodOptional<z.ZodObject<{
|
|
10864
|
+
enable: z.ZodOptional<z.ZodBoolean>;
|
|
10865
|
+
}, "strip", z.ZodTypeAny, {
|
|
10866
|
+
enable?: boolean | undefined;
|
|
10867
|
+
}, {
|
|
10868
|
+
enable?: boolean | undefined;
|
|
10869
|
+
}>>;
|
|
10870
|
+
password_dictionary: z.ZodOptional<z.ZodObject<{
|
|
10871
|
+
enable: z.ZodOptional<z.ZodBoolean>;
|
|
10872
|
+
dictionary: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
10873
|
+
}, "strip", z.ZodTypeAny, {
|
|
10874
|
+
enable?: boolean | undefined;
|
|
10875
|
+
dictionary?: string[] | undefined;
|
|
10876
|
+
}, {
|
|
10877
|
+
enable?: boolean | undefined;
|
|
10878
|
+
dictionary?: string[] | undefined;
|
|
10879
|
+
}>>;
|
|
10667
10880
|
}, "strip", z.ZodTypeAny, {
|
|
10668
10881
|
provider?: string | undefined;
|
|
10669
10882
|
client_id?: string | undefined;
|
|
@@ -10684,6 +10897,21 @@ export declare const connectionSchema: z.ZodObject<{
|
|
|
10684
10897
|
twilio_sid?: string | undefined;
|
|
10685
10898
|
twilio_token?: string | undefined;
|
|
10686
10899
|
icon_url?: string | undefined;
|
|
10900
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
10901
|
+
password_complexity_options?: {
|
|
10902
|
+
min_length?: number | undefined;
|
|
10903
|
+
} | undefined;
|
|
10904
|
+
password_history?: {
|
|
10905
|
+
enable?: boolean | undefined;
|
|
10906
|
+
size?: number | undefined;
|
|
10907
|
+
} | undefined;
|
|
10908
|
+
password_no_personal_info?: {
|
|
10909
|
+
enable?: boolean | undefined;
|
|
10910
|
+
} | undefined;
|
|
10911
|
+
password_dictionary?: {
|
|
10912
|
+
enable?: boolean | undefined;
|
|
10913
|
+
dictionary?: string[] | undefined;
|
|
10914
|
+
} | undefined;
|
|
10687
10915
|
}, {
|
|
10688
10916
|
provider?: string | undefined;
|
|
10689
10917
|
client_id?: string | undefined;
|
|
@@ -10704,6 +10932,21 @@ export declare const connectionSchema: z.ZodObject<{
|
|
|
10704
10932
|
twilio_sid?: string | undefined;
|
|
10705
10933
|
twilio_token?: string | undefined;
|
|
10706
10934
|
icon_url?: string | undefined;
|
|
10935
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
10936
|
+
password_complexity_options?: {
|
|
10937
|
+
min_length?: number | undefined;
|
|
10938
|
+
} | undefined;
|
|
10939
|
+
password_history?: {
|
|
10940
|
+
enable?: boolean | undefined;
|
|
10941
|
+
size?: number | undefined;
|
|
10942
|
+
} | undefined;
|
|
10943
|
+
password_no_personal_info?: {
|
|
10944
|
+
enable?: boolean | undefined;
|
|
10945
|
+
} | undefined;
|
|
10946
|
+
password_dictionary?: {
|
|
10947
|
+
enable?: boolean | undefined;
|
|
10948
|
+
dictionary?: string[] | undefined;
|
|
10949
|
+
} | undefined;
|
|
10707
10950
|
}>>;
|
|
10708
10951
|
enabled_clients: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
|
|
10709
10952
|
response_type: z.ZodOptional<z.ZodType<AuthorizationResponseType, z.ZodTypeDef, AuthorizationResponseType>>;
|
|
@@ -10735,6 +10978,21 @@ export declare const connectionSchema: z.ZodObject<{
|
|
|
10735
10978
|
twilio_sid?: string | undefined;
|
|
10736
10979
|
twilio_token?: string | undefined;
|
|
10737
10980
|
icon_url?: string | undefined;
|
|
10981
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
10982
|
+
password_complexity_options?: {
|
|
10983
|
+
min_length?: number | undefined;
|
|
10984
|
+
} | undefined;
|
|
10985
|
+
password_history?: {
|
|
10986
|
+
enable?: boolean | undefined;
|
|
10987
|
+
size?: number | undefined;
|
|
10988
|
+
} | undefined;
|
|
10989
|
+
password_no_personal_info?: {
|
|
10990
|
+
enable?: boolean | undefined;
|
|
10991
|
+
} | undefined;
|
|
10992
|
+
password_dictionary?: {
|
|
10993
|
+
enable?: boolean | undefined;
|
|
10994
|
+
dictionary?: string[] | undefined;
|
|
10995
|
+
} | undefined;
|
|
10738
10996
|
};
|
|
10739
10997
|
name: string;
|
|
10740
10998
|
strategy: string;
|
|
@@ -10772,6 +11030,21 @@ export declare const connectionSchema: z.ZodObject<{
|
|
|
10772
11030
|
twilio_sid?: string | undefined;
|
|
10773
11031
|
twilio_token?: string | undefined;
|
|
10774
11032
|
icon_url?: string | undefined;
|
|
11033
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
11034
|
+
password_complexity_options?: {
|
|
11035
|
+
min_length?: number | undefined;
|
|
11036
|
+
} | undefined;
|
|
11037
|
+
password_history?: {
|
|
11038
|
+
enable?: boolean | undefined;
|
|
11039
|
+
size?: number | undefined;
|
|
11040
|
+
} | undefined;
|
|
11041
|
+
password_no_personal_info?: {
|
|
11042
|
+
enable?: boolean | undefined;
|
|
11043
|
+
} | undefined;
|
|
11044
|
+
password_dictionary?: {
|
|
11045
|
+
enable?: boolean | undefined;
|
|
11046
|
+
dictionary?: string[] | undefined;
|
|
11047
|
+
} | undefined;
|
|
10775
11048
|
} | undefined;
|
|
10776
11049
|
id?: string | undefined;
|
|
10777
11050
|
is_system?: boolean | undefined;
|
|
@@ -33838,6 +34111,117 @@ export declare const tenantInsertSchema: z.ZodObject<{
|
|
|
33838
34111
|
}>>;
|
|
33839
34112
|
pushed_authorization_requests_supported: z.ZodOptional<z.ZodBoolean>;
|
|
33840
34113
|
authorization_response_iss_parameter_supported: z.ZodOptional<z.ZodBoolean>;
|
|
34114
|
+
mfa: z.ZodOptional<z.ZodObject<{
|
|
34115
|
+
factors: z.ZodOptional<z.ZodObject<{
|
|
34116
|
+
sms: z.ZodDefault<z.ZodBoolean>;
|
|
34117
|
+
otp: z.ZodDefault<z.ZodBoolean>;
|
|
34118
|
+
email: z.ZodDefault<z.ZodBoolean>;
|
|
34119
|
+
push_notification: z.ZodDefault<z.ZodBoolean>;
|
|
34120
|
+
webauthn_roaming: z.ZodDefault<z.ZodBoolean>;
|
|
34121
|
+
webauthn_platform: z.ZodDefault<z.ZodBoolean>;
|
|
34122
|
+
recovery_code: z.ZodDefault<z.ZodBoolean>;
|
|
34123
|
+
duo: z.ZodDefault<z.ZodBoolean>;
|
|
34124
|
+
}, "strip", z.ZodTypeAny, {
|
|
34125
|
+
email: boolean;
|
|
34126
|
+
otp: boolean;
|
|
34127
|
+
sms: boolean;
|
|
34128
|
+
push_notification: boolean;
|
|
34129
|
+
webauthn_roaming: boolean;
|
|
34130
|
+
webauthn_platform: boolean;
|
|
34131
|
+
recovery_code: boolean;
|
|
34132
|
+
duo: boolean;
|
|
34133
|
+
}, {
|
|
34134
|
+
email?: boolean | undefined;
|
|
34135
|
+
otp?: boolean | undefined;
|
|
34136
|
+
sms?: boolean | undefined;
|
|
34137
|
+
push_notification?: boolean | undefined;
|
|
34138
|
+
webauthn_roaming?: boolean | undefined;
|
|
34139
|
+
webauthn_platform?: boolean | undefined;
|
|
34140
|
+
recovery_code?: boolean | undefined;
|
|
34141
|
+
duo?: boolean | undefined;
|
|
34142
|
+
}>>;
|
|
34143
|
+
sms_provider: z.ZodOptional<z.ZodObject<{
|
|
34144
|
+
provider: z.ZodOptional<z.ZodEnum<[
|
|
34145
|
+
"twilio",
|
|
34146
|
+
"vonage",
|
|
34147
|
+
"aws_sns",
|
|
34148
|
+
"phone_message_hook"
|
|
34149
|
+
]>>;
|
|
34150
|
+
}, "strip", z.ZodTypeAny, {
|
|
34151
|
+
provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
|
|
34152
|
+
}, {
|
|
34153
|
+
provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
|
|
34154
|
+
}>>;
|
|
34155
|
+
twilio: z.ZodOptional<z.ZodObject<{
|
|
34156
|
+
sid: z.ZodOptional<z.ZodString>;
|
|
34157
|
+
auth_token: z.ZodOptional<z.ZodString>;
|
|
34158
|
+
from: z.ZodOptional<z.ZodString>;
|
|
34159
|
+
messaging_service_sid: z.ZodOptional<z.ZodString>;
|
|
34160
|
+
}, "strip", z.ZodTypeAny, {
|
|
34161
|
+
from?: string | undefined;
|
|
34162
|
+
sid?: string | undefined;
|
|
34163
|
+
auth_token?: string | undefined;
|
|
34164
|
+
messaging_service_sid?: string | undefined;
|
|
34165
|
+
}, {
|
|
34166
|
+
from?: string | undefined;
|
|
34167
|
+
sid?: string | undefined;
|
|
34168
|
+
auth_token?: string | undefined;
|
|
34169
|
+
messaging_service_sid?: string | undefined;
|
|
34170
|
+
}>>;
|
|
34171
|
+
phone_message: z.ZodOptional<z.ZodObject<{
|
|
34172
|
+
message: z.ZodOptional<z.ZodString>;
|
|
34173
|
+
}, "strip", z.ZodTypeAny, {
|
|
34174
|
+
message?: string | undefined;
|
|
34175
|
+
}, {
|
|
34176
|
+
message?: string | undefined;
|
|
34177
|
+
}>>;
|
|
34178
|
+
}, "strip", z.ZodTypeAny, {
|
|
34179
|
+
factors?: {
|
|
34180
|
+
email: boolean;
|
|
34181
|
+
otp: boolean;
|
|
34182
|
+
sms: boolean;
|
|
34183
|
+
push_notification: boolean;
|
|
34184
|
+
webauthn_roaming: boolean;
|
|
34185
|
+
webauthn_platform: boolean;
|
|
34186
|
+
recovery_code: boolean;
|
|
34187
|
+
duo: boolean;
|
|
34188
|
+
} | undefined;
|
|
34189
|
+
twilio?: {
|
|
34190
|
+
from?: string | undefined;
|
|
34191
|
+
sid?: string | undefined;
|
|
34192
|
+
auth_token?: string | undefined;
|
|
34193
|
+
messaging_service_sid?: string | undefined;
|
|
34194
|
+
} | undefined;
|
|
34195
|
+
sms_provider?: {
|
|
34196
|
+
provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
|
|
34197
|
+
} | undefined;
|
|
34198
|
+
phone_message?: {
|
|
34199
|
+
message?: string | undefined;
|
|
34200
|
+
} | undefined;
|
|
34201
|
+
}, {
|
|
34202
|
+
factors?: {
|
|
34203
|
+
email?: boolean | undefined;
|
|
34204
|
+
otp?: boolean | undefined;
|
|
34205
|
+
sms?: boolean | undefined;
|
|
34206
|
+
push_notification?: boolean | undefined;
|
|
34207
|
+
webauthn_roaming?: boolean | undefined;
|
|
34208
|
+
webauthn_platform?: boolean | undefined;
|
|
34209
|
+
recovery_code?: boolean | undefined;
|
|
34210
|
+
duo?: boolean | undefined;
|
|
34211
|
+
} | undefined;
|
|
34212
|
+
twilio?: {
|
|
34213
|
+
from?: string | undefined;
|
|
34214
|
+
sid?: string | undefined;
|
|
34215
|
+
auth_token?: string | undefined;
|
|
34216
|
+
messaging_service_sid?: string | undefined;
|
|
34217
|
+
} | undefined;
|
|
34218
|
+
sms_provider?: {
|
|
34219
|
+
provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
|
|
34220
|
+
} | undefined;
|
|
34221
|
+
phone_message?: {
|
|
34222
|
+
message?: string | undefined;
|
|
34223
|
+
} | undefined;
|
|
34224
|
+
}>>;
|
|
33841
34225
|
}, "strip", z.ZodTypeAny, {
|
|
33842
34226
|
audience: string;
|
|
33843
34227
|
friendly_name: string;
|
|
@@ -33937,6 +34321,30 @@ export declare const tenantInsertSchema: z.ZodObject<{
|
|
|
33937
34321
|
} | undefined;
|
|
33938
34322
|
pushed_authorization_requests_supported?: boolean | undefined;
|
|
33939
34323
|
authorization_response_iss_parameter_supported?: boolean | undefined;
|
|
34324
|
+
mfa?: {
|
|
34325
|
+
factors?: {
|
|
34326
|
+
email: boolean;
|
|
34327
|
+
otp: boolean;
|
|
34328
|
+
sms: boolean;
|
|
34329
|
+
push_notification: boolean;
|
|
34330
|
+
webauthn_roaming: boolean;
|
|
34331
|
+
webauthn_platform: boolean;
|
|
34332
|
+
recovery_code: boolean;
|
|
34333
|
+
duo: boolean;
|
|
34334
|
+
} | undefined;
|
|
34335
|
+
twilio?: {
|
|
34336
|
+
from?: string | undefined;
|
|
34337
|
+
sid?: string | undefined;
|
|
34338
|
+
auth_token?: string | undefined;
|
|
34339
|
+
messaging_service_sid?: string | undefined;
|
|
34340
|
+
} | undefined;
|
|
34341
|
+
sms_provider?: {
|
|
34342
|
+
provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
|
|
34343
|
+
} | undefined;
|
|
34344
|
+
phone_message?: {
|
|
34345
|
+
message?: string | undefined;
|
|
34346
|
+
} | undefined;
|
|
34347
|
+
} | undefined;
|
|
33940
34348
|
}, {
|
|
33941
34349
|
audience: string;
|
|
33942
34350
|
friendly_name: string;
|
|
@@ -34036,6 +34444,30 @@ export declare const tenantInsertSchema: z.ZodObject<{
|
|
|
34036
34444
|
} | undefined;
|
|
34037
34445
|
pushed_authorization_requests_supported?: boolean | undefined;
|
|
34038
34446
|
authorization_response_iss_parameter_supported?: boolean | undefined;
|
|
34447
|
+
mfa?: {
|
|
34448
|
+
factors?: {
|
|
34449
|
+
email?: boolean | undefined;
|
|
34450
|
+
otp?: boolean | undefined;
|
|
34451
|
+
sms?: boolean | undefined;
|
|
34452
|
+
push_notification?: boolean | undefined;
|
|
34453
|
+
webauthn_roaming?: boolean | undefined;
|
|
34454
|
+
webauthn_platform?: boolean | undefined;
|
|
34455
|
+
recovery_code?: boolean | undefined;
|
|
34456
|
+
duo?: boolean | undefined;
|
|
34457
|
+
} | undefined;
|
|
34458
|
+
twilio?: {
|
|
34459
|
+
from?: string | undefined;
|
|
34460
|
+
sid?: string | undefined;
|
|
34461
|
+
auth_token?: string | undefined;
|
|
34462
|
+
messaging_service_sid?: string | undefined;
|
|
34463
|
+
} | undefined;
|
|
34464
|
+
sms_provider?: {
|
|
34465
|
+
provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
|
|
34466
|
+
} | undefined;
|
|
34467
|
+
phone_message?: {
|
|
34468
|
+
message?: string | undefined;
|
|
34469
|
+
} | undefined;
|
|
34470
|
+
} | undefined;
|
|
34039
34471
|
}>;
|
|
34040
34472
|
export declare const tenantSchema: z.ZodObject<{
|
|
34041
34473
|
id: z.ZodString;
|
|
@@ -34274,6 +34706,117 @@ export declare const tenantSchema: z.ZodObject<{
|
|
|
34274
34706
|
}>>;
|
|
34275
34707
|
pushed_authorization_requests_supported: z.ZodOptional<z.ZodBoolean>;
|
|
34276
34708
|
authorization_response_iss_parameter_supported: z.ZodOptional<z.ZodBoolean>;
|
|
34709
|
+
mfa: z.ZodOptional<z.ZodObject<{
|
|
34710
|
+
factors: z.ZodOptional<z.ZodObject<{
|
|
34711
|
+
sms: z.ZodDefault<z.ZodBoolean>;
|
|
34712
|
+
otp: z.ZodDefault<z.ZodBoolean>;
|
|
34713
|
+
email: z.ZodDefault<z.ZodBoolean>;
|
|
34714
|
+
push_notification: z.ZodDefault<z.ZodBoolean>;
|
|
34715
|
+
webauthn_roaming: z.ZodDefault<z.ZodBoolean>;
|
|
34716
|
+
webauthn_platform: z.ZodDefault<z.ZodBoolean>;
|
|
34717
|
+
recovery_code: z.ZodDefault<z.ZodBoolean>;
|
|
34718
|
+
duo: z.ZodDefault<z.ZodBoolean>;
|
|
34719
|
+
}, "strip", z.ZodTypeAny, {
|
|
34720
|
+
email: boolean;
|
|
34721
|
+
otp: boolean;
|
|
34722
|
+
sms: boolean;
|
|
34723
|
+
push_notification: boolean;
|
|
34724
|
+
webauthn_roaming: boolean;
|
|
34725
|
+
webauthn_platform: boolean;
|
|
34726
|
+
recovery_code: boolean;
|
|
34727
|
+
duo: boolean;
|
|
34728
|
+
}, {
|
|
34729
|
+
email?: boolean | undefined;
|
|
34730
|
+
otp?: boolean | undefined;
|
|
34731
|
+
sms?: boolean | undefined;
|
|
34732
|
+
push_notification?: boolean | undefined;
|
|
34733
|
+
webauthn_roaming?: boolean | undefined;
|
|
34734
|
+
webauthn_platform?: boolean | undefined;
|
|
34735
|
+
recovery_code?: boolean | undefined;
|
|
34736
|
+
duo?: boolean | undefined;
|
|
34737
|
+
}>>;
|
|
34738
|
+
sms_provider: z.ZodOptional<z.ZodObject<{
|
|
34739
|
+
provider: z.ZodOptional<z.ZodEnum<[
|
|
34740
|
+
"twilio",
|
|
34741
|
+
"vonage",
|
|
34742
|
+
"aws_sns",
|
|
34743
|
+
"phone_message_hook"
|
|
34744
|
+
]>>;
|
|
34745
|
+
}, "strip", z.ZodTypeAny, {
|
|
34746
|
+
provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
|
|
34747
|
+
}, {
|
|
34748
|
+
provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
|
|
34749
|
+
}>>;
|
|
34750
|
+
twilio: z.ZodOptional<z.ZodObject<{
|
|
34751
|
+
sid: z.ZodOptional<z.ZodString>;
|
|
34752
|
+
auth_token: z.ZodOptional<z.ZodString>;
|
|
34753
|
+
from: z.ZodOptional<z.ZodString>;
|
|
34754
|
+
messaging_service_sid: z.ZodOptional<z.ZodString>;
|
|
34755
|
+
}, "strip", z.ZodTypeAny, {
|
|
34756
|
+
from?: string | undefined;
|
|
34757
|
+
sid?: string | undefined;
|
|
34758
|
+
auth_token?: string | undefined;
|
|
34759
|
+
messaging_service_sid?: string | undefined;
|
|
34760
|
+
}, {
|
|
34761
|
+
from?: string | undefined;
|
|
34762
|
+
sid?: string | undefined;
|
|
34763
|
+
auth_token?: string | undefined;
|
|
34764
|
+
messaging_service_sid?: string | undefined;
|
|
34765
|
+
}>>;
|
|
34766
|
+
phone_message: z.ZodOptional<z.ZodObject<{
|
|
34767
|
+
message: z.ZodOptional<z.ZodString>;
|
|
34768
|
+
}, "strip", z.ZodTypeAny, {
|
|
34769
|
+
message?: string | undefined;
|
|
34770
|
+
}, {
|
|
34771
|
+
message?: string | undefined;
|
|
34772
|
+
}>>;
|
|
34773
|
+
}, "strip", z.ZodTypeAny, {
|
|
34774
|
+
factors?: {
|
|
34775
|
+
email: boolean;
|
|
34776
|
+
otp: boolean;
|
|
34777
|
+
sms: boolean;
|
|
34778
|
+
push_notification: boolean;
|
|
34779
|
+
webauthn_roaming: boolean;
|
|
34780
|
+
webauthn_platform: boolean;
|
|
34781
|
+
recovery_code: boolean;
|
|
34782
|
+
duo: boolean;
|
|
34783
|
+
} | undefined;
|
|
34784
|
+
twilio?: {
|
|
34785
|
+
from?: string | undefined;
|
|
34786
|
+
sid?: string | undefined;
|
|
34787
|
+
auth_token?: string | undefined;
|
|
34788
|
+
messaging_service_sid?: string | undefined;
|
|
34789
|
+
} | undefined;
|
|
34790
|
+
sms_provider?: {
|
|
34791
|
+
provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
|
|
34792
|
+
} | undefined;
|
|
34793
|
+
phone_message?: {
|
|
34794
|
+
message?: string | undefined;
|
|
34795
|
+
} | undefined;
|
|
34796
|
+
}, {
|
|
34797
|
+
factors?: {
|
|
34798
|
+
email?: boolean | undefined;
|
|
34799
|
+
otp?: boolean | undefined;
|
|
34800
|
+
sms?: boolean | undefined;
|
|
34801
|
+
push_notification?: boolean | undefined;
|
|
34802
|
+
webauthn_roaming?: boolean | undefined;
|
|
34803
|
+
webauthn_platform?: boolean | undefined;
|
|
34804
|
+
recovery_code?: boolean | undefined;
|
|
34805
|
+
duo?: boolean | undefined;
|
|
34806
|
+
} | undefined;
|
|
34807
|
+
twilio?: {
|
|
34808
|
+
from?: string | undefined;
|
|
34809
|
+
sid?: string | undefined;
|
|
34810
|
+
auth_token?: string | undefined;
|
|
34811
|
+
messaging_service_sid?: string | undefined;
|
|
34812
|
+
} | undefined;
|
|
34813
|
+
sms_provider?: {
|
|
34814
|
+
provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
|
|
34815
|
+
} | undefined;
|
|
34816
|
+
phone_message?: {
|
|
34817
|
+
message?: string | undefined;
|
|
34818
|
+
} | undefined;
|
|
34819
|
+
}>>;
|
|
34277
34820
|
created_at: z.ZodEffects<z.ZodNullable<z.ZodString>, string, string | null>;
|
|
34278
34821
|
updated_at: z.ZodEffects<z.ZodNullable<z.ZodString>, string, string | null>;
|
|
34279
34822
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -34377,6 +34920,30 @@ export declare const tenantSchema: z.ZodObject<{
|
|
|
34377
34920
|
} | undefined;
|
|
34378
34921
|
pushed_authorization_requests_supported?: boolean | undefined;
|
|
34379
34922
|
authorization_response_iss_parameter_supported?: boolean | undefined;
|
|
34923
|
+
mfa?: {
|
|
34924
|
+
factors?: {
|
|
34925
|
+
email: boolean;
|
|
34926
|
+
otp: boolean;
|
|
34927
|
+
sms: boolean;
|
|
34928
|
+
push_notification: boolean;
|
|
34929
|
+
webauthn_roaming: boolean;
|
|
34930
|
+
webauthn_platform: boolean;
|
|
34931
|
+
recovery_code: boolean;
|
|
34932
|
+
duo: boolean;
|
|
34933
|
+
} | undefined;
|
|
34934
|
+
twilio?: {
|
|
34935
|
+
from?: string | undefined;
|
|
34936
|
+
sid?: string | undefined;
|
|
34937
|
+
auth_token?: string | undefined;
|
|
34938
|
+
messaging_service_sid?: string | undefined;
|
|
34939
|
+
} | undefined;
|
|
34940
|
+
sms_provider?: {
|
|
34941
|
+
provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
|
|
34942
|
+
} | undefined;
|
|
34943
|
+
phone_message?: {
|
|
34944
|
+
message?: string | undefined;
|
|
34945
|
+
} | undefined;
|
|
34946
|
+
} | undefined;
|
|
34380
34947
|
}, {
|
|
34381
34948
|
created_at: string | null;
|
|
34382
34949
|
updated_at: string | null;
|
|
@@ -34478,6 +35045,30 @@ export declare const tenantSchema: z.ZodObject<{
|
|
|
34478
35045
|
} | undefined;
|
|
34479
35046
|
pushed_authorization_requests_supported?: boolean | undefined;
|
|
34480
35047
|
authorization_response_iss_parameter_supported?: boolean | undefined;
|
|
35048
|
+
mfa?: {
|
|
35049
|
+
factors?: {
|
|
35050
|
+
email?: boolean | undefined;
|
|
35051
|
+
otp?: boolean | undefined;
|
|
35052
|
+
sms?: boolean | undefined;
|
|
35053
|
+
push_notification?: boolean | undefined;
|
|
35054
|
+
webauthn_roaming?: boolean | undefined;
|
|
35055
|
+
webauthn_platform?: boolean | undefined;
|
|
35056
|
+
recovery_code?: boolean | undefined;
|
|
35057
|
+
duo?: boolean | undefined;
|
|
35058
|
+
} | undefined;
|
|
35059
|
+
twilio?: {
|
|
35060
|
+
from?: string | undefined;
|
|
35061
|
+
sid?: string | undefined;
|
|
35062
|
+
auth_token?: string | undefined;
|
|
35063
|
+
messaging_service_sid?: string | undefined;
|
|
35064
|
+
} | undefined;
|
|
35065
|
+
sms_provider?: {
|
|
35066
|
+
provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
|
|
35067
|
+
} | undefined;
|
|
35068
|
+
phone_message?: {
|
|
35069
|
+
message?: string | undefined;
|
|
35070
|
+
} | undefined;
|
|
35071
|
+
} | undefined;
|
|
34481
35072
|
}>;
|
|
34482
35073
|
export type Tenant = z.infer<typeof tenantSchema>;
|
|
34483
35074
|
export declare enum GrantType {
|
|
@@ -34633,53 +35224,53 @@ export declare const fontDetailsSchema: z.ZodObject<{
|
|
|
34633
35224
|
bold: z.ZodBoolean;
|
|
34634
35225
|
size: z.ZodNumber;
|
|
34635
35226
|
}, "strip", z.ZodTypeAny, {
|
|
34636
|
-
bold: boolean;
|
|
34637
35227
|
size: number;
|
|
34638
|
-
}, {
|
|
34639
35228
|
bold: boolean;
|
|
35229
|
+
}, {
|
|
34640
35230
|
size: number;
|
|
35231
|
+
bold: boolean;
|
|
34641
35232
|
}>;
|
|
34642
35233
|
export declare const fontsSchema: z.ZodObject<{
|
|
34643
35234
|
body_text: z.ZodObject<{
|
|
34644
35235
|
bold: z.ZodBoolean;
|
|
34645
35236
|
size: z.ZodNumber;
|
|
34646
35237
|
}, "strip", z.ZodTypeAny, {
|
|
34647
|
-
bold: boolean;
|
|
34648
35238
|
size: number;
|
|
34649
|
-
}, {
|
|
34650
35239
|
bold: boolean;
|
|
35240
|
+
}, {
|
|
34651
35241
|
size: number;
|
|
35242
|
+
bold: boolean;
|
|
34652
35243
|
}>;
|
|
34653
35244
|
buttons_text: z.ZodObject<{
|
|
34654
35245
|
bold: z.ZodBoolean;
|
|
34655
35246
|
size: z.ZodNumber;
|
|
34656
35247
|
}, "strip", z.ZodTypeAny, {
|
|
34657
|
-
bold: boolean;
|
|
34658
35248
|
size: number;
|
|
34659
|
-
}, {
|
|
34660
35249
|
bold: boolean;
|
|
35250
|
+
}, {
|
|
34661
35251
|
size: number;
|
|
35252
|
+
bold: boolean;
|
|
34662
35253
|
}>;
|
|
34663
35254
|
font_url: z.ZodString;
|
|
34664
35255
|
input_labels: z.ZodObject<{
|
|
34665
35256
|
bold: z.ZodBoolean;
|
|
34666
35257
|
size: z.ZodNumber;
|
|
34667
35258
|
}, "strip", z.ZodTypeAny, {
|
|
34668
|
-
bold: boolean;
|
|
34669
35259
|
size: number;
|
|
34670
|
-
}, {
|
|
34671
35260
|
bold: boolean;
|
|
35261
|
+
}, {
|
|
34672
35262
|
size: number;
|
|
35263
|
+
bold: boolean;
|
|
34673
35264
|
}>;
|
|
34674
35265
|
links: z.ZodObject<{
|
|
34675
35266
|
bold: z.ZodBoolean;
|
|
34676
35267
|
size: z.ZodNumber;
|
|
34677
35268
|
}, "strip", z.ZodTypeAny, {
|
|
34678
|
-
bold: boolean;
|
|
34679
35269
|
size: number;
|
|
34680
|
-
}, {
|
|
34681
35270
|
bold: boolean;
|
|
35271
|
+
}, {
|
|
34682
35272
|
size: number;
|
|
35273
|
+
bold: boolean;
|
|
34683
35274
|
}>;
|
|
34684
35275
|
links_style: z.ZodEnum<[
|
|
34685
35276
|
"normal",
|
|
@@ -34690,77 +35281,77 @@ export declare const fontsSchema: z.ZodObject<{
|
|
|
34690
35281
|
bold: z.ZodBoolean;
|
|
34691
35282
|
size: z.ZodNumber;
|
|
34692
35283
|
}, "strip", z.ZodTypeAny, {
|
|
34693
|
-
bold: boolean;
|
|
34694
35284
|
size: number;
|
|
34695
|
-
}, {
|
|
34696
35285
|
bold: boolean;
|
|
35286
|
+
}, {
|
|
34697
35287
|
size: number;
|
|
35288
|
+
bold: boolean;
|
|
34698
35289
|
}>;
|
|
34699
35290
|
title: z.ZodObject<{
|
|
34700
35291
|
bold: z.ZodBoolean;
|
|
34701
35292
|
size: z.ZodNumber;
|
|
34702
35293
|
}, "strip", z.ZodTypeAny, {
|
|
34703
|
-
bold: boolean;
|
|
34704
35294
|
size: number;
|
|
34705
|
-
}, {
|
|
34706
35295
|
bold: boolean;
|
|
35296
|
+
}, {
|
|
34707
35297
|
size: number;
|
|
35298
|
+
bold: boolean;
|
|
34708
35299
|
}>;
|
|
34709
35300
|
}, "strip", z.ZodTypeAny, {
|
|
34710
35301
|
title: {
|
|
34711
|
-
bold: boolean;
|
|
34712
35302
|
size: number;
|
|
35303
|
+
bold: boolean;
|
|
34713
35304
|
};
|
|
34714
35305
|
links: {
|
|
34715
|
-
bold: boolean;
|
|
34716
35306
|
size: number;
|
|
35307
|
+
bold: boolean;
|
|
34717
35308
|
};
|
|
34718
35309
|
body_text: {
|
|
34719
|
-
bold: boolean;
|
|
34720
35310
|
size: number;
|
|
35311
|
+
bold: boolean;
|
|
34721
35312
|
};
|
|
34722
35313
|
buttons_text: {
|
|
34723
|
-
bold: boolean;
|
|
34724
35314
|
size: number;
|
|
35315
|
+
bold: boolean;
|
|
34725
35316
|
};
|
|
34726
35317
|
font_url: string;
|
|
34727
35318
|
input_labels: {
|
|
34728
|
-
bold: boolean;
|
|
34729
35319
|
size: number;
|
|
35320
|
+
bold: boolean;
|
|
34730
35321
|
};
|
|
34731
35322
|
links_style: "normal" | "underlined";
|
|
34732
35323
|
reference_text_size: number;
|
|
34733
35324
|
subtitle: {
|
|
34734
|
-
bold: boolean;
|
|
34735
35325
|
size: number;
|
|
35326
|
+
bold: boolean;
|
|
34736
35327
|
};
|
|
34737
35328
|
}, {
|
|
34738
35329
|
title: {
|
|
34739
|
-
bold: boolean;
|
|
34740
35330
|
size: number;
|
|
35331
|
+
bold: boolean;
|
|
34741
35332
|
};
|
|
34742
35333
|
links: {
|
|
34743
|
-
bold: boolean;
|
|
34744
35334
|
size: number;
|
|
35335
|
+
bold: boolean;
|
|
34745
35336
|
};
|
|
34746
35337
|
body_text: {
|
|
34747
|
-
bold: boolean;
|
|
34748
35338
|
size: number;
|
|
35339
|
+
bold: boolean;
|
|
34749
35340
|
};
|
|
34750
35341
|
buttons_text: {
|
|
34751
|
-
bold: boolean;
|
|
34752
35342
|
size: number;
|
|
35343
|
+
bold: boolean;
|
|
34753
35344
|
};
|
|
34754
35345
|
font_url: string;
|
|
34755
35346
|
input_labels: {
|
|
34756
|
-
bold: boolean;
|
|
34757
35347
|
size: number;
|
|
35348
|
+
bold: boolean;
|
|
34758
35349
|
};
|
|
34759
35350
|
links_style: "normal" | "underlined";
|
|
34760
35351
|
reference_text_size: number;
|
|
34761
35352
|
subtitle: {
|
|
34762
|
-
bold: boolean;
|
|
34763
35353
|
size: number;
|
|
35354
|
+
bold: boolean;
|
|
34764
35355
|
};
|
|
34765
35356
|
}>;
|
|
34766
35357
|
export declare const pageBackgroundSchema: z.ZodObject<{
|
|
@@ -34922,42 +35513,42 @@ export declare const themeInsertSchema: z.ZodObject<{
|
|
|
34922
35513
|
bold: z.ZodBoolean;
|
|
34923
35514
|
size: z.ZodNumber;
|
|
34924
35515
|
}, "strip", z.ZodTypeAny, {
|
|
34925
|
-
bold: boolean;
|
|
34926
35516
|
size: number;
|
|
34927
|
-
}, {
|
|
34928
35517
|
bold: boolean;
|
|
35518
|
+
}, {
|
|
34929
35519
|
size: number;
|
|
35520
|
+
bold: boolean;
|
|
34930
35521
|
}>;
|
|
34931
35522
|
buttons_text: z.ZodObject<{
|
|
34932
35523
|
bold: z.ZodBoolean;
|
|
34933
35524
|
size: z.ZodNumber;
|
|
34934
35525
|
}, "strip", z.ZodTypeAny, {
|
|
34935
|
-
bold: boolean;
|
|
34936
35526
|
size: number;
|
|
34937
|
-
}, {
|
|
34938
35527
|
bold: boolean;
|
|
35528
|
+
}, {
|
|
34939
35529
|
size: number;
|
|
35530
|
+
bold: boolean;
|
|
34940
35531
|
}>;
|
|
34941
35532
|
font_url: z.ZodString;
|
|
34942
35533
|
input_labels: z.ZodObject<{
|
|
34943
35534
|
bold: z.ZodBoolean;
|
|
34944
35535
|
size: z.ZodNumber;
|
|
34945
35536
|
}, "strip", z.ZodTypeAny, {
|
|
34946
|
-
bold: boolean;
|
|
34947
35537
|
size: number;
|
|
34948
|
-
}, {
|
|
34949
35538
|
bold: boolean;
|
|
35539
|
+
}, {
|
|
34950
35540
|
size: number;
|
|
35541
|
+
bold: boolean;
|
|
34951
35542
|
}>;
|
|
34952
35543
|
links: z.ZodObject<{
|
|
34953
35544
|
bold: z.ZodBoolean;
|
|
34954
35545
|
size: z.ZodNumber;
|
|
34955
35546
|
}, "strip", z.ZodTypeAny, {
|
|
34956
|
-
bold: boolean;
|
|
34957
35547
|
size: number;
|
|
34958
|
-
}, {
|
|
34959
35548
|
bold: boolean;
|
|
35549
|
+
}, {
|
|
34960
35550
|
size: number;
|
|
35551
|
+
bold: boolean;
|
|
34961
35552
|
}>;
|
|
34962
35553
|
links_style: z.ZodEnum<[
|
|
34963
35554
|
"normal",
|
|
@@ -34968,77 +35559,77 @@ export declare const themeInsertSchema: z.ZodObject<{
|
|
|
34968
35559
|
bold: z.ZodBoolean;
|
|
34969
35560
|
size: z.ZodNumber;
|
|
34970
35561
|
}, "strip", z.ZodTypeAny, {
|
|
34971
|
-
bold: boolean;
|
|
34972
35562
|
size: number;
|
|
34973
|
-
}, {
|
|
34974
35563
|
bold: boolean;
|
|
35564
|
+
}, {
|
|
34975
35565
|
size: number;
|
|
35566
|
+
bold: boolean;
|
|
34976
35567
|
}>;
|
|
34977
35568
|
title: z.ZodObject<{
|
|
34978
35569
|
bold: z.ZodBoolean;
|
|
34979
35570
|
size: z.ZodNumber;
|
|
34980
35571
|
}, "strip", z.ZodTypeAny, {
|
|
34981
|
-
bold: boolean;
|
|
34982
35572
|
size: number;
|
|
34983
|
-
}, {
|
|
34984
35573
|
bold: boolean;
|
|
35574
|
+
}, {
|
|
34985
35575
|
size: number;
|
|
35576
|
+
bold: boolean;
|
|
34986
35577
|
}>;
|
|
34987
35578
|
}, "strip", z.ZodTypeAny, {
|
|
34988
35579
|
title: {
|
|
34989
|
-
bold: boolean;
|
|
34990
35580
|
size: number;
|
|
35581
|
+
bold: boolean;
|
|
34991
35582
|
};
|
|
34992
35583
|
links: {
|
|
34993
|
-
bold: boolean;
|
|
34994
35584
|
size: number;
|
|
35585
|
+
bold: boolean;
|
|
34995
35586
|
};
|
|
34996
35587
|
body_text: {
|
|
34997
|
-
bold: boolean;
|
|
34998
35588
|
size: number;
|
|
35589
|
+
bold: boolean;
|
|
34999
35590
|
};
|
|
35000
35591
|
buttons_text: {
|
|
35001
|
-
bold: boolean;
|
|
35002
35592
|
size: number;
|
|
35593
|
+
bold: boolean;
|
|
35003
35594
|
};
|
|
35004
35595
|
font_url: string;
|
|
35005
35596
|
input_labels: {
|
|
35006
|
-
bold: boolean;
|
|
35007
35597
|
size: number;
|
|
35598
|
+
bold: boolean;
|
|
35008
35599
|
};
|
|
35009
35600
|
links_style: "normal" | "underlined";
|
|
35010
35601
|
reference_text_size: number;
|
|
35011
35602
|
subtitle: {
|
|
35012
|
-
bold: boolean;
|
|
35013
35603
|
size: number;
|
|
35604
|
+
bold: boolean;
|
|
35014
35605
|
};
|
|
35015
35606
|
}, {
|
|
35016
35607
|
title: {
|
|
35017
|
-
bold: boolean;
|
|
35018
35608
|
size: number;
|
|
35609
|
+
bold: boolean;
|
|
35019
35610
|
};
|
|
35020
35611
|
links: {
|
|
35021
|
-
bold: boolean;
|
|
35022
35612
|
size: number;
|
|
35613
|
+
bold: boolean;
|
|
35023
35614
|
};
|
|
35024
35615
|
body_text: {
|
|
35025
|
-
bold: boolean;
|
|
35026
35616
|
size: number;
|
|
35617
|
+
bold: boolean;
|
|
35027
35618
|
};
|
|
35028
35619
|
buttons_text: {
|
|
35029
|
-
bold: boolean;
|
|
35030
35620
|
size: number;
|
|
35621
|
+
bold: boolean;
|
|
35031
35622
|
};
|
|
35032
35623
|
font_url: string;
|
|
35033
35624
|
input_labels: {
|
|
35034
|
-
bold: boolean;
|
|
35035
35625
|
size: number;
|
|
35626
|
+
bold: boolean;
|
|
35036
35627
|
};
|
|
35037
35628
|
links_style: "normal" | "underlined";
|
|
35038
35629
|
reference_text_size: number;
|
|
35039
35630
|
subtitle: {
|
|
35040
|
-
bold: boolean;
|
|
35041
35631
|
size: number;
|
|
35632
|
+
bold: boolean;
|
|
35042
35633
|
};
|
|
35043
35634
|
}>;
|
|
35044
35635
|
page_background: z.ZodObject<{
|
|
@@ -35130,31 +35721,31 @@ export declare const themeInsertSchema: z.ZodObject<{
|
|
|
35130
35721
|
displayName: string;
|
|
35131
35722
|
fonts: {
|
|
35132
35723
|
title: {
|
|
35133
|
-
bold: boolean;
|
|
35134
35724
|
size: number;
|
|
35725
|
+
bold: boolean;
|
|
35135
35726
|
};
|
|
35136
35727
|
links: {
|
|
35137
|
-
bold: boolean;
|
|
35138
35728
|
size: number;
|
|
35729
|
+
bold: boolean;
|
|
35139
35730
|
};
|
|
35140
35731
|
body_text: {
|
|
35141
|
-
bold: boolean;
|
|
35142
35732
|
size: number;
|
|
35733
|
+
bold: boolean;
|
|
35143
35734
|
};
|
|
35144
35735
|
buttons_text: {
|
|
35145
|
-
bold: boolean;
|
|
35146
35736
|
size: number;
|
|
35737
|
+
bold: boolean;
|
|
35147
35738
|
};
|
|
35148
35739
|
font_url: string;
|
|
35149
35740
|
input_labels: {
|
|
35150
|
-
bold: boolean;
|
|
35151
35741
|
size: number;
|
|
35742
|
+
bold: boolean;
|
|
35152
35743
|
};
|
|
35153
35744
|
links_style: "normal" | "underlined";
|
|
35154
35745
|
reference_text_size: number;
|
|
35155
35746
|
subtitle: {
|
|
35156
|
-
bold: boolean;
|
|
35157
35747
|
size: number;
|
|
35748
|
+
bold: boolean;
|
|
35158
35749
|
};
|
|
35159
35750
|
};
|
|
35160
35751
|
widget: {
|
|
@@ -35205,31 +35796,31 @@ export declare const themeInsertSchema: z.ZodObject<{
|
|
|
35205
35796
|
displayName: string;
|
|
35206
35797
|
fonts: {
|
|
35207
35798
|
title: {
|
|
35208
|
-
bold: boolean;
|
|
35209
35799
|
size: number;
|
|
35800
|
+
bold: boolean;
|
|
35210
35801
|
};
|
|
35211
35802
|
links: {
|
|
35212
|
-
bold: boolean;
|
|
35213
35803
|
size: number;
|
|
35804
|
+
bold: boolean;
|
|
35214
35805
|
};
|
|
35215
35806
|
body_text: {
|
|
35216
|
-
bold: boolean;
|
|
35217
35807
|
size: number;
|
|
35808
|
+
bold: boolean;
|
|
35218
35809
|
};
|
|
35219
35810
|
buttons_text: {
|
|
35220
|
-
bold: boolean;
|
|
35221
35811
|
size: number;
|
|
35812
|
+
bold: boolean;
|
|
35222
35813
|
};
|
|
35223
35814
|
font_url: string;
|
|
35224
35815
|
input_labels: {
|
|
35225
|
-
bold: boolean;
|
|
35226
35816
|
size: number;
|
|
35817
|
+
bold: boolean;
|
|
35227
35818
|
};
|
|
35228
35819
|
links_style: "normal" | "underlined";
|
|
35229
35820
|
reference_text_size: number;
|
|
35230
35821
|
subtitle: {
|
|
35231
|
-
bold: boolean;
|
|
35232
35822
|
size: number;
|
|
35823
|
+
bold: boolean;
|
|
35233
35824
|
};
|
|
35234
35825
|
};
|
|
35235
35826
|
widget: {
|
|
@@ -35352,42 +35943,42 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
35352
35943
|
bold: z.ZodBoolean;
|
|
35353
35944
|
size: z.ZodNumber;
|
|
35354
35945
|
}, "strip", z.ZodTypeAny, {
|
|
35355
|
-
bold: boolean;
|
|
35356
35946
|
size: number;
|
|
35357
|
-
}, {
|
|
35358
35947
|
bold: boolean;
|
|
35948
|
+
}, {
|
|
35359
35949
|
size: number;
|
|
35950
|
+
bold: boolean;
|
|
35360
35951
|
}>;
|
|
35361
35952
|
buttons_text: z.ZodObject<{
|
|
35362
35953
|
bold: z.ZodBoolean;
|
|
35363
35954
|
size: z.ZodNumber;
|
|
35364
35955
|
}, "strip", z.ZodTypeAny, {
|
|
35365
|
-
bold: boolean;
|
|
35366
35956
|
size: number;
|
|
35367
|
-
}, {
|
|
35368
35957
|
bold: boolean;
|
|
35958
|
+
}, {
|
|
35369
35959
|
size: number;
|
|
35960
|
+
bold: boolean;
|
|
35370
35961
|
}>;
|
|
35371
35962
|
font_url: z.ZodString;
|
|
35372
35963
|
input_labels: z.ZodObject<{
|
|
35373
35964
|
bold: z.ZodBoolean;
|
|
35374
35965
|
size: z.ZodNumber;
|
|
35375
35966
|
}, "strip", z.ZodTypeAny, {
|
|
35376
|
-
bold: boolean;
|
|
35377
35967
|
size: number;
|
|
35378
|
-
}, {
|
|
35379
35968
|
bold: boolean;
|
|
35969
|
+
}, {
|
|
35380
35970
|
size: number;
|
|
35971
|
+
bold: boolean;
|
|
35381
35972
|
}>;
|
|
35382
35973
|
links: z.ZodObject<{
|
|
35383
35974
|
bold: z.ZodBoolean;
|
|
35384
35975
|
size: z.ZodNumber;
|
|
35385
35976
|
}, "strip", z.ZodTypeAny, {
|
|
35386
|
-
bold: boolean;
|
|
35387
35977
|
size: number;
|
|
35388
|
-
}, {
|
|
35389
35978
|
bold: boolean;
|
|
35979
|
+
}, {
|
|
35390
35980
|
size: number;
|
|
35981
|
+
bold: boolean;
|
|
35391
35982
|
}>;
|
|
35392
35983
|
links_style: z.ZodEnum<[
|
|
35393
35984
|
"normal",
|
|
@@ -35398,77 +35989,77 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
35398
35989
|
bold: z.ZodBoolean;
|
|
35399
35990
|
size: z.ZodNumber;
|
|
35400
35991
|
}, "strip", z.ZodTypeAny, {
|
|
35401
|
-
bold: boolean;
|
|
35402
35992
|
size: number;
|
|
35403
|
-
}, {
|
|
35404
35993
|
bold: boolean;
|
|
35994
|
+
}, {
|
|
35405
35995
|
size: number;
|
|
35996
|
+
bold: boolean;
|
|
35406
35997
|
}>;
|
|
35407
35998
|
title: z.ZodObject<{
|
|
35408
35999
|
bold: z.ZodBoolean;
|
|
35409
36000
|
size: z.ZodNumber;
|
|
35410
36001
|
}, "strip", z.ZodTypeAny, {
|
|
35411
|
-
bold: boolean;
|
|
35412
36002
|
size: number;
|
|
35413
|
-
}, {
|
|
35414
36003
|
bold: boolean;
|
|
36004
|
+
}, {
|
|
35415
36005
|
size: number;
|
|
36006
|
+
bold: boolean;
|
|
35416
36007
|
}>;
|
|
35417
36008
|
}, "strip", z.ZodTypeAny, {
|
|
35418
36009
|
title: {
|
|
35419
|
-
bold: boolean;
|
|
35420
36010
|
size: number;
|
|
36011
|
+
bold: boolean;
|
|
35421
36012
|
};
|
|
35422
36013
|
links: {
|
|
35423
|
-
bold: boolean;
|
|
35424
36014
|
size: number;
|
|
36015
|
+
bold: boolean;
|
|
35425
36016
|
};
|
|
35426
36017
|
body_text: {
|
|
35427
|
-
bold: boolean;
|
|
35428
36018
|
size: number;
|
|
36019
|
+
bold: boolean;
|
|
35429
36020
|
};
|
|
35430
36021
|
buttons_text: {
|
|
35431
|
-
bold: boolean;
|
|
35432
36022
|
size: number;
|
|
36023
|
+
bold: boolean;
|
|
35433
36024
|
};
|
|
35434
36025
|
font_url: string;
|
|
35435
36026
|
input_labels: {
|
|
35436
|
-
bold: boolean;
|
|
35437
36027
|
size: number;
|
|
36028
|
+
bold: boolean;
|
|
35438
36029
|
};
|
|
35439
36030
|
links_style: "normal" | "underlined";
|
|
35440
36031
|
reference_text_size: number;
|
|
35441
36032
|
subtitle: {
|
|
35442
|
-
bold: boolean;
|
|
35443
36033
|
size: number;
|
|
36034
|
+
bold: boolean;
|
|
35444
36035
|
};
|
|
35445
36036
|
}, {
|
|
35446
36037
|
title: {
|
|
35447
|
-
bold: boolean;
|
|
35448
36038
|
size: number;
|
|
36039
|
+
bold: boolean;
|
|
35449
36040
|
};
|
|
35450
36041
|
links: {
|
|
35451
|
-
bold: boolean;
|
|
35452
36042
|
size: number;
|
|
36043
|
+
bold: boolean;
|
|
35453
36044
|
};
|
|
35454
36045
|
body_text: {
|
|
35455
|
-
bold: boolean;
|
|
35456
36046
|
size: number;
|
|
36047
|
+
bold: boolean;
|
|
35457
36048
|
};
|
|
35458
36049
|
buttons_text: {
|
|
35459
|
-
bold: boolean;
|
|
35460
36050
|
size: number;
|
|
36051
|
+
bold: boolean;
|
|
35461
36052
|
};
|
|
35462
36053
|
font_url: string;
|
|
35463
36054
|
input_labels: {
|
|
35464
|
-
bold: boolean;
|
|
35465
36055
|
size: number;
|
|
36056
|
+
bold: boolean;
|
|
35466
36057
|
};
|
|
35467
36058
|
links_style: "normal" | "underlined";
|
|
35468
36059
|
reference_text_size: number;
|
|
35469
36060
|
subtitle: {
|
|
35470
|
-
bold: boolean;
|
|
35471
36061
|
size: number;
|
|
36062
|
+
bold: boolean;
|
|
35472
36063
|
};
|
|
35473
36064
|
}>;
|
|
35474
36065
|
page_background: z.ZodObject<{
|
|
@@ -35562,31 +36153,31 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
35562
36153
|
displayName: string;
|
|
35563
36154
|
fonts: {
|
|
35564
36155
|
title: {
|
|
35565
|
-
bold: boolean;
|
|
35566
36156
|
size: number;
|
|
36157
|
+
bold: boolean;
|
|
35567
36158
|
};
|
|
35568
36159
|
links: {
|
|
35569
|
-
bold: boolean;
|
|
35570
36160
|
size: number;
|
|
36161
|
+
bold: boolean;
|
|
35571
36162
|
};
|
|
35572
36163
|
body_text: {
|
|
35573
|
-
bold: boolean;
|
|
35574
36164
|
size: number;
|
|
36165
|
+
bold: boolean;
|
|
35575
36166
|
};
|
|
35576
36167
|
buttons_text: {
|
|
35577
|
-
bold: boolean;
|
|
35578
36168
|
size: number;
|
|
36169
|
+
bold: boolean;
|
|
35579
36170
|
};
|
|
35580
36171
|
font_url: string;
|
|
35581
36172
|
input_labels: {
|
|
35582
|
-
bold: boolean;
|
|
35583
36173
|
size: number;
|
|
36174
|
+
bold: boolean;
|
|
35584
36175
|
};
|
|
35585
36176
|
links_style: "normal" | "underlined";
|
|
35586
36177
|
reference_text_size: number;
|
|
35587
36178
|
subtitle: {
|
|
35588
|
-
bold: boolean;
|
|
35589
36179
|
size: number;
|
|
36180
|
+
bold: boolean;
|
|
35590
36181
|
};
|
|
35591
36182
|
};
|
|
35592
36183
|
widget: {
|
|
@@ -35638,31 +36229,31 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
35638
36229
|
displayName: string;
|
|
35639
36230
|
fonts: {
|
|
35640
36231
|
title: {
|
|
35641
|
-
bold: boolean;
|
|
35642
36232
|
size: number;
|
|
36233
|
+
bold: boolean;
|
|
35643
36234
|
};
|
|
35644
36235
|
links: {
|
|
35645
|
-
bold: boolean;
|
|
35646
36236
|
size: number;
|
|
36237
|
+
bold: boolean;
|
|
35647
36238
|
};
|
|
35648
36239
|
body_text: {
|
|
35649
|
-
bold: boolean;
|
|
35650
36240
|
size: number;
|
|
36241
|
+
bold: boolean;
|
|
35651
36242
|
};
|
|
35652
36243
|
buttons_text: {
|
|
35653
|
-
bold: boolean;
|
|
35654
36244
|
size: number;
|
|
36245
|
+
bold: boolean;
|
|
35655
36246
|
};
|
|
35656
36247
|
font_url: string;
|
|
35657
36248
|
input_labels: {
|
|
35658
|
-
bold: boolean;
|
|
35659
36249
|
size: number;
|
|
36250
|
+
bold: boolean;
|
|
35660
36251
|
};
|
|
35661
36252
|
links_style: "normal" | "underlined";
|
|
35662
36253
|
reference_text_size: number;
|
|
35663
36254
|
subtitle: {
|
|
35664
|
-
bold: boolean;
|
|
35665
36255
|
size: number;
|
|
36256
|
+
bold: boolean;
|
|
35666
36257
|
};
|
|
35667
36258
|
};
|
|
35668
36259
|
widget: {
|
|
@@ -37203,6 +37794,117 @@ export declare const tenantSettingsSchema: z.ZodObject<{
|
|
|
37203
37794
|
}, {
|
|
37204
37795
|
oidc_logout_prompt_enabled?: boolean | undefined;
|
|
37205
37796
|
}>>;
|
|
37797
|
+
mfa: z.ZodOptional<z.ZodObject<{
|
|
37798
|
+
factors: z.ZodOptional<z.ZodObject<{
|
|
37799
|
+
sms: z.ZodDefault<z.ZodBoolean>;
|
|
37800
|
+
otp: z.ZodDefault<z.ZodBoolean>;
|
|
37801
|
+
email: z.ZodDefault<z.ZodBoolean>;
|
|
37802
|
+
push_notification: z.ZodDefault<z.ZodBoolean>;
|
|
37803
|
+
webauthn_roaming: z.ZodDefault<z.ZodBoolean>;
|
|
37804
|
+
webauthn_platform: z.ZodDefault<z.ZodBoolean>;
|
|
37805
|
+
recovery_code: z.ZodDefault<z.ZodBoolean>;
|
|
37806
|
+
duo: z.ZodDefault<z.ZodBoolean>;
|
|
37807
|
+
}, "strip", z.ZodTypeAny, {
|
|
37808
|
+
email: boolean;
|
|
37809
|
+
otp: boolean;
|
|
37810
|
+
sms: boolean;
|
|
37811
|
+
push_notification: boolean;
|
|
37812
|
+
webauthn_roaming: boolean;
|
|
37813
|
+
webauthn_platform: boolean;
|
|
37814
|
+
recovery_code: boolean;
|
|
37815
|
+
duo: boolean;
|
|
37816
|
+
}, {
|
|
37817
|
+
email?: boolean | undefined;
|
|
37818
|
+
otp?: boolean | undefined;
|
|
37819
|
+
sms?: boolean | undefined;
|
|
37820
|
+
push_notification?: boolean | undefined;
|
|
37821
|
+
webauthn_roaming?: boolean | undefined;
|
|
37822
|
+
webauthn_platform?: boolean | undefined;
|
|
37823
|
+
recovery_code?: boolean | undefined;
|
|
37824
|
+
duo?: boolean | undefined;
|
|
37825
|
+
}>>;
|
|
37826
|
+
sms_provider: z.ZodOptional<z.ZodObject<{
|
|
37827
|
+
provider: z.ZodOptional<z.ZodEnum<[
|
|
37828
|
+
"twilio",
|
|
37829
|
+
"vonage",
|
|
37830
|
+
"aws_sns",
|
|
37831
|
+
"phone_message_hook"
|
|
37832
|
+
]>>;
|
|
37833
|
+
}, "strip", z.ZodTypeAny, {
|
|
37834
|
+
provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
|
|
37835
|
+
}, {
|
|
37836
|
+
provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
|
|
37837
|
+
}>>;
|
|
37838
|
+
twilio: z.ZodOptional<z.ZodObject<{
|
|
37839
|
+
sid: z.ZodOptional<z.ZodString>;
|
|
37840
|
+
auth_token: z.ZodOptional<z.ZodString>;
|
|
37841
|
+
from: z.ZodOptional<z.ZodString>;
|
|
37842
|
+
messaging_service_sid: z.ZodOptional<z.ZodString>;
|
|
37843
|
+
}, "strip", z.ZodTypeAny, {
|
|
37844
|
+
from?: string | undefined;
|
|
37845
|
+
sid?: string | undefined;
|
|
37846
|
+
auth_token?: string | undefined;
|
|
37847
|
+
messaging_service_sid?: string | undefined;
|
|
37848
|
+
}, {
|
|
37849
|
+
from?: string | undefined;
|
|
37850
|
+
sid?: string | undefined;
|
|
37851
|
+
auth_token?: string | undefined;
|
|
37852
|
+
messaging_service_sid?: string | undefined;
|
|
37853
|
+
}>>;
|
|
37854
|
+
phone_message: z.ZodOptional<z.ZodObject<{
|
|
37855
|
+
message: z.ZodOptional<z.ZodString>;
|
|
37856
|
+
}, "strip", z.ZodTypeAny, {
|
|
37857
|
+
message?: string | undefined;
|
|
37858
|
+
}, {
|
|
37859
|
+
message?: string | undefined;
|
|
37860
|
+
}>>;
|
|
37861
|
+
}, "strip", z.ZodTypeAny, {
|
|
37862
|
+
factors?: {
|
|
37863
|
+
email: boolean;
|
|
37864
|
+
otp: boolean;
|
|
37865
|
+
sms: boolean;
|
|
37866
|
+
push_notification: boolean;
|
|
37867
|
+
webauthn_roaming: boolean;
|
|
37868
|
+
webauthn_platform: boolean;
|
|
37869
|
+
recovery_code: boolean;
|
|
37870
|
+
duo: boolean;
|
|
37871
|
+
} | undefined;
|
|
37872
|
+
twilio?: {
|
|
37873
|
+
from?: string | undefined;
|
|
37874
|
+
sid?: string | undefined;
|
|
37875
|
+
auth_token?: string | undefined;
|
|
37876
|
+
messaging_service_sid?: string | undefined;
|
|
37877
|
+
} | undefined;
|
|
37878
|
+
sms_provider?: {
|
|
37879
|
+
provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
|
|
37880
|
+
} | undefined;
|
|
37881
|
+
phone_message?: {
|
|
37882
|
+
message?: string | undefined;
|
|
37883
|
+
} | undefined;
|
|
37884
|
+
}, {
|
|
37885
|
+
factors?: {
|
|
37886
|
+
email?: boolean | undefined;
|
|
37887
|
+
otp?: boolean | undefined;
|
|
37888
|
+
sms?: boolean | undefined;
|
|
37889
|
+
push_notification?: boolean | undefined;
|
|
37890
|
+
webauthn_roaming?: boolean | undefined;
|
|
37891
|
+
webauthn_platform?: boolean | undefined;
|
|
37892
|
+
recovery_code?: boolean | undefined;
|
|
37893
|
+
duo?: boolean | undefined;
|
|
37894
|
+
} | undefined;
|
|
37895
|
+
twilio?: {
|
|
37896
|
+
from?: string | undefined;
|
|
37897
|
+
sid?: string | undefined;
|
|
37898
|
+
auth_token?: string | undefined;
|
|
37899
|
+
messaging_service_sid?: string | undefined;
|
|
37900
|
+
} | undefined;
|
|
37901
|
+
sms_provider?: {
|
|
37902
|
+
provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
|
|
37903
|
+
} | undefined;
|
|
37904
|
+
phone_message?: {
|
|
37905
|
+
message?: string | undefined;
|
|
37906
|
+
} | undefined;
|
|
37907
|
+
}>>;
|
|
37206
37908
|
}, "strip", z.ZodTypeAny, {
|
|
37207
37909
|
default_organization?: string | undefined;
|
|
37208
37910
|
friendly_name?: string | undefined;
|
|
@@ -37260,6 +37962,30 @@ export declare const tenantSettingsSchema: z.ZodObject<{
|
|
|
37260
37962
|
sessions?: {
|
|
37261
37963
|
oidc_logout_prompt_enabled?: boolean | undefined;
|
|
37262
37964
|
} | undefined;
|
|
37965
|
+
mfa?: {
|
|
37966
|
+
factors?: {
|
|
37967
|
+
email: boolean;
|
|
37968
|
+
otp: boolean;
|
|
37969
|
+
sms: boolean;
|
|
37970
|
+
push_notification: boolean;
|
|
37971
|
+
webauthn_roaming: boolean;
|
|
37972
|
+
webauthn_platform: boolean;
|
|
37973
|
+
recovery_code: boolean;
|
|
37974
|
+
duo: boolean;
|
|
37975
|
+
} | undefined;
|
|
37976
|
+
twilio?: {
|
|
37977
|
+
from?: string | undefined;
|
|
37978
|
+
sid?: string | undefined;
|
|
37979
|
+
auth_token?: string | undefined;
|
|
37980
|
+
messaging_service_sid?: string | undefined;
|
|
37981
|
+
} | undefined;
|
|
37982
|
+
sms_provider?: {
|
|
37983
|
+
provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
|
|
37984
|
+
} | undefined;
|
|
37985
|
+
phone_message?: {
|
|
37986
|
+
message?: string | undefined;
|
|
37987
|
+
} | undefined;
|
|
37988
|
+
} | undefined;
|
|
37263
37989
|
}, {
|
|
37264
37990
|
default_organization?: string | undefined;
|
|
37265
37991
|
friendly_name?: string | undefined;
|
|
@@ -37317,6 +38043,30 @@ export declare const tenantSettingsSchema: z.ZodObject<{
|
|
|
37317
38043
|
sessions?: {
|
|
37318
38044
|
oidc_logout_prompt_enabled?: boolean | undefined;
|
|
37319
38045
|
} | undefined;
|
|
38046
|
+
mfa?: {
|
|
38047
|
+
factors?: {
|
|
38048
|
+
email?: boolean | undefined;
|
|
38049
|
+
otp?: boolean | undefined;
|
|
38050
|
+
sms?: boolean | undefined;
|
|
38051
|
+
push_notification?: boolean | undefined;
|
|
38052
|
+
webauthn_roaming?: boolean | undefined;
|
|
38053
|
+
webauthn_platform?: boolean | undefined;
|
|
38054
|
+
recovery_code?: boolean | undefined;
|
|
38055
|
+
duo?: boolean | undefined;
|
|
38056
|
+
} | undefined;
|
|
38057
|
+
twilio?: {
|
|
38058
|
+
from?: string | undefined;
|
|
38059
|
+
sid?: string | undefined;
|
|
38060
|
+
auth_token?: string | undefined;
|
|
38061
|
+
messaging_service_sid?: string | undefined;
|
|
38062
|
+
} | undefined;
|
|
38063
|
+
sms_provider?: {
|
|
38064
|
+
provider?: "twilio" | "vonage" | "aws_sns" | "phone_message_hook" | undefined;
|
|
38065
|
+
} | undefined;
|
|
38066
|
+
phone_message?: {
|
|
38067
|
+
message?: string | undefined;
|
|
38068
|
+
} | undefined;
|
|
38069
|
+
} | undefined;
|
|
37320
38070
|
}>;
|
|
37321
38071
|
export type TenantSettings = z.infer<typeof tenantSettingsSchema>;
|
|
37322
38072
|
export declare const dailyStatsSchema: z.ZodObject<{
|
|
@@ -37421,11 +38171,11 @@ export declare const customTextEntrySchema: z.ZodObject<{
|
|
|
37421
38171
|
language: z.ZodString;
|
|
37422
38172
|
custom_text: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
37423
38173
|
}, "strip", z.ZodTypeAny, {
|
|
37424
|
-
prompt: "status" | "organizations" | "login" | "login-id" | "login-password" | "signup" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa
|
|
38174
|
+
prompt: "status" | "organizations" | "mfa" | "login" | "login-id" | "login-password" | "signup" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-sms" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form";
|
|
37425
38175
|
language: string;
|
|
37426
38176
|
custom_text: Record<string, string>;
|
|
37427
38177
|
}, {
|
|
37428
|
-
prompt: "status" | "organizations" | "login" | "login-id" | "login-password" | "signup" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa
|
|
38178
|
+
prompt: "status" | "organizations" | "mfa" | "login" | "login-id" | "login-password" | "signup" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-sms" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form";
|
|
37429
38179
|
language: string;
|
|
37430
38180
|
custom_text: Record<string, string>;
|
|
37431
38181
|
}>;
|