@authhero/adapter-interfaces 0.146.0 → 0.148.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.
@@ -14729,16 +14729,19 @@ declare const socialField: z.ZodObject<{
14729
14729
  strategy: z.ZodOptional<z.ZodString>;
14730
14730
  display_name: z.ZodOptional<z.ZodString>;
14731
14731
  icon_url: z.ZodOptional<z.ZodString>;
14732
+ href: z.ZodOptional<z.ZodString>;
14732
14733
  }, "strip", z.ZodTypeAny, {
14733
14734
  name: string;
14734
14735
  icon_url?: string | undefined;
14735
14736
  display_name?: string | undefined;
14736
14737
  strategy?: string | undefined;
14738
+ href?: string | undefined;
14737
14739
  }, {
14738
14740
  name: string;
14739
14741
  icon_url?: string | undefined;
14740
14742
  display_name?: string | undefined;
14741
14743
  strategy?: string | undefined;
14744
+ href?: string | undefined;
14742
14745
  }>, "many">>;
14743
14746
  }, "strip", z.ZodTypeAny, {
14744
14747
  providers?: string[] | undefined;
@@ -14747,6 +14750,7 @@ declare const socialField: z.ZodObject<{
14747
14750
  icon_url?: string | undefined;
14748
14751
  display_name?: string | undefined;
14749
14752
  strategy?: string | undefined;
14753
+ href?: string | undefined;
14750
14754
  }[] | undefined;
14751
14755
  }, {
14752
14756
  providers?: string[] | undefined;
@@ -14755,6 +14759,7 @@ declare const socialField: z.ZodObject<{
14755
14759
  icon_url?: string | undefined;
14756
14760
  display_name?: string | undefined;
14757
14761
  strategy?: string | undefined;
14762
+ href?: string | undefined;
14758
14763
  }[] | undefined;
14759
14764
  }>>;
14760
14765
  }, "strip", z.ZodTypeAny, {
@@ -14770,6 +14775,7 @@ declare const socialField: z.ZodObject<{
14770
14775
  icon_url?: string | undefined;
14771
14776
  display_name?: string | undefined;
14772
14777
  strategy?: string | undefined;
14778
+ href?: string | undefined;
14773
14779
  }[] | undefined;
14774
14780
  } | undefined;
14775
14781
  sensitive?: boolean | undefined;
@@ -14793,6 +14799,7 @@ declare const socialField: z.ZodObject<{
14793
14799
  icon_url?: string | undefined;
14794
14800
  display_name?: string | undefined;
14795
14801
  strategy?: string | undefined;
14802
+ href?: string | undefined;
14796
14803
  }[] | undefined;
14797
14804
  } | undefined;
14798
14805
  sensitive?: boolean | undefined;
@@ -14984,6 +14991,85 @@ declare const textField: z.ZodObject<{
14984
14991
  id?: number | undefined;
14985
14992
  }[] | undefined;
14986
14993
  }>;
14994
+ declare const countryField: z.ZodObject<{
14995
+ id: z.ZodString;
14996
+ order: z.ZodOptional<z.ZodNumber>;
14997
+ visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
14998
+ } & {
14999
+ category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
15000
+ label: z.ZodOptional<z.ZodString>;
15001
+ hint: z.ZodOptional<z.ZodString>;
15002
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
15003
+ id: z.ZodOptional<z.ZodNumber>;
15004
+ text: z.ZodString;
15005
+ type: z.ZodEnum<[
15006
+ "info",
15007
+ "error",
15008
+ "success",
15009
+ "warning"
15010
+ ]>;
15011
+ }, "strip", z.ZodTypeAny, {
15012
+ type: "info" | "error" | "success" | "warning";
15013
+ text: string;
15014
+ id?: number | undefined;
15015
+ }, {
15016
+ type: "info" | "error" | "success" | "warning";
15017
+ text: string;
15018
+ id?: number | undefined;
15019
+ }>, "many">>;
15020
+ required: z.ZodOptional<z.ZodBoolean>;
15021
+ sensitive: z.ZodOptional<z.ZodBoolean>;
15022
+ } & {
15023
+ type: z.ZodLiteral<"COUNTRY">;
15024
+ config: z.ZodOptional<z.ZodObject<{
15025
+ placeholder: z.ZodOptional<z.ZodString>;
15026
+ default_value: z.ZodOptional<z.ZodString>;
15027
+ }, "strip", z.ZodTypeAny, {
15028
+ placeholder?: string | undefined;
15029
+ default_value?: string | undefined;
15030
+ }, {
15031
+ placeholder?: string | undefined;
15032
+ default_value?: string | undefined;
15033
+ }>>;
15034
+ }, "strip", z.ZodTypeAny, {
15035
+ type: "COUNTRY";
15036
+ id: string;
15037
+ visible: boolean;
15038
+ required?: boolean | undefined;
15039
+ category?: "FIELD" | undefined;
15040
+ config?: {
15041
+ placeholder?: string | undefined;
15042
+ default_value?: string | undefined;
15043
+ } | undefined;
15044
+ sensitive?: boolean | undefined;
15045
+ label?: string | undefined;
15046
+ order?: number | undefined;
15047
+ hint?: string | undefined;
15048
+ messages?: {
15049
+ type: "info" | "error" | "success" | "warning";
15050
+ text: string;
15051
+ id?: number | undefined;
15052
+ }[] | undefined;
15053
+ }, {
15054
+ type: "COUNTRY";
15055
+ id: string;
15056
+ required?: boolean | undefined;
15057
+ category?: "FIELD" | undefined;
15058
+ config?: {
15059
+ placeholder?: string | undefined;
15060
+ default_value?: string | undefined;
15061
+ } | undefined;
15062
+ sensitive?: boolean | undefined;
15063
+ label?: string | undefined;
15064
+ order?: number | undefined;
15065
+ visible?: boolean | undefined;
15066
+ hint?: string | undefined;
15067
+ messages?: {
15068
+ type: "info" | "error" | "success" | "warning";
15069
+ text: string;
15070
+ id?: number | undefined;
15071
+ }[] | undefined;
15072
+ }>;
14987
15073
  declare const urlField: z.ZodObject<{
14988
15074
  id: z.ZodString;
14989
15075
  order: z.ZodOptional<z.ZodNumber>;
@@ -15816,6 +15902,85 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
15816
15902
  id?: number | undefined;
15817
15903
  }[] | undefined;
15818
15904
  }>,
15905
+ z.ZodObject<{
15906
+ id: z.ZodString;
15907
+ order: z.ZodOptional<z.ZodNumber>;
15908
+ visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
15909
+ } & {
15910
+ category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
15911
+ label: z.ZodOptional<z.ZodString>;
15912
+ hint: z.ZodOptional<z.ZodString>;
15913
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
15914
+ id: z.ZodOptional<z.ZodNumber>;
15915
+ text: z.ZodString;
15916
+ type: z.ZodEnum<[
15917
+ "info",
15918
+ "error",
15919
+ "success",
15920
+ "warning"
15921
+ ]>;
15922
+ }, "strip", z.ZodTypeAny, {
15923
+ type: "info" | "error" | "success" | "warning";
15924
+ text: string;
15925
+ id?: number | undefined;
15926
+ }, {
15927
+ type: "info" | "error" | "success" | "warning";
15928
+ text: string;
15929
+ id?: number | undefined;
15930
+ }>, "many">>;
15931
+ required: z.ZodOptional<z.ZodBoolean>;
15932
+ sensitive: z.ZodOptional<z.ZodBoolean>;
15933
+ } & {
15934
+ type: z.ZodLiteral<"COUNTRY">;
15935
+ config: z.ZodOptional<z.ZodObject<{
15936
+ placeholder: z.ZodOptional<z.ZodString>;
15937
+ default_value: z.ZodOptional<z.ZodString>;
15938
+ }, "strip", z.ZodTypeAny, {
15939
+ placeholder?: string | undefined;
15940
+ default_value?: string | undefined;
15941
+ }, {
15942
+ placeholder?: string | undefined;
15943
+ default_value?: string | undefined;
15944
+ }>>;
15945
+ }, "strip", z.ZodTypeAny, {
15946
+ type: "COUNTRY";
15947
+ id: string;
15948
+ visible: boolean;
15949
+ required?: boolean | undefined;
15950
+ category?: "FIELD" | undefined;
15951
+ config?: {
15952
+ placeholder?: string | undefined;
15953
+ default_value?: string | undefined;
15954
+ } | undefined;
15955
+ sensitive?: boolean | undefined;
15956
+ label?: string | undefined;
15957
+ order?: number | undefined;
15958
+ hint?: string | undefined;
15959
+ messages?: {
15960
+ type: "info" | "error" | "success" | "warning";
15961
+ text: string;
15962
+ id?: number | undefined;
15963
+ }[] | undefined;
15964
+ }, {
15965
+ type: "COUNTRY";
15966
+ id: string;
15967
+ required?: boolean | undefined;
15968
+ category?: "FIELD" | undefined;
15969
+ config?: {
15970
+ placeholder?: string | undefined;
15971
+ default_value?: string | undefined;
15972
+ } | undefined;
15973
+ sensitive?: boolean | undefined;
15974
+ label?: string | undefined;
15975
+ order?: number | undefined;
15976
+ visible?: boolean | undefined;
15977
+ hint?: string | undefined;
15978
+ messages?: {
15979
+ type: "info" | "error" | "success" | "warning";
15980
+ text: string;
15981
+ id?: number | undefined;
15982
+ }[] | undefined;
15983
+ }>,
15819
15984
  z.ZodObject<{
15820
15985
  id: z.ZodString;
15821
15986
  order: z.ZodOptional<z.ZodNumber>;
@@ -16658,16 +16823,19 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
16658
16823
  strategy: z.ZodOptional<z.ZodString>;
16659
16824
  display_name: z.ZodOptional<z.ZodString>;
16660
16825
  icon_url: z.ZodOptional<z.ZodString>;
16826
+ href: z.ZodOptional<z.ZodString>;
16661
16827
  }, "strip", z.ZodTypeAny, {
16662
16828
  name: string;
16663
16829
  icon_url?: string | undefined;
16664
16830
  display_name?: string | undefined;
16665
16831
  strategy?: string | undefined;
16832
+ href?: string | undefined;
16666
16833
  }, {
16667
16834
  name: string;
16668
16835
  icon_url?: string | undefined;
16669
16836
  display_name?: string | undefined;
16670
16837
  strategy?: string | undefined;
16838
+ href?: string | undefined;
16671
16839
  }>, "many">>;
16672
16840
  }, "strip", z.ZodTypeAny, {
16673
16841
  providers?: string[] | undefined;
@@ -16676,6 +16844,7 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
16676
16844
  icon_url?: string | undefined;
16677
16845
  display_name?: string | undefined;
16678
16846
  strategy?: string | undefined;
16847
+ href?: string | undefined;
16679
16848
  }[] | undefined;
16680
16849
  }, {
16681
16850
  providers?: string[] | undefined;
@@ -16684,6 +16853,7 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
16684
16853
  icon_url?: string | undefined;
16685
16854
  display_name?: string | undefined;
16686
16855
  strategy?: string | undefined;
16856
+ href?: string | undefined;
16687
16857
  }[] | undefined;
16688
16858
  }>>;
