authhero 4.34.0 → 4.35.1
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/assets/u/widget/index.esm.js +1 -1
- package/dist/authhero.cjs +61 -61
- package/dist/authhero.d.ts +650 -110
- package/dist/authhero.mjs +12240 -11637
- package/dist/stats.html +1 -1
- package/package.json +4 -4
package/dist/authhero.d.ts
CHANGED
|
@@ -10457,6 +10457,47 @@ export declare const connectionOptionsSchema: z.ZodObject<{
|
|
|
10457
10457
|
twilio_sid: z.ZodOptional<z.ZodString>;
|
|
10458
10458
|
twilio_token: z.ZodOptional<z.ZodString>;
|
|
10459
10459
|
icon_url: z.ZodOptional<z.ZodString>;
|
|
10460
|
+
passwordPolicy: z.ZodOptional<z.ZodEnum<[
|
|
10461
|
+
"none",
|
|
10462
|
+
"low",
|
|
10463
|
+
"fair",
|
|
10464
|
+
"good",
|
|
10465
|
+
"excellent"
|
|
10466
|
+
]>>;
|
|
10467
|
+
password_complexity_options: z.ZodOptional<z.ZodObject<{
|
|
10468
|
+
min_length: z.ZodOptional<z.ZodNumber>;
|
|
10469
|
+
}, "strip", z.ZodTypeAny, {
|
|
10470
|
+
min_length?: number | undefined;
|
|
10471
|
+
}, {
|
|
10472
|
+
min_length?: number | undefined;
|
|
10473
|
+
}>>;
|
|
10474
|
+
password_history: z.ZodOptional<z.ZodObject<{
|
|
10475
|
+
enable: z.ZodOptional<z.ZodBoolean>;
|
|
10476
|
+
size: z.ZodOptional<z.ZodNumber>;
|
|
10477
|
+
}, "strip", z.ZodTypeAny, {
|
|
10478
|
+
enable?: boolean | undefined;
|
|
10479
|
+
size?: number | undefined;
|
|
10480
|
+
}, {
|
|
10481
|
+
enable?: boolean | undefined;
|
|
10482
|
+
size?: number | undefined;
|
|
10483
|
+
}>>;
|
|
10484
|
+
password_no_personal_info: z.ZodOptional<z.ZodObject<{
|
|
10485
|
+
enable: z.ZodOptional<z.ZodBoolean>;
|
|
10486
|
+
}, "strip", z.ZodTypeAny, {
|
|
10487
|
+
enable?: boolean | undefined;
|
|
10488
|
+
}, {
|
|
10489
|
+
enable?: boolean | undefined;
|
|
10490
|
+
}>>;
|
|
10491
|
+
password_dictionary: z.ZodOptional<z.ZodObject<{
|
|
10492
|
+
enable: z.ZodOptional<z.ZodBoolean>;
|
|
10493
|
+
dictionary: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
10494
|
+
}, "strip", z.ZodTypeAny, {
|
|
10495
|
+
enable?: boolean | undefined;
|
|
10496
|
+
dictionary?: string[] | undefined;
|
|
10497
|
+
}, {
|
|
10498
|
+
enable?: boolean | undefined;
|
|
10499
|
+
dictionary?: string[] | undefined;
|
|
10500
|
+
}>>;
|
|
10460
10501
|
}, "strip", z.ZodTypeAny, {
|
|
10461
10502
|
provider?: string | undefined;
|
|
10462
10503
|
client_id?: string | undefined;
|
|
@@ -10477,6 +10518,21 @@ export declare const connectionOptionsSchema: z.ZodObject<{
|
|
|
10477
10518
|
twilio_sid?: string | undefined;
|
|
10478
10519
|
twilio_token?: string | undefined;
|
|
10479
10520
|
icon_url?: string | undefined;
|
|
10521
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
10522
|
+
password_complexity_options?: {
|
|
10523
|
+
min_length?: number | undefined;
|
|
10524
|
+
} | undefined;
|
|
10525
|
+
password_history?: {
|
|
10526
|
+
enable?: boolean | undefined;
|
|
10527
|
+
size?: number | undefined;
|
|
10528
|
+
} | undefined;
|
|
10529
|
+
password_no_personal_info?: {
|
|
10530
|
+
enable?: boolean | undefined;
|
|
10531
|
+
} | undefined;
|
|
10532
|
+
password_dictionary?: {
|
|
10533
|
+
enable?: boolean | undefined;
|
|
10534
|
+
dictionary?: string[] | undefined;
|
|
10535
|
+
} | undefined;
|
|
10480
10536
|
}, {
|
|
10481
10537
|
provider?: string | undefined;
|
|
10482
10538
|
client_id?: string | undefined;
|
|
@@ -10497,6 +10553,21 @@ export declare const connectionOptionsSchema: z.ZodObject<{
|
|
|
10497
10553
|
twilio_sid?: string | undefined;
|
|
10498
10554
|
twilio_token?: string | undefined;
|
|
10499
10555
|
icon_url?: string | undefined;
|
|
10556
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
10557
|
+
password_complexity_options?: {
|
|
10558
|
+
min_length?: number | undefined;
|
|
10559
|
+
} | undefined;
|
|
10560
|
+
password_history?: {
|
|
10561
|
+
enable?: boolean | undefined;
|
|
10562
|
+
size?: number | undefined;
|
|
10563
|
+
} | undefined;
|
|
10564
|
+
password_no_personal_info?: {
|
|
10565
|
+
enable?: boolean | undefined;
|
|
10566
|
+
} | undefined;
|
|
10567
|
+
password_dictionary?: {
|
|
10568
|
+
enable?: boolean | undefined;
|
|
10569
|
+
dictionary?: string[] | undefined;
|
|
10570
|
+
} | undefined;
|
|
10500
10571
|
}>;
|
|
10501
10572
|
export declare const connectionInsertSchema: z.ZodObject<{
|
|
10502
10573
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -10523,6 +10594,47 @@ export declare const connectionInsertSchema: z.ZodObject<{
|
|
|
10523
10594
|
twilio_sid: z.ZodOptional<z.ZodString>;
|
|
10524
10595
|
twilio_token: z.ZodOptional<z.ZodString>;
|
|
10525
10596
|
icon_url: z.ZodOptional<z.ZodString>;
|
|
10597
|
+
passwordPolicy: z.ZodOptional<z.ZodEnum<[
|
|
10598
|
+
"none",
|
|
10599
|
+
"low",
|
|
10600
|
+
"fair",
|
|
10601
|
+
"good",
|
|
10602
|
+
"excellent"
|
|
10603
|
+
]>>;
|
|
10604
|
+
password_complexity_options: z.ZodOptional<z.ZodObject<{
|
|
10605
|
+
min_length: z.ZodOptional<z.ZodNumber>;
|
|
10606
|
+
}, "strip", z.ZodTypeAny, {
|
|
10607
|
+
min_length?: number | undefined;
|
|
10608
|
+
}, {
|
|
10609
|
+
min_length?: number | undefined;
|
|
10610
|
+
}>>;
|
|
10611
|
+
password_history: z.ZodOptional<z.ZodObject<{
|
|
10612
|
+
enable: z.ZodOptional<z.ZodBoolean>;
|
|
10613
|
+
size: z.ZodOptional<z.ZodNumber>;
|
|
10614
|
+
}, "strip", z.ZodTypeAny, {
|
|
10615
|
+
enable?: boolean | undefined;
|
|
10616
|
+
size?: number | undefined;
|
|
10617
|
+
}, {
|
|
10618
|
+
enable?: boolean | undefined;
|
|
10619
|
+
size?: number | undefined;
|
|
10620
|
+
}>>;
|
|
10621
|
+
password_no_personal_info: z.ZodOptional<z.ZodObject<{
|
|
10622
|
+
enable: z.ZodOptional<z.ZodBoolean>;
|
|
10623
|
+
}, "strip", z.ZodTypeAny, {
|
|
10624
|
+
enable?: boolean | undefined;
|
|
10625
|
+
}, {
|
|
10626
|
+
enable?: boolean | undefined;
|
|
10627
|
+
}>>;
|
|
10628
|
+
password_dictionary: z.ZodOptional<z.ZodObject<{
|
|
10629
|
+
enable: z.ZodOptional<z.ZodBoolean>;
|
|
10630
|
+
dictionary: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
10631
|
+
}, "strip", z.ZodTypeAny, {
|
|
10632
|
+
enable?: boolean | undefined;
|
|
10633
|
+
dictionary?: string[] | undefined;
|
|
10634
|
+
}, {
|
|
10635
|
+
enable?: boolean | undefined;
|
|
10636
|
+
dictionary?: string[] | undefined;
|
|
10637
|
+
}>>;
|
|
10526
10638
|
}, "strip", z.ZodTypeAny, {
|
|
10527
10639
|
provider?: string | undefined;
|
|
10528
10640
|
client_id?: string | undefined;
|
|
@@ -10543,6 +10655,21 @@ export declare const connectionInsertSchema: z.ZodObject<{
|
|
|
10543
10655
|
twilio_sid?: string | undefined;
|
|
10544
10656
|
twilio_token?: string | undefined;
|
|
10545
10657
|
icon_url?: string | undefined;
|
|
10658
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
10659
|
+
password_complexity_options?: {
|
|
10660
|
+
min_length?: number | undefined;
|
|
10661
|
+
} | undefined;
|
|
10662
|
+
password_history?: {
|
|
10663
|
+
enable?: boolean | undefined;
|
|
10664
|
+
size?: number | undefined;
|
|
10665
|
+
} | undefined;
|
|
10666
|
+
password_no_personal_info?: {
|
|
10667
|
+
enable?: boolean | undefined;
|
|
10668
|
+
} | undefined;
|
|
10669
|
+
password_dictionary?: {
|
|
10670
|
+
enable?: boolean | undefined;
|
|
10671
|
+
dictionary?: string[] | undefined;
|
|
10672
|
+
} | undefined;
|
|
10546
10673
|
}, {
|
|
10547
10674
|
provider?: string | undefined;
|
|
10548
10675
|
client_id?: string | undefined;
|
|
@@ -10563,6 +10690,21 @@ export declare const connectionInsertSchema: z.ZodObject<{
|
|
|
10563
10690
|
twilio_sid?: string | undefined;
|
|
10564
10691
|
twilio_token?: string | undefined;
|
|
10565
10692
|
icon_url?: string | undefined;
|
|
10693
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
10694
|
+
password_complexity_options?: {
|
|
10695
|
+
min_length?: number | undefined;
|
|
10696
|
+
} | undefined;
|
|
10697
|
+
password_history?: {
|
|
10698
|
+
enable?: boolean | undefined;
|
|
10699
|
+
size?: number | undefined;
|
|
10700
|
+
} | undefined;
|
|
10701
|
+
password_no_personal_info?: {
|
|
10702
|
+
enable?: boolean | undefined;
|
|
10703
|
+
} | undefined;
|
|
10704
|
+
password_dictionary?: {
|
|
10705
|
+
enable?: boolean | undefined;
|
|
10706
|
+
dictionary?: string[] | undefined;
|
|
10707
|
+
} | undefined;
|
|
10566
10708
|
}>>;
|
|
10567
10709
|
enabled_clients: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
|
|
10568
10710
|
response_type: z.ZodOptional<z.ZodType<AuthorizationResponseType, z.ZodTypeDef, AuthorizationResponseType>>;
|
|
@@ -10592,6 +10734,21 @@ export declare const connectionInsertSchema: z.ZodObject<{
|
|
|
10592
10734
|
twilio_sid?: string | undefined;
|
|
10593
10735
|
twilio_token?: string | undefined;
|
|
10594
10736
|
icon_url?: string | undefined;
|
|
10737
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
10738
|
+
password_complexity_options?: {
|
|
10739
|
+
min_length?: number | undefined;
|
|
10740
|
+
} | undefined;
|
|
10741
|
+
password_history?: {
|
|
10742
|
+
enable?: boolean | undefined;
|
|
10743
|
+
size?: number | undefined;
|
|
10744
|
+
} | undefined;
|
|
10745
|
+
password_no_personal_info?: {
|
|
10746
|
+
enable?: boolean | undefined;
|
|
10747
|
+
} | undefined;
|
|
10748
|
+
password_dictionary?: {
|
|
10749
|
+
enable?: boolean | undefined;
|
|
10750
|
+
dictionary?: string[] | undefined;
|
|
10751
|
+
} | undefined;
|
|
10595
10752
|
};
|
|
10596
10753
|
name: string;
|
|
10597
10754
|
strategy: string;
|
|
@@ -10627,6 +10784,21 @@ export declare const connectionInsertSchema: z.ZodObject<{
|
|
|
10627
10784
|
twilio_sid?: string | undefined;
|
|
10628
10785
|
twilio_token?: string | undefined;
|
|
10629
10786
|
icon_url?: string | undefined;
|
|
10787
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
10788
|
+
password_complexity_options?: {
|
|
10789
|
+
min_length?: number | undefined;
|
|
10790
|
+
} | undefined;
|
|
10791
|
+
password_history?: {
|
|
10792
|
+
enable?: boolean | undefined;
|
|
10793
|
+
size?: number | undefined;
|
|
10794
|
+
} | undefined;
|
|
10795
|
+
password_no_personal_info?: {
|
|
10796
|
+
enable?: boolean | undefined;
|
|
10797
|
+
} | undefined;
|
|
10798
|
+
password_dictionary?: {
|
|
10799
|
+
enable?: boolean | undefined;
|
|
10800
|
+
dictionary?: string[] | undefined;
|
|
10801
|
+
} | undefined;
|
|
10630
10802
|
} | undefined;
|
|
10631
10803
|
id?: string | undefined;
|
|
10632
10804
|
is_system?: boolean | undefined;
|
|
@@ -10667,6 +10839,47 @@ export declare const connectionSchema: z.ZodObject<{
|
|
|
10667
10839
|
twilio_sid: z.ZodOptional<z.ZodString>;
|
|
10668
10840
|
twilio_token: z.ZodOptional<z.ZodString>;
|
|
10669
10841
|
icon_url: z.ZodOptional<z.ZodString>;
|
|
10842
|
+
passwordPolicy: z.ZodOptional<z.ZodEnum<[
|
|
10843
|
+
"none",
|
|
10844
|
+
"low",
|
|
10845
|
+
"fair",
|
|
10846
|
+
"good",
|
|
10847
|
+
"excellent"
|
|
10848
|
+
]>>;
|
|
10849
|
+
password_complexity_options: z.ZodOptional<z.ZodObject<{
|
|
10850
|
+
min_length: z.ZodOptional<z.ZodNumber>;
|
|
10851
|
+
}, "strip", z.ZodTypeAny, {
|
|
10852
|
+
min_length?: number | undefined;
|
|
10853
|
+
}, {
|
|
10854
|
+
min_length?: number | undefined;
|
|
10855
|
+
}>>;
|
|
10856
|
+
password_history: z.ZodOptional<z.ZodObject<{
|
|
10857
|
+
enable: z.ZodOptional<z.ZodBoolean>;
|
|
10858
|
+
size: z.ZodOptional<z.ZodNumber>;
|
|
10859
|
+
}, "strip", z.ZodTypeAny, {
|
|
10860
|
+
enable?: boolean | undefined;
|
|
10861
|
+
size?: number | undefined;
|
|
10862
|
+
}, {
|
|
10863
|
+
enable?: boolean | undefined;
|
|
10864
|
+
size?: number | undefined;
|
|
10865
|
+
}>>;
|
|
10866
|
+
password_no_personal_info: z.ZodOptional<z.ZodObject<{
|
|
10867
|
+
enable: z.ZodOptional<z.ZodBoolean>;
|
|
10868
|
+
}, "strip", z.ZodTypeAny, {
|
|
10869
|
+
enable?: boolean | undefined;
|
|
10870
|
+
}, {
|
|
10871
|
+
enable?: boolean | undefined;
|
|
10872
|
+
}>>;
|
|
10873
|
+
password_dictionary: z.ZodOptional<z.ZodObject<{
|
|
10874
|
+
enable: z.ZodOptional<z.ZodBoolean>;
|
|
10875
|
+
dictionary: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
10876
|
+
}, "strip", z.ZodTypeAny, {
|
|
10877
|
+
enable?: boolean | undefined;
|
|
10878
|
+
dictionary?: string[] | undefined;
|
|
10879
|
+
}, {
|
|
10880
|
+
enable?: boolean | undefined;
|
|
10881
|
+
dictionary?: string[] | undefined;
|
|
10882
|
+
}>>;
|
|
10670
10883
|
}, "strip", z.ZodTypeAny, {
|
|
10671
10884
|
provider?: string | undefined;
|
|
10672
10885
|
client_id?: string | undefined;
|
|
@@ -10687,6 +10900,21 @@ export declare const connectionSchema: z.ZodObject<{
|
|
|
10687
10900
|
twilio_sid?: string | undefined;
|
|
10688
10901
|
twilio_token?: string | undefined;
|
|
10689
10902
|
icon_url?: string | undefined;
|
|
10903
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
10904
|
+
password_complexity_options?: {
|
|
10905
|
+
min_length?: number | undefined;
|
|
10906
|
+
} | undefined;
|
|
10907
|
+
password_history?: {
|
|
10908
|
+
enable?: boolean | undefined;
|
|
10909
|
+
size?: number | undefined;
|
|
10910
|
+
} | undefined;
|
|
10911
|
+
password_no_personal_info?: {
|
|
10912
|
+
enable?: boolean | undefined;
|
|
10913
|
+
} | undefined;
|
|
10914
|
+
password_dictionary?: {
|
|
10915
|
+
enable?: boolean | undefined;
|
|
10916
|
+
dictionary?: string[] | undefined;
|
|
10917
|
+
} | undefined;
|
|
10690
10918
|
}, {
|
|
10691
10919
|
provider?: string | undefined;
|
|
10692
10920
|
client_id?: string | undefined;
|
|
@@ -10707,6 +10935,21 @@ export declare const connectionSchema: z.ZodObject<{
|
|
|
10707
10935
|
twilio_sid?: string | undefined;
|
|
10708
10936
|
twilio_token?: string | undefined;
|
|
10709
10937
|
icon_url?: string | undefined;
|
|
10938
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
10939
|
+
password_complexity_options?: {
|
|
10940
|
+
min_length?: number | undefined;
|
|
10941
|
+
} | undefined;
|
|
10942
|
+
password_history?: {
|
|
10943
|
+
enable?: boolean | undefined;
|
|
10944
|
+
size?: number | undefined;
|
|
10945
|
+
} | undefined;
|
|
10946
|
+
password_no_personal_info?: {
|
|
10947
|
+
enable?: boolean | undefined;
|
|
10948
|
+
} | undefined;
|
|
10949
|
+
password_dictionary?: {
|
|
10950
|
+
enable?: boolean | undefined;
|
|
10951
|
+
dictionary?: string[] | undefined;
|
|
10952
|
+
} | undefined;
|
|
10710
10953
|
}>>;
|
|
10711
10954
|
enabled_clients: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
|
|
10712
10955
|
response_type: z.ZodOptional<z.ZodType<AuthorizationResponseType, z.ZodTypeDef, AuthorizationResponseType>>;
|
|
@@ -10738,6 +10981,21 @@ export declare const connectionSchema: z.ZodObject<{
|
|
|
10738
10981
|
twilio_sid?: string | undefined;
|
|
10739
10982
|
twilio_token?: string | undefined;
|
|
10740
10983
|
icon_url?: string | undefined;
|
|
10984
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
10985
|
+
password_complexity_options?: {
|
|
10986
|
+
min_length?: number | undefined;
|
|
10987
|
+
} | undefined;
|
|
10988
|
+
password_history?: {
|
|
10989
|
+
enable?: boolean | undefined;
|
|
10990
|
+
size?: number | undefined;
|
|
10991
|
+
} | undefined;
|
|
10992
|
+
password_no_personal_info?: {
|
|
10993
|
+
enable?: boolean | undefined;
|
|
10994
|
+
} | undefined;
|
|
10995
|
+
password_dictionary?: {
|
|
10996
|
+
enable?: boolean | undefined;
|
|
10997
|
+
dictionary?: string[] | undefined;
|
|
10998
|
+
} | undefined;
|
|
10741
10999
|
};
|
|
10742
11000
|
name: string;
|
|
10743
11001
|
strategy: string;
|
|
@@ -10775,6 +11033,21 @@ export declare const connectionSchema: z.ZodObject<{
|
|
|
10775
11033
|
twilio_sid?: string | undefined;
|
|
10776
11034
|
twilio_token?: string | undefined;
|
|
10777
11035
|
icon_url?: string | undefined;
|
|
11036
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
11037
|
+
password_complexity_options?: {
|
|
11038
|
+
min_length?: number | undefined;
|
|
11039
|
+
} | undefined;
|
|
11040
|
+
password_history?: {
|
|
11041
|
+
enable?: boolean | undefined;
|
|
11042
|
+
size?: number | undefined;
|
|
11043
|
+
} | undefined;
|
|
11044
|
+
password_no_personal_info?: {
|
|
11045
|
+
enable?: boolean | undefined;
|
|
11046
|
+
} | undefined;
|
|
11047
|
+
password_dictionary?: {
|
|
11048
|
+
enable?: boolean | undefined;
|
|
11049
|
+
dictionary?: string[] | undefined;
|
|
11050
|
+
} | undefined;
|
|
10778
11051
|
} | undefined;
|
|
10779
11052
|
id?: string | undefined;
|
|
10780
11053
|
is_system?: boolean | undefined;
|
|
@@ -34636,53 +34909,53 @@ export declare const fontDetailsSchema: z.ZodObject<{
|
|
|
34636
34909
|
bold: z.ZodBoolean;
|
|
34637
34910
|
size: z.ZodNumber;
|
|
34638
34911
|
}, "strip", z.ZodTypeAny, {
|
|
34639
|
-
bold: boolean;
|
|
34640
34912
|
size: number;
|
|
34641
|
-
}, {
|
|
34642
34913
|
bold: boolean;
|
|
34914
|
+
}, {
|
|
34643
34915
|
size: number;
|
|
34916
|
+
bold: boolean;
|
|
34644
34917
|
}>;
|
|
34645
34918
|
export declare const fontsSchema: z.ZodObject<{
|
|
34646
34919
|
body_text: z.ZodObject<{
|
|
34647
34920
|
bold: z.ZodBoolean;
|
|
34648
34921
|
size: z.ZodNumber;
|
|
34649
34922
|
}, "strip", z.ZodTypeAny, {
|
|
34650
|
-
bold: boolean;
|
|
34651
34923
|
size: number;
|
|
34652
|
-
}, {
|
|
34653
34924
|
bold: boolean;
|
|
34925
|
+
}, {
|
|
34654
34926
|
size: number;
|
|
34927
|
+
bold: boolean;
|
|
34655
34928
|
}>;
|
|
34656
34929
|
buttons_text: z.ZodObject<{
|
|
34657
34930
|
bold: z.ZodBoolean;
|
|
34658
34931
|
size: z.ZodNumber;
|
|
34659
34932
|
}, "strip", z.ZodTypeAny, {
|
|
34660
|
-
bold: boolean;
|
|
34661
34933
|
size: number;
|
|
34662
|
-
}, {
|
|
34663
34934
|
bold: boolean;
|
|
34935
|
+
}, {
|
|
34664
34936
|
size: number;
|
|
34937
|
+
bold: boolean;
|
|
34665
34938
|
}>;
|
|
34666
34939
|
font_url: z.ZodString;
|
|
34667
34940
|
input_labels: z.ZodObject<{
|
|
34668
34941
|
bold: z.ZodBoolean;
|
|
34669
34942
|
size: z.ZodNumber;
|
|
34670
34943
|
}, "strip", z.ZodTypeAny, {
|
|
34671
|
-
bold: boolean;
|
|
34672
34944
|
size: number;
|
|
34673
|
-
}, {
|
|
34674
34945
|
bold: boolean;
|
|
34946
|
+
}, {
|
|
34675
34947
|
size: number;
|
|
34948
|
+
bold: boolean;
|
|
34676
34949
|
}>;
|
|
34677
34950
|
links: z.ZodObject<{
|
|
34678
34951
|
bold: z.ZodBoolean;
|
|
34679
34952
|
size: z.ZodNumber;
|
|
34680
34953
|
}, "strip", z.ZodTypeAny, {
|
|
34681
|
-
bold: boolean;
|
|
34682
34954
|
size: number;
|
|
34683
|
-
}, {
|
|
34684
34955
|
bold: boolean;
|
|
34956
|
+
}, {
|
|
34685
34957
|
size: number;
|
|
34958
|
+
bold: boolean;
|
|
34686
34959
|
}>;
|
|
34687
34960
|
links_style: z.ZodEnum<[
|
|
34688
34961
|
"normal",
|
|
@@ -34693,77 +34966,77 @@ export declare const fontsSchema: z.ZodObject<{
|
|
|
34693
34966
|
bold: z.ZodBoolean;
|
|
34694
34967
|
size: z.ZodNumber;
|
|
34695
34968
|
}, "strip", z.ZodTypeAny, {
|
|
34696
|
-
bold: boolean;
|
|
34697
34969
|
size: number;
|
|
34698
|
-
}, {
|
|
34699
34970
|
bold: boolean;
|
|
34971
|
+
}, {
|
|
34700
34972
|
size: number;
|
|
34973
|
+
bold: boolean;
|
|
34701
34974
|
}>;
|
|
34702
34975
|
title: z.ZodObject<{
|
|
34703
34976
|
bold: z.ZodBoolean;
|
|
34704
34977
|
size: z.ZodNumber;
|
|
34705
34978
|
}, "strip", z.ZodTypeAny, {
|
|
34706
|
-
bold: boolean;
|
|
34707
34979
|
size: number;
|
|
34708
|
-
}, {
|
|
34709
34980
|
bold: boolean;
|
|
34981
|
+
}, {
|
|
34710
34982
|
size: number;
|
|
34983
|
+
bold: boolean;
|
|
34711
34984
|
}>;
|
|
34712
34985
|
}, "strip", z.ZodTypeAny, {
|
|
34713
34986
|
title: {
|
|
34714
|
-
bold: boolean;
|
|
34715
34987
|
size: number;
|
|
34988
|
+
bold: boolean;
|
|
34716
34989
|
};
|
|
34717
34990
|
links: {
|
|
34718
|
-
bold: boolean;
|
|
34719
34991
|
size: number;
|
|
34992
|
+
bold: boolean;
|
|
34720
34993
|
};
|
|
34721
34994
|
body_text: {
|
|
34722
|
-
bold: boolean;
|
|
34723
34995
|
size: number;
|
|
34996
|
+
bold: boolean;
|
|
34724
34997
|
};
|
|
34725
34998
|
buttons_text: {
|
|
34726
|
-
bold: boolean;
|
|
34727
34999
|
size: number;
|
|
35000
|
+
bold: boolean;
|
|
34728
35001
|
};
|
|
34729
35002
|
font_url: string;
|
|
34730
35003
|
input_labels: {
|
|
34731
|
-
bold: boolean;
|
|
34732
35004
|
size: number;
|
|
35005
|
+
bold: boolean;
|
|
34733
35006
|
};
|
|
34734
35007
|
links_style: "normal" | "underlined";
|
|
34735
35008
|
reference_text_size: number;
|
|
34736
35009
|
subtitle: {
|
|
34737
|
-
bold: boolean;
|
|
34738
35010
|
size: number;
|
|
35011
|
+
bold: boolean;
|
|
34739
35012
|
};
|
|
34740
35013
|
}, {
|
|
34741
35014
|
title: {
|
|
34742
|
-
bold: boolean;
|
|
34743
35015
|
size: number;
|
|
35016
|
+
bold: boolean;
|
|
34744
35017
|
};
|
|
34745
35018
|
links: {
|
|
34746
|
-
bold: boolean;
|
|
34747
35019
|
size: number;
|
|
35020
|
+
bold: boolean;
|
|
34748
35021
|
};
|
|
34749
35022
|
body_text: {
|
|
34750
|
-
bold: boolean;
|
|
34751
35023
|
size: number;
|
|
35024
|
+
bold: boolean;
|
|
34752
35025
|
};
|
|
34753
35026
|
buttons_text: {
|
|
34754
|
-
bold: boolean;
|
|
34755
35027
|
size: number;
|
|
35028
|
+
bold: boolean;
|
|
34756
35029
|
};
|
|
34757
35030
|
font_url: string;
|
|
34758
35031
|
input_labels: {
|
|
34759
|
-
bold: boolean;
|
|
34760
35032
|
size: number;
|
|
35033
|
+
bold: boolean;
|
|
34761
35034
|
};
|
|
34762
35035
|
links_style: "normal" | "underlined";
|
|
34763
35036
|
reference_text_size: number;
|
|
34764
35037
|
subtitle: {
|
|
34765
|
-
bold: boolean;
|
|
34766
35038
|
size: number;
|
|
35039
|
+
bold: boolean;
|
|
34767
35040
|
};
|
|
34768
35041
|
}>;
|
|
34769
35042
|
export declare const pageBackgroundSchema: z.ZodObject<{
|
|
@@ -34925,42 +35198,42 @@ export declare const themeInsertSchema: z.ZodObject<{
|
|
|
34925
35198
|
bold: z.ZodBoolean;
|
|
34926
35199
|
size: z.ZodNumber;
|
|
34927
35200
|
}, "strip", z.ZodTypeAny, {
|
|
34928
|
-
bold: boolean;
|
|
34929
35201
|
size: number;
|
|
34930
|
-
}, {
|
|
34931
35202
|
bold: boolean;
|
|
35203
|
+
}, {
|
|
34932
35204
|
size: number;
|
|
35205
|
+
bold: boolean;
|
|
34933
35206
|
}>;
|
|
34934
35207
|
buttons_text: z.ZodObject<{
|
|
34935
35208
|
bold: z.ZodBoolean;
|
|
34936
35209
|
size: z.ZodNumber;
|
|
34937
35210
|
}, "strip", z.ZodTypeAny, {
|
|
34938
|
-
bold: boolean;
|
|
34939
35211
|
size: number;
|
|
34940
|
-
}, {
|
|
34941
35212
|
bold: boolean;
|
|
35213
|
+
}, {
|
|
34942
35214
|
size: number;
|
|
35215
|
+
bold: boolean;
|
|
34943
35216
|
}>;
|
|
34944
35217
|
font_url: z.ZodString;
|
|
34945
35218
|
input_labels: z.ZodObject<{
|
|
34946
35219
|
bold: z.ZodBoolean;
|
|
34947
35220
|
size: z.ZodNumber;
|
|
34948
35221
|
}, "strip", z.ZodTypeAny, {
|
|
34949
|
-
bold: boolean;
|
|
34950
35222
|
size: number;
|
|
34951
|
-
}, {
|
|
34952
35223
|
bold: boolean;
|
|
35224
|
+
}, {
|
|
34953
35225
|
size: number;
|
|
35226
|
+
bold: boolean;
|
|
34954
35227
|
}>;
|
|
34955
35228
|
links: z.ZodObject<{
|
|
34956
35229
|
bold: z.ZodBoolean;
|
|
34957
35230
|
size: z.ZodNumber;
|
|
34958
35231
|
}, "strip", z.ZodTypeAny, {
|
|
34959
|
-
bold: boolean;
|
|
34960
35232
|
size: number;
|
|
34961
|
-
}, {
|
|
34962
35233
|
bold: boolean;
|
|
35234
|
+
}, {
|
|
34963
35235
|
size: number;
|
|
35236
|
+
bold: boolean;
|
|
34964
35237
|
}>;
|
|
34965
35238
|
links_style: z.ZodEnum<[
|
|
34966
35239
|
"normal",
|
|
@@ -34971,77 +35244,77 @@ export declare const themeInsertSchema: z.ZodObject<{
|
|
|
34971
35244
|
bold: z.ZodBoolean;
|
|
34972
35245
|
size: z.ZodNumber;
|
|
34973
35246
|
}, "strip", z.ZodTypeAny, {
|
|
34974
|
-
bold: boolean;
|
|
34975
35247
|
size: number;
|
|
34976
|
-
}, {
|
|
34977
35248
|
bold: boolean;
|
|
35249
|
+
}, {
|
|
34978
35250
|
size: number;
|
|
35251
|
+
bold: boolean;
|
|
34979
35252
|
}>;
|
|
34980
35253
|
title: z.ZodObject<{
|
|
34981
35254
|
bold: z.ZodBoolean;
|
|
34982
35255
|
size: z.ZodNumber;
|
|
34983
35256
|
}, "strip", z.ZodTypeAny, {
|
|
34984
|
-
bold: boolean;
|
|
34985
35257
|
size: number;
|
|
34986
|
-
}, {
|
|
34987
35258
|
bold: boolean;
|
|
35259
|
+
}, {
|
|
34988
35260
|
size: number;
|
|
35261
|
+
bold: boolean;
|
|
34989
35262
|
}>;
|
|
34990
35263
|
}, "strip", z.ZodTypeAny, {
|
|
34991
35264
|
title: {
|
|
34992
|
-
bold: boolean;
|
|
34993
35265
|
size: number;
|
|
35266
|
+
bold: boolean;
|
|
34994
35267
|
};
|
|
34995
35268
|
links: {
|
|
34996
|
-
bold: boolean;
|
|
34997
35269
|
size: number;
|
|
35270
|
+
bold: boolean;
|
|
34998
35271
|
};
|
|
34999
35272
|
body_text: {
|
|
35000
|
-
bold: boolean;
|
|
35001
35273
|
size: number;
|
|
35274
|
+
bold: boolean;
|
|
35002
35275
|
};
|
|
35003
35276
|
buttons_text: {
|
|
35004
|
-
bold: boolean;
|
|
35005
35277
|
size: number;
|
|
35278
|
+
bold: boolean;
|
|
35006
35279
|
};
|
|
35007
35280
|
font_url: string;
|
|
35008
35281
|
input_labels: {
|
|
35009
|
-
bold: boolean;
|
|
35010
35282
|
size: number;
|
|
35283
|
+
bold: boolean;
|
|
35011
35284
|
};
|
|
35012
35285
|
links_style: "normal" | "underlined";
|
|
35013
35286
|
reference_text_size: number;
|
|
35014
35287
|
subtitle: {
|
|
35015
|
-
bold: boolean;
|
|
35016
35288
|
size: number;
|
|
35289
|
+
bold: boolean;
|
|
35017
35290
|
};
|
|
35018
35291
|
}, {
|
|
35019
35292
|
title: {
|
|
35020
|
-
bold: boolean;
|
|
35021
35293
|
size: number;
|
|
35294
|
+
bold: boolean;
|
|
35022
35295
|
};
|
|
35023
35296
|
links: {
|
|
35024
|
-
bold: boolean;
|
|
35025
35297
|
size: number;
|
|
35298
|
+
bold: boolean;
|
|
35026
35299
|
};
|
|
35027
35300
|
body_text: {
|
|
35028
|
-
bold: boolean;
|
|
35029
35301
|
size: number;
|
|
35302
|
+
bold: boolean;
|
|
35030
35303
|
};
|
|
35031
35304
|
buttons_text: {
|
|
35032
|
-
bold: boolean;
|
|
35033
35305
|
size: number;
|
|
35306
|
+
bold: boolean;
|
|
35034
35307
|
};
|
|
35035
35308
|
font_url: string;
|
|
35036
35309
|
input_labels: {
|
|
35037
|
-
bold: boolean;
|
|
35038
35310
|
size: number;
|
|
35311
|
+
bold: boolean;
|
|
35039
35312
|
};
|
|
35040
35313
|
links_style: "normal" | "underlined";
|
|
35041
35314
|
reference_text_size: number;
|
|
35042
35315
|
subtitle: {
|
|
35043
|
-
bold: boolean;
|
|
35044
35316
|
size: number;
|
|
35317
|
+
bold: boolean;
|
|
35045
35318
|
};
|
|
35046
35319
|
}>;
|
|
35047
35320
|
page_background: z.ZodObject<{
|
|
@@ -35133,31 +35406,31 @@ export declare const themeInsertSchema: z.ZodObject<{
|
|
|
35133
35406
|
displayName: string;
|
|
35134
35407
|
fonts: {
|
|
35135
35408
|
title: {
|
|
35136
|
-
bold: boolean;
|
|
35137
35409
|
size: number;
|
|
35410
|
+
bold: boolean;
|
|
35138
35411
|
};
|
|
35139
35412
|
links: {
|
|
35140
|
-
bold: boolean;
|
|
35141
35413
|
size: number;
|
|
35414
|
+
bold: boolean;
|
|
35142
35415
|
};
|
|
35143
35416
|
body_text: {
|
|
35144
|
-
bold: boolean;
|
|
35145
35417
|
size: number;
|
|
35418
|
+
bold: boolean;
|
|
35146
35419
|
};
|
|
35147
35420
|
buttons_text: {
|
|
35148
|
-
bold: boolean;
|
|
35149
35421
|
size: number;
|
|
35422
|
+
bold: boolean;
|
|
35150
35423
|
};
|
|
35151
35424
|
font_url: string;
|
|
35152
35425
|
input_labels: {
|
|
35153
|
-
bold: boolean;
|
|
35154
35426
|
size: number;
|
|
35427
|
+
bold: boolean;
|
|
35155
35428
|
};
|
|
35156
35429
|
links_style: "normal" | "underlined";
|
|
35157
35430
|
reference_text_size: number;
|
|
35158
35431
|
subtitle: {
|
|
35159
|
-
bold: boolean;
|
|
35160
35432
|
size: number;
|
|
35433
|
+
bold: boolean;
|
|
35161
35434
|
};
|
|
35162
35435
|
};
|
|
35163
35436
|
widget: {
|
|
@@ -35208,31 +35481,31 @@ export declare const themeInsertSchema: z.ZodObject<{
|
|
|
35208
35481
|
displayName: string;
|
|
35209
35482
|
fonts: {
|
|
35210
35483
|
title: {
|
|
35211
|
-
bold: boolean;
|
|
35212
35484
|
size: number;
|
|
35485
|
+
bold: boolean;
|
|
35213
35486
|
};
|
|
35214
35487
|
links: {
|
|
35215
|
-
bold: boolean;
|
|
35216
35488
|
size: number;
|
|
35489
|
+
bold: boolean;
|
|
35217
35490
|
};
|
|
35218
35491
|
body_text: {
|
|
35219
|
-
bold: boolean;
|
|
35220
35492
|
size: number;
|
|
35493
|
+
bold: boolean;
|
|
35221
35494
|
};
|
|
35222
35495
|
buttons_text: {
|
|
35223
|
-
bold: boolean;
|
|
35224
35496
|
size: number;
|
|
35497
|
+
bold: boolean;
|
|
35225
35498
|
};
|
|
35226
35499
|
font_url: string;
|
|
35227
35500
|
input_labels: {
|
|
35228
|
-
bold: boolean;
|
|
35229
35501
|
size: number;
|
|
35502
|
+
bold: boolean;
|
|
35230
35503
|
};
|
|
35231
35504
|
links_style: "normal" | "underlined";
|
|
35232
35505
|
reference_text_size: number;
|
|
35233
35506
|
subtitle: {
|
|
35234
|
-
bold: boolean;
|
|
35235
35507
|
size: number;
|
|
35508
|
+
bold: boolean;
|
|
35236
35509
|
};
|
|
35237
35510
|
};
|
|
35238
35511
|
widget: {
|
|
@@ -35355,42 +35628,42 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
35355
35628
|
bold: z.ZodBoolean;
|
|
35356
35629
|
size: z.ZodNumber;
|
|
35357
35630
|
}, "strip", z.ZodTypeAny, {
|
|
35358
|
-
bold: boolean;
|
|
35359
35631
|
size: number;
|
|
35360
|
-
}, {
|
|
35361
35632
|
bold: boolean;
|
|
35633
|
+
}, {
|
|
35362
35634
|
size: number;
|
|
35635
|
+
bold: boolean;
|
|
35363
35636
|
}>;
|
|
35364
35637
|
buttons_text: z.ZodObject<{
|
|
35365
35638
|
bold: z.ZodBoolean;
|
|
35366
35639
|
size: z.ZodNumber;
|
|
35367
35640
|
}, "strip", z.ZodTypeAny, {
|
|
35368
|
-
bold: boolean;
|
|
35369
35641
|
size: number;
|
|
35370
|
-
}, {
|
|
35371
35642
|
bold: boolean;
|
|
35643
|
+
}, {
|
|
35372
35644
|
size: number;
|
|
35645
|
+
bold: boolean;
|
|
35373
35646
|
}>;
|
|
35374
35647
|
font_url: z.ZodString;
|
|
35375
35648
|
input_labels: z.ZodObject<{
|
|
35376
35649
|
bold: z.ZodBoolean;
|
|
35377
35650
|
size: z.ZodNumber;
|
|
35378
35651
|
}, "strip", z.ZodTypeAny, {
|
|
35379
|
-
bold: boolean;
|
|
35380
35652
|
size: number;
|
|
35381
|
-
}, {
|
|
35382
35653
|
bold: boolean;
|
|
35654
|
+
}, {
|
|
35383
35655
|
size: number;
|
|
35656
|
+
bold: boolean;
|
|
35384
35657
|
}>;
|
|
35385
35658
|
links: z.ZodObject<{
|
|
35386
35659
|
bold: z.ZodBoolean;
|
|
35387
35660
|
size: z.ZodNumber;
|
|
35388
35661
|
}, "strip", z.ZodTypeAny, {
|
|
35389
|
-
bold: boolean;
|
|
35390
35662
|
size: number;
|
|
35391
|
-
}, {
|
|
35392
35663
|
bold: boolean;
|
|
35664
|
+
}, {
|
|
35393
35665
|
size: number;
|
|
35666
|
+
bold: boolean;
|
|
35394
35667
|
}>;
|
|
35395
35668
|
links_style: z.ZodEnum<[
|
|
35396
35669
|
"normal",
|
|
@@ -35401,77 +35674,77 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
35401
35674
|
bold: z.ZodBoolean;
|
|
35402
35675
|
size: z.ZodNumber;
|
|
35403
35676
|
}, "strip", z.ZodTypeAny, {
|
|
35404
|
-
bold: boolean;
|
|
35405
35677
|
size: number;
|
|
35406
|
-
}, {
|
|
35407
35678
|
bold: boolean;
|
|
35679
|
+
}, {
|
|
35408
35680
|
size: number;
|
|
35681
|
+
bold: boolean;
|
|
35409
35682
|
}>;
|
|
35410
35683
|
title: z.ZodObject<{
|
|
35411
35684
|
bold: z.ZodBoolean;
|
|
35412
35685
|
size: z.ZodNumber;
|
|
35413
35686
|
}, "strip", z.ZodTypeAny, {
|
|
35414
|
-
bold: boolean;
|
|
35415
35687
|
size: number;
|
|
35416
|
-
}, {
|
|
35417
35688
|
bold: boolean;
|
|
35689
|
+
}, {
|
|
35418
35690
|
size: number;
|
|
35691
|
+
bold: boolean;
|
|
35419
35692
|
}>;
|
|
35420
35693
|
}, "strip", z.ZodTypeAny, {
|
|
35421
35694
|
title: {
|
|
35422
|
-
bold: boolean;
|
|
35423
35695
|
size: number;
|
|
35696
|
+
bold: boolean;
|
|
35424
35697
|
};
|
|
35425
35698
|
links: {
|
|
35426
|
-
bold: boolean;
|
|
35427
35699
|
size: number;
|
|
35700
|
+
bold: boolean;
|
|
35428
35701
|
};
|
|
35429
35702
|
body_text: {
|
|
35430
|
-
bold: boolean;
|
|
35431
35703
|
size: number;
|
|
35704
|
+
bold: boolean;
|
|
35432
35705
|
};
|
|
35433
35706
|
buttons_text: {
|
|
35434
|
-
bold: boolean;
|
|
35435
35707
|
size: number;
|
|
35708
|
+
bold: boolean;
|
|
35436
35709
|
};
|
|
35437
35710
|
font_url: string;
|
|
35438
35711
|
input_labels: {
|
|
35439
|
-
bold: boolean;
|
|
35440
35712
|
size: number;
|
|
35713
|
+
bold: boolean;
|
|
35441
35714
|
};
|
|
35442
35715
|
links_style: "normal" | "underlined";
|
|
35443
35716
|
reference_text_size: number;
|
|
35444
35717
|
subtitle: {
|
|
35445
|
-
bold: boolean;
|
|
35446
35718
|
size: number;
|
|
35719
|
+
bold: boolean;
|
|
35447
35720
|
};
|
|
35448
35721
|
}, {
|
|
35449
35722
|
title: {
|
|
35450
|
-
bold: boolean;
|
|
35451
35723
|
size: number;
|
|
35724
|
+
bold: boolean;
|
|
35452
35725
|
};
|
|
35453
35726
|
links: {
|
|
35454
|
-
bold: boolean;
|
|
35455
35727
|
size: number;
|
|
35728
|
+
bold: boolean;
|
|
35456
35729
|
};
|
|
35457
35730
|
body_text: {
|
|
35458
|
-
bold: boolean;
|
|
35459
35731
|
size: number;
|
|
35732
|
+
bold: boolean;
|
|
35460
35733
|
};
|
|
35461
35734
|
buttons_text: {
|
|
35462
|
-
bold: boolean;
|
|
35463
35735
|
size: number;
|
|
35736
|
+
bold: boolean;
|
|
35464
35737
|
};
|
|
35465
35738
|
font_url: string;
|
|
35466
35739
|
input_labels: {
|
|
35467
|
-
bold: boolean;
|
|
35468
35740
|
size: number;
|
|
35741
|
+
bold: boolean;
|
|
35469
35742
|
};
|
|
35470
35743
|
links_style: "normal" | "underlined";
|
|
35471
35744
|
reference_text_size: number;
|
|
35472
35745
|
subtitle: {
|
|
35473
|
-
bold: boolean;
|
|
35474
35746
|
size: number;
|
|
35747
|
+
bold: boolean;
|
|
35475
35748
|
};
|
|
35476
35749
|
}>;
|
|
35477
35750
|
page_background: z.ZodObject<{
|
|
@@ -35565,31 +35838,31 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
35565
35838
|
displayName: string;
|
|
35566
35839
|
fonts: {
|
|
35567
35840
|
title: {
|
|
35568
|
-
bold: boolean;
|
|
35569
35841
|
size: number;
|
|
35842
|
+
bold: boolean;
|
|
35570
35843
|
};
|
|
35571
35844
|
links: {
|
|
35572
|
-
bold: boolean;
|
|
35573
35845
|
size: number;
|
|
35846
|
+
bold: boolean;
|
|
35574
35847
|
};
|
|
35575
35848
|
body_text: {
|
|
35576
|
-
bold: boolean;
|
|
35577
35849
|
size: number;
|
|
35850
|
+
bold: boolean;
|
|
35578
35851
|
};
|
|
35579
35852
|
buttons_text: {
|
|
35580
|
-
bold: boolean;
|
|
35581
35853
|
size: number;
|
|
35854
|
+
bold: boolean;
|
|
35582
35855
|
};
|
|
35583
35856
|
font_url: string;
|
|
35584
35857
|
input_labels: {
|
|
35585
|
-
bold: boolean;
|
|
35586
35858
|
size: number;
|
|
35859
|
+
bold: boolean;
|
|
35587
35860
|
};
|
|
35588
35861
|
links_style: "normal" | "underlined";
|
|
35589
35862
|
reference_text_size: number;
|
|
35590
35863
|
subtitle: {
|
|
35591
|
-
bold: boolean;
|
|
35592
35864
|
size: number;
|
|
35865
|
+
bold: boolean;
|
|
35593
35866
|
};
|
|
35594
35867
|
};
|
|
35595
35868
|
widget: {
|
|
@@ -35641,31 +35914,31 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
35641
35914
|
displayName: string;
|
|
35642
35915
|
fonts: {
|
|
35643
35916
|
title: {
|
|
35644
|
-
bold: boolean;
|
|
35645
35917
|
size: number;
|
|
35918
|
+
bold: boolean;
|
|
35646
35919
|
};
|
|
35647
35920
|
links: {
|
|
35648
|
-
bold: boolean;
|
|
35649
35921
|
size: number;
|
|
35922
|
+
bold: boolean;
|
|
35650
35923
|
};
|
|
35651
35924
|
body_text: {
|
|
35652
|
-
bold: boolean;
|
|
35653
35925
|
size: number;
|
|
35926
|
+
bold: boolean;
|
|
35654
35927
|
};
|
|
35655
35928
|
buttons_text: {
|
|
35656
|
-
bold: boolean;
|
|
35657
35929
|
size: number;
|
|
35930
|
+
bold: boolean;
|
|
35658
35931
|
};
|
|
35659
35932
|
font_url: string;
|
|
35660
35933
|
input_labels: {
|
|
35661
|
-
bold: boolean;
|
|
35662
35934
|
size: number;
|
|
35935
|
+
bold: boolean;
|
|
35663
35936
|
};
|
|
35664
35937
|
links_style: "normal" | "underlined";
|
|
35665
35938
|
reference_text_size: number;
|
|
35666
35939
|
subtitle: {
|
|
35667
|
-
bold: boolean;
|
|
35668
35940
|
size: number;
|
|
35941
|
+
bold: boolean;
|
|
35669
35942
|
};
|
|
35670
35943
|
};
|
|
35671
35944
|
widget: {
|
|
@@ -38540,6 +38813,47 @@ declare const enrichedClientSchema: z.ZodObject<{
|
|
|
38540
38813
|
twilio_sid: z.ZodOptional<z.ZodString>;
|
|
38541
38814
|
twilio_token: z.ZodOptional<z.ZodString>;
|
|
38542
38815
|
icon_url: z.ZodOptional<z.ZodString>;
|
|
38816
|
+
passwordPolicy: z.ZodOptional<z.ZodEnum<[
|
|
38817
|
+
"none",
|
|
38818
|
+
"low",
|
|
38819
|
+
"fair",
|
|
38820
|
+
"good",
|
|
38821
|
+
"excellent"
|
|
38822
|
+
]>>;
|
|
38823
|
+
password_complexity_options: z.ZodOptional<z.ZodObject<{
|
|
38824
|
+
min_length: z.ZodOptional<z.ZodNumber>;
|
|
38825
|
+
}, "strip", z.ZodTypeAny, {
|
|
38826
|
+
min_length?: number | undefined;
|
|
38827
|
+
}, {
|
|
38828
|
+
min_length?: number | undefined;
|
|
38829
|
+
}>>;
|
|
38830
|
+
password_history: z.ZodOptional<z.ZodObject<{
|
|
38831
|
+
enable: z.ZodOptional<z.ZodBoolean>;
|
|
38832
|
+
size: z.ZodOptional<z.ZodNumber>;
|
|
38833
|
+
}, "strip", z.ZodTypeAny, {
|
|
38834
|
+
enable?: boolean | undefined;
|
|
38835
|
+
size?: number | undefined;
|
|
38836
|
+
}, {
|
|
38837
|
+
enable?: boolean | undefined;
|
|
38838
|
+
size?: number | undefined;
|
|
38839
|
+
}>>;
|
|
38840
|
+
password_no_personal_info: z.ZodOptional<z.ZodObject<{
|
|
38841
|
+
enable: z.ZodOptional<z.ZodBoolean>;
|
|
38842
|
+
}, "strip", z.ZodTypeAny, {
|
|
38843
|
+
enable?: boolean | undefined;
|
|
38844
|
+
}, {
|
|
38845
|
+
enable?: boolean | undefined;
|
|
38846
|
+
}>>;
|
|
38847
|
+
password_dictionary: z.ZodOptional<z.ZodObject<{
|
|
38848
|
+
enable: z.ZodOptional<z.ZodBoolean>;
|
|
38849
|
+
dictionary: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
38850
|
+
}, "strip", z.ZodTypeAny, {
|
|
38851
|
+
enable?: boolean | undefined;
|
|
38852
|
+
dictionary?: string[] | undefined;
|
|
38853
|
+
}, {
|
|
38854
|
+
enable?: boolean | undefined;
|
|
38855
|
+
dictionary?: string[] | undefined;
|
|
38856
|
+
}>>;
|
|
38543
38857
|
}, "strip", z.ZodTypeAny, {
|
|
38544
38858
|
provider?: string | undefined;
|
|
38545
38859
|
client_id?: string | undefined;
|
|
@@ -38560,6 +38874,21 @@ declare const enrichedClientSchema: z.ZodObject<{
|
|
|
38560
38874
|
twilio_sid?: string | undefined;
|
|
38561
38875
|
twilio_token?: string | undefined;
|
|
38562
38876
|
icon_url?: string | undefined;
|
|
38877
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
38878
|
+
password_complexity_options?: {
|
|
38879
|
+
min_length?: number | undefined;
|
|
38880
|
+
} | undefined;
|
|
38881
|
+
password_history?: {
|
|
38882
|
+
enable?: boolean | undefined;
|
|
38883
|
+
size?: number | undefined;
|
|
38884
|
+
} | undefined;
|
|
38885
|
+
password_no_personal_info?: {
|
|
38886
|
+
enable?: boolean | undefined;
|
|
38887
|
+
} | undefined;
|
|
38888
|
+
password_dictionary?: {
|
|
38889
|
+
enable?: boolean | undefined;
|
|
38890
|
+
dictionary?: string[] | undefined;
|
|
38891
|
+
} | undefined;
|
|
38563
38892
|
}, {
|
|
38564
38893
|
provider?: string | undefined;
|
|
38565
38894
|
client_id?: string | undefined;
|
|
@@ -38580,6 +38909,21 @@ declare const enrichedClientSchema: z.ZodObject<{
|
|
|
38580
38909
|
twilio_sid?: string | undefined;
|
|
38581
38910
|
twilio_token?: string | undefined;
|
|
38582
38911
|
icon_url?: string | undefined;
|
|
38912
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
38913
|
+
password_complexity_options?: {
|
|
38914
|
+
min_length?: number | undefined;
|
|
38915
|
+
} | undefined;
|
|
38916
|
+
password_history?: {
|
|
38917
|
+
enable?: boolean | undefined;
|
|
38918
|
+
size?: number | undefined;
|
|
38919
|
+
} | undefined;
|
|
38920
|
+
password_no_personal_info?: {
|
|
38921
|
+
enable?: boolean | undefined;
|
|
38922
|
+
} | undefined;
|
|
38923
|
+
password_dictionary?: {
|
|
38924
|
+
enable?: boolean | undefined;
|
|
38925
|
+
dictionary?: string[] | undefined;
|
|
38926
|
+
} | undefined;
|
|
38583
38927
|
}>>;
|
|
38584
38928
|
enabled_clients: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
|
|
38585
38929
|
response_type: z.ZodOptional<z.ZodType<AuthorizationResponseType, z.ZodTypeDef, AuthorizationResponseType>>;
|
|
@@ -38611,6 +38955,21 @@ declare const enrichedClientSchema: z.ZodObject<{
|
|
|
38611
38955
|
twilio_sid?: string | undefined;
|
|
38612
38956
|
twilio_token?: string | undefined;
|
|
38613
38957
|
icon_url?: string | undefined;
|
|
38958
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
38959
|
+
password_complexity_options?: {
|
|
38960
|
+
min_length?: number | undefined;
|
|
38961
|
+
} | undefined;
|
|
38962
|
+
password_history?: {
|
|
38963
|
+
enable?: boolean | undefined;
|
|
38964
|
+
size?: number | undefined;
|
|
38965
|
+
} | undefined;
|
|
38966
|
+
password_no_personal_info?: {
|
|
38967
|
+
enable?: boolean | undefined;
|
|
38968
|
+
} | undefined;
|
|
38969
|
+
password_dictionary?: {
|
|
38970
|
+
enable?: boolean | undefined;
|
|
38971
|
+
dictionary?: string[] | undefined;
|
|
38972
|
+
} | undefined;
|
|
38614
38973
|
};
|
|
38615
38974
|
name: string;
|
|
38616
38975
|
strategy: string;
|
|
@@ -38648,6 +39007,21 @@ declare const enrichedClientSchema: z.ZodObject<{
|
|
|
38648
39007
|
twilio_sid?: string | undefined;
|
|
38649
39008
|
twilio_token?: string | undefined;
|
|
38650
39009
|
icon_url?: string | undefined;
|
|
39010
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
39011
|
+
password_complexity_options?: {
|
|
39012
|
+
min_length?: number | undefined;
|
|
39013
|
+
} | undefined;
|
|
39014
|
+
password_history?: {
|
|
39015
|
+
enable?: boolean | undefined;
|
|
39016
|
+
size?: number | undefined;
|
|
39017
|
+
} | undefined;
|
|
39018
|
+
password_no_personal_info?: {
|
|
39019
|
+
enable?: boolean | undefined;
|
|
39020
|
+
} | undefined;
|
|
39021
|
+
password_dictionary?: {
|
|
39022
|
+
enable?: boolean | undefined;
|
|
39023
|
+
dictionary?: string[] | undefined;
|
|
39024
|
+
} | undefined;
|
|
38651
39025
|
} | undefined;
|
|
38652
39026
|
id?: string | undefined;
|
|
38653
39027
|
is_system?: boolean | undefined;
|
|
@@ -38879,6 +39253,21 @@ declare const enrichedClientSchema: z.ZodObject<{
|
|
|
38879
39253
|
twilio_sid?: string | undefined;
|
|
38880
39254
|
twilio_token?: string | undefined;
|
|
38881
39255
|
icon_url?: string | undefined;
|
|
39256
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
39257
|
+
password_complexity_options?: {
|
|
39258
|
+
min_length?: number | undefined;
|
|
39259
|
+
} | undefined;
|
|
39260
|
+
password_history?: {
|
|
39261
|
+
enable?: boolean | undefined;
|
|
39262
|
+
size?: number | undefined;
|
|
39263
|
+
} | undefined;
|
|
39264
|
+
password_no_personal_info?: {
|
|
39265
|
+
enable?: boolean | undefined;
|
|
39266
|
+
} | undefined;
|
|
39267
|
+
password_dictionary?: {
|
|
39268
|
+
enable?: boolean | undefined;
|
|
39269
|
+
dictionary?: string[] | undefined;
|
|
39270
|
+
} | undefined;
|
|
38882
39271
|
};
|
|
38883
39272
|
name: string;
|
|
38884
39273
|
strategy: string;
|
|
@@ -39069,6 +39458,21 @@ declare const enrichedClientSchema: z.ZodObject<{
|
|
|
39069
39458
|
twilio_sid?: string | undefined;
|
|
39070
39459
|
twilio_token?: string | undefined;
|
|
39071
39460
|
icon_url?: string | undefined;
|
|
39461
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
39462
|
+
password_complexity_options?: {
|
|
39463
|
+
min_length?: number | undefined;
|
|
39464
|
+
} | undefined;
|
|
39465
|
+
password_history?: {
|
|
39466
|
+
enable?: boolean | undefined;
|
|
39467
|
+
size?: number | undefined;
|
|
39468
|
+
} | undefined;
|
|
39469
|
+
password_no_personal_info?: {
|
|
39470
|
+
enable?: boolean | undefined;
|
|
39471
|
+
} | undefined;
|
|
39472
|
+
password_dictionary?: {
|
|
39473
|
+
enable?: boolean | undefined;
|
|
39474
|
+
dictionary?: string[] | undefined;
|
|
39475
|
+
} | undefined;
|
|
39072
39476
|
} | undefined;
|
|
39073
39477
|
id?: string | undefined;
|
|
39074
39478
|
is_system?: boolean | undefined;
|
|
@@ -39266,6 +39670,7 @@ export type OnExecuteCredentialsExchange = (event: HookEvent, access: OnExecuteC
|
|
|
39266
39670
|
export type OnExecutePreUserRegistrationAPI = {
|
|
39267
39671
|
user: {
|
|
39268
39672
|
setUserMetadata: (key: string, value: any) => void;
|
|
39673
|
+
setLinkedTo: (primaryUserId: string) => void;
|
|
39269
39674
|
};
|
|
39270
39675
|
token: TokenAPI;
|
|
39271
39676
|
};
|
|
@@ -45490,6 +45895,21 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
45490
45895
|
twilio_sid?: string | undefined | undefined;
|
|
45491
45896
|
twilio_token?: string | undefined | undefined;
|
|
45492
45897
|
icon_url?: string | undefined | undefined;
|
|
45898
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined | undefined;
|
|
45899
|
+
password_complexity_options?: {
|
|
45900
|
+
min_length?: number | undefined | undefined;
|
|
45901
|
+
} | undefined;
|
|
45902
|
+
password_history?: {
|
|
45903
|
+
enable?: boolean | undefined | undefined;
|
|
45904
|
+
size?: number | undefined | undefined;
|
|
45905
|
+
} | undefined;
|
|
45906
|
+
password_no_personal_info?: {
|
|
45907
|
+
enable?: boolean | undefined | undefined;
|
|
45908
|
+
} | undefined;
|
|
45909
|
+
password_dictionary?: {
|
|
45910
|
+
enable?: boolean | undefined | undefined;
|
|
45911
|
+
dictionary?: string[] | undefined | undefined;
|
|
45912
|
+
} | undefined;
|
|
45493
45913
|
};
|
|
45494
45914
|
name: string;
|
|
45495
45915
|
strategy: string;
|
|
@@ -45529,6 +45949,21 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
45529
45949
|
twilio_sid?: string | undefined | undefined;
|
|
45530
45950
|
twilio_token?: string | undefined | undefined;
|
|
45531
45951
|
icon_url?: string | undefined | undefined;
|
|
45952
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined | undefined;
|
|
45953
|
+
password_complexity_options?: {
|
|
45954
|
+
min_length?: number | undefined | undefined;
|
|
45955
|
+
} | undefined;
|
|
45956
|
+
password_history?: {
|
|
45957
|
+
enable?: boolean | undefined | undefined;
|
|
45958
|
+
size?: number | undefined | undefined;
|
|
45959
|
+
} | undefined;
|
|
45960
|
+
password_no_personal_info?: {
|
|
45961
|
+
enable?: boolean | undefined | undefined;
|
|
45962
|
+
} | undefined;
|
|
45963
|
+
password_dictionary?: {
|
|
45964
|
+
enable?: boolean | undefined | undefined;
|
|
45965
|
+
dictionary?: string[] | undefined | undefined;
|
|
45966
|
+
} | undefined;
|
|
45532
45967
|
};
|
|
45533
45968
|
name: string;
|
|
45534
45969
|
strategy: string;
|
|
@@ -45587,6 +46022,21 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
45587
46022
|
twilio_sid?: string | undefined | undefined;
|
|
45588
46023
|
twilio_token?: string | undefined | undefined;
|
|
45589
46024
|
icon_url?: string | undefined | undefined;
|
|
46025
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined | undefined;
|
|
46026
|
+
password_complexity_options?: {
|
|
46027
|
+
min_length?: number | undefined | undefined;
|
|
46028
|
+
} | undefined;
|
|
46029
|
+
password_history?: {
|
|
46030
|
+
enable?: boolean | undefined | undefined;
|
|
46031
|
+
size?: number | undefined | undefined;
|
|
46032
|
+
} | undefined;
|
|
46033
|
+
password_no_personal_info?: {
|
|
46034
|
+
enable?: boolean | undefined | undefined;
|
|
46035
|
+
} | undefined;
|
|
46036
|
+
password_dictionary?: {
|
|
46037
|
+
enable?: boolean | undefined | undefined;
|
|
46038
|
+
dictionary?: string[] | undefined | undefined;
|
|
46039
|
+
} | undefined;
|
|
45590
46040
|
};
|
|
45591
46041
|
name: string;
|
|
45592
46042
|
strategy: string;
|
|
@@ -45657,6 +46107,21 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
45657
46107
|
twilio_sid?: string | undefined;
|
|
45658
46108
|
twilio_token?: string | undefined;
|
|
45659
46109
|
icon_url?: string | undefined;
|
|
46110
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
46111
|
+
password_complexity_options?: {
|
|
46112
|
+
min_length?: number | undefined;
|
|
46113
|
+
} | undefined;
|
|
46114
|
+
password_history?: {
|
|
46115
|
+
enable?: boolean | undefined;
|
|
46116
|
+
size?: number | undefined;
|
|
46117
|
+
} | undefined;
|
|
46118
|
+
password_no_personal_info?: {
|
|
46119
|
+
enable?: boolean | undefined;
|
|
46120
|
+
} | undefined;
|
|
46121
|
+
password_dictionary?: {
|
|
46122
|
+
enable?: boolean | undefined;
|
|
46123
|
+
dictionary?: string[] | undefined;
|
|
46124
|
+
} | undefined;
|
|
45660
46125
|
} | undefined;
|
|
45661
46126
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
45662
46127
|
response_type?: AuthorizationResponseType | undefined;
|
|
@@ -45693,6 +46158,21 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
45693
46158
|
twilio_sid?: string | undefined | undefined;
|
|
45694
46159
|
twilio_token?: string | undefined | undefined;
|
|
45695
46160
|
icon_url?: string | undefined | undefined;
|
|
46161
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined | undefined;
|
|
46162
|
+
password_complexity_options?: {
|
|
46163
|
+
min_length?: number | undefined | undefined;
|
|
46164
|
+
} | undefined;
|
|
46165
|
+
password_history?: {
|
|
46166
|
+
enable?: boolean | undefined | undefined;
|
|
46167
|
+
size?: number | undefined | undefined;
|
|
46168
|
+
} | undefined;
|
|
46169
|
+
password_no_personal_info?: {
|
|
46170
|
+
enable?: boolean | undefined | undefined;
|
|
46171
|
+
} | undefined;
|
|
46172
|
+
password_dictionary?: {
|
|
46173
|
+
enable?: boolean | undefined | undefined;
|
|
46174
|
+
dictionary?: string[] | undefined | undefined;
|
|
46175
|
+
} | undefined;
|
|
45696
46176
|
};
|
|
45697
46177
|
name: string;
|
|
45698
46178
|
strategy: string;
|
|
@@ -45743,6 +46223,21 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
45743
46223
|
twilio_sid?: string | undefined;
|
|
45744
46224
|
twilio_token?: string | undefined;
|
|
45745
46225
|
icon_url?: string | undefined;
|
|
46226
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined;
|
|
46227
|
+
password_complexity_options?: {
|
|
46228
|
+
min_length?: number | undefined;
|
|
46229
|
+
} | undefined;
|
|
46230
|
+
password_history?: {
|
|
46231
|
+
enable?: boolean | undefined;
|
|
46232
|
+
size?: number | undefined;
|
|
46233
|
+
} | undefined;
|
|
46234
|
+
password_no_personal_info?: {
|
|
46235
|
+
enable?: boolean | undefined;
|
|
46236
|
+
} | undefined;
|
|
46237
|
+
password_dictionary?: {
|
|
46238
|
+
enable?: boolean | undefined;
|
|
46239
|
+
dictionary?: string[] | undefined;
|
|
46240
|
+
} | undefined;
|
|
45746
46241
|
} | undefined;
|
|
45747
46242
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
45748
46243
|
response_type?: AuthorizationResponseType | undefined;
|
|
@@ -45778,6 +46273,21 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
45778
46273
|
twilio_sid?: string | undefined | undefined;
|
|
45779
46274
|
twilio_token?: string | undefined | undefined;
|
|
45780
46275
|
icon_url?: string | undefined | undefined;
|
|
46276
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined | undefined;
|
|
46277
|
+
password_complexity_options?: {
|
|
46278
|
+
min_length?: number | undefined | undefined;
|
|
46279
|
+
} | undefined;
|
|
46280
|
+
password_history?: {
|
|
46281
|
+
enable?: boolean | undefined | undefined;
|
|
46282
|
+
size?: number | undefined | undefined;
|
|
46283
|
+
} | undefined;
|
|
46284
|
+
password_no_personal_info?: {
|
|
46285
|
+
enable?: boolean | undefined | undefined;
|
|
46286
|
+
} | undefined;
|
|
46287
|
+
password_dictionary?: {
|
|
46288
|
+
enable?: boolean | undefined | undefined;
|
|
46289
|
+
dictionary?: string[] | undefined | undefined;
|
|
46290
|
+
} | undefined;
|
|
45781
46291
|
};
|
|
45782
46292
|
name: string;
|
|
45783
46293
|
strategy: string;
|
|
@@ -47387,6 +47897,21 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
47387
47897
|
twilio_sid?: string | undefined | undefined;
|
|
47388
47898
|
twilio_token?: string | undefined | undefined;
|
|
47389
47899
|
icon_url?: string | undefined | undefined;
|
|
47900
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined | undefined;
|
|
47901
|
+
password_complexity_options?: {
|
|
47902
|
+
min_length?: number | undefined | undefined;
|
|
47903
|
+
} | undefined;
|
|
47904
|
+
password_history?: {
|
|
47905
|
+
enable?: boolean | undefined | undefined;
|
|
47906
|
+
size?: number | undefined | undefined;
|
|
47907
|
+
} | undefined;
|
|
47908
|
+
password_no_personal_info?: {
|
|
47909
|
+
enable?: boolean | undefined | undefined;
|
|
47910
|
+
} | undefined;
|
|
47911
|
+
password_dictionary?: {
|
|
47912
|
+
enable?: boolean | undefined | undefined;
|
|
47913
|
+
dictionary?: string[] | undefined | undefined;
|
|
47914
|
+
} | undefined;
|
|
47390
47915
|
};
|
|
47391
47916
|
name: string;
|
|
47392
47917
|
strategy: string;
|
|
@@ -47448,6 +47973,21 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
47448
47973
|
twilio_sid?: string | undefined | undefined;
|
|
47449
47974
|
twilio_token?: string | undefined | undefined;
|
|
47450
47975
|
icon_url?: string | undefined | undefined;
|
|
47976
|
+
passwordPolicy?: "none" | "low" | "fair" | "good" | "excellent" | undefined | undefined;
|
|
47977
|
+
password_complexity_options?: {
|
|
47978
|
+
min_length?: number | undefined | undefined;
|
|
47979
|
+
} | undefined;
|
|
47980
|
+
password_history?: {
|
|
47981
|
+
enable?: boolean | undefined | undefined;
|
|
47982
|
+
size?: number | undefined | undefined;
|
|
47983
|
+
} | undefined;
|
|
47984
|
+
password_no_personal_info?: {
|
|
47985
|
+
enable?: boolean | undefined | undefined;
|
|
47986
|
+
} | undefined;
|
|
47987
|
+
password_dictionary?: {
|
|
47988
|
+
enable?: boolean | undefined | undefined;
|
|
47989
|
+
dictionary?: string[] | undefined | undefined;
|
|
47990
|
+
} | undefined;
|
|
47451
47991
|
};
|
|
47452
47992
|
name: string;
|
|
47453
47993
|
strategy: string;
|
|
@@ -48839,31 +49379,31 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
48839
49379
|
displayName: string;
|
|
48840
49380
|
fonts: {
|
|
48841
49381
|
title: {
|
|
48842
|
-
bold: boolean;
|
|
48843
49382
|
size: number;
|
|
49383
|
+
bold: boolean;
|
|
48844
49384
|
};
|
|
48845
49385
|
links: {
|
|
48846
|
-
bold: boolean;
|
|
48847
49386
|
size: number;
|
|
49387
|
+
bold: boolean;
|
|
48848
49388
|
};
|
|
48849
49389
|
body_text: {
|
|
48850
|
-
bold: boolean;
|
|
48851
49390
|
size: number;
|
|
49391
|
+
bold: boolean;
|
|
48852
49392
|
};
|
|
48853
49393
|
buttons_text: {
|
|
48854
|
-
bold: boolean;
|
|
48855
49394
|
size: number;
|
|
49395
|
+
bold: boolean;
|
|
48856
49396
|
};
|
|
48857
49397
|
font_url: string;
|
|
48858
49398
|
input_labels: {
|
|
48859
|
-
bold: boolean;
|
|
48860
49399
|
size: number;
|
|
49400
|
+
bold: boolean;
|
|
48861
49401
|
};
|
|
48862
49402
|
links_style: "normal" | "underlined";
|
|
48863
49403
|
reference_text_size: number;
|
|
48864
49404
|
subtitle: {
|
|
48865
|
-
bold: boolean;
|
|
48866
49405
|
size: number;
|
|
49406
|
+
bold: boolean;
|
|
48867
49407
|
};
|
|
48868
49408
|
};
|
|
48869
49409
|
widget: {
|
|
@@ -49006,31 +49546,31 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
49006
49546
|
displayName: string;
|
|
49007
49547
|
fonts: {
|
|
49008
49548
|
title: {
|
|
49009
|
-
bold: boolean;
|
|
49010
49549
|
size: number;
|
|
49550
|
+
bold: boolean;
|
|
49011
49551
|
};
|
|
49012
49552
|
links: {
|
|
49013
|
-
bold: boolean;
|
|
49014
49553
|
size: number;
|
|
49554
|
+
bold: boolean;
|
|
49015
49555
|
};
|
|
49016
49556
|
body_text: {
|
|
49017
|
-
bold: boolean;
|
|
49018
49557
|
size: number;
|
|
49558
|
+
bold: boolean;
|
|
49019
49559
|
};
|
|
49020
49560
|
buttons_text: {
|
|
49021
|
-
bold: boolean;
|
|
49022
49561
|
size: number;
|
|
49562
|
+
bold: boolean;
|
|
49023
49563
|
};
|
|
49024
49564
|
font_url: string;
|
|
49025
49565
|
input_labels: {
|
|
49026
|
-
bold: boolean;
|
|
49027
49566
|
size: number;
|
|
49567
|
+
bold: boolean;
|
|
49028
49568
|
};
|
|
49029
49569
|
links_style: "normal" | "underlined";
|
|
49030
49570
|
reference_text_size: number;
|
|
49031
49571
|
subtitle: {
|
|
49032
|
-
bold: boolean;
|
|
49033
49572
|
size: number;
|
|
49573
|
+
bold: boolean;
|
|
49034
49574
|
};
|
|
49035
49575
|
};
|
|
49036
49576
|
widget: {
|