@opencrvs/toolkit 1.8.0-rc.fd1df48 → 1.8.0-rc.fd49b3a

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.
Files changed (30) hide show
  1. package/dist/commons/api/router.d.ts +1806 -922
  2. package/dist/commons/conditionals/conditionals.d.ts +0 -12
  3. package/dist/commons/events/ActionConfig.d.ts +7830 -2014
  4. package/dist/commons/events/ActionDocument.d.ts +1948 -904
  5. package/dist/commons/events/ActionInput.d.ts +1680 -780
  6. package/dist/commons/events/AdvancedSearchConfig.d.ts +82 -33
  7. package/dist/commons/events/CompositeFieldValue.d.ts +9 -9
  8. package/dist/commons/events/CountryConfigQueryInput.d.ts +1086 -684
  9. package/dist/commons/events/Draft.d.ts +142 -70
  10. package/dist/commons/events/EventConfig.d.ts +3649 -935
  11. package/dist/commons/events/EventDocument.d.ts +1236 -588
  12. package/dist/commons/events/EventIndex.d.ts +339 -120
  13. package/dist/commons/events/FieldConfig.d.ts +455 -30
  14. package/dist/commons/events/FieldType.d.ts +2 -1
  15. package/dist/commons/events/FieldTypeMapping.d.ts +57 -25
  16. package/dist/commons/events/FieldValue.d.ts +45 -16
  17. package/dist/commons/events/FormConfig.d.ts +3005 -557
  18. package/dist/commons/events/PageConfig.d.ts +646 -38
  19. package/dist/commons/events/User.d.ts +6 -3
  20. package/dist/commons/events/WorkqueueConfig.d.ts +1990 -1174
  21. package/dist/commons/events/defineConfig.d.ts +498 -34
  22. package/dist/commons/events/event.d.ts +10 -18
  23. package/dist/commons/events/field.d.ts +13 -1
  24. package/dist/commons/events/test.utils.d.ts +43 -19
  25. package/dist/commons/events/utils.d.ts +2543 -77
  26. package/dist/conditionals/index.js +2 -34
  27. package/dist/events/index.js +963 -801
  28. package/dist/scopes/index.d.ts +92 -6
  29. package/dist/scopes/index.js +38 -9
  30. package/package.json +3 -3
