authhero 4.67.0 → 4.68.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.
@@ -14994,6 +14994,85 @@ declare const textField: z.ZodObject<{
14994
14994
  id?: number | undefined;
14995
14995
  }[] | undefined;
14996
14996
  }>;
14997
+ declare const countryField: z.ZodObject<{
14998
+ id: z.ZodString;
14999
+ order: z.ZodOptional<z.ZodNumber>;
15000
+ visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
15001
+ } & {
15002
+ category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
15003
+ label: z.ZodOptional<z.ZodString>;
15004
+ hint: z.ZodOptional<z.ZodString>;
15005
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
15006
+ id: z.ZodOptional<z.ZodNumber>;
15007
+ text: z.ZodString;
15008
+ type: z.ZodEnum<[
15009
+ "info",
15010
+ "error",
15011
+ "success",
15012
+ "warning"
15013
+ ]>;
15014
+ }, "strip", z.ZodTypeAny, {
15015
+ type: "info" | "error" | "success" | "warning";
15016
+ text: string;
15017
+ id?: number | undefined;
15018
+ }, {
15019
+ type: "info" | "error" | "success" | "warning";
15020
+ text: string;
15021
+ id?: number | undefined;
15022
+ }>, "many">>;
15023
+ required: z.ZodOptional<z.ZodBoolean>;
15024
+ sensitive: z.ZodOptional<z.ZodBoolean>;
15025
+ } & {
15026
+ type: z.ZodLiteral<"COUNTRY">;
15027
+ config: z.ZodOptional<z.ZodObject<{
15028
+ placeholder: z.ZodOptional<z.ZodString>;
15029
+ default_value: z.ZodOptional<z.ZodString>;
15030
+ }, "strip", z.ZodTypeAny, {
15031
+ placeholder?: string | undefined;
15032
+ default_value?: string | undefined;
15033
+ }, {
15034
+ placeholder?: string | undefined;
15035
+ default_value?: string | undefined;
15036
+ }>>;
15037
+ }, "strip", z.ZodTypeAny, {
15038
+ type: "COUNTRY";
15039
+ id: string;
15040
+ visible: boolean;
15041
+ required?: boolean | undefined;
15042
+ category?: "FIELD" | undefined;
15043
+ config?: {
15044
+ placeholder?: string | undefined;
15045
+ default_value?: string | undefined;
15046
+ } | undefined;
15047
+ sensitive?: boolean | undefined;
15048
+ label?: string | undefined;
15049
+ order?: number | undefined;
15050
+ hint?: string | undefined;
15051
+ messages?: {
15052
+ type: "info" | "error" | "success" | "warning";
15053
+ text: string;
15054
+ id?: number | undefined;
15055
+ }[] | undefined;
15056
+ }, {
15057
+ type: "COUNTRY";
15058
+ id: string;
15059
+ required?: boolean | undefined;
15060
+ category?: "FIELD" | undefined;
15061
+ config?: {
15062
+ placeholder?: string | undefined;
15063
+ default_value?: string | undefined;
15064
+ } | undefined;
15065
+ sensitive?: boolean | undefined;
15066
+ label?: string | undefined;
15067
+ order?: number | undefined;
15068
+ visible?: boolean | undefined;
15069
+ hint?: string | undefined;
15070
+ messages?: {
15071
+ type: "info" | "error" | "success" | "warning";
15072
+ text: string;
15073
+ id?: number | undefined;
15074
+ }[] | undefined;
15075
+ }>;
14997
15076
  declare const urlField: z.ZodObject<{
14998
15077
  id: z.ZodString;
14999
15078
  order: z.ZodOptional<z.ZodNumber>;
@@ -15826,6 +15905,85 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
15826
15905
  id?: number | undefined;
15827
15906
  }[] | undefined;
15828
15907
  }>,
15908
+ z.ZodObject<{
15909
+ id: z.ZodString;
15910
+ order: z.ZodOptional<z.ZodNumber>;
15911
+ visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
15912
+ } & {
15913
+ category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
15914
+ label: z.ZodOptional<z.ZodString>;
15915
+ hint: z.ZodOptional<z.ZodString>;
15916
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
15917
+ id: z.ZodOptional<z.ZodNumber>;
15918
+ text: z.ZodString;
15919
+ type: z.ZodEnum<[
15920
+ "info",
15921
+ "error",
15922
+ "success",
15923
+ "warning"
15924
+ ]>;
15925
+ }, "strip", z.ZodTypeAny, {
15926
+ type: "info" | "error" | "success" | "warning";
15927
+ text: string;
15928
+ id?: number | undefined;
15929
+ }, {
15930
+ type: "info" | "error" | "success" | "warning";
15931
+ text: string;
15932
+ id?: number | undefined;
15933
+ }>, "many">>;
15934
+ required: z.ZodOptional<z.ZodBoolean>;
15935
+ sensitive: z.ZodOptional<z.ZodBoolean>;
15936
+ } & {
15937
+ type: z.ZodLiteral<"COUNTRY">;
15938
+ config: z.ZodOptional<z.ZodObject<{
15939
+ placeholder: z.ZodOptional<z.ZodString>;
15940
+ default_value: z.ZodOptional<z.ZodString>;
15941
+ }, "strip", z.ZodTypeAny, {
15942
+ placeholder?: string | undefined;
15943
+ default_value?: string | undefined;
15944
+ }, {
15945
+ placeholder?: string | undefined;
15946
+ default_value?: string | undefined;
15947
+ }>>;
15948
+ }, "strip", z.ZodTypeAny, {
15949
+ type: "COUNTRY";
15950
+ id: string;
15951
+ visible: boolean;
15952
+ required?: boolean | undefined;
15953
+ category?: "FIELD" | undefined;
15954
+ config?: {
15955
+ placeholder?: string | undefined;
15956
+ default_value?: string | undefined;
15957
+ } | undefined;
15958
+ sensitive?: boolean | undefined;
15959
+ label?: string | undefined;
15960
+ order?: number | undefined;
15961
+ hint?: string | undefined;
15962
+ messages?: {
15963
+ type: "info" | "error" | "success" | "warning";
15964
+ text: string;
15965
+ id?: number | undefined;
15966
+ }[] | undefined;
15967
+ }, {
15968
+ type: "COUNTRY";
15969
+ id: string;
15970
+ required?: boolean | undefined;
15971
+ category?: "FIELD" | undefined;
15972
+ config?: {
15973
+ placeholder?: string | undefined;
15974
+ default_value?: string | undefined;
15975
+ } | undefined;
15976
+ sensitive?: boolean | undefined;
15977
+ label?: string | undefined;
15978
+ order?: number | undefined;
15979
+ visible?: boolean | undefined;
15980
+ hint?: string | undefined;
15981
+ messages?: {
15982
+ type: "info" | "error" | "success" | "warning";
15983
+ text: string;
15984
+ id?: number | undefined;
15985
+ }[] | undefined;
15986
+ }>,
15829
15987
  z.ZodObject<{
15830
15988
  id: z.ZodString;
15831
15989
  order: z.ZodOptional<z.ZodNumber>;
@@ -17787,122 +17945,25 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
17787
17945
  required: z.ZodOptional<z.ZodBoolean>;
17788
17946
  sensitive: z.ZodOptional<z.ZodBoolean>;
17789
17947
  } & {
17790
- type: z.ZodLiteral<"CUSTOM">;
17791
- config: z.ZodObject<{
17792
- component: z.ZodOptional<z.ZodString>;
17793
- props: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
17794
- schema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
17795
- code: z.ZodOptional<z.ZodString>;
17796
- }, "strip", z.ZodTypeAny, {
17797
- code?: string | undefined;
17798
- schema?: Record<string, any> | undefined;
17799
- component?: string | undefined;
17800
- props?: Record<string, any> | undefined;
17801
- }, {
17802
- code?: string | undefined;
17803
- schema?: Record<string, any> | undefined;
17804
- component?: string | undefined;
17805
- props?: Record<string, any> | undefined;
17806
- }>;
17807
- }, "strip", z.ZodTypeAny, {
17808
- type: "CUSTOM";
17809
- id: string;
17810
- config: {
17811
- code?: string | undefined;
17812
- schema?: Record<string, any> | undefined;
17813
- component?: string | undefined;
17814
- props?: Record<string, any> | undefined;
17815
- };
17816
- visible: boolean;
17817
- required?: boolean | undefined;
17818
- category?: "FIELD" | undefined;
17819
- sensitive?: boolean | undefined;
17820
- label?: string | undefined;
17821
- order?: number | undefined;
17822
- hint?: string | undefined;
17823
- messages?: {
17824
- type: "info" | "error" | "success" | "warning";
17825
- text: string;
17826
- id?: number | undefined;
17827
- }[] | undefined;
17828
- }, {
17829
- type: "CUSTOM";
17830
- id: string;
17831
- config: {
17832
- code?: string | undefined;
17833
- schema?: Record<string, any> | undefined;
17834
- component?: string | undefined;
17835
- props?: Record<string, any> | undefined;
17836
- };
17837
- required?: boolean | undefined;
17838
- category?: "FIELD" | undefined;
17839
- sensitive?: boolean | undefined;
17840
- label?: string | undefined;
17841
- order?: number | undefined;
17842
- visible?: boolean | undefined;
17843
- hint?: string | undefined;
17844
- messages?: {
17845
- type: "info" | "error" | "success" | "warning";
17846
- text: string;
17847
- id?: number | undefined;
17848
- }[] | undefined;
17849
- }>,
17850
- z.ZodObject<{
17851
- id: z.ZodString;
17852
- order: z.ZodOptional<z.ZodNumber>;
17853
- visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
17854
- } & {
17855
- category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
17856
- label: z.ZodOptional<z.ZodString>;
17857
- hint: z.ZodOptional<z.ZodString>;
17858
- messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
17859
- id: z.ZodOptional<z.ZodNumber>;
17860
- text: z.ZodString;
17861
- type: z.ZodEnum<[
17862
- "info",
17863
- "error",
17864
- "success",
17865
- "warning"
17866
- ]>;
17867
- }, "strip", z.ZodTypeAny, {
17868
- type: "info" | "error" | "success" | "warning";
17869
- text: string;
17870
- id?: number | undefined;
17871
- }, {
17872
- type: "info" | "error" | "success" | "warning";
17873
- text: string;
17874
- id?: number | undefined;
17875
- }>, "many">>;
17876
- required: z.ZodOptional<z.ZodBoolean>;
17877
- sensitive: z.ZodOptional<z.ZodBoolean>;
17878
- } & {
17879
- type: z.ZodLiteral<"DATE">;
17948
+ type: z.ZodLiteral<"COUNTRY">;
17880
17949
  config: z.ZodOptional<z.ZodObject<{
17881
- format: z.ZodOptional<z.ZodString>;
17882
- min: z.ZodOptional<z.ZodString>;
17883
- max: z.ZodOptional<z.ZodString>;
17950
+ placeholder: z.ZodOptional<z.ZodString>;
17884
17951
  default_value: z.ZodOptional<z.ZodString>;
17885
17952
  }, "strip", z.ZodTypeAny, {
17886
- format?: string | undefined;
17887
- min?: string | undefined;
17888
- max?: string | undefined;
17953
+ placeholder?: string | undefined;
17889
17954
  default_value?: string | undefined;
17890
17955
  }, {
17891
- format?: string | undefined;
17892
- min?: string | undefined;
17893
- max?: string | undefined;
17956
+ placeholder?: string | undefined;
17894
17957
  default_value?: string | undefined;
17895
17958
  }>>;
17896
17959
  }, "strip", z.ZodTypeAny, {
17897
- type: "DATE";
17960
+ type: "COUNTRY";
17898
17961
  id: string;
17899
17962
  visible: boolean;
17900
17963
  required?: boolean | undefined;
17901
17964
  category?: "FIELD" | undefined;
17902
17965
  config?: {
17903
- format?: string | undefined;
17904
- min?: string | undefined;
17905
- max?: string | undefined;
17966
+ placeholder?: string | undefined;
17906
17967
  default_value?: string | undefined;
17907
17968
  } | undefined;
17908
17969
  sensitive?: boolean | undefined;
@@ -17915,14 +17976,190 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
17915
17976
  id?: number | undefined;
17916
17977
  }[] | undefined;
