@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
@@ -258,6 +258,16 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
258
258
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
259
259
|
}, {
|
260
260
|
type: z.ZodLiteral<"ADDRESS">;
|
261
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
262
|
+
lineSeparator: z.ZodOptional<z.ZodString>;
|
263
|
+
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">>;
|
264
|
+
}, "strip", z.ZodTypeAny, {
|
265
|
+
lineSeparator?: string | undefined;
|
266
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
267
|
+
}, {
|
268
|
+
lineSeparator?: string | undefined;
|
269
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
270
|
+
}>>;
|
261
271
|
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodDiscriminatedUnion<"urbanOrRural", [z.ZodObject<z.objectUtil.extendShape<{
|
262
272
|
country: z.ZodString;
|
263
273
|
addressType: z.ZodLiteral<"DOMESTIC">;
|
@@ -345,13 +355,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
345
355
|
addressLine3?: string | undefined;
|
346
356
|
postcodeOrZip?: string | undefined;
|
347
357
|
}>]>>;
|
348
|
-
configuration: z.ZodOptional<z.ZodObject<{
|
349
|
-
searchMode: z.ZodOptional<z.ZodBoolean>;
|
350
|
-
}, "strip", z.ZodTypeAny, {
|
351
|
-
searchMode?: boolean | undefined;
|
352
|
-
}, {
|
353
|
-
searchMode?: boolean | undefined;
|
354
|
-
}>>;
|
355
358
|
}>, "strip", z.ZodTypeAny, {
|
356
359
|
type: "ADDRESS";
|
357
360
|
id: string;
|
@@ -409,7 +412,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
409
412
|
postcodeOrZip?: string | undefined;
|
410
413
|
} | undefined;
|
411
414
|
configuration?: {
|
412
|
-
|
415
|
+
lineSeparator?: string | undefined;
|
416
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
413
417
|
} | undefined;
|
414
418
|
}, {
|
415
419
|
type: "ADDRESS";
|
@@ -484,7 +488,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
484
488
|
postcodeOrZip?: string | undefined;
|
485
489
|
} | undefined;
|
486
490
|
configuration?: {
|
487
|
-
|
491
|
+
lineSeparator?: string | undefined;
|
492
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
488
493
|
} | undefined;
|
489
494
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
490
495
|
id: z.ZodString;
|
@@ -2456,46 +2461,98 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
2456
2461
|
name: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
2457
2462
|
firstname: z.ZodOptional<z.ZodObject<{
|
2458
2463
|
required: z.ZodBoolean;
|
2464
|
+
label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2465
|
+
id: string;
|
2466
|
+
description: string;
|
2467
|
+
defaultMessage: string;
|
2468
|
+
}>>;
|
2459
2469
|
}, "strip", z.ZodTypeAny, {
|
2460
2470
|
required: boolean;
|
2471
|
+
label?: TranslationConfig | undefined;
|
2461
2472
|
}, {
|
2462
2473
|
required: boolean;
|
2474
|
+
label?: {
|
2475
|
+
id: string;
|
2476
|
+
description: string;
|
2477
|
+
defaultMessage: string;
|
2478
|
+
} | undefined;
|
2463
2479
|
}>>;
|
2464
2480
|
middlename: z.ZodOptional<z.ZodObject<{
|
2465
2481
|
required: z.ZodBoolean;
|
2482
|
+
label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2483
|
+
id: string;
|
2484
|
+
description: string;
|
2485
|
+
defaultMessage: string;
|
2486
|
+
}>>;
|
2466
2487
|
}, "strip", z.ZodTypeAny, {
|
2467
2488
|
required: boolean;
|
2489
|
+
label?: TranslationConfig | undefined;
|
2468
2490
|
}, {
|
2469
2491
|
required: boolean;
|
2492
|
+
label?: {
|
2493
|
+
id: string;
|
2494
|
+
description: string;
|
2495
|
+
defaultMessage: string;
|
2496
|
+
} | undefined;
|
2470
2497
|
}>>;
|
2471
2498
|
surname: z.ZodOptional<z.ZodObject<{
|
2472
2499
|
required: z.ZodBoolean;
|
2500
|
+
label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2501
|
+
id: string;
|
2502
|
+
description: string;
|
2503
|
+
defaultMessage: string;
|
2504
|
+
}>>;
|
2473
2505
|
}, "strip", z.ZodTypeAny, {
|
2474
2506
|
required: boolean;
|
2507
|
+
label?: TranslationConfig | undefined;
|
2475
2508
|
}, {
|
2476
2509
|
required: boolean;
|
2510
|
+
label?: {
|
2511
|
+
id: string;
|
2512
|
+
description: string;
|
2513
|
+
defaultMessage: string;
|
2514
|
+
} | undefined;
|
2477
2515
|
}>>;
|
2478
2516
|
}, "strip", z.ZodTypeAny, {
|
2479
2517
|
firstname?: {
|
2480
2518
|
required: boolean;
|
2519
|
+
label?: TranslationConfig | undefined;
|
2481
2520
|
} | undefined;
|
2482
2521
|
surname?: {
|
2483
2522
|
required: boolean;
|
2523
|
+
label?: TranslationConfig | undefined;
|
2484
2524
|
} | undefined;
|
2485
2525
|
middlename?: {
|
2486
2526
|
required: boolean;
|
2527
|
+
label?: TranslationConfig | undefined;
|
2487
2528
|
} | undefined;
|
2488
2529
|
}, {
|
2489
2530
|
firstname?: {
|
2490
2531
|
required: boolean;
|
2532
|
+
label?: {
|
2533
|
+
id: string;
|
2534
|
+
description: string;
|
2535
|
+
defaultMessage: string;
|
2536
|
+
} | undefined;
|
2491
2537
|
} | undefined;
|
2492
2538
|
surname?: {
|
2493
2539
|
required: boolean;
|
2540
|
+
label?: {
|
2541
|
+
id: string;
|
2542
|
+
description: string;
|
2543
|
+
defaultMessage: string;
|
2544
|
+
} | undefined;
|
2494
2545
|
} | undefined;
|
2495
2546
|
middlename?: {
|
2496
2547
|
required: boolean;
|
2548
|
+
label?: {
|
2549
|
+
id: string;
|
2550
|
+
description: string;
|
2551
|
+
defaultMessage: string;
|
2552
|
+
} | undefined;
|
2497
2553
|
} | undefined;
|
2498
2554
|
}>>>;
|
2555
|
+
order: z.ZodOptional<z.ZodArray<z.ZodEnum<["firstname", "middlename", "surname"]>, "many">>;
|
2499
2556
|
maxLength: z.ZodOptional<z.ZodNumber>;
|
2500
2557
|
prefix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2501
2558
|
id: string;
|
@@ -2507,35 +2564,53 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
2507
2564
|
description: string;
|
2508
2565
|
defaultMessage: string;
|
2509
2566
|
}>>;
|
2510
|
-
searchMode: z.ZodOptional<z.ZodBoolean>;
|
2511
2567
|
}, "strip", z.ZodTypeAny, {
|
2512
2568
|
name?: {
|
2513
2569
|
firstname?: {
|
2514
2570
|
required: boolean;
|
2571
|
+
label?: TranslationConfig | undefined;
|
2515
2572
|
} | undefined;
|
2516
2573
|
surname?: {
|
2517
2574
|
required: boolean;
|
2575
|
+
label?: TranslationConfig | undefined;
|
2518
2576
|
} | undefined;
|
2519
2577
|
middlename?: {
|
2520
2578
|
required: boolean;
|
2579
|
+
label?: TranslationConfig | undefined;
|
2521
2580
|
} | undefined;
|
2522
2581
|
} | undefined;
|
2582
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
2523
2583
|
maxLength?: number | undefined;
|
2524
2584
|
prefix?: TranslationConfig | undefined;
|
2525
2585
|
postfix?: TranslationConfig | undefined;
|
2526
|
-
searchMode?: boolean | undefined;
|
2527
2586
|
}, {
|
2528
2587
|
name?: {
|
2529
2588
|
firstname?: {
|
2530
2589
|
required: boolean;
|
2590
|
+
label?: {
|
2591
|
+
id: string;
|
2592
|
+
description: string;
|
2593
|
+
defaultMessage: string;
|
2594
|
+
} | undefined;
|
2531
2595
|
} | undefined;
|
2532
2596
|
surname?: {
|
2533
2597
|
required: boolean;
|
2598
|
+
label?: {
|
2599
|
+
id: string;
|
2600
|
+
description: string;
|
2601
|
+
defaultMessage: string;
|
2602
|
+
} | undefined;
|
2534
2603
|
} | undefined;
|
2535
2604
|
middlename?: {
|
2536
2605
|
required: boolean;
|
2606
|
+
label?: {
|
2607
|
+
id: string;
|
2608
|
+
description: string;
|
2609
|
+
defaultMessage: string;
|
2610
|
+
} | undefined;
|
2537
2611
|
} | undefined;
|
2538
2612
|
} | undefined;
|
2613
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
2539
2614
|
maxLength?: number | undefined;
|
2540
2615
|
prefix?: {
|
2541
2616
|
id: string;
|
@@ -2547,7 +2622,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
2547
2622
|
description: string;
|
2548
2623
|
defaultMessage: string;
|
2549
2624
|
} | undefined;
|
2550
|
-
searchMode?: boolean | undefined;
|
2551
2625
|
}>>>;
|
2552
2626
|
}>, "strip", z.ZodTypeAny, {
|
2553
2627
|
type: "NAME";
|
@@ -2585,18 +2659,21 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
2585
2659
|
name?: {
|
2586
2660
|
firstname?: {
|
2587
2661
|
required: boolean;
|
2662
|
+
label?: TranslationConfig | undefined;
|
2588
2663
|
} | undefined;
|
2589
2664
|
surname?: {
|
2590
2665
|
required: boolean;
|
2666
|
+
label?: TranslationConfig | undefined;
|
2591
2667
|
} | undefined;
|
2592
2668
|
middlename?: {
|
2593
2669
|
required: boolean;
|
2670
|
+
label?: TranslationConfig | undefined;
|
2594
2671
|
} | undefined;
|
2595
2672
|
} | undefined;
|
2673
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
2596
2674
|
maxLength?: number | undefined;
|
2597
2675
|
prefix?: TranslationConfig | undefined;
|
2598
2676
|
postfix?: TranslationConfig | undefined;
|
2599
|
-
searchMode?: boolean | undefined;
|
2600
2677
|
} | undefined;
|
2601
2678
|
}, {
|
2602
2679
|
type: "NAME";
|
@@ -2650,14 +2727,30 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
2650
2727
|
name?: {
|
2651
2728
|
firstname?: {
|
2652
2729
|
required: boolean;
|
2730
|
+
label?: {
|
2731
|
+
id: string;
|
2732
|
+
description: string;
|
2733
|
+
defaultMessage: string;
|
2734
|
+
} | undefined;
|
2653
2735
|
} | undefined;
|
2654
2736
|
surname?: {
|
2655
2737
|
required: boolean;
|
2738
|
+
label?: {
|
2739
|
+
id: string;
|
2740
|
+
description: string;
|
2741
|
+
defaultMessage: string;
|
2742
|
+
} | undefined;
|
2656
2743
|
} | undefined;
|
2657
2744
|
middlename?: {
|
2658
2745
|
required: boolean;
|
2746
|
+
label?: {
|
2747
|
+
id: string;
|
2748
|
+
description: string;
|
2749
|
+
defaultMessage: string;
|
2750
|
+
} | undefined;
|
2659
2751
|
} | undefined;
|
2660
2752
|
} | undefined;
|
2753
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
2661
2754
|
maxLength?: number | undefined;
|
2662
2755
|
prefix?: {
|
2663
2756
|
id: string;
|
@@ -2669,7 +2762,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
2669
2762
|
description: string;
|
2670
2763
|
defaultMessage: string;
|
2671
2764
|
} | undefined;
|
2672
|
-
searchMode?: boolean | undefined;
|
2673
2765
|
} | undefined;
|
2674
2766
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2675
2767
|
id: z.ZodString;
|
@@ -5275,18 +5367,21 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
5275
5367
|
name?: {
|
5276
5368
|
firstname?: {
|
5277
5369
|
required: boolean;
|
5370
|
+
label?: TranslationConfig | undefined;
|
5278
5371
|
} | undefined;
|
5279
5372
|
surname?: {
|
5280
5373
|
required: boolean;
|
5374
|
+
label?: TranslationConfig | undefined;
|
5281
5375
|
} | undefined;
|
5282
5376
|
middlename?: {
|
5283
5377
|
required: boolean;
|
5378
|
+
label?: TranslationConfig | undefined;
|
5284
5379
|
} | undefined;
|
5285
5380
|
} | undefined;
|
5381
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
5286
5382
|
maxLength?: number | undefined;
|
5287
5383
|
prefix?: TranslationConfig | undefined;
|
5288
5384
|
postfix?: TranslationConfig | undefined;
|
5289
|
-
searchMode?: boolean | undefined;
|
5290
5385
|
} | undefined;
|
5291
5386
|
} | {
|
5292
5387
|
type: "PHONE";
|
@@ -5619,7 +5714,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
5619
5714
|
postcodeOrZip?: string | undefined;
|
5620
5715
|
} | undefined;
|
5621
5716
|
configuration?: {
|
5622
|
-
|
5717
|
+
lineSeparator?: string | undefined;
|
5718
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
5623
5719
|
} | undefined;
|
5624
5720
|
} | {
|
5625
5721
|
type: "DATA";
|
@@ -6561,14 +6657,30 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
6561
6657
|
name?: {
|
6562
6658
|
firstname?: {
|
6563
6659
|
required: boolean;
|
6660
|
+
label?: {
|
6661
|
+
id: string;
|
6662
|
+
description: string;
|
6663
|
+
defaultMessage: string;
|
6664
|
+
} | undefined;
|
6564
6665
|
} | undefined;
|
6565
6666
|
surname?: {
|
6566
6667
|
required: boolean;
|
6668
|
+
label?: {
|
6669
|
+
id: string;
|
6670
|
+
description: string;
|
6671
|
+
defaultMessage: string;
|
6672
|
+
} | undefined;
|
6567
6673
|
} | undefined;
|
6568
6674
|
middlename?: {
|
6569
6675
|
required: boolean;
|
6676
|
+
label?: {
|
6677
|
+
id: string;
|
6678
|
+
description: string;
|
6679
|
+
defaultMessage: string;
|
6680
|
+
} | undefined;
|
6570
6681
|
} | undefined;
|
6571
6682
|
} | undefined;
|
6683
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
6572
6684
|
maxLength?: number | undefined;
|
6573
6685
|
prefix?: {
|
6574
6686
|
id: string;
|
@@ -6580,7 +6692,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
6580
6692
|
description: string;
|
6581
6693
|
defaultMessage: string;
|
6582
6694
|
} | undefined;
|
6583
|
-
searchMode?: boolean | undefined;
|
6584
6695
|
} | undefined;
|
6585
6696
|
} | {
|
6586
6697
|
type: "PHONE";
|
@@ -7077,7 +7188,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
7077
7188
|
postcodeOrZip?: string | undefined;
|
7078
7189
|
} | undefined;
|
7079
7190
|
configuration?: {
|
7080
|
-
|
7191
|
+
lineSeparator?: string | undefined;
|
7192
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
7081
7193
|
} | undefined;
|
7082
7194
|
} | {
|
7083
7195
|
type: "DATA";
|
@@ -7716,18 +7828,21 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
7716
7828
|
name?: {
|
7717
7829
|
firstname?: {
|
7718
7830
|
required: boolean;
|
7831
|
+
label?: TranslationConfig | undefined;
|
7719
7832
|
} | undefined;
|
7720
7833
|
surname?: {
|
7721
7834
|
required: boolean;
|
7835
|
+
label?: TranslationConfig | undefined;
|
7722
7836
|
} | undefined;
|
7723
7837
|
middlename?: {
|
7724
7838
|
required: boolean;
|
7839
|
+
label?: TranslationConfig | undefined;
|
7725
7840
|
} | undefined;
|
7726
7841
|
} | undefined;
|
7842
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
7727
7843
|
maxLength?: number | undefined;
|
7728
7844
|
prefix?: TranslationConfig | undefined;
|
7729
7845
|
postfix?: TranslationConfig | undefined;
|
7730
|
-
searchMode?: boolean | undefined;
|
7731
7846
|
} | undefined;
|
7732
7847
|
} | {
|
7733
7848
|
type: "PHONE";
|
@@ -8060,7 +8175,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
8060
8175
|
postcodeOrZip?: string | undefined;
|
8061
8176
|
} | undefined;
|
8062
8177
|
configuration?: {
|
8063
|
-
|
8178
|
+
lineSeparator?: string | undefined;
|
8179
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
8064
8180
|
} | undefined;
|
8065
8181
|
} | {
|
8066
8182
|
type: "DATA";
|
@@ -9009,14 +9125,30 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
9009
9125
|
name?: {
|
9010
9126
|
firstname?: {
|
9011
9127
|
required: boolean;
|
9128
|
+
label?: {
|
9129
|
+
id: string;
|
9130
|
+
description: string;
|
9131
|
+
defaultMessage: string;
|
9132
|
+
} | undefined;
|
9012
9133
|
} | undefined;
|
9013
9134
|
surname?: {
|
9014
9135
|
required: boolean;
|
9136
|
+
label?: {
|
9137
|
+
id: string;
|
9138
|
+
description: string;
|
9139
|
+
defaultMessage: string;
|
9140
|
+
} | undefined;
|
9015
9141
|
} | undefined;
|
9016
9142
|
middlename?: {
|
9017
9143
|
required: boolean;
|
9144
|
+
label?: {
|
9145
|
+
id: string;
|
9146
|
+
description: string;
|
9147
|
+
defaultMessage: string;
|
9148
|
+
} | undefined;
|
9018
9149
|
} | undefined;
|
9019
9150
|
} | undefined;
|
9151
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
9020
9152
|
maxLength?: number | undefined;
|
9021
9153
|
prefix?: {
|
9022
9154
|
id: string;
|
@@ -9028,7 +9160,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
9028
9160
|
description: string;
|
9029
9161
|
defaultMessage: string;
|
9030
9162
|
} | undefined;
|
9031
|
-
searchMode?: boolean | undefined;
|
9032
9163
|
} | undefined;
|
9033
9164
|
} | {
|
9034
9165
|
type: "PHONE";
|
@@ -9525,7 +9656,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
9525
9656
|
postcodeOrZip?: string | undefined;
|
9526
9657
|
} | undefined;
|
9527
9658
|
configuration?: {
|
9528
|
-
|
9659
|
+
lineSeparator?: string | undefined;
|
9660
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
9529
9661
|
} | undefined;
|
9530
9662
|
} | {
|
9531
9663
|
type: "DATA";
|
@@ -10571,18 +10703,21 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
10571
10703
|
name?: {
|
10572
10704
|
firstname?: {
|
10573
10705
|
required: boolean;
|
10706
|
+
label?: TranslationConfig | undefined;
|
10574
10707
|
} | undefined;
|
10575
10708
|
surname?: {
|
10576
10709
|
required: boolean;
|
10710
|
+
label?: TranslationConfig | undefined;
|
10577
10711
|
} | undefined;
|
10578
10712
|
middlename?: {
|
10579
10713
|
required: boolean;
|
10714
|
+
label?: TranslationConfig | undefined;
|
10580
10715
|
} | undefined;
|
10581
10716
|
} | undefined;
|
10717
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
10582
10718
|
maxLength?: number | undefined;
|
10583
10719
|
prefix?: TranslationConfig | undefined;
|
10584
10720
|
postfix?: TranslationConfig | undefined;
|
10585
|
-
searchMode?: boolean | undefined;
|
10586
10721
|
} | undefined;
|
10587
10722
|
} | {
|
10588
10723
|
type: "PHONE";
|
@@ -10915,7 +11050,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
10915
11050
|
postcodeOrZip?: string | undefined;
|
10916
11051
|
} | undefined;
|
10917
11052
|
configuration?: {
|
10918
|
-
|
11053
|
+
lineSeparator?: string | undefined;
|
11054
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
10919
11055
|
} | undefined;
|
10920
11056
|
} | {
|
10921
11057
|
type: "DATA";
|
@@ -11532,18 +11668,21 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
11532
11668
|
name?: {
|
11533
11669
|
firstname?: {
|
11534
11670
|
required: boolean;
|
11671
|
+
label?: TranslationConfig | undefined;
|
11535
11672
|
} | undefined;
|
11536
11673
|
surname?: {
|
11537
11674
|
required: boolean;
|
11675
|
+
label?: TranslationConfig | undefined;
|
11538
11676
|
} | undefined;
|
11539
11677
|
middlename?: {
|
11540
11678
|
required: boolean;
|
11679
|
+
label?: TranslationConfig | undefined;
|
11541
11680
|
} | undefined;
|
11542
11681
|
} | undefined;
|
11682
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
11543
11683
|
maxLength?: number | undefined;
|
11544
11684
|
prefix?: TranslationConfig | undefined;
|
11545
11685
|
postfix?: TranslationConfig | undefined;
|
11546
|
-
searchMode?: boolean | undefined;
|
11547
11686
|
} | undefined;
|
11548
11687
|
} | {
|
11549
11688
|
type: "PHONE";
|
@@ -11876,7 +12015,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
11876
12015
|
postcodeOrZip?: string | undefined;
|
11877
12016
|
} | undefined;
|
11878
12017
|
configuration?: {
|
11879
|
-
|
12018
|
+
lineSeparator?: string | undefined;
|
12019
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
11880
12020
|
} | undefined;
|
11881
12021
|
} | {
|
11882
12022
|
type: "DATA";
|
@@ -12492,18 +12632,21 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
12492
12632
|
name?: {
|
12493
12633
|
firstname?: {
|
12494
12634
|
required: boolean;
|
12635
|
+
label?: TranslationConfig | undefined;
|
12495
12636
|
} | undefined;
|
12496
12637
|
surname?: {
|
12497
12638
|
required: boolean;
|
12639
|
+
label?: TranslationConfig | undefined;
|
12498
12640
|
} | undefined;
|
12499
12641
|
middlename?: {
|
12500
12642
|
required: boolean;
|
12643
|
+
label?: TranslationConfig | undefined;
|
12501
12644
|
} | undefined;
|
12502
12645
|
} | undefined;
|
12646
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
12503
12647
|
maxLength?: number | undefined;
|
12504
12648
|
prefix?: TranslationConfig | undefined;
|
12505
12649
|
postfix?: TranslationConfig | undefined;
|
12506
|
-
searchMode?: boolean | undefined;
|
12507
12650
|
} | undefined;
|
12508
12651
|
} | {
|
12509
12652
|
type: "PHONE";
|
@@ -12836,7 +12979,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
12836
12979
|
postcodeOrZip?: string | undefined;
|
12837
12980
|
} | undefined;
|
12838
12981
|
configuration?: {
|
12839
|
-
|
12982
|
+
lineSeparator?: string | undefined;
|
12983
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
12840
12984
|
} | undefined;
|
12841
12985
|
} | {
|
12842
12986
|
type: "DATA";
|
@@ -13452,18 +13596,21 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
13452
13596
|
name?: {
|
13453
13597
|
firstname?: {
|
13454
13598
|
required: boolean;
|
13599
|
+
label?: TranslationConfig | undefined;
|
13455
13600
|
} | undefined;
|
13456
13601
|
surname?: {
|
13457
13602
|
required: boolean;
|
13603
|
+
label?: TranslationConfig | undefined;
|
13458
13604
|
} | undefined;
|
13459
13605
|
middlename?: {
|
13460
13606
|
required: boolean;
|
13607
|
+
label?: TranslationConfig | undefined;
|
13461
13608
|
} | undefined;
|
13462
13609
|
} | undefined;
|
13610
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
13463
13611
|
maxLength?: number | undefined;
|
13464
13612
|
prefix?: TranslationConfig | undefined;
|
13465
13613
|
postfix?: TranslationConfig | undefined;
|
13466
|
-
searchMode?: boolean | undefined;
|
13467
13614
|
} | undefined;
|
13468
13615
|
} | {
|
13469
13616
|
type: "PHONE";
|
@@ -13796,7 +13943,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
13796
13943
|
postcodeOrZip?: string | undefined;
|
13797
13944
|
} | undefined;
|
13798
13945
|
configuration?: {
|
13799
|
-
|
13946
|
+
lineSeparator?: string | undefined;
|
13947
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
13800
13948
|
} | undefined;
|
13801
13949
|
} | {
|
13802
13950
|
type: "DATA";
|
@@ -14412,18 +14560,21 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
14412
14560
|
name?: {
|
14413
14561
|
firstname?: {
|
14414
14562
|
required: boolean;
|
14563
|
+
label?: TranslationConfig | undefined;
|
14415
14564
|
} | undefined;
|
14416
14565
|
surname?: {
|
14417
14566
|
required: boolean;
|
14567
|
+
label?: TranslationConfig | undefined;
|
14418
14568
|
} | undefined;
|
14419
14569
|
middlename?: {
|
14420
14570
|
required: boolean;
|
14571
|
+
label?: TranslationConfig | undefined;
|
14421
14572
|
} | undefined;
|
14422
14573
|
} | undefined;
|
14574
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
14423
14575
|
maxLength?: number | undefined;
|
14424
14576
|
prefix?: TranslationConfig | undefined;
|
14425
14577
|
postfix?: TranslationConfig | undefined;
|
14426
|
-
searchMode?: boolean | undefined;
|
14427
14578
|
} | undefined;
|
14428
14579
|
} | {
|
14429
14580
|
type: "PHONE";
|
@@ -14756,7 +14907,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
14756
14907
|
postcodeOrZip?: string | undefined;
|
14757
14908
|
} | undefined;
|
14758
14909
|
configuration?: {
|
14759
|
-
|
14910
|
+
lineSeparator?: string | undefined;
|
14911
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
14760
14912
|
} | undefined;
|
14761
14913
|
} | {
|
14762
14914
|
type: "DATA";
|
@@ -15420,18 +15572,21 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
15420
15572
|
name?: {
|
15421
15573
|
firstname?: {
|
15422
15574
|
required: boolean;
|
15575
|
+
label?: TranslationConfig | undefined;
|
15423
15576
|
} | undefined;
|
15424
15577
|
surname?: {
|
15425
15578
|
required: boolean;
|
15579
|
+
label?: TranslationConfig | undefined;
|
15426
15580
|
} | undefined;
|
15427
15581
|
middlename?: {
|
15428
15582
|
required: boolean;
|
15583
|
+
label?: TranslationConfig | undefined;
|
15429
15584
|
} | undefined;
|
15430
15585
|
} | undefined;
|
15586
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
15431
15587
|
maxLength?: number | undefined;
|
15432
15588
|
prefix?: TranslationConfig | undefined;
|
15433
15589
|
postfix?: TranslationConfig | undefined;
|
15434
|
-
searchMode?: boolean | undefined;
|
15435
15590
|
} | undefined;
|
15436
15591
|
} | {
|
15437
15592
|
type: "PHONE";
|
@@ -15764,7 +15919,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
15764
15919
|
postcodeOrZip?: string | undefined;
|
15765
15920
|
} | undefined;
|
15766
15921
|
configuration?: {
|
15767
|
-
|
15922
|
+
lineSeparator?: string | undefined;
|
15923
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
15768
15924
|
} | undefined;
|
15769
15925
|
} | {
|
15770
15926
|
type: "DATA";
|
@@ -16383,18 +16539,21 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
16383
16539
|
name?: {
|
16384
16540
|
firstname?: {
|
16385
16541
|
required: boolean;
|
16542
|
+
label?: TranslationConfig | undefined;
|
16386
16543
|
} | undefined;
|
16387
16544
|
surname?: {
|
16388
16545
|
required: boolean;
|
16546
|
+
label?: TranslationConfig | undefined;
|
16389
16547
|
} | undefined;
|
16390
16548
|
middlename?: {
|
16391
16549
|
required: boolean;
|
16550
|
+
label?: TranslationConfig | undefined;
|
16392
16551
|
} | undefined;
|
16393
16552
|
} | undefined;
|
16553
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
16394
16554
|
maxLength?: number | undefined;
|
16395
16555
|
prefix?: TranslationConfig | undefined;
|
16396
16556
|
postfix?: TranslationConfig | undefined;
|
16397
|
-
searchMode?: boolean | undefined;
|
16398
16557
|
} | undefined;
|
16399
16558
|
} | {
|
16400
16559
|
type: "PHONE";
|
@@ -16727,7 +16886,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
16727
16886
|
postcodeOrZip?: string | undefined;
|
16728
16887
|
} | undefined;
|
16729
16888
|
configuration?: {
|
16730
|
-
|
16889
|
+
lineSeparator?: string | undefined;
|
16890
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
16731
16891
|
} | undefined;
|
16732
16892
|
} | {
|
16733
16893
|
type: "DATA";
|
@@ -17349,18 +17509,21 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
17349
17509
|
name?: {
|
17350
17510
|
firstname?: {
|
17351
17511
|
required: boolean;
|
17512
|
+
label?: TranslationConfig | undefined;
|
17352
17513
|
} | undefined;
|
17353
17514
|
surname?: {
|
17354
17515
|
required: boolean;
|
17516
|
+
label?: TranslationConfig | undefined;
|
17355
17517
|
} | undefined;
|
17356
17518
|
middlename?: {
|
17357
17519
|
required: boolean;
|
17520
|
+
label?: TranslationConfig | undefined;
|
17358
17521
|
} | undefined;
|
17359
17522
|
} | undefined;
|
17523
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
17360
17524
|
maxLength?: number | undefined;
|
17361
17525
|
prefix?: TranslationConfig | undefined;
|
17362
17526
|
postfix?: TranslationConfig | undefined;
|
17363
|
-
searchMode?: boolean | undefined;
|
17364
17527
|
} | undefined;
|
17365
17528
|
} | {
|
17366
17529
|
type: "PHONE";
|
@@ -17693,7 +17856,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
17693
17856
|
postcodeOrZip?: string | undefined;
|
17694
17857
|
} | undefined;
|
17695
17858
|
configuration?: {
|
17696
|
-
|
17859
|
+
lineSeparator?: string | undefined;
|
17860
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
17697
17861
|
} | undefined;
|
17698
17862
|
} | {
|
17699
17863
|
type: "DATA";
|
@@ -18312,18 +18476,21 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
18312
18476
|
name?: {
|
18313
18477
|
firstname?: {
|
18314
18478
|
required: boolean;
|
18479
|
+
label?: TranslationConfig | undefined;
|
18315
18480
|
} | undefined;
|
18316
18481
|
surname?: {
|
18317
18482
|
required: boolean;
|
18483
|
+
label?: TranslationConfig | undefined;
|
18318
18484
|
} | undefined;
|
18319
18485
|
middlename?: {
|
18320
18486
|
required: boolean;
|
18487
|
+
label?: TranslationConfig | undefined;
|
18321
18488
|
} | undefined;
|
18322
18489
|
} | undefined;
|
18490
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
18323
18491
|
maxLength?: number | undefined;
|
18324
18492
|
prefix?: TranslationConfig | undefined;
|
18325
18493
|
postfix?: TranslationConfig | undefined;
|
18326
|
-
searchMode?: boolean | undefined;
|
18327
18494
|
} | undefined;
|
18328
18495
|
} | {
|
18329
18496
|
type: "PHONE";
|
@@ -18656,7 +18823,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
18656
18823
|
postcodeOrZip?: string | undefined;
|
18657
18824
|
} | undefined;
|
18658
18825
|
configuration?: {
|
18659
|
-
|
18826
|
+
lineSeparator?: string | undefined;
|
18827
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
18660
18828
|
} | undefined;
|
18661
18829
|
} | {
|
18662
18830
|
type: "DATA";
|
@@ -19723,14 +19891,30 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
19723
19891
|
name?: {
|
19724
19892
|
firstname?: {
|
19725
19893
|
required: boolean;
|
19894
|
+
label?: {
|
19895
|
+
id: string;
|
19896
|
+
description: string;
|
19897
|
+
defaultMessage: string;
|
19898
|
+
} | undefined;
|
19726
19899
|
} | undefined;
|
19727
19900
|
surname?: {
|
19728
19901
|
required: boolean;
|
19902
|
+
label?: {
|
19903
|
+
id: string;
|
19904
|
+
description: string;
|
19905
|
+
defaultMessage: string;
|
19906
|
+
} | undefined;
|
19729
19907
|
} | undefined;
|
19730
19908
|
middlename?: {
|
19731
19909
|
required: boolean;
|
19910
|
+
label?: {
|
19911
|
+
id: string;
|
19912
|
+
description: string;
|
19913
|
+
defaultMessage: string;
|
19914
|
+
} | undefined;
|
19732
19915
|
} | undefined;
|
19733
19916
|
} | undefined;
|
19917
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
19734
19918
|
maxLength?: number | undefined;
|
19735
19919
|
prefix?: {
|
19736
19920
|
id: string;
|
@@ -19742,7 +19926,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
19742
19926
|
description: string;
|
19743
19927
|
defaultMessage: string;
|
19744
19928
|
} | undefined;
|
19745
|
-
searchMode?: boolean | undefined;
|
19746
19929
|
} | undefined;
|
19747
19930
|
} | {
|
19748
19931
|
type: "PHONE";
|
@@ -20239,7 +20422,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
20239
20422
|
postcodeOrZip?: string | undefined;
|
20240
20423
|
} | undefined;
|
20241
20424
|
configuration?: {
|
20242
|
-
|
20425
|
+
lineSeparator?: string | undefined;
|
20426
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
20243
20427
|
} | undefined;
|
20244
20428
|
} | {
|
20245
20429
|
type: "DATA";
|
@@ -21218,14 +21402,30 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
21218
21402
|
name?: {
|
21219
21403
|
firstname?: {
|
21220
21404
|
required: boolean;
|
21405
|
+
label?: {
|
21406
|
+
id: string;
|
21407
|
+
description: string;
|
21408
|
+
defaultMessage: string;
|
21409
|
+
} | undefined;
|
21221
21410
|
} | undefined;
|
21222
21411
|
surname?: {
|
21223
21412
|
required: boolean;
|
21413
|
+
label?: {
|
21414
|
+
id: string;
|
21415
|
+
description: string;
|
21416
|
+
defaultMessage: string;
|
21417
|
+
} | undefined;
|
21224
21418
|
} | undefined;
|
21225
21419
|
middlename?: {
|
21226
21420
|
required: boolean;
|
21421
|
+
label?: {
|
21422
|
+
id: string;
|
21423
|
+
description: string;
|
21424
|
+
defaultMessage: string;
|
21425
|
+
} | undefined;
|
21227
21426
|
} | undefined;
|
21228
21427
|
} | undefined;
|
21428
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
21229
21429
|
maxLength?: number | undefined;
|
21230
21430
|
prefix?: {
|
21231
21431
|
id: string;
|
@@ -21237,7 +21437,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
21237
21437
|
description: string;
|
21238
21438
|
defaultMessage: string;
|
21239
21439
|
} | undefined;
|
21240
|
-
searchMode?: boolean | undefined;
|
21241
21440
|
} | undefined;
|
21242
21441
|
} | {
|
21243
21442
|
type: "PHONE";
|
@@ -21734,7 +21933,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
21734
21933
|
postcodeOrZip?: string | undefined;
|
21735
21934
|
} | undefined;
|
21736
21935
|
configuration?: {
|
21737
|
-
|
21936
|
+
lineSeparator?: string | undefined;
|
21937
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
21738
21938
|
} | undefined;
|
21739
21939
|
} | {
|
21740
21940
|
type: "DATA";
|
@@ -22718,14 +22918,30 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
22718
22918
|
name?: {
|
22719
22919
|
firstname?: {
|
22720
22920
|
required: boolean;
|
22921
|
+
label?: {
|
22922
|
+
id: string;
|
22923
|
+
description: string;
|
22924
|
+
defaultMessage: string;
|
22925
|
+
} | undefined;
|
22721
22926
|
} | undefined;
|
22722
22927
|
surname?: {
|
22723
22928
|
required: boolean;
|
22929
|
+
label?: {
|
22930
|
+
id: string;
|
22931
|
+
description: string;
|
22932
|
+
defaultMessage: string;
|
22933
|
+
} | undefined;
|
22724
22934
|
} | undefined;
|
22725
22935
|
middlename?: {
|
22726
22936
|
required: boolean;
|
22937
|
+
label?: {
|
22938
|
+
id: string;
|
22939
|
+
description: string;
|
22940
|
+
defaultMessage: string;
|
22941
|
+
} | undefined;
|
22727
22942
|
} | undefined;
|
22728
22943
|
} | undefined;
|
22944
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
22729
22945
|
maxLength?: number | undefined;
|
22730
22946
|
prefix?: {
|
22731
22947
|
id: string;
|
@@ -22737,7 +22953,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
22737
22953
|
description: string;
|
22738
22954
|
defaultMessage: string;
|
22739
22955
|
} | undefined;
|
22740
|
-
searchMode?: boolean | undefined;
|
22741
22956
|
} | undefined;
|
22742
22957
|
} | {
|
22743
22958
|
type: "PHONE";
|
@@ -23234,7 +23449,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
23234
23449
|
postcodeOrZip?: string | undefined;
|
23235
23450
|
} | undefined;
|
23236
23451
|
configuration?: {
|
23237
|
-
|
23452
|
+
lineSeparator?: string | undefined;
|
23453
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
23238
23454
|
} | undefined;
|
23239
23455
|
} | {
|
23240
23456
|
type: "DATA";
|
@@ -24218,14 +24434,30 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
24218
24434
|
name?: {
|
24219
24435
|
firstname?: {
|
24220
24436
|
required: boolean;
|
24437
|
+
label?: {
|
24438
|
+
id: string;
|
24439
|
+
description: string;
|
24440
|
+
defaultMessage: string;
|
24441
|
+
} | undefined;
|
24221
24442
|
} | undefined;
|
24222
24443
|
surname?: {
|
24223
24444
|
required: boolean;
|
24445
|
+
label?: {
|
24446
|
+
id: string;
|
24447
|
+
description: string;
|
24448
|
+
defaultMessage: string;
|
24449
|
+
} | undefined;
|
24224
24450
|
} | undefined;
|
24225
24451
|
middlename?: {
|
24226
24452
|
required: boolean;
|
24453
|
+
label?: {
|
24454
|
+
id: string;
|
24455
|
+
description: string;
|
24456
|
+
defaultMessage: string;
|
24457
|
+
} | undefined;
|
24227
24458
|
} | undefined;
|
24228
24459
|
} | undefined;
|
24460
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
24229
24461
|
maxLength?: number | undefined;
|
24230
24462
|
prefix?: {
|
24231
24463
|
id: string;
|
@@ -24237,7 +24469,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
24237
24469
|
description: string;
|
24238
24470
|
defaultMessage: string;
|
24239
24471
|
} | undefined;
|
24240
|
-
searchMode?: boolean | undefined;
|
24241
24472
|
} | undefined;
|
24242
24473
|
} | {
|
24243
24474
|
type: "PHONE";
|
@@ -24734,7 +24965,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
24734
24965
|
postcodeOrZip?: string | undefined;
|
24735
24966
|
} | undefined;
|
24736
24967
|
configuration?: {
|
24737
|
-
|
24968
|
+
lineSeparator?: string | undefined;
|
24969
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
24738
24970
|
} | undefined;
|
24739
24971
|
} | {
|
24740
24972
|
type: "DATA";
|
@@ -25718,14 +25950,30 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
25718
25950
|
name?: {
|
25719
25951
|
firstname?: {
|
25720
25952
|
required: boolean;
|
25953
|
+
label?: {
|
25954
|
+
id: string;
|
25955
|
+
description: string;
|
25956
|
+
defaultMessage: string;
|
25957
|
+
} | undefined;
|
25721
25958
|
} | undefined;
|
25722
25959
|
surname?: {
|
25723
25960
|
required: boolean;
|
25961
|
+
label?: {
|
25962
|
+
id: string;
|
25963
|
+
description: string;
|
25964
|
+
defaultMessage: string;
|
25965
|
+
} | undefined;
|
25724
25966
|
} | undefined;
|
25725
25967
|
middlename?: {
|
25726
25968
|
required: boolean;
|
25969
|
+
label?: {
|
25970
|
+
id: string;
|
25971
|
+
description: string;
|
25972
|
+
defaultMessage: string;
|
25973
|
+
} | undefined;
|
25727
25974
|
} | undefined;
|
25728
25975
|
} | undefined;
|
25976
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
25729
25977
|
maxLength?: number | undefined;
|
25730
25978
|
prefix?: {
|
25731
25979
|
id: string;
|
@@ -25737,7 +25985,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
25737
25985
|
description: string;
|
25738
25986
|
defaultMessage: string;
|
25739
25987
|
} | undefined;
|
25740
|
-
searchMode?: boolean | undefined;
|
25741
25988
|
} | undefined;
|
25742
25989
|
} | {
|
25743
25990
|
type: "PHONE";
|
@@ -26234,7 +26481,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
26234
26481
|
postcodeOrZip?: string | undefined;
|
26235
26482
|
} | undefined;
|
26236
26483
|
configuration?: {
|
26237
|
-
|
26484
|
+
lineSeparator?: string | undefined;
|
26485
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
26238
26486
|
} | undefined;
|
26239
26487
|
} | {
|
26240
26488
|
type: "DATA";
|
@@ -27285,14 +27533,30 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
27285
27533
|
name?: {
|
27286
27534
|
firstname?: {
|
27287
27535
|
required: boolean;
|
27536
|
+
label?: {
|
27537
|
+
id: string;
|
27538
|
+
description: string;
|
27539
|
+
defaultMessage: string;
|
27540
|
+
} | undefined;
|
27288
27541
|
} | undefined;
|
27289
27542
|
surname?: {
|
27290
27543
|
required: boolean;
|
27544
|
+
label?: {
|
27545
|
+
id: string;
|
27546
|
+
description: string;
|
27547
|
+
defaultMessage: string;
|
27548
|
+
} | undefined;
|
27291
27549
|
} | undefined;
|
27292
27550
|
middlename?: {
|
27293
27551
|
required: boolean;
|
27552
|
+
label?: {
|
27553
|
+
id: string;
|
27554
|
+
description: string;
|
27555
|
+
defaultMessage: string;
|
27556
|
+
} | undefined;
|
27294
27557
|
} | undefined;
|
27295
27558
|
} | undefined;
|
27559
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
27296
27560
|
maxLength?: number | undefined;
|
27297
27561
|
prefix?: {
|
27298
27562
|
id: string;
|
@@ -27304,7 +27568,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
27304
27568
|
description: string;
|
27305
27569
|
defaultMessage: string;
|
27306
27570
|
} | undefined;
|
27307
|
-
searchMode?: boolean | undefined;
|
27308
27571
|
} | undefined;
|
27309
27572
|
} | {
|
27310
27573
|
type: "PHONE";
|
@@ -27801,7 +28064,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
27801
28064
|
postcodeOrZip?: string | undefined;
|
27802
28065
|
} | undefined;
|
27803
28066
|
configuration?: {
|
27804
|
-
|
28067
|
+
lineSeparator?: string | undefined;
|
28068
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
27805
28069
|
} | undefined;
|
27806
28070
|
} | {
|
27807
28071
|
type: "DATA";
|
@@ -28801,14 +29065,30 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
28801
29065
|
name?: {
|
28802
29066
|
firstname?: {
|
28803
29067
|
required: boolean;
|
29068
|
+
label?: {
|
29069
|
+
id: string;
|
29070
|
+
description: string;
|
29071
|
+
defaultMessage: string;
|
29072
|
+
} | undefined;
|
28804
29073
|
} | undefined;
|
28805
29074
|
surname?: {
|
28806
29075
|
required: boolean;
|
29076
|
+
label?: {
|
29077
|
+
id: string;
|
29078
|
+
description: string;
|
29079
|
+
defaultMessage: string;
|
29080
|
+
} | undefined;
|
28807
29081
|
} | undefined;
|
28808
29082
|
middlename?: {
|
28809
29083
|
required: boolean;
|
29084
|
+
label?: {
|
29085
|
+
id: string;
|
29086
|
+
description: string;
|
29087
|
+
defaultMessage: string;
|
29088
|
+
} | undefined;
|
28810
29089
|
} | undefined;
|
28811
29090
|
} | undefined;
|
29091
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
28812
29092
|
maxLength?: number | undefined;
|
28813
29093
|
prefix?: {
|
28814
29094
|
id: string;
|
@@ -28820,7 +29100,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
28820
29100
|
description: string;
|
28821
29101
|
defaultMessage: string;
|
28822
29102
|
} | undefined;
|
28823
|
-
searchMode?: boolean | undefined;
|
28824
29103
|
} | undefined;
|
28825
29104
|
} | {
|
28826
29105
|
type: "PHONE";
|
@@ -29317,7 +29596,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
29317
29596
|
postcodeOrZip?: string | undefined;
|
29318
29597
|
} | undefined;
|
29319
29598
|
configuration?: {
|
29320
|
-
|
29599
|
+
lineSeparator?: string | undefined;
|
29600
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
29321
29601
|
} | undefined;
|
29322
29602
|
} | {
|
29323
29603
|
type: "DATA";
|
@@ -30310,14 +30590,30 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
30310
30590
|
name?: {
|
30311
30591
|
firstname?: {
|
30312
30592
|
required: boolean;
|
30593
|
+
label?: {
|
30594
|
+
id: string;
|
30595
|
+
description: string;
|
30596
|
+
defaultMessage: string;
|
30597
|
+
} | undefined;
|
30313
30598
|
} | undefined;
|
30314
30599
|
surname?: {
|
30315
30600
|
required: boolean;
|
30601
|
+
label?: {
|
30602
|
+
id: string;
|
30603
|
+
description: string;
|
30604
|
+
defaultMessage: string;
|
30605
|
+
} | undefined;
|
30316
30606
|
} | undefined;
|
30317
30607
|
middlename?: {
|
30318
30608
|
required: boolean;
|
30609
|
+
label?: {
|
30610
|
+
id: string;
|
30611
|
+
description: string;
|
30612
|
+
defaultMessage: string;
|
30613
|
+
} | undefined;
|
30319
30614
|
} | undefined;
|
30320
30615
|
} | undefined;
|
30616
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
30321
30617
|
maxLength?: number | undefined;
|
30322
30618
|
prefix?: {
|
30323
30619
|
id: string;
|
@@ -30329,7 +30625,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
30329
30625
|
description: string;
|
30330
30626
|
defaultMessage: string;
|
30331
30627
|
} | undefined;
|
30332
|
-
searchMode?: boolean | undefined;
|
30333
30628
|
} | undefined;
|
30334
30629
|
} | {
|
30335
30630
|
type: "PHONE";
|
@@ -30826,7 +31121,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
30826
31121
|
postcodeOrZip?: string | undefined;
|
30827
31122
|
} | undefined;
|
30828
31123
|
configuration?: {
|
30829
|
-
|
31124
|
+
lineSeparator?: string | undefined;
|
31125
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
30830
31126
|
} | undefined;
|
30831
31127
|
} | {
|
30832
31128
|
type: "DATA";
|
@@ -31826,14 +32122,30 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
31826
32122
|
name?: {
|
31827
32123
|
firstname?: {
|
31828
32124
|
required: boolean;
|
32125
|
+
label?: {
|
32126
|
+
id: string;
|
32127
|
+
description: string;
|
32128
|
+
defaultMessage: string;
|
32129
|
+
} | undefined;
|
31829
32130
|
} | undefined;
|
31830
32131
|
surname?: {
|
31831
32132
|
required: boolean;
|
32133
|
+
label?: {
|
32134
|
+
id: string;
|
32135
|
+
description: string;
|
32136
|
+
defaultMessage: string;
|
32137
|
+
} | undefined;
|
31832
32138
|
} | undefined;
|
31833
32139
|
middlename?: {
|
31834
32140
|
required: boolean;
|
32141
|
+
label?: {
|
32142
|
+
id: string;
|
32143
|
+
description: string;
|
32144
|
+
defaultMessage: string;
|
32145
|
+
} | undefined;
|
31835
32146
|
} | undefined;
|
31836
32147
|
} | undefined;
|
32148
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
31837
32149
|
maxLength?: number | undefined;
|
31838
32150
|
prefix?: {
|
31839
32151
|
id: string;
|
@@ -31845,7 +32157,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
31845
32157
|
description: string;
|
31846
32158
|
defaultMessage: string;
|
31847
32159
|
} | undefined;
|
31848
|
-
searchMode?: boolean | undefined;
|
31849
32160
|
} | undefined;
|
31850
32161
|
} | {
|
31851
32162
|
type: "PHONE";
|
@@ -32342,7 +32653,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
32342
32653
|
postcodeOrZip?: string | undefined;
|
32343
32654
|
} | undefined;
|
32344
32655
|
configuration?: {
|
32345
|
-
|
32656
|
+
lineSeparator?: string | undefined;
|
32657
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
32346
32658
|
} | undefined;
|
32347
32659
|
} | {
|
32348
32660
|
type: "DATA";
|
@@ -33169,18 +33481,21 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
33169
33481
|
name?: {
|
33170
33482
|
firstname?: {
|
33171
33483
|
required: boolean;
|
33484
|
+
label?: TranslationConfig | undefined;
|
33172
33485
|
} | undefined;
|
33173
33486
|
surname?: {
|
33174
33487
|
required: boolean;
|
33488
|
+
label?: TranslationConfig | undefined;
|
33175
33489
|
} | undefined;
|
33176
33490
|
middlename?: {
|
33177
33491
|
required: boolean;
|
33492
|
+
label?: TranslationConfig | undefined;
|
33178
33493
|
} | undefined;
|
33179
33494
|
} | undefined;
|
33495
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
33180
33496
|
maxLength?: number | undefined;
|
33181
33497
|
prefix?: TranslationConfig | undefined;
|
33182
33498
|
postfix?: TranslationConfig | undefined;
|
33183
|
-
searchMode?: boolean | undefined;
|
33184
33499
|
} | undefined;
|
33185
33500
|
} | {
|
33186
33501
|
type: "PHONE";
|
@@ -33513,7 +33828,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
33513
33828
|
postcodeOrZip?: string | undefined;
|
33514
33829
|
} | undefined;
|
33515
33830
|
configuration?: {
|
33516
|
-
|
33831
|
+
lineSeparator?: string | undefined;
|
33832
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
33517
33833
|
} | undefined;
|
33518
33834
|
} | {
|
33519
33835
|
type: "DATA";
|
@@ -34130,18 +34446,21 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
34130
34446
|
name?: {
|
34131
34447
|
firstname?: {
|
34132
34448
|
required: boolean;
|
34449
|
+
label?: TranslationConfig | undefined;
|
34133
34450
|
} | undefined;
|
34134
34451
|
surname?: {
|
34135
34452
|
required: boolean;
|
34453
|
+
label?: TranslationConfig | undefined;
|
34136
34454
|
} | undefined;
|
34137
34455
|
middlename?: {
|
34138
34456
|
required: boolean;
|
34457
|
+
label?: TranslationConfig | undefined;
|
34139
34458
|
} | undefined;
|
34140
34459
|
} | undefined;
|
34460
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
34141
34461
|
maxLength?: number | undefined;
|
34142
34462
|
prefix?: TranslationConfig | undefined;
|
34143
34463
|
postfix?: TranslationConfig | undefined;
|
34144
|
-
searchMode?: boolean | undefined;
|
34145
34464
|
} | undefined;
|
34146
34465
|
} | {
|
34147
34466
|
type: "PHONE";
|
@@ -34474,7 +34793,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
34474
34793
|
postcodeOrZip?: string | undefined;
|
34475
34794
|
} | undefined;
|
34476
34795
|
configuration?: {
|
34477
|
-
|
34796
|
+
lineSeparator?: string | undefined;
|
34797
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
34478
34798
|
} | undefined;
|
34479
34799
|
} | {
|
34480
34800
|
type: "DATA";
|
@@ -35090,18 +35410,21 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
35090
35410
|
name?: {
|
35091
35411
|
firstname?: {
|
35092
35412
|
required: boolean;
|
35413
|
+
label?: TranslationConfig | undefined;
|
35093
35414
|
} | undefined;
|
35094
35415
|
surname?: {
|
35095
35416
|
required: boolean;
|
35417
|
+
label?: TranslationConfig | undefined;
|
35096
35418
|
} | undefined;
|
35097
35419
|
middlename?: {
|
35098
35420
|
required: boolean;
|
35421
|
+
label?: TranslationConfig | undefined;
|
35099
35422
|
} | undefined;
|
35100
35423
|
} | undefined;
|
35424
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
35101
35425
|
maxLength?: number | undefined;
|
35102
35426
|
prefix?: TranslationConfig | undefined;
|
35103
35427
|
postfix?: TranslationConfig | undefined;
|
35104
|
-
searchMode?: boolean | undefined;
|
35105
35428
|
} | undefined;
|
35106
35429
|
} | {
|
35107
35430
|
type: "PHONE";
|
@@ -35434,7 +35757,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
35434
35757
|
postcodeOrZip?: string | undefined;
|
35435
35758
|
} | undefined;
|
35436
35759
|
configuration?: {
|
35437
|
-
|
35760
|
+
lineSeparator?: string | undefined;
|
35761
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
35438
35762
|
} | undefined;
|
35439
35763
|
} | {
|
35440
35764
|
type: "DATA";
|
@@ -36050,18 +36374,21 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
36050
36374
|
name?: {
|
36051
36375
|
firstname?: {
|
36052
36376
|
required: boolean;
|
36377
|
+
label?: TranslationConfig | undefined;
|
36053
36378
|
} | undefined;
|
36054
36379
|
surname?: {
|
36055
36380
|
required: boolean;
|
36381
|
+
label?: TranslationConfig | undefined;
|
36056
36382
|
} | undefined;
|
36057
36383
|
middlename?: {
|
36058
36384
|
required: boolean;
|
36385
|
+
label?: TranslationConfig | undefined;
|
36059
36386
|
} | undefined;
|
36060
36387
|
} | undefined;
|
36388
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
36061
36389
|
maxLength?: number | undefined;
|
36062
36390
|
prefix?: TranslationConfig | undefined;
|
36063
36391
|
postfix?: TranslationConfig | undefined;
|
36064
|
-
searchMode?: boolean | undefined;
|
36065
36392
|
} | undefined;
|
36066
36393
|
} | {
|
36067
36394
|
type: "PHONE";
|
@@ -36394,7 +36721,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
36394
36721
|
postcodeOrZip?: string | undefined;
|
36395
36722
|
} | undefined;
|
36396
36723
|
configuration?: {
|
36397
|
-
|
36724
|
+
lineSeparator?: string | undefined;
|
36725
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
36398
36726
|
} | undefined;
|
36399
36727
|
} | {
|
36400
36728
|
type: "DATA";
|
@@ -37010,18 +37338,21 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
37010
37338
|
name?: {
|
37011
37339
|
firstname?: {
|
37012
37340
|
required: boolean;
|
37341
|
+
label?: TranslationConfig | undefined;
|
37013
37342
|
} | undefined;
|
37014
37343
|
surname?: {
|
37015
37344
|
required: boolean;
|
37345
|
+
label?: TranslationConfig | undefined;
|
37016
37346
|
} | undefined;
|
37017
37347
|
middlename?: {
|
37018
37348
|
required: boolean;
|
37349
|
+
label?: TranslationConfig | undefined;
|
37019
37350
|
} | undefined;
|
37020
37351
|
} | undefined;
|
37352
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
37021
37353
|
maxLength?: number | undefined;
|
37022
37354
|
prefix?: TranslationConfig | undefined;
|
37023
37355
|
postfix?: TranslationConfig | undefined;
|
37024
|
-
searchMode?: boolean | undefined;
|
37025
37356
|
} | undefined;
|
37026
37357
|
} | {
|
37027
37358
|
type: "PHONE";
|
@@ -37354,7 +37685,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
37354
37685
|
postcodeOrZip?: string | undefined;
|
37355
37686
|
} | undefined;
|
37356
37687
|
configuration?: {
|
37357
|
-
|
37688
|
+
lineSeparator?: string | undefined;
|
37689
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
37358
37690
|
} | undefined;
|
37359
37691
|
} | {
|
37360
37692
|
type: "DATA";
|
@@ -38018,18 +38350,21 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
38018
38350
|
name?: {
|
38019
38351
|
firstname?: {
|
38020
38352
|
required: boolean;
|
38353
|
+
label?: TranslationConfig | undefined;
|
38021
38354
|
} | undefined;
|
38022
38355
|
surname?: {
|
38023
38356
|
required: boolean;
|
38357
|
+
label?: TranslationConfig | undefined;
|
38024
38358
|
} | undefined;
|
38025
38359
|
middlename?: {
|
38026
38360
|
required: boolean;
|
38361
|
+
label?: TranslationConfig | undefined;
|
38027
38362
|
} | undefined;
|
38028
38363
|
} | undefined;
|
38364
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
38029
38365
|
maxLength?: number | undefined;
|
38030
38366
|
prefix?: TranslationConfig | undefined;
|
38031
38367
|
postfix?: TranslationConfig | undefined;
|
38032
|
-
searchMode?: boolean | undefined;
|
38033
38368
|
} | undefined;
|
38034
38369
|
} | {
|
38035
38370
|
type: "PHONE";
|
@@ -38362,7 +38697,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
38362
38697
|
postcodeOrZip?: string | undefined;
|
38363
38698
|
} | undefined;
|
38364
38699
|
configuration?: {
|
38365
|
-
|
38700
|
+
lineSeparator?: string | undefined;
|
38701
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
38366
38702
|
} | undefined;
|
38367
38703
|
} | {
|
38368
38704
|
type: "DATA";
|
@@ -38981,18 +39317,21 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
38981
39317
|
name?: {
|
38982
39318
|
firstname?: {
|
38983
39319
|
required: boolean;
|
39320
|
+
label?: TranslationConfig | undefined;
|
38984
39321
|
} | undefined;
|
38985
39322
|
surname?: {
|
38986
39323
|
required: boolean;
|
39324
|
+
label?: TranslationConfig | undefined;
|
38987
39325
|
} | undefined;
|
38988
39326
|
middlename?: {
|
38989
39327
|
required: boolean;
|
39328
|
+
label?: TranslationConfig | undefined;
|
38990
39329
|
} | undefined;
|
38991
39330
|
} | undefined;
|
39331
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
38992
39332
|
maxLength?: number | undefined;
|
38993
39333
|
prefix?: TranslationConfig | undefined;
|
38994
39334
|
postfix?: TranslationConfig | undefined;
|
38995
|
-
searchMode?: boolean | undefined;
|
38996
39335
|
} | undefined;
|
38997
39336
|
} | {
|
38998
39337
|
type: "PHONE";
|
@@ -39325,7 +39664,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
39325
39664
|
postcodeOrZip?: string | undefined;
|
39326
39665
|
} | undefined;
|
39327
39666
|
configuration?: {
|
39328
|
-
|
39667
|
+
lineSeparator?: string | undefined;
|
39668
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
39329
39669
|
} | undefined;
|
39330
39670
|
} | {
|
39331
39671
|
type: "DATA";
|
@@ -39947,18 +40287,21 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
39947
40287
|
name?: {
|
39948
40288
|
firstname?: {
|
39949
40289
|
required: boolean;
|
40290
|
+
label?: TranslationConfig | undefined;
|
39950
40291
|
} | undefined;
|
39951
40292
|
surname?: {
|
39952
40293
|
required: boolean;
|
40294
|
+
label?: TranslationConfig | undefined;
|
39953
40295
|
} | undefined;
|
39954
40296
|
middlename?: {
|
39955
40297
|
required: boolean;
|
40298
|
+
label?: TranslationConfig | undefined;
|
39956
40299
|
} | undefined;
|
39957
40300
|
} | undefined;
|
40301
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
39958
40302
|
maxLength?: number | undefined;
|
39959
40303
|
prefix?: TranslationConfig | undefined;
|
39960
40304
|
postfix?: TranslationConfig | undefined;
|
39961
|
-
searchMode?: boolean | undefined;
|
39962
40305
|
} | undefined;
|
39963
40306
|
} | {
|
39964
40307
|
type: "PHONE";
|
@@ -40291,7 +40634,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
40291
40634
|
postcodeOrZip?: string | undefined;
|
40292
40635
|
} | undefined;
|
40293
40636
|
configuration?: {
|
40294
|
-
|
40637
|
+
lineSeparator?: string | undefined;
|
40638
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
40295
40639
|
} | undefined;
|
40296
40640
|
} | {
|
40297
40641
|
type: "DATA";
|
@@ -40910,18 +41254,21 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
40910
41254
|
name?: {
|
40911
41255
|
firstname?: {
|
40912
41256
|
required: boolean;
|
41257
|
+
label?: TranslationConfig | undefined;
|
40913
41258
|
} | undefined;
|
40914
41259
|
surname?: {
|
40915
41260
|
required: boolean;
|
41261
|
+
label?: TranslationConfig | undefined;
|
40916
41262
|
} | undefined;
|
40917
41263
|
middlename?: {
|
40918
41264
|
required: boolean;
|
41265
|
+
label?: TranslationConfig | undefined;
|
40919
41266
|
} | undefined;
|
40920
41267
|
} | undefined;
|
41268
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
40921
41269
|
maxLength?: number | undefined;
|
40922
41270
|
prefix?: TranslationConfig | undefined;
|
40923
41271
|
postfix?: TranslationConfig | undefined;
|
40924
|
-
searchMode?: boolean | undefined;
|
40925
41272
|
} | undefined;
|
40926
41273
|
} | {
|
40927
41274
|
type: "PHONE";
|
@@ -41254,7 +41601,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
41254
41601
|
postcodeOrZip?: string | undefined;
|
41255
41602
|
} | undefined;
|
41256
41603
|
configuration?: {
|
41257
|
-
|
41604
|
+
lineSeparator?: string | undefined;
|
41605
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
41258
41606
|
} | undefined;
|
41259
41607
|
} | {
|
41260
41608
|
type: "DATA";
|
@@ -42321,14 +42669,30 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
42321
42669
|
name?: {
|
42322
42670
|
firstname?: {
|
42323
42671
|
required: boolean;
|
42672
|
+
label?: {
|
42673
|
+
id: string;
|
42674
|
+
description: string;
|
42675
|
+
defaultMessage: string;
|
42676
|
+
} | undefined;
|
42324
42677
|
} | undefined;
|
42325
42678
|
surname?: {
|
42326
42679
|
required: boolean;
|
42680
|
+
label?: {
|
42681
|
+
id: string;
|
42682
|
+
description: string;
|
42683
|
+
defaultMessage: string;
|
42684
|
+
} | undefined;
|
42327
42685
|
} | undefined;
|
42328
42686
|
middlename?: {
|
42329
42687
|
required: boolean;
|
42688
|
+
label?: {
|
42689
|
+
id: string;
|
42690
|
+
description: string;
|
42691
|
+
defaultMessage: string;
|
42692
|
+
} | undefined;
|
42330
42693
|
} | undefined;
|
42331
42694
|
} | undefined;
|
42695
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
42332
42696
|
maxLength?: number | undefined;
|
42333
42697
|
prefix?: {
|
42334
42698
|
id: string;
|
@@ -42340,7 +42704,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
42340
42704
|
description: string;
|
42341
42705
|
defaultMessage: string;
|
42342
42706
|
} | undefined;
|
42343
|
-
searchMode?: boolean | undefined;
|
42344
42707
|
} | undefined;
|
42345
42708
|
} | {
|
42346
42709
|
type: "PHONE";
|
@@ -42837,7 +43200,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
42837
43200
|
postcodeOrZip?: string | undefined;
|
42838
43201
|
} | undefined;
|
42839
43202
|
configuration?: {
|
42840
|
-
|
43203
|
+
lineSeparator?: string | undefined;
|
43204
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
42841
43205
|
} | undefined;
|
42842
43206
|
} | {
|
42843
43207
|
type: "DATA";
|
@@ -43816,14 +44180,30 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
43816
44180
|
name?: {
|
43817
44181
|
firstname?: {
|
43818
44182
|
required: boolean;
|
44183
|
+
label?: {
|
44184
|
+
id: string;
|
44185
|
+
description: string;
|
44186
|
+
defaultMessage: string;
|
44187
|
+
} | undefined;
|
43819
44188
|
} | undefined;
|
43820
44189
|
surname?: {
|
43821
44190
|
required: boolean;
|
44191
|
+
label?: {
|
44192
|
+
id: string;
|
44193
|
+
description: string;
|
44194
|
+
defaultMessage: string;
|
44195
|
+
} | undefined;
|
43822
44196
|
} | undefined;
|
43823
44197
|
middlename?: {
|
43824
44198
|
required: boolean;
|
44199
|
+
label?: {
|
44200
|
+
id: string;
|
44201
|
+
description: string;
|
44202
|
+
defaultMessage: string;
|
44203
|
+
} | undefined;
|
43825
44204
|
} | undefined;
|
43826
44205
|
} | undefined;
|
44206
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
43827
44207
|
maxLength?: number | undefined;
|
43828
44208
|
prefix?: {
|
43829
44209
|
id: string;
|
@@ -43835,7 +44215,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
43835
44215
|
description: string;
|
43836
44216
|
defaultMessage: string;
|
43837
44217
|
} | undefined;
|
43838
|
-
searchMode?: boolean | undefined;
|
43839
44218
|
} | undefined;
|
43840
44219
|
} | {
|
43841
44220
|
type: "PHONE";
|
@@ -44332,7 +44711,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
44332
44711
|
postcodeOrZip?: string | undefined;
|
44333
44712
|
} | undefined;
|
44334
44713
|
configuration?: {
|
44335
|
-
|
44714
|
+
lineSeparator?: string | undefined;
|
44715
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
44336
44716
|
} | undefined;
|
44337
44717
|
} | {
|
44338
44718
|
type: "DATA";
|
@@ -45316,14 +45696,30 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
45316
45696
|
name?: {
|
45317
45697
|
firstname?: {
|
45318
45698
|
required: boolean;
|
45699
|
+
label?: {
|
45700
|
+
id: string;
|
45701
|
+
description: string;
|
45702
|
+
defaultMessage: string;
|
45703
|
+
} | undefined;
|
45319
45704
|
} | undefined;
|
45320
45705
|
surname?: {
|
45321
45706
|
required: boolean;
|
45707
|
+
label?: {
|
45708
|
+
id: string;
|
45709
|
+
description: string;
|
45710
|
+
defaultMessage: string;
|
45711
|
+
} | undefined;
|
45322
45712
|
} | undefined;
|
45323
45713
|
middlename?: {
|
45324
45714
|
required: boolean;
|
45715
|
+
label?: {
|
45716
|
+
id: string;
|
45717
|
+
description: string;
|
45718
|
+
defaultMessage: string;
|
45719
|
+
} | undefined;
|
45325
45720
|
} | undefined;
|
45326
45721
|
} | undefined;
|
45722
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
45327
45723
|
maxLength?: number | undefined;
|
45328
45724
|
prefix?: {
|
45329
45725
|
id: string;
|
@@ -45335,7 +45731,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
45335
45731
|
description: string;
|
45336
45732
|
defaultMessage: string;
|
45337
45733
|
} | undefined;
|
45338
|
-
searchMode?: boolean | undefined;
|
45339
45734
|
} | undefined;
|
45340
45735
|
} | {
|
45341
45736
|
type: "PHONE";
|
@@ -45832,7 +46227,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
45832
46227
|
postcodeOrZip?: string | undefined;
|
45833
46228
|
} | undefined;
|
45834
46229
|
configuration?: {
|
45835
|
-
|
46230
|
+
lineSeparator?: string | undefined;
|
46231
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
45836
46232
|
} | undefined;
|
45837
46233
|
} | {
|
45838
46234
|
type: "DATA";
|
@@ -46816,14 +47212,30 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
46816
47212
|
name?: {
|
46817
47213
|
firstname?: {
|
46818
47214
|
required: boolean;
|
47215
|
+
label?: {
|
47216
|
+
id: string;
|
47217
|
+
description: string;
|
47218
|
+
defaultMessage: string;
|
47219
|
+
} | undefined;
|
46819
47220
|
} | undefined;
|
46820
47221
|
surname?: {
|
46821
47222
|
required: boolean;
|
47223
|
+
label?: {
|
47224
|
+
id: string;
|
47225
|
+
description: string;
|
47226
|
+
defaultMessage: string;
|
47227
|
+
} | undefined;
|
46822
47228
|
} | undefined;
|
46823
47229
|
middlename?: {
|
46824
47230
|
required: boolean;
|
47231
|
+
label?: {
|
47232
|
+
id: string;
|
47233
|
+
description: string;
|
47234
|
+
defaultMessage: string;
|
47235
|
+
} | undefined;
|
46825
47236
|
} | undefined;
|
46826
47237
|
} | undefined;
|
47238
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
46827
47239
|
maxLength?: number | undefined;
|
46828
47240
|
prefix?: {
|
46829
47241
|
id: string;
|
@@ -46835,7 +47247,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
46835
47247
|
description: string;
|
46836
47248
|
defaultMessage: string;
|
46837
47249
|
} | undefined;
|
46838
|
-
searchMode?: boolean | undefined;
|
46839
47250
|
} | undefined;
|
46840
47251
|
} | {
|
46841
47252
|
type: "PHONE";
|
@@ -47332,7 +47743,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
47332
47743
|
postcodeOrZip?: string | undefined;
|
47333
47744
|
} | undefined;
|
47334
47745
|
configuration?: {
|
47335
|
-
|
47746
|
+
lineSeparator?: string | undefined;
|
47747
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
47336
47748
|
} | undefined;
|
47337
47749
|
} | {
|
47338
47750
|
type: "DATA";
|
@@ -48316,14 +48728,30 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
48316
48728
|
name?: {
|
48317
48729
|
firstname?: {
|
48318
48730
|
required: boolean;
|
48731
|
+
label?: {
|
48732
|
+
id: string;
|
48733
|
+
description: string;
|
48734
|
+
defaultMessage: string;
|
48735
|
+
} | undefined;
|
48319
48736
|
} | undefined;
|
48320
48737
|
surname?: {
|
48321
48738
|
required: boolean;
|
48739
|
+
label?: {
|
48740
|
+
id: string;
|
48741
|
+
description: string;
|
48742
|
+
defaultMessage: string;
|
48743
|
+
} | undefined;
|
48322
48744
|
} | undefined;
|
48323
48745
|
middlename?: {
|
48324
48746
|
required: boolean;
|
48747
|
+
label?: {
|
48748
|
+
id: string;
|
48749
|
+
description: string;
|
48750
|
+
defaultMessage: string;
|
48751
|
+
} | undefined;
|
48325
48752
|
} | undefined;
|
48326
48753
|
} | undefined;
|
48754
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
48327
48755
|
maxLength?: number | undefined;
|
48328
48756
|
prefix?: {
|
48329
48757
|
id: string;
|
@@ -48335,7 +48763,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
48335
48763
|
description: string;
|
48336
48764
|
defaultMessage: string;
|
48337
48765
|
} | undefined;
|
48338
|
-
searchMode?: boolean | undefined;
|
48339
48766
|
} | undefined;
|
48340
48767
|
} | {
|
48341
48768
|
type: "PHONE";
|
@@ -48832,7 +49259,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
48832
49259
|
postcodeOrZip?: string | undefined;
|
48833
49260
|
} | undefined;
|
48834
49261
|
configuration?: {
|
48835
|
-
|
49262
|
+
lineSeparator?: string | undefined;
|
49263
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
48836
49264
|
} | undefined;
|
48837
49265
|
} | {
|
48838
49266
|
type: "DATA";
|
@@ -49883,14 +50311,30 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
49883
50311
|
name?: {
|
49884
50312
|
firstname?: {
|
49885
50313
|
required: boolean;
|
50314
|
+
label?: {
|
50315
|
+
id: string;
|
50316
|
+
description: string;
|
50317
|
+
defaultMessage: string;
|
50318
|
+
} | undefined;
|
49886
50319
|
} | undefined;
|
49887
50320
|
surname?: {
|
49888
50321
|
required: boolean;
|
50322
|
+
label?: {
|
50323
|
+
id: string;
|
50324
|
+
description: string;
|
50325
|
+
defaultMessage: string;
|
50326
|
+
} | undefined;
|
49889
50327
|
} | undefined;
|
49890
50328
|
middlename?: {
|
49891
50329
|
required: boolean;
|
50330
|
+
label?: {
|
50331
|
+
id: string;
|
50332
|
+
description: string;
|
50333
|
+
defaultMessage: string;
|
50334
|
+
} | undefined;
|
49892
50335
|
} | undefined;
|
49893
50336
|
} | undefined;
|
50337
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
49894
50338
|
maxLength?: number | undefined;
|
49895
50339
|
prefix?: {
|
49896
50340
|
id: string;
|
@@ -49902,7 +50346,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
49902
50346
|
description: string;
|
49903
50347
|
defaultMessage: string;
|
49904
50348
|
} | undefined;
|
49905
|
-
searchMode?: boolean | undefined;
|
49906
50349
|
} | undefined;
|
49907
50350
|
} | {
|
49908
50351
|
type: "PHONE";
|
@@ -50399,7 +50842,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
50399
50842
|
postcodeOrZip?: string | undefined;
|
50400
50843
|
} | undefined;
|
50401
50844
|
configuration?: {
|
50402
|
-
|
50845
|
+
lineSeparator?: string | undefined;
|
50846
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
50403
50847
|
} | undefined;
|
50404
50848
|
} | {
|
50405
50849
|
type: "DATA";
|
@@ -51399,14 +51843,30 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
51399
51843
|
name?: {
|
51400
51844
|
firstname?: {
|
51401
51845
|
required: boolean;
|
51846
|
+
label?: {
|
51847
|
+
id: string;
|
51848
|
+
description: string;
|
51849
|
+
defaultMessage: string;
|
51850
|
+
} | undefined;
|
51402
51851
|
} | undefined;
|
51403
51852
|
surname?: {
|
51404
51853
|
required: boolean;
|
51854
|
+
label?: {
|
51855
|
+
id: string;
|
51856
|
+
description: string;
|
51857
|
+
defaultMessage: string;
|
51858
|
+
} | undefined;
|
51405
51859
|
} | undefined;
|
51406
51860
|
middlename?: {
|
51407
51861
|
required: boolean;
|
51862
|
+
label?: {
|
51863
|
+
id: string;
|
51864
|
+
description: string;
|
51865
|
+
defaultMessage: string;
|
51866
|
+
} | undefined;
|
51408
51867
|
} | undefined;
|
51409
51868
|
} | undefined;
|
51869
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
51410
51870
|
maxLength?: number | undefined;
|
51411
51871
|
prefix?: {
|
51412
51872
|
id: string;
|
@@ -51418,7 +51878,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
51418
51878
|
description: string;
|
51419
51879
|
defaultMessage: string;
|
51420
51880
|
} | undefined;
|
51421
|
-
searchMode?: boolean | undefined;
|
51422
51881
|
} | undefined;
|
51423
51882
|
} | {
|
51424
51883
|
type: "PHONE";
|
@@ -51915,7 +52374,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
51915
52374
|
postcodeOrZip?: string | undefined;
|
51916
52375
|
} | undefined;
|
51917
52376
|
configuration?: {
|
51918
|
-
|
52377
|
+
lineSeparator?: string | undefined;
|
52378
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
51919
52379
|
} | undefined;
|
51920
52380
|
} | {
|
51921
52381
|
type: "DATA";
|
@@ -52908,14 +53368,30 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
52908
53368
|
name?: {
|
52909
53369
|
firstname?: {
|
52910
53370
|
required: boolean;
|
53371
|
+
label?: {
|
53372
|
+
id: string;
|
53373
|
+
description: string;
|
53374
|
+
defaultMessage: string;
|
53375
|
+
} | undefined;
|
52911
53376
|
} | undefined;
|
52912
53377
|
surname?: {
|
52913
53378
|
required: boolean;
|
53379
|
+
label?: {
|
53380
|
+
id: string;
|
53381
|
+
description: string;
|
53382
|
+
defaultMessage: string;
|
53383
|
+
} | undefined;
|
52914
53384
|
} | undefined;
|
52915
53385
|
middlename?: {
|
52916
53386
|
required: boolean;
|
53387
|
+
label?: {
|
53388
|
+
id: string;
|
53389
|
+
description: string;
|
53390
|
+
defaultMessage: string;
|
53391
|
+
} | undefined;
|
52917
53392
|
} | undefined;
|
52918
53393
|
} | undefined;
|
53394
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
52919
53395
|
maxLength?: number | undefined;
|
52920
53396
|
prefix?: {
|
52921
53397
|
id: string;
|
@@ -52927,7 +53403,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
52927
53403
|
description: string;
|
52928
53404
|
defaultMessage: string;
|
52929
53405
|
} | undefined;
|
52930
|
-
searchMode?: boolean | undefined;
|
52931
53406
|
} | undefined;
|
52932
53407
|
} | {
|
52933
53408
|
type: "PHONE";
|
@@ -53424,7 +53899,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
53424
53899
|
postcodeOrZip?: string | undefined;
|
53425
53900
|
} | undefined;
|
53426
53901
|
configuration?: {
|
53427
|
-
|
53902
|
+
lineSeparator?: string | undefined;
|
53903
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
53428
53904
|
} | undefined;
|
53429
53905
|
} | {
|
53430
53906
|
type: "DATA";
|
@@ -54424,14 +54900,30 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
54424
54900
|
name?: {
|
54425
54901
|
firstname?: {
|
54426
54902
|
required: boolean;
|
54903
|
+
label?: {
|
54904
|
+
id: string;
|
54905
|
+
description: string;
|
54906
|
+
defaultMessage: string;
|
54907
|
+
} | undefined;
|
54427
54908
|
} | undefined;
|
54428
54909
|
surname?: {
|
54429
54910
|
required: boolean;
|
54911
|
+
label?: {
|
54912
|
+
id: string;
|
54913
|
+
description: string;
|
54914
|
+
defaultMessage: string;
|
54915
|
+
} | undefined;
|
54430
54916
|
} | undefined;
|
54431
54917
|
middlename?: {
|
54432
54918
|
required: boolean;
|
54919
|
+
label?: {
|
54920
|
+
id: string;
|
54921
|
+
description: string;
|
54922
|
+
defaultMessage: string;
|
54923
|
+
} | undefined;
|
54433
54924
|
} | undefined;
|
54434
54925
|
} | undefined;
|
54926
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
54435
54927
|
maxLength?: number | undefined;
|
54436
54928
|
prefix?: {
|
54437
54929
|
id: string;
|
@@ -54443,7 +54935,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
54443
54935
|
description: string;
|
54444
54936
|
defaultMessage: string;
|
54445
54937
|
} | undefined;
|
54446
|
-
searchMode?: boolean | undefined;
|
54447
54938
|
} | undefined;
|
54448
54939
|
} | {
|
54449
54940
|
type: "PHONE";
|
@@ -54940,7 +55431,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
54940
55431
|
postcodeOrZip?: string | undefined;
|
54941
55432
|
} | undefined;
|
54942
55433
|
configuration?: {
|
54943
|
-
|
55434
|
+
lineSeparator?: string | undefined;
|
55435
|
+
fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
|
54944
55436
|
} | undefined;
|
54945
55437
|
} | {
|
54946
55438
|
type: "DATA";
|