16689
16859
  }, "strip", z.ZodTypeAny, {
@@ -16699,6 +16869,7 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
16699
16869
  icon_url?: string | undefined;
16700
16870
  display_name?: string | undefined;
16701
16871
  strategy?: string | undefined;
16872
+ href?: string | undefined;
16702
16873
  }[] | undefined;
16703
16874
  } | undefined;
16704
16875
  sensitive?: boolean | undefined;
@@ -16722,6 +16893,7 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
16722
16893
  icon_url?: string | undefined;
16723
16894
  display_name?: string | undefined;
16724
16895
  strategy?: string | undefined;
16896
+ href?: string | undefined;
16725
16897
  }[] | undefined;
16726
16898
  } | undefined;
16727
16899
  sensitive?: boolean | undefined;
@@ -17741,6 +17913,85 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
17741
17913
  id?: number | undefined;
17742
17914
  }[] | undefined;
17743
17915
  }>,
17916
+ z.ZodObject<{
17917
+ id: z.ZodString;
17918
+ order: z.ZodOptional<z.ZodNumber>;
17919
+ visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
17920
+ } & {
17921
+ category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
17922
+ label: z.ZodOptional<z.ZodString>;
17923
+ hint: z.ZodOptional<z.ZodString>;
17924
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
17925
+ id: z.ZodOptional<z.ZodNumber>;
17926
+ text: z.ZodString;
17927
+ type: z.ZodEnum<[
17928
+ "info",
17929
+ "error",
17930
+ "success",
17931
+ "warning"
17932
+ ]>;
17933
+ }, "strip", z.ZodTypeAny, {
17934
+ type: "info" | "error" | "success" | "warning";
17935
+ text: string;
17936
+ id?: number | undefined;
17937
+ }, {
17938
+ type: "info" | "error" | "success" | "warning";
17939
+ text: string;
17940
+ id?: number | undefined;
17941
+ }>, "many">>;
17942
+ required: z.ZodOptional<z.ZodBoolean>;
17943
+ sensitive: z.ZodOptional<z.ZodBoolean>;
17944
+ } & {
17945
+ type: z.ZodLiteral<"COUNTRY">;
17946
+ config: z.ZodOptional<z.ZodObject<{
17947
+ placeholder: z.ZodOptional<z.ZodString>;
17948
+ default_value: z.ZodOptional<z.ZodString>;
17949
+ }, "strip", z.ZodTypeAny, {
17950
+ placeholder?: string | undefined;
17951
+ default_value?: string | undefined;
17952
+ }, {
17953
+ placeholder?: string | undefined;
17954
+ default_value?: string | undefined;
17955
+ }>>;
17956
+ }, "strip", z.ZodTypeAny, {
17957
+ type: "COUNTRY";
17958
+ id: string;
17959
+ visible: boolean;
17960
+ required?: boolean | undefined;
17961
+ category?: "FIELD" | undefined;
17962
+ config?: {
17963
+ placeholder?: string | undefined;
17964
+ default_value?: string | undefined;
17965
+ } | undefined;
17966
+ sensitive?: boolean | undefined;
17967
+ label?: string | undefined;
17968
+ order?: number | undefined;
17969
+ hint?: string | undefined;
17970
+ messages?: {
17971
+ type: "info" | "error" | "success" | "warning";
17972
+ text: string;
17973
+ id?: number | undefined;
17974
+ }[] | undefined;
17975
+ }, {
17976
+ type: "COUNTRY";
17977
+ id: string;
17978
+ required?: boolean | undefined;
17979
+ category?: "FIELD" | undefined;
17980
+ config?: {
17981
+ placeholder?: string | undefined;
17982
+ default_value?: string | undefined;
17983
+ } | undefined;
17984
+ sensitive?: boolean | undefined;
17985
+ label?: string | undefined;
17986
+ order?: number | undefined;
17987
+ visible?: boolean | undefined;
17988
+ hint?: string | undefined;
17989
+ messages?: {
17990
+ type: "info" | "error" | "success" | "warning";
17991
+ text: string;
17992
+ id?: number | undefined;
17993
+ }[] | undefined;
17994
+ }>,
17744
17995
  z.ZodObject<{
17745
17996
  id: z.ZodString;
17746
17997
  order: z.ZodOptional<z.ZodNumber>;
@@ -18583,16 +18834,19 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
18583
18834
  strategy: z.ZodOptional<z.ZodString>;
18584
18835
  display_name: z.ZodOptional<z.ZodString>;
18585
18836
  icon_url: z.ZodOptional<z.ZodString>;
18837
+ href: z.ZodOptional<z.ZodString>;
18586
18838
  }, "strip", z.ZodTypeAny, {
18587
18839
  name: string;
18588
18840
  icon_url?: string | undefined;
18589
18841
  display_name?: string | undefined;
18590
18842
  strategy?: string | undefined;
18843
+ href?: string | undefined;
18591
18844
  }, {
18592
18845
  name: string;
18593
18846
  icon_url?: string | undefined;
18594
18847
  display_name?: string | undefined;
18595
18848
  strategy?: string | undefined;
18849
+ href?: string | undefined;
18596
18850
  }>, "many">>;
18597
18851
  }, "strip", z.ZodTypeAny, {
18598
18852
  providers?: string[] | undefined;
@@ -18601,6 +18855,7 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
18601
18855
  icon_url?: string | undefined;
18602
18856
  display_name?: string | undefined;
18603
18857
  strategy?: string | undefined;
18858
+ href?: string | undefined;
18604
18859
  }[] | undefined;
18605
18860
  }, {
18606
18861
  providers?: string[] | undefined;
@@ -18609,6 +18864,7 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
18609
18864
  icon_url?: string | undefined;
18610
18865
  display_name?: string | undefined;
18611
18866
  strategy?: string | undefined;
18867
+ href?: string | undefined;
18612
18868
  }[] | undefined;
18613
18869
  }>>;
18614
18870
  }, "strip", z.ZodTypeAny, {
@@ -18624,6 +18880,7 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
18624
18880
  icon_url?: string | undefined;
18625
18881
  display_name?: string | undefined;
18626
18882
  strategy?: string | undefined;
18883
+ href?: string | undefined;
18627
18884
  }[] | undefined;
18628
18885
  } | undefined;
18629
18886
  sensitive?: boolean | undefined;
@@ -18647,6 +18904,7 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
18647
18904
  icon_url?: string | undefined;
18648
18905
  display_name?: string | undefined;
18649
18906
  strategy?: string | undefined;
18907
+ href?: string | undefined;
18650
18908
  }[] | undefined;
18651
18909
  } | undefined;
18652
18910
  sensitive?: boolean | undefined;
@@ -18942,6 +19200,7 @@ export type RecaptchaWidget = z.infer<typeof recaptchaWidget>;
18942
19200
  export type BooleanField = z.infer<typeof booleanField>;
18943
19201
  export type CardsField = z.infer<typeof cardsField>;
18944
19202
  export type ChoiceField = z.infer<typeof choiceField>;
19203
+ export type CountryField = z.infer<typeof countryField>;
18945
19204
  export type CustomField = z.infer<typeof customField>;
18946
19205
  export type DateField = z.infer<typeof dateField>;
18947
19206
  export type DropdownField = z.infer<typeof dropdownField>;
@@ -19910,31 +20169,110 @@ declare const stepNodeSchema$1: z.ZodObject<{
19910
20169
  required: z.ZodOptional<z.ZodBoolean>;
19911
20170
  sensitive: z.ZodOptional<z.ZodBoolean>;
19912
20171
  } & {
19913
- type: z.ZodLiteral<"CUSTOM">;
19914
- config: z.ZodObject<{
19915
- component: z.ZodOptional<z.ZodString>;
19916
- props: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
19917
- schema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
19918
- code: z.ZodOptional<z.ZodString>;
20172
+ type: z.ZodLiteral<"COUNTRY">;
20173
+ config: z.ZodOptional<z.ZodObject<{
20174
+ placeholder: z.ZodOptional<z.ZodString>;
20175
+ default_value: z.ZodOptional<z.ZodString>;
19919
20176
  }, "strip", z.ZodTypeAny, {
19920
- code?: string | undefined;
19921
- schema?: Record<string, any> | undefined;
19922
- component?: string | undefined;
19923
- props?: Record<string, any> | undefined;
20177
+ placeholder?: string | undefined;
20178
+ default_value?: string | undefined;
19924
20179
  }, {
19925
- code?: string | undefined;
19926
- schema?: Record<string, any> | undefined;
19927
- component?: string | undefined;
19928
- props?: Record<string, any> | undefined;
19929
- }>;
20180
+ placeholder?: string | undefined;
20181
+ default_value?: string | undefined;
20182
+ }>>;
19930
20183
  }, "strip", z.ZodTypeAny, {
19931
- type: "CUSTOM";
20184
+ type: "COUNTRY";
19932
20185
  id: string;
19933
- config: {
19934
- code?: string | undefined;
19935
- schema?: Record<string, any> | undefined;
19936
- component?: string | undefined;
19937
- props?: Record<string, any> | undefined;
20186
+ visible: boolean;
20187
+ required?: boolean | undefined;
20188
+ category?: "FIELD" | undefined;
20189
+ config?: {
20190
+ placeholder?: string | undefined;
20191
+ default_value?: string | undefined;
20192
+ } | undefined;
20193
+ sensitive?: boolean | undefined;
20194
+ label?: string | undefined;
20195
+ order?: number | undefined;
20196
+ hint?: string | undefined;
20197
+ messages?: {
20198
+ type: "info" | "error" | "success" | "warning";
20199
+ text: string;
20200
+ id?: number | undefined;
20201
+ }[] | undefined;
20202
+ }, {
20203
+ type: "COUNTRY";
20204
+ id: string;
20205
+ required?: boolean | undefined;
20206
+ category?: "FIELD" | undefined;
20207
+ config?: {
20208
+ placeholder?: string | undefined;
20209
+ default_value?: string | undefined;
20210
+ } | undefined;
20211
+ sensitive?: boolean | undefined;
20212
+ label?: string | undefined;
20213
+ order?: number | undefined;
20214
+ visible?: boolean | undefined;
20215
+ hint?: string | undefined;
20216
+ messages?: {
20217
+ type: "info" | "error" | "success" | "warning";
20218
+ text: string;
20219
+ id?: number | undefined;
20220
+ }[] | undefined;
20221
+ }>,
20222
+ z.ZodObject<{
20223
+ id: z.ZodString;
20224
+ order: z.ZodOptional<z.ZodNumber>;
20225
+ visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
20226
+ } & {
20227
+ category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
20228
+ label: z.ZodOptional<z.ZodString>;
20229
+ hint: z.ZodOptional<z.ZodString>;
20230
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
20231
+ id: z.ZodOptional<z.ZodNumber>;
20232
+ text: z.ZodString;
20233
+ type: z.ZodEnum<[
20234
+ "info",
20235
+ "error",
20236
+ "success",
20237
+ "warning"
20238
+ ]>;
20239
+ }, "strip", z.ZodTypeAny, {
20240
+ type: "info" | "error" | "success" | "warning";
20241
+ text: string;
20242
+ id?: number | undefined;
20243
+ }, {
20244
+ type: "info" | "error" | "success" | "warning";
20245
+ text: string;
20246
+ id?: number | undefined;
20247
+ }>, "many">>;
20248
+ required: z.ZodOptional<z.ZodBoolean>;
20249
+ sensitive: z.ZodOptional<z.ZodBoolean>;
20250
+ } & {
20251
+ type: z.ZodLiteral<"CUSTOM">;
20252
+ config: z.ZodObject<{
20253
+ component: z.ZodOptional<z.ZodString>;
20254
+ props: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
20255
+ schema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
20256
+ code: z.ZodOptional<z.ZodString>;
20257
+ }, "strip", z.ZodTypeAny, {
20258
+ code?: string | undefined;
20259
+ schema?: Record<string, any> | undefined;
20260
+ component?: string | undefined;
20261
+ props?: Record<string, any> | undefined;
20262
+ }, {
20263
+ code?: string | undefined;
20264
+ schema?: Record<string, any> | undefined;
20265
+ component?: string | undefined;
20266
+ props?: Record<string, any> | undefined;
20267
+ }>;
20268
+ }, "strip", z.ZodTypeAny, {
20269
+ type: "CUSTOM";
20270
+ id: string;
20271
+ config: {
20272
+ code?: string | undefined;
20273
+ schema?: Record<string, any> | undefined;
20274
+ component?: string | undefined;
20275
+ props?: Record<string, any> | undefined;
19938
20276
  };
19939
20277
  visible: boolean;
19940
20278
  required?: boolean | undefined;
@@ -20723,16 +21061,19 @@ declare const stepNodeSchema$1: z.ZodObject<{
20723
21061
  strategy: z.ZodOptional<z.ZodString>;
20724
21062
  display_name: z.ZodOptional<z.ZodString>;
20725
21063
  icon_url: z.ZodOptional<z.ZodString>;
21064
+ href: z.ZodOptional<z.ZodString>;
20726
21065
  }, "strip", z.ZodTypeAny, {
20727
21066
  name: string;
20728
21067
  icon_url?: string | undefined;
20729
21068
  display_name?: string | undefined;
20730
21069
  strategy?: string | undefined;
21070
+ href?: string | undefined;
20731
21071
  }, {
20732
21072
  name: string;
20733
21073
  icon_url?: string | undefined;
20734
21074
  display_name?: string | undefined;
20735
21075
  strategy?: string | undefined;
21076
+ href?: string | undefined;
20736
21077
  }>, "many">>;
20737
21078
  }, "strip", z.ZodTypeAny, {
20738
21079
  providers?: string[] | undefined;
@@ -20741,6 +21082,7 @@ declare const stepNodeSchema$1: z.ZodObject<{
20741
21082
  icon_url?: string | undefined;
20742
21083
  display_name?: string | undefined;
20743
21084
  strategy?: string | undefined;
21085
+ href?: string | undefined;
20744
21086
  }[] | undefined;
20745
21087
  }, {
20746
21088
  providers?: string[] | undefined;
@@ -20749,6 +21091,7 @@ declare const stepNodeSchema$1: z.ZodObject<{
20749
21091
  icon_url?: string | undefined;
20750
21092
  display_name?: string | undefined;
20751
21093
  strategy?: string | undefined;
21094
+ href?: string | undefined;
20752
21095
  }[] | undefined;
20753
21096
  }>>;
