@opencrvs/toolkit 1.8.1-rc.c39f8f6 → 1.8.1-rc.c7fcaa3
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/commons/api/router.d.ts +394 -393
- package/dist/commons/conditionals/validate.d.ts +11 -2
- package/dist/commons/events/ActionConfig.d.ts +3924 -642
- package/dist/commons/events/ActionDocument.d.ts +736 -736
- package/dist/commons/events/ActionInput.d.ts +600 -600
- package/dist/commons/events/AdvancedSearchConfig.d.ts +49 -31
- package/dist/commons/events/CompositeFieldValue.d.ts +6 -6
- package/dist/commons/events/CountryConfigQueryInput.d.ts +88 -88
- package/dist/commons/events/Draft.d.ts +56 -56
- package/dist/commons/events/EventConfig.d.ts +1259 -240
- package/dist/commons/events/EventDocument.d.ts +432 -432
- package/dist/commons/events/EventIndex.d.ts +62 -62
- package/dist/commons/events/EventMetadata.d.ts +9 -9
- package/dist/commons/events/FieldConfig.d.ts +1064 -71
- package/dist/commons/events/FieldType.d.ts +5 -0
- package/dist/commons/events/FieldTypeMapping.d.ts +16 -16
- package/dist/commons/events/FieldValue.d.ts +12 -12
- package/dist/commons/events/FormConfig.d.ts +1956 -378
- package/dist/commons/events/PageConfig.d.ts +524 -82
- package/dist/commons/events/WorkqueueConfig.d.ts +199 -164
- package/dist/commons/events/defineConfig.d.ts +181 -46
- package/dist/commons/events/event.d.ts +61 -7
- package/dist/commons/events/test.utils.d.ts +14 -13
- package/dist/commons/events/utils.d.ts +341 -195
- package/dist/conditionals/index.js +3 -2
- package/dist/events/index.js +1071 -860
- package/package.json +1 -1
- package/tsconfig.json +1 -1
- package/dist/commons/conditionals/conditionals.test.d.ts +0 -2
- package/dist/commons/conditionals/validate-address.test.d.ts +0 -2
- package/dist/commons/conditionals/validate.test.d.ts +0 -2
- package/dist/commons/events/utils.test.d.ts +0 -2
@@ -265,7 +265,7 @@ declare const Divider: z.ZodObject<z.objectUtil.extendShape<{
|
|
265
265
|
uncorrectable?: boolean | undefined;
|
266
266
|
}>;
|
267
267
|
export type Divider = z.infer<typeof Divider>;
|
268
|
-
declare const TextField: z.ZodObject<z.objectUtil.extendShape<{
|
268
|
+
export declare const TextField: z.ZodObject<z.objectUtil.extendShape<{
|
269
269
|
id: z.ZodString;
|
270
270
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
271
271
|
id: string;
|
@@ -2747,6 +2747,101 @@ export declare const SelectDateRangeField: z.ZodObject<z.objectUtil.extendShape<
|
|
2747
2747
|
defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
|
2748
2748
|
}>;
|
2749
2749
|
export type SelectDateRangeField = z.infer<typeof SelectDateRangeField>;
|
2750
|
+
export declare const NameConfig: z.ZodObject<{
|
2751
|
+
firstname: z.ZodOptional<z.ZodObject<{
|
2752
|
+
required: z.ZodBoolean;
|
2753
|
+
label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2754
|
+
id: string;
|
2755
|
+
description: string;
|
2756
|
+
defaultMessage: string;
|
2757
|
+
}>>;
|
2758
|
+
}, "strip", z.ZodTypeAny, {
|
2759
|
+
required: boolean;
|
2760
|
+
label?: TranslationConfig | undefined;
|
2761
|
+
}, {
|
2762
|
+
required: boolean;
|
2763
|
+
label?: {
|
2764
|
+
id: string;
|
2765
|
+
description: string;
|
2766
|
+
defaultMessage: string;
|
2767
|
+
} | undefined;
|
2768
|
+
}>>;
|
2769
|
+
middlename: z.ZodOptional<z.ZodObject<{
|
2770
|
+
required: z.ZodBoolean;
|
2771
|
+
label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2772
|
+
id: string;
|
2773
|
+
description: string;
|
2774
|
+
defaultMessage: string;
|
2775
|
+
}>>;
|
2776
|
+
}, "strip", z.ZodTypeAny, {
|
2777
|
+
required: boolean;
|
2778
|
+
label?: TranslationConfig | undefined;
|
2779
|
+
}, {
|
2780
|
+
required: boolean;
|
2781
|
+
label?: {
|
2782
|
+
id: string;
|
2783
|
+
description: string;
|
2784
|
+
defaultMessage: string;
|
2785
|
+
} | undefined;
|
2786
|
+
}>>;
|
2787
|
+
surname: z.ZodOptional<z.ZodObject<{
|
2788
|
+
required: z.ZodBoolean;
|
2789
|
+
label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2790
|
+
id: string;
|
2791
|
+
description: string;
|
2792
|
+
defaultMessage: string;
|
2793
|
+
}>>;
|
2794
|
+
}, "strip", z.ZodTypeAny, {
|
2795
|
+
required: boolean;
|
2796
|
+
label?: TranslationConfig | undefined;
|
2797
|
+
}, {
|
2798
|
+
required: boolean;
|
2799
|
+
label?: {
|
2800
|
+
id: string;
|
2801
|
+
description: string;
|
2802
|
+
defaultMessage: string;
|
2803
|
+
} | undefined;
|
2804
|
+
}>>;
|
2805
|
+
}, "strip", z.ZodTypeAny, {
|
2806
|
+
firstname?: {
|
2807
|
+
required: boolean;
|
2808
|
+
label?: TranslationConfig | undefined;
|
2809
|
+
} | undefined;
|
2810
|
+
surname?: {
|
2811
|
+
required: boolean;
|
2812
|
+
label?: TranslationConfig | undefined;
|
2813
|
+
} | undefined;
|
2814
|
+
middlename?: {
|
2815
|
+
required: boolean;
|
2816
|
+
label?: TranslationConfig | undefined;
|
2817
|
+
} | undefined;
|
2818
|
+
}, {
|
2819
|
+
firstname?: {
|
2820
|
+
required: boolean;
|
2821
|
+
label?: {
|
2822
|
+
id: string;
|
2823
|
+
description: string;
|
2824
|
+
defaultMessage: string;
|
2825
|
+
} | undefined;
|
2826
|
+
} | undefined;
|
2827
|
+
surname?: {
|
2828
|
+
required: boolean;
|
2829
|
+
label?: {
|
2830
|
+
id: string;
|
2831
|
+
description: string;
|
2832
|
+
defaultMessage: string;
|
2833
|
+
} | undefined;
|
2834
|
+
} | undefined;
|
2835
|
+
middlename?: {
|
2836
|
+
required: boolean;
|
2837
|
+
label?: {
|
2838
|
+
id: string;
|
2839
|
+
description: string;
|
2840
|
+
defaultMessage: string;
|
2841
|
+
} | undefined;
|
2842
|
+
} | undefined;
|
2843
|
+
}>;
|
2844
|
+
export type NameConfig = z.infer<typeof NameConfig>;
|
2750
2845
|
declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
|
2751
2846
|
id: z.ZodString;
|
2752
2847
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
@@ -2797,16 +2892,114 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2797
2892
|
}, {
|
2798
2893
|
type: z.ZodLiteral<"NAME">;
|
2799
2894
|
defaultValue: z.ZodOptional<z.ZodObject<{
|
2800
|
-
firstname: z.ZodString
|
2801
|
-
|
2895
|
+
firstname: z.ZodOptional<z.ZodString>;
|
2896
|
+
middlename: z.ZodOptional<z.ZodString>;
|
2897
|
+
surname: z.ZodOptional<z.ZodString>;
|
2802
2898
|
}, "strip", z.ZodTypeAny, {
|
2803
|
-
firstname
|
2804
|
-
surname
|
2899
|
+
firstname?: string | undefined;
|
2900
|
+
surname?: string | undefined;
|
2901
|
+
middlename?: string | undefined;
|
2805
2902
|
}, {
|
2806
|
-
firstname
|
2807
|
-
surname
|
2903
|
+
firstname?: string | undefined;
|
2904
|
+
surname?: string | undefined;
|
2905
|
+
middlename?: string | undefined;
|
2808
2906
|
}>>;
|
2809
|
-
configuration: z.ZodOptional<z.ZodObject<{
|
2907
|
+
configuration: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
2908
|
+
name: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
2909
|
+
firstname: z.ZodOptional<z.ZodObject<{
|
2910
|
+
required: z.ZodBoolean;
|
2911
|
+
label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2912
|
+
id: string;
|
2913
|
+
description: string;
|
2914
|
+
defaultMessage: string;
|
2915
|
+
}>>;
|
2916
|
+
}, "strip", z.ZodTypeAny, {
|
2917
|
+
required: boolean;
|
2918
|
+
label?: TranslationConfig | undefined;
|
2919
|
+
}, {
|
2920
|
+
required: boolean;
|
2921
|
+
label?: {
|
2922
|
+
id: string;
|
2923
|
+
description: string;
|
2924
|
+
defaultMessage: string;
|
2925
|
+
} | undefined;
|
2926
|
+
}>>;
|
2927
|
+
middlename: z.ZodOptional<z.ZodObject<{
|
2928
|
+
required: z.ZodBoolean;
|
2929
|
+
label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2930
|
+
id: string;
|
2931
|
+
description: string;
|
2932
|
+
defaultMessage: string;
|
2933
|
+
}>>;
|
2934
|
+
}, "strip", z.ZodTypeAny, {
|
2935
|
+
required: boolean;
|
2936
|
+
label?: TranslationConfig | undefined;
|
2937
|
+
}, {
|
2938
|
+
required: boolean;
|
2939
|
+
label?: {
|
2940
|
+
id: string;
|
2941
|
+
description: string;
|
2942
|
+
defaultMessage: string;
|
2943
|
+
} | undefined;
|
2944
|
+
}>>;
|
2945
|
+
surname: z.ZodOptional<z.ZodObject<{
|
2946
|
+
required: z.ZodBoolean;
|
2947
|
+
label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2948
|
+
id: string;
|
2949
|
+
description: string;
|
2950
|
+
defaultMessage: string;
|
2951
|
+
}>>;
|
2952
|
+
}, "strip", z.ZodTypeAny, {
|
2953
|
+
required: boolean;
|
2954
|
+
label?: TranslationConfig | undefined;
|
2955
|
+
}, {
|
2956
|
+
required: boolean;
|
2957
|
+
label?: {
|
2958
|
+
id: string;
|
2959
|
+
description: string;
|
2960
|
+
defaultMessage: string;
|
2961
|
+
} | undefined;
|
2962
|
+
}>>;
|
2963
|
+
}, "strip", z.ZodTypeAny, {
|
2964
|
+
firstname?: {
|
2965
|
+
required: boolean;
|
2966
|
+
label?: TranslationConfig | undefined;
|
2967
|
+
} | undefined;
|
2968
|
+
surname?: {
|
2969
|
+
required: boolean;
|
2970
|
+
label?: TranslationConfig | undefined;
|
2971
|
+
} | undefined;
|
2972
|
+
middlename?: {
|
2973
|
+
required: boolean;
|
2974
|
+
label?: TranslationConfig | undefined;
|
2975
|
+
} | undefined;
|
2976
|
+
}, {
|
2977
|
+
firstname?: {
|
2978
|
+
required: boolean;
|
2979
|
+
label?: {
|
2980
|
+
id: string;
|
2981
|
+
description: string;
|
2982
|
+
defaultMessage: string;
|
2983
|
+
} | undefined;
|
2984
|
+
} | undefined;
|
2985
|
+
surname?: {
|
2986
|
+
required: boolean;
|
2987
|
+
label?: {
|
2988
|
+
id: string;
|
2989
|
+
description: string;
|
2990
|
+
defaultMessage: string;
|
2991
|
+
} | undefined;
|
2992
|
+
} | undefined;
|
2993
|
+
middlename?: {
|
2994
|
+
required: boolean;
|
2995
|
+
label?: {
|
2996
|
+
id: string;
|
2997
|
+
description: string;
|
2998
|
+
defaultMessage: string;
|
2999
|
+
} | undefined;
|
3000
|
+
} | undefined;
|
3001
|
+
}>>>;
|
3002
|
+
order: z.ZodOptional<z.ZodArray<z.ZodEnum<["firstname", "middlename", "surname"]>, "many">>;
|
2810
3003
|
maxLength: z.ZodOptional<z.ZodNumber>;
|
2811
3004
|
prefix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2812
3005
|
id: string;
|
@@ -2818,15 +3011,53 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2818
3011
|
description: string;
|
2819
3012
|
defaultMessage: string;
|
2820
3013
|
}>>;
|
2821
|
-
includeMiddlename: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2822
|
-
searchMode: z.ZodOptional<z.ZodBoolean>;
|
2823
3014
|
}, "strip", z.ZodTypeAny, {
|
3015
|
+
name?: {
|
3016
|
+
firstname?: {
|
3017
|
+
required: boolean;
|
3018
|
+
label?: TranslationConfig | undefined;
|
3019
|
+
} | undefined;
|
3020
|
+
surname?: {
|
3021
|
+
required: boolean;
|
3022
|
+
label?: TranslationConfig | undefined;
|
3023
|
+
} | undefined;
|
3024
|
+
middlename?: {
|
3025
|
+
required: boolean;
|
3026
|
+
label?: TranslationConfig | undefined;
|
3027
|
+
} | undefined;
|
3028
|
+
} | undefined;
|
3029
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
2824
3030
|
maxLength?: number | undefined;
|
2825
3031
|
prefix?: TranslationConfig | undefined;
|
2826
3032
|
postfix?: TranslationConfig | undefined;
|
2827
|
-
includeMiddlename?: boolean | undefined;
|
2828
|
-
searchMode?: boolean | undefined;
|
2829
3033
|
}, {
|
3034
|
+
name?: {
|
3035
|
+
firstname?: {
|
3036
|
+
required: boolean;
|
3037
|
+
label?: {
|
3038
|
+
id: string;
|
3039
|
+
description: string;
|
3040
|
+
defaultMessage: string;
|
3041
|
+
} | undefined;
|
3042
|
+
} | undefined;
|
3043
|
+
surname?: {
|
3044
|
+
required: boolean;
|
3045
|
+
label?: {
|
3046
|
+
id: string;
|
3047
|
+
description: string;
|
3048
|
+
defaultMessage: string;
|
3049
|
+
} | undefined;
|
3050
|
+
} | undefined;
|
3051
|
+
middlename?: {
|
3052
|
+
required: boolean;
|
3053
|
+
label?: {
|
3054
|
+
id: string;
|
3055
|
+
description: string;
|
3056
|
+
defaultMessage: string;
|
3057
|
+
} | undefined;
|
3058
|
+
} | undefined;
|
3059
|
+
} | undefined;
|
3060
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
2830
3061
|
maxLength?: number | undefined;
|
2831
3062
|
prefix?: {
|
2832
3063
|
id: string;
|
@@ -2838,9 +3069,7 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2838
3069
|
description: string;
|
2839
3070
|
defaultMessage: string;
|
2840
3071
|
} | undefined;
|
2841
|
-
|
2842
|
-
searchMode?: boolean | undefined;
|
2843
|
-
}>>;
|
3072
|
+
}>>>;
|
2844
3073
|
}>, "strip", z.ZodTypeAny, {
|
2845
3074
|
type: "NAME";
|
2846
3075
|
id: string;
|
@@ -2869,15 +3098,29 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2869
3098
|
hideLabel?: boolean | undefined;
|
2870
3099
|
uncorrectable?: boolean | undefined;
|
2871
3100
|
defaultValue?: {
|
2872
|
-
firstname
|
2873
|
-
surname
|
3101
|
+
firstname?: string | undefined;
|
3102
|
+
surname?: string | undefined;
|
3103
|
+
middlename?: string | undefined;
|
2874
3104
|
} | undefined;
|
2875
3105
|
configuration?: {
|
3106
|
+
name?: {
|
3107
|
+
firstname?: {
|
3108
|
+
required: boolean;
|
3109
|
+
label?: TranslationConfig | undefined;
|
3110
|
+
} | undefined;
|
3111
|
+
surname?: {
|
3112
|
+
required: boolean;
|
3113
|
+
label?: TranslationConfig | undefined;
|
3114
|
+
} | undefined;
|
3115
|
+
middlename?: {
|
3116
|
+
required: boolean;
|
3117
|
+
label?: TranslationConfig | undefined;
|
3118
|
+
} | undefined;
|
3119
|
+
} | undefined;
|
3120
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
2876
3121
|
maxLength?: number | undefined;
|
2877
3122
|
prefix?: TranslationConfig | undefined;
|
2878
3123
|
postfix?: TranslationConfig | undefined;
|
2879
|
-
includeMiddlename?: boolean | undefined;
|
2880
|
-
searchMode?: boolean | undefined;
|
2881
3124
|
} | undefined;
|
2882
3125
|
}, {
|
2883
3126
|
type: "NAME";
|
@@ -2923,10 +3166,38 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2923
3166
|
hideLabel?: boolean | undefined;
|
2924
3167
|
uncorrectable?: boolean | undefined;
|
2925
3168
|
defaultValue?: {
|
2926
|
-
firstname
|
2927
|
-
surname
|
3169
|
+
firstname?: string | undefined;
|
3170
|
+
surname?: string | undefined;
|
3171
|
+
middlename?: string | undefined;
|
2928
3172
|
} | undefined;
|
2929
3173
|
configuration?: {
|
3174
|
+
name?: {
|
3175
|
+
firstname?: {
|
3176
|
+
required: boolean;
|
3177
|
+
label?: {
|
3178
|
+
id: string;
|
3179
|
+
description: string;
|
3180
|
+
defaultMessage: string;
|
3181
|
+
} | undefined;
|
3182
|
+
} | undefined;
|
3183
|
+
surname?: {
|
3184
|
+
required: boolean;
|
3185
|
+
label?: {
|
3186
|
+
id: string;
|
3187
|
+
description: string;
|
3188
|
+
defaultMessage: string;
|
3189
|
+
} | undefined;
|
3190
|
+
} | undefined;
|
3191
|
+
middlename?: {
|
3192
|
+
required: boolean;
|
3193
|
+
label?: {
|
3194
|
+
id: string;
|
3195
|
+
description: string;
|
3196
|
+
defaultMessage: string;
|
3197
|
+
} | undefined;
|
3198
|
+
} | undefined;
|
3199
|
+
} | undefined;
|
3200
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
2930
3201
|
maxLength?: number | undefined;
|
2931
3202
|
prefix?: {
|
2932
3203
|
id: string;
|
@@ -2938,8 +3209,6 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2938
3209
|
description: string;
|
2939
3210
|
defaultMessage: string;
|
2940
3211
|
} | undefined;
|
2941
|
-
includeMiddlename?: boolean | undefined;
|
2942
|
-
searchMode?: boolean | undefined;
|
2943
3212
|
} | undefined;
|
2944
3213
|
}>;
|
2945
3214
|
declare const PhoneField: z.ZodObject<z.objectUtil.extendShape<{
|
@@ -4244,6 +4513,16 @@ declare const Address: z.ZodObject<z.objectUtil.extendShape<{
|
|
4244
4513
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4245
4514
|
}, {
|
4246
4515
|
type: z.ZodLiteral<"ADDRESS">;
|
4516
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
4517
|
+
lineSeparator: z.ZodOptional<z.ZodString>;
|
4518
|
+
fields: z.ZodOptional<z.ZodArray<z.ZodEnum<["number", "country", "province", "addressType", "district", "urbanOrRural", "town", "residentialArea", "street", "zipCode", "village", "state", "district2", "cityOrTown", "addressLine1", "addressLine2", "addressLine3", "postcodeOrZip"]>, "many">>;
|
4519
|
+
}, "strip", z.ZodTypeAny, {
|
4520
|
+
lineSeparator?: string | undefined;
|
4521
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
4522
|
+
}, {
|
4523
|
+
lineSeparator?: string | undefined;
|
4524
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
4525
|
+
}>>;
|
4247
4526
|
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodDiscriminatedUnion<"urbanOrRural", [z.ZodObject<z.objectUtil.extendShape<{
|
4248
4527
|
country: z.ZodString;
|
4249
4528
|
addressType: z.ZodLiteral<"DOMESTIC">;
|
@@ -4331,13 +4610,6 @@ declare const Address: z.ZodObject<z.objectUtil.extendShape<{
|
|
4331
4610
|
addressLine3?: string | undefined;
|
4332
4611
|
postcodeOrZip?: string | undefined;
|
4333
4612
|
}>]>>;
|
4334
|
-
configuration: z.ZodOptional<z.ZodObject<{
|
4335
|
-
searchMode: z.ZodOptional<z.ZodBoolean>;
|
4336
|
-
}, "strip", z.ZodTypeAny, {
|
4337
|
-
searchMode?: boolean | undefined;
|
4338
|
-
}, {
|
4339
|
-
searchMode?: boolean | undefined;
|
4340
|
-
}>>;
|
4341
4613
|
}>, "strip", z.ZodTypeAny, {
|
4342
4614
|
type: "ADDRESS";
|
4343
4615
|
id: string;
|
@@ -4395,7 +4667,8 @@ declare const Address: z.ZodObject<z.objectUtil.extendShape<{
|
|
4395
4667
|
postcodeOrZip?: string | undefined;
|
4396
4668
|
} | undefined;
|
4397
4669
|
configuration?: {
|
4398
|
-
|
4670
|
+
lineSeparator?: string | undefined;
|
4671
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
4399
4672
|
} | undefined;
|
4400
4673
|
}, {
|
4401
4674
|
type: "ADDRESS";
|
@@ -4470,7 +4743,8 @@ declare const Address: z.ZodObject<z.objectUtil.extendShape<{
|
|
4470
4743
|
postcodeOrZip?: string | undefined;
|
4471
4744
|
} | undefined;
|
4472
4745
|
configuration?: {
|
4473
|
-
|
4746
|
+
lineSeparator?: string | undefined;
|
4747
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
4474
4748
|
} | undefined;
|
4475
4749
|
}>;
|
4476
4750
|
export declare const DataEntry: z.ZodUnion<[z.ZodObject<{
|
@@ -4724,13 +4998,7 @@ declare const DataField: z.ZodObject<z.objectUtil.extendShape<{
|
|
4724
4998
|
uncorrectable?: boolean | undefined;
|
4725
4999
|
}>;
|
4726
5000
|
export type DataField = z.infer<typeof DataField>;
|
4727
|
-
|
4728
|
-
export type Inferred = z.infer<typeof Address> | z.infer<typeof TextField> | z.infer<typeof NumberField> | z.infer<typeof TextAreaField> | z.infer<typeof DateField> | z.infer<typeof TimeField> | z.infer<typeof DateRangeField> | z.infer<typeof SelectDateRangeField> | z.infer<typeof Paragraph> | z.infer<typeof RadioGroup> | z.infer<typeof BulletList> | z.infer<typeof PageHeader> | z.infer<typeof Select> | z.infer<typeof NameField> | z.infer<typeof PhoneField> | z.infer<typeof IdField> | z.infer<typeof Checkbox> | z.infer<typeof File> | z.infer<typeof FileUploadWithOptions> | z.infer<typeof Country> | z.infer<typeof AdministrativeArea> | z.infer<typeof Divider> | z.infer<typeof Location> | z.infer<typeof Facility> | z.infer<typeof Office> | z.infer<typeof SignatureField> | z.infer<typeof EmailField> | z.infer<typeof DataField>;
|
4729
|
-
/** @knipignore */
|
4730
|
-
/**
|
4731
|
-
* This is the type that should be used for the input of the FieldConfig. Useful when config uses zod defaults.
|
4732
|
-
*/
|
4733
|
-
export type InferredInput = z.input<typeof Address> | z.input<typeof TextField> | z.input<typeof NumberField> | z.input<typeof TextAreaField> | z.input<typeof DateField> | z.input<typeof TimeField> | z.input<typeof DateRangeField> | z.input<typeof Paragraph> | z.input<typeof RadioGroup> | z.input<typeof BulletList> | z.input<typeof PageHeader> | z.input<typeof Select> | z.input<typeof NameField> | z.input<typeof PhoneField> | z.input<typeof IdField> | z.input<typeof Checkbox> | z.input<typeof File> | z.input<typeof FileUploadWithOptions> | z.input<typeof Country> | z.input<typeof AdministrativeArea> | z.input<typeof Divider> | z.input<typeof Location> | z.input<typeof Facility> | z.input<typeof Office> | z.input<typeof SignatureField> | z.input<typeof EmailField> | z.input<typeof DataField>;
|
5001
|
+
export type FieldConfig = z.infer<typeof Address> | z.infer<typeof TextField> | z.infer<typeof NumberField> | z.infer<typeof TextAreaField> | z.infer<typeof DateField> | z.infer<typeof TimeField> | z.infer<typeof DateRangeField> | z.infer<typeof SelectDateRangeField> | z.infer<typeof Paragraph> | z.infer<typeof RadioGroup> | z.infer<typeof BulletList> | z.infer<typeof PageHeader> | z.infer<typeof Select> | z.infer<typeof NameField> | z.infer<typeof PhoneField> | z.infer<typeof IdField> | z.infer<typeof Checkbox> | z.infer<typeof File> | z.infer<typeof FileUploadWithOptions> | z.infer<typeof Country> | z.infer<typeof AdministrativeArea> | z.infer<typeof Divider> | z.infer<typeof Location> | z.infer<typeof Facility> | z.infer<typeof Office> | z.infer<typeof SignatureField> | z.infer<typeof EmailField> | z.infer<typeof DataField>;
|
4734
5002
|
export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
|
4735
5003
|
id: z.ZodString;
|
4736
5004
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
@@ -4780,6 +5048,16 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4780
5048
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4781
5049
|
}, {
|
4782
5050
|
type: z.ZodLiteral<"ADDRESS">;
|
5051
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
5052
|
+
lineSeparator: z.ZodOptional<z.ZodString>;
|
5053
|
+
fields: z.ZodOptional<z.ZodArray<z.ZodEnum<["number", "country", "province", "addressType", "district", "urbanOrRural", "town", "residentialArea", "street", "zipCode", "village", "state", "district2", "cityOrTown", "addressLine1", "addressLine2", "addressLine3", "postcodeOrZip"]>, "many">>;
|
5054
|
+
}, "strip", z.ZodTypeAny, {
|
5055
|
+
lineSeparator?: string | undefined;
|
5056
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
5057
|
+
}, {
|
5058
|
+
lineSeparator?: string | undefined;
|
5059
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
5060
|
+
}>>;
|
4783
5061
|
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodDiscriminatedUnion<"urbanOrRural", [z.ZodObject<z.objectUtil.extendShape<{
|
4784
5062
|
country: z.ZodString;
|
4785
5063
|
addressType: z.ZodLiteral<"DOMESTIC">;
|
@@ -4867,13 +5145,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4867
5145
|
addressLine3?: string | undefined;
|
4868
5146
|
postcodeOrZip?: string | undefined;
|
4869
5147
|
}>]>>;
|
4870
|
-
configuration: z.ZodOptional<z.ZodObject<{
|
4871
|
-
searchMode: z.ZodOptional<z.ZodBoolean>;
|
4872
|
-
}, "strip", z.ZodTypeAny, {
|
4873
|
-
searchMode?: boolean | undefined;
|
4874
|
-
}, {
|
4875
|
-
searchMode?: boolean | undefined;
|
4876
|
-
}>>;
|
4877
5148
|
}>, "strip", z.ZodTypeAny, {
|
4878
5149
|
type: "ADDRESS";
|
4879
5150
|
id: string;
|
@@ -4931,7 +5202,8 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4931
5202
|
postcodeOrZip?: string | undefined;
|
4932
5203
|
} | undefined;
|
4933
5204
|
configuration?: {
|
4934
|
-
|
5205
|
+
lineSeparator?: string | undefined;
|
5206
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
4935
5207
|
} | undefined;
|
4936
5208
|
}, {
|
4937
5209
|
type: "ADDRESS";
|
@@ -5006,7 +5278,8 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5006
5278
|
postcodeOrZip?: string | undefined;
|
5007
5279
|
} | undefined;
|
5008
5280
|
configuration?: {
|
5009
|
-
|
5281
|
+
lineSeparator?: string | undefined;
|
5282
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
5010
5283
|
} | undefined;
|
5011
5284
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5012
5285
|
id: z.ZodString;
|
@@ -6962,16 +7235,114 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6962
7235
|
}, {
|
6963
7236
|
type: z.ZodLiteral<"NAME">;
|
6964
7237
|
defaultValue: z.ZodOptional<z.ZodObject<{
|
6965
|
-
firstname: z.ZodString
|
6966
|
-
|
7238
|
+
firstname: z.ZodOptional<z.ZodString>;
|
7239
|
+
middlename: z.ZodOptional<z.ZodString>;
|
7240
|
+
surname: z.ZodOptional<z.ZodString>;
|
6967
7241
|
}, "strip", z.ZodTypeAny, {
|
6968
|
-
firstname
|
6969
|
-
surname
|
7242
|
+
firstname?: string | undefined;
|
7243
|
+
surname?: string | undefined;
|
7244
|
+
middlename?: string | undefined;
|
6970
7245
|
}, {
|
6971
|
-
firstname
|
6972
|
-
surname
|
7246
|
+
firstname?: string | undefined;
|
7247
|
+
surname?: string | undefined;
|
7248
|
+
middlename?: string | undefined;
|
6973
7249
|
}>>;
|
6974
|
-
configuration: z.ZodOptional<z.ZodObject<{
|
7250
|
+
configuration: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
7251
|
+
name: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
7252
|
+
firstname: z.ZodOptional<z.ZodObject<{
|
7253
|
+
required: z.ZodBoolean;
|
7254
|
+
label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7255
|
+
id: string;
|
7256
|
+
description: string;
|
7257
|
+
defaultMessage: string;
|
7258
|
+
}>>;
|
7259
|
+
}, "strip", z.ZodTypeAny, {
|
7260
|
+
required: boolean;
|
7261
|
+
label?: TranslationConfig | undefined;
|
7262
|
+
}, {
|
7263
|
+
required: boolean;
|
7264
|
+
label?: {
|
7265
|
+
id: string;
|
7266
|
+
description: string;
|
7267
|
+
defaultMessage: string;
|
7268
|
+
} | undefined;
|
7269
|
+
}>>;
|
7270
|
+
middlename: z.ZodOptional<z.ZodObject<{
|
7271
|
+
required: z.ZodBoolean;
|
7272
|
+
label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7273
|
+
id: string;
|
7274
|
+
description: string;
|
7275
|
+
defaultMessage: string;
|
7276
|
+
}>>;
|
7277
|
+
}, "strip", z.ZodTypeAny, {
|
7278
|
+
required: boolean;
|
7279
|
+
label?: TranslationConfig | undefined;
|
7280
|
+
}, {
|
7281
|
+
required: boolean;
|
7282
|
+
label?: {
|
7283
|
+
id: string;
|
7284
|
+
description: string;
|
7285
|
+
defaultMessage: string;
|
7286
|
+
} | undefined;
|
7287
|
+
}>>;
|
7288
|
+
surname: z.ZodOptional<z.ZodObject<{
|
7289
|
+
required: z.ZodBoolean;
|
7290
|
+
label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7291
|
+
id: string;
|
7292
|
+
description: string;
|
7293
|
+
defaultMessage: string;
|
7294
|
+
}>>;
|
7295
|
+
}, "strip", z.ZodTypeAny, {
|
7296
|
+
required: boolean;
|
7297
|
+
label?: TranslationConfig | undefined;
|
7298
|
+
}, {
|
7299
|
+
required: boolean;
|
7300
|
+
label?: {
|
7301
|
+
id: string;
|
7302
|
+
description: string;
|
7303
|
+
defaultMessage: string;
|
7304
|
+
} | undefined;
|
7305
|
+
}>>;
|
7306
|
+
}, "strip", z.ZodTypeAny, {
|
7307
|
+
firstname?: {
|
7308
|
+
required: boolean;
|
7309
|
+
label?: TranslationConfig | undefined;
|
7310
|
+
} | undefined;
|
7311
|
+
surname?: {
|
7312
|
+
required: boolean;
|
7313
|
+
label?: TranslationConfig | undefined;
|
7314
|
+
} | undefined;
|
7315
|
+
middlename?: {
|
7316
|
+
required: boolean;
|
7317
|
+
label?: TranslationConfig | undefined;
|
7318
|
+
} | undefined;
|
7319
|
+
}, {
|
7320
|
+
firstname?: {
|
7321
|
+
required: boolean;
|
7322
|
+
label?: {
|
7323
|
+
id: string;
|
7324
|
+
description: string;
|
7325
|
+
defaultMessage: string;
|
7326
|
+
} | undefined;
|
7327
|
+
} | undefined;
|
7328
|
+
surname?: {
|
7329
|
+
required: boolean;
|
7330
|
+
label?: {
|
7331
|
+
id: string;
|
7332
|
+
description: string;
|
7333
|
+
defaultMessage: string;
|
7334
|
+
} | undefined;
|
7335
|
+
} | undefined;
|
7336
|
+
middlename?: {
|
7337
|
+
required: boolean;
|
7338
|
+
label?: {
|
7339
|
+
id: string;
|
7340
|
+
description: string;
|
7341
|
+
defaultMessage: string;
|
7342
|
+
} | undefined;
|
7343
|
+
} | undefined;
|
7344
|
+
}>>>;
|
7345
|
+
order: z.ZodOptional<z.ZodArray<z.ZodEnum<["firstname", "middlename", "surname"]>, "many">>;
|
6975
7346
|
maxLength: z.ZodOptional<z.ZodNumber>;
|
6976
7347
|
prefix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6977
7348
|
id: string;
|
@@ -6983,15 +7354,53 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6983
7354
|
description: string;
|
6984
7355
|
defaultMessage: string;
|
6985
7356
|
}>>;
|
6986
|
-
includeMiddlename: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6987
|
-
searchMode: z.ZodOptional<z.ZodBoolean>;
|
6988
7357
|
}, "strip", z.ZodTypeAny, {
|
7358
|
+
name?: {
|
7359
|
+
firstname?: {
|
7360
|
+
required: boolean;
|
7361
|
+
label?: TranslationConfig | undefined;
|
7362
|
+
} | undefined;
|
7363
|
+
surname?: {
|
7364
|
+
required: boolean;
|
7365
|
+
label?: TranslationConfig | undefined;
|
7366
|
+
} | undefined;
|
7367
|
+
middlename?: {
|
7368
|
+
required: boolean;
|
7369
|
+
label?: TranslationConfig | undefined;
|
7370
|
+
} | undefined;
|
7371
|
+
} | undefined;
|
7372
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
6989
7373
|
maxLength?: number | undefined;
|
6990
7374
|
prefix?: TranslationConfig | undefined;
|
6991
7375
|
postfix?: TranslationConfig | undefined;
|
6992
|
-
includeMiddlename?: boolean | undefined;
|
6993
|
-
searchMode?: boolean | undefined;
|
6994
7376
|
}, {
|
7377
|
+
name?: {
|
7378
|
+
firstname?: {
|
7379
|
+
required: boolean;
|
7380
|
+
label?: {
|
7381
|
+
id: string;
|
7382
|
+
description: string;
|
7383
|
+
defaultMessage: string;
|
7384
|
+
} | undefined;
|
7385
|
+
} | undefined;
|
7386
|
+
surname?: {
|
7387
|
+
required: boolean;
|
7388
|
+
label?: {
|
7389
|
+
id: string;
|
7390
|
+
description: string;
|
7391
|
+
defaultMessage: string;
|
7392
|
+
} | undefined;
|
7393
|
+
} | undefined;
|
7394
|
+
middlename?: {
|
7395
|
+
required: boolean;
|
7396
|
+
label?: {
|
7397
|
+
id: string;
|
7398
|
+
description: string;
|
7399
|
+
defaultMessage: string;
|
7400
|
+
} | undefined;
|
7401
|
+
} | undefined;
|
7402
|
+
} | undefined;
|
7403
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
6995
7404
|
maxLength?: number | undefined;
|
6996
7405
|
prefix?: {
|
6997
7406
|
id: string;
|
@@ -7003,9 +7412,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7003
7412
|
description: string;
|
7004
7413
|
defaultMessage: string;
|
7005
7414
|
} | undefined;
|
7006
|
-
|
7007
|
-
searchMode?: boolean | undefined;
|
7008
|
-
}>>;
|
7415
|
+
}>>>;
|
7009
7416
|
}>, "strip", z.ZodTypeAny, {
|
7010
7417
|
type: "NAME";
|
7011
7418
|
id: string;
|
@@ -7034,15 +7441,29 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7034
7441
|
hideLabel?: boolean | undefined;
|
7035
7442
|
uncorrectable?: boolean | undefined;
|
7036
7443
|
defaultValue?: {
|
7037
|
-
firstname
|
7038
|
-
surname
|
7444
|
+
firstname?: string | undefined;
|
7445
|
+
surname?: string | undefined;
|
7446
|
+
middlename?: string | undefined;
|
7039
7447
|
} | undefined;
|
7040
7448
|
configuration?: {
|
7449
|
+
name?: {
|
7450
|
+
firstname?: {
|
7451
|
+
required: boolean;
|
7452
|
+
label?: TranslationConfig | undefined;
|
7453
|
+
} | undefined;
|
7454
|
+
surname?: {
|
7455
|
+
required: boolean;
|
7456
|
+
label?: TranslationConfig | undefined;
|
7457
|
+
} | undefined;
|
7458
|
+
middlename?: {
|
7459
|
+
required: boolean;
|
7460
|
+
label?: TranslationConfig | undefined;
|
7461
|
+
} | undefined;
|
7462
|
+
} | undefined;
|
7463
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
7041
7464
|
maxLength?: number | undefined;
|
7042
7465
|
prefix?: TranslationConfig | undefined;
|
7043
7466
|
postfix?: TranslationConfig | undefined;
|
7044
|
-
includeMiddlename?: boolean | undefined;
|
7045
|
-
searchMode?: boolean | undefined;
|
7046
7467
|
} | undefined;
|
7047
7468
|
}, {
|
7048
7469
|
type: "NAME";
|
@@ -7088,10 +7509,38 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7088
7509
|
hideLabel?: boolean | undefined;
|
7089
7510
|
uncorrectable?: boolean | undefined;
|
7090
7511
|
defaultValue?: {
|
7091
|
-
firstname
|
7092
|
-
surname
|
7512
|
+
firstname?: string | undefined;
|
7513
|
+
surname?: string | undefined;
|
7514
|
+
middlename?: string | undefined;
|
7093
7515
|
} | undefined;
|
7094
7516
|
configuration?: {
|
7517
|
+
name?: {
|
7518
|
+
firstname?: {
|
7519
|
+
required: boolean;
|
7520
|
+
label?: {
|
7521
|
+
id: string;
|
7522
|
+
description: string;
|
7523
|
+
defaultMessage: string;
|
7524
|
+
} | undefined;
|
7525
|
+
} | undefined;
|
7526
|
+
surname?: {
|
7527
|
+
required: boolean;
|
7528
|
+
label?: {
|
7529
|
+
id: string;
|
7530
|
+
description: string;
|
7531
|
+
defaultMessage: string;
|
7532
|
+
} | undefined;
|
7533
|
+
} | undefined;
|
7534
|
+
middlename?: {
|
7535
|
+
required: boolean;
|
7536
|
+
label?: {
|
7537
|
+
id: string;
|
7538
|
+
description: string;
|
7539
|
+
defaultMessage: string;
|
7540
|
+
} | undefined;
|
7541
|
+
} | undefined;
|
7542
|
+
} | undefined;
|
7543
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
7095
7544
|
maxLength?: number | undefined;
|
7096
7545
|
prefix?: {
|
7097
7546
|
id: string;
|
@@ -7103,8 +7552,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7103
7552
|
description: string;
|
7104
7553
|
defaultMessage: string;
|
7105
7554
|
} | undefined;
|
7106
|
-
includeMiddlename?: boolean | undefined;
|
7107
|
-
searchMode?: boolean | undefined;
|
7108
7555
|
} | undefined;
|
7109
7556
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
7110
7557
|
id: z.ZodString;
|
@@ -9148,11 +9595,557 @@ export type LocationField = z.infer<typeof Location>;
|
|
9148
9595
|
export type RadioField = z.infer<typeof RadioGroup>;
|
9149
9596
|
export type AddressField = z.infer<typeof Address>;
|
9150
9597
|
export type NumberField = z.infer<typeof NumberField>;
|
9151
|
-
export type FieldConfig = Inferred;
|
9152
9598
|
export type FieldProps<T extends FieldType> = Extract<FieldConfig, {
|
9153
9599
|
type: T;
|
9154
9600
|
}>;
|
9155
9601
|
export type SelectOption = z.infer<typeof SelectOption>;
|
9156
9602
|
export type AdministrativeAreaConfiguration = z.infer<typeof AdministrativeAreaConfiguration>;
|
9603
|
+
/**
|
9604
|
+
* Union of file-related fields. Using common type should help with compiler to know where to add new cases.
|
9605
|
+
*/
|
9606
|
+
export declare const AnyFileField: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
|
9607
|
+
id: z.ZodString;
|
9608
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
9609
|
+
id: string;
|
9610
|
+
description: string;
|
9611
|
+
defaultMessage: string;
|
9612
|
+
}>;
|
9613
|
+
parent: z.ZodOptional<z.ZodObject<{
|
9614
|
+
$$field: z.ZodString;
|
9615
|
+
}, "strip", z.ZodTypeAny, {
|
9616
|
+
$$field: string;
|
9617
|
+
}, {
|
9618
|
+
$$field: string;
|
9619
|
+
}>>;
|
9620
|
+
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
9621
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
9622
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
9623
|
+
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
9624
|
+
id: string;
|
9625
|
+
description: string;
|
9626
|
+
defaultMessage: string;
|
9627
|
+
}>>;
|
9628
|
+
validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
|
9629
|
+
validator: z.ZodType<import(".").JSONSchema, z.ZodTypeDef, import(".").JSONSchema>;
|
9630
|
+
message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
9631
|
+
id: string;
|
9632
|
+
description: string;
|
9633
|
+
defaultMessage: string;
|
9634
|
+
}>;
|
9635
|
+
}, "strip", z.ZodTypeAny, {
|
9636
|
+
message: TranslationConfig;
|
9637
|
+
validator: import(".").JSONSchema;
|
9638
|
+
}, {
|
9639
|
+
message: {
|
9640
|
+
id: string;
|
9641
|
+
description: string;
|
9642
|
+
defaultMessage: string;
|
9643
|
+
};
|
9644
|
+
validator: import(".").JSONSchema;
|
9645
|
+
}>, "many">>>;
|
9646
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
9647
|
+
id: string;
|
9648
|
+
description: string;
|
9649
|
+
defaultMessage: string;
|
9650
|
+
}>>;
|
9651
|
+
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
9652
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
9653
|
+
}, {
|
9654
|
+
type: z.ZodLiteral<"SIGNATURE">;
|
9655
|
+
signaturePromptLabel: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
9656
|
+
id: string;
|
9657
|
+
description: string;
|
9658
|
+
defaultMessage: string;
|
9659
|
+
}>;
|
9660
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
9661
|
+
configuration: z.ZodDefault<z.ZodObject<{
|
9662
|
+
maxFileSize: z.ZodDefault<z.ZodNumber>;
|
9663
|
+
acceptedFileTypes: z.ZodOptional<z.ZodArray<z.ZodEnum<["image/png", "image/jpg", "image/jpeg", "image/svg+xml"]>, "many">>;
|
9664
|
+
}, "strip", z.ZodTypeAny, {
|
9665
|
+
maxFileSize: number;
|
9666
|
+
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
9667
|
+
}, {
|
9668
|
+
maxFileSize?: number | undefined;
|
9669
|
+
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
9670
|
+
}>>;
|
9671
|
+
}>, "strip", z.ZodTypeAny, {
|
9672
|
+
type: "SIGNATURE";
|
9673
|
+
id: string;
|
9674
|
+
label: TranslationConfig;
|
9675
|
+
configuration: {
|
9676
|
+
maxFileSize: number;
|
9677
|
+
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
9678
|
+
};
|
9679
|
+
signaturePromptLabel: TranslationConfig;
|
9680
|
+
parent?: {
|
9681
|
+
$$field: string;
|
9682
|
+
} | undefined;
|
9683
|
+
validation?: {
|
9684
|
+
message: TranslationConfig;
|
9685
|
+
validator: import(".").JSONSchema;
|
9686
|
+
}[] | undefined;
|
9687
|
+
required?: boolean | undefined;
|
9688
|
+
conditionals?: ({
|
9689
|
+
type: "SHOW";
|
9690
|
+
conditional: import(".").JSONSchema;
|
9691
|
+
} | {
|
9692
|
+
type: "ENABLE";
|
9693
|
+
conditional: import(".").JSONSchema;
|
9694
|
+
} | {
|
9695
|
+
type: "DISPLAY_ON_REVIEW";
|
9696
|
+
conditional: import(".").JSONSchema;
|
9697
|
+
})[] | undefined;
|
9698
|
+
secured?: boolean | undefined;
|
9699
|
+
placeholder?: TranslationConfig | undefined;
|
9700
|
+
helperText?: TranslationConfig | undefined;
|
9701
|
+
hideLabel?: boolean | undefined;
|
9702
|
+
uncorrectable?: boolean | undefined;
|
9703
|
+
defaultValue?: string | undefined;
|
9704
|
+
}, {
|
9705
|
+
type: "SIGNATURE";
|
9706
|
+
id: string;
|
9707
|
+
label: {
|
9708
|
+
id: string;
|
9709
|
+
description: string;
|
9710
|
+
defaultMessage: string;
|
9711
|
+
};
|
9712
|
+
signaturePromptLabel: {
|
9713
|
+
id: string;
|
9714
|
+
description: string;
|
9715
|
+
defaultMessage: string;
|
9716
|
+
};
|
9717
|
+
parent?: {
|
9718
|
+
$$field: string;
|
9719
|
+
} | undefined;
|
9720
|
+
validation?: {
|
9721
|
+
message: {
|
9722
|
+
id: string;
|
9723
|
+
description: string;
|
9724
|
+
defaultMessage: string;
|
9725
|
+
};
|
9726
|
+
validator: import(".").JSONSchema;
|
9727
|
+
}[] | undefined;
|
9728
|
+
required?: boolean | undefined;
|
9729
|
+
conditionals?: ({
|
9730
|
+
type: "SHOW";
|
9731
|
+
conditional: import(".").JSONSchema;
|
9732
|
+
} | {
|
9733
|
+
type: "ENABLE";
|
9734
|
+
conditional: import(".").JSONSchema;
|
9735
|
+
} | {
|
9736
|
+
type: "DISPLAY_ON_REVIEW";
|
9737
|
+
conditional: import(".").JSONSchema;
|
9738
|
+
})[] | undefined;
|
9739
|
+
secured?: boolean | undefined;
|
9740
|
+
placeholder?: {
|
9741
|
+
id: string;
|
9742
|
+
description: string;
|
9743
|
+
defaultMessage: string;
|
9744
|
+
} | undefined;
|
9745
|
+
helperText?: {
|
9746
|
+
id: string;
|
9747
|
+
description: string;
|
9748
|
+
defaultMessage: string;
|
9749
|
+
} | undefined;
|
9750
|
+
hideLabel?: boolean | undefined;
|
9751
|
+
uncorrectable?: boolean | undefined;
|
9752
|
+
defaultValue?: string | undefined;
|
9753
|
+
configuration?: {
|
9754
|
+
maxFileSize?: number | undefined;
|
9755
|
+
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
9756
|
+
} | undefined;
|
9757
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
9758
|
+
id: z.ZodString;
|
9759
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
9760
|
+
id: string;
|
9761
|
+
description: string;
|
9762
|
+
defaultMessage: string;
|
9763
|
+
}>;
|
9764
|
+
parent: z.ZodOptional<z.ZodObject<{
|
9765
|
+
$$field: z.ZodString;
|
9766
|
+
}, "strip", z.ZodTypeAny, {
|
9767
|
+
$$field: string;
|
9768
|
+
}, {
|
9769
|
+
$$field: string;
|
9770
|
+
}>>;
|
9771
|
+
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
9772
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
9773
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
9774
|
+
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
9775
|
+
id: string;
|
9776
|
+
description: string;
|
9777
|
+
defaultMessage: string;
|
9778
|
+
}>>;
|
9779
|
+
validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
|
9780
|
+
validator: z.ZodType<import(".").JSONSchema, z.ZodTypeDef, import(".").JSONSchema>;
|
9781
|
+
message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
9782
|
+
id: string;
|
9783
|
+
description: string;
|
9784
|
+
defaultMessage: string;
|
9785
|
+
}>;
|
9786
|
+
}, "strip", z.ZodTypeAny, {
|
9787
|
+
message: TranslationConfig;
|
9788
|
+
validator: import(".").JSONSchema;
|
9789
|
+
}, {
|
9790
|
+
message: {
|
9791
|
+
id: string;
|
9792
|
+
description: string;
|
9793
|
+
defaultMessage: string;
|
9794
|
+
};
|
9795
|
+
validator: import(".").JSONSchema;
|
9796
|
+
}>, "many">>>;
|
9797
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
9798
|
+
id: string;
|
9799
|
+
description: string;
|
9800
|
+
defaultMessage: string;
|
9801
|
+
}>>;
|
9802
|
+
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
9803
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
9804
|
+
}, {
|
9805
|
+
type: z.ZodLiteral<"FILE">;
|
9806
|
+
defaultValue: z.ZodOptional<z.ZodObject<{
|
9807
|
+
path: z.ZodEffects<z.ZodString, string, string>;
|
9808
|
+
originalFilename: z.ZodString;
|
9809
|
+
type: z.ZodString;
|
9810
|
+
}, "strip", z.ZodTypeAny, {
|
9811
|
+
type: string;
|
9812
|
+
path: string;
|
9813
|
+
originalFilename: string;
|
9814
|
+
}, {
|
9815
|
+
type: string;
|
9816
|
+
path: string;
|
9817
|
+
originalFilename: string;
|
9818
|
+
}>>;
|
9819
|
+
configuration: z.ZodDefault<z.ZodObject<{
|
9820
|
+
maxFileSize: z.ZodDefault<z.ZodNumber>;
|
9821
|
+
acceptedFileTypes: z.ZodOptional<z.ZodArray<z.ZodEnum<["image/png", "image/jpg", "image/jpeg", "image/svg+xml"]>, "many">>;
|
9822
|
+
style: z.ZodOptional<z.ZodObject<{
|
9823
|
+
width: z.ZodOptional<z.ZodEnum<["full", "auto"]>>;
|
9824
|
+
}, "strip", z.ZodTypeAny, {
|
9825
|
+
width?: "full" | "auto" | undefined;
|
9826
|
+
}, {
|
9827
|
+
width?: "full" | "auto" | undefined;
|
9828
|
+
}>>;
|
9829
|
+
fileName: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
9830
|
+
id: string;
|
9831
|
+
description: string;
|
9832
|
+
defaultMessage: string;
|
9833
|
+
}>>;
|
9834
|
+
}, "strip", z.ZodTypeAny, {
|
9835
|
+
maxFileSize: number;
|
9836
|
+
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
9837
|
+
style?: {
|
9838
|
+
width?: "full" | "auto" | undefined;
|
9839
|
+
} | undefined;
|
9840
|
+
fileName?: TranslationConfig | undefined;
|
9841
|
+
}, {
|
9842
|
+
maxFileSize?: number | undefined;
|
9843
|
+
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
9844
|
+
style?: {
|
9845
|
+
width?: "full" | "auto" | undefined;
|
9846
|
+
} | undefined;
|
9847
|
+
fileName?: {
|
9848
|
+
id: string;
|
9849
|
+
description: string;
|
9850
|
+
defaultMessage: string;
|
9851
|
+
} | undefined;
|
9852
|
+
}>>;
|
9853
|
+
}>, "strip", z.ZodTypeAny, {
|
9854
|
+
type: "FILE";
|
9855
|
+
id: string;
|
9856
|
+
label: TranslationConfig;
|
9857
|
+
configuration: {
|
9858
|
+
maxFileSize: number;
|
9859
|
+
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
9860
|
+
style?: {
|
9861
|
+
width?: "full" | "auto" | undefined;
|
9862
|
+
} | undefined;
|
9863
|
+
fileName?: TranslationConfig | undefined;
|
9864
|
+
};
|
9865
|
+
parent?: {
|
9866
|
+
$$field: string;
|
9867
|
+
} | undefined;
|
9868
|
+
validation?: {
|
9869
|
+
message: TranslationConfig;
|
9870
|
+
validator: import(".").JSONSchema;
|
9871
|
+
}[] | undefined;
|
9872
|
+
required?: boolean | undefined;
|
9873
|
+
conditionals?: ({
|
9874
|
+
type: "SHOW";
|
9875
|
+
conditional: import(".").JSONSchema;
|
9876
|
+
} | {
|
9877
|
+
type: "ENABLE";
|
9878
|
+
conditional: import(".").JSONSchema;
|
9879
|
+
} | {
|
9880
|
+
type: "DISPLAY_ON_REVIEW";
|
9881
|
+
conditional: import(".").JSONSchema;
|
9882
|
+
})[] | undefined;
|
9883
|
+
secured?: boolean | undefined;
|
9884
|
+
placeholder?: TranslationConfig | undefined;
|
9885
|
+
helperText?: TranslationConfig | undefined;
|
9886
|
+
hideLabel?: boolean | undefined;
|
9887
|
+
uncorrectable?: boolean | undefined;
|
9888
|
+
defaultValue?: {
|
9889
|
+
type: string;
|
9890
|
+
path: string;
|
9891
|
+
originalFilename: string;
|
9892
|
+
} | undefined;
|
9893
|
+
}, {
|
9894
|
+
type: "FILE";
|
9895
|
+
id: string;
|
9896
|
+
label: {
|
9897
|
+
id: string;
|
9898
|
+
description: string;
|
9899
|
+
defaultMessage: string;
|
9900
|
+
};
|
9901
|
+
parent?: {
|
9902
|
+
$$field: string;
|
9903
|
+
} | undefined;
|
9904
|
+
validation?: {
|
9905
|
+
message: {
|
9906
|
+
id: string;
|
9907
|
+
description: string;
|
9908
|
+
defaultMessage: string;
|
9909
|
+
};
|
9910
|
+
validator: import(".").JSONSchema;
|
9911
|
+
}[] | undefined;
|
9912
|
+
required?: boolean | undefined;
|
9913
|
+
conditionals?: ({
|
9914
|
+
type: "SHOW";
|
9915
|
+
conditional: import(".").JSONSchema;
|
9916
|
+
} | {
|
9917
|
+
type: "ENABLE";
|
9918
|
+
conditional: import(".").JSONSchema;
|
9919
|
+
} | {
|
9920
|
+
type: "DISPLAY_ON_REVIEW";
|
9921
|
+
conditional: import(".").JSONSchema;
|
9922
|
+
})[] | undefined;
|
9923
|
+
secured?: boolean | undefined;
|
9924
|
+
placeholder?: {
|
9925
|
+
id: string;
|
9926
|
+
description: string;
|
9927
|
+
defaultMessage: string;
|
9928
|
+
} | undefined;
|
9929
|
+
helperText?: {
|
9930
|
+
id: string;
|
9931
|
+
description: string;
|
9932
|
+
defaultMessage: string;
|
9933
|
+
} | undefined;
|
9934
|
+
hideLabel?: boolean | undefined;
|
9935
|
+
uncorrectable?: boolean | undefined;
|
9936
|
+
defaultValue?: {
|
9937
|
+
type: string;
|
9938
|
+
path: string;
|
9939
|
+
originalFilename: string;
|
9940
|
+
} | undefined;
|
9941
|
+
configuration?: {
|
9942
|
+
maxFileSize?: number | undefined;
|
9943
|
+
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
9944
|
+
style?: {
|
9945
|
+
width?: "full" | "auto" | undefined;
|
9946
|
+
} | undefined;
|
9947
|
+
fileName?: {
|
9948
|
+
id: string;
|
9949
|
+
description: string;
|
9950
|
+
defaultMessage: string;
|
9951
|
+
} | undefined;
|
9952
|
+
} | undefined;
|
9953
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
9954
|
+
id: z.ZodString;
|
9955
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
9956
|
+
id: string;
|
9957
|
+
description: string;
|
9958
|
+
defaultMessage: string;
|
9959
|
+
}>;
|
9960
|
+
parent: z.ZodOptional<z.ZodObject<{
|
9961
|
+
$$field: z.ZodString;
|
9962
|
+
}, "strip", z.ZodTypeAny, {
|
9963
|
+
$$field: string;
|
9964
|
+
}, {
|
9965
|
+
$$field: string;
|
9966
|
+
}>>;
|
9967
|
+
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
9968
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
9969
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
9970
|
+
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
9971
|
+
id: string;
|
9972
|
+
description: string;
|
9973
|
+
defaultMessage: string;
|
9974
|
+
}>>;
|
9975
|
+
validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
|
9976
|
+
validator: z.ZodType<import(".").JSONSchema, z.ZodTypeDef, import(".").JSONSchema>;
|
9977
|
+
message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
9978
|
+
id: string;
|
9979
|
+
description: string;
|
9980
|
+
defaultMessage: string;
|
9981
|
+
}>;
|
9982
|
+
}, "strip", z.ZodTypeAny, {
|
9983
|
+
message: TranslationConfig;
|
9984
|
+
validator: import(".").JSONSchema;
|
9985
|
+
}, {
|
9986
|
+
message: {
|
9987
|
+
id: string;
|
9988
|
+
description: string;
|
9989
|
+
defaultMessage: string;
|
9990
|
+
};
|
9991
|
+
validator: import(".").JSONSchema;
|
9992
|
+
}>, "many">>>;
|
9993
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
9994
|
+
id: string;
|
9995
|
+
description: string;
|
9996
|
+
defaultMessage: string;
|
9997
|
+
}>>;
|
9998
|
+
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
9999
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
10000
|
+
}, {
|
10001
|
+
type: z.ZodLiteral<"FILE_WITH_OPTIONS">;
|
10002
|
+
options: z.ZodArray<z.ZodObject<{
|
10003
|
+
value: z.ZodString;
|
10004
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
10005
|
+
id: string;
|
10006
|
+
description: string;
|
10007
|
+
defaultMessage: string;
|
10008
|
+
}>;
|
10009
|
+
}, "strip", z.ZodTypeAny, {
|
10010
|
+
value: string;
|
10011
|
+
label: TranslationConfig;
|
10012
|
+
}, {
|
10013
|
+
value: string;
|
10014
|
+
label: {
|
10015
|
+
id: string;
|
10016
|
+
description: string;
|
10017
|
+
defaultMessage: string;
|
10018
|
+
};
|
10019
|
+
}>, "many">;
|
10020
|
+
defaultValue: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
10021
|
+
path: z.ZodEffects<z.ZodString, string, string>;
|
10022
|
+
originalFilename: z.ZodString;
|
10023
|
+
type: z.ZodString;
|
10024
|
+
option: z.ZodString;
|
10025
|
+
}, "strip", z.ZodTypeAny, {
|
10026
|
+
type: string;
|
10027
|
+
option: string;
|
10028
|
+
path: string;
|
10029
|
+
originalFilename: string;
|
10030
|
+
}, {
|
10031
|
+
type: string;
|
10032
|
+
option: string;
|
10033
|
+
path: string;
|
10034
|
+
originalFilename: string;
|
10035
|
+
}>, "many">>;
|
10036
|
+
configuration: z.ZodDefault<z.ZodObject<{
|
10037
|
+
maxFileSize: z.ZodDefault<z.ZodNumber>;
|
10038
|
+
acceptedFileTypes: z.ZodOptional<z.ZodArray<z.ZodEnum<["image/png", "image/jpg", "image/jpeg", "image/svg+xml"]>, "many">>;
|
10039
|
+
}, "strip", z.ZodTypeAny, {
|
10040
|
+
maxFileSize: number;
|
10041
|
+
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
10042
|
+
}, {
|
10043
|
+
maxFileSize?: number | undefined;
|
10044
|
+
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
10045
|
+
}>>;
|
10046
|
+
}>, "strip", z.ZodTypeAny, {
|
10047
|
+
type: "FILE_WITH_OPTIONS";
|
10048
|
+
id: string;
|
10049
|
+
options: {
|
10050
|
+
value: string;
|
10051
|
+
label: TranslationConfig;
|
10052
|
+
}[];
|
10053
|
+
label: TranslationConfig;
|
10054
|
+
configuration: {
|
10055
|
+
maxFileSize: number;
|
10056
|
+
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
10057
|
+
};
|
10058
|
+
parent?: {
|
10059
|
+
$$field: string;
|
10060
|
+
} | undefined;
|
10061
|
+
validation?: {
|
10062
|
+
message: TranslationConfig;
|
10063
|
+
validator: import(".").JSONSchema;
|
10064
|
+
}[] | undefined;
|
10065
|
+
required?: boolean | undefined;
|
10066
|
+
conditionals?: ({
|
10067
|
+
type: "SHOW";
|
10068
|
+
conditional: import(".").JSONSchema;
|
10069
|
+
} | {
|
10070
|
+
type: "ENABLE";
|
10071
|
+
conditional: import(".").JSONSchema;
|
10072
|
+
} | {
|
10073
|
+
type: "DISPLAY_ON_REVIEW";
|
10074
|
+
conditional: import(".").JSONSchema;
|
10075
|
+
})[] | undefined;
|
10076
|
+
secured?: boolean | undefined;
|
10077
|
+
placeholder?: TranslationConfig | undefined;
|
10078
|
+
helperText?: TranslationConfig | undefined;
|
10079
|
+
hideLabel?: boolean | undefined;
|
10080
|
+
uncorrectable?: boolean | undefined;
|
10081
|
+
defaultValue?: {
|
10082
|
+
type: string;
|
10083
|
+
option: string;
|
10084
|
+
path: string;
|
10085
|
+
originalFilename: string;
|
10086
|
+
}[] | undefined;
|
10087
|
+
}, {
|
10088
|
+
type: "FILE_WITH_OPTIONS";
|
10089
|
+
id: string;
|
10090
|
+
options: {
|
10091
|
+
value: string;
|
10092
|
+
label: {
|
10093
|
+
id: string;
|
10094
|
+
description: string;
|
10095
|
+
defaultMessage: string;
|
10096
|
+
};
|
10097
|
+
}[];
|
10098
|
+
label: {
|
10099
|
+
id: string;
|
10100
|
+
description: string;
|
10101
|
+
defaultMessage: string;
|
10102
|
+
};
|
10103
|
+
parent?: {
|
10104
|
+
$$field: string;
|
10105
|
+
} | undefined;
|
10106
|
+
validation?: {
|
10107
|
+
message: {
|
10108
|
+
id: string;
|
10109
|
+
description: string;
|
10110
|
+
defaultMessage: string;
|
10111
|
+
};
|
10112
|
+
validator: import(".").JSONSchema;
|
10113
|
+
}[] | undefined;
|
10114
|
+
required?: boolean | undefined;
|
10115
|
+
conditionals?: ({
|
10116
|
+
type: "SHOW";
|
10117
|
+
conditional: import(".").JSONSchema;
|
10118
|
+
} | {
|
10119
|
+
type: "ENABLE";
|
10120
|
+
conditional: import(".").JSONSchema;
|
10121
|
+
} | {
|
10122
|
+
type: "DISPLAY_ON_REVIEW";
|
10123
|
+
conditional: import(".").JSONSchema;
|
10124
|
+
})[] | undefined;
|
10125
|
+
secured?: boolean | undefined;
|
10126
|
+
placeholder?: {
|
10127
|
+
id: string;
|
10128
|
+
description: string;
|
10129
|
+
defaultMessage: string;
|
10130
|
+
} | undefined;
|
10131
|
+
helperText?: {
|
10132
|
+
id: string;
|
10133
|
+
description: string;
|
10134
|
+
defaultMessage: string;
|
10135
|
+
} | undefined;
|
10136
|
+
hideLabel?: boolean | undefined;
|
10137
|
+
uncorrectable?: boolean | undefined;
|
10138
|
+
defaultValue?: {
|
10139
|
+
type: string;
|
10140
|
+
option: string;
|
10141
|
+
path: string;
|
10142
|
+
originalFilename: string;
|
10143
|
+
}[] | undefined;
|
10144
|
+
configuration?: {
|
10145
|
+
maxFileSize?: number | undefined;
|
10146
|
+
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
10147
|
+
} | undefined;
|
10148
|
+
}>]>;
|
10149
|
+
export type AnyFileField = z.infer<typeof AnyFileField>;
|
9157
10150
|
export {};
|
9158
10151
|
//# sourceMappingURL=FieldConfig.d.ts.map
|