authhero 4.33.0 → 4.34.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/authhero.cjs +58 -58
- package/dist/authhero.d.ts +597 -61
- package/dist/authhero.mjs +7174 -7146
- package/dist/stats.html +1 -1
- package/package.json +4 -4
package/dist/authhero.d.ts
CHANGED
|
@@ -11578,18 +11578,27 @@ declare const choiceField: z.ZodObject<{
|
|
|
11578
11578
|
"radio",
|
|
11579
11579
|
"checkbox"
|
|
11580
11580
|
]>>;
|
|
11581
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
11582
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
11583
|
+
z.ZodString,
|
|
11584
|
+
z.ZodArray<z.ZodString, "many">
|
|
11585
|
+
]>>;
|
|
11581
11586
|
}, "strip", z.ZodTypeAny, {
|
|
11582
11587
|
options?: {
|
|
11583
11588
|
value: string;
|
|
11584
11589
|
label: string;
|
|
11585
11590
|
}[] | undefined;
|
|
11591
|
+
default_value?: string | string[] | undefined;
|
|
11586
11592
|
display?: "radio" | "checkbox" | undefined;
|
|
11593
|
+
multiple?: boolean | undefined;
|
|
11587
11594
|
}, {
|
|
11588
11595
|
options?: {
|
|
11589
11596
|
value: string;
|
|
11590
11597
|
label: string;
|
|
11591
11598
|
}[] | undefined;
|
|
11599
|
+
default_value?: string | string[] | undefined;
|
|
11592
11600
|
display?: "radio" | "checkbox" | undefined;
|
|
11601
|
+
multiple?: boolean | undefined;
|
|
11593
11602
|
}>>;
|
|
11594
11603
|
}, "strip", z.ZodTypeAny, {
|
|
11595
11604
|
type: "CHOICE";
|
|
@@ -11602,7 +11611,9 @@ declare const choiceField: z.ZodObject<{
|
|
|
11602
11611
|
value: string;
|
|
11603
11612
|
label: string;
|
|
11604
11613
|
}[] | undefined;
|
|
11614
|
+
default_value?: string | string[] | undefined;
|
|
11605
11615
|
display?: "radio" | "checkbox" | undefined;
|
|
11616
|
+
multiple?: boolean | undefined;
|
|
11606
11617
|
} | undefined;
|
|
11607
11618
|
sensitive?: boolean | undefined;
|
|
11608
11619
|
label?: string | undefined;
|
|
@@ -11618,7 +11629,9 @@ declare const choiceField: z.ZodObject<{
|
|
|
11618
11629
|
value: string;
|
|
11619
11630
|
label: string;
|
|
11620
11631
|
}[] | undefined;
|
|
11632
|
+
default_value?: string | string[] | undefined;
|
|
11621
11633
|
display?: "radio" | "checkbox" | undefined;
|
|
11634
|
+
multiple?: boolean | undefined;
|
|
11622
11635
|
} | undefined;
|
|
11623
11636
|
sensitive?: boolean | undefined;
|
|
11624
11637
|
label?: string | undefined;
|
|
@@ -11641,10 +11654,16 @@ declare const customField: z.ZodObject<{
|
|
|
11641
11654
|
config: z.ZodObject<{
|
|
11642
11655
|
component: z.ZodOptional<z.ZodString>;
|
|
11643
11656
|
props: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
11657
|
+
schema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
11658
|
+
code: z.ZodOptional<z.ZodString>;
|
|
11644
11659
|
}, "strip", z.ZodTypeAny, {
|
|
11660
|
+
code?: string | undefined;
|
|
11661
|
+
schema?: Record<string, any> | undefined;
|
|
11645
11662
|
component?: string | undefined;
|
|
11646
11663
|
props?: Record<string, any> | undefined;
|
|
11647
11664
|
}, {
|
|
11665
|
+
code?: string | undefined;
|
|
11666
|
+
schema?: Record<string, any> | undefined;
|
|
11648
11667
|
component?: string | undefined;
|
|
11649
11668
|
props?: Record<string, any> | undefined;
|
|
11650
11669
|
}>;
|
|
@@ -11652,6 +11671,8 @@ declare const customField: z.ZodObject<{
|
|
|
11652
11671
|
type: "CUSTOM";
|
|
11653
11672
|
id: string;
|
|
11654
11673
|
config: {
|
|
11674
|
+
code?: string | undefined;
|
|
11675
|
+
schema?: Record<string, any> | undefined;
|
|
11655
11676
|
component?: string | undefined;
|
|
11656
11677
|
props?: Record<string, any> | undefined;
|
|
11657
11678
|
};
|
|
@@ -11666,6 +11687,8 @@ declare const customField: z.ZodObject<{
|
|
|
11666
11687
|
type: "CUSTOM";
|
|
11667
11688
|
id: string;
|
|
11668
11689
|
config: {
|
|
11690
|
+
code?: string | undefined;
|
|
11691
|
+
schema?: Record<string, any> | undefined;
|
|
11669
11692
|
component?: string | undefined;
|
|
11670
11693
|
props?: Record<string, any> | undefined;
|
|
11671
11694
|
};
|
|
@@ -11758,12 +11781,19 @@ declare const dropdownField: z.ZodObject<{
|
|
|
11758
11781
|
}>, "many">>;
|
|
11759
11782
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
11760
11783
|
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
11784
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
11785
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
11786
|
+
z.ZodString,
|
|
11787
|
+
z.ZodArray<z.ZodString, "many">
|
|
11788
|
+
]>>;
|
|
11761
11789
|
}, "strip", z.ZodTypeAny, {
|
|
11762
11790
|
options?: {
|
|
11763
11791
|
value: string;
|
|
11764
11792
|
label: string;
|
|
11765
11793
|
}[] | undefined;
|
|
11766
11794
|
placeholder?: string | undefined;
|
|
11795
|
+
default_value?: string | string[] | undefined;
|
|
11796
|
+
multiple?: boolean | undefined;
|
|
11767
11797
|
searchable?: boolean | undefined;
|
|
11768
11798
|
}, {
|
|
11769
11799
|
options?: {
|
|
@@ -11771,6 +11801,8 @@ declare const dropdownField: z.ZodObject<{
|
|
|
11771
11801
|
label: string;
|
|
11772
11802
|
}[] | undefined;
|
|
11773
11803
|
placeholder?: string | undefined;
|
|
11804
|
+
default_value?: string | string[] | undefined;
|
|
11805
|
+
multiple?: boolean | undefined;
|
|
11774
11806
|
searchable?: boolean | undefined;
|
|
11775
11807
|
}>>;
|
|
11776
11808
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -11785,6 +11817,8 @@ declare const dropdownField: z.ZodObject<{
|
|
|
11785
11817
|
label: string;
|
|
11786
11818
|
}[] | undefined;
|
|
11787
11819
|
placeholder?: string | undefined;
|
|
11820
|
+
default_value?: string | string[] | undefined;
|
|
11821
|
+
multiple?: boolean | undefined;
|
|
11788
11822
|
searchable?: boolean | undefined;
|
|
11789
11823
|
} | undefined;
|
|
11790
11824
|
sensitive?: boolean | undefined;
|
|
@@ -11802,6 +11836,8 @@ declare const dropdownField: z.ZodObject<{
|
|
|
11802
11836
|
label: string;
|
|
11803
11837
|
}[] | undefined;
|
|
11804
11838
|
placeholder?: string | undefined;
|
|
11839
|
+
default_value?: string | string[] | undefined;
|
|
11840
|
+
multiple?: boolean | undefined;
|
|
11805
11841
|
searchable?: boolean | undefined;
|
|
11806
11842
|
} | undefined;
|
|
11807
11843
|
sensitive?: boolean | undefined;
|
|
@@ -11873,13 +11909,13 @@ declare const fileField: z.ZodObject<{
|
|
|
11873
11909
|
max_size: z.ZodOptional<z.ZodNumber>;
|
|
11874
11910
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
11875
11911
|
}, "strip", z.ZodTypeAny, {
|
|
11912
|
+
multiple?: boolean | undefined;
|
|
11876
11913
|
accept?: string | undefined;
|
|
11877
11914
|
max_size?: number | undefined;
|
|
11878
|
-
multiple?: boolean | undefined;
|
|
11879
11915
|
}, {
|
|
11916
|
+
multiple?: boolean | undefined;
|
|
11880
11917
|
accept?: string | undefined;
|
|
11881
11918
|
max_size?: number | undefined;
|
|
11882
|
-
multiple?: boolean | undefined;
|
|
11883
11919
|
}>>;
|
|
11884
11920
|
}, "strip", z.ZodTypeAny, {
|
|
11885
11921
|
type: "FILE";
|
|
@@ -11888,9 +11924,9 @@ declare const fileField: z.ZodObject<{
|
|
|
11888
11924
|
required?: boolean | undefined;
|
|
11889
11925
|
category?: "FIELD" | undefined;
|
|
11890
11926
|
config?: {
|
|
11927
|
+
multiple?: boolean | undefined;
|
|
11891
11928
|
accept?: string | undefined;
|
|
11892
11929
|
max_size?: number | undefined;
|
|
11893
|
-
multiple?: boolean | undefined;
|
|
11894
11930
|
} | undefined;
|
|
11895
11931
|
sensitive?: boolean | undefined;
|
|
11896
11932
|
label?: string | undefined;
|
|
@@ -11902,9 +11938,9 @@ declare const fileField: z.ZodObject<{
|
|
|
11902
11938
|
required?: boolean | undefined;
|
|
11903
11939
|
category?: "FIELD" | undefined;
|
|
11904
11940
|
config?: {
|
|
11941
|
+
multiple?: boolean | undefined;
|
|
11905
11942
|
accept?: string | undefined;
|
|
11906
11943
|
max_size?: number | undefined;
|
|
11907
|
-
multiple?: boolean | undefined;
|
|
11908
11944
|
} | undefined;
|
|
11909
11945
|
sensitive?: boolean | undefined;
|
|
11910
11946
|
label?: string | undefined;
|
|
@@ -12973,18 +13009,27 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
12973
13009
|
"radio",
|
|
12974
13010
|
"checkbox"
|
|
12975
13011
|
]>>;
|
|
13012
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
13013
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
13014
|
+
z.ZodString,
|
|
13015
|
+
z.ZodArray<z.ZodString, "many">
|
|
13016
|
+
]>>;
|
|
12976
13017
|
}, "strip", z.ZodTypeAny, {
|
|
12977
13018
|
options?: {
|
|
12978
13019
|
value: string;
|
|
12979
13020
|
label: string;
|
|
12980
13021
|
}[] | undefined;
|
|
13022
|
+
default_value?: string | string[] | undefined;
|
|
12981
13023
|
display?: "radio" | "checkbox" | undefined;
|
|
13024
|
+
multiple?: boolean | undefined;
|
|
12982
13025
|
}, {
|
|
12983
13026
|
options?: {
|
|
12984
13027
|
value: string;
|
|
12985
13028
|
label: string;
|
|
12986
13029
|
}[] | undefined;
|
|
13030
|
+
default_value?: string | string[] | undefined;
|
|
12987
13031
|
display?: "radio" | "checkbox" | undefined;
|
|
13032
|
+
multiple?: boolean | undefined;
|
|
12988
13033
|
}>>;
|
|
12989
13034
|
}, "strip", z.ZodTypeAny, {
|
|
12990
13035
|
type: "CHOICE";
|
|
@@ -12997,7 +13042,9 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
12997
13042
|
value: string;
|
|
12998
13043
|
label: string;
|
|
12999
13044
|
}[] | undefined;
|
|
13045
|
+
default_value?: string | string[] | undefined;
|
|
13000
13046
|
display?: "radio" | "checkbox" | undefined;
|
|
13047
|
+
multiple?: boolean | undefined;
|
|
13001
13048
|
} | undefined;
|
|
13002
13049
|
sensitive?: boolean | undefined;
|
|
13003
13050
|
label?: string | undefined;
|
|
@@ -13013,7 +13060,9 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
13013
13060
|
value: string;
|
|
13014
13061
|
label: string;
|
|
13015
13062
|
}[] | undefined;
|
|
13063
|
+
default_value?: string | string[] | undefined;
|
|
13016
13064
|
display?: "radio" | "checkbox" | undefined;
|
|
13065
|
+
multiple?: boolean | undefined;
|
|
13017
13066
|
} | undefined;
|
|
13018
13067
|
sensitive?: boolean | undefined;
|
|
13019
13068
|
label?: string | undefined;
|
|
@@ -13036,10 +13085,16 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
13036
13085
|
config: z.ZodObject<{
|
|
13037
13086
|
component: z.ZodOptional<z.ZodString>;
|
|
13038
13087
|
props: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13088
|
+
schema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13089
|
+
code: z.ZodOptional<z.ZodString>;
|
|
13039
13090
|
}, "strip", z.ZodTypeAny, {
|
|
13091
|
+
code?: string | undefined;
|
|
13092
|
+
schema?: Record<string, any> | undefined;
|
|
13040
13093
|
component?: string | undefined;
|
|
13041
13094
|
props?: Record<string, any> | undefined;
|
|
13042
13095
|
}, {
|
|
13096
|
+
code?: string | undefined;
|
|
13097
|
+
schema?: Record<string, any> | undefined;
|
|
13043
13098
|
component?: string | undefined;
|
|
13044
13099
|
props?: Record<string, any> | undefined;
|
|
13045
13100
|
}>;
|
|
@@ -13047,6 +13102,8 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
13047
13102
|
type: "CUSTOM";
|
|
13048
13103
|
id: string;
|
|
13049
13104
|
config: {
|
|
13105
|
+
code?: string | undefined;
|
|
13106
|
+
schema?: Record<string, any> | undefined;
|
|
13050
13107
|
component?: string | undefined;
|
|
13051
13108
|
props?: Record<string, any> | undefined;
|
|
13052
13109
|
};
|
|
@@ -13061,6 +13118,8 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
13061
13118
|
type: "CUSTOM";
|
|
13062
13119
|
id: string;
|
|
13063
13120
|
config: {
|
|
13121
|
+
code?: string | undefined;
|
|
13122
|
+
schema?: Record<string, any> | undefined;
|
|
13064
13123
|
component?: string | undefined;
|
|
13065
13124
|
props?: Record<string, any> | undefined;
|
|
13066
13125
|
};
|
|
@@ -13153,12 +13212,19 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
13153
13212
|
}>, "many">>;
|
|
13154
13213
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
13155
13214
|
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
13215
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
13216
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
13217
|
+
z.ZodString,
|
|
13218
|
+
z.ZodArray<z.ZodString, "many">
|
|
13219
|
+
]>>;
|
|
13156
13220
|
}, "strip", z.ZodTypeAny, {
|
|
13157
13221
|
options?: {
|
|
13158
13222
|
value: string;
|
|
13159
13223
|
label: string;
|
|
13160
13224
|
}[] | undefined;
|
|
13161
13225
|
placeholder?: string | undefined;
|
|
13226
|
+
default_value?: string | string[] | undefined;
|
|
13227
|
+
multiple?: boolean | undefined;
|
|
13162
13228
|
searchable?: boolean | undefined;
|
|
13163
13229
|
}, {
|
|
13164
13230
|
options?: {
|
|
@@ -13166,6 +13232,8 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
13166
13232
|
label: string;
|
|
13167
13233
|
}[] | undefined;
|
|
13168
13234
|
placeholder?: string | undefined;
|
|
13235
|
+
default_value?: string | string[] | undefined;
|
|
13236
|
+
multiple?: boolean | undefined;
|
|
13169
13237
|
searchable?: boolean | undefined;
|
|
13170
13238
|
}>>;
|
|
13171
13239
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -13180,6 +13248,8 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
13180
13248
|
label: string;
|
|
13181
13249
|
}[] | undefined;
|
|
13182
13250
|
placeholder?: string | undefined;
|
|
13251
|
+
default_value?: string | string[] | undefined;
|
|
13252
|
+
multiple?: boolean | undefined;
|
|
13183
13253
|
searchable?: boolean | undefined;
|
|
13184
13254
|
} | undefined;
|
|
13185
13255
|
sensitive?: boolean | undefined;
|
|
@@ -13197,6 +13267,8 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
13197
13267
|
label: string;
|
|
13198
13268
|
}[] | undefined;
|
|
13199
13269
|
placeholder?: string | undefined;
|
|
13270
|
+
default_value?: string | string[] | undefined;
|
|
13271
|
+
multiple?: boolean | undefined;
|
|
13200
13272
|
searchable?: boolean | undefined;
|
|
13201
13273
|
} | undefined;
|
|
13202
13274
|
sensitive?: boolean | undefined;
|
|
@@ -13268,13 +13340,13 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
13268
13340
|
max_size: z.ZodOptional<z.ZodNumber>;
|
|
13269
13341
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
13270
13342
|
}, "strip", z.ZodTypeAny, {
|
|
13343
|
+
multiple?: boolean | undefined;
|
|
13271
13344
|
accept?: string | undefined;
|
|
13272
13345
|
max_size?: number | undefined;
|
|
13273
|
-
multiple?: boolean | undefined;
|
|
13274
13346
|
}, {
|
|
13347
|
+
multiple?: boolean | undefined;
|
|
13275
13348
|
accept?: string | undefined;
|
|
13276
13349
|
max_size?: number | undefined;
|
|
13277
|
-
multiple?: boolean | undefined;
|
|
13278
13350
|
}>>;
|
|
13279
13351
|
}, "strip", z.ZodTypeAny, {
|
|
13280
13352
|
type: "FILE";
|
|
@@ -13283,9 +13355,9 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
13283
13355
|
required?: boolean | undefined;
|
|
13284
13356
|
category?: "FIELD" | undefined;
|
|
13285
13357
|
config?: {
|
|
13358
|
+
multiple?: boolean | undefined;
|
|
13286
13359
|
accept?: string | undefined;
|
|
13287
13360
|
max_size?: number | undefined;
|
|
13288
|
-
multiple?: boolean | undefined;
|
|
13289
13361
|
} | undefined;
|
|
13290
13362
|
sensitive?: boolean | undefined;
|
|
13291
13363
|
label?: string | undefined;
|
|
@@ -13297,9 +13369,9 @@ declare const fieldComponentSchema$1: z.ZodDiscriminatedUnion<"type", [
|
|
|
13297
13369
|
required?: boolean | undefined;
|
|
13298
13370
|
category?: "FIELD" | undefined;
|
|
13299
13371
|
config?: {
|
|
13372
|
+
multiple?: boolean | undefined;
|
|
13300
13373
|
accept?: string | undefined;
|
|
13301
13374
|
max_size?: number | undefined;
|
|
13302
|
-
multiple?: boolean | undefined;
|
|
13303
13375
|
} | undefined;
|
|
13304
13376
|
sensitive?: boolean | undefined;
|
|
13305
13377
|
label?: string | undefined;
|
|
@@ -14364,18 +14436,27 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14364
14436
|
"radio",
|
|
14365
14437
|
"checkbox"
|
|
14366
14438
|
]>>;
|
|
14439
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
14440
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
14441
|
+
z.ZodString,
|
|
14442
|
+
z.ZodArray<z.ZodString, "many">
|
|
14443
|
+
]>>;
|
|
14367
14444
|
}, "strip", z.ZodTypeAny, {
|
|
14368
14445
|
options?: {
|
|
14369
14446
|
value: string;
|
|
14370
14447
|
label: string;
|
|
14371
14448
|
}[] | undefined;
|
|
14449
|
+
default_value?: string | string[] | undefined;
|
|
14372
14450
|
display?: "radio" | "checkbox" | undefined;
|
|
14451
|
+
multiple?: boolean | undefined;
|
|
14373
14452
|
}, {
|
|
14374
14453
|
options?: {
|
|
14375
14454
|
value: string;
|
|
14376
14455
|
label: string;
|
|
14377
14456
|
}[] | undefined;
|
|
14457
|
+
default_value?: string | string[] | undefined;
|
|
14378
14458
|
display?: "radio" | "checkbox" | undefined;
|
|
14459
|
+
multiple?: boolean | undefined;
|
|
14379
14460
|
}>>;
|
|
14380
14461
|
}, "strip", z.ZodTypeAny, {
|
|
14381
14462
|
type: "CHOICE";
|
|
@@ -14388,7 +14469,9 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14388
14469
|
value: string;
|
|
14389
14470
|
label: string;
|
|
14390
14471
|
}[] | undefined;
|
|
14472
|
+
default_value?: string | string[] | undefined;
|
|
14391
14473
|
display?: "radio" | "checkbox" | undefined;
|
|
14474
|
+
multiple?: boolean | undefined;
|
|
14392
14475
|
} | undefined;
|
|
14393
14476
|
sensitive?: boolean | undefined;
|
|
14394
14477
|
label?: string | undefined;
|
|
@@ -14404,7 +14487,9 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14404
14487
|
value: string;
|
|
14405
14488
|
label: string;
|
|
14406
14489
|
}[] | undefined;
|
|
14490
|
+
default_value?: string | string[] | undefined;
|
|
14407
14491
|
display?: "radio" | "checkbox" | undefined;
|
|
14492
|
+
multiple?: boolean | undefined;
|
|
14408
14493
|
} | undefined;
|
|
14409
14494
|
sensitive?: boolean | undefined;
|
|
14410
14495
|
label?: string | undefined;
|
|
@@ -14427,10 +14512,16 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14427
14512
|
config: z.ZodObject<{
|
|
14428
14513
|
component: z.ZodOptional<z.ZodString>;
|
|
14429
14514
|
props: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
14515
|
+
schema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
14516
|
+
code: z.ZodOptional<z.ZodString>;
|
|
14430
14517
|
}, "strip", z.ZodTypeAny, {
|
|
14518
|
+
code?: string | undefined;
|
|
14519
|
+
schema?: Record<string, any> | undefined;
|
|
14431
14520
|
component?: string | undefined;
|
|
14432
14521
|
props?: Record<string, any> | undefined;
|
|
14433
14522
|
}, {
|
|
14523
|
+
code?: string | undefined;
|
|
14524
|
+
schema?: Record<string, any> | undefined;
|
|
14434
14525
|
component?: string | undefined;
|
|
14435
14526
|
props?: Record<string, any> | undefined;
|
|
14436
14527
|
}>;
|
|
@@ -14438,6 +14529,8 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14438
14529
|
type: "CUSTOM";
|
|
14439
14530
|
id: string;
|
|
14440
14531
|
config: {
|
|
14532
|
+
code?: string | undefined;
|
|
14533
|
+
schema?: Record<string, any> | undefined;
|
|
14441
14534
|
component?: string | undefined;
|
|
14442
14535
|
props?: Record<string, any> | undefined;
|
|
14443
14536
|
};
|
|
@@ -14452,6 +14545,8 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14452
14545
|
type: "CUSTOM";
|
|
14453
14546
|
id: string;
|
|
14454
14547
|
config: {
|
|
14548
|
+
code?: string | undefined;
|
|
14549
|
+
schema?: Record<string, any> | undefined;
|
|
14455
14550
|
component?: string | undefined;
|
|
14456
14551
|
props?: Record<string, any> | undefined;
|
|
14457
14552
|
};
|
|
@@ -14544,12 +14639,19 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14544
14639
|
}>, "many">>;
|
|
14545
14640
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
14546
14641
|
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
14642
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
14643
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
14644
|
+
z.ZodString,
|
|
14645
|
+
z.ZodArray<z.ZodString, "many">
|
|
14646
|
+
]>>;
|
|
14547
14647
|
}, "strip", z.ZodTypeAny, {
|
|
14548
14648
|
options?: {
|
|
14549
14649
|
value: string;
|
|
14550
14650
|
label: string;
|
|
14551
14651
|
}[] | undefined;
|
|
14552
14652
|
placeholder?: string | undefined;
|
|
14653
|
+
default_value?: string | string[] | undefined;
|
|
14654
|
+
multiple?: boolean | undefined;
|
|
14553
14655
|
searchable?: boolean | undefined;
|
|
14554
14656
|
}, {
|
|
14555
14657
|
options?: {
|
|
@@ -14557,6 +14659,8 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14557
14659
|
label: string;
|
|
14558
14660
|
}[] | undefined;
|
|
14559
14661
|
placeholder?: string | undefined;
|
|
14662
|
+
default_value?: string | string[] | undefined;
|
|
14663
|
+
multiple?: boolean | undefined;
|
|
14560
14664
|
searchable?: boolean | undefined;
|
|
14561
14665
|
}>>;
|
|
14562
14666
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -14571,6 +14675,8 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14571
14675
|
label: string;
|
|
14572
14676
|
}[] | undefined;
|
|
14573
14677
|
placeholder?: string | undefined;
|
|
14678
|
+
default_value?: string | string[] | undefined;
|
|
14679
|
+
multiple?: boolean | undefined;
|
|
14574
14680
|
searchable?: boolean | undefined;
|
|
14575
14681
|
} | undefined;
|
|
14576
14682
|
sensitive?: boolean | undefined;
|
|
@@ -14588,6 +14694,8 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14588
14694
|
label: string;
|
|
14589
14695
|
}[] | undefined;
|
|
14590
14696
|
placeholder?: string | undefined;
|
|
14697
|
+
default_value?: string | string[] | undefined;
|
|
14698
|
+
multiple?: boolean | undefined;
|
|
14591
14699
|
searchable?: boolean | undefined;
|
|
14592
14700
|
} | undefined;
|
|
14593
14701
|
sensitive?: boolean | undefined;
|
|
@@ -14659,13 +14767,13 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14659
14767
|
max_size: z.ZodOptional<z.ZodNumber>;
|
|
14660
14768
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
14661
14769
|
}, "strip", z.ZodTypeAny, {
|
|
14770
|
+
multiple?: boolean | undefined;
|
|
14662
14771
|
accept?: string | undefined;
|
|
14663
14772
|
max_size?: number | undefined;
|
|
14664
|
-
multiple?: boolean | undefined;
|
|
14665
14773
|
}, {
|
|
14774
|
+
multiple?: boolean | undefined;
|
|
14666
14775
|
accept?: string | undefined;
|
|
14667
14776
|
max_size?: number | undefined;
|
|
14668
|
-
multiple?: boolean | undefined;
|
|
14669
14777
|
}>>;
|
|
14670
14778
|
}, "strip", z.ZodTypeAny, {
|
|
14671
14779
|
type: "FILE";
|
|
@@ -14674,9 +14782,9 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14674
14782
|
required?: boolean | undefined;
|
|
14675
14783
|
category?: "FIELD" | undefined;
|
|
14676
14784
|
config?: {
|
|
14785
|
+
multiple?: boolean | undefined;
|
|
14677
14786
|
accept?: string | undefined;
|
|
14678
14787
|
max_size?: number | undefined;
|
|
14679
|
-
multiple?: boolean | undefined;
|
|
14680
14788
|
} | undefined;
|
|
14681
14789
|
sensitive?: boolean | undefined;
|
|
14682
14790
|
label?: string | undefined;
|
|
@@ -14688,9 +14796,9 @@ export declare const formNodeComponentDefinition: z.ZodUnion<[
|
|
|
14688
14796
|
required?: boolean | undefined;
|
|
14689
14797
|
category?: "FIELD" | undefined;
|
|
14690
14798
|
config?: {
|
|
14799
|
+
multiple?: boolean | undefined;
|
|
14691
14800
|
accept?: string | undefined;
|
|
14692
14801
|
max_size?: number | undefined;
|
|
14693
|
-
multiple?: boolean | undefined;
|
|
14694
14802
|
} | undefined;
|
|
14695
14803
|
sensitive?: boolean | undefined;
|
|
14696
14804
|
label?: string | undefined;
|
|
@@ -15964,18 +16072,27 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
15964
16072
|
"radio",
|
|
15965
16073
|
"checkbox"
|
|
15966
16074
|
]>>;
|
|
16075
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
16076
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
16077
|
+
z.ZodString,
|
|
16078
|
+
z.ZodArray<z.ZodString, "many">
|
|
16079
|
+
]>>;
|
|
15967
16080
|
}, "strip", z.ZodTypeAny, {
|
|
15968
16081
|
options?: {
|
|
15969
16082
|
value: string;
|
|
15970
16083
|
label: string;
|
|
15971
16084
|
}[] | undefined;
|
|
16085
|
+
default_value?: string | string[] | undefined;
|
|
15972
16086
|
display?: "radio" | "checkbox" | undefined;
|
|
16087
|
+
multiple?: boolean | undefined;
|
|
15973
16088
|
}, {
|
|
15974
16089
|
options?: {
|
|
15975
16090
|
value: string;
|
|
15976
16091
|
label: string;
|
|
15977
16092
|
}[] | undefined;
|
|
16093
|
+
default_value?: string | string[] | undefined;
|
|
15978
16094
|
display?: "radio" | "checkbox" | undefined;
|
|
16095
|
+
multiple?: boolean | undefined;
|
|
15979
16096
|
}>>;
|
|
15980
16097
|
}, "strip", z.ZodTypeAny, {
|
|
15981
16098
|
type: "CHOICE";
|
|
@@ -15988,7 +16105,9 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
15988
16105
|
value: string;
|
|
15989
16106
|
label: string;
|
|
15990
16107
|
}[] | undefined;
|
|
16108
|
+
default_value?: string | string[] | undefined;
|
|
15991
16109
|
display?: "radio" | "checkbox" | undefined;
|
|
16110
|
+
multiple?: boolean | undefined;
|
|
15992
16111
|
} | undefined;
|
|
15993
16112
|
sensitive?: boolean | undefined;
|
|
15994
16113
|
label?: string | undefined;
|
|
@@ -16004,7 +16123,9 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16004
16123
|
value: string;
|
|
16005
16124
|
label: string;
|
|
16006
16125
|
}[] | undefined;
|
|
16126
|
+
default_value?: string | string[] | undefined;
|
|
16007
16127
|
display?: "radio" | "checkbox" | undefined;
|
|
16128
|
+
multiple?: boolean | undefined;
|
|
16008
16129
|
} | undefined;
|
|
16009
16130
|
sensitive?: boolean | undefined;
|
|
16010
16131
|
label?: string | undefined;
|
|
@@ -16027,10 +16148,16 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16027
16148
|
config: z.ZodObject<{
|
|
16028
16149
|
component: z.ZodOptional<z.ZodString>;
|
|
16029
16150
|
props: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
16151
|
+
schema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
16152
|
+
code: z.ZodOptional<z.ZodString>;
|
|
16030
16153
|
}, "strip", z.ZodTypeAny, {
|
|
16154
|
+
code?: string | undefined;
|
|
16155
|
+
schema?: Record<string, any> | undefined;
|
|
16031
16156
|
component?: string | undefined;
|
|
16032
16157
|
props?: Record<string, any> | undefined;
|
|
16033
16158
|
}, {
|
|
16159
|
+
code?: string | undefined;
|
|
16160
|
+
schema?: Record<string, any> | undefined;
|
|
16034
16161
|
component?: string | undefined;
|
|
16035
16162
|
props?: Record<string, any> | undefined;
|
|
16036
16163
|
}>;
|
|
@@ -16038,6 +16165,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16038
16165
|
type: "CUSTOM";
|
|
16039
16166
|
id: string;
|
|
16040
16167
|
config: {
|
|
16168
|
+
code?: string | undefined;
|
|
16169
|
+
schema?: Record<string, any> | undefined;
|
|
16041
16170
|
component?: string | undefined;
|
|
16042
16171
|
props?: Record<string, any> | undefined;
|
|
16043
16172
|
};
|
|
@@ -16052,6 +16181,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16052
16181
|
type: "CUSTOM";
|
|
16053
16182
|
id: string;
|
|
16054
16183
|
config: {
|
|
16184
|
+
code?: string | undefined;
|
|
16185
|
+
schema?: Record<string, any> | undefined;
|
|
16055
16186
|
component?: string | undefined;
|
|
16056
16187
|
props?: Record<string, any> | undefined;
|
|
16057
16188
|
};
|
|
@@ -16144,12 +16275,19 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16144
16275
|
}>, "many">>;
|
|
16145
16276
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
16146
16277
|
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
16278
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
16279
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
16280
|
+
z.ZodString,
|
|
16281
|
+
z.ZodArray<z.ZodString, "many">
|
|
16282
|
+
]>>;
|
|
16147
16283
|
}, "strip", z.ZodTypeAny, {
|
|
16148
16284
|
options?: {
|
|
16149
16285
|
value: string;
|
|
16150
16286
|
label: string;
|
|
16151
16287
|
}[] | undefined;
|
|
16152
16288
|
placeholder?: string | undefined;
|
|
16289
|
+
default_value?: string | string[] | undefined;
|
|
16290
|
+
multiple?: boolean | undefined;
|
|
16153
16291
|
searchable?: boolean | undefined;
|
|
16154
16292
|
}, {
|
|
16155
16293
|
options?: {
|
|
@@ -16157,6 +16295,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16157
16295
|
label: string;
|
|
16158
16296
|
}[] | undefined;
|
|
16159
16297
|
placeholder?: string | undefined;
|
|
16298
|
+
default_value?: string | string[] | undefined;
|
|
16299
|
+
multiple?: boolean | undefined;
|
|
16160
16300
|
searchable?: boolean | undefined;
|
|
16161
16301
|
}>>;
|
|
16162
16302
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -16171,6 +16311,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16171
16311
|
label: string;
|
|
16172
16312
|
}[] | undefined;
|
|
16173
16313
|
placeholder?: string | undefined;
|
|
16314
|
+
default_value?: string | string[] | undefined;
|
|
16315
|
+
multiple?: boolean | undefined;
|
|
16174
16316
|
searchable?: boolean | undefined;
|
|
16175
16317
|
} | undefined;
|
|
16176
16318
|
sensitive?: boolean | undefined;
|
|
@@ -16188,6 +16330,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16188
16330
|
label: string;
|
|
16189
16331
|
}[] | undefined;
|
|
16190
16332
|
placeholder?: string | undefined;
|
|
16333
|
+
default_value?: string | string[] | undefined;
|
|
16334
|
+
multiple?: boolean | undefined;
|
|
16191
16335
|
searchable?: boolean | undefined;
|
|
16192
16336
|
} | undefined;
|
|
16193
16337
|
sensitive?: boolean | undefined;
|
|
@@ -16259,13 +16403,13 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16259
16403
|
max_size: z.ZodOptional<z.ZodNumber>;
|
|
16260
16404
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
16261
16405
|
}, "strip", z.ZodTypeAny, {
|
|
16406
|
+
multiple?: boolean | undefined;
|
|
16262
16407
|
accept?: string | undefined;
|
|
16263
16408
|
max_size?: number | undefined;
|
|
16264
|
-
multiple?: boolean | undefined;
|
|
16265
16409
|
}, {
|
|
16410
|
+
multiple?: boolean | undefined;
|
|
16266
16411
|
accept?: string | undefined;
|
|
16267
16412
|
max_size?: number | undefined;
|
|
16268
|
-
multiple?: boolean | undefined;
|
|
16269
16413
|
}>>;
|
|
16270
16414
|
}, "strip", z.ZodTypeAny, {
|
|
16271
16415
|
type: "FILE";
|
|
@@ -16274,9 +16418,9 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16274
16418
|
required?: boolean | undefined;
|
|
16275
16419
|
category?: "FIELD" | undefined;
|
|
16276
16420
|
config?: {
|
|
16421
|
+
multiple?: boolean | undefined;
|
|
16277
16422
|
accept?: string | undefined;
|
|
16278
16423
|
max_size?: number | undefined;
|
|
16279
|
-
multiple?: boolean | undefined;
|
|
16280
16424
|
} | undefined;
|
|
16281
16425
|
sensitive?: boolean | undefined;
|
|
16282
16426
|
label?: string | undefined;
|
|
@@ -16288,9 +16432,9 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16288
16432
|
required?: boolean | undefined;
|
|
16289
16433
|
category?: "FIELD" | undefined;
|
|
16290
16434
|
config?: {
|
|
16435
|
+
multiple?: boolean | undefined;
|
|
16291
16436
|
accept?: string | undefined;
|
|
16292
16437
|
max_size?: number | undefined;
|
|
16293
|
-
multiple?: boolean | undefined;
|
|
16294
16438
|
} | undefined;
|
|
16295
16439
|
sensitive?: boolean | undefined;
|
|
16296
16440
|
label?: string | undefined;
|
|
@@ -16922,7 +17066,9 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16922
17066
|
value: string;
|
|
16923
17067
|
label: string;
|
|
16924
17068
|
}[] | undefined;
|
|
17069
|
+
default_value?: string | string[] | undefined;
|
|
16925
17070
|
display?: "radio" | "checkbox" | undefined;
|
|
17071
|
+
multiple?: boolean | undefined;
|
|
16926
17072
|
} | undefined;
|
|
16927
17073
|
sensitive?: boolean | undefined;
|
|
16928
17074
|
label?: string | undefined;
|
|
@@ -16932,6 +17078,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16932
17078
|
type: "CUSTOM";
|
|
16933
17079
|
id: string;
|
|
16934
17080
|
config: {
|
|
17081
|
+
code?: string | undefined;
|
|
17082
|
+
schema?: Record<string, any> | undefined;
|
|
16935
17083
|
component?: string | undefined;
|
|
16936
17084
|
props?: Record<string, any> | undefined;
|
|
16937
17085
|
};
|
|
@@ -16969,6 +17117,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16969
17117
|
label: string;
|
|
16970
17118
|
}[] | undefined;
|
|
16971
17119
|
placeholder?: string | undefined;
|
|
17120
|
+
default_value?: string | string[] | undefined;
|
|
17121
|
+
multiple?: boolean | undefined;
|
|
16972
17122
|
searchable?: boolean | undefined;
|
|
16973
17123
|
} | undefined;
|
|
16974
17124
|
sensitive?: boolean | undefined;
|
|
@@ -16995,9 +17145,9 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
16995
17145
|
required?: boolean | undefined;
|
|
16996
17146
|
category?: "FIELD" | undefined;
|
|
16997
17147
|
config?: {
|
|
17148
|
+
multiple?: boolean | undefined;
|
|
16998
17149
|
accept?: string | undefined;
|
|
16999
17150
|
max_size?: number | undefined;
|
|
17000
|
-
multiple?: boolean | undefined;
|
|
17001
17151
|
} | undefined;
|
|
17002
17152
|
sensitive?: boolean | undefined;
|
|
17003
17153
|
label?: string | undefined;
|
|
@@ -17283,7 +17433,9 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
17283
17433
|
value: string;
|
|
17284
17434
|
label: string;
|
|
17285
17435
|
}[] | undefined;
|
|
17436
|
+
default_value?: string | string[] | undefined;
|
|
17286
17437
|
display?: "radio" | "checkbox" | undefined;
|
|
17438
|
+
multiple?: boolean | undefined;
|
|
17287
17439
|
} | undefined;
|
|
17288
17440
|
sensitive?: boolean | undefined;
|
|
17289
17441
|
label?: string | undefined;
|
|
@@ -17294,6 +17446,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
17294
17446
|
type: "CUSTOM";
|
|
17295
17447
|
id: string;
|
|
17296
17448
|
config: {
|
|
17449
|
+
code?: string | undefined;
|
|
17450
|
+
schema?: Record<string, any> | undefined;
|
|
17297
17451
|
component?: string | undefined;
|
|
17298
17452
|
props?: Record<string, any> | undefined;
|
|
17299
17453
|
};
|
|
@@ -17330,6 +17484,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
17330
17484
|
label: string;
|
|
17331
17485
|
}[] | undefined;
|
|
17332
17486
|
placeholder?: string | undefined;
|
|
17487
|
+
default_value?: string | string[] | undefined;
|
|
17488
|
+
multiple?: boolean | undefined;
|
|
17333
17489
|
searchable?: boolean | undefined;
|
|
17334
17490
|
} | undefined;
|
|
17335
17491
|
sensitive?: boolean | undefined;
|
|
@@ -17356,9 +17512,9 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
17356
17512
|
required?: boolean | undefined;
|
|
17357
17513
|
category?: "FIELD" | undefined;
|
|
17358
17514
|
config?: {
|
|
17515
|
+
multiple?: boolean | undefined;
|
|
17359
17516
|
accept?: string | undefined;
|
|
17360
17517
|
max_size?: number | undefined;
|
|
17361
|
-
multiple?: boolean | undefined;
|
|
17362
17518
|
} | undefined;
|
|
17363
17519
|
sensitive?: boolean | undefined;
|
|
17364
17520
|
label?: string | undefined;
|
|
@@ -17650,7 +17806,9 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
17650
17806
|
value: string;
|
|
17651
17807
|
label: string;
|
|
17652
17808
|
}[] | undefined;
|
|
17809
|
+
default_value?: string | string[] | undefined;
|
|
17653
17810
|
display?: "radio" | "checkbox" | undefined;
|
|
17811
|
+
multiple?: boolean | undefined;
|
|
17654
17812
|
} | undefined;
|
|
17655
17813
|
sensitive?: boolean | undefined;
|
|
17656
17814
|
label?: string | undefined;
|
|
@@ -17660,6 +17818,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
17660
17818
|
type: "CUSTOM";
|
|
17661
17819
|
id: string;
|
|
17662
17820
|
config: {
|
|
17821
|
+
code?: string | undefined;
|
|
17822
|
+
schema?: Record<string, any> | undefined;
|
|
17663
17823
|
component?: string | undefined;
|
|
17664
17824
|
props?: Record<string, any> | undefined;
|
|
17665
17825
|
};
|
|
@@ -17697,6 +17857,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
17697
17857
|
label: string;
|
|
17698
17858
|
}[] | undefined;
|
|
17699
17859
|
placeholder?: string | undefined;
|
|
17860
|
+
default_value?: string | string[] | undefined;
|
|
17861
|
+
multiple?: boolean | undefined;
|
|
17700
17862
|
searchable?: boolean | undefined;
|
|
17701
17863
|
} | undefined;
|
|
17702
17864
|
sensitive?: boolean | undefined;
|
|
@@ -17723,9 +17885,9 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
17723
17885
|
required?: boolean | undefined;
|
|
17724
17886
|
category?: "FIELD" | undefined;
|
|
17725
17887
|
config?: {
|
|
17888
|
+
multiple?: boolean | undefined;
|
|
17726
17889
|
accept?: string | undefined;
|
|
17727
17890
|
max_size?: number | undefined;
|
|
17728
|
-
multiple?: boolean | undefined;
|
|
17729
17891
|
} | undefined;
|
|
17730
17892
|
sensitive?: boolean | undefined;
|
|
17731
17893
|
label?: string | undefined;
|
|
@@ -18020,7 +18182,9 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
18020
18182
|
value: string;
|
|
18021
18183
|
label: string;
|
|
18022
18184
|
}[] | undefined;
|
|
18185
|
+
default_value?: string | string[] | undefined;
|
|
18023
18186
|
display?: "radio" | "checkbox" | undefined;
|
|
18187
|
+
multiple?: boolean | undefined;
|
|
18024
18188
|
} | undefined;
|
|
18025
18189
|
sensitive?: boolean | undefined;
|
|
18026
18190
|
label?: string | undefined;
|
|
@@ -18031,6 +18195,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
18031
18195
|
type: "CUSTOM";
|
|
18032
18196
|
id: string;
|
|
18033
18197
|
config: {
|
|
18198
|
+
code?: string | undefined;
|
|
18199
|
+
schema?: Record<string, any> | undefined;
|
|
18034
18200
|
component?: string | undefined;
|
|
18035
18201
|
props?: Record<string, any> | undefined;
|
|
18036
18202
|
};
|
|
@@ -18067,6 +18233,8 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
18067
18233
|
label: string;
|
|
18068
18234
|
}[] | undefined;
|
|
18069
18235
|
placeholder?: string | undefined;
|
|
18236
|
+
default_value?: string | string[] | undefined;
|
|
18237
|
+
multiple?: boolean | undefined;
|
|
18070
18238
|
searchable?: boolean | undefined;
|
|
18071
18239
|
} | undefined;
|
|
18072
18240
|
sensitive?: boolean | undefined;
|
|
@@ -18093,9 +18261,9 @@ declare const stepNodeSchema$1: z.ZodObject<{
|
|
|
18093
18261
|
required?: boolean | undefined;
|
|
18094
18262
|
category?: "FIELD" | undefined;
|
|
18095
18263
|
config?: {
|
|
18264
|
+
multiple?: boolean | undefined;
|
|
18096
18265
|
accept?: string | undefined;
|
|
18097
18266
|
max_size?: number | undefined;
|
|
18098
|
-
multiple?: boolean | undefined;
|
|
18099
18267
|
} | undefined;
|
|
18100
18268
|
sensitive?: boolean | undefined;
|
|
18101
18269
|
label?: string | undefined;
|
|
@@ -18971,18 +19139,27 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
18971
19139
|
"radio",
|
|
18972
19140
|
"checkbox"
|
|
18973
19141
|
]>>;
|
|
19142
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
19143
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
19144
|
+
z.ZodString,
|
|
19145
|
+
z.ZodArray<z.ZodString, "many">
|
|
19146
|
+
]>>;
|
|
18974
19147
|
}, "strip", z.ZodTypeAny, {
|
|
18975
19148
|
options?: {
|
|
18976
19149
|
value: string;
|
|
18977
19150
|
label: string;
|
|
18978
19151
|
}[] | undefined;
|
|
19152
|
+
default_value?: string | string[] | undefined;
|
|
18979
19153
|
display?: "radio" | "checkbox" | undefined;
|
|
19154
|
+
multiple?: boolean | undefined;
|
|
18980
19155
|
}, {
|
|
18981
19156
|
options?: {
|
|
18982
19157
|
value: string;
|
|
18983
19158
|
label: string;
|
|
18984
19159
|
}[] | undefined;
|
|
19160
|
+
default_value?: string | string[] | undefined;
|
|
18985
19161
|
display?: "radio" | "checkbox" | undefined;
|
|
19162
|
+
multiple?: boolean | undefined;
|
|
18986
19163
|
}>>;
|
|
18987
19164
|
}, "strip", z.ZodTypeAny, {
|
|
18988
19165
|
type: "CHOICE";
|
|
@@ -18995,7 +19172,9 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
18995
19172
|
value: string;
|
|
18996
19173
|
label: string;
|
|
18997
19174
|
}[] | undefined;
|
|
19175
|
+
default_value?: string | string[] | undefined;
|
|
18998
19176
|
display?: "radio" | "checkbox" | undefined;
|
|
19177
|
+
multiple?: boolean | undefined;
|
|
18999
19178
|
} | undefined;
|
|
19000
19179
|
sensitive?: boolean | undefined;
|
|
19001
19180
|
label?: string | undefined;
|
|
@@ -19011,7 +19190,9 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19011
19190
|
value: string;
|
|
19012
19191
|
label: string;
|
|
19013
19192
|
}[] | undefined;
|
|
19193
|
+
default_value?: string | string[] | undefined;
|
|
19014
19194
|
display?: "radio" | "checkbox" | undefined;
|
|
19195
|
+
multiple?: boolean | undefined;
|
|
19015
19196
|
} | undefined;
|
|
19016
19197
|
sensitive?: boolean | undefined;
|
|
19017
19198
|
label?: string | undefined;
|
|
@@ -19034,10 +19215,16 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19034
19215
|
config: z.ZodObject<{
|
|
19035
19216
|
component: z.ZodOptional<z.ZodString>;
|
|
19036
19217
|
props: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
19218
|
+
schema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
19219
|
+
code: z.ZodOptional<z.ZodString>;
|
|
19037
19220
|
}, "strip", z.ZodTypeAny, {
|
|
19221
|
+
code?: string | undefined;
|
|
19222
|
+
schema?: Record<string, any> | undefined;
|
|
19038
19223
|
component?: string | undefined;
|
|
19039
19224
|
props?: Record<string, any> | undefined;
|
|
19040
19225
|
}, {
|
|
19226
|
+
code?: string | undefined;
|
|
19227
|
+
schema?: Record<string, any> | undefined;
|
|
19041
19228
|
component?: string | undefined;
|
|
19042
19229
|
props?: Record<string, any> | undefined;
|
|
19043
19230
|
}>;
|
|
@@ -19045,6 +19232,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19045
19232
|
type: "CUSTOM";
|
|
19046
19233
|
id: string;
|
|
19047
19234
|
config: {
|
|
19235
|
+
code?: string | undefined;
|
|
19236
|
+
schema?: Record<string, any> | undefined;
|
|
19048
19237
|
component?: string | undefined;
|
|
19049
19238
|
props?: Record<string, any> | undefined;
|
|
19050
19239
|
};
|
|
@@ -19059,6 +19248,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19059
19248
|
type: "CUSTOM";
|
|
19060
19249
|
id: string;
|
|
19061
19250
|
config: {
|
|
19251
|
+
code?: string | undefined;
|
|
19252
|
+
schema?: Record<string, any> | undefined;
|
|
19062
19253
|
component?: string | undefined;
|
|
19063
19254
|
props?: Record<string, any> | undefined;
|
|
19064
19255
|
};
|
|
@@ -19151,12 +19342,19 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19151
19342
|
}>, "many">>;
|
|
19152
19343
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
19153
19344
|
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
19345
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
19346
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
19347
|
+
z.ZodString,
|
|
19348
|
+
z.ZodArray<z.ZodString, "many">
|
|
19349
|
+
]>>;
|
|
19154
19350
|
}, "strip", z.ZodTypeAny, {
|
|
19155
19351
|
options?: {
|
|
19156
19352
|
value: string;
|
|
19157
19353
|
label: string;
|
|
19158
19354
|
}[] | undefined;
|
|
19159
19355
|
placeholder?: string | undefined;
|
|
19356
|
+
default_value?: string | string[] | undefined;
|
|
19357
|
+
multiple?: boolean | undefined;
|
|
19160
19358
|
searchable?: boolean | undefined;
|
|
19161
19359
|
}, {
|
|
19162
19360
|
options?: {
|
|
@@ -19164,6 +19362,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19164
19362
|
label: string;
|
|
19165
19363
|
}[] | undefined;
|
|
19166
19364
|
placeholder?: string | undefined;
|
|
19365
|
+
default_value?: string | string[] | undefined;
|
|
19366
|
+
multiple?: boolean | undefined;
|
|
19167
19367
|
searchable?: boolean | undefined;
|
|
19168
19368
|
}>>;
|
|
19169
19369
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -19178,6 +19378,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19178
19378
|
label: string;
|
|
19179
19379
|
}[] | undefined;
|
|
19180
19380
|
placeholder?: string | undefined;
|
|
19381
|
+
default_value?: string | string[] | undefined;
|
|
19382
|
+
multiple?: boolean | undefined;
|
|
19181
19383
|
searchable?: boolean | undefined;
|
|
19182
19384
|
} | undefined;
|
|
19183
19385
|
sensitive?: boolean | undefined;
|
|
@@ -19195,6 +19397,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19195
19397
|
label: string;
|
|
19196
19398
|
}[] | undefined;
|
|
19197
19399
|
placeholder?: string | undefined;
|
|
19400
|
+
default_value?: string | string[] | undefined;
|
|
19401
|
+
multiple?: boolean | undefined;
|
|
19198
19402
|
searchable?: boolean | undefined;
|
|
19199
19403
|
} | undefined;
|
|
19200
19404
|
sensitive?: boolean | undefined;
|
|
@@ -19266,13 +19470,13 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19266
19470
|
max_size: z.ZodOptional<z.ZodNumber>;
|
|
19267
19471
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
19268
19472
|
}, "strip", z.ZodTypeAny, {
|
|
19473
|
+
multiple?: boolean | undefined;
|
|
19269
19474
|
accept?: string | undefined;
|
|
19270
19475
|
max_size?: number | undefined;
|
|
19271
|
-
multiple?: boolean | undefined;
|
|
19272
19476
|
}, {
|
|
19477
|
+
multiple?: boolean | undefined;
|
|
19273
19478
|
accept?: string | undefined;
|
|
19274
19479
|
max_size?: number | undefined;
|
|
19275
|
-
multiple?: boolean | undefined;
|
|
19276
19480
|
}>>;
|
|
19277
19481
|
}, "strip", z.ZodTypeAny, {
|
|
19278
19482
|
type: "FILE";
|
|
@@ -19281,9 +19485,9 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19281
19485
|
required?: boolean | undefined;
|
|
19282
19486
|
category?: "FIELD" | undefined;
|
|
19283
19487
|
config?: {
|
|
19488
|
+
multiple?: boolean | undefined;
|
|
19284
19489
|
accept?: string | undefined;
|
|
19285
19490
|
max_size?: number | undefined;
|
|
19286
|
-
multiple?: boolean | undefined;
|
|
19287
19491
|
} | undefined;
|
|
19288
19492
|
sensitive?: boolean | undefined;
|
|
19289
19493
|
label?: string | undefined;
|
|
@@ -19295,9 +19499,9 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19295
19499
|
required?: boolean | undefined;
|
|
19296
19500
|
category?: "FIELD" | undefined;
|
|
19297
19501
|
config?: {
|
|
19502
|
+
multiple?: boolean | undefined;
|
|
19298
19503
|
accept?: string | undefined;
|
|
19299
19504
|
max_size?: number | undefined;
|
|
19300
|
-
multiple?: boolean | undefined;
|
|
19301
19505
|
} | undefined;
|
|
19302
19506
|
sensitive?: boolean | undefined;
|
|
19303
19507
|
label?: string | undefined;
|
|
@@ -19929,7 +20133,9 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19929
20133
|
value: string;
|
|
19930
20134
|
label: string;
|
|
19931
20135
|
}[] | undefined;
|
|
20136
|
+
default_value?: string | string[] | undefined;
|
|
19932
20137
|
display?: "radio" | "checkbox" | undefined;
|
|
20138
|
+
multiple?: boolean | undefined;
|
|
19933
20139
|
} | undefined;
|
|
19934
20140
|
sensitive?: boolean | undefined;
|
|
19935
20141
|
label?: string | undefined;
|
|
@@ -19939,6 +20145,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19939
20145
|
type: "CUSTOM";
|
|
19940
20146
|
id: string;
|
|
19941
20147
|
config: {
|
|
20148
|
+
code?: string | undefined;
|
|
20149
|
+
schema?: Record<string, any> | undefined;
|
|
19942
20150
|
component?: string | undefined;
|
|
19943
20151
|
props?: Record<string, any> | undefined;
|
|
19944
20152
|
};
|
|
@@ -19976,6 +20184,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
19976
20184
|
label: string;
|
|
19977
20185
|
}[] | undefined;
|
|
19978
20186
|
placeholder?: string | undefined;
|
|
20187
|
+
default_value?: string | string[] | undefined;
|
|
20188
|
+
multiple?: boolean | undefined;
|
|
19979
20189
|
searchable?: boolean | undefined;
|
|
19980
20190
|
} | undefined;
|
|
19981
20191
|
sensitive?: boolean | undefined;
|
|
@@ -20002,9 +20212,9 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
20002
20212
|
required?: boolean | undefined;
|
|
20003
20213
|
category?: "FIELD" | undefined;
|
|
20004
20214
|
config?: {
|
|
20215
|
+
multiple?: boolean | undefined;
|
|
20005
20216
|
accept?: string | undefined;
|
|
20006
20217
|
max_size?: number | undefined;
|
|
20007
|
-
multiple?: boolean | undefined;
|
|
20008
20218
|
} | undefined;
|
|
20009
20219
|
sensitive?: boolean | undefined;
|
|
20010
20220
|
label?: string | undefined;
|
|
@@ -20290,7 +20500,9 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
20290
20500
|
value: string;
|
|
20291
20501
|
label: string;
|
|
20292
20502
|
}[] | undefined;
|
|
20503
|
+
default_value?: string | string[] | undefined;
|
|
20293
20504
|
display?: "radio" | "checkbox" | undefined;
|
|
20505
|
+
multiple?: boolean | undefined;
|
|
20294
20506
|
} | undefined;
|
|
20295
20507
|
sensitive?: boolean | undefined;
|
|
20296
20508
|
label?: string | undefined;
|
|
@@ -20301,6 +20513,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
20301
20513
|
type: "CUSTOM";
|
|
20302
20514
|
id: string;
|
|
20303
20515
|
config: {
|
|
20516
|
+
code?: string | undefined;
|
|
20517
|
+
schema?: Record<string, any> | undefined;
|
|
20304
20518
|
component?: string | undefined;
|
|
20305
20519
|
props?: Record<string, any> | undefined;
|
|
20306
20520
|
};
|
|
@@ -20337,6 +20551,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
20337
20551
|
label: string;
|
|
20338
20552
|
}[] | undefined;
|
|
20339
20553
|
placeholder?: string | undefined;
|
|
20554
|
+
default_value?: string | string[] | undefined;
|
|
20555
|
+
multiple?: boolean | undefined;
|
|
20340
20556
|
searchable?: boolean | undefined;
|
|
20341
20557
|
} | undefined;
|
|
20342
20558
|
sensitive?: boolean | undefined;
|
|
@@ -20363,9 +20579,9 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
20363
20579
|
required?: boolean | undefined;
|
|
20364
20580
|
category?: "FIELD" | undefined;
|
|
20365
20581
|
config?: {
|
|
20582
|
+
multiple?: boolean | undefined;
|
|
20366
20583
|
accept?: string | undefined;
|
|
20367
20584
|
max_size?: number | undefined;
|
|
20368
|
-
multiple?: boolean | undefined;
|
|
20369
20585
|
} | undefined;
|
|
20370
20586
|
sensitive?: boolean | undefined;
|
|
20371
20587
|
label?: string | undefined;
|
|
@@ -20657,7 +20873,9 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
20657
20873
|
value: string;
|
|
20658
20874
|
label: string;
|
|
20659
20875
|
}[] | undefined;
|
|
20876
|
+
default_value?: string | string[] | undefined;
|
|
20660
20877
|
display?: "radio" | "checkbox" | undefined;
|
|
20878
|
+
multiple?: boolean | undefined;
|
|
20661
20879
|
} | undefined;
|
|
20662
20880
|
sensitive?: boolean | undefined;
|
|
20663
20881
|
label?: string | undefined;
|
|
@@ -20667,6 +20885,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
20667
20885
|
type: "CUSTOM";
|
|
20668
20886
|
id: string;
|
|
20669
20887
|
config: {
|
|
20888
|
+
code?: string | undefined;
|
|
20889
|
+
schema?: Record<string, any> | undefined;
|
|
20670
20890
|
component?: string | undefined;
|
|
20671
20891
|
props?: Record<string, any> | undefined;
|
|
20672
20892
|
};
|
|
@@ -20704,6 +20924,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
20704
20924
|
label: string;
|
|
20705
20925
|
}[] | undefined;
|
|
20706
20926
|
placeholder?: string | undefined;
|
|
20927
|
+
default_value?: string | string[] | undefined;
|
|
20928
|
+
multiple?: boolean | undefined;
|
|
20707
20929
|
searchable?: boolean | undefined;
|
|
20708
20930
|
} | undefined;
|
|
20709
20931
|
sensitive?: boolean | undefined;
|
|
@@ -20730,9 +20952,9 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
20730
20952
|
required?: boolean | undefined;
|
|
20731
20953
|
category?: "FIELD" | undefined;
|
|
20732
20954
|
config?: {
|
|
20955
|
+
multiple?: boolean | undefined;
|
|
20733
20956
|
accept?: string | undefined;
|
|
20734
20957
|
max_size?: number | undefined;
|
|
20735
|
-
multiple?: boolean | undefined;
|
|
20736
20958
|
} | undefined;
|
|
20737
20959
|
sensitive?: boolean | undefined;
|
|
20738
20960
|
label?: string | undefined;
|
|
@@ -21027,7 +21249,9 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
21027
21249
|
value: string;
|
|
21028
21250
|
label: string;
|
|
21029
21251
|
}[] | undefined;
|
|
21252
|
+
default_value?: string | string[] | undefined;
|
|
21030
21253
|
display?: "radio" | "checkbox" | undefined;
|
|
21254
|
+
multiple?: boolean | undefined;
|
|
21031
21255
|
} | undefined;
|
|
21032
21256
|
sensitive?: boolean | undefined;
|
|
21033
21257
|
label?: string | undefined;
|
|
@@ -21038,6 +21262,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
21038
21262
|
type: "CUSTOM";
|
|
21039
21263
|
id: string;
|
|
21040
21264
|
config: {
|
|
21265
|
+
code?: string | undefined;
|
|
21266
|
+
schema?: Record<string, any> | undefined;
|
|
21041
21267
|
component?: string | undefined;
|
|
21042
21268
|
props?: Record<string, any> | undefined;
|
|
21043
21269
|
};
|
|
@@ -21074,6 +21300,8 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
21074
21300
|
label: string;
|
|
21075
21301
|
}[] | undefined;
|
|
21076
21302
|
placeholder?: string | undefined;
|
|
21303
|
+
default_value?: string | string[] | undefined;
|
|
21304
|
+
multiple?: boolean | undefined;
|
|
21077
21305
|
searchable?: boolean | undefined;
|
|
21078
21306
|
} | undefined;
|
|
21079
21307
|
sensitive?: boolean | undefined;
|
|
@@ -21100,9 +21328,9 @@ export declare const formNodeSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
21100
21328
|
required?: boolean | undefined;
|
|
21101
21329
|
category?: "FIELD" | undefined;
|
|
21102
21330
|
config?: {
|
|
21331
|
+
multiple?: boolean | undefined;
|
|
21103
21332
|
accept?: string | undefined;
|
|
21104
21333
|
max_size?: number | undefined;
|
|
21105
|
-
multiple?: boolean | undefined;
|
|
21106
21334
|
} | undefined;
|
|
21107
21335
|
sensitive?: boolean | undefined;
|
|
21108
21336
|
label?: string | undefined;
|
|
@@ -22009,18 +22237,27 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22009
22237
|
"radio",
|
|
22010
22238
|
"checkbox"
|
|
22011
22239
|
]>>;
|
|
22240
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
22241
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
22242
|
+
z.ZodString,
|
|
22243
|
+
z.ZodArray<z.ZodString, "many">
|
|
22244
|
+
]>>;
|
|
22012
22245
|
}, "strip", z.ZodTypeAny, {
|
|
22013
22246
|
options?: {
|
|
22014
22247
|
value: string;
|
|
22015
22248
|
label: string;
|
|
22016
22249
|
}[] | undefined;
|
|
22250
|
+
default_value?: string | string[] | undefined;
|
|
22017
22251
|
display?: "radio" | "checkbox" | undefined;
|
|
22252
|
+
multiple?: boolean | undefined;
|
|
22018
22253
|
}, {
|
|
22019
22254
|
options?: {
|
|
22020
22255
|
value: string;
|
|
22021
22256
|
label: string;
|
|
22022
22257
|
}[] | undefined;
|
|
22258
|
+
default_value?: string | string[] | undefined;
|
|
22023
22259
|
display?: "radio" | "checkbox" | undefined;
|
|
22260
|
+
multiple?: boolean | undefined;
|
|
22024
22261
|
}>>;
|
|
22025
22262
|
}, "strip", z.ZodTypeAny, {
|
|
22026
22263
|
type: "CHOICE";
|
|
@@ -22033,7 +22270,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22033
22270
|
value: string;
|
|
22034
22271
|
label: string;
|
|
22035
22272
|
}[] | undefined;
|
|
22273
|
+
default_value?: string | string[] | undefined;
|
|
22036
22274
|
display?: "radio" | "checkbox" | undefined;
|
|
22275
|
+
multiple?: boolean | undefined;
|
|
22037
22276
|
} | undefined;
|
|
22038
22277
|
sensitive?: boolean | undefined;
|
|
22039
22278
|
label?: string | undefined;
|
|
@@ -22049,7 +22288,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22049
22288
|
value: string;
|
|
22050
22289
|
label: string;
|
|
22051
22290
|
}[] | undefined;
|
|
22291
|
+
default_value?: string | string[] | undefined;
|
|
22052
22292
|
display?: "radio" | "checkbox" | undefined;
|
|
22293
|
+
multiple?: boolean | undefined;
|
|
22053
22294
|
} | undefined;
|
|
22054
22295
|
sensitive?: boolean | undefined;
|
|
22055
22296
|
label?: string | undefined;
|
|
@@ -22072,10 +22313,16 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22072
22313
|
config: z.ZodObject<{
|
|
22073
22314
|
component: z.ZodOptional<z.ZodString>;
|
|
22074
22315
|
props: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
22316
|
+
schema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
22317
|
+
code: z.ZodOptional<z.ZodString>;
|
|
22075
22318
|
}, "strip", z.ZodTypeAny, {
|
|
22319
|
+
code?: string | undefined;
|
|
22320
|
+
schema?: Record<string, any> | undefined;
|
|
22076
22321
|
component?: string | undefined;
|
|
22077
22322
|
props?: Record<string, any> | undefined;
|
|
22078
22323
|
}, {
|
|
22324
|
+
code?: string | undefined;
|
|
22325
|
+
schema?: Record<string, any> | undefined;
|
|
22079
22326
|
component?: string | undefined;
|
|
22080
22327
|
props?: Record<string, any> | undefined;
|
|
22081
22328
|
}>;
|
|
@@ -22083,6 +22330,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22083
22330
|
type: "CUSTOM";
|
|
22084
22331
|
id: string;
|
|
22085
22332
|
config: {
|
|
22333
|
+
code?: string | undefined;
|
|
22334
|
+
schema?: Record<string, any> | undefined;
|
|
22086
22335
|
component?: string | undefined;
|
|
22087
22336
|
props?: Record<string, any> | undefined;
|
|
22088
22337
|
};
|
|
@@ -22097,6 +22346,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22097
22346
|
type: "CUSTOM";
|
|
22098
22347
|
id: string;
|
|
22099
22348
|
config: {
|
|
22349
|
+
code?: string | undefined;
|
|
22350
|
+
schema?: Record<string, any> | undefined;
|
|
22100
22351
|
component?: string | undefined;
|
|
22101
22352
|
props?: Record<string, any> | undefined;
|
|
22102
22353
|
};
|
|
@@ -22189,12 +22440,19 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22189
22440
|
}>, "many">>;
|
|
22190
22441
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
22191
22442
|
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
22443
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
22444
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
22445
|
+
z.ZodString,
|
|
22446
|
+
z.ZodArray<z.ZodString, "many">
|
|
22447
|
+
]>>;
|
|
22192
22448
|
}, "strip", z.ZodTypeAny, {
|
|
22193
22449
|
options?: {
|
|
22194
22450
|
value: string;
|
|
22195
22451
|
label: string;
|
|
22196
22452
|
}[] | undefined;
|
|
22197
22453
|
placeholder?: string | undefined;
|
|
22454
|
+
default_value?: string | string[] | undefined;
|
|
22455
|
+
multiple?: boolean | undefined;
|
|
22198
22456
|
searchable?: boolean | undefined;
|
|
22199
22457
|
}, {
|
|
22200
22458
|
options?: {
|
|
@@ -22202,6 +22460,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22202
22460
|
label: string;
|
|
22203
22461
|
}[] | undefined;
|
|
22204
22462
|
placeholder?: string | undefined;
|
|
22463
|
+
default_value?: string | string[] | undefined;
|
|
22464
|
+
multiple?: boolean | undefined;
|
|
22205
22465
|
searchable?: boolean | undefined;
|
|
22206
22466
|
}>>;
|
|
22207
22467
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -22216,6 +22476,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22216
22476
|
label: string;
|
|
22217
22477
|
}[] | undefined;
|
|
22218
22478
|
placeholder?: string | undefined;
|
|
22479
|
+
default_value?: string | string[] | undefined;
|
|
22480
|
+
multiple?: boolean | undefined;
|
|
22219
22481
|
searchable?: boolean | undefined;
|
|
22220
22482
|
} | undefined;
|
|
22221
22483
|
sensitive?: boolean | undefined;
|
|
@@ -22233,6 +22495,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22233
22495
|
label: string;
|
|
22234
22496
|
}[] | undefined;
|
|
22235
22497
|
placeholder?: string | undefined;
|
|
22498
|
+
default_value?: string | string[] | undefined;
|
|
22499
|
+
multiple?: boolean | undefined;
|
|
22236
22500
|
searchable?: boolean | undefined;
|
|
22237
22501
|
} | undefined;
|
|
22238
22502
|
sensitive?: boolean | undefined;
|
|
@@ -22304,13 +22568,13 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22304
22568
|
max_size: z.ZodOptional<z.ZodNumber>;
|
|
22305
22569
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
22306
22570
|
}, "strip", z.ZodTypeAny, {
|
|
22571
|
+
multiple?: boolean | undefined;
|
|
22307
22572
|
accept?: string | undefined;
|
|
22308
22573
|
max_size?: number | undefined;
|
|
22309
|
-
multiple?: boolean | undefined;
|
|
22310
22574
|
}, {
|
|
22575
|
+
multiple?: boolean | undefined;
|
|
22311
22576
|
accept?: string | undefined;
|
|
22312
22577
|
max_size?: number | undefined;
|
|
22313
|
-
multiple?: boolean | undefined;
|
|
22314
22578
|
}>>;
|
|
22315
22579
|
}, "strip", z.ZodTypeAny, {
|
|
22316
22580
|
type: "FILE";
|
|
@@ -22319,9 +22583,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22319
22583
|
required?: boolean | undefined;
|
|
22320
22584
|
category?: "FIELD" | undefined;
|
|
22321
22585
|
config?: {
|
|
22586
|
+
multiple?: boolean | undefined;
|
|
22322
22587
|
accept?: string | undefined;
|
|
22323
22588
|
max_size?: number | undefined;
|
|
22324
|
-
multiple?: boolean | undefined;
|
|
22325
22589
|
} | undefined;
|
|
22326
22590
|
sensitive?: boolean | undefined;
|
|
22327
22591
|
label?: string | undefined;
|
|
@@ -22333,9 +22597,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22333
22597
|
required?: boolean | undefined;
|
|
22334
22598
|
category?: "FIELD" | undefined;
|
|
22335
22599
|
config?: {
|
|
22600
|
+
multiple?: boolean | undefined;
|
|
22336
22601
|
accept?: string | undefined;
|
|
22337
22602
|
max_size?: number | undefined;
|
|
22338
|
-
multiple?: boolean | undefined;
|
|
22339
22603
|
} | undefined;
|
|
22340
22604
|
sensitive?: boolean | undefined;
|
|
22341
22605
|
label?: string | undefined;
|
|
@@ -22967,7 +23231,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22967
23231
|
value: string;
|
|
22968
23232
|
label: string;
|
|
22969
23233
|
}[] | undefined;
|
|
23234
|
+
default_value?: string | string[] | undefined;
|
|
22970
23235
|
display?: "radio" | "checkbox" | undefined;
|
|
23236
|
+
multiple?: boolean | undefined;
|
|
22971
23237
|
} | undefined;
|
|
22972
23238
|
sensitive?: boolean | undefined;
|
|
22973
23239
|
label?: string | undefined;
|
|
@@ -22977,6 +23243,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
22977
23243
|
type: "CUSTOM";
|
|
22978
23244
|
id: string;
|
|
22979
23245
|
config: {
|
|
23246
|
+
code?: string | undefined;
|
|
23247
|
+
schema?: Record<string, any> | undefined;
|
|
22980
23248
|
component?: string | undefined;
|
|
22981
23249
|
props?: Record<string, any> | undefined;
|
|
22982
23250
|
};
|
|
@@ -23014,6 +23282,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
23014
23282
|
label: string;
|
|
23015
23283
|
}[] | undefined;
|
|
23016
23284
|
placeholder?: string | undefined;
|
|
23285
|
+
default_value?: string | string[] | undefined;
|
|
23286
|
+
multiple?: boolean | undefined;
|
|
23017
23287
|
searchable?: boolean | undefined;
|
|
23018
23288
|
} | undefined;
|
|
23019
23289
|
sensitive?: boolean | undefined;
|
|
@@ -23040,9 +23310,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
23040
23310
|
required?: boolean | undefined;
|
|
23041
23311
|
category?: "FIELD" | undefined;
|
|
23042
23312
|
config?: {
|
|
23313
|
+
multiple?: boolean | undefined;
|
|
23043
23314
|
accept?: string | undefined;
|
|
23044
23315
|
max_size?: number | undefined;
|
|
23045
|
-
multiple?: boolean | undefined;
|
|
23046
23316
|
} | undefined;
|
|
23047
23317
|
sensitive?: boolean | undefined;
|
|
23048
23318
|
label?: string | undefined;
|
|
@@ -23328,7 +23598,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
23328
23598
|
value: string;
|
|
23329
23599
|
label: string;
|
|
23330
23600
|
}[] | undefined;
|
|
23601
|
+
default_value?: string | string[] | undefined;
|
|
23331
23602
|
display?: "radio" | "checkbox" | undefined;
|
|
23603
|
+
multiple?: boolean | undefined;
|
|
23332
23604
|
} | undefined;
|
|
23333
23605
|
sensitive?: boolean | undefined;
|
|
23334
23606
|
label?: string | undefined;
|
|
@@ -23339,6 +23611,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
23339
23611
|
type: "CUSTOM";
|
|
23340
23612
|
id: string;
|
|
23341
23613
|
config: {
|
|
23614
|
+
code?: string | undefined;
|
|
23615
|
+
schema?: Record<string, any> | undefined;
|
|
23342
23616
|
component?: string | undefined;
|
|
23343
23617
|
props?: Record<string, any> | undefined;
|
|
23344
23618
|
};
|
|
@@ -23375,6 +23649,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
23375
23649
|
label: string;
|
|
23376
23650
|
}[] | undefined;
|
|
23377
23651
|
placeholder?: string | undefined;
|
|
23652
|
+
default_value?: string | string[] | undefined;
|
|
23653
|
+
multiple?: boolean | undefined;
|
|
23378
23654
|
searchable?: boolean | undefined;
|
|
23379
23655
|
} | undefined;
|
|
23380
23656
|
sensitive?: boolean | undefined;
|
|
@@ -23401,9 +23677,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
23401
23677
|
required?: boolean | undefined;
|
|
23402
23678
|
category?: "FIELD" | undefined;
|
|
23403
23679
|
config?: {
|
|
23680
|
+
multiple?: boolean | undefined;
|
|
23404
23681
|
accept?: string | undefined;
|
|
23405
23682
|
max_size?: number | undefined;
|
|
23406
|
-
multiple?: boolean | undefined;
|
|
23407
23683
|
} | undefined;
|
|
23408
23684
|
sensitive?: boolean | undefined;
|
|
23409
23685
|
label?: string | undefined;
|
|
@@ -23695,7 +23971,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
23695
23971
|
value: string;
|
|
23696
23972
|
label: string;
|
|
23697
23973
|
}[] | undefined;
|
|
23974
|
+
default_value?: string | string[] | undefined;
|
|
23698
23975
|
display?: "radio" | "checkbox" | undefined;
|
|
23976
|
+
multiple?: boolean | undefined;
|
|
23699
23977
|
} | undefined;
|
|
23700
23978
|
sensitive?: boolean | undefined;
|
|
23701
23979
|
label?: string | undefined;
|
|
@@ -23705,6 +23983,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
23705
23983
|
type: "CUSTOM";
|
|
23706
23984
|
id: string;
|
|
23707
23985
|
config: {
|
|
23986
|
+
code?: string | undefined;
|
|
23987
|
+
schema?: Record<string, any> | undefined;
|
|
23708
23988
|
component?: string | undefined;
|
|
23709
23989
|
props?: Record<string, any> | undefined;
|
|
23710
23990
|
};
|
|
@@ -23742,6 +24022,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
23742
24022
|
label: string;
|
|
23743
24023
|
}[] | undefined;
|
|
23744
24024
|
placeholder?: string | undefined;
|
|
24025
|
+
default_value?: string | string[] | undefined;
|
|
24026
|
+
multiple?: boolean | undefined;
|
|
23745
24027
|
searchable?: boolean | undefined;
|
|
23746
24028
|
} | undefined;
|
|
23747
24029
|
sensitive?: boolean | undefined;
|
|
@@ -23768,9 +24050,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
23768
24050
|
required?: boolean | undefined;
|
|
23769
24051
|
category?: "FIELD" | undefined;
|
|
23770
24052
|
config?: {
|
|
24053
|
+
multiple?: boolean | undefined;
|
|
23771
24054
|
accept?: string | undefined;
|
|
23772
24055
|
max_size?: number | undefined;
|
|
23773
|
-
multiple?: boolean | undefined;
|
|
23774
24056
|
} | undefined;
|
|
23775
24057
|
sensitive?: boolean | undefined;
|
|
23776
24058
|
label?: string | undefined;
|
|
@@ -24065,7 +24347,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
24065
24347
|
value: string;
|
|
24066
24348
|
label: string;
|
|
24067
24349
|
}[] | undefined;
|
|
24350
|
+
default_value?: string | string[] | undefined;
|
|
24068
24351
|
display?: "radio" | "checkbox" | undefined;
|
|
24352
|
+
multiple?: boolean | undefined;
|
|
24069
24353
|
} | undefined;
|
|
24070
24354
|
sensitive?: boolean | undefined;
|
|
24071
24355
|
label?: string | undefined;
|
|
@@ -24076,6 +24360,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
24076
24360
|
type: "CUSTOM";
|
|
24077
24361
|
id: string;
|
|
24078
24362
|
config: {
|
|
24363
|
+
code?: string | undefined;
|
|
24364
|
+
schema?: Record<string, any> | undefined;
|
|
24079
24365
|
component?: string | undefined;
|
|
24080
24366
|
props?: Record<string, any> | undefined;
|
|
24081
24367
|
};
|
|
@@ -24112,6 +24398,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
24112
24398
|
label: string;
|
|
24113
24399
|
}[] | undefined;
|
|
24114
24400
|
placeholder?: string | undefined;
|
|
24401
|
+
default_value?: string | string[] | undefined;
|
|
24402
|
+
multiple?: boolean | undefined;
|
|
24115
24403
|
searchable?: boolean | undefined;
|
|
24116
24404
|
} | undefined;
|
|
24117
24405
|
sensitive?: boolean | undefined;
|
|
@@ -24138,9 +24426,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
24138
24426
|
required?: boolean | undefined;
|
|
24139
24427
|
category?: "FIELD" | undefined;
|
|
24140
24428
|
config?: {
|
|
24429
|
+
multiple?: boolean | undefined;
|
|
24141
24430
|
accept?: string | undefined;
|
|
24142
24431
|
max_size?: number | undefined;
|
|
24143
|
-
multiple?: boolean | undefined;
|
|
24144
24432
|
} | undefined;
|
|
24145
24433
|
sensitive?: boolean | undefined;
|
|
24146
24434
|
label?: string | undefined;
|
|
@@ -24384,6 +24672,16 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
24384
24672
|
}, {
|
|
24385
24673
|
css?: string | undefined;
|
|
24386
24674
|
}>>;
|
|
24675
|
+
links: z.ZodOptional<z.ZodObject<{
|
|
24676
|
+
sdkSrc: z.ZodOptional<z.ZodString>;
|
|
24677
|
+
sdk_src: z.ZodOptional<z.ZodString>;
|
|
24678
|
+
}, "strip", z.ZodTypeAny, {
|
|
24679
|
+
sdkSrc?: string | undefined;
|
|
24680
|
+
sdk_src?: string | undefined;
|
|
24681
|
+
}, {
|
|
24682
|
+
sdkSrc?: string | undefined;
|
|
24683
|
+
sdk_src?: string | undefined;
|
|
24684
|
+
}>>;
|
|
24387
24685
|
}, "strip", z.ZodTypeAny, {
|
|
24388
24686
|
name: string;
|
|
24389
24687
|
style?: {
|
|
@@ -24594,7 +24892,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
24594
24892
|
value: string;
|
|
24595
24893
|
label: string;
|
|
24596
24894
|
}[] | undefined;
|
|
24895
|
+
default_value?: string | string[] | undefined;
|
|
24597
24896
|
display?: "radio" | "checkbox" | undefined;
|
|
24897
|
+
multiple?: boolean | undefined;
|
|
24598
24898
|
} | undefined;
|
|
24599
24899
|
sensitive?: boolean | undefined;
|
|
24600
24900
|
label?: string | undefined;
|
|
@@ -24604,6 +24904,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
24604
24904
|
type: "CUSTOM";
|
|
24605
24905
|
id: string;
|
|
24606
24906
|
config: {
|
|
24907
|
+
code?: string | undefined;
|
|
24908
|
+
schema?: Record<string, any> | undefined;
|
|
24607
24909
|
component?: string | undefined;
|
|
24608
24910
|
props?: Record<string, any> | undefined;
|
|
24609
24911
|
};
|
|
@@ -24641,6 +24943,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
24641
24943
|
label: string;
|
|
24642
24944
|
}[] | undefined;
|
|
24643
24945
|
placeholder?: string | undefined;
|
|
24946
|
+
default_value?: string | string[] | undefined;
|
|
24947
|
+
multiple?: boolean | undefined;
|
|
24644
24948
|
searchable?: boolean | undefined;
|
|
24645
24949
|
} | undefined;
|
|
24646
24950
|
sensitive?: boolean | undefined;
|
|
@@ -24667,9 +24971,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
24667
24971
|
required?: boolean | undefined;
|
|
24668
24972
|
category?: "FIELD" | undefined;
|
|
24669
24973
|
config?: {
|
|
24974
|
+
multiple?: boolean | undefined;
|
|
24670
24975
|
accept?: string | undefined;
|
|
24671
24976
|
max_size?: number | undefined;
|
|
24672
|
-
multiple?: boolean | undefined;
|
|
24673
24977
|
} | undefined;
|
|
24674
24978
|
sensitive?: boolean | undefined;
|
|
24675
24979
|
label?: string | undefined;
|
|
@@ -24819,6 +25123,10 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
24819
25123
|
flow_id?: string | undefined;
|
|
24820
25124
|
} | undefined;
|
|
24821
25125
|
} | undefined;
|
|
25126
|
+
links?: {
|
|
25127
|
+
sdkSrc?: string | undefined;
|
|
25128
|
+
sdk_src?: string | undefined;
|
|
25129
|
+
} | undefined;
|
|
24822
25130
|
messages?: {
|
|
24823
25131
|
custom?: Record<string, any> | undefined;
|
|
24824
25132
|
errors?: Record<string, any> | undefined;
|
|
@@ -25033,7 +25341,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
25033
25341
|
value: string;
|
|
25034
25342
|
label: string;
|
|
25035
25343
|
}[] | undefined;
|
|
25344
|
+
default_value?: string | string[] | undefined;
|
|
25036
25345
|
display?: "radio" | "checkbox" | undefined;
|
|
25346
|
+
multiple?: boolean | undefined;
|
|
25037
25347
|
} | undefined;
|
|
25038
25348
|
sensitive?: boolean | undefined;
|
|
25039
25349
|
label?: string | undefined;
|
|
@@ -25044,6 +25354,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
25044
25354
|
type: "CUSTOM";
|
|
25045
25355
|
id: string;
|
|
25046
25356
|
config: {
|
|
25357
|
+
code?: string | undefined;
|
|
25358
|
+
schema?: Record<string, any> | undefined;
|
|
25047
25359
|
component?: string | undefined;
|
|
25048
25360
|
props?: Record<string, any> | undefined;
|
|
25049
25361
|
};
|
|
@@ -25080,6 +25392,8 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
25080
25392
|
label: string;
|
|
25081
25393
|
}[] | undefined;
|
|
25082
25394
|
placeholder?: string | undefined;
|
|
25395
|
+
default_value?: string | string[] | undefined;
|
|
25396
|
+
multiple?: boolean | undefined;
|
|
25083
25397
|
searchable?: boolean | undefined;
|
|
25084
25398
|
} | undefined;
|
|
25085
25399
|
sensitive?: boolean | undefined;
|
|
@@ -25106,9 +25420,9 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
25106
25420
|
required?: boolean | undefined;
|
|
25107
25421
|
category?: "FIELD" | undefined;
|
|
25108
25422
|
config?: {
|
|
25423
|
+
multiple?: boolean | undefined;
|
|
25109
25424
|
accept?: string | undefined;
|
|
25110
25425
|
max_size?: number | undefined;
|
|
25111
|
-
multiple?: boolean | undefined;
|
|
25112
25426
|
} | undefined;
|
|
25113
25427
|
sensitive?: boolean | undefined;
|
|
25114
25428
|
label?: string | undefined;
|
|
@@ -25259,6 +25573,10 @@ export declare const formInsertSchema: z.ZodObject<{
|
|
|
25259
25573
|
flow_id?: string | undefined;
|
|
25260
25574
|
} | undefined;
|
|
25261
25575
|
} | undefined;
|
|
25576
|
+
links?: {
|
|
25577
|
+
sdkSrc?: string | undefined;
|
|
25578
|
+
sdk_src?: string | undefined;
|
|
25579
|
+
} | undefined;
|
|
25262
25580
|
messages?: {
|
|
25263
25581
|
custom?: Record<string, any> | undefined;
|
|
25264
25582
|
errors?: Record<string, any> | undefined;
|
|
@@ -26032,18 +26350,27 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26032
26350
|
"radio",
|
|
26033
26351
|
"checkbox"
|
|
26034
26352
|
]>>;
|
|
26353
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
26354
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
26355
|
+
z.ZodString,
|
|
26356
|
+
z.ZodArray<z.ZodString, "many">
|
|
26357
|
+
]>>;
|
|
26035
26358
|
}, "strip", z.ZodTypeAny, {
|
|
26036
26359
|
options?: {
|
|
26037
26360
|
value: string;
|
|
26038
26361
|
label: string;
|
|
26039
26362
|
}[] | undefined;
|
|
26363
|
+
default_value?: string | string[] | undefined;
|
|
26040
26364
|
display?: "radio" | "checkbox" | undefined;
|
|
26365
|
+
multiple?: boolean | undefined;
|
|
26041
26366
|
}, {
|
|
26042
26367
|
options?: {
|
|
26043
26368
|
value: string;
|
|
26044
26369
|
label: string;
|
|
26045
26370
|
}[] | undefined;
|
|
26371
|
+
default_value?: string | string[] | undefined;
|
|
26046
26372
|
display?: "radio" | "checkbox" | undefined;
|
|
26373
|
+
multiple?: boolean | undefined;
|
|
26047
26374
|
}>>;
|
|
26048
26375
|
}, "strip", z.ZodTypeAny, {
|
|
26049
26376
|
type: "CHOICE";
|
|
@@ -26056,7 +26383,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26056
26383
|
value: string;
|
|
26057
26384
|
label: string;
|
|
26058
26385
|
}[] | undefined;
|
|
26386
|
+
default_value?: string | string[] | undefined;
|
|
26059
26387
|
display?: "radio" | "checkbox" | undefined;
|
|
26388
|
+
multiple?: boolean | undefined;
|
|
26060
26389
|
} | undefined;
|
|
26061
26390
|
sensitive?: boolean | undefined;
|
|
26062
26391
|
label?: string | undefined;
|
|
@@ -26072,7 +26401,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26072
26401
|
value: string;
|
|
26073
26402
|
label: string;
|
|
26074
26403
|
}[] | undefined;
|
|
26404
|
+
default_value?: string | string[] | undefined;
|
|
26075
26405
|
display?: "radio" | "checkbox" | undefined;
|
|
26406
|
+
multiple?: boolean | undefined;
|
|
26076
26407
|
} | undefined;
|
|
26077
26408
|
sensitive?: boolean | undefined;
|
|
26078
26409
|
label?: string | undefined;
|
|
@@ -26095,10 +26426,16 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26095
26426
|
config: z.ZodObject<{
|
|
26096
26427
|
component: z.ZodOptional<z.ZodString>;
|
|
26097
26428
|
props: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
26429
|
+
schema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
26430
|
+
code: z.ZodOptional<z.ZodString>;
|
|
26098
26431
|
}, "strip", z.ZodTypeAny, {
|
|
26432
|
+
code?: string | undefined;
|
|
26433
|
+
schema?: Record<string, any> | undefined;
|
|
26099
26434
|
component?: string | undefined;
|
|
26100
26435
|
props?: Record<string, any> | undefined;
|
|
26101
26436
|
}, {
|
|
26437
|
+
code?: string | undefined;
|
|
26438
|
+
schema?: Record<string, any> | undefined;
|
|
26102
26439
|
component?: string | undefined;
|
|
26103
26440
|
props?: Record<string, any> | undefined;
|
|
26104
26441
|
}>;
|
|
@@ -26106,6 +26443,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26106
26443
|
type: "CUSTOM";
|
|
26107
26444
|
id: string;
|
|
26108
26445
|
config: {
|
|
26446
|
+
code?: string | undefined;
|
|
26447
|
+
schema?: Record<string, any> | undefined;
|
|
26109
26448
|
component?: string | undefined;
|
|
26110
26449
|
props?: Record<string, any> | undefined;
|
|
26111
26450
|
};
|
|
@@ -26120,6 +26459,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26120
26459
|
type: "CUSTOM";
|
|
26121
26460
|
id: string;
|
|
26122
26461
|
config: {
|
|
26462
|
+
code?: string | undefined;
|
|
26463
|
+
schema?: Record<string, any> | undefined;
|
|
26123
26464
|
component?: string | undefined;
|
|
26124
26465
|
props?: Record<string, any> | undefined;
|
|
26125
26466
|
};
|
|
@@ -26212,12 +26553,19 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26212
26553
|
}>, "many">>;
|
|
26213
26554
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
26214
26555
|
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
26556
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
26557
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
26558
|
+
z.ZodString,
|
|
26559
|
+
z.ZodArray<z.ZodString, "many">
|
|
26560
|
+
]>>;
|
|
26215
26561
|
}, "strip", z.ZodTypeAny, {
|
|
26216
26562
|
options?: {
|
|
26217
26563
|
value: string;
|
|
26218
26564
|
label: string;
|
|
26219
26565
|
}[] | undefined;
|
|
26220
26566
|
placeholder?: string | undefined;
|
|
26567
|
+
default_value?: string | string[] | undefined;
|
|
26568
|
+
multiple?: boolean | undefined;
|
|
26221
26569
|
searchable?: boolean | undefined;
|
|
26222
26570
|
}, {
|
|
26223
26571
|
options?: {
|
|
@@ -26225,6 +26573,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26225
26573
|
label: string;
|
|
26226
26574
|
}[] | undefined;
|
|
26227
26575
|
placeholder?: string | undefined;
|
|
26576
|
+
default_value?: string | string[] | undefined;
|
|
26577
|
+
multiple?: boolean | undefined;
|
|
26228
26578
|
searchable?: boolean | undefined;
|
|
26229
26579
|
}>>;
|
|
26230
26580
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -26239,6 +26589,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26239
26589
|
label: string;
|
|
26240
26590
|
}[] | undefined;
|
|
26241
26591
|
placeholder?: string | undefined;
|
|
26592
|
+
default_value?: string | string[] | undefined;
|
|
26593
|
+
multiple?: boolean | undefined;
|
|
26242
26594
|
searchable?: boolean | undefined;
|
|
26243
26595
|
} | undefined;
|
|
26244
26596
|
sensitive?: boolean | undefined;
|
|
@@ -26256,6 +26608,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26256
26608
|
label: string;
|
|
26257
26609
|
}[] | undefined;
|
|
26258
26610
|
placeholder?: string | undefined;
|
|
26611
|
+
default_value?: string | string[] | undefined;
|
|
26612
|
+
multiple?: boolean | undefined;
|
|
26259
26613
|
searchable?: boolean | undefined;
|
|
26260
26614
|
} | undefined;
|
|
26261
26615
|
sensitive?: boolean | undefined;
|
|
@@ -26327,13 +26681,13 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26327
26681
|
max_size: z.ZodOptional<z.ZodNumber>;
|
|
26328
26682
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
26329
26683
|
}, "strip", z.ZodTypeAny, {
|
|
26684
|
+
multiple?: boolean | undefined;
|
|
26330
26685
|
accept?: string | undefined;
|
|
26331
26686
|
max_size?: number | undefined;
|
|
26332
|
-
multiple?: boolean | undefined;
|
|
26333
26687
|
}, {
|
|
26688
|
+
multiple?: boolean | undefined;
|
|
26334
26689
|
accept?: string | undefined;
|
|
26335
26690
|
max_size?: number | undefined;
|
|
26336
|
-
multiple?: boolean | undefined;
|
|
26337
26691
|
}>>;
|
|
26338
26692
|
}, "strip", z.ZodTypeAny, {
|
|
26339
26693
|
type: "FILE";
|
|
@@ -26342,9 +26696,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26342
26696
|
required?: boolean | undefined;
|
|
26343
26697
|
category?: "FIELD" | undefined;
|
|
26344
26698
|
config?: {
|
|
26699
|
+
multiple?: boolean | undefined;
|
|
26345
26700
|
accept?: string | undefined;
|
|
26346
26701
|
max_size?: number | undefined;
|
|
26347
|
-
multiple?: boolean | undefined;
|
|
26348
26702
|
} | undefined;
|
|
26349
26703
|
sensitive?: boolean | undefined;
|
|
26350
26704
|
label?: string | undefined;
|
|
@@ -26356,9 +26710,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26356
26710
|
required?: boolean | undefined;
|
|
26357
26711
|
category?: "FIELD" | undefined;
|
|
26358
26712
|
config?: {
|
|
26713
|
+
multiple?: boolean | undefined;
|
|
26359
26714
|
accept?: string | undefined;
|
|
26360
26715
|
max_size?: number | undefined;
|
|
26361
|
-
multiple?: boolean | undefined;
|
|
26362
26716
|
} | undefined;
|
|
26363
26717
|
sensitive?: boolean | undefined;
|
|
26364
26718
|
label?: string | undefined;
|
|
@@ -26990,7 +27344,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
26990
27344
|
value: string;
|
|
26991
27345
|
label: string;
|
|
26992
27346
|
}[] | undefined;
|
|
27347
|
+
default_value?: string | string[] | undefined;
|
|
26993
27348
|
display?: "radio" | "checkbox" | undefined;
|
|
27349
|
+
multiple?: boolean | undefined;
|
|
26994
27350
|
} | undefined;
|
|
26995
27351
|
sensitive?: boolean | undefined;
|
|
26996
27352
|
label?: string | undefined;
|
|
@@ -27000,6 +27356,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
27000
27356
|
type: "CUSTOM";
|
|
27001
27357
|
id: string;
|
|
27002
27358
|
config: {
|
|
27359
|
+
code?: string | undefined;
|
|
27360
|
+
schema?: Record<string, any> | undefined;
|
|
27003
27361
|
component?: string | undefined;
|
|
27004
27362
|
props?: Record<string, any> | undefined;
|
|
27005
27363
|
};
|
|
@@ -27037,6 +27395,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
27037
27395
|
label: string;
|
|
27038
27396
|
}[] | undefined;
|
|
27039
27397
|
placeholder?: string | undefined;
|
|
27398
|
+
default_value?: string | string[] | undefined;
|
|
27399
|
+
multiple?: boolean | undefined;
|
|
27040
27400
|
searchable?: boolean | undefined;
|
|
27041
27401
|
} | undefined;
|
|
27042
27402
|
sensitive?: boolean | undefined;
|
|
@@ -27063,9 +27423,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
27063
27423
|
required?: boolean | undefined;
|
|
27064
27424
|
category?: "FIELD" | undefined;
|
|
27065
27425
|
config?: {
|
|
27426
|
+
multiple?: boolean | undefined;
|
|
27066
27427
|
accept?: string | undefined;
|
|
27067
27428
|
max_size?: number | undefined;
|
|
27068
|
-
multiple?: boolean | undefined;
|
|
27069
27429
|
} | undefined;
|
|
27070
27430
|
sensitive?: boolean | undefined;
|
|
27071
27431
|
label?: string | undefined;
|
|
@@ -27351,7 +27711,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
27351
27711
|
value: string;
|
|
27352
27712
|
label: string;
|
|
27353
27713
|
}[] | undefined;
|
|
27714
|
+
default_value?: string | string[] | undefined;
|
|
27354
27715
|
display?: "radio" | "checkbox" | undefined;
|
|
27716
|
+
multiple?: boolean | undefined;
|
|
27355
27717
|
} | undefined;
|
|
27356
27718
|
sensitive?: boolean | undefined;
|
|
27357
27719
|
label?: string | undefined;
|
|
@@ -27362,6 +27724,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
27362
27724
|
type: "CUSTOM";
|
|
27363
27725
|
id: string;
|
|
27364
27726
|
config: {
|
|
27727
|
+
code?: string | undefined;
|
|
27728
|
+
schema?: Record<string, any> | undefined;
|
|
27365
27729
|
component?: string | undefined;
|
|
27366
27730
|
props?: Record<string, any> | undefined;
|
|
27367
27731
|
};
|
|
@@ -27398,6 +27762,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
27398
27762
|
label: string;
|
|
27399
27763
|
}[] | undefined;
|
|
27400
27764
|
placeholder?: string | undefined;
|
|
27765
|
+
default_value?: string | string[] | undefined;
|
|
27766
|
+
multiple?: boolean | undefined;
|
|
27401
27767
|
searchable?: boolean | undefined;
|
|
27402
27768
|
} | undefined;
|
|
27403
27769
|
sensitive?: boolean | undefined;
|
|
@@ -27424,9 +27790,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
27424
27790
|
required?: boolean | undefined;
|
|
27425
27791
|
category?: "FIELD" | undefined;
|
|
27426
27792
|
config?: {
|
|
27793
|
+
multiple?: boolean | undefined;
|
|
27427
27794
|
accept?: string | undefined;
|
|
27428
27795
|
max_size?: number | undefined;
|
|
27429
|
-
multiple?: boolean | undefined;
|
|
27430
27796
|
} | undefined;
|
|
27431
27797
|
sensitive?: boolean | undefined;
|
|
27432
27798
|
label?: string | undefined;
|
|
@@ -27718,7 +28084,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
27718
28084
|
value: string;
|
|
27719
28085
|
label: string;
|
|
27720
28086
|
}[] | undefined;
|
|
28087
|
+
default_value?: string | string[] | undefined;
|
|
27721
28088
|
display?: "radio" | "checkbox" | undefined;
|
|
28089
|
+
multiple?: boolean | undefined;
|
|
27722
28090
|
} | undefined;
|
|
27723
28091
|
sensitive?: boolean | undefined;
|
|
27724
28092
|
label?: string | undefined;
|
|
@@ -27728,6 +28096,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
27728
28096
|
type: "CUSTOM";
|
|
27729
28097
|
id: string;
|
|
27730
28098
|
config: {
|
|
28099
|
+
code?: string | undefined;
|
|
28100
|
+
schema?: Record<string, any> | undefined;
|
|
27731
28101
|
component?: string | undefined;
|
|
27732
28102
|
props?: Record<string, any> | undefined;
|
|
27733
28103
|
};
|
|
@@ -27765,6 +28135,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
27765
28135
|
label: string;
|
|
27766
28136
|
}[] | undefined;
|
|
27767
28137
|
placeholder?: string | undefined;
|
|
28138
|
+
default_value?: string | string[] | undefined;
|
|
28139
|
+
multiple?: boolean | undefined;
|
|
27768
28140
|
searchable?: boolean | undefined;
|
|
27769
28141
|
} | undefined;
|
|
27770
28142
|
sensitive?: boolean | undefined;
|
|
@@ -27791,9 +28163,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
27791
28163
|
required?: boolean | undefined;
|
|
27792
28164
|
category?: "FIELD" | undefined;
|
|
27793
28165
|
config?: {
|
|
28166
|
+
multiple?: boolean | undefined;
|
|
27794
28167
|
accept?: string | undefined;
|
|
27795
28168
|
max_size?: number | undefined;
|
|
27796
|
-
multiple?: boolean | undefined;
|
|
27797
28169
|
} | undefined;
|
|
27798
28170
|
sensitive?: boolean | undefined;
|
|
27799
28171
|
label?: string | undefined;
|
|
@@ -28088,7 +28460,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
28088
28460
|
value: string;
|
|
28089
28461
|
label: string;
|
|
28090
28462
|
}[] | undefined;
|
|
28463
|
+
default_value?: string | string[] | undefined;
|
|
28091
28464
|
display?: "radio" | "checkbox" | undefined;
|
|
28465
|
+
multiple?: boolean | undefined;
|
|
28092
28466
|
} | undefined;
|
|
28093
28467
|
sensitive?: boolean | undefined;
|
|
28094
28468
|
label?: string | undefined;
|
|
@@ -28099,6 +28473,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
28099
28473
|
type: "CUSTOM";
|
|
28100
28474
|
id: string;
|
|
28101
28475
|
config: {
|
|
28476
|
+
code?: string | undefined;
|
|
28477
|
+
schema?: Record<string, any> | undefined;
|
|
28102
28478
|
component?: string | undefined;
|
|
28103
28479
|
props?: Record<string, any> | undefined;
|
|
28104
28480
|
};
|
|
@@ -28135,6 +28511,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
28135
28511
|
label: string;
|
|
28136
28512
|
}[] | undefined;
|
|
28137
28513
|
placeholder?: string | undefined;
|
|
28514
|
+
default_value?: string | string[] | undefined;
|
|
28515
|
+
multiple?: boolean | undefined;
|
|
28138
28516
|
searchable?: boolean | undefined;
|
|
28139
28517
|
} | undefined;
|
|
28140
28518
|
sensitive?: boolean | undefined;
|
|
@@ -28161,9 +28539,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
28161
28539
|
required?: boolean | undefined;
|
|
28162
28540
|
category?: "FIELD" | undefined;
|
|
28163
28541
|
config?: {
|
|
28542
|
+
multiple?: boolean | undefined;
|
|
28164
28543
|
accept?: string | undefined;
|
|
28165
28544
|
max_size?: number | undefined;
|
|
28166
|
-
multiple?: boolean | undefined;
|
|
28167
28545
|
} | undefined;
|
|
28168
28546
|
sensitive?: boolean | undefined;
|
|
28169
28547
|
label?: string | undefined;
|
|
@@ -28407,6 +28785,16 @@ export declare const formSchema: z.ZodObject<{
|
|
|
28407
28785
|
}, {
|
|
28408
28786
|
css?: string | undefined;
|
|
28409
28787
|
}>>;
|
|
28788
|
+
links: z.ZodOptional<z.ZodObject<{
|
|
28789
|
+
sdkSrc: z.ZodOptional<z.ZodString>;
|
|
28790
|
+
sdk_src: z.ZodOptional<z.ZodString>;
|
|
28791
|
+
}, "strip", z.ZodTypeAny, {
|
|
28792
|
+
sdkSrc?: string | undefined;
|
|
28793
|
+
sdk_src?: string | undefined;
|
|
28794
|
+
}, {
|
|
28795
|
+
sdkSrc?: string | undefined;
|
|
28796
|
+
sdk_src?: string | undefined;
|
|
28797
|
+
}>>;
|
|
28410
28798
|
created_at: z.ZodString;
|
|
28411
28799
|
updated_at: z.ZodString;
|
|
28412
28800
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -28622,7 +29010,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
28622
29010
|
value: string;
|
|
28623
29011
|
label: string;
|
|
28624
29012
|
}[] | undefined;
|
|
29013
|
+
default_value?: string | string[] | undefined;
|
|
28625
29014
|
display?: "radio" | "checkbox" | undefined;
|
|
29015
|
+
multiple?: boolean | undefined;
|
|
28626
29016
|
} | undefined;
|
|
28627
29017
|
sensitive?: boolean | undefined;
|
|
28628
29018
|
label?: string | undefined;
|
|
@@ -28632,6 +29022,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
28632
29022
|
type: "CUSTOM";
|
|
28633
29023
|
id: string;
|
|
28634
29024
|
config: {
|
|
29025
|
+
code?: string | undefined;
|
|
29026
|
+
schema?: Record<string, any> | undefined;
|
|
28635
29027
|
component?: string | undefined;
|
|
28636
29028
|
props?: Record<string, any> | undefined;
|
|
28637
29029
|
};
|
|
@@ -28669,6 +29061,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
28669
29061
|
label: string;
|
|
28670
29062
|
}[] | undefined;
|
|
28671
29063
|
placeholder?: string | undefined;
|
|
29064
|
+
default_value?: string | string[] | undefined;
|
|
29065
|
+
multiple?: boolean | undefined;
|
|
28672
29066
|
searchable?: boolean | undefined;
|
|
28673
29067
|
} | undefined;
|
|
28674
29068
|
sensitive?: boolean | undefined;
|
|
@@ -28695,9 +29089,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
28695
29089
|
required?: boolean | undefined;
|
|
28696
29090
|
category?: "FIELD" | undefined;
|
|
28697
29091
|
config?: {
|
|
29092
|
+
multiple?: boolean | undefined;
|
|
28698
29093
|
accept?: string | undefined;
|
|
28699
29094
|
max_size?: number | undefined;
|
|
28700
|
-
multiple?: boolean | undefined;
|
|
28701
29095
|
} | undefined;
|
|
28702
29096
|
sensitive?: boolean | undefined;
|
|
28703
29097
|
label?: string | undefined;
|
|
@@ -28847,6 +29241,10 @@ export declare const formSchema: z.ZodObject<{
|
|
|
28847
29241
|
flow_id?: string | undefined;
|
|
28848
29242
|
} | undefined;
|
|
28849
29243
|
} | undefined;
|
|
29244
|
+
links?: {
|
|
29245
|
+
sdkSrc?: string | undefined;
|
|
29246
|
+
sdk_src?: string | undefined;
|
|
29247
|
+
} | undefined;
|
|
28850
29248
|
messages?: {
|
|
28851
29249
|
custom?: Record<string, any> | undefined;
|
|
28852
29250
|
errors?: Record<string, any> | undefined;
|
|
@@ -29064,7 +29462,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
29064
29462
|
value: string;
|
|
29065
29463
|
label: string;
|
|
29066
29464
|
}[] | undefined;
|
|
29465
|
+
default_value?: string | string[] | undefined;
|
|
29067
29466
|
display?: "radio" | "checkbox" | undefined;
|
|
29467
|
+
multiple?: boolean | undefined;
|
|
29068
29468
|
} | undefined;
|
|
29069
29469
|
sensitive?: boolean | undefined;
|
|
29070
29470
|
label?: string | undefined;
|
|
@@ -29075,6 +29475,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
29075
29475
|
type: "CUSTOM";
|
|
29076
29476
|
id: string;
|
|
29077
29477
|
config: {
|
|
29478
|
+
code?: string | undefined;
|
|
29479
|
+
schema?: Record<string, any> | undefined;
|
|
29078
29480
|
component?: string | undefined;
|
|
29079
29481
|
props?: Record<string, any> | undefined;
|
|
29080
29482
|
};
|
|
@@ -29111,6 +29513,8 @@ export declare const formSchema: z.ZodObject<{
|
|
|
29111
29513
|
label: string;
|
|
29112
29514
|
}[] | undefined;
|
|
29113
29515
|
placeholder?: string | undefined;
|
|
29516
|
+
default_value?: string | string[] | undefined;
|
|
29517
|
+
multiple?: boolean | undefined;
|
|
29114
29518
|
searchable?: boolean | undefined;
|
|
29115
29519
|
} | undefined;
|
|
29116
29520
|
sensitive?: boolean | undefined;
|
|
@@ -29137,9 +29541,9 @@ export declare const formSchema: z.ZodObject<{
|
|
|
29137
29541
|
required?: boolean | undefined;
|
|
29138
29542
|
category?: "FIELD" | undefined;
|
|
29139
29543
|
config?: {
|
|
29544
|
+
multiple?: boolean | undefined;
|
|
29140
29545
|
accept?: string | undefined;
|
|
29141
29546
|
max_size?: number | undefined;
|
|
29142
|
-
multiple?: boolean | undefined;
|
|
29143
29547
|
} | undefined;
|
|
29144
29548
|
sensitive?: boolean | undefined;
|
|
29145
29549
|
label?: string | undefined;
|
|
@@ -29290,6 +29694,10 @@ export declare const formSchema: z.ZodObject<{
|
|
|
29290
29694
|
flow_id?: string | undefined;
|
|
29291
29695
|
} | undefined;
|
|
29292
29696
|
} | undefined;
|
|
29697
|
+
links?: {
|
|
29698
|
+
sdkSrc?: string | undefined;
|
|
29699
|
+
sdk_src?: string | undefined;
|
|
29700
|
+
} | undefined;
|
|
29293
29701
|
messages?: {
|
|
29294
29702
|
custom?: Record<string, any> | undefined;
|
|
29295
29703
|
errors?: Record<string, any> | undefined;
|
|
@@ -29950,18 +30358,27 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
29950
30358
|
"radio",
|
|
29951
30359
|
"checkbox"
|
|
29952
30360
|
]>>;
|
|
30361
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
30362
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
30363
|
+
z.ZodString,
|
|
30364
|
+
z.ZodArray<z.ZodString, "many">
|
|
30365
|
+
]>>;
|
|
29953
30366
|
}, "strip", z.ZodTypeAny, {
|
|
29954
30367
|
options?: {
|
|
29955
30368
|
value: string;
|
|
29956
30369
|
label: string;
|
|
29957
30370
|
}[] | undefined;
|
|
30371
|
+
default_value?: string | string[] | undefined;
|
|
29958
30372
|
display?: "radio" | "checkbox" | undefined;
|
|
30373
|
+
multiple?: boolean | undefined;
|
|
29959
30374
|
}, {
|
|
29960
30375
|
options?: {
|
|
29961
30376
|
value: string;
|
|
29962
30377
|
label: string;
|
|
29963
30378
|
}[] | undefined;
|
|
30379
|
+
default_value?: string | string[] | undefined;
|
|
29964
30380
|
display?: "radio" | "checkbox" | undefined;
|
|
30381
|
+
multiple?: boolean | undefined;
|
|
29965
30382
|
}>>;
|
|
29966
30383
|
}, "strip", z.ZodTypeAny, {
|
|
29967
30384
|
type: "CHOICE";
|
|
@@ -29974,7 +30391,9 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
29974
30391
|
value: string;
|
|
29975
30392
|
label: string;
|
|
29976
30393
|
}[] | undefined;
|
|
30394
|
+
default_value?: string | string[] | undefined;
|
|
29977
30395
|
display?: "radio" | "checkbox" | undefined;
|
|
30396
|
+
multiple?: boolean | undefined;
|
|
29978
30397
|
} | undefined;
|
|
29979
30398
|
sensitive?: boolean | undefined;
|
|
29980
30399
|
label?: string | undefined;
|
|
@@ -29990,7 +30409,9 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
29990
30409
|
value: string;
|
|
29991
30410
|
label: string;
|
|
29992
30411
|
}[] | undefined;
|
|
30412
|
+
default_value?: string | string[] | undefined;
|
|
29993
30413
|
display?: "radio" | "checkbox" | undefined;
|
|
30414
|
+
multiple?: boolean | undefined;
|
|
29994
30415
|
} | undefined;
|
|
29995
30416
|
sensitive?: boolean | undefined;
|
|
29996
30417
|
label?: string | undefined;
|
|
@@ -30013,10 +30434,16 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30013
30434
|
config: z.ZodObject<{
|
|
30014
30435
|
component: z.ZodOptional<z.ZodString>;
|
|
30015
30436
|
props: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
30437
|
+
schema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
30438
|
+
code: z.ZodOptional<z.ZodString>;
|
|
30016
30439
|
}, "strip", z.ZodTypeAny, {
|
|
30440
|
+
code?: string | undefined;
|
|
30441
|
+
schema?: Record<string, any> | undefined;
|
|
30017
30442
|
component?: string | undefined;
|
|
30018
30443
|
props?: Record<string, any> | undefined;
|
|
30019
30444
|
}, {
|
|
30445
|
+
code?: string | undefined;
|
|
30446
|
+
schema?: Record<string, any> | undefined;
|
|
30020
30447
|
component?: string | undefined;
|
|
30021
30448
|
props?: Record<string, any> | undefined;
|
|
30022
30449
|
}>;
|
|
@@ -30024,6 +30451,8 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30024
30451
|
type: "CUSTOM";
|
|
30025
30452
|
id: string;
|
|
30026
30453
|
config: {
|
|
30454
|
+
code?: string | undefined;
|
|
30455
|
+
schema?: Record<string, any> | undefined;
|
|
30027
30456
|
component?: string | undefined;
|
|
30028
30457
|
props?: Record<string, any> | undefined;
|
|
30029
30458
|
};
|
|
@@ -30038,6 +30467,8 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30038
30467
|
type: "CUSTOM";
|
|
30039
30468
|
id: string;
|
|
30040
30469
|
config: {
|
|
30470
|
+
code?: string | undefined;
|
|
30471
|
+
schema?: Record<string, any> | undefined;
|
|
30041
30472
|
component?: string | undefined;
|
|
30042
30473
|
props?: Record<string, any> | undefined;
|
|
30043
30474
|
};
|
|
@@ -30130,12 +30561,19 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30130
30561
|
}>, "many">>;
|
|
30131
30562
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
30132
30563
|
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
30564
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
30565
|
+
default_value: z.ZodOptional<z.ZodUnion<[
|
|
30566
|
+
z.ZodString,
|
|
30567
|
+
z.ZodArray<z.ZodString, "many">
|
|
30568
|
+
]>>;
|
|
30133
30569
|
}, "strip", z.ZodTypeAny, {
|
|
30134
30570
|
options?: {
|
|
30135
30571
|
value: string;
|
|
30136
30572
|
label: string;
|
|
30137
30573
|
}[] | undefined;
|
|
30138
30574
|
placeholder?: string | undefined;
|
|
30575
|
+
default_value?: string | string[] | undefined;
|
|
30576
|
+
multiple?: boolean | undefined;
|
|
30139
30577
|
searchable?: boolean | undefined;
|
|
30140
30578
|
}, {
|
|
30141
30579
|
options?: {
|
|
@@ -30143,6 +30581,8 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30143
30581
|
label: string;
|
|
30144
30582
|
}[] | undefined;
|
|
30145
30583
|
placeholder?: string | undefined;
|
|
30584
|
+
default_value?: string | string[] | undefined;
|
|
30585
|
+
multiple?: boolean | undefined;
|
|
30146
30586
|
searchable?: boolean | undefined;
|
|
30147
30587
|
}>>;
|
|
30148
30588
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -30157,6 +30597,8 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30157
30597
|
label: string;
|
|
30158
30598
|
}[] | undefined;
|
|
30159
30599
|
placeholder?: string | undefined;
|
|
30600
|
+
default_value?: string | string[] | undefined;
|
|
30601
|
+
multiple?: boolean | undefined;
|
|
30160
30602
|
searchable?: boolean | undefined;
|
|
30161
30603
|
} | undefined;
|
|
30162
30604
|
sensitive?: boolean | undefined;
|
|
@@ -30174,6 +30616,8 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30174
30616
|
label: string;
|
|
30175
30617
|
}[] | undefined;
|
|
30176
30618
|
placeholder?: string | undefined;
|
|
30619
|
+
default_value?: string | string[] | undefined;
|
|
30620
|
+
multiple?: boolean | undefined;
|
|
30177
30621
|
searchable?: boolean | undefined;
|
|
30178
30622
|
} | undefined;
|
|
30179
30623
|
sensitive?: boolean | undefined;
|
|
@@ -30245,13 +30689,13 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30245
30689
|
max_size: z.ZodOptional<z.ZodNumber>;
|
|
30246
30690
|
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
30247
30691
|
}, "strip", z.ZodTypeAny, {
|
|
30692
|
+
multiple?: boolean | undefined;
|
|
30248
30693
|
accept?: string | undefined;
|
|
30249
30694
|
max_size?: number | undefined;
|
|
30250
|
-
multiple?: boolean | undefined;
|
|
30251
30695
|
}, {
|
|
30696
|
+
multiple?: boolean | undefined;
|
|
30252
30697
|
accept?: string | undefined;
|
|
30253
30698
|
max_size?: number | undefined;
|
|
30254
|
-
multiple?: boolean | undefined;
|
|
30255
30699
|
}>>;
|
|
30256
30700
|
}, "strip", z.ZodTypeAny, {
|
|
30257
30701
|
type: "FILE";
|
|
@@ -30260,9 +30704,9 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30260
30704
|
required?: boolean | undefined;
|
|
30261
30705
|
category?: "FIELD" | undefined;
|
|
30262
30706
|
config?: {
|
|
30707
|
+
multiple?: boolean | undefined;
|
|
30263
30708
|
accept?: string | undefined;
|
|
30264
30709
|
max_size?: number | undefined;
|
|
30265
|
-
multiple?: boolean | undefined;
|
|
30266
30710
|
} | undefined;
|
|
30267
30711
|
sensitive?: boolean | undefined;
|
|
30268
30712
|
label?: string | undefined;
|
|
@@ -30274,9 +30718,9 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30274
30718
|
required?: boolean | undefined;
|
|
30275
30719
|
category?: "FIELD" | undefined;
|
|
30276
30720
|
config?: {
|
|
30721
|
+
multiple?: boolean | undefined;
|
|
30277
30722
|
accept?: string | undefined;
|
|
30278
30723
|
max_size?: number | undefined;
|
|
30279
|
-
multiple?: boolean | undefined;
|
|
30280
30724
|
} | undefined;
|
|
30281
30725
|
sensitive?: boolean | undefined;
|
|
30282
30726
|
label?: string | undefined;
|
|
@@ -30944,7 +31388,9 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30944
31388
|
value: string;
|
|
30945
31389
|
label: string;
|
|
30946
31390
|
}[] | undefined;
|
|
31391
|
+
default_value?: string | string[] | undefined;
|
|
30947
31392
|
display?: "radio" | "checkbox" | undefined;
|
|
31393
|
+
multiple?: boolean | undefined;
|
|
30948
31394
|
} | undefined;
|
|
30949
31395
|
sensitive?: boolean | undefined;
|
|
30950
31396
|
label?: string | undefined;
|
|
@@ -30954,6 +31400,8 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30954
31400
|
type: "CUSTOM";
|
|
30955
31401
|
id: string;
|
|
30956
31402
|
config: {
|
|
31403
|
+
code?: string | undefined;
|
|
31404
|
+
schema?: Record<string, any> | undefined;
|
|
30957
31405
|
component?: string | undefined;
|
|
30958
31406
|
props?: Record<string, any> | undefined;
|
|
30959
31407
|
};
|
|
@@ -30991,6 +31439,8 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
30991
31439
|
label: string;
|
|
30992
31440
|
}[] | undefined;
|
|
30993
31441
|
placeholder?: string | undefined;
|
|
31442
|
+
default_value?: string | string[] | undefined;
|
|
31443
|
+
multiple?: boolean | undefined;
|
|
30994
31444
|
searchable?: boolean | undefined;
|
|
30995
31445
|
} | undefined;
|
|
30996
31446
|
sensitive?: boolean | undefined;
|
|
@@ -31017,9 +31467,9 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
31017
31467
|
required?: boolean | undefined;
|
|
31018
31468
|
category?: "FIELD" | undefined;
|
|
31019
31469
|
config?: {
|
|
31470
|
+
multiple?: boolean | undefined;
|
|
31020
31471
|
accept?: string | undefined;
|
|
31021
31472
|
max_size?: number | undefined;
|
|
31022
|
-
multiple?: boolean | undefined;
|
|
31023
31473
|
} | undefined;
|
|
31024
31474
|
sensitive?: boolean | undefined;
|
|
31025
31475
|
label?: string | undefined;
|
|
@@ -31321,7 +31771,9 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
31321
31771
|
value: string;
|
|
31322
31772
|
label: string;
|
|
31323
31773
|
}[] | undefined;
|
|
31774
|
+
default_value?: string | string[] | undefined;
|
|
31324
31775
|
display?: "radio" | "checkbox" | undefined;
|
|
31776
|
+
multiple?: boolean | undefined;
|
|
31325
31777
|
} | undefined;
|
|
31326
31778
|
sensitive?: boolean | undefined;
|
|
31327
31779
|
label?: string | undefined;
|
|
@@ -31332,6 +31784,8 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
31332
31784
|
type: "CUSTOM";
|
|
31333
31785
|
id: string;
|
|
31334
31786
|
config: {
|
|
31787
|
+
code?: string | undefined;
|
|
31788
|
+
schema?: Record<string, any> | undefined;
|
|
31335
31789
|
component?: string | undefined;
|
|
31336
31790
|
props?: Record<string, any> | undefined;
|
|
31337
31791
|
};
|
|
@@ -31368,6 +31822,8 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
31368
31822
|
label: string;
|
|
31369
31823
|
}[] | undefined;
|
|
31370
31824
|
placeholder?: string | undefined;
|
|
31825
|
+
default_value?: string | string[] | undefined;
|
|
31826
|
+
multiple?: boolean | undefined;
|
|
31371
31827
|
searchable?: boolean | undefined;
|
|
31372
31828
|
} | undefined;
|
|
31373
31829
|
sensitive?: boolean | undefined;
|
|
@@ -31394,9 +31850,9 @@ export declare const uiScreenSchema: z.ZodObject<{
|
|
|
31394
31850
|
required?: boolean | undefined;
|
|
31395
31851
|
category?: "FIELD" | undefined;
|
|
31396
31852
|
config?: {
|
|
31853
|
+
multiple?: boolean | undefined;
|
|
31397
31854
|
accept?: string | undefined;
|
|
31398
31855
|
max_size?: number | undefined;
|
|
31399
|
-
multiple?: boolean | undefined;
|
|
31400
31856
|
} | undefined;
|
|
31401
31857
|
sensitive?: boolean | undefined;
|
|
31402
31858
|
label?: string | undefined;
|
|
@@ -41671,7 +42127,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
41671
42127
|
value: string;
|
|
41672
42128
|
label: string;
|
|
41673
42129
|
}[] | undefined;
|
|
42130
|
+
default_value?: string | string[] | undefined | undefined;
|
|
41674
42131
|
display?: "radio" | "checkbox" | undefined | undefined;
|
|
42132
|
+
multiple?: boolean | undefined | undefined;
|
|
41675
42133
|
} | undefined;
|
|
41676
42134
|
sensitive?: boolean | undefined | undefined;
|
|
41677
42135
|
label?: string | undefined | undefined;
|
|
@@ -41681,6 +42139,10 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
41681
42139
|
type: "CUSTOM";
|
|
41682
42140
|
id: string;
|
|
41683
42141
|
config: {
|
|
42142
|
+
code?: string | undefined | undefined;
|
|
42143
|
+
schema?: {
|
|
42144
|
+
[x: string]: any;
|
|
42145
|
+
} | undefined;
|
|
41684
42146
|
component?: string | undefined | undefined;
|
|
41685
42147
|
props?: {
|
|
41686
42148
|
[x: string]: any;
|
|
@@ -41720,6 +42182,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
41720
42182
|
label: string;
|
|
41721
42183
|
}[] | undefined;
|
|
41722
42184
|
placeholder?: string | undefined | undefined;
|
|
42185
|
+
default_value?: string | string[] | undefined | undefined;
|
|
42186
|
+
multiple?: boolean | undefined | undefined;
|
|
41723
42187
|
searchable?: boolean | undefined | undefined;
|
|
41724
42188
|
} | undefined;
|
|
41725
42189
|
sensitive?: boolean | undefined | undefined;
|
|
@@ -41746,9 +42210,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
41746
42210
|
required?: boolean | undefined | undefined;
|
|
41747
42211
|
category?: "FIELD" | undefined | undefined;
|
|
41748
42212
|
config?: {
|
|
42213
|
+
multiple?: boolean | undefined | undefined;
|
|
41749
42214
|
accept?: string | undefined | undefined;
|
|
41750
42215
|
max_size?: number | undefined | undefined;
|
|
41751
|
-
multiple?: boolean | undefined | undefined;
|
|
41752
42216
|
} | undefined;
|
|
41753
42217
|
sensitive?: boolean | undefined | undefined;
|
|
41754
42218
|
label?: string | undefined | undefined;
|
|
@@ -41898,6 +42362,10 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
41898
42362
|
flow_id?: string | undefined | undefined;
|
|
41899
42363
|
} | undefined;
|
|
41900
42364
|
} | undefined;
|
|
42365
|
+
links?: {
|
|
42366
|
+
sdkSrc?: string | undefined | undefined;
|
|
42367
|
+
sdk_src?: string | undefined | undefined;
|
|
42368
|
+
} | undefined;
|
|
41901
42369
|
messages?: {
|
|
41902
42370
|
custom?: {
|
|
41903
42371
|
[x: string]: any;
|
|
@@ -42126,7 +42594,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
42126
42594
|
value: string;
|
|
42127
42595
|
label: string;
|
|
42128
42596
|
}[] | undefined;
|
|
42597
|
+
default_value?: string | string[] | undefined | undefined;
|
|
42129
42598
|
display?: "radio" | "checkbox" | undefined | undefined;
|
|
42599
|
+
multiple?: boolean | undefined | undefined;
|
|
42130
42600
|
} | undefined;
|
|
42131
42601
|
sensitive?: boolean | undefined | undefined;
|
|
42132
42602
|
label?: string | undefined | undefined;
|
|
@@ -42136,6 +42606,10 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
42136
42606
|
type: "CUSTOM";
|
|
42137
42607
|
id: string;
|
|
42138
42608
|
config: {
|
|
42609
|
+
code?: string | undefined | undefined;
|
|
42610
|
+
schema?: {
|
|
42611
|
+
[x: string]: any;
|
|
42612
|
+
} | undefined;
|
|
42139
42613
|
component?: string | undefined | undefined;
|
|
42140
42614
|
props?: {
|
|
42141
42615
|
[x: string]: any;
|
|
@@ -42175,6 +42649,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
42175
42649
|
label: string;
|
|
42176
42650
|
}[] | undefined;
|
|
42177
42651
|
placeholder?: string | undefined | undefined;
|
|
42652
|
+
default_value?: string | string[] | undefined | undefined;
|
|
42653
|
+
multiple?: boolean | undefined | undefined;
|
|
42178
42654
|
searchable?: boolean | undefined | undefined;
|
|
42179
42655
|
} | undefined;
|
|
42180
42656
|
sensitive?: boolean | undefined | undefined;
|
|
@@ -42201,9 +42677,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
42201
42677
|
required?: boolean | undefined | undefined;
|
|
42202
42678
|
category?: "FIELD" | undefined | undefined;
|
|
42203
42679
|
config?: {
|
|
42680
|
+
multiple?: boolean | undefined | undefined;
|
|
42204
42681
|
accept?: string | undefined | undefined;
|
|
42205
42682
|
max_size?: number | undefined | undefined;
|
|
42206
|
-
multiple?: boolean | undefined | undefined;
|
|
42207
42683
|
} | undefined;
|
|
42208
42684
|
sensitive?: boolean | undefined | undefined;
|
|
42209
42685
|
label?: string | undefined | undefined;
|
|
@@ -42353,6 +42829,10 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
42353
42829
|
flow_id?: string | undefined | undefined;
|
|
42354
42830
|
} | undefined;
|
|
42355
42831
|
} | undefined;
|
|
42832
|
+
links?: {
|
|
42833
|
+
sdkSrc?: string | undefined | undefined;
|
|
42834
|
+
sdk_src?: string | undefined | undefined;
|
|
42835
|
+
} | undefined;
|
|
42356
42836
|
messages?: {
|
|
42357
42837
|
custom?: {
|
|
42358
42838
|
[x: string]: any;
|
|
@@ -42596,7 +43076,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
42596
43076
|
value: string;
|
|
42597
43077
|
label: string;
|
|
42598
43078
|
}[] | undefined;
|
|
43079
|
+
default_value?: string | string[] | undefined | undefined;
|
|
42599
43080
|
display?: "radio" | "checkbox" | undefined | undefined;
|
|
43081
|
+
multiple?: boolean | undefined | undefined;
|
|
42600
43082
|
} | undefined;
|
|
42601
43083
|
sensitive?: boolean | undefined | undefined;
|
|
42602
43084
|
label?: string | undefined | undefined;
|
|
@@ -42606,6 +43088,10 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
42606
43088
|
type: "CUSTOM";
|
|
42607
43089
|
id: string;
|
|
42608
43090
|
config: {
|
|
43091
|
+
code?: string | undefined | undefined;
|
|
43092
|
+
schema?: {
|
|
43093
|
+
[x: string]: any;
|
|
43094
|
+
} | undefined;
|
|
42609
43095
|
component?: string | undefined | undefined;
|
|
42610
43096
|
props?: {
|
|
42611
43097
|
[x: string]: any;
|
|
@@ -42645,6 +43131,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
42645
43131
|
label: string;
|
|
42646
43132
|
}[] | undefined;
|
|
42647
43133
|
placeholder?: string | undefined | undefined;
|
|
43134
|
+
default_value?: string | string[] | undefined | undefined;
|
|
43135
|
+
multiple?: boolean | undefined | undefined;
|
|
42648
43136
|
searchable?: boolean | undefined | undefined;
|
|
42649
43137
|
} | undefined;
|
|
42650
43138
|
sensitive?: boolean | undefined | undefined;
|
|
@@ -42671,9 +43159,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
42671
43159
|
required?: boolean | undefined | undefined;
|
|
42672
43160
|
category?: "FIELD" | undefined | undefined;
|
|
42673
43161
|
config?: {
|
|
43162
|
+
multiple?: boolean | undefined | undefined;
|
|
42674
43163
|
accept?: string | undefined | undefined;
|
|
42675
43164
|
max_size?: number | undefined | undefined;
|
|
42676
|
-
multiple?: boolean | undefined | undefined;
|
|
42677
43165
|
} | undefined;
|
|
42678
43166
|
sensitive?: boolean | undefined | undefined;
|
|
42679
43167
|
label?: string | undefined | undefined;
|
|
@@ -42823,6 +43311,10 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
42823
43311
|
flow_id?: string | undefined | undefined;
|
|
42824
43312
|
} | undefined;
|
|
42825
43313
|
} | undefined;
|
|
43314
|
+
links?: {
|
|
43315
|
+
sdkSrc?: string | undefined | undefined;
|
|
43316
|
+
sdk_src?: string | undefined | undefined;
|
|
43317
|
+
} | undefined;
|
|
42826
43318
|
messages?: {
|
|
42827
43319
|
custom?: {
|
|
42828
43320
|
[x: string]: any;
|
|
@@ -42884,6 +43376,10 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
42884
43376
|
key: string;
|
|
42885
43377
|
}[] | undefined;
|
|
42886
43378
|
} | undefined;
|
|
43379
|
+
links?: {
|
|
43380
|
+
sdkSrc?: string | undefined;
|
|
43381
|
+
sdk_src?: string | undefined;
|
|
43382
|
+
} | undefined;
|
|
42887
43383
|
nodes?: ({
|
|
42888
43384
|
type: "FLOW";
|
|
42889
43385
|
id: string;
|
|
@@ -43073,7 +43569,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
43073
43569
|
value: string;
|
|
43074
43570
|
label: string;
|
|
43075
43571
|
}[] | undefined;
|
|
43572
|
+
default_value?: string | string[] | undefined;
|
|
43076
43573
|
display?: "radio" | "checkbox" | undefined;
|
|
43574
|
+
multiple?: boolean | undefined;
|
|
43077
43575
|
} | undefined;
|
|
43078
43576
|
sensitive?: boolean | undefined;
|
|
43079
43577
|
label?: string | undefined;
|
|
@@ -43084,6 +43582,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
43084
43582
|
type: "CUSTOM";
|
|
43085
43583
|
id: string;
|
|
43086
43584
|
config: {
|
|
43585
|
+
code?: string | undefined;
|
|
43586
|
+
schema?: Record<string, any> | undefined;
|
|
43087
43587
|
component?: string | undefined;
|
|
43088
43588
|
props?: Record<string, any> | undefined;
|
|
43089
43589
|
};
|
|
@@ -43120,6 +43620,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
43120
43620
|
label: string;
|
|
43121
43621
|
}[] | undefined;
|
|
43122
43622
|
placeholder?: string | undefined;
|
|
43623
|
+
default_value?: string | string[] | undefined;
|
|
43624
|
+
multiple?: boolean | undefined;
|
|
43123
43625
|
searchable?: boolean | undefined;
|
|
43124
43626
|
} | undefined;
|
|
43125
43627
|
sensitive?: boolean | undefined;
|
|
@@ -43146,9 +43648,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
43146
43648
|
required?: boolean | undefined;
|
|
43147
43649
|
category?: "FIELD" | undefined;
|
|
43148
43650
|
config?: {
|
|
43651
|
+
multiple?: boolean | undefined;
|
|
43149
43652
|
accept?: string | undefined;
|
|
43150
43653
|
max_size?: number | undefined;
|
|
43151
|
-
multiple?: boolean | undefined;
|
|
43152
43654
|
} | undefined;
|
|
43153
43655
|
sensitive?: boolean | undefined;
|
|
43154
43656
|
label?: string | undefined;
|
|
@@ -43523,7 +44025,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
43523
44025
|
value: string;
|
|
43524
44026
|
label: string;
|
|
43525
44027
|
}[] | undefined;
|
|
44028
|
+
default_value?: string | string[] | undefined | undefined;
|
|
43526
44029
|
display?: "radio" | "checkbox" | undefined | undefined;
|
|
44030
|
+
multiple?: boolean | undefined | undefined;
|
|
43527
44031
|
} | undefined;
|
|
43528
44032
|
sensitive?: boolean | undefined | undefined;
|
|
43529
44033
|
label?: string | undefined | undefined;
|
|
@@ -43533,6 +44037,10 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
43533
44037
|
type: "CUSTOM";
|
|
43534
44038
|
id: string;
|
|
43535
44039
|
config: {
|
|
44040
|
+
code?: string | undefined | undefined;
|
|
44041
|
+
schema?: {
|
|
44042
|
+
[x: string]: any;
|
|
44043
|
+
} | undefined;
|
|
43536
44044
|
component?: string | undefined | undefined;
|
|
43537
44045
|
props?: {
|
|
43538
44046
|
[x: string]: any;
|
|
@@ -43572,6 +44080,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
43572
44080
|
label: string;
|
|
43573
44081
|
}[] | undefined;
|
|
43574
44082
|
placeholder?: string | undefined | undefined;
|
|
44083
|
+
default_value?: string | string[] | undefined | undefined;
|
|
44084
|
+
multiple?: boolean | undefined | undefined;
|
|
43575
44085
|
searchable?: boolean | undefined | undefined;
|
|
43576
44086
|
} | undefined;
|
|
43577
44087
|
sensitive?: boolean | undefined | undefined;
|
|
@@ -43598,9 +44108,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
43598
44108
|
required?: boolean | undefined | undefined;
|
|
43599
44109
|
category?: "FIELD" | undefined | undefined;
|
|
43600
44110
|
config?: {
|
|
44111
|
+
multiple?: boolean | undefined | undefined;
|
|
43601
44112
|
accept?: string | undefined | undefined;
|
|
43602
44113
|
max_size?: number | undefined | undefined;
|
|
43603
|
-
multiple?: boolean | undefined | undefined;
|
|
43604
44114
|
} | undefined;
|
|
43605
44115
|
sensitive?: boolean | undefined | undefined;
|
|
43606
44116
|
label?: string | undefined | undefined;
|
|
@@ -43750,6 +44260,10 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
43750
44260
|
flow_id?: string | undefined | undefined;
|
|
43751
44261
|
} | undefined;
|
|
43752
44262
|
} | undefined;
|
|
44263
|
+
links?: {
|
|
44264
|
+
sdkSrc?: string | undefined | undefined;
|
|
44265
|
+
sdk_src?: string | undefined | undefined;
|
|
44266
|
+
} | undefined;
|
|
43753
44267
|
messages?: {
|
|
43754
44268
|
custom?: {
|
|
43755
44269
|
[x: string]: any;
|
|
@@ -43790,6 +44304,10 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
43790
44304
|
key: string;
|
|
43791
44305
|
}[] | undefined;
|
|
43792
44306
|
} | undefined;
|
|
44307
|
+
links?: {
|
|
44308
|
+
sdkSrc?: string | undefined;
|
|
44309
|
+
sdk_src?: string | undefined;
|
|
44310
|
+
} | undefined;
|
|
43793
44311
|
nodes?: ({
|
|
43794
44312
|
type: "FLOW";
|
|
43795
44313
|
id: string;
|
|
@@ -43979,7 +44497,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
43979
44497
|
value: string;
|
|
43980
44498
|
label: string;
|
|
43981
44499
|
}[] | undefined;
|
|
44500
|
+
default_value?: string | string[] | undefined;
|
|
43982
44501
|
display?: "radio" | "checkbox" | undefined;
|
|
44502
|
+
multiple?: boolean | undefined;
|
|
43983
44503
|
} | undefined;
|
|
43984
44504
|
sensitive?: boolean | undefined;
|
|
43985
44505
|
label?: string | undefined;
|
|
@@ -43990,6 +44510,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
43990
44510
|
type: "CUSTOM";
|
|
43991
44511
|
id: string;
|
|
43992
44512
|
config: {
|
|
44513
|
+
code?: string | undefined;
|
|
44514
|
+
schema?: Record<string, any> | undefined;
|
|
43993
44515
|
component?: string | undefined;
|
|
43994
44516
|
props?: Record<string, any> | undefined;
|
|
43995
44517
|
};
|
|
@@ -44026,6 +44548,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
44026
44548
|
label: string;
|
|
44027
44549
|
}[] | undefined;
|
|
44028
44550
|
placeholder?: string | undefined;
|
|
44551
|
+
default_value?: string | string[] | undefined;
|
|
44552
|
+
multiple?: boolean | undefined;
|
|
44029
44553
|
searchable?: boolean | undefined;
|
|
44030
44554
|
} | undefined;
|
|
44031
44555
|
sensitive?: boolean | undefined;
|
|
@@ -44052,9 +44576,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
44052
44576
|
required?: boolean | undefined;
|
|
44053
44577
|
category?: "FIELD" | undefined;
|
|
44054
44578
|
config?: {
|
|
44579
|
+
multiple?: boolean | undefined;
|
|
44055
44580
|
accept?: string | undefined;
|
|
44056
44581
|
max_size?: number | undefined;
|
|
44057
|
-
multiple?: boolean | undefined;
|
|
44058
44582
|
} | undefined;
|
|
44059
44583
|
sensitive?: boolean | undefined;
|
|
44060
44584
|
label?: string | undefined;
|
|
@@ -44429,7 +44953,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
44429
44953
|
value: string;
|
|
44430
44954
|
label: string;
|
|
44431
44955
|
}[] | undefined;
|
|
44956
|
+
default_value?: string | string[] | undefined | undefined;
|
|
44432
44957
|
display?: "radio" | "checkbox" | undefined | undefined;
|
|
44958
|
+
multiple?: boolean | undefined | undefined;
|
|
44433
44959
|
} | undefined;
|
|
44434
44960
|
sensitive?: boolean | undefined | undefined;
|
|
44435
44961
|
label?: string | undefined | undefined;
|
|
@@ -44439,6 +44965,10 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
44439
44965
|
type: "CUSTOM";
|
|
44440
44966
|
id: string;
|
|
44441
44967
|
config: {
|
|
44968
|
+
code?: string | undefined | undefined;
|
|
44969
|
+
schema?: {
|
|
44970
|
+
[x: string]: any;
|
|
44971
|
+
} | undefined;
|
|
44442
44972
|
component?: string | undefined | undefined;
|
|
44443
44973
|
props?: {
|
|
44444
44974
|
[x: string]: any;
|
|
@@ -44478,6 +45008,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
44478
45008
|
label: string;
|
|
44479
45009
|
}[] | undefined;
|
|
44480
45010
|
placeholder?: string | undefined | undefined;
|
|
45011
|
+
default_value?: string | string[] | undefined | undefined;
|
|
45012
|
+
multiple?: boolean | undefined | undefined;
|
|
44481
45013
|
searchable?: boolean | undefined | undefined;
|
|
44482
45014
|
} | undefined;
|
|
44483
45015
|
sensitive?: boolean | undefined | undefined;
|
|
@@ -44504,9 +45036,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
44504
45036
|
required?: boolean | undefined | undefined;
|
|
44505
45037
|
category?: "FIELD" | undefined | undefined;
|
|
44506
45038
|
config?: {
|
|
45039
|
+
multiple?: boolean | undefined | undefined;
|
|
44507
45040
|
accept?: string | undefined | undefined;
|
|
44508
45041
|
max_size?: number | undefined | undefined;
|
|
44509
|
-
multiple?: boolean | undefined | undefined;
|
|
44510
45042
|
} | undefined;
|
|
44511
45043
|
sensitive?: boolean | undefined | undefined;
|
|
44512
45044
|
label?: string | undefined | undefined;
|
|
@@ -44656,6 +45188,10 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
44656
45188
|
flow_id?: string | undefined | undefined;
|
|
44657
45189
|
} | undefined;
|
|
44658
45190
|
} | undefined;
|
|
45191
|
+
links?: {
|
|
45192
|
+
sdkSrc?: string | undefined | undefined;
|
|
45193
|
+
sdk_src?: string | undefined | undefined;
|
|
45194
|
+
} | undefined;
|
|
44659
45195
|
messages?: {
|
|
44660
45196
|
custom?: {
|
|
44661
45197
|
[x: string]: any;
|