17917
17978
  }, {
17918
- type: "DATE";
17979
+ type: "COUNTRY";
17919
17980
  id: string;
17920
17981
  required?: boolean | undefined;
17921
17982
  category?: "FIELD" | undefined;
17922
17983
  config?: {
17923
- format?: string | undefined;
17924
- min?: string | undefined;
17925
- max?: string | undefined;
17984
+ placeholder?: string | undefined;
17985
+ default_value?: string | undefined;
17986
+ } | undefined;
17987
+ sensitive?: boolean | undefined;
17988
+ label?: string | undefined;
17989
+ order?: number | undefined;
17990
+ visible?: boolean | undefined;
17991
+ hint?: string | undefined;
17992
+ messages?: {
17993
+ type: "info" | "error" | "success" | "warning";
17994
+ text: string;
17995
+ id?: number | undefined;
17996
+ }[] | undefined;
17997
+ }>,
17998
+ z.ZodObject<{
17999
+ id: z.ZodString;
18000
+ order: z.ZodOptional<z.ZodNumber>;
18001
+ visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
18002
+ } & {
18003
+ category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
18004
+ label: z.ZodOptional<z.ZodString>;
18005
+ hint: z.ZodOptional<z.ZodString>;
18006
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
18007
+ id: z.ZodOptional<z.ZodNumber>;
18008
+ text: z.ZodString;
18009
+ type: z.ZodEnum<[
18010
+ "info",
18011
+ "error",
18012
+ "success",
18013
+ "warning"
18014
+ ]>;
18015
+ }, "strip", z.ZodTypeAny, {
18016
+ type: "info" | "error" | "success" | "warning";
18017
+ text: string;
18018
+ id?: number | undefined;
18019
+ }, {
18020
+ type: "info" | "error" | "success" | "warning";
18021
+ text: string;
18022
+ id?: number | undefined;
18023
+ }>, "many">>;
18024
+ required: z.ZodOptional<z.ZodBoolean>;
18025
+ sensitive: z.ZodOptional<z.ZodBoolean>;
18026
+ } & {
18027
+ type: z.ZodLiteral<"CUSTOM">;
18028
+ config: z.ZodObject<{
18029
+ component: z.ZodOptional<z.ZodString>;
18030
+ props: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
18031
+ schema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
18032
+ code: z.ZodOptional<z.ZodString>;
18033
+ }, "strip", z.ZodTypeAny, {
18034
+ code?: string | undefined;
18035
+ schema?: Record<string, any> | undefined;
18036
+ component?: string | undefined;
18037
+ props?: Record<string, any> | undefined;
18038
+ }, {
18039
+ code?: string | undefined;
18040
+ schema?: Record<string, any> | undefined;
18041
+ component?: string | undefined;
18042
+ props?: Record<string, any> | undefined;
18043
+ }>;
18044
+ }, "strip", z.ZodTypeAny, {
18045
+ type: "CUSTOM";
18046
+ id: string;
18047
+ config: {
18048
+ code?: string | undefined;
18049
+ schema?: Record<string, any> | undefined;
18050
+ component?: string | undefined;
18051
+ props?: Record<string, any> | undefined;
18052
+ };
18053
+ visible: boolean;
18054
+ required?: boolean | undefined;
18055
+ category?: "FIELD" | undefined;
18056
+ sensitive?: boolean | undefined;
18057
+ label?: string | undefined;
18058
+ order?: number | undefined;
18059
+ hint?: string | undefined;
18060
+ messages?: {
18061
+ type: "info" | "error" | "success" | "warning";
18062
+ text: string;
18063
+ id?: number | undefined;
18064
+ }[] | undefined;
18065
+ }, {
18066
+ type: "CUSTOM";
18067
+ id: string;
18068
+ config: {
18069
+ code?: string | undefined;
18070
+ schema?: Record<string, any> | undefined;
18071
+ component?: string | undefined;
18072
+ props?: Record<string, any> | undefined;
18073
+ };
18074
+ required?: boolean | undefined;
18075
+ category?: "FIELD" | undefined;
18076
+ sensitive?: boolean | undefined;
18077
+ label?: string | undefined;
18078
+ order?: number | undefined;
18079
+ visible?: boolean | undefined;
18080
+ hint?: string | undefined;
18081
+ messages?: {
18082
+ type: "info" | "error" | "success" | "warning";
18083
+ text: string;
18084
+ id?: number | undefined;
18085
+ }[] | undefined;
18086
+ }>,
18087
+ z.ZodObject<{
18088
+ id: z.ZodString;
18089
+ order: z.ZodOptional<z.ZodNumber>;
18090
+ visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
18091
+ } & {
18092
+ category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
18093
+ label: z.ZodOptional<z.ZodString>;
18094
+ hint: z.ZodOptional<z.ZodString>;
18095
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
18096
+ id: z.ZodOptional<z.ZodNumber>;
18097
+ text: z.ZodString;
18098
+ type: z.ZodEnum<[
18099
+ "info",
18100
+ "error",
18101
+ "success",
18102
+ "warning"
18103
+ ]>;
18104
+ }, "strip", z.ZodTypeAny, {
18105
+ type: "info" | "error" | "success" | "warning";
18106
+ text: string;
18107
+ id?: number | undefined;
18108
+ }, {
18109
+ type: "info" | "error" | "success" | "warning";
18110
+ text: string;
18111
+ id?: number | undefined;
18112
+ }>, "many">>;
18113
+ required: z.ZodOptional<z.ZodBoolean>;
18114
+ sensitive: z.ZodOptional<z.ZodBoolean>;
18115
+ } & {
18116
+ type: z.ZodLiteral<"DATE">;
18117
+ config: z.ZodOptional<z.ZodObject<{
18118
+ format: z.ZodOptional<z.ZodString>;
18119
+ min: z.ZodOptional<z.ZodString>;
18120
+ max: z.ZodOptional<z.ZodString>;
18121
+ default_value: z.ZodOptional<z.ZodString>;
18122
+ }, "strip", z.ZodTypeAny, {
18123
+ format?: string | undefined;
18124
+ min?: string | undefined;
18125
+ max?: string | undefined;
18126
+ default_value?: string | undefined;
18127
+ }, {
18128
+ format?: string | undefined;
18129
+ min?: string | undefined;
18130
+ max?: string | undefined;
18131
+ default_value?: string | undefined;
18132
+ }>>;
18133
+ }, "strip", z.ZodTypeAny, {
18134
+ type: "DATE";
18135
+ id: string;
18136
+ visible: boolean;
18137
+ required?: boolean | undefined;
18138
+ category?: "FIELD" | undefined;
18139
+ config?: {
18140
+ format?: string | undefined;
18141
+ min?: string | undefined;
18142
+ max?: string | undefined;
18143
+ default_value?: string | undefined;
18144
+ } | undefined;
18145
+ sensitive?: boolean | undefined;
18146
+ label?: string | undefined;
18147
+ order?: number | undefined;
18148
+ hint?: string | undefined;
18149
+ messages?: {
18150
+ type: "info" | "error" | "success" | "warning";
18151
+ text: string;
18152
+ id?: number | undefined;
18153
+ }[] | undefined;
18154
+ }, {
18155
+ type: "DATE";
18156
+ id: string;
18157
+ required?: boolean | undefined;
18158
+ category?: "FIELD" | undefined;
18159
+ config?: {
18160
+ format?: string | undefined;
18161
+ min?: string | undefined;
18162
+ max?: string | undefined;
17926
18163
  default_value?: string | undefined;
17927
18164
  } | undefined;
17928
18165
  sensitive?: boolean | undefined;
@@ -18966,6 +19203,7 @@ export type RecaptchaWidget = z.infer<typeof recaptchaWidget>;
18966
19203
  export type BooleanField = z.infer<typeof booleanField>;
18967
19204
  export type CardsField = z.infer<typeof cardsField>;
18968
19205
  export type ChoiceField = z.infer<typeof choiceField>;
19206
+ export type CountryField = z.infer<typeof countryField>;
18969
19207
  export type CustomField = z.infer<typeof customField>;
18970
19208
  export type DateField = z.infer<typeof dateField>;
18971
19209
  export type DropdownField = z.infer<typeof dropdownField>;
@@ -19905,6 +20143,85 @@ declare const stepNodeSchema$1: z.ZodObject<{
19905
20143
  id?: number | undefined;
19906
20144
  }[] | undefined;
19907
20145
  }>,
