@opencrvs/toolkit 1.8.0-rc.f89fbcb → 1.8.0-rc.f8aa0c5
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 +589 -589
- package/dist/commons/events/ActionConfig.d.ts +256 -0
- package/dist/commons/events/ActionDocument.d.ts +700 -700
- package/dist/commons/events/ActionInput.d.ts +600 -600
- package/dist/commons/events/AdvancedSearchConfig.d.ts +18 -40
- package/dist/commons/events/CompositeFieldValue.d.ts +6 -6
- package/dist/commons/events/Draft.d.ts +54 -54
- package/dist/commons/events/EventConfig.d.ts +106 -18
- package/dist/commons/events/EventDocument.d.ts +436 -436
- package/dist/commons/events/EventIndex.d.ts +15 -10
- package/dist/commons/events/FieldConfig.d.ts +20 -0
- 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 +108 -0
- package/dist/commons/events/PageConfig.d.ts +28 -0
- package/dist/commons/events/WorkqueueConfig.d.ts +14 -14
- package/dist/commons/events/defineConfig.d.ts +22 -2
- package/dist/commons/events/field.d.ts +1 -13
- package/dist/commons/events/test.utils.d.ts +12 -12
- package/dist/commons/events/utils.d.ts +41 -11
- package/dist/events/index.js +48 -57
- package/dist/scopes/index.d.ts +92 -6
- package/dist/scopes/index.js +38 -9
- package/package.json +1 -1
@@ -1890,10 +1890,14 @@ export declare const DeclarationReviewConfig: z.ZodObject<{
|
|
1890
1890
|
description: string;
|
1891
1891
|
defaultMessage: string;
|
1892
1892
|
}>>;
|
1893
|
+
includeMiddlename: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1894
|
+
searchMode: z.ZodOptional<z.ZodBoolean>;
|
1893
1895
|
}, "strip", z.ZodTypeAny, {
|
1894
1896
|
maxLength?: number | undefined;
|
1895
1897
|
prefix?: TranslationConfig | undefined;
|
1896
1898
|
postfix?: TranslationConfig | undefined;
|
1899
|
+
includeMiddlename?: boolean | undefined;
|
1900
|
+
searchMode?: boolean | undefined;
|
1897
1901
|
}, {
|
1898
1902
|
maxLength?: number | undefined;
|
1899
1903
|
prefix?: {
|
@@ -1906,6 +1910,8 @@ export declare const DeclarationReviewConfig: z.ZodObject<{
|
|
1906
1910
|
description: string;
|
1907
1911
|
defaultMessage: string;
|
1908
1912
|
} | undefined;
|
1913
|
+
includeMiddlename?: boolean | undefined;
|
1914
|
+
searchMode?: boolean | undefined;
|
1909
1915
|
}>>;
|
1910
1916
|
}>, "strip", z.ZodTypeAny, {
|
1911
1917
|
type: "NAME";
|
@@ -1941,6 +1947,8 @@ export declare const DeclarationReviewConfig: z.ZodObject<{
|
|
1941
1947
|
maxLength?: number | undefined;
|
1942
1948
|
prefix?: TranslationConfig | undefined;
|
1943
1949
|
postfix?: TranslationConfig | undefined;
|
1950
|
+
includeMiddlename?: boolean | undefined;
|
1951
|
+
searchMode?: boolean | undefined;
|
1944
1952
|
} | undefined;
|
1945
1953
|
}, {
|
1946
1954
|
type: "NAME";
|
@@ -2000,6 +2008,8 @@ export declare const DeclarationReviewConfig: z.ZodObject<{
|
|
2000
2008
|
description: string;
|
2001
2009
|
defaultMessage: string;
|
2002
2010
|
} | undefined;
|
2011
|
+
includeMiddlename?: boolean | undefined;
|
2012
|
+
searchMode?: boolean | undefined;
|
2003
2013
|
} | undefined;
|
2004
2014
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2005
2015
|
id: z.ZodString;
|
@@ -4462,6 +4472,8 @@ export declare const DeclarationReviewConfig: z.ZodObject<{
|
|
4462
4472
|
maxLength?: number | undefined;
|
4463
4473
|
prefix?: TranslationConfig | undefined;
|
4464
4474
|
postfix?: TranslationConfig | undefined;
|
4475
|
+
includeMiddlename?: boolean | undefined;
|
4476
|
+
searchMode?: boolean | undefined;
|
4465
4477
|
} | undefined;
|
4466
4478
|
} | {
|
4467
4479
|
type: "PHONE";
|
@@ -5602,6 +5614,8 @@ export declare const DeclarationReviewConfig: z.ZodObject<{
|
|
5602
5614
|
description: string;
|
5603
5615
|
defaultMessage: string;
|
5604
5616
|
} | undefined;
|
5617
|
+
includeMiddlename?: boolean | undefined;
|
5618
|
+
searchMode?: boolean | undefined;
|
5605
5619
|
} | undefined;
|
5606
5620
|
} | {
|
5607
5621
|
type: "PHONE";
|
@@ -8119,10 +8133,14 @@ declare const ReadActionConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
8119
8133
|
description: string;
|
8120
8134
|
defaultMessage: string;
|
8121
8135
|
}>>;
|
8136
|
+
includeMiddlename: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8137
|
+
searchMode: z.ZodOptional<z.ZodBoolean>;
|
8122
8138
|
}, "strip", z.ZodTypeAny, {
|
8123
8139
|
maxLength?: number | undefined;
|
8124
8140
|
prefix?: TranslationConfig | undefined;
|
8125
8141
|
postfix?: TranslationConfig | undefined;
|
8142
|
+
includeMiddlename?: boolean | undefined;
|
8143
|
+
searchMode?: boolean | undefined;
|
8126
8144
|
}, {
|
8127
8145
|
maxLength?: number | undefined;
|
8128
8146
|
prefix?: {
|
@@ -8135,6 +8153,8 @@ declare const ReadActionConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
8135
8153
|
description: string;
|
8136
8154
|
defaultMessage: string;
|
8137
8155
|
} | undefined;
|
8156
|
+
includeMiddlename?: boolean | undefined;
|
8157
|
+
searchMode?: boolean | undefined;
|
8138
8158
|
}>>;
|
8139
8159
|
}>, "strip", z.ZodTypeAny, {
|
8140
8160
|
type: "NAME";
|
@@ -8170,6 +8190,8 @@ declare const ReadActionConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
8170
8190
|
maxLength?: number | undefined;
|
8171
8191
|
prefix?: TranslationConfig | undefined;
|
8172
8192
|
postfix?: TranslationConfig | undefined;
|
8193
|
+
includeMiddlename?: boolean | undefined;
|
8194
|
+
searchMode?: boolean | undefined;
|
8173
8195
|
} | undefined;
|
8174
8196
|
}, {
|
8175
8197
|
type: "NAME";
|
@@ -8229,6 +8251,8 @@ declare const ReadActionConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
8229
8251
|
description: string;
|
8230
8252
|
defaultMessage: string;
|
8231
8253
|
} | undefined;
|
8254
|
+
includeMiddlename?: boolean | undefined;
|
8255
|
+
searchMode?: boolean | undefined;
|
8232
8256
|
} | undefined;
|
8233
8257
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
8234
8258
|
id: z.ZodString;
|
@@ -10691,6 +10715,8 @@ declare const ReadActionConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
10691
10715
|
maxLength?: number | undefined;
|
10692
10716
|
prefix?: TranslationConfig | undefined;
|
10693
10717
|
postfix?: TranslationConfig | undefined;
|
10718
|
+
includeMiddlename?: boolean | undefined;
|
10719
|
+
searchMode?: boolean | undefined;
|
10694
10720
|
} | undefined;
|
10695
10721
|
} | {
|
10696
10722
|
type: "PHONE";
|
@@ -11831,6 +11857,8 @@ declare const ReadActionConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
11831
11857
|
description: string;
|
11832
11858
|
defaultMessage: string;
|
11833
11859
|
} | undefined;
|
11860
|
+
includeMiddlename?: boolean | undefined;
|
11861
|
+
searchMode?: boolean | undefined;
|
11834
11862
|
} | undefined;
|
11835
11863
|
} | {
|
11836
11864
|
type: "PHONE";
|
@@ -12870,6 +12898,8 @@ declare const ReadActionConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
12870
12898
|
maxLength?: number | undefined;
|
12871
12899
|
prefix?: TranslationConfig | undefined;
|
12872
12900
|
postfix?: TranslationConfig | undefined;
|
12901
|
+
includeMiddlename?: boolean | undefined;
|
12902
|
+
searchMode?: boolean | undefined;
|
12873
12903
|
} | undefined;
|
12874
12904
|
} | {
|
12875
12905
|
type: "PHONE";
|
@@ -14019,6 +14049,8 @@ declare const ReadActionConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
14019
14049
|
description: string;
|
14020
14050
|
defaultMessage: string;
|
14021
14051
|
} | undefined;
|
14052
|
+
includeMiddlename?: boolean | undefined;
|
14053
|
+
searchMode?: boolean | undefined;
|
14022
14054
|
} | undefined;
|
14023
14055
|
} | {
|
14024
14056
|
type: "PHONE";
|
@@ -16493,10 +16525,14 @@ declare const DeclareConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
16493
16525
|
description: string;
|
16494
16526
|
defaultMessage: string;
|
16495
16527
|
}>>;
|
16528
|
+
includeMiddlename: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
16529
|
+
searchMode: z.ZodOptional<z.ZodBoolean>;
|
16496
16530
|
}, "strip", z.ZodTypeAny, {
|
16497
16531
|
maxLength?: number | undefined;
|
16498
16532
|
prefix?: TranslationConfig | undefined;
|
16499
16533
|
postfix?: TranslationConfig | undefined;
|
16534
|
+
includeMiddlename?: boolean | undefined;
|
16535
|
+
searchMode?: boolean | undefined;
|
16500
16536
|
}, {
|
16501
16537
|
maxLength?: number | undefined;
|
16502
16538
|
prefix?: {
|
@@ -16509,6 +16545,8 @@ declare const DeclareConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
16509
16545
|
description: string;
|
16510
16546
|
defaultMessage: string;
|
16511
16547
|
} | undefined;
|
16548
|
+
includeMiddlename?: boolean | undefined;
|
16549
|
+
searchMode?: boolean | undefined;
|
16512
16550
|
}>>;
|
16513
16551
|
}>, "strip", z.ZodTypeAny, {
|
16514
16552
|
type: "NAME";
|
@@ -16544,6 +16582,8 @@ declare const DeclareConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
16544
16582
|
maxLength?: number | undefined;
|
16545
16583
|
prefix?: TranslationConfig | undefined;
|
16546
16584
|
postfix?: TranslationConfig | undefined;
|
16585
|
+
includeMiddlename?: boolean | undefined;
|
16586
|
+
searchMode?: boolean | undefined;
|
16547
16587
|
} | undefined;
|
16548
16588
|
}, {
|
16549
16589
|
type: "NAME";
|
@@ -16603,6 +16643,8 @@ declare const DeclareConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
16603
16643
|
description: string;
|
16604
16644
|
defaultMessage: string;
|
16605
16645
|
} | undefined;
|
16646
|
+
includeMiddlename?: boolean | undefined;
|
16647
|
+
searchMode?: boolean | undefined;
|
16606
16648
|
} | undefined;
|
16607
16649
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
16608
16650
|
id: z.ZodString;
|
@@ -19065,6 +19107,8 @@ declare const DeclareConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
19065
19107
|
maxLength?: number | undefined;
|
19066
19108
|
prefix?: TranslationConfig | undefined;
|
19067
19109
|
postfix?: TranslationConfig | undefined;
|
19110
|
+
includeMiddlename?: boolean | undefined;
|
19111
|
+
searchMode?: boolean | undefined;
|
19068
19112
|
} | undefined;
|
19069
19113
|
} | {
|
19070
19114
|
type: "PHONE";
|
@@ -20205,6 +20249,8 @@ declare const DeclareConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
20205
20249
|
description: string;
|
20206
20250
|
defaultMessage: string;
|
20207
20251
|
} | undefined;
|
20252
|
+
includeMiddlename?: boolean | undefined;
|
20253
|
+
searchMode?: boolean | undefined;
|
20208
20254
|
} | undefined;
|
20209
20255
|
} | {
|
20210
20256
|
type: "PHONE";
|
@@ -21244,6 +21290,8 @@ declare const DeclareConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
21244
21290
|
maxLength?: number | undefined;
|
21245
21291
|
prefix?: TranslationConfig | undefined;
|
21246
21292
|
postfix?: TranslationConfig | undefined;
|
21293
|
+
includeMiddlename?: boolean | undefined;
|
21294
|
+
searchMode?: boolean | undefined;
|
21247
21295
|
} | undefined;
|
21248
21296
|
} | {
|
21249
21297
|
type: "PHONE";
|
@@ -22393,6 +22441,8 @@ declare const DeclareConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
22393
22441
|
description: string;
|
22394
22442
|
defaultMessage: string;
|
22395
22443
|
} | undefined;
|
22444
|
+
includeMiddlename?: boolean | undefined;
|
22445
|
+
searchMode?: boolean | undefined;
|
22396
22446
|
} | undefined;
|
22397
22447
|
} | {
|
22398
22448
|
type: "PHONE";
|
@@ -24867,10 +24917,14 @@ declare const ValidateConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
24867
24917
|
description: string;
|
24868
24918
|
defaultMessage: string;
|
24869
24919
|
}>>;
|
24920
|
+
includeMiddlename: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
24921
|
+
searchMode: z.ZodOptional<z.ZodBoolean>;
|
24870
24922
|
}, "strip", z.ZodTypeAny, {
|
24871
24923
|
maxLength?: number | undefined;
|
24872
24924
|
prefix?: TranslationConfig | undefined;
|
24873
24925
|
postfix?: TranslationConfig | undefined;
|
24926
|
+
includeMiddlename?: boolean | undefined;
|
24927
|
+
searchMode?: boolean | undefined;
|
24874
24928
|
}, {
|
24875
24929
|
maxLength?: number | undefined;
|
24876
24930
|
prefix?: {
|
@@ -24883,6 +24937,8 @@ declare const ValidateConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
24883
24937
|
description: string;
|
24884
24938
|
defaultMessage: string;
|
24885
24939
|
} | undefined;
|
24940
|
+
includeMiddlename?: boolean | undefined;
|
24941
|
+
searchMode?: boolean | undefined;
|
24886
24942
|
}>>;
|
24887
24943
|
}>, "strip", z.ZodTypeAny, {
|
24888
24944
|
type: "NAME";
|
@@ -24918,6 +24974,8 @@ declare const ValidateConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
24918
24974
|
maxLength?: number | undefined;
|
24919
24975
|
prefix?: TranslationConfig | undefined;
|
24920
24976
|
postfix?: TranslationConfig | undefined;
|
24977
|
+
includeMiddlename?: boolean | undefined;
|
24978
|
+
searchMode?: boolean | undefined;
|
24921
24979
|
} | undefined;
|
24922
24980
|
}, {
|
24923
24981
|
type: "NAME";
|
@@ -24977,6 +25035,8 @@ declare const ValidateConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
24977
25035
|
description: string;
|
24978
25036
|
defaultMessage: string;
|
24979
25037
|
} | undefined;
|
25038
|
+
includeMiddlename?: boolean | undefined;
|
25039
|
+
searchMode?: boolean | undefined;
|
24980
25040
|
} | undefined;
|
24981
25041
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
24982
25042
|
id: z.ZodString;
|
@@ -27439,6 +27499,8 @@ declare const ValidateConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
27439
27499
|
maxLength?: number | undefined;
|
27440
27500
|
prefix?: TranslationConfig | undefined;
|
27441
27501
|
postfix?: TranslationConfig | undefined;
|
27502
|
+
includeMiddlename?: boolean | undefined;
|
27503
|
+
searchMode?: boolean | undefined;
|
27442
27504
|
} | undefined;
|
27443
27505
|
} | {
|
27444
27506
|
type: "PHONE";
|
@@ -28579,6 +28641,8 @@ declare const ValidateConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
28579
28641
|
description: string;
|
28580
28642
|
defaultMessage: string;
|
28581
28643
|
} | undefined;
|
28644
|
+
includeMiddlename?: boolean | undefined;
|
28645
|
+
searchMode?: boolean | undefined;
|
28582
28646
|
} | undefined;
|
28583
28647
|
} | {
|
28584
28648
|
type: "PHONE";
|
@@ -29618,6 +29682,8 @@ declare const ValidateConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
29618
29682
|
maxLength?: number | undefined;
|
29619
29683
|
prefix?: TranslationConfig | undefined;
|
29620
29684
|
postfix?: TranslationConfig | undefined;
|
29685
|
+
includeMiddlename?: boolean | undefined;
|
29686
|
+
searchMode?: boolean | undefined;
|
29621
29687
|
} | undefined;
|
29622
29688
|
} | {
|
29623
29689
|
type: "PHONE";
|
@@ -30767,6 +30833,8 @@ declare const ValidateConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
30767
30833
|
description: string;
|
30768
30834
|
defaultMessage: string;
|
30769
30835
|
} | undefined;
|
30836
|
+
includeMiddlename?: boolean | undefined;
|
30837
|
+
searchMode?: boolean | undefined;
|
30770
30838
|
} | undefined;
|
30771
30839
|
} | {
|
30772
30840
|
type: "PHONE";
|
@@ -33241,10 +33309,14 @@ declare const RegisterConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
33241
33309
|
description: string;
|
33242
33310
|
defaultMessage: string;
|
33243
33311
|
}>>;
|
33312
|
+
includeMiddlename: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
33313
|
+
searchMode: z.ZodOptional<z.ZodBoolean>;
|
33244
33314
|
}, "strip", z.ZodTypeAny, {
|
33245
33315
|
maxLength?: number | undefined;
|
33246
33316
|
prefix?: TranslationConfig | undefined;
|
33247
33317
|
postfix?: TranslationConfig | undefined;
|
33318
|
+
includeMiddlename?: boolean | undefined;
|
33319
|
+
searchMode?: boolean | undefined;
|
33248
33320
|
}, {
|
33249
33321
|
maxLength?: number | undefined;
|
33250
33322
|
prefix?: {
|
@@ -33257,6 +33329,8 @@ declare const RegisterConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
33257
33329
|
description: string;
|
33258
33330
|
defaultMessage: string;
|
33259
33331
|
} | undefined;
|
33332
|
+
includeMiddlename?: boolean | undefined;
|
33333
|
+
searchMode?: boolean | undefined;
|
33260
33334
|
}>>;
|
33261
33335
|
}>, "strip", z.ZodTypeAny, {
|
33262
33336
|
type: "NAME";
|
@@ -33292,6 +33366,8 @@ declare const RegisterConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
33292
33366
|
maxLength?: number | undefined;
|
33293
33367
|
prefix?: TranslationConfig | undefined;
|
33294
33368
|
postfix?: TranslationConfig | undefined;
|
33369
|
+
includeMiddlename?: boolean | undefined;
|
33370
|
+
searchMode?: boolean | undefined;
|
33295
33371
|
} | undefined;
|
33296
33372
|
}, {
|
33297
33373
|
type: "NAME";
|
@@ -33351,6 +33427,8 @@ declare const RegisterConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
33351
33427
|
description: string;
|
33352
33428
|
defaultMessage: string;
|
33353
33429
|
} | undefined;
|
33430
|
+
includeMiddlename?: boolean | undefined;
|
33431
|
+
searchMode?: boolean | undefined;
|
33354
33432
|
} | undefined;
|
33355
33433
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
33356
33434
|
id: z.ZodString;
|
@@ -35813,6 +35891,8 @@ declare const RegisterConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
35813
35891
|
maxLength?: number | undefined;
|
35814
35892
|
prefix?: TranslationConfig | undefined;
|
35815
35893
|
postfix?: TranslationConfig | undefined;
|
35894
|
+
includeMiddlename?: boolean | undefined;
|
35895
|
+
searchMode?: boolean | undefined;
|
35816
35896
|
} | undefined;
|
35817
35897
|
} | {
|
35818
35898
|
type: "PHONE";
|
@@ -36953,6 +37033,8 @@ declare const RegisterConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
36953
37033
|
description: string;
|
36954
37034
|
defaultMessage: string;
|
36955
37035
|
} | undefined;
|
37036
|
+
includeMiddlename?: boolean | undefined;
|
37037
|
+
searchMode?: boolean | undefined;
|
36956
37038
|
} | undefined;
|
36957
37039
|
} | {
|
36958
37040
|
type: "PHONE";
|
@@ -37992,6 +38074,8 @@ declare const RegisterConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
37992
38074
|
maxLength?: number | undefined;
|
37993
38075
|
prefix?: TranslationConfig | undefined;
|
37994
38076
|
postfix?: TranslationConfig | undefined;
|
38077
|
+
includeMiddlename?: boolean | undefined;
|
38078
|
+
searchMode?: boolean | undefined;
|
37995
38079
|
} | undefined;
|
37996
38080
|
} | {
|
37997
38081
|
type: "PHONE";
|
@@ -39141,6 +39225,8 @@ declare const RegisterConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
39141
39225
|
description: string;
|
39142
39226
|
defaultMessage: string;
|
39143
39227
|
} | undefined;
|
39228
|
+
includeMiddlename?: boolean | undefined;
|
39229
|
+
searchMode?: boolean | undefined;
|
39144
39230
|
} | undefined;
|
39145
39231
|
} | {
|
39146
39232
|
type: "PHONE";
|
@@ -41842,10 +41928,14 @@ declare const PrintCertificateActionConfig: z.ZodObject<z.objectUtil.extendShape
|
|
41842
41928
|
description: string;
|
41843
41929
|
defaultMessage: string;
|
41844
41930
|
}>>;
|
41931
|
+
includeMiddlename: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
41932
|
+
searchMode: z.ZodOptional<z.ZodBoolean>;
|
41845
41933
|
}, "strip", z.ZodTypeAny, {
|
41846
41934
|
maxLength?: number | undefined;
|
41847
41935
|
prefix?: TranslationConfig | undefined;
|
41848
41936
|
postfix?: TranslationConfig | undefined;
|
41937
|
+
includeMiddlename?: boolean | undefined;
|
41938
|
+
searchMode?: boolean | undefined;
|
41849
41939
|
}, {
|
41850
41940
|
maxLength?: number | undefined;
|
41851
41941
|
prefix?: {
|
@@ -41858,6 +41948,8 @@ declare const PrintCertificateActionConfig: z.ZodObject<z.objectUtil.extendShape
|
|
41858
41948
|
description: string;
|
41859
41949
|
defaultMessage: string;
|
41860
41950
|
} | undefined;
|
41951
|
+
includeMiddlename?: boolean | undefined;
|
41952
|
+
searchMode?: boolean | undefined;
|
41861
41953
|
}>>;
|
41862
41954
|
}>, "strip", z.ZodTypeAny, {
|
41863
41955
|
type: "NAME";
|
@@ -41893,6 +41985,8 @@ declare const PrintCertificateActionConfig: z.ZodObject<z.objectUtil.extendShape
|
|
41893
41985
|
maxLength?: number | undefined;
|
41894
41986
|
prefix?: TranslationConfig | undefined;
|
41895
41987
|
postfix?: TranslationConfig | undefined;
|
41988
|
+
includeMiddlename?: boolean | undefined;
|
41989
|
+
searchMode?: boolean | undefined;
|
41896
41990
|
} | undefined;
|
41897
41991
|
}, {
|
41898
41992
|
type: "NAME";
|
@@ -41952,6 +42046,8 @@ declare const PrintCertificateActionConfig: z.ZodObject<z.objectUtil.extendShape
|
|
41952
42046
|
description: string;
|
41953
42047
|
defaultMessage: string;
|
41954
42048
|
} | undefined;
|
42049
|
+
includeMiddlename?: boolean | undefined;
|
42050
|
+
searchMode?: boolean | undefined;
|
41955
42051
|
} | undefined;
|
41956
42052
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
41957
42053
|
id: z.ZodString;
|
@@ -44419,6 +44515,8 @@ declare const PrintCertificateActionConfig: z.ZodObject<z.objectUtil.extendShape
|
|
44419
44515
|
maxLength?: number | undefined;
|
44420
44516
|
prefix?: TranslationConfig | undefined;
|
44421
44517
|
postfix?: TranslationConfig | undefined;
|
44518
|
+
includeMiddlename?: boolean | undefined;
|
44519
|
+
searchMode?: boolean | undefined;
|
44422
44520
|
} | undefined;
|
44423
44521
|
} | {
|
44424
44522
|
type: "PHONE";
|
@@ -45561,6 +45659,8 @@ declare const PrintCertificateActionConfig: z.ZodObject<z.objectUtil.extendShape
|
|
45561
45659
|
description: string;
|
45562
45660
|
defaultMessage: string;
|
45563
45661
|
} | undefined;
|
45662
|
+
includeMiddlename?: boolean | undefined;
|
45663
|
+
searchMode?: boolean | undefined;
|
45564
45664
|
} | undefined;
|
45565
45665
|
} | {
|
45566
45666
|
type: "PHONE";
|
@@ -48000,10 +48100,14 @@ declare const PrintCertificateActionConfig: z.ZodObject<z.objectUtil.extendShape
|
|
48000
48100
|
description: string;
|
48001
48101
|
defaultMessage: string;
|
48002
48102
|
}>>;
|
48103
|
+
includeMiddlename: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
48104
|
+
searchMode: z.ZodOptional<z.ZodBoolean>;
|
48003
48105
|
}, "strip", z.ZodTypeAny, {
|
48004
48106
|
maxLength?: number | undefined;
|
48005
48107
|
prefix?: TranslationConfig | undefined;
|
48006
48108
|
postfix?: TranslationConfig | undefined;
|
48109
|
+
includeMiddlename?: boolean | undefined;
|
48110
|
+
searchMode?: boolean | undefined;
|
48007
48111
|
}, {
|
48008
48112
|
maxLength?: number | undefined;
|
48009
48113
|
prefix?: {
|
@@ -48016,6 +48120,8 @@ declare const PrintCertificateActionConfig: z.ZodObject<z.objectUtil.extendShape
|
|
48016
48120
|
description: string;
|
48017
48121
|
defaultMessage: string;
|
48018
48122
|
} | undefined;
|
48123
|
+
includeMiddlename?: boolean | undefined;
|
48124
|
+
searchMode?: boolean | undefined;
|
48019
48125
|
}>>;
|
48020
48126
|
}>, "strip", z.ZodTypeAny, {
|
48021
48127
|
type: "NAME";
|
@@ -48051,6 +48157,8 @@ declare const PrintCertificateActionConfig: z.ZodObject<z.objectUtil.extendShape
|
|
48051
48157
|
maxLength?: number | undefined;
|
48052
48158
|
prefix?: TranslationConfig | undefined;
|
48053
48159
|
postfix?: TranslationConfig | undefined;
|
48160
|
+
includeMiddlename?: boolean | undefined;
|
48161
|
+
searchMode?: boolean | undefined;
|
48054
48162
|
} | undefined;
|
48055
48163
|
}, {
|
48056
48164
|
type: "NAME";
|
@@ -48110,6 +48218,8 @@ declare const PrintCertificateActionConfig: z.ZodObject<z.objectUtil.extendShape
|
|
48110
48218
|
description: string;
|
48111
48219
|
defaultMessage: string;
|
48112
48220
|
} | undefined;
|
48221
|
+
includeMiddlename?: boolean | undefined;
|
48222
|
+
searchMode?: boolean | undefined;
|
48113
48223
|
} | undefined;
|
48114
48224
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
48115
48225
|
id: z.ZodString;
|
@@ -50703,6 +50813,8 @@ declare const PrintCertificateActionConfig: z.ZodObject<z.objectUtil.extendShape
|
|
50703
50813
|
maxLength?: number | undefined;
|
50704
50814
|
prefix?: TranslationConfig | undefined;
|
50705
50815
|
postfix?: TranslationConfig | undefined;
|
50816
|
+
includeMiddlename?: boolean | undefined;
|
50817
|
+
searchMode?: boolean | undefined;
|
50706
50818
|
} | undefined;
|
50707
50819
|
} | {
|
50708
50820
|
type: "PHONE";
|
@@ -51874,6 +51986,8 @@ declare const PrintCertificateActionConfig: z.ZodObject<z.objectUtil.extendShape
|
|
51874
51986
|
description: string;
|
51875
51987
|
defaultMessage: string;
|
51876
51988
|
} | undefined;
|
51989
|
+
includeMiddlename?: boolean | undefined;
|
51990
|
+
searchMode?: boolean | undefined;
|
51877
51991
|
} | undefined;
|
51878
51992
|
} | {
|
51879
51993
|
type: "PHONE";
|
@@ -52908,6 +53022,8 @@ declare const PrintCertificateActionConfig: z.ZodObject<z.objectUtil.extendShape
|
|
52908
53022
|
maxLength?: number | undefined;
|
52909
53023
|
prefix?: TranslationConfig | undefined;
|
52910
53024
|
postfix?: TranslationConfig | undefined;
|
53025
|
+
includeMiddlename?: boolean | undefined;
|
53026
|
+
searchMode?: boolean | undefined;
|
52911
53027
|
} | undefined;
|
52912
53028
|
} | {
|
52913
53029
|
type: "PHONE";
|
@@ -53759,6 +53875,8 @@ declare const PrintCertificateActionConfig: z.ZodObject<z.objectUtil.extendShape
|
|
53759
53875
|
maxLength?: number | undefined;
|
53760
53876
|
prefix?: TranslationConfig | undefined;
|
53761
53877
|
postfix?: TranslationConfig | undefined;
|
53878
|
+
includeMiddlename?: boolean | undefined;
|
53879
|
+
searchMode?: boolean | undefined;
|
53762
53880
|
} | undefined;
|
53763
53881
|
} | {
|
53764
53882
|
type: "PHONE";
|
@@ -54908,6 +55026,8 @@ declare const PrintCertificateActionConfig: z.ZodObject<z.objectUtil.extendShape
|
|
54908
55026
|
description: string;
|
54909
55027
|
defaultMessage: string;
|
54910
55028
|
} | undefined;
|
55029
|
+
includeMiddlename?: boolean | undefined;
|
55030
|
+
searchMode?: boolean | undefined;
|
54911
55031
|
} | undefined;
|
54912
55032
|
} | {
|
54913
55033
|
type: "PHONE";
|
@@ -56272,6 +56392,8 @@ declare const PrintCertificateActionConfig: z.ZodObject<z.objectUtil.extendShape
|
|
56272
56392
|
description: string;
|
56273
56393
|
defaultMessage: string;
|
56274
56394
|
} | undefined;
|
56395
|
+
includeMiddlename?: boolean | undefined;
|
56396
|
+
searchMode?: boolean | undefined;
|
56275
56397
|
} | undefined;
|
56276
56398
|
} | {
|
56277
56399
|
type: "PHONE";
|
@@ -57317,6 +57439,8 @@ declare const PrintCertificateActionConfig: z.ZodObject<z.objectUtil.extendShape
|
|
57317
57439
|
maxLength?: number | undefined;
|
57318
57440
|
prefix?: TranslationConfig | undefined;
|
57319
57441
|
postfix?: TranslationConfig | undefined;
|
57442
|
+
includeMiddlename?: boolean | undefined;
|
57443
|
+
searchMode?: boolean | undefined;
|
57320
57444
|
} | undefined;
|
57321
57445
|
} | {
|
57322
57446
|
type: "PHONE";
|
@@ -58168,6 +58292,8 @@ declare const PrintCertificateActionConfig: z.ZodObject<z.objectUtil.extendShape
|
|
58168
58292
|
maxLength?: number | undefined;
|
58169
58293
|
prefix?: TranslationConfig | undefined;
|
58170
58294
|
postfix?: TranslationConfig | undefined;
|
58295
|
+
includeMiddlename?: boolean | undefined;
|
58296
|
+
searchMode?: boolean | undefined;
|
58171
58297
|
} | undefined;
|
58172
58298
|
} | {
|
58173
58299
|
type: "PHONE";
|
@@ -59326,6 +59452,8 @@ declare const PrintCertificateActionConfig: z.ZodObject<z.objectUtil.extendShape
|
|
59326
59452
|
description: string;
|
59327
59453
|
defaultMessage: string;
|
59328
59454
|
} | undefined;
|
59455
|
+
includeMiddlename?: boolean | undefined;
|
59456
|
+
searchMode?: boolean | undefined;
|
59329
59457
|
} | undefined;
|
59330
59458
|
} | {
|
59331
59459
|
type: "PHONE";
|
@@ -60690,6 +60818,8 @@ declare const PrintCertificateActionConfig: z.ZodObject<z.objectUtil.extendShape
|
|
60690
60818
|
description: string;
|
60691
60819
|
defaultMessage: string;
|
60692
60820
|
} | undefined;
|
60821
|
+
includeMiddlename?: boolean | undefined;
|
60822
|
+
searchMode?: boolean | undefined;
|
60693
60823
|
} | undefined;
|
60694
60824
|
} | {
|
60695
60825
|
type: "PHONE";
|
@@ -63167,10 +63297,14 @@ declare const RequestCorrectionConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
63167
63297
|
description: string;
|
63168
63298
|
defaultMessage: string;
|
63169
63299
|
}>>;
|
63300
|
+
includeMiddlename: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
63301
|
+
searchMode: z.ZodOptional<z.ZodBoolean>;
|
63170
63302
|
}, "strip", z.ZodTypeAny, {
|
63171
63303
|
maxLength?: number | undefined;
|
63172
63304
|
prefix?: TranslationConfig | undefined;
|
63173
63305
|
postfix?: TranslationConfig | undefined;
|
63306
|
+
includeMiddlename?: boolean | undefined;
|
63307
|
+
searchMode?: boolean | undefined;
|
63174
63308
|
}, {
|
63175
63309
|
maxLength?: number | undefined;
|
63176
63310
|
prefix?: {
|
@@ -63183,6 +63317,8 @@ declare const RequestCorrectionConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
63183
63317
|
description: string;
|
63184
63318
|
defaultMessage: string;
|
63185
63319
|
} | undefined;
|
63320
|
+
includeMiddlename?: boolean | undefined;
|
63321
|
+
searchMode?: boolean | undefined;
|
63186
63322
|
}>>;
|
63187
63323
|
}>, "strip", z.ZodTypeAny, {
|
63188
63324
|
type: "NAME";
|
@@ -63218,6 +63354,8 @@ declare const RequestCorrectionConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
63218
63354
|
maxLength?: number | undefined;
|
63219
63355
|
prefix?: TranslationConfig | undefined;
|
63220
63356
|
postfix?: TranslationConfig | undefined;
|
63357
|
+
includeMiddlename?: boolean | undefined;
|
63358
|
+
searchMode?: boolean | undefined;
|
63221
63359
|
} | undefined;
|
63222
63360
|
}, {
|
63223
63361
|
type: "NAME";
|
@@ -63277,6 +63415,8 @@ declare const RequestCorrectionConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
63277
63415
|
description: string;
|
63278
63416
|
defaultMessage: string;
|
63279
63417
|
} | undefined;
|
63418
|
+
includeMiddlename?: boolean | undefined;
|
63419
|
+
searchMode?: boolean | undefined;
|
63280
63420
|
} | undefined;
|
63281
63421
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
63282
63422
|
id: z.ZodString;
|
@@ -65744,6 +65884,8 @@ declare const RequestCorrectionConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
65744
65884
|
maxLength?: number | undefined;
|
65745
65885
|
prefix?: TranslationConfig | undefined;
|
65746
65886
|
postfix?: TranslationConfig | undefined;
|
65887
|
+
includeMiddlename?: boolean | undefined;
|
65888
|
+
searchMode?: boolean | undefined;
|
65747
65889
|
} | undefined;
|
65748
65890
|
} | {
|
65749
65891
|
type: "PHONE";
|
@@ -66886,6 +67028,8 @@ declare const RequestCorrectionConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
66886
67028
|
description: string;
|
66887
67029
|
defaultMessage: string;
|
66888
67030
|
} | undefined;
|
67031
|
+
includeMiddlename?: boolean | undefined;
|
67032
|
+
searchMode?: boolean | undefined;
|
66889
67033
|
} | undefined;
|
66890
67034
|
} | {
|
66891
67035
|
type: "PHONE";
|
@@ -69325,10 +69469,14 @@ declare const RequestCorrectionConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
69325
69469
|
description: string;
|
69326
69470
|
defaultMessage: string;
|
69327
69471
|
}>>;
|
69472
|
+
includeMiddlename: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
69473
|
+
searchMode: z.ZodOptional<z.ZodBoolean>;
|
69328
69474
|
}, "strip", z.ZodTypeAny, {
|
69329
69475
|
maxLength?: number | undefined;
|
69330
69476
|
prefix?: TranslationConfig | undefined;
|
69331
69477
|
postfix?: TranslationConfig | undefined;
|
69478
|
+
includeMiddlename?: boolean | undefined;
|
69479
|
+
searchMode?: boolean | undefined;
|
69332
69480
|
}, {
|
69333
69481
|
maxLength?: number | undefined;
|
69334
69482
|
prefix?: {
|
@@ -69341,6 +69489,8 @@ declare const RequestCorrectionConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
69341
69489
|
description: string;
|
69342
69490
|
defaultMessage: string;
|
69343
69491
|
} | undefined;
|
69492
|
+
includeMiddlename?: boolean | undefined;
|
69493
|
+
searchMode?: boolean | undefined;
|
69344
69494
|
}>>;
|
69345
69495
|
}>, "strip", z.ZodTypeAny, {
|
69346
69496
|
type: "NAME";
|
@@ -69376,6 +69526,8 @@ declare const RequestCorrectionConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
69376
69526
|
maxLength?: number | undefined;
|
69377
69527
|
prefix?: TranslationConfig | undefined;
|
69378
69528
|
postfix?: TranslationConfig | undefined;
|
69529
|
+
includeMiddlename?: boolean | undefined;
|
69530
|
+
searchMode?: boolean | undefined;
|
69379
69531
|
} | undefined;
|
69380
69532
|
}, {
|
69381
69533
|
type: "NAME";
|
@@ -69435,6 +69587,8 @@ declare const RequestCorrectionConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
69435
69587
|
description: string;
|
69436
69588
|
defaultMessage: string;
|
69437
69589
|
} | undefined;
|
69590
|
+
includeMiddlename?: boolean | undefined;
|
69591
|
+
searchMode?: boolean | undefined;
|
69438
69592
|
} | undefined;
|
69439
69593
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
69440
69594
|
id: z.ZodString;
|
@@ -72028,6 +72182,8 @@ declare const RequestCorrectionConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
72028
72182
|
maxLength?: number | undefined;
|
72029
72183
|
prefix?: TranslationConfig | undefined;
|
72030
72184
|
postfix?: TranslationConfig | undefined;
|
72185
|
+
includeMiddlename?: boolean | undefined;
|
72186
|
+
searchMode?: boolean | undefined;
|
72031
72187
|
} | undefined;
|
72032
72188
|
} | {
|
72033
72189
|
type: "PHONE";
|
@@ -73199,6 +73355,8 @@ declare const RequestCorrectionConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
73199
73355
|
description: string;
|
73200
73356
|
defaultMessage: string;
|
73201
73357
|
} | undefined;
|
73358
|
+
includeMiddlename?: boolean | undefined;
|
73359
|
+
searchMode?: boolean | undefined;
|
73202
73360
|
} | undefined;
|
73203
73361
|
} | {
|
73204
73362
|
type: "PHONE";
|
@@ -75638,10 +75796,14 @@ declare const RequestCorrectionConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
75638
75796
|
description: string;
|
75639
75797
|
defaultMessage: string;
|
75640
75798
|
}>>;
|
75799
|
+
includeMiddlename: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
75800
|
+
searchMode: z.ZodOptional<z.ZodBoolean>;
|
75641
75801
|
}, "strip", z.ZodTypeAny, {
|
75642
75802
|
maxLength?: number | undefined;
|
75643
75803
|
prefix?: TranslationConfig | undefined;
|
75644
75804
|
postfix?: TranslationConfig | undefined;
|
75805
|
+
includeMiddlename?: boolean | undefined;
|
75806
|
+
searchMode?: boolean | undefined;
|
75645
75807
|
}, {
|
75646
75808
|
maxLength?: number | undefined;
|
75647
75809
|
prefix?: {
|
@@ -75654,6 +75816,8 @@ declare const RequestCorrectionConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
75654
75816
|
description: string;
|
75655
75817
|
defaultMessage: string;
|
75656
75818
|
} | undefined;
|
75819
|
+
includeMiddlename?: boolean | undefined;
|
75820
|
+
searchMode?: boolean | undefined;
|
75657
75821
|
}>>;
|
75658
75822
|
}>, "strip", z.ZodTypeAny, {
|
75659
75823
|
type: "NAME";
|
@@ -75689,6 +75853,8 @@ declare const RequestCorrectionConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
75689
75853
|
maxLength?: number | undefined;
|
75690
75854
|
prefix?: TranslationConfig | undefined;
|
75691
75855
|
postfix?: TranslationConfig | undefined;
|
75856
|
+
includeMiddlename?: boolean | undefined;
|
75857
|
+
searchMode?: boolean | undefined;
|
75692
75858
|
} | undefined;
|
75693
75859
|
}, {
|
75694
75860
|
type: "NAME";
|
@@ -75748,6 +75914,8 @@ declare const RequestCorrectionConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
75748
75914
|
description: string;
|
75749
75915
|
defaultMessage: string;
|
75750
75916
|
} | undefined;
|
75917
|
+
includeMiddlename?: boolean | undefined;
|
75918
|
+
searchMode?: boolean | undefined;
|
75751
75919
|
} | undefined;
|
75752
75920
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
75753
75921
|
id: z.ZodString;
|
@@ -78215,6 +78383,8 @@ declare const RequestCorrectionConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
78215
78383
|
maxLength?: number | undefined;
|
78216
78384
|
prefix?: TranslationConfig | undefined;
|
78217
78385
|
postfix?: TranslationConfig | undefined;
|
78386
|
+
includeMiddlename?: boolean | undefined;
|
78387
|
+
searchMode?: boolean | undefined;
|
78218
78388
|
} | undefined;
|
78219
78389
|
} | {
|
78220
78390
|
type: "PHONE";
|
@@ -79357,6 +79527,8 @@ declare const RequestCorrectionConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
79357
79527
|
description: string;
|
79358
79528
|
defaultMessage: string;
|
79359
79529
|
} | undefined;
|
79530
|
+
includeMiddlename?: boolean | undefined;
|
79531
|
+
searchMode?: boolean | undefined;
|
79360
79532
|
} | undefined;
|
79361
79533
|
} | {
|
79362
79534
|
type: "PHONE";
|
@@ -81796,10 +81968,14 @@ declare const RequestCorrectionConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
81796
81968
|
description: string;
|
81797
81969
|
defaultMessage: string;
|
81798
81970
|
}>>;
|
81971
|
+
includeMiddlename: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
81972
|
+
searchMode: z.ZodOptional<z.ZodBoolean>;
|
81799
81973
|
}, "strip", z.ZodTypeAny, {
|
81800
81974
|
maxLength?: number | undefined;
|
81801
81975
|
prefix?: TranslationConfig | undefined;
|
81802
81976
|
postfix?: TranslationConfig | undefined;
|
81977
|
+
includeMiddlename?: boolean | undefined;
|
81978
|
+
searchMode?: boolean | undefined;
|
81803
81979
|
}, {
|
81804
81980
|
maxLength?: number | undefined;
|
81805
81981
|
prefix?: {
|
@@ -81812,6 +81988,8 @@ declare const RequestCorrectionConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
81812
81988
|
description: string;
|
81813
81989
|
defaultMessage: string;
|
81814
81990
|
} | undefined;
|
81991
|
+
includeMiddlename?: boolean | undefined;
|
81992
|
+
searchMode?: boolean | undefined;
|
81815
81993
|
}>>;
|
81816
81994
|
}>, "strip", z.ZodTypeAny, {
|
81817
81995
|
type: "NAME";
|
@@ -81847,6 +82025,8 @@ declare const RequestCorrectionConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
81847
82025
|
maxLength?: number | undefined;
|
81848
82026
|
prefix?: TranslationConfig | undefined;
|
81849
82027
|
postfix?: TranslationConfig | undefined;
|
82028
|
+
includeMiddlename?: boolean | undefined;
|
82029
|
+
searchMode?: boolean | undefined;
|
81850
82030
|
} | undefined;
|
81851
82031
|
}, {
|
81852
82032
|
type: "NAME";
|
@@ -81906,6 +82086,8 @@ declare const RequestCorrectionConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
81906
82086
|
description: string;
|
81907
82087
|
defaultMessage: string;
|
81908
82088
|
} | undefined;
|
82089
|
+
includeMiddlename?: boolean | undefined;
|
82090
|
+
searchMode?: boolean | undefined;
|
81909
82091
|
} | undefined;
|
81910
82092
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
81911
82093
|
id: z.ZodString;
|
@@ -84499,6 +84681,8 @@ declare const RequestCorrectionConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
84499
84681
|
maxLength?: number | undefined;
|
84500
84682
|
prefix?: TranslationConfig | undefined;
|
84501
84683
|
postfix?: TranslationConfig | undefined;
|
84684
|
+
includeMiddlename?: boolean | undefined;
|
84685
|
+
searchMode?: boolean | undefined;
|
84502
84686
|
} | undefined;
|
84503
84687
|
} | {
|
84504
84688
|
type: "PHONE";
|
@@ -85670,6 +85854,8 @@ declare const RequestCorrectionConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
85670
85854
|
description: string;
|
85671
85855
|
defaultMessage: string;
|
85672
85856
|
} | undefined;
|
85857
|
+
includeMiddlename?: boolean | undefined;
|
85858
|
+
searchMode?: boolean | undefined;
|
85673
85859
|
} | undefined;
|
85674
85860
|
} | {
|
85675
85861
|
type: "PHONE";
|
@@ -86712,6 +86898,8 @@ declare const RequestCorrectionConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
86712
86898
|
maxLength?: number | undefined;
|
86713
86899
|
prefix?: TranslationConfig | undefined;
|
86714
86900
|
postfix?: TranslationConfig | undefined;
|
86901
|
+
includeMiddlename?: boolean | undefined;
|
86902
|
+
searchMode?: boolean | undefined;
|
86715
86903
|
} | undefined;
|
86716
86904
|
} | {
|
86717
86905
|
type: "PHONE";
|
@@ -87563,6 +87751,8 @@ declare const RequestCorrectionConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
87563
87751
|
maxLength?: number | undefined;
|
87564
87752
|
prefix?: TranslationConfig | undefined;
|
87565
87753
|
postfix?: TranslationConfig | undefined;
|
87754
|
+
includeMiddlename?: boolean | undefined;
|
87755
|
+
searchMode?: boolean | undefined;
|
87566
87756
|
} | undefined;
|
87567
87757
|
} | {
|
87568
87758
|
type: "PHONE";
|
@@ -88403,6 +88593,8 @@ declare const RequestCorrectionConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
88403
88593
|
maxLength?: number | undefined;
|
88404
88594
|
prefix?: TranslationConfig | undefined;
|
88405
88595
|
postfix?: TranslationConfig | undefined;
|
88596
|
+
includeMiddlename?: boolean | undefined;
|
88597
|
+
searchMode?: boolean | undefined;
|
88406
88598
|
} | undefined;
|
88407
88599
|
} | {
|
88408
88600
|
type: "PHONE";
|
@@ -89254,6 +89446,8 @@ declare const RequestCorrectionConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
89254
89446
|
maxLength?: number | undefined;
|
89255
89447
|
prefix?: TranslationConfig | undefined;
|
89256
89448
|
postfix?: TranslationConfig | undefined;
|
89449
|
+
includeMiddlename?: boolean | undefined;
|
89450
|
+
searchMode?: boolean | undefined;
|
89257
89451
|
} | undefined;
|
89258
89452
|
} | {
|
89259
89453
|
type: "PHONE";
|
@@ -90405,6 +90599,8 @@ declare const RequestCorrectionConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
90405
90599
|
description: string;
|
90406
90600
|
defaultMessage: string;
|
90407
90601
|
} | undefined;
|
90602
|
+
includeMiddlename?: boolean | undefined;
|
90603
|
+
searchMode?: boolean | undefined;
|
90408
90604
|
} | undefined;
|
90409
90605
|
} | {
|
90410
90606
|
type: "PHONE";
|
@@ -91769,6 +91965,8 @@ declare const RequestCorrectionConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
91769
91965
|
description: string;
|
91770
91966
|
defaultMessage: string;
|
91771
91967
|
} | undefined;
|
91968
|
+
includeMiddlename?: boolean | undefined;
|
91969
|
+
searchMode?: boolean | undefined;
|
91772
91970
|
} | undefined;
|
91773
91971
|
} | {
|
91774
91972
|
type: "PHONE";
|
@@ -93104,6 +93302,8 @@ declare const RequestCorrectionConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
93104
93302
|
description: string;
|
93105
93303
|
defaultMessage: string;
|
93106
93304
|
} | undefined;
|
93305
|
+
includeMiddlename?: boolean | undefined;
|
93306
|
+
searchMode?: boolean | undefined;
|
93107
93307
|
} | undefined;
|
93108
93308
|
} | {
|
93109
93309
|
type: "PHONE";
|
@@ -94468,6 +94668,8 @@ declare const RequestCorrectionConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
94468
94668
|
description: string;
|
94469
94669
|
defaultMessage: string;
|
94470
94670
|
} | undefined;
|
94671
|
+
includeMiddlename?: boolean | undefined;
|
94672
|
+
searchMode?: boolean | undefined;
|
94471
94673
|
} | undefined;
|
94472
94674
|
} | {
|
94473
94675
|
type: "PHONE";
|
@@ -97059,10 +97261,14 @@ export declare const DeclarationActionConfig: z.ZodDiscriminatedUnion<"type", [z
|
|
97059
97261
|
description: string;
|
97060
97262
|
defaultMessage: string;
|
97061
97263
|
}>>;
|
97264
|
+
includeMiddlename: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
97265
|
+
searchMode: z.ZodOptional<z.ZodBoolean>;
|
97062
97266
|
}, "strip", z.ZodTypeAny, {
|
97063
97267
|
maxLength?: number | undefined;
|
97064
97268
|
prefix?: TranslationConfig | undefined;
|
97065
97269
|
postfix?: TranslationConfig | undefined;
|
97270
|
+
includeMiddlename?: boolean | undefined;
|
97271
|
+
searchMode?: boolean | undefined;
|
97066
97272
|
}, {
|
97067
97273
|
maxLength?: number | undefined;
|
97068
97274
|
prefix?: {
|
@@ -97075,6 +97281,8 @@ export declare const DeclarationActionConfig: z.ZodDiscriminatedUnion<"type", [z
|
|
97075
97281
|
description: string;
|
97076
97282
|
defaultMessage: string;
|
97077
97283
|
} | undefined;
|
97284
|
+
includeMiddlename?: boolean | undefined;
|
97285
|
+
searchMode?: boolean | undefined;
|
97078
97286
|
}>>;
|
97079
97287
|
}>, "strip", z.ZodTypeAny, {
|
97080
97288
|
type: "NAME";
|
@@ -97110,6 +97318,8 @@ export declare const DeclarationActionConfig: z.ZodDiscriminatedUnion<"type", [z
|
|
97110
97318
|
maxLength?: number | undefined;
|
97111
97319
|
prefix?: TranslationConfig | undefined;
|
97112
97320
|
postfix?: TranslationConfig | undefined;
|
97321
|
+
includeMiddlename?: boolean | undefined;
|
97322
|
+
searchMode?: boolean | undefined;
|
97113
97323
|
} | undefined;
|
97114
97324
|
}, {
|
97115
97325
|
type: "NAME";
|
@@ -97169,6 +97379,8 @@ export declare const DeclarationActionConfig: z.ZodDiscriminatedUnion<"type", [z
|
|
97169
97379
|
description: string;
|
97170
97380
|
defaultMessage: string;
|
97171
97381
|
} | undefined;
|
97382
|
+
includeMiddlename?: boolean | undefined;
|
97383
|
+
searchMode?: boolean | undefined;
|
97172
97384
|
} | undefined;
|
97173
97385
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
97174
97386
|
id: z.ZodString;
|
@@ -99631,6 +99843,8 @@ export declare const DeclarationActionConfig: z.ZodDiscriminatedUnion<"type", [z
|
|
99631
99843
|
maxLength?: number | undefined;
|
99632
99844
|
prefix?: TranslationConfig | undefined;
|
99633
99845
|
postfix?: TranslationConfig | undefined;
|
99846
|
+
includeMiddlename?: boolean | undefined;
|
99847
|
+
searchMode?: boolean | undefined;
|
99634
99848
|
} | undefined;
|
99635
99849
|
} | {
|
99636
99850
|
type: "PHONE";
|
@@ -100771,6 +100985,8 @@ export declare const DeclarationActionConfig: z.ZodDiscriminatedUnion<"type", [z
|
|
100771
100985
|
description: string;
|
100772
100986
|
defaultMessage: string;
|
100773
100987
|
} | undefined;
|
100988
|
+
includeMiddlename?: boolean | undefined;
|
100989
|
+
searchMode?: boolean | undefined;
|
100774
100990
|
} | undefined;
|
100775
100991
|
} | {
|
100776
100992
|
type: "PHONE";
|
@@ -101810,6 +102026,8 @@ export declare const DeclarationActionConfig: z.ZodDiscriminatedUnion<"type", [z
|
|
101810
102026
|
maxLength?: number | undefined;
|
101811
102027
|
prefix?: TranslationConfig | undefined;
|
101812
102028
|
postfix?: TranslationConfig | undefined;
|
102029
|
+
includeMiddlename?: boolean | undefined;
|
102030
|
+
searchMode?: boolean | undefined;
|
101813
102031
|
} | undefined;
|
101814
102032
|
} | {
|
101815
102033
|
type: "PHONE";
|
@@ -102959,6 +103177,8 @@ export declare const DeclarationActionConfig: z.ZodDiscriminatedUnion<"type", [z
|
|
102959
103177
|
description: string;
|
102960
103178
|
defaultMessage: string;
|
102961
103179
|
} | undefined;
|
103180
|
+
includeMiddlename?: boolean | undefined;
|
103181
|
+
searchMode?: boolean | undefined;
|
102962
103182
|
} | undefined;
|
102963
103183
|
} | {
|
102964
103184
|
type: "PHONE";
|
@@ -105432,10 +105652,14 @@ export declare const DeclarationActionConfig: z.ZodDiscriminatedUnion<"type", [z
|
|
105432
105652
|
description: string;
|
105433
105653
|
defaultMessage: string;
|
105434
105654
|
}>>;
|
105655
|
+
includeMiddlename: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
105656
|
+
searchMode: z.ZodOptional<z.ZodBoolean>;
|
105435
105657
|
}, "strip", z.ZodTypeAny, {
|
105436
105658
|
maxLength?: number | undefined;
|
105437
105659
|
prefix?: TranslationConfig | undefined;
|
105438
105660
|
postfix?: TranslationConfig | undefined;
|
105661
|
+
includeMiddlename?: boolean | undefined;
|
105662
|
+
searchMode?: boolean | undefined;
|
105439
105663
|
}, {
|
105440
105664
|
maxLength?: number | undefined;
|
105441
105665
|
prefix?: {
|
@@ -105448,6 +105672,8 @@ export declare const DeclarationActionConfig: z.ZodDiscriminatedUnion<"type", [z
|
|
105448
105672
|
description: string;
|
105449
105673
|
defaultMessage: string;
|
105450
105674
|
} | undefined;
|
105675
|
+
includeMiddlename?: boolean | undefined;
|
105676
|
+
searchMode?: boolean | undefined;
|
105451
105677
|
}>>;
|
105452
105678
|
}>, "strip", z.ZodTypeAny, {
|
105453
105679
|
type: "NAME";
|
@@ -105483,6 +105709,8 @@ export declare const DeclarationActionConfig: z.ZodDiscriminatedUnion<"type", [z
|
|
105483
105709
|
maxLength?: number | undefined;
|
105484
105710
|
prefix?: TranslationConfig | undefined;
|
105485
105711
|
postfix?: TranslationConfig | undefined;
|
105712
|
+
includeMiddlename?: boolean | undefined;
|
105713
|
+
searchMode?: boolean | undefined;
|
105486
105714
|
} | undefined;
|
105487
105715
|
}, {
|
105488
105716
|
type: "NAME";
|
@@ -105542,6 +105770,8 @@ export declare const DeclarationActionConfig: z.ZodDiscriminatedUnion<"type", [z
|
|
105542
105770
|
description: string;
|
105543
105771
|
defaultMessage: string;
|
105544
105772
|
} | undefined;
|
105773
|
+
includeMiddlename?: boolean | undefined;
|
105774
|
+
searchMode?: boolean | undefined;
|
105545
105775
|
} | undefined;
|
105546
105776
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
105547
105777
|
id: z.ZodString;
|
@@ -108004,6 +108234,8 @@ export declare const DeclarationActionConfig: z.ZodDiscriminatedUnion<"type", [z
|
|
108004
108234
|
maxLength?: number | undefined;
|
108005
108235
|
prefix?: TranslationConfig | undefined;
|
108006
108236
|
postfix?: TranslationConfig | undefined;
|
108237
|
+
includeMiddlename?: boolean | undefined;
|
108238
|
+
searchMode?: boolean | undefined;
|
108007
108239
|
} | undefined;
|
108008
108240
|
} | {
|
108009
108241
|
type: "PHONE";
|
@@ -109144,6 +109376,8 @@ export declare const DeclarationActionConfig: z.ZodDiscriminatedUnion<"type", [z
|
|
109144
109376
|
description: string;
|
109145
109377
|
defaultMessage: string;
|
109146
109378
|
} | undefined;
|
109379
|
+
includeMiddlename?: boolean | undefined;
|
109380
|
+
searchMode?: boolean | undefined;
|
109147
109381
|
} | undefined;
|
109148
109382
|
} | {
|
109149
109383
|
type: "PHONE";
|
@@ -110183,6 +110417,8 @@ export declare const DeclarationActionConfig: z.ZodDiscriminatedUnion<"type", [z
|
|
110183
110417
|
maxLength?: number | undefined;
|
110184
110418
|
prefix?: TranslationConfig | undefined;
|
110185
110419
|
postfix?: TranslationConfig | undefined;
|
110420
|
+
includeMiddlename?: boolean | undefined;
|
110421
|
+
searchMode?: boolean | undefined;
|
110186
110422
|
} | undefined;
|
110187
110423
|
} | {
|
110188
110424
|
type: "PHONE";
|
@@ -111332,6 +111568,8 @@ export declare const DeclarationActionConfig: z.ZodDiscriminatedUnion<"type", [z
|
|
111332
111568
|
description: string;
|
111333
111569
|
defaultMessage: string;
|
111334
111570
|
} | undefined;
|
111571
|
+
includeMiddlename?: boolean | undefined;
|
111572
|
+
searchMode?: boolean | undefined;
|
111335
111573
|
} | undefined;
|
111336
111574
|
} | {
|
111337
111575
|
type: "PHONE";
|
@@ -113805,10 +114043,14 @@ export declare const DeclarationActionConfig: z.ZodDiscriminatedUnion<"type", [z
|
|
113805
114043
|
description: string;
|
113806
114044
|
defaultMessage: string;
|
113807
114045
|
}>>;
|
114046
|
+
includeMiddlename: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
114047
|
+
searchMode: z.ZodOptional<z.ZodBoolean>;
|
113808
114048
|
}, "strip", z.ZodTypeAny, {
|
113809
114049
|
maxLength?: number | undefined;
|
113810
114050
|
prefix?: TranslationConfig | undefined;
|
113811
114051
|
postfix?: TranslationConfig | undefined;
|
114052
|
+
includeMiddlename?: boolean | undefined;
|
114053
|
+
searchMode?: boolean | undefined;
|
113812
114054
|
}, {
|
113813
114055
|
maxLength?: number | undefined;
|
113814
114056
|
prefix?: {
|
@@ -113821,6 +114063,8 @@ export declare const DeclarationActionConfig: z.ZodDiscriminatedUnion<"type", [z
|
|
113821
114063
|
description: string;
|
113822
114064
|
defaultMessage: string;
|
113823
114065
|
} | undefined;
|
114066
|
+
includeMiddlename?: boolean | undefined;
|
114067
|
+
searchMode?: boolean | undefined;
|
113824
114068
|
}>>;
|
113825
114069
|
}>, "strip", z.ZodTypeAny, {
|
113826
114070
|
type: "NAME";
|
@@ -113856,6 +114100,8 @@ export declare const DeclarationActionConfig: z.ZodDiscriminatedUnion<"type", [z
|
|
113856
114100
|
maxLength?: number | undefined;
|
113857
114101
|
prefix?: TranslationConfig | undefined;
|
113858
114102
|
postfix?: TranslationConfig | undefined;
|
114103
|
+
includeMiddlename?: boolean | undefined;
|
114104
|
+
searchMode?: boolean | undefined;
|
113859
114105
|
} | undefined;
|
113860
114106
|
}, {
|
113861
114107
|
type: "NAME";
|
@@ -113915,6 +114161,8 @@ export declare const DeclarationActionConfig: z.ZodDiscriminatedUnion<"type", [z
|
|
113915
114161
|
description: string;
|
113916
114162
|
defaultMessage: string;
|
113917
114163
|
} | undefined;
|
114164
|
+
includeMiddlename?: boolean | undefined;
|
114165
|
+
searchMode?: boolean | undefined;
|
113918
114166
|
} | undefined;
|
113919
114167
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
113920
114168
|
id: z.ZodString;
|
@@ -116377,6 +116625,8 @@ export declare const DeclarationActionConfig: z.ZodDiscriminatedUnion<"type", [z
|
|
116377
116625
|
maxLength?: number | undefined;
|
116378
116626
|
prefix?: TranslationConfig | undefined;
|
116379
116627
|
postfix?: TranslationConfig | undefined;
|
116628
|
+
includeMiddlename?: boolean | undefined;
|
116629
|
+
searchMode?: boolean | undefined;
|
116380
116630
|
} | undefined;
|
116381
116631
|
} | {
|
116382
116632
|
type: "PHONE";
|
@@ -117517,6 +117767,8 @@ export declare const DeclarationActionConfig: z.ZodDiscriminatedUnion<"type", [z
|
|
117517
117767
|
description: string;
|
117518
117768
|
defaultMessage: string;
|
117519
117769
|
} | undefined;
|
117770
|
+
includeMiddlename?: boolean | undefined;
|
117771
|
+
searchMode?: boolean | undefined;
|
117520
117772
|
} | undefined;
|
117521
117773
|
} | {
|
117522
117774
|
type: "PHONE";
|
@@ -118556,6 +118808,8 @@ export declare const DeclarationActionConfig: z.ZodDiscriminatedUnion<"type", [z
|
|
118556
118808
|
maxLength?: number | undefined;
|
118557
118809
|
prefix?: TranslationConfig | undefined;
|
118558
118810
|
postfix?: TranslationConfig | undefined;
|
118811
|
+
includeMiddlename?: boolean | undefined;
|
118812
|
+
searchMode?: boolean | undefined;
|
118559
118813
|
} | undefined;
|
118560
118814
|
} | {
|
118561
118815
|
type: "PHONE";
|
@@ -119705,6 +119959,8 @@ export declare const DeclarationActionConfig: z.ZodDiscriminatedUnion<"type", [z
|
|
119705
119959
|
description: string;
|
119706
119960
|
defaultMessage: string;
|
119707
119961
|
} | undefined;
|
119962
|
+
includeMiddlename?: boolean | undefined;
|
119963
|
+
searchMode?: boolean | undefined;
|
119708
119964
|
} | undefined;
|
119709
119965
|
} | {
|
119710
119966
|
type: "PHONE";
|