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