@opencrvs/toolkit 1.8.1-rc.6c27961 → 1.8.1-rc.6eacccb
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 +391 -390
- package/dist/commons/conditionals/validate.d.ts +11 -2
- package/dist/commons/events/ActionConfig.d.ts +2730 -532
- package/dist/commons/events/ActionDocument.d.ts +736 -736
- package/dist/commons/events/ActionInput.d.ts +600 -600
- package/dist/commons/events/AdvancedSearchConfig.d.ts +49 -31
- package/dist/commons/events/CompositeFieldValue.d.ts +6 -6
- package/dist/commons/events/CountryConfigQueryInput.d.ts +88 -88
- package/dist/commons/events/DeduplicationConfig.d.ts +21 -48
- package/dist/commons/events/Draft.d.ts +48 -48
- package/dist/commons/events/EventConfig.d.ts +1009 -195
- package/dist/commons/events/EventDocument.d.ts +432 -432
- package/dist/commons/events/EventIndex.d.ts +62 -62
- package/dist/commons/events/EventMetadata.d.ts +9 -9
- package/dist/commons/events/FieldConfig.d.ts +254 -43
- 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 +1032 -246
- package/dist/commons/events/PageConfig.d.ts +264 -46
- package/dist/commons/events/WorkqueueConfig.d.ts +199 -164
- package/dist/commons/events/defineConfig.d.ts +187 -33
- package/dist/commons/events/event.d.ts +61 -7
- package/dist/commons/events/test.utils.d.ts +12 -12
- package/dist/commons/events/utils.d.ts +294 -63
- package/dist/conditionals/index.js +3 -2
- package/dist/events/index.js +383 -257
- package/package.json +1 -1
@@ -2440,16 +2440,62 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
2440
2440
|
}, {
|
2441
2441
|
type: z.ZodLiteral<"NAME">;
|
2442
2442
|
defaultValue: z.ZodOptional<z.ZodObject<{
|
2443
|
-
firstname: z.ZodString
|
2444
|
-
|
2443
|
+
firstname: z.ZodOptional<z.ZodString>;
|
2444
|
+
middlename: z.ZodOptional<z.ZodString>;
|
2445
|
+
surname: z.ZodOptional<z.ZodString>;
|
2445
2446
|
}, "strip", z.ZodTypeAny, {
|
2446
|
-
firstname
|
2447
|
-
surname
|
2447
|
+
firstname?: string | undefined;
|
2448
|
+
surname?: string | undefined;
|
2449
|
+
middlename?: string | undefined;
|
2448
2450
|
}, {
|
2449
|
-
firstname
|
2450
|
-
surname
|
2451
|
+
firstname?: string | undefined;
|
2452
|
+
surname?: string | undefined;
|
2453
|
+
middlename?: string | undefined;
|
2451
2454
|
}>>;
|
2452
|
-
configuration: z.ZodOptional<z.ZodObject<{
|
2455
|
+
configuration: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
2456
|
+
name: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
2457
|
+
firstname: z.ZodOptional<z.ZodObject<{
|
2458
|
+
required: z.ZodBoolean;
|
2459
|
+
}, "strip", z.ZodTypeAny, {
|
2460
|
+
required: boolean;
|
2461
|
+
}, {
|
2462
|
+
required: boolean;
|
2463
|
+
}>>;
|
2464
|
+
middlename: z.ZodOptional<z.ZodObject<{
|
2465
|
+
required: z.ZodBoolean;
|
2466
|
+
}, "strip", z.ZodTypeAny, {
|
2467
|
+
required: boolean;
|
2468
|
+
}, {
|
2469
|
+
required: boolean;
|
2470
|
+
}>>;
|
2471
|
+
surname: z.ZodOptional<z.ZodObject<{
|
2472
|
+
required: z.ZodBoolean;
|
2473
|
+
}, "strip", z.ZodTypeAny, {
|
2474
|
+
required: boolean;
|
2475
|
+
}, {
|
2476
|
+
required: boolean;
|
2477
|
+
}>>;
|
2478
|
+
}, "strip", z.ZodTypeAny, {
|
2479
|
+
firstname?: {
|
2480
|
+
required: boolean;
|
2481
|
+
} | undefined;
|
2482
|
+
surname?: {
|
2483
|
+
required: boolean;
|
2484
|
+
} | undefined;
|
2485
|
+
middlename?: {
|
2486
|
+
required: boolean;
|
2487
|
+
} | undefined;
|
2488
|
+
}, {
|
2489
|
+
firstname?: {
|
2490
|
+
required: boolean;
|
2491
|
+
} | undefined;
|
2492
|
+
surname?: {
|
2493
|
+
required: boolean;
|
2494
|
+
} | undefined;
|
2495
|
+
middlename?: {
|
2496
|
+
required: boolean;
|
2497
|
+
} | undefined;
|
2498
|
+
}>>>;
|
2453
2499
|
maxLength: z.ZodOptional<z.ZodNumber>;
|
2454
2500
|
prefix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2455
2501
|
id: string;
|
@@ -2461,15 +2507,35 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
2461
2507
|
description: string;
|
2462
2508
|
defaultMessage: string;
|
2463
2509
|
}>>;
|
2464
|
-
includeMiddlename: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2465
2510
|
searchMode: z.ZodOptional<z.ZodBoolean>;
|
2466
2511
|
}, "strip", z.ZodTypeAny, {
|
2512
|
+
name?: {
|
2513
|
+
firstname?: {
|
2514
|
+
required: boolean;
|
2515
|
+
} | undefined;
|
2516
|
+
surname?: {
|
2517
|
+
required: boolean;
|
2518
|
+
} | undefined;
|
2519
|
+
middlename?: {
|
2520
|
+
required: boolean;
|
2521
|
+
} | undefined;
|
2522
|
+
} | undefined;
|
2467
2523
|
maxLength?: number | undefined;
|
2468
2524
|
prefix?: TranslationConfig | undefined;
|
2469
2525
|
postfix?: TranslationConfig | undefined;
|
2470
|
-
includeMiddlename?: boolean | undefined;
|
2471
2526
|
searchMode?: boolean | undefined;
|
2472
2527
|
}, {
|
2528
|
+
name?: {
|
2529
|
+
firstname?: {
|
2530
|
+
required: boolean;
|
2531
|
+
} | undefined;
|
2532
|
+
surname?: {
|
2533
|
+
required: boolean;
|
2534
|
+
} | undefined;
|
2535
|
+
middlename?: {
|
2536
|
+
required: boolean;
|
2537
|
+
} | undefined;
|
2538
|
+
} | undefined;
|
2473
2539
|
maxLength?: number | undefined;
|
2474
2540
|
prefix?: {
|
2475
2541
|
id: string;
|
@@ -2481,9 +2547,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
2481
2547
|
description: string;
|
2482
2548
|
defaultMessage: string;
|
2483
2549
|
} | undefined;
|
2484
|
-
includeMiddlename?: boolean | undefined;
|
2485
2550
|
searchMode?: boolean | undefined;
|
2486
|
-
}
|
2551
|
+
}>>>;
|
2487
2552
|
}>, "strip", z.ZodTypeAny, {
|
2488
2553
|
type: "NAME";
|
2489
2554
|
id: string;
|
@@ -2512,14 +2577,25 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
2512
2577
|
hideLabel?: boolean | undefined;
|
2513
2578
|
uncorrectable?: boolean | undefined;
|
2514
2579
|
defaultValue?: {
|
2515
|
-
firstname
|
2516
|
-
surname
|
2580
|
+
firstname?: string | undefined;
|
2581
|
+
surname?: string | undefined;
|
2582
|
+
middlename?: string | undefined;
|
2517
2583
|
} | undefined;
|
2518
2584
|
configuration?: {
|
2585
|
+
name?: {
|
2586
|
+
firstname?: {
|
2587
|
+
required: boolean;
|
2588
|
+
} | undefined;
|
2589
|
+
surname?: {
|
2590
|
+
required: boolean;
|
2591
|
+
} | undefined;
|
2592
|
+
middlename?: {
|
2593
|
+
required: boolean;
|
2594
|
+
} | undefined;
|
2595
|
+
} | undefined;
|
2519
2596
|
maxLength?: number | undefined;
|
2520
2597
|
prefix?: TranslationConfig | undefined;
|
2521
2598
|
postfix?: TranslationConfig | undefined;
|
2522
|
-
includeMiddlename?: boolean | undefined;
|
2523
2599
|
searchMode?: boolean | undefined;
|
2524
2600
|
} | undefined;
|
2525
2601
|
}, {
|
@@ -2566,10 +2642,22 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
2566
2642
|
hideLabel?: boolean | undefined;
|
2567
2643
|
uncorrectable?: boolean | undefined;
|
2568
2644
|
defaultValue?: {
|
2569
|
-
firstname
|
2570
|
-
surname
|
2645
|
+
firstname?: string | undefined;
|
2646
|
+
surname?: string | undefined;
|
2647
|
+
middlename?: string | undefined;
|
2571
2648
|
} | undefined;
|
2572
2649
|
configuration?: {
|
2650
|
+
name?: {
|
2651
|
+
firstname?: {
|
2652
|
+
required: boolean;
|
2653
|
+
} | undefined;
|
2654
|
+
surname?: {
|
2655
|
+
required: boolean;
|
2656
|
+
} | undefined;
|
2657
|
+
middlename?: {
|
2658
|
+
required: boolean;
|
2659
|
+
} | undefined;
|
2660
|
+
} | undefined;
|
2573
2661
|
maxLength?: number | undefined;
|
2574
2662
|
prefix?: {
|
2575
2663
|
id: string;
|
@@ -2581,7 +2669,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
2581
2669
|
description: string;
|
2582
2670
|
defaultMessage: string;
|
2583
2671
|
} | undefined;
|
2584
|
-
includeMiddlename?: boolean | undefined;
|
2585
2672
|
searchMode?: boolean | undefined;
|
2586
2673
|
} | undefined;
|
2587
2674
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
@@ -5180,14 +5267,25 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
5180
5267
|
hideLabel?: boolean | undefined;
|
5181
5268
|
uncorrectable?: boolean | undefined;
|
5182
5269
|
defaultValue?: {
|
5183
|
-
firstname
|
5184
|
-
surname
|
5270
|
+
firstname?: string | undefined;
|
5271
|
+
surname?: string | undefined;
|
5272
|
+
middlename?: string | undefined;
|
5185
5273
|
} | undefined;
|
5186
5274
|
configuration?: {
|
5275
|
+
name?: {
|
5276
|
+
firstname?: {
|
5277
|
+
required: boolean;
|
5278
|
+
} | undefined;
|
5279
|
+
surname?: {
|
5280
|
+
required: boolean;
|
5281
|
+
} | undefined;
|
5282
|
+
middlename?: {
|
5283
|
+
required: boolean;
|
5284
|
+
} | undefined;
|
5285
|
+
} | undefined;
|
5187
5286
|
maxLength?: number | undefined;
|
5188
5287
|
prefix?: TranslationConfig | undefined;
|
5189
5288
|
postfix?: TranslationConfig | undefined;
|
5190
|
-
includeMiddlename?: boolean | undefined;
|
5191
5289
|
searchMode?: boolean | undefined;
|
5192
5290
|
} | undefined;
|
5193
5291
|
} | {
|
@@ -6455,10 +6553,22 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
6455
6553
|
hideLabel?: boolean | undefined;
|
6456
6554
|
uncorrectable?: boolean | undefined;
|
6457
6555
|
defaultValue?: {
|
6458
|
-
firstname
|
6459
|
-
surname
|
6556
|
+
firstname?: string | undefined;
|
6557
|
+
surname?: string | undefined;
|
6558
|
+
middlename?: string | undefined;
|
6460
6559
|
} | undefined;
|
6461
6560
|
configuration?: {
|
6561
|
+
name?: {
|
6562
|
+
firstname?: {
|
6563
|
+
required: boolean;
|
6564
|
+
} | undefined;
|
6565
|
+
surname?: {
|
6566
|
+
required: boolean;
|
6567
|
+
} | undefined;
|
6568
|
+
middlename?: {
|
6569
|
+
required: boolean;
|
6570
|
+
} | undefined;
|
6571
|
+
} | undefined;
|
6462
6572
|
maxLength?: number | undefined;
|
6463
6573
|
prefix?: {
|
6464
6574
|
id: string;
|
@@ -6470,7 +6580,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
6470
6580
|
description: string;
|
6471
6581
|
defaultMessage: string;
|
6472
6582
|
} | undefined;
|
6473
|
-
includeMiddlename?: boolean | undefined;
|
6474
6583
|
searchMode?: boolean | undefined;
|
6475
6584
|
} | undefined;
|
6476
6585
|
} | {
|
@@ -7599,14 +7708,25 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
7599
7708
|
hideLabel?: boolean | undefined;
|
7600
7709
|
uncorrectable?: boolean | undefined;
|
7601
7710
|
defaultValue?: {
|
7602
|
-
firstname
|
7603
|
-
surname
|
7711
|
+
firstname?: string | undefined;
|
7712
|
+
surname?: string | undefined;
|
7713
|
+
middlename?: string | undefined;
|
7604
7714
|
} | undefined;
|
7605
7715
|
configuration?: {
|
7716
|
+
name?: {
|
7717
|
+
firstname?: {
|
7718
|
+
required: boolean;
|
7719
|
+
} | undefined;
|
7720
|
+
surname?: {
|
7721
|
+
required: boolean;
|
7722
|
+
} | undefined;
|
7723
|
+
middlename?: {
|
7724
|
+
required: boolean;
|
7725
|
+
} | undefined;
|
7726
|
+
} | undefined;
|
7606
7727
|
maxLength?: number | undefined;
|
7607
7728
|
prefix?: TranslationConfig | undefined;
|
7608
7729
|
postfix?: TranslationConfig | undefined;
|
7609
|
-
includeMiddlename?: boolean | undefined;
|
7610
7730
|
searchMode?: boolean | undefined;
|
7611
7731
|
} | undefined;
|
7612
7732
|
} | {
|
@@ -8881,10 +9001,22 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
8881
9001
|
hideLabel?: boolean | undefined;
|
8882
9002
|
uncorrectable?: boolean | undefined;
|
8883
9003
|
defaultValue?: {
|
8884
|
-
firstname
|
8885
|
-
surname
|
9004
|
+
firstname?: string | undefined;
|
9005
|
+
surname?: string | undefined;
|
9006
|
+
middlename?: string | undefined;
|
8886
9007
|
} | undefined;
|
8887
9008
|
configuration?: {
|
9009
|
+
name?: {
|
9010
|
+
firstname?: {
|
9011
|
+
required: boolean;
|
9012
|
+
} | undefined;
|
9013
|
+
surname?: {
|
9014
|
+
required: boolean;
|
9015
|
+
} | undefined;
|
9016
|
+
middlename?: {
|
9017
|
+
required: boolean;
|
9018
|
+
} | undefined;
|
9019
|
+
} | undefined;
|
8888
9020
|
maxLength?: number | undefined;
|
8889
9021
|
prefix?: {
|
8890
9022
|
id: string;
|
@@ -8896,7 +9028,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
8896
9028
|
description: string;
|
8897
9029
|
defaultMessage: string;
|
8898
9030
|
} | undefined;
|
8899
|
-
includeMiddlename?: boolean | undefined;
|
8900
9031
|
searchMode?: boolean | undefined;
|
8901
9032
|
} | undefined;
|
8902
9033
|
} | {
|
@@ -9465,27 +9596,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
9465
9596
|
conditional?: import(".").JSONSchema | undefined;
|
9466
9597
|
}[];
|
9467
9598
|
}>;
|
9468
|
-
deduplication: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
9469
|
-
id: z.ZodString;
|
9470
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
9471
|
-
id: string;
|
9472
|
-
description: string;
|
9473
|
-
defaultMessage: string;
|
9474
|
-
}>;
|
9475
|
-
query: z.ZodType<import("./DeduplicationConfig").ClauseOutput, z.ZodTypeDef, import("./DeduplicationConfig").ClauseInput>;
|
9476
|
-
}, "strip", z.ZodTypeAny, {
|
9477
|
-
id: string;
|
9478
|
-
label: TranslationConfig;
|
9479
|
-
query: import("./DeduplicationConfig").ClauseOutput;
|
9480
|
-
}, {
|
9481
|
-
id: string;
|
9482
|
-
label: {
|
9483
|
-
id: string;
|
9484
|
-
description: string;
|
9485
|
-
defaultMessage: string;
|
9486
|
-
};
|
9487
|
-
query: import("./DeduplicationConfig").ClauseInput;
|
9488
|
-
}>, "many">>>;
|
9489
9599
|
advancedSearch: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
9490
9600
|
title: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
9491
9601
|
id: string;
|
@@ -9664,13 +9774,13 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
9664
9774
|
validator: import(".").JSONSchema;
|
9665
9775
|
}>, "many">>>;
|
9666
9776
|
}, {
|
9667
|
-
fieldId: z.ZodEnum<["trackingId", "status", "legalStatuses.REGISTERED.acceptedAt", "legalStatuses.REGISTERED.createdAtLocation", "updatedAt"]>;
|
9777
|
+
fieldId: z.ZodEnum<["event.trackingId", "event.status", "event.legalStatuses.REGISTERED.acceptedAt", "event.legalStatuses.REGISTERED.createdAtLocation", "event.updatedAt"]>;
|
9668
9778
|
fieldType: z.ZodLiteral<"event">;
|
9669
9779
|
}>, "strip", z.ZodTypeAny, {
|
9670
9780
|
config: {
|
9671
9781
|
type: "exact" | "fuzzy" | "range" | "within";
|
9672
9782
|
};
|
9673
|
-
fieldId: "status" | "updatedAt" | "trackingId" | "legalStatuses.REGISTERED.acceptedAt" | "legalStatuses.REGISTERED.createdAtLocation";
|
9783
|
+
fieldId: "event.status" | "event.updatedAt" | "event.trackingId" | "event.legalStatuses.REGISTERED.acceptedAt" | "event.legalStatuses.REGISTERED.createdAtLocation";
|
9674
9784
|
fieldType: "event";
|
9675
9785
|
options?: {
|
9676
9786
|
value: string;
|
@@ -9695,7 +9805,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
9695
9805
|
config: {
|
9696
9806
|
type: "exact" | "fuzzy" | "range" | "within";
|
9697
9807
|
};
|
9698
|
-
fieldId: "status" | "updatedAt" | "trackingId" | "legalStatuses.REGISTERED.acceptedAt" | "legalStatuses.REGISTERED.createdAtLocation";
|
9808
|
+
fieldId: "event.status" | "event.updatedAt" | "event.trackingId" | "event.legalStatuses.REGISTERED.acceptedAt" | "event.legalStatuses.REGISTERED.createdAtLocation";
|
9699
9809
|
fieldType: "event";
|
9700
9810
|
options?: {
|
9701
9811
|
value: string;
|
@@ -9762,7 +9872,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
9762
9872
|
config: {
|
9763
9873
|
type: "exact" | "fuzzy" | "range" | "within";
|
9764
9874
|
};
|
9765
|
-
fieldId: "status" | "updatedAt" | "trackingId" | "legalStatuses.REGISTERED.acceptedAt" | "legalStatuses.REGISTERED.createdAtLocation";
|
9875
|
+
fieldId: "event.status" | "event.updatedAt" | "event.trackingId" | "event.legalStatuses.REGISTERED.acceptedAt" | "event.legalStatuses.REGISTERED.createdAtLocation";
|
9766
9876
|
fieldType: "event";
|
9767
9877
|
options?: {
|
9768
9878
|
value: string;
|
@@ -9833,7 +9943,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
9833
9943
|
config: {
|
9834
9944
|
type: "exact" | "fuzzy" | "range" | "within";
|
9835
9945
|
};
|
9836
|
-
fieldId: "status" | "updatedAt" | "trackingId" | "legalStatuses.REGISTERED.acceptedAt" | "legalStatuses.REGISTERED.createdAtLocation";
|
9946
|
+
fieldId: "event.status" | "event.updatedAt" | "event.trackingId" | "event.legalStatuses.REGISTERED.acceptedAt" | "event.legalStatuses.REGISTERED.createdAtLocation";
|
9837
9947
|
fieldType: "event";
|
9838
9948
|
options?: {
|
9839
9949
|
value: string;
|
@@ -10432,14 +10542,25 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
10432
10542
|
hideLabel?: boolean | undefined;
|
10433
10543
|
uncorrectable?: boolean | undefined;
|
10434
10544
|
defaultValue?: {
|
10435
|
-
firstname
|
10436
|
-
surname
|
10545
|
+
firstname?: string | undefined;
|
10546
|
+
surname?: string | undefined;
|
10547
|
+
middlename?: string | undefined;
|
10437
10548
|
} | undefined;
|
10438
10549
|
configuration?: {
|
10550
|
+
name?: {
|
10551
|
+
firstname?: {
|
10552
|
+
required: boolean;
|
10553
|
+
} | undefined;
|
10554
|
+
surname?: {
|
10555
|
+
required: boolean;
|
10556
|
+
} | undefined;
|
10557
|
+
middlename?: {
|
10558
|
+
required: boolean;
|
10559
|
+
} | undefined;
|
10560
|
+
} | undefined;
|
10439
10561
|
maxLength?: number | undefined;
|
10440
10562
|
prefix?: TranslationConfig | undefined;
|
10441
10563
|
postfix?: TranslationConfig | undefined;
|
10442
|
-
includeMiddlename?: boolean | undefined;
|
10443
10564
|
searchMode?: boolean | undefined;
|
10444
10565
|
} | undefined;
|
10445
10566
|
} | {
|
@@ -11382,14 +11503,25 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
11382
11503
|
hideLabel?: boolean | undefined;
|
11383
11504
|
uncorrectable?: boolean | undefined;
|
11384
11505
|
defaultValue?: {
|
11385
|
-
firstname
|
11386
|
-
surname
|
11506
|
+
firstname?: string | undefined;
|
11507
|
+
surname?: string | undefined;
|
11508
|
+
middlename?: string | undefined;
|
11387
11509
|
} | undefined;
|
11388
11510
|
configuration?: {
|
11511
|
+
name?: {
|
11512
|
+
firstname?: {
|
11513
|
+
required: boolean;
|
11514
|
+
} | undefined;
|
11515
|
+
surname?: {
|
11516
|
+
required: boolean;
|
11517
|
+
} | undefined;
|
11518
|
+
middlename?: {
|
11519
|
+
required: boolean;
|
11520
|
+
} | undefined;
|
11521
|
+
} | undefined;
|
11389
11522
|
maxLength?: number | undefined;
|
11390
11523
|
prefix?: TranslationConfig | undefined;
|
11391
11524
|
postfix?: TranslationConfig | undefined;
|
11392
|
-
includeMiddlename?: boolean | undefined;
|
11393
11525
|
searchMode?: boolean | undefined;
|
11394
11526
|
} | undefined;
|
11395
11527
|
} | {
|
@@ -11764,6 +11896,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
11764
11896
|
})[];
|
11765
11897
|
};
|
11766
11898
|
draft?: boolean | undefined;
|
11899
|
+
deduplication?: {
|
11900
|
+
id: string;
|
11901
|
+
label: TranslationConfig;
|
11902
|
+
query: import("./DeduplicationConfig").ClauseOutput;
|
11903
|
+
} | undefined;
|
11767
11904
|
} | {
|
11768
11905
|
type: "DECLARE";
|
11769
11906
|
label: TranslationConfig;
|
@@ -12331,14 +12468,25 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
12331
12468
|
hideLabel?: boolean | undefined;
|
12332
12469
|
uncorrectable?: boolean | undefined;
|
12333
12470
|
defaultValue?: {
|
12334
|
-
firstname
|
12335
|
-
surname
|
12471
|
+
firstname?: string | undefined;
|
12472
|
+
surname?: string | undefined;
|
12473
|
+
middlename?: string | undefined;
|
12336
12474
|
} | undefined;
|
12337
12475
|
configuration?: {
|
12476
|
+
name?: {
|
12477
|
+
firstname?: {
|
12478
|
+
required: boolean;
|
12479
|
+
} | undefined;
|
12480
|
+
surname?: {
|
12481
|
+
required: boolean;
|
12482
|
+
} | undefined;
|
12483
|
+
middlename?: {
|
12484
|
+
required: boolean;
|
12485
|
+
} | undefined;
|
12486
|
+
} | undefined;
|
12338
12487
|
maxLength?: number | undefined;
|
12339
12488
|
prefix?: TranslationConfig | undefined;
|
12340
12489
|
postfix?: TranslationConfig | undefined;
|
12341
|
-
includeMiddlename?: boolean | undefined;
|
12342
12490
|
searchMode?: boolean | undefined;
|
12343
12491
|
} | undefined;
|
12344
12492
|
} | {
|
@@ -12713,6 +12861,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
12713
12861
|
})[];
|
12714
12862
|
};
|
12715
12863
|
draft?: boolean | undefined;
|
12864
|
+
deduplication?: {
|
12865
|
+
id: string;
|
12866
|
+
label: TranslationConfig;
|
12867
|
+
query: import("./DeduplicationConfig").ClauseOutput;
|
12868
|
+
} | undefined;
|
12716
12869
|
} | {
|
12717
12870
|
type: "VALIDATE";
|
12718
12871
|
label: TranslationConfig;
|
@@ -13280,14 +13433,25 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
13280
13433
|
hideLabel?: boolean | undefined;
|
13281
13434
|
uncorrectable?: boolean | undefined;
|
13282
13435
|
defaultValue?: {
|
13283
|
-
firstname
|
13284
|
-
surname
|
13436
|
+
firstname?: string | undefined;
|
13437
|
+
surname?: string | undefined;
|
13438
|
+
middlename?: string | undefined;
|
13285
13439
|
} | undefined;
|
13286
13440
|
configuration?: {
|
13441
|
+
name?: {
|
13442
|
+
firstname?: {
|
13443
|
+
required: boolean;
|
13444
|
+
} | undefined;
|
13445
|
+
surname?: {
|
13446
|
+
required: boolean;
|
13447
|
+
} | undefined;
|
13448
|
+
middlename?: {
|
13449
|
+
required: boolean;
|
13450
|
+
} | undefined;
|
13451
|
+
} | undefined;
|
13287
13452
|
maxLength?: number | undefined;
|
13288
13453
|
prefix?: TranslationConfig | undefined;
|
13289
13454
|
postfix?: TranslationConfig | undefined;
|
13290
|
-
includeMiddlename?: boolean | undefined;
|
13291
13455
|
searchMode?: boolean | undefined;
|
13292
13456
|
} | undefined;
|
13293
13457
|
} | {
|
@@ -13662,6 +13826,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
13662
13826
|
})[];
|
13663
13827
|
};
|
13664
13828
|
draft?: boolean | undefined;
|
13829
|
+
deduplication?: {
|
13830
|
+
id: string;
|
13831
|
+
label: TranslationConfig;
|
13832
|
+
query: import("./DeduplicationConfig").ClauseOutput;
|
13833
|
+
} | undefined;
|
13665
13834
|
} | {
|
13666
13835
|
type: "REGISTER";
|
13667
13836
|
label: TranslationConfig;
|
@@ -14229,14 +14398,25 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
14229
14398
|
hideLabel?: boolean | undefined;
|
14230
14399
|
uncorrectable?: boolean | undefined;
|
14231
14400
|
defaultValue?: {
|
14232
|
-
firstname
|
14233
|
-
surname
|
14401
|
+
firstname?: string | undefined;
|
14402
|
+
surname?: string | undefined;
|
14403
|
+
middlename?: string | undefined;
|
14234
14404
|
} | undefined;
|
14235
14405
|
configuration?: {
|
14406
|
+
name?: {
|
14407
|
+
firstname?: {
|
14408
|
+
required: boolean;
|
14409
|
+
} | undefined;
|
14410
|
+
surname?: {
|
14411
|
+
required: boolean;
|
14412
|
+
} | undefined;
|
14413
|
+
middlename?: {
|
14414
|
+
required: boolean;
|
14415
|
+
} | undefined;
|
14416
|
+
} | undefined;
|
14236
14417
|
maxLength?: number | undefined;
|
14237
14418
|
prefix?: TranslationConfig | undefined;
|
14238
14419
|
postfix?: TranslationConfig | undefined;
|
14239
|
-
includeMiddlename?: boolean | undefined;
|
14240
14420
|
searchMode?: boolean | undefined;
|
14241
14421
|
} | undefined;
|
14242
14422
|
} | {
|
@@ -14611,6 +14791,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
14611
14791
|
})[];
|
14612
14792
|
};
|
14613
14793
|
draft?: boolean | undefined;
|
14794
|
+
deduplication?: {
|
14795
|
+
id: string;
|
14796
|
+
label: TranslationConfig;
|
14797
|
+
query: import("./DeduplicationConfig").ClauseOutput;
|
14798
|
+
} | undefined;
|
14614
14799
|
} | {
|
14615
14800
|
type: "REJECT";
|
14616
14801
|
label: TranslationConfig;
|
@@ -14622,6 +14807,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
14622
14807
|
conditional: import(".").JSONSchema;
|
14623
14808
|
})[];
|
14624
14809
|
draft?: boolean | undefined;
|
14810
|
+
deduplication?: {
|
14811
|
+
id: string;
|
14812
|
+
label: TranslationConfig;
|
14813
|
+
query: import("./DeduplicationConfig").ClauseOutput;
|
14814
|
+
} | undefined;
|
14625
14815
|
} | {
|
14626
14816
|
type: "MARKED_AS_DUPLICATE";
|
14627
14817
|
label: TranslationConfig;
|
@@ -14633,6 +14823,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
14633
14823
|
conditional: import(".").JSONSchema;
|
14634
14824
|
})[];
|
14635
14825
|
draft?: boolean | undefined;
|
14826
|
+
deduplication?: {
|
14827
|
+
id: string;
|
14828
|
+
label: TranslationConfig;
|
14829
|
+
query: import("./DeduplicationConfig").ClauseOutput;
|
14830
|
+
} | undefined;
|
14636
14831
|
} | {
|
14637
14832
|
type: "ARCHIVE";
|
14638
14833
|
label: TranslationConfig;
|
@@ -14644,6 +14839,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
14644
14839
|
conditional: import(".").JSONSchema;
|
14645
14840
|
})[];
|
14646
14841
|
draft?: boolean | undefined;
|
14842
|
+
deduplication?: {
|
14843
|
+
id: string;
|
14844
|
+
label: TranslationConfig;
|
14845
|
+
query: import("./DeduplicationConfig").ClauseOutput;
|
14846
|
+
} | undefined;
|
14647
14847
|
} | {
|
14648
14848
|
type: "DELETE";
|
14649
14849
|
label: TranslationConfig;
|
@@ -14655,6 +14855,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
14655
14855
|
conditional: import(".").JSONSchema;
|
14656
14856
|
})[];
|
14657
14857
|
draft?: boolean | undefined;
|
14858
|
+
deduplication?: {
|
14859
|
+
id: string;
|
14860
|
+
label: TranslationConfig;
|
14861
|
+
query: import("./DeduplicationConfig").ClauseOutput;
|
14862
|
+
} | undefined;
|
14658
14863
|
} | {
|
14659
14864
|
type: "PRINT_CERTIFICATE";
|
14660
14865
|
label: TranslationConfig;
|
@@ -15226,14 +15431,25 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
15226
15431
|
hideLabel?: boolean | undefined;
|
15227
15432
|
uncorrectable?: boolean | undefined;
|
15228
15433
|
defaultValue?: {
|
15229
|
-
firstname
|
15230
|
-
surname
|
15434
|
+
firstname?: string | undefined;
|
15435
|
+
surname?: string | undefined;
|
15436
|
+
middlename?: string | undefined;
|
15231
15437
|
} | undefined;
|
15232
15438
|
configuration?: {
|
15439
|
+
name?: {
|
15440
|
+
firstname?: {
|
15441
|
+
required: boolean;
|
15442
|
+
} | undefined;
|
15443
|
+
surname?: {
|
15444
|
+
required: boolean;
|
15445
|
+
} | undefined;
|
15446
|
+
middlename?: {
|
15447
|
+
required: boolean;
|
15448
|
+
} | undefined;
|
15449
|
+
} | undefined;
|
15233
15450
|
maxLength?: number | undefined;
|
15234
15451
|
prefix?: TranslationConfig | undefined;
|
15235
15452
|
postfix?: TranslationConfig | undefined;
|
15236
|
-
includeMiddlename?: boolean | undefined;
|
15237
15453
|
searchMode?: boolean | undefined;
|
15238
15454
|
} | undefined;
|
15239
15455
|
} | {
|
@@ -16178,14 +16394,25 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
16178
16394
|
hideLabel?: boolean | undefined;
|
16179
16395
|
uncorrectable?: boolean | undefined;
|
16180
16396
|
defaultValue?: {
|
16181
|
-
firstname
|
16182
|
-
surname
|
16397
|
+
firstname?: string | undefined;
|
16398
|
+
surname?: string | undefined;
|
16399
|
+
middlename?: string | undefined;
|
16183
16400
|
} | undefined;
|
16184
16401
|
configuration?: {
|
16402
|
+
name?: {
|
16403
|
+
firstname?: {
|
16404
|
+
required: boolean;
|
16405
|
+
} | undefined;
|
16406
|
+
surname?: {
|
16407
|
+
required: boolean;
|
16408
|
+
} | undefined;
|
16409
|
+
middlename?: {
|
16410
|
+
required: boolean;
|
16411
|
+
} | undefined;
|
16412
|
+
} | undefined;
|
16185
16413
|
maxLength?: number | undefined;
|
16186
16414
|
prefix?: TranslationConfig | undefined;
|
16187
16415
|
postfix?: TranslationConfig | undefined;
|
16188
|
-
includeMiddlename?: boolean | undefined;
|
16189
16416
|
searchMode?: boolean | undefined;
|
16190
16417
|
} | undefined;
|
16191
16418
|
} | {
|
@@ -16562,6 +16789,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
16562
16789
|
})[];
|
16563
16790
|
};
|
16564
16791
|
draft?: boolean | undefined;
|
16792
|
+
deduplication?: {
|
16793
|
+
id: string;
|
16794
|
+
label: TranslationConfig;
|
16795
|
+
query: import("./DeduplicationConfig").ClauseOutput;
|
16796
|
+
} | undefined;
|
16565
16797
|
} | {
|
16566
16798
|
type: "REQUEST_CORRECTION";
|
16567
16799
|
label: TranslationConfig;
|
@@ -17133,14 +17365,25 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
17133
17365
|
hideLabel?: boolean | undefined;
|
17134
17366
|
uncorrectable?: boolean | undefined;
|
17135
17367
|
defaultValue?: {
|
17136
|
-
firstname
|
17137
|
-
surname
|
17368
|
+
firstname?: string | undefined;
|
17369
|
+
surname?: string | undefined;
|
17370
|
+
middlename?: string | undefined;
|
17138
17371
|
} | undefined;
|
17139
17372
|
configuration?: {
|
17373
|
+
name?: {
|
17374
|
+
firstname?: {
|
17375
|
+
required: boolean;
|
17376
|
+
} | undefined;
|
17377
|
+
surname?: {
|
17378
|
+
required: boolean;
|
17379
|
+
} | undefined;
|
17380
|
+
middlename?: {
|
17381
|
+
required: boolean;
|
17382
|
+
} | undefined;
|
17383
|
+
} | undefined;
|
17140
17384
|
maxLength?: number | undefined;
|
17141
17385
|
prefix?: TranslationConfig | undefined;
|
17142
17386
|
postfix?: TranslationConfig | undefined;
|
17143
|
-
includeMiddlename?: boolean | undefined;
|
17144
17387
|
searchMode?: boolean | undefined;
|
17145
17388
|
} | undefined;
|
17146
17389
|
} | {
|
@@ -18085,14 +18328,25 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
18085
18328
|
hideLabel?: boolean | undefined;
|
18086
18329
|
uncorrectable?: boolean | undefined;
|
18087
18330
|
defaultValue?: {
|
18088
|
-
firstname
|
18089
|
-
surname
|
18331
|
+
firstname?: string | undefined;
|
18332
|
+
surname?: string | undefined;
|
18333
|
+
middlename?: string | undefined;
|
18090
18334
|
} | undefined;
|
18091
18335
|
configuration?: {
|
18336
|
+
name?: {
|
18337
|
+
firstname?: {
|
18338
|
+
required: boolean;
|
18339
|
+
} | undefined;
|
18340
|
+
surname?: {
|
18341
|
+
required: boolean;
|
18342
|
+
} | undefined;
|
18343
|
+
middlename?: {
|
18344
|
+
required: boolean;
|
18345
|
+
} | undefined;
|
18346
|
+
} | undefined;
|
18092
18347
|
maxLength?: number | undefined;
|
18093
18348
|
prefix?: TranslationConfig | undefined;
|
18094
18349
|
postfix?: TranslationConfig | undefined;
|
18095
|
-
includeMiddlename?: boolean | undefined;
|
18096
18350
|
searchMode?: boolean | undefined;
|
18097
18351
|
} | undefined;
|
18098
18352
|
} | {
|
@@ -18469,6 +18723,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
18469
18723
|
})[];
|
18470
18724
|
};
|
18471
18725
|
draft?: boolean | undefined;
|
18726
|
+
deduplication?: {
|
18727
|
+
id: string;
|
18728
|
+
label: TranslationConfig;
|
18729
|
+
query: import("./DeduplicationConfig").ClauseOutput;
|
18730
|
+
} | undefined;
|
18472
18731
|
} | {
|
18473
18732
|
type: "REJECT_CORRECTION";
|
18474
18733
|
label: TranslationConfig;
|
@@ -18480,6 +18739,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
18480
18739
|
conditional: import(".").JSONSchema;
|
18481
18740
|
})[];
|
18482
18741
|
draft?: boolean | undefined;
|
18742
|
+
deduplication?: {
|
18743
|
+
id: string;
|
18744
|
+
label: TranslationConfig;
|
18745
|
+
query: import("./DeduplicationConfig").ClauseOutput;
|
18746
|
+
} | undefined;
|
18483
18747
|
} | {
|
18484
18748
|
type: "APPROVE_CORRECTION";
|
18485
18749
|
label: TranslationConfig;
|
@@ -18491,6 +18755,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
18491
18755
|
conditional: import(".").JSONSchema;
|
18492
18756
|
})[];
|
18493
18757
|
draft?: boolean | undefined;
|
18758
|
+
deduplication?: {
|
18759
|
+
id: string;
|
18760
|
+
label: TranslationConfig;
|
18761
|
+
query: import("./DeduplicationConfig").ClauseOutput;
|
18762
|
+
} | undefined;
|
18494
18763
|
})[];
|
18495
18764
|
label: TranslationConfig;
|
18496
18765
|
summary: {
|
@@ -18513,11 +18782,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
18513
18782
|
emptyValueMessage?: TranslationConfig | undefined;
|
18514
18783
|
})[];
|
18515
18784
|
};
|
18516
|
-
deduplication: {
|
18517
|
-
id: string;
|
18518
|
-
label: TranslationConfig;
|
18519
|
-
query: import("./DeduplicationConfig").ClauseOutput;
|
18520
|
-
}[];
|
18521
18785
|
advancedSearch: {
|
18522
18786
|
title: TranslationConfig;
|
18523
18787
|
fields: ({
|
@@ -18551,7 +18815,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
18551
18815
|
config: {
|
18552
18816
|
type: "exact" | "fuzzy" | "range" | "within";
|
18553
18817
|
};
|
18554
|
-
fieldId: "status" | "updatedAt" | "trackingId" | "legalStatuses.REGISTERED.acceptedAt" | "legalStatuses.REGISTERED.createdAtLocation";
|
18818
|
+
fieldId: "event.status" | "event.updatedAt" | "event.trackingId" | "event.legalStatuses.REGISTERED.acceptedAt" | "event.legalStatuses.REGISTERED.createdAtLocation";
|
18555
18819
|
fieldType: "event";
|
18556
18820
|
options?: {
|
18557
18821
|
value: string;
|
@@ -19485,10 +19749,22 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
19485
19749
|
hideLabel?: boolean | undefined;
|
19486
19750
|
uncorrectable?: boolean | undefined;
|
19487
19751
|
defaultValue?: {
|
19488
|
-
firstname
|
19489
|
-
surname
|
19752
|
+
firstname?: string | undefined;
|
19753
|
+
surname?: string | undefined;
|
19754
|
+
middlename?: string | undefined;
|
19490
19755
|
} | undefined;
|
19491
19756
|
configuration?: {
|
19757
|
+
name?: {
|
19758
|
+
firstname?: {
|
19759
|
+
required: boolean;
|
19760
|
+
} | undefined;
|
19761
|
+
surname?: {
|
19762
|
+
required: boolean;
|
19763
|
+
} | undefined;
|
19764
|
+
middlename?: {
|
19765
|
+
required: boolean;
|
19766
|
+
} | undefined;
|
19767
|
+
} | undefined;
|
19492
19768
|
maxLength?: number | undefined;
|
19493
19769
|
prefix?: {
|
19494
19770
|
id: string;
|
@@ -19500,7 +19776,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
19500
19776
|
description: string;
|
19501
19777
|
defaultMessage: string;
|
19502
19778
|
} | undefined;
|
19503
|
-
includeMiddlename?: boolean | undefined;
|
19504
19779
|
searchMode?: boolean | undefined;
|
19505
19780
|
} | undefined;
|
19506
19781
|
} | {
|
@@ -20969,10 +21244,22 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
20969
21244
|
hideLabel?: boolean | undefined;
|
20970
21245
|
uncorrectable?: boolean | undefined;
|
20971
21246
|
defaultValue?: {
|
20972
|
-
firstname
|
20973
|
-
surname
|
21247
|
+
firstname?: string | undefined;
|
21248
|
+
surname?: string | undefined;
|
21249
|
+
middlename?: string | undefined;
|
20974
21250
|
} | undefined;
|
20975
21251
|
configuration?: {
|
21252
|
+
name?: {
|
21253
|
+
firstname?: {
|
21254
|
+
required: boolean;
|
21255
|
+
} | undefined;
|
21256
|
+
surname?: {
|
21257
|
+
required: boolean;
|
21258
|
+
} | undefined;
|
21259
|
+
middlename?: {
|
21260
|
+
required: boolean;
|
21261
|
+
} | undefined;
|
21262
|
+
} | undefined;
|
20976
21263
|
maxLength?: number | undefined;
|
20977
21264
|
prefix?: {
|
20978
21265
|
id: string;
|
@@ -20984,7 +21271,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
20984
21271
|
description: string;
|
20985
21272
|
defaultMessage: string;
|
20986
21273
|
} | undefined;
|
20987
|
-
includeMiddlename?: boolean | undefined;
|
20988
21274
|
searchMode?: boolean | undefined;
|
20989
21275
|
} | undefined;
|
20990
21276
|
} | {
|
@@ -21558,6 +21844,15 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
21558
21844
|
type: "ENABLE";
|
21559
21845
|
conditional: import(".").JSONSchema;
|
21560
21846
|
})[] | undefined;
|
21847
|
+
deduplication?: {
|
21848
|
+
id: string;
|
21849
|
+
label: {
|
21850
|
+
id: string;
|
21851
|
+
description: string;
|
21852
|
+
defaultMessage: string;
|
21853
|
+
};
|
21854
|
+
query: import("./DeduplicationConfig").ClauseInput;
|
21855
|
+
} | undefined;
|
21561
21856
|
} | {
|
21562
21857
|
type: "DECLARE";
|
21563
21858
|
label: {
|
@@ -22458,10 +22753,22 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
22458
22753
|
hideLabel?: boolean | undefined;
|
22459
22754
|
uncorrectable?: boolean | undefined;
|
22460
22755
|
defaultValue?: {
|
22461
|
-
firstname
|
22462
|
-
surname
|
22756
|
+
firstname?: string | undefined;
|
22757
|
+
surname?: string | undefined;
|
22758
|
+
middlename?: string | undefined;
|
22463
22759
|
} | undefined;
|
22464
22760
|
configuration?: {
|
22761
|
+
name?: {
|
22762
|
+
firstname?: {
|
22763
|
+
required: boolean;
|
22764
|
+
} | undefined;
|
22765
|
+
surname?: {
|
22766
|
+
required: boolean;
|
22767
|
+
} | undefined;
|
22768
|
+
middlename?: {
|
22769
|
+
required: boolean;
|
22770
|
+
} | undefined;
|
22771
|
+
} | undefined;
|
22465
22772
|
maxLength?: number | undefined;
|
22466
22773
|
prefix?: {
|
22467
22774
|
id: string;
|
@@ -22473,7 +22780,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
22473
22780
|
description: string;
|
22474
22781
|
defaultMessage: string;
|
22475
22782
|
} | undefined;
|
22476
|
-
includeMiddlename?: boolean | undefined;
|
22477
22783
|
searchMode?: boolean | undefined;
|
22478
22784
|
} | undefined;
|
22479
22785
|
} | {
|
@@ -23047,6 +23353,15 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
23047
23353
|
type: "ENABLE";
|
23048
23354
|
conditional: import(".").JSONSchema;
|
23049
23355
|
})[] | undefined;
|
23356
|
+
deduplication?: {
|
23357
|
+
id: string;
|
23358
|
+
label: {
|
23359
|
+
id: string;
|
23360
|
+
description: string;
|
23361
|
+
defaultMessage: string;
|
23362
|
+
};
|
23363
|
+
query: import("./DeduplicationConfig").ClauseInput;
|
23364
|
+
} | undefined;
|
23050
23365
|
} | {
|
23051
23366
|
type: "VALIDATE";
|
23052
23367
|
label: {
|
@@ -23947,10 +24262,22 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
23947
24262
|
hideLabel?: boolean | undefined;
|
23948
24263
|
uncorrectable?: boolean | undefined;
|
23949
24264
|
defaultValue?: {
|
23950
|
-
firstname
|
23951
|
-
surname
|
24265
|
+
firstname?: string | undefined;
|
24266
|
+
surname?: string | undefined;
|
24267
|
+
middlename?: string | undefined;
|
23952
24268
|
} | undefined;
|
23953
24269
|
configuration?: {
|
24270
|
+
name?: {
|
24271
|
+
firstname?: {
|
24272
|
+
required: boolean;
|
24273
|
+
} | undefined;
|
24274
|
+
surname?: {
|
24275
|
+
required: boolean;
|
24276
|
+
} | undefined;
|
24277
|
+
middlename?: {
|
24278
|
+
required: boolean;
|
24279
|
+
} | undefined;
|
24280
|
+
} | undefined;
|
23954
24281
|
maxLength?: number | undefined;
|
23955
24282
|
prefix?: {
|
23956
24283
|
id: string;
|
@@ -23962,7 +24289,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
23962
24289
|
description: string;
|
23963
24290
|
defaultMessage: string;
|
23964
24291
|
} | undefined;
|
23965
|
-
includeMiddlename?: boolean | undefined;
|
23966
24292
|
searchMode?: boolean | undefined;
|
23967
24293
|
} | undefined;
|
23968
24294
|
} | {
|
@@ -24536,6 +24862,15 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
24536
24862
|
type: "ENABLE";
|
24537
24863
|
conditional: import(".").JSONSchema;
|
24538
24864
|
})[] | undefined;
|
24865
|
+
deduplication?: {
|
24866
|
+
id: string;
|
24867
|
+
label: {
|
24868
|
+
id: string;
|
24869
|
+
description: string;
|
24870
|
+
defaultMessage: string;
|
24871
|
+
};
|
24872
|
+
query: import("./DeduplicationConfig").ClauseInput;
|
24873
|
+
} | undefined;
|
24539
24874
|
} | {
|
24540
24875
|
type: "REGISTER";
|
24541
24876
|
label: {
|
@@ -25436,10 +25771,22 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
25436
25771
|
hideLabel?: boolean | undefined;
|
25437
25772
|
uncorrectable?: boolean | undefined;
|
25438
25773
|
defaultValue?: {
|
25439
|
-
firstname
|
25440
|
-
surname
|
25774
|
+
firstname?: string | undefined;
|
25775
|
+
surname?: string | undefined;
|
25776
|
+
middlename?: string | undefined;
|
25441
25777
|
} | undefined;
|
25442
25778
|
configuration?: {
|
25779
|
+
name?: {
|
25780
|
+
firstname?: {
|
25781
|
+
required: boolean;
|
25782
|
+
} | undefined;
|
25783
|
+
surname?: {
|
25784
|
+
required: boolean;
|
25785
|
+
} | undefined;
|
25786
|
+
middlename?: {
|
25787
|
+
required: boolean;
|
25788
|
+
} | undefined;
|
25789
|
+
} | undefined;
|
25443
25790
|
maxLength?: number | undefined;
|
25444
25791
|
prefix?: {
|
25445
25792
|
id: string;
|
@@ -25451,7 +25798,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
25451
25798
|
description: string;
|
25452
25799
|
defaultMessage: string;
|
25453
25800
|
} | undefined;
|
25454
|
-
includeMiddlename?: boolean | undefined;
|
25455
25801
|
searchMode?: boolean | undefined;
|
25456
25802
|
} | undefined;
|
25457
25803
|
} | {
|
@@ -26025,6 +26371,15 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
26025
26371
|
type: "ENABLE";
|
26026
26372
|
conditional: import(".").JSONSchema;
|
26027
26373
|
})[] | undefined;
|
26374
|
+
deduplication?: {
|
26375
|
+
id: string;
|
26376
|
+
label: {
|
26377
|
+
id: string;
|
26378
|
+
description: string;
|
26379
|
+
defaultMessage: string;
|
26380
|
+
};
|
26381
|
+
query: import("./DeduplicationConfig").ClauseInput;
|
26382
|
+
} | undefined;
|
26028
26383
|
} | {
|
26029
26384
|
type: "REJECT";
|
26030
26385
|
label: {
|
@@ -26040,6 +26395,15 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
26040
26395
|
type: "ENABLE";
|
26041
26396
|
conditional: import(".").JSONSchema;
|
26042
26397
|
})[] | undefined;
|
26398
|
+
deduplication?: {
|
26399
|
+
id: string;
|
26400
|
+
label: {
|
26401
|
+
id: string;
|
26402
|
+
description: string;
|
26403
|
+
defaultMessage: string;
|
26404
|
+
};
|
26405
|
+
query: import("./DeduplicationConfig").ClauseInput;
|
26406
|
+
} | undefined;
|
26043
26407
|
} | {
|
26044
26408
|
type: "MARKED_AS_DUPLICATE";
|
26045
26409
|
label: {
|
@@ -26055,6 +26419,15 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
26055
26419
|
type: "ENABLE";
|
26056
26420
|
conditional: import(".").JSONSchema;
|
26057
26421
|
})[] | undefined;
|
26422
|
+
deduplication?: {
|
26423
|
+
id: string;
|
26424
|
+
label: {
|
26425
|
+
id: string;
|
26426
|
+
description: string;
|
26427
|
+
defaultMessage: string;
|
26428
|
+
};
|
26429
|
+
query: import("./DeduplicationConfig").ClauseInput;
|
26430
|
+
} | undefined;
|
26058
26431
|
} | {
|
26059
26432
|
type: "ARCHIVE";
|
26060
26433
|
label: {
|
@@ -26070,6 +26443,15 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
26070
26443
|
type: "ENABLE";
|
26071
26444
|
conditional: import(".").JSONSchema;
|
26072
26445
|
})[] | undefined;
|
26446
|
+
deduplication?: {
|
26447
|
+
id: string;
|
26448
|
+
label: {
|
26449
|
+
id: string;
|
26450
|
+
description: string;
|
26451
|
+
defaultMessage: string;
|
26452
|
+
};
|
26453
|
+
query: import("./DeduplicationConfig").ClauseInput;
|
26454
|
+
} | undefined;
|
26073
26455
|
} | {
|
26074
26456
|
type: "DELETE";
|
26075
26457
|
label: {
|
@@ -26085,6 +26467,15 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
26085
26467
|
type: "ENABLE";
|
26086
26468
|
conditional: import(".").JSONSchema;
|
26087
26469
|
})[] | undefined;
|
26470
|
+
deduplication?: {
|
26471
|
+
id: string;
|
26472
|
+
label: {
|
26473
|
+
id: string;
|
26474
|
+
description: string;
|
26475
|
+
defaultMessage: string;
|
26476
|
+
};
|
26477
|
+
query: import("./DeduplicationConfig").ClauseInput;
|
26478
|
+
} | undefined;
|
26088
26479
|
} | {
|
26089
26480
|
type: "PRINT_CERTIFICATE";
|
26090
26481
|
label: {
|
@@ -26992,10 +27383,22 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
26992
27383
|
hideLabel?: boolean | undefined;
|
26993
27384
|
uncorrectable?: boolean | undefined;
|
26994
27385
|
defaultValue?: {
|
26995
|
-
firstname
|
26996
|
-
surname
|
27386
|
+
firstname?: string | undefined;
|
27387
|
+
surname?: string | undefined;
|
27388
|
+
middlename?: string | undefined;
|
26997
27389
|
} | undefined;
|
26998
27390
|
configuration?: {
|
27391
|
+
name?: {
|
27392
|
+
firstname?: {
|
27393
|
+
required: boolean;
|
27394
|
+
} | undefined;
|
27395
|
+
surname?: {
|
27396
|
+
required: boolean;
|
27397
|
+
} | undefined;
|
27398
|
+
middlename?: {
|
27399
|
+
required: boolean;
|
27400
|
+
} | undefined;
|
27401
|
+
} | undefined;
|
26999
27402
|
maxLength?: number | undefined;
|
27000
27403
|
prefix?: {
|
27001
27404
|
id: string;
|
@@ -27007,7 +27410,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
27007
27410
|
description: string;
|
27008
27411
|
defaultMessage: string;
|
27009
27412
|
} | undefined;
|
27010
|
-
includeMiddlename?: boolean | undefined;
|
27011
27413
|
searchMode?: boolean | undefined;
|
27012
27414
|
} | undefined;
|
27013
27415
|
} | {
|
@@ -28497,10 +28899,22 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
28497
28899
|
hideLabel?: boolean | undefined;
|
28498
28900
|
uncorrectable?: boolean | undefined;
|
28499
28901
|
defaultValue?: {
|
28500
|
-
firstname
|
28501
|
-
surname
|
28902
|
+
firstname?: string | undefined;
|
28903
|
+
surname?: string | undefined;
|
28904
|
+
middlename?: string | undefined;
|
28502
28905
|
} | undefined;
|
28503
28906
|
configuration?: {
|
28907
|
+
name?: {
|
28908
|
+
firstname?: {
|
28909
|
+
required: boolean;
|
28910
|
+
} | undefined;
|
28911
|
+
surname?: {
|
28912
|
+
required: boolean;
|
28913
|
+
} | undefined;
|
28914
|
+
middlename?: {
|
28915
|
+
required: boolean;
|
28916
|
+
} | undefined;
|
28917
|
+
} | undefined;
|
28504
28918
|
maxLength?: number | undefined;
|
28505
28919
|
prefix?: {
|
28506
28920
|
id: string;
|
@@ -28512,7 +28926,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
28512
28926
|
description: string;
|
28513
28927
|
defaultMessage: string;
|
28514
28928
|
} | undefined;
|
28515
|
-
includeMiddlename?: boolean | undefined;
|
28516
28929
|
searchMode?: boolean | undefined;
|
28517
28930
|
} | undefined;
|
28518
28931
|
} | {
|
@@ -29088,6 +29501,15 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
29088
29501
|
type: "ENABLE";
|
29089
29502
|
conditional: import(".").JSONSchema;
|
29090
29503
|
})[] | undefined;
|
29504
|
+
deduplication?: {
|
29505
|
+
id: string;
|
29506
|
+
label: {
|
29507
|
+
id: string;
|
29508
|
+
description: string;
|
29509
|
+
defaultMessage: string;
|
29510
|
+
};
|
29511
|
+
query: import("./DeduplicationConfig").ClauseInput;
|
29512
|
+
} | undefined;
|
29091
29513
|
} | {
|
29092
29514
|
type: "REQUEST_CORRECTION";
|
29093
29515
|
label: {
|
@@ -29995,10 +30417,22 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
29995
30417
|
hideLabel?: boolean | undefined;
|
29996
30418
|
uncorrectable?: boolean | undefined;
|
29997
30419
|
defaultValue?: {
|
29998
|
-
firstname
|
29999
|
-
surname
|
30420
|
+
firstname?: string | undefined;
|
30421
|
+
surname?: string | undefined;
|
30422
|
+
middlename?: string | undefined;
|
30000
30423
|
} | undefined;
|
30001
30424
|
configuration?: {
|
30425
|
+
name?: {
|
30426
|
+
firstname?: {
|
30427
|
+
required: boolean;
|
30428
|
+
} | undefined;
|
30429
|
+
surname?: {
|
30430
|
+
required: boolean;
|
30431
|
+
} | undefined;
|
30432
|
+
middlename?: {
|
30433
|
+
required: boolean;
|
30434
|
+
} | undefined;
|
30435
|
+
} | undefined;
|
30002
30436
|
maxLength?: number | undefined;
|
30003
30437
|
prefix?: {
|
30004
30438
|
id: string;
|
@@ -30010,7 +30444,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
30010
30444
|
description: string;
|
30011
30445
|
defaultMessage: string;
|
30012
30446
|
} | undefined;
|
30013
|
-
includeMiddlename?: boolean | undefined;
|
30014
30447
|
searchMode?: boolean | undefined;
|
30015
30448
|
} | undefined;
|
30016
30449
|
} | {
|
@@ -31500,10 +31933,22 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
31500
31933
|
hideLabel?: boolean | undefined;
|
31501
31934
|
uncorrectable?: boolean | undefined;
|
31502
31935
|
defaultValue?: {
|
31503
|
-
firstname
|
31504
|
-
surname
|
31936
|
+
firstname?: string | undefined;
|
31937
|
+
surname?: string | undefined;
|
31938
|
+
middlename?: string | undefined;
|
31505
31939
|
} | undefined;
|
31506
31940
|
configuration?: {
|
31941
|
+
name?: {
|
31942
|
+
firstname?: {
|
31943
|
+
required: boolean;
|
31944
|
+
} | undefined;
|
31945
|
+
surname?: {
|
31946
|
+
required: boolean;
|
31947
|
+
} | undefined;
|
31948
|
+
middlename?: {
|
31949
|
+
required: boolean;
|
31950
|
+
} | undefined;
|
31951
|
+
} | undefined;
|
31507
31952
|
maxLength?: number | undefined;
|
31508
31953
|
prefix?: {
|
31509
31954
|
id: string;
|
@@ -31515,7 +31960,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
31515
31960
|
description: string;
|
31516
31961
|
defaultMessage: string;
|
31517
31962
|
} | undefined;
|
31518
|
-
includeMiddlename?: boolean | undefined;
|
31519
31963
|
searchMode?: boolean | undefined;
|
31520
31964
|
} | undefined;
|
31521
31965
|
} | {
|
@@ -32091,6 +32535,15 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
32091
32535
|
type: "ENABLE";
|
32092
32536
|
conditional: import(".").JSONSchema;
|
32093
32537
|
})[] | undefined;
|
32538
|
+
deduplication?: {
|
32539
|
+
id: string;
|
32540
|
+
label: {
|
32541
|
+
id: string;
|
32542
|
+
description: string;
|
32543
|
+
defaultMessage: string;
|
32544
|
+
};
|
32545
|
+
query: import("./DeduplicationConfig").ClauseInput;
|
32546
|
+
} | undefined;
|
32094
32547
|
} | {
|
32095
32548
|
type: "REJECT_CORRECTION";
|
32096
32549
|
label: {
|
@@ -32106,6 +32559,15 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
32106
32559
|
type: "ENABLE";
|
32107
32560
|
conditional: import(".").JSONSchema;
|
32108
32561
|
})[] | undefined;
|
32562
|
+
deduplication?: {
|
32563
|
+
id: string;
|
32564
|
+
label: {
|
32565
|
+
id: string;
|
32566
|
+
description: string;
|
32567
|
+
defaultMessage: string;
|
32568
|
+
};
|
32569
|
+
query: import("./DeduplicationConfig").ClauseInput;
|
32570
|
+
} | undefined;
|
32109
32571
|
} | {
|
32110
32572
|
type: "APPROVE_CORRECTION";
|
32111
32573
|
label: {
|
@@ -32121,6 +32583,15 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
32121
32583
|
type: "ENABLE";
|
32122
32584
|
conditional: import(".").JSONSchema;
|
32123
32585
|
})[] | undefined;
|
32586
|
+
deduplication?: {
|
32587
|
+
id: string;
|
32588
|
+
label: {
|
32589
|
+
id: string;
|
32590
|
+
description: string;
|
32591
|
+
defaultMessage: string;
|
32592
|
+
};
|
32593
|
+
query: import("./DeduplicationConfig").ClauseInput;
|
32594
|
+
} | undefined;
|
32124
32595
|
})[];
|
32125
32596
|
label: {
|
32126
32597
|
id: string;
|
@@ -32175,15 +32646,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
32175
32646
|
description: string;
|
32176
32647
|
defaultMessage: string;
|
32177
32648
|
} | undefined;
|
32178
|
-
deduplication?: {
|
32179
|
-
id: string;
|
32180
|
-
label: {
|
32181
|
-
id: string;
|
32182
|
-
description: string;
|
32183
|
-
defaultMessage: string;
|
32184
|
-
};
|
32185
|
-
query: import("./DeduplicationConfig").ClauseInput;
|
32186
|
-
}[] | undefined;
|
32187
32649
|
advancedSearch?: {
|
32188
32650
|
title: {
|
32189
32651
|
id: string;
|
@@ -32233,7 +32695,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
32233
32695
|
config: {
|
32234
32696
|
type: "exact" | "fuzzy" | "range" | "within";
|
32235
32697
|
};
|
32236
|
-
fieldId: "status" | "updatedAt" | "trackingId" | "legalStatuses.REGISTERED.acceptedAt" | "legalStatuses.REGISTERED.createdAtLocation";
|
32698
|
+
fieldId: "event.status" | "event.updatedAt" | "event.trackingId" | "event.legalStatuses.REGISTERED.acceptedAt" | "event.legalStatuses.REGISTERED.createdAtLocation";
|
32237
32699
|
fieldType: "event";
|
32238
32700
|
options?: {
|
32239
32701
|
value: string;
|
@@ -32832,14 +33294,25 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
32832
33294
|
hideLabel?: boolean | undefined;
|
32833
33295
|
uncorrectable?: boolean | undefined;
|
32834
33296
|
defaultValue?: {
|
32835
|
-
firstname
|
32836
|
-
surname
|
33297
|
+
firstname?: string | undefined;
|
33298
|
+
surname?: string | undefined;
|
33299
|
+
middlename?: string | undefined;
|
32837
33300
|
} | undefined;
|
32838
33301
|
configuration?: {
|
33302
|
+
name?: {
|
33303
|
+
firstname?: {
|
33304
|
+
required: boolean;
|
33305
|
+
} | undefined;
|
33306
|
+
surname?: {
|
33307
|
+
required: boolean;
|
33308
|
+
} | undefined;
|
33309
|
+
middlename?: {
|
33310
|
+
required: boolean;
|
33311
|
+
} | undefined;
|
33312
|
+
} | undefined;
|
32839
33313
|
maxLength?: number | undefined;
|
32840
33314
|
prefix?: TranslationConfig | undefined;
|
32841
33315
|
postfix?: TranslationConfig | undefined;
|
32842
|
-
includeMiddlename?: boolean | undefined;
|
32843
33316
|
searchMode?: boolean | undefined;
|
32844
33317
|
} | undefined;
|
32845
33318
|
} | {
|
@@ -33782,14 +34255,25 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
33782
34255
|
hideLabel?: boolean | undefined;
|
33783
34256
|
uncorrectable?: boolean | undefined;
|
33784
34257
|
defaultValue?: {
|
33785
|
-
firstname
|
33786
|
-
surname
|
34258
|
+
firstname?: string | undefined;
|
34259
|
+
surname?: string | undefined;
|
34260
|
+
middlename?: string | undefined;
|
33787
34261
|
} | undefined;
|
33788
34262
|
configuration?: {
|
34263
|
+
name?: {
|
34264
|
+
firstname?: {
|
34265
|
+
required: boolean;
|
34266
|
+
} | undefined;
|
34267
|
+
surname?: {
|
34268
|
+
required: boolean;
|
34269
|
+
} | undefined;
|
34270
|
+
middlename?: {
|
34271
|
+
required: boolean;
|
34272
|
+
} | undefined;
|
34273
|
+
} | undefined;
|
33789
34274
|
maxLength?: number | undefined;
|
33790
34275
|
prefix?: TranslationConfig | undefined;
|
33791
34276
|
postfix?: TranslationConfig | undefined;
|
33792
|
-
includeMiddlename?: boolean | undefined;
|
33793
34277
|
searchMode?: boolean | undefined;
|
33794
34278
|
} | undefined;
|
33795
34279
|
} | {
|
@@ -34164,6 +34648,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
34164
34648
|
})[];
|
34165
34649
|
};
|
34166
34650
|
draft?: boolean | undefined;
|
34651
|
+
deduplication?: {
|
34652
|
+
id: string;
|
34653
|
+
label: TranslationConfig;
|
34654
|
+
query: import("./DeduplicationConfig").ClauseOutput;
|
34655
|
+
} | undefined;
|
34167
34656
|
} | {
|
34168
34657
|
type: "DECLARE";
|
34169
34658
|
label: TranslationConfig;
|
@@ -34731,14 +35220,25 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
34731
35220
|
hideLabel?: boolean | undefined;
|
34732
35221
|
uncorrectable?: boolean | undefined;
|
34733
35222
|
defaultValue?: {
|
34734
|
-
firstname
|
34735
|
-
surname
|
35223
|
+
firstname?: string | undefined;
|
35224
|
+
surname?: string | undefined;
|
35225
|
+
middlename?: string | undefined;
|
34736
35226
|
} | undefined;
|
34737
35227
|
configuration?: {
|
35228
|
+
name?: {
|
35229
|
+
firstname?: {
|
35230
|
+
required: boolean;
|
35231
|
+
} | undefined;
|
35232
|
+
surname?: {
|
35233
|
+
required: boolean;
|
35234
|
+
} | undefined;
|
35235
|
+
middlename?: {
|
35236
|
+
required: boolean;
|
35237
|
+
} | undefined;
|
35238
|
+
} | undefined;
|
34738
35239
|
maxLength?: number | undefined;
|
34739
35240
|
prefix?: TranslationConfig | undefined;
|
34740
35241
|
postfix?: TranslationConfig | undefined;
|
34741
|
-
includeMiddlename?: boolean | undefined;
|
34742
35242
|
searchMode?: boolean | undefined;
|
34743
35243
|
} | undefined;
|
34744
35244
|
} | {
|
@@ -35113,6 +35613,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
35113
35613
|
})[];
|
35114
35614
|
};
|
35115
35615
|
draft?: boolean | undefined;
|
35616
|
+
deduplication?: {
|
35617
|
+
id: string;
|
35618
|
+
label: TranslationConfig;
|
35619
|
+
query: import("./DeduplicationConfig").ClauseOutput;
|
35620
|
+
} | undefined;
|
35116
35621
|
} | {
|
35117
35622
|
type: "VALIDATE";
|
35118
35623
|
label: TranslationConfig;
|
@@ -35680,14 +36185,25 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
35680
36185
|
hideLabel?: boolean | undefined;
|
35681
36186
|
uncorrectable?: boolean | undefined;
|
35682
36187
|
defaultValue?: {
|
35683
|
-
firstname
|
35684
|
-
surname
|
36188
|
+
firstname?: string | undefined;
|
36189
|
+
surname?: string | undefined;
|
36190
|
+
middlename?: string | undefined;
|
35685
36191
|
} | undefined;
|
35686
36192
|
configuration?: {
|
36193
|
+
name?: {
|
36194
|
+
firstname?: {
|
36195
|
+
required: boolean;
|
36196
|
+
} | undefined;
|
36197
|
+
surname?: {
|
36198
|
+
required: boolean;
|
36199
|
+
} | undefined;
|
36200
|
+
middlename?: {
|
36201
|
+
required: boolean;
|
36202
|
+
} | undefined;
|
36203
|
+
} | undefined;
|
35687
36204
|
maxLength?: number | undefined;
|
35688
36205
|
prefix?: TranslationConfig | undefined;
|
35689
36206
|
postfix?: TranslationConfig | undefined;
|
35690
|
-
includeMiddlename?: boolean | undefined;
|
35691
36207
|
searchMode?: boolean | undefined;
|
35692
36208
|
} | undefined;
|
35693
36209
|
} | {
|
@@ -36062,6 +36578,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
36062
36578
|
})[];
|
36063
36579
|
};
|
36064
36580
|
draft?: boolean | undefined;
|
36581
|
+
deduplication?: {
|
36582
|
+
id: string;
|
36583
|
+
label: TranslationConfig;
|
36584
|
+
query: import("./DeduplicationConfig").ClauseOutput;
|
36585
|
+
} | undefined;
|
36065
36586
|
} | {
|
36066
36587
|
type: "REGISTER";
|
36067
36588
|
label: TranslationConfig;
|
@@ -36629,14 +37150,25 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
36629
37150
|
hideLabel?: boolean | undefined;
|
36630
37151
|
uncorrectable?: boolean | undefined;
|
36631
37152
|
defaultValue?: {
|
36632
|
-
firstname
|
36633
|
-
surname
|
37153
|
+
firstname?: string | undefined;
|
37154
|
+
surname?: string | undefined;
|
37155
|
+
middlename?: string | undefined;
|
36634
37156
|
} | undefined;
|
36635
37157
|
configuration?: {
|
37158
|
+
name?: {
|
37159
|
+
firstname?: {
|
37160
|
+
required: boolean;
|
37161
|
+
} | undefined;
|
37162
|
+
surname?: {
|
37163
|
+
required: boolean;
|
37164
|
+
} | undefined;
|
37165
|
+
middlename?: {
|
37166
|
+
required: boolean;
|
37167
|
+
} | undefined;
|
37168
|
+
} | undefined;
|
36636
37169
|
maxLength?: number | undefined;
|
36637
37170
|
prefix?: TranslationConfig | undefined;
|
36638
37171
|
postfix?: TranslationConfig | undefined;
|
36639
|
-
includeMiddlename?: boolean | undefined;
|
36640
37172
|
searchMode?: boolean | undefined;
|
36641
37173
|
} | undefined;
|
36642
37174
|
} | {
|
@@ -37011,6 +37543,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
37011
37543
|
})[];
|
37012
37544
|
};
|
37013
37545
|
draft?: boolean | undefined;
|
37546
|
+
deduplication?: {
|
37547
|
+
id: string;
|
37548
|
+
label: TranslationConfig;
|
37549
|
+
query: import("./DeduplicationConfig").ClauseOutput;
|
37550
|
+
} | undefined;
|
37014
37551
|
} | {
|
37015
37552
|
type: "REJECT";
|
37016
37553
|
label: TranslationConfig;
|
@@ -37022,6 +37559,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
37022
37559
|
conditional: import(".").JSONSchema;
|
37023
37560
|
})[];
|
37024
37561
|
draft?: boolean | undefined;
|
37562
|
+
deduplication?: {
|
37563
|
+
id: string;
|
37564
|
+
label: TranslationConfig;
|
37565
|
+
query: import("./DeduplicationConfig").ClauseOutput;
|
37566
|
+
} | undefined;
|
37025
37567
|
} | {
|
37026
37568
|
type: "MARKED_AS_DUPLICATE";
|
37027
37569
|
label: TranslationConfig;
|
@@ -37033,6 +37575,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
37033
37575
|
conditional: import(".").JSONSchema;
|
37034
37576
|
})[];
|
37035
37577
|
draft?: boolean | undefined;
|
37578
|
+
deduplication?: {
|
37579
|
+
id: string;
|
37580
|
+
label: TranslationConfig;
|
37581
|
+
query: import("./DeduplicationConfig").ClauseOutput;
|
37582
|
+
} | undefined;
|
37036
37583
|
} | {
|
37037
37584
|
type: "ARCHIVE";
|
37038
37585
|
label: TranslationConfig;
|
@@ -37044,6 +37591,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
37044
37591
|
conditional: import(".").JSONSchema;
|
37045
37592
|
})[];
|
37046
37593
|
draft?: boolean | undefined;
|
37594
|
+
deduplication?: {
|
37595
|
+
id: string;
|
37596
|
+
label: TranslationConfig;
|
37597
|
+
query: import("./DeduplicationConfig").ClauseOutput;
|
37598
|
+
} | undefined;
|
37047
37599
|
} | {
|
37048
37600
|
type: "DELETE";
|
37049
37601
|
label: TranslationConfig;
|
@@ -37055,6 +37607,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
37055
37607
|
conditional: import(".").JSONSchema;
|
37056
37608
|
})[];
|
37057
37609
|
draft?: boolean | undefined;
|
37610
|
+
deduplication?: {
|
37611
|
+
id: string;
|
37612
|
+
label: TranslationConfig;
|
37613
|
+
query: import("./DeduplicationConfig").ClauseOutput;
|
37614
|
+
} | undefined;
|
37058
37615
|
} | {
|
37059
37616
|
type: "PRINT_CERTIFICATE";
|
37060
37617
|
label: TranslationConfig;
|
@@ -37626,14 +38183,25 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
37626
38183
|
hideLabel?: boolean | undefined;
|
37627
38184
|
uncorrectable?: boolean | undefined;
|
37628
38185
|
defaultValue?: {
|
37629
|
-
firstname
|
37630
|
-
surname
|
38186
|
+
firstname?: string | undefined;
|
38187
|
+
surname?: string | undefined;
|
38188
|
+
middlename?: string | undefined;
|
37631
38189
|
} | undefined;
|
37632
38190
|
configuration?: {
|
38191
|
+
name?: {
|
38192
|
+
firstname?: {
|
38193
|
+
required: boolean;
|
38194
|
+
} | undefined;
|
38195
|
+
surname?: {
|
38196
|
+
required: boolean;
|
38197
|
+
} | undefined;
|
38198
|
+
middlename?: {
|
38199
|
+
required: boolean;
|
38200
|
+
} | undefined;
|
38201
|
+
} | undefined;
|
37633
38202
|
maxLength?: number | undefined;
|
37634
38203
|
prefix?: TranslationConfig | undefined;
|
37635
38204
|
postfix?: TranslationConfig | undefined;
|
37636
|
-
includeMiddlename?: boolean | undefined;
|
37637
38205
|
searchMode?: boolean | undefined;
|
37638
38206
|
} | undefined;
|
37639
38207
|
} | {
|
@@ -38578,14 +39146,25 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
38578
39146
|
hideLabel?: boolean | undefined;
|
38579
39147
|
uncorrectable?: boolean | undefined;
|
38580
39148
|
defaultValue?: {
|
38581
|
-
firstname
|
38582
|
-
surname
|
39149
|
+
firstname?: string | undefined;
|
39150
|
+
surname?: string | undefined;
|
39151
|
+
middlename?: string | undefined;
|
38583
39152
|
} | undefined;
|
38584
39153
|
configuration?: {
|
39154
|
+
name?: {
|
39155
|
+
firstname?: {
|
39156
|
+
required: boolean;
|
39157
|
+
} | undefined;
|
39158
|
+
surname?: {
|
39159
|
+
required: boolean;
|
39160
|
+
} | undefined;
|
39161
|
+
middlename?: {
|
39162
|
+
required: boolean;
|
39163
|
+
} | undefined;
|
39164
|
+
} | undefined;
|
38585
39165
|
maxLength?: number | undefined;
|
38586
39166
|
prefix?: TranslationConfig | undefined;
|
38587
39167
|
postfix?: TranslationConfig | undefined;
|
38588
|
-
includeMiddlename?: boolean | undefined;
|
38589
39168
|
searchMode?: boolean | undefined;
|
38590
39169
|
} | undefined;
|
38591
39170
|
} | {
|
@@ -38962,6 +39541,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
38962
39541
|
})[];
|
38963
39542
|
};
|
38964
39543
|
draft?: boolean | undefined;
|
39544
|
+
deduplication?: {
|
39545
|
+
id: string;
|
39546
|
+
label: TranslationConfig;
|
39547
|
+
query: import("./DeduplicationConfig").ClauseOutput;
|
39548
|
+
} | undefined;
|
38965
39549
|
} | {
|
38966
39550
|
type: "REQUEST_CORRECTION";
|
38967
39551
|
label: TranslationConfig;
|
@@ -39533,14 +40117,25 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
39533
40117
|
hideLabel?: boolean | undefined;
|
39534
40118
|
uncorrectable?: boolean | undefined;
|
39535
40119
|
defaultValue?: {
|
39536
|
-
firstname
|
39537
|
-
surname
|
40120
|
+
firstname?: string | undefined;
|
40121
|
+
surname?: string | undefined;
|
40122
|
+
middlename?: string | undefined;
|
39538
40123
|
} | undefined;
|
39539
40124
|
configuration?: {
|
40125
|
+
name?: {
|
40126
|
+
firstname?: {
|
40127
|
+
required: boolean;
|
40128
|
+
} | undefined;
|
40129
|
+
surname?: {
|
40130
|
+
required: boolean;
|
40131
|
+
} | undefined;
|
40132
|
+
middlename?: {
|
40133
|
+
required: boolean;
|
40134
|
+
} | undefined;
|
40135
|
+
} | undefined;
|
39540
40136
|
maxLength?: number | undefined;
|
39541
40137
|
prefix?: TranslationConfig | undefined;
|
39542
40138
|
postfix?: TranslationConfig | undefined;
|
39543
|
-
includeMiddlename?: boolean | undefined;
|
39544
40139
|
searchMode?: boolean | undefined;
|
39545
40140
|
} | undefined;
|
39546
40141
|
} | {
|
@@ -40485,14 +41080,25 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
40485
41080
|
hideLabel?: boolean | undefined;
|
40486
41081
|
uncorrectable?: boolean | undefined;
|
40487
41082
|
defaultValue?: {
|
40488
|
-
firstname
|
40489
|
-
surname
|
41083
|
+
firstname?: string | undefined;
|
41084
|
+
surname?: string | undefined;
|
41085
|
+
middlename?: string | undefined;
|
40490
41086
|
} | undefined;
|
40491
41087
|
configuration?: {
|
41088
|
+
name?: {
|
41089
|
+
firstname?: {
|
41090
|
+
required: boolean;
|
41091
|
+
} | undefined;
|
41092
|
+
surname?: {
|
41093
|
+
required: boolean;
|
41094
|
+
} | undefined;
|
41095
|
+
middlename?: {
|
41096
|
+
required: boolean;
|
41097
|
+
} | undefined;
|
41098
|
+
} | undefined;
|
40492
41099
|
maxLength?: number | undefined;
|
40493
41100
|
prefix?: TranslationConfig | undefined;
|
40494
41101
|
postfix?: TranslationConfig | undefined;
|
40495
|
-
includeMiddlename?: boolean | undefined;
|
40496
41102
|
searchMode?: boolean | undefined;
|
40497
41103
|
} | undefined;
|
40498
41104
|
} | {
|
@@ -40869,6 +41475,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
40869
41475
|
})[];
|
40870
41476
|
};
|
40871
41477
|
draft?: boolean | undefined;
|
41478
|
+
deduplication?: {
|
41479
|
+
id: string;
|
41480
|
+
label: TranslationConfig;
|
41481
|
+
query: import("./DeduplicationConfig").ClauseOutput;
|
41482
|
+
} | undefined;
|
40872
41483
|
} | {
|
40873
41484
|
type: "REJECT_CORRECTION";
|
40874
41485
|
label: TranslationConfig;
|
@@ -40880,6 +41491,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
40880
41491
|
conditional: import(".").JSONSchema;
|
40881
41492
|
})[];
|
40882
41493
|
draft?: boolean | undefined;
|
41494
|
+
deduplication?: {
|
41495
|
+
id: string;
|
41496
|
+
label: TranslationConfig;
|
41497
|
+
query: import("./DeduplicationConfig").ClauseOutput;
|
41498
|
+
} | undefined;
|
40883
41499
|
} | {
|
40884
41500
|
type: "APPROVE_CORRECTION";
|
40885
41501
|
label: TranslationConfig;
|
@@ -40891,6 +41507,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
40891
41507
|
conditional: import(".").JSONSchema;
|
40892
41508
|
})[];
|
40893
41509
|
draft?: boolean | undefined;
|
41510
|
+
deduplication?: {
|
41511
|
+
id: string;
|
41512
|
+
label: TranslationConfig;
|
41513
|
+
query: import("./DeduplicationConfig").ClauseOutput;
|
41514
|
+
} | undefined;
|
40894
41515
|
})[];
|
40895
41516
|
label: TranslationConfig;
|
40896
41517
|
summary: {
|
@@ -40913,11 +41534,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
40913
41534
|
emptyValueMessage?: TranslationConfig | undefined;
|
40914
41535
|
})[];
|
40915
41536
|
};
|
40916
|
-
deduplication: {
|
40917
|
-
id: string;
|
40918
|
-
label: TranslationConfig;
|
40919
|
-
query: import("./DeduplicationConfig").ClauseOutput;
|
40920
|
-
}[];
|
40921
41537
|
advancedSearch: {
|
40922
41538
|
title: TranslationConfig;
|
40923
41539
|
fields: ({
|
@@ -40951,7 +41567,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
40951
41567
|
config: {
|
40952
41568
|
type: "exact" | "fuzzy" | "range" | "within";
|
40953
41569
|
};
|
40954
|
-
fieldId: "status" | "updatedAt" | "trackingId" | "legalStatuses.REGISTERED.acceptedAt" | "legalStatuses.REGISTERED.createdAtLocation";
|
41570
|
+
fieldId: "event.status" | "event.updatedAt" | "event.trackingId" | "event.legalStatuses.REGISTERED.acceptedAt" | "event.legalStatuses.REGISTERED.createdAtLocation";
|
40955
41571
|
fieldType: "event";
|
40956
41572
|
options?: {
|
40957
41573
|
value: string;
|
@@ -41885,10 +42501,22 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
41885
42501
|
hideLabel?: boolean | undefined;
|
41886
42502
|
uncorrectable?: boolean | undefined;
|
41887
42503
|
defaultValue?: {
|
41888
|
-
firstname
|
41889
|
-
surname
|
42504
|
+
firstname?: string | undefined;
|
42505
|
+
surname?: string | undefined;
|
42506
|
+
middlename?: string | undefined;
|
41890
42507
|
} | undefined;
|
41891
42508
|
configuration?: {
|
42509
|
+
name?: {
|
42510
|
+
firstname?: {
|
42511
|
+
required: boolean;
|
42512
|
+
} | undefined;
|
42513
|
+
surname?: {
|
42514
|
+
required: boolean;
|
42515
|
+
} | undefined;
|
42516
|
+
middlename?: {
|
42517
|
+
required: boolean;
|
42518
|
+
} | undefined;
|
42519
|
+
} | undefined;
|
41892
42520
|
maxLength?: number | undefined;
|
41893
42521
|
prefix?: {
|
41894
42522
|
id: string;
|
@@ -41900,7 +42528,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
41900
42528
|
description: string;
|
41901
42529
|
defaultMessage: string;
|
41902
42530
|
} | undefined;
|
41903
|
-
includeMiddlename?: boolean | undefined;
|
41904
42531
|
searchMode?: boolean | undefined;
|
41905
42532
|
} | undefined;
|
41906
42533
|
} | {
|
@@ -43369,10 +43996,22 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
43369
43996
|
hideLabel?: boolean | undefined;
|
43370
43997
|
uncorrectable?: boolean | undefined;
|
43371
43998
|
defaultValue?: {
|
43372
|
-
firstname
|
43373
|
-
surname
|
43999
|
+
firstname?: string | undefined;
|
44000
|
+
surname?: string | undefined;
|
44001
|
+
middlename?: string | undefined;
|
43374
44002
|
} | undefined;
|
43375
44003
|
configuration?: {
|
44004
|
+
name?: {
|
44005
|
+
firstname?: {
|
44006
|
+
required: boolean;
|
44007
|
+
} | undefined;
|
44008
|
+
surname?: {
|
44009
|
+
required: boolean;
|
44010
|
+
} | undefined;
|
44011
|
+
middlename?: {
|
44012
|
+
required: boolean;
|
44013
|
+
} | undefined;
|
44014
|
+
} | undefined;
|
43376
44015
|
maxLength?: number | undefined;
|
43377
44016
|
prefix?: {
|
43378
44017
|
id: string;
|
@@ -43384,7 +44023,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
43384
44023
|
description: string;
|
43385
44024
|
defaultMessage: string;
|
43386
44025
|
} | undefined;
|
43387
|
-
includeMiddlename?: boolean | undefined;
|
43388
44026
|
searchMode?: boolean | undefined;
|
43389
44027
|
} | undefined;
|
43390
44028
|
} | {
|
@@ -43958,6 +44596,15 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
43958
44596
|
type: "ENABLE";
|
43959
44597
|
conditional: import(".").JSONSchema;
|
43960
44598
|
})[] | undefined;
|
44599
|
+
deduplication?: {
|
44600
|
+
id: string;
|
44601
|
+
label: {
|
44602
|
+
id: string;
|
44603
|
+
description: string;
|
44604
|
+
defaultMessage: string;
|
44605
|
+
};
|
44606
|
+
query: import("./DeduplicationConfig").ClauseInput;
|
44607
|
+
} | undefined;
|
43961
44608
|
} | {
|
43962
44609
|
type: "DECLARE";
|
43963
44610
|
label: {
|
@@ -44858,10 +45505,22 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
44858
45505
|
hideLabel?: boolean | undefined;
|
44859
45506
|
uncorrectable?: boolean | undefined;
|
44860
45507
|
defaultValue?: {
|
44861
|
-
firstname
|
44862
|
-
surname
|
45508
|
+
firstname?: string | undefined;
|
45509
|
+
surname?: string | undefined;
|
45510
|
+
middlename?: string | undefined;
|
44863
45511
|
} | undefined;
|
44864
45512
|
configuration?: {
|
45513
|
+
name?: {
|
45514
|
+
firstname?: {
|
45515
|
+
required: boolean;
|
45516
|
+
} | undefined;
|
45517
|
+
surname?: {
|
45518
|
+
required: boolean;
|
45519
|
+
} | undefined;
|
45520
|
+
middlename?: {
|
45521
|
+
required: boolean;
|
45522
|
+
} | undefined;
|
45523
|
+
} | undefined;
|
44865
45524
|
maxLength?: number | undefined;
|
44866
45525
|
prefix?: {
|
44867
45526
|
id: string;
|
@@ -44873,7 +45532,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
44873
45532
|
description: string;
|
44874
45533
|
defaultMessage: string;
|
44875
45534
|
} | undefined;
|
44876
|
-
includeMiddlename?: boolean | undefined;
|
44877
45535
|
searchMode?: boolean | undefined;
|
44878
45536
|
} | undefined;
|
44879
45537
|
} | {
|
@@ -45447,6 +46105,15 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
45447
46105
|
type: "ENABLE";
|
45448
46106
|
conditional: import(".").JSONSchema;
|
45449
46107
|
})[] | undefined;
|
46108
|
+
deduplication?: {
|
46109
|
+
id: string;
|
46110
|
+
label: {
|
46111
|
+
id: string;
|
46112
|
+
description: string;
|
46113
|
+
defaultMessage: string;
|
46114
|
+
};
|
46115
|
+
query: import("./DeduplicationConfig").ClauseInput;
|
46116
|
+
} | undefined;
|
45450
46117
|
} | {
|
45451
46118
|
type: "VALIDATE";
|
45452
46119
|
label: {
|
@@ -46347,10 +47014,22 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
46347
47014
|
hideLabel?: boolean | undefined;
|
46348
47015
|
uncorrectable?: boolean | undefined;
|
46349
47016
|
defaultValue?: {
|
46350
|
-
firstname
|
46351
|
-
surname
|
47017
|
+
firstname?: string | undefined;
|
47018
|
+
surname?: string | undefined;
|
47019
|
+
middlename?: string | undefined;
|
46352
47020
|
} | undefined;
|
46353
47021
|
configuration?: {
|
47022
|
+
name?: {
|
47023
|
+
firstname?: {
|
47024
|
+
required: boolean;
|
47025
|
+
} | undefined;
|
47026
|
+
surname?: {
|
47027
|
+
required: boolean;
|
47028
|
+
} | undefined;
|
47029
|
+
middlename?: {
|
47030
|
+
required: boolean;
|
47031
|
+
} | undefined;
|
47032
|
+
} | undefined;
|
46354
47033
|
maxLength?: number | undefined;
|
46355
47034
|
prefix?: {
|
46356
47035
|
id: string;
|
@@ -46362,7 +47041,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
46362
47041
|
description: string;
|
46363
47042
|
defaultMessage: string;
|
46364
47043
|
} | undefined;
|
46365
|
-
includeMiddlename?: boolean | undefined;
|
46366
47044
|
searchMode?: boolean | undefined;
|
46367
47045
|
} | undefined;
|
46368
47046
|
} | {
|
@@ -46936,6 +47614,15 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
46936
47614
|
type: "ENABLE";
|
46937
47615
|
conditional: import(".").JSONSchema;
|
46938
47616
|
})[] | undefined;
|
47617
|
+
deduplication?: {
|
47618
|
+
id: string;
|
47619
|
+
label: {
|
47620
|
+
id: string;
|
47621
|
+
description: string;
|
47622
|
+
defaultMessage: string;
|
47623
|
+
};
|
47624
|
+
query: import("./DeduplicationConfig").ClauseInput;
|
47625
|
+
} | undefined;
|
46939
47626
|
} | {
|
46940
47627
|
type: "REGISTER";
|
46941
47628
|
label: {
|
@@ -47836,10 +48523,22 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
47836
48523
|
hideLabel?: boolean | undefined;
|
47837
48524
|
uncorrectable?: boolean | undefined;
|
47838
48525
|
defaultValue?: {
|
47839
|
-
firstname
|
47840
|
-
surname
|
48526
|
+
firstname?: string | undefined;
|
48527
|
+
surname?: string | undefined;
|
48528
|
+
middlename?: string | undefined;
|
47841
48529
|
} | undefined;
|
47842
48530
|
configuration?: {
|
48531
|
+
name?: {
|
48532
|
+
firstname?: {
|
48533
|
+
required: boolean;
|
48534
|
+
} | undefined;
|
48535
|
+
surname?: {
|
48536
|
+
required: boolean;
|
48537
|
+
} | undefined;
|
48538
|
+
middlename?: {
|
48539
|
+
required: boolean;
|
48540
|
+
} | undefined;
|
48541
|
+
} | undefined;
|
47843
48542
|
maxLength?: number | undefined;
|
47844
48543
|
prefix?: {
|
47845
48544
|
id: string;
|
@@ -47851,7 +48550,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
47851
48550
|
description: string;
|
47852
48551
|
defaultMessage: string;
|
47853
48552
|
} | undefined;
|
47854
|
-
includeMiddlename?: boolean | undefined;
|
47855
48553
|
searchMode?: boolean | undefined;
|
47856
48554
|
} | undefined;
|
47857
48555
|
} | {
|
@@ -48425,6 +49123,15 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
48425
49123
|
type: "ENABLE";
|
48426
49124
|
conditional: import(".").JSONSchema;
|
48427
49125
|
})[] | undefined;
|
49126
|
+
deduplication?: {
|
49127
|
+
id: string;
|
49128
|
+
label: {
|
49129
|
+
id: string;
|
49130
|
+
description: string;
|
49131
|
+
defaultMessage: string;
|
49132
|
+
};
|
49133
|
+
query: import("./DeduplicationConfig").ClauseInput;
|
49134
|
+
} | undefined;
|
48428
49135
|
} | {
|
48429
49136
|
type: "REJECT";
|
48430
49137
|
label: {
|
@@ -48440,6 +49147,15 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
48440
49147
|
type: "ENABLE";
|
48441
49148
|
conditional: import(".").JSONSchema;
|
48442
49149
|
})[] | undefined;
|
49150
|
+
deduplication?: {
|
49151
|
+
id: string;
|
49152
|
+
label: {
|
49153
|
+
id: string;
|
49154
|
+
description: string;
|
49155
|
+
defaultMessage: string;
|
49156
|
+
};
|
49157
|
+
query: import("./DeduplicationConfig").ClauseInput;
|
49158
|
+
} | undefined;
|
48443
49159
|
} | {
|
48444
49160
|
type: "MARKED_AS_DUPLICATE";
|
48445
49161
|
label: {
|
@@ -48455,6 +49171,15 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
48455
49171
|
type: "ENABLE";
|
48456
49172
|
conditional: import(".").JSONSchema;
|
48457
49173
|
})[] | undefined;
|
49174
|
+
deduplication?: {
|
49175
|
+
id: string;
|
49176
|
+
label: {
|
49177
|
+
id: string;
|
49178
|
+
description: string;
|
49179
|
+
defaultMessage: string;
|
49180
|
+
};
|
49181
|
+
query: import("./DeduplicationConfig").ClauseInput;
|
49182
|
+
} | undefined;
|
48458
49183
|
} | {
|
48459
49184
|
type: "ARCHIVE";
|
48460
49185
|
label: {
|
@@ -48470,6 +49195,15 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
48470
49195
|
type: "ENABLE";
|
48471
49196
|
conditional: import(".").JSONSchema;
|
48472
49197
|
})[] | undefined;
|
49198
|
+
deduplication?: {
|
49199
|
+
id: string;
|
49200
|
+
label: {
|
49201
|
+
id: string;
|
49202
|
+
description: string;
|
49203
|
+
defaultMessage: string;
|
49204
|
+
};
|
49205
|
+
query: import("./DeduplicationConfig").ClauseInput;
|
49206
|
+
} | undefined;
|
48473
49207
|
} | {
|
48474
49208
|
type: "DELETE";
|
48475
49209
|
label: {
|
@@ -48485,6 +49219,15 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
48485
49219
|
type: "ENABLE";
|
48486
49220
|
conditional: import(".").JSONSchema;
|
48487
49221
|
})[] | undefined;
|
49222
|
+
deduplication?: {
|
49223
|
+
id: string;
|
49224
|
+
label: {
|
49225
|
+
id: string;
|
49226
|
+
description: string;
|
49227
|
+
defaultMessage: string;
|
49228
|
+
};
|
49229
|
+
query: import("./DeduplicationConfig").ClauseInput;
|
49230
|
+
} | undefined;
|
48488
49231
|
} | {
|
48489
49232
|
type: "PRINT_CERTIFICATE";
|
48490
49233
|
label: {
|
@@ -49392,10 +50135,22 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
49392
50135
|
hideLabel?: boolean | undefined;
|
49393
50136
|
uncorrectable?: boolean | undefined;
|
49394
50137
|
defaultValue?: {
|
49395
|
-
firstname
|
49396
|
-
surname
|
50138
|
+
firstname?: string | undefined;
|
50139
|
+
surname?: string | undefined;
|
50140
|
+
middlename?: string | undefined;
|
49397
50141
|
} | undefined;
|
49398
50142
|
configuration?: {
|
50143
|
+
name?: {
|
50144
|
+
firstname?: {
|
50145
|
+
required: boolean;
|
50146
|
+
} | undefined;
|
50147
|
+
surname?: {
|
50148
|
+
required: boolean;
|
50149
|
+
} | undefined;
|
50150
|
+
middlename?: {
|
50151
|
+
required: boolean;
|
50152
|
+
} | undefined;
|
50153
|
+
} | undefined;
|
49399
50154
|
maxLength?: number | undefined;
|
49400
50155
|
prefix?: {
|
49401
50156
|
id: string;
|
@@ -49407,7 +50162,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
49407
50162
|
description: string;
|
49408
50163
|
defaultMessage: string;
|
49409
50164
|
} | undefined;
|
49410
|
-
includeMiddlename?: boolean | undefined;
|
49411
50165
|
searchMode?: boolean | undefined;
|
49412
50166
|
} | undefined;
|
49413
50167
|
} | {
|
@@ -50897,10 +51651,22 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
50897
51651
|
hideLabel?: boolean | undefined;
|
50898
51652
|
uncorrectable?: boolean | undefined;
|
50899
51653
|
defaultValue?: {
|
50900
|
-
firstname
|
50901
|
-
surname
|
51654
|
+
firstname?: string | undefined;
|
51655
|
+
surname?: string | undefined;
|
51656
|
+
middlename?: string | undefined;
|
50902
51657
|
} | undefined;
|
50903
51658
|
configuration?: {
|
51659
|
+
name?: {
|
51660
|
+
firstname?: {
|
51661
|
+
required: boolean;
|
51662
|
+
} | undefined;
|
51663
|
+
surname?: {
|
51664
|
+
required: boolean;
|
51665
|
+
} | undefined;
|
51666
|
+
middlename?: {
|
51667
|
+
required: boolean;
|
51668
|
+
} | undefined;
|
51669
|
+
} | undefined;
|
50904
51670
|
maxLength?: number | undefined;
|
50905
51671
|
prefix?: {
|
50906
51672
|
id: string;
|
@@ -50912,7 +51678,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
50912
51678
|
description: string;
|
50913
51679
|
defaultMessage: string;
|
50914
51680
|
} | undefined;
|
50915
|
-
includeMiddlename?: boolean | undefined;
|
50916
51681
|
searchMode?: boolean | undefined;
|
50917
51682
|
} | undefined;
|
50918
51683
|
} | {
|
@@ -51488,6 +52253,15 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
51488
52253
|
type: "ENABLE";
|
51489
52254
|
conditional: import(".").JSONSchema;
|
51490
52255
|
})[] | undefined;
|
52256
|
+
deduplication?: {
|
52257
|
+
id: string;
|
52258
|
+
label: {
|
52259
|
+
id: string;
|
52260
|
+
description: string;
|
52261
|
+
defaultMessage: string;
|
52262
|
+
};
|
52263
|
+
query: import("./DeduplicationConfig").ClauseInput;
|
52264
|
+
} | undefined;
|
51491
52265
|
} | {
|
51492
52266
|
type: "REQUEST_CORRECTION";
|
51493
52267
|
label: {
|
@@ -52395,10 +53169,22 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
52395
53169
|
hideLabel?: boolean | undefined;
|
52396
53170
|
uncorrectable?: boolean | undefined;
|
52397
53171
|
defaultValue?: {
|
52398
|
-
firstname
|
52399
|
-
surname
|
53172
|
+
firstname?: string | undefined;
|
53173
|
+
surname?: string | undefined;
|
53174
|
+
middlename?: string | undefined;
|
52400
53175
|
} | undefined;
|
52401
53176
|
configuration?: {
|
53177
|
+
name?: {
|
53178
|
+
firstname?: {
|
53179
|
+
required: boolean;
|
53180
|
+
} | undefined;
|
53181
|
+
surname?: {
|
53182
|
+
required: boolean;
|
53183
|
+
} | undefined;
|
53184
|
+
middlename?: {
|
53185
|
+
required: boolean;
|
53186
|
+
} | undefined;
|
53187
|
+
} | undefined;
|
52402
53188
|
maxLength?: number | undefined;
|
52403
53189
|
prefix?: {
|
52404
53190
|
id: string;
|
@@ -52410,7 +53196,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
52410
53196
|
description: string;
|
52411
53197
|
defaultMessage: string;
|
52412
53198
|
} | undefined;
|
52413
|
-
includeMiddlename?: boolean | undefined;
|
52414
53199
|
searchMode?: boolean | undefined;
|
52415
53200
|
} | undefined;
|
52416
53201
|
} | {
|
@@ -53900,10 +54685,22 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
53900
54685
|
hideLabel?: boolean | undefined;
|
53901
54686
|
uncorrectable?: boolean | undefined;
|
53902
54687
|
defaultValue?: {
|
53903
|
-
firstname
|
53904
|
-
surname
|
54688
|
+
firstname?: string | undefined;
|
54689
|
+
surname?: string | undefined;
|
54690
|
+
middlename?: string | undefined;
|
53905
54691
|
} | undefined;
|
53906
54692
|
configuration?: {
|
54693
|
+
name?: {
|
54694
|
+
firstname?: {
|
54695
|
+
required: boolean;
|
54696
|
+
} | undefined;
|
54697
|
+
surname?: {
|
54698
|
+
required: boolean;
|
54699
|
+
} | undefined;
|
54700
|
+
middlename?: {
|
54701
|
+
required: boolean;
|
54702
|
+
} | undefined;
|
54703
|
+
} | undefined;
|
53907
54704
|
maxLength?: number | undefined;
|
53908
54705
|
prefix?: {
|
53909
54706
|
id: string;
|
@@ -53915,7 +54712,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
53915
54712
|
description: string;
|
53916
54713
|
defaultMessage: string;
|
53917
54714
|
} | undefined;
|
53918
|
-
includeMiddlename?: boolean | undefined;
|
53919
54715
|
searchMode?: boolean | undefined;
|
53920
54716
|
} | undefined;
|
53921
54717
|
} | {
|
@@ -54491,6 +55287,15 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
54491
55287
|
type: "ENABLE";
|
54492
55288
|
conditional: import(".").JSONSchema;
|
54493
55289
|
})[] | undefined;
|
55290
|
+
deduplication?: {
|
55291
|
+
id: string;
|
55292
|
+
label: {
|
55293
|
+
id: string;
|
55294
|
+
description: string;
|
55295
|
+
defaultMessage: string;
|
55296
|
+
};
|
55297
|
+
query: import("./DeduplicationConfig").ClauseInput;
|
55298
|
+
} | undefined;
|
54494
55299
|
} | {
|
54495
55300
|
type: "REJECT_CORRECTION";
|
54496
55301
|
label: {
|
@@ -54506,6 +55311,15 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
54506
55311
|
type: "ENABLE";
|
54507
55312
|
conditional: import(".").JSONSchema;
|
54508
55313
|
})[] | undefined;
|
55314
|
+
deduplication?: {
|
55315
|
+
id: string;
|
55316
|
+
label: {
|
55317
|
+
id: string;
|
55318
|
+
description: string;
|
55319
|
+
defaultMessage: string;
|
55320
|
+
};
|
55321
|
+
query: import("./DeduplicationConfig").ClauseInput;
|
55322
|
+
} | undefined;
|
54509
55323
|
} | {
|
54510
55324
|
type: "APPROVE_CORRECTION";
|
54511
55325
|
label: {
|
@@ -54521,6 +55335,15 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
54521
55335
|
type: "ENABLE";
|
54522
55336
|
conditional: import(".").JSONSchema;
|
54523
55337
|
})[] | undefined;
|
55338
|
+
deduplication?: {
|
55339
|
+
id: string;
|
55340
|
+
label: {
|
55341
|
+
id: string;
|
55342
|
+
description: string;
|
55343
|
+
defaultMessage: string;
|
55344
|
+
};
|
55345
|
+
query: import("./DeduplicationConfig").ClauseInput;
|
55346
|
+
} | undefined;
|
54524
55347
|
})[];
|
54525
55348
|
label: {
|
54526
55349
|
id: string;
|
@@ -54575,15 +55398,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
54575
55398
|
description: string;
|
54576
55399
|
defaultMessage: string;
|
54577
55400
|
} | undefined;
|
54578
|
-
deduplication?: {
|
54579
|
-
id: string;
|
54580
|
-
label: {
|
54581
|
-
id: string;
|
54582
|
-
description: string;
|
54583
|
-
defaultMessage: string;
|
54584
|
-
};
|
54585
|
-
query: import("./DeduplicationConfig").ClauseInput;
|
54586
|
-
}[] | undefined;
|
54587
55401
|
advancedSearch?: {
|
54588
55402
|
title: {
|
54589
55403
|
id: string;
|
@@ -54633,7 +55447,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
54633
55447
|
config: {
|
54634
55448
|
type: "exact" | "fuzzy" | "range" | "within";
|
54635
55449
|
};
|
54636
|
-
fieldId: "status" | "updatedAt" | "trackingId" | "legalStatuses.REGISTERED.acceptedAt" | "legalStatuses.REGISTERED.createdAtLocation";
|
55450
|
+
fieldId: "event.status" | "event.updatedAt" | "event.trackingId" | "event.legalStatuses.REGISTERED.acceptedAt" | "event.legalStatuses.REGISTERED.createdAtLocation";
|
54637
55451
|
fieldType: "event";
|
54638
55452
|
options?: {
|
54639
55453
|
value: string;
|