@opencrvs/toolkit 1.8.1-rc.6e305c5 → 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/events/ActionConfig.d.ts +560 -0
- package/dist/commons/events/DeduplicationConfig.d.ts +21 -48
- package/dist/commons/events/EventConfig.d.ts +336 -49
- package/dist/commons/events/defineConfig.d.ts +60 -5
- package/dist/commons/events/utils.d.ts +60 -5
- package/dist/events/index.js +161 -173
- package/package.json +1 -1
@@ -9596,27 +9596,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
9596
9596
|
conditional?: import(".").JSONSchema | undefined;
|
9597
9597
|
}[];
|
9598
9598
|
}>;
|
9599
|
-
deduplication: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
9600
|
-
id: z.ZodString;
|
9601
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
9602
|
-
id: string;
|
9603
|
-
description: string;
|
9604
|
-
defaultMessage: string;
|
9605
|
-
}>;
|
9606
|
-
query: z.ZodType<import("./DeduplicationConfig").ClauseOutput, z.ZodTypeDef, import("./DeduplicationConfig").ClauseInput>;
|
9607
|
-
}, "strip", z.ZodTypeAny, {
|
9608
|
-
id: string;
|
9609
|
-
label: TranslationConfig;
|
9610
|
-
query: import("./DeduplicationConfig").ClauseOutput;
|
9611
|
-
}, {
|
9612
|
-
id: string;
|
9613
|
-
label: {
|
9614
|
-
id: string;
|
9615
|
-
description: string;
|
9616
|
-
defaultMessage: string;
|
9617
|
-
};
|
9618
|
-
query: import("./DeduplicationConfig").ClauseInput;
|
9619
|
-
}>, "many">>>;
|
9620
9599
|
advancedSearch: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
9621
9600
|
title: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
9622
9601
|
id: string;
|
@@ -11917,6 +11896,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
11917
11896
|
})[];
|
11918
11897
|
};
|
11919
11898
|
draft?: boolean | undefined;
|
11899
|
+
deduplication?: {
|
11900
|
+
id: string;
|
11901
|
+
label: TranslationConfig;
|
11902
|
+
query: import("./DeduplicationConfig").ClauseOutput;
|
11903
|
+
} | undefined;
|
11920
11904
|
} | {
|
11921
11905
|
type: "DECLARE";
|
11922
11906
|
label: TranslationConfig;
|
@@ -12877,6 +12861,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
12877
12861
|
})[];
|
12878
12862
|
};
|
12879
12863
|
draft?: boolean | undefined;
|
12864
|
+
deduplication?: {
|
12865
|
+
id: string;
|
12866
|
+
label: TranslationConfig;
|
12867
|
+
query: import("./DeduplicationConfig").ClauseOutput;
|
12868
|
+
} | undefined;
|
12880
12869
|
} | {
|
12881
12870
|
type: "VALIDATE";
|
12882
12871
|
label: TranslationConfig;
|
@@ -13837,6 +13826,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
13837
13826
|
})[];
|
13838
13827
|
};
|
13839
13828
|
draft?: boolean | undefined;
|
13829
|
+
deduplication?: {
|
13830
|
+
id: string;
|
13831
|
+
label: TranslationConfig;
|
13832
|
+
query: import("./DeduplicationConfig").ClauseOutput;
|
13833
|
+
} | undefined;
|
13840
13834
|
} | {
|
13841
13835
|
type: "REGISTER";
|
13842
13836
|
label: TranslationConfig;
|
@@ -14797,6 +14791,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
14797
14791
|
})[];
|
14798
14792
|
};
|
14799
14793
|
draft?: boolean | undefined;
|
14794
|
+
deduplication?: {
|
14795
|
+
id: string;
|
14796
|
+
label: TranslationConfig;
|
14797
|
+
query: import("./DeduplicationConfig").ClauseOutput;
|
14798
|
+
} | undefined;
|
14800
14799
|
} | {
|
14801
14800
|
type: "REJECT";
|
14802
14801
|
label: TranslationConfig;
|
@@ -14808,6 +14807,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
14808
14807
|
conditional: import(".").JSONSchema;
|
14809
14808
|
})[];
|
14810
14809
|
draft?: boolean | undefined;
|
14810
|
+
deduplication?: {
|
14811
|
+
id: string;
|
14812
|
+
label: TranslationConfig;
|
14813
|
+
query: import("./DeduplicationConfig").ClauseOutput;
|
14814
|
+
} | undefined;
|
14811
14815
|
} | {
|
14812
14816
|
type: "MARKED_AS_DUPLICATE";
|
14813
14817
|
label: TranslationConfig;
|
@@ -14819,6 +14823,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
14819
14823
|
conditional: import(".").JSONSchema;
|
14820
14824
|
})[];
|
14821
14825
|
draft?: boolean | undefined;
|
14826
|
+
deduplication?: {
|
14827
|
+
id: string;
|
14828
|
+
label: TranslationConfig;
|
14829
|
+
query: import("./DeduplicationConfig").ClauseOutput;
|
14830
|
+
} | undefined;
|
14822
14831
|
} | {
|
14823
14832
|
type: "ARCHIVE";
|
14824
14833
|
label: TranslationConfig;
|
@@ -14830,6 +14839,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
14830
14839
|
conditional: import(".").JSONSchema;
|
14831
14840
|
})[];
|
14832
14841
|
draft?: boolean | undefined;
|
14842
|
+
deduplication?: {
|
14843
|
+
id: string;
|
14844
|
+
label: TranslationConfig;
|
14845
|
+
query: import("./DeduplicationConfig").ClauseOutput;
|
14846
|
+
} | undefined;
|
14833
14847
|
} | {
|
14834
14848
|
type: "DELETE";
|
14835
14849
|
label: TranslationConfig;
|
@@ -14841,6 +14855,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
14841
14855
|
conditional: import(".").JSONSchema;
|
14842
14856
|
})[];
|
14843
14857
|
draft?: boolean | undefined;
|
14858
|
+
deduplication?: {
|
14859
|
+
id: string;
|
14860
|
+
label: TranslationConfig;
|
14861
|
+
query: import("./DeduplicationConfig").ClauseOutput;
|
14862
|
+
} | undefined;
|
14844
14863
|
} | {
|
14845
14864
|
type: "PRINT_CERTIFICATE";
|
14846
14865
|
label: TranslationConfig;
|
@@ -16770,6 +16789,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
16770
16789
|
})[];
|
16771
16790
|
};
|
16772
16791
|
draft?: boolean | undefined;
|
16792
|
+
deduplication?: {
|
16793
|
+
id: string;
|
16794
|
+
label: TranslationConfig;
|
16795
|
+
query: import("./DeduplicationConfig").ClauseOutput;
|
16796
|
+
} | undefined;
|
16773
16797
|
} | {
|
16774
16798
|
type: "REQUEST_CORRECTION";
|
16775
16799
|
label: TranslationConfig;
|
@@ -18699,6 +18723,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
18699
18723
|
})[];
|
18700
18724
|
};
|
18701
18725
|
draft?: boolean | undefined;
|
18726
|
+
deduplication?: {
|
18727
|
+
id: string;
|
18728
|
+
label: TranslationConfig;
|
18729
|
+
query: import("./DeduplicationConfig").ClauseOutput;
|
18730
|
+
} | undefined;
|
18702
18731
|
} | {
|
18703
18732
|
type: "REJECT_CORRECTION";
|
18704
18733
|
label: TranslationConfig;
|
@@ -18710,6 +18739,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
18710
18739
|
conditional: import(".").JSONSchema;
|
18711
18740
|
})[];
|
18712
18741
|
draft?: boolean | undefined;
|
18742
|
+
deduplication?: {
|
18743
|
+
id: string;
|
18744
|
+
label: TranslationConfig;
|
18745
|
+
query: import("./DeduplicationConfig").ClauseOutput;
|
18746
|
+
} | undefined;
|
18713
18747
|
} | {
|
18714
18748
|
type: "APPROVE_CORRECTION";
|
18715
18749
|
label: TranslationConfig;
|
@@ -18721,6 +18755,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
18721
18755
|
conditional: import(".").JSONSchema;
|
18722
18756
|
})[];
|
18723
18757
|
draft?: boolean | undefined;
|
18758
|
+
deduplication?: {
|
18759
|
+
id: string;
|
18760
|
+
label: TranslationConfig;
|
18761
|
+
query: import("./DeduplicationConfig").ClauseOutput;
|
18762
|
+
} | undefined;
|
18724
18763
|
})[];
|
18725
18764
|
label: TranslationConfig;
|
18726
18765
|
summary: {
|
@@ -18743,11 +18782,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
18743
18782
|
emptyValueMessage?: TranslationConfig | undefined;
|
18744
18783
|
})[];
|
18745
18784
|
};
|
18746
|
-
deduplication: {
|
18747
|
-
id: string;
|
18748
|
-
label: TranslationConfig;
|
18749
|
-
query: import("./DeduplicationConfig").ClauseOutput;
|
18750
|
-
}[];
|
18751
18785
|
advancedSearch: {
|
18752
18786
|
title: TranslationConfig;
|
18753
18787
|
fields: ({
|
@@ -21810,6 +21844,15 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
21810
21844
|
type: "ENABLE";
|
21811
21845
|
conditional: import(".").JSONSchema;
|
21812
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;
|
21813
21856
|
} | {
|
21814
21857
|
type: "DECLARE";
|
21815
21858
|
label: {
|
@@ -23310,6 +23353,15 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
23310
23353
|
type: "ENABLE";
|
23311
23354
|
conditional: import(".").JSONSchema;
|
23312
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;
|
23313
23365
|
} | {
|
23314
23366
|
type: "VALIDATE";
|
23315
23367
|
label: {
|
@@ -24810,6 +24862,15 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
24810
24862
|
type: "ENABLE";
|
24811
24863
|
conditional: import(".").JSONSchema;
|
24812
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;
|
24813
24874
|
} | {
|
24814
24875
|
type: "REGISTER";
|
24815
24876
|
label: {
|
@@ -26310,6 +26371,15 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
26310
26371
|
type: "ENABLE";
|
26311
26372
|
conditional: import(".").JSONSchema;
|
26312
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;
|
26313
26383
|
} | {
|
26314
26384
|
type: "REJECT";
|
26315
26385
|
label: {
|
@@ -26325,6 +26395,15 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
26325
26395
|
type: "ENABLE";
|
26326
26396
|
conditional: import(".").JSONSchema;
|
26327
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;
|
26328
26407
|
} | {
|
26329
26408
|
type: "MARKED_AS_DUPLICATE";
|
26330
26409
|
label: {
|
@@ -26340,6 +26419,15 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
26340
26419
|
type: "ENABLE";
|
26341
26420
|
conditional: import(".").JSONSchema;
|
26342
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;
|
26343
26431
|
} | {
|
26344
26432
|
type: "ARCHIVE";
|
26345
26433
|
label: {
|
@@ -26355,6 +26443,15 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
26355
26443
|
type: "ENABLE";
|
26356
26444
|
conditional: import(".").JSONSchema;
|
26357
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;
|
26358
26455
|
} | {
|
26359
26456
|
type: "DELETE";
|
26360
26457
|
label: {
|
@@ -26370,6 +26467,15 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
26370
26467
|
type: "ENABLE";
|
26371
26468
|
conditional: import(".").JSONSchema;
|
26372
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;
|
26373
26479
|
} | {
|
26374
26480
|
type: "PRINT_CERTIFICATE";
|
26375
26481
|
label: {
|
@@ -29395,6 +29501,15 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
29395
29501
|
type: "ENABLE";
|
29396
29502
|
conditional: import(".").JSONSchema;
|
29397
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;
|
29398
29513
|
} | {
|
29399
29514
|
type: "REQUEST_CORRECTION";
|
29400
29515
|
label: {
|
@@ -32420,6 +32535,15 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
32420
32535
|
type: "ENABLE";
|
32421
32536
|
conditional: import(".").JSONSchema;
|
32422
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;
|
32423
32547
|
} | {
|
32424
32548
|
type: "REJECT_CORRECTION";
|
32425
32549
|
label: {
|
@@ -32435,6 +32559,15 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
32435
32559
|
type: "ENABLE";
|
32436
32560
|
conditional: import(".").JSONSchema;
|
32437
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;
|
32438
32571
|
} | {
|
32439
32572
|
type: "APPROVE_CORRECTION";
|
32440
32573
|
label: {
|
@@ -32450,6 +32583,15 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
32450
32583
|
type: "ENABLE";
|
32451
32584
|
conditional: import(".").JSONSchema;
|
32452
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;
|
32453
32595
|
})[];
|
32454
32596
|
label: {
|
32455
32597
|
id: string;
|
@@ -32504,15 +32646,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
32504
32646
|
description: string;
|
32505
32647
|
defaultMessage: string;
|
32506
32648
|
} | undefined;
|
32507
|
-
deduplication?: {
|
32508
|
-
id: string;
|
32509
|
-
label: {
|
32510
|
-
id: string;
|
32511
|
-
description: string;
|
32512
|
-
defaultMessage: string;
|
32513
|
-
};
|
32514
|
-
query: import("./DeduplicationConfig").ClauseInput;
|
32515
|
-
}[] | undefined;
|
32516
32649
|
advancedSearch?: {
|
32517
32650
|
title: {
|
32518
32651
|
id: string;
|
@@ -34515,6 +34648,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
34515
34648
|
})[];
|
34516
34649
|
};
|
34517
34650
|
draft?: boolean | undefined;
|
34651
|
+
deduplication?: {
|
34652
|
+
id: string;
|
34653
|
+
label: TranslationConfig;
|
34654
|
+
query: import("./DeduplicationConfig").ClauseOutput;
|
34655
|
+
} | undefined;
|
34518
34656
|
} | {
|
34519
34657
|
type: "DECLARE";
|
34520
34658
|
label: TranslationConfig;
|
@@ -35475,6 +35613,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
35475
35613
|
})[];
|
35476
35614
|
};
|
35477
35615
|
draft?: boolean | undefined;
|
35616
|
+
deduplication?: {
|
35617
|
+
id: string;
|
35618
|
+
label: TranslationConfig;
|
35619
|
+
query: import("./DeduplicationConfig").ClauseOutput;
|
35620
|
+
} | undefined;
|
35478
35621
|
} | {
|
35479
35622
|
type: "VALIDATE";
|
35480
35623
|
label: TranslationConfig;
|
@@ -36435,6 +36578,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
36435
36578
|
})[];
|
36436
36579
|
};
|
36437
36580
|
draft?: boolean | undefined;
|
36581
|
+
deduplication?: {
|
36582
|
+
id: string;
|
36583
|
+
label: TranslationConfig;
|
36584
|
+
query: import("./DeduplicationConfig").ClauseOutput;
|
36585
|
+
} | undefined;
|
36438
36586
|
} | {
|
36439
36587
|
type: "REGISTER";
|
36440
36588
|
label: TranslationConfig;
|
@@ -37395,6 +37543,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
37395
37543
|
})[];
|
37396
37544
|
};
|
37397
37545
|
draft?: boolean | undefined;
|
37546
|
+
deduplication?: {
|
37547
|
+
id: string;
|
37548
|
+
label: TranslationConfig;
|
37549
|
+
query: import("./DeduplicationConfig").ClauseOutput;
|
37550
|
+
} | undefined;
|
37398
37551
|
} | {
|
37399
37552
|
type: "REJECT";
|
37400
37553
|
label: TranslationConfig;
|
@@ -37406,6 +37559,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
37406
37559
|
conditional: import(".").JSONSchema;
|
37407
37560
|
})[];
|
37408
37561
|
draft?: boolean | undefined;
|
37562
|
+
deduplication?: {
|
37563
|
+
id: string;
|
37564
|
+
label: TranslationConfig;
|
37565
|
+
query: import("./DeduplicationConfig").ClauseOutput;
|
37566
|
+
} | undefined;
|
37409
37567
|
} | {
|
37410
37568
|
type: "MARKED_AS_DUPLICATE";
|
37411
37569
|
label: TranslationConfig;
|
@@ -37417,6 +37575,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
37417
37575
|
conditional: import(".").JSONSchema;
|
37418
37576
|
})[];
|
37419
37577
|
draft?: boolean | undefined;
|
37578
|
+
deduplication?: {
|
37579
|
+
id: string;
|
37580
|
+
label: TranslationConfig;
|
37581
|
+
query: import("./DeduplicationConfig").ClauseOutput;
|
37582
|
+
} | undefined;
|
37420
37583
|
} | {
|
37421
37584
|
type: "ARCHIVE";
|
37422
37585
|
label: TranslationConfig;
|
@@ -37428,6 +37591,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
37428
37591
|
conditional: import(".").JSONSchema;
|
37429
37592
|
})[];
|
37430
37593
|
draft?: boolean | undefined;
|
37594
|
+
deduplication?: {
|
37595
|
+
id: string;
|
37596
|
+
label: TranslationConfig;
|
37597
|
+
query: import("./DeduplicationConfig").ClauseOutput;
|
37598
|
+
} | undefined;
|
37431
37599
|
} | {
|
37432
37600
|
type: "DELETE";
|
37433
37601
|
label: TranslationConfig;
|
@@ -37439,6 +37607,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
37439
37607
|
conditional: import(".").JSONSchema;
|
37440
37608
|
})[];
|
37441
37609
|
draft?: boolean | undefined;
|
37610
|
+
deduplication?: {
|
37611
|
+
id: string;
|
37612
|
+
label: TranslationConfig;
|
37613
|
+
query: import("./DeduplicationConfig").ClauseOutput;
|
37614
|
+
} | undefined;
|
37442
37615
|
} | {
|
37443
37616
|
type: "PRINT_CERTIFICATE";
|
37444
37617
|
label: TranslationConfig;
|
@@ -39368,6 +39541,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
39368
39541
|
})[];
|
39369
39542
|
};
|
39370
39543
|
draft?: boolean | undefined;
|
39544
|
+
deduplication?: {
|
39545
|
+
id: string;
|
39546
|
+
label: TranslationConfig;
|
39547
|
+
query: import("./DeduplicationConfig").ClauseOutput;
|
39548
|
+
} | undefined;
|
39371
39549
|
} | {
|
39372
39550
|
type: "REQUEST_CORRECTION";
|
39373
39551
|
label: TranslationConfig;
|
@@ -41297,6 +41475,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
41297
41475
|
})[];
|
41298
41476
|
};
|
41299
41477
|
draft?: boolean | undefined;
|
41478
|
+
deduplication?: {
|
41479
|
+
id: string;
|
41480
|
+
label: TranslationConfig;
|
41481
|
+
query: import("./DeduplicationConfig").ClauseOutput;
|
41482
|
+
} | undefined;
|
41300
41483
|
} | {
|
41301
41484
|
type: "REJECT_CORRECTION";
|
41302
41485
|
label: TranslationConfig;
|
@@ -41308,6 +41491,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
41308
41491
|
conditional: import(".").JSONSchema;
|
41309
41492
|
})[];
|
41310
41493
|
draft?: boolean | undefined;
|
41494
|
+
deduplication?: {
|
41495
|
+
id: string;
|
41496
|
+
label: TranslationConfig;
|
41497
|
+
query: import("./DeduplicationConfig").ClauseOutput;
|
41498
|
+
} | undefined;
|
41311
41499
|
} | {
|
41312
41500
|
type: "APPROVE_CORRECTION";
|
41313
41501
|
label: TranslationConfig;
|
@@ -41319,6 +41507,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
41319
41507
|
conditional: import(".").JSONSchema;
|
41320
41508
|
})[];
|
41321
41509
|
draft?: boolean | undefined;
|
41510
|
+
deduplication?: {
|
41511
|
+
id: string;
|
41512
|
+
label: TranslationConfig;
|
41513
|
+
query: import("./DeduplicationConfig").ClauseOutput;
|
41514
|
+
} | undefined;
|
41322
41515
|
})[];
|
41323
41516
|
label: TranslationConfig;
|
41324
41517
|
summary: {
|
@@ -41341,11 +41534,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
41341
41534
|
emptyValueMessage?: TranslationConfig | undefined;
|
41342
41535
|
})[];
|
41343
41536
|
};
|
41344
|
-
deduplication: {
|
41345
|
-
id: string;
|
41346
|
-
label: TranslationConfig;
|
41347
|
-
query: import("./DeduplicationConfig").ClauseOutput;
|
41348
|
-
}[];
|
41349
41537
|
advancedSearch: {
|
41350
41538
|
title: TranslationConfig;
|
41351
41539
|
fields: ({
|
@@ -44408,6 +44596,15 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
44408
44596
|
type: "ENABLE";
|
44409
44597
|
conditional: import(".").JSONSchema;
|
44410
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;
|
44411
44608
|
} | {
|
44412
44609
|
type: "DECLARE";
|
44413
44610
|
label: {
|
@@ -45908,6 +46105,15 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
45908
46105
|
type: "ENABLE";
|
45909
46106
|
conditional: import(".").JSONSchema;
|
45910
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;
|
45911
46117
|
} | {
|
45912
46118
|
type: "VALIDATE";
|
45913
46119
|
label: {
|
@@ -47408,6 +47614,15 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
47408
47614
|
type: "ENABLE";
|
47409
47615
|
conditional: import(".").JSONSchema;
|
47410
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;
|
47411
47626
|
} | {
|
47412
47627
|
type: "REGISTER";
|
47413
47628
|
label: {
|
@@ -48908,6 +49123,15 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
48908
49123
|
type: "ENABLE";
|
48909
49124
|
conditional: import(".").JSONSchema;
|
48910
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;
|
48911
49135
|
} | {
|
48912
49136
|
type: "REJECT";
|
48913
49137
|
label: {
|
@@ -48923,6 +49147,15 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
48923
49147
|
type: "ENABLE";
|
48924
49148
|
conditional: import(".").JSONSchema;
|
48925
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;
|
48926
49159
|
} | {
|
48927
49160
|
type: "MARKED_AS_DUPLICATE";
|
48928
49161
|
label: {
|
@@ -48938,6 +49171,15 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
48938
49171
|
type: "ENABLE";
|
48939
49172
|
conditional: import(".").JSONSchema;
|
48940
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;
|
48941
49183
|
} | {
|
48942
49184
|
type: "ARCHIVE";
|
48943
49185
|
label: {
|
@@ -48953,6 +49195,15 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
48953
49195
|
type: "ENABLE";
|
48954
49196
|
conditional: import(".").JSONSchema;
|
48955
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;
|
48956
49207
|
} | {
|
48957
49208
|
type: "DELETE";
|
48958
49209
|
label: {
|
@@ -48968,6 +49219,15 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
48968
49219
|
type: "ENABLE";
|
48969
49220
|
conditional: import(".").JSONSchema;
|
48970
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;
|
48971
49231
|
} | {
|
48972
49232
|
type: "PRINT_CERTIFICATE";
|
48973
49233
|
label: {
|
@@ -51993,6 +52253,15 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
51993
52253
|
type: "ENABLE";
|
51994
52254
|
conditional: import(".").JSONSchema;
|
51995
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;
|
51996
52265
|
} | {
|
51997
52266
|
type: "REQUEST_CORRECTION";
|
51998
52267
|
label: {
|
@@ -55018,6 +55287,15 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
55018
55287
|
type: "ENABLE";
|
55019
55288
|
conditional: import(".").JSONSchema;
|
55020
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;
|
55021
55299
|
} | {
|
55022
55300
|
type: "REJECT_CORRECTION";
|
55023
55301
|
label: {
|
@@ -55033,6 +55311,15 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
55033
55311
|
type: "ENABLE";
|
55034
55312
|
conditional: import(".").JSONSchema;
|
55035
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;
|
55036
55323
|
} | {
|
55037
55324
|
type: "APPROVE_CORRECTION";
|
55038
55325
|
label: {
|
@@ -55048,6 +55335,15 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
55048
55335
|
type: "ENABLE";
|
55049
55336
|
conditional: import(".").JSONSchema;
|
55050
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;
|
55051
55347
|
})[];
|
55052
55348
|
label: {
|
55053
55349
|
id: string;
|
@@ -55102,15 +55398,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
55102
55398
|
description: string;
|
55103
55399
|
defaultMessage: string;
|
55104
55400
|
} | undefined;
|
55105
|
-
deduplication?: {
|
55106
|
-
id: string;
|
55107
|
-
label: {
|
55108
|
-
id: string;
|
55109
|
-
description: string;
|
55110
|
-
defaultMessage: string;
|
55111
|
-
};
|
55112
|
-
query: import("./DeduplicationConfig").ClauseInput;
|
55113
|
-
}[] | undefined;
|
55114
55401
|
advancedSearch?: {
|
55115
55402
|
title: {
|
55116
55403
|
id: string;
|