20146
+ z.ZodObject<{
20147
+ id: z.ZodString;
20148
+ order: z.ZodOptional<z.ZodNumber>;
20149
+ visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
20150
+ } & {
20151
+ category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
20152
+ label: z.ZodOptional<z.ZodString>;
20153
+ hint: z.ZodOptional<z.ZodString>;
20154
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
20155
+ id: z.ZodOptional<z.ZodNumber>;
20156
+ text: z.ZodString;
20157
+ type: z.ZodEnum<[
20158
+ "info",
20159
+ "error",
20160
+ "success",
20161
+ "warning"
20162
+ ]>;
20163
+ }, "strip", z.ZodTypeAny, {
20164
+ type: "info" | "error" | "success" | "warning";
20165
+ text: string;
20166
+ id?: number | undefined;
20167
+ }, {
20168
+ type: "info" | "error" | "success" | "warning";
20169
+ text: string;
20170
+ id?: number | undefined;
20171
+ }>, "many">>;
20172
+ required: z.ZodOptional<z.ZodBoolean>;
20173
+ sensitive: z.ZodOptional<z.ZodBoolean>;
20174
+ } & {
20175
+ type: z.ZodLiteral<"COUNTRY">;
20176
+ config: z.ZodOptional<z.ZodObject<{
20177
+ placeholder: z.ZodOptional<z.ZodString>;
20178
+ default_value: z.ZodOptional<z.ZodString>;
20179
+ }, "strip", z.ZodTypeAny, {
20180
+ placeholder?: string | undefined;
20181
+ default_value?: string | undefined;
20182
+ }, {
20183
+ placeholder?: string | undefined;
20184
+ default_value?: string | undefined;
20185
+ }>>;
20186
+ }, "strip", z.ZodTypeAny, {
20187
+ type: "COUNTRY";
20188
+ id: string;
20189
+ visible: boolean;
20190
+ required?: boolean | undefined;
20191
+ category?: "FIELD" | undefined;
20192
+ config?: {
20193
+ placeholder?: string | undefined;
20194
+ default_value?: string | undefined;
20195
+ } | undefined;
20196
+ sensitive?: boolean | undefined;
20197
+ label?: string | undefined;
20198
+ order?: number | undefined;
20199
+ hint?: string | undefined;
20200
+ messages?: {
20201
+ type: "info" | "error" | "success" | "warning";
20202
+ text: string;
20203
+ id?: number | undefined;
20204
+ }[] | undefined;
20205
+ }, {
20206
+ type: "COUNTRY";
20207
+ id: string;
20208
+ required?: boolean | undefined;
20209
+ category?: "FIELD" | undefined;
20210
+ config?: {
20211
+ placeholder?: string | undefined;
20212
+ default_value?: string | undefined;
20213
+ } | undefined;
20214
+ sensitive?: boolean | undefined;
20215
+ label?: string | undefined;
20216
+ order?: number | undefined;
20217
+ visible?: boolean | undefined;
20218
+ hint?: string | undefined;
20219
+ messages?: {
20220
+ type: "info" | "error" | "success" | "warning";
20221
+ text: string;
20222
+ id?: number | undefined;
20223
+ }[] | undefined;
20224
+ }>,
19908
20225
  z.ZodObject<{
19909
20226
  id: z.ZodString;
19910
20227
  order: z.ZodOptional<z.ZodNumber>;
@@ -21529,6 +21846,25 @@ declare const stepNodeSchema$1: z.ZodObject<{
21529
21846
  text: string;
21530
21847
  id?: number | undefined;
21531
21848
  }[] | undefined;
21849
+ } | {
21850
+ type: "COUNTRY";
21851
+ id: string;
21852
+ visible: boolean;
21853
+ required?: boolean | undefined;
21854
+ category?: "FIELD" | undefined;
21855
+ config?: {
21856
+ placeholder?: string | undefined;
21857
+ default_value?: string | undefined;
21858
+ } | undefined;
21859
+ sensitive?: boolean | undefined;
21860
+ label?: string | undefined;
21861
+ order?: number | undefined;
21862
+ hint?: string | undefined;
21863
+ messages?: {
21864
+ type: "info" | "error" | "success" | "warning";
21865
+ text: string;
21866
+ id?: number | undefined;
21867
+ }[] | undefined;
21532
21868
  } | {
21533
21869
  type: "URL";
21534
21870
  id: string;
@@ -21988,6 +22324,25 @@ declare const stepNodeSchema$1: z.ZodObject<{
21988
22324
  text: string;
21989
22325
  id?: number | undefined;
21990
22326
  }[] | undefined;
22327
+ } | {
22328
+ type: "COUNTRY";
22329
+ id: string;
22330
+ required?: boolean | undefined;
22331
+ category?: "FIELD" | undefined;
22332
+ config?: {
22333
+ placeholder?: string | undefined;
22334
+ default_value?: string | undefined;
22335
+ } | undefined;
22336
+ sensitive?: boolean | undefined;
22337
+ label?: string | undefined;
22338
+ order?: number | undefined;
22339
+ visible?: boolean | undefined;
22340
+ hint?: string | undefined;
22341
+ messages?: {
22342
+ type: "info" | "error" | "success" | "warning";
22343
+ text: string;
22344
+ id?: number | undefined;
22345
+ }[] | undefined;
21991
22346
  } | {
21992
22347
  type: "URL";
21993
22348
  id: string;
@@ -22451,6 +22806,25 @@ declare const stepNodeSchema$1: z.ZodObject<{
22451
22806
  text: string;
22452
22807
  id?: number | undefined;
22453
22808
  }[] | undefined;
22809
+ } | {
22810
+ type: "COUNTRY";
22811
+ id: string;
22812
+ visible: boolean;
22813
+ required?: boolean | undefined;
22814
+ category?: "FIELD" | undefined;
22815
+ config?: {
22816
+ placeholder?: string | undefined;
22817
+ default_value?: string | undefined;
22818
+ } | undefined;
22819
+ sensitive?: boolean | undefined;
22820
+ label?: string | undefined;
22821
+ order?: number | undefined;
22822
+ hint?: string | undefined;
22823
+ messages?: {
22824
+ type: "info" | "error" | "success" | "warning";
22825
+ text: string;
22826
+ id?: number | undefined;
22827
+ }[] | undefined;
22454
22828
  } | {
22455
22829
  type: "URL";
22456
22830
  id: string;
@@ -22919,6 +23293,25 @@ declare const stepNodeSchema$1: z.ZodObject<{
22919
23293
  text: string;
22920
23294
  id?: number | undefined;
22921
23295
  }[] | undefined;
23296
+ } | {
23297
+ type: "COUNTRY";
23298
+ id: string;
23299
+ required?: boolean | undefined;
23300
+ category?: "FIELD" | undefined;
23301
+ config?: {
23302
+ placeholder?: string | undefined;
23303
+ default_value?: string | undefined;
23304
+ } | undefined;
23305
+ sensitive?: boolean | undefined;
23306
+ label?: string | undefined;
23307
+ order?: number | undefined;
23308
+ visible?: boolean | undefined;
23309
+ hint?: string | undefined;
23310
+ messages?: {
23311
+ type: "info" | "error" | "success" | "warning";
23312
+ text: string;
23313
+ id?: number | undefined;
23314
+ }[] | undefined;
22922
23315
  } | {
22923
23316
  type: "URL";
22924
23317
  id: string;
@@ -23841,6 +24234,85 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
23841
24234
  id?: number | undefined;
23842
24235
  }[] | undefined;