20754
21097
  }, "strip", z.ZodTypeAny, {
@@ -20764,6 +21107,7 @@ declare const stepNodeSchema$1: z.ZodObject<{
20764
21107
  icon_url?: string | undefined;
20765
21108
  display_name?: string | undefined;
20766
21109
  strategy?: string | undefined;
21110
+ href?: string | undefined;
20767
21111
  }[] | undefined;
20768
21112
  } | undefined;
20769
21113
  sensitive?: boolean | undefined;
@@ -20787,6 +21131,7 @@ declare const stepNodeSchema$1: z.ZodObject<{
20787
21131
  icon_url?: string | undefined;
20788
21132
  display_name?: string | undefined;
20789
21133
  strategy?: string | undefined;
21134
+ href?: string | undefined;
20790
21135
  }[] | undefined;
20791
21136
  } | undefined;
20792
21137
  sensitive?: boolean | undefined;
@@ -21444,6 +21789,7 @@ declare const stepNodeSchema$1: z.ZodObject<{
21444
21789
  icon_url?: string | undefined;
21445
21790
  display_name?: string | undefined;
21446
21791
  strategy?: string | undefined;
21792
+ href?: string | undefined;
21447
21793
  }[] | undefined;
21448
21794
  } | undefined;
21449
21795
  sensitive?: boolean | undefined;
@@ -21497,6 +21843,25 @@ declare const stepNodeSchema$1: z.ZodObject<{
21497
21843
  text: string;
21498
21844
  id?: number | undefined;
21499
21845
  }[] | undefined;
21846
+ } | {
21847
+ type: "COUNTRY";
21848
+ id: string;
21849
+ visible: boolean;
21850
+ required?: boolean | undefined;
21851
+ category?: "FIELD" | undefined;
21852
+ config?: {
21853
+ placeholder?: string | undefined;
21854
+ default_value?: string | undefined;
21855
+ } | undefined;
21856
+ sensitive?: boolean | undefined;
21857
+ label?: string | undefined;
21858
+ order?: number | undefined;
21859
+ hint?: string | undefined;
21860
+ messages?: {
21861
+ type: "info" | "error" | "success" | "warning";
21862
+ text: string;
21863
+ id?: number | undefined;
21864
+ }[] | undefined;
21500
21865
  } | {
21501
21866
  type: "URL";
21502
21867
  id: string;
@@ -21901,6 +22266,7 @@ declare const stepNodeSchema$1: z.ZodObject<{
21901
22266
  icon_url?: string | undefined;
21902
22267
  display_name?: string | undefined;
21903
22268
  strategy?: string | undefined;
22269
+ href?: string | undefined;
21904
22270
  }[] | undefined;
21905
22271
  } | undefined;
21906
22272
  sensitive?: boolean | undefined;
@@ -21955,6 +22321,25 @@ declare const stepNodeSchema$1: z.ZodObject<{
21955
22321
  text: string;
21956
22322
  id?: number | undefined;
21957
22323
  }[] | undefined;
22324
+ } | {
22325
+ type: "COUNTRY";
22326
+ id: string;
22327
+ required?: boolean | undefined;
22328
+ category?: "FIELD" | undefined;
22329
+ config?: {
22330
+ placeholder?: string | undefined;
22331
+ default_value?: string | undefined;
22332
+ } | undefined;
22333
+ sensitive?: boolean | undefined;
22334
+ label?: string | undefined;
22335
+ order?: number | undefined;
22336
+ visible?: boolean | undefined;
22337
+ hint?: string | undefined;
22338
+ messages?: {
22339
+ type: "info" | "error" | "success" | "warning";
22340
+ text: string;
22341
+ id?: number | undefined;
22342
+ }[] | undefined;
21958
22343
  } | {
21959
22344
  type: "URL";
21960
22345
  id: string;
@@ -22364,6 +22749,7 @@ declare const stepNodeSchema$1: z.ZodObject<{
22364
22749
  icon_url?: string | undefined;
22365
22750
  display_name?: string | undefined;
22366
22751
  strategy?: string | undefined;
22752
+ href?: string | undefined;
22367
22753
  }[] | undefined;
22368
22754
  } | undefined;
22369
22755
  sensitive?: boolean | undefined;
@@ -22417,6 +22803,25 @@ declare const stepNodeSchema$1: z.ZodObject<{
22417
22803
  text: string;
22418
22804
  id?: number | undefined;
22419
22805
  }[] | undefined;
22806
+ } | {
22807
+ type: "COUNTRY";
22808
+ id: string;
22809
+ visible: boolean;
22810
+ required?: boolean | undefined;
22811
+ category?: "FIELD" | undefined;
22812
+ config?: {
22813
+ placeholder?: string | undefined;
22814
+ default_value?: string | undefined;
22815
+ } | undefined;
22816
+ sensitive?: boolean | undefined;
22817
+ label?: string | undefined;
22818
+ order?: number | undefined;
22819
+ hint?: string | undefined;
22820
+ messages?: {
22821
+ type: "info" | "error" | "success" | "warning";
22822
+ text: string;
22823
+ id?: number | undefined;
22824
+ }[] | undefined;
22420
22825
  } | {
22421
22826
  type: "URL";
22422
22827
  id: string;
@@ -22830,6 +23235,7 @@ declare const stepNodeSchema$1: z.ZodObject<{
22830
23235
  icon_url?: string | undefined;
22831
23236
  display_name?: string | undefined;
22832
23237
  strategy?: string | undefined;
23238
+ href?: string | undefined;
22833
23239
  }[] | undefined;
22834
23240
  } | undefined;
22835
23241
  sensitive?: boolean | undefined;
@@ -22884,6 +23290,25 @@ declare const stepNodeSchema$1: z.ZodObject<{
22884
23290
  text: string;
22885
23291
  id?: number | undefined;
22886
23292
  }[] | undefined;
23293
+ } | {
23294
+ type: "COUNTRY";
23295
+ id: string;
23296
+ required?: boolean | undefined;
23297
+ category?: "FIELD" | undefined;
23298
+ config?: {
23299
+ placeholder?: string | undefined;
23300
+ default_value?: string | undefined;
23301
+ } | undefined;
23302
+ sensitive?: boolean | undefined;
23303
+ label?: string | undefined;
23304
+ order?: number | undefined;
23305
+ visible?: boolean | undefined;
23306
+ hint?: string | undefined;
23307
+ messages?: {
23308
+ type: "info" | "error" | "success" | "warning";
23309
+ text: string;
23310
+ id?: number | undefined;
23311
+ }[] | undefined;
22887
23312
  } | {
22888
23313
  type: "URL";
22889
23314
  id: string;
@@ -23806,6 +24231,85 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
23806
24231
  id?: number | undefined;
23807
24232
  }[] | undefined;
23808
24233
  }>,
