@opencrvs/toolkit 1.8.1-rc.ebf61ab → 1.8.1-rc.ee55691

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