23843
24236
  }>,
24237
+ z.ZodObject<{
24238
+ id: z.ZodString;
24239
+ order: z.ZodOptional<z.ZodNumber>;
24240
+ visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
24241
+ } & {
24242
+ category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
24243
+ label: z.ZodOptional<z.ZodString>;
24244
+ hint: z.ZodOptional<z.ZodString>;
24245
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
24246
+ id: z.ZodOptional<z.ZodNumber>;
24247
+ text: z.ZodString;
24248
+ type: z.ZodEnum<[
24249
+ "info",
24250
+ "error",
24251
+ "success",
24252
+ "warning"
24253
+ ]>;
24254
+ }, "strip", z.ZodTypeAny, {
24255
+ type: "info" | "error" | "success" | "warning";
24256
+ text: string;
24257
+ id?: number | undefined;
24258
+ }, {
24259
+ type: "info" | "error" | "success" | "warning";
24260
+ text: string;
24261
+ id?: number | undefined;
24262
+ }>, "many">>;
24263
+ required: z.ZodOptional<z.ZodBoolean>;
24264
+ sensitive: z.ZodOptional<z.ZodBoolean>;
24265
+ } & {
24266
+ type: z.ZodLiteral<"COUNTRY">;
24267
+ config: z.ZodOptional<z.ZodObject<{
24268
+ placeholder: z.ZodOptional<z.ZodString>;
24269
+ default_value: z.ZodOptional<z.ZodString>;
24270
+ }, "strip", z.ZodTypeAny, {
24271
+ placeholder?: string | undefined;
24272
+ default_value?: string | undefined;
24273
+ }, {
24274
+ placeholder?: string | undefined;
24275
+ default_value?: string | undefined;
24276
+ }>>;
24277
+ }, "strip", z.ZodTypeAny, {
24278
+ type: "COUNTRY";
24279
+ id: string;
24280
+ visible: boolean;
24281
+ required?: boolean | undefined;
24282
+ category?: "FIELD" | undefined;
24283
+ config?: {
24284
+ placeholder?: string | undefined;
24285
+ default_value?: string | undefined;
24286
+ } | undefined;
24287
+ sensitive?: boolean | undefined;
24288
+ label?: string | undefined;
24289
+ order?: number | undefined;
24290
+ hint?: string | undefined;
24291
+ messages?: {
24292
+ type: "info" | "error" | "success" | "warning";
24293
+ text: string;
24294
+ id?: number | undefined;
24295
+ }[] | undefined;
24296
+ }, {
24297
+ type: "COUNTRY";
24298
+ id: string;
24299
+ required?: boolean | undefined;
24300
+ category?: "FIELD" | undefined;
24301
+ config?: {
24302
+ placeholder?: string | undefined;
24303
+ default_value?: string | undefined;
24304
+ } | undefined;
24305
+ sensitive?: boolean | undefined;
24306
+ label?: string | undefined;
24307
+ order?: number | undefined;
24308
+ visible?: boolean | undefined;
24309
+ hint?: string | undefined;
24310
+ messages?: {
24311
+ type: "info" | "error" | "success" | "warning";
24312
+ text: string;
24313
+ id?: number | undefined;
24314
+ }[] | undefined;
24315
+ }>,
23844
24316
  z.ZodObject<{
23845
24317
  id: z.ZodString;
23846
24318
  order: z.ZodOptional<z.ZodNumber>;
@@ -25465,6 +25937,25 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
25465
25937
  text: string;
25466
25938
  id?: number | undefined;
25467
25939
  }[] | undefined;
25940
+ } | {
25941
+ type: "COUNTRY";
25942
+ id: string;
25943
+ visible: boolean;
25944
+ required?: boolean | undefined;
25945
+ category?: "FIELD" | undefined;
25946
+ config?: {
25947
+ placeholder?: string | undefined;
25948
+ default_value?: string | undefined;
25949
+ } | undefined;
25950
+ sensitive?: boolean | undefined;
25951
+ label?: string | undefined;
25952
+ order?: number | undefined;
25953
+ hint?: string | undefined;
25954
+ messages?: {
25955
+ type: "info" | "error" | "success" | "warning";
25956
+ text: string;
25957
+ id?: number | undefined;
25958
+ }[] | undefined;
25468
25959
  } | {
25469
25960
  type: "URL";
25470
25961
  id: string;
@@ -25924,6 +26415,25 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
25924
26415
  text: string;
25925
26416
  id?: number | undefined;
25926
26417
  }[] | undefined;
26418
+ } | {
26419
+ type: "COUNTRY";
26420
+ id: string;
26421
+ required?: boolean | undefined;
26422
+ category?: "FIELD" | undefined;
26423
+ config?: {
26424
+ placeholder?: string | undefined;
26425
+ default_value?: string | undefined;
26426
+ } | undefined;
26427
+ sensitive?: boolean | undefined;
26428
+ label?: string | undefined;
26429
+ order?: number | undefined;
26430
+ visible?: boolean | undefined;
26431
+ hint?: string | undefined;
26432
+ messages?: {
26433
+ type: "info" | "error" | "success" | "warning";
26434
+ text: string;
26435
+ id?: number | undefined;
26436
+ }[] | undefined;
25927
26437
  } | {
25928
26438
  type: "URL";
25929
26439
  id: string;
@@ -26387,6 +26897,25 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
26387
26897
  text: string;
26388
26898
  id?: number | undefined;
26389
26899
  }[] | undefined;
26900
+ } | {
26901
+ type: "COUNTRY";
26902
+ id: string;
26903
+ visible: boolean;
26904
+ required?: boolean | undefined;
26905
+ category?: "FIELD" | undefined;
26906
+ config?: {
26907
+ placeholder?: string | undefined;
26908
+ default_value?: string | undefined;
26909
+ } | undefined;
26910
+ sensitive?: boolean | undefined;
26911
+ label?: string | undefined;
26912
+ order?: number | undefined;
26913
+ hint?: string | undefined;
26914
+ messages?: {
26915
+ type: "info" | "error" | "success" | "warning";
26916
+ text: string;
26917
+ id?: number | undefined;
26918
+ }[] | undefined;
26390
26919
  } | {
26391
26920
  type: "URL";
26392
26921
  id: string;
@@ -26855,6 +27384,25 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
26855
27384
  text: string;
26856
27385
  id?: number | undefined;
26857
27386
  }[] | undefined;
27387
+ } | {
27388
+ type: "COUNTRY";
27389
+ id: string;
27390
+ required?: boolean | undefined;
27391
+ category?: "FIELD" | undefined;
27392
+ config?: {
27393
+ placeholder?: string | undefined;
27394
+ default_value?: string | undefined;
27395
+ } | undefined;
27396
+ sensitive?: boolean | undefined;
27397
+ label?: string | undefined;
27398
+ order?: number | undefined;
27399
+ visible?: boolean | undefined;
27400
+ hint?: string | undefined;
27401
+ messages?: {
27402
+ type: "info" | "error" | "success" | "warning";
27403
+ text: string;
27404
+ id?: number | undefined;
27405
+ }[] | undefined;
26858
27406
  } | {
26859
27407
  type: "URL";
26860
27408
  id: string;
@@ -27808,6 +28356,85 @@ export declare const formInsertSchema: z.ZodObject<{
27808
28356
  id?: number | undefined;
27809
28357
  }[] | undefined;
27810
28358
  }>,