24234
+ z.ZodObject<{
24235
+ id: z.ZodString;
24236
+ order: z.ZodOptional<z.ZodNumber>;
24237
+ visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
24238
+ } & {
24239
+ category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
24240
+ label: z.ZodOptional<z.ZodString>;
24241
+ hint: z.ZodOptional<z.ZodString>;
24242
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
24243
+ id: z.ZodOptional<z.ZodNumber>;
24244
+ text: z.ZodString;
24245
+ type: z.ZodEnum<[
24246
+ "info",
24247
+ "error",
24248
+ "success",
24249
+ "warning"
24250
+ ]>;
24251
+ }, "strip", z.ZodTypeAny, {
24252
+ type: "info" | "error" | "success" | "warning";
24253
+ text: string;
24254
+ id?: number | undefined;
24255
+ }, {
24256
+ type: "info" | "error" | "success" | "warning";
24257
+ text: string;
24258
+ id?: number | undefined;
24259
+ }>, "many">>;
24260
+ required: z.ZodOptional<z.ZodBoolean>;
24261
+ sensitive: z.ZodOptional<z.ZodBoolean>;
24262
+ } & {
24263
+ type: z.ZodLiteral<"COUNTRY">;
24264
+ config: z.ZodOptional<z.ZodObject<{
24265
+ placeholder: z.ZodOptional<z.ZodString>;
24266
+ default_value: z.ZodOptional<z.ZodString>;
24267
+ }, "strip", z.ZodTypeAny, {
24268
+ placeholder?: string | undefined;
24269
+ default_value?: string | undefined;
24270
+ }, {
24271
+ placeholder?: string | undefined;
24272
+ default_value?: string | undefined;
24273
+ }>>;
24274
+ }, "strip", z.ZodTypeAny, {
24275
+ type: "COUNTRY";
24276
+ id: string;
24277
+ visible: boolean;
24278
+ required?: boolean | undefined;
24279
+ category?: "FIELD" | undefined;
24280
+ config?: {
24281
+ placeholder?: string | undefined;
24282
+ default_value?: string | undefined;
24283
+ } | undefined;
24284
+ sensitive?: boolean | undefined;
24285
+ label?: string | undefined;
24286
+ order?: number | undefined;
24287
+ hint?: string | undefined;
24288
+ messages?: {
24289
+ type: "info" | "error" | "success" | "warning";
24290
+ text: string;
24291
+ id?: number | undefined;
24292
+ }[] | undefined;
24293
+ }, {
24294
+ type: "COUNTRY";
24295
+ id: string;
24296
+ required?: boolean | undefined;
24297
+ category?: "FIELD" | undefined;
24298
+ config?: {
24299
+ placeholder?: string | undefined;
24300
+ default_value?: string | undefined;
24301
+ } | undefined;
24302
+ sensitive?: boolean | undefined;
24303
+ label?: string | undefined;
24304
+ order?: number | undefined;
24305
+ visible?: boolean | undefined;
24306
+ hint?: string | undefined;
24307
+ messages?: {
24308
+ type: "info" | "error" | "success" | "warning";
24309
+ text: string;
24310
+ id?: number | undefined;
24311
+ }[] | undefined;
24312
+ }>,
23809
24313
  z.ZodObject<{
23810
24314
  id: z.ZodString;
23811
24315
  order: z.ZodOptional<z.ZodNumber>;
@@ -24648,16 +25152,19 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
24648
25152
  strategy: z.ZodOptional<z.ZodString>;
24649
25153
  display_name: z.ZodOptional<z.ZodString>;
24650
25154
  icon_url: z.ZodOptional<z.ZodString>;
25155
+ href: z.ZodOptional<z.ZodString>;
24651
25156
  }, "strip", z.ZodTypeAny, {
24652
25157
  name: string;
24653
25158
  icon_url?: string | undefined;
24654
25159
  display_name?: string | undefined;
24655
25160
  strategy?: string | undefined;
25161
+ href?: string | undefined;
24656
25162
  }, {
24657
25163
  name: string;
24658
25164
  icon_url?: string | undefined;
24659
25165
  display_name?: string | undefined;
24660
25166
  strategy?: string | undefined;
25167
+ href?: string | undefined;
24661
25168
  }>, "many">>;
24662
25169
  }, "strip", z.ZodTypeAny, {
24663
25170
  providers?: string[] | undefined;
@@ -24666,6 +25173,7 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
24666
25173
  icon_url?: string | undefined;
24667
25174
  display_name?: string | undefined;
24668
25175
  strategy?: string | undefined;
25176
+ href?: string | undefined;
24669
25177
  }[] | undefined;
24670
25178
  }, {
24671
25179
  providers?: string[] | undefined;
@@ -24674,6 +25182,7 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
24674
25182
  icon_url?: string | undefined;
24675
25183
  display_name?: string | undefined;
24676
25184
  strategy?: string | undefined;
25185
+ href?: string | undefined;
24677
25186
  }[] | undefined;
24678
25187
  }>>;
24679
25188
  }, "strip", z.ZodTypeAny, {
@@ -24689,6 +25198,7 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
24689
25198
  icon_url?: string | undefined;
24690
25199
  display_name?: string | undefined;
24691
25200
  strategy?: string | undefined;
25201
+ href?: string | undefined;
24692
25202
  }[] | undefined;
24693
25203
  } | undefined;
24694
25204
  sensitive?: boolean | undefined;
@@ -24712,6 +25222,7 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
24712
25222
  icon_url?: string | undefined;
24713
25223
  display_name?: string | undefined;
24714
25224
  strategy?: string | undefined;
25225
+ href?: string | undefined;
24715
25226
  }[] | undefined;
24716
25227
  } | undefined;
24717
25228
  sensitive?: boolean | undefined;
@@ -25369,6 +25880,7 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
25369
25880
  icon_url?: string | undefined;
25370
25881
  display_name?: string | undefined;
25371
25882
  strategy?: string | undefined;
25883
+ href?: string | undefined;
25372
25884
  }[] | undefined;
25373
25885
  } | undefined;
25374
25886
  sensitive?: boolean | undefined;
@@ -25422,6 +25934,25 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
25422
25934
  text: string;
25423
25935
  id?: number | undefined;
25424
25936
  }[] | undefined;
25937
+ } | {
25938
+ type: "COUNTRY";
25939
+ id: string;
25940
+ visible: boolean;
25941
+ required?: boolean | undefined;
25942
+ category?: "FIELD" | undefined;
25943
+ config?: {
25944
+ placeholder?: string | undefined;
25945
+ default_value?: string | undefined;
25946
+ } | undefined;
25947
+ sensitive?: boolean | undefined;
25948
+ label?: string | undefined;
25949
+ order?: number | undefined;
25950
+ hint?: string | undefined;
25951
+ messages?: {
25952
+ type: "info" | "error" | "success" | "warning";
25953
+ text: string;
25954
+ id?: number | undefined;
25955
+ }[] | undefined;
25425
25956
  } | {
25426
25957
  type: "URL";
25427
25958
  id: string;
@@ -25826,6 +26357,7 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
25826
26357
  icon_url?: string | undefined;
25827
26358
  display_name?: string | undefined;
25828
26359
  strategy?: string | undefined;
26360
+ href?: string | undefined;
25829
26361
  }[] | undefined;
25830
26362
  } | undefined;
25831
26363
  sensitive?: boolean | undefined;
@@ -25880,6 +26412,25 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
25880
26412
  text: string;
25881
26413
  id?: number | undefined;
25882
26414
  }[] | undefined;
26415
+ } | {
26416
+ type: "COUNTRY";
26417
+ id: string;
26418
+ required?: boolean | undefined;
26419
+ category?: "FIELD" | undefined;
26420
+ config?: {
26421
+ placeholder?: string | undefined;
26422
+ default_value?: string | undefined;
26423
+ } | undefined;
26424
+ sensitive?: boolean | undefined;
26425
+ label?: string | undefined;
26426
+ order?: number | undefined;
26427
+ visible?: boolean | undefined;
26428
+ hint?: string | undefined;
26429
+ messages?: {
26430
+ type: "info" | "error" | "success" | "warning";
26431
+ text: string;
26432
+ id?: number | undefined;
26433
+ }[] | undefined;
25883
26434
  } | {
25884
26435
  type: "URL";
25885
26436
  id: string;
@@ -26289,6 +26840,7 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
26289
26840
  icon_url?: string | undefined;
26290
26841
  display_name?: string | undefined;
26291
26842
  strategy?: string | undefined;
26843
+ href?: string | undefined;
26292
26844
  }[] | undefined;
26293
26845
  } | undefined;
26294
26846
  sensitive?: boolean | undefined;
@@ -26342,6 +26894,25 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
26342
26894
  text: string;
26343
26895
  id?: number | undefined;
26344
26896
  }[] | undefined;
26897
+ } | {
26898
+ type: "COUNTRY";
26899
+ id: string;
26900
+ visible: boolean;
26901
+ required?: boolean | undefined;
26902
+ category?: "FIELD" | undefined;
26903
+ config?: {
26904
+ placeholder?: string | undefined;
26905
+ default_value?: string | undefined;
26906
+ } | undefined;
26907
+ sensitive?: boolean | undefined;
26908
+ label?: string | undefined;
26909
+ order?: number | undefined;
26910
+ hint?: string | undefined;
26911
+ messages?: {
26912
+ type: "info" | "error" | "success" | "warning";
26913
+ text: string;
26914
+ id?: number | undefined;
26915
+ }[] | undefined;
26345
26916
  } | {
26346
26917
  type: "URL";
26347
26918
  id: string;
@@ -26755,6 +27326,7 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
26755
27326
  icon_url?: string | undefined;
26756
27327
  display_name?: string | undefined;
26757
27328
  strategy?: string | undefined;
27329
+ href?: string | undefined;
26758
27330
  }[] | undefined;
26759
27331
  } | undefined;
26760
27332
  sensitive?: boolean | undefined;
@@ -26809,6 +27381,25 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
26809
27381
  text: string;
26810
27382
  id?: number | undefined;
26811
27383
  }[] | undefined;