@@ -256,7 +256,10 @@ export declare const defineConfig: (config: EventConfigInput) => {
256
256
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
257
257
  helperText?: import("./TranslationConfig").TranslationConfig | undefined;
258
258
  hideLabel?: boolean | undefined;
259
- defaultValue?: string | [string, string] | undefined;
259
+ defaultValue?: string | {
260
+ start: string;
261
+ end: string;
262
+ } | undefined;
260
263
  configuration?: {
261
264
  notice?: import("./TranslationConfig").TranslationConfig | undefined;
262
265
  } | undefined;
@@ -355,7 +358,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
355
358
  hideLabel?: boolean | undefined;
356
359
  defaultValue?: {
357
360
  type: string;
358
- filename: string;
361
+ path: string;
359
362
  originalFilename: string;
360
363
  } | undefined;
361
364
  } | {
@@ -458,6 +461,37 @@ export declare const defineConfig: (config: EventConfigInput) => {
458
461
  helperText?: import("./TranslationConfig").TranslationConfig | undefined;
459
462
  hideLabel?: boolean | undefined;
460
463
  defaultValue?: string | undefined;
464
+ } | {
465
+ type: "SELECT_DATE_RANGE";
466
+ id: string;
467
+ options: {
468
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
469
+ label: import("./TranslationConfig").TranslationConfig;
470
+ }[];
471
+ label: import("./TranslationConfig").TranslationConfig;
472
+ parent?: {
473
+ $$field: string;
474
+ } | undefined;
475
+ validation?: {
476
+ message: import("./TranslationConfig").TranslationConfig;
477
+ validator: import(".").JSONSchema;
478
+ }[] | undefined;
479
+ required?: boolean | undefined;
480
+ conditionals?: ({
481
+ type: "SHOW";
482
+ conditional: import(".").JSONSchema;
483
+ } | {
484
+ type: "ENABLE";
485
+ conditional: import(".").JSONSchema;
486
+ } | {
487
+ type: "DISPLAY_ON_REVIEW";
488
+ conditional: import(".").JSONSchema;
489
+ })[] | undefined;
490
+ secured?: boolean | undefined;
491
+ placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
492
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
493
+ hideLabel?: boolean | undefined;
494
+ defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
461
495
  } | {
462
496
  type: "NAME";
463
497
  id: string;
@@ -492,6 +526,8 @@ export declare const defineConfig: (config: EventConfigInput) => {
492
526
  maxLength?: number | undefined;
493
527
  prefix?: import("./TranslationConfig").TranslationConfig | undefined;
494
528
  postfix?: import("./TranslationConfig").TranslationConfig | undefined;
529
+ includeMiddlename?: boolean | undefined;
530
+ searchMode?: boolean | undefined;
495
531
  } | undefined;
496
532
  } | {
497
533
  type: "PHONE";
@@ -661,6 +697,9 @@ export declare const defineConfig: (config: EventConfigInput) => {
661
697
  helperText?: import("./TranslationConfig").TranslationConfig | undefined;
662
698
  hideLabel?: boolean | undefined;
663
699
  defaultValue?: string | undefined;
700
+ configuration?: {
701
+ searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
702
+ } | undefined;
664
703
  } | {
665
704
  type: "FILE_WITH_OPTIONS";
666
705
  id: string;
@@ -698,7 +737,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
698
737
  defaultValue?: {
699
738
  type: string;
700
739
  option: string;
701
- filename: string;
740
+ path: string;
702
741
  originalFilename: string;
703
742
  }[] | undefined;
704
743
  } | {
@@ -810,6 +849,9 @@ export declare const defineConfig: (config: EventConfigInput) => {
810
849
  addressLine3?: string | undefined;
811
850
  postcodeOrZip?: string | undefined;
812
851
  } | undefined;
852
+ configuration?: {
853
+ searchMode?: boolean | undefined;
854
+ } | undefined;
813
855
  } | {
814
856
  type: "DATA";
815
857
  id: string;
@@ -1105,7 +1147,10 @@ export declare const defineConfig: (config: EventConfigInput) => {
1105
1147
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
1106
1148
  helperText?: import("./TranslationConfig").TranslationConfig | undefined;
1107
1149
  hideLabel?: boolean | undefined;
1108
- defaultValue?: string | [string, string] | undefined;
1150
+ defaultValue?: string | {
1151
+ start: string;
1152
+ end: string;
1153
+ } | undefined;
1109
1154
  configuration?: {
1110
1155
  notice?: import("./TranslationConfig").TranslationConfig | undefined;
1111
1156
  } | undefined;
@@ -1204,7 +1249,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
1204
1249
  hideLabel?: boolean | undefined;
1205
1250
  defaultValue?: {
1206
1251
  type: string;
1207
- filename: string;
1252
+ path: string;
1208
1253
  originalFilename: string;
1209
1254
  } | undefined;
1210
1255
  } | {
@@ -1307,6 +1352,37 @@ export declare const defineConfig: (config: EventConfigInput) => {
1307
1352
  helperText?: import("./TranslationConfig").TranslationConfig | undefined;
1308
1353
  hideLabel?: boolean | undefined;
1309
1354
  defaultValue?: string | undefined;
1355
+ } | {
1356
+ type: "SELECT_DATE_RANGE";
1357
+ id: string;
1358
+ options: {
1359
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
1360
+ label: import("./TranslationConfig").TranslationConfig;
1361
+ }[];
1362
+ label: import("./TranslationConfig").TranslationConfig;
1363
+ parent?: {
1364
+ $$field: string;
1365
+ } | undefined;
1366
+ validation?: {
1367
+ message: import("./TranslationConfig").TranslationConfig;
1368
+ validator: import(".").JSONSchema;
1369
+ }[] | undefined;
1370
+ required?: boolean | undefined;
1371
+ conditionals?: ({
1372
+ type: "SHOW";
1373
+ conditional: import(".").JSONSchema;
1374
+ } | {
1375
+ type: "ENABLE";
1376
+ conditional: import(".").JSONSchema;
1377
+ } | {
1378
+ type: "DISPLAY_ON_REVIEW";
1379
+ conditional: import(".").JSONSchema;
1380
+ })[] | undefined;
1381
+ secured?: boolean | undefined;
1382
+ placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
1383
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
1384
+ hideLabel?: boolean | undefined;
1385
+ defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
1310
1386
  } | {
1311
1387
  type: "NAME";
1312
1388
  id: string;
@@ -1341,6 +1417,8 @@ export declare const defineConfig: (config: EventConfigInput) => {
1341
1417
  maxLength?: number | undefined;
1342
1418
  prefix?: import("./TranslationConfig").TranslationConfig | undefined;
1343
1419
  postfix?: import("./TranslationConfig").TranslationConfig | undefined;
1420
+ includeMiddlename?: boolean | undefined;
1421
+ searchMode?: boolean | undefined;
1344
1422
  } | undefined;
1345
1423
  } | {
1346
1424
  type: "PHONE";
@@ -1510,6 +1588,9 @@ export declare const defineConfig: (config: EventConfigInput) => {
1510
1588
  helperText?: import("./TranslationConfig").TranslationConfig | undefined;
1511
1589
  hideLabel?: boolean | undefined;
1512
1590
  defaultValue?: string | undefined;
1591
+ configuration?: {
1592
+ searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
1593
+ } | undefined;
1513
1594
  } | {
1514
1595
  type: "FILE_WITH_OPTIONS";
1515
1596
  id: string;
@@ -1547,7 +1628,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
1547
1628
  defaultValue?: {
1548
1629
  type: string;
1549
1630
  option: string;
1550
- filename: string;
1631
+ path: string;
1551
1632
  originalFilename: string;
1552
1633
  }[] | undefined;
1553
1634
  } | {
@@ -1659,6 +1740,9 @@ export declare const defineConfig: (config: EventConfigInput) => {
1659
1740
  addressLine3?: string | undefined;
1660
1741
  postcodeOrZip?: string | undefined;
1661
1742
  } | undefined;
1743
+ configuration?: {
1744
+ searchMode?: boolean | undefined;
1745
+ } | undefined;
1662
1746
  } | {
1663
1747
  type: "DATA";
1664
1748
  id: string;
@@ -1953,7 +2037,10 @@ export declare const defineConfig: (config: EventConfigInput) => {
1953
2037
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
1954
2038
  helperText?: import("./TranslationConfig").TranslationConfig | undefined;
1955
2039
  hideLabel?: boolean | undefined;
1956
- defaultValue?: string | [string, string] | undefined;
2040
+ defaultValue?: string | {
2041
+ start: string;
2042
+ end: string;
2043
+ } | undefined;
1957
2044
  configuration?: {
1958
2045
  notice?: import("./TranslationConfig").TranslationConfig | undefined;
1959
2046
  } | undefined;
@@ -2052,7 +2139,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
2052
2139
  hideLabel?: boolean | undefined;
2053
2140
  defaultValue?: {
2054
2141
  type: string;
2055
- filename: string;
2142
+ path: string;
2056
2143
  originalFilename: string;
2057
2144
  } | undefined;
2058
2145
  } | {
@@ -2155,6 +2242,37 @@ export declare const defineConfig: (config: EventConfigInput) => {
2155
2242
  helperText?: import("./TranslationConfig").TranslationConfig | undefined;
2156
2243
  hideLabel?: boolean | undefined;
2157
2244
  defaultValue?: string | undefined;
2245
+ } | {
2246
+ type: "SELECT_DATE_RANGE";
2247
+ id: string;
2248
+ options: {
2249
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
2250
+ label: import("./TranslationConfig").TranslationConfig;
2251
+ }[];
2252
+ label: import("./TranslationConfig").TranslationConfig;
2253
+ parent?: {
2254
+ $$field: string;
2255
+ } | undefined;
2256
+ validation?: {
2257
+ message: import("./TranslationConfig").TranslationConfig;
2258
+ validator: import(".").JSONSchema;
2259
+ }[] | undefined;
2260
+ required?: boolean | undefined;
2261
+ conditionals?: ({
2262
+ type: "SHOW";
2263
+ conditional: import(".").JSONSchema;
2264
+ } | {
2265
+ type: "ENABLE";
2266
+ conditional: import(".").JSONSchema;
2267
+ } | {
2268
+ type: "DISPLAY_ON_REVIEW";
2269
+ conditional: import(".").JSONSchema;
2270
+ })[] | undefined;
2271
+ secured?: boolean | undefined;
2272
+ placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
2273
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
2274
+ hideLabel?: boolean | undefined;
2275
+ defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
2158
2276
  } | {
2159
2277
  type: "NAME";
2160
2278
  id: string;
@@ -2189,6 +2307,8 @@ export declare const defineConfig: (config: EventConfigInput) => {
2189
2307
  maxLength?: number | undefined;
2190
2308
  prefix?: import("./TranslationConfig").TranslationConfig | undefined;
2191
2309
  postfix?: import("./TranslationConfig").TranslationConfig | undefined;
2310
+ includeMiddlename?: boolean | undefined;
2311
+ searchMode?: boolean | undefined;
2192
2312
  } | undefined;
2193
2313
  } | {
2194
2314
  type: "PHONE";
@@ -2358,6 +2478,9 @@ export declare const defineConfig: (config: EventConfigInput) => {
2358
2478
  helperText?: import("./TranslationConfig").TranslationConfig | undefined;
2359
2479
  hideLabel?: boolean | undefined;
2360
2480
  defaultValue?: string | undefined;
2481
+ configuration?: {
2482
+ searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
2483
+ } | undefined;
2361
2484
  } | {
2362
2485
  type: "FILE_WITH_OPTIONS";
2363
2486
  id: string;
@@ -2395,7 +2518,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
2395
2518
  defaultValue?: {
2396
2519
  type: string;
2397
2520
  option: string;
2398
- filename: string;
2521
+ path: string;
2399
2522
  originalFilename: string;
2400
2523
  }[] | undefined;
2401
2524
  } | {
@@ -2507,6 +2630,9 @@ export declare const defineConfig: (config: EventConfigInput) => {
2507
2630
  addressLine3?: string | undefined;
2508
2631
  postcodeOrZip?: string | undefined;
2509
2632
  } | undefined;
2633
+ configuration?: {
2634
+ searchMode?: boolean | undefined;
2635
+ } | undefined;
2510
2636
  } | {
2511
2637
  type: "DATA";
2512
2638
  id: string;
@@ -2801,7 +2927,10 @@ export declare const defineConfig: (config: EventConfigInput) => {
2801
2927
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
2802
2928
  helperText?: import("./TranslationConfig").TranslationConfig | undefined;
2803
2929
  hideLabel?: boolean | undefined;
2804
- defaultValue?: string | [string, string] | undefined;
2930
+ defaultValue?: string | {
2931
+ start: string;
2932
+ end: string;
2933
+ } | undefined;
2805
2934
  configuration?: {
2806
2935
  notice?: import("./TranslationConfig").TranslationConfig | undefined;
2807
2936
  } | undefined;
@@ -2900,7 +3029,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
2900
3029
  hideLabel?: boolean | undefined;
2901
3030
  defaultValue?: {
2902
3031
  type: string;
2903
- filename: string;
3032
+ path: string;
2904
3033
  originalFilename: string;
2905
3034
  } | undefined;
2906
3035
  } | {
@@ -3003,6 +3132,37 @@ export declare const defineConfig: (config: EventConfigInput) => {
3003
3132
  helperText?: import("./TranslationConfig").TranslationConfig | undefined;
3004
3133
  hideLabel?: boolean | undefined;
3005
3134
  defaultValue?: string | undefined;
3135
+ } | {
3136
+ type: "SELECT_DATE_RANGE";
3137
+ id: string;
3138
+ options: {
3139
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
3140
+ label: import("./TranslationConfig").TranslationConfig;
3141
+ }[];
3142
+ label: import("./TranslationConfig").TranslationConfig;
3143
+ parent?: {
3144
+ $$field: string;
3145
+ } | undefined;
3146
+ validation?: {
3147
+ message: import("./TranslationConfig").TranslationConfig;
3148
+ validator: import(".").JSONSchema;
3149
+ }[] | undefined;
3150
+ required?: boolean | undefined;
3151
+ conditionals?: ({
3152
+ type: "SHOW";
3153
+ conditional: import(".").JSONSchema;
3154
+ } | {
3155
+ type: "ENABLE";
3156
+ conditional: import(".").JSONSchema;
3157
+ } | {
3158
+ type: "DISPLAY_ON_REVIEW";
3159
+ conditional: import(".").JSONSchema;
3160
+ })[] | undefined;
3161
+ secured?: boolean | undefined;
3162
+ placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
3163
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
3164
+ hideLabel?: boolean | undefined;
3165
+ defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
3006
3166
  } | {
3007
3167
  type: "NAME";
3008
3168
  id: string;
@@ -3037,6 +3197,8 @@ export declare const defineConfig: (config: EventConfigInput) => {
3037
3197
  maxLength?: number | undefined;
3038
3198
  prefix?: import("./TranslationConfig").TranslationConfig | undefined;
3039
3199
  postfix?: import("./TranslationConfig").TranslationConfig | undefined;
3200
+ includeMiddlename?: boolean | undefined;
3201
+ searchMode?: boolean | undefined;
3040
3202
  } | undefined;
3041
3203
  } | {
3042
3204
  type: "PHONE";
@@ -3206,6 +3368,9 @@ export declare const defineConfig: (config: EventConfigInput) => {
3206
3368
  helperText?: import("./TranslationConfig").TranslationConfig | undefined;
3207
3369
  hideLabel?: boolean | undefined;
3208
3370
  defaultValue?: string | undefined;
3371
+ configuration?: {
3372
+ searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
3373
+ } | undefined;
3209
3374
  } | {
3210
3375
  type: "FILE_WITH_OPTIONS";
3211
3376
  id: string;
@@ -3243,7 +3408,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
3243
3408
  defaultValue?: {
3244
3409
  type: string;
3245
3410
  option: string;
3246
- filename: string;
3411
+ path: string;
3247
3412
  originalFilename: string;
3248
3413
  }[] | undefined;
3249
3414
  } | {
@@ -3355,6 +3520,9 @@ export declare const defineConfig: (config: EventConfigInput) => {
3355
3520
  addressLine3?: string | undefined;
3356
3521
  postcodeOrZip?: string | undefined;
3357
3522
  } | undefined;
3523
+ configuration?: {
3524
+ searchMode?: boolean | undefined;
3525
+ } | undefined;
3358
3526
  } | {
3359
3527
  type: "DATA";
3360
3528
  id: string;
@@ -3649,7 +3817,10 @@ export declare const defineConfig: (config: EventConfigInput) => {
3649
3817
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
3650
3818
  helperText?: import("./TranslationConfig").TranslationConfig | undefined;
3651
3819
  hideLabel?: boolean | undefined;
3652
- defaultValue?: string | [string, string] | undefined;
3820
+ defaultValue?: string | {
3821
+ start: string;
3822
+ end: string;
3823
+ } | undefined;
3653
3824
  configuration?: {
3654
3825
  notice?: import("./TranslationConfig").TranslationConfig | undefined;
3655
3826
  } | undefined;
@@ -3748,7 +3919,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
3748
3919
  hideLabel?: boolean | undefined;
3749
3920
  defaultValue?: {
3750
3921
  type: string;
3751
- filename: string;
3922
+ path: string;
3752
3923
  originalFilename: string;
3753
3924
  } | undefined;
3754
3925
  } | {
@@ -3851,6 +4022,37 @@ export declare const defineConfig: (config: EventConfigInput) => {
3851
4022
  helperText?: import("./TranslationConfig").TranslationConfig | undefined;
3852
4023
  hideLabel?: boolean | undefined;
3853
4024
  defaultValue?: string | undefined;
4025
+ } | {
4026
+ type: "SELECT_DATE_RANGE";
4027
+ id: string;
4028
+ options: {
4029
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
4030
+ label: import("./TranslationConfig").TranslationConfig;
4031
+ }[];
4032
+ label: import("./TranslationConfig").TranslationConfig;
4033
+ parent?: {
4034
+ $$field: string;
4035
+ } | undefined;
4036
+ validation?: {
4037
+ message: import("./TranslationConfig").TranslationConfig;
4038
+ validator: import(".").JSONSchema;
4039
+ }[] | undefined;
4040
+ required?: boolean | undefined;
4041
+ conditionals?: ({
4042
+ type: "SHOW";
4043
+ conditional: import(".").JSONSchema;
4044
+ } | {
4045
+ type: "ENABLE";
4046
+ conditional: import(".").JSONSchema;
4047
+ } | {
4048
+ type: "DISPLAY_ON_REVIEW";
4049
+ conditional: import(".").JSONSchema;
4050
+ })[] | undefined;
4051
+ secured?: boolean | undefined;
4052
+ placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
4053
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
4054
+ hideLabel?: boolean | undefined;
4055
+ defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
3854
4056
  } | {
3855
4057
  type: "NAME";
3856
4058
  id: string;
@@ -3885,6 +4087,8 @@ export declare const defineConfig: (config: EventConfigInput) => {
3885
4087
  maxLength?: number | undefined;
3886
4088
  prefix?: import("./TranslationConfig").TranslationConfig | undefined;
3887
4089
  postfix?: import("./TranslationConfig").TranslationConfig | undefined;
4090
+ includeMiddlename?: boolean | undefined;
4091
+ searchMode?: boolean | undefined;
3888
4092
  } | undefined;
3889
4093
  } | {
3890
4094
  type: "PHONE";
@@ -4054,6 +4258,9 @@ export declare const defineConfig: (config: EventConfigInput) => {
4054
4258
  helperText?: import("./TranslationConfig").TranslationConfig | undefined;
4055
4259
  hideLabel?: boolean | undefined;
4056
4260
  defaultValue?: string | undefined;
4261
+ configuration?: {
4262
+ searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
4263
+ } | undefined;
4057
4264
  } | {
4058
4265
  type: "FILE_WITH_OPTIONS";
4059
4266
  id: string;
@@ -4091,7 +4298,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
4091
4298
  defaultValue?: {
4092
4299
  type: string;
4093
4300
  option: string;
4094
- filename: string;
4301
+ path: string;
4095
4302
  originalFilename: string;
4096
4303
  }[] | undefined;
4097
4304
  } | {
@@ -4203,6 +4410,9 @@ export declare const defineConfig: (config: EventConfigInput) => {
4203
4410
  addressLine3?: string | undefined;
4204
4411
  postcodeOrZip?: string | undefined;
4205
4412
  } | undefined;
4413
+ configuration?: {
4414
+ searchMode?: boolean | undefined;
4415
+ } | undefined;
4206
4416
  } | {
4207
4417
  type: "DATA";
4208
4418
  id: string;
@@ -4545,7 +4755,10 @@ export declare const defineConfig: (config: EventConfigInput) => {
4545
4755
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
4546
4756
  helperText?: import("./TranslationConfig").TranslationConfig | undefined;
4547
4757
  hideLabel?: boolean | undefined;
4548
- defaultValue?: string | [string, string] | undefined;
4758
+ defaultValue?: string | {
4759
+ start: string;
4760
+ end: string;
4761
+ } | undefined;
4549
4762
  configuration?: {
4550
4763
  notice?: import("./TranslationConfig").TranslationConfig | undefined;
4551
4764
  } | undefined;
@@ -4644,7 +4857,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
4644
4857
  hideLabel?: boolean | undefined;
4645
4858
  defaultValue?: {
4646
4859
  type: string;
4647
- filename: string;
4860
+ path: string;
4648
4861
  originalFilename: string;
4649
4862
  } | undefined;
4650
4863
  } | {
@@ -4747,6 +4960,37 @@ export declare const defineConfig: (config: EventConfigInput) => {
4747
4960
  helperText?: import("./TranslationConfig").TranslationConfig | undefined;
4748
4961
  hideLabel?: boolean | undefined;
4749
4962
  defaultValue?: string | undefined;
4963
+ } | {
4964
+ type: "SELECT_DATE_RANGE";
4965
+ id: string;
4966
+ options: {
4967
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
4968
+ label: import("./TranslationConfig").TranslationConfig;
4969
+ }[];
4970
+ label: import("./TranslationConfig").TranslationConfig;
4971
+ parent?: {
4972
+ $$field: string;
4973
+ } | undefined;
4974
+ validation?: {
4975
+ message: import("./TranslationConfig").TranslationConfig;
4976
+ validator: import(".").JSONSchema;
4977
+ }[] | undefined;
4978
+ required?: boolean | undefined;
4979
+ conditionals?: ({
4980
+ type: "SHOW";
4981
+ conditional: import(".").JSONSchema;
4982
+ } | {
4983
+ type: "ENABLE";
4984
+ conditional: import(".").JSONSchema;
4985
+ } | {
4986
+ type: "DISPLAY_ON_REVIEW";
4987
+ conditional: import(".").JSONSchema;
4988
+ })[] | undefined;
4989
+ secured?: boolean | undefined;
4990
+ placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
4991
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
4992
+ hideLabel?: boolean | undefined;
4993
+ defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
4750
4994
  } | {
4751
4995
  type: "NAME";
4752
4996
  id: string;
@@ -4781,6 +5025,8 @@ export declare const defineConfig: (config: EventConfigInput) => {
4781
5025
  maxLength?: number | undefined;
4782
5026
  prefix?: import("./TranslationConfig").TranslationConfig | undefined;
4783
5027
  postfix?: import("./TranslationConfig").TranslationConfig | undefined;
5028
+ includeMiddlename?: boolean | undefined;
5029
+ searchMode?: boolean | undefined;
4784
5030
  } | undefined;
4785
5031
  } | {
4786
5032
  type: "PHONE";
@@ -4950,6 +5196,9 @@ export declare const defineConfig: (config: EventConfigInput) => {
4950
5196
  helperText?: import("./TranslationConfig").TranslationConfig | undefined;
4951
5197
  hideLabel?: boolean | undefined;
4952
5198
  defaultValue?: string | undefined;
5199
+ configuration?: {
5200
+ searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
5201
+ } | undefined;
4953
5202
  } | {
4954
5203
  type: "FILE_WITH_OPTIONS";
4955
5204
  id: string;
@@ -4987,7 +5236,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
4987
5236
  defaultValue?: {
4988
5237
  type: string;
4989
5238
  option: string;
4990
- filename: string;
5239
+ path: string;
4991
5240
  originalFilename: string;
4992
5241
  }[] | undefined;
4993
5242
  } | {
@@ -5099,6 +5348,9 @@ export declare const defineConfig: (config: EventConfigInput) => {
5099
5348
  addressLine3?: string | undefined;
5100
5349
  postcodeOrZip?: string | undefined;
5101
5350
  } | undefined;
5351
+ configuration?: {
5352
+ searchMode?: boolean | undefined;
5353
+ } | undefined;
5102
5354
  } | {
5103
5355
  type: "DATA";
5104
5356
  id: string;
@@ -5396,7 +5648,10 @@ export declare const defineConfig: (config: EventConfigInput) => {
5396
5648
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
5397
5649
  helperText?: import("./TranslationConfig").TranslationConfig | undefined;
5398
5650
  hideLabel?: boolean | undefined;
5399
- defaultValue?: string | [string, string] | undefined;
5651
+ defaultValue?: string | {
5652
+ start: string;
5653
+ end: string;
5654
+ } | undefined;
5400
5655
  configuration?: {
5401
5656
  notice?: import("./TranslationConfig").TranslationConfig | undefined;
5402
5657
  } | undefined;
@@ -5495,7 +5750,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
5495
5750
  hideLabel?: boolean | undefined;
5496
5751
  defaultValue?: {
5497
5752
  type: string;
5498
- filename: string;
5753
+ path: string;
5499
5754
  originalFilename: string;
5500
5755
  } | undefined;
5501
5756
  } | {
@@ -5598,6 +5853,37 @@ export declare const defineConfig: (config: EventConfigInput) => {
5598
5853
  helperText?: import("./TranslationConfig").TranslationConfig | undefined;
5599
5854
  hideLabel?: boolean | undefined;
5600
5855
  defaultValue?: string | undefined;
5856
+ } | {
5857
+ type: "SELECT_DATE_RANGE";
5858
+ id: string;
5859
+ options: {
5860
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
5861
+ label: import("./TranslationConfig").TranslationConfig;
5862
+ }[];
5863
+ label: import("./TranslationConfig").TranslationConfig;
5864
+ parent?: {
5865
+ $$field: string;
5866
+ } | undefined;
5867
+ validation?: {
5868
+ message: import("./TranslationConfig").TranslationConfig;
5869
+ validator: import(".").JSONSchema;
5870
+ }[] | undefined;
5871
+ required?: boolean | undefined;
5872
+ conditionals?: ({
5873
+ type: "SHOW";
5874
+ conditional: import(".").JSONSchema;
5875
+ } | {
5876
+ type: "ENABLE";
5877
+ conditional: import(".").JSONSchema;
5878
+ } | {
5879
+ type: "DISPLAY_ON_REVIEW";
5880
+ conditional: import(".").JSONSchema;
5881
+ })[] | undefined;
5882
+ secured?: boolean | undefined;
5883
+ placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
5884
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
5885
+ hideLabel?: boolean | undefined;
5886
+ defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
5601
5887
  } | {
5602
5888
  type: "NAME";
5603
5889
  id: string;
@@ -5632,6 +5918,8 @@ export declare const defineConfig: (config: EventConfigInput) => {
5632
5918
  maxLength?: number | undefined;
5633
5919
  prefix?: import("./TranslationConfig").TranslationConfig | undefined;
5634
5920
  postfix?: import("./TranslationConfig").TranslationConfig | undefined;
5921
+ includeMiddlename?: boolean | undefined;
5922
+ searchMode?: boolean | undefined;
5635
5923
  } | undefined;
5636
5924
  } | {
5637
5925
  type: "PHONE";
@@ -5801,6 +6089,9 @@ export declare const defineConfig: (config: EventConfigInput) => {
5801
6089
  helperText?: import("./TranslationConfig").TranslationConfig | undefined;
5802
6090
  hideLabel?: boolean | undefined;
5803
6091
  defaultValue?: string | undefined;
6092
+ configuration?: {
6093
+ searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
6094
+ } | undefined;
5804
6095
  } | {
5805
6096
  type: "FILE_WITH_OPTIONS";
5806
6097
  id: string;
@@ -5838,7 +6129,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
5838
6129
  defaultValue?: {
5839
6130
  type: string;
5840
6131
  option: string;
5841
- filename: string;
6132
+ path: string;
5842
6133
  originalFilename: string;
5843
6134
  }[] | undefined;
5844
6135
  } | {
@@ -5950,6 +6241,9 @@ export declare const defineConfig: (config: EventConfigInput) => {
5950
6241
  addressLine3?: string | undefined;
5951
6242
  postcodeOrZip?: string | undefined;
5952
6243
  } | undefined;
6244
+ configuration?: {
6245
+ searchMode?: boolean | undefined;
6246
+ } | undefined;
5953
6247
  } | {
5954
6248
  type: "DATA";
5955
6249
  id: string;
@@ -6248,7 +6542,10 @@ export declare const defineConfig: (config: EventConfigInput) => {
6248
6542
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
6249
6543
  helperText?: import("./TranslationConfig").TranslationConfig | undefined;
6250
6544
  hideLabel?: boolean | undefined;
6251
- defaultValue?: string | [string, string] | undefined;
6545
+ defaultValue?: string | {
6546
+ start: string;
6547
+ end: string;
6548
+ } | undefined;
6252
6549
  configuration?: {
6253
6550
  notice?: import("./TranslationConfig").TranslationConfig | undefined;
6254
6551
  } | undefined;
@@ -6347,7 +6644,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
6347
6644
  hideLabel?: boolean | undefined;
6348
6645
  defaultValue?: {
6349
6646
  type: string;
6350
- filename: string;
6647
+ path: string;
6351
6648
  originalFilename: string;
6352
6649
  } | undefined;
6353
6650
  } | {
@@ -6450,6 +6747,37 @@ export declare const defineConfig: (config: EventConfigInput) => {
6450
6747
  helperText?: import("./TranslationConfig").TranslationConfig | undefined;
6451
6748
  hideLabel?: boolean | undefined;
6452
6749
  defaultValue?: string | undefined;
6750
+ } | {
6751
+ type: "SELECT_DATE_RANGE";
6752
+ id: string;
6753
+ options: {
6754
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
6755
+ label: import("./TranslationConfig").TranslationConfig;
6756
+ }[];
6757
+ label: import("./TranslationConfig").TranslationConfig;
6758
+ parent?: {
6759
+ $$field: string;
6760
+ } | undefined;
6761
+ validation?: {
6762
+ message: import("./TranslationConfig").TranslationConfig;
6763
+ validator: import(".").JSONSchema;
6764
+ }[] | undefined;
6765
+ required?: boolean | undefined;
6766
+ conditionals?: ({
6767
+ type: "SHOW";
6768
+ conditional: import(".").JSONSchema;
6769
+ } | {
6770
+ type: "ENABLE";
6771
+ conditional: import(".").JSONSchema;
6772
+ } | {
6773
+ type: "DISPLAY_ON_REVIEW";
6774
+ conditional: import(".").JSONSchema;
6775
+ })[] | undefined;
6776
+ secured?: boolean | undefined;
6777
+ placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
6778
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
6779
+ hideLabel?: boolean | undefined;
6780
+ defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
6453
6781
  } | {
6454
6782
  type: "NAME";
6455
6783
  id: string;
@@ -6484,6 +6812,8 @@ export declare const defineConfig: (config: EventConfigInput) => {
6484
6812
  maxLength?: number | undefined;
6485
6813
  prefix?: import("./TranslationConfig").TranslationConfig | undefined;
6486
6814
  postfix?: import("./TranslationConfig").TranslationConfig | undefined;
6815
+ includeMiddlename?: boolean | undefined;
6816
+ searchMode?: boolean | undefined;
6487
6817
  } | undefined;
6488
6818
  } | {
6489
6819
  type: "PHONE";
@@ -6653,6 +6983,9 @@ export declare const defineConfig: (config: EventConfigInput) => {
6653
6983
  helperText?: import("./TranslationConfig").TranslationConfig | undefined;
6654
6984
  hideLabel?: boolean | undefined;
6655
6985
  defaultValue?: string | undefined;
6986
+ configuration?: {
6987
+ searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
6988
+ } | undefined;
6656
6989
  } | {
6657
6990
  type: "FILE_WITH_OPTIONS";
6658
6991
  id: string;
@@ -6690,7 +7023,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
6690
7023
  defaultValue?: {
6691
7024
  type: string;
6692
7025
  option: string;
6693
- filename: string;
7026
+ path: string;
6694
7027
  originalFilename: string;
6695
7028
  }[] | undefined;
6696
7029
  } | {
@@ -6802,6 +7135,9 @@ export declare const defineConfig: (config: EventConfigInput) => {
6802
7135
  addressLine3?: string | undefined;
6803
7136
  postcodeOrZip?: string | undefined;
6804
7137
  } | undefined;
7138
+ configuration?: {
7139
+ searchMode?: boolean | undefined;
7140
+ } | undefined;
6805
7141
  } | {
6806
7142
  type: "DATA";
6807
7143
  id: string;
@@ -7099,7 +7435,10 @@ export declare const defineConfig: (config: EventConfigInput) => {
7099
7435
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
7100
7436
  helperText?: import("./TranslationConfig").TranslationConfig | undefined;
7101
7437
  hideLabel?: boolean | undefined;
7102
- defaultValue?: string | [string, string] | undefined;
7438
+ defaultValue?: string | {
7439
+ start: string;
7440
+ end: string;
7441
+ } | undefined;
7103
7442
  configuration?: {
7104
7443
  notice?: import("./TranslationConfig").TranslationConfig | undefined;
7105
7444
  } | undefined;
@@ -7198,7 +7537,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
7198
7537
  hideLabel?: boolean | undefined;
7199
7538
  defaultValue?: {
7200
7539
  type: string;
7201
- filename: string;
7540
+ path: string;
7202
7541
  originalFilename: string;
7203
7542
  } | undefined;
7204
7543
  } | {
@@ -7301,6 +7640,37 @@ export declare const defineConfig: (config: EventConfigInput) => {
7301
7640
  helperText?: import("./TranslationConfig").TranslationConfig | undefined;
7302
7641
  hideLabel?: boolean | undefined;
7303
7642
  defaultValue?: string | undefined;
7643
+ } | {
7644
+ type: "SELECT_DATE_RANGE";
7645
+ id: string;
7646
+ options: {
7647
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
7648
+ label: import("./TranslationConfig").TranslationConfig;
7649
+ }[];
7650
+ label: import("./TranslationConfig").TranslationConfig;
7651
+ parent?: {
7652
+ $$field: string;
7653
+ } | undefined;
7654
+ validation?: {
7655
+ message: import("./TranslationConfig").TranslationConfig;
7656
+ validator: import(".").JSONSchema;
7657
+ }[] | undefined;
7658
+ required?: boolean | undefined;
7659
+ conditionals?: ({
7660
+ type: "SHOW";
7661
+ conditional: import(".").JSONSchema;
7662
+ } | {
7663
+ type: "ENABLE";
7664
+ conditional: import(".").JSONSchema;
7665
+ } | {
7666
+ type: "DISPLAY_ON_REVIEW";
7667
+ conditional: import(".").JSONSchema;
7668
+ })[] | undefined;
7669
+ secured?: boolean | undefined;
7670
+ placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
7671
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
7672
+ hideLabel?: boolean | undefined;
7673
+ defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
7304
7674
  } | {
7305
7675
  type: "NAME";
7306
7676
  id: string;
@@ -7335,6 +7705,8 @@ export declare const defineConfig: (config: EventConfigInput) => {
7335
7705
  maxLength?: number | undefined;
7336
7706
  prefix?: import("./TranslationConfig").TranslationConfig | undefined;
7337
7707
  postfix?: import("./TranslationConfig").TranslationConfig | undefined;
7708
+ includeMiddlename?: boolean | undefined;
7709
+ searchMode?: boolean | undefined;
7338
7710
  } | undefined;
7339
7711
  } | {
7340
7712
  type: "PHONE";
@@ -7504,6 +7876,9 @@ export declare const defineConfig: (config: EventConfigInput) => {
7504
7876
  helperText?: import("./TranslationConfig").TranslationConfig | undefined;
7505
7877
  hideLabel?: boolean | undefined;
7506
7878
  defaultValue?: string | undefined;
7879
+ configuration?: {
7880
+ searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
7881
+ } | undefined;
7507
7882
  } | {
7508
7883
  type: "FILE_WITH_OPTIONS";
7509
7884
  id: string;
@@ -7541,7 +7916,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
7541
7916
  defaultValue?: {
7542
7917
  type: string;
7543
7918
  option: string;
7544
- filename: string;
7919
+ path: string;
7545
7920
  originalFilename: string;
7546
7921
  }[] | undefined;
7547
7922
  } | {
@@ -7653,6 +8028,9 @@ export declare const defineConfig: (config: EventConfigInput) => {
7653
8028
  addressLine3?: string | undefined;
7654
8029
  postcodeOrZip?: string | undefined;
7655
8030
  } | undefined;
8031
+ configuration?: {
8032
+ searchMode?: boolean | undefined;
8033
+ } | undefined;
7656
8034
  } | {
7657
8035
  type: "DATA";
7658
8036
  id: string;
@@ -7939,7 +8317,10 @@ export declare const defineConfig: (config: EventConfigInput) => {
7939
8317
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
7940
8318
  helperText?: import("./TranslationConfig").TranslationConfig | undefined;
7941
8319
  hideLabel?: boolean | undefined;
7942
- defaultValue?: string | [string, string] | undefined;
8320
+ defaultValue?: string | {
8321
+ start: string;
8322
+ end: string;
8323
+ } | undefined;
7943
8324
  configuration?: {
7944
8325
  notice?: import("./TranslationConfig").TranslationConfig | undefined;
7945
8326
  } | undefined;
@@ -8038,7 +8419,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
8038
8419
  hideLabel?: boolean | undefined;
8039
8420
  defaultValue?: {
8040
8421
  type: string;
8041
- filename: string;
8422
+ path: string;
8042
8423
  originalFilename: string;
8043
8424
  } | undefined;
8044
8425
  } | {
@@ -8141,6 +8522,37 @@ export declare const defineConfig: (config: EventConfigInput) => {
8141
8522
  helperText?: import("./TranslationConfig").TranslationConfig | undefined;
8142
8523
  hideLabel?: boolean | undefined;
8143
8524
  defaultValue?: string | undefined;
8525
+ } | {
8526
+ type: "SELECT_DATE_RANGE";
8527
+ id: string;
8528
+ options: {
8529
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
8530
+ label: import("./TranslationConfig").TranslationConfig;
8531
+ }[];
8532
+ label: import("./TranslationConfig").TranslationConfig;
8533
+ parent?: {
8534
+ $$field: string;
8535
+ } | undefined;
8536
+ validation?: {
8537
+ message: import("./TranslationConfig").TranslationConfig;
8538
+ validator: import(".").JSONSchema;
8539
+ }[] | undefined;
8540
+ required?: boolean | undefined;
8541
+ conditionals?: ({
8542
+ type: "SHOW";
8543
+ conditional: import(".").JSONSchema;
8544
+ } | {
8545
+ type: "ENABLE";
8546
+ conditional: import(".").JSONSchema;
8547
+ } | {
8548
+ type: "DISPLAY_ON_REVIEW";
8549
+ conditional: import(".").JSONSchema;
8550
+ })[] | undefined;
8551
+ secured?: boolean | undefined;
8552
+ placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
8553
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
8554
+ hideLabel?: boolean | undefined;
8555
+ defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
8144
8556
  } | {
8145
8557
  type: "NAME";
8146
8558
  id: string;
@@ -8175,6 +8587,8 @@ export declare const defineConfig: (config: EventConfigInput) => {
8175
8587
  maxLength?: number | undefined;
8176
8588
  prefix?: import("./TranslationConfig").TranslationConfig | undefined;
8177
8589
  postfix?: import("./TranslationConfig").TranslationConfig | undefined;
8590
+ includeMiddlename?: boolean | undefined;
8591
+ searchMode?: boolean | undefined;
8178
8592
  } | undefined;
8179
8593
  } | {
8180
8594
  type: "PHONE";
@@ -8344,6 +8758,9 @@ export declare const defineConfig: (config: EventConfigInput) => {
8344
8758
  helperText?: import("./TranslationConfig").TranslationConfig | undefined;
8345
8759
  hideLabel?: boolean | undefined;
8346
8760
  defaultValue?: string | undefined;
8761
+ configuration?: {
8762
+ searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
8763
+ } | undefined;
8347
8764
  } | {
8348
8765
  type: "FILE_WITH_OPTIONS";
8349
8766
  id: string;
@@ -8381,7 +8798,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
8381
8798
  defaultValue?: {
8382
8799
  type: string;
8383
8800
  option: string;
8384
- filename: string;
8801
+ path: string;
8385
8802
  originalFilename: string;
8386
8803
  }[] | undefined;
8387
8804
  } | {
@@ -8493,6 +8910,9 @@ export declare const defineConfig: (config: EventConfigInput) => {
8493
8910
  addressLine3?: string | undefined;
8494
8911
  postcodeOrZip?: string | undefined;
8495
8912
  } | undefined;
8913
+ configuration?: {
8914
+ searchMode?: boolean | undefined;
8915
+ } | undefined;
8496
8916
  } | {
8497
8917
  type: "DATA";
8498
8918
  id: string;
@@ -8790,7 +9210,10 @@ export declare const defineConfig: (config: EventConfigInput) => {
8790
9210
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
8791
9211
  helperText?: import("./TranslationConfig").TranslationConfig | undefined;
8792
9212
  hideLabel?: boolean | undefined;
8793
- defaultValue?: string | [string, string] | undefined;
9213
+ defaultValue?: string | {
9214
+ start: string;
9215
+ end: string;
9216
+ } | undefined;
8794
9217
  configuration?: {
8795
9218
  notice?: import("./TranslationConfig").TranslationConfig | undefined;
8796
9219
  } | undefined;
@@ -8889,7 +9312,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
8889
9312
  hideLabel?: boolean | undefined;
8890
9313
  defaultValue?: {
8891
9314
  type: string;
8892
- filename: string;
9315
+ path: string;
8893
9316
  originalFilename: string;
8894
9317
  } | undefined;
8895
9318
  } | {
@@ -8992,6 +9415,37 @@ export declare const defineConfig: (config: EventConfigInput) => {
8992
9415
  helperText?: import("./TranslationConfig").TranslationConfig | undefined;
8993
9416
  hideLabel?: boolean | undefined;
8994
9417
  defaultValue?: string | undefined;
9418
+ } | {
9419
+ type: "SELECT_DATE_RANGE";
9420
+ id: string;
9421
+ options: {
9422
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
9423
+ label: import("./TranslationConfig").TranslationConfig;
9424
+ }[];
9425
+ label: import("./TranslationConfig").TranslationConfig;
9426
+ parent?: {
9427
+ $$field: string;
9428
+ } | undefined;
9429
+ validation?: {
9430
+ message: import("./TranslationConfig").TranslationConfig;
9431
+ validator: import(".").JSONSchema;
9432
+ }[] | undefined;
9433
+ required?: boolean | undefined;
9434
+ conditionals?: ({
9435
+ type: "SHOW";
9436
+ conditional: import(".").JSONSchema;
9437
+ } | {
9438
+ type: "ENABLE";
9439
+ conditional: import(".").JSONSchema;
9440
+ } | {
9441
+ type: "DISPLAY_ON_REVIEW";
9442
+ conditional: import(".").JSONSchema;
9443
+ })[] | undefined;
9444
+ secured?: boolean | undefined;
9445
+ placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
9446
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
9447
+ hideLabel?: boolean | undefined;
9448
+ defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
8995
9449
  } | {
8996
9450
  type: "NAME";
8997
9451
  id: string;
@@ -9026,6 +9480,8 @@ export declare const defineConfig: (config: EventConfigInput) => {
9026
9480
  maxLength?: number | undefined;
9027
9481
  prefix?: import("./TranslationConfig").TranslationConfig | undefined;
9028
9482
  postfix?: import("./TranslationConfig").TranslationConfig | undefined;
9483
+ includeMiddlename?: boolean | undefined;
9484
+ searchMode?: boolean | undefined;
9029
9485
  } | undefined;
9030
9486
  } | {
9031
9487
  type: "PHONE";
@@ -9195,6 +9651,9 @@ export declare const defineConfig: (config: EventConfigInput) => {
9195
9651
  helperText?: import("./TranslationConfig").TranslationConfig | undefined;
9196
9652
  hideLabel?: boolean | undefined;
9197
9653
  defaultValue?: string | undefined;
9654
+ configuration?: {
9655
+ searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
9656
+ } | undefined;
9198
9657
  } | {
9199
9658
  type: "FILE_WITH_OPTIONS";
9200
9659
  id: string;
@@ -9232,7 +9691,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
9232
9691
  defaultValue?: {
9233
9692
  type: string;
9234
9693
  option: string;
9235
- filename: string;
9694
+ path: string;
9236
9695
  originalFilename: string;
9237
9696
  }[] | undefined;
9238
9697
  } | {
@@ -9344,6 +9803,9 @@ export declare const defineConfig: (config: EventConfigInput) => {
9344
9803
  addressLine3?: string | undefined;
9345
9804
  postcodeOrZip?: string | undefined;
9346
9805
  } | undefined;
9806
+ configuration?: {
9807
+ searchMode?: boolean | undefined;
9808
+ } | undefined;
9347
9809
  } | {
9348
9810
  type: "DATA";
9349
9811
  id: string;
@@ -9459,11 +9921,13 @@ export declare const defineConfig: (config: EventConfigInput) => {
9459
9921
  message: import("./TranslationConfig").TranslationConfig;
9460
9922
  validator: import(".").JSONSchema;
9461
9923
  }[] | undefined;
9924
+ alternateFieldIds?: string[] | undefined;
9925
+ excludeInSearchQuery?: boolean | undefined;
9462
9926
  } | {
9463
9927
  config: {
9464
9928
  type: "exact" | "fuzzy" | "range";
9465
9929
  };
9466
- fieldId: "status" | "updatedAt" | "trackingId" | "legalStatus.REGISTERED.createdAt" | "legalStatus.REGISTERED.createdAtLocation";
9930
+ fieldId: "status" | "updatedAt" | "trackingId" | "legalStatuses.REGISTERED.acceptedAt" | "legalStatuses.REGISTERED.createdAtLocation";
9467
9931
  fieldType: "event";
9468
9932
  options?: {
9469
9933
  value: string;