@authhero/adapter-interfaces 0.132.0 → 0.133.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 +371 -98
- package/dist/adapter-interfaces.mjs +307 -291
- 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;
|
|
@@ -34633,53 +34906,53 @@ export declare const fontDetailsSchema: z.ZodObject<{
|
|
|
34633
34906
|
bold: z.ZodBoolean;
|
|
34634
34907
|
size: z.ZodNumber;
|
|
34635
34908
|
}, "strip", z.ZodTypeAny, {
|
|
34636
|
-
bold: boolean;
|
|
34637
34909
|
size: number;
|
|
34638
|
-
}, {
|
|
34639
34910
|
bold: boolean;
|
|
34911
|
+
}, {
|
|
34640
34912
|
size: number;
|
|
34913
|
+
bold: boolean;
|
|
34641
34914
|
}>;
|
|
34642
34915
|
export declare const fontsSchema: z.ZodObject<{
|
|
34643
34916
|
body_text: z.ZodObject<{
|
|
34644
34917
|
bold: z.ZodBoolean;
|
|
34645
34918
|
size: z.ZodNumber;
|
|
34646
34919
|
}, "strip", z.ZodTypeAny, {
|
|
34647
|
-
bold: boolean;
|
|
34648
34920
|
size: number;
|
|
34649
|
-
}, {
|
|
34650
34921
|
bold: boolean;
|
|
34922
|
+
}, {
|
|
34651
34923
|
size: number;
|
|
34924
|
+
bold: boolean;
|
|
34652
34925
|
}>;
|
|
34653
34926
|
buttons_text: z.ZodObject<{
|
|
34654
34927
|
bold: z.ZodBoolean;
|
|
34655
34928
|
size: z.ZodNumber;
|
|
34656
34929
|
}, "strip", z.ZodTypeAny, {
|
|
34657
|
-
bold: boolean;
|
|
34658
34930
|
size: number;
|
|
34659
|
-
}, {
|
|
34660
34931
|
bold: boolean;
|
|
34932
|
+
}, {
|
|
34661
34933
|
size: number;
|
|
34934
|
+
bold: boolean;
|
|
34662
34935
|
}>;
|
|
34663
34936
|
font_url: z.ZodString;
|
|
34664
34937
|
input_labels: z.ZodObject<{
|
|
34665
34938
|
bold: z.ZodBoolean;
|
|
34666
34939
|
size: z.ZodNumber;
|
|
34667
34940
|
}, "strip", z.ZodTypeAny, {
|
|
34668
|
-
bold: boolean;
|
|
34669
34941
|
size: number;
|
|
34670
|
-
}, {
|
|
34671
34942
|
bold: boolean;
|
|
34943
|
+
}, {
|
|
34672
34944
|
size: number;
|
|
34945
|
+
bold: boolean;
|
|
34673
34946
|
}>;
|
|
34674
34947
|
links: z.ZodObject<{
|
|
34675
34948
|
bold: z.ZodBoolean;
|
|
34676
34949
|
size: z.ZodNumber;
|
|
34677
34950
|
}, "strip", z.ZodTypeAny, {
|
|
34678
|
-
bold: boolean;
|
|
34679
34951
|
size: number;
|
|
34680
|
-
}, {
|
|
34681
34952
|
bold: boolean;
|
|
34953
|
+
}, {
|
|
34682
34954
|
size: number;
|
|
34955
|
+
bold: boolean;
|
|
34683
34956
|
}>;
|
|
34684
34957
|
links_style: z.ZodEnum<[
|
|
34685
34958
|
"normal",
|
|
@@ -34690,77 +34963,77 @@ export declare const fontsSchema: z.ZodObject<{
|
|
|
34690
34963
|
bold: z.ZodBoolean;
|
|
34691
34964
|
size: z.ZodNumber;
|
|
34692
34965
|
}, "strip", z.ZodTypeAny, {
|
|
34693
|
-
bold: boolean;
|
|
34694
34966
|
size: number;
|
|
34695
|
-
}, {
|
|
34696
34967
|
bold: boolean;
|
|
34968
|
+
}, {
|
|
34697
34969
|
size: number;
|
|
34970
|
+
bold: boolean;
|
|
34698
34971
|
}>;
|
|
34699
34972
|
title: z.ZodObject<{
|
|
34700
34973
|
bold: z.ZodBoolean;
|
|
34701
34974
|
size: z.ZodNumber;
|
|
34702
34975
|
}, "strip", z.ZodTypeAny, {
|
|
34703
|
-
bold: boolean;
|
|
34704
34976
|
size: number;
|
|
34705
|
-
}, {
|
|
34706
34977
|
bold: boolean;
|
|
34978
|
+
}, {
|
|
34707
34979
|
size: number;
|
|
34980
|
+
bold: boolean;
|
|
34708
34981
|
}>;
|
|
34709
34982
|
}, "strip", z.ZodTypeAny, {
|
|
34710
34983
|
title: {
|
|
34711
|
-
bold: boolean;
|
|
34712
34984
|
size: number;
|
|
34985
|
+
bold: boolean;
|
|
34713
34986
|
};
|
|
34714
34987
|
links: {
|
|
34715
|
-
bold: boolean;
|
|
34716
34988
|
size: number;
|
|
34989
|
+
bold: boolean;
|
|
34717
34990
|
};
|
|
34718
34991
|
body_text: {
|
|
34719
|
-
bold: boolean;
|
|
34720
34992
|
size: number;
|
|
34993
|
+
bold: boolean;
|
|
34721
34994
|
};
|
|
34722
34995
|
buttons_text: {
|
|
34723
|
-
bold: boolean;
|
|
34724
34996
|
size: number;
|
|
34997
|
+
bold: boolean;
|
|
34725
34998
|
};
|
|
34726
34999
|
font_url: string;
|
|
34727
35000
|
input_labels: {
|
|
34728
|
-
bold: boolean;
|
|
34729
35001
|
size: number;
|
|
35002
|
+
bold: boolean;
|
|
34730
35003
|
};
|
|
34731
35004
|
links_style: "normal" | "underlined";
|
|
34732
35005
|
reference_text_size: number;
|
|
34733
35006
|
subtitle: {
|
|
34734
|
-
bold: boolean;
|
|
34735
35007
|
size: number;
|
|
35008
|
+
bold: boolean;
|
|
34736
35009
|
};
|
|
34737
35010
|
}, {
|
|
34738
35011
|
title: {
|
|
34739
|
-
bold: boolean;
|
|
34740
35012
|
size: number;
|
|
35013
|
+
bold: boolean;
|
|
34741
35014
|
};
|
|
34742
35015
|
links: {
|
|
34743
|
-
bold: boolean;
|
|
34744
35016
|
size: number;
|
|
35017
|
+
bold: boolean;
|
|
34745
35018
|
};
|
|
34746
35019
|
body_text: {
|
|
34747
|
-
bold: boolean;
|
|
34748
35020
|
size: number;
|
|
35021
|
+
bold: boolean;
|
|
34749
35022
|
};
|
|
34750
35023
|
buttons_text: {
|
|
34751
|
-
bold: boolean;
|
|
34752
35024
|
size: number;
|
|
35025
|
+
bold: boolean;
|
|
34753
35026
|
};
|
|
34754
35027
|
font_url: string;
|
|
34755
35028
|
input_labels: {
|
|
34756
|
-
bold: boolean;
|
|
34757
35029
|
size: number;
|
|
35030
|
+
bold: boolean;
|
|
34758
35031
|
};
|
|
34759
35032
|
links_style: "normal" | "underlined";
|
|
34760
35033
|
reference_text_size: number;
|
|
34761
35034
|
subtitle: {
|
|
34762
|
-
bold: boolean;
|
|
34763
35035
|
size: number;
|
|
35036
|
+
bold: boolean;
|
|
34764
35037
|
};
|
|
34765
35038
|
}>;
|
|
34766
35039
|
export declare const pageBackgroundSchema: z.ZodObject<{
|
|
@@ -34922,42 +35195,42 @@ export declare const themeInsertSchema: z.ZodObject<{
|
|
|
34922
35195
|
bold: z.ZodBoolean;
|
|
34923
35196
|
size: z.ZodNumber;
|
|
34924
35197
|
}, "strip", z.ZodTypeAny, {
|
|
34925
|
-
bold: boolean;
|
|
34926
35198
|
size: number;
|
|
34927
|
-
}, {
|
|
34928
35199
|
bold: boolean;
|
|
35200
|
+
}, {
|
|
34929
35201
|
size: number;
|
|
35202
|
+
bold: boolean;
|
|
34930
35203
|
}>;
|
|
34931
35204
|
buttons_text: z.ZodObject<{
|
|
34932
35205
|
bold: z.ZodBoolean;
|
|
34933
35206
|
size: z.ZodNumber;
|
|
34934
35207
|
}, "strip", z.ZodTypeAny, {
|
|
34935
|
-
bold: boolean;
|
|
34936
35208
|
size: number;
|
|
34937
|
-
}, {
|
|
34938
35209
|
bold: boolean;
|
|
35210
|
+
}, {
|
|
34939
35211
|
size: number;
|
|
35212
|
+
bold: boolean;
|
|
34940
35213
|
}>;
|
|
34941
35214
|
font_url: z.ZodString;
|
|
34942
35215
|
input_labels: z.ZodObject<{
|
|
34943
35216
|
bold: z.ZodBoolean;
|
|
34944
35217
|
size: z.ZodNumber;
|
|
34945
35218
|
}, "strip", z.ZodTypeAny, {
|
|
34946
|
-
bold: boolean;
|
|
34947
35219
|
size: number;
|
|
34948
|
-
}, {
|
|
34949
35220
|
bold: boolean;
|
|
35221
|
+
}, {
|
|
34950
35222
|
size: number;
|
|
35223
|
+
bold: boolean;
|
|
34951
35224
|
}>;
|
|
34952
35225
|
links: z.ZodObject<{
|
|
34953
35226
|
bold: z.ZodBoolean;
|
|
34954
35227
|
size: z.ZodNumber;
|
|
34955
35228
|
}, "strip", z.ZodTypeAny, {
|
|
34956
|
-
bold: boolean;
|
|
34957
35229
|
size: number;
|
|
34958
|
-
}, {
|
|
34959
35230
|
bold: boolean;
|
|
35231
|
+
}, {
|
|
34960
35232
|
size: number;
|
|
35233
|
+
bold: boolean;
|
|
34961
35234
|
}>;
|
|
34962
35235
|
links_style: z.ZodEnum<[
|
|
34963
35236
|
"normal",
|
|
@@ -34968,77 +35241,77 @@ export declare const themeInsertSchema: z.ZodObject<{
|
|
|
34968
35241
|
bold: z.ZodBoolean;
|
|
34969
35242
|
size: z.ZodNumber;
|
|
34970
35243
|
}, "strip", z.ZodTypeAny, {
|
|
34971
|
-
bold: boolean;
|
|
34972
35244
|
size: number;
|
|
34973
|
-
}, {
|
|
34974
35245
|
bold: boolean;
|
|
35246
|
+
}, {
|
|
34975
35247
|
size: number;
|
|
35248
|
+
bold: boolean;
|
|
34976
35249
|
}>;
|
|
34977
35250
|
title: z.ZodObject<{
|
|
34978
35251
|
bold: z.ZodBoolean;
|
|
34979
35252
|
size: z.ZodNumber;
|
|
34980
35253
|
}, "strip", z.ZodTypeAny, {
|
|
34981
|
-
bold: boolean;
|
|
34982
35254
|
size: number;
|
|
34983
|
-
}, {
|
|
34984
35255
|
bold: boolean;
|
|
35256
|
+
}, {
|
|
34985
35257
|
size: number;
|
|
35258
|
+
bold: boolean;
|
|
34986
35259
|
}>;
|
|
34987
35260
|
}, "strip", z.ZodTypeAny, {
|
|
34988
35261
|
title: {
|
|
34989
|
-
bold: boolean;
|
|
34990
35262
|
size: number;
|
|
35263
|
+
bold: boolean;
|
|
34991
35264
|
};
|
|
34992
35265
|
links: {
|
|
34993
|
-
bold: boolean;
|
|
34994
35266
|
size: number;
|
|
35267
|
+
bold: boolean;
|
|
34995
35268
|
};
|
|
34996
35269
|
body_text: {
|
|
34997
|
-
bold: boolean;
|
|
34998
35270
|
size: number;
|
|
35271
|
+
bold: boolean;
|
|
34999
35272
|
};
|
|
35000
35273
|
buttons_text: {
|
|
35001
|
-
bold: boolean;
|
|
35002
35274
|
size: number;
|
|
35275
|
+
bold: boolean;
|
|
35003
35276
|
};
|
|
35004
35277
|
font_url: string;
|
|
35005
35278
|
input_labels: {
|
|
35006
|
-
bold: boolean;
|
|
35007
35279
|
size: number;
|
|
35280
|
+
bold: boolean;
|
|
35008
35281
|
};
|
|
35009
35282
|
links_style: "normal" | "underlined";
|
|
35010
35283
|
reference_text_size: number;
|
|
35011
35284
|
subtitle: {
|
|
35012
|
-
bold: boolean;
|
|
35013
35285
|
size: number;
|
|
35286
|
+
bold: boolean;
|
|
35014
35287
|
};
|
|
35015
35288
|
}, {
|
|
35016
35289
|
title: {
|
|
35017
|
-
bold: boolean;
|
|
35018
35290
|
size: number;
|
|
35291
|
+
bold: boolean;
|
|
35019
35292
|
};
|
|
35020
35293
|
links: {
|
|
35021
|
-
bold: boolean;
|
|
35022
35294
|
size: number;
|
|
35295
|
+
bold: boolean;
|
|
35023
35296
|
};
|
|
35024
35297
|
body_text: {
|
|
35025
|
-
bold: boolean;
|
|
35026
35298
|
size: number;
|
|
35299
|
+
bold: boolean;
|
|
35027
35300
|
};
|
|
35028
35301
|
buttons_text: {
|
|
35029
|
-
bold: boolean;
|
|
35030
35302
|
size: number;
|
|
35303
|
+
bold: boolean;
|
|
35031
35304
|
};
|
|
35032
35305
|
font_url: string;
|
|
35033
35306
|
input_labels: {
|
|
35034
|
-
bold: boolean;
|
|
35035
35307
|
size: number;
|
|
35308
|
+
bold: boolean;
|
|
35036
35309
|
};
|
|
35037
35310
|
links_style: "normal" | "underlined";
|
|
35038
35311
|
reference_text_size: number;
|
|
35039
35312
|
subtitle: {
|
|
35040
|
-
bold: boolean;
|
|
35041
35313
|
size: number;
|
|
35314
|
+
bold: boolean;
|
|
35042
35315
|
};
|
|
35043
35316
|
}>;
|
|
35044
35317
|
page_background: z.ZodObject<{
|
|
@@ -35130,31 +35403,31 @@ export declare const themeInsertSchema: z.ZodObject<{
|
|
|
35130
35403
|
displayName: string;
|
|
35131
35404
|
fonts: {
|
|
35132
35405
|
title: {
|
|
35133
|
-
bold: boolean;
|
|
35134
35406
|
size: number;
|
|
35407
|
+
bold: boolean;
|
|
35135
35408
|
};
|
|
35136
35409
|
links: {
|
|
35137
|
-
bold: boolean;
|
|
35138
35410
|
size: number;
|
|
35411
|
+
bold: boolean;
|
|
35139
35412
|
};
|
|
35140
35413
|
body_text: {
|
|
35141
|
-
bold: boolean;
|
|
35142
35414
|
size: number;
|
|
35415
|
+
bold: boolean;
|
|
35143
35416
|
};
|
|
35144
35417
|
buttons_text: {
|
|
35145
|
-
bold: boolean;
|
|
35146
35418
|
size: number;
|
|
35419
|
+
bold: boolean;
|
|
35147
35420
|
};
|
|
35148
35421
|
font_url: string;
|
|
35149
35422
|
input_labels: {
|
|
35150
|
-
bold: boolean;
|
|
35151
35423
|
size: number;
|
|
35424
|
+
bold: boolean;
|
|
35152
35425
|
};
|
|
35153
35426
|
links_style: "normal" | "underlined";
|
|
35154
35427
|
reference_text_size: number;
|
|
35155
35428
|
subtitle: {
|
|
35156
|
-
bold: boolean;
|
|
35157
35429
|
size: number;
|
|
35430
|
+
bold: boolean;
|
|
35158
35431
|
};
|
|
35159
35432
|
};
|
|
35160
35433
|
widget: {
|
|
@@ -35205,31 +35478,31 @@ export declare const themeInsertSchema: z.ZodObject<{
|
|
|
35205
35478
|
displayName: string;
|
|
35206
35479
|
fonts: {
|
|
35207
35480
|
title: {
|
|
35208
|
-
bold: boolean;
|
|
35209
35481
|
size: number;
|
|
35482
|
+
bold: boolean;
|
|
35210
35483
|
};
|
|
35211
35484
|
links: {
|
|
35212
|
-
bold: boolean;
|
|
35213
35485
|
size: number;
|
|
35486
|
+
bold: boolean;
|
|
35214
35487
|
};
|
|
35215
35488
|
body_text: {
|
|
35216
|
-
bold: boolean;
|
|
35217
35489
|
size: number;
|
|
35490
|
+
bold: boolean;
|
|
35218
35491
|
};
|
|
35219
35492
|
buttons_text: {
|
|
35220
|
-
bold: boolean;
|
|
35221
35493
|
size: number;
|
|
35494
|
+
bold: boolean;
|
|
35222
35495
|
};
|
|
35223
35496
|
font_url: string;
|
|
35224
35497
|
input_labels: {
|
|
35225
|
-
bold: boolean;
|
|
35226
35498
|
size: number;
|
|
35499
|
+
bold: boolean;
|
|
35227
35500
|
};
|
|
35228
35501
|
links_style: "normal" | "underlined";
|
|
35229
35502
|
reference_text_size: number;
|
|
35230
35503
|
subtitle: {
|
|
35231
|
-
bold: boolean;
|
|
35232
35504
|
size: number;
|
|
35505
|
+
bold: boolean;
|
|
35233
35506
|
};
|
|
35234
35507
|
};
|
|
35235
35508
|
widget: {
|
|
@@ -35352,42 +35625,42 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
35352
35625
|
bold: z.ZodBoolean;
|
|
35353
35626
|
size: z.ZodNumber;
|
|
35354
35627
|
}, "strip", z.ZodTypeAny, {
|
|
35355
|
-
bold: boolean;
|
|
35356
35628
|
size: number;
|
|
35357
|
-
}, {
|
|
35358
35629
|
bold: boolean;
|
|
35630
|
+
}, {
|
|
35359
35631
|
size: number;
|
|
35632
|
+
bold: boolean;
|
|
35360
35633
|
}>;
|
|
35361
35634
|
buttons_text: z.ZodObject<{
|
|
35362
35635
|
bold: z.ZodBoolean;
|
|
35363
35636
|
size: z.ZodNumber;
|
|
35364
35637
|
}, "strip", z.ZodTypeAny, {
|
|
35365
|
-
bold: boolean;
|
|
35366
35638
|
size: number;
|
|
35367
|
-
}, {
|
|
35368
35639
|
bold: boolean;
|
|
35640
|
+
}, {
|
|
35369
35641
|
size: number;
|
|
35642
|
+
bold: boolean;
|
|
35370
35643
|
}>;
|
|
35371
35644
|
font_url: z.ZodString;
|
|
35372
35645
|
input_labels: z.ZodObject<{
|
|
35373
35646
|
bold: z.ZodBoolean;
|
|
35374
35647
|
size: z.ZodNumber;
|
|
35375
35648
|
}, "strip", z.ZodTypeAny, {
|
|
35376
|
-
bold: boolean;
|
|
35377
35649
|
size: number;
|
|
35378
|
-
}, {
|
|
35379
35650
|
bold: boolean;
|
|
35651
|
+
}, {
|
|
35380
35652
|
size: number;
|
|
35653
|
+
bold: boolean;
|
|
35381
35654
|
}>;
|
|
35382
35655
|
links: z.ZodObject<{
|
|
35383
35656
|
bold: z.ZodBoolean;
|
|
35384
35657
|
size: z.ZodNumber;
|
|
35385
35658
|
}, "strip", z.ZodTypeAny, {
|
|
35386
|
-
bold: boolean;
|
|
35387
35659
|
size: number;
|
|
35388
|
-
}, {
|
|
35389
35660
|
bold: boolean;
|
|
35661
|
+
}, {
|
|
35390
35662
|
size: number;
|
|
35663
|
+
bold: boolean;
|
|
35391
35664
|
}>;
|
|
35392
35665
|
links_style: z.ZodEnum<[
|
|
35393
35666
|
"normal",
|
|
@@ -35398,77 +35671,77 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
35398
35671
|
bold: z.ZodBoolean;
|
|
35399
35672
|
size: z.ZodNumber;
|
|
35400
35673
|
}, "strip", z.ZodTypeAny, {
|
|
35401
|
-
bold: boolean;
|
|
35402
35674
|
size: number;
|
|
35403
|
-
}, {
|
|
35404
35675
|
bold: boolean;
|
|
35676
|
+
}, {
|
|
35405
35677
|
size: number;
|
|
35678
|
+
bold: boolean;
|
|
35406
35679
|
}>;
|
|
35407
35680
|
title: z.ZodObject<{
|
|
35408
35681
|
bold: z.ZodBoolean;
|
|
35409
35682
|
size: z.ZodNumber;
|
|
35410
35683
|
}, "strip", z.ZodTypeAny, {
|
|
35411
|
-
bold: boolean;
|
|
35412
35684
|
size: number;
|
|
35413
|
-
}, {
|
|
35414
35685
|
bold: boolean;
|
|
35686
|
+
}, {
|
|
35415
35687
|
size: number;
|
|
35688
|
+
bold: boolean;
|
|
35416
35689
|
}>;
|
|
35417
35690
|
}, "strip", z.ZodTypeAny, {
|
|
35418
35691
|
title: {
|
|
35419
|
-
bold: boolean;
|
|
35420
35692
|
size: number;
|
|
35693
|
+
bold: boolean;
|
|
35421
35694
|
};
|
|
35422
35695
|
links: {
|
|
35423
|
-
bold: boolean;
|
|
35424
35696
|
size: number;
|
|
35697
|
+
bold: boolean;
|
|
35425
35698
|
};
|
|
35426
35699
|
body_text: {
|
|
35427
|
-
bold: boolean;
|
|
35428
35700
|
size: number;
|
|
35701
|
+
bold: boolean;
|
|
35429
35702
|
};
|
|
35430
35703
|
buttons_text: {
|
|
35431
|
-
bold: boolean;
|
|
35432
35704
|
size: number;
|
|
35705
|
+
bold: boolean;
|
|
35433
35706
|
};
|
|
35434
35707
|
font_url: string;
|
|
35435
35708
|
input_labels: {
|
|
35436
|
-
bold: boolean;
|
|
35437
35709
|
size: number;
|
|
35710
|
+
bold: boolean;
|
|
35438
35711
|
};
|
|
35439
35712
|
links_style: "normal" | "underlined";
|
|
35440
35713
|
reference_text_size: number;
|
|
35441
35714
|
subtitle: {
|
|
35442
|
-
bold: boolean;
|
|
35443
35715
|
size: number;
|
|
35716
|
+
bold: boolean;
|
|
35444
35717
|
};
|
|
35445
35718
|
}, {
|
|
35446
35719
|
title: {
|
|
35447
|
-
bold: boolean;
|
|
35448
35720
|
size: number;
|
|
35721
|
+
bold: boolean;
|
|
35449
35722
|
};
|
|
35450
35723
|
links: {
|
|
35451
|
-
bold: boolean;
|
|
35452
35724
|
size: number;
|
|
35725
|
+
bold: boolean;
|
|
35453
35726
|
};
|
|
35454
35727
|
body_text: {
|
|
35455
|
-
bold: boolean;
|
|
35456
35728
|
size: number;
|
|
35729
|
+
bold: boolean;
|
|
35457
35730
|
};
|
|
35458
35731
|
buttons_text: {
|
|
35459
|
-
bold: boolean;
|
|
35460
35732
|
size: number;
|
|
35733
|
+
bold: boolean;
|
|
35461
35734
|
};
|
|
35462
35735
|
font_url: string;
|
|
35463
35736
|
input_labels: {
|
|
35464
|
-
bold: boolean;
|
|
35465
35737
|
size: number;
|
|
35738
|
+
bold: boolean;
|
|
35466
35739
|
};
|
|
35467
35740
|
links_style: "normal" | "underlined";
|
|
35468
35741
|
reference_text_size: number;
|
|
35469
35742
|
subtitle: {
|
|
35470
|
-
bold: boolean;
|
|
35471
35743
|
size: number;
|
|
35744
|
+
bold: boolean;
|
|
35472
35745
|
};
|
|
35473
35746
|
}>;
|
|
35474
35747
|
page_background: z.ZodObject<{
|
|
@@ -35562,31 +35835,31 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
35562
35835
|
displayName: string;
|
|
35563
35836
|
fonts: {
|
|
35564
35837
|
title: {
|
|
35565
|
-
bold: boolean;
|
|
35566
35838
|
size: number;
|
|
35839
|
+
bold: boolean;
|
|
35567
35840
|
};
|
|
35568
35841
|
links: {
|
|
35569
|
-
bold: boolean;
|
|
35570
35842
|
size: number;
|
|
35843
|
+
bold: boolean;
|
|
35571
35844
|
};
|
|
35572
35845
|
body_text: {
|
|
35573
|
-
bold: boolean;
|
|
35574
35846
|
size: number;
|
|
35847
|
+
bold: boolean;
|
|
35575
35848
|
};
|
|
35576
35849
|
buttons_text: {
|
|
35577
|
-
bold: boolean;
|
|
35578
35850
|
size: number;
|
|
35851
|
+
bold: boolean;
|
|
35579
35852
|
};
|
|
35580
35853
|
font_url: string;
|
|
35581
35854
|
input_labels: {
|
|
35582
|
-
bold: boolean;
|
|
35583
35855
|
size: number;
|
|
35856
|
+
bold: boolean;
|
|
35584
35857
|
};
|
|
35585
35858
|
links_style: "normal" | "underlined";
|
|
35586
35859
|
reference_text_size: number;
|
|
35587
35860
|
subtitle: {
|
|
35588
|
-
bold: boolean;
|
|
35589
35861
|
size: number;
|
|
35862
|
+
bold: boolean;
|
|
35590
35863
|
};
|
|
35591
35864
|
};
|
|
35592
35865
|
widget: {
|
|
@@ -35638,31 +35911,31 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
35638
35911
|
displayName: string;
|
|
35639
35912
|
fonts: {
|
|
35640
35913
|
title: {
|
|
35641
|
-
bold: boolean;
|
|
35642
35914
|
size: number;
|
|
35915
|
+
bold: boolean;
|
|
35643
35916
|
};
|
|
35644
35917
|
links: {
|
|
35645
|
-
bold: boolean;
|
|
35646
35918
|
size: number;
|
|
35919
|
+
bold: boolean;
|
|
35647
35920
|
};
|
|
35648
35921
|
body_text: {
|
|
35649
|
-
bold: boolean;
|
|
35650
35922
|
size: number;
|
|
35923
|
+
bold: boolean;
|
|
35651
35924
|
};
|
|
35652
35925
|
buttons_text: {
|
|
35653
|
-
bold: boolean;
|
|
35654
35926
|
size: number;
|
|
35927
|
+
bold: boolean;
|
|
35655
35928
|
};
|
|
35656
35929
|
font_url: string;
|
|
35657
35930
|
input_labels: {
|
|
35658
|
-
bold: boolean;
|
|
35659
35931
|
size: number;
|
|
35932
|
+
bold: boolean;
|
|
35660
35933
|
};
|
|
35661
35934
|
links_style: "normal" | "underlined";
|
|
35662
35935
|
reference_text_size: number;
|
|
35663
35936
|
subtitle: {
|
|
35664
|
-
bold: boolean;
|
|
35665
35937
|
size: number;
|
|
35938
|
+
bold: boolean;
|
|
35666
35939
|
};
|
|
35667
35940
|
};
|
|
35668
35941
|
widget: {
|