27384
+ } | {
27385
+ type: "COUNTRY";
27386
+ id: string;
27387
+ required?: boolean | undefined;
27388
+ category?: "FIELD" | undefined;
27389
+ config?: {
27390
+ placeholder?: string | undefined;
27391
+ default_value?: string | undefined;
27392
+ } | undefined;
27393
+ sensitive?: boolean | undefined;
27394
+ label?: string | undefined;
27395
+ order?: number | undefined;
27396
+ visible?: boolean | undefined;
27397
+ hint?: string | undefined;
27398
+ messages?: {
27399
+ type: "info" | "error" | "success" | "warning";
27400
+ text: string;
27401
+ id?: number | undefined;
27402
+ }[] | undefined;
26812
27403
  } | {
26813
27404
  type: "URL";
26814
27405
  id: string;
@@ -27675,58 +28266,142 @@ export declare const formInsertSchema: z.ZodObject<{
27675
28266
  required: z.ZodOptional<z.ZodBoolean>;
27676
28267
  sensitive: z.ZodOptional<z.ZodBoolean>;
27677
28268
  } & {
27678
- type: z.ZodLiteral<"CHOICE">;
28269
+ type: z.ZodLiteral<"CHOICE">;
28270
+ config: z.ZodOptional<z.ZodObject<{
28271
+ options: z.ZodOptional<z.ZodArray<z.ZodObject<{
28272
+ value: z.ZodString;
28273
+ label: z.ZodString;
28274
+ }, "strip", z.ZodTypeAny, {
28275
+ value: string;
28276
+ label: string;
28277
+ }, {
28278
+ value: string;
28279
+ label: string;
28280
+ }>, "many">>;
28281
+ display: z.ZodOptional<z.ZodEnum<[
28282
+ "radio",
28283
+ "checkbox"
28284
+ ]>>;
28285
+ multiple: z.ZodOptional<z.ZodBoolean>;
28286
+ default_value: z.ZodOptional<z.ZodUnion<[
28287
+ z.ZodString,
28288
+ z.ZodArray<z.ZodString, "many">
28289
+ ]>>;
28290
+ }, "strip", z.ZodTypeAny, {
28291
+ options?: {
28292
+ value: string;
28293
+ label: string;
28294
+ }[] | undefined;
28295
+ default_value?: string | string[] | undefined;
28296
+ display?: "radio" | "checkbox" | undefined;
28297
+ multiple?: boolean | undefined;
28298
+ }, {
28299
+ options?: {
28300
+ value: string;
28301
+ label: string;
28302
+ }[] | undefined;
28303
+ default_value?: string | string[] | undefined;
28304
+ display?: "radio" | "checkbox" | undefined;
28305
+ multiple?: boolean | undefined;
28306
+ }>>;
28307
+ }, "strip", z.ZodTypeAny, {
28308
+ type: "CHOICE";
28309
+ id: string;
28310
+ visible: boolean;
28311
+ required?: boolean | undefined;
28312
+ category?: "FIELD" | undefined;
28313
+ config?: {
28314
+ options?: {
28315
+ value: string;
28316
+ label: string;
28317
+ }[] | undefined;
28318
+ default_value?: string | string[] | undefined;
28319
+ display?: "radio" | "checkbox" | undefined;
28320
+ multiple?: boolean | undefined;
28321
+ } | undefined;
28322
+ sensitive?: boolean | undefined;
28323
+ label?: string | undefined;
28324
+ order?: number | undefined;
28325
+ hint?: string | undefined;
28326
+ messages?: {
28327
+ type: "info" | "error" | "success" | "warning";
28328
+ text: string;
28329
+ id?: number | undefined;
28330
+ }[] | undefined;
28331
+ }, {
28332
+ type: "CHOICE";
28333
+ id: string;
28334
+ required?: boolean | undefined;
28335
+ category?: "FIELD" | undefined;
28336
+ config?: {
28337
+ options?: {
28338
+ value: string;
28339
+ label: string;
28340
+ }[] | undefined;
28341
+ default_value?: string | string[] | undefined;
28342
+ display?: "radio" | "checkbox" | undefined;
28343
+ multiple?: boolean | undefined;
28344
+ } | undefined;
28345
+ sensitive?: boolean | undefined;
28346
+ label?: string | undefined;
28347
+ order?: number | undefined;
28348
+ visible?: boolean | undefined;
28349
+ hint?: string | undefined;
28350
+ messages?: {
28351
+ type: "info" | "error" | "success" | "warning";
28352
+ text: string;
28353
+ id?: number | undefined;
28354
+ }[] | undefined;
28355
+ }>,
28356
+ z.ZodObject<{
28357
+ id: z.ZodString;
28358
+ order: z.ZodOptional<z.ZodNumber>;
28359
+ visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
28360
+ } & {
28361
+ category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
28362
+ label: z.ZodOptional<z.ZodString>;
28363
+ hint: z.ZodOptional<z.ZodString>;
28364
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
28365
+ id: z.ZodOptional<z.ZodNumber>;
28366
+ text: z.ZodString;
28367
+ type: z.ZodEnum<[
28368
+ "info",
28369
+ "error",
28370
+ "success",
28371
+ "warning"
28372
+ ]>;
28373
+ }, "strip", z.ZodTypeAny, {
28374
+ type: "info" | "error" | "success" | "warning";
28375
+ text: string;
28376
+ id?: number | undefined;
28377
+ }, {
28378
+ type: "info" | "error" | "success" | "warning";
28379
+ text: string;
28380
+ id?: number | undefined;
28381
+ }>, "many">>;
28382
+ required: z.ZodOptional<z.ZodBoolean>;
28383
+ sensitive: z.ZodOptional<z.ZodBoolean>;
28384
+ } & {
28385
+ type: z.ZodLiteral<"COUNTRY">;
27679
28386
  config: z.ZodOptional<z.ZodObject<{
27680
- options: z.ZodOptional<z.ZodArray<z.ZodObject<{
27681
- value: z.ZodString;
27682
- label: z.ZodString;
27683
- }, "strip", z.ZodTypeAny, {
27684
- value: string;
27685
- label: string;
27686
- }, {
27687
- value: string;
27688
- label: string;
27689
- }>, "many">>;
27690
- display: z.ZodOptional<z.ZodEnum<[
27691
- "radio",
27692
- "checkbox"
27693
- ]>>;
27694
- multiple: z.ZodOptional<z.ZodBoolean>;
27695
- default_value: z.ZodOptional<z.ZodUnion<[
27696
- z.ZodString,
27697
- z.ZodArray<z.ZodString, "many">
27698
- ]>>;
28387
+ placeholder: z.ZodOptional<z.ZodString>;
28388
+ default_value: z.ZodOptional<z.ZodString>;
27699
28389
  }, "strip", z.ZodTypeAny, {
27700
- options?: {
27701
- value: string;
27702
- label: string;
27703
- }[] | undefined;
27704
- default_value?: string | string[] | undefined;
27705
- display?: "radio" | "checkbox" | undefined;
27706
- multiple?: boolean | undefined;
28390
+ placeholder?: string | undefined;
28391
+ default_value?: string | undefined;
27707
28392
  }, {
27708
- options?: {
27709
- value: string;
27710
- label: string;
27711
- }[] | undefined;
27712
- default_value?: string | string[] | undefined;
27713
- display?: "radio" | "checkbox" | undefined;
27714
- multiple?: boolean | undefined;
28393
+ placeholder?: string | undefined;
28394
+ default_value?: string | undefined;
27715
28395
  }>>;
27716
28396
  }, "strip", z.ZodTypeAny, {
27717
- type: "CHOICE";
28397
+ type: "COUNTRY";
27718
28398
  id: string;
27719
28399
  visible: boolean;
27720
28400
  required?: boolean | undefined;
27721
28401
  category?: "FIELD" | undefined;
27722
28402
  config?: {
27723
- options?: {
27724
- value: string;
27725
- label: string;
27726
- }[] | undefined;
27727
- default_value?: string | string[] | undefined;
27728
- display?: "radio" | "checkbox" | undefined;
27729
- multiple?: boolean | undefined;
28403
+ placeholder?: string | undefined;
28404
+ default_value?: string | undefined;
27730
28405
  } | undefined;
27731
28406
  sensitive?: boolean | undefined;
27732
28407
  label?: string | undefined;
@@ -27738,18 +28413,13 @@ export declare const formInsertSchema: z.ZodObject<{
27738
28413
  id?: number | undefined;
27739
28414
  }[] | undefined;
27740
28415
  }, {
27741
- type: "CHOICE";
28416
+ type: "COUNTRY";
27742
28417
  id: string;
27743
28418
  required?: boolean | undefined;
27744
28419
  category?: "FIELD" | undefined;
27745
28420
  config?: {
27746
- options?: {
27747
- value: string;
27748
- label: string;
27749
- }[] | undefined;
27750
- default_value?: string | string[] | undefined;
27751
- display?: "radio" | "checkbox" | undefined;
27752
- multiple?: boolean | undefined;
28421
+ placeholder?: string | undefined;
28422
+ default_value?: string | undefined;
27753
28423
  } | undefined;
27754
28424
  sensitive?: boolean | undefined;
27755
28425
  label?: string | undefined;
@@ -28604,16 +29274,19 @@ export declare const formInsertSchema: z.ZodObject<{
28604
29274
  strategy: z.ZodOptional<z.ZodString>;
28605
29275
  display_name: z.ZodOptional<z.ZodString>;
28606
29276
  icon_url: z.ZodOptional<z.ZodString>;
29277
+ href: z.ZodOptional<z.ZodString>;
28607
29278
  }, "strip", z.ZodTypeAny, {
28608
29279
  name: string;
28609
29280
  icon_url?: string | undefined;
28610
29281
  display_name?: string | undefined;
28611
29282
  strategy?: string | undefined;
29283
+ href?: string | undefined;
28612
29284
  }, {
28613
29285
  name: string;
28614
29286
  icon_url?: string | undefined;
28615
29287
  display_name?: string | undefined;
28616
29288
  strategy?: string | undefined;
29289
+ href?: string | undefined;
28617
29290
  }>, "many">>;
28618
29291
  }, "strip", z.ZodTypeAny, {
28619
29292
  providers?: string[] | undefined;
@@ -28622,6 +29295,7 @@ export declare const formInsertSchema: z.ZodObject<{
28622
29295
  icon_url?: string | undefined;
28623
29296
  display_name?: string | undefined;
28624
29297
  strategy?: string | undefined;
29298
+ href?: string | undefined;
28625
29299
  }[] | undefined;
28626
29300
  }, {
28627
29301
  providers?: string[] | undefined;
@@ -28630,6 +29304,7 @@ export declare const formInsertSchema: z.ZodObject<{
28630
29304
  icon_url?: string | undefined;
28631
29305
  display_name?: string | undefined;
28632
29306
  strategy?: string | undefined;
29307
+ href?: string | undefined;
28633
29308
  }[] | undefined;
28634
29309
  }>>;
28635
29310
  }, "strip", z.ZodTypeAny, {
@@ -28645,6 +29320,7 @@ export declare const formInsertSchema: z.ZodObject<{
28645
29320
  icon_url?: string | undefined;
28646
29321
  display_name?: string | undefined;
28647
29322
  strategy?: string | undefined;
29323
+ href?: string | undefined;
28648
29324
  }[] | undefined;
28649
29325
  } | undefined;
28650
29326
  sensitive?: boolean | undefined;
@@ -28668,6 +29344,7 @@ export declare const formInsertSchema: z.ZodObject<{
28668
29344
  icon_url?: string | undefined;
28669
29345
  display_name?: string | undefined;
28670
29346
  strategy?: string | undefined;
29347
+ href?: string | undefined;
28671
29348
  }[] | undefined;
28672
29349
  } | undefined;
28673
29350
  sensitive?: boolean | undefined;
@@ -29325,6 +30002,7 @@ export declare const formInsertSchema: z.ZodObject<{
29325
30002
  icon_url?: string | undefined;
29326
30003
  display_name?: string | undefined;
29327
30004
  strategy?: string | undefined;
30005
+ href?: string | undefined;
29328
30006
  }[] | undefined;
29329
30007
  } | undefined;
29330
30008
  sensitive?: boolean | undefined;
@@ -29378,6 +30056,25 @@ export declare const formInsertSchema: z.ZodObject<{
29378
30056
  text: string;
29379
30057
  id?: number | undefined;
29380
30058
  }[] | undefined;
30059
+ } | {
30060
+ type: "COUNTRY";
30061
+ id: string;
30062
+ visible: boolean;
30063
+ required?: boolean | undefined;
30064
+ category?: "FIELD" | undefined;
30065
+ config?: {
30066
+ placeholder?: string | undefined;
30067
+ default_value?: string | undefined;
30068
+ } | undefined;
30069
+ sensitive?: boolean | undefined;
30070
+ label?: string | undefined;
30071
+ order?: number | undefined;
30072
+ hint?: string | undefined;
30073
+ messages?: {
30074
+ type: "info" | "error" | "success" | "warning";
30075
+ text: string;
30076
+ id?: number | undefined;
30077
+ }[] | undefined;
29381
30078
  } | {
29382
30079
  type: "URL";
29383
30080
  id: string;
@@ -29782,6 +30479,7 @@ export declare const formInsertSchema: z.ZodObject<{
29782
30479
  icon_url?: string | undefined;
29783
30480
  display_name?: string | undefined;
29784
30481
  strategy?: string | undefined;
30482
+ href?: string | undefined;
29785
30483
  }[] | undefined;
29786
30484
  } | undefined;
29787
30485
  sensitive?: boolean | undefined;
@@ -29836,6 +30534,25 @@ export declare const formInsertSchema: z.ZodObject<{
29836
30534
  text: string;
29837
30535
  id?: number | undefined;
29838
30536
  }[] | undefined;
