@opencrvs/toolkit 1.8.1-rc.ebf61ab → 1.8.1-rc.ee55691
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/events/ActionConfig.d.ts +276 -1920
- package/dist/commons/events/EventConfig.d.ts +94 -586
- package/dist/commons/events/FieldConfig.d.ts +28 -263
- package/dist/commons/events/FormConfig.d.ts +132 -924
- package/dist/commons/events/PageConfig.d.ts +36 -260
- package/dist/commons/events/defineConfig.d.ts +18 -54
- package/dist/commons/events/utils.d.ts +32 -96
- package/dist/events/index.js +9 -31
- package/package.json +1 -1
@@ -62,16 +62,6 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
62
62
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
63
63
|
}, {
|
64
64
|
type: z.ZodLiteral<"ADDRESS">;
|
65
|
-
configuration: z.ZodOptional<z.ZodObject<{
|
66
|
-
lineSeparator: z.ZodOptional<z.ZodString>;
|
67
|
-
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">>;
|
68
|
-
}, "strip", z.ZodTypeAny, {
|
69
|
-
lineSeparator?: string | undefined;
|
70
|
-
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
71
|
-
}, {
|
72
|
-
lineSeparator?: string | undefined;
|
73
|
-
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
74
|
-
}>>;
|
75
65
|
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodDiscriminatedUnion<"urbanOrRural", [z.ZodObject<z.objectUtil.extendShape<{
|
76
66
|
country: z.ZodString;
|
77
67
|
addressType: z.ZodLiteral<"DOMESTIC">;
|
@@ -159,6 +149,13 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
159
149
|
addressLine3?: string | undefined;
|
160
150
|
postcodeOrZip?: string | undefined;
|
161
151
|
}>]>>;
|
152
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
153
|
+
searchMode: z.ZodOptional<z.ZodBoolean>;
|
154
|
+
}, "strip", z.ZodTypeAny, {
|
155
|
+
searchMode?: boolean | undefined;
|
156
|
+
}, {
|
157
|
+
searchMode?: boolean | undefined;
|
158
|
+
}>>;
|
162
159
|
}>, "strip", z.ZodTypeAny, {
|
163
160
|
type: "ADDRESS";
|
164
161
|
id: string;
|
@@ -216,8 +213,7 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
216
213
|
postcodeOrZip?: string | undefined;
|
217
214
|
} | undefined;
|
218
215
|
configuration?: {
|
219
|
-
|
220
|
-
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
216
|
+
searchMode?: boolean | undefined;
|
221
217
|
} | undefined;
|
222
218
|
}, {
|
223
219
|
type: "ADDRESS";
|
@@ -292,8 +288,7 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
292
288
|
postcodeOrZip?: string | undefined;
|
293
289
|
} | undefined;
|
294
290
|
configuration?: {
|
295
|
-
|
296
|
-
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
291
|
+
searchMode?: boolean | undefined;
|
297
292
|
} | undefined;
|
298
293
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
299
294
|
id: z.ZodString;
|
@@ -2265,98 +2260,46 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
2265
2260
|
name: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
2266
2261
|
firstname: z.ZodOptional<z.ZodObject<{
|
2267
2262
|
required: z.ZodBoolean;
|
2268
|
-
label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2269
|
-
id: string;
|
2270
|
-
description: string;
|
2271
|
-
defaultMessage: string;
|
2272
|
-
}>>;
|
2273
2263
|
}, "strip", z.ZodTypeAny, {
|
2274
2264
|
required: boolean;
|
2275
|
-
label?: TranslationConfig | undefined;
|
2276
2265
|
}, {
|
2277
2266
|
required: boolean;
|
2278
|
-
label?: {
|
2279
|
-
id: string;
|
2280
|
-
description: string;
|
2281
|
-
defaultMessage: string;
|
2282
|
-
} | undefined;
|
2283
2267
|
}>>;
|
2284
2268
|
middlename: z.ZodOptional<z.ZodObject<{
|
2285
2269
|
required: z.ZodBoolean;
|
2286
|
-
label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2287
|
-
id: string;
|
2288
|
-
description: string;
|
2289
|
-
defaultMessage: string;
|
2290
|
-
}>>;
|
2291
2270
|
}, "strip", z.ZodTypeAny, {
|
2292
2271
|
required: boolean;
|
2293
|
-
label?: TranslationConfig | undefined;
|
2294
2272
|
}, {
|
2295
2273
|
required: boolean;
|
2296
|
-
label?: {
|
2297
|
-
id: string;
|
2298
|
-
description: string;
|
2299
|
-
defaultMessage: string;
|
2300
|
-
} | undefined;
|
2301
2274
|
}>>;
|
2302
2275
|
surname: z.ZodOptional<z.ZodObject<{
|
2303
2276
|
required: z.ZodBoolean;
|
2304
|
-
label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2305
|
-
id: string;
|
2306
|
-
description: string;
|
2307
|
-
defaultMessage: string;
|
2308
|
-
}>>;
|
2309
2277
|
}, "strip", z.ZodTypeAny, {
|
2310
2278
|
required: boolean;
|
2311
|
-
label?: TranslationConfig | undefined;
|
2312
2279
|
}, {
|
2313
2280
|
required: boolean;
|
2314
|
-
label?: {
|
2315
|
-
id: string;
|
2316
|
-
description: string;
|
2317
|
-
defaultMessage: string;
|
2318
|
-
} | undefined;
|
2319
2281
|
}>>;
|
2320
2282
|
}, "strip", z.ZodTypeAny, {
|
2321
2283
|
firstname?: {
|
2322
2284
|
required: boolean;
|
2323
|
-
label?: TranslationConfig | undefined;
|
2324
2285
|
} | undefined;
|
2325
2286
|
surname?: {
|
2326
2287
|
required: boolean;
|
2327
|
-
label?: TranslationConfig | undefined;
|
2328
2288
|
} | undefined;
|
2329
2289
|
middlename?: {
|
2330
2290
|
required: boolean;
|
2331
|
-
label?: TranslationConfig | undefined;
|
2332
2291
|
} | undefined;
|
2333
2292
|
}, {
|
2334
2293
|
firstname?: {
|
2335
2294
|
required: boolean;
|
2336
|
-
label?: {
|
2337
|
-
id: string;
|
2338
|
-
description: string;
|
2339
|
-
defaultMessage: string;
|
2340
|
-
} | undefined;
|
2341
2295
|
} | undefined;
|
2342
2296
|
surname?: {
|
2343
2297
|
required: boolean;
|
2344
|
-
label?: {
|
2345
|
-
id: string;
|
2346
|
-
description: string;
|
2347
|
-
defaultMessage: string;
|
2348
|
-
} | undefined;
|
2349
2298
|
} | undefined;
|
2350
2299
|
middlename?: {
|
2351
2300
|
required: boolean;
|
2352
|
-
label?: {
|
2353
|
-
id: string;
|
2354
|
-
description: string;
|
2355
|
-
defaultMessage: string;
|
2356
|
-
} | undefined;
|
2357
2301
|
} | undefined;
|
2358
2302
|
}>>>;
|
2359
|
-
order: z.ZodOptional<z.ZodArray<z.ZodEnum<["firstname", "middlename", "surname"]>, "many">>;
|
2360
2303
|
maxLength: z.ZodOptional<z.ZodNumber>;
|
2361
2304
|
prefix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2362
2305
|
id: string;
|
@@ -2368,53 +2311,35 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
2368
2311
|
description: string;
|
2369
2312
|
defaultMessage: string;
|
2370
2313
|
}>>;
|
2314
|
+
searchMode: z.ZodOptional<z.ZodBoolean>;
|
2371
2315
|
}, "strip", z.ZodTypeAny, {
|
2372
2316
|
name?: {
|
2373
2317
|
firstname?: {
|
2374
2318
|
required: boolean;
|
2375
|
-
label?: TranslationConfig | undefined;
|
2376
2319
|
} | undefined;
|
2377
2320
|
surname?: {
|
2378
2321
|
required: boolean;
|
2379
|
-
label?: TranslationConfig | undefined;
|
2380
2322
|
} | undefined;
|
2381
2323
|
middlename?: {
|
2382
2324
|
required: boolean;
|
2383
|
-
label?: TranslationConfig | undefined;
|
2384
2325
|
} | undefined;
|
2385
2326
|
} | undefined;
|
2386
|
-
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
2387
2327
|
maxLength?: number | undefined;
|
2388
2328
|
prefix?: TranslationConfig | undefined;
|
2389
2329
|
postfix?: TranslationConfig | undefined;
|
2330
|
+
searchMode?: boolean | undefined;
|
2390
2331
|
}, {
|
2391
2332
|
name?: {
|
2392
2333
|
firstname?: {
|
2393
2334
|
required: boolean;
|
2394
|
-
label?: {
|
2395
|
-
id: string;
|
2396
|
-
description: string;
|
2397
|
-
defaultMessage: string;
|
2398
|
-
} | undefined;
|
2399
2335
|
} | undefined;
|
2400
2336
|
surname?: {
|
2401
2337
|
required: boolean;
|
2402
|
-
label?: {
|
2403
|
-
id: string;
|
2404
|
-
description: string;
|
2405
|
-
defaultMessage: string;
|
2406
|
-
} | undefined;
|
2407
2338
|
} | undefined;
|
2408
2339
|
middlename?: {
|
2409
2340
|
required: boolean;
|
2410
|
-
label?: {
|
2411
|
-
id: string;
|
2412
|
-
description: string;
|
2413
|
-
defaultMessage: string;
|
2414
|
-
} | undefined;
|
2415
2341
|
} | undefined;
|
2416
2342
|
} | undefined;
|
2417
|
-
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
2418
2343
|
maxLength?: number | undefined;
|
2419
2344
|
prefix?: {
|
2420
2345
|
id: string;
|
@@ -2426,6 +2351,7 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
2426
2351
|
description: string;
|
2427
2352
|
defaultMessage: string;
|
2428
2353
|
} | undefined;
|
2354
|
+
searchMode?: boolean | undefined;
|
2429
2355
|
}>>>;
|
2430
2356
|
}>, "strip", z.ZodTypeAny, {
|
2431
2357
|
type: "NAME";
|
@@ -2463,21 +2389,18 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
2463
2389
|
name?: {
|
2464
2390
|
firstname?: {
|
2465
2391
|
required: boolean;
|
2466
|
-
label?: TranslationConfig | undefined;
|
2467
2392
|
} | undefined;
|
2468
2393
|
surname?: {
|
2469
2394
|
required: boolean;
|
2470
|
-
label?: TranslationConfig | undefined;
|
2471
2395
|
} | undefined;
|
2472
2396
|
middlename?: {
|
2473
2397
|
required: boolean;
|
2474
|
-
label?: TranslationConfig | undefined;
|
2475
2398
|
} | undefined;
|
2476
2399
|
} | undefined;
|
2477
|
-
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
2478
2400
|
maxLength?: number | undefined;
|
2479
2401
|
prefix?: TranslationConfig | undefined;
|
2480
2402
|
postfix?: TranslationConfig | undefined;
|
2403
|
+
searchMode?: boolean | undefined;
|
2481
2404
|
} | undefined;
|
2482
2405
|
}, {
|
2483
2406
|
type: "NAME";
|
@@ -2531,30 +2454,14 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
2531
2454
|
name?: {
|
2532
2455
|
firstname?: {
|
2533
2456
|
required: boolean;
|
2534
|
-
label?: {
|
2535
|
-
id: string;
|
2536
|
-
description: string;
|
2537
|
-
defaultMessage: string;
|
2538
|
-
} | undefined;
|
2539
2457
|
} | undefined;
|
2540
2458
|
surname?: {
|
2541
2459
|
required: boolean;
|
2542
|
-
label?: {
|
2543
|
-
id: string;
|
2544
|
-
description: string;
|
2545
|
-
defaultMessage: string;
|
2546
|
-
} | undefined;
|
2547
2460
|
} | undefined;
|
2548
2461
|
middlename?: {
|
2549
2462
|
required: boolean;
|
2550
|
-
label?: {
|
2551
|
-
id: string;
|
2552
|
-
description: string;
|
2553
|
-
defaultMessage: string;
|
2554
|
-
} | undefined;
|
2555
2463
|
} | undefined;
|
2556
2464
|
} | undefined;
|
2557
|
-
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
2558
2465
|
maxLength?: number | undefined;
|
2559
2466
|
prefix?: {
|
2560
2467
|
id: string;
|
@@ -2566,6 +2473,7 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
2566
2473
|
description: string;
|
2567
2474
|
defaultMessage: string;
|
2568
2475
|
} | undefined;
|
2476
|
+
searchMode?: boolean | undefined;
|
2569
2477
|
} | undefined;
|
2570
2478
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2571
2479
|
id: z.ZodString;
|
@@ -5171,21 +5079,18 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
5171
5079
|
name?: {
|
5172
5080
|
firstname?: {
|
5173
5081
|
required: boolean;
|
5174
|
-
label?: TranslationConfig | undefined;
|
5175
5082
|
} | undefined;
|
5176
5083
|
surname?: {
|
5177
5084
|
required: boolean;
|
5178
|
-
label?: TranslationConfig | undefined;
|
5179
5085
|
} | undefined;
|
5180
5086
|
middlename?: {
|
5181
5087
|
required: boolean;
|
5182
|
-
label?: TranslationConfig | undefined;
|
5183
5088
|
} | undefined;
|
5184
5089
|
} | undefined;
|
5185
|
-
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
5186
5090
|
maxLength?: number | undefined;
|
5187
5091
|
prefix?: TranslationConfig | undefined;
|
5188
5092
|
postfix?: TranslationConfig | undefined;
|
5093
|
+
searchMode?: boolean | undefined;
|
5189
5094
|
} | undefined;
|
5190
5095
|
} | {
|
5191
5096
|
type: "PHONE";
|
@@ -5518,8 +5423,7 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
5518
5423
|
postcodeOrZip?: string | undefined;
|
5519
5424
|
} | undefined;
|
5520
5425
|
configuration?: {
|
5521
|
-
|
5522
|
-
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
5426
|
+
searchMode?: boolean | undefined;
|
5523
5427
|
} | undefined;
|
5524
5428
|
} | {
|
5525
5429
|
type: "DATA";
|
@@ -6461,30 +6365,14 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
6461
6365
|
name?: {
|
6462
6366
|
firstname?: {
|
6463
6367
|
required: boolean;
|
6464
|
-
label?: {
|
6465
|
-
id: string;
|
6466
|
-
description: string;
|
6467
|
-
defaultMessage: string;
|
6468
|
-
} | undefined;
|
6469
6368
|
} | undefined;
|
6470
6369
|
surname?: {
|
6471
6370
|
required: boolean;
|
6472
|
-
label?: {
|
6473
|
-
id: string;
|
6474
|
-
description: string;
|
6475
|
-
defaultMessage: string;
|
6476
|
-
} | undefined;
|
6477
6371
|
} | undefined;
|
6478
6372
|
middlename?: {
|
6479
6373
|
required: boolean;
|
6480
|
-
label?: {
|
6481
|
-
id: string;
|
6482
|
-
description: string;
|
6483
|
-
defaultMessage: string;
|
6484
|
-
} | undefined;
|
6485
6374
|
} | undefined;
|
6486
6375
|
} | undefined;
|
6487
|
-
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
6488
6376
|
maxLength?: number | undefined;
|
6489
6377
|
prefix?: {
|
6490
6378
|
id: string;
|
@@ -6496,6 +6384,7 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
6496
6384
|
description: string;
|
6497
6385
|
defaultMessage: string;
|
6498
6386
|
} | undefined;
|
6387
|
+
searchMode?: boolean | undefined;
|
6499
6388
|
} | undefined;
|
6500
6389
|
} | {
|
6501
6390
|
type: "PHONE";
|
@@ -6992,8 +6881,7 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
6992
6881
|
postcodeOrZip?: string | undefined;
|
6993
6882
|
} | undefined;
|
6994
6883
|
configuration?: {
|
6995
|
-
|
6996
|
-
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
6884
|
+
searchMode?: boolean | undefined;
|
6997
6885
|
} | undefined;
|
6998
6886
|
} | {
|
6999
6887
|
type: "DATA";
|
@@ -7632,21 +7520,18 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
7632
7520
|
name?: {
|
7633
7521
|
firstname?: {
|
7634
7522
|
required: boolean;
|
7635
|
-
label?: TranslationConfig | undefined;
|
7636
7523
|
} | undefined;
|
7637
7524
|
surname?: {
|
7638
7525
|
required: boolean;
|
7639
|
-
label?: TranslationConfig | undefined;
|
7640
7526
|
} | undefined;
|
7641
7527
|
middlename?: {
|
7642
7528
|
required: boolean;
|
7643
|
-
label?: TranslationConfig | undefined;
|
7644
7529
|
} | undefined;
|
7645
7530
|
} | undefined;
|
7646
|
-
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
7647
7531
|
maxLength?: number | undefined;
|
7648
7532
|
prefix?: TranslationConfig | undefined;
|
7649
7533
|
postfix?: TranslationConfig | undefined;
|
7534
|
+
searchMode?: boolean | undefined;
|
7650
7535
|
} | undefined;
|
7651
7536
|
} | {
|
7652
7537
|
type: "PHONE";
|
@@ -7979,8 +7864,7 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
7979
7864
|
postcodeOrZip?: string | undefined;
|
7980
7865
|
} | undefined;
|
7981
7866
|
configuration?: {
|
7982
|
-
|
7983
|
-
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
7867
|
+
searchMode?: boolean | undefined;
|
7984
7868
|
} | undefined;
|
7985
7869
|
} | {
|
7986
7870
|
type: "DATA";
|
@@ -8929,30 +8813,14 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
8929
8813
|
name?: {
|
8930
8814
|
firstname?: {
|
8931
8815
|
required: boolean;
|
8932
|
-
label?: {
|
8933
|
-
id: string;
|
8934
|
-
description: string;
|
8935
|
-
defaultMessage: string;
|
8936
|
-
} | undefined;
|
8937
8816
|
} | undefined;
|
8938
8817
|
surname?: {
|
8939
8818
|
required: boolean;
|
8940
|
-
label?: {
|
8941
|
-
id: string;
|
8942
|
-
description: string;
|
8943
|
-
defaultMessage: string;
|
8944
|
-
} | undefined;
|
8945
8819
|
} | undefined;
|
8946
8820
|
middlename?: {
|
8947
8821
|
required: boolean;
|
8948
|
-
label?: {
|
8949
|
-
id: string;
|
8950
|
-
description: string;
|
8951
|
-
defaultMessage: string;
|
8952
|
-
} | undefined;
|
8953
8822
|
} | undefined;
|
8954
8823
|
} | undefined;
|
8955
|
-
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
8956
8824
|
maxLength?: number | undefined;
|
8957
8825
|
prefix?: {
|
8958
8826
|
id: string;
|
@@ -8964,6 +8832,7 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
8964
8832
|
description: string;
|
8965
8833
|
defaultMessage: string;
|
8966
8834
|
} | undefined;
|
8835
|
+
searchMode?: boolean | undefined;
|
8967
8836
|
} | undefined;
|
8968
8837
|
} | {
|
8969
8838
|
type: "PHONE";
|
@@ -9460,8 +9329,7 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
9460
9329
|
postcodeOrZip?: string | undefined;
|
9461
9330
|
} | undefined;
|
9462
9331
|
configuration?: {
|
9463
|
-
|
9464
|
-
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
9332
|
+
searchMode?: boolean | undefined;
|
9465
9333
|
} | undefined;
|
9466
9334
|
} | {
|
9467
9335
|
type: "DATA";
|
@@ -9596,16 +9464,6 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
9596
9464
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
9597
9465
|
}, {
|
9598
9466
|
type: z.ZodLiteral<"ADDRESS">;
|
9599
|
-
configuration: z.ZodOptional<z.ZodObject<{
|
9600
|
-
lineSeparator: z.ZodOptional<z.ZodString>;
|
9601
|
-
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">>;
|
9602
|
-
}, "strip", z.ZodTypeAny, {
|
9603
|
-
lineSeparator?: string | undefined;
|
9604
|
-
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
9605
|
-
}, {
|
9606
|
-
lineSeparator?: string | undefined;
|
9607
|
-
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
9608
|
-
}>>;
|
9609
9467
|
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodDiscriminatedUnion<"urbanOrRural", [z.ZodObject<z.objectUtil.extendShape<{
|
9610
9468
|
country: z.ZodString;
|
9611
9469
|
addressType: z.ZodLiteral<"DOMESTIC">;
|
@@ -9693,6 +9551,13 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
9693
9551
|
addressLine3?: string | undefined;
|
9694
9552
|
postcodeOrZip?: string | undefined;
|
9695
9553
|
}>]>>;
|
9554
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
9555
|
+
searchMode: z.ZodOptional<z.ZodBoolean>;
|
9556
|
+
}, "strip", z.ZodTypeAny, {
|
9557
|
+
searchMode?: boolean | undefined;
|
9558
|
+
}, {
|
9559
|
+
searchMode?: boolean | undefined;
|
9560
|
+
}>>;
|
9696
9561
|
}>, "strip", z.ZodTypeAny, {
|
9697
9562
|
type: "ADDRESS";
|
9698
9563
|
id: string;
|
@@ -9750,8 +9615,7 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
9750
9615
|
postcodeOrZip?: string | undefined;
|
9751
9616
|
} | undefined;
|
9752
9617
|
configuration?: {
|
9753
|
-
|
9754
|
-
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
9618
|
+
searchMode?: boolean | undefined;
|
9755
9619
|
} | undefined;
|
9756
9620
|
}, {
|
9757
9621
|
type: "ADDRESS";
|
@@ -9826,8 +9690,7 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
9826
9690
|
postcodeOrZip?: string | undefined;
|
9827
9691
|
} | undefined;
|
9828
9692
|
configuration?: {
|
9829
|
-
|
9830
|
-
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
9693
|
+
searchMode?: boolean | undefined;
|
9831
9694
|
} | undefined;
|
9832
9695
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
9833
9696
|
id: z.ZodString;
|
@@ -11799,98 +11662,46 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
11799
11662
|
name: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
11800
11663
|
firstname: z.ZodOptional<z.ZodObject<{
|
11801
11664
|
required: z.ZodBoolean;
|
11802
|
-
label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
11803
|
-
id: string;
|
11804
|
-
description: string;
|
11805
|
-
defaultMessage: string;
|
11806
|
-
}>>;
|
11807
11665
|
}, "strip", z.ZodTypeAny, {
|
11808
11666
|
required: boolean;
|
11809
|
-
label?: TranslationConfig | undefined;
|
11810
11667
|
}, {
|
11811
11668
|
required: boolean;
|
11812
|
-
label?: {
|
11813
|
-
id: string;
|
11814
|
-
description: string;
|
11815
|
-
defaultMessage: string;
|
11816
|
-
} | undefined;
|
11817
11669
|
}>>;
|
11818
11670
|
middlename: z.ZodOptional<z.ZodObject<{
|
11819
11671
|
required: z.ZodBoolean;
|
11820
|
-
label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
11821
|
-
id: string;
|
11822
|
-
description: string;
|
11823
|
-
defaultMessage: string;
|
11824
|
-
}>>;
|
11825
11672
|
}, "strip", z.ZodTypeAny, {
|
11826
11673
|
required: boolean;
|
11827
|
-
label?: TranslationConfig | undefined;
|
11828
11674
|
}, {
|
11829
11675
|
required: boolean;
|
11830
|
-
label?: {
|
11831
|
-
id: string;
|
11832
|
-
description: string;
|
11833
|
-
defaultMessage: string;
|
11834
|
-
} | undefined;
|
11835
11676
|
}>>;
|
11836
11677
|
surname: z.ZodOptional<z.ZodObject<{
|
11837
11678
|
required: z.ZodBoolean;
|
11838
|
-
label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
11839
|
-
id: string;
|
11840
|
-
description: string;
|
11841
|
-
defaultMessage: string;
|
11842
|
-
}>>;
|
11843
11679
|
}, "strip", z.ZodTypeAny, {
|
11844
11680
|
required: boolean;
|
11845
|
-
label?: TranslationConfig | undefined;
|
11846
11681
|
}, {
|
11847
11682
|
required: boolean;
|
11848
|
-
label?: {
|
11849
|
-
id: string;
|
11850
|
-
description: string;
|
11851
|
-
defaultMessage: string;
|
11852
|
-
} | undefined;
|
11853
11683
|
}>>;
|
11854
11684
|
}, "strip", z.ZodTypeAny, {
|
11855
11685
|
firstname?: {
|
11856
11686
|
required: boolean;
|
11857
|
-
label?: TranslationConfig | undefined;
|
11858
11687
|
} | undefined;
|
11859
11688
|
surname?: {
|
11860
11689
|
required: boolean;
|
11861
|
-
label?: TranslationConfig | undefined;
|
11862
11690
|
} | undefined;
|
11863
11691
|
middlename?: {
|
11864
11692
|
required: boolean;
|
11865
|
-
label?: TranslationConfig | undefined;
|
11866
11693
|
} | undefined;
|
11867
11694
|
}, {
|
11868
11695
|
firstname?: {
|
11869
11696
|
required: boolean;
|
11870
|
-
label?: {
|
11871
|
-
id: string;
|
11872
|
-
description: string;
|
11873
|
-
defaultMessage: string;
|
11874
|
-
} | undefined;
|
11875
11697
|
} | undefined;
|
11876
11698
|
surname?: {
|
11877
11699
|
required: boolean;
|
11878
|
-
label?: {
|
11879
|
-
id: string;
|
11880
|
-
description: string;
|
11881
|
-
defaultMessage: string;
|
11882
|
-
} | undefined;
|
11883
11700
|
} | undefined;
|
11884
11701
|
middlename?: {
|
11885
11702
|
required: boolean;
|
11886
|
-
label?: {
|
11887
|
-
id: string;
|
11888
|
-
description: string;
|
11889
|
-
defaultMessage: string;
|
11890
|
-
} | undefined;
|
11891
11703
|
} | undefined;
|
11892
11704
|
}>>>;
|
11893
|
-
order: z.ZodOptional<z.ZodArray<z.ZodEnum<["firstname", "middlename", "surname"]>, "many">>;
|
11894
11705
|
maxLength: z.ZodOptional<z.ZodNumber>;
|
11895
11706
|
prefix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
11896
11707
|
id: string;
|
@@ -11902,53 +11713,35 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
11902
11713
|
description: string;
|
11903
11714
|
defaultMessage: string;
|
11904
11715
|
}>>;
|
11716
|
+
searchMode: z.ZodOptional<z.ZodBoolean>;
|
11905
11717
|
}, "strip", z.ZodTypeAny, {
|
11906
11718
|
name?: {
|
11907
11719
|
firstname?: {
|
11908
11720
|
required: boolean;
|
11909
|
-
label?: TranslationConfig | undefined;
|
11910
11721
|
} | undefined;
|
11911
11722
|
surname?: {
|
11912
11723
|
required: boolean;
|
11913
|
-
label?: TranslationConfig | undefined;
|
11914
11724
|
} | undefined;
|
11915
11725
|
middlename?: {
|
11916
11726
|
required: boolean;
|
11917
|
-
label?: TranslationConfig | undefined;
|
11918
11727
|
} | undefined;
|
11919
11728
|
} | undefined;
|
11920
|
-
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
11921
11729
|
maxLength?: number | undefined;
|
11922
11730
|
prefix?: TranslationConfig | undefined;
|
11923
11731
|
postfix?: TranslationConfig | undefined;
|
11732
|
+
searchMode?: boolean | undefined;
|
11924
11733
|
}, {
|
11925
11734
|
name?: {
|
11926
11735
|
firstname?: {
|
11927
11736
|
required: boolean;
|
11928
|
-
label?: {
|
11929
|
-
id: string;
|
11930
|
-
description: string;
|
11931
|
-
defaultMessage: string;
|
11932
|
-
} | undefined;
|
11933
11737
|
} | undefined;
|
11934
11738
|
surname?: {
|
11935
11739
|
required: boolean;
|
11936
|
-
label?: {
|
11937
|
-
id: string;
|
11938
|
-
description: string;
|
11939
|
-
defaultMessage: string;
|
11940
|
-
} | undefined;
|
11941
11740
|
} | undefined;
|
11942
11741
|
middlename?: {
|
11943
11742
|
required: boolean;
|
11944
|
-
label?: {
|
11945
|
-
id: string;
|
11946
|
-
description: string;
|
11947
|
-
defaultMessage: string;
|
11948
|
-
} | undefined;
|
11949
11743
|
} | undefined;
|
11950
11744
|
} | undefined;
|
11951
|
-
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
11952
11745
|
maxLength?: number | undefined;
|
11953
11746
|
prefix?: {
|
11954
11747
|
id: string;
|
@@ -11960,6 +11753,7 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
11960
11753
|
description: string;
|
11961
11754
|
defaultMessage: string;
|
11962
11755
|
} | undefined;
|
11756
|
+
searchMode?: boolean | undefined;
|
11963
11757
|
}>>>;
|
11964
11758
|
}>, "strip", z.ZodTypeAny, {
|
11965
11759
|
type: "NAME";
|
@@ -11997,21 +11791,18 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
11997
11791
|
name?: {
|
11998
11792
|
firstname?: {
|
11999
11793
|
required: boolean;
|
12000
|
-
label?: TranslationConfig | undefined;
|
12001
11794
|
} | undefined;
|
12002
11795
|
surname?: {
|
12003
11796
|
required: boolean;
|
12004
|
-
label?: TranslationConfig | undefined;
|
12005
11797
|
} | undefined;
|
12006
11798
|
middlename?: {
|
12007
11799
|
required: boolean;
|
12008
|
-
label?: TranslationConfig | undefined;
|
12009
11800
|
} | undefined;
|
12010
11801
|
} | undefined;
|
12011
|
-
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
12012
11802
|
maxLength?: number | undefined;
|
12013
11803
|
prefix?: TranslationConfig | undefined;
|
12014
11804
|
postfix?: TranslationConfig | undefined;
|
11805
|
+
searchMode?: boolean | undefined;
|
12015
11806
|
} | undefined;
|
12016
11807
|
}, {
|
12017
11808
|
type: "NAME";
|
@@ -12065,30 +11856,14 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
12065
11856
|
name?: {
|
12066
11857
|
firstname?: {
|
12067
11858
|
required: boolean;
|
12068
|
-
label?: {
|
12069
|
-
id: string;
|
12070
|
-
description: string;
|
12071
|
-
defaultMessage: string;
|
12072
|
-
} | undefined;
|
12073
11859
|
} | undefined;
|
12074
11860
|
surname?: {
|
12075
11861
|
required: boolean;
|
12076
|
-
label?: {
|
12077
|
-
id: string;
|
12078
|
-
description: string;
|
12079
|
-
defaultMessage: string;
|
12080
|
-
} | undefined;
|
12081
11862
|
} | undefined;
|
12082
11863
|
middlename?: {
|
12083
11864
|
required: boolean;
|
12084
|
-
label?: {
|
12085
|
-
id: string;
|
12086
|
-
description: string;
|
12087
|
-
defaultMessage: string;
|
12088
|
-
} | undefined;
|
12089
11865
|
} | undefined;
|
12090
11866
|
} | undefined;
|
12091
|
-
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
12092
11867
|
maxLength?: number | undefined;
|
12093
11868
|
prefix?: {
|
12094
11869
|
id: string;
|
@@ -12100,6 +11875,7 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
12100
11875
|
description: string;
|
12101
11876
|
defaultMessage: string;
|
12102
11877
|
} | undefined;
|
11878
|
+
searchMode?: boolean | undefined;
|
12103
11879
|
} | undefined;
|
12104
11880
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
12105
11881
|
id: z.ZodString;
|
@@ -14705,21 +14481,18 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
14705
14481
|
name?: {
|
14706
14482
|
firstname?: {
|
14707
14483
|
required: boolean;
|
14708
|
-
label?: TranslationConfig | undefined;
|
14709
14484
|
} | undefined;
|
14710
14485
|
surname?: {
|
14711
14486
|
required: boolean;
|
14712
|
-
label?: TranslationConfig | undefined;
|
14713
14487
|
} | undefined;
|
14714
14488
|
middlename?: {
|
14715
14489
|
required: boolean;
|
14716
|
-
label?: TranslationConfig | undefined;
|
14717
14490
|
} | undefined;
|
14718
14491
|
} | undefined;
|
14719
|
-
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
14720
14492
|
maxLength?: number | undefined;
|
14721
14493
|
prefix?: TranslationConfig | undefined;
|
14722
14494
|
postfix?: TranslationConfig | undefined;
|
14495
|
+
searchMode?: boolean | undefined;
|
14723
14496
|
} | undefined;
|
14724
14497
|
} | {
|
14725
14498
|
type: "PHONE";
|
@@ -15052,8 +14825,7 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
15052
14825
|
postcodeOrZip?: string | undefined;
|
15053
14826
|
} | undefined;
|
15054
14827
|
configuration?: {
|
15055
|
-
|
15056
|
-
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
14828
|
+
searchMode?: boolean | undefined;
|
15057
14829
|
} | undefined;
|
15058
14830
|
} | {
|
15059
14831
|
type: "DATA";
|
@@ -15995,30 +15767,14 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
15995
15767
|
name?: {
|
15996
15768
|
firstname?: {
|
15997
15769
|
required: boolean;
|
15998
|
-
label?: {
|
15999
|
-
id: string;
|
16000
|
-
description: string;
|
16001
|
-
defaultMessage: string;
|
16002
|
-
} | undefined;
|
16003
15770
|
} | undefined;
|
16004
15771
|
surname?: {
|
16005
15772
|
required: boolean;
|
16006
|
-
label?: {
|
16007
|
-
id: string;
|
16008
|
-
description: string;
|
16009
|
-
defaultMessage: string;
|
16010
|
-
} | undefined;
|
16011
15773
|
} | undefined;
|
16012
15774
|
middlename?: {
|
16013
15775
|
required: boolean;
|
16014
|
-
label?: {
|
16015
|
-
id: string;
|
16016
|
-
description: string;
|
16017
|
-
defaultMessage: string;
|
16018
|
-
} | undefined;
|
16019
15776
|
} | undefined;
|
16020
15777
|
} | undefined;
|
16021
|
-
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
16022
15778
|
maxLength?: number | undefined;
|
16023
15779
|
prefix?: {
|
16024
15780
|
id: string;
|
@@ -16030,6 +15786,7 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
16030
15786
|
description: string;
|
16031
15787
|
defaultMessage: string;
|
16032
15788
|
} | undefined;
|
15789
|
+
searchMode?: boolean | undefined;
|
16033
15790
|
} | undefined;
|
16034
15791
|
} | {
|
16035
15792
|
type: "PHONE";
|
@@ -16526,8 +16283,7 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
16526
16283
|
postcodeOrZip?: string | undefined;
|
16527
16284
|
} | undefined;
|
16528
16285
|
configuration?: {
|
16529
|
-
|
16530
|
-
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
16286
|
+
searchMode?: boolean | undefined;
|
16531
16287
|
} | undefined;
|
16532
16288
|
} | {
|
16533
16289
|
type: "DATA";
|
@@ -16652,16 +16408,6 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
16652
16408
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
16653
16409
|
}, {
|
16654
16410
|
type: z.ZodLiteral<"ADDRESS">;
|
16655
|
-
configuration: z.ZodOptional<z.ZodObject<{
|
16656
|
-
lineSeparator: z.ZodOptional<z.ZodString>;
|
16657
|
-
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">>;
|
16658
|
-
}, "strip", z.ZodTypeAny, {
|
16659
|
-
lineSeparator?: string | undefined;
|
16660
|
-
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
16661
|
-
}, {
|
16662
|
-
lineSeparator?: string | undefined;
|
16663
|
-
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
16664
|
-
}>>;
|
16665
16411
|
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodDiscriminatedUnion<"urbanOrRural", [z.ZodObject<z.objectUtil.extendShape<{
|
16666
16412
|
country: z.ZodString;
|
16667
16413
|
addressType: z.ZodLiteral<"DOMESTIC">;
|
@@ -16749,6 +16495,13 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
16749
16495
|
addressLine3?: string | undefined;
|
16750
16496
|
postcodeOrZip?: string | undefined;
|
16751
16497
|
}>]>>;
|
16498
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
16499
|
+
searchMode: z.ZodOptional<z.ZodBoolean>;
|
16500
|
+
}, "strip", z.ZodTypeAny, {
|
16501
|
+
searchMode?: boolean | undefined;
|
16502
|
+
}, {
|
16503
|
+
searchMode?: boolean | undefined;
|
16504
|
+
}>>;
|
16752
16505
|
}>, "strip", z.ZodTypeAny, {
|
16753
16506
|
type: "ADDRESS";
|
16754
16507
|
id: string;
|
@@ -16806,8 +16559,7 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
16806
16559
|
postcodeOrZip?: string | undefined;
|
16807
16560
|
} | undefined;
|
16808
16561
|
configuration?: {
|
16809
|
-
|
16810
|
-
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
16562
|
+
searchMode?: boolean | undefined;
|
16811
16563
|
} | undefined;
|
16812
16564
|
}, {
|
16813
16565
|
type: "ADDRESS";
|
@@ -16882,8 +16634,7 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
16882
16634
|
postcodeOrZip?: string | undefined;
|
16883
16635
|
} | undefined;
|
16884
16636
|
configuration?: {
|
16885
|
-
|
16886
|
-
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
16637
|
+
searchMode?: boolean | undefined;
|
16887
16638
|
} | undefined;
|
16888
16639
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
16889
16640
|
id: z.ZodString;
|
@@ -18855,98 +18606,46 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
18855
18606
|
name: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
18856
18607
|
firstname: z.ZodOptional<z.ZodObject<{
|
18857
18608
|
required: z.ZodBoolean;
|
18858
|
-
label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
18859
|
-
id: string;
|
18860
|
-
description: string;
|
18861
|
-
defaultMessage: string;
|
18862
|
-
}>>;
|
18863
18609
|
}, "strip", z.ZodTypeAny, {
|
18864
18610
|
required: boolean;
|
18865
|
-
label?: TranslationConfig | undefined;
|
18866
18611
|
}, {
|
18867
18612
|
required: boolean;
|
18868
|
-
label?: {
|
18869
|
-
id: string;
|
18870
|
-
description: string;
|
18871
|
-
defaultMessage: string;
|
18872
|
-
} | undefined;
|
18873
18613
|
}>>;
|
18874
18614
|
middlename: z.ZodOptional<z.ZodObject<{
|
18875
18615
|
required: z.ZodBoolean;
|
18876
|
-
label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
18877
|
-
id: string;
|
18878
|
-
description: string;
|
18879
|
-
defaultMessage: string;
|
18880
|
-
}>>;
|
18881
18616
|
}, "strip", z.ZodTypeAny, {
|
18882
18617
|
required: boolean;
|
18883
|
-
label?: TranslationConfig | undefined;
|
18884
18618
|
}, {
|
18885
18619
|
required: boolean;
|
18886
|
-
label?: {
|
18887
|
-
id: string;
|
18888
|
-
description: string;
|
18889
|
-
defaultMessage: string;
|
18890
|
-
} | undefined;
|
18891
18620
|
}>>;
|
18892
18621
|
surname: z.ZodOptional<z.ZodObject<{
|
18893
18622
|
required: z.ZodBoolean;
|
18894
|
-
label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
18895
|
-
id: string;
|
18896
|
-
description: string;
|
18897
|
-
defaultMessage: string;
|
18898
|
-
}>>;
|
18899
18623
|
}, "strip", z.ZodTypeAny, {
|
18900
18624
|
required: boolean;
|
18901
|
-
label?: TranslationConfig | undefined;
|
18902
18625
|
}, {
|
18903
18626
|
required: boolean;
|
18904
|
-
label?: {
|
18905
|
-
id: string;
|
18906
|
-
description: string;
|
18907
|
-
defaultMessage: string;
|
18908
|
-
} | undefined;
|
18909
18627
|
}>>;
|
18910
18628
|
}, "strip", z.ZodTypeAny, {
|
18911
18629
|
firstname?: {
|
18912
18630
|
required: boolean;
|
18913
|
-
label?: TranslationConfig | undefined;
|
18914
18631
|
} | undefined;
|
18915
18632
|
surname?: {
|
18916
18633
|
required: boolean;
|
18917
|
-
label?: TranslationConfig | undefined;
|
18918
18634
|
} | undefined;
|
18919
18635
|
middlename?: {
|
18920
18636
|
required: boolean;
|
18921
|
-
label?: TranslationConfig | undefined;
|
18922
18637
|
} | undefined;
|
18923
18638
|
}, {
|
18924
18639
|
firstname?: {
|
18925
18640
|
required: boolean;
|
18926
|
-
label?: {
|
18927
|
-
id: string;
|
18928
|
-
description: string;
|
18929
|
-
defaultMessage: string;
|
18930
|
-
} | undefined;
|
18931
18641
|
} | undefined;
|
18932
18642
|
surname?: {
|
18933
18643
|
required: boolean;
|
18934
|
-
label?: {
|
18935
|
-
id: string;
|
18936
|
-
description: string;
|
18937
|
-
defaultMessage: string;
|
18938
|
-
} | undefined;
|
18939
18644
|
} | undefined;
|
18940
18645
|
middlename?: {
|
18941
18646
|
required: boolean;
|
18942
|
-
label?: {
|
18943
|
-
id: string;
|
18944
|
-
description: string;
|
18945
|
-
defaultMessage: string;
|
18946
|
-
} | undefined;
|
18947
18647
|
} | undefined;
|
18948
18648
|
}>>>;
|
18949
|
-
order: z.ZodOptional<z.ZodArray<z.ZodEnum<["firstname", "middlename", "surname"]>, "many">>;
|
18950
18649
|
maxLength: z.ZodOptional<z.ZodNumber>;
|
18951
18650
|
prefix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
18952
18651
|
id: string;
|
@@ -18958,53 +18657,35 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
18958
18657
|
description: string;
|
18959
18658
|
defaultMessage: string;
|
18960
18659
|
}>>;
|
18660
|
+
searchMode: z.ZodOptional<z.ZodBoolean>;
|
18961
18661
|
}, "strip", z.ZodTypeAny, {
|
18962
18662
|
name?: {
|
18963
18663
|
firstname?: {
|
18964
18664
|
required: boolean;
|
18965
|
-
label?: TranslationConfig | undefined;
|
18966
18665
|
} | undefined;
|
18967
18666
|
surname?: {
|
18968
18667
|
required: boolean;
|
18969
|
-
label?: TranslationConfig | undefined;
|
18970
18668
|
} | undefined;
|
18971
18669
|
middlename?: {
|
18972
18670
|
required: boolean;
|
18973
|
-
label?: TranslationConfig | undefined;
|
18974
18671
|
} | undefined;
|
18975
18672
|
} | undefined;
|
18976
|
-
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
18977
18673
|
maxLength?: number | undefined;
|
18978
18674
|
prefix?: TranslationConfig | undefined;
|
18979
18675
|
postfix?: TranslationConfig | undefined;
|
18676
|
+
searchMode?: boolean | undefined;
|
18980
18677
|
}, {
|
18981
18678
|
name?: {
|
18982
18679
|
firstname?: {
|
18983
18680
|
required: boolean;
|
18984
|
-
label?: {
|
18985
|
-
id: string;
|
18986
|
-
description: string;
|
18987
|
-
defaultMessage: string;
|
18988
|
-
} | undefined;
|
18989
18681
|
} | undefined;
|
18990
18682
|
surname?: {
|
18991
18683
|
required: boolean;
|
18992
|
-
label?: {
|
18993
|
-
id: string;
|
18994
|
-
description: string;
|
18995
|
-
defaultMessage: string;
|
18996
|
-
} | undefined;
|
18997
18684
|
} | undefined;
|
18998
18685
|
middlename?: {
|
18999
18686
|
required: boolean;
|
19000
|
-
label?: {
|
19001
|
-
id: string;
|
19002
|
-
description: string;
|
19003
|
-
defaultMessage: string;
|
19004
|
-
} | undefined;
|
19005
18687
|
} | undefined;
|
19006
18688
|
} | undefined;
|
19007
|
-
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
19008
18689
|
maxLength?: number | undefined;
|
19009
18690
|
prefix?: {
|
19010
18691
|
id: string;
|
@@ -19016,6 +18697,7 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
19016
18697
|
description: string;
|
19017
18698
|
defaultMessage: string;
|
19018
18699
|
} | undefined;
|
18700
|
+
searchMode?: boolean | undefined;
|
19019
18701
|
}>>>;
|
19020
18702
|
}>, "strip", z.ZodTypeAny, {
|
19021
18703
|
type: "NAME";
|
@@ -19053,21 +18735,18 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
19053
18735
|
name?: {
|
19054
18736
|
firstname?: {
|
19055
18737
|
required: boolean;
|
19056
|
-
label?: TranslationConfig | undefined;
|
19057
18738
|
} | undefined;
|
19058
18739
|
surname?: {
|
19059
18740
|
required: boolean;
|
19060
|
-
label?: TranslationConfig | undefined;
|
19061
18741
|
} | undefined;
|
19062
18742
|
middlename?: {
|
19063
18743
|
required: boolean;
|
19064
|
-
label?: TranslationConfig | undefined;
|
19065
18744
|
} | undefined;
|
19066
18745
|
} | undefined;
|
19067
|
-
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
19068
18746
|
maxLength?: number | undefined;
|
19069
18747
|
prefix?: TranslationConfig | undefined;
|
19070
18748
|
postfix?: TranslationConfig | undefined;
|
18749
|
+
searchMode?: boolean | undefined;
|
19071
18750
|
} | undefined;
|
19072
18751
|
}, {
|
19073
18752
|
type: "NAME";
|
@@ -19121,30 +18800,14 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
19121
18800
|
name?: {
|
19122
18801
|
firstname?: {
|
19123
18802
|
required: boolean;
|
19124
|
-
label?: {
|
19125
|
-
id: string;
|
19126
|
-
description: string;
|
19127
|
-
defaultMessage: string;
|
19128
|
-
} | undefined;
|
19129
18803
|
} | undefined;
|
19130
18804
|
surname?: {
|
19131
18805
|
required: boolean;
|
19132
|
-
label?: {
|
19133
|
-
id: string;
|
19134
|
-
description: string;
|
19135
|
-
defaultMessage: string;
|
19136
|
-
} | undefined;
|
19137
18806
|
} | undefined;
|
19138
18807
|
middlename?: {
|
19139
18808
|
required: boolean;
|
19140
|
-
label?: {
|
19141
|
-
id: string;
|
19142
|
-
description: string;
|
19143
|
-
defaultMessage: string;
|
19144
|
-
} | undefined;
|
19145
18809
|
} | undefined;
|
19146
18810
|
} | undefined;
|
19147
|
-
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
19148
18811
|
maxLength?: number | undefined;
|
19149
18812
|
prefix?: {
|
19150
18813
|
id: string;
|
@@ -19156,6 +18819,7 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
19156
18819
|
description: string;
|
19157
18820
|
defaultMessage: string;
|
19158
18821
|
} | undefined;
|
18822
|
+
searchMode?: boolean | undefined;
|
19159
18823
|
} | undefined;
|
19160
18824
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
19161
18825
|
id: z.ZodString;
|
@@ -21887,21 +21551,18 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
21887
21551
|
name?: {
|
21888
21552
|
firstname?: {
|
21889
21553
|
required: boolean;
|
21890
|
-
label?: TranslationConfig | undefined;
|
21891
21554
|
} | undefined;
|
21892
21555
|
surname?: {
|
21893
21556
|
required: boolean;
|
21894
|
-
label?: TranslationConfig | undefined;
|
21895
21557
|
} | undefined;
|
21896
21558
|
middlename?: {
|
21897
21559
|
required: boolean;
|
21898
|
-
label?: TranslationConfig | undefined;
|
21899
21560
|
} | undefined;
|
21900
21561
|
} | undefined;
|
21901
|
-
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
21902
21562
|
maxLength?: number | undefined;
|
21903
21563
|
prefix?: TranslationConfig | undefined;
|
21904
21564
|
postfix?: TranslationConfig | undefined;
|
21565
|
+
searchMode?: boolean | undefined;
|
21905
21566
|
} | undefined;
|
21906
21567
|
} | {
|
21907
21568
|
type: "PHONE";
|
@@ -22234,8 +21895,7 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
22234
21895
|
postcodeOrZip?: string | undefined;
|
22235
21896
|
} | undefined;
|
22236
21897
|
configuration?: {
|
22237
|
-
|
22238
|
-
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
21898
|
+
searchMode?: boolean | undefined;
|
22239
21899
|
} | undefined;
|
22240
21900
|
} | {
|
22241
21901
|
type: "DATA";
|
@@ -23206,30 +22866,14 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
23206
22866
|
name?: {
|
23207
22867
|
firstname?: {
|
23208
22868
|
required: boolean;
|
23209
|
-
label?: {
|
23210
|
-
id: string;
|
23211
|
-
description: string;
|
23212
|
-
defaultMessage: string;
|
23213
|
-
} | undefined;
|
23214
22869
|
} | undefined;
|
23215
22870
|
surname?: {
|
23216
22871
|
required: boolean;
|
23217
|
-
label?: {
|
23218
|
-
id: string;
|
23219
|
-
description: string;
|
23220
|
-
defaultMessage: string;
|
23221
|
-
} | undefined;
|
23222
22872
|
} | undefined;
|
23223
22873
|
middlename?: {
|
23224
22874
|
required: boolean;
|
23225
|
-
label?: {
|
23226
|
-
id: string;
|
23227
|
-
description: string;
|
23228
|
-
defaultMessage: string;
|
23229
|
-
} | undefined;
|
23230
22875
|
} | undefined;
|
23231
22876
|
} | undefined;
|
23232
|
-
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
23233
22877
|
maxLength?: number | undefined;
|
23234
22878
|
prefix?: {
|
23235
22879
|
id: string;
|
@@ -23241,6 +22885,7 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
23241
22885
|
description: string;
|
23242
22886
|
defaultMessage: string;
|
23243
22887
|
} | undefined;
|
22888
|
+
searchMode?: boolean | undefined;
|
23244
22889
|
} | undefined;
|
23245
22890
|
} | {
|
23246
22891
|
type: "PHONE";
|
@@ -23737,8 +23382,7 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
23737
23382
|
postcodeOrZip?: string | undefined;
|
23738
23383
|
} | undefined;
|
23739
23384
|
configuration?: {
|
23740
|
-
|
23741
|
-
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
23385
|
+
searchMode?: boolean | undefined;
|
23742
23386
|
} | undefined;
|
23743
23387
|
} | {
|
23744
23388
|
type: "DATA";
|
@@ -24376,21 +24020,18 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
24376
24020
|
name?: {
|
24377
24021
|
firstname?: {
|
24378
24022
|
required: boolean;
|
24379
|
-
label?: TranslationConfig | undefined;
|
24380
24023
|
} | undefined;
|
24381
24024
|
surname?: {
|
24382
24025
|
required: boolean;
|
24383
|
-
label?: TranslationConfig | undefined;
|
24384
24026
|
} | undefined;
|
24385
24027
|
middlename?: {
|
24386
24028
|
required: boolean;
|
24387
|
-
label?: TranslationConfig | undefined;
|
24388
24029
|
} | undefined;
|
24389
24030
|
} | undefined;
|
24390
|
-
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
24391
24031
|
maxLength?: number | undefined;
|
24392
24032
|
prefix?: TranslationConfig | undefined;
|
24393
24033
|
postfix?: TranslationConfig | undefined;
|
24034
|
+
searchMode?: boolean | undefined;
|
24394
24035
|
} | undefined;
|
24395
24036
|
} | {
|
24396
24037
|
type: "PHONE";
|
@@ -24723,8 +24364,7 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
24723
24364
|
postcodeOrZip?: string | undefined;
|
24724
24365
|
} | undefined;
|
24725
24366
|
configuration?: {
|
24726
|
-
|
24727
|
-
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
24367
|
+
searchMode?: boolean | undefined;
|
24728
24368
|
} | undefined;
|
24729
24369
|
} | {
|
24730
24370
|
type: "DATA";
|
@@ -25343,21 +24983,18 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
25343
24983
|
name?: {
|
25344
24984
|
firstname?: {
|
25345
24985
|
required: boolean;
|
25346
|
-
label?: TranslationConfig | undefined;
|
25347
24986
|
} | undefined;
|
25348
24987
|
surname?: {
|
25349
24988
|
required: boolean;
|
25350
|
-
label?: TranslationConfig | undefined;
|
25351
24989
|
} | undefined;
|
25352
24990
|
middlename?: {
|
25353
24991
|
required: boolean;
|
25354
|
-
label?: TranslationConfig | undefined;
|
25355
24992
|
} | undefined;
|
25356
24993
|
} | undefined;
|
25357
|
-
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
25358
24994
|
maxLength?: number | undefined;
|
25359
24995
|
prefix?: TranslationConfig | undefined;
|
25360
24996
|
postfix?: TranslationConfig | undefined;
|
24997
|
+
searchMode?: boolean | undefined;
|
25361
24998
|
} | undefined;
|
25362
24999
|
} | {
|
25363
25000
|
type: "PHONE";
|
@@ -25690,8 +25327,7 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
25690
25327
|
postcodeOrZip?: string | undefined;
|
25691
25328
|
} | undefined;
|
25692
25329
|
configuration?: {
|
25693
|
-
|
25694
|
-
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
25330
|
+
searchMode?: boolean | undefined;
|
25695
25331
|
} | undefined;
|
25696
25332
|
} | {
|
25697
25333
|
type: "DATA";
|
@@ -26640,30 +26276,14 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
26640
26276
|
name?: {
|
26641
26277
|
firstname?: {
|
26642
26278
|
required: boolean;
|
26643
|
-
label?: {
|
26644
|
-
id: string;
|
26645
|
-
description: string;
|
26646
|
-
defaultMessage: string;
|
26647
|
-
} | undefined;
|
26648
26279
|
} | undefined;
|
26649
26280
|
surname?: {
|
26650
26281
|
required: boolean;
|
26651
|
-
label?: {
|
26652
|
-
id: string;
|
26653
|
-
description: string;
|
26654
|
-
defaultMessage: string;
|
26655
|
-
} | undefined;
|
26656
26282
|
} | undefined;
|
26657
26283
|
middlename?: {
|
26658
26284
|
required: boolean;
|
26659
|
-
label?: {
|
26660
|
-
id: string;
|
26661
|
-
description: string;
|
26662
|
-
defaultMessage: string;
|
26663
|
-
} | undefined;
|
26664
26285
|
} | undefined;
|
26665
26286
|
} | undefined;
|
26666
|
-
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
26667
26287
|
maxLength?: number | undefined;
|
26668
26288
|
prefix?: {
|
26669
26289
|
id: string;
|
@@ -26675,6 +26295,7 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
26675
26295
|
description: string;
|
26676
26296
|
defaultMessage: string;
|
26677
26297
|
} | undefined;
|
26298
|
+
searchMode?: boolean | undefined;
|
26678
26299
|
} | undefined;
|
26679
26300
|
} | {
|
26680
26301
|
type: "PHONE";
|
@@ -27171,8 +26792,7 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
27171
26792
|
postcodeOrZip?: string | undefined;
|
27172
26793
|
} | undefined;
|
27173
26794
|
configuration?: {
|
27174
|
-
|
27175
|
-
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
26795
|
+
searchMode?: boolean | undefined;
|
27176
26796
|
} | undefined;
|
27177
26797
|
} | {
|
27178
26798
|
type: "DATA";
|
@@ -28172,30 +27792,14 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
28172
27792
|
name?: {
|
28173
27793
|
firstname?: {
|
28174
27794
|
required: boolean;
|
28175
|
-
label?: {
|
28176
|
-
id: string;
|
28177
|
-
description: string;
|
28178
|
-
defaultMessage: string;
|
28179
|
-
} | undefined;
|
28180
27795
|
} | undefined;
|
28181
27796
|
surname?: {
|
28182
27797
|
required: boolean;
|
28183
|
-
label?: {
|
28184
|
-
id: string;
|
28185
|
-
description: string;
|
28186
|
-
defaultMessage: string;
|
28187
|
-
} | undefined;
|
28188
27798
|
} | undefined;
|
28189
27799
|
middlename?: {
|
28190
27800
|
required: boolean;
|
28191
|
-
label?: {
|
28192
|
-
id: string;
|
28193
|
-
description: string;
|
28194
|
-
defaultMessage: string;
|
28195
|
-
} | undefined;
|
28196
27801
|
} | undefined;
|
28197
27802
|
} | undefined;
|
28198
|
-
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
28199
27803
|
maxLength?: number | undefined;
|
28200
27804
|
prefix?: {
|
28201
27805
|
id: string;
|
@@ -28207,6 +27811,7 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
28207
27811
|
description: string;
|
28208
27812
|
defaultMessage: string;
|
28209
27813
|
} | undefined;
|
27814
|
+
searchMode?: boolean | undefined;
|
28210
27815
|
} | undefined;
|
28211
27816
|
} | {
|
28212
27817
|
type: "PHONE";
|
@@ -28703,8 +28308,7 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
28703
28308
|
postcodeOrZip?: string | undefined;
|
28704
28309
|
} | undefined;
|
28705
28310
|
configuration?: {
|
28706
|
-
|
28707
|
-
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
28311
|
+
searchMode?: boolean | undefined;
|
28708
28312
|
} | undefined;
|
28709
28313
|
} | {
|
28710
28314
|
type: "DATA";
|
@@ -28838,16 +28442,6 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
28838
28442
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
28839
28443
|
}, {
|
28840
28444
|
type: z.ZodLiteral<"ADDRESS">;
|
28841
|
-
configuration: z.ZodOptional<z.ZodObject<{
|
28842
|
-
lineSeparator: z.ZodOptional<z.ZodString>;
|
28843
|
-
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">>;
|
28844
|
-
}, "strip", z.ZodTypeAny, {
|
28845
|
-
lineSeparator?: string | undefined;
|
28846
|
-
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
28847
|
-
}, {
|
28848
|
-
lineSeparator?: string | undefined;
|
28849
|
-
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
28850
|
-
}>>;
|
28851
28445
|
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodDiscriminatedUnion<"urbanOrRural", [z.ZodObject<z.objectUtil.extendShape<{
|
28852
28446
|
country: z.ZodString;
|
28853
28447
|
addressType: z.ZodLiteral<"DOMESTIC">;
|
@@ -28935,6 +28529,13 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
28935
28529
|
addressLine3?: string | undefined;
|
28936
28530
|
postcodeOrZip?: string | undefined;
|
28937
28531
|
}>]>>;
|
28532
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
28533
|
+
searchMode: z.ZodOptional<z.ZodBoolean>;
|
28534
|
+
}, "strip", z.ZodTypeAny, {
|
28535
|
+
searchMode?: boolean | undefined;
|
28536
|
+
}, {
|
28537
|
+
searchMode?: boolean | undefined;
|
28538
|
+
}>>;
|
28938
28539
|
}>, "strip", z.ZodTypeAny, {
|
28939
28540
|
type: "ADDRESS";
|
28940
28541
|
id: string;
|
@@ -28992,8 +28593,7 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
28992
28593
|
postcodeOrZip?: string | undefined;
|
28993
28594
|
} | undefined;
|
28994
28595
|
configuration?: {
|
28995
|
-
|
28996
|
-
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
28596
|
+
searchMode?: boolean | undefined;
|
28997
28597
|
} | undefined;
|
28998
28598
|
}, {
|
28999
28599
|
type: "ADDRESS";
|
@@ -29068,8 +28668,7 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
29068
28668
|
postcodeOrZip?: string | undefined;
|
29069
28669
|
} | undefined;
|
29070
28670
|
configuration?: {
|
29071
|
-
|
29072
|
-
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
28671
|
+
searchMode?: boolean | undefined;
|
29073
28672
|
} | undefined;
|
29074
28673
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
29075
28674
|
id: z.ZodString;
|
@@ -31041,98 +30640,46 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
31041
30640
|
name: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
31042
30641
|
firstname: z.ZodOptional<z.ZodObject<{
|
31043
30642
|
required: z.ZodBoolean;
|
31044
|
-
label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
31045
|
-
id: string;
|
31046
|
-
description: string;
|
31047
|
-
defaultMessage: string;
|
31048
|
-
}>>;
|
31049
30643
|
}, "strip", z.ZodTypeAny, {
|
31050
30644
|
required: boolean;
|
31051
|
-
label?: TranslationConfig | undefined;
|
31052
30645
|
}, {
|
31053
30646
|
required: boolean;
|
31054
|
-
label?: {
|
31055
|
-
id: string;
|
31056
|
-
description: string;
|
31057
|
-
defaultMessage: string;
|
31058
|
-
} | undefined;
|
31059
30647
|
}>>;
|
31060
30648
|
middlename: z.ZodOptional<z.ZodObject<{
|
31061
30649
|
required: z.ZodBoolean;
|
31062
|
-
label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
31063
|
-
id: string;
|
31064
|
-
description: string;
|
31065
|
-
defaultMessage: string;
|
31066
|
-
}>>;
|
31067
30650
|
}, "strip", z.ZodTypeAny, {
|
31068
30651
|
required: boolean;
|
31069
|
-
label?: TranslationConfig | undefined;
|
31070
30652
|
}, {
|
31071
30653
|
required: boolean;
|
31072
|
-
label?: {
|
31073
|
-
id: string;
|
31074
|
-
description: string;
|
31075
|
-
defaultMessage: string;
|
31076
|
-
} | undefined;
|
31077
30654
|
}>>;
|
31078
30655
|
surname: z.ZodOptional<z.ZodObject<{
|
31079
30656
|
required: z.ZodBoolean;
|
31080
|
-
label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
31081
|
-
id: string;
|
31082
|
-
description: string;
|
31083
|
-
defaultMessage: string;
|
31084
|
-
}>>;
|
31085
30657
|
}, "strip", z.ZodTypeAny, {
|
31086
30658
|
required: boolean;
|
31087
|
-
label?: TranslationConfig | undefined;
|
31088
30659
|
}, {
|
31089
30660
|
required: boolean;
|
31090
|
-
label?: {
|
31091
|
-
id: string;
|
31092
|
-
description: string;
|
31093
|
-
defaultMessage: string;
|
31094
|
-
} | undefined;
|
31095
30661
|
}>>;
|
31096
30662
|
}, "strip", z.ZodTypeAny, {
|
31097
30663
|
firstname?: {
|
31098
30664
|
required: boolean;
|
31099
|
-
label?: TranslationConfig | undefined;
|
31100
30665
|
} | undefined;
|
31101
30666
|
surname?: {
|
31102
30667
|
required: boolean;
|
31103
|
-
label?: TranslationConfig | undefined;
|
31104
30668
|
} | undefined;
|
31105
30669
|
middlename?: {
|
31106
30670
|
required: boolean;
|
31107
|
-
label?: TranslationConfig | undefined;
|
31108
30671
|
} | undefined;
|
31109
30672
|
}, {
|
31110
30673
|
firstname?: {
|
31111
30674
|
required: boolean;
|
31112
|
-
label?: {
|
31113
|
-
id: string;
|
31114
|
-
description: string;
|
31115
|
-
defaultMessage: string;
|
31116
|
-
} | undefined;
|
31117
30675
|
} | undefined;
|
31118
30676
|
surname?: {
|
31119
30677
|
required: boolean;
|
31120
|
-
label?: {
|
31121
|
-
id: string;
|
31122
|
-
description: string;
|
31123
|
-
defaultMessage: string;
|
31124
|
-
} | undefined;
|
31125
30678
|
} | undefined;
|
31126
30679
|
middlename?: {
|
31127
30680
|
required: boolean;
|
31128
|
-
label?: {
|
31129
|
-
id: string;
|
31130
|
-
description: string;
|
31131
|
-
defaultMessage: string;
|
31132
|
-
} | undefined;
|
31133
30681
|
} | undefined;
|
31134
30682
|
}>>>;
|
31135
|
-
order: z.ZodOptional<z.ZodArray<z.ZodEnum<["firstname", "middlename", "surname"]>, "many">>;
|
31136
30683
|
maxLength: z.ZodOptional<z.ZodNumber>;
|
31137
30684
|
prefix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
31138
30685
|
id: string;
|
@@ -31144,53 +30691,35 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
31144
30691
|
description: string;
|
31145
30692
|
defaultMessage: string;
|
31146
30693
|
}>>;
|
30694
|
+
searchMode: z.ZodOptional<z.ZodBoolean>;
|
31147
30695
|
}, "strip", z.ZodTypeAny, {
|
31148
30696
|
name?: {
|
31149
30697
|
firstname?: {
|
31150
30698
|
required: boolean;
|
31151
|
-
label?: TranslationConfig | undefined;
|
31152
30699
|
} | undefined;
|
31153
30700
|
surname?: {
|
31154
30701
|
required: boolean;
|
31155
|
-
label?: TranslationConfig | undefined;
|
31156
30702
|
} | undefined;
|
31157
30703
|
middlename?: {
|
31158
30704
|
required: boolean;
|
31159
|
-
label?: TranslationConfig | undefined;
|
31160
30705
|
} | undefined;
|
31161
30706
|
} | undefined;
|
31162
|
-
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
31163
30707
|
maxLength?: number | undefined;
|
31164
30708
|
prefix?: TranslationConfig | undefined;
|
31165
30709
|
postfix?: TranslationConfig | undefined;
|
30710
|
+
searchMode?: boolean | undefined;
|
31166
30711
|
}, {
|
31167
30712
|
name?: {
|
31168
30713
|
firstname?: {
|
31169
30714
|
required: boolean;
|
31170
|
-
label?: {
|
31171
|
-
id: string;
|
31172
|
-
description: string;
|
31173
|
-
defaultMessage: string;
|
31174
|
-
} | undefined;
|
31175
30715
|
} | undefined;
|
31176
30716
|
surname?: {
|
31177
30717
|
required: boolean;
|
31178
|
-
label?: {
|
31179
|
-
id: string;
|
31180
|
-
description: string;
|
31181
|
-
defaultMessage: string;
|
31182
|
-
} | undefined;
|
31183
30718
|
} | undefined;
|
31184
30719
|
middlename?: {
|
31185
30720
|
required: boolean;
|
31186
|
-
label?: {
|
31187
|
-
id: string;
|
31188
|
-
description: string;
|
31189
|
-
defaultMessage: string;
|
31190
|
-
} | undefined;
|
31191
30721
|
} | undefined;
|
31192
30722
|
} | undefined;
|
31193
|
-
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
31194
30723
|
maxLength?: number | undefined;
|
31195
30724
|
prefix?: {
|
31196
30725
|
id: string;
|
@@ -31202,6 +30731,7 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
31202
30731
|
description: string;
|
31203
30732
|
defaultMessage: string;
|
31204
30733
|
} | undefined;
|
30734
|
+
searchMode?: boolean | undefined;
|
31205
30735
|
}>>>;
|
31206
30736
|
}>, "strip", z.ZodTypeAny, {
|
31207
30737
|
type: "NAME";
|
@@ -31239,21 +30769,18 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
31239
30769
|
name?: {
|
31240
30770
|
firstname?: {
|
31241
30771
|
required: boolean;
|
31242
|
-
label?: TranslationConfig | undefined;
|
31243
30772
|
} | undefined;
|
31244
30773
|
surname?: {
|
31245
30774
|
required: boolean;
|
31246
|
-
label?: TranslationConfig | undefined;
|
31247
30775
|
} | undefined;
|
31248
30776
|
middlename?: {
|
31249
30777
|
required: boolean;
|
31250
|
-
label?: TranslationConfig | undefined;
|
31251
30778
|
} | undefined;
|
31252
30779
|
} | undefined;
|
31253
|
-
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
31254
30780
|
maxLength?: number | undefined;
|
31255
30781
|
prefix?: TranslationConfig | undefined;
|
31256
30782
|
postfix?: TranslationConfig | undefined;
|
30783
|
+
searchMode?: boolean | undefined;
|
31257
30784
|
} | undefined;
|
31258
30785
|
}, {
|
31259
30786
|
type: "NAME";
|
@@ -31307,30 +30834,14 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
31307
30834
|
name?: {
|
31308
30835
|
firstname?: {
|
31309
30836
|
required: boolean;
|
31310
|
-
label?: {
|
31311
|
-
id: string;
|
31312
|
-
description: string;
|
31313
|
-
defaultMessage: string;
|
31314
|
-
} | undefined;
|
31315
30837
|
} | undefined;
|
31316
30838
|
surname?: {
|
31317
30839
|
required: boolean;
|
31318
|
-
label?: {
|
31319
|
-
id: string;
|
31320
|
-
description: string;
|
31321
|
-
defaultMessage: string;
|
31322
|
-
} | undefined;
|
31323
30840
|
} | undefined;
|
31324
30841
|
middlename?: {
|
31325
30842
|
required: boolean;
|
31326
|
-
label?: {
|
31327
|
-
id: string;
|
31328
|
-
description: string;
|
31329
|
-
defaultMessage: string;
|
31330
|
-
} | undefined;
|
31331
30843
|
} | undefined;
|
31332
30844
|
} | undefined;
|
31333
|
-
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
31334
30845
|
maxLength?: number | undefined;
|
31335
30846
|
prefix?: {
|
31336
30847
|
id: string;
|
@@ -31342,6 +30853,7 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
31342
30853
|
description: string;
|
31343
30854
|
defaultMessage: string;
|
31344
30855
|
} | undefined;
|
30856
|
+
searchMode?: boolean | undefined;
|
31345
30857
|
} | undefined;
|
31346
30858
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
31347
30859
|
id: z.ZodString;
|
@@ -33947,21 +33459,18 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
33947
33459
|
name?: {
|
33948
33460
|
firstname?: {
|
33949
33461
|
required: boolean;
|
33950
|
-
label?: TranslationConfig | undefined;
|
33951
33462
|
} | undefined;
|
33952
33463
|
surname?: {
|
33953
33464
|
required: boolean;
|
33954
|
-
label?: TranslationConfig | undefined;
|
33955
33465
|
} | undefined;
|
33956
33466
|
middlename?: {
|
33957
33467
|
required: boolean;
|
33958
|
-
label?: TranslationConfig | undefined;
|
33959
33468
|
} | undefined;
|
33960
33469
|
} | undefined;
|
33961
|
-
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
33962
33470
|
maxLength?: number | undefined;
|
33963
33471
|
prefix?: TranslationConfig | undefined;
|
33964
33472
|
postfix?: TranslationConfig | undefined;
|
33473
|
+
searchMode?: boolean | undefined;
|
33965
33474
|
} | undefined;
|
33966
33475
|
} | {
|
33967
33476
|
type: "PHONE";
|
@@ -34294,8 +33803,7 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
34294
33803
|
postcodeOrZip?: string | undefined;
|
34295
33804
|
} | undefined;
|
34296
33805
|
configuration?: {
|
34297
|
-
|
34298
|
-
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
33806
|
+
searchMode?: boolean | undefined;
|
34299
33807
|
} | undefined;
|
34300
33808
|
} | {
|
34301
33809
|
type: "DATA";
|
@@ -35237,30 +34745,14 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
35237
34745
|
name?: {
|
35238
34746
|
firstname?: {
|
35239
34747
|
required: boolean;
|
35240
|
-
label?: {
|
35241
|
-
id: string;
|
35242
|
-
description: string;
|
35243
|
-
defaultMessage: string;
|
35244
|
-
} | undefined;
|
35245
34748
|
} | undefined;
|
35246
34749
|
surname?: {
|
35247
34750
|
required: boolean;
|
35248
|
-
label?: {
|
35249
|
-
id: string;
|
35250
|
-
description: string;
|
35251
|
-
defaultMessage: string;
|
35252
|
-
} | undefined;
|
35253
34751
|
} | undefined;
|
35254
34752
|
middlename?: {
|
35255
34753
|
required: boolean;
|
35256
|
-
label?: {
|
35257
|
-
id: string;
|
35258
|
-
description: string;
|
35259
|
-
defaultMessage: string;
|
35260
|
-
} | undefined;
|
35261
34754
|
} | undefined;
|
35262
34755
|
} | undefined;
|
35263
|
-
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
35264
34756
|
maxLength?: number | undefined;
|
35265
34757
|
prefix?: {
|
35266
34758
|
id: string;
|
@@ -35272,6 +34764,7 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
35272
34764
|
description: string;
|
35273
34765
|
defaultMessage: string;
|
35274
34766
|
} | undefined;
|
34767
|
+
searchMode?: boolean | undefined;
|
35275
34768
|
} | undefined;
|
35276
34769
|
} | {
|
35277
34770
|
type: "PHONE";
|
@@ -35768,8 +35261,7 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
35768
35261
|
postcodeOrZip?: string | undefined;
|
35769
35262
|
} | undefined;
|
35770
35263
|
configuration?: {
|
35771
|
-
|
35772
|
-
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
35264
|
+
searchMode?: boolean | undefined;
|
35773
35265
|
} | undefined;
|
35774
35266
|
} | {
|
35775
35267
|
type: "DATA";
|
@@ -36408,21 +35900,18 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
36408
35900
|
name?: {
|
36409
35901
|
firstname?: {
|
36410
35902
|
required: boolean;
|
36411
|
-
label?: TranslationConfig | undefined;
|
36412
35903
|
} | undefined;
|
36413
35904
|
surname?: {
|
36414
35905
|
required: boolean;
|
36415
|
-
label?: TranslationConfig | undefined;
|
36416
35906
|
} | undefined;
|
36417
35907
|
middlename?: {
|
36418
35908
|
required: boolean;
|
36419
|
-
label?: TranslationConfig | undefined;
|
36420
35909
|
} | undefined;
|
36421
35910
|
} | undefined;
|
36422
|
-
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
36423
35911
|
maxLength?: number | undefined;
|
36424
35912
|
prefix?: TranslationConfig | undefined;
|
36425
35913
|
postfix?: TranslationConfig | undefined;
|
35914
|
+
searchMode?: boolean | undefined;
|
36426
35915
|
} | undefined;
|
36427
35916
|
} | {
|
36428
35917
|
type: "PHONE";
|
@@ -36755,8 +36244,7 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
36755
36244
|
postcodeOrZip?: string | undefined;
|
36756
36245
|
} | undefined;
|
36757
36246
|
configuration?: {
|
36758
|
-
|
36759
|
-
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
36247
|
+
searchMode?: boolean | undefined;
|
36760
36248
|
} | undefined;
|
36761
36249
|
} | {
|
36762
36250
|
type: "DATA";
|
@@ -37705,30 +37193,14 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
37705
37193
|
name?: {
|
37706
37194
|
firstname?: {
|
37707
37195
|
required: boolean;
|
37708
|
-
label?: {
|
37709
|
-
id: string;
|
37710
|
-
description: string;
|
37711
|
-
defaultMessage: string;
|
37712
|
-
} | undefined;
|
37713
37196
|
} | undefined;
|
37714
37197
|
surname?: {
|
37715
37198
|
required: boolean;
|
37716
|
-
label?: {
|
37717
|
-
id: string;
|
37718
|
-
description: string;
|
37719
|
-
defaultMessage: string;
|
37720
|
-
} | undefined;
|
37721
37199
|
} | undefined;
|
37722
37200
|
middlename?: {
|
37723
37201
|
required: boolean;
|
37724
|
-
label?: {
|
37725
|
-
id: string;
|
37726
|
-
description: string;
|
37727
|
-
defaultMessage: string;
|
37728
|
-
} | undefined;
|
37729
37202
|
} | undefined;
|
37730
37203
|
} | undefined;
|
37731
|
-
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
37732
37204
|
maxLength?: number | undefined;
|
37733
37205
|
prefix?: {
|
37734
37206
|
id: string;
|
@@ -37740,6 +37212,7 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
37740
37212
|
description: string;
|
37741
37213
|
defaultMessage: string;
|
37742
37214
|
} | undefined;
|
37215
|
+
searchMode?: boolean | undefined;
|
37743
37216
|
} | undefined;
|
37744
37217
|
} | {
|
37745
37218
|
type: "PHONE";
|
@@ -38236,8 +37709,7 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
38236
37709
|
postcodeOrZip?: string | undefined;
|
38237
37710
|
} | undefined;
|
38238
37711
|
configuration?: {
|
38239
|
-
|
38240
|
-
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
37712
|
+
searchMode?: boolean | undefined;
|
38241
37713
|
} | undefined;
|
38242
37714
|
} | {
|
38243
37715
|
type: "DATA";
|
@@ -38369,16 +37841,6 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
38369
37841
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
38370
37842
|
}, {
|
38371
37843
|
type: z.ZodLiteral<"ADDRESS">;
|
38372
|
-
configuration: z.ZodOptional<z.ZodObject<{
|
38373
|
-
lineSeparator: z.ZodOptional<z.ZodString>;
|
38374
|
-
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">>;
|
38375
|
-
}, "strip", z.ZodTypeAny, {
|
38376
|
-
lineSeparator?: string | undefined;
|
38377
|
-
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
38378
|
-
}, {
|
38379
|
-
lineSeparator?: string | undefined;
|
38380
|
-
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
38381
|
-
}>>;
|
38382
37844
|
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodDiscriminatedUnion<"urbanOrRural", [z.ZodObject<z.objectUtil.extendShape<{
|
38383
37845
|
country: z.ZodString;
|
38384
37846
|
addressType: z.ZodLiteral<"DOMESTIC">;
|
@@ -38466,6 +37928,13 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
38466
37928
|
addressLine3?: string | undefined;
|
38467
37929
|
postcodeOrZip?: string | undefined;
|
38468
37930
|
}>]>>;
|
37931
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
37932
|
+
searchMode: z.ZodOptional<z.ZodBoolean>;
|
37933
|
+
}, "strip", z.ZodTypeAny, {
|
37934
|
+
searchMode?: boolean | undefined;
|
37935
|
+
}, {
|
37936
|
+
searchMode?: boolean | undefined;
|
37937
|
+
}>>;
|
38469
37938
|
}>, "strip", z.ZodTypeAny, {
|
38470
37939
|
type: "ADDRESS";
|
38471
37940
|
id: string;
|
@@ -38523,8 +37992,7 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
38523
37992
|
postcodeOrZip?: string | undefined;
|
38524
37993
|
} | undefined;
|
38525
37994
|
configuration?: {
|
38526
|
-
|
38527
|
-
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
37995
|
+
searchMode?: boolean | undefined;
|
38528
37996
|
} | undefined;
|
38529
37997
|
}, {
|
38530
37998
|
type: "ADDRESS";
|
@@ -38599,8 +38067,7 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
38599
38067
|
postcodeOrZip?: string | undefined;
|
38600
38068
|
} | undefined;
|
38601
38069
|
configuration?: {
|
38602
|
-
|
38603
|
-
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
38070
|
+
searchMode?: boolean | undefined;
|
38604
38071
|
} | undefined;
|
38605
38072
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
38606
38073
|
id: z.ZodString;
|
@@ -40572,98 +40039,46 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
40572
40039
|
name: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
40573
40040
|
firstname: z.ZodOptional<z.ZodObject<{
|
40574
40041
|
required: z.ZodBoolean;
|
40575
|
-
label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
40576
|
-
id: string;
|
40577
|
-
description: string;
|
40578
|
-
defaultMessage: string;
|
40579
|
-
}>>;
|
40580
40042
|
}, "strip", z.ZodTypeAny, {
|
40581
40043
|
required: boolean;
|
40582
|
-
label?: TranslationConfig | undefined;
|
40583
40044
|
}, {
|
40584
40045
|
required: boolean;
|
40585
|
-
label?: {
|
40586
|
-
id: string;
|
40587
|
-
description: string;
|
40588
|
-
defaultMessage: string;
|
40589
|
-
} | undefined;
|
40590
40046
|
}>>;
|
40591
40047
|
middlename: z.ZodOptional<z.ZodObject<{
|
40592
40048
|
required: z.ZodBoolean;
|
40593
|
-
label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
40594
|
-
id: string;
|
40595
|
-
description: string;
|
40596
|
-
defaultMessage: string;
|
40597
|
-
}>>;
|
40598
40049
|
}, "strip", z.ZodTypeAny, {
|
40599
40050
|
required: boolean;
|
40600
|
-
label?: TranslationConfig | undefined;
|
40601
40051
|
}, {
|
40602
40052
|
required: boolean;
|
40603
|
-
label?: {
|
40604
|
-
id: string;
|
40605
|
-
description: string;
|
40606
|
-
defaultMessage: string;
|
40607
|
-
} | undefined;
|
40608
40053
|
}>>;
|
40609
40054
|
surname: z.ZodOptional<z.ZodObject<{
|
40610
40055
|
required: z.ZodBoolean;
|
40611
|
-
label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
40612
|
-
id: string;
|
40613
|
-
description: string;
|
40614
|
-
defaultMessage: string;
|
40615
|
-
}>>;
|
40616
40056
|
}, "strip", z.ZodTypeAny, {
|
40617
40057
|
required: boolean;
|
40618
|
-
label?: TranslationConfig | undefined;
|
40619
40058
|
}, {
|
40620
40059
|
required: boolean;
|
40621
|
-
label?: {
|
40622
|
-
id: string;
|
40623
|
-
description: string;
|
40624
|
-
defaultMessage: string;
|
40625
|
-
} | undefined;
|
40626
40060
|
}>>;
|
40627
40061
|
}, "strip", z.ZodTypeAny, {
|
40628
40062
|
firstname?: {
|
40629
40063
|
required: boolean;
|
40630
|
-
label?: TranslationConfig | undefined;
|
40631
40064
|
} | undefined;
|
40632
40065
|
surname?: {
|
40633
40066
|
required: boolean;
|
40634
|
-
label?: TranslationConfig | undefined;
|
40635
40067
|
} | undefined;
|
40636
40068
|
middlename?: {
|
40637
40069
|
required: boolean;
|
40638
|
-
label?: TranslationConfig | undefined;
|
40639
40070
|
} | undefined;
|
40640
40071
|
}, {
|
40641
40072
|
firstname?: {
|
40642
40073
|
required: boolean;
|
40643
|
-
label?: {
|
40644
|
-
id: string;
|
40645
|
-
description: string;
|
40646
|
-
defaultMessage: string;
|
40647
|
-
} | undefined;
|
40648
40074
|
} | undefined;
|
40649
40075
|
surname?: {
|
40650
40076
|
required: boolean;
|
40651
|
-
label?: {
|
40652
|
-
id: string;
|
40653
|
-
description: string;
|
40654
|
-
defaultMessage: string;
|
40655
|
-
} | undefined;
|
40656
40077
|
} | undefined;
|
40657
40078
|
middlename?: {
|
40658
40079
|
required: boolean;
|
40659
|
-
label?: {
|
40660
|
-
id: string;
|
40661
|
-
description: string;
|
40662
|
-
defaultMessage: string;
|
40663
|
-
} | undefined;
|
40664
40080
|
} | undefined;
|
40665
40081
|
}>>>;
|
40666
|
-
order: z.ZodOptional<z.ZodArray<z.ZodEnum<["firstname", "middlename", "surname"]>, "many">>;
|
40667
40082
|
maxLength: z.ZodOptional<z.ZodNumber>;
|
40668
40083
|
prefix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
40669
40084
|
id: string;
|
@@ -40675,53 +40090,35 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
40675
40090
|
description: string;
|
40676
40091
|
defaultMessage: string;
|
40677
40092
|
}>>;
|
40093
|
+
searchMode: z.ZodOptional<z.ZodBoolean>;
|
40678
40094
|
}, "strip", z.ZodTypeAny, {
|
40679
40095
|
name?: {
|
40680
40096
|
firstname?: {
|
40681
40097
|
required: boolean;
|
40682
|
-
label?: TranslationConfig | undefined;
|
40683
40098
|
} | undefined;
|
40684
40099
|
surname?: {
|
40685
40100
|
required: boolean;
|
40686
|
-
label?: TranslationConfig | undefined;
|
40687
40101
|
} | undefined;
|
40688
40102
|
middlename?: {
|
40689
40103
|
required: boolean;
|
40690
|
-
label?: TranslationConfig | undefined;
|
40691
40104
|
} | undefined;
|
40692
40105
|
} | undefined;
|
40693
|
-
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
40694
40106
|
maxLength?: number | undefined;
|
40695
40107
|
prefix?: TranslationConfig | undefined;
|
40696
40108
|
postfix?: TranslationConfig | undefined;
|
40109
|
+
searchMode?: boolean | undefined;
|
40697
40110
|
}, {
|
40698
40111
|
name?: {
|
40699
40112
|
firstname?: {
|
40700
40113
|
required: boolean;
|
40701
|
-
label?: {
|
40702
|
-
id: string;
|
40703
|
-
description: string;
|
40704
|
-
defaultMessage: string;
|
40705
|
-
} | undefined;
|
40706
40114
|
} | undefined;
|
40707
40115
|
surname?: {
|
40708
40116
|
required: boolean;
|
40709
|
-
label?: {
|
40710
|
-
id: string;
|
40711
|
-
description: string;
|
40712
|
-
defaultMessage: string;
|
40713
|
-
} | undefined;
|
40714
40117
|
} | undefined;
|
40715
40118
|
middlename?: {
|
40716
40119
|
required: boolean;
|
40717
|
-
label?: {
|
40718
|
-
id: string;
|
40719
|
-
description: string;
|
40720
|
-
defaultMessage: string;
|
40721
|
-
} | undefined;
|
40722
40120
|
} | undefined;
|
40723
40121
|
} | undefined;
|
40724
|
-
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
40725
40122
|
maxLength?: number | undefined;
|
40726
40123
|
prefix?: {
|
40727
40124
|
id: string;
|
@@ -40733,6 +40130,7 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
40733
40130
|
description: string;
|
40734
40131
|
defaultMessage: string;
|
40735
40132
|
} | undefined;
|
40133
|
+
searchMode?: boolean | undefined;
|
40736
40134
|
}>>>;
|
40737
40135
|
}>, "strip", z.ZodTypeAny, {
|
40738
40136
|
type: "NAME";
|
@@ -40770,21 +40168,18 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
40770
40168
|
name?: {
|
40771
40169
|
firstname?: {
|
40772
40170
|
required: boolean;
|
40773
|
-
label?: TranslationConfig | undefined;
|
40774
40171
|
} | undefined;
|
40775
40172
|
surname?: {
|
40776
40173
|
required: boolean;
|
40777
|
-
label?: TranslationConfig | undefined;
|
40778
40174
|
} | undefined;
|
40779
40175
|
middlename?: {
|
40780
40176
|
required: boolean;
|
40781
|
-
label?: TranslationConfig | undefined;
|
40782
40177
|
} | undefined;
|
40783
40178
|
} | undefined;
|
40784
|
-
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
40785
40179
|
maxLength?: number | undefined;
|
40786
40180
|
prefix?: TranslationConfig | undefined;
|
40787
40181
|
postfix?: TranslationConfig | undefined;
|
40182
|
+
searchMode?: boolean | undefined;
|
40788
40183
|
} | undefined;
|
40789
40184
|
}, {
|
40790
40185
|
type: "NAME";
|
@@ -40838,30 +40233,14 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
40838
40233
|
name?: {
|
40839
40234
|
firstname?: {
|
40840
40235
|
required: boolean;
|
40841
|
-
label?: {
|
40842
|
-
id: string;
|
40843
|
-
description: string;
|
40844
|
-
defaultMessage: string;
|
40845
|
-
} | undefined;
|
40846
40236
|
} | undefined;
|
40847
40237
|
surname?: {
|
40848
40238
|
required: boolean;
|
40849
|
-
label?: {
|
40850
|
-
id: string;
|
40851
|
-
description: string;
|
40852
|
-
defaultMessage: string;
|
40853
|
-
} | undefined;
|
40854
40239
|
} | undefined;
|
40855
40240
|
middlename?: {
|
40856
40241
|
required: boolean;
|
40857
|
-
label?: {
|
40858
|
-
id: string;
|
40859
|
-
description: string;
|
40860
|
-
defaultMessage: string;
|
40861
|
-
} | undefined;
|
40862
40242
|
} | undefined;
|
40863
40243
|
} | undefined;
|
40864
|
-
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
40865
40244
|
maxLength?: number | undefined;
|
40866
40245
|
prefix?: {
|
40867
40246
|
id: string;
|
@@ -40873,6 +40252,7 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
40873
40252
|
description: string;
|
40874
40253
|
defaultMessage: string;
|
40875
40254
|
} | undefined;
|
40255
|
+
searchMode?: boolean | undefined;
|
40876
40256
|
} | undefined;
|
40877
40257
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
40878
40258
|
id: z.ZodString;
|
@@ -43478,21 +42858,18 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
43478
42858
|
name?: {
|
43479
42859
|
firstname?: {
|
43480
42860
|
required: boolean;
|
43481
|
-
label?: TranslationConfig | undefined;
|
43482
42861
|
} | undefined;
|
43483
42862
|
surname?: {
|
43484
42863
|
required: boolean;
|
43485
|
-
label?: TranslationConfig | undefined;
|
43486
42864
|
} | undefined;
|
43487
42865
|
middlename?: {
|
43488
42866
|
required: boolean;
|
43489
|
-
label?: TranslationConfig | undefined;
|
43490
42867
|
} | undefined;
|
43491
42868
|
} | undefined;
|
43492
|
-
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
43493
42869
|
maxLength?: number | undefined;
|
43494
42870
|
prefix?: TranslationConfig | undefined;
|
43495
42871
|
postfix?: TranslationConfig | undefined;
|
42872
|
+
searchMode?: boolean | undefined;
|
43496
42873
|
} | undefined;
|
43497
42874
|
} | {
|
43498
42875
|
type: "PHONE";
|
@@ -43825,8 +43202,7 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
43825
43202
|
postcodeOrZip?: string | undefined;
|
43826
43203
|
} | undefined;
|
43827
43204
|
configuration?: {
|
43828
|
-
|
43829
|
-
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
43205
|
+
searchMode?: boolean | undefined;
|
43830
43206
|
} | undefined;
|
43831
43207
|
} | {
|
43832
43208
|
type: "DATA";
|
@@ -44768,30 +44144,14 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
44768
44144
|
name?: {
|
44769
44145
|
firstname?: {
|
44770
44146
|
required: boolean;
|
44771
|
-
label?: {
|
44772
|
-
id: string;
|
44773
|
-
description: string;
|
44774
|
-
defaultMessage: string;
|
44775
|
-
} | undefined;
|
44776
44147
|
} | undefined;
|
44777
44148
|
surname?: {
|
44778
44149
|
required: boolean;
|
44779
|
-
label?: {
|
44780
|
-
id: string;
|
44781
|
-
description: string;
|
44782
|
-
defaultMessage: string;
|
44783
|
-
} | undefined;
|
44784
44150
|
} | undefined;
|
44785
44151
|
middlename?: {
|
44786
44152
|
required: boolean;
|
44787
|
-
label?: {
|
44788
|
-
id: string;
|
44789
|
-
description: string;
|
44790
|
-
defaultMessage: string;
|
44791
|
-
} | undefined;
|
44792
44153
|
} | undefined;
|
44793
44154
|
} | undefined;
|
44794
|
-
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
44795
44155
|
maxLength?: number | undefined;
|
44796
44156
|
prefix?: {
|
44797
44157
|
id: string;
|
@@ -44803,6 +44163,7 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
44803
44163
|
description: string;
|
44804
44164
|
defaultMessage: string;
|
44805
44165
|
} | undefined;
|
44166
|
+
searchMode?: boolean | undefined;
|
44806
44167
|
} | undefined;
|
44807
44168
|
} | {
|
44808
44169
|
type: "PHONE";
|
@@ -45299,8 +44660,7 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
45299
44660
|
postcodeOrZip?: string | undefined;
|
45300
44661
|
} | undefined;
|
45301
44662
|
configuration?: {
|
45302
|
-
|
45303
|
-
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
44663
|
+
searchMode?: boolean | undefined;
|
45304
44664
|
} | undefined;
|
45305
44665
|
} | {
|
45306
44666
|
type: "DATA";
|
@@ -45425,16 +44785,6 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
45425
44785
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
45426
44786
|
}, {
|
45427
44787
|
type: z.ZodLiteral<"ADDRESS">;
|
45428
|
-
configuration: z.ZodOptional<z.ZodObject<{
|
45429
|
-
lineSeparator: z.ZodOptional<z.ZodString>;
|
45430
|
-
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">>;
|
45431
|
-
}, "strip", z.ZodTypeAny, {
|
45432
|
-
lineSeparator?: string | undefined;
|
45433
|
-
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
45434
|
-
}, {
|
45435
|
-
lineSeparator?: string | undefined;
|
45436
|
-
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
45437
|
-
}>>;
|
45438
44788
|
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodDiscriminatedUnion<"urbanOrRural", [z.ZodObject<z.objectUtil.extendShape<{
|
45439
44789
|
country: z.ZodString;
|
45440
44790
|
addressType: z.ZodLiteral<"DOMESTIC">;
|
@@ -45522,6 +44872,13 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
45522
44872
|
addressLine3?: string | undefined;
|
45523
44873
|
postcodeOrZip?: string | undefined;
|
45524
44874
|
}>]>>;
|
44875
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
44876
|
+
searchMode: z.ZodOptional<z.ZodBoolean>;
|
44877
|
+
}, "strip", z.ZodTypeAny, {
|
44878
|
+
searchMode?: boolean | undefined;
|
44879
|
+
}, {
|
44880
|
+
searchMode?: boolean | undefined;
|
44881
|
+
}>>;
|
45525
44882
|
}>, "strip", z.ZodTypeAny, {
|
45526
44883
|
type: "ADDRESS";
|
45527
44884
|
id: string;
|
@@ -45579,8 +44936,7 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
45579
44936
|
postcodeOrZip?: string | undefined;
|
45580
44937
|
} | undefined;
|
45581
44938
|
configuration?: {
|
45582
|
-
|
45583
|
-
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
44939
|
+
searchMode?: boolean | undefined;
|
45584
44940
|
} | undefined;
|
45585
44941
|
}, {
|
45586
44942
|
type: "ADDRESS";
|
@@ -45655,8 +45011,7 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
45655
45011
|
postcodeOrZip?: string | undefined;
|
45656
45012
|
} | undefined;
|
45657
45013
|
configuration?: {
|
45658
|
-
|
45659
|
-
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
45014
|
+
searchMode?: boolean | undefined;
|
45660
45015
|
} | undefined;
|
45661
45016
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
45662
45017
|
id: z.ZodString;
|
@@ -47628,98 +46983,46 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
47628
46983
|
name: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
47629
46984
|
firstname: z.ZodOptional<z.ZodObject<{
|
47630
46985
|
required: z.ZodBoolean;
|
47631
|
-
label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
47632
|
-
id: string;
|
47633
|
-
description: string;
|
47634
|
-
defaultMessage: string;
|
47635
|
-
}>>;
|
47636
46986
|
}, "strip", z.ZodTypeAny, {
|
47637
46987
|
required: boolean;
|
47638
|
-
label?: TranslationConfig | undefined;
|
47639
46988
|
}, {
|
47640
46989
|
required: boolean;
|
47641
|
-
label?: {
|
47642
|
-
id: string;
|
47643
|
-
description: string;
|
47644
|
-
defaultMessage: string;
|
47645
|
-
} | undefined;
|
47646
46990
|
}>>;
|
47647
46991
|
middlename: z.ZodOptional<z.ZodObject<{
|
47648
46992
|
required: z.ZodBoolean;
|
47649
|
-
label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
47650
|
-
id: string;
|
47651
|
-
description: string;
|
47652
|
-
defaultMessage: string;
|
47653
|
-
}>>;
|
47654
46993
|
}, "strip", z.ZodTypeAny, {
|
47655
46994
|
required: boolean;
|
47656
|
-
label?: TranslationConfig | undefined;
|
47657
46995
|
}, {
|
47658
46996
|
required: boolean;
|
47659
|
-
label?: {
|
47660
|
-
id: string;
|
47661
|
-
description: string;
|
47662
|
-
defaultMessage: string;
|
47663
|
-
} | undefined;
|
47664
46997
|
}>>;
|
47665
46998
|
surname: z.ZodOptional<z.ZodObject<{
|
47666
46999
|
required: z.ZodBoolean;
|
47667
|
-
label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
47668
|
-
id: string;
|
47669
|
-
description: string;
|
47670
|
-
defaultMessage: string;
|
47671
|
-
}>>;
|
47672
47000
|
}, "strip", z.ZodTypeAny, {
|
47673
47001
|
required: boolean;
|
47674
|
-
label?: TranslationConfig | undefined;
|
47675
47002
|
}, {
|
47676
47003
|
required: boolean;
|
47677
|
-
label?: {
|
47678
|
-
id: string;
|
47679
|
-
description: string;
|
47680
|
-
defaultMessage: string;
|
47681
|
-
} | undefined;
|
47682
47004
|
}>>;
|
47683
47005
|
}, "strip", z.ZodTypeAny, {
|
47684
47006
|
firstname?: {
|
47685
47007
|
required: boolean;
|
47686
|
-
label?: TranslationConfig | undefined;
|
47687
47008
|
} | undefined;
|
47688
47009
|
surname?: {
|
47689
47010
|
required: boolean;
|
47690
|
-
label?: TranslationConfig | undefined;
|
47691
47011
|
} | undefined;
|
47692
47012
|
middlename?: {
|
47693
47013
|
required: boolean;
|
47694
|
-
label?: TranslationConfig | undefined;
|
47695
47014
|
} | undefined;
|
47696
47015
|
}, {
|
47697
47016
|
firstname?: {
|
47698
47017
|
required: boolean;
|
47699
|
-
label?: {
|
47700
|
-
id: string;
|
47701
|
-
description: string;
|
47702
|
-
defaultMessage: string;
|
47703
|
-
} | undefined;
|
47704
47018
|
} | undefined;
|
47705
47019
|
surname?: {
|
47706
47020
|
required: boolean;
|
47707
|
-
label?: {
|
47708
|
-
id: string;
|
47709
|
-
description: string;
|
47710
|
-
defaultMessage: string;
|
47711
|
-
} | undefined;
|
47712
47021
|
} | undefined;
|
47713
47022
|
middlename?: {
|
47714
47023
|
required: boolean;
|
47715
|
-
label?: {
|
47716
|
-
id: string;
|
47717
|
-
description: string;
|
47718
|
-
defaultMessage: string;
|
47719
|
-
} | undefined;
|
47720
47024
|
} | undefined;
|
47721
47025
|
}>>>;
|
47722
|
-
order: z.ZodOptional<z.ZodArray<z.ZodEnum<["firstname", "middlename", "surname"]>, "many">>;
|
47723
47026
|
maxLength: z.ZodOptional<z.ZodNumber>;
|
47724
47027
|
prefix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
47725
47028
|
id: string;
|
@@ -47731,53 +47034,35 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
47731
47034
|
description: string;
|
47732
47035
|
defaultMessage: string;
|
47733
47036
|
}>>;
|
47037
|
+
searchMode: z.ZodOptional<z.ZodBoolean>;
|
47734
47038
|
}, "strip", z.ZodTypeAny, {
|
47735
47039
|
name?: {
|
47736
47040
|
firstname?: {
|
47737
47041
|
required: boolean;
|
47738
|
-
label?: TranslationConfig | undefined;
|
47739
47042
|
} | undefined;
|
47740
47043
|
surname?: {
|
47741
47044
|
required: boolean;
|
47742
|
-
label?: TranslationConfig | undefined;
|
47743
47045
|
} | undefined;
|
47744
47046
|
middlename?: {
|
47745
47047
|
required: boolean;
|
47746
|
-
label?: TranslationConfig | undefined;
|
47747
47048
|
} | undefined;
|
47748
47049
|
} | undefined;
|
47749
|
-
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
47750
47050
|
maxLength?: number | undefined;
|
47751
47051
|
prefix?: TranslationConfig | undefined;
|
47752
47052
|
postfix?: TranslationConfig | undefined;
|
47053
|
+
searchMode?: boolean | undefined;
|
47753
47054
|
}, {
|
47754
47055
|
name?: {
|
47755
47056
|
firstname?: {
|
47756
47057
|
required: boolean;
|
47757
|
-
label?: {
|
47758
|
-
id: string;
|
47759
|
-
description: string;
|
47760
|
-
defaultMessage: string;
|
47761
|
-
} | undefined;
|
47762
47058
|
} | undefined;
|
47763
47059
|
surname?: {
|
47764
47060
|
required: boolean;
|
47765
|
-
label?: {
|
47766
|
-
id: string;
|
47767
|
-
description: string;
|
47768
|
-
defaultMessage: string;
|
47769
|
-
} | undefined;
|
47770
47061
|
} | undefined;
|
47771
47062
|
middlename?: {
|
47772
47063
|
required: boolean;
|
47773
|
-
label?: {
|
47774
|
-
id: string;
|
47775
|
-
description: string;
|
47776
|
-
defaultMessage: string;
|
47777
|
-
} | undefined;
|
47778
47064
|
} | undefined;
|
47779
47065
|
} | undefined;
|
47780
|
-
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
47781
47066
|
maxLength?: number | undefined;
|
47782
47067
|
prefix?: {
|
47783
47068
|
id: string;
|
@@ -47789,6 +47074,7 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
47789
47074
|
description: string;
|
47790
47075
|
defaultMessage: string;
|
47791
47076
|
} | undefined;
|
47077
|
+
searchMode?: boolean | undefined;
|
47792
47078
|
}>>>;
|
47793
47079
|
}>, "strip", z.ZodTypeAny, {
|
47794
47080
|
type: "NAME";
|
@@ -47826,21 +47112,18 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
47826
47112
|
name?: {
|
47827
47113
|
firstname?: {
|
47828
47114
|
required: boolean;
|
47829
|
-
label?: TranslationConfig | undefined;
|
47830
47115
|
} | undefined;
|
47831
47116
|
surname?: {
|
47832
47117
|
required: boolean;
|
47833
|
-
label?: TranslationConfig | undefined;
|
47834
47118
|
} | undefined;
|
47835
47119
|
middlename?: {
|
47836
47120
|
required: boolean;
|
47837
|
-
label?: TranslationConfig | undefined;
|
47838
47121
|
} | undefined;
|
47839
47122
|
} | undefined;
|
47840
|
-
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
47841
47123
|
maxLength?: number | undefined;
|
47842
47124
|
prefix?: TranslationConfig | undefined;
|
47843
47125
|
postfix?: TranslationConfig | undefined;
|
47126
|
+
searchMode?: boolean | undefined;
|
47844
47127
|
} | undefined;
|
47845
47128
|
}, {
|
47846
47129
|
type: "NAME";
|
@@ -47894,30 +47177,14 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
47894
47177
|
name?: {
|
47895
47178
|
firstname?: {
|
47896
47179
|
required: boolean;
|
47897
|
-
label?: {
|
47898
|
-
id: string;
|
47899
|
-
description: string;
|
47900
|
-
defaultMessage: string;
|
47901
|
-
} | undefined;
|
47902
47180
|
} | undefined;
|
47903
47181
|
surname?: {
|
47904
47182
|
required: boolean;
|
47905
|
-
label?: {
|
47906
|
-
id: string;
|
47907
|
-
description: string;
|
47908
|
-
defaultMessage: string;
|
47909
|
-
} | undefined;
|
47910
47183
|
} | undefined;
|
47911
47184
|
middlename?: {
|
47912
47185
|
required: boolean;
|
47913
|
-
label?: {
|
47914
|
-
id: string;
|
47915
|
-
description: string;
|
47916
|
-
defaultMessage: string;
|
47917
|
-
} | undefined;
|
47918
47186
|
} | undefined;
|
47919
47187
|
} | undefined;
|
47920
|
-
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
47921
47188
|
maxLength?: number | undefined;
|
47922
47189
|
prefix?: {
|
47923
47190
|
id: string;
|
@@ -47929,6 +47196,7 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
47929
47196
|
description: string;
|
47930
47197
|
defaultMessage: string;
|
47931
47198
|
} | undefined;
|
47199
|
+
searchMode?: boolean | undefined;
|
47932
47200
|
} | undefined;
|
47933
47201
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
47934
47202
|
id: z.ZodString;
|
@@ -50660,21 +49928,18 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
50660
49928
|
name?: {
|
50661
49929
|
firstname?: {
|
50662
49930
|
required: boolean;
|
50663
|
-
label?: TranslationConfig | undefined;
|
50664
49931
|
} | undefined;
|
50665
49932
|
surname?: {
|
50666
49933
|
required: boolean;
|
50667
|
-
label?: TranslationConfig | undefined;
|
50668
49934
|
} | undefined;
|
50669
49935
|
middlename?: {
|
50670
49936
|
required: boolean;
|
50671
|
-
label?: TranslationConfig | undefined;
|
50672
49937
|
} | undefined;
|
50673
49938
|
} | undefined;
|
50674
|
-
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
50675
49939
|
maxLength?: number | undefined;
|
50676
49940
|
prefix?: TranslationConfig | undefined;
|
50677
49941
|
postfix?: TranslationConfig | undefined;
|
49942
|
+
searchMode?: boolean | undefined;
|
50678
49943
|
} | undefined;
|
50679
49944
|
} | {
|
50680
49945
|
type: "PHONE";
|
@@ -51007,8 +50272,7 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
51007
50272
|
postcodeOrZip?: string | undefined;
|
51008
50273
|
} | undefined;
|
51009
50274
|
configuration?: {
|
51010
|
-
|
51011
|
-
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
50275
|
+
searchMode?: boolean | undefined;
|
51012
50276
|
} | undefined;
|
51013
50277
|
} | {
|
51014
50278
|
type: "DATA";
|
@@ -51979,30 +51243,14 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
51979
51243
|
name?: {
|
51980
51244
|
firstname?: {
|
51981
51245
|
required: boolean;
|
51982
|
-
label?: {
|
51983
|
-
id: string;
|
51984
|
-
description: string;
|
51985
|
-
defaultMessage: string;
|
51986
|
-
} | undefined;
|
51987
51246
|
} | undefined;
|
51988
51247
|
surname?: {
|
51989
51248
|
required: boolean;
|
51990
|
-
label?: {
|
51991
|
-
id: string;
|
51992
|
-
description: string;
|
51993
|
-
defaultMessage: string;
|
51994
|
-
} | undefined;
|
51995
51249
|
} | undefined;
|
51996
51250
|
middlename?: {
|
51997
51251
|
required: boolean;
|
51998
|
-
label?: {
|
51999
|
-
id: string;
|
52000
|
-
description: string;
|
52001
|
-
defaultMessage: string;
|
52002
|
-
} | undefined;
|
52003
51252
|
} | undefined;
|
52004
51253
|
} | undefined;
|
52005
|
-
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
52006
51254
|
maxLength?: number | undefined;
|
52007
51255
|
prefix?: {
|
52008
51256
|
id: string;
|
@@ -52014,6 +51262,7 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
52014
51262
|
description: string;
|
52015
51263
|
defaultMessage: string;
|
52016
51264
|
} | undefined;
|
51265
|
+
searchMode?: boolean | undefined;
|
52017
51266
|
} | undefined;
|
52018
51267
|
} | {
|
52019
51268
|
type: "PHONE";
|
@@ -52510,8 +51759,7 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
52510
51759
|
postcodeOrZip?: string | undefined;
|
52511
51760
|
} | undefined;
|
52512
51761
|
configuration?: {
|
52513
|
-
|
52514
|
-
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
51762
|
+
searchMode?: boolean | undefined;
|
52515
51763
|
} | undefined;
|
52516
51764
|
} | {
|
52517
51765
|
type: "DATA";
|
@@ -53149,21 +52397,18 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
53149
52397
|
name?: {
|
53150
52398
|
firstname?: {
|
53151
52399
|
required: boolean;
|
53152
|
-
label?: TranslationConfig | undefined;
|
53153
52400
|
} | undefined;
|
53154
52401
|
surname?: {
|
53155
52402
|
required: boolean;
|
53156
|
-
label?: TranslationConfig | undefined;
|
53157
52403
|
} | undefined;
|
53158
52404
|
middlename?: {
|
53159
52405
|
required: boolean;
|
53160
|
-
label?: TranslationConfig | undefined;
|
53161
52406
|
} | undefined;
|
53162
52407
|
} | undefined;
|
53163
|
-
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
53164
52408
|
maxLength?: number | undefined;
|
53165
52409
|
prefix?: TranslationConfig | undefined;
|
53166
52410
|
postfix?: TranslationConfig | undefined;
|
52411
|
+
searchMode?: boolean | undefined;
|
53167
52412
|
} | undefined;
|
53168
52413
|
} | {
|
53169
52414
|
type: "PHONE";
|
@@ -53496,8 +52741,7 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
53496
52741
|
postcodeOrZip?: string | undefined;
|
53497
52742
|
} | undefined;
|
53498
52743
|
configuration?: {
|
53499
|
-
|
53500
|
-
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
52744
|
+
searchMode?: boolean | undefined;
|
53501
52745
|
} | undefined;
|
53502
52746
|
} | {
|
53503
52747
|
type: "DATA";
|
@@ -54116,21 +53360,18 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
54116
53360
|
name?: {
|
54117
53361
|
firstname?: {
|
54118
53362
|
required: boolean;
|
54119
|
-
label?: TranslationConfig | undefined;
|
54120
53363
|
} | undefined;
|
54121
53364
|
surname?: {
|
54122
53365
|
required: boolean;
|
54123
|
-
label?: TranslationConfig | undefined;
|
54124
53366
|
} | undefined;
|
54125
53367
|
middlename?: {
|
54126
53368
|
required: boolean;
|
54127
|
-
label?: TranslationConfig | undefined;
|
54128
53369
|
} | undefined;
|
54129
53370
|
} | undefined;
|
54130
|
-
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
54131
53371
|
maxLength?: number | undefined;
|
54132
53372
|
prefix?: TranslationConfig | undefined;
|
54133
53373
|
postfix?: TranslationConfig | undefined;
|
53374
|
+
searchMode?: boolean | undefined;
|
54134
53375
|
} | undefined;
|
54135
53376
|
} | {
|
54136
53377
|
type: "PHONE";
|
@@ -54463,8 +53704,7 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
54463
53704
|
postcodeOrZip?: string | undefined;
|
54464
53705
|
} | undefined;
|
54465
53706
|
configuration?: {
|
54466
|
-
|
54467
|
-
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
53707
|
+
searchMode?: boolean | undefined;
|
54468
53708
|
} | undefined;
|
54469
53709
|
} | {
|
54470
53710
|
type: "DATA";
|
@@ -55413,30 +54653,14 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
55413
54653
|
name?: {
|
55414
54654
|
firstname?: {
|
55415
54655
|
required: boolean;
|
55416
|
-
label?: {
|
55417
|
-
id: string;
|
55418
|
-
description: string;
|
55419
|
-
defaultMessage: string;
|
55420
|
-
} | undefined;
|
55421
54656
|
} | undefined;
|
55422
54657
|
surname?: {
|
55423
54658
|
required: boolean;
|
55424
|
-
label?: {
|
55425
|
-
id: string;
|
55426
|
-
description: string;
|
55427
|
-
defaultMessage: string;
|
55428
|
-
} | undefined;
|
55429
54659
|
} | undefined;
|
55430
54660
|
middlename?: {
|
55431
54661
|
required: boolean;
|
55432
|
-
label?: {
|
55433
|
-
id: string;
|
55434
|
-
description: string;
|
55435
|
-
defaultMessage: string;
|
55436
|
-
} | undefined;
|
55437
54662
|
} | undefined;
|
55438
54663
|
} | undefined;
|
55439
|
-
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
55440
54664
|
maxLength?: number | undefined;
|
55441
54665
|
prefix?: {
|
55442
54666
|
id: string;
|
@@ -55448,6 +54672,7 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
55448
54672
|
description: string;
|
55449
54673
|
defaultMessage: string;
|
55450
54674
|
} | undefined;
|
54675
|
+
searchMode?: boolean | undefined;
|
55451
54676
|
} | undefined;
|
55452
54677
|
} | {
|
55453
54678
|
type: "PHONE";
|
@@ -55944,8 +55169,7 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
55944
55169
|
postcodeOrZip?: string | undefined;
|
55945
55170
|
} | undefined;
|
55946
55171
|
configuration?: {
|
55947
|
-
|
55948
|
-
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
55172
|
+
searchMode?: boolean | undefined;
|
55949
55173
|
} | undefined;
|
55950
55174
|
} | {
|
55951
55175
|
type: "DATA";
|
@@ -56945,30 +56169,14 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
56945
56169
|
name?: {
|
56946
56170
|
firstname?: {
|
56947
56171
|
required: boolean;
|
56948
|
-
label?: {
|
56949
|
-
id: string;
|
56950
|
-
description: string;
|
56951
|
-
defaultMessage: string;
|
56952
|
-
} | undefined;
|
56953
56172
|
} | undefined;
|
56954
56173
|
surname?: {
|
56955
56174
|
required: boolean;
|
56956
|
-
label?: {
|
56957
|
-
id: string;
|
56958
|
-
description: string;
|
56959
|
-
defaultMessage: string;
|
56960
|
-
} | undefined;
|
56961
56175
|
} | undefined;
|
56962
56176
|
middlename?: {
|
56963
56177
|
required: boolean;
|
56964
|
-
label?: {
|
56965
|
-
id: string;
|
56966
|
-
description: string;
|
56967
|
-
defaultMessage: string;
|
56968
|
-
} | undefined;
|
56969
56178
|
} | undefined;
|
56970
56179
|
} | undefined;
|
56971
|
-
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
56972
56180
|
maxLength?: number | undefined;
|
56973
56181
|
prefix?: {
|
56974
56182
|
id: string;
|
@@ -56980,6 +56188,7 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
56980
56188
|
description: string;
|
56981
56189
|
defaultMessage: string;
|
56982
56190
|
} | undefined;
|
56191
|
+
searchMode?: boolean | undefined;
|
56983
56192
|
} | undefined;
|
56984
56193
|
} | {
|
56985
56194
|
type: "PHONE";
|
@@ -57476,8 +56685,7 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
57476
56685
|
postcodeOrZip?: string | undefined;
|
57477
56686
|
} | undefined;
|
57478
56687
|
configuration?: {
|
57479
|
-
|
57480
|
-
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
56688
|
+
searchMode?: boolean | undefined;
|
57481
56689
|
} | undefined;
|
57482
56690
|
} | {
|
57483
56691
|
type: "DATA";
|