28359
+ z.ZodObject<{
28360
+ id: z.ZodString;
28361
+ order: z.ZodOptional<z.ZodNumber>;
28362
+ visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
28363
+ } & {
28364
+ category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
28365
+ label: z.ZodOptional<z.ZodString>;
28366
+ hint: z.ZodOptional<z.ZodString>;
28367
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
28368
+ id: z.ZodOptional<z.ZodNumber>;
28369
+ text: z.ZodString;
28370
+ type: z.ZodEnum<[
28371
+ "info",
28372
+ "error",
28373
+ "success",
28374
+ "warning"
28375
+ ]>;
28376
+ }, "strip", z.ZodTypeAny, {
28377
+ type: "info" | "error" | "success" | "warning";
28378
+ text: string;
28379
+ id?: number | undefined;
28380
+ }, {
28381
+ type: "info" | "error" | "success" | "warning";
28382
+ text: string;
28383
+ id?: number | undefined;
28384
+ }>, "many">>;
28385
+ required: z.ZodOptional<z.ZodBoolean>;
28386
+ sensitive: z.ZodOptional<z.ZodBoolean>;
28387
+ } & {
28388
+ type: z.ZodLiteral<"COUNTRY">;
28389
+ config: z.ZodOptional<z.ZodObject<{
28390
+ placeholder: z.ZodOptional<z.ZodString>;
28391
+ default_value: z.ZodOptional<z.ZodString>;
28392
+ }, "strip", z.ZodTypeAny, {
28393
+ placeholder?: string | undefined;
28394
+ default_value?: string | undefined;
28395
+ }, {
28396
+ placeholder?: string | undefined;
28397
+ default_value?: string | undefined;
28398
+ }>>;
28399
+ }, "strip", z.ZodTypeAny, {
28400
+ type: "COUNTRY";
28401
+ id: string;
28402
+ visible: boolean;
28403
+ required?: boolean | undefined;
28404
+ category?: "FIELD" | undefined;
28405
+ config?: {
28406
+ placeholder?: string | undefined;
28407
+ default_value?: string | undefined;
28408
+ } | undefined;
28409
+ sensitive?: boolean | undefined;
28410
+ label?: string | undefined;
28411
+ order?: number | undefined;
28412
+ hint?: string | undefined;
28413
+ messages?: {
28414
+ type: "info" | "error" | "success" | "warning";
28415
+ text: string;
28416
+ id?: number | undefined;
28417
+ }[] | undefined;
28418
+ }, {
28419
+ type: "COUNTRY";
28420
+ id: string;
28421
+ required?: boolean | undefined;
28422
+ category?: "FIELD" | undefined;
28423
+ config?: {
28424
+ placeholder?: string | undefined;
28425
+ default_value?: string | undefined;
28426
+ } | undefined;
28427
+ sensitive?: boolean | undefined;
28428
+ label?: string | undefined;
28429
+ order?: number | undefined;
28430
+ visible?: boolean | undefined;
28431
+ hint?: string | undefined;
28432
+ messages?: {
28433
+ type: "info" | "error" | "success" | "warning";
28434
+ text: string;
28435
+ id?: number | undefined;
28436
+ }[] | undefined;
28437
+ }>,
27811
28438
  z.ZodObject<{
27812
28439
  id: z.ZodString;
27813
28440
  order: z.ZodOptional<z.ZodNumber>;
@@ -29432,6 +30059,25 @@ export declare const formInsertSchema: z.ZodObject<{
29432
30059
  text: string;
29433
30060
  id?: number | undefined;
29434
30061
  }[] | undefined;
30062
+ } | {
30063
+ type: "COUNTRY";
30064
+ id: string;
30065
+ visible: boolean;
30066
+ required?: boolean | undefined;
30067
+ category?: "FIELD" | undefined;
30068
+ config?: {
30069
+ placeholder?: string | undefined;
30070
+ default_value?: string | undefined;
30071
+ } | undefined;
30072
+ sensitive?: boolean | undefined;
30073
+ label?: string | undefined;
30074
+ order?: number | undefined;
30075
+ hint?: string | undefined;
30076
+ messages?: {
30077
+ type: "info" | "error" | "success" | "warning";
30078
+ text: string;
30079
+ id?: number | undefined;
30080
+ }[] | undefined;
29435
30081
  } | {
29436
30082
  type: "URL";
29437
30083
  id: string;
@@ -29891,6 +30537,25 @@ export declare const formInsertSchema: z.ZodObject<{
29891
30537
  text: string;
29892
30538
  id?: number | undefined;
29893
30539
  }[] | undefined;
30540
+ } | {
30541
+ type: "COUNTRY";
30542
+ id: string;
30543
+ required?: boolean | undefined;
30544
+ category?: "FIELD" | undefined;
30545
+ config?: {
30546
+ placeholder?: string | undefined;
30547
+ default_value?: string | undefined;
30548
+ } | undefined;
30549
+ sensitive?: boolean | undefined;
30550
+ label?: string | undefined;
30551
+ order?: number | undefined;
30552
+ visible?: boolean | undefined;
30553
+ hint?: string | undefined;
30554
+ messages?: {
30555
+ type: "info" | "error" | "success" | "warning";
30556
+ text: string;
30557
+ id?: number | undefined;
30558
+ }[] | undefined;
29894
30559
  } | {
29895
30560
  type: "URL";
29896
30561
  id: string;
@@ -30354,6 +31019,25 @@ export declare const formInsertSchema: z.ZodObject<{
30354
31019
  text: string;
30355
31020
  id?: number | undefined;
30356
31021
  }[] | undefined;
31022
+ } | {
31023
+ type: "COUNTRY";
31024
+ id: string;
31025
+ visible: boolean;
31026
+ required?: boolean | undefined;
31027
+ category?: "FIELD" | undefined;
31028
+ config?: {
31029
+ placeholder?: string | undefined;
31030
+ default_value?: string | undefined;
31031
+ } | undefined;
31032
+ sensitive?: boolean | undefined;
31033
+ label?: string | undefined;
31034
+ order?: number | undefined;
31035
+ hint?: string | undefined;
31036
+ messages?: {
31037
+ type: "info" | "error" | "success" | "warning";
31038
+ text: string;
31039
+ id?: number | undefined;
31040
+ }[] | undefined;
30357
31041
  } | {
30358
31042
  type: "URL";
30359
31043
  id: string;
@@ -30822,6 +31506,25 @@ export declare const formInsertSchema: z.ZodObject<{
30822
31506
  text: string;
30823
31507
  id?: number | undefined;
30824
31508
  }[] | undefined;
31509
+ } | {
31510
+ type: "COUNTRY";
31511
+ id: string;
31512
+ required?: boolean | undefined;
31513
+ category?: "FIELD" | undefined;
31514
+ config?: {
31515
+ placeholder?: string | undefined;
31516
+ default_value?: string | undefined;
31517
+ } | undefined;
31518
+ sensitive?: boolean | undefined;
31519
+ label?: string | undefined;
31520
+ order?: number | undefined;
31521
+ visible?: boolean | undefined;
31522
+ hint?: string | undefined;
31523
+ messages?: {
31524
+ type: "info" | "error" | "success" | "warning";
31525
+ text: string;
31526
+ id?: number | undefined;
31527
+ }[] | undefined;
30825
31528
  } | {
30826
31529
  type: "URL";
30827
31530
  id: string;
@@ -31457,6 +32160,25 @@ export declare const formInsertSchema: z.ZodObject<{
31457
32160
  text: string;
31458
32161
  id?: number | undefined;
31459
32162
  }[] | undefined;
32163
+ } | {
32164
+ type: "COUNTRY";
32165
+ id: string;
32166
+ visible: boolean;
32167
+ required?: boolean | undefined;
32168
+ category?: "FIELD" | undefined;
32169
+ config?: {
32170
+ placeholder?: string | undefined;
32171
+ default_value?: string | undefined;
32172
+ } | undefined;
32173
+ sensitive?: boolean | undefined;
32174
+ label?: string | undefined;
32175
+ order?: number | undefined;
32176
+ hint?: string | undefined;
32177
+ messages?: {
32178
+ type: "info" | "error" | "success" | "warning";
32179
+ text: string;
32180
+ id?: number | undefined;
32181
+ }[] | undefined;
31460
32182
  } | {
31461
32183
  type: "URL";
31462
32184
  id: string;
@@ -31998,6 +32720,25 @@ export declare const formInsertSchema: z.ZodObject<{
31998
32720
  text: string;
31999
32721
  id?: number | undefined;
32000
32722
  }[] | undefined;
32723
+ } | {
32724
+ type: "COUNTRY";
32725
+ id: string;
32726
+ required?: boolean | undefined;
32727
+ category?: "FIELD" | undefined;
32728
+ config?: {
32729
+ placeholder?: string | undefined;
32730
+ default_value?: string | undefined;
32731
+ } | undefined;
32732
+ sensitive?: boolean | undefined;
32733
+ label?: string | undefined;
32734
+ order?: number | undefined;
32735
+ visible?: boolean | undefined;
32736
+ hint?: string | undefined;
32737
+ messages?: {
32738
+ type: "info" | "error" | "success" | "warning";
32739
+ text: string;
32740
+ id?: number | undefined;
32741
+ }[] | undefined;
32001
32742
  } | {
32002
32743
  type: "URL";
32003
32744
  id: string;
@@ -32972,6 +33713,85 @@ export declare const formSchema: z.ZodObject<{
32972
33713
  id?: number | undefined;
32973
33714
  }[] | undefined;
32974
33715
  }>,
