@opencrvs/toolkit 1.8.1-rc.e32d7b8 → 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/api/router.d.ts +433 -796
- package/dist/commons/conditionals/validate.d.ts +11 -2
- package/dist/commons/events/ActionConfig.d.ts +3924 -642
- package/dist/commons/events/ActionDocument.d.ts +1302 -1389
- package/dist/commons/events/ActionInput.d.ts +658 -1136
- package/dist/commons/events/AdvancedSearchConfig.d.ts +83 -65
- package/dist/commons/events/CompositeFieldValue.d.ts +6 -6
- package/dist/commons/events/CountryConfigQueryInput.d.ts +88 -88
- package/dist/commons/events/Draft.d.ts +48 -92
- package/dist/commons/events/EventConfig.d.ts +1281 -262
- package/dist/commons/events/EventDocument.d.ts +475 -846
- package/dist/commons/events/EventIndex.d.ts +184 -62
- package/dist/commons/events/EventMetadata.d.ts +9 -9
- package/dist/commons/events/FieldConfig.d.ts +517 -71
- package/dist/commons/events/FieldTypeMapping.d.ts +16 -16
- package/dist/commons/events/FieldValue.d.ts +12 -12
- package/dist/commons/events/FormConfig.d.ts +1956 -378
- package/dist/commons/events/PageConfig.d.ts +524 -82
- package/dist/commons/events/WorkqueueConfig.d.ts +288 -164
- package/dist/commons/events/defineConfig.d.ts +183 -48
- package/dist/commons/events/event.d.ts +68 -6
- package/dist/commons/events/field.d.ts +14 -0
- package/dist/commons/events/test.utils.d.ts +17 -13
- package/dist/commons/events/utils.d.ts +332 -96
- package/dist/conditionals/index.js +3 -2
- package/dist/events/index.js +293 -108
- package/package.json +1 -1
- package/tsconfig.json +1 -1
- package/dist/commons/conditionals/conditionals.test.d.ts +0 -2
- package/dist/commons/conditionals/validate-address.test.d.ts +0 -2
- package/dist/commons/conditionals/validate.test.d.ts +0 -2
- package/dist/commons/events/utils.test.d.ts +0 -2
@@ -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;
|
@@ -2440,16 +2445,114 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
2440
2445
|
}, {
|
2441
2446
|
type: z.ZodLiteral<"NAME">;
|
2442
2447
|
defaultValue: z.ZodOptional<z.ZodObject<{
|
2443
|
-
firstname: z.ZodString
|
2444
|
-
|
2448
|
+
firstname: z.ZodOptional<z.ZodString>;
|
2449
|
+
middlename: z.ZodOptional<z.ZodString>;
|
2450
|
+
surname: z.ZodOptional<z.ZodString>;
|
2445
2451
|
}, "strip", z.ZodTypeAny, {
|
2446
|
-
firstname
|
2447
|
-
surname
|
2452
|
+
firstname?: string | undefined;
|
2453
|
+
surname?: string | undefined;
|
2454
|
+
middlename?: string | undefined;
|
2448
2455
|
}, {
|
2449
|
-
firstname
|
2450
|
-
surname
|
2456
|
+
firstname?: string | undefined;
|
2457
|
+
surname?: string | undefined;
|
2458
|
+
middlename?: string | undefined;
|
2451
2459
|
}>>;
|
2452
|
-
configuration: z.ZodOptional<z.ZodObject<{
|
2460
|
+
configuration: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
2461
|
+
name: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
2462
|
+
firstname: z.ZodOptional<z.ZodObject<{
|
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
|
+
}>>;
|
2469
|
+
}, "strip", z.ZodTypeAny, {
|
2470
|
+
required: boolean;
|
2471
|
+
label?: TranslationConfig | undefined;
|
2472
|
+
}, {
|
2473
|
+
required: boolean;
|
2474
|
+
label?: {
|
2475
|
+
id: string;
|
2476
|
+
description: string;
|
2477
|
+
defaultMessage: string;
|
2478
|
+
} | undefined;
|
2479
|
+
}>>;
|
2480
|
+
middlename: z.ZodOptional<z.ZodObject<{
|
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
|
+
}>>;
|
2487
|
+
}, "strip", z.ZodTypeAny, {
|
2488
|
+
required: boolean;
|
2489
|
+
label?: TranslationConfig | undefined;
|
2490
|
+
}, {
|
2491
|
+
required: boolean;
|
2492
|
+
label?: {
|
2493
|
+
id: string;
|
2494
|
+
description: string;
|
2495
|
+
defaultMessage: string;
|
2496
|
+
} | undefined;
|
2497
|
+
}>>;
|
2498
|
+
surname: z.ZodOptional<z.ZodObject<{
|
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
|
+
}>>;
|
2505
|
+
}, "strip", z.ZodTypeAny, {
|
2506
|
+
required: boolean;
|
2507
|
+
label?: TranslationConfig | undefined;
|
2508
|
+
}, {
|
2509
|
+
required: boolean;
|
2510
|
+
label?: {
|
2511
|
+
id: string;
|
2512
|
+
description: string;
|
2513
|
+
defaultMessage: string;
|
2514
|
+
} | undefined;
|
2515
|
+
}>>;
|
2516
|
+
}, "strip", z.ZodTypeAny, {
|
2517
|
+
firstname?: {
|
2518
|
+
required: boolean;
|
2519
|
+
label?: TranslationConfig | undefined;
|
2520
|
+
} | undefined;
|
2521
|
+
surname?: {
|
2522
|
+
required: boolean;
|
2523
|
+
label?: TranslationConfig | undefined;
|
2524
|
+
} | undefined;
|
2525
|
+
middlename?: {
|
2526
|
+
required: boolean;
|
2527
|
+
label?: TranslationConfig | undefined;
|
2528
|
+
} | undefined;
|
2529
|
+
}, {
|
2530
|
+
firstname?: {
|
2531
|
+
required: boolean;
|
2532
|
+
label?: {
|
2533
|
+
id: string;
|
2534
|
+
description: string;
|
2535
|
+
defaultMessage: string;
|
2536
|
+
} | undefined;
|
2537
|
+
} | undefined;
|
2538
|
+
surname?: {
|
2539
|
+
required: boolean;
|
2540
|
+
label?: {
|
2541
|
+
id: string;
|
2542
|
+
description: string;
|
2543
|
+
defaultMessage: string;
|
2544
|
+
} | undefined;
|
2545
|
+
} | undefined;
|
2546
|
+
middlename?: {
|
2547
|
+
required: boolean;
|
2548
|
+
label?: {
|
2549
|
+
id: string;
|
2550
|
+
description: string;
|
2551
|
+
defaultMessage: string;
|
2552
|
+
} | undefined;
|
2553
|
+
} | undefined;
|
2554
|
+
}>>>;
|
2555
|
+
order: z.ZodOptional<z.ZodArray<z.ZodEnum<["firstname", "middlename", "surname"]>, "many">>;
|
2453
2556
|
maxLength: z.ZodOptional<z.ZodNumber>;
|
2454
2557
|
prefix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2455
2558
|
id: string;
|
@@ -2461,15 +2564,53 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
2461
2564
|
description: string;
|
2462
2565
|
defaultMessage: string;
|
2463
2566
|
}>>;
|
2464
|
-
includeMiddlename: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2465
|
-
searchMode: z.ZodOptional<z.ZodBoolean>;
|
2466
2567
|
}, "strip", z.ZodTypeAny, {
|
2568
|
+
name?: {
|
2569
|
+
firstname?: {
|
2570
|
+
required: boolean;
|
2571
|
+
label?: TranslationConfig | undefined;
|
2572
|
+
} | undefined;
|
2573
|
+
surname?: {
|
2574
|
+
required: boolean;
|
2575
|
+
label?: TranslationConfig | undefined;
|
2576
|
+
} | undefined;
|
2577
|
+
middlename?: {
|
2578
|
+
required: boolean;
|
2579
|
+
label?: TranslationConfig | undefined;
|
2580
|
+
} | undefined;
|
2581
|
+
} | undefined;
|
2582
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
2467
2583
|
maxLength?: number | undefined;
|
2468
2584
|
prefix?: TranslationConfig | undefined;
|
2469
2585
|
postfix?: TranslationConfig | undefined;
|
2470
|
-
includeMiddlename?: boolean | undefined;
|
2471
|
-
searchMode?: boolean | undefined;
|
2472
2586
|
}, {
|
2587
|
+
name?: {
|
2588
|
+
firstname?: {
|
2589
|
+
required: boolean;
|
2590
|
+
label?: {
|
2591
|
+
id: string;
|
2592
|
+
description: string;
|
2593
|
+
defaultMessage: string;
|
2594
|
+
} | undefined;
|
2595
|
+
} | undefined;
|
2596
|
+
surname?: {
|
2597
|
+
required: boolean;
|
2598
|
+
label?: {
|
2599
|
+
id: string;
|
2600
|
+
description: string;
|
2601
|
+
defaultMessage: string;
|
2602
|
+
} | undefined;
|
2603
|
+
} | undefined;
|
2604
|
+
middlename?: {
|
2605
|
+
required: boolean;
|
2606
|
+
label?: {
|
2607
|
+
id: string;
|
2608
|
+
description: string;
|
2609
|
+
defaultMessage: string;
|
2610
|
+
} | undefined;
|
2611
|
+
} | undefined;
|
2612
|
+
} | undefined;
|
2613
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
2473
2614
|
maxLength?: number | undefined;
|
2474
2615
|
prefix?: {
|
2475
2616
|
id: string;
|
@@ -2481,9 +2622,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
2481
2622
|
description: string;
|
2482
2623
|
defaultMessage: string;
|
2483
2624
|
} | undefined;
|
2484
|
-
|
2485
|
-
searchMode?: boolean | undefined;
|
2486
|
-
}>>;
|
2625
|
+
}>>>;
|
2487
2626
|
}>, "strip", z.ZodTypeAny, {
|
2488
2627
|
type: "NAME";
|
2489
2628
|
id: string;
|
@@ -2512,15 +2651,29 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
2512
2651
|
hideLabel?: boolean | undefined;
|
2513
2652
|
uncorrectable?: boolean | undefined;
|
2514
2653
|
defaultValue?: {
|
2515
|
-
firstname
|
2516
|
-
surname
|
2654
|
+
firstname?: string | undefined;
|
2655
|
+
surname?: string | undefined;
|
2656
|
+
middlename?: string | undefined;
|
2517
2657
|
} | undefined;
|
2518
2658
|
configuration?: {
|
2659
|
+
name?: {
|
2660
|
+
firstname?: {
|
2661
|
+
required: boolean;
|
2662
|
+
label?: TranslationConfig | undefined;
|
2663
|
+
} | undefined;
|
2664
|
+
surname?: {
|
2665
|
+
required: boolean;
|
2666
|
+
label?: TranslationConfig | undefined;
|
2667
|
+
} | undefined;
|
2668
|
+
middlename?: {
|
2669
|
+
required: boolean;
|
2670
|
+
label?: TranslationConfig | undefined;
|
2671
|
+
} | undefined;
|
2672
|
+
} | undefined;
|
2673
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
2519
2674
|
maxLength?: number | undefined;
|
2520
2675
|
prefix?: TranslationConfig | undefined;
|
2521
2676
|
postfix?: TranslationConfig | undefined;
|
2522
|
-
includeMiddlename?: boolean | undefined;
|
2523
|
-
searchMode?: boolean | undefined;
|
2524
2677
|
} | undefined;
|
2525
2678
|
}, {
|
2526
2679
|
type: "NAME";
|
@@ -2566,10 +2719,38 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
2566
2719
|
hideLabel?: boolean | undefined;
|
2567
2720
|
uncorrectable?: boolean | undefined;
|
2568
2721
|
defaultValue?: {
|
2569
|
-
firstname
|
2570
|
-
surname
|
2722
|
+
firstname?: string | undefined;
|
2723
|
+
surname?: string | undefined;
|
2724
|
+
middlename?: string | undefined;
|
2571
2725
|
} | undefined;
|
2572
2726
|
configuration?: {
|
2727
|
+
name?: {
|
2728
|
+
firstname?: {
|
2729
|
+
required: boolean;
|
2730
|
+
label?: {
|
2731
|
+
id: string;
|
2732
|
+
description: string;
|
2733
|
+
defaultMessage: string;
|
2734
|
+
} | undefined;
|
2735
|
+
} | undefined;
|
2736
|
+
surname?: {
|
2737
|
+
required: boolean;
|
2738
|
+
label?: {
|
2739
|
+
id: string;
|
2740
|
+
description: string;
|
2741
|
+
defaultMessage: string;
|
2742
|
+
} | undefined;
|
2743
|
+
} | undefined;
|
2744
|
+
middlename?: {
|
2745
|
+
required: boolean;
|
2746
|
+
label?: {
|
2747
|
+
id: string;
|
2748
|
+
description: string;
|
2749
|
+
defaultMessage: string;
|
2750
|
+
} | undefined;
|
2751
|
+
} | undefined;
|
2752
|
+
} | undefined;
|
2753
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
2573
2754
|
maxLength?: number | undefined;
|
2574
2755
|
prefix?: {
|
2575
2756
|
id: string;
|
@@ -2581,8 +2762,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
2581
2762
|
description: string;
|
2582
2763
|
defaultMessage: string;
|
2583
2764
|
} | undefined;
|
2584
|
-
includeMiddlename?: boolean | undefined;
|
2585
|
-
searchMode?: boolean | undefined;
|
2586
2765
|
} | undefined;
|
2587
2766
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2588
2767
|
id: z.ZodString;
|
@@ -5180,15 +5359,29 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
5180
5359
|
hideLabel?: boolean | undefined;
|
5181
5360
|
uncorrectable?: boolean | undefined;
|
5182
5361
|
defaultValue?: {
|
5183
|
-
firstname
|
5184
|
-
surname
|
5362
|
+
firstname?: string | undefined;
|
5363
|
+
surname?: string | undefined;
|
5364
|
+
middlename?: string | undefined;
|
5185
5365
|
} | undefined;
|
5186
5366
|
configuration?: {
|
5367
|
+
name?: {
|
5368
|
+
firstname?: {
|
5369
|
+
required: boolean;
|
5370
|
+
label?: TranslationConfig | undefined;
|
5371
|
+
} | undefined;
|
5372
|
+
surname?: {
|
5373
|
+
required: boolean;
|
5374
|
+
label?: TranslationConfig | undefined;
|
5375
|
+
} | undefined;
|
5376
|
+
middlename?: {
|
5377
|
+
required: boolean;
|
5378
|
+
label?: TranslationConfig | undefined;
|
5379
|
+
} | undefined;
|
5380
|
+
} | undefined;
|
5381
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
5187
5382
|
maxLength?: number | undefined;
|
5188
5383
|
prefix?: TranslationConfig | undefined;
|
5189
5384
|
postfix?: TranslationConfig | undefined;
|
5190
|
-
includeMiddlename?: boolean | undefined;
|
5191
|
-
searchMode?: boolean | undefined;
|
5192
5385
|
} | undefined;
|
5193
5386
|
} | {
|
5194
5387
|
type: "PHONE";
|
@@ -5521,7 +5714,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
5521
5714
|
postcodeOrZip?: string | undefined;
|
5522
5715
|
} | undefined;
|
5523
5716
|
configuration?: {
|
5524
|
-
|
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;
|
5525
5719
|
} | undefined;
|
5526
5720
|
} | {
|
5527
5721
|
type: "DATA";
|
@@ -6455,10 +6649,38 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
6455
6649
|
hideLabel?: boolean | undefined;
|
6456
6650
|
uncorrectable?: boolean | undefined;
|
6457
6651
|
defaultValue?: {
|
6458
|
-
firstname
|
6459
|
-
surname
|
6652
|
+
firstname?: string | undefined;
|
6653
|
+
surname?: string | undefined;
|
6654
|
+
middlename?: string | undefined;
|
6460
6655
|
} | undefined;
|
6461
6656
|
configuration?: {
|
6657
|
+
name?: {
|
6658
|
+
firstname?: {
|
6659
|
+
required: boolean;
|
6660
|
+
label?: {
|
6661
|
+
id: string;
|
6662
|
+
description: string;
|
6663
|
+
defaultMessage: string;
|
6664
|
+
} | undefined;
|
6665
|
+
} | undefined;
|
6666
|
+
surname?: {
|
6667
|
+
required: boolean;
|
6668
|
+
label?: {
|
6669
|
+
id: string;
|
6670
|
+
description: string;
|
6671
|
+
defaultMessage: string;
|
6672
|
+
} | undefined;
|
6673
|
+
} | undefined;
|
6674
|
+
middlename?: {
|
6675
|
+
required: boolean;
|
6676
|
+
label?: {
|
6677
|
+
id: string;
|
6678
|
+
description: string;
|
6679
|
+
defaultMessage: string;
|
6680
|
+
} | undefined;
|
6681
|
+
} | undefined;
|
6682
|
+
} | undefined;
|
6683
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
6462
6684
|
maxLength?: number | undefined;
|
6463
6685
|
prefix?: {
|
6464
6686
|
id: string;
|
@@ -6470,8 +6692,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
6470
6692
|
description: string;
|
6471
6693
|
defaultMessage: string;
|
6472
6694
|
} | undefined;
|
6473
|
-
includeMiddlename?: boolean | undefined;
|
6474
|
-
searchMode?: boolean | undefined;
|
6475
6695
|
} | undefined;
|
6476
6696
|
} | {
|
6477
6697
|
type: "PHONE";
|
@@ -6968,7 +7188,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
6968
7188
|
postcodeOrZip?: string | undefined;
|
6969
7189
|
} | undefined;
|
6970
7190
|
configuration?: {
|
6971
|
-
|
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;
|
6972
7193
|
} | undefined;
|
6973
7194
|
} | {
|
6974
7195
|
type: "DATA";
|
@@ -7599,15 +7820,29 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
7599
7820
|
hideLabel?: boolean | undefined;
|
7600
7821
|
uncorrectable?: boolean | undefined;
|
7601
7822
|
defaultValue?: {
|
7602
|
-
firstname
|
7603
|
-
surname
|
7823
|
+
firstname?: string | undefined;
|
7824
|
+
surname?: string | undefined;
|
7825
|
+
middlename?: string | undefined;
|
7604
7826
|
} | undefined;
|
7605
7827
|
configuration?: {
|
7828
|
+
name?: {
|
7829
|
+
firstname?: {
|
7830
|
+
required: boolean;
|
7831
|
+
label?: TranslationConfig | undefined;
|
7832
|
+
} | undefined;
|
7833
|
+
surname?: {
|
7834
|
+
required: boolean;
|
7835
|
+
label?: TranslationConfig | undefined;
|
7836
|
+
} | undefined;
|
7837
|
+
middlename?: {
|
7838
|
+
required: boolean;
|
7839
|
+
label?: TranslationConfig | undefined;
|
7840
|
+
} | undefined;
|
7841
|
+
} | undefined;
|
7842
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
7606
7843
|
maxLength?: number | undefined;
|
7607
7844
|
prefix?: TranslationConfig | undefined;
|
7608
7845
|
postfix?: TranslationConfig | undefined;
|
7609
|
-
includeMiddlename?: boolean | undefined;
|
7610
|
-
searchMode?: boolean | undefined;
|
7611
7846
|
} | undefined;
|
7612
7847
|
} | {
|
7613
7848
|
type: "PHONE";
|
@@ -7940,7 +8175,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
7940
8175
|
postcodeOrZip?: string | undefined;
|
7941
8176
|
} | undefined;
|
7942
8177
|
configuration?: {
|
7943
|
-
|
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;
|
7944
8180
|
} | undefined;
|
7945
8181
|
} | {
|
7946
8182
|
type: "DATA";
|
@@ -8881,10 +9117,38 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
8881
9117
|
hideLabel?: boolean | undefined;
|
8882
9118
|
uncorrectable?: boolean | undefined;
|
8883
9119
|
defaultValue?: {
|
8884
|
-
firstname
|
8885
|
-
surname
|
9120
|
+
firstname?: string | undefined;
|
9121
|
+
surname?: string | undefined;
|
9122
|
+
middlename?: string | undefined;
|
8886
9123
|
} | undefined;
|
8887
9124
|
configuration?: {
|
9125
|
+
name?: {
|
9126
|
+
firstname?: {
|
9127
|
+
required: boolean;
|
9128
|
+
label?: {
|
9129
|
+
id: string;
|
9130
|
+
description: string;
|
9131
|
+
defaultMessage: string;
|
9132
|
+
} | undefined;
|
9133
|
+
} | undefined;
|
9134
|
+
surname?: {
|
9135
|
+
required: boolean;
|
9136
|
+
label?: {
|
9137
|
+
id: string;
|
9138
|
+
description: string;
|
9139
|
+
defaultMessage: string;
|
9140
|
+
} | undefined;
|
9141
|
+
} | undefined;
|
9142
|
+
middlename?: {
|
9143
|
+
required: boolean;
|
9144
|
+
label?: {
|
9145
|
+
id: string;
|
9146
|
+
description: string;
|
9147
|
+
defaultMessage: string;
|
9148
|
+
} | undefined;
|
9149
|
+
} | undefined;
|
9150
|
+
} | undefined;
|
9151
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
8888
9152
|
maxLength?: number | undefined;
|
8889
9153
|
prefix?: {
|
8890
9154
|
id: string;
|
@@ -8896,8 +9160,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
8896
9160
|
description: string;
|
8897
9161
|
defaultMessage: string;
|
8898
9162
|
} | undefined;
|
8899
|
-
includeMiddlename?: boolean | undefined;
|
8900
|
-
searchMode?: boolean | undefined;
|
8901
9163
|
} | undefined;
|
8902
9164
|
} | {
|
8903
9165
|
type: "PHONE";
|
@@ -9394,7 +9656,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
9394
9656
|
postcodeOrZip?: string | undefined;
|
9395
9657
|
} | undefined;
|
9396
9658
|
configuration?: {
|
9397
|
-
|
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;
|
9398
9661
|
} | undefined;
|
9399
9662
|
} | {
|
9400
9663
|
type: "DATA";
|
@@ -9494,11 +9757,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
9494
9757
|
}>;
|
9495
9758
|
fields: z.ZodArray<z.ZodDiscriminatedUnion<"fieldType", [z.ZodObject<z.objectUtil.extendShape<{
|
9496
9759
|
config: z.ZodObject<{
|
9497
|
-
type: z.ZodEnum<["fuzzy", "exact", "range"]>;
|
9760
|
+
type: z.ZodEnum<["fuzzy", "exact", "range", "within"]>;
|
9498
9761
|
}, "strip", z.ZodTypeAny, {
|
9499
|
-
type: "exact" | "fuzzy" | "range";
|
9762
|
+
type: "exact" | "fuzzy" | "range" | "within";
|
9500
9763
|
}, {
|
9501
|
-
type: "exact" | "fuzzy" | "range";
|
9764
|
+
type: "exact" | "fuzzy" | "range" | "within";
|
9502
9765
|
}>;
|
9503
9766
|
options: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
9504
9767
|
value: z.ZodString;
|
@@ -9549,7 +9812,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
9549
9812
|
excludeInSearchQuery: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
9550
9813
|
}>, "strip", z.ZodTypeAny, {
|
9551
9814
|
config: {
|
9552
|
-
type: "exact" | "fuzzy" | "range";
|
9815
|
+
type: "exact" | "fuzzy" | "range" | "within";
|
9553
9816
|
};
|
9554
9817
|
fieldId: string;
|
9555
9818
|
fieldType: "field";
|
@@ -9576,7 +9839,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
9576
9839
|
excludeInSearchQuery?: boolean | undefined;
|
9577
9840
|
}, {
|
9578
9841
|
config: {
|
9579
|
-
type: "exact" | "fuzzy" | "range";
|
9842
|
+
type: "exact" | "fuzzy" | "range" | "within";
|
9580
9843
|
};
|
9581
9844
|
fieldId: string;
|
9582
9845
|
fieldType: "field";
|
@@ -9615,11 +9878,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
9615
9878
|
excludeInSearchQuery?: boolean | undefined;
|
9616
9879
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
9617
9880
|
config: z.ZodObject<{
|
9618
|
-
type: z.ZodEnum<["fuzzy", "exact", "range"]>;
|
9881
|
+
type: z.ZodEnum<["fuzzy", "exact", "range", "within"]>;
|
9619
9882
|
}, "strip", z.ZodTypeAny, {
|
9620
|
-
type: "exact" | "fuzzy" | "range";
|
9883
|
+
type: "exact" | "fuzzy" | "range" | "within";
|
9621
9884
|
}, {
|
9622
|
-
type: "exact" | "fuzzy" | "range";
|
9885
|
+
type: "exact" | "fuzzy" | "range" | "within";
|
9623
9886
|
}>;
|
9624
9887
|
options: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
9625
9888
|
value: z.ZodString;
|
@@ -9664,13 +9927,13 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
9664
9927
|
validator: import(".").JSONSchema;
|
9665
9928
|
}>, "many">>>;
|
9666
9929
|
}, {
|
9667
|
-
fieldId: z.ZodEnum<["trackingId", "status", "legalStatuses.REGISTERED.acceptedAt", "legalStatuses.REGISTERED.createdAtLocation", "updatedAt"]>;
|
9930
|
+
fieldId: z.ZodEnum<["event.trackingId", "event.status", "event.legalStatuses.REGISTERED.acceptedAt", "event.legalStatuses.REGISTERED.createdAtLocation", "event.updatedAt"]>;
|
9668
9931
|
fieldType: z.ZodLiteral<"event">;
|
9669
9932
|
}>, "strip", z.ZodTypeAny, {
|
9670
9933
|
config: {
|
9671
|
-
type: "exact" | "fuzzy" | "range";
|
9934
|
+
type: "exact" | "fuzzy" | "range" | "within";
|
9672
9935
|
};
|
9673
|
-
fieldId: "status" | "updatedAt" | "trackingId" | "legalStatuses.REGISTERED.acceptedAt" | "legalStatuses.REGISTERED.createdAtLocation";
|
9936
|
+
fieldId: "event.status" | "event.updatedAt" | "event.trackingId" | "event.legalStatuses.REGISTERED.acceptedAt" | "event.legalStatuses.REGISTERED.createdAtLocation";
|
9674
9937
|
fieldType: "event";
|
9675
9938
|
options?: {
|
9676
9939
|
value: string;
|
@@ -9693,9 +9956,9 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
9693
9956
|
}[] | undefined;
|
9694
9957
|
}, {
|
9695
9958
|
config: {
|
9696
|
-
type: "exact" | "fuzzy" | "range";
|
9959
|
+
type: "exact" | "fuzzy" | "range" | "within";
|
9697
9960
|
};
|
9698
|
-
fieldId: "status" | "updatedAt" | "trackingId" | "legalStatuses.REGISTERED.acceptedAt" | "legalStatuses.REGISTERED.createdAtLocation";
|
9961
|
+
fieldId: "event.status" | "event.updatedAt" | "event.trackingId" | "event.legalStatuses.REGISTERED.acceptedAt" | "event.legalStatuses.REGISTERED.createdAtLocation";
|
9699
9962
|
fieldType: "event";
|
9700
9963
|
options?: {
|
9701
9964
|
value: string;
|
@@ -9733,7 +9996,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
9733
9996
|
title: TranslationConfig;
|
9734
9997
|
fields: ({
|
9735
9998
|
config: {
|
9736
|
-
type: "exact" | "fuzzy" | "range";
|
9999
|
+
type: "exact" | "fuzzy" | "range" | "within";
|
9737
10000
|
};
|
9738
10001
|
fieldId: string;
|
9739
10002
|
fieldType: "field";
|
@@ -9760,9 +10023,9 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
9760
10023
|
excludeInSearchQuery?: boolean | undefined;
|
9761
10024
|
} | {
|
9762
10025
|
config: {
|
9763
|
-
type: "exact" | "fuzzy" | "range";
|
10026
|
+
type: "exact" | "fuzzy" | "range" | "within";
|
9764
10027
|
};
|
9765
|
-
fieldId: "status" | "updatedAt" | "trackingId" | "legalStatuses.REGISTERED.acceptedAt" | "legalStatuses.REGISTERED.createdAtLocation";
|
10028
|
+
fieldId: "event.status" | "event.updatedAt" | "event.trackingId" | "event.legalStatuses.REGISTERED.acceptedAt" | "event.legalStatuses.REGISTERED.createdAtLocation";
|
9766
10029
|
fieldType: "event";
|
9767
10030
|
options?: {
|
9768
10031
|
value: string;
|
@@ -9792,7 +10055,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
9792
10055
|
};
|
9793
10056
|
fields: ({
|
9794
10057
|
config: {
|
9795
|
-
type: "exact" | "fuzzy" | "range";
|
10058
|
+
type: "exact" | "fuzzy" | "range" | "within";
|
9796
10059
|
};
|
9797
10060
|
fieldId: string;
|
9798
10061
|
fieldType: "field";
|
@@ -9831,9 +10094,9 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
9831
10094
|
excludeInSearchQuery?: boolean | undefined;
|
9832
10095
|
} | {
|
9833
10096
|
config: {
|
9834
|
-
type: "exact" | "fuzzy" | "range";
|
10097
|
+
type: "exact" | "fuzzy" | "range" | "within";
|
9835
10098
|
};
|
9836
|
-
fieldId: "status" | "updatedAt" | "trackingId" | "legalStatuses.REGISTERED.acceptedAt" | "legalStatuses.REGISTERED.createdAtLocation";
|
10099
|
+
fieldId: "event.status" | "event.updatedAt" | "event.trackingId" | "event.legalStatuses.REGISTERED.acceptedAt" | "event.legalStatuses.REGISTERED.createdAtLocation";
|
9837
10100
|
fieldType: "event";
|
9838
10101
|
options?: {
|
9839
10102
|
value: string;
|
@@ -10432,15 +10695,29 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
10432
10695
|
hideLabel?: boolean | undefined;
|
10433
10696
|
uncorrectable?: boolean | undefined;
|
10434
10697
|
defaultValue?: {
|
10435
|
-
firstname
|
10436
|
-
surname
|
10698
|
+
firstname?: string | undefined;
|
10699
|
+
surname?: string | undefined;
|
10700
|
+
middlename?: string | undefined;
|
10437
10701
|
} | undefined;
|
10438
10702
|
configuration?: {
|
10703
|
+
name?: {
|
10704
|
+
firstname?: {
|
10705
|
+
required: boolean;
|
10706
|
+
label?: TranslationConfig | undefined;
|
10707
|
+
} | undefined;
|
10708
|
+
surname?: {
|
10709
|
+
required: boolean;
|
10710
|
+
label?: TranslationConfig | undefined;
|
10711
|
+
} | undefined;
|
10712
|
+
middlename?: {
|
10713
|
+
required: boolean;
|
10714
|
+
label?: TranslationConfig | undefined;
|
10715
|
+
} | undefined;
|
10716
|
+
} | undefined;
|
10717
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
10439
10718
|
maxLength?: number | undefined;
|
10440
10719
|
prefix?: TranslationConfig | undefined;
|
10441
10720
|
postfix?: TranslationConfig | undefined;
|
10442
|
-
includeMiddlename?: boolean | undefined;
|
10443
|
-
searchMode?: boolean | undefined;
|
10444
10721
|
} | undefined;
|
10445
10722
|
} | {
|
10446
10723
|
type: "PHONE";
|
@@ -10773,7 +11050,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
10773
11050
|
postcodeOrZip?: string | undefined;
|
10774
11051
|
} | undefined;
|
10775
11052
|
configuration?: {
|
10776
|
-
|
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;
|
10777
11055
|
} | undefined;
|
10778
11056
|
} | {
|
10779
11057
|
type: "DATA";
|
@@ -11382,15 +11660,29 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
11382
11660
|
hideLabel?: boolean | undefined;
|
11383
11661
|
uncorrectable?: boolean | undefined;
|
11384
11662
|
defaultValue?: {
|
11385
|
-
firstname
|
11386
|
-
surname
|
11663
|
+
firstname?: string | undefined;
|
11664
|
+
surname?: string | undefined;
|
11665
|
+
middlename?: string | undefined;
|
11387
11666
|
} | undefined;
|
11388
11667
|
configuration?: {
|
11668
|
+
name?: {
|
11669
|
+
firstname?: {
|
11670
|
+
required: boolean;
|
11671
|
+
label?: TranslationConfig | undefined;
|
11672
|
+
} | undefined;
|
11673
|
+
surname?: {
|
11674
|
+
required: boolean;
|
11675
|
+
label?: TranslationConfig | undefined;
|
11676
|
+
} | undefined;
|
11677
|
+
middlename?: {
|
11678
|
+
required: boolean;
|
11679
|
+
label?: TranslationConfig | undefined;
|
11680
|
+
} | undefined;
|
11681
|
+
} | undefined;
|
11682
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
11389
11683
|
maxLength?: number | undefined;
|
11390
11684
|
prefix?: TranslationConfig | undefined;
|
11391
11685
|
postfix?: TranslationConfig | undefined;
|
11392
|
-
includeMiddlename?: boolean | undefined;
|
11393
|
-
searchMode?: boolean | undefined;
|
11394
11686
|
} | undefined;
|
11395
11687
|
} | {
|
11396
11688
|
type: "PHONE";
|
@@ -11723,7 +12015,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
11723
12015
|
postcodeOrZip?: string | undefined;
|
11724
12016
|
} | undefined;
|
11725
12017
|
configuration?: {
|
11726
|
-
|
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;
|
11727
12020
|
} | undefined;
|
11728
12021
|
} | {
|
11729
12022
|
type: "DATA";
|
@@ -12331,15 +12624,29 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
12331
12624
|
hideLabel?: boolean | undefined;
|
12332
12625
|
uncorrectable?: boolean | undefined;
|
12333
12626
|
defaultValue?: {
|
12334
|
-
firstname
|
12335
|
-
surname
|
12627
|
+
firstname?: string | undefined;
|
12628
|
+
surname?: string | undefined;
|
12629
|
+
middlename?: string | undefined;
|
12336
12630
|
} | undefined;
|
12337
12631
|
configuration?: {
|
12632
|
+
name?: {
|
12633
|
+
firstname?: {
|
12634
|
+
required: boolean;
|
12635
|
+
label?: TranslationConfig | undefined;
|
12636
|
+
} | undefined;
|
12637
|
+
surname?: {
|
12638
|
+
required: boolean;
|
12639
|
+
label?: TranslationConfig | undefined;
|
12640
|
+
} | undefined;
|
12641
|
+
middlename?: {
|
12642
|
+
required: boolean;
|
12643
|
+
label?: TranslationConfig | undefined;
|
12644
|
+
} | undefined;
|
12645
|
+
} | undefined;
|
12646
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
12338
12647
|
maxLength?: number | undefined;
|
12339
12648
|
prefix?: TranslationConfig | undefined;
|
12340
12649
|
postfix?: TranslationConfig | undefined;
|
12341
|
-
includeMiddlename?: boolean | undefined;
|
12342
|
-
searchMode?: boolean | undefined;
|
12343
12650
|
} | undefined;
|
12344
12651
|
} | {
|
12345
12652
|
type: "PHONE";
|
@@ -12672,7 +12979,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
12672
12979
|
postcodeOrZip?: string | undefined;
|
12673
12980
|
} | undefined;
|
12674
12981
|
configuration?: {
|
12675
|
-
|
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;
|
12676
12984
|
} | undefined;
|
12677
12985
|
} | {
|
12678
12986
|
type: "DATA";
|
@@ -13280,15 +13588,29 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
13280
13588
|
hideLabel?: boolean | undefined;
|
13281
13589
|
uncorrectable?: boolean | undefined;
|
13282
13590
|
defaultValue?: {
|
13283
|
-
firstname
|
13284
|
-
surname
|
13591
|
+
firstname?: string | undefined;
|
13592
|
+
surname?: string | undefined;
|
13593
|
+
middlename?: string | undefined;
|
13285
13594
|
} | undefined;
|
13286
13595
|
configuration?: {
|
13596
|
+
name?: {
|
13597
|
+
firstname?: {
|
13598
|
+
required: boolean;
|
13599
|
+
label?: TranslationConfig | undefined;
|
13600
|
+
} | undefined;
|
13601
|
+
surname?: {
|
13602
|
+
required: boolean;
|
13603
|
+
label?: TranslationConfig | undefined;
|
13604
|
+
} | undefined;
|
13605
|
+
middlename?: {
|
13606
|
+
required: boolean;
|
13607
|
+
label?: TranslationConfig | undefined;
|
13608
|
+
} | undefined;
|
13609
|
+
} | undefined;
|
13610
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
13287
13611
|
maxLength?: number | undefined;
|
13288
13612
|
prefix?: TranslationConfig | undefined;
|
13289
13613
|
postfix?: TranslationConfig | undefined;
|
13290
|
-
includeMiddlename?: boolean | undefined;
|
13291
|
-
searchMode?: boolean | undefined;
|
13292
13614
|
} | undefined;
|
13293
13615
|
} | {
|
13294
13616
|
type: "PHONE";
|
@@ -13621,7 +13943,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
13621
13943
|
postcodeOrZip?: string | undefined;
|
13622
13944
|
} | undefined;
|
13623
13945
|
configuration?: {
|
13624
|
-
|
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;
|
13625
13948
|
} | undefined;
|
13626
13949
|
} | {
|
13627
13950
|
type: "DATA";
|
@@ -14229,15 +14552,29 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
14229
14552
|
hideLabel?: boolean | undefined;
|
14230
14553
|
uncorrectable?: boolean | undefined;
|
14231
14554
|
defaultValue?: {
|
14232
|
-
firstname
|
14233
|
-
surname
|
14555
|
+
firstname?: string | undefined;
|
14556
|
+
surname?: string | undefined;
|
14557
|
+
middlename?: string | undefined;
|
14234
14558
|
} | undefined;
|
14235
14559
|
configuration?: {
|
14560
|
+
name?: {
|
14561
|
+
firstname?: {
|
14562
|
+
required: boolean;
|
14563
|
+
label?: TranslationConfig | undefined;
|
14564
|
+
} | undefined;
|
14565
|
+
surname?: {
|
14566
|
+
required: boolean;
|
14567
|
+
label?: TranslationConfig | undefined;
|
14568
|
+
} | undefined;
|
14569
|
+
middlename?: {
|
14570
|
+
required: boolean;
|
14571
|
+
label?: TranslationConfig | undefined;
|
14572
|
+
} | undefined;
|
14573
|
+
} | undefined;
|
14574
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
14236
14575
|
maxLength?: number | undefined;
|
14237
14576
|
prefix?: TranslationConfig | undefined;
|
14238
14577
|
postfix?: TranslationConfig | undefined;
|
14239
|
-
includeMiddlename?: boolean | undefined;
|
14240
|
-
searchMode?: boolean | undefined;
|
14241
14578
|
} | undefined;
|
14242
14579
|
} | {
|
14243
14580
|
type: "PHONE";
|
@@ -14570,7 +14907,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
14570
14907
|
postcodeOrZip?: string | undefined;
|
14571
14908
|
} | undefined;
|
14572
14909
|
configuration?: {
|
14573
|
-
|
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;
|
14574
14912
|
} | undefined;
|
14575
14913
|
} | {
|
14576
14914
|
type: "DATA";
|
@@ -15226,15 +15564,29 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
15226
15564
|
hideLabel?: boolean | undefined;
|
15227
15565
|
uncorrectable?: boolean | undefined;
|
15228
15566
|
defaultValue?: {
|
15229
|
-
firstname
|
15230
|
-
surname
|
15567
|
+
firstname?: string | undefined;
|
15568
|
+
surname?: string | undefined;
|
15569
|
+
middlename?: string | undefined;
|
15231
15570
|
} | undefined;
|
15232
15571
|
configuration?: {
|
15572
|
+
name?: {
|
15573
|
+
firstname?: {
|
15574
|
+
required: boolean;
|
15575
|
+
label?: TranslationConfig | undefined;
|
15576
|
+
} | undefined;
|
15577
|
+
surname?: {
|
15578
|
+
required: boolean;
|
15579
|
+
label?: TranslationConfig | undefined;
|
15580
|
+
} | undefined;
|
15581
|
+
middlename?: {
|
15582
|
+
required: boolean;
|
15583
|
+
label?: TranslationConfig | undefined;
|
15584
|
+
} | undefined;
|
15585
|
+
} | undefined;
|
15586
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
15233
15587
|
maxLength?: number | undefined;
|
15234
15588
|
prefix?: TranslationConfig | undefined;
|
15235
15589
|
postfix?: TranslationConfig | undefined;
|
15236
|
-
includeMiddlename?: boolean | undefined;
|
15237
|
-
searchMode?: boolean | undefined;
|
15238
15590
|
} | undefined;
|
15239
15591
|
} | {
|
15240
15592
|
type: "PHONE";
|
@@ -15567,7 +15919,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
15567
15919
|
postcodeOrZip?: string | undefined;
|
15568
15920
|
} | undefined;
|
15569
15921
|
configuration?: {
|
15570
|
-
|
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;
|
15571
15924
|
} | undefined;
|
15572
15925
|
} | {
|
15573
15926
|
type: "DATA";
|
@@ -16178,15 +16531,29 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
16178
16531
|
hideLabel?: boolean | undefined;
|
16179
16532
|
uncorrectable?: boolean | undefined;
|
16180
16533
|
defaultValue?: {
|
16181
|
-
firstname
|
16182
|
-
surname
|
16534
|
+
firstname?: string | undefined;
|
16535
|
+
surname?: string | undefined;
|
16536
|
+
middlename?: string | undefined;
|
16183
16537
|
} | undefined;
|
16184
16538
|
configuration?: {
|
16539
|
+
name?: {
|
16540
|
+
firstname?: {
|
16541
|
+
required: boolean;
|
16542
|
+
label?: TranslationConfig | undefined;
|
16543
|
+
} | undefined;
|
16544
|
+
surname?: {
|
16545
|
+
required: boolean;
|
16546
|
+
label?: TranslationConfig | undefined;
|
16547
|
+
} | undefined;
|
16548
|
+
middlename?: {
|
16549
|
+
required: boolean;
|
16550
|
+
label?: TranslationConfig | undefined;
|
16551
|
+
} | undefined;
|
16552
|
+
} | undefined;
|
16553
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
16185
16554
|
maxLength?: number | undefined;
|
16186
16555
|
prefix?: TranslationConfig | undefined;
|
16187
16556
|
postfix?: TranslationConfig | undefined;
|
16188
|
-
includeMiddlename?: boolean | undefined;
|
16189
|
-
searchMode?: boolean | undefined;
|
16190
16557
|
} | undefined;
|
16191
16558
|
} | {
|
16192
16559
|
type: "PHONE";
|
@@ -16519,7 +16886,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
16519
16886
|
postcodeOrZip?: string | undefined;
|
16520
16887
|
} | undefined;
|
16521
16888
|
configuration?: {
|
16522
|
-
|
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;
|
16523
16891
|
} | undefined;
|
16524
16892
|
} | {
|
16525
16893
|
type: "DATA";
|
@@ -17133,15 +17501,29 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
17133
17501
|
hideLabel?: boolean | undefined;
|
17134
17502
|
uncorrectable?: boolean | undefined;
|
17135
17503
|
defaultValue?: {
|
17136
|
-
firstname
|
17137
|
-
surname
|
17504
|
+
firstname?: string | undefined;
|
17505
|
+
surname?: string | undefined;
|
17506
|
+
middlename?: string | undefined;
|
17138
17507
|
} | undefined;
|
17139
17508
|
configuration?: {
|
17509
|
+
name?: {
|
17510
|
+
firstname?: {
|
17511
|
+
required: boolean;
|
17512
|
+
label?: TranslationConfig | undefined;
|
17513
|
+
} | undefined;
|
17514
|
+
surname?: {
|
17515
|
+
required: boolean;
|
17516
|
+
label?: TranslationConfig | undefined;
|
17517
|
+
} | undefined;
|
17518
|
+
middlename?: {
|
17519
|
+
required: boolean;
|
17520
|
+
label?: TranslationConfig | undefined;
|
17521
|
+
} | undefined;
|
17522
|
+
} | undefined;
|
17523
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
17140
17524
|
maxLength?: number | undefined;
|
17141
17525
|
prefix?: TranslationConfig | undefined;
|
17142
17526
|
postfix?: TranslationConfig | undefined;
|
17143
|
-
includeMiddlename?: boolean | undefined;
|
17144
|
-
searchMode?: boolean | undefined;
|
17145
17527
|
} | undefined;
|
17146
17528
|
} | {
|
17147
17529
|
type: "PHONE";
|
@@ -17474,7 +17856,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
17474
17856
|
postcodeOrZip?: string | undefined;
|
17475
17857
|
} | undefined;
|
17476
17858
|
configuration?: {
|
17477
|
-
|
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;
|
17478
17861
|
} | undefined;
|
17479
17862
|
} | {
|
17480
17863
|
type: "DATA";
|
@@ -18085,15 +18468,29 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
18085
18468
|
hideLabel?: boolean | undefined;
|
18086
18469
|
uncorrectable?: boolean | undefined;
|
18087
18470
|
defaultValue?: {
|
18088
|
-
firstname
|
18089
|
-
surname
|
18471
|
+
firstname?: string | undefined;
|
18472
|
+
surname?: string | undefined;
|
18473
|
+
middlename?: string | undefined;
|
18090
18474
|
} | undefined;
|
18091
18475
|
configuration?: {
|
18476
|
+
name?: {
|
18477
|
+
firstname?: {
|
18478
|
+
required: boolean;
|
18479
|
+
label?: TranslationConfig | undefined;
|
18480
|
+
} | undefined;
|
18481
|
+
surname?: {
|
18482
|
+
required: boolean;
|
18483
|
+
label?: TranslationConfig | undefined;
|
18484
|
+
} | undefined;
|
18485
|
+
middlename?: {
|
18486
|
+
required: boolean;
|
18487
|
+
label?: TranslationConfig | undefined;
|
18488
|
+
} | undefined;
|
18489
|
+
} | undefined;
|
18490
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
18092
18491
|
maxLength?: number | undefined;
|
18093
18492
|
prefix?: TranslationConfig | undefined;
|
18094
18493
|
postfix?: TranslationConfig | undefined;
|
18095
|
-
includeMiddlename?: boolean | undefined;
|
18096
|
-
searchMode?: boolean | undefined;
|
18097
18494
|
} | undefined;
|
18098
18495
|
} | {
|
18099
18496
|
type: "PHONE";
|
@@ -18426,7 +18823,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
18426
18823
|
postcodeOrZip?: string | undefined;
|
18427
18824
|
} | undefined;
|
18428
18825
|
configuration?: {
|
18429
|
-
|
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;
|
18430
18828
|
} | undefined;
|
18431
18829
|
} | {
|
18432
18830
|
type: "DATA";
|
@@ -18522,7 +18920,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
18522
18920
|
title: TranslationConfig;
|
18523
18921
|
fields: ({
|
18524
18922
|
config: {
|
18525
|
-
type: "exact" | "fuzzy" | "range";
|
18923
|
+
type: "exact" | "fuzzy" | "range" | "within";
|
18526
18924
|
};
|
18527
18925
|
fieldId: string;
|
18528
18926
|
fieldType: "field";
|
@@ -18549,9 +18947,9 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
18549
18947
|
excludeInSearchQuery?: boolean | undefined;
|
18550
18948
|
} | {
|
18551
18949
|
config: {
|
18552
|
-
type: "exact" | "fuzzy" | "range";
|
18950
|
+
type: "exact" | "fuzzy" | "range" | "within";
|
18553
18951
|
};
|
18554
|
-
fieldId: "status" | "updatedAt" | "trackingId" | "legalStatuses.REGISTERED.acceptedAt" | "legalStatuses.REGISTERED.createdAtLocation";
|
18952
|
+
fieldId: "event.status" | "event.updatedAt" | "event.trackingId" | "event.legalStatuses.REGISTERED.acceptedAt" | "event.legalStatuses.REGISTERED.createdAtLocation";
|
18555
18953
|
fieldType: "event";
|
18556
18954
|
options?: {
|
18557
18955
|
value: string;
|
@@ -19485,10 +19883,38 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
19485
19883
|
hideLabel?: boolean | undefined;
|
19486
19884
|
uncorrectable?: boolean | undefined;
|
19487
19885
|
defaultValue?: {
|
19488
|
-
firstname
|
19489
|
-
surname
|
19886
|
+
firstname?: string | undefined;
|
19887
|
+
surname?: string | undefined;
|
19888
|
+
middlename?: string | undefined;
|
19490
19889
|
} | undefined;
|
19491
19890
|
configuration?: {
|
19891
|
+
name?: {
|
19892
|
+
firstname?: {
|
19893
|
+
required: boolean;
|
19894
|
+
label?: {
|
19895
|
+
id: string;
|
19896
|
+
description: string;
|
19897
|
+
defaultMessage: string;
|
19898
|
+
} | undefined;
|
19899
|
+
} | undefined;
|
19900
|
+
surname?: {
|
19901
|
+
required: boolean;
|
19902
|
+
label?: {
|
19903
|
+
id: string;
|
19904
|
+
description: string;
|
19905
|
+
defaultMessage: string;
|
19906
|
+
} | undefined;
|
19907
|
+
} | undefined;
|
19908
|
+
middlename?: {
|
19909
|
+
required: boolean;
|
19910
|
+
label?: {
|
19911
|
+
id: string;
|
19912
|
+
description: string;
|
19913
|
+
defaultMessage: string;
|
19914
|
+
} | undefined;
|
19915
|
+
} | undefined;
|
19916
|
+
} | undefined;
|
19917
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
19492
19918
|
maxLength?: number | undefined;
|
19493
19919
|
prefix?: {
|
19494
19920
|
id: string;
|
@@ -19500,8 +19926,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
19500
19926
|
description: string;
|
19501
19927
|
defaultMessage: string;
|
19502
19928
|
} | undefined;
|
19503
|
-
includeMiddlename?: boolean | undefined;
|
19504
|
-
searchMode?: boolean | undefined;
|
19505
19929
|
} | undefined;
|
19506
19930
|
} | {
|
19507
19931
|
type: "PHONE";
|
@@ -19998,7 +20422,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
19998
20422
|
postcodeOrZip?: string | undefined;
|
19999
20423
|
} | undefined;
|
20000
20424
|
configuration?: {
|
20001
|
-
|
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;
|
20002
20427
|
} | undefined;
|
20003
20428
|
} | {
|
20004
20429
|
type: "DATA";
|
@@ -20969,10 +21394,38 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
20969
21394
|
hideLabel?: boolean | undefined;
|
20970
21395
|
uncorrectable?: boolean | undefined;
|
20971
21396
|
defaultValue?: {
|
20972
|
-
firstname
|
20973
|
-
surname
|
21397
|
+
firstname?: string | undefined;
|
21398
|
+
surname?: string | undefined;
|
21399
|
+
middlename?: string | undefined;
|
20974
21400
|
} | undefined;
|
20975
21401
|
configuration?: {
|
21402
|
+
name?: {
|
21403
|
+
firstname?: {
|
21404
|
+
required: boolean;
|
21405
|
+
label?: {
|
21406
|
+
id: string;
|
21407
|
+
description: string;
|
21408
|
+
defaultMessage: string;
|
21409
|
+
} | undefined;
|
21410
|
+
} | undefined;
|
21411
|
+
surname?: {
|
21412
|
+
required: boolean;
|
21413
|
+
label?: {
|
21414
|
+
id: string;
|
21415
|
+
description: string;
|
21416
|
+
defaultMessage: string;
|
21417
|
+
} | undefined;
|
21418
|
+
} | undefined;
|
21419
|
+
middlename?: {
|
21420
|
+
required: boolean;
|
21421
|
+
label?: {
|
21422
|
+
id: string;
|
21423
|
+
description: string;
|
21424
|
+
defaultMessage: string;
|
21425
|
+
} | undefined;
|
21426
|
+
} | undefined;
|
21427
|
+
} | undefined;
|
21428
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
20976
21429
|
maxLength?: number | undefined;
|
20977
21430
|
prefix?: {
|
20978
21431
|
id: string;
|
@@ -20984,8 +21437,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
20984
21437
|
description: string;
|
20985
21438
|
defaultMessage: string;
|
20986
21439
|
} | undefined;
|
20987
|
-
includeMiddlename?: boolean | undefined;
|
20988
|
-
searchMode?: boolean | undefined;
|
20989
21440
|
} | undefined;
|
20990
21441
|
} | {
|
20991
21442
|
type: "PHONE";
|
@@ -21482,7 +21933,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
21482
21933
|
postcodeOrZip?: string | undefined;
|
21483
21934
|
} | undefined;
|
21484
21935
|
configuration?: {
|
21485
|
-
|
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;
|
21486
21938
|
} | undefined;
|
21487
21939
|
} | {
|
21488
21940
|
type: "DATA";
|
@@ -22458,10 +22910,38 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
22458
22910
|
hideLabel?: boolean | undefined;
|
22459
22911
|
uncorrectable?: boolean | undefined;
|
22460
22912
|
defaultValue?: {
|
22461
|
-
firstname
|
22462
|
-
surname
|
22913
|
+
firstname?: string | undefined;
|
22914
|
+
surname?: string | undefined;
|
22915
|
+
middlename?: string | undefined;
|
22463
22916
|
} | undefined;
|
22464
22917
|
configuration?: {
|
22918
|
+
name?: {
|
22919
|
+
firstname?: {
|
22920
|
+
required: boolean;
|
22921
|
+
label?: {
|
22922
|
+
id: string;
|
22923
|
+
description: string;
|
22924
|
+
defaultMessage: string;
|
22925
|
+
} | undefined;
|
22926
|
+
} | undefined;
|
22927
|
+
surname?: {
|
22928
|
+
required: boolean;
|
22929
|
+
label?: {
|
22930
|
+
id: string;
|
22931
|
+
description: string;
|
22932
|
+
defaultMessage: string;
|
22933
|
+
} | undefined;
|
22934
|
+
} | undefined;
|
22935
|
+
middlename?: {
|
22936
|
+
required: boolean;
|
22937
|
+
label?: {
|
22938
|
+
id: string;
|
22939
|
+
description: string;
|
22940
|
+
defaultMessage: string;
|
22941
|
+
} | undefined;
|
22942
|
+
} | undefined;
|
22943
|
+
} | undefined;
|
22944
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
22465
22945
|
maxLength?: number | undefined;
|
22466
22946
|
prefix?: {
|
22467
22947
|
id: string;
|
@@ -22473,8 +22953,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
22473
22953
|
description: string;
|
22474
22954
|
defaultMessage: string;
|
22475
22955
|
} | undefined;
|
22476
|
-
includeMiddlename?: boolean | undefined;
|
22477
|
-
searchMode?: boolean | undefined;
|
22478
22956
|
} | undefined;
|
22479
22957
|
} | {
|
22480
22958
|
type: "PHONE";
|
@@ -22971,7 +23449,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
22971
23449
|
postcodeOrZip?: string | undefined;
|
22972
23450
|
} | undefined;
|
22973
23451
|
configuration?: {
|
22974
|
-
|
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;
|
22975
23454
|
} | undefined;
|
22976
23455
|
} | {
|
22977
23456
|
type: "DATA";
|
@@ -23947,10 +24426,38 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
23947
24426
|
hideLabel?: boolean | undefined;
|
23948
24427
|
uncorrectable?: boolean | undefined;
|
23949
24428
|
defaultValue?: {
|
23950
|
-
firstname
|
23951
|
-
surname
|
24429
|
+
firstname?: string | undefined;
|
24430
|
+
surname?: string | undefined;
|
24431
|
+
middlename?: string | undefined;
|
23952
24432
|
} | undefined;
|
23953
24433
|
configuration?: {
|
24434
|
+
name?: {
|
24435
|
+
firstname?: {
|
24436
|
+
required: boolean;
|
24437
|
+
label?: {
|
24438
|
+
id: string;
|
24439
|
+
description: string;
|
24440
|
+
defaultMessage: string;
|
24441
|
+
} | undefined;
|
24442
|
+
} | undefined;
|
24443
|
+
surname?: {
|
24444
|
+
required: boolean;
|
24445
|
+
label?: {
|
24446
|
+
id: string;
|
24447
|
+
description: string;
|
24448
|
+
defaultMessage: string;
|
24449
|
+
} | undefined;
|
24450
|
+
} | undefined;
|
24451
|
+
middlename?: {
|
24452
|
+
required: boolean;
|
24453
|
+
label?: {
|
24454
|
+
id: string;
|
24455
|
+
description: string;
|
24456
|
+
defaultMessage: string;
|
24457
|
+
} | undefined;
|
24458
|
+
} | undefined;
|
24459
|
+
} | undefined;
|
24460
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
23954
24461
|
maxLength?: number | undefined;
|
23955
24462
|
prefix?: {
|
23956
24463
|
id: string;
|
@@ -23962,8 +24469,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
23962
24469
|
description: string;
|
23963
24470
|
defaultMessage: string;
|
23964
24471
|
} | undefined;
|
23965
|
-
includeMiddlename?: boolean | undefined;
|
23966
|
-
searchMode?: boolean | undefined;
|
23967
24472
|
} | undefined;
|
23968
24473
|
} | {
|
23969
24474
|
type: "PHONE";
|
@@ -24460,7 +24965,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
24460
24965
|
postcodeOrZip?: string | undefined;
|
24461
24966
|
} | undefined;
|
24462
24967
|
configuration?: {
|
24463
|
-
|
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;
|
24464
24970
|
} | undefined;
|
24465
24971
|
} | {
|
24466
24972
|
type: "DATA";
|
@@ -25436,10 +25942,38 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
25436
25942
|
hideLabel?: boolean | undefined;
|
25437
25943
|
uncorrectable?: boolean | undefined;
|
25438
25944
|
defaultValue?: {
|
25439
|
-
firstname
|
25440
|
-
surname
|
25945
|
+
firstname?: string | undefined;
|
25946
|
+
surname?: string | undefined;
|
25947
|
+
middlename?: string | undefined;
|
25441
25948
|
} | undefined;
|
25442
25949
|
configuration?: {
|
25950
|
+
name?: {
|
25951
|
+
firstname?: {
|
25952
|
+
required: boolean;
|
25953
|
+
label?: {
|
25954
|
+
id: string;
|
25955
|
+
description: string;
|
25956
|
+
defaultMessage: string;
|
25957
|
+
} | undefined;
|
25958
|
+
} | undefined;
|
25959
|
+
surname?: {
|
25960
|
+
required: boolean;
|
25961
|
+
label?: {
|
25962
|
+
id: string;
|
25963
|
+
description: string;
|
25964
|
+
defaultMessage: string;
|
25965
|
+
} | undefined;
|
25966
|
+
} | undefined;
|
25967
|
+
middlename?: {
|
25968
|
+
required: boolean;
|
25969
|
+
label?: {
|
25970
|
+
id: string;
|
25971
|
+
description: string;
|
25972
|
+
defaultMessage: string;
|
25973
|
+
} | undefined;
|
25974
|
+
} | undefined;
|
25975
|
+
} | undefined;
|
25976
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
25443
25977
|
maxLength?: number | undefined;
|
25444
25978
|
prefix?: {
|
25445
25979
|
id: string;
|
@@ -25451,8 +25985,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
25451
25985
|
description: string;
|
25452
25986
|
defaultMessage: string;
|
25453
25987
|
} | undefined;
|
25454
|
-
includeMiddlename?: boolean | undefined;
|
25455
|
-
searchMode?: boolean | undefined;
|
25456
25988
|
} | undefined;
|
25457
25989
|
} | {
|
25458
25990
|
type: "PHONE";
|
@@ -25949,7 +26481,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
25949
26481
|
postcodeOrZip?: string | undefined;
|
25950
26482
|
} | undefined;
|
25951
26483
|
configuration?: {
|
25952
|
-
|
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;
|
25953
26486
|
} | undefined;
|
25954
26487
|
} | {
|
25955
26488
|
type: "DATA";
|
@@ -26992,10 +27525,38 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
26992
27525
|
hideLabel?: boolean | undefined;
|
26993
27526
|
uncorrectable?: boolean | undefined;
|
26994
27527
|
defaultValue?: {
|
26995
|
-
firstname
|
26996
|
-
surname
|
27528
|
+
firstname?: string | undefined;
|
27529
|
+
surname?: string | undefined;
|
27530
|
+
middlename?: string | undefined;
|
26997
27531
|
} | undefined;
|
26998
27532
|
configuration?: {
|
27533
|
+
name?: {
|
27534
|
+
firstname?: {
|
27535
|
+
required: boolean;
|
27536
|
+
label?: {
|
27537
|
+
id: string;
|
27538
|
+
description: string;
|
27539
|
+
defaultMessage: string;
|
27540
|
+
} | undefined;
|
27541
|
+
} | undefined;
|
27542
|
+
surname?: {
|
27543
|
+
required: boolean;
|
27544
|
+
label?: {
|
27545
|
+
id: string;
|
27546
|
+
description: string;
|
27547
|
+
defaultMessage: string;
|
27548
|
+
} | undefined;
|
27549
|
+
} | undefined;
|
27550
|
+
middlename?: {
|
27551
|
+
required: boolean;
|
27552
|
+
label?: {
|
27553
|
+
id: string;
|
27554
|
+
description: string;
|
27555
|
+
defaultMessage: string;
|
27556
|
+
} | undefined;
|
27557
|
+
} | undefined;
|
27558
|
+
} | undefined;
|
27559
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
26999
27560
|
maxLength?: number | undefined;
|
27000
27561
|
prefix?: {
|
27001
27562
|
id: string;
|
@@ -27007,8 +27568,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
27007
27568
|
description: string;
|
27008
27569
|
defaultMessage: string;
|
27009
27570
|
} | undefined;
|
27010
|
-
includeMiddlename?: boolean | undefined;
|
27011
|
-
searchMode?: boolean | undefined;
|
27012
27571
|
} | undefined;
|
27013
27572
|
} | {
|
27014
27573
|
type: "PHONE";
|
@@ -27505,7 +28064,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
27505
28064
|
postcodeOrZip?: string | undefined;
|
27506
28065
|
} | undefined;
|
27507
28066
|
configuration?: {
|
27508
|
-
|
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;
|
27509
28069
|
} | undefined;
|
27510
28070
|
} | {
|
27511
28071
|
type: "DATA";
|
@@ -28497,10 +29057,38 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
28497
29057
|
hideLabel?: boolean | undefined;
|
28498
29058
|
uncorrectable?: boolean | undefined;
|
28499
29059
|
defaultValue?: {
|
28500
|
-
firstname
|
28501
|
-
surname
|
29060
|
+
firstname?: string | undefined;
|
29061
|
+
surname?: string | undefined;
|
29062
|
+
middlename?: string | undefined;
|
28502
29063
|
} | undefined;
|
28503
29064
|
configuration?: {
|
29065
|
+
name?: {
|
29066
|
+
firstname?: {
|
29067
|
+
required: boolean;
|
29068
|
+
label?: {
|
29069
|
+
id: string;
|
29070
|
+
description: string;
|
29071
|
+
defaultMessage: string;
|
29072
|
+
} | undefined;
|
29073
|
+
} | undefined;
|
29074
|
+
surname?: {
|
29075
|
+
required: boolean;
|
29076
|
+
label?: {
|
29077
|
+
id: string;
|
29078
|
+
description: string;
|
29079
|
+
defaultMessage: string;
|
29080
|
+
} | undefined;
|
29081
|
+
} | undefined;
|
29082
|
+
middlename?: {
|
29083
|
+
required: boolean;
|
29084
|
+
label?: {
|
29085
|
+
id: string;
|
29086
|
+
description: string;
|
29087
|
+
defaultMessage: string;
|
29088
|
+
} | undefined;
|
29089
|
+
} | undefined;
|
29090
|
+
} | undefined;
|
29091
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
28504
29092
|
maxLength?: number | undefined;
|
28505
29093
|
prefix?: {
|
28506
29094
|
id: string;
|
@@ -28512,8 +29100,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
28512
29100
|
description: string;
|
28513
29101
|
defaultMessage: string;
|
28514
29102
|
} | undefined;
|
28515
|
-
includeMiddlename?: boolean | undefined;
|
28516
|
-
searchMode?: boolean | undefined;
|
28517
29103
|
} | undefined;
|
28518
29104
|
} | {
|
28519
29105
|
type: "PHONE";
|
@@ -29010,7 +29596,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
29010
29596
|
postcodeOrZip?: string | undefined;
|
29011
29597
|
} | undefined;
|
29012
29598
|
configuration?: {
|
29013
|
-
|
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;
|
29014
29601
|
} | undefined;
|
29015
29602
|
} | {
|
29016
29603
|
type: "DATA";
|
@@ -29995,10 +30582,38 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
29995
30582
|
hideLabel?: boolean | undefined;
|
29996
30583
|
uncorrectable?: boolean | undefined;
|
29997
30584
|
defaultValue?: {
|
29998
|
-
firstname
|
29999
|
-
surname
|
30585
|
+
firstname?: string | undefined;
|
30586
|
+
surname?: string | undefined;
|
30587
|
+
middlename?: string | undefined;
|
30000
30588
|
} | undefined;
|
30001
30589
|
configuration?: {
|
30590
|
+
name?: {
|
30591
|
+
firstname?: {
|
30592
|
+
required: boolean;
|
30593
|
+
label?: {
|
30594
|
+
id: string;
|
30595
|
+
description: string;
|
30596
|
+
defaultMessage: string;
|
30597
|
+
} | undefined;
|
30598
|
+
} | undefined;
|
30599
|
+
surname?: {
|
30600
|
+
required: boolean;
|
30601
|
+
label?: {
|
30602
|
+
id: string;
|
30603
|
+
description: string;
|
30604
|
+
defaultMessage: string;
|
30605
|
+
} | undefined;
|
30606
|
+
} | undefined;
|
30607
|
+
middlename?: {
|
30608
|
+
required: boolean;
|
30609
|
+
label?: {
|
30610
|
+
id: string;
|
30611
|
+
description: string;
|
30612
|
+
defaultMessage: string;
|
30613
|
+
} | undefined;
|
30614
|
+
} | undefined;
|
30615
|
+
} | undefined;
|
30616
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
30002
30617
|
maxLength?: number | undefined;
|
30003
30618
|
prefix?: {
|
30004
30619
|
id: string;
|
@@ -30010,8 +30625,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
30010
30625
|
description: string;
|
30011
30626
|
defaultMessage: string;
|
30012
30627
|
} | undefined;
|
30013
|
-
includeMiddlename?: boolean | undefined;
|
30014
|
-
searchMode?: boolean | undefined;
|
30015
30628
|
} | undefined;
|
30016
30629
|
} | {
|
30017
30630
|
type: "PHONE";
|
@@ -30508,7 +31121,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
30508
31121
|
postcodeOrZip?: string | undefined;
|
30509
31122
|
} | undefined;
|
30510
31123
|
configuration?: {
|
30511
|
-
|
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;
|
30512
31126
|
} | undefined;
|
30513
31127
|
} | {
|
30514
31128
|
type: "DATA";
|
@@ -31500,10 +32114,38 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
31500
32114
|
hideLabel?: boolean | undefined;
|
31501
32115
|
uncorrectable?: boolean | undefined;
|
31502
32116
|
defaultValue?: {
|
31503
|
-
firstname
|
31504
|
-
surname
|
32117
|
+
firstname?: string | undefined;
|
32118
|
+
surname?: string | undefined;
|
32119
|
+
middlename?: string | undefined;
|
31505
32120
|
} | undefined;
|
31506
32121
|
configuration?: {
|
32122
|
+
name?: {
|
32123
|
+
firstname?: {
|
32124
|
+
required: boolean;
|
32125
|
+
label?: {
|
32126
|
+
id: string;
|
32127
|
+
description: string;
|
32128
|
+
defaultMessage: string;
|
32129
|
+
} | undefined;
|
32130
|
+
} | undefined;
|
32131
|
+
surname?: {
|
32132
|
+
required: boolean;
|
32133
|
+
label?: {
|
32134
|
+
id: string;
|
32135
|
+
description: string;
|
32136
|
+
defaultMessage: string;
|
32137
|
+
} | undefined;
|
32138
|
+
} | undefined;
|
32139
|
+
middlename?: {
|
32140
|
+
required: boolean;
|
32141
|
+
label?: {
|
32142
|
+
id: string;
|
32143
|
+
description: string;
|
32144
|
+
defaultMessage: string;
|
32145
|
+
} | undefined;
|
32146
|
+
} | undefined;
|
32147
|
+
} | undefined;
|
32148
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
31507
32149
|
maxLength?: number | undefined;
|
31508
32150
|
prefix?: {
|
31509
32151
|
id: string;
|
@@ -31515,8 +32157,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
31515
32157
|
description: string;
|
31516
32158
|
defaultMessage: string;
|
31517
32159
|
} | undefined;
|
31518
|
-
includeMiddlename?: boolean | undefined;
|
31519
|
-
searchMode?: boolean | undefined;
|
31520
32160
|
} | undefined;
|
31521
32161
|
} | {
|
31522
32162
|
type: "PHONE";
|
@@ -32013,7 +32653,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
32013
32653
|
postcodeOrZip?: string | undefined;
|
32014
32654
|
} | undefined;
|
32015
32655
|
configuration?: {
|
32016
|
-
|
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;
|
32017
32658
|
} | undefined;
|
32018
32659
|
} | {
|
32019
32660
|
type: "DATA";
|
@@ -32192,7 +32833,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
32192
32833
|
};
|
32193
32834
|
fields: ({
|
32194
32835
|
config: {
|
32195
|
-
type: "exact" | "fuzzy" | "range";
|
32836
|
+
type: "exact" | "fuzzy" | "range" | "within";
|
32196
32837
|
};
|
32197
32838
|
fieldId: string;
|
32198
32839
|
fieldType: "field";
|
@@ -32231,9 +32872,9 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
32231
32872
|
excludeInSearchQuery?: boolean | undefined;
|
32232
32873
|
} | {
|
32233
32874
|
config: {
|
32234
|
-
type: "exact" | "fuzzy" | "range";
|
32875
|
+
type: "exact" | "fuzzy" | "range" | "within";
|
32235
32876
|
};
|
32236
|
-
fieldId: "status" | "updatedAt" | "trackingId" | "legalStatuses.REGISTERED.acceptedAt" | "legalStatuses.REGISTERED.createdAtLocation";
|
32877
|
+
fieldId: "event.status" | "event.updatedAt" | "event.trackingId" | "event.legalStatuses.REGISTERED.acceptedAt" | "event.legalStatuses.REGISTERED.createdAtLocation";
|
32237
32878
|
fieldType: "event";
|
32238
32879
|
options?: {
|
32239
32880
|
value: string;
|
@@ -32832,15 +33473,29 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
32832
33473
|
hideLabel?: boolean | undefined;
|
32833
33474
|
uncorrectable?: boolean | undefined;
|
32834
33475
|
defaultValue?: {
|
32835
|
-
firstname
|
32836
|
-
surname
|
33476
|
+
firstname?: string | undefined;
|
33477
|
+
surname?: string | undefined;
|
33478
|
+
middlename?: string | undefined;
|
32837
33479
|
} | undefined;
|
32838
33480
|
configuration?: {
|
33481
|
+
name?: {
|
33482
|
+
firstname?: {
|
33483
|
+
required: boolean;
|
33484
|
+
label?: TranslationConfig | undefined;
|
33485
|
+
} | undefined;
|
33486
|
+
surname?: {
|
33487
|
+
required: boolean;
|
33488
|
+
label?: TranslationConfig | undefined;
|
33489
|
+
} | undefined;
|
33490
|
+
middlename?: {
|
33491
|
+
required: boolean;
|
33492
|
+
label?: TranslationConfig | undefined;
|
33493
|
+
} | undefined;
|
33494
|
+
} | undefined;
|
33495
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
32839
33496
|
maxLength?: number | undefined;
|
32840
33497
|
prefix?: TranslationConfig | undefined;
|
32841
33498
|
postfix?: TranslationConfig | undefined;
|
32842
|
-
includeMiddlename?: boolean | undefined;
|
32843
|
-
searchMode?: boolean | undefined;
|
32844
33499
|
} | undefined;
|
32845
33500
|
} | {
|
32846
33501
|
type: "PHONE";
|
@@ -33173,7 +33828,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
33173
33828
|
postcodeOrZip?: string | undefined;
|
33174
33829
|
} | undefined;
|
33175
33830
|
configuration?: {
|
33176
|
-
|
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;
|
33177
33833
|
} | undefined;
|
33178
33834
|
} | {
|
33179
33835
|
type: "DATA";
|
@@ -33782,15 +34438,29 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
33782
34438
|
hideLabel?: boolean | undefined;
|
33783
34439
|
uncorrectable?: boolean | undefined;
|
33784
34440
|
defaultValue?: {
|
33785
|
-
firstname
|
33786
|
-
surname
|
34441
|
+
firstname?: string | undefined;
|
34442
|
+
surname?: string | undefined;
|
34443
|
+
middlename?: string | undefined;
|
33787
34444
|
} | undefined;
|
33788
34445
|
configuration?: {
|
34446
|
+
name?: {
|
34447
|
+
firstname?: {
|
34448
|
+
required: boolean;
|
34449
|
+
label?: TranslationConfig | undefined;
|
34450
|
+
} | undefined;
|
34451
|
+
surname?: {
|
34452
|
+
required: boolean;
|
34453
|
+
label?: TranslationConfig | undefined;
|
34454
|
+
} | undefined;
|
34455
|
+
middlename?: {
|
34456
|
+
required: boolean;
|
34457
|
+
label?: TranslationConfig | undefined;
|
34458
|
+
} | undefined;
|
34459
|
+
} | undefined;
|
34460
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
33789
34461
|
maxLength?: number | undefined;
|
33790
34462
|
prefix?: TranslationConfig | undefined;
|
33791
34463
|
postfix?: TranslationConfig | undefined;
|
33792
|
-
includeMiddlename?: boolean | undefined;
|
33793
|
-
searchMode?: boolean | undefined;
|
33794
34464
|
} | undefined;
|
33795
34465
|
} | {
|
33796
34466
|
type: "PHONE";
|
@@ -34123,7 +34793,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
34123
34793
|
postcodeOrZip?: string | undefined;
|
34124
34794
|
} | undefined;
|
34125
34795
|
configuration?: {
|
34126
|
-
|
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;
|
34127
34798
|
} | undefined;
|
34128
34799
|
} | {
|
34129
34800
|
type: "DATA";
|
@@ -34731,15 +35402,29 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
34731
35402
|
hideLabel?: boolean | undefined;
|
34732
35403
|
uncorrectable?: boolean | undefined;
|
34733
35404
|
defaultValue?: {
|
34734
|
-
firstname
|
34735
|
-
surname
|
35405
|
+
firstname?: string | undefined;
|
35406
|
+
surname?: string | undefined;
|
35407
|
+
middlename?: string | undefined;
|
34736
35408
|
} | undefined;
|
34737
35409
|
configuration?: {
|
35410
|
+
name?: {
|
35411
|
+
firstname?: {
|
35412
|
+
required: boolean;
|
35413
|
+
label?: TranslationConfig | undefined;
|
35414
|
+
} | undefined;
|
35415
|
+
surname?: {
|
35416
|
+
required: boolean;
|
35417
|
+
label?: TranslationConfig | undefined;
|
35418
|
+
} | undefined;
|
35419
|
+
middlename?: {
|
35420
|
+
required: boolean;
|
35421
|
+
label?: TranslationConfig | undefined;
|
35422
|
+
} | undefined;
|
35423
|
+
} | undefined;
|
35424
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
34738
35425
|
maxLength?: number | undefined;
|
34739
35426
|
prefix?: TranslationConfig | undefined;
|
34740
35427
|
postfix?: TranslationConfig | undefined;
|
34741
|
-
includeMiddlename?: boolean | undefined;
|
34742
|
-
searchMode?: boolean | undefined;
|
34743
35428
|
} | undefined;
|
34744
35429
|
} | {
|
34745
35430
|
type: "PHONE";
|
@@ -35072,7 +35757,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
35072
35757
|
postcodeOrZip?: string | undefined;
|
35073
35758
|
} | undefined;
|
35074
35759
|
configuration?: {
|
35075
|
-
|
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;
|
35076
35762
|
} | undefined;
|
35077
35763
|
} | {
|
35078
35764
|
type: "DATA";
|
@@ -35680,15 +36366,29 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
35680
36366
|
hideLabel?: boolean | undefined;
|
35681
36367
|
uncorrectable?: boolean | undefined;
|
35682
36368
|
defaultValue?: {
|
35683
|
-
firstname
|
35684
|
-
surname
|
36369
|
+
firstname?: string | undefined;
|
36370
|
+
surname?: string | undefined;
|
36371
|
+
middlename?: string | undefined;
|
35685
36372
|
} | undefined;
|
35686
36373
|
configuration?: {
|
36374
|
+
name?: {
|
36375
|
+
firstname?: {
|
36376
|
+
required: boolean;
|
36377
|
+
label?: TranslationConfig | undefined;
|
36378
|
+
} | undefined;
|
36379
|
+
surname?: {
|
36380
|
+
required: boolean;
|
36381
|
+
label?: TranslationConfig | undefined;
|
36382
|
+
} | undefined;
|
36383
|
+
middlename?: {
|
36384
|
+
required: boolean;
|
36385
|
+
label?: TranslationConfig | undefined;
|
36386
|
+
} | undefined;
|
36387
|
+
} | undefined;
|
36388
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
35687
36389
|
maxLength?: number | undefined;
|
35688
36390
|
prefix?: TranslationConfig | undefined;
|
35689
36391
|
postfix?: TranslationConfig | undefined;
|
35690
|
-
includeMiddlename?: boolean | undefined;
|
35691
|
-
searchMode?: boolean | undefined;
|
35692
36392
|
} | undefined;
|
35693
36393
|
} | {
|
35694
36394
|
type: "PHONE";
|
@@ -36021,7 +36721,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
36021
36721
|
postcodeOrZip?: string | undefined;
|
36022
36722
|
} | undefined;
|
36023
36723
|
configuration?: {
|
36024
|
-
|
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;
|
36025
36726
|
} | undefined;
|
36026
36727
|
} | {
|
36027
36728
|
type: "DATA";
|
@@ -36629,15 +37330,29 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
36629
37330
|
hideLabel?: boolean | undefined;
|
36630
37331
|
uncorrectable?: boolean | undefined;
|
36631
37332
|
defaultValue?: {
|
36632
|
-
firstname
|
36633
|
-
surname
|
37333
|
+
firstname?: string | undefined;
|
37334
|
+
surname?: string | undefined;
|
37335
|
+
middlename?: string | undefined;
|
36634
37336
|
} | undefined;
|
36635
37337
|
configuration?: {
|
37338
|
+
name?: {
|
37339
|
+
firstname?: {
|
37340
|
+
required: boolean;
|
37341
|
+
label?: TranslationConfig | undefined;
|
37342
|
+
} | undefined;
|
37343
|
+
surname?: {
|
37344
|
+
required: boolean;
|
37345
|
+
label?: TranslationConfig | undefined;
|
37346
|
+
} | undefined;
|
37347
|
+
middlename?: {
|
37348
|
+
required: boolean;
|
37349
|
+
label?: TranslationConfig | undefined;
|
37350
|
+
} | undefined;
|
37351
|
+
} | undefined;
|
37352
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
36636
37353
|
maxLength?: number | undefined;
|
36637
37354
|
prefix?: TranslationConfig | undefined;
|
36638
37355
|
postfix?: TranslationConfig | undefined;
|
36639
|
-
includeMiddlename?: boolean | undefined;
|
36640
|
-
searchMode?: boolean | undefined;
|
36641
37356
|
} | undefined;
|
36642
37357
|
} | {
|
36643
37358
|
type: "PHONE";
|
@@ -36970,7 +37685,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
36970
37685
|
postcodeOrZip?: string | undefined;
|
36971
37686
|
} | undefined;
|
36972
37687
|
configuration?: {
|
36973
|
-
|
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;
|
36974
37690
|
} | undefined;
|
36975
37691
|
} | {
|
36976
37692
|
type: "DATA";
|
@@ -37626,15 +38342,29 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
37626
38342
|
hideLabel?: boolean | undefined;
|
37627
38343
|
uncorrectable?: boolean | undefined;
|
37628
38344
|
defaultValue?: {
|
37629
|
-
firstname
|
37630
|
-
surname
|
38345
|
+
firstname?: string | undefined;
|
38346
|
+
surname?: string | undefined;
|
38347
|
+
middlename?: string | undefined;
|
37631
38348
|
} | undefined;
|
37632
38349
|
configuration?: {
|
38350
|
+
name?: {
|
38351
|
+
firstname?: {
|
38352
|
+
required: boolean;
|
38353
|
+
label?: TranslationConfig | undefined;
|
38354
|
+
} | undefined;
|
38355
|
+
surname?: {
|
38356
|
+
required: boolean;
|
38357
|
+
label?: TranslationConfig | undefined;
|
38358
|
+
} | undefined;
|
38359
|
+
middlename?: {
|
38360
|
+
required: boolean;
|
38361
|
+
label?: TranslationConfig | undefined;
|
38362
|
+
} | undefined;
|
38363
|
+
} | undefined;
|
38364
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
37633
38365
|
maxLength?: number | undefined;
|
37634
38366
|
prefix?: TranslationConfig | undefined;
|
37635
38367
|
postfix?: TranslationConfig | undefined;
|
37636
|
-
includeMiddlename?: boolean | undefined;
|
37637
|
-
searchMode?: boolean | undefined;
|
37638
38368
|
} | undefined;
|
37639
38369
|
} | {
|
37640
38370
|
type: "PHONE";
|
@@ -37967,7 +38697,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
37967
38697
|
postcodeOrZip?: string | undefined;
|
37968
38698
|
} | undefined;
|
37969
38699
|
configuration?: {
|
37970
|
-
|
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;
|
37971
38702
|
} | undefined;
|
37972
38703
|
} | {
|
37973
38704
|
type: "DATA";
|
@@ -38578,15 +39309,29 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
38578
39309
|
hideLabel?: boolean | undefined;
|
38579
39310
|
uncorrectable?: boolean | undefined;
|
38580
39311
|
defaultValue?: {
|
38581
|
-
firstname
|
38582
|
-
surname
|
39312
|
+
firstname?: string | undefined;
|
39313
|
+
surname?: string | undefined;
|
39314
|
+
middlename?: string | undefined;
|
38583
39315
|
} | undefined;
|
38584
39316
|
configuration?: {
|
39317
|
+
name?: {
|
39318
|
+
firstname?: {
|
39319
|
+
required: boolean;
|
39320
|
+
label?: TranslationConfig | undefined;
|
39321
|
+
} | undefined;
|
39322
|
+
surname?: {
|
39323
|
+
required: boolean;
|
39324
|
+
label?: TranslationConfig | undefined;
|
39325
|
+
} | undefined;
|
39326
|
+
middlename?: {
|
39327
|
+
required: boolean;
|
39328
|
+
label?: TranslationConfig | undefined;
|
39329
|
+
} | undefined;
|
39330
|
+
} | undefined;
|
39331
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
38585
39332
|
maxLength?: number | undefined;
|
38586
39333
|
prefix?: TranslationConfig | undefined;
|
38587
39334
|
postfix?: TranslationConfig | undefined;
|
38588
|
-
includeMiddlename?: boolean | undefined;
|
38589
|
-
searchMode?: boolean | undefined;
|
38590
39335
|
} | undefined;
|
38591
39336
|
} | {
|
38592
39337
|
type: "PHONE";
|
@@ -38919,7 +39664,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
38919
39664
|
postcodeOrZip?: string | undefined;
|
38920
39665
|
} | undefined;
|
38921
39666
|
configuration?: {
|
38922
|
-
|
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;
|
38923
39669
|
} | undefined;
|
38924
39670
|
} | {
|
38925
39671
|
type: "DATA";
|
@@ -39533,15 +40279,29 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
39533
40279
|
hideLabel?: boolean | undefined;
|
39534
40280
|
uncorrectable?: boolean | undefined;
|
39535
40281
|
defaultValue?: {
|
39536
|
-
firstname
|
39537
|
-
surname
|
40282
|
+
firstname?: string | undefined;
|
40283
|
+
surname?: string | undefined;
|
40284
|
+
middlename?: string | undefined;
|
39538
40285
|
} | undefined;
|
39539
40286
|
configuration?: {
|
40287
|
+
name?: {
|
40288
|
+
firstname?: {
|
40289
|
+
required: boolean;
|
40290
|
+
label?: TranslationConfig | undefined;
|
40291
|
+
} | undefined;
|
40292
|
+
surname?: {
|
40293
|
+
required: boolean;
|
40294
|
+
label?: TranslationConfig | undefined;
|
40295
|
+
} | undefined;
|
40296
|
+
middlename?: {
|
40297
|
+
required: boolean;
|
40298
|
+
label?: TranslationConfig | undefined;
|
40299
|
+
} | undefined;
|
40300
|
+
} | undefined;
|
40301
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
39540
40302
|
maxLength?: number | undefined;
|
39541
40303
|
prefix?: TranslationConfig | undefined;
|
39542
40304
|
postfix?: TranslationConfig | undefined;
|
39543
|
-
includeMiddlename?: boolean | undefined;
|
39544
|
-
searchMode?: boolean | undefined;
|
39545
40305
|
} | undefined;
|
39546
40306
|
} | {
|
39547
40307
|
type: "PHONE";
|
@@ -39874,7 +40634,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
39874
40634
|
postcodeOrZip?: string | undefined;
|
39875
40635
|
} | undefined;
|
39876
40636
|
configuration?: {
|
39877
|
-
|
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;
|
39878
40639
|
} | undefined;
|
39879
40640
|
} | {
|
39880
40641
|
type: "DATA";
|
@@ -40485,15 +41246,29 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
40485
41246
|
hideLabel?: boolean | undefined;
|
40486
41247
|
uncorrectable?: boolean | undefined;
|
40487
41248
|
defaultValue?: {
|
40488
|
-
firstname
|
40489
|
-
surname
|
41249
|
+
firstname?: string | undefined;
|
41250
|
+
surname?: string | undefined;
|
41251
|
+
middlename?: string | undefined;
|
40490
41252
|
} | undefined;
|
40491
41253
|
configuration?: {
|
41254
|
+
name?: {
|
41255
|
+
firstname?: {
|
41256
|
+
required: boolean;
|
41257
|
+
label?: TranslationConfig | undefined;
|
41258
|
+
} | undefined;
|
41259
|
+
surname?: {
|
41260
|
+
required: boolean;
|
41261
|
+
label?: TranslationConfig | undefined;
|
41262
|
+
} | undefined;
|
41263
|
+
middlename?: {
|
41264
|
+
required: boolean;
|
41265
|
+
label?: TranslationConfig | undefined;
|
41266
|
+
} | undefined;
|
41267
|
+
} | undefined;
|
41268
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
40492
41269
|
maxLength?: number | undefined;
|
40493
41270
|
prefix?: TranslationConfig | undefined;
|
40494
41271
|
postfix?: TranslationConfig | undefined;
|
40495
|
-
includeMiddlename?: boolean | undefined;
|
40496
|
-
searchMode?: boolean | undefined;
|
40497
41272
|
} | undefined;
|
40498
41273
|
} | {
|
40499
41274
|
type: "PHONE";
|
@@ -40826,7 +41601,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
40826
41601
|
postcodeOrZip?: string | undefined;
|
40827
41602
|
} | undefined;
|
40828
41603
|
configuration?: {
|
40829
|
-
|
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;
|
40830
41606
|
} | undefined;
|
40831
41607
|
} | {
|
40832
41608
|
type: "DATA";
|
@@ -40922,7 +41698,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
40922
41698
|
title: TranslationConfig;
|
40923
41699
|
fields: ({
|
40924
41700
|
config: {
|
40925
|
-
type: "exact" | "fuzzy" | "range";
|
41701
|
+
type: "exact" | "fuzzy" | "range" | "within";
|
40926
41702
|
};
|
40927
41703
|
fieldId: string;
|
40928
41704
|
fieldType: "field";
|
@@ -40949,9 +41725,9 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
40949
41725
|
excludeInSearchQuery?: boolean | undefined;
|
40950
41726
|
} | {
|
40951
41727
|
config: {
|
40952
|
-
type: "exact" | "fuzzy" | "range";
|
41728
|
+
type: "exact" | "fuzzy" | "range" | "within";
|
40953
41729
|
};
|
40954
|
-
fieldId: "status" | "updatedAt" | "trackingId" | "legalStatuses.REGISTERED.acceptedAt" | "legalStatuses.REGISTERED.createdAtLocation";
|
41730
|
+
fieldId: "event.status" | "event.updatedAt" | "event.trackingId" | "event.legalStatuses.REGISTERED.acceptedAt" | "event.legalStatuses.REGISTERED.createdAtLocation";
|
40955
41731
|
fieldType: "event";
|
40956
41732
|
options?: {
|
40957
41733
|
value: string;
|
@@ -41885,10 +42661,38 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
41885
42661
|
hideLabel?: boolean | undefined;
|
41886
42662
|
uncorrectable?: boolean | undefined;
|
41887
42663
|
defaultValue?: {
|
41888
|
-
firstname
|
41889
|
-
surname
|
42664
|
+
firstname?: string | undefined;
|
42665
|
+
surname?: string | undefined;
|
42666
|
+
middlename?: string | undefined;
|
41890
42667
|
} | undefined;
|
41891
42668
|
configuration?: {
|
42669
|
+
name?: {
|
42670
|
+
firstname?: {
|
42671
|
+
required: boolean;
|
42672
|
+
label?: {
|
42673
|
+
id: string;
|
42674
|
+
description: string;
|
42675
|
+
defaultMessage: string;
|
42676
|
+
} | undefined;
|
42677
|
+
} | undefined;
|
42678
|
+
surname?: {
|
42679
|
+
required: boolean;
|
42680
|
+
label?: {
|
42681
|
+
id: string;
|
42682
|
+
description: string;
|
42683
|
+
defaultMessage: string;
|
42684
|
+
} | undefined;
|
42685
|
+
} | undefined;
|
42686
|
+
middlename?: {
|
42687
|
+
required: boolean;
|
42688
|
+
label?: {
|
42689
|
+
id: string;
|
42690
|
+
description: string;
|
42691
|
+
defaultMessage: string;
|
42692
|
+
} | undefined;
|
42693
|
+
} | undefined;
|
42694
|
+
} | undefined;
|
42695
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
41892
42696
|
maxLength?: number | undefined;
|
41893
42697
|
prefix?: {
|
41894
42698
|
id: string;
|
@@ -41900,8 +42704,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
41900
42704
|
description: string;
|
41901
42705
|
defaultMessage: string;
|
41902
42706
|
} | undefined;
|
41903
|
-
includeMiddlename?: boolean | undefined;
|
41904
|
-
searchMode?: boolean | undefined;
|
41905
42707
|
} | undefined;
|
41906
42708
|
} | {
|
41907
42709
|
type: "PHONE";
|
@@ -42398,7 +43200,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
42398
43200
|
postcodeOrZip?: string | undefined;
|
42399
43201
|
} | undefined;
|
42400
43202
|
configuration?: {
|
42401
|
-
|
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;
|
42402
43205
|
} | undefined;
|
42403
43206
|
} | {
|
42404
43207
|
type: "DATA";
|
@@ -43369,10 +44172,38 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
43369
44172
|
hideLabel?: boolean | undefined;
|
43370
44173
|
uncorrectable?: boolean | undefined;
|
43371
44174
|
defaultValue?: {
|
43372
|
-
firstname
|
43373
|
-
surname
|
44175
|
+
firstname?: string | undefined;
|
44176
|
+
surname?: string | undefined;
|
44177
|
+
middlename?: string | undefined;
|
43374
44178
|
} | undefined;
|
43375
44179
|
configuration?: {
|
44180
|
+
name?: {
|
44181
|
+
firstname?: {
|
44182
|
+
required: boolean;
|
44183
|
+
label?: {
|
44184
|
+
id: string;
|
44185
|
+
description: string;
|
44186
|
+
defaultMessage: string;
|
44187
|
+
} | undefined;
|
44188
|
+
} | undefined;
|
44189
|
+
surname?: {
|
44190
|
+
required: boolean;
|
44191
|
+
label?: {
|
44192
|
+
id: string;
|
44193
|
+
description: string;
|
44194
|
+
defaultMessage: string;
|
44195
|
+
} | undefined;
|
44196
|
+
} | undefined;
|
44197
|
+
middlename?: {
|
44198
|
+
required: boolean;
|
44199
|
+
label?: {
|
44200
|
+
id: string;
|
44201
|
+
description: string;
|
44202
|
+
defaultMessage: string;
|
44203
|
+
} | undefined;
|
44204
|
+
} | undefined;
|
44205
|
+
} | undefined;
|
44206
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
43376
44207
|
maxLength?: number | undefined;
|
43377
44208
|
prefix?: {
|
43378
44209
|
id: string;
|
@@ -43384,8 +44215,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
43384
44215
|
description: string;
|
43385
44216
|
defaultMessage: string;
|
43386
44217
|
} | undefined;
|
43387
|
-
includeMiddlename?: boolean | undefined;
|
43388
|
-
searchMode?: boolean | undefined;
|
43389
44218
|
} | undefined;
|
43390
44219
|
} | {
|
43391
44220
|
type: "PHONE";
|
@@ -43882,7 +44711,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
43882
44711
|
postcodeOrZip?: string | undefined;
|
43883
44712
|
} | undefined;
|
43884
44713
|
configuration?: {
|
43885
|
-
|
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;
|
43886
44716
|
} | undefined;
|
43887
44717
|
} | {
|
43888
44718
|
type: "DATA";
|
@@ -44858,10 +45688,38 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
44858
45688
|
hideLabel?: boolean | undefined;
|
44859
45689
|
uncorrectable?: boolean | undefined;
|
44860
45690
|
defaultValue?: {
|
44861
|
-
firstname
|
44862
|
-
surname
|
45691
|
+
firstname?: string | undefined;
|
45692
|
+
surname?: string | undefined;
|
45693
|
+
middlename?: string | undefined;
|
44863
45694
|
} | undefined;
|
44864
45695
|
configuration?: {
|
45696
|
+
name?: {
|
45697
|
+
firstname?: {
|
45698
|
+
required: boolean;
|
45699
|
+
label?: {
|
45700
|
+
id: string;
|
45701
|
+
description: string;
|
45702
|
+
defaultMessage: string;
|
45703
|
+
} | undefined;
|
45704
|
+
} | undefined;
|
45705
|
+
surname?: {
|
45706
|
+
required: boolean;
|
45707
|
+
label?: {
|
45708
|
+
id: string;
|
45709
|
+
description: string;
|
45710
|
+
defaultMessage: string;
|
45711
|
+
} | undefined;
|
45712
|
+
} | undefined;
|
45713
|
+
middlename?: {
|
45714
|
+
required: boolean;
|
45715
|
+
label?: {
|
45716
|
+
id: string;
|
45717
|
+
description: string;
|
45718
|
+
defaultMessage: string;
|
45719
|
+
} | undefined;
|
45720
|
+
} | undefined;
|
45721
|
+
} | undefined;
|
45722
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
44865
45723
|
maxLength?: number | undefined;
|
44866
45724
|
prefix?: {
|
44867
45725
|
id: string;
|
@@ -44873,8 +45731,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
44873
45731
|
description: string;
|
44874
45732
|
defaultMessage: string;
|
44875
45733
|
} | undefined;
|
44876
|
-
includeMiddlename?: boolean | undefined;
|
44877
|
-
searchMode?: boolean | undefined;
|
44878
45734
|
} | undefined;
|
44879
45735
|
} | {
|
44880
45736
|
type: "PHONE";
|
@@ -45371,7 +46227,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
45371
46227
|
postcodeOrZip?: string | undefined;
|
45372
46228
|
} | undefined;
|
45373
46229
|
configuration?: {
|
45374
|
-
|
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;
|
45375
46232
|
} | undefined;
|
45376
46233
|
} | {
|
45377
46234
|
type: "DATA";
|
@@ -46347,10 +47204,38 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
46347
47204
|
hideLabel?: boolean | undefined;
|
46348
47205
|
uncorrectable?: boolean | undefined;
|
46349
47206
|
defaultValue?: {
|
46350
|
-
firstname
|
46351
|
-
surname
|
47207
|
+
firstname?: string | undefined;
|
47208
|
+
surname?: string | undefined;
|
47209
|
+
middlename?: string | undefined;
|
46352
47210
|
} | undefined;
|
46353
47211
|
configuration?: {
|
47212
|
+
name?: {
|
47213
|
+
firstname?: {
|
47214
|
+
required: boolean;
|
47215
|
+
label?: {
|
47216
|
+
id: string;
|
47217
|
+
description: string;
|
47218
|
+
defaultMessage: string;
|
47219
|
+
} | undefined;
|
47220
|
+
} | undefined;
|
47221
|
+
surname?: {
|
47222
|
+
required: boolean;
|
47223
|
+
label?: {
|
47224
|
+
id: string;
|
47225
|
+
description: string;
|
47226
|
+
defaultMessage: string;
|
47227
|
+
} | undefined;
|
47228
|
+
} | undefined;
|
47229
|
+
middlename?: {
|
47230
|
+
required: boolean;
|
47231
|
+
label?: {
|
47232
|
+
id: string;
|
47233
|
+
description: string;
|
47234
|
+
defaultMessage: string;
|
47235
|
+
} | undefined;
|
47236
|
+
} | undefined;
|
47237
|
+
} | undefined;
|
47238
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
46354
47239
|
maxLength?: number | undefined;
|
46355
47240
|
prefix?: {
|
46356
47241
|
id: string;
|
@@ -46362,8 +47247,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
46362
47247
|
description: string;
|
46363
47248
|
defaultMessage: string;
|
46364
47249
|
} | undefined;
|
46365
|
-
includeMiddlename?: boolean | undefined;
|
46366
|
-
searchMode?: boolean | undefined;
|
46367
47250
|
} | undefined;
|
46368
47251
|
} | {
|
46369
47252
|
type: "PHONE";
|
@@ -46860,7 +47743,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
46860
47743
|
postcodeOrZip?: string | undefined;
|
46861
47744
|
} | undefined;
|
46862
47745
|
configuration?: {
|
46863
|
-
|
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;
|
46864
47748
|
} | undefined;
|
46865
47749
|
} | {
|
46866
47750
|
type: "DATA";
|
@@ -47836,10 +48720,38 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
47836
48720
|
hideLabel?: boolean | undefined;
|
47837
48721
|
uncorrectable?: boolean | undefined;
|
47838
48722
|
defaultValue?: {
|
47839
|
-
firstname
|
47840
|
-
surname
|
48723
|
+
firstname?: string | undefined;
|
48724
|
+
surname?: string | undefined;
|
48725
|
+
middlename?: string | undefined;
|
47841
48726
|
} | undefined;
|
47842
48727
|
configuration?: {
|
48728
|
+
name?: {
|
48729
|
+
firstname?: {
|
48730
|
+
required: boolean;
|
48731
|
+
label?: {
|
48732
|
+
id: string;
|
48733
|
+
description: string;
|
48734
|
+
defaultMessage: string;
|
48735
|
+
} | undefined;
|
48736
|
+
} | undefined;
|
48737
|
+
surname?: {
|
48738
|
+
required: boolean;
|
48739
|
+
label?: {
|
48740
|
+
id: string;
|
48741
|
+
description: string;
|
48742
|
+
defaultMessage: string;
|
48743
|
+
} | undefined;
|
48744
|
+
} | undefined;
|
48745
|
+
middlename?: {
|
48746
|
+
required: boolean;
|
48747
|
+
label?: {
|
48748
|
+
id: string;
|
48749
|
+
description: string;
|
48750
|
+
defaultMessage: string;
|
48751
|
+
} | undefined;
|
48752
|
+
} | undefined;
|
48753
|
+
} | undefined;
|
48754
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
47843
48755
|
maxLength?: number | undefined;
|
47844
48756
|
prefix?: {
|
47845
48757
|
id: string;
|
@@ -47851,8 +48763,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
47851
48763
|
description: string;
|
47852
48764
|
defaultMessage: string;
|
47853
48765
|
} | undefined;
|
47854
|
-
includeMiddlename?: boolean | undefined;
|
47855
|
-
searchMode?: boolean | undefined;
|
47856
48766
|
} | undefined;
|
47857
48767
|
} | {
|
47858
48768
|
type: "PHONE";
|
@@ -48349,7 +49259,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
48349
49259
|
postcodeOrZip?: string | undefined;
|
48350
49260
|
} | undefined;
|
48351
49261
|
configuration?: {
|
48352
|
-
|
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;
|
48353
49264
|
} | undefined;
|
48354
49265
|
} | {
|
48355
49266
|
type: "DATA";
|
@@ -49392,10 +50303,38 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
49392
50303
|
hideLabel?: boolean | undefined;
|
49393
50304
|
uncorrectable?: boolean | undefined;
|
49394
50305
|
defaultValue?: {
|
49395
|
-
firstname
|
49396
|
-
surname
|
50306
|
+
firstname?: string | undefined;
|
50307
|
+
surname?: string | undefined;
|
50308
|
+
middlename?: string | undefined;
|
49397
50309
|
} | undefined;
|
49398
50310
|
configuration?: {
|
50311
|
+
name?: {
|
50312
|
+
firstname?: {
|
50313
|
+
required: boolean;
|
50314
|
+
label?: {
|
50315
|
+
id: string;
|
50316
|
+
description: string;
|
50317
|
+
defaultMessage: string;
|
50318
|
+
} | undefined;
|
50319
|
+
} | undefined;
|
50320
|
+
surname?: {
|
50321
|
+
required: boolean;
|
50322
|
+
label?: {
|
50323
|
+
id: string;
|
50324
|
+
description: string;
|
50325
|
+
defaultMessage: string;
|
50326
|
+
} | undefined;
|
50327
|
+
} | undefined;
|
50328
|
+
middlename?: {
|
50329
|
+
required: boolean;
|
50330
|
+
label?: {
|
50331
|
+
id: string;
|
50332
|
+
description: string;
|
50333
|
+
defaultMessage: string;
|
50334
|
+
} | undefined;
|
50335
|
+
} | undefined;
|
50336
|
+
} | undefined;
|
50337
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
49399
50338
|
maxLength?: number | undefined;
|
49400
50339
|
prefix?: {
|
49401
50340
|
id: string;
|
@@ -49407,8 +50346,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
49407
50346
|
description: string;
|
49408
50347
|
defaultMessage: string;
|
49409
50348
|
} | undefined;
|
49410
|
-
includeMiddlename?: boolean | undefined;
|
49411
|
-
searchMode?: boolean | undefined;
|
49412
50349
|
} | undefined;
|
49413
50350
|
} | {
|
49414
50351
|
type: "PHONE";
|
@@ -49905,7 +50842,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
49905
50842
|
postcodeOrZip?: string | undefined;
|
49906
50843
|
} | undefined;
|
49907
50844
|
configuration?: {
|
49908
|
-
|
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;
|
49909
50847
|
} | undefined;
|
49910
50848
|
} | {
|
49911
50849
|
type: "DATA";
|
@@ -50897,10 +51835,38 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
50897
51835
|
hideLabel?: boolean | undefined;
|
50898
51836
|
uncorrectable?: boolean | undefined;
|
50899
51837
|
defaultValue?: {
|
50900
|
-
firstname
|
50901
|
-
surname
|
51838
|
+
firstname?: string | undefined;
|
51839
|
+
surname?: string | undefined;
|
51840
|
+
middlename?: string | undefined;
|
50902
51841
|
} | undefined;
|
50903
51842
|
configuration?: {
|
51843
|
+
name?: {
|
51844
|
+
firstname?: {
|
51845
|
+
required: boolean;
|
51846
|
+
label?: {
|
51847
|
+
id: string;
|
51848
|
+
description: string;
|
51849
|
+
defaultMessage: string;
|
51850
|
+
} | undefined;
|
51851
|
+
} | undefined;
|
51852
|
+
surname?: {
|
51853
|
+
required: boolean;
|
51854
|
+
label?: {
|
51855
|
+
id: string;
|
51856
|
+
description: string;
|
51857
|
+
defaultMessage: string;
|
51858
|
+
} | undefined;
|
51859
|
+
} | undefined;
|
51860
|
+
middlename?: {
|
51861
|
+
required: boolean;
|
51862
|
+
label?: {
|
51863
|
+
id: string;
|
51864
|
+
description: string;
|
51865
|
+
defaultMessage: string;
|
51866
|
+
} | undefined;
|
51867
|
+
} | undefined;
|
51868
|
+
} | undefined;
|
51869
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
50904
51870
|
maxLength?: number | undefined;
|
50905
51871
|
prefix?: {
|
50906
51872
|
id: string;
|
@@ -50912,8 +51878,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
50912
51878
|
description: string;
|
50913
51879
|
defaultMessage: string;
|
50914
51880
|
} | undefined;
|
50915
|
-
includeMiddlename?: boolean | undefined;
|
50916
|
-
searchMode?: boolean | undefined;
|
50917
51881
|
} | undefined;
|
50918
51882
|
} | {
|
50919
51883
|
type: "PHONE";
|
@@ -51410,7 +52374,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
51410
52374
|
postcodeOrZip?: string | undefined;
|
51411
52375
|
} | undefined;
|
51412
52376
|
configuration?: {
|
51413
|
-
|
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;
|
51414
52379
|
} | undefined;
|
51415
52380
|
} | {
|
51416
52381
|
type: "DATA";
|
@@ -52395,10 +53360,38 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
52395
53360
|
hideLabel?: boolean | undefined;
|
52396
53361
|
uncorrectable?: boolean | undefined;
|
52397
53362
|
defaultValue?: {
|
52398
|
-
firstname
|
52399
|
-
surname
|
53363
|
+
firstname?: string | undefined;
|
53364
|
+
surname?: string | undefined;
|
53365
|
+
middlename?: string | undefined;
|
52400
53366
|
} | undefined;
|
52401
53367
|
configuration?: {
|
53368
|
+
name?: {
|
53369
|
+
firstname?: {
|
53370
|
+
required: boolean;
|
53371
|
+
label?: {
|
53372
|
+
id: string;
|
53373
|
+
description: string;
|
53374
|
+
defaultMessage: string;
|
53375
|
+
} | undefined;
|
53376
|
+
} | undefined;
|
53377
|
+
surname?: {
|
53378
|
+
required: boolean;
|
53379
|
+
label?: {
|
53380
|
+
id: string;
|
53381
|
+
description: string;
|
53382
|
+
defaultMessage: string;
|
53383
|
+
} | undefined;
|
53384
|
+
} | undefined;
|
53385
|
+
middlename?: {
|
53386
|
+
required: boolean;
|
53387
|
+
label?: {
|
53388
|
+
id: string;
|
53389
|
+
description: string;
|
53390
|
+
defaultMessage: string;
|
53391
|
+
} | undefined;
|
53392
|
+
} | undefined;
|
53393
|
+
} | undefined;
|
53394
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
52402
53395
|
maxLength?: number | undefined;
|
52403
53396
|
prefix?: {
|
52404
53397
|
id: string;
|
@@ -52410,8 +53403,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
52410
53403
|
description: string;
|
52411
53404
|
defaultMessage: string;
|
52412
53405
|
} | undefined;
|
52413
|
-
includeMiddlename?: boolean | undefined;
|
52414
|
-
searchMode?: boolean | undefined;
|
52415
53406
|
} | undefined;
|
52416
53407
|
} | {
|
52417
53408
|
type: "PHONE";
|
@@ -52908,7 +53899,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
52908
53899
|
postcodeOrZip?: string | undefined;
|
52909
53900
|
} | undefined;
|
52910
53901
|
configuration?: {
|
52911
|
-
|
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;
|
52912
53904
|
} | undefined;
|
52913
53905
|
} | {
|
52914
53906
|
type: "DATA";
|
@@ -53900,10 +54892,38 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
53900
54892
|
hideLabel?: boolean | undefined;
|
53901
54893
|
uncorrectable?: boolean | undefined;
|
53902
54894
|
defaultValue?: {
|
53903
|
-
firstname
|
53904
|
-
surname
|
54895
|
+
firstname?: string | undefined;
|
54896
|
+
surname?: string | undefined;
|
54897
|
+
middlename?: string | undefined;
|
53905
54898
|
} | undefined;
|
53906
54899
|
configuration?: {
|
54900
|
+
name?: {
|
54901
|
+
firstname?: {
|
54902
|
+
required: boolean;
|
54903
|
+
label?: {
|
54904
|
+
id: string;
|
54905
|
+
description: string;
|
54906
|
+
defaultMessage: string;
|
54907
|
+
} | undefined;
|
54908
|
+
} | undefined;
|
54909
|
+
surname?: {
|
54910
|
+
required: boolean;
|
54911
|
+
label?: {
|
54912
|
+
id: string;
|
54913
|
+
description: string;
|
54914
|
+
defaultMessage: string;
|
54915
|
+
} | undefined;
|
54916
|
+
} | undefined;
|
54917
|
+
middlename?: {
|
54918
|
+
required: boolean;
|
54919
|
+
label?: {
|
54920
|
+
id: string;
|
54921
|
+
description: string;
|
54922
|
+
defaultMessage: string;
|
54923
|
+
} | undefined;
|
54924
|
+
} | undefined;
|
54925
|
+
} | undefined;
|
54926
|
+
order?: ("firstname" | "surname" | "middlename")[] | undefined;
|
53907
54927
|
maxLength?: number | undefined;
|
53908
54928
|
prefix?: {
|
53909
54929
|
id: string;
|
@@ -53915,8 +54935,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
53915
54935
|
description: string;
|
53916
54936
|
defaultMessage: string;
|
53917
54937
|
} | undefined;
|
53918
|
-
includeMiddlename?: boolean | undefined;
|
53919
|
-
searchMode?: boolean | undefined;
|
53920
54938
|
} | undefined;
|
53921
54939
|
} | {
|
53922
54940
|
type: "PHONE";
|
@@ -54413,7 +55431,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
54413
55431
|
postcodeOrZip?: string | undefined;
|
54414
55432
|
} | undefined;
|
54415
55433
|
configuration?: {
|
54416
|
-
|
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;
|
54417
55436
|
} | undefined;
|
54418
55437
|
} | {
|
54419
55438
|
type: "DATA";
|
@@ -54592,7 +55611,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
54592
55611
|
};
|
54593
55612
|
fields: ({
|
54594
55613
|
config: {
|
54595
|
-
type: "exact" | "fuzzy" | "range";
|
55614
|
+
type: "exact" | "fuzzy" | "range" | "within";
|
54596
55615
|
};
|
54597
55616
|
fieldId: string;
|
54598
55617
|
fieldType: "field";
|
@@ -54631,9 +55650,9 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
54631
55650
|
excludeInSearchQuery?: boolean | undefined;
|
54632
55651
|
} | {
|
54633
55652
|
config: {
|
54634
|
-
type: "exact" | "fuzzy" | "range";
|
55653
|
+
type: "exact" | "fuzzy" | "range" | "within";
|
54635
55654
|
};
|
54636
|
-
fieldId: "status" | "updatedAt" | "trackingId" | "legalStatuses.REGISTERED.acceptedAt" | "legalStatuses.REGISTERED.createdAtLocation";
|
55655
|
+
fieldId: "event.status" | "event.updatedAt" | "event.trackingId" | "event.legalStatuses.REGISTERED.acceptedAt" | "event.legalStatuses.REGISTERED.createdAtLocation";
|
54637
55656
|
fieldType: "event";
|
54638
55657
|
options?: {
|
54639
55658
|
value: string;
|