authhero 0.180.1 → 0.181.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.
@@ -12459,12 +12459,16 @@ export declare const bordersSchema: z.ZodObject<{
12459
12459
  button_border_radius: z.ZodNumber;
12460
12460
  button_border_weight: z.ZodNumber;
12461
12461
  buttons_style: z.ZodEnum<[
12462
- "pill"
12462
+ "pill",
12463
+ "rounded",
12464
+ "sharp"
12463
12465
  ]>;
12464
12466
  input_border_radius: z.ZodNumber;
12465
12467
  input_border_weight: z.ZodNumber;
12466
12468
  inputs_style: z.ZodEnum<[
12467
- "pill"
12469
+ "pill",
12470
+ "rounded",
12471
+ "sharp"
12468
12472
  ]>;
12469
12473
  show_widget_shadow: z.ZodBoolean;
12470
12474
  widget_border_weight: z.ZodNumber;
@@ -12472,20 +12476,20 @@ export declare const bordersSchema: z.ZodObject<{
12472
12476
  }, "strip", z.ZodTypeAny, {
12473
12477
  button_border_radius: number;
12474
12478
  button_border_weight: number;
12475
- buttons_style: "pill";
12479
+ buttons_style: "pill" | "rounded" | "sharp";
12476
12480
  input_border_radius: number;
12477
12481
  input_border_weight: number;
12478
- inputs_style: "pill";
12482
+ inputs_style: "pill" | "rounded" | "sharp";
12479
12483
  show_widget_shadow: boolean;
12480
12484
  widget_border_weight: number;
12481
12485
  widget_corner_radius: number;
12482
12486
  }, {
12483
12487
  button_border_radius: number;
12484
12488
  button_border_weight: number;
12485
- buttons_style: "pill";
12489
+ buttons_style: "pill" | "rounded" | "sharp";
12486
12490
  input_border_radius: number;
12487
12491
  input_border_weight: number;
12488
- inputs_style: "pill";
12492
+ inputs_style: "pill" | "rounded" | "sharp";
12489
12493
  show_widget_shadow: boolean;
12490
12494
  widget_border_weight: number;
12491
12495
  widget_corner_radius: number;
@@ -12495,7 +12499,9 @@ export declare const colorsSchema: z.ZodObject<{
12495
12499
  base_hover_color: z.ZodString;
12496
12500
  body_text: z.ZodString;
12497
12501
  captcha_widget_theme: z.ZodEnum<[
12498
- "auto"
12502
+ "auto",
12503
+ "dark",
12504
+ "light"
12499
12505
  ]>;
12500
12506
  error: z.ZodString;
12501
12507
  header: z.ZodString;
@@ -12516,7 +12522,7 @@ export declare const colorsSchema: z.ZodObject<{
12516
12522
  base_focus_color: string;
12517
12523
  base_hover_color: string;
12518
12524
  body_text: string;
12519
- captcha_widget_theme: "auto";
12525
+ captcha_widget_theme: "auto" | "dark" | "light";
12520
12526
  error: string;
12521
12527
  header: string;
12522
12528
  icons: string;
@@ -12536,7 +12542,7 @@ export declare const colorsSchema: z.ZodObject<{
12536
12542
  base_focus_color: string;
12537
12543
  base_hover_color: string;
12538
12544
  body_text: string;
12539
- captcha_widget_theme: "auto";
12545
+ captcha_widget_theme: "auto" | "dark" | "light";
12540
12546
  error: string;
12541
12547
  header: string;
12542
12548
  icons: string;
@@ -12606,7 +12612,8 @@ export declare const fontsSchema: z.ZodObject<{
12606
12612
  size: number;
12607
12613
  }>;
12608
12614
  links_style: z.ZodEnum<[
12609
- "normal"
12615
+ "normal",
12616
+ "underlined"
12610
12617
  ]>;
12611
12618
  reference_text_size: z.ZodNumber;
12612
12619
  subtitle: z.ZodObject<{
@@ -12651,7 +12658,7 @@ export declare const fontsSchema: z.ZodObject<{
12651
12658
  bold: boolean;
12652
12659
  size: number;
12653
12660
  };
12654
- links_style: "normal";
12661
+ links_style: "normal" | "underlined";
12655
12662
  reference_text_size: number;
12656
12663
  subtitle: {
12657
12664
  bold: boolean;
@@ -12679,7 +12686,7 @@ export declare const fontsSchema: z.ZodObject<{
12679
12686
  bold: boolean;
12680
12687
  size: number;
12681
12688
  };
12682
- links_style: "normal";
12689
+ links_style: "normal" | "underlined";
12683
12690
  reference_text_size: number;
12684
12691
  subtitle: {
12685
12692
  bold: boolean;
@@ -12690,53 +12697,65 @@ export declare const pageBackgroundSchema: z.ZodObject<{
12690
12697
  background_color: z.ZodString;
12691
12698
  background_image_url: z.ZodString;
12692
12699
  page_layout: z.ZodEnum<[
12693
- "center"
12700
+ "center",
12701
+ "left",
12702
+ "right"
12694
12703
  ]>;
12695
12704
  }, "strip", z.ZodTypeAny, {
12696
12705
  background_color: string;
12697
12706
  background_image_url: string;
12698
- page_layout: "center";
12707
+ page_layout: "center" | "left" | "right";
12699
12708
  }, {
12700
12709
  background_color: string;
12701
12710
  background_image_url: string;
12702
- page_layout: "center";
12711
+ page_layout: "center" | "left" | "right";
12703
12712
  }>;
12704
12713
  export declare const widgetSchema: z.ZodObject<{
12705
12714
  header_text_alignment: z.ZodEnum<[
12706
- "center"
12715
+ "center",
12716
+ "left",
12717
+ "right"
12707
12718
  ]>;
12708
12719
  logo_height: z.ZodNumber;
12709
12720
  logo_position: z.ZodEnum<[
12710
- "center"
12721
+ "center",
12722
+ "left",
12723
+ "none",
12724
+ "right"
12711
12725
  ]>;
12712
12726
  logo_url: z.ZodString;
12713
12727
  social_buttons_layout: z.ZodEnum<[
12714
- "bottom"
12728
+ "bottom",
12729
+ "top"
12715
12730
  ]>;
12716
12731
  }, "strip", z.ZodTypeAny, {
12717
12732
  logo_url: string;
12718
- header_text_alignment: "center";
12733
+ header_text_alignment: "center" | "left" | "right";
12719
12734
  logo_height: number;
12720
- logo_position: "center";
12721
- social_buttons_layout: "bottom";
12735
+ logo_position: "center" | "left" | "right" | "none";
12736
+ social_buttons_layout: "bottom" | "top";
12722
12737
  }, {
12723
12738
  logo_url: string;
12724
- header_text_alignment: "center";
12739
+ header_text_alignment: "center" | "left" | "right";
12725
12740
  logo_height: number;
12726
- logo_position: "center";
12727
- social_buttons_layout: "bottom";
12741
+ logo_position: "center" | "left" | "right" | "none";
12742
+ social_buttons_layout: "bottom" | "top";
12728
12743
  }>;
12729
12744
  export declare const themeInsertSchema: z.ZodObject<{
12730
12745
  borders: z.ZodObject<{
12731
12746
  button_border_radius: z.ZodNumber;
12732
12747
  button_border_weight: z.ZodNumber;
12733
12748
  buttons_style: z.ZodEnum<[
12734
- "pill"
12749
+ "pill",
12750
+ "rounded",
12751
+ "sharp"
12735
12752
  ]>;
12736
12753
  input_border_radius: z.ZodNumber;
12737
12754
  input_border_weight: z.ZodNumber;
12738
12755
  inputs_style: z.ZodEnum<[
12739
- "pill"
12756
+ "pill",
12757
+ "rounded",
12758
+ "sharp"
12740
12759
  ]>;
12741
12760
  show_widget_shadow: z.ZodBoolean;
12742
12761
  widget_border_weight: z.ZodNumber;
@@ -12744,20 +12763,20 @@ export declare const themeInsertSchema: z.ZodObject<{
12744
12763
  }, "strip", z.ZodTypeAny, {
12745
12764
  button_border_radius: number;
12746
12765
  button_border_weight: number;
12747
- buttons_style: "pill";
12766
+ buttons_style: "pill" | "rounded" | "sharp";
12748
12767
  input_border_radius: number;
12749
12768
  input_border_weight: number;
12750
- inputs_style: "pill";
12769
+ inputs_style: "pill" | "rounded" | "sharp";
12751
12770
  show_widget_shadow: boolean;
12752
12771
  widget_border_weight: number;
12753
12772
  widget_corner_radius: number;
12754
12773
  }, {
12755
12774
  button_border_radius: number;
12756
12775
  button_border_weight: number;
12757
- buttons_style: "pill";
12776
+ buttons_style: "pill" | "rounded" | "sharp";
12758
12777
  input_border_radius: number;
12759
12778
  input_border_weight: number;
12760
- inputs_style: "pill";
12779
+ inputs_style: "pill" | "rounded" | "sharp";
12761
12780
  show_widget_shadow: boolean;
12762
12781
  widget_border_weight: number;
12763
12782
  widget_corner_radius: number;
@@ -12767,7 +12786,9 @@ export declare const themeInsertSchema: z.ZodObject<{
12767
12786
  base_hover_color: z.ZodString;
12768
12787
  body_text: z.ZodString;
12769
12788
  captcha_widget_theme: z.ZodEnum<[
12770
- "auto"
12789
+ "auto",
12790
+ "dark",
12791
+ "light"
12771
12792
  ]>;
12772
12793
  error: z.ZodString;
12773
12794
  header: z.ZodString;
@@ -12788,7 +12809,7 @@ export declare const themeInsertSchema: z.ZodObject<{
12788
12809
  base_focus_color: string;
12789
12810
  base_hover_color: string;
12790
12811
  body_text: string;
12791
- captcha_widget_theme: "auto";
12812
+ captcha_widget_theme: "auto" | "dark" | "light";
12792
12813
  error: string;
12793
12814
  header: string;
12794
12815
  icons: string;
@@ -12808,7 +12829,7 @@ export declare const themeInsertSchema: z.ZodObject<{
12808
12829
  base_focus_color: string;
12809
12830
  base_hover_color: string;
12810
12831
  body_text: string;
12811
- captcha_widget_theme: "auto";
12832
+ captcha_widget_theme: "auto" | "dark" | "light";
12812
12833
  error: string;
12813
12834
  header: string;
12814
12835
  icons: string;
@@ -12869,7 +12890,8 @@ export declare const themeInsertSchema: z.ZodObject<{
12869
12890
  size: number;
12870
12891
  }>;
12871
12892
  links_style: z.ZodEnum<[
12872
- "normal"
12893
+ "normal",
12894
+ "underlined"
12873
12895
  ]>;
12874
12896
  reference_text_size: z.ZodNumber;
12875
12897
  subtitle: z.ZodObject<{
@@ -12914,7 +12936,7 @@ export declare const themeInsertSchema: z.ZodObject<{
12914
12936
  bold: boolean;
12915
12937
  size: number;
12916
12938
  };
12917
- links_style: "normal";
12939
+ links_style: "normal" | "underlined";
12918
12940
  reference_text_size: number;
12919
12941
  subtitle: {
12920
12942
  bold: boolean;
@@ -12942,7 +12964,7 @@ export declare const themeInsertSchema: z.ZodObject<{
12942
12964
  bold: boolean;
12943
12965
  size: number;
12944
12966
  };
12945
- links_style: "normal";
12967
+ links_style: "normal" | "underlined";
12946
12968
  reference_text_size: number;
12947
12969
  subtitle: {
12948
12970
  bold: boolean;
@@ -12953,53 +12975,61 @@ export declare const themeInsertSchema: z.ZodObject<{
12953
12975
  background_color: z.ZodString;
12954
12976
  background_image_url: z.ZodString;
12955
12977
  page_layout: z.ZodEnum<[
12956
- "center"
12978
+ "center",
12979
+ "left",
12980
+ "right"
12957
12981
  ]>;
12958
12982
  }, "strip", z.ZodTypeAny, {
12959
12983
  background_color: string;
12960
12984
  background_image_url: string;
12961
- page_layout: "center";
12985
+ page_layout: "center" | "left" | "right";
12962
12986
  }, {
12963
12987
  background_color: string;
12964
12988
  background_image_url: string;
12965
- page_layout: "center";
12989
+ page_layout: "center" | "left" | "right";
12966
12990
  }>;
12967
12991
  widget: z.ZodObject<{
12968
12992
  header_text_alignment: z.ZodEnum<[
12969
- "center"
12993
+ "center",
12994
+ "left",
12995
+ "right"
12970
12996
  ]>;
12971
12997
  logo_height: z.ZodNumber;
12972
12998
  logo_position: z.ZodEnum<[
12973
- "center"
12999
+ "center",
13000
+ "left",
13001
+ "none",
13002
+ "right"
12974
13003
  ]>;
12975
13004
  logo_url: z.ZodString;
12976
13005
  social_buttons_layout: z.ZodEnum<[
12977
- "bottom"
13006
+ "bottom",
13007
+ "top"
12978
13008
  ]>;
12979
13009
  }, "strip", z.ZodTypeAny, {
12980
13010
  logo_url: string;
12981
- header_text_alignment: "center";
13011
+ header_text_alignment: "center" | "left" | "right";
12982
13012
  logo_height: number;
12983
- logo_position: "center";
12984
- social_buttons_layout: "bottom";
13013
+ logo_position: "center" | "left" | "right" | "none";
13014
+ social_buttons_layout: "bottom" | "top";
12985
13015
  }, {
12986
13016
  logo_url: string;
12987
- header_text_alignment: "center";
13017
+ header_text_alignment: "center" | "left" | "right";
12988
13018
  logo_height: number;
12989
- logo_position: "center";
12990
- social_buttons_layout: "bottom";
13019
+ logo_position: "center" | "left" | "right" | "none";
13020
+ social_buttons_layout: "bottom" | "top";
12991
13021
  }>;
12992
13022
  }, "strip", z.ZodTypeAny, {
12993
13023
  page_background: {
12994
13024
  background_color: string;
12995
13025
  background_image_url: string;
12996
- page_layout: "center";
13026
+ page_layout: "center" | "left" | "right";
12997
13027
  };
12998
13028
  colors: {
12999
13029
  base_focus_color: string;
13000
13030
  base_hover_color: string;
13001
13031
  body_text: string;
13002
- captcha_widget_theme: "auto";
13032
+ captcha_widget_theme: "auto" | "dark" | "light";
13003
13033
  error: string;
13004
13034
  header: string;
13005
13035
  icons: string;
@@ -13019,10 +13049,10 @@ export declare const themeInsertSchema: z.ZodObject<{
13019
13049
  borders: {
13020
13050
  button_border_radius: number;
13021
13051
  button_border_weight: number;
13022
- buttons_style: "pill";
13052
+ buttons_style: "pill" | "rounded" | "sharp";
13023
13053
  input_border_radius: number;
13024
13054
  input_border_weight: number;
13025
- inputs_style: "pill";
13055
+ inputs_style: "pill" | "rounded" | "sharp";
13026
13056
  show_widget_shadow: boolean;
13027
13057
  widget_border_weight: number;
13028
13058
  widget_corner_radius: number;
@@ -13050,7 +13080,7 @@ export declare const themeInsertSchema: z.ZodObject<{
13050
13080
  bold: boolean;
13051
13081
  size: number;
13052
13082
  };
13053
- links_style: "normal";
13083
+ links_style: "normal" | "underlined";
13054
13084
  reference_text_size: number;
13055
13085
  subtitle: {
13056
13086
  bold: boolean;
@@ -13059,22 +13089,22 @@ export declare const themeInsertSchema: z.ZodObject<{
13059
13089
  };
13060
13090
  widget: {
13061
13091
  logo_url: string;
13062
- header_text_alignment: "center";
13092
+ header_text_alignment: "center" | "left" | "right";
13063
13093
  logo_height: number;
13064
- logo_position: "center";
13065
- social_buttons_layout: "bottom";
13094
+ logo_position: "center" | "left" | "right" | "none";
13095
+ social_buttons_layout: "bottom" | "top";
13066
13096
  };
13067
13097
  }, {
13068
13098
  page_background: {
13069
13099
  background_color: string;
13070
13100
  background_image_url: string;
13071
- page_layout: "center";
13101
+ page_layout: "center" | "left" | "right";
13072
13102
  };
13073
13103
  colors: {
13074
13104
  base_focus_color: string;
13075
13105
  base_hover_color: string;
13076
13106
  body_text: string;
13077
- captcha_widget_theme: "auto";
13107
+ captcha_widget_theme: "auto" | "dark" | "light";
13078
13108
  error: string;
13079
13109
  header: string;
13080
13110
  icons: string;
@@ -13094,10 +13124,10 @@ export declare const themeInsertSchema: z.ZodObject<{
13094
13124
  borders: {
13095
13125
  button_border_radius: number;
13096
13126
  button_border_weight: number;
13097
- buttons_style: "pill";
13127
+ buttons_style: "pill" | "rounded" | "sharp";
13098
13128
  input_border_radius: number;
13099
13129
  input_border_weight: number;
13100
- inputs_style: "pill";
13130
+ inputs_style: "pill" | "rounded" | "sharp";
13101
13131
  show_widget_shadow: boolean;
13102
13132
  widget_border_weight: number;
13103
13133
  widget_corner_radius: number;
@@ -13125,7 +13155,7 @@ export declare const themeInsertSchema: z.ZodObject<{
13125
13155
  bold: boolean;
13126
13156
  size: number;
13127
13157
  };
13128
- links_style: "normal";
13158
+ links_style: "normal" | "underlined";
13129
13159
  reference_text_size: number;
13130
13160
  subtitle: {
13131
13161
  bold: boolean;
@@ -13134,10 +13164,10 @@ export declare const themeInsertSchema: z.ZodObject<{
13134
13164
  };
13135
13165
  widget: {
13136
13166
  logo_url: string;
13137
- header_text_alignment: "center";
13167
+ header_text_alignment: "center" | "left" | "right";
13138
13168
  logo_height: number;
13139
- logo_position: "center";
13140
- social_buttons_layout: "bottom";
13169
+ logo_position: "center" | "left" | "right" | "none";
13170
+ social_buttons_layout: "bottom" | "top";
13141
13171
  };
13142
13172
  }>;
13143
13173
  export type ThemeInsert = z.input<typeof themeInsertSchema>;
@@ -13146,12 +13176,16 @@ export declare const themeSchema: z.ZodObject<{
13146
13176
  button_border_radius: z.ZodNumber;
13147
13177
  button_border_weight: z.ZodNumber;
13148
13178
  buttons_style: z.ZodEnum<[
13149
- "pill"
13179
+ "pill",
13180
+ "rounded",
13181
+ "sharp"
13150
13182
  ]>;
13151
13183
  input_border_radius: z.ZodNumber;
13152
13184
  input_border_weight: z.ZodNumber;
13153
13185
  inputs_style: z.ZodEnum<[
13154
- "pill"
13186
+ "pill",
13187
+ "rounded",
13188
+ "sharp"
13155
13189
  ]>;
13156
13190
  show_widget_shadow: z.ZodBoolean;
13157
13191
  widget_border_weight: z.ZodNumber;
@@ -13159,20 +13193,20 @@ export declare const themeSchema: z.ZodObject<{
13159
13193
  }, "strip", z.ZodTypeAny, {
13160
13194
  button_border_radius: number;
13161
13195
  button_border_weight: number;
13162
- buttons_style: "pill";
13196
+ buttons_style: "pill" | "rounded" | "sharp";
13163
13197
  input_border_radius: number;
13164
13198
  input_border_weight: number;
13165
- inputs_style: "pill";
13199
+ inputs_style: "pill" | "rounded" | "sharp";
13166
13200
  show_widget_shadow: boolean;
13167
13201
  widget_border_weight: number;
13168
13202
  widget_corner_radius: number;
13169
13203
  }, {
13170
13204
  button_border_radius: number;
13171
13205
  button_border_weight: number;
13172
- buttons_style: "pill";
13206
+ buttons_style: "pill" | "rounded" | "sharp";
13173
13207
  input_border_radius: number;
13174
13208
  input_border_weight: number;
13175
- inputs_style: "pill";
13209
+ inputs_style: "pill" | "rounded" | "sharp";
13176
13210
  show_widget_shadow: boolean;
13177
13211
  widget_border_weight: number;
13178
13212
  widget_corner_radius: number;
@@ -13182,7 +13216,9 @@ export declare const themeSchema: z.ZodObject<{
13182
13216
  base_hover_color: z.ZodString;
13183
13217
  body_text: z.ZodString;
13184
13218
  captcha_widget_theme: z.ZodEnum<[
13185
- "auto"
13219
+ "auto",
13220
+ "dark",
13221
+ "light"
13186
13222
  ]>;
13187
13223
  error: z.ZodString;
13188
13224
  header: z.ZodString;
@@ -13203,7 +13239,7 @@ export declare const themeSchema: z.ZodObject<{
13203
13239
  base_focus_color: string;
13204
13240
  base_hover_color: string;
13205
13241
  body_text: string;
13206
- captcha_widget_theme: "auto";
13242
+ captcha_widget_theme: "auto" | "dark" | "light";
13207
13243
  error: string;
13208
13244
  header: string;
13209
13245
  icons: string;
@@ -13223,7 +13259,7 @@ export declare const themeSchema: z.ZodObject<{
13223
13259
  base_focus_color: string;
13224
13260
  base_hover_color: string;
13225
13261
  body_text: string;
13226
- captcha_widget_theme: "auto";
13262
+ captcha_widget_theme: "auto" | "dark" | "light";
13227
13263
  error: string;
13228
13264
  header: string;
13229
13265
  icons: string;
@@ -13284,7 +13320,8 @@ export declare const themeSchema: z.ZodObject<{
13284
13320
  size: number;
13285
13321
  }>;
13286
13322
  links_style: z.ZodEnum<[
13287
- "normal"
13323
+ "normal",
13324
+ "underlined"
13288
13325
  ]>;
13289
13326
  reference_text_size: z.ZodNumber;
13290
13327
  subtitle: z.ZodObject<{
@@ -13329,7 +13366,7 @@ export declare const themeSchema: z.ZodObject<{
13329
13366
  bold: boolean;
13330
13367
  size: number;
13331
13368
  };
13332
- links_style: "normal";
13369
+ links_style: "normal" | "underlined";
13333
13370
  reference_text_size: number;
13334
13371
  subtitle: {
13335
13372
  bold: boolean;
@@ -13357,7 +13394,7 @@ export declare const themeSchema: z.ZodObject<{
13357
13394
  bold: boolean;
13358
13395
  size: number;
13359
13396
  };
13360
- links_style: "normal";
13397
+ links_style: "normal" | "underlined";
13361
13398
  reference_text_size: number;
13362
13399
  subtitle: {
13363
13400
  bold: boolean;
@@ -13368,41 +13405,49 @@ export declare const themeSchema: z.ZodObject<{
13368
13405
  background_color: z.ZodString;
13369
13406
  background_image_url: z.ZodString;
13370
13407
  page_layout: z.ZodEnum<[
13371
- "center"
13408
+ "center",
13409
+ "left",
13410
+ "right"
13372
13411
  ]>;
13373
13412
  }, "strip", z.ZodTypeAny, {
13374
13413
  background_color: string;
13375
13414
  background_image_url: string;
13376
- page_layout: "center";
13415
+ page_layout: "center" | "left" | "right";
13377
13416
  }, {
13378
13417
  background_color: string;
13379
13418
  background_image_url: string;
13380
- page_layout: "center";
13419
+ page_layout: "center" | "left" | "right";
13381
13420
  }>;
13382
13421
  widget: z.ZodObject<{
13383
13422
  header_text_alignment: z.ZodEnum<[
13384
- "center"
13423
+ "center",
13424
+ "left",
13425
+ "right"
13385
13426
  ]>;
13386
13427
  logo_height: z.ZodNumber;
13387
13428
  logo_position: z.ZodEnum<[
13388
- "center"
13429
+ "center",
13430
+ "left",
13431
+ "none",
13432
+ "right"
13389
13433
  ]>;
13390
13434
  logo_url: z.ZodString;
13391
13435
  social_buttons_layout: z.ZodEnum<[
13392
- "bottom"
13436
+ "bottom",
13437
+ "top"
13393
13438
  ]>;
13394
13439
  }, "strip", z.ZodTypeAny, {
13395
13440
  logo_url: string;
13396
- header_text_alignment: "center";
13441
+ header_text_alignment: "center" | "left" | "right";
13397
13442
  logo_height: number;
13398
- logo_position: "center";
13399
- social_buttons_layout: "bottom";
13443
+ logo_position: "center" | "left" | "right" | "none";
13444
+ social_buttons_layout: "bottom" | "top";
13400
13445
  }, {
13401
13446
  logo_url: string;
13402
- header_text_alignment: "center";
13447
+ header_text_alignment: "center" | "left" | "right";
13403
13448
  logo_height: number;
13404
- logo_position: "center";
13405
- social_buttons_layout: "bottom";
13449
+ logo_position: "center" | "left" | "right" | "none";
13450
+ social_buttons_layout: "bottom" | "top";
13406
13451
  }>;
13407
13452
  } & {
13408
13453
  themeId: z.ZodString;
@@ -13410,13 +13455,13 @@ export declare const themeSchema: z.ZodObject<{
13410
13455
  page_background: {
13411
13456
  background_color: string;
13412
13457
  background_image_url: string;
13413
- page_layout: "center";
13458
+ page_layout: "center" | "left" | "right";
13414
13459
  };
13415
13460
  colors: {
13416
13461
  base_focus_color: string;
13417
13462
  base_hover_color: string;
13418
13463
  body_text: string;
13419
- captcha_widget_theme: "auto";
13464
+ captcha_widget_theme: "auto" | "dark" | "light";
13420
13465
  error: string;
13421
13466
  header: string;
13422
13467
  icons: string;
@@ -13436,10 +13481,10 @@ export declare const themeSchema: z.ZodObject<{
13436
13481
  borders: {
13437
13482
  button_border_radius: number;
13438
13483
  button_border_weight: number;
13439
- buttons_style: "pill";
13484
+ buttons_style: "pill" | "rounded" | "sharp";
13440
13485
  input_border_radius: number;
13441
13486
  input_border_weight: number;
13442
- inputs_style: "pill";
13487
+ inputs_style: "pill" | "rounded" | "sharp";
13443
13488
  show_widget_shadow: boolean;
13444
13489
  widget_border_weight: number;
13445
13490
  widget_corner_radius: number;
@@ -13467,7 +13512,7 @@ export declare const themeSchema: z.ZodObject<{
13467
13512
  bold: boolean;
13468
13513
  size: number;
13469
13514
  };
13470
- links_style: "normal";
13515
+ links_style: "normal" | "underlined";
13471
13516
  reference_text_size: number;
13472
13517
  subtitle: {
13473
13518
  bold: boolean;
@@ -13476,23 +13521,23 @@ export declare const themeSchema: z.ZodObject<{
13476
13521
  };
13477
13522
  widget: {
13478
13523
  logo_url: string;
13479
- header_text_alignment: "center";
13524
+ header_text_alignment: "center" | "left" | "right";
13480
13525
  logo_height: number;
13481
- logo_position: "center";
13482
- social_buttons_layout: "bottom";
13526
+ logo_position: "center" | "left" | "right" | "none";
13527
+ social_buttons_layout: "bottom" | "top";
13483
13528
  };
13484
13529
  themeId: string;
13485
13530
  }, {
13486
13531
  page_background: {
13487
13532
  background_color: string;
13488
13533
  background_image_url: string;
13489
- page_layout: "center";
13534
+ page_layout: "center" | "left" | "right";
13490
13535
  };
13491
13536
  colors: {
13492
13537
  base_focus_color: string;
13493
13538
  base_hover_color: string;
13494
13539
  body_text: string;
13495
- captcha_widget_theme: "auto";
13540
+ captcha_widget_theme: "auto" | "dark" | "light";
13496
13541
  error: string;
13497
13542
  header: string;
13498
13543
  icons: string;
@@ -13512,10 +13557,10 @@ export declare const themeSchema: z.ZodObject<{
13512
13557
  borders: {
13513
13558
  button_border_radius: number;
13514
13559
  button_border_weight: number;
13515
- buttons_style: "pill";
13560
+ buttons_style: "pill" | "rounded" | "sharp";
13516
13561
  input_border_radius: number;
13517
13562
  input_border_weight: number;
13518
- inputs_style: "pill";
13563
+ inputs_style: "pill" | "rounded" | "sharp";
13519
13564
  show_widget_shadow: boolean;
13520
13565
  widget_border_weight: number;
13521
13566
  widget_corner_radius: number;
@@ -13543,7 +13588,7 @@ export declare const themeSchema: z.ZodObject<{
13543
13588
  bold: boolean;
13544
13589
  size: number;
13545
13590
  };
13546
- links_style: "normal";
13591
+ links_style: "normal" | "underlined";
13547
13592
  reference_text_size: number;
13548
13593
  subtitle: {
13549
13594
  bold: boolean;
@@ -13552,10 +13597,10 @@ export declare const themeSchema: z.ZodObject<{
13552
13597
  };
13553
13598
  widget: {
13554
13599
  logo_url: string;
13555
- header_text_alignment: "center";
13600
+ header_text_alignment: "center" | "left" | "right";
13556
13601
  logo_height: number;
13557
- logo_position: "center";
13558
- social_buttons_layout: "bottom";
13602
+ logo_position: "center" | "left" | "right" | "none";
13603
+ social_buttons_layout: "bottom" | "top";
13559
13604
  };
13560
13605
  themeId: string;
13561
13606
  }>;
@@ -17625,13 +17670,13 @@ export declare function init(config: AuthHeroConfig): {
17625
17670
  page_background: {
17626
17671
  background_color: string;
17627
17672
  background_image_url: string;
17628
- page_layout: "center";
17673
+ page_layout: "center" | "left" | "right";
17629
17674
  };
17630
17675
  colors: {
17631
17676
  base_focus_color: string;
17632
17677
  base_hover_color: string;
17633
17678
  body_text: string;
17634
- captcha_widget_theme: "auto";
17679
+ captcha_widget_theme: "auto" | "dark" | "light";
17635
17680
  error: string;
17636
17681
  header: string;
17637
17682
  icons: string;
@@ -17651,10 +17696,10 @@ export declare function init(config: AuthHeroConfig): {
17651
17696
  borders: {
17652
17697
  button_border_radius: number;
17653
17698
  button_border_weight: number;
17654
- buttons_style: "pill";
17699
+ buttons_style: "pill" | "rounded" | "sharp";
17655
17700
  input_border_radius: number;
17656
17701
  input_border_weight: number;
17657
- inputs_style: "pill";
17702
+ inputs_style: "pill" | "rounded" | "sharp";
17658
17703
  show_widget_shadow: boolean;
17659
17704
  widget_border_weight: number;
17660
17705
  widget_corner_radius: number;
@@ -17682,7 +17727,7 @@ export declare function init(config: AuthHeroConfig): {
17682
17727
  bold: boolean;
17683
17728
  size: number;
17684
17729
  };
17685
- links_style: "normal";
17730
+ links_style: "normal" | "underlined";
17686
17731
  reference_text_size: number;
17687
17732
  subtitle: {
17688
17733
  bold: boolean;
@@ -17691,10 +17736,10 @@ export declare function init(config: AuthHeroConfig): {
17691
17736
  };
17692
17737
  widget: {
17693
17738
  logo_url: string;
17694
- header_text_alignment: "center";
17739
+ header_text_alignment: "center" | "left" | "right";
17695
17740
  logo_height: number;
17696
- logo_position: "center";
17697
- social_buttons_layout: "bottom";
17741
+ logo_position: "center" | "left" | "right" | "none";
17742
+ social_buttons_layout: "bottom" | "top";
17698
17743
  };
17699
17744
  themeId: string;
17700
17745
  };
@@ -17714,7 +17759,7 @@ export declare function init(config: AuthHeroConfig): {
17714
17759
  page_background?: {
17715
17760
  background_color?: string | undefined;
17716
17761
  background_image_url?: string | undefined;
17717
- page_layout?: "center" | undefined;
17762
+ page_layout?: "center" | "left" | "right" | undefined;
17718
17763
  } | undefined;
17719
17764
  colors?: {
17720
17765
  header?: string | undefined;
@@ -17722,7 +17767,7 @@ export declare function init(config: AuthHeroConfig): {
17722
17767
  base_focus_color?: string | undefined;
17723
17768
  base_hover_color?: string | undefined;
17724
17769
  body_text?: string | undefined;
17725
- captcha_widget_theme?: "auto" | undefined;
17770
+ captcha_widget_theme?: "auto" | "dark" | "light" | undefined;
17726
17771
  icons?: string | undefined;
17727
17772
  input_background?: string | undefined;
17728
17773
  input_border?: string | undefined;
@@ -17740,10 +17785,10 @@ export declare function init(config: AuthHeroConfig): {
17740
17785
  borders?: {
17741
17786
  button_border_radius?: number | undefined;
17742
17787
  button_border_weight?: number | undefined;
17743
- buttons_style?: "pill" | undefined;
17788
+ buttons_style?: "pill" | "rounded" | "sharp" | undefined;
17744
17789
  input_border_radius?: number | undefined;
17745
17790
  input_border_weight?: number | undefined;
17746
- inputs_style?: "pill" | undefined;
17791
+ inputs_style?: "pill" | "rounded" | "sharp" | undefined;
17747
17792
  show_widget_shadow?: boolean | undefined;
17748
17793
  widget_border_weight?: number | undefined;
17749
17794
  widget_corner_radius?: number | undefined;
@@ -17771,7 +17816,7 @@ export declare function init(config: AuthHeroConfig): {
17771
17816
  bold?: boolean | undefined;
17772
17817
  size?: number | undefined;
17773
17818
  } | undefined;
17774
- links_style?: "normal" | undefined;
17819
+ links_style?: "normal" | "underlined" | undefined;
17775
17820
  reference_text_size?: number | undefined;
17776
17821
  subtitle?: {
17777
17822
  bold?: boolean | undefined;
@@ -17779,11 +17824,11 @@ export declare function init(config: AuthHeroConfig): {
17779
17824
  } | undefined;
17780
17825
  } | undefined;
17781
17826
  widget?: {
17782
- header_text_alignment?: "center" | undefined;
17827
+ header_text_alignment?: "center" | "left" | "right" | undefined;
17783
17828
  logo_height?: number | undefined;
17784
- logo_position?: "center" | undefined;
17829
+ logo_position?: "center" | "left" | "right" | "none" | undefined;
17785
17830
  logo_url?: string | undefined;
17786
- social_buttons_layout?: "bottom" | undefined;
17831
+ social_buttons_layout?: "bottom" | "top" | undefined;
17787
17832
  } | undefined;
17788
17833
  themeId?: string | undefined;
17789
17834
  };
@@ -17792,13 +17837,13 @@ export declare function init(config: AuthHeroConfig): {
17792
17837
  page_background: {
17793
17838
  background_color: string;
17794
17839
  background_image_url: string;
17795
- page_layout: "center";
17840
+ page_layout: "center" | "left" | "right";
17796
17841
  };
17797
17842
  colors: {
17798
17843
  base_focus_color: string;
17799
17844
  base_hover_color: string;
17800
17845
  body_text: string;
17801
- captcha_widget_theme: "auto";
17846
+ captcha_widget_theme: "auto" | "dark" | "light";
17802
17847
  error: string;
17803
17848
  header: string;
17804
17849
  icons: string;
@@ -17818,10 +17863,10 @@ export declare function init(config: AuthHeroConfig): {
17818
17863
  borders: {
17819
17864
  button_border_radius: number;
17820
17865
  button_border_weight: number;
17821
- buttons_style: "pill";
17866
+ buttons_style: "pill" | "rounded" | "sharp";
17822
17867
  input_border_radius: number;
17823
17868
  input_border_weight: number;
17824
- inputs_style: "pill";
17869
+ inputs_style: "pill" | "rounded" | "sharp";
17825
17870
  show_widget_shadow: boolean;
17826
17871
  widget_border_weight: number;
17827
17872
  widget_corner_radius: number;
@@ -17849,7 +17894,7 @@ export declare function init(config: AuthHeroConfig): {
17849
17894
  bold: boolean;
17850
17895
  size: number;
17851
17896
  };
17852
- links_style: "normal";
17897
+ links_style: "normal" | "underlined";
17853
17898
  reference_text_size: number;
17854
17899
  subtitle: {
17855
17900
  bold: boolean;
@@ -17858,10 +17903,10 @@ export declare function init(config: AuthHeroConfig): {
17858
17903
  };
17859
17904
  widget: {
17860
17905
  logo_url: string;
17861
- header_text_alignment: "center";
17906
+ header_text_alignment: "center" | "left" | "right";
17862
17907
  logo_height: number;
17863
- logo_position: "center";
17864
- social_buttons_layout: "bottom";
17908
+ logo_position: "center" | "left" | "right" | "none";
17909
+ social_buttons_layout: "bottom" | "top";
17865
17910
  };
17866
17911
  themeId: string;
17867
17912
  };