33716
+ z.ZodObject<{
33717
+ id: z.ZodString;
33718
+ order: z.ZodOptional<z.ZodNumber>;
33719
+ visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
33720
+ } & {
33721
+ category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
33722
+ label: z.ZodOptional<z.ZodString>;
33723
+ hint: z.ZodOptional<z.ZodString>;
33724
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
33725
+ id: z.ZodOptional<z.ZodNumber>;
33726
+ text: z.ZodString;
33727
+ type: z.ZodEnum<[
33728
+ "info",
33729
+ "error",
33730
+ "success",
33731
+ "warning"
33732
+ ]>;
33733
+ }, "strip", z.ZodTypeAny, {
33734
+ type: "info" | "error" | "success" | "warning";
33735
+ text: string;
33736
+ id?: number | undefined;
33737
+ }, {
33738
+ type: "info" | "error" | "success" | "warning";
33739
+ text: string;
33740
+ id?: number | undefined;
33741
+ }>, "many">>;
33742
+ required: z.ZodOptional<z.ZodBoolean>;
33743
+ sensitive: z.ZodOptional<z.ZodBoolean>;
33744
+ } & {
33745
+ type: z.ZodLiteral<"COUNTRY">;
33746
+ config: z.ZodOptional<z.ZodObject<{
33747
+ placeholder: z.ZodOptional<z.ZodString>;
33748
+ default_value: z.ZodOptional<z.ZodString>;
33749
+ }, "strip", z.ZodTypeAny, {
33750
+ placeholder?: string | undefined;
33751
+ default_value?: string | undefined;
33752
+ }, {
33753
+ placeholder?: string | undefined;
33754
+ default_value?: string | undefined;
33755
+ }>>;
33756
+ }, "strip", z.ZodTypeAny, {
33757
+ type: "COUNTRY";
33758
+ id: string;
33759
+ visible: boolean;
33760
+ required?: boolean | undefined;
33761
+ category?: "FIELD" | undefined;
33762
+ config?: {
33763
+ placeholder?: string | undefined;
33764
+ default_value?: string | undefined;
33765
+ } | undefined;
33766
+ sensitive?: boolean | undefined;
33767
+ label?: string | undefined;
33768
+ order?: number | undefined;
33769
+ hint?: string | undefined;
33770
+ messages?: {
33771
+ type: "info" | "error" | "success" | "warning";
33772
+ text: string;
33773
+ id?: number | undefined;
33774
+ }[] | undefined;
33775
+ }, {
33776
+ type: "COUNTRY";
33777
+ id: string;
33778
+ required?: boolean | undefined;
33779
+ category?: "FIELD" | undefined;
33780
+ config?: {
33781
+ placeholder?: string | undefined;
33782
+ default_value?: string | undefined;
33783
+ } | undefined;
33784
+ sensitive?: boolean | undefined;
33785
+ label?: string | undefined;
33786
+ order?: number | undefined;
33787
+ visible?: boolean | undefined;
33788
+ hint?: string | undefined;
33789
+ messages?: {
33790
+ type: "info" | "error" | "success" | "warning";
33791
+ text: string;
33792
+ id?: number | undefined;
33793
+ }[] | undefined;
33794
+ }>,
32975
33795
  z.ZodObject<{
32976
33796
  id: z.ZodString;
32977
33797
  order: z.ZodOptional<z.ZodNumber>;
@@ -34596,6 +35416,25 @@ export declare const formSchema: z.ZodObject<{
34596
35416
  text: string;
34597
35417
  id?: number | undefined;
34598
35418
  }[] | undefined;
35419
+ } | {
35420
+ type: "COUNTRY";
35421
+ id: string;
35422
+ visible: boolean;
35423
+ required?: boolean | undefined;
35424
+ category?: "FIELD" | undefined;
35425
+ config?: {
35426
+ placeholder?: string | undefined;
35427
+ default_value?: string | undefined;
35428
+ } | undefined;
35429
+ sensitive?: boolean | undefined;
35430
+ label?: string | undefined;
35431
+ order?: number | undefined;
35432
+ hint?: string | undefined;
35433
+ messages?: {
35434
+ type: "info" | "error" | "success" | "warning";
35435
+ text: string;
35436
+ id?: number | undefined;
35437
+ }[] | undefined;
34599
35438
  } | {
34600
35439
  type: "URL";
34601
35440
  id: string;
@@ -35055,6 +35894,25 @@ export declare const formSchema: z.ZodObject<{
35055
35894
  text: string;
35056
35895
  id?: number | undefined;
35057
35896
  }[] | undefined;
35897
+ } | {
35898
+ type: "COUNTRY";
35899
+ id: string;
35900
+ required?: boolean | undefined;
35901
+ category?: "FIELD" | undefined;
35902
+ config?: {
35903
+ placeholder?: string | undefined;
35904
+ default_value?: string | undefined;
35905
+ } | undefined;
35906
+ sensitive?: boolean | undefined;
35907
+ label?: string | undefined;
35908
+ order?: number | undefined;
35909
+ visible?: boolean | undefined;
35910
+ hint?: string | undefined;
35911
+ messages?: {
35912
+ type: "info" | "error" | "success" | "warning";
35913
+ text: string;
35914
+ id?: number | undefined;
35915
+ }[] | undefined;
35058
35916
  } | {
35059
35917
  type: "URL";
35060
35918
  id: string;
@@ -35518,6 +36376,25 @@ export declare const formSchema: z.ZodObject<{
35518
36376
  text: string;
35519
36377
  id?: number | undefined;
35520
36378
  }[] | undefined;
36379
+ } | {
36380
+ type: "COUNTRY";
36381
+ id: string;
36382
+ visible: boolean;
36383
+ required?: boolean | undefined;
36384
+ category?: "FIELD" | undefined;
36385
+ config?: {
36386
+ placeholder?: string | undefined;
36387
+ default_value?: string | undefined;
36388
+ } | undefined;
36389
+ sensitive?: boolean | undefined;
36390
+ label?: string | undefined;
36391
+ order?: number | undefined;
36392
+ hint?: string | undefined;
36393
+ messages?: {
36394
+ type: "info" | "error" | "success" | "warning";
36395
+ text: string;
36396
+ id?: number | undefined;
36397
+ }[] | undefined;
35521
36398
  } | {
35522
36399
  type: "URL";
35523
36400
  id: string;
@@ -35986,6 +36863,25 @@ export declare const formSchema: z.ZodObject<{
35986
36863
  text: string;
35987
36864
  id?: number | undefined;
35988
36865
  }[] | undefined;
36866
+ } | {
36867
+ type: "COUNTRY";
36868
+ id: string;
36869
+ required?: boolean | undefined;
36870
+ category?: "FIELD" | undefined;
36871
+ config?: {
36872
+ placeholder?: string | undefined;
36873
+ default_value?: string | undefined;
36874
+ } | undefined;
36875
+ sensitive?: boolean | undefined;
36876
+ label?: string | undefined;
36877
+ order?: number | undefined;
36878
+ visible?: boolean | undefined;
36879
+ hint?: string | undefined;
36880
+ messages?: {
36881
+ type: "info" | "error" | "success" | "warning";
36882
+ text: string;
36883
+ id?: number | undefined;
36884
+ }[] | undefined;
35989
36885
  } | {
35990
36886
  type: "URL";
35991
36887
  id: string;
@@ -36626,6 +37522,25 @@ export declare const formSchema: z.ZodObject<{
36626
37522
  text: string;
36627
37523
  id?: number | undefined;
36628
37524
  }[] | undefined;
37525
+ } | {
37526
+ type: "COUNTRY";
37527
+ id: string;
37528
+ visible: boolean;
37529
+ required?: boolean | undefined;
37530
+ category?: "FIELD" | undefined;
37531
+ config?: {
37532
+ placeholder?: string | undefined;
37533
+ default_value?: string | undefined;
37534
+ } | undefined;
37535
+ sensitive?: boolean | undefined;
37536
+ label?: string | undefined;
37537
+ order?: number | undefined;
37538
+ hint?: string | undefined;
37539
+ messages?: {
37540
+ type: "info" | "error" | "success" | "warning";
37541
+ text: string;
37542
+ id?: number | undefined;
37543
+ }[] | undefined;
36629
37544
  } | {
36630
37545
  type: "URL";
36631
37546
  id: string;
@@ -37170,6 +38085,25 @@ export declare const formSchema: z.ZodObject<{
37170
38085
  text: string;
37171
38086
  id?: number | undefined;
37172
38087
  }[] | undefined;
38088
+ } | {
38089
+ type: "COUNTRY";
38090
+ id: string;
38091
+ required?: boolean | undefined;
38092
+ category?: "FIELD" | undefined;
38093
+ config?: {
38094
+ placeholder?: string | undefined;
38095
+ default_value?: string | undefined;
38096
+ } | undefined;
38097
+ sensitive?: boolean | undefined;
38098
+ label?: string | undefined;
38099
+ order?: number | undefined;
38100
+ visible?: boolean | undefined;
38101
+ hint?: string | undefined;
38102
+ messages?: {
38103
+ type: "info" | "error" | "success" | "warning";
38104
+ text: string;
38105
+ id?: number | undefined;
38106
+ }[] | undefined;
37173
38107
  } | {
37174
38108
  type: "URL";
37175
38109
  id: string;
@@ -38031,6 +38965,85 @@ export declare const uiScreenSchema: z.ZodObject<{
38031
38965
  id?: number | undefined;
38032
38966
  }[] | undefined;
38033
38967
  }>,