30537
+ } | {
30538
+ type: "COUNTRY";
30539
+ id: string;
30540
+ required?: boolean | undefined;
30541
+ category?: "FIELD" | undefined;
30542
+ config?: {
30543
+ placeholder?: string | undefined;
30544
+ default_value?: string | undefined;
30545
+ } | undefined;
30546
+ sensitive?: boolean | undefined;
30547
+ label?: string | undefined;
30548
+ order?: number | undefined;
30549
+ visible?: boolean | undefined;
30550
+ hint?: string | undefined;
30551
+ messages?: {
30552
+ type: "info" | "error" | "success" | "warning";
30553
+ text: string;
30554
+ id?: number | undefined;
30555
+ }[] | undefined;
29839
30556
  } | {
29840
30557
  type: "URL";
29841
30558
  id: string;
@@ -30245,6 +30962,7 @@ export declare const formInsertSchema: z.ZodObject<{
30245
30962
  icon_url?: string | undefined;
30246
30963
  display_name?: string | undefined;
30247
30964
  strategy?: string | undefined;
30965
+ href?: string | undefined;
30248
30966
  }[] | undefined;
30249
30967
  } | undefined;
30250
30968
  sensitive?: boolean | undefined;
@@ -30298,6 +31016,25 @@ export declare const formInsertSchema: z.ZodObject<{
30298
31016
  text: string;
30299
31017
  id?: number | undefined;
30300
31018
  }[] | undefined;
31019
+ } | {
31020
+ type: "COUNTRY";
31021
+ id: string;
31022
+ visible: boolean;
31023
+ required?: boolean | undefined;
31024
+ category?: "FIELD" | undefined;
31025
+ config?: {
31026
+ placeholder?: string | undefined;
31027
+ default_value?: string | undefined;
31028
+ } | undefined;
31029
+ sensitive?: boolean | undefined;
31030
+ label?: string | undefined;
31031
+ order?: number | undefined;
31032
+ hint?: string | undefined;
31033
+ messages?: {
31034
+ type: "info" | "error" | "success" | "warning";
31035
+ text: string;
31036
+ id?: number | undefined;
31037
+ }[] | undefined;
30301
31038
  } | {
30302
31039
  type: "URL";
30303
31040
  id: string;
@@ -30711,6 +31448,7 @@ export declare const formInsertSchema: z.ZodObject<{
30711
31448
  icon_url?: string | undefined;
30712
31449
  display_name?: string | undefined;
30713
31450
  strategy?: string | undefined;
31451
+ href?: string | undefined;
30714
31452
  }[] | undefined;
30715
31453
  } | undefined;
30716
31454
  sensitive?: boolean | undefined;
@@ -30765,6 +31503,25 @@ export declare const formInsertSchema: z.ZodObject<{
30765
31503
  text: string;
30766
31504
  id?: number | undefined;
30767
31505
  }[] | undefined;
31506
+ } | {
31507
+ type: "COUNTRY";
31508
+ id: string;
31509
+ required?: boolean | undefined;
31510
+ category?: "FIELD" | undefined;
31511
+ config?: {
31512
+ placeholder?: string | undefined;
31513
+ default_value?: string | undefined;
31514
+ } | undefined;
31515
+ sensitive?: boolean | undefined;
31516
+ label?: string | undefined;
31517
+ order?: number | undefined;
31518
+ visible?: boolean | undefined;
31519
+ hint?: string | undefined;
31520
+ messages?: {
31521
+ type: "info" | "error" | "success" | "warning";
31522
+ text: string;
31523
+ id?: number | undefined;
31524
+ }[] | undefined;
30768
31525
  } | {
30769
31526
  type: "URL";
30770
31527
  id: string;
@@ -31346,6 +32103,7 @@ export declare const formInsertSchema: z.ZodObject<{
31346
32103
  icon_url?: string | undefined;
31347
32104
  display_name?: string | undefined;
31348
32105
  strategy?: string | undefined;
32106
+ href?: string | undefined;
31349
32107
  }[] | undefined;
31350
32108
  } | undefined;
31351
32109
  sensitive?: boolean | undefined;
@@ -31399,6 +32157,25 @@ export declare const formInsertSchema: z.ZodObject<{
31399
32157
  text: string;
31400
32158
  id?: number | undefined;
31401
32159
  }[] | undefined;
32160
+ } | {
32161
+ type: "COUNTRY";
32162
+ id: string;
32163
+ visible: boolean;
32164
+ required?: boolean | undefined;
32165
+ category?: "FIELD" | undefined;
32166
+ config?: {
32167
+ placeholder?: string | undefined;
32168
+ default_value?: string | undefined;
32169
+ } | undefined;
32170
+ sensitive?: boolean | undefined;
32171
+ label?: string | undefined;
32172
+ order?: number | undefined;
32173
+ hint?: string | undefined;
32174
+ messages?: {
32175
+ type: "info" | "error" | "success" | "warning";
32176
+ text: string;
32177
+ id?: number | undefined;
32178
+ }[] | undefined;
31402
32179
  } | {
31403
32180
  type: "URL";
31404
32181
  id: string;
@@ -31885,6 +32662,7 @@ export declare const formInsertSchema: z.ZodObject<{
31885
32662
  icon_url?: string | undefined;
31886
32663
  display_name?: string | undefined;
31887
32664
  strategy?: string | undefined;
32665
+ href?: string | undefined;
31888
32666
  }[] | undefined;
31889
32667
  } | undefined;
31890
32668
  sensitive?: boolean | undefined;
@@ -31939,6 +32717,25 @@ export declare const formInsertSchema: z.ZodObject<{
31939
32717
  text: string;
31940
32718
  id?: number | undefined;
31941
32719
  }[] | undefined;
32720
+ } | {
32721
+ type: "COUNTRY";
32722
+ id: string;
32723
+ required?: boolean | undefined;
32724
+ category?: "FIELD" | undefined;
32725
+ config?: {
32726
+ placeholder?: string | undefined;
32727
+ default_value?: string | undefined;
32728
+ } | undefined;
32729
+ sensitive?: boolean | undefined;
32730
+ label?: string | undefined;
32731
+ order?: number | undefined;
32732
+ visible?: boolean | undefined;
32733
+ hint?: string | undefined;
32734
+ messages?: {
32735
+ type: "info" | "error" | "success" | "warning";
32736
+ text: string;
32737
+ id?: number | undefined;
32738
+ }[] | undefined;
31942
32739
  } | {
31943
32740
  type: "URL";
31944
32741
  id: string;
@@ -32856,28 +33653,112 @@ export declare const formSchema: z.ZodObject<{
32856
33653
  display?: "radio" | "checkbox" | undefined;
32857
33654
  multiple?: boolean | undefined;
32858
33655
  }, {
32859
- options?: {
32860
- value: string;
32861
- label: string;
32862
- }[] | undefined;
32863
- default_value?: string | string[] | undefined;
32864
- display?: "radio" | "checkbox" | undefined;
32865
- multiple?: boolean | undefined;
33656
+ options?: {
33657
+ value: string;
33658
+ label: string;
33659
+ }[] | undefined;
33660
+ default_value?: string | string[] | undefined;
33661
+ display?: "radio" | "checkbox" | undefined;
33662
+ multiple?: boolean | undefined;
33663
+ }>>;
33664
+ }, "strip", z.ZodTypeAny, {
33665
+ type: "CHOICE";
33666
+ id: string;
33667
+ visible: boolean;
33668
+ required?: boolean | undefined;
33669
+ category?: "FIELD" | undefined;
33670
+ config?: {
33671
+ options?: {
33672
+ value: string;
33673
+ label: string;
33674
+ }[] | undefined;
33675
+ default_value?: string | string[] | undefined;
33676
+ display?: "radio" | "checkbox" | undefined;
33677
+ multiple?: boolean | undefined;
33678
+ } | undefined;
33679
+ sensitive?: boolean | undefined;
33680
+ label?: string | undefined;
33681
+ order?: number | undefined;
33682
+ hint?: string | undefined;
33683
+ messages?: {
33684
+ type: "info" | "error" | "success" | "warning";
33685
+ text: string;
33686
+ id?: number | undefined;
33687
+ }[] | undefined;
33688
+ }, {
33689
+ type: "CHOICE";
33690
+ id: string;
33691
+ required?: boolean | undefined;
33692
+ category?: "FIELD" | undefined;
33693
+ config?: {
33694
+ options?: {
33695
+ value: string;
33696
+ label: string;
33697
+ }[] | undefined;
33698
+ default_value?: string | string[] | undefined;
33699
+ display?: "radio" | "checkbox" | undefined;
33700
+ multiple?: boolean | undefined;
33701
+ } | undefined;
33702
+ sensitive?: boolean | undefined;
33703
+ label?: string | undefined;
33704
+ order?: number | undefined;
33705
+ visible?: boolean | undefined;
33706
+ hint?: string | undefined;
33707
+ messages?: {
33708
+ type: "info" | "error" | "success" | "warning";
33709
+ text: string;
33710
+ id?: number | undefined;
33711
+ }[] | undefined;
33712
+ }>,
33713
+ z.ZodObject<{
33714
+ id: z.ZodString;
33715
+ order: z.ZodOptional<z.ZodNumber>;
33716
+ visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
33717
+ } & {
33718
+ category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
33719
+ label: z.ZodOptional<z.ZodString>;
33720
+ hint: z.ZodOptional<z.ZodString>;
33721
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
33722
+ id: z.ZodOptional<z.ZodNumber>;
33723
+ text: z.ZodString;
33724
+ type: z.ZodEnum<[
33725
+ "info",
33726
+ "error",
33727
+ "success",
33728
+ "warning"
33729
+ ]>;
33730
+ }, "strip", z.ZodTypeAny, {
33731
+ type: "info" | "error" | "success" | "warning";
33732
+ text: string;
33733
+ id?: number | undefined;
33734
+ }, {
33735
+ type: "info" | "error" | "success" | "warning";
33736
+ text: string;
33737
+ id?: number | undefined;
33738
+ }>, "many">>;
33739
+ required: z.ZodOptional<z.ZodBoolean>;
33740
+ sensitive: z.ZodOptional<z.ZodBoolean>;
33741
+ } & {
33742
+ type: z.ZodLiteral<"COUNTRY">;
33743
+ config: z.ZodOptional<z.ZodObject<{
33744
+ placeholder: z.ZodOptional<z.ZodString>;
33745
+ default_value: z.ZodOptional<z.ZodString>;
33746
+ }, "strip", z.ZodTypeAny, {
33747
+ placeholder?: string | undefined;
33748
+ default_value?: string | undefined;
33749
+ }, {
33750
+ placeholder?: string | undefined;
33751
+ default_value?: string | undefined;
32866
33752
  }>>;
32867
33753
  }, "strip", z.ZodTypeAny, {
32868
- type: "CHOICE";
33754
+ type: "COUNTRY";
32869
33755
  id: string;
32870
33756
  visible: boolean;
32871
33757
  required?: boolean | undefined;
32872
33758
  category?: "FIELD" | undefined;
32873
33759
  config?: {
32874
- options?: {
32875
- value: string;
32876
- label: string;
32877
- }[] | undefined;
32878
- default_value?: string | string[] | undefined;
32879
- display?: "radio" | "checkbox" | undefined;
32880
- multiple?: boolean | undefined;
33760
+ placeholder?: string | undefined;
33761
+ default_value?: string | undefined;
32881
33762
  } | undefined;
32882
33763
  sensitive?: boolean | undefined;
32883
33764
  label?: string | undefined;
@@ -32889,18 +33770,13 @@ export declare const formSchema: z.ZodObject<{
32889
33770
  id?: number | undefined;
32890
33771
  }[] | undefined;
32891
33772
  }, {
32892
- type: "CHOICE";
33773
+ type: "COUNTRY";
32893
33774
  id: string;
32894
33775
  required?: boolean | undefined;
32895
33776
  category?: "FIELD" | undefined;
32896
33777
  config?: {
32897
- options?: {
32898
- value: string;
32899
- label: string;
32900
- }[] | undefined;
32901
- default_value?: string | string[] | undefined;
32902
- display?: "radio" | "checkbox" | undefined;
32903
- multiple?: boolean | undefined;
33778
+ placeholder?: string | undefined;
33779
+ default_value?: string | undefined;
32904
33780
  } | undefined;
32905
33781
  sensitive?: boolean | undefined;
32906
33782
  label?: string | undefined;
@@ -33755,16 +34631,19 @@ export declare const formSchema: z.ZodObject<{
33755
34631
  strategy: z.ZodOptional<z.ZodString>;
33756
34632
  display_name: z.ZodOptional<z.ZodString>;
33757
34633
  icon_url: z.ZodOptional<z.ZodString>;
34634
+ href: z.ZodOptional<z.ZodString>;
33758
34635
  }, "strip", z.ZodTypeAny, {
33759
34636
  name: string;
33760
34637
  icon_url?: string | undefined;
33761
34638
  display_name?: string | undefined;
33762
34639
  strategy?: string | undefined;
34640
+ href?: string | undefined;
33763
34641
  }, {
33764
34642
  name: string;
33765
34643
  icon_url?: string | undefined;
33766
34644
  display_name?: string | undefined;
33767
34645
  strategy?: string | undefined;
34646
+ href?: string | undefined;
33768
34647
  }>, "many">>;
33769
34648
  }, "strip", z.ZodTypeAny, {
33770
34649
  providers?: string[] | undefined;
@@ -33773,6 +34652,7 @@ export declare const formSchema: z.ZodObject<{
33773
34652
  icon_url?: string | undefined;
33774
34653
  display_name?: string | undefined;
33775
34654
  strategy?: string | undefined;
34655
+ href?: string | undefined;
33776
34656
  }[] | undefined;
33777
34657
  }, {
33778
34658
  providers?: string[] | undefined;
@@ -33781,6 +34661,7 @@ export declare const formSchema: z.ZodObject<{
33781
34661
  icon_url?: string | undefined;
33782
34662
  display_name?: string | undefined;
33783
34663
  strategy?: string | undefined;
34664
+ href?: string | undefined;
33784
34665
  }[] | undefined;
33785
34666
  }>>;
33786
34667
  }, "strip", z.ZodTypeAny, {
@@ -33796,6 +34677,7 @@ export declare const formSchema: z.ZodObject<{
33796
34677
  icon_url?: string | undefined;
33797
34678
  display_name?: string | undefined;
33798
34679
  strategy?: string | undefined;
34680
+ href?: string | undefined;
33799
34681
  }[] | undefined;
33800
34682
  } | undefined;
33801
34683
  sensitive?: boolean | undefined;
@@ -33819,6 +34701,7 @@ export declare const formSchema: z.ZodObject<{
33819
34701
  icon_url?: string | undefined;
33820
34702
  display_name?: string | undefined;
33821
34703
  strategy?: string | undefined;
34704
+ href?: string | undefined;
33822
34705
  }[] | undefined;
33823
34706
  } | undefined;
33824
34707
  sensitive?: boolean | undefined;
@@ -34476,6 +35359,7 @@ export declare const formSchema: z.ZodObject<{
34476
35359
  icon_url?: string | undefined;
34477
35360
  display_name?: string | undefined;
34478
35361
  strategy?: string | undefined;
35362
+ href?: string | undefined;
34479
35363
  }[] | undefined;
34480
35364
  } | undefined;
34481
35365
  sensitive?: boolean | undefined;
@@ -34529,6 +35413,25 @@ export declare const formSchema: z.ZodObject<{
34529
35413
  text: string;
34530
35414
  id?: number | undefined;
34531
35415
  }[] | undefined;
35416
+ } | {
35417
+ type: "COUNTRY";
35418
+ id: string;
35419
+ visible: boolean;
35420
+ required?: boolean | undefined;
35421
+ category?: "FIELD" | undefined;
35422
+ config?: {
35423
+ placeholder?: string | undefined;
35424
+ default_value?: string | undefined;
35425
+ } | undefined;
35426
+ sensitive?: boolean | undefined;
35427
+ label?: string | undefined;
35428
+ order?: number | undefined;
35429
+ hint?: string | undefined;
35430
+ messages?: {
35431
+ type: "info" | "error" | "success" | "warning";
35432
+ text: string;
35433
+ id?: number | undefined;
35434
+ }[] | undefined;
34532
35435
  } | {
34533
35436
  type: "URL";
34534
35437
  id: string;
@@ -34933,6 +35836,7 @@ export declare const formSchema: z.ZodObject<{
34933
35836
  icon_url?: string | undefined;
34934
35837
  display_name?: string | undefined;
34935
35838
  strategy?: string | undefined;
35839
+ href?: string | undefined;
34936
35840
  }[] | undefined;
34937
35841
  } | undefined;
34938
35842
  sensitive?: boolean | undefined;
@@ -34987,6 +35891,25 @@ export declare const formSchema: z.ZodObject<{
34987
35891
  text: string;
34988
35892
  id?: number | undefined;
34989
35893
  }[] | undefined;
35894
+ } | {
35895
+ type: "COUNTRY";
35896
+ id: string;
35897
+ required?: boolean | undefined;
35898
+ category?: "FIELD" | undefined;
35899
+ config?: {
35900
+ placeholder?: string | undefined;
35901
+ default_value?: string | undefined;
35902
+ } | undefined;
35903
+ sensitive?: boolean | undefined;
35904
+ label?: string | undefined;
35905
+ order?: number | undefined;
35906
+ visible?: boolean | undefined;
35907
+ hint?: string | undefined;
35908
+ messages?: {
35909
+ type: "info" | "error" | "success" | "warning";
35910
+ text: string;
35911
+ id?: number | undefined;
35912
+ }[] | undefined;
34990
35913
  } | {
34991
35914
  type: "URL";
34992
35915
  id: string;
@@ -35396,6 +36319,7 @@ export declare const formSchema: z.ZodObject<{
35396
36319
  icon_url?: string | undefined;
35397
36320
  display_name?: string | undefined;
35398
36321
  strategy?: string | undefined;
36322
+ href?: string | undefined;
35399
36323
  }[] | undefined;
35400
36324
  } | undefined;
35401
36325
  sensitive?: boolean | undefined;
@@ -35449,6 +36373,25 @@ export declare const formSchema: z.ZodObject<{
35449
36373
  text: string;
35450
36374
  id?: number | undefined;
35451
36375
  }[] | undefined;
36376
+ } | {
36377
+ type: "COUNTRY";
36378
+ id: string;
36379
+ visible: boolean;
36380
+ required?: boolean | undefined;
36381
+ category?: "FIELD" | undefined;
36382
+ config?: {
36383
+ placeholder?: string | undefined;
36384
+ default_value?: string | undefined;
36385
+ } | undefined;
36386
+ sensitive?: boolean | undefined;
36387
+ label?: string | undefined;
36388
+ order?: number | undefined;
36389
+ hint?: string | undefined;
36390
+ messages?: {
36391
+ type: "info" | "error" | "success" | "warning";
36392
+ text: string;
36393
+ id?: number | undefined;
36394
+ }[] | undefined;
35452
36395
  } | {
35453
36396
  type: "URL";
35454
36397
  id: string;
@@ -35862,6 +36805,7 @@ export declare const formSchema: z.ZodObject<{
35862
36805
  icon_url?: string | undefined;
35863
36806
  display_name?: string | undefined;
35864
36807
  strategy?: string | undefined;
36808
+ href?: string | undefined;
35865
36809
  }[] | undefined;
35866
36810
  } | undefined;
35867
36811
  sensitive?: boolean | undefined;
@@ -35916,6 +36860,25 @@ export declare const formSchema: z.ZodObject<{
35916
36860
  text: string;
35917
36861
  id?: number | undefined;
35918
36862
  }[] | undefined;
36863
+ } | {
36864
+ type: "COUNTRY";
36865
+ id: string;
36866
+ required?: boolean | undefined;
36867
+ category?: "FIELD" | undefined;
36868
+ config?: {
36869
+ placeholder?: string | undefined;
36870
+ default_value?: string | undefined;
36871
+ } | undefined;
36872
+ sensitive?: boolean | undefined;
36873
+ label?: string | undefined;
36874
+ order?: number | undefined;
36875
+ visible?: boolean | undefined;
36876
+ hint?: string | undefined;
36877
+ messages?: {
36878
+ type: "info" | "error" | "success" | "warning";
36879
+ text: string;
36880
+ id?: number | undefined;
36881
+ }[] | undefined;
35919
36882
  } | {
35920
36883
  type: "URL";
35921
36884
  id: string;
@@ -36502,6 +37465,7 @@ export declare const formSchema: z.ZodObject<{
36502
37465
  icon_url?: string | undefined;
36503
37466
  display_name?: string | undefined;
36504
37467
  strategy?: string | undefined;
37468
+ href?: string | undefined;
36505
37469
  }[] | undefined;
36506
37470
  } | undefined;
36507
37471
  sensitive?: boolean | undefined;
@@ -36555,6 +37519,25 @@ export declare const formSchema: z.ZodObject<{
36555
37519
  text: string;
36556
37520
  id?: number | undefined;
36557
37521
  }[] | undefined;
37522
+ } | {
37523
+ type: "COUNTRY";
37524
+ id: string;
37525
+ visible: boolean;
37526
+ required?: boolean | undefined;
37527
+ category?: "FIELD" | undefined;
37528
+ config?: {
37529
+ placeholder?: string | undefined;
37530
+ default_value?: string | undefined;
37531
+ } | undefined;
37532
+ sensitive?: boolean | undefined;
37533
+ label?: string | undefined;
37534
+ order?: number | undefined;
37535
+ hint?: string | undefined;
37536
+ messages?: {
37537
+ type: "info" | "error" | "success" | "warning";
37538
+ text: string;
37539
+ id?: number | undefined;
37540
+ }[] | undefined;
36558
37541
  } | {
36559
37542
  type: "URL";
36560
37543
  id: string;
@@ -37044,6 +38027,7 @@ export declare const formSchema: z.ZodObject<{
37044
38027
  icon_url?: string | undefined;
37045
38028
  display_name?: string | undefined;
37046
38029
  strategy?: string | undefined;
38030
+ href?: string | undefined;
37047
38031
  }[] | undefined;
37048
38032
  } | undefined;
37049
38033
  sensitive?: boolean | undefined;
@@ -37098,6 +38082,25 @@ export declare const formSchema: z.ZodObject<{
37098
38082
  text: string;
37099
38083
  id?: number | undefined;
37100
38084
  }[] | undefined;