38968
+ z.ZodObject<{
38969
+ id: z.ZodString;
38970
+ order: z.ZodOptional<z.ZodNumber>;
38971
+ visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
38972
+ } & {
38973
+ category: z.ZodOptional<z.ZodLiteral<"FIELD">>;
38974
+ label: z.ZodOptional<z.ZodString>;
38975
+ hint: z.ZodOptional<z.ZodString>;
38976
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
38977
+ id: z.ZodOptional<z.ZodNumber>;
38978
+ text: z.ZodString;
38979
+ type: z.ZodEnum<[
38980
+ "info",
38981
+ "error",
38982
+ "success",
38983
+ "warning"
38984
+ ]>;
38985
+ }, "strip", z.ZodTypeAny, {
38986
+ type: "info" | "error" | "success" | "warning";
38987
+ text: string;
38988
+ id?: number | undefined;
38989
+ }, {
38990
+ type: "info" | "error" | "success" | "warning";
38991
+ text: string;
38992
+ id?: number | undefined;
38993
+ }>, "many">>;
38994
+ required: z.ZodOptional<z.ZodBoolean>;
38995
+ sensitive: z.ZodOptional<z.ZodBoolean>;
38996
+ } & {
38997
+ type: z.ZodLiteral<"COUNTRY">;
38998
+ config: z.ZodOptional<z.ZodObject<{
38999
+ placeholder: z.ZodOptional<z.ZodString>;
39000
+ default_value: z.ZodOptional<z.ZodString>;
39001
+ }, "strip", z.ZodTypeAny, {
39002
+ placeholder?: string | undefined;
39003
+ default_value?: string | undefined;
39004
+ }, {
39005
+ placeholder?: string | undefined;
39006
+ default_value?: string | undefined;
39007
+ }>>;
39008
+ }, "strip", z.ZodTypeAny, {
39009
+ type: "COUNTRY";
39010
+ id: string;
39011
+ visible: boolean;
39012
+ required?: boolean | undefined;
39013
+ category?: "FIELD" | undefined;
39014
+ config?: {
39015
+ placeholder?: string | undefined;
39016
+ default_value?: string | undefined;
39017
+ } | undefined;
39018
+ sensitive?: boolean | undefined;
39019
+ label?: string | undefined;
39020
+ order?: number | undefined;
39021
+ hint?: string | undefined;
39022
+ messages?: {
39023
+ type: "info" | "error" | "success" | "warning";
39024
+ text: string;
39025
+ id?: number | undefined;
39026
+ }[] | undefined;
39027
+ }, {
39028
+ type: "COUNTRY";
39029
+ id: string;
39030
+ required?: boolean | undefined;
39031
+ category?: "FIELD" | undefined;
39032
+ config?: {
39033
+ placeholder?: string | undefined;
39034
+ default_value?: string | undefined;
39035
+ } | undefined;
39036
+ sensitive?: boolean | undefined;
39037
+ label?: string | undefined;
39038
+ order?: number | undefined;
39039
+ visible?: boolean | undefined;
39040
+ hint?: string | undefined;
39041
+ messages?: {
39042
+ type: "info" | "error" | "success" | "warning";
39043
+ text: string;
39044
+ id?: number | undefined;
39045
+ }[] | undefined;
39046
+ }>,
38034
39047
  z.ZodObject<{
38035
39048
  id: z.ZodString;
38036
39049
  order: z.ZodOptional<z.ZodNumber>;
@@ -39691,6 +40704,25 @@ export declare const uiScreenSchema: z.ZodObject<{
39691
40704
  text: string;
39692
40705
  id?: number | undefined;
39693
40706
  }[] | undefined;
40707
+ } | {
40708
+ type: "COUNTRY";
40709
+ id: string;
40710
+ visible: boolean;
40711
+ required?: boolean | undefined;
40712
+ category?: "FIELD" | undefined;
40713
+ config?: {
40714
+ placeholder?: string | undefined;
40715
+ default_value?: string | undefined;
40716
+ } | undefined;
40717
+ sensitive?: boolean | undefined;
40718
+ label?: string | undefined;
40719
+ order?: number | undefined;
40720
+ hint?: string | undefined;
40721
+ messages?: {
40722
+ type: "info" | "error" | "success" | "warning";
40723
+ text: string;
40724
+ id?: number | undefined;
40725
+ }[] | undefined;
39694
40726
  } | {
39695
40727
  type: "URL";
39696
40728
  id: string;
@@ -40166,6 +41198,25 @@ export declare const uiScreenSchema: z.ZodObject<{
40166
41198
  text: string;
40167
41199
  id?: number | undefined;
40168
41200
  }[] | undefined;
41201
+ } | {
41202
+ type: "COUNTRY";
41203
+ id: string;
41204
+ required?: boolean | undefined;
41205
+ category?: "FIELD" | undefined;
41206
+ config?: {
41207
+ placeholder?: string | undefined;
41208
+ default_value?: string | undefined;
41209
+ } | undefined;
41210
+ sensitive?: boolean | undefined;
41211
+ label?: string | undefined;
41212
+ order?: number | undefined;
41213
+ visible?: boolean | undefined;
41214
+ hint?: string | undefined;
41215
+ messages?: {
41216
+ type: "info" | "error" | "success" | "warning";
41217
+ text: string;
41218
+ id?: number | undefined;
41219
+ }[] | undefined;
40169
41220
  } | {
40170
41221
  type: "URL";
40171
41222
  id: string;
@@ -52582,6 +53633,25 @@ export declare function init(config: AuthHeroConfig): {
52582
53633
  text: string;
52583
53634
  id?: number | undefined | undefined;
52584
53635
  }[] | undefined;
53636
+ } | {
53637
+ type: "COUNTRY";
53638
+ id: string;
53639
+ visible: boolean;
53640
+ required?: boolean | undefined | undefined;
53641
+ category?: "FIELD" | undefined | undefined;
53642
+ config?: {
53643
+ placeholder?: string | undefined | undefined;
53644
+ default_value?: string | undefined | undefined;
53645
+ } | undefined;
53646
+ sensitive?: boolean | undefined | undefined;
53647
+ label?: string | undefined | undefined;
53648
+ order?: number | undefined | undefined;
53649
+ hint?: string | undefined | undefined;
53650
+ messages?: {
53651
+ type: "info" | "error" | "success" | "warning";
53652
+ text: string;
53653
+ id?: number | undefined | undefined;
53654
+ }[] | undefined;
52585
53655
  } | {
52586
53656
  type: "URL";
52587
53657
  id: string;
@@ -53140,6 +54210,25 @@ export declare function init(config: AuthHeroConfig): {
53140
54210
  text: string;
53141
54211
  id?: number | undefined | undefined;
53142
54212
  }[] | undefined;
54213
+ } | {
54214
+ type: "COUNTRY";
54215
+ id: string;
54216
+ visible: boolean;
54217
+ required?: boolean | undefined | undefined;
54218
+ category?: "FIELD" | undefined | undefined;
54219
+ config?: {
54220
+ placeholder?: string | undefined | undefined;
54221
+ default_value?: string | undefined | undefined;
54222
+ } | undefined;
54223
+ sensitive?: boolean | undefined | undefined;
54224
+ label?: string | undefined | undefined;
54225
+ order?: number | undefined | undefined;
54226
+ hint?: string | undefined | undefined;
54227
+ messages?: {
54228
+ type: "info" | "error" | "success" | "warning";
54229
+ text: string;
54230
+ id?: number | undefined | undefined;
54231
+ }[] | undefined;
53143
54232
  } | {
53144
54233
  type: "URL";
53145
54234
  id: string;
@@ -53713,6 +54802,25 @@ export declare function init(config: AuthHeroConfig): {
53713
54802
  text: string;
53714
54803
  id?: number | undefined | undefined;
53715
54804
  }[] | undefined;
54805
+ } | {
54806
+ type: "COUNTRY";
54807
+ id: string;
54808
+ visible: boolean;
54809
+ required?: boolean | undefined | undefined;
54810
+ category?: "FIELD" | undefined | undefined;
54811
+ config?: {
54812
+ placeholder?: string | undefined | undefined;
54813
+ default_value?: string | undefined | undefined;
54814
+ } | undefined;
54815
+ sensitive?: boolean | undefined | undefined;
54816
+ label?: string | undefined | undefined;
54817
+ order?: number | undefined | undefined;
54818
+ hint?: string | undefined | undefined;
54819
+ messages?: {
54820
+ type: "info" | "error" | "success" | "warning";
54821
+ text: string;
54822
+ id?: number | undefined | undefined;
54823
+ }[] | undefined;
53716
54824
  } | {
53717
54825
  type: "URL";
53718
54826
  id: string;
@@ -53824,6 +54932,7 @@ export declare function init(config: AuthHeroConfig): {
53824
54932
  sdkSrc?: string | undefined;
53825
54933
  sdk_src?: string | undefined;
53826
54934
  } | undefined;
54935
+ translations?: Record<string, any> | undefined;
53827
54936
  nodes?: ({
53828
54937
  type: "FLOW";
53829
54938
  id: string;
@@ -54294,6 +55403,25 @@ export declare function init(config: AuthHeroConfig): {
54294
55403
  text: string;
54295
55404
  id?: number | undefined;
54296
55405
  }[] | undefined;
55406
+ } | {
55407
+ type: "COUNTRY";
55408
+ id: string;
55409
+ required?: boolean | undefined;
55410
+ category?: "FIELD" | undefined;
55411
+ config?: {
55412
+ placeholder?: string | undefined;
55413
+ default_value?: string | undefined;
55414
+ } | undefined;
55415
+ sensitive?: boolean | undefined;
55416
+ label?: string | undefined;
55417
+ order?: number | undefined;
55418
+ visible?: boolean | undefined;
55419
+ hint?: string | undefined;
55420
+ messages?: {
55421
+ type: "info" | "error" | "success" | "warning";
55422
+ text: string;
55423
+ id?: number | undefined;
55424
+ }[] | undefined;
54297
55425
  } | {
54298
55426
  type: "URL";
54299
55427
  id: string;
@@ -54344,7 +55472,6 @@ export declare function init(config: AuthHeroConfig): {
54344
55472
  custom?: Record<string, any> | undefined;
54345
55473
  errors?: Record<string, any> | undefined;
54346
55474
  } | undefined;
54347
- translations?: Record<string, any> | undefined;
54348
55475
  };
54349
55476
  };
54350
55477
  output: {
@@ -54844,6 +55971,25 @@ export declare function init(config: AuthHeroConfig): {
54844
55971
  text: string;
54845
55972
  id?: number | undefined | undefined;
54846
55973
  }[] | undefined;
55974
+ } | {
55975
+ type: "COUNTRY";
55976
+ id: string;
55977
+ visible: boolean;
55978
+ required?: boolean | undefined | undefined;
55979
+ category?: "FIELD" | undefined | undefined;
55980
+ config?: {
55981
+ placeholder?: string | undefined | undefined;
55982
+ default_value?: string | undefined | undefined;
55983
+ } | undefined;
55984
+ sensitive?: boolean | undefined | undefined;
55985
+ label?: string | undefined | undefined;
55986
+ order?: number | undefined | undefined;
55987
+ hint?: string | undefined | undefined;
55988
+ messages?: {
55989
+ type: "info" | "error" | "success" | "warning";
55990
+ text: string;
55991
+ id?: number | undefined | undefined;
55992
+ }[] | undefined;
54847
55993
  } | {
54848
55994
  type: "URL";
54849
55995
  id: string;
@@ -54934,6 +56080,7 @@ export declare function init(config: AuthHeroConfig): {
54934
56080
  sdkSrc?: string | undefined;
54935
56081
  sdk_src?: string | undefined;
54936
56082
  } | undefined;
56083
+ translations?: Record<string, any> | undefined;
54937
56084
  nodes?: ({
54938
56085
  type: "FLOW";
54939
56086
  id: string;
@@ -55404,6 +56551,25 @@ export declare function init(config: AuthHeroConfig): {
55404
56551
  text: string;
55405
56552
  id?: number | undefined;
55406
56553
  }[] | undefined;
56554
+ } | {
56555
+ type: "COUNTRY";
56556
+ id: string;
56557
+ required?: boolean | undefined;
56558
+ category?: "FIELD" | undefined;
56559
+ config?: {
56560
+ placeholder?: string | undefined;
56561
+ default_value?: string | undefined;
56562
+ } | undefined;
56563
+ sensitive?: boolean | undefined;
56564
+ label?: string | undefined;
56565
+ order?: number | undefined;
56566
+ visible?: boolean | undefined;
56567
+ hint?: string | undefined;
56568
+ messages?: {
56569
+ type: "info" | "error" | "success" | "warning";
56570
+ text: string;
56571
+ id?: number | undefined;
56572
+ }[] | undefined;
55407
56573
  } | {
55408
56574
  type: "URL";
55409
56575
  id: string;
@@ -55454,7 +56620,6 @@ export declare function init(config: AuthHeroConfig): {
55454
56620
  custom?: Record<string, any> | undefined;
55455
56621
  errors?: Record<string, any> | undefined;
55456
56622
  } | undefined;
55457
- translations?: Record<string, any> | undefined;
55458
56623
  };
55459
56624
  };
55460
56625
  output: {
@@ -55954,6 +57119,25 @@ export declare function init(config: AuthHeroConfig): {
55954
57119
  text: string;
55955
57120
  id?: number | undefined | undefined;
55956
57121
  }[] | undefined;
57122
+ } | {
57123
+ type: "COUNTRY";
57124
+ id: string;
57125
+ visible: boolean;
57126
+ required?: boolean | undefined | undefined;
57127
+ category?: "FIELD" | undefined | undefined;
57128
+ config?: {
57129
+ placeholder?: string | undefined | undefined;
57130
+ default_value?: string | undefined | undefined;
57131
+ } | undefined;
57132
+ sensitive?: boolean | undefined | undefined;
57133
+ label?: string | undefined | undefined;
57134
+ order?: number | undefined | undefined;
57135
+ hint?: string | undefined | undefined;
57136
+ messages?: {
57137
+ type: "info" | "error" | "success" | "warning";
57138
+ text: string;
57139
+ id?: number | undefined | undefined;
57140
+ }[] | undefined;
55957
57141
  } | {
55958
57142
  type: "URL";
55959
57143
  id: string;
@@ -56190,7 +57374,7 @@ export declare function init(config: AuthHeroConfig): {
56190
57374
  };
56191
57375
  };
56192
57376
  output: {
56193
- prompt: "status" | "common" | "organizations" | "mfa" | "login" | "login-id" | "login-password" | "signup" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-sms" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
57377
+ prompt: "status" | "common" | "organizations" | "mfa" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-push" | "mfa-recovery-code" | "mfa-sms" | "mfa-voice" | "mfa-webauthn" | "reset-password" | "signup" | "signup-id" | "signup-password" | "passkeys" | "captcha" | "custom-form";
56194
57378
  language: string;
56195
57379
  }[];
56196
57380
  outputFormat: "json";
@@ -56202,7 +57386,7 @@ export declare function init(config: AuthHeroConfig): {
56202
57386
  $get: {
56203
57387
  input: {
56204
57388
  param: {
56205
- prompt: "status" | "common" | "organizations" | "mfa" | "login" | "login-id" | "login-password" | "signup" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-sms" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
57389
+ prompt: "status" | "common" | "organizations" | "mfa" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-push" | "mfa-recovery-code" | "mfa-sms" | "mfa-voice" | "mfa-webauthn" | "reset-password" | "signup" | "signup-id" | "signup-password" | "passkeys" | "captcha" | "custom-form";
56206
57390
  language: string;
56207
57391
  };
56208
57392
  } & {
@@ -56224,7 +57408,7 @@ export declare function init(config: AuthHeroConfig): {
56224
57408
  $put: {
56225
57409
  input: {
56226
57410
  param: {
56227
- prompt: "status" | "common" | "organizations" | "mfa" | "login" | "login-id" | "login-password" | "signup" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-sms" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
57411
+ prompt: "status" | "common" | "organizations" | "mfa" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-push" | "mfa-recovery-code" | "mfa-sms" | "mfa-voice" | "mfa-webauthn" | "reset-password" | "signup" | "signup-id" | "signup-password" | "passkeys" | "captcha" | "custom-form";
56228
57412
  language: string;
56229
57413
  };
56230
57414
  } & {
@@ -56248,7 +57432,7 @@ export declare function init(config: AuthHeroConfig): {
56248
57432
  $delete: {
56249
57433
  input: {
56250
57434
  param: {
56251
- prompt: "status" | "common" | "organizations" | "mfa" | "login" | "login-id" | "login-password" | "signup" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-sms" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
57435
+ prompt: "status" | "common" | "organizations" | "mfa" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-push" | "mfa-recovery-code" | "mfa-sms" | "mfa-voice" | "mfa-webauthn" | "reset-password" | "signup" | "signup-id" | "signup-password" | "passkeys" | "captcha" | "custom-form";
56252
57436
  language: string;
56253
57437
  };
56254
57438
  } & {