38085
+ } | {
38086
+ type: "COUNTRY";
38087
+ id: string;
38088
+ required?: boolean | undefined;
38089
+ category?: "FIELD" | undefined;
38090
+ config?: {
38091
+ placeholder?: string | undefined;
38092
+ default_value?: string | undefined;
38093
+ } | undefined;
38094
+ sensitive?: boolean | undefined;
38095
+ label?: string | undefined;
38096
+ order?: number | undefined;
38097
+ visible?: boolean | undefined;
38098
+ hint?: string | undefined;
38099
+ messages?: {
38100
+ type: "info" | "error" | "success" | "warning";
38101
+ text: string;
38102
+ id?: number | undefined;
38103
+ }[] | undefined;
37101
38104
  } | {
37102
38105
  type: "URL";
37103
38106
  id: string;
@@ -37959,6 +38962,85 @@ export declare const uiScreenSchema: z.ZodObject<{
37959
38962
  id?: number | undefined;
37960
38963
  }[] | undefined;
37961
38964
  }>,
38965
+ z.ZodObject<{
38966
+ id: z.ZodString;
38967
+ order: z.ZodOptional<z.ZodNumber>;
38968
+ visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
38969
+ } & {
38970
+ category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
38971
+ label: z.ZodOptional<z.ZodString>;
38972
+ hint: z.ZodOptional<z.ZodString>;
38973
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
38974
+ id: z.ZodOptional<z.ZodNumber>;
38975
+ text: z.ZodString;
38976
+ type: z.ZodEnum<[
38977
+ "info",
38978
+ "error",
38979
+ "success",
38980
+ "warning"
38981
+ ]>;
38982
+ }, "strip", z.ZodTypeAny, {
38983
+ type: "info" | "error" | "success" | "warning";
38984
+ text: string;
38985
+ id?: number | undefined;
38986
+ }, {
38987
+ type: "info" | "error" | "success" | "warning";
38988
+ text: string;
38989
+ id?: number | undefined;
38990
+ }>, "many">>;
38991
+ required: z.ZodOptional<z.ZodBoolean>;
38992
+ sensitive: z.ZodOptional<z.ZodBoolean>;
38993
+ } & {
38994
+ type: z.ZodLiteral<"COUNTRY">;
38995
+ config: z.ZodOptional<z.ZodObject<{
38996
+ placeholder: z.ZodOptional<z.ZodString>;
38997
+ default_value: z.ZodOptional<z.ZodString>;
38998
+ }, "strip", z.ZodTypeAny, {
38999
+ placeholder?: string | undefined;
39000
+ default_value?: string | undefined;
39001
+ }, {
39002
+ placeholder?: string | undefined;
39003
+ default_value?: string | undefined;
39004
+ }>>;
39005
+ }, "strip", z.ZodTypeAny, {
39006
+ type: "COUNTRY";
39007
+ id: string;
39008
+ visible: boolean;
39009
+ required?: boolean | undefined;
39010
+ category?: "FIELD" | undefined;
39011
+ config?: {
39012
+ placeholder?: string | undefined;
39013
+ default_value?: string | undefined;
39014
+ } | undefined;
39015
+ sensitive?: boolean | undefined;
39016
+ label?: string | undefined;
39017
+ order?: number | undefined;
39018
+ hint?: string | undefined;
39019
+ messages?: {
39020
+ type: "info" | "error" | "success" | "warning";
39021
+ text: string;
39022
+ id?: number | undefined;
39023
+ }[] | undefined;
39024
+ }, {
39025
+ type: "COUNTRY";
39026
+ id: string;
39027
+ required?: boolean | undefined;
39028
+ category?: "FIELD" | undefined;
39029
+ config?: {
39030
+ placeholder?: string | undefined;
39031
+ default_value?: string | undefined;
39032
+ } | undefined;
39033
+ sensitive?: boolean | undefined;
39034
+ label?: string | undefined;
39035
+ order?: number | undefined;
39036
+ visible?: boolean | undefined;
39037
+ hint?: string | undefined;
39038
+ messages?: {
39039
+ type: "info" | "error" | "success" | "warning";
39040
+ text: string;
39041
+ id?: number | undefined;
39042
+ }[] | undefined;
39043
+ }>,
37962
39044
  z.ZodObject<{
37963
39045
  id: z.ZodString;
37964
39046
  order: z.ZodOptional<z.ZodNumber>;
@@ -38801,16 +39883,19 @@ export declare const uiScreenSchema: z.ZodObject<{
38801
39883
  strategy: z.ZodOptional<z.ZodString>;
38802
39884
  display_name: z.ZodOptional<z.ZodString>;
38803
39885
  icon_url: z.ZodOptional<z.ZodString>;
39886
+ href: z.ZodOptional<z.ZodString>;
38804
39887
  }, "strip", z.ZodTypeAny, {
38805
39888
  name: string;
38806
39889
  icon_url?: string | undefined;
38807
39890
  display_name?: string | undefined;
38808
39891
  strategy?: string | undefined;
39892
+ href?: string | undefined;
38809
39893
  }, {
38810
39894
  name: string;
38811
39895
  icon_url?: string | undefined;
38812
39896
  display_name?: string | undefined;
38813
39897
  strategy?: string | undefined;
39898
+ href?: string | undefined;
38814
39899
  }>, "many">>;
38815
39900
  }, "strip", z.ZodTypeAny, {
38816
39901
  providers?: string[] | undefined;
@@ -38819,6 +39904,7 @@ export declare const uiScreenSchema: z.ZodObject<{
38819
39904
  icon_url?: string | undefined;
38820
39905
  display_name?: string | undefined;
38821
39906
  strategy?: string | undefined;
39907
+ href?: string | undefined;
38822
39908
  }[] | undefined;
38823
39909
  }, {
38824
39910
  providers?: string[] | undefined;
@@ -38827,6 +39913,7 @@ export declare const uiScreenSchema: z.ZodObject<{
38827
39913
  icon_url?: string | undefined;
38828
39914
  display_name?: string | undefined;
38829
39915
  strategy?: string | undefined;
39916
+ href?: string | undefined;
38830
39917
  }[] | undefined;
38831
39918
  }>>;
38832
39919
  }, "strip", z.ZodTypeAny, {
@@ -38842,6 +39929,7 @@ export declare const uiScreenSchema: z.ZodObject<{
38842
39929
  icon_url?: string | undefined;
38843
39930
  display_name?: string | undefined;
38844
39931
  strategy?: string | undefined;
39932
+ href?: string | undefined;
38845
39933
  }[] | undefined;
38846
39934
  } | undefined;
38847
39935
  sensitive?: boolean | undefined;
@@ -38865,6 +39953,7 @@ export declare const uiScreenSchema: z.ZodObject<{
38865
39953
  icon_url?: string | undefined;
38866
39954
  display_name?: string | undefined;
38867
39955
  strategy?: string | undefined;
39956
+ href?: string | undefined;
38868
39957
  }[] | undefined;
38869
39958
  } | undefined;
38870
39959
  sensitive?: boolean | undefined;
@@ -39558,6 +40647,7 @@ export declare const uiScreenSchema: z.ZodObject<{
39558
40647
  icon_url?: string | undefined;
39559
40648
  display_name?: string | undefined;
39560
40649
  strategy?: string | undefined;
40650
+ href?: string | undefined;
39561
40651
  }[] | undefined;
39562
40652
  } | undefined;
39563
40653
  sensitive?: boolean | undefined;
@@ -39611,6 +40701,25 @@ export declare const uiScreenSchema: z.ZodObject<{
39611
40701
  text: string;
39612
40702
  id?: number | undefined;
39613
40703
  }[] | undefined;
40704
+ } | {
40705
+ type: "COUNTRY";
40706
+ id: string;
40707
+ visible: boolean;
40708
+ required?: boolean | undefined;
40709
+ category?: "FIELD" | undefined;
40710
+ config?: {
40711
+ placeholder?: string | undefined;
40712
+ default_value?: string | undefined;
40713
+ } | undefined;
40714
+ sensitive?: boolean | undefined;
40715
+ label?: string | undefined;
40716
+ order?: number | undefined;
40717
+ hint?: string | undefined;
40718
+ messages?: {
40719
+ type: "info" | "error" | "success" | "warning";
40720
+ text: string;
40721
+ id?: number | undefined;
40722
+ }[] | undefined;
39614
40723
  } | {
39615
40724
  type: "URL";
39616
40725
  id: string;
@@ -40031,6 +41140,7 @@ export declare const uiScreenSchema: z.ZodObject<{
40031
41140
  icon_url?: string | undefined;
40032
41141
  display_name?: string | undefined;
40033
41142
  strategy?: string | undefined;
41143
+ href?: string | undefined;
40034
41144
  }[] | undefined;
40035
41145
  } | undefined;
40036
41146
  sensitive?: boolean | undefined;
@@ -40085,6 +41195,25 @@ export declare const uiScreenSchema: z.ZodObject<{
40085
41195
  text: string;
40086
41196
  id?: number | undefined;
40087
41197
  }[] | undefined;
41198
+ } | {
41199
+ type: "COUNTRY";
41200
+ id: string;
41201
+ required?: boolean | undefined;
41202
+ category?: "FIELD" | undefined;
41203
+ config?: {
41204
+ placeholder?: string | undefined;
41205
+ default_value?: string | undefined;
41206
+ } | undefined;
41207
+ sensitive?: boolean | undefined;
41208
+ label?: string | undefined;
41209
+ order?: number | undefined;
41210
+ visible?: boolean | undefined;
41211
+ hint?: string | undefined;
41212
+ messages?: {
41213
+ type: "info" | "error" | "success" | "warning";
41214
+ text: string;
41215
+ id?: number | undefined;
41216
+ }[] | undefined;
40088
41217
  } | {
40089
41218
  type: "URL";
40090
41219
  id: string;
@@ -46133,6 +47262,27 @@ export declare const customTextEntrySchema: z.ZodObject<{
46133
47262
  custom_text: Record<string, Record<string, string>>;
46134
47263
  }>;
46135
47264
  export type CustomTextEntry = z.infer<typeof customTextEntrySchema>;
47265
+ export declare const Strategy: {
47266
+ readonly EMAIL: "email";
47267
+ readonly SMS: "sms";
47268
+ readonly USERNAME_PASSWORD: "Username-Password-Authentication";
47269
+ readonly GOOGLE_OAUTH2: "google-oauth2";
47270
+ readonly APPLE: "apple";
47271
+ readonly FACEBOOK: "facebook";
47272
+ readonly GITHUB: "github";
47273
+ readonly MICROSOFT: "microsoft";
47274
+ readonly VIPPS: "vipps";
47275
+ readonly OIDC: "oidc";
47276
+ readonly OAUTH2: "oauth2";
47277
+ readonly SAMLP: "samlp";
47278
+ readonly WAAD: "waad";
47279
+ readonly ADFS: "adfs";
47280
+ };
47281
+ export declare const StrategyType: {
47282
+ readonly DATABASE: "database";
47283
+ readonly SOCIAL: "social";
47284
+ readonly PASSWORDLESS: "passwordless";
47285
+ };
46136
47286
  export declare function parseUserId(user_id: string): {
46137
47287
  connection: string;
46138
47288
  id: string;