@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.
- package/dist/commons/api/router.d.ts +1806 -922
- package/dist/commons/conditionals/conditionals.d.ts +0 -12
- package/dist/commons/events/ActionConfig.d.ts +7830 -2014
- package/dist/commons/events/ActionDocument.d.ts +1948 -904
- package/dist/commons/events/ActionInput.d.ts +1680 -780
- package/dist/commons/events/AdvancedSearchConfig.d.ts +82 -33
- package/dist/commons/events/CompositeFieldValue.d.ts +9 -9
- package/dist/commons/events/CountryConfigQueryInput.d.ts +1086 -684
- package/dist/commons/events/Draft.d.ts +142 -70
- package/dist/commons/events/EventConfig.d.ts +3649 -935
- package/dist/commons/events/EventDocument.d.ts +1236 -588
- package/dist/commons/events/EventIndex.d.ts +339 -120
- package/dist/commons/events/FieldConfig.d.ts +455 -30
- package/dist/commons/events/FieldType.d.ts +2 -1
- package/dist/commons/events/FieldTypeMapping.d.ts +57 -25
- package/dist/commons/events/FieldValue.d.ts +45 -16
- package/dist/commons/events/FormConfig.d.ts +3005 -557
- package/dist/commons/events/PageConfig.d.ts +646 -38
- package/dist/commons/events/User.d.ts +6 -3
- package/dist/commons/events/WorkqueueConfig.d.ts +1990 -1174
- package/dist/commons/events/defineConfig.d.ts +498 -34
- package/dist/commons/events/event.d.ts +10 -18
- package/dist/commons/events/field.d.ts +13 -1
- package/dist/commons/events/test.utils.d.ts +43 -19
- package/dist/commons/events/utils.d.ts +2543 -77
- package/dist/conditionals/index.js +2 -34
- package/dist/events/index.js +963 -801
- package/dist/scopes/index.d.ts +92 -6
- package/dist/scopes/index.js +38 -9
- package/package.json +3 -3
@@ -8,6 +8,7 @@ import { EventDocument } from './EventDocument';
|
|
8
8
|
import { UUID } from '../uuid';
|
9
9
|
import { ActionConfig } from './ActionConfig';
|
10
10
|
import { FormConfig } from './FormConfig';
|
11
|
+
import { SelectDateRangeValue } from './FieldValue';
|
11
12
|
export declare function getDeclarationFields(configuration: EventConfig): FieldConfig[];
|
12
13
|
export declare function getDeclarationPages(configuration: EventConfig): {
|
13
14
|
type: "FORM";
|
@@ -257,7 +258,10 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
257
258
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
258
259
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
259
260
|
hideLabel?: boolean | undefined;
|
260
|
-
defaultValue?: string |
|
261
|
+
defaultValue?: string | {
|
262
|
+
start: string;
|
263
|
+
end: string;
|
264
|
+
} | undefined;
|
261
265
|
configuration?: {
|
262
266
|
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
263
267
|
} | undefined;
|
@@ -356,7 +360,7 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
356
360
|
hideLabel?: boolean | undefined;
|
357
361
|
defaultValue?: {
|
358
362
|
type: string;
|
359
|
-
|
363
|
+
path: string;
|
360
364
|
originalFilename: string;
|
361
365
|
} | undefined;
|
362
366
|
} | {
|
@@ -459,6 +463,37 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
459
463
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
460
464
|
hideLabel?: boolean | undefined;
|
461
465
|
defaultValue?: string | undefined;
|
466
|
+
} | {
|
467
|
+
type: "SELECT_DATE_RANGE";
|
468
|
+
id: string;
|
469
|
+
options: {
|
470
|
+
value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
471
|
+
label: import("./TranslationConfig").TranslationConfig;
|
472
|
+
}[];
|
473
|
+
label: import("./TranslationConfig").TranslationConfig;
|
474
|
+
parent?: {
|
475
|
+
$$field: string;
|
476
|
+
} | undefined;
|
477
|
+
validation?: {
|
478
|
+
message: import("./TranslationConfig").TranslationConfig;
|
479
|
+
validator: import(".").JSONSchema;
|
480
|
+
}[] | undefined;
|
481
|
+
required?: boolean | undefined;
|
482
|
+
conditionals?: ({
|
483
|
+
type: "SHOW";
|
484
|
+
conditional: import(".").JSONSchema;
|
485
|
+
} | {
|
486
|
+
type: "ENABLE";
|
487
|
+
conditional: import(".").JSONSchema;
|
488
|
+
} | {
|
489
|
+
type: "DISPLAY_ON_REVIEW";
|
490
|
+
conditional: import(".").JSONSchema;
|
491
|
+
})[] | undefined;
|
492
|
+
secured?: boolean | undefined;
|
493
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
494
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
495
|
+
hideLabel?: boolean | undefined;
|
496
|
+
defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
|
462
497
|
} | {
|
463
498
|
type: "NAME";
|
464
499
|
id: string;
|
@@ -493,6 +528,8 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
493
528
|
maxLength?: number | undefined;
|
494
529
|
prefix?: import("./TranslationConfig").TranslationConfig | undefined;
|
495
530
|
postfix?: import("./TranslationConfig").TranslationConfig | undefined;
|
531
|
+
includeMiddlename?: boolean | undefined;
|
532
|
+
searchMode?: boolean | undefined;
|
496
533
|
} | undefined;
|
497
534
|
} | {
|
498
535
|
type: "PHONE";
|
@@ -662,6 +699,9 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
662
699
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
663
700
|
hideLabel?: boolean | undefined;
|
664
701
|
defaultValue?: string | undefined;
|
702
|
+
configuration?: {
|
703
|
+
searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
|
704
|
+
} | undefined;
|
665
705
|
} | {
|
666
706
|
type: "FILE_WITH_OPTIONS";
|
667
707
|
id: string;
|
@@ -699,7 +739,7 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
699
739
|
defaultValue?: {
|
700
740
|
type: string;
|
701
741
|
option: string;
|
702
|
-
|
742
|
+
path: string;
|
703
743
|
originalFilename: string;
|
704
744
|
}[] | undefined;
|
705
745
|
} | {
|
@@ -811,6 +851,9 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
811
851
|
addressLine3?: string | undefined;
|
812
852
|
postcodeOrZip?: string | undefined;
|
813
853
|
} | undefined;
|
854
|
+
configuration?: {
|
855
|
+
searchMode?: boolean | undefined;
|
856
|
+
} | undefined;
|
814
857
|
} | {
|
815
858
|
type: "DATA";
|
816
859
|
id: string;
|
@@ -1099,7 +1142,10 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
1099
1142
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1100
1143
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1101
1144
|
hideLabel?: boolean | undefined;
|
1102
|
-
defaultValue?: string |
|
1145
|
+
defaultValue?: string | {
|
1146
|
+
start: string;
|
1147
|
+
end: string;
|
1148
|
+
} | undefined;
|
1103
1149
|
configuration?: {
|
1104
1150
|
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
1105
1151
|
} | undefined;
|
@@ -1198,7 +1244,7 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
1198
1244
|
hideLabel?: boolean | undefined;
|
1199
1245
|
defaultValue?: {
|
1200
1246
|
type: string;
|
1201
|
-
|
1247
|
+
path: string;
|
1202
1248
|
originalFilename: string;
|
1203
1249
|
} | undefined;
|
1204
1250
|
} | {
|
@@ -1301,6 +1347,37 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
1301
1347
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1302
1348
|
hideLabel?: boolean | undefined;
|
1303
1349
|
defaultValue?: string | undefined;
|
1350
|
+
} | {
|
1351
|
+
type: "SELECT_DATE_RANGE";
|
1352
|
+
id: string;
|
1353
|
+
options: {
|
1354
|
+
value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
1355
|
+
label: import("./TranslationConfig").TranslationConfig;
|
1356
|
+
}[];
|
1357
|
+
label: import("./TranslationConfig").TranslationConfig;
|
1358
|
+
parent?: {
|
1359
|
+
$$field: string;
|
1360
|
+
} | undefined;
|
1361
|
+
validation?: {
|
1362
|
+
message: import("./TranslationConfig").TranslationConfig;
|
1363
|
+
validator: import(".").JSONSchema;
|
1364
|
+
}[] | undefined;
|
1365
|
+
required?: boolean | undefined;
|
1366
|
+
conditionals?: ({
|
1367
|
+
type: "SHOW";
|
1368
|
+
conditional: import(".").JSONSchema;
|
1369
|
+
} | {
|
1370
|
+
type: "ENABLE";
|
1371
|
+
conditional: import(".").JSONSchema;
|
1372
|
+
} | {
|
1373
|
+
type: "DISPLAY_ON_REVIEW";
|
1374
|
+
conditional: import(".").JSONSchema;
|
1375
|
+
})[] | undefined;
|
1376
|
+
secured?: boolean | undefined;
|
1377
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1378
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1379
|
+
hideLabel?: boolean | undefined;
|
1380
|
+
defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
|
1304
1381
|
} | {
|
1305
1382
|
type: "NAME";
|
1306
1383
|
id: string;
|
@@ -1335,6 +1412,8 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
1335
1412
|
maxLength?: number | undefined;
|
1336
1413
|
prefix?: import("./TranslationConfig").TranslationConfig | undefined;
|
1337
1414
|
postfix?: import("./TranslationConfig").TranslationConfig | undefined;
|
1415
|
+
includeMiddlename?: boolean | undefined;
|
1416
|
+
searchMode?: boolean | undefined;
|
1338
1417
|
} | undefined;
|
1339
1418
|
} | {
|
1340
1419
|
type: "PHONE";
|
@@ -1504,6 +1583,9 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
1504
1583
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1505
1584
|
hideLabel?: boolean | undefined;
|
1506
1585
|
defaultValue?: string | undefined;
|
1586
|
+
configuration?: {
|
1587
|
+
searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
|
1588
|
+
} | undefined;
|
1507
1589
|
} | {
|
1508
1590
|
type: "FILE_WITH_OPTIONS";
|
1509
1591
|
id: string;
|
@@ -1541,7 +1623,7 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
1541
1623
|
defaultValue?: {
|
1542
1624
|
type: string;
|
1543
1625
|
option: string;
|
1544
|
-
|
1626
|
+
path: string;
|
1545
1627
|
originalFilename: string;
|
1546
1628
|
}[] | undefined;
|
1547
1629
|
} | {
|
@@ -1653,6 +1735,9 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
1653
1735
|
addressLine3?: string | undefined;
|
1654
1736
|
postcodeOrZip?: string | undefined;
|
1655
1737
|
} | undefined;
|
1738
|
+
configuration?: {
|
1739
|
+
searchMode?: boolean | undefined;
|
1740
|
+
} | undefined;
|
1656
1741
|
} | {
|
1657
1742
|
type: "DATA";
|
1658
1743
|
id: string;
|
@@ -1692,6 +1777,1781 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
1692
1777
|
conditional?: import(".").JSONSchema | undefined;
|
1693
1778
|
}[];
|
1694
1779
|
};
|
1780
|
+
export declare function getPrintCertificatePages(configuration: EventConfig): ({
|
1781
|
+
type: "FORM";
|
1782
|
+
id: string;
|
1783
|
+
title: import("./TranslationConfig").TranslationConfig;
|
1784
|
+
fields: ({
|
1785
|
+
type: "DIVIDER";
|
1786
|
+
id: string;
|
1787
|
+
label: import("./TranslationConfig").TranslationConfig;
|
1788
|
+
parent?: {
|
1789
|
+
$$field: string;
|
1790
|
+
} | undefined;
|
1791
|
+
validation?: {
|
1792
|
+
message: import("./TranslationConfig").TranslationConfig;
|
1793
|
+
validator: import(".").JSONSchema;
|
1794
|
+
}[] | undefined;
|
1795
|
+
required?: boolean | undefined;
|
1796
|
+
conditionals?: ({
|
1797
|
+
type: "SHOW";
|
1798
|
+
conditional: import(".").JSONSchema;
|
1799
|
+
} | {
|
1800
|
+
type: "ENABLE";
|
1801
|
+
conditional: import(".").JSONSchema;
|
1802
|
+
} | {
|
1803
|
+
type: "DISPLAY_ON_REVIEW";
|
1804
|
+
conditional: import(".").JSONSchema;
|
1805
|
+
})[] | undefined;
|
1806
|
+
secured?: boolean | undefined;
|
1807
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1808
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1809
|
+
hideLabel?: boolean | undefined;
|
1810
|
+
} | {
|
1811
|
+
type: "TEXT";
|
1812
|
+
id: string;
|
1813
|
+
label: import("./TranslationConfig").TranslationConfig;
|
1814
|
+
parent?: {
|
1815
|
+
$$field: string;
|
1816
|
+
} | undefined;
|
1817
|
+
validation?: {
|
1818
|
+
message: import("./TranslationConfig").TranslationConfig;
|
1819
|
+
validator: import(".").JSONSchema;
|
1820
|
+
}[] | undefined;
|
1821
|
+
required?: boolean | undefined;
|
1822
|
+
conditionals?: ({
|
1823
|
+
type: "SHOW";
|
1824
|
+
conditional: import(".").JSONSchema;
|
1825
|
+
} | {
|
1826
|
+
type: "ENABLE";
|
1827
|
+
conditional: import(".").JSONSchema;
|
1828
|
+
} | {
|
1829
|
+
type: "DISPLAY_ON_REVIEW";
|
1830
|
+
conditional: import(".").JSONSchema;
|
1831
|
+
})[] | undefined;
|
1832
|
+
secured?: boolean | undefined;
|
1833
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1834
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1835
|
+
hideLabel?: boolean | undefined;
|
1836
|
+
defaultValue?: string | undefined;
|
1837
|
+
configuration?: {
|
1838
|
+
type?: "text" | "password" | undefined;
|
1839
|
+
maxLength?: number | undefined;
|
1840
|
+
prefix?: import("./TranslationConfig").TranslationConfig | undefined;
|
1841
|
+
postfix?: import("./TranslationConfig").TranslationConfig | undefined;
|
1842
|
+
} | undefined;
|
1843
|
+
} | {
|
1844
|
+
type: "NUMBER";
|
1845
|
+
id: string;
|
1846
|
+
label: import("./TranslationConfig").TranslationConfig;
|
1847
|
+
parent?: {
|
1848
|
+
$$field: string;
|
1849
|
+
} | undefined;
|
1850
|
+
validation?: {
|
1851
|
+
message: import("./TranslationConfig").TranslationConfig;
|
1852
|
+
validator: import(".").JSONSchema;
|
1853
|
+
}[] | undefined;
|
1854
|
+
required?: boolean | undefined;
|
1855
|
+
conditionals?: ({
|
1856
|
+
type: "SHOW";
|
1857
|
+
conditional: import(".").JSONSchema;
|
1858
|
+
} | {
|
1859
|
+
type: "ENABLE";
|
1860
|
+
conditional: import(".").JSONSchema;
|
1861
|
+
} | {
|
1862
|
+
type: "DISPLAY_ON_REVIEW";
|
1863
|
+
conditional: import(".").JSONSchema;
|
1864
|
+
})[] | undefined;
|
1865
|
+
secured?: boolean | undefined;
|
1866
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1867
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1868
|
+
hideLabel?: boolean | undefined;
|
1869
|
+
defaultValue?: number | undefined;
|
1870
|
+
configuration?: {
|
1871
|
+
prefix?: import("./TranslationConfig").TranslationConfig | undefined;
|
1872
|
+
postfix?: import("./TranslationConfig").TranslationConfig | undefined;
|
1873
|
+
min?: number | undefined;
|
1874
|
+
max?: number | undefined;
|
1875
|
+
} | undefined;
|
1876
|
+
} | {
|
1877
|
+
type: "TEXTAREA";
|
1878
|
+
id: string;
|
1879
|
+
label: import("./TranslationConfig").TranslationConfig;
|
1880
|
+
parent?: {
|
1881
|
+
$$field: string;
|
1882
|
+
} | undefined;
|
1883
|
+
validation?: {
|
1884
|
+
message: import("./TranslationConfig").TranslationConfig;
|
1885
|
+
validator: import(".").JSONSchema;
|
1886
|
+
}[] | undefined;
|
1887
|
+
required?: boolean | undefined;
|
1888
|
+
conditionals?: ({
|
1889
|
+
type: "SHOW";
|
1890
|
+
conditional: import(".").JSONSchema;
|
1891
|
+
} | {
|
1892
|
+
type: "ENABLE";
|
1893
|
+
conditional: import(".").JSONSchema;
|
1894
|
+
} | {
|
1895
|
+
type: "DISPLAY_ON_REVIEW";
|
1896
|
+
conditional: import(".").JSONSchema;
|
1897
|
+
})[] | undefined;
|
1898
|
+
secured?: boolean | undefined;
|
1899
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1900
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1901
|
+
hideLabel?: boolean | undefined;
|
1902
|
+
defaultValue?: string | undefined;
|
1903
|
+
configuration?: {
|
1904
|
+
maxLength?: number | undefined;
|
1905
|
+
prefix?: import("./TranslationConfig").TranslationConfig | undefined;
|
1906
|
+
postfix?: import("./TranslationConfig").TranslationConfig | undefined;
|
1907
|
+
rows?: number | undefined;
|
1908
|
+
cols?: number | undefined;
|
1909
|
+
} | undefined;
|
1910
|
+
} | {
|
1911
|
+
type: "SIGNATURE";
|
1912
|
+
id: string;
|
1913
|
+
label: import("./TranslationConfig").TranslationConfig;
|
1914
|
+
configuration: {
|
1915
|
+
maxFileSize: number;
|
1916
|
+
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
1917
|
+
};
|
1918
|
+
signaturePromptLabel: import("./TranslationConfig").TranslationConfig;
|
1919
|
+
parent?: {
|
1920
|
+
$$field: string;
|
1921
|
+
} | undefined;
|
1922
|
+
validation?: {
|
1923
|
+
message: import("./TranslationConfig").TranslationConfig;
|
1924
|
+
validator: import(".").JSONSchema;
|
1925
|
+
}[] | undefined;
|
1926
|
+
required?: boolean | undefined;
|
1927
|
+
conditionals?: ({
|
1928
|
+
type: "SHOW";
|
1929
|
+
conditional: import(".").JSONSchema;
|
1930
|
+
} | {
|
1931
|
+
type: "ENABLE";
|
1932
|
+
conditional: import(".").JSONSchema;
|
1933
|
+
} | {
|
1934
|
+
type: "DISPLAY_ON_REVIEW";
|
1935
|
+
conditional: import(".").JSONSchema;
|
1936
|
+
})[] | undefined;
|
1937
|
+
secured?: boolean | undefined;
|
1938
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1939
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1940
|
+
hideLabel?: boolean | undefined;
|
1941
|
+
defaultValue?: string | undefined;
|
1942
|
+
} | {
|
1943
|
+
type: "EMAIL";
|
1944
|
+
id: string;
|
1945
|
+
label: import("./TranslationConfig").TranslationConfig;
|
1946
|
+
parent?: {
|
1947
|
+
$$field: string;
|
1948
|
+
} | undefined;
|
1949
|
+
validation?: {
|
1950
|
+
message: import("./TranslationConfig").TranslationConfig;
|
1951
|
+
validator: import(".").JSONSchema;
|
1952
|
+
}[] | undefined;
|
1953
|
+
required?: boolean | undefined;
|
1954
|
+
conditionals?: ({
|
1955
|
+
type: "SHOW";
|
1956
|
+
conditional: import(".").JSONSchema;
|
1957
|
+
} | {
|
1958
|
+
type: "ENABLE";
|
1959
|
+
conditional: import(".").JSONSchema;
|
1960
|
+
} | {
|
1961
|
+
type: "DISPLAY_ON_REVIEW";
|
1962
|
+
conditional: import(".").JSONSchema;
|
1963
|
+
})[] | undefined;
|
1964
|
+
secured?: boolean | undefined;
|
1965
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1966
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1967
|
+
hideLabel?: boolean | undefined;
|
1968
|
+
defaultValue?: string | undefined;
|
1969
|
+
configuration?: {
|
1970
|
+
maxLength?: number | undefined;
|
1971
|
+
} | undefined;
|
1972
|
+
} | {
|
1973
|
+
type: "DATE";
|
1974
|
+
id: string;
|
1975
|
+
label: import("./TranslationConfig").TranslationConfig;
|
1976
|
+
parent?: {
|
1977
|
+
$$field: string;
|
1978
|
+
} | undefined;
|
1979
|
+
validation?: {
|
1980
|
+
message: import("./TranslationConfig").TranslationConfig;
|
1981
|
+
validator: import(".").JSONSchema;
|
1982
|
+
}[] | undefined;
|
1983
|
+
required?: boolean | undefined;
|
1984
|
+
conditionals?: ({
|
1985
|
+
type: "SHOW";
|
1986
|
+
conditional: import(".").JSONSchema;
|
1987
|
+
} | {
|
1988
|
+
type: "ENABLE";
|
1989
|
+
conditional: import(".").JSONSchema;
|
1990
|
+
} | {
|
1991
|
+
type: "DISPLAY_ON_REVIEW";
|
1992
|
+
conditional: import(".").JSONSchema;
|
1993
|
+
})[] | undefined;
|
1994
|
+
secured?: boolean | undefined;
|
1995
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1996
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1997
|
+
hideLabel?: boolean | undefined;
|
1998
|
+
defaultValue?: string | undefined;
|
1999
|
+
configuration?: {
|
2000
|
+
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
2001
|
+
} | undefined;
|
2002
|
+
} | {
|
2003
|
+
type: "DATE_RANGE";
|
2004
|
+
id: string;
|
2005
|
+
label: import("./TranslationConfig").TranslationConfig;
|
2006
|
+
parent?: {
|
2007
|
+
$$field: string;
|
2008
|
+
} | undefined;
|
2009
|
+
validation?: {
|
2010
|
+
message: import("./TranslationConfig").TranslationConfig;
|
2011
|
+
validator: import(".").JSONSchema;
|
2012
|
+
}[] | undefined;
|
2013
|
+
required?: boolean | undefined;
|
2014
|
+
conditionals?: ({
|
2015
|
+
type: "SHOW";
|
2016
|
+
conditional: import(".").JSONSchema;
|
2017
|
+
} | {
|
2018
|
+
type: "ENABLE";
|
2019
|
+
conditional: import(".").JSONSchema;
|
2020
|
+
} | {
|
2021
|
+
type: "DISPLAY_ON_REVIEW";
|
2022
|
+
conditional: import(".").JSONSchema;
|
2023
|
+
})[] | undefined;
|
2024
|
+
secured?: boolean | undefined;
|
2025
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2026
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2027
|
+
hideLabel?: boolean | undefined;
|
2028
|
+
defaultValue?: string | {
|
2029
|
+
start: string;
|
2030
|
+
end: string;
|
2031
|
+
} | undefined;
|
2032
|
+
configuration?: {
|
2033
|
+
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
2034
|
+
} | undefined;
|
2035
|
+
} | {
|
2036
|
+
type: "PARAGRAPH";
|
2037
|
+
id: string;
|
2038
|
+
label: import("./TranslationConfig").TranslationConfig;
|
2039
|
+
configuration: {
|
2040
|
+
styles?: {
|
2041
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
2042
|
+
} | undefined;
|
2043
|
+
};
|
2044
|
+
parent?: {
|
2045
|
+
$$field: string;
|
2046
|
+
} | undefined;
|
2047
|
+
validation?: {
|
2048
|
+
message: import("./TranslationConfig").TranslationConfig;
|
2049
|
+
validator: import(".").JSONSchema;
|
2050
|
+
}[] | undefined;
|
2051
|
+
required?: boolean | undefined;
|
2052
|
+
conditionals?: ({
|
2053
|
+
type: "SHOW";
|
2054
|
+
conditional: import(".").JSONSchema;
|
2055
|
+
} | {
|
2056
|
+
type: "ENABLE";
|
2057
|
+
conditional: import(".").JSONSchema;
|
2058
|
+
} | {
|
2059
|
+
type: "DISPLAY_ON_REVIEW";
|
2060
|
+
conditional: import(".").JSONSchema;
|
2061
|
+
})[] | undefined;
|
2062
|
+
secured?: boolean | undefined;
|
2063
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2064
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2065
|
+
hideLabel?: boolean | undefined;
|
2066
|
+
defaultValue?: string | undefined;
|
2067
|
+
} | {
|
2068
|
+
type: "PAGE_HEADER";
|
2069
|
+
id: string;
|
2070
|
+
label: import("./TranslationConfig").TranslationConfig;
|
2071
|
+
parent?: {
|
2072
|
+
$$field: string;
|
2073
|
+
} | undefined;
|
2074
|
+
validation?: {
|
2075
|
+
message: import("./TranslationConfig").TranslationConfig;
|
2076
|
+
validator: import(".").JSONSchema;
|
2077
|
+
}[] | undefined;
|
2078
|
+
required?: boolean | undefined;
|
2079
|
+
conditionals?: ({
|
2080
|
+
type: "SHOW";
|
2081
|
+
conditional: import(".").JSONSchema;
|
2082
|
+
} | {
|
2083
|
+
type: "ENABLE";
|
2084
|
+
conditional: import(".").JSONSchema;
|
2085
|
+
} | {
|
2086
|
+
type: "DISPLAY_ON_REVIEW";
|
2087
|
+
conditional: import(".").JSONSchema;
|
2088
|
+
})[] | undefined;
|
2089
|
+
secured?: boolean | undefined;
|
2090
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2091
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2092
|
+
hideLabel?: boolean | undefined;
|
2093
|
+
defaultValue?: string | undefined;
|
2094
|
+
} | {
|
2095
|
+
type: "FILE";
|
2096
|
+
id: string;
|
2097
|
+
label: import("./TranslationConfig").TranslationConfig;
|
2098
|
+
configuration: {
|
2099
|
+
maxFileSize: number;
|
2100
|
+
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
2101
|
+
style?: {
|
2102
|
+
width?: "full" | "auto" | undefined;
|
2103
|
+
} | undefined;
|
2104
|
+
fileName?: import("./TranslationConfig").TranslationConfig | undefined;
|
2105
|
+
};
|
2106
|
+
parent?: {
|
2107
|
+
$$field: string;
|
2108
|
+
} | undefined;
|
2109
|
+
validation?: {
|
2110
|
+
message: import("./TranslationConfig").TranslationConfig;
|
2111
|
+
validator: import(".").JSONSchema;
|
2112
|
+
}[] | undefined;
|
2113
|
+
required?: boolean | undefined;
|
2114
|
+
conditionals?: ({
|
2115
|
+
type: "SHOW";
|
2116
|
+
conditional: import(".").JSONSchema;
|
2117
|
+
} | {
|
2118
|
+
type: "ENABLE";
|
2119
|
+
conditional: import(".").JSONSchema;
|
2120
|
+
} | {
|
2121
|
+
type: "DISPLAY_ON_REVIEW";
|
2122
|
+
conditional: import(".").JSONSchema;
|
2123
|
+
})[] | undefined;
|
2124
|
+
secured?: boolean | undefined;
|
2125
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2126
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2127
|
+
hideLabel?: boolean | undefined;
|
2128
|
+
defaultValue?: {
|
2129
|
+
type: string;
|
2130
|
+
path: string;
|
2131
|
+
originalFilename: string;
|
2132
|
+
} | undefined;
|
2133
|
+
} | {
|
2134
|
+
type: "RADIO_GROUP";
|
2135
|
+
id: string;
|
2136
|
+
options: {
|
2137
|
+
value: string;
|
2138
|
+
label: import("./TranslationConfig").TranslationConfig;
|
2139
|
+
}[];
|
2140
|
+
label: import("./TranslationConfig").TranslationConfig;
|
2141
|
+
parent?: {
|
2142
|
+
$$field: string;
|
2143
|
+
} | undefined;
|
2144
|
+
validation?: {
|
2145
|
+
message: import("./TranslationConfig").TranslationConfig;
|
2146
|
+
validator: import(".").JSONSchema;
|
2147
|
+
}[] | undefined;
|
2148
|
+
required?: boolean | undefined;
|
2149
|
+
conditionals?: ({
|
2150
|
+
type: "SHOW";
|
2151
|
+
conditional: import(".").JSONSchema;
|
2152
|
+
} | {
|
2153
|
+
type: "ENABLE";
|
2154
|
+
conditional: import(".").JSONSchema;
|
2155
|
+
} | {
|
2156
|
+
type: "DISPLAY_ON_REVIEW";
|
2157
|
+
conditional: import(".").JSONSchema;
|
2158
|
+
})[] | undefined;
|
2159
|
+
secured?: boolean | undefined;
|
2160
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2161
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2162
|
+
hideLabel?: boolean | undefined;
|
2163
|
+
defaultValue?: string | undefined;
|
2164
|
+
configuration?: {
|
2165
|
+
styles?: {
|
2166
|
+
size?: "NORMAL" | "LARGE" | undefined;
|
2167
|
+
} | undefined;
|
2168
|
+
} | undefined;
|
2169
|
+
} | {
|
2170
|
+
type: "BULLET_LIST";
|
2171
|
+
id: string;
|
2172
|
+
label: import("./TranslationConfig").TranslationConfig;
|
2173
|
+
configuration: {
|
2174
|
+
styles?: {
|
2175
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
2176
|
+
} | undefined;
|
2177
|
+
};
|
2178
|
+
items: import("./TranslationConfig").TranslationConfig[];
|
2179
|
+
parent?: {
|
2180
|
+
$$field: string;
|
2181
|
+
} | undefined;
|
2182
|
+
validation?: {
|
2183
|
+
message: import("./TranslationConfig").TranslationConfig;
|
2184
|
+
validator: import(".").JSONSchema;
|
2185
|
+
}[] | undefined;
|
2186
|
+
required?: boolean | undefined;
|
2187
|
+
conditionals?: ({
|
2188
|
+
type: "SHOW";
|
2189
|
+
conditional: import(".").JSONSchema;
|
2190
|
+
} | {
|
2191
|
+
type: "ENABLE";
|
2192
|
+
conditional: import(".").JSONSchema;
|
2193
|
+
} | {
|
2194
|
+
type: "DISPLAY_ON_REVIEW";
|
2195
|
+
conditional: import(".").JSONSchema;
|
2196
|
+
})[] | undefined;
|
2197
|
+
secured?: boolean | undefined;
|
2198
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2199
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2200
|
+
hideLabel?: boolean | undefined;
|
2201
|
+
defaultValue?: string | undefined;
|
2202
|
+
} | {
|
2203
|
+
type: "SELECT";
|
2204
|
+
id: string;
|
2205
|
+
options: {
|
2206
|
+
value: string;
|
2207
|
+
label: import("./TranslationConfig").TranslationConfig;
|
2208
|
+
}[];
|
2209
|
+
label: import("./TranslationConfig").TranslationConfig;
|
2210
|
+
parent?: {
|
2211
|
+
$$field: string;
|
2212
|
+
} | undefined;
|
2213
|
+
validation?: {
|
2214
|
+
message: import("./TranslationConfig").TranslationConfig;
|
2215
|
+
validator: import(".").JSONSchema;
|
2216
|
+
}[] | undefined;
|
2217
|
+
required?: boolean | undefined;
|
2218
|
+
conditionals?: ({
|
2219
|
+
type: "SHOW";
|
2220
|
+
conditional: import(".").JSONSchema;
|
2221
|
+
} | {
|
2222
|
+
type: "ENABLE";
|
2223
|
+
conditional: import(".").JSONSchema;
|
2224
|
+
} | {
|
2225
|
+
type: "DISPLAY_ON_REVIEW";
|
2226
|
+
conditional: import(".").JSONSchema;
|
2227
|
+
})[] | undefined;
|
2228
|
+
secured?: boolean | undefined;
|
2229
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2230
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2231
|
+
hideLabel?: boolean | undefined;
|
2232
|
+
defaultValue?: string | undefined;
|
2233
|
+
} | {
|
2234
|
+
type: "SELECT_DATE_RANGE";
|
2235
|
+
id: string;
|
2236
|
+
options: {
|
2237
|
+
value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
2238
|
+
label: import("./TranslationConfig").TranslationConfig;
|
2239
|
+
}[];
|
2240
|
+
label: import("./TranslationConfig").TranslationConfig;
|
2241
|
+
parent?: {
|
2242
|
+
$$field: string;
|
2243
|
+
} | undefined;
|
2244
|
+
validation?: {
|
2245
|
+
message: import("./TranslationConfig").TranslationConfig;
|
2246
|
+
validator: import(".").JSONSchema;
|
2247
|
+
}[] | undefined;
|
2248
|
+
required?: boolean | undefined;
|
2249
|
+
conditionals?: ({
|
2250
|
+
type: "SHOW";
|
2251
|
+
conditional: import(".").JSONSchema;
|
2252
|
+
} | {
|
2253
|
+
type: "ENABLE";
|
2254
|
+
conditional: import(".").JSONSchema;
|
2255
|
+
} | {
|
2256
|
+
type: "DISPLAY_ON_REVIEW";
|
2257
|
+
conditional: import(".").JSONSchema;
|
2258
|
+
})[] | undefined;
|
2259
|
+
secured?: boolean | undefined;
|
2260
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2261
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2262
|
+
hideLabel?: boolean | undefined;
|
2263
|
+
defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
|
2264
|
+
} | {
|
2265
|
+
type: "NAME";
|
2266
|
+
id: string;
|
2267
|
+
label: import("./TranslationConfig").TranslationConfig;
|
2268
|
+
parent?: {
|
2269
|
+
$$field: string;
|
2270
|
+
} | undefined;
|
2271
|
+
validation?: {
|
2272
|
+
message: import("./TranslationConfig").TranslationConfig;
|
2273
|
+
validator: import(".").JSONSchema;
|
2274
|
+
}[] | undefined;
|
2275
|
+
required?: boolean | undefined;
|
2276
|
+
conditionals?: ({
|
2277
|
+
type: "SHOW";
|
2278
|
+
conditional: import(".").JSONSchema;
|
2279
|
+
} | {
|
2280
|
+
type: "ENABLE";
|
2281
|
+
conditional: import(".").JSONSchema;
|
2282
|
+
} | {
|
2283
|
+
type: "DISPLAY_ON_REVIEW";
|
2284
|
+
conditional: import(".").JSONSchema;
|
2285
|
+
})[] | undefined;
|
2286
|
+
secured?: boolean | undefined;
|
2287
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2288
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2289
|
+
hideLabel?: boolean | undefined;
|
2290
|
+
defaultValue?: {
|
2291
|
+
firstname: string;
|
2292
|
+
surname: string;
|
2293
|
+
} | undefined;
|
2294
|
+
configuration?: {
|
2295
|
+
maxLength?: number | undefined;
|
2296
|
+
prefix?: import("./TranslationConfig").TranslationConfig | undefined;
|
2297
|
+
postfix?: import("./TranslationConfig").TranslationConfig | undefined;
|
2298
|
+
includeMiddlename?: boolean | undefined;
|
2299
|
+
searchMode?: boolean | undefined;
|
2300
|
+
} | undefined;
|
2301
|
+
} | {
|
2302
|
+
type: "PHONE";
|
2303
|
+
id: string;
|
2304
|
+
label: import("./TranslationConfig").TranslationConfig;
|
2305
|
+
parent?: {
|
2306
|
+
$$field: string;
|
2307
|
+
} | undefined;
|
2308
|
+
validation?: {
|
2309
|
+
message: import("./TranslationConfig").TranslationConfig;
|
2310
|
+
validator: import(".").JSONSchema;
|
2311
|
+
}[] | undefined;
|
2312
|
+
required?: boolean | undefined;
|
2313
|
+
conditionals?: ({
|
2314
|
+
type: "SHOW";
|
2315
|
+
conditional: import(".").JSONSchema;
|
2316
|
+
} | {
|
2317
|
+
type: "ENABLE";
|
2318
|
+
conditional: import(".").JSONSchema;
|
2319
|
+
} | {
|
2320
|
+
type: "DISPLAY_ON_REVIEW";
|
2321
|
+
conditional: import(".").JSONSchema;
|
2322
|
+
})[] | undefined;
|
2323
|
+
secured?: boolean | undefined;
|
2324
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2325
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2326
|
+
hideLabel?: boolean | undefined;
|
2327
|
+
defaultValue?: string | undefined;
|
2328
|
+
} | {
|
2329
|
+
type: "ID";
|
2330
|
+
id: string;
|
2331
|
+
label: import("./TranslationConfig").TranslationConfig;
|
2332
|
+
parent?: {
|
2333
|
+
$$field: string;
|
2334
|
+
} | undefined;
|
2335
|
+
validation?: {
|
2336
|
+
message: import("./TranslationConfig").TranslationConfig;
|
2337
|
+
validator: import(".").JSONSchema;
|
2338
|
+
}[] | undefined;
|
2339
|
+
required?: boolean | undefined;
|
2340
|
+
conditionals?: ({
|
2341
|
+
type: "SHOW";
|
2342
|
+
conditional: import(".").JSONSchema;
|
2343
|
+
} | {
|
2344
|
+
type: "ENABLE";
|
2345
|
+
conditional: import(".").JSONSchema;
|
2346
|
+
} | {
|
2347
|
+
type: "DISPLAY_ON_REVIEW";
|
2348
|
+
conditional: import(".").JSONSchema;
|
2349
|
+
})[] | undefined;
|
2350
|
+
secured?: boolean | undefined;
|
2351
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2352
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2353
|
+
hideLabel?: boolean | undefined;
|
2354
|
+
defaultValue?: string | undefined;
|
2355
|
+
} | {
|
2356
|
+
type: "CHECKBOX";
|
2357
|
+
id: string;
|
2358
|
+
label: import("./TranslationConfig").TranslationConfig;
|
2359
|
+
parent?: {
|
2360
|
+
$$field: string;
|
2361
|
+
} | undefined;
|
2362
|
+
validation?: {
|
2363
|
+
message: import("./TranslationConfig").TranslationConfig;
|
2364
|
+
validator: import(".").JSONSchema;
|
2365
|
+
}[] | undefined;
|
2366
|
+
required?: boolean | undefined;
|
2367
|
+
conditionals?: ({
|
2368
|
+
type: "SHOW";
|
2369
|
+
conditional: import(".").JSONSchema;
|
2370
|
+
} | {
|
2371
|
+
type: "ENABLE";
|
2372
|
+
conditional: import(".").JSONSchema;
|
2373
|
+
} | {
|
2374
|
+
type: "DISPLAY_ON_REVIEW";
|
2375
|
+
conditional: import(".").JSONSchema;
|
2376
|
+
})[] | undefined;
|
2377
|
+
secured?: boolean | undefined;
|
2378
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2379
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2380
|
+
hideLabel?: boolean | undefined;
|
2381
|
+
defaultValue?: boolean | undefined;
|
2382
|
+
} | {
|
2383
|
+
type: "COUNTRY";
|
2384
|
+
id: string;
|
2385
|
+
label: import("./TranslationConfig").TranslationConfig;
|
2386
|
+
parent?: {
|
2387
|
+
$$field: string;
|
2388
|
+
} | undefined;
|
2389
|
+
validation?: {
|
2390
|
+
message: import("./TranslationConfig").TranslationConfig;
|
2391
|
+
validator: import(".").JSONSchema;
|
2392
|
+
}[] | undefined;
|
2393
|
+
required?: boolean | undefined;
|
2394
|
+
conditionals?: ({
|
2395
|
+
type: "SHOW";
|
2396
|
+
conditional: import(".").JSONSchema;
|
2397
|
+
} | {
|
2398
|
+
type: "ENABLE";
|
2399
|
+
conditional: import(".").JSONSchema;
|
2400
|
+
} | {
|
2401
|
+
type: "DISPLAY_ON_REVIEW";
|
2402
|
+
conditional: import(".").JSONSchema;
|
2403
|
+
})[] | undefined;
|
2404
|
+
secured?: boolean | undefined;
|
2405
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2406
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2407
|
+
hideLabel?: boolean | undefined;
|
2408
|
+
defaultValue?: string | undefined;
|
2409
|
+
} | {
|
2410
|
+
type: "ADMINISTRATIVE_AREA";
|
2411
|
+
id: string;
|
2412
|
+
label: import("./TranslationConfig").TranslationConfig;
|
2413
|
+
configuration: {
|
2414
|
+
type: "ADMIN_STRUCTURE" | "HEALTH_FACILITY" | "CRVS_OFFICE";
|
2415
|
+
partOf?: {
|
2416
|
+
$declaration: string;
|
2417
|
+
} | undefined;
|
2418
|
+
};
|
2419
|
+
parent?: {
|
2420
|
+
$$field: string;
|
2421
|
+
} | undefined;
|
2422
|
+
validation?: {
|
2423
|
+
message: import("./TranslationConfig").TranslationConfig;
|
2424
|
+
validator: import(".").JSONSchema;
|
2425
|
+
}[] | undefined;
|
2426
|
+
required?: boolean | undefined;
|
2427
|
+
conditionals?: ({
|
2428
|
+
type: "SHOW";
|
2429
|
+
conditional: import(".").JSONSchema;
|
2430
|
+
} | {
|
2431
|
+
type: "ENABLE";
|
2432
|
+
conditional: import(".").JSONSchema;
|
2433
|
+
} | {
|
2434
|
+
type: "DISPLAY_ON_REVIEW";
|
2435
|
+
conditional: import(".").JSONSchema;
|
2436
|
+
})[] | undefined;
|
2437
|
+
secured?: boolean | undefined;
|
2438
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2439
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2440
|
+
hideLabel?: boolean | undefined;
|
2441
|
+
defaultValue?: string | undefined;
|
2442
|
+
} | {
|
2443
|
+
type: "LOCATION";
|
2444
|
+
id: string;
|
2445
|
+
label: import("./TranslationConfig").TranslationConfig;
|
2446
|
+
parent?: {
|
2447
|
+
$$field: string;
|
2448
|
+
} | undefined;
|
2449
|
+
validation?: {
|
2450
|
+
message: import("./TranslationConfig").TranslationConfig;
|
2451
|
+
validator: import(".").JSONSchema;
|
2452
|
+
}[] | undefined;
|
2453
|
+
required?: boolean | undefined;
|
2454
|
+
conditionals?: ({
|
2455
|
+
type: "SHOW";
|
2456
|
+
conditional: import(".").JSONSchema;
|
2457
|
+
} | {
|
2458
|
+
type: "ENABLE";
|
2459
|
+
conditional: import(".").JSONSchema;
|
2460
|
+
} | {
|
2461
|
+
type: "DISPLAY_ON_REVIEW";
|
2462
|
+
conditional: import(".").JSONSchema;
|
2463
|
+
})[] | undefined;
|
2464
|
+
secured?: boolean | undefined;
|
2465
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2466
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2467
|
+
hideLabel?: boolean | undefined;
|
2468
|
+
defaultValue?: string | undefined;
|
2469
|
+
configuration?: {
|
2470
|
+
searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
|
2471
|
+
} | undefined;
|
2472
|
+
} | {
|
2473
|
+
type: "FILE_WITH_OPTIONS";
|
2474
|
+
id: string;
|
2475
|
+
options: {
|
2476
|
+
value: string;
|
2477
|
+
label: import("./TranslationConfig").TranslationConfig;
|
2478
|
+
}[];
|
2479
|
+
label: import("./TranslationConfig").TranslationConfig;
|
2480
|
+
configuration: {
|
2481
|
+
maxFileSize: number;
|
2482
|
+
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
2483
|
+
};
|
2484
|
+
parent?: {
|
2485
|
+
$$field: string;
|
2486
|
+
} | undefined;
|
2487
|
+
validation?: {
|
2488
|
+
message: import("./TranslationConfig").TranslationConfig;
|
2489
|
+
validator: import(".").JSONSchema;
|
2490
|
+
}[] | undefined;
|
2491
|
+
required?: boolean | undefined;
|
2492
|
+
conditionals?: ({
|
2493
|
+
type: "SHOW";
|
2494
|
+
conditional: import(".").JSONSchema;
|
2495
|
+
} | {
|
2496
|
+
type: "ENABLE";
|
2497
|
+
conditional: import(".").JSONSchema;
|
2498
|
+
} | {
|
2499
|
+
type: "DISPLAY_ON_REVIEW";
|
2500
|
+
conditional: import(".").JSONSchema;
|
2501
|
+
})[] | undefined;
|
2502
|
+
secured?: boolean | undefined;
|
2503
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2504
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2505
|
+
hideLabel?: boolean | undefined;
|
2506
|
+
defaultValue?: {
|
2507
|
+
type: string;
|
2508
|
+
option: string;
|
2509
|
+
path: string;
|
2510
|
+
originalFilename: string;
|
2511
|
+
}[] | undefined;
|
2512
|
+
} | {
|
2513
|
+
type: "FACILITY";
|
2514
|
+
id: string;
|
2515
|
+
label: import("./TranslationConfig").TranslationConfig;
|
2516
|
+
parent?: {
|
2517
|
+
$$field: string;
|
2518
|
+
} | undefined;
|
2519
|
+
validation?: {
|
2520
|
+
message: import("./TranslationConfig").TranslationConfig;
|
2521
|
+
validator: import(".").JSONSchema;
|
2522
|
+
}[] | undefined;
|
2523
|
+
required?: boolean | undefined;
|
2524
|
+
conditionals?: ({
|
2525
|
+
type: "SHOW";
|
2526
|
+
conditional: import(".").JSONSchema;
|
2527
|
+
} | {
|
2528
|
+
type: "ENABLE";
|
2529
|
+
conditional: import(".").JSONSchema;
|
2530
|
+
} | {
|
2531
|
+
type: "DISPLAY_ON_REVIEW";
|
2532
|
+
conditional: import(".").JSONSchema;
|
2533
|
+
})[] | undefined;
|
2534
|
+
secured?: boolean | undefined;
|
2535
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2536
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2537
|
+
hideLabel?: boolean | undefined;
|
2538
|
+
defaultValue?: string | undefined;
|
2539
|
+
} | {
|
2540
|
+
type: "OFFICE";
|
2541
|
+
id: string;
|
2542
|
+
label: import("./TranslationConfig").TranslationConfig;
|
2543
|
+
parent?: {
|
2544
|
+
$$field: string;
|
2545
|
+
} | undefined;
|
2546
|
+
validation?: {
|
2547
|
+
message: import("./TranslationConfig").TranslationConfig;
|
2548
|
+
validator: import(".").JSONSchema;
|
2549
|
+
}[] | undefined;
|
2550
|
+
required?: boolean | undefined;
|
2551
|
+
conditionals?: ({
|
2552
|
+
type: "SHOW";
|
2553
|
+
conditional: import(".").JSONSchema;
|
2554
|
+
} | {
|
2555
|
+
type: "ENABLE";
|
2556
|
+
conditional: import(".").JSONSchema;
|
2557
|
+
} | {
|
2558
|
+
type: "DISPLAY_ON_REVIEW";
|
2559
|
+
conditional: import(".").JSONSchema;
|
2560
|
+
})[] | undefined;
|
2561
|
+
secured?: boolean | undefined;
|
2562
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2563
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2564
|
+
hideLabel?: boolean | undefined;
|
2565
|
+
defaultValue?: string | undefined;
|
2566
|
+
} | {
|
2567
|
+
type: "ADDRESS";
|
2568
|
+
id: string;
|
2569
|
+
label: import("./TranslationConfig").TranslationConfig;
|
2570
|
+
parent?: {
|
2571
|
+
$$field: string;
|
2572
|
+
} | undefined;
|
2573
|
+
validation?: {
|
2574
|
+
message: import("./TranslationConfig").TranslationConfig;
|
2575
|
+
validator: import(".").JSONSchema;
|
2576
|
+
}[] | undefined;
|
2577
|
+
required?: boolean | undefined;
|
2578
|
+
conditionals?: ({
|
2579
|
+
type: "SHOW";
|
2580
|
+
conditional: import(".").JSONSchema;
|
2581
|
+
} | {
|
2582
|
+
type: "ENABLE";
|
2583
|
+
conditional: import(".").JSONSchema;
|
2584
|
+
} | {
|
2585
|
+
type: "DISPLAY_ON_REVIEW";
|
2586
|
+
conditional: import(".").JSONSchema;
|
2587
|
+
})[] | undefined;
|
2588
|
+
secured?: boolean | undefined;
|
2589
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2590
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2591
|
+
hideLabel?: boolean | undefined;
|
2592
|
+
defaultValue?: {
|
2593
|
+
country: string;
|
2594
|
+
district: string;
|
2595
|
+
addressType: "DOMESTIC";
|
2596
|
+
province: string;
|
2597
|
+
urbanOrRural: "URBAN";
|
2598
|
+
number?: string | undefined;
|
2599
|
+
town?: string | undefined;
|
2600
|
+
residentialArea?: string | undefined;
|
2601
|
+
street?: string | undefined;
|
2602
|
+
zipCode?: string | undefined;
|
2603
|
+
} | {
|
2604
|
+
country: string;
|
2605
|
+
district: string;
|
2606
|
+
addressType: "DOMESTIC";
|
2607
|
+
province: string;
|
2608
|
+
urbanOrRural: "RURAL";
|
2609
|
+
village?: string | undefined;
|
2610
|
+
} | {
|
2611
|
+
country: string;
|
2612
|
+
state: string;
|
2613
|
+
addressType: "INTERNATIONAL";
|
2614
|
+
district2: string;
|
2615
|
+
cityOrTown?: string | undefined;
|
2616
|
+
addressLine1?: string | undefined;
|
2617
|
+
addressLine2?: string | undefined;
|
2618
|
+
addressLine3?: string | undefined;
|
2619
|
+
postcodeOrZip?: string | undefined;
|
2620
|
+
} | undefined;
|
2621
|
+
configuration?: {
|
2622
|
+
searchMode?: boolean | undefined;
|
2623
|
+
} | undefined;
|
2624
|
+
} | {
|
2625
|
+
type: "DATA";
|
2626
|
+
id: string;
|
2627
|
+
label: import("./TranslationConfig").TranslationConfig;
|
2628
|
+
configuration: {
|
2629
|
+
data: ({
|
2630
|
+
value: string | import("./TranslationConfig").TranslationConfig;
|
2631
|
+
label: import("./TranslationConfig").TranslationConfig;
|
2632
|
+
} | {
|
2633
|
+
fieldId: string;
|
2634
|
+
})[];
|
2635
|
+
subtitle?: import("./TranslationConfig").TranslationConfig | undefined;
|
2636
|
+
};
|
2637
|
+
parent?: {
|
2638
|
+
$$field: string;
|
2639
|
+
} | undefined;
|
2640
|
+
validation?: {
|
2641
|
+
message: import("./TranslationConfig").TranslationConfig;
|
2642
|
+
validator: import(".").JSONSchema;
|
2643
|
+
}[] | undefined;
|
2644
|
+
required?: boolean | undefined;
|
2645
|
+
conditionals?: ({
|
2646
|
+
type: "SHOW";
|
2647
|
+
conditional: import(".").JSONSchema;
|
2648
|
+
} | {
|
2649
|
+
type: "ENABLE";
|
2650
|
+
conditional: import(".").JSONSchema;
|
2651
|
+
} | {
|
2652
|
+
type: "DISPLAY_ON_REVIEW";
|
2653
|
+
conditional: import(".").JSONSchema;
|
2654
|
+
})[] | undefined;
|
2655
|
+
secured?: boolean | undefined;
|
2656
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2657
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2658
|
+
hideLabel?: boolean | undefined;
|
2659
|
+
})[];
|
2660
|
+
conditional?: import(".").JSONSchema | undefined;
|
2661
|
+
} | {
|
2662
|
+
type: "VERIFICATION";
|
2663
|
+
id: string;
|
2664
|
+
title: import("./TranslationConfig").TranslationConfig;
|
2665
|
+
actions: {
|
2666
|
+
verify: {
|
2667
|
+
label: import("./TranslationConfig").TranslationConfig;
|
2668
|
+
};
|
2669
|
+
cancel: {
|
2670
|
+
label: import("./TranslationConfig").TranslationConfig;
|
2671
|
+
confirmation: {
|
2672
|
+
title: import("./TranslationConfig").TranslationConfig;
|
2673
|
+
body: import("./TranslationConfig").TranslationConfig;
|
2674
|
+
};
|
2675
|
+
};
|
2676
|
+
};
|
2677
|
+
fields: ({
|
2678
|
+
type: "DIVIDER";
|
2679
|
+
id: string;
|
2680
|
+
label: import("./TranslationConfig").TranslationConfig;
|
2681
|
+
parent?: {
|
2682
|
+
$$field: string;
|
2683
|
+
} | undefined;
|
2684
|
+
validation?: {
|
2685
|
+
message: import("./TranslationConfig").TranslationConfig;
|
2686
|
+
validator: import(".").JSONSchema;
|
2687
|
+
}[] | undefined;
|
2688
|
+
required?: boolean | undefined;
|
2689
|
+
conditionals?: ({
|
2690
|
+
type: "SHOW";
|
2691
|
+
conditional: import(".").JSONSchema;
|
2692
|
+
} | {
|
2693
|
+
type: "ENABLE";
|
2694
|
+
conditional: import(".").JSONSchema;
|
2695
|
+
} | {
|
2696
|
+
type: "DISPLAY_ON_REVIEW";
|
2697
|
+
conditional: import(".").JSONSchema;
|
2698
|
+
})[] | undefined;
|
2699
|
+
secured?: boolean | undefined;
|
2700
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2701
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2702
|
+
hideLabel?: boolean | undefined;
|
2703
|
+
} | {
|
2704
|
+
type: "TEXT";
|
2705
|
+
id: string;
|
2706
|
+
label: import("./TranslationConfig").TranslationConfig;
|
2707
|
+
parent?: {
|
2708
|
+
$$field: string;
|
2709
|
+
} | undefined;
|
2710
|
+
validation?: {
|
2711
|
+
message: import("./TranslationConfig").TranslationConfig;
|
2712
|
+
validator: import(".").JSONSchema;
|
2713
|
+
}[] | undefined;
|
2714
|
+
required?: boolean | undefined;
|
2715
|
+
conditionals?: ({
|
2716
|
+
type: "SHOW";
|
2717
|
+
conditional: import(".").JSONSchema;
|
2718
|
+
} | {
|
2719
|
+
type: "ENABLE";
|
2720
|
+
conditional: import(".").JSONSchema;
|
2721
|
+
} | {
|
2722
|
+
type: "DISPLAY_ON_REVIEW";
|
2723
|
+
conditional: import(".").JSONSchema;
|
2724
|
+
})[] | undefined;
|
2725
|
+
secured?: boolean | undefined;
|
2726
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2727
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2728
|
+
hideLabel?: boolean | undefined;
|
2729
|
+
defaultValue?: string | undefined;
|
2730
|
+
configuration?: {
|
2731
|
+
type?: "text" | "password" | undefined;
|
2732
|
+
maxLength?: number | undefined;
|
2733
|
+
prefix?: import("./TranslationConfig").TranslationConfig | undefined;
|
2734
|
+
postfix?: import("./TranslationConfig").TranslationConfig | undefined;
|
2735
|
+
} | undefined;
|
2736
|
+
} | {
|
2737
|
+
type: "NUMBER";
|
2738
|
+
id: string;
|
2739
|
+
label: import("./TranslationConfig").TranslationConfig;
|
2740
|
+
parent?: {
|
2741
|
+
$$field: string;
|
2742
|
+
} | undefined;
|
2743
|
+
validation?: {
|
2744
|
+
message: import("./TranslationConfig").TranslationConfig;
|
2745
|
+
validator: import(".").JSONSchema;
|
2746
|
+
}[] | undefined;
|
2747
|
+
required?: boolean | undefined;
|
2748
|
+
conditionals?: ({
|
2749
|
+
type: "SHOW";
|
2750
|
+
conditional: import(".").JSONSchema;
|
2751
|
+
} | {
|
2752
|
+
type: "ENABLE";
|
2753
|
+
conditional: import(".").JSONSchema;
|
2754
|
+
} | {
|
2755
|
+
type: "DISPLAY_ON_REVIEW";
|
2756
|
+
conditional: import(".").JSONSchema;
|
2757
|
+
})[] | undefined;
|
2758
|
+
secured?: boolean | undefined;
|
2759
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2760
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2761
|
+
hideLabel?: boolean | undefined;
|
2762
|
+
defaultValue?: number | undefined;
|
2763
|
+
configuration?: {
|
2764
|
+
prefix?: import("./TranslationConfig").TranslationConfig | undefined;
|
2765
|
+
postfix?: import("./TranslationConfig").TranslationConfig | undefined;
|
2766
|
+
min?: number | undefined;
|
2767
|
+
max?: number | undefined;
|
2768
|
+
} | undefined;
|
2769
|
+
} | {
|
2770
|
+
type: "TEXTAREA";
|
2771
|
+
id: string;
|
2772
|
+
label: import("./TranslationConfig").TranslationConfig;
|
2773
|
+
parent?: {
|
2774
|
+
$$field: string;
|
2775
|
+
} | undefined;
|
2776
|
+
validation?: {
|
2777
|
+
message: import("./TranslationConfig").TranslationConfig;
|
2778
|
+
validator: import(".").JSONSchema;
|
2779
|
+
}[] | undefined;
|
2780
|
+
required?: boolean | undefined;
|
2781
|
+
conditionals?: ({
|
2782
|
+
type: "SHOW";
|
2783
|
+
conditional: import(".").JSONSchema;
|
2784
|
+
} | {
|
2785
|
+
type: "ENABLE";
|
2786
|
+
conditional: import(".").JSONSchema;
|
2787
|
+
} | {
|
2788
|
+
type: "DISPLAY_ON_REVIEW";
|
2789
|
+
conditional: import(".").JSONSchema;
|
2790
|
+
})[] | undefined;
|
2791
|
+
secured?: boolean | undefined;
|
2792
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2793
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2794
|
+
hideLabel?: boolean | undefined;
|
2795
|
+
defaultValue?: string | undefined;
|
2796
|
+
configuration?: {
|
2797
|
+
maxLength?: number | undefined;
|
2798
|
+
prefix?: import("./TranslationConfig").TranslationConfig | undefined;
|
2799
|
+
postfix?: import("./TranslationConfig").TranslationConfig | undefined;
|
2800
|
+
rows?: number | undefined;
|
2801
|
+
cols?: number | undefined;
|
2802
|
+
} | undefined;
|
2803
|
+
} | {
|
2804
|
+
type: "SIGNATURE";
|
2805
|
+
id: string;
|
2806
|
+
label: import("./TranslationConfig").TranslationConfig;
|
2807
|
+
configuration: {
|
2808
|
+
maxFileSize: number;
|
2809
|
+
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
2810
|
+
};
|
2811
|
+
signaturePromptLabel: import("./TranslationConfig").TranslationConfig;
|
2812
|
+
parent?: {
|
2813
|
+
$$field: string;
|
2814
|
+
} | undefined;
|
2815
|
+
validation?: {
|
2816
|
+
message: import("./TranslationConfig").TranslationConfig;
|
2817
|
+
validator: import(".").JSONSchema;
|
2818
|
+
}[] | undefined;
|
2819
|
+
required?: boolean | undefined;
|
2820
|
+
conditionals?: ({
|
2821
|
+
type: "SHOW";
|
2822
|
+
conditional: import(".").JSONSchema;
|
2823
|
+
} | {
|
2824
|
+
type: "ENABLE";
|
2825
|
+
conditional: import(".").JSONSchema;
|
2826
|
+
} | {
|
2827
|
+
type: "DISPLAY_ON_REVIEW";
|
2828
|
+
conditional: import(".").JSONSchema;
|
2829
|
+
})[] | undefined;
|
2830
|
+
secured?: boolean | undefined;
|
2831
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2832
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2833
|
+
hideLabel?: boolean | undefined;
|
2834
|
+
defaultValue?: string | undefined;
|
2835
|
+
} | {
|
2836
|
+
type: "EMAIL";
|
2837
|
+
id: string;
|
2838
|
+
label: import("./TranslationConfig").TranslationConfig;
|
2839
|
+
parent?: {
|
2840
|
+
$$field: string;
|
2841
|
+
} | undefined;
|
2842
|
+
validation?: {
|
2843
|
+
message: import("./TranslationConfig").TranslationConfig;
|
2844
|
+
validator: import(".").JSONSchema;
|
2845
|
+
}[] | undefined;
|
2846
|
+
required?: boolean | undefined;
|
2847
|
+
conditionals?: ({
|
2848
|
+
type: "SHOW";
|
2849
|
+
conditional: import(".").JSONSchema;
|
2850
|
+
} | {
|
2851
|
+
type: "ENABLE";
|
2852
|
+
conditional: import(".").JSONSchema;
|
2853
|
+
} | {
|
2854
|
+
type: "DISPLAY_ON_REVIEW";
|
2855
|
+
conditional: import(".").JSONSchema;
|
2856
|
+
})[] | undefined;
|
2857
|
+
secured?: boolean | undefined;
|
2858
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2859
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2860
|
+
hideLabel?: boolean | undefined;
|
2861
|
+
defaultValue?: string | undefined;
|
2862
|
+
configuration?: {
|
2863
|
+
maxLength?: number | undefined;
|
2864
|
+
} | undefined;
|
2865
|
+
} | {
|
2866
|
+
type: "DATE";
|
2867
|
+
id: string;
|
2868
|
+
label: import("./TranslationConfig").TranslationConfig;
|
2869
|
+
parent?: {
|
2870
|
+
$$field: string;
|
2871
|
+
} | undefined;
|
2872
|
+
validation?: {
|
2873
|
+
message: import("./TranslationConfig").TranslationConfig;
|
2874
|
+
validator: import(".").JSONSchema;
|
2875
|
+
}[] | undefined;
|
2876
|
+
required?: boolean | undefined;
|
2877
|
+
conditionals?: ({
|
2878
|
+
type: "SHOW";
|
2879
|
+
conditional: import(".").JSONSchema;
|
2880
|
+
} | {
|
2881
|
+
type: "ENABLE";
|
2882
|
+
conditional: import(".").JSONSchema;
|
2883
|
+
} | {
|
2884
|
+
type: "DISPLAY_ON_REVIEW";
|
2885
|
+
conditional: import(".").JSONSchema;
|
2886
|
+
})[] | undefined;
|
2887
|
+
secured?: boolean | undefined;
|
2888
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2889
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2890
|
+
hideLabel?: boolean | undefined;
|
2891
|
+
defaultValue?: string | undefined;
|
2892
|
+
configuration?: {
|
2893
|
+
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
2894
|
+
} | undefined;
|
2895
|
+
} | {
|
2896
|
+
type: "DATE_RANGE";
|
2897
|
+
id: string;
|
2898
|
+
label: import("./TranslationConfig").TranslationConfig;
|
2899
|
+
parent?: {
|
2900
|
+
$$field: string;
|
2901
|
+
} | undefined;
|
2902
|
+
validation?: {
|
2903
|
+
message: import("./TranslationConfig").TranslationConfig;
|
2904
|
+
validator: import(".").JSONSchema;
|
2905
|
+
}[] | undefined;
|
2906
|
+
required?: boolean | undefined;
|
2907
|
+
conditionals?: ({
|
2908
|
+
type: "SHOW";
|
2909
|
+
conditional: import(".").JSONSchema;
|
2910
|
+
} | {
|
2911
|
+
type: "ENABLE";
|
2912
|
+
conditional: import(".").JSONSchema;
|
2913
|
+
} | {
|
2914
|
+
type: "DISPLAY_ON_REVIEW";
|
2915
|
+
conditional: import(".").JSONSchema;
|
2916
|
+
})[] | undefined;
|
2917
|
+
secured?: boolean | undefined;
|
2918
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2919
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2920
|
+
hideLabel?: boolean | undefined;
|
2921
|
+
defaultValue?: string | {
|
2922
|
+
start: string;
|
2923
|
+
end: string;
|
2924
|
+
} | undefined;
|
2925
|
+
configuration?: {
|
2926
|
+
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
2927
|
+
} | undefined;
|
2928
|
+
} | {
|
2929
|
+
type: "PARAGRAPH";
|
2930
|
+
id: string;
|
2931
|
+
label: import("./TranslationConfig").TranslationConfig;
|
2932
|
+
configuration: {
|
2933
|
+
styles?: {
|
2934
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
2935
|
+
} | undefined;
|
2936
|
+
};
|
2937
|
+
parent?: {
|
2938
|
+
$$field: string;
|
2939
|
+
} | undefined;
|
2940
|
+
validation?: {
|
2941
|
+
message: import("./TranslationConfig").TranslationConfig;
|
2942
|
+
validator: import(".").JSONSchema;
|
2943
|
+
}[] | undefined;
|
2944
|
+
required?: boolean | undefined;
|
2945
|
+
conditionals?: ({
|
2946
|
+
type: "SHOW";
|
2947
|
+
conditional: import(".").JSONSchema;
|
2948
|
+
} | {
|
2949
|
+
type: "ENABLE";
|
2950
|
+
conditional: import(".").JSONSchema;
|
2951
|
+
} | {
|
2952
|
+
type: "DISPLAY_ON_REVIEW";
|
2953
|
+
conditional: import(".").JSONSchema;
|
2954
|
+
})[] | undefined;
|
2955
|
+
secured?: boolean | undefined;
|
2956
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2957
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2958
|
+
hideLabel?: boolean | undefined;
|
2959
|
+
defaultValue?: string | undefined;
|
2960
|
+
} | {
|
2961
|
+
type: "PAGE_HEADER";
|
2962
|
+
id: string;
|
2963
|
+
label: import("./TranslationConfig").TranslationConfig;
|
2964
|
+
parent?: {
|
2965
|
+
$$field: string;
|
2966
|
+
} | undefined;
|
2967
|
+
validation?: {
|
2968
|
+
message: import("./TranslationConfig").TranslationConfig;
|
2969
|
+
validator: import(".").JSONSchema;
|
2970
|
+
}[] | undefined;
|
2971
|
+
required?: boolean | undefined;
|
2972
|
+
conditionals?: ({
|
2973
|
+
type: "SHOW";
|
2974
|
+
conditional: import(".").JSONSchema;
|
2975
|
+
} | {
|
2976
|
+
type: "ENABLE";
|
2977
|
+
conditional: import(".").JSONSchema;
|
2978
|
+
} | {
|
2979
|
+
type: "DISPLAY_ON_REVIEW";
|
2980
|
+
conditional: import(".").JSONSchema;
|
2981
|
+
})[] | undefined;
|
2982
|
+
secured?: boolean | undefined;
|
2983
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2984
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2985
|
+
hideLabel?: boolean | undefined;
|
2986
|
+
defaultValue?: string | undefined;
|
2987
|
+
} | {
|
2988
|
+
type: "FILE";
|
2989
|
+
id: string;
|
2990
|
+
label: import("./TranslationConfig").TranslationConfig;
|
2991
|
+
configuration: {
|
2992
|
+
maxFileSize: number;
|
2993
|
+
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
2994
|
+
style?: {
|
2995
|
+
width?: "full" | "auto" | undefined;
|
2996
|
+
} | undefined;
|
2997
|
+
fileName?: import("./TranslationConfig").TranslationConfig | undefined;
|
2998
|
+
};
|
2999
|
+
parent?: {
|
3000
|
+
$$field: string;
|
3001
|
+
} | undefined;
|
3002
|
+
validation?: {
|
3003
|
+
message: import("./TranslationConfig").TranslationConfig;
|
3004
|
+
validator: import(".").JSONSchema;
|
3005
|
+
}[] | undefined;
|
3006
|
+
required?: boolean | undefined;
|
3007
|
+
conditionals?: ({
|
3008
|
+
type: "SHOW";
|
3009
|
+
conditional: import(".").JSONSchema;
|
3010
|
+
} | {
|
3011
|
+
type: "ENABLE";
|
3012
|
+
conditional: import(".").JSONSchema;
|
3013
|
+
} | {
|
3014
|
+
type: "DISPLAY_ON_REVIEW";
|
3015
|
+
conditional: import(".").JSONSchema;
|
3016
|
+
})[] | undefined;
|
3017
|
+
secured?: boolean | undefined;
|
3018
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3019
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3020
|
+
hideLabel?: boolean | undefined;
|
3021
|
+
defaultValue?: {
|
3022
|
+
type: string;
|
3023
|
+
path: string;
|
3024
|
+
originalFilename: string;
|
3025
|
+
} | undefined;
|
3026
|
+
} | {
|
3027
|
+
type: "RADIO_GROUP";
|
3028
|
+
id: string;
|
3029
|
+
options: {
|
3030
|
+
value: string;
|
3031
|
+
label: import("./TranslationConfig").TranslationConfig;
|
3032
|
+
}[];
|
3033
|
+
label: import("./TranslationConfig").TranslationConfig;
|
3034
|
+
parent?: {
|
3035
|
+
$$field: string;
|
3036
|
+
} | undefined;
|
3037
|
+
validation?: {
|
3038
|
+
message: import("./TranslationConfig").TranslationConfig;
|
3039
|
+
validator: import(".").JSONSchema;
|
3040
|
+
}[] | undefined;
|
3041
|
+
required?: boolean | undefined;
|
3042
|
+
conditionals?: ({
|
3043
|
+
type: "SHOW";
|
3044
|
+
conditional: import(".").JSONSchema;
|
3045
|
+
} | {
|
3046
|
+
type: "ENABLE";
|
3047
|
+
conditional: import(".").JSONSchema;
|
3048
|
+
} | {
|
3049
|
+
type: "DISPLAY_ON_REVIEW";
|
3050
|
+
conditional: import(".").JSONSchema;
|
3051
|
+
})[] | undefined;
|
3052
|
+
secured?: boolean | undefined;
|
3053
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3054
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3055
|
+
hideLabel?: boolean | undefined;
|
3056
|
+
defaultValue?: string | undefined;
|
3057
|
+
configuration?: {
|
3058
|
+
styles?: {
|
3059
|
+
size?: "NORMAL" | "LARGE" | undefined;
|
3060
|
+
} | undefined;
|
3061
|
+
} | undefined;
|
3062
|
+
} | {
|
3063
|
+
type: "BULLET_LIST";
|
3064
|
+
id: string;
|
3065
|
+
label: import("./TranslationConfig").TranslationConfig;
|
3066
|
+
configuration: {
|
3067
|
+
styles?: {
|
3068
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
3069
|
+
} | undefined;
|
3070
|
+
};
|
3071
|
+
items: import("./TranslationConfig").TranslationConfig[];
|
3072
|
+
parent?: {
|
3073
|
+
$$field: string;
|
3074
|
+
} | undefined;
|
3075
|
+
validation?: {
|
3076
|
+
message: import("./TranslationConfig").TranslationConfig;
|
3077
|
+
validator: import(".").JSONSchema;
|
3078
|
+
}[] | undefined;
|
3079
|
+
required?: boolean | undefined;
|
3080
|
+
conditionals?: ({
|
3081
|
+
type: "SHOW";
|
3082
|
+
conditional: import(".").JSONSchema;
|
3083
|
+
} | {
|
3084
|
+
type: "ENABLE";
|
3085
|
+
conditional: import(".").JSONSchema;
|
3086
|
+
} | {
|
3087
|
+
type: "DISPLAY_ON_REVIEW";
|
3088
|
+
conditional: import(".").JSONSchema;
|
3089
|
+
})[] | undefined;
|
3090
|
+
secured?: boolean | undefined;
|
3091
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3092
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3093
|
+
hideLabel?: boolean | undefined;
|
3094
|
+
defaultValue?: string | undefined;
|
3095
|
+
} | {
|
3096
|
+
type: "SELECT";
|
3097
|
+
id: string;
|
3098
|
+
options: {
|
3099
|
+
value: string;
|
3100
|
+
label: import("./TranslationConfig").TranslationConfig;
|
3101
|
+
}[];
|
3102
|
+
label: import("./TranslationConfig").TranslationConfig;
|
3103
|
+
parent?: {
|
3104
|
+
$$field: string;
|
3105
|
+
} | undefined;
|
3106
|
+
validation?: {
|
3107
|
+
message: import("./TranslationConfig").TranslationConfig;
|
3108
|
+
validator: import(".").JSONSchema;
|
3109
|
+
}[] | undefined;
|
3110
|
+
required?: boolean | undefined;
|
3111
|
+
conditionals?: ({
|
3112
|
+
type: "SHOW";
|
3113
|
+
conditional: import(".").JSONSchema;
|
3114
|
+
} | {
|
3115
|
+
type: "ENABLE";
|
3116
|
+
conditional: import(".").JSONSchema;
|
3117
|
+
} | {
|
3118
|
+
type: "DISPLAY_ON_REVIEW";
|
3119
|
+
conditional: import(".").JSONSchema;
|
3120
|
+
})[] | undefined;
|
3121
|
+
secured?: boolean | undefined;
|
3122
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3123
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3124
|
+
hideLabel?: boolean | undefined;
|
3125
|
+
defaultValue?: string | undefined;
|
3126
|
+
} | {
|
3127
|
+
type: "SELECT_DATE_RANGE";
|
3128
|
+
id: string;
|
3129
|
+
options: {
|
3130
|
+
value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
3131
|
+
label: import("./TranslationConfig").TranslationConfig;
|
3132
|
+
}[];
|
3133
|
+
label: import("./TranslationConfig").TranslationConfig;
|
3134
|
+
parent?: {
|
3135
|
+
$$field: string;
|
3136
|
+
} | undefined;
|
3137
|
+
validation?: {
|
3138
|
+
message: import("./TranslationConfig").TranslationConfig;
|
3139
|
+
validator: import(".").JSONSchema;
|
3140
|
+
}[] | undefined;
|
3141
|
+
required?: boolean | undefined;
|
3142
|
+
conditionals?: ({
|
3143
|
+
type: "SHOW";
|
3144
|
+
conditional: import(".").JSONSchema;
|
3145
|
+
} | {
|
3146
|
+
type: "ENABLE";
|
3147
|
+
conditional: import(".").JSONSchema;
|
3148
|
+
} | {
|
3149
|
+
type: "DISPLAY_ON_REVIEW";
|
3150
|
+
conditional: import(".").JSONSchema;
|
3151
|
+
})[] | undefined;
|
3152
|
+
secured?: boolean | undefined;
|
3153
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3154
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3155
|
+
hideLabel?: boolean | undefined;
|
3156
|
+
defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
|
3157
|
+
} | {
|
3158
|
+
type: "NAME";
|
3159
|
+
id: string;
|
3160
|
+
label: import("./TranslationConfig").TranslationConfig;
|
3161
|
+
parent?: {
|
3162
|
+
$$field: string;
|
3163
|
+
} | undefined;
|
3164
|
+
validation?: {
|
3165
|
+
message: import("./TranslationConfig").TranslationConfig;
|
3166
|
+
validator: import(".").JSONSchema;
|
3167
|
+
}[] | undefined;
|
3168
|
+
required?: boolean | undefined;
|
3169
|
+
conditionals?: ({
|
3170
|
+
type: "SHOW";
|
3171
|
+
conditional: import(".").JSONSchema;
|
3172
|
+
} | {
|
3173
|
+
type: "ENABLE";
|
3174
|
+
conditional: import(".").JSONSchema;
|
3175
|
+
} | {
|
3176
|
+
type: "DISPLAY_ON_REVIEW";
|
3177
|
+
conditional: import(".").JSONSchema;
|
3178
|
+
})[] | undefined;
|
3179
|
+
secured?: boolean | undefined;
|
3180
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3181
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3182
|
+
hideLabel?: boolean | undefined;
|
3183
|
+
defaultValue?: {
|
3184
|
+
firstname: string;
|
3185
|
+
surname: string;
|
3186
|
+
} | undefined;
|
3187
|
+
configuration?: {
|
3188
|
+
maxLength?: number | undefined;
|
3189
|
+
prefix?: import("./TranslationConfig").TranslationConfig | undefined;
|
3190
|
+
postfix?: import("./TranslationConfig").TranslationConfig | undefined;
|
3191
|
+
includeMiddlename?: boolean | undefined;
|
3192
|
+
searchMode?: boolean | undefined;
|
3193
|
+
} | undefined;
|
3194
|
+
} | {
|
3195
|
+
type: "PHONE";
|
3196
|
+
id: string;
|
3197
|
+
label: import("./TranslationConfig").TranslationConfig;
|
3198
|
+
parent?: {
|
3199
|
+
$$field: string;
|
3200
|
+
} | undefined;
|
3201
|
+
validation?: {
|
3202
|
+
message: import("./TranslationConfig").TranslationConfig;
|
3203
|
+
validator: import(".").JSONSchema;
|
3204
|
+
}[] | undefined;
|
3205
|
+
required?: boolean | undefined;
|
3206
|
+
conditionals?: ({
|
3207
|
+
type: "SHOW";
|
3208
|
+
conditional: import(".").JSONSchema;
|
3209
|
+
} | {
|
3210
|
+
type: "ENABLE";
|
3211
|
+
conditional: import(".").JSONSchema;
|
3212
|
+
} | {
|
3213
|
+
type: "DISPLAY_ON_REVIEW";
|
3214
|
+
conditional: import(".").JSONSchema;
|
3215
|
+
})[] | undefined;
|
3216
|
+
secured?: boolean | undefined;
|
3217
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3218
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3219
|
+
hideLabel?: boolean | undefined;
|
3220
|
+
defaultValue?: string | undefined;
|
3221
|
+
} | {
|
3222
|
+
type: "ID";
|
3223
|
+
id: string;
|
3224
|
+
label: import("./TranslationConfig").TranslationConfig;
|
3225
|
+
parent?: {
|
3226
|
+
$$field: string;
|
3227
|
+
} | undefined;
|
3228
|
+
validation?: {
|
3229
|
+
message: import("./TranslationConfig").TranslationConfig;
|
3230
|
+
validator: import(".").JSONSchema;
|
3231
|
+
}[] | undefined;
|
3232
|
+
required?: boolean | undefined;
|
3233
|
+
conditionals?: ({
|
3234
|
+
type: "SHOW";
|
3235
|
+
conditional: import(".").JSONSchema;
|
3236
|
+
} | {
|
3237
|
+
type: "ENABLE";
|
3238
|
+
conditional: import(".").JSONSchema;
|
3239
|
+
} | {
|
3240
|
+
type: "DISPLAY_ON_REVIEW";
|
3241
|
+
conditional: import(".").JSONSchema;
|
3242
|
+
})[] | undefined;
|
3243
|
+
secured?: boolean | undefined;
|
3244
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3245
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3246
|
+
hideLabel?: boolean | undefined;
|
3247
|
+
defaultValue?: string | undefined;
|
3248
|
+
} | {
|
3249
|
+
type: "CHECKBOX";
|
3250
|
+
id: string;
|
3251
|
+
label: import("./TranslationConfig").TranslationConfig;
|
3252
|
+
parent?: {
|
3253
|
+
$$field: string;
|
3254
|
+
} | undefined;
|
3255
|
+
validation?: {
|
3256
|
+
message: import("./TranslationConfig").TranslationConfig;
|
3257
|
+
validator: import(".").JSONSchema;
|
3258
|
+
}[] | undefined;
|
3259
|
+
required?: boolean | undefined;
|
3260
|
+
conditionals?: ({
|
3261
|
+
type: "SHOW";
|
3262
|
+
conditional: import(".").JSONSchema;
|
3263
|
+
} | {
|
3264
|
+
type: "ENABLE";
|
3265
|
+
conditional: import(".").JSONSchema;
|
3266
|
+
} | {
|
3267
|
+
type: "DISPLAY_ON_REVIEW";
|
3268
|
+
conditional: import(".").JSONSchema;
|
3269
|
+
})[] | undefined;
|
3270
|
+
secured?: boolean | undefined;
|
3271
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3272
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3273
|
+
hideLabel?: boolean | undefined;
|
3274
|
+
defaultValue?: boolean | undefined;
|
3275
|
+
} | {
|
3276
|
+
type: "COUNTRY";
|
3277
|
+
id: string;
|
3278
|
+
label: import("./TranslationConfig").TranslationConfig;
|
3279
|
+
parent?: {
|
3280
|
+
$$field: string;
|
3281
|
+
} | undefined;
|
3282
|
+
validation?: {
|
3283
|
+
message: import("./TranslationConfig").TranslationConfig;
|
3284
|
+
validator: import(".").JSONSchema;
|
3285
|
+
}[] | undefined;
|
3286
|
+
required?: boolean | undefined;
|
3287
|
+
conditionals?: ({
|
3288
|
+
type: "SHOW";
|
3289
|
+
conditional: import(".").JSONSchema;
|
3290
|
+
} | {
|
3291
|
+
type: "ENABLE";
|
3292
|
+
conditional: import(".").JSONSchema;
|
3293
|
+
} | {
|
3294
|
+
type: "DISPLAY_ON_REVIEW";
|
3295
|
+
conditional: import(".").JSONSchema;
|
3296
|
+
})[] | undefined;
|
3297
|
+
secured?: boolean | undefined;
|
3298
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3299
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3300
|
+
hideLabel?: boolean | undefined;
|
3301
|
+
defaultValue?: string | undefined;
|
3302
|
+
} | {
|
3303
|
+
type: "ADMINISTRATIVE_AREA";
|
3304
|
+
id: string;
|
3305
|
+
label: import("./TranslationConfig").TranslationConfig;
|
3306
|
+
configuration: {
|
3307
|
+
type: "ADMIN_STRUCTURE" | "HEALTH_FACILITY" | "CRVS_OFFICE";
|
3308
|
+
partOf?: {
|
3309
|
+
$declaration: string;
|
3310
|
+
} | undefined;
|
3311
|
+
};
|
3312
|
+
parent?: {
|
3313
|
+
$$field: string;
|
3314
|
+
} | undefined;
|
3315
|
+
validation?: {
|
3316
|
+
message: import("./TranslationConfig").TranslationConfig;
|
3317
|
+
validator: import(".").JSONSchema;
|
3318
|
+
}[] | undefined;
|
3319
|
+
required?: boolean | undefined;
|
3320
|
+
conditionals?: ({
|
3321
|
+
type: "SHOW";
|
3322
|
+
conditional: import(".").JSONSchema;
|
3323
|
+
} | {
|
3324
|
+
type: "ENABLE";
|
3325
|
+
conditional: import(".").JSONSchema;
|
3326
|
+
} | {
|
3327
|
+
type: "DISPLAY_ON_REVIEW";
|
3328
|
+
conditional: import(".").JSONSchema;
|
3329
|
+
})[] | undefined;
|
3330
|
+
secured?: boolean | undefined;
|
3331
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3332
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3333
|
+
hideLabel?: boolean | undefined;
|
3334
|
+
defaultValue?: string | undefined;
|
3335
|
+
} | {
|
3336
|
+
type: "LOCATION";
|
3337
|
+
id: string;
|
3338
|
+
label: import("./TranslationConfig").TranslationConfig;
|
3339
|
+
parent?: {
|
3340
|
+
$$field: string;
|
3341
|
+
} | undefined;
|
3342
|
+
validation?: {
|
3343
|
+
message: import("./TranslationConfig").TranslationConfig;
|
3344
|
+
validator: import(".").JSONSchema;
|
3345
|
+
}[] | undefined;
|
3346
|
+
required?: boolean | undefined;
|
3347
|
+
conditionals?: ({
|
3348
|
+
type: "SHOW";
|
3349
|
+
conditional: import(".").JSONSchema;
|
3350
|
+
} | {
|
3351
|
+
type: "ENABLE";
|
3352
|
+
conditional: import(".").JSONSchema;
|
3353
|
+
} | {
|
3354
|
+
type: "DISPLAY_ON_REVIEW";
|
3355
|
+
conditional: import(".").JSONSchema;
|
3356
|
+
})[] | undefined;
|
3357
|
+
secured?: boolean | undefined;
|
3358
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3359
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3360
|
+
hideLabel?: boolean | undefined;
|
3361
|
+
defaultValue?: string | undefined;
|
3362
|
+
configuration?: {
|
3363
|
+
searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
|
3364
|
+
} | undefined;
|
3365
|
+
} | {
|
3366
|
+
type: "FILE_WITH_OPTIONS";
|
3367
|
+
id: string;
|
3368
|
+
options: {
|
3369
|
+
value: string;
|
3370
|
+
label: import("./TranslationConfig").TranslationConfig;
|
3371
|
+
}[];
|
3372
|
+
label: import("./TranslationConfig").TranslationConfig;
|
3373
|
+
configuration: {
|
3374
|
+
maxFileSize: number;
|
3375
|
+
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
3376
|
+
};
|
3377
|
+
parent?: {
|
3378
|
+
$$field: string;
|
3379
|
+
} | undefined;
|
3380
|
+
validation?: {
|
3381
|
+
message: import("./TranslationConfig").TranslationConfig;
|
3382
|
+
validator: import(".").JSONSchema;
|
3383
|
+
}[] | undefined;
|
3384
|
+
required?: boolean | undefined;
|
3385
|
+
conditionals?: ({
|
3386
|
+
type: "SHOW";
|
3387
|
+
conditional: import(".").JSONSchema;
|
3388
|
+
} | {
|
3389
|
+
type: "ENABLE";
|
3390
|
+
conditional: import(".").JSONSchema;
|
3391
|
+
} | {
|
3392
|
+
type: "DISPLAY_ON_REVIEW";
|
3393
|
+
conditional: import(".").JSONSchema;
|
3394
|
+
})[] | undefined;
|
3395
|
+
secured?: boolean | undefined;
|
3396
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3397
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3398
|
+
hideLabel?: boolean | undefined;
|
3399
|
+
defaultValue?: {
|
3400
|
+
type: string;
|
3401
|
+
option: string;
|
3402
|
+
path: string;
|
3403
|
+
originalFilename: string;
|
3404
|
+
}[] | undefined;
|
3405
|
+
} | {
|
3406
|
+
type: "FACILITY";
|
3407
|
+
id: string;
|
3408
|
+
label: import("./TranslationConfig").TranslationConfig;
|
3409
|
+
parent?: {
|
3410
|
+
$$field: string;
|
3411
|
+
} | undefined;
|
3412
|
+
validation?: {
|
3413
|
+
message: import("./TranslationConfig").TranslationConfig;
|
3414
|
+
validator: import(".").JSONSchema;
|
3415
|
+
}[] | undefined;
|
3416
|
+
required?: boolean | undefined;
|
3417
|
+
conditionals?: ({
|
3418
|
+
type: "SHOW";
|
3419
|
+
conditional: import(".").JSONSchema;
|
3420
|
+
} | {
|
3421
|
+
type: "ENABLE";
|
3422
|
+
conditional: import(".").JSONSchema;
|
3423
|
+
} | {
|
3424
|
+
type: "DISPLAY_ON_REVIEW";
|
3425
|
+
conditional: import(".").JSONSchema;
|
3426
|
+
})[] | undefined;
|
3427
|
+
secured?: boolean | undefined;
|
3428
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3429
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3430
|
+
hideLabel?: boolean | undefined;
|
3431
|
+
defaultValue?: string | undefined;
|
3432
|
+
} | {
|
3433
|
+
type: "OFFICE";
|
3434
|
+
id: string;
|
3435
|
+
label: import("./TranslationConfig").TranslationConfig;
|
3436
|
+
parent?: {
|
3437
|
+
$$field: string;
|
3438
|
+
} | undefined;
|
3439
|
+
validation?: {
|
3440
|
+
message: import("./TranslationConfig").TranslationConfig;
|
3441
|
+
validator: import(".").JSONSchema;
|
3442
|
+
}[] | undefined;
|
3443
|
+
required?: boolean | undefined;
|
3444
|
+
conditionals?: ({
|
3445
|
+
type: "SHOW";
|
3446
|
+
conditional: import(".").JSONSchema;
|
3447
|
+
} | {
|
3448
|
+
type: "ENABLE";
|
3449
|
+
conditional: import(".").JSONSchema;
|
3450
|
+
} | {
|
3451
|
+
type: "DISPLAY_ON_REVIEW";
|
3452
|
+
conditional: import(".").JSONSchema;
|
3453
|
+
})[] | undefined;
|
3454
|
+
secured?: boolean | undefined;
|
3455
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3456
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3457
|
+
hideLabel?: boolean | undefined;
|
3458
|
+
defaultValue?: string | undefined;
|
3459
|
+
} | {
|
3460
|
+
type: "ADDRESS";
|
3461
|
+
id: string;
|
3462
|
+
label: import("./TranslationConfig").TranslationConfig;
|
3463
|
+
parent?: {
|
3464
|
+
$$field: string;
|
3465
|
+
} | undefined;
|
3466
|
+
validation?: {
|
3467
|
+
message: import("./TranslationConfig").TranslationConfig;
|
3468
|
+
validator: import(".").JSONSchema;
|
3469
|
+
}[] | undefined;
|
3470
|
+
required?: boolean | undefined;
|
3471
|
+
conditionals?: ({
|
3472
|
+
type: "SHOW";
|
3473
|
+
conditional: import(".").JSONSchema;
|
3474
|
+
} | {
|
3475
|
+
type: "ENABLE";
|
3476
|
+
conditional: import(".").JSONSchema;
|
3477
|
+
} | {
|
3478
|
+
type: "DISPLAY_ON_REVIEW";
|
3479
|
+
conditional: import(".").JSONSchema;
|
3480
|
+
})[] | undefined;
|
3481
|
+
secured?: boolean | undefined;
|
3482
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3483
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3484
|
+
hideLabel?: boolean | undefined;
|
3485
|
+
defaultValue?: {
|
3486
|
+
country: string;
|
3487
|
+
district: string;
|
3488
|
+
addressType: "DOMESTIC";
|
3489
|
+
province: string;
|
3490
|
+
urbanOrRural: "URBAN";
|
3491
|
+
number?: string | undefined;
|
3492
|
+
town?: string | undefined;
|
3493
|
+
residentialArea?: string | undefined;
|
3494
|
+
street?: string | undefined;
|
3495
|
+
zipCode?: string | undefined;
|
3496
|
+
} | {
|
3497
|
+
country: string;
|
3498
|
+
district: string;
|
3499
|
+
addressType: "DOMESTIC";
|
3500
|
+
province: string;
|
3501
|
+
urbanOrRural: "RURAL";
|
3502
|
+
village?: string | undefined;
|
3503
|
+
} | {
|
3504
|
+
country: string;
|
3505
|
+
state: string;
|
3506
|
+
addressType: "INTERNATIONAL";
|
3507
|
+
district2: string;
|
3508
|
+
cityOrTown?: string | undefined;
|
3509
|
+
addressLine1?: string | undefined;
|
3510
|
+
addressLine2?: string | undefined;
|
3511
|
+
addressLine3?: string | undefined;
|
3512
|
+
postcodeOrZip?: string | undefined;
|
3513
|
+
} | undefined;
|
3514
|
+
configuration?: {
|
3515
|
+
searchMode?: boolean | undefined;
|
3516
|
+
} | undefined;
|
3517
|
+
} | {
|
3518
|
+
type: "DATA";
|
3519
|
+
id: string;
|
3520
|
+
label: import("./TranslationConfig").TranslationConfig;
|
3521
|
+
configuration: {
|
3522
|
+
data: ({
|
3523
|
+
value: string | import("./TranslationConfig").TranslationConfig;
|
3524
|
+
label: import("./TranslationConfig").TranslationConfig;
|
3525
|
+
} | {
|
3526
|
+
fieldId: string;
|
3527
|
+
})[];
|
3528
|
+
subtitle?: import("./TranslationConfig").TranslationConfig | undefined;
|
3529
|
+
};
|
3530
|
+
parent?: {
|
3531
|
+
$$field: string;
|
3532
|
+
} | undefined;
|
3533
|
+
validation?: {
|
3534
|
+
message: import("./TranslationConfig").TranslationConfig;
|
3535
|
+
validator: import(".").JSONSchema;
|
3536
|
+
}[] | undefined;
|
3537
|
+
required?: boolean | undefined;
|
3538
|
+
conditionals?: ({
|
3539
|
+
type: "SHOW";
|
3540
|
+
conditional: import(".").JSONSchema;
|
3541
|
+
} | {
|
3542
|
+
type: "ENABLE";
|
3543
|
+
conditional: import(".").JSONSchema;
|
3544
|
+
} | {
|
3545
|
+
type: "DISPLAY_ON_REVIEW";
|
3546
|
+
conditional: import(".").JSONSchema;
|
3547
|
+
})[] | undefined;
|
3548
|
+
secured?: boolean | undefined;
|
3549
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3550
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3551
|
+
hideLabel?: boolean | undefined;
|
3552
|
+
})[];
|
3553
|
+
conditional?: import(".").JSONSchema | undefined;
|
3554
|
+
})[];
|
1695
3555
|
export declare const getActionAnnotationFields: (actionConfig: ActionConfig) => ({
|
1696
3556
|
type: "DIVIDER";
|
1697
3557
|
id: string;
|
@@ -1936,7 +3796,10 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1936
3796
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1937
3797
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1938
3798
|
hideLabel?: boolean | undefined;
|
1939
|
-
defaultValue?: string |
|
3799
|
+
defaultValue?: string | {
|
3800
|
+
start: string;
|
3801
|
+
end: string;
|
3802
|
+
} | undefined;
|
1940
3803
|
configuration?: {
|
1941
3804
|
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
1942
3805
|
} | undefined;
|
@@ -2035,7 +3898,7 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
2035
3898
|
hideLabel?: boolean | undefined;
|
2036
3899
|
defaultValue?: {
|
2037
3900
|
type: string;
|
2038
|
-
|
3901
|
+
path: string;
|
2039
3902
|
originalFilename: string;
|
2040
3903
|
} | undefined;
|
2041
3904
|
} | {
|
@@ -2138,6 +4001,37 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
2138
4001
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2139
4002
|
hideLabel?: boolean | undefined;
|
2140
4003
|
defaultValue?: string | undefined;
|
4004
|
+
} | {
|
4005
|
+
type: "SELECT_DATE_RANGE";
|
4006
|
+
id: string;
|
4007
|
+
options: {
|
4008
|
+
value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
4009
|
+
label: import("./TranslationConfig").TranslationConfig;
|
4010
|
+
}[];
|
4011
|
+
label: import("./TranslationConfig").TranslationConfig;
|
4012
|
+
parent?: {
|
4013
|
+
$$field: string;
|
4014
|
+
} | undefined;
|
4015
|
+
validation?: {
|
4016
|
+
message: import("./TranslationConfig").TranslationConfig;
|
4017
|
+
validator: import(".").JSONSchema;
|
4018
|
+
}[] | undefined;
|
4019
|
+
required?: boolean | undefined;
|
4020
|
+
conditionals?: ({
|
4021
|
+
type: "SHOW";
|
4022
|
+
conditional: import(".").JSONSchema;
|
4023
|
+
} | {
|
4024
|
+
type: "ENABLE";
|
4025
|
+
conditional: import(".").JSONSchema;
|
4026
|
+
} | {
|
4027
|
+
type: "DISPLAY_ON_REVIEW";
|
4028
|
+
conditional: import(".").JSONSchema;
|
4029
|
+
})[] | undefined;
|
4030
|
+
secured?: boolean | undefined;
|
4031
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
4032
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
4033
|
+
hideLabel?: boolean | undefined;
|
4034
|
+
defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
|
2141
4035
|
} | {
|
2142
4036
|
type: "NAME";
|
2143
4037
|
id: string;
|
@@ -2172,6 +4066,8 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
2172
4066
|
maxLength?: number | undefined;
|
2173
4067
|
prefix?: import("./TranslationConfig").TranslationConfig | undefined;
|
2174
4068
|
postfix?: import("./TranslationConfig").TranslationConfig | undefined;
|
4069
|
+
includeMiddlename?: boolean | undefined;
|
4070
|
+
searchMode?: boolean | undefined;
|
2175
4071
|
} | undefined;
|
2176
4072
|
} | {
|
2177
4073
|
type: "PHONE";
|
@@ -2341,6 +4237,9 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
2341
4237
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2342
4238
|
hideLabel?: boolean | undefined;
|
2343
4239
|
defaultValue?: string | undefined;
|
4240
|
+
configuration?: {
|
4241
|
+
searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
|
4242
|
+
} | undefined;
|
2344
4243
|
} | {
|
2345
4244
|
type: "FILE_WITH_OPTIONS";
|
2346
4245
|
id: string;
|
@@ -2378,7 +4277,7 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
2378
4277
|
defaultValue?: {
|
2379
4278
|
type: string;
|
2380
4279
|
option: string;
|
2381
|
-
|
4280
|
+
path: string;
|
2382
4281
|
originalFilename: string;
|
2383
4282
|
}[] | undefined;
|
2384
4283
|
} | {
|
@@ -2490,6 +4389,9 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
2490
4389
|
addressLine3?: string | undefined;
|
2491
4390
|
postcodeOrZip?: string | undefined;
|
2492
4391
|
} | undefined;
|
4392
|
+
configuration?: {
|
4393
|
+
searchMode?: boolean | undefined;
|
4394
|
+
} | undefined;
|
2493
4395
|
} | {
|
2494
4396
|
type: "DATA";
|
2495
4397
|
id: string;
|
@@ -2778,7 +4680,10 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2778
4680
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2779
4681
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2780
4682
|
hideLabel?: boolean | undefined;
|
2781
|
-
defaultValue?: string |
|
4683
|
+
defaultValue?: string | {
|
4684
|
+
start: string;
|
4685
|
+
end: string;
|
4686
|
+
} | undefined;
|
2782
4687
|
configuration?: {
|
2783
4688
|
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
2784
4689
|
} | undefined;
|
@@ -2877,7 +4782,7 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2877
4782
|
hideLabel?: boolean | undefined;
|
2878
4783
|
defaultValue?: {
|
2879
4784
|
type: string;
|
2880
|
-
|
4785
|
+
path: string;
|
2881
4786
|
originalFilename: string;
|
2882
4787
|
} | undefined;
|
2883
4788
|
} | {
|
@@ -2980,6 +4885,37 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2980
4885
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2981
4886
|
hideLabel?: boolean | undefined;
|
2982
4887
|
defaultValue?: string | undefined;
|
4888
|
+
} | {
|
4889
|
+
type: "SELECT_DATE_RANGE";
|
4890
|
+
id: string;
|
4891
|
+
options: {
|
4892
|
+
value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
4893
|
+
label: import("./TranslationConfig").TranslationConfig;
|
4894
|
+
}[];
|
4895
|
+
label: import("./TranslationConfig").TranslationConfig;
|
4896
|
+
parent?: {
|
4897
|
+
$$field: string;
|
4898
|
+
} | undefined;
|
4899
|
+
validation?: {
|
4900
|
+
message: import("./TranslationConfig").TranslationConfig;
|
4901
|
+
validator: import(".").JSONSchema;
|
4902
|
+
}[] | undefined;
|
4903
|
+
required?: boolean | undefined;
|
4904
|
+
conditionals?: ({
|
4905
|
+
type: "SHOW";
|
4906
|
+
conditional: import(".").JSONSchema;
|
4907
|
+
} | {
|
4908
|
+
type: "ENABLE";
|
4909
|
+
conditional: import(".").JSONSchema;
|
4910
|
+
} | {
|
4911
|
+
type: "DISPLAY_ON_REVIEW";
|
4912
|
+
conditional: import(".").JSONSchema;
|
4913
|
+
})[] | undefined;
|
4914
|
+
secured?: boolean | undefined;
|
4915
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
4916
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
4917
|
+
hideLabel?: boolean | undefined;
|
4918
|
+
defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
|
2983
4919
|
} | {
|
2984
4920
|
type: "NAME";
|
2985
4921
|
id: string;
|
@@ -3014,6 +4950,8 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
3014
4950
|
maxLength?: number | undefined;
|
3015
4951
|
prefix?: import("./TranslationConfig").TranslationConfig | undefined;
|
3016
4952
|
postfix?: import("./TranslationConfig").TranslationConfig | undefined;
|
4953
|
+
includeMiddlename?: boolean | undefined;
|
4954
|
+
searchMode?: boolean | undefined;
|
3017
4955
|
} | undefined;
|
3018
4956
|
} | {
|
3019
4957
|
type: "PHONE";
|
@@ -3183,6 +5121,9 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
3183
5121
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3184
5122
|
hideLabel?: boolean | undefined;
|
3185
5123
|
defaultValue?: string | undefined;
|
5124
|
+
configuration?: {
|
5125
|
+
searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
|
5126
|
+
} | undefined;
|
3186
5127
|
} | {
|
3187
5128
|
type: "FILE_WITH_OPTIONS";
|
3188
5129
|
id: string;
|
@@ -3220,7 +5161,7 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
3220
5161
|
defaultValue?: {
|
3221
5162
|
type: string;
|
3222
5163
|
option: string;
|
3223
|
-
|
5164
|
+
path: string;
|
3224
5165
|
originalFilename: string;
|
3225
5166
|
}[] | undefined;
|
3226
5167
|
} | {
|
@@ -3332,6 +5273,9 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
3332
5273
|
addressLine3?: string | undefined;
|
3333
5274
|
postcodeOrZip?: string | undefined;
|
3334
5275
|
} | undefined;
|
5276
|
+
configuration?: {
|
5277
|
+
searchMode?: boolean | undefined;
|
5278
|
+
} | undefined;
|
3335
5279
|
} | {
|
3336
5280
|
type: "DATA";
|
3337
5281
|
id: string;
|
@@ -3613,7 +5557,10 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3613
5557
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3614
5558
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3615
5559
|
hideLabel?: boolean | undefined;
|
3616
|
-
defaultValue?: string |
|
5560
|
+
defaultValue?: string | {
|
5561
|
+
start: string;
|
5562
|
+
end: string;
|
5563
|
+
} | undefined;
|
3617
5564
|
configuration?: {
|
3618
5565
|
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
3619
5566
|
} | undefined;
|
@@ -3712,7 +5659,7 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3712
5659
|
hideLabel?: boolean | undefined;
|
3713
5660
|
defaultValue?: {
|
3714
5661
|
type: string;
|
3715
|
-
|
5662
|
+
path: string;
|
3716
5663
|
originalFilename: string;
|
3717
5664
|
} | undefined;
|
3718
5665
|
} | {
|
@@ -3815,6 +5762,37 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3815
5762
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3816
5763
|
hideLabel?: boolean | undefined;
|
3817
5764
|
defaultValue?: string | undefined;
|
5765
|
+
} | {
|
5766
|
+
type: "SELECT_DATE_RANGE";
|
5767
|
+
id: string;
|
5768
|
+
options: {
|
5769
|
+
value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
5770
|
+
label: import("./TranslationConfig").TranslationConfig;
|
5771
|
+
}[];
|
5772
|
+
label: import("./TranslationConfig").TranslationConfig;
|
5773
|
+
parent?: {
|
5774
|
+
$$field: string;
|
5775
|
+
} | undefined;
|
5776
|
+
validation?: {
|
5777
|
+
message: import("./TranslationConfig").TranslationConfig;
|
5778
|
+
validator: import(".").JSONSchema;
|
5779
|
+
}[] | undefined;
|
5780
|
+
required?: boolean | undefined;
|
5781
|
+
conditionals?: ({
|
5782
|
+
type: "SHOW";
|
5783
|
+
conditional: import(".").JSONSchema;
|
5784
|
+
} | {
|
5785
|
+
type: "ENABLE";
|
5786
|
+
conditional: import(".").JSONSchema;
|
5787
|
+
} | {
|
5788
|
+
type: "DISPLAY_ON_REVIEW";
|
5789
|
+
conditional: import(".").JSONSchema;
|
5790
|
+
})[] | undefined;
|
5791
|
+
secured?: boolean | undefined;
|
5792
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
5793
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
5794
|
+
hideLabel?: boolean | undefined;
|
5795
|
+
defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
|
3818
5796
|
} | {
|
3819
5797
|
type: "NAME";
|
3820
5798
|
id: string;
|
@@ -3849,6 +5827,8 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3849
5827
|
maxLength?: number | undefined;
|
3850
5828
|
prefix?: import("./TranslationConfig").TranslationConfig | undefined;
|
3851
5829
|
postfix?: import("./TranslationConfig").TranslationConfig | undefined;
|
5830
|
+
includeMiddlename?: boolean | undefined;
|
5831
|
+
searchMode?: boolean | undefined;
|
3852
5832
|
} | undefined;
|
3853
5833
|
} | {
|
3854
5834
|
type: "PHONE";
|
@@ -4018,6 +5998,9 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
4018
5998
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
4019
5999
|
hideLabel?: boolean | undefined;
|
4020
6000
|
defaultValue?: string | undefined;
|
6001
|
+
configuration?: {
|
6002
|
+
searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
|
6003
|
+
} | undefined;
|
4021
6004
|
} | {
|
4022
6005
|
type: "FILE_WITH_OPTIONS";
|
4023
6006
|
id: string;
|
@@ -4055,7 +6038,7 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
4055
6038
|
defaultValue?: {
|
4056
6039
|
type: string;
|
4057
6040
|
option: string;
|
4058
|
-
|
6041
|
+
path: string;
|
4059
6042
|
originalFilename: string;
|
4060
6043
|
}[] | undefined;
|
4061
6044
|
} | {
|
@@ -4167,6 +6150,9 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
4167
6150
|
addressLine3?: string | undefined;
|
4168
6151
|
postcodeOrZip?: string | undefined;
|
4169
6152
|
} | undefined;
|
6153
|
+
configuration?: {
|
6154
|
+
searchMode?: boolean | undefined;
|
6155
|
+
} | undefined;
|
4170
6156
|
} | {
|
4171
6157
|
type: "DATA";
|
4172
6158
|
id: string;
|
@@ -4207,7 +6193,7 @@ export declare function isPageVisible(page: PageConfig, formValues: ActionUpdate
|
|
4207
6193
|
export declare function omitHiddenFields<T extends EventState | ActionUpdate>(fields: FieldConfig[], values: T, visibleVerificationPageIds?: string[]): Partial<T>;
|
4208
6194
|
export declare function omitHiddenPaginatedFields(formConfig: FormConfig, declaration: EventState): Partial<Record<string, string | number | boolean | {
|
4209
6195
|
type: string;
|
4210
|
-
|
6196
|
+
path: string;
|
4211
6197
|
originalFilename: string;
|
4212
6198
|
} | {
|
4213
6199
|
country: string;
|
@@ -4248,16 +6234,19 @@ export declare function omitHiddenPaginatedFields(formConfig: FormConfig, declar
|
|
4248
6234
|
} | {
|
4249
6235
|
type: string;
|
4250
6236
|
option: string;
|
4251
|
-
|
6237
|
+
path: string;
|
4252
6238
|
originalFilename: string;
|
4253
|
-
}[] |
|
6239
|
+
}[] | {
|
6240
|
+
start: string;
|
6241
|
+
end: string;
|
6242
|
+
} | null | undefined>>;
|
4254
6243
|
export declare function findActiveDrafts(event: EventDocument, drafts: Draft[]): {
|
4255
6244
|
id: string & import("zod").BRAND<"UUID">;
|
4256
6245
|
transactionId: string;
|
4257
6246
|
createdAt: string;
|
4258
6247
|
eventId: string & import("zod").BRAND<"UUID">;
|
4259
6248
|
action: {
|
4260
|
-
type: "
|
6249
|
+
type: "DELETE" | "CREATE" | "NOTIFY" | "DECLARE" | "VALIDATE" | "REGISTER" | "DETECT_DUPLICATE" | "REJECT" | "MARKED_AS_DUPLICATE" | "ARCHIVE" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "REJECT_CORRECTION" | "APPROVE_CORRECTION" | "READ" | "ASSIGN" | "UNASSIGN";
|
4261
6250
|
status: "Rejected" | "Requested" | "Accepted";
|
4262
6251
|
transactionId: string;
|
4263
6252
|
createdByUserType: "system" | "user";
|
@@ -4266,7 +6255,7 @@ export declare function findActiveDrafts(event: EventDocument, drafts: Draft[]):
|
|
4266
6255
|
createdByRole: string;
|
4267
6256
|
declaration: Record<string, string | number | boolean | {
|
4268
6257
|
type: string;
|
4269
|
-
|
6258
|
+
path: string;
|
4270
6259
|
originalFilename: string;
|
4271
6260
|
} | {
|
4272
6261
|
country: string;
|
@@ -4303,14 +6292,17 @@ export declare function findActiveDrafts(event: EventDocument, drafts: Draft[]):
|
|
4303
6292
|
} | {
|
4304
6293
|
type: string;
|
4305
6294
|
option: string;
|
4306
|
-
|
6295
|
+
path: string;
|
4307
6296
|
originalFilename: string;
|
4308
|
-
}[] |
|
6297
|
+
}[] | {
|
6298
|
+
start: string;
|
6299
|
+
end: string;
|
6300
|
+
} | null | undefined>;
|
4309
6301
|
createdBySignature?: string | null | undefined;
|
4310
6302
|
createdAtLocation?: (string & import("zod").BRAND<"UUID">) | null | undefined;
|
4311
6303
|
annotation?: Record<string, string | number | boolean | {
|
4312
6304
|
type: string;
|
4313
|
-
|
6305
|
+
path: string;
|
4314
6306
|
originalFilename: string;
|
4315
6307
|
} | {
|
4316
6308
|
country: string;
|
@@ -4347,9 +6339,12 @@ export declare function findActiveDrafts(event: EventDocument, drafts: Draft[]):
|
|
4347
6339
|
} | {
|
4348
6340
|
type: string;
|
4349
6341
|
option: string;
|
4350
|
-
|
6342
|
+
path: string;
|
4351
6343
|
originalFilename: string;
|
4352
|
-
}[] |
|
6344
|
+
}[] | {
|
6345
|
+
start: string;
|
6346
|
+
end: string;
|
6347
|
+
} | null | undefined> | null | undefined;
|
4353
6348
|
originalActionId?: (string & import("zod").BRAND<"UUID">) | null | undefined;
|
4354
6349
|
};
|
4355
6350
|
}[];
|
@@ -4360,7 +6355,7 @@ export declare function getActionVerificationPageIds(actionConfig: ActionConfig,
|
|
4360
6355
|
export declare function omitHiddenAnnotationFields(actionConfig: ActionConfig, declaration: EventState, annotation: ActionUpdate): Partial<{
|
4361
6356
|
[x: string]: string | number | boolean | {
|
4362
6357
|
type: string;
|
4363
|
-
|
6358
|
+
path: string;
|
4364
6359
|
originalFilename: string;
|
4365
6360
|
} | {
|
4366
6361
|
country: string;
|
@@ -4429,9 +6424,12 @@ export declare function omitHiddenAnnotationFields(actionConfig: ActionConfig, d
|
|
4429
6424
|
} | {
|
4430
6425
|
type: string;
|
4431
6426
|
option: string;
|
4432
|
-
|
6427
|
+
path: string;
|
4433
6428
|
originalFilename: string;
|
4434
|
-
}[] |
|
6429
|
+
}[] | {
|
6430
|
+
start: string;
|
6431
|
+
end: string;
|
6432
|
+
} | null | undefined;
|
4435
6433
|
}>;
|
4436
6434
|
export declare function deepMerge<T extends Record<string, unknown>, K extends Record<string, unknown>>(currentDocument: T, actionDocument: K): T & K;
|
4437
6435
|
export declare function findLastAssignmentAction(actions: Action[]): Action | undefined;
|
@@ -4708,7 +6706,10 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
4708
6706
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
4709
6707
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
4710
6708
|
hideLabel?: boolean | undefined;
|
4711
|
-
defaultValue?: string |
|
6709
|
+
defaultValue?: string | {
|
6710
|
+
start: string;
|
6711
|
+
end: string;
|
6712
|
+
} | undefined;
|
4712
6713
|
configuration?: {
|
4713
6714
|
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
4714
6715
|
} | undefined;
|
@@ -4807,7 +6808,7 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
4807
6808
|
hideLabel?: boolean | undefined;
|
4808
6809
|
defaultValue?: {
|
4809
6810
|
type: string;
|
4810
|
-
|
6811
|
+
path: string;
|
4811
6812
|
originalFilename: string;
|
4812
6813
|
} | undefined;
|
4813
6814
|
} | {
|
@@ -4910,6 +6911,37 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
4910
6911
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
4911
6912
|
hideLabel?: boolean | undefined;
|
4912
6913
|
defaultValue?: string | undefined;
|
6914
|
+
} | {
|
6915
|
+
type: "SELECT_DATE_RANGE";
|
6916
|
+
id: string;
|
6917
|
+
options: {
|
6918
|
+
value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
6919
|
+
label: import("./TranslationConfig").TranslationConfig;
|
6920
|
+
}[];
|
6921
|
+
label: import("./TranslationConfig").TranslationConfig;
|
6922
|
+
parent?: {
|
6923
|
+
$$field: string;
|
6924
|
+
} | undefined;
|
6925
|
+
validation?: {
|
6926
|
+
message: import("./TranslationConfig").TranslationConfig;
|
6927
|
+
validator: import(".").JSONSchema;
|
6928
|
+
}[] | undefined;
|
6929
|
+
required?: boolean | undefined;
|
6930
|
+
conditionals?: ({
|
6931
|
+
type: "SHOW";
|
6932
|
+
conditional: import(".").JSONSchema;
|
6933
|
+
} | {
|
6934
|
+
type: "ENABLE";
|
6935
|
+
conditional: import(".").JSONSchema;
|
6936
|
+
} | {
|
6937
|
+
type: "DISPLAY_ON_REVIEW";
|
6938
|
+
conditional: import(".").JSONSchema;
|
6939
|
+
})[] | undefined;
|
6940
|
+
secured?: boolean | undefined;
|
6941
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
6942
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
6943
|
+
hideLabel?: boolean | undefined;
|
6944
|
+
defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
|
4913
6945
|
} | {
|
4914
6946
|
type: "NAME";
|
4915
6947
|
id: string;
|
@@ -4944,6 +6976,8 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
4944
6976
|
maxLength?: number | undefined;
|
4945
6977
|
prefix?: import("./TranslationConfig").TranslationConfig | undefined;
|
4946
6978
|
postfix?: import("./TranslationConfig").TranslationConfig | undefined;
|
6979
|
+
includeMiddlename?: boolean | undefined;
|
6980
|
+
searchMode?: boolean | undefined;
|
4947
6981
|
} | undefined;
|
4948
6982
|
} | {
|
4949
6983
|
type: "PHONE";
|
@@ -5113,6 +7147,9 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
5113
7147
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
5114
7148
|
hideLabel?: boolean | undefined;
|
5115
7149
|
defaultValue?: string | undefined;
|
7150
|
+
configuration?: {
|
7151
|
+
searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
|
7152
|
+
} | undefined;
|
5116
7153
|
} | {
|
5117
7154
|
type: "FILE_WITH_OPTIONS";
|
5118
7155
|
id: string;
|
@@ -5150,7 +7187,7 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
5150
7187
|
defaultValue?: {
|
5151
7188
|
type: string;
|
5152
7189
|
option: string;
|
5153
|
-
|
7190
|
+
path: string;
|
5154
7191
|
originalFilename: string;
|
5155
7192
|
}[] | undefined;
|
5156
7193
|
} | {
|
@@ -5262,6 +7299,9 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
5262
7299
|
addressLine3?: string | undefined;
|
5263
7300
|
postcodeOrZip?: string | undefined;
|
5264
7301
|
} | undefined;
|
7302
|
+
configuration?: {
|
7303
|
+
searchMode?: boolean | undefined;
|
7304
|
+
} | undefined;
|
5265
7305
|
} | {
|
5266
7306
|
type: "DATA";
|
5267
7307
|
id: string;
|
@@ -5557,7 +7597,10 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
5557
7597
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
5558
7598
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
5559
7599
|
hideLabel?: boolean | undefined;
|
5560
|
-
defaultValue?: string |
|
7600
|
+
defaultValue?: string | {
|
7601
|
+
start: string;
|
7602
|
+
end: string;
|
7603
|
+
} | undefined;
|
5561
7604
|
configuration?: {
|
5562
7605
|
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
5563
7606
|
} | undefined;
|
@@ -5656,7 +7699,7 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
5656
7699
|
hideLabel?: boolean | undefined;
|
5657
7700
|
defaultValue?: {
|
5658
7701
|
type: string;
|
5659
|
-
|
7702
|
+
path: string;
|
5660
7703
|
originalFilename: string;
|
5661
7704
|
} | undefined;
|
5662
7705
|
} | {
|
@@ -5759,6 +7802,37 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
5759
7802
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
5760
7803
|
hideLabel?: boolean | undefined;
|
5761
7804
|
defaultValue?: string | undefined;
|
7805
|
+
} | {
|
7806
|
+
type: "SELECT_DATE_RANGE";
|
7807
|
+
id: string;
|
7808
|
+
options: {
|
7809
|
+
value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
7810
|
+
label: import("./TranslationConfig").TranslationConfig;
|
7811
|
+
}[];
|
7812
|
+
label: import("./TranslationConfig").TranslationConfig;
|
7813
|
+
parent?: {
|
7814
|
+
$$field: string;
|
7815
|
+
} | undefined;
|
7816
|
+
validation?: {
|
7817
|
+
message: import("./TranslationConfig").TranslationConfig;
|
7818
|
+
validator: import(".").JSONSchema;
|
7819
|
+
}[] | undefined;
|
7820
|
+
required?: boolean | undefined;
|
7821
|
+
conditionals?: ({
|
7822
|
+
type: "SHOW";
|
7823
|
+
conditional: import(".").JSONSchema;
|
7824
|
+
} | {
|
7825
|
+
type: "ENABLE";
|
7826
|
+
conditional: import(".").JSONSchema;
|
7827
|
+
} | {
|
7828
|
+
type: "DISPLAY_ON_REVIEW";
|
7829
|
+
conditional: import(".").JSONSchema;
|
7830
|
+
})[] | undefined;
|
7831
|
+
secured?: boolean | undefined;
|
7832
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
7833
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
7834
|
+
hideLabel?: boolean | undefined;
|
7835
|
+
defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
|
5762
7836
|
} | {
|
5763
7837
|
type: "NAME";
|
5764
7838
|
id: string;
|
@@ -5793,6 +7867,8 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
5793
7867
|
maxLength?: number | undefined;
|
5794
7868
|
prefix?: import("./TranslationConfig").TranslationConfig | undefined;
|
5795
7869
|
postfix?: import("./TranslationConfig").TranslationConfig | undefined;
|
7870
|
+
includeMiddlename?: boolean | undefined;
|
7871
|
+
searchMode?: boolean | undefined;
|
5796
7872
|
} | undefined;
|
5797
7873
|
} | {
|
5798
7874
|
type: "PHONE";
|
@@ -5962,6 +8038,9 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
5962
8038
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
5963
8039
|
hideLabel?: boolean | undefined;
|
5964
8040
|
defaultValue?: string | undefined;
|
8041
|
+
configuration?: {
|
8042
|
+
searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
|
8043
|
+
} | undefined;
|
5965
8044
|
} | {
|
5966
8045
|
type: "FILE_WITH_OPTIONS";
|
5967
8046
|
id: string;
|
@@ -5999,7 +8078,7 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
5999
8078
|
defaultValue?: {
|
6000
8079
|
type: string;
|
6001
8080
|
option: string;
|
6002
|
-
|
8081
|
+
path: string;
|
6003
8082
|
originalFilename: string;
|
6004
8083
|
}[] | undefined;
|
6005
8084
|
} | {
|
@@ -6111,6 +8190,9 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
6111
8190
|
addressLine3?: string | undefined;
|
6112
8191
|
postcodeOrZip?: string | undefined;
|
6113
8192
|
} | undefined;
|
8193
|
+
configuration?: {
|
8194
|
+
searchMode?: boolean | undefined;
|
8195
|
+
} | undefined;
|
6114
8196
|
} | {
|
6115
8197
|
type: "DATA";
|
6116
8198
|
id: string;
|
@@ -6405,7 +8487,10 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
6405
8487
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
6406
8488
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
6407
8489
|
hideLabel?: boolean | undefined;
|
6408
|
-
defaultValue?: string |
|
8490
|
+
defaultValue?: string | {
|
8491
|
+
start: string;
|
8492
|
+
end: string;
|
8493
|
+
} | undefined;
|
6409
8494
|
configuration?: {
|
6410
8495
|
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
6411
8496
|
} | undefined;
|
@@ -6504,7 +8589,7 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
6504
8589
|
hideLabel?: boolean | undefined;
|
6505
8590
|
defaultValue?: {
|
6506
8591
|
type: string;
|
6507
|
-
|
8592
|
+
path: string;
|
6508
8593
|
originalFilename: string;
|
6509
8594
|
} | undefined;
|
6510
8595
|
} | {
|
@@ -6607,6 +8692,37 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
6607
8692
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
6608
8693
|
hideLabel?: boolean | undefined;
|
6609
8694
|
defaultValue?: string | undefined;
|
8695
|
+
} | {
|
8696
|
+
type: "SELECT_DATE_RANGE";
|
8697
|
+
id: string;
|
8698
|
+
options: {
|
8699
|
+
value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
8700
|
+
label: import("./TranslationConfig").TranslationConfig;
|
8701
|
+
}[];
|
8702
|
+
label: import("./TranslationConfig").TranslationConfig;
|
8703
|
+
parent?: {
|
8704
|
+
$$field: string;
|
8705
|
+
} | undefined;
|
8706
|
+
validation?: {
|
8707
|
+
message: import("./TranslationConfig").TranslationConfig;
|
8708
|
+
validator: import(".").JSONSchema;
|
8709
|
+
}[] | undefined;
|
8710
|
+
required?: boolean | undefined;
|
8711
|
+
conditionals?: ({
|
8712
|
+
type: "SHOW";
|
8713
|
+
conditional: import(".").JSONSchema;
|
8714
|
+
} | {
|
8715
|
+
type: "ENABLE";
|
8716
|
+
conditional: import(".").JSONSchema;
|
8717
|
+
} | {
|
8718
|
+
type: "DISPLAY_ON_REVIEW";
|
8719
|
+
conditional: import(".").JSONSchema;
|
8720
|
+
})[] | undefined;
|
8721
|
+
secured?: boolean | undefined;
|
8722
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
8723
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
8724
|
+
hideLabel?: boolean | undefined;
|
8725
|
+
defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
|
6610
8726
|
} | {
|
6611
8727
|
type: "NAME";
|
6612
8728
|
id: string;
|
@@ -6641,6 +8757,8 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
6641
8757
|
maxLength?: number | undefined;
|
6642
8758
|
prefix?: import("./TranslationConfig").TranslationConfig | undefined;
|
6643
8759
|
postfix?: import("./TranslationConfig").TranslationConfig | undefined;
|
8760
|
+
includeMiddlename?: boolean | undefined;
|
8761
|
+
searchMode?: boolean | undefined;
|
6644
8762
|
} | undefined;
|
6645
8763
|
} | {
|
6646
8764
|
type: "PHONE";
|
@@ -6810,6 +8928,9 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
6810
8928
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
6811
8929
|
hideLabel?: boolean | undefined;
|
6812
8930
|
defaultValue?: string | undefined;
|
8931
|
+
configuration?: {
|
8932
|
+
searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
|
8933
|
+
} | undefined;
|
6813
8934
|
} | {
|
6814
8935
|
type: "FILE_WITH_OPTIONS";
|
6815
8936
|
id: string;
|
@@ -6847,7 +8968,7 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
6847
8968
|
defaultValue?: {
|
6848
8969
|
type: string;
|
6849
8970
|
option: string;
|
6850
|
-
|
8971
|
+
path: string;
|
6851
8972
|
originalFilename: string;
|
6852
8973
|
}[] | undefined;
|
6853
8974
|
} | {
|
@@ -6959,6 +9080,9 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
6959
9080
|
addressLine3?: string | undefined;
|
6960
9081
|
postcodeOrZip?: string | undefined;
|
6961
9082
|
} | undefined;
|
9083
|
+
configuration?: {
|
9084
|
+
searchMode?: boolean | undefined;
|
9085
|
+
} | undefined;
|
6962
9086
|
} | {
|
6963
9087
|
type: "DATA";
|
6964
9088
|
id: string;
|
@@ -7253,7 +9377,10 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
7253
9377
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
7254
9378
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
7255
9379
|
hideLabel?: boolean | undefined;
|
7256
|
-
defaultValue?: string |
|
9380
|
+
defaultValue?: string | {
|
9381
|
+
start: string;
|
9382
|
+
end: string;
|
9383
|
+
} | undefined;
|
7257
9384
|
configuration?: {
|
7258
9385
|
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
7259
9386
|
} | undefined;
|
@@ -7352,7 +9479,7 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
7352
9479
|
hideLabel?: boolean | undefined;
|
7353
9480
|
defaultValue?: {
|
7354
9481
|
type: string;
|
7355
|
-
|
9482
|
+
path: string;
|
7356
9483
|
originalFilename: string;
|
7357
9484
|
} | undefined;
|
7358
9485
|
} | {
|
@@ -7386,21 +9513,52 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
7386
9513
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
7387
9514
|
hideLabel?: boolean | undefined;
|
7388
9515
|
defaultValue?: string | undefined;
|
7389
|
-
configuration?: {
|
7390
|
-
styles?: {
|
7391
|
-
size?: "NORMAL" | "LARGE" | undefined;
|
7392
|
-
} | undefined;
|
7393
|
-
} | undefined;
|
9516
|
+
configuration?: {
|
9517
|
+
styles?: {
|
9518
|
+
size?: "NORMAL" | "LARGE" | undefined;
|
9519
|
+
} | undefined;
|
9520
|
+
} | undefined;
|
9521
|
+
} | {
|
9522
|
+
type: "BULLET_LIST";
|
9523
|
+
id: string;
|
9524
|
+
label: import("./TranslationConfig").TranslationConfig;
|
9525
|
+
configuration: {
|
9526
|
+
styles?: {
|
9527
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
9528
|
+
} | undefined;
|
9529
|
+
};
|
9530
|
+
items: import("./TranslationConfig").TranslationConfig[];
|
9531
|
+
parent?: {
|
9532
|
+
$$field: string;
|
9533
|
+
} | undefined;
|
9534
|
+
validation?: {
|
9535
|
+
message: import("./TranslationConfig").TranslationConfig;
|
9536
|
+
validator: import(".").JSONSchema;
|
9537
|
+
}[] | undefined;
|
9538
|
+
required?: boolean | undefined;
|
9539
|
+
conditionals?: ({
|
9540
|
+
type: "SHOW";
|
9541
|
+
conditional: import(".").JSONSchema;
|
9542
|
+
} | {
|
9543
|
+
type: "ENABLE";
|
9544
|
+
conditional: import(".").JSONSchema;
|
9545
|
+
} | {
|
9546
|
+
type: "DISPLAY_ON_REVIEW";
|
9547
|
+
conditional: import(".").JSONSchema;
|
9548
|
+
})[] | undefined;
|
9549
|
+
secured?: boolean | undefined;
|
9550
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
9551
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
9552
|
+
hideLabel?: boolean | undefined;
|
9553
|
+
defaultValue?: string | undefined;
|
7394
9554
|
} | {
|
7395
|
-
type: "
|
9555
|
+
type: "SELECT";
|
7396
9556
|
id: string;
|
9557
|
+
options: {
|
9558
|
+
value: string;
|
9559
|
+
label: import("./TranslationConfig").TranslationConfig;
|
9560
|
+
}[];
|
7397
9561
|
label: import("./TranslationConfig").TranslationConfig;
|
7398
|
-
configuration: {
|
7399
|
-
styles?: {
|
7400
|
-
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
7401
|
-
} | undefined;
|
7402
|
-
};
|
7403
|
-
items: import("./TranslationConfig").TranslationConfig[];
|
7404
9562
|
parent?: {
|
7405
9563
|
$$field: string;
|
7406
9564
|
} | undefined;
|
@@ -7425,10 +9583,10 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
7425
9583
|
hideLabel?: boolean | undefined;
|
7426
9584
|
defaultValue?: string | undefined;
|
7427
9585
|
} | {
|
7428
|
-
type: "
|
9586
|
+
type: "SELECT_DATE_RANGE";
|
7429
9587
|
id: string;
|
7430
9588
|
options: {
|
7431
|
-
value:
|
9589
|
+
value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
7432
9590
|
label: import("./TranslationConfig").TranslationConfig;
|
7433
9591
|
}[];
|
7434
9592
|
label: import("./TranslationConfig").TranslationConfig;
|
@@ -7454,7 +9612,7 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
7454
9612
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
7455
9613
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
7456
9614
|
hideLabel?: boolean | undefined;
|
7457
|
-
defaultValue?:
|
9615
|
+
defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
|
7458
9616
|
} | {
|
7459
9617
|
type: "NAME";
|
7460
9618
|
id: string;
|
@@ -7489,6 +9647,8 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
7489
9647
|
maxLength?: number | undefined;
|
7490
9648
|
prefix?: import("./TranslationConfig").TranslationConfig | undefined;
|
7491
9649
|
postfix?: import("./TranslationConfig").TranslationConfig | undefined;
|
9650
|
+
includeMiddlename?: boolean | undefined;
|
9651
|
+
searchMode?: boolean | undefined;
|
7492
9652
|
} | undefined;
|
7493
9653
|
} | {
|
7494
9654
|
type: "PHONE";
|
@@ -7658,6 +9818,9 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
7658
9818
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
7659
9819
|
hideLabel?: boolean | undefined;
|
7660
9820
|
defaultValue?: string | undefined;
|
9821
|
+
configuration?: {
|
9822
|
+
searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
|
9823
|
+
} | undefined;
|
7661
9824
|
} | {
|
7662
9825
|
type: "FILE_WITH_OPTIONS";
|
7663
9826
|
id: string;
|
@@ -7695,7 +9858,7 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
7695
9858
|
defaultValue?: {
|
7696
9859
|
type: string;
|
7697
9860
|
option: string;
|
7698
|
-
|
9861
|
+
path: string;
|
7699
9862
|
originalFilename: string;
|
7700
9863
|
}[] | undefined;
|
7701
9864
|
} | {
|
@@ -7807,6 +9970,9 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
7807
9970
|
addressLine3?: string | undefined;
|
7808
9971
|
postcodeOrZip?: string | undefined;
|
7809
9972
|
} | undefined;
|
9973
|
+
configuration?: {
|
9974
|
+
searchMode?: boolean | undefined;
|
9975
|
+
} | undefined;
|
7810
9976
|
} | {
|
7811
9977
|
type: "DATA";
|
7812
9978
|
id: string;
|
@@ -8101,7 +10267,10 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
8101
10267
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
8102
10268
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
8103
10269
|
hideLabel?: boolean | undefined;
|
8104
|
-
defaultValue?: string |
|
10270
|
+
defaultValue?: string | {
|
10271
|
+
start: string;
|
10272
|
+
end: string;
|
10273
|
+
} | undefined;
|
8105
10274
|
configuration?: {
|
8106
10275
|
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
8107
10276
|
} | undefined;
|
@@ -8200,7 +10369,7 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
8200
10369
|
hideLabel?: boolean | undefined;
|
8201
10370
|
defaultValue?: {
|
8202
10371
|
type: string;
|
8203
|
-
|
10372
|
+
path: string;
|
8204
10373
|
originalFilename: string;
|
8205
10374
|
} | undefined;
|
8206
10375
|
} | {
|
@@ -8303,6 +10472,37 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
8303
10472
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
8304
10473
|
hideLabel?: boolean | undefined;
|
8305
10474
|
defaultValue?: string | undefined;
|
10475
|
+
} | {
|
10476
|
+
type: "SELECT_DATE_RANGE";
|
10477
|
+
id: string;
|
10478
|
+
options: {
|
10479
|
+
value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
10480
|
+
label: import("./TranslationConfig").TranslationConfig;
|
10481
|
+
}[];
|
10482
|
+
label: import("./TranslationConfig").TranslationConfig;
|
10483
|
+
parent?: {
|
10484
|
+
$$field: string;
|
10485
|
+
} | undefined;
|
10486
|
+
validation?: {
|
10487
|
+
message: import("./TranslationConfig").TranslationConfig;
|
10488
|
+
validator: import(".").JSONSchema;
|
10489
|
+
}[] | undefined;
|
10490
|
+
required?: boolean | undefined;
|
10491
|
+
conditionals?: ({
|
10492
|
+
type: "SHOW";
|
10493
|
+
conditional: import(".").JSONSchema;
|
10494
|
+
} | {
|
10495
|
+
type: "ENABLE";
|
10496
|
+
conditional: import(".").JSONSchema;
|
10497
|
+
} | {
|
10498
|
+
type: "DISPLAY_ON_REVIEW";
|
10499
|
+
conditional: import(".").JSONSchema;
|
10500
|
+
})[] | undefined;
|
10501
|
+
secured?: boolean | undefined;
|
10502
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
10503
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
10504
|
+
hideLabel?: boolean | undefined;
|
10505
|
+
defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
|
8306
10506
|
} | {
|
8307
10507
|
type: "NAME";
|
8308
10508
|
id: string;
|
@@ -8337,6 +10537,8 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
8337
10537
|
maxLength?: number | undefined;
|
8338
10538
|
prefix?: import("./TranslationConfig").TranslationConfig | undefined;
|
8339
10539
|
postfix?: import("./TranslationConfig").TranslationConfig | undefined;
|
10540
|
+
includeMiddlename?: boolean | undefined;
|
10541
|
+
searchMode?: boolean | undefined;
|
8340
10542
|
} | undefined;
|
8341
10543
|
} | {
|
8342
10544
|
type: "PHONE";
|
@@ -8506,6 +10708,9 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
8506
10708
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
8507
10709
|
hideLabel?: boolean | undefined;
|
8508
10710
|
defaultValue?: string | undefined;
|
10711
|
+
configuration?: {
|
10712
|
+
searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
|
10713
|
+
} | undefined;
|
8509
10714
|
} | {
|
8510
10715
|
type: "FILE_WITH_OPTIONS";
|
8511
10716
|
id: string;
|
@@ -8543,7 +10748,7 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
8543
10748
|
defaultValue?: {
|
8544
10749
|
type: string;
|
8545
10750
|
option: string;
|
8546
|
-
|
10751
|
+
path: string;
|
8547
10752
|
originalFilename: string;
|
8548
10753
|
}[] | undefined;
|
8549
10754
|
} | {
|
@@ -8655,6 +10860,9 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
8655
10860
|
addressLine3?: string | undefined;
|
8656
10861
|
postcodeOrZip?: string | undefined;
|
8657
10862
|
} | undefined;
|
10863
|
+
configuration?: {
|
10864
|
+
searchMode?: boolean | undefined;
|
10865
|
+
} | undefined;
|
8658
10866
|
} | {
|
8659
10867
|
type: "DATA";
|
8660
10868
|
id: string;
|
@@ -8997,7 +11205,10 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
8997
11205
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
8998
11206
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
8999
11207
|
hideLabel?: boolean | undefined;
|
9000
|
-
defaultValue?: string |
|
11208
|
+
defaultValue?: string | {
|
11209
|
+
start: string;
|
11210
|
+
end: string;
|
11211
|
+
} | undefined;
|
9001
11212
|
configuration?: {
|
9002
11213
|
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
9003
11214
|
} | undefined;
|
@@ -9096,7 +11307,7 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
9096
11307
|
hideLabel?: boolean | undefined;
|
9097
11308
|
defaultValue?: {
|
9098
11309
|
type: string;
|
9099
|
-
|
11310
|
+
path: string;
|
9100
11311
|
originalFilename: string;
|
9101
11312
|
} | undefined;
|
9102
11313
|
} | {
|
@@ -9199,6 +11410,37 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
9199
11410
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
9200
11411
|
hideLabel?: boolean | undefined;
|
9201
11412
|
defaultValue?: string | undefined;
|
11413
|
+
} | {
|
11414
|
+
type: "SELECT_DATE_RANGE";
|
11415
|
+
id: string;
|
11416
|
+
options: {
|
11417
|
+
value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
11418
|
+
label: import("./TranslationConfig").TranslationConfig;
|
11419
|
+
}[];
|
11420
|
+
label: import("./TranslationConfig").TranslationConfig;
|
11421
|
+
parent?: {
|
11422
|
+
$$field: string;
|
11423
|
+
} | undefined;
|
11424
|
+
validation?: {
|
11425
|
+
message: import("./TranslationConfig").TranslationConfig;
|
11426
|
+
validator: import(".").JSONSchema;
|
11427
|
+
}[] | undefined;
|
11428
|
+
required?: boolean | undefined;
|
11429
|
+
conditionals?: ({
|
11430
|
+
type: "SHOW";
|
11431
|
+
conditional: import(".").JSONSchema;
|
11432
|
+
} | {
|
11433
|
+
type: "ENABLE";
|
11434
|
+
conditional: import(".").JSONSchema;
|
11435
|
+
} | {
|
11436
|
+
type: "DISPLAY_ON_REVIEW";
|
11437
|
+
conditional: import(".").JSONSchema;
|
11438
|
+
})[] | undefined;
|
11439
|
+
secured?: boolean | undefined;
|
11440
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
11441
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
11442
|
+
hideLabel?: boolean | undefined;
|
11443
|
+
defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
|
9202
11444
|
} | {
|
9203
11445
|
type: "NAME";
|
9204
11446
|
id: string;
|
@@ -9233,6 +11475,8 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
9233
11475
|
maxLength?: number | undefined;
|
9234
11476
|
prefix?: import("./TranslationConfig").TranslationConfig | undefined;
|
9235
11477
|
postfix?: import("./TranslationConfig").TranslationConfig | undefined;
|
11478
|
+
includeMiddlename?: boolean | undefined;
|
11479
|
+
searchMode?: boolean | undefined;
|
9236
11480
|
} | undefined;
|
9237
11481
|
} | {
|
9238
11482
|
type: "PHONE";
|
@@ -9402,6 +11646,9 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
9402
11646
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
9403
11647
|
hideLabel?: boolean | undefined;
|
9404
11648
|
defaultValue?: string | undefined;
|
11649
|
+
configuration?: {
|
11650
|
+
searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
|
11651
|
+
} | undefined;
|
9405
11652
|
} | {
|
9406
11653
|
type: "FILE_WITH_OPTIONS";
|
9407
11654
|
id: string;
|
@@ -9439,7 +11686,7 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
9439
11686
|
defaultValue?: {
|
9440
11687
|
type: string;
|
9441
11688
|
option: string;
|
9442
|
-
|
11689
|
+
path: string;
|
9443
11690
|
originalFilename: string;
|
9444
11691
|
}[] | undefined;
|
9445
11692
|
} | {
|
@@ -9551,6 +11798,9 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
9551
11798
|
addressLine3?: string | undefined;
|
9552
11799
|
postcodeOrZip?: string | undefined;
|
9553
11800
|
} | undefined;
|
11801
|
+
configuration?: {
|
11802
|
+
searchMode?: boolean | undefined;
|
11803
|
+
} | undefined;
|
9554
11804
|
} | {
|
9555
11805
|
type: "DATA";
|
9556
11806
|
id: string;
|
@@ -9848,7 +12098,10 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
9848
12098
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
9849
12099
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
9850
12100
|
hideLabel?: boolean | undefined;
|
9851
|
-
defaultValue?: string |
|
12101
|
+
defaultValue?: string | {
|
12102
|
+
start: string;
|
12103
|
+
end: string;
|
12104
|
+
} | undefined;
|
9852
12105
|
configuration?: {
|
9853
12106
|
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
9854
12107
|
} | undefined;
|
@@ -9947,7 +12200,7 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
9947
12200
|
hideLabel?: boolean | undefined;
|
9948
12201
|
defaultValue?: {
|
9949
12202
|
type: string;
|
9950
|
-
|
12203
|
+
path: string;
|
9951
12204
|
originalFilename: string;
|
9952
12205
|
} | undefined;
|
9953
12206
|
} | {
|
@@ -10050,6 +12303,37 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
10050
12303
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
10051
12304
|
hideLabel?: boolean | undefined;
|
10052
12305
|
defaultValue?: string | undefined;
|
12306
|
+
} | {
|
12307
|
+
type: "SELECT_DATE_RANGE";
|
12308
|
+
id: string;
|
12309
|
+
options: {
|
12310
|
+
value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
12311
|
+
label: import("./TranslationConfig").TranslationConfig;
|
12312
|
+
}[];
|
12313
|
+
label: import("./TranslationConfig").TranslationConfig;
|
12314
|
+
parent?: {
|
12315
|
+
$$field: string;
|
12316
|
+
} | undefined;
|
12317
|
+
validation?: {
|
12318
|
+
message: import("./TranslationConfig").TranslationConfig;
|
12319
|
+
validator: import(".").JSONSchema;
|
12320
|
+
}[] | undefined;
|
12321
|
+
required?: boolean | undefined;
|
12322
|
+
conditionals?: ({
|
12323
|
+
type: "SHOW";
|
12324
|
+
conditional: import(".").JSONSchema;
|
12325
|
+
} | {
|
12326
|
+
type: "ENABLE";
|
12327
|
+
conditional: import(".").JSONSchema;
|
12328
|
+
} | {
|
12329
|
+
type: "DISPLAY_ON_REVIEW";
|
12330
|
+
conditional: import(".").JSONSchema;
|
12331
|
+
})[] | undefined;
|
12332
|
+
secured?: boolean | undefined;
|
12333
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
12334
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
12335
|
+
hideLabel?: boolean | undefined;
|
12336
|
+
defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
|
10053
12337
|
} | {
|
10054
12338
|
type: "NAME";
|
10055
12339
|
id: string;
|
@@ -10084,6 +12368,8 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
10084
12368
|
maxLength?: number | undefined;
|
10085
12369
|
prefix?: import("./TranslationConfig").TranslationConfig | undefined;
|
10086
12370
|
postfix?: import("./TranslationConfig").TranslationConfig | undefined;
|
12371
|
+
includeMiddlename?: boolean | undefined;
|
12372
|
+
searchMode?: boolean | undefined;
|
10087
12373
|
} | undefined;
|
10088
12374
|
} | {
|
10089
12375
|
type: "PHONE";
|
@@ -10253,6 +12539,9 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
10253
12539
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
10254
12540
|
hideLabel?: boolean | undefined;
|
10255
12541
|
defaultValue?: string | undefined;
|
12542
|
+
configuration?: {
|
12543
|
+
searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
|
12544
|
+
} | undefined;
|
10256
12545
|
} | {
|
10257
12546
|
type: "FILE_WITH_OPTIONS";
|
10258
12547
|
id: string;
|
@@ -10290,7 +12579,7 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
10290
12579
|
defaultValue?: {
|
10291
12580
|
type: string;
|
10292
12581
|
option: string;
|
10293
|
-
|
12582
|
+
path: string;
|
10294
12583
|
originalFilename: string;
|
10295
12584
|
}[] | undefined;
|
10296
12585
|
} | {
|
@@ -10402,6 +12691,9 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
10402
12691
|
addressLine3?: string | undefined;
|
10403
12692
|
postcodeOrZip?: string | undefined;
|
10404
12693
|
} | undefined;
|
12694
|
+
configuration?: {
|
12695
|
+
searchMode?: boolean | undefined;
|
12696
|
+
} | undefined;
|
10405
12697
|
} | {
|
10406
12698
|
type: "DATA";
|
10407
12699
|
id: string;
|
@@ -10700,7 +12992,10 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
10700
12992
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
10701
12993
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
10702
12994
|
hideLabel?: boolean | undefined;
|
10703
|
-
defaultValue?: string |
|
12995
|
+
defaultValue?: string | {
|
12996
|
+
start: string;
|
12997
|
+
end: string;
|
12998
|
+
} | undefined;
|
10704
12999
|
configuration?: {
|
10705
13000
|
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
10706
13001
|
} | undefined;
|
@@ -10799,7 +13094,7 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
10799
13094
|
hideLabel?: boolean | undefined;
|
10800
13095
|
defaultValue?: {
|
10801
13096
|
type: string;
|
10802
|
-
|
13097
|
+
path: string;
|
10803
13098
|
originalFilename: string;
|
10804
13099
|
} | undefined;
|
10805
13100
|
} | {
|
@@ -10902,6 +13197,37 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
10902
13197
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
10903
13198
|
hideLabel?: boolean | undefined;
|
10904
13199
|
defaultValue?: string | undefined;
|
13200
|
+
} | {
|
13201
|
+
type: "SELECT_DATE_RANGE";
|
13202
|
+
id: string;
|
13203
|
+
options: {
|
13204
|
+
value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
13205
|
+
label: import("./TranslationConfig").TranslationConfig;
|
13206
|
+
}[];
|
13207
|
+
label: import("./TranslationConfig").TranslationConfig;
|
13208
|
+
parent?: {
|
13209
|
+
$$field: string;
|
13210
|
+
} | undefined;
|
13211
|
+
validation?: {
|
13212
|
+
message: import("./TranslationConfig").TranslationConfig;
|
13213
|
+
validator: import(".").JSONSchema;
|
13214
|
+
}[] | undefined;
|
13215
|
+
required?: boolean | undefined;
|
13216
|
+
conditionals?: ({
|
13217
|
+
type: "SHOW";
|
13218
|
+
conditional: import(".").JSONSchema;
|
13219
|
+
} | {
|
13220
|
+
type: "ENABLE";
|
13221
|
+
conditional: import(".").JSONSchema;
|
13222
|
+
} | {
|
13223
|
+
type: "DISPLAY_ON_REVIEW";
|
13224
|
+
conditional: import(".").JSONSchema;
|
13225
|
+
})[] | undefined;
|
13226
|
+
secured?: boolean | undefined;
|
13227
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
13228
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
13229
|
+
hideLabel?: boolean | undefined;
|
13230
|
+
defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
|
10905
13231
|
} | {
|
10906
13232
|
type: "NAME";
|
10907
13233
|
id: string;
|
@@ -10936,6 +13262,8 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
10936
13262
|
maxLength?: number | undefined;
|
10937
13263
|
prefix?: import("./TranslationConfig").TranslationConfig | undefined;
|
10938
13264
|
postfix?: import("./TranslationConfig").TranslationConfig | undefined;
|
13265
|
+
includeMiddlename?: boolean | undefined;
|
13266
|
+
searchMode?: boolean | undefined;
|
10939
13267
|
} | undefined;
|
10940
13268
|
} | {
|
10941
13269
|
type: "PHONE";
|
@@ -11105,6 +13433,9 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
11105
13433
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
11106
13434
|
hideLabel?: boolean | undefined;
|
11107
13435
|
defaultValue?: string | undefined;
|
13436
|
+
configuration?: {
|
13437
|
+
searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
|
13438
|
+
} | undefined;
|
11108
13439
|
} | {
|
11109
13440
|
type: "FILE_WITH_OPTIONS";
|
11110
13441
|
id: string;
|
@@ -11142,7 +13473,7 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
11142
13473
|
defaultValue?: {
|
11143
13474
|
type: string;
|
11144
13475
|
option: string;
|
11145
|
-
|
13476
|
+
path: string;
|
11146
13477
|
originalFilename: string;
|
11147
13478
|
}[] | undefined;
|
11148
13479
|
} | {
|
@@ -11254,6 +13585,9 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
11254
13585
|
addressLine3?: string | undefined;
|
11255
13586
|
postcodeOrZip?: string | undefined;
|
11256
13587
|
} | undefined;
|
13588
|
+
configuration?: {
|
13589
|
+
searchMode?: boolean | undefined;
|
13590
|
+
} | undefined;
|
11257
13591
|
} | {
|
11258
13592
|
type: "DATA";
|
11259
13593
|
id: string;
|
@@ -11551,7 +13885,10 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
11551
13885
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
11552
13886
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
11553
13887
|
hideLabel?: boolean | undefined;
|
11554
|
-
defaultValue?: string |
|
13888
|
+
defaultValue?: string | {
|
13889
|
+
start: string;
|
13890
|
+
end: string;
|
13891
|
+
} | undefined;
|
11555
13892
|
configuration?: {
|
11556
13893
|
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
11557
13894
|
} | undefined;
|
@@ -11650,7 +13987,7 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
11650
13987
|
hideLabel?: boolean | undefined;
|
11651
13988
|
defaultValue?: {
|
11652
13989
|
type: string;
|
11653
|
-
|
13990
|
+
path: string;
|
11654
13991
|
originalFilename: string;
|
11655
13992
|
} | undefined;
|
11656
13993
|
} | {
|
@@ -11753,6 +14090,37 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
11753
14090
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
11754
14091
|
hideLabel?: boolean | undefined;
|
11755
14092
|
defaultValue?: string | undefined;
|
14093
|
+
} | {
|
14094
|
+
type: "SELECT_DATE_RANGE";
|
14095
|
+
id: string;
|
14096
|
+
options: {
|
14097
|
+
value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
14098
|
+
label: import("./TranslationConfig").TranslationConfig;
|
14099
|
+
}[];
|
14100
|
+
label: import("./TranslationConfig").TranslationConfig;
|
14101
|
+
parent?: {
|
14102
|
+
$$field: string;
|
14103
|
+
} | undefined;
|
14104
|
+
validation?: {
|
14105
|
+
message: import("./TranslationConfig").TranslationConfig;
|
14106
|
+
validator: import(".").JSONSchema;
|
14107
|
+
}[] | undefined;
|
14108
|
+
required?: boolean | undefined;
|
14109
|
+
conditionals?: ({
|
14110
|
+
type: "SHOW";
|
14111
|
+
conditional: import(".").JSONSchema;
|
14112
|
+
} | {
|
14113
|
+
type: "ENABLE";
|
14114
|
+
conditional: import(".").JSONSchema;
|
14115
|
+
} | {
|
14116
|
+
type: "DISPLAY_ON_REVIEW";
|
14117
|
+
conditional: import(".").JSONSchema;
|
14118
|
+
})[] | undefined;
|
14119
|
+
secured?: boolean | undefined;
|
14120
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
14121
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
14122
|
+
hideLabel?: boolean | undefined;
|
14123
|
+
defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
|
11756
14124
|
} | {
|
11757
14125
|
type: "NAME";
|
11758
14126
|
id: string;
|
@@ -11787,6 +14155,8 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
11787
14155
|
maxLength?: number | undefined;
|
11788
14156
|
prefix?: import("./TranslationConfig").TranslationConfig | undefined;
|
11789
14157
|
postfix?: import("./TranslationConfig").TranslationConfig | undefined;
|
14158
|
+
includeMiddlename?: boolean | undefined;
|
14159
|
+
searchMode?: boolean | undefined;
|
11790
14160
|
} | undefined;
|
11791
14161
|
} | {
|
11792
14162
|
type: "PHONE";
|
@@ -11956,6 +14326,9 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
11956
14326
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
11957
14327
|
hideLabel?: boolean | undefined;
|
11958
14328
|
defaultValue?: string | undefined;
|
14329
|
+
configuration?: {
|
14330
|
+
searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
|
14331
|
+
} | undefined;
|
11959
14332
|
} | {
|
11960
14333
|
type: "FILE_WITH_OPTIONS";
|
11961
14334
|
id: string;
|
@@ -11993,7 +14366,7 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
11993
14366
|
defaultValue?: {
|
11994
14367
|
type: string;
|
11995
14368
|
option: string;
|
11996
|
-
|
14369
|
+
path: string;
|
11997
14370
|
originalFilename: string;
|
11998
14371
|
}[] | undefined;
|
11999
14372
|
} | {
|
@@ -12105,6 +14478,9 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
12105
14478
|
addressLine3?: string | undefined;
|
12106
14479
|
postcodeOrZip?: string | undefined;
|
12107
14480
|
} | undefined;
|
14481
|
+
configuration?: {
|
14482
|
+
searchMode?: boolean | undefined;
|
14483
|
+
} | undefined;
|
12108
14484
|
} | {
|
12109
14485
|
type: "DATA";
|
12110
14486
|
id: string;
|
@@ -12391,7 +14767,10 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
12391
14767
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
12392
14768
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
12393
14769
|
hideLabel?: boolean | undefined;
|
12394
|
-
defaultValue?: string |
|
14770
|
+
defaultValue?: string | {
|
14771
|
+
start: string;
|
14772
|
+
end: string;
|
14773
|
+
} | undefined;
|
12395
14774
|
configuration?: {
|
12396
14775
|
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
12397
14776
|
} | undefined;
|
@@ -12490,7 +14869,7 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
12490
14869
|
hideLabel?: boolean | undefined;
|
12491
14870
|
defaultValue?: {
|
12492
14871
|
type: string;
|
12493
|
-
|
14872
|
+
path: string;
|
12494
14873
|
originalFilename: string;
|
12495
14874
|
} | undefined;
|
12496
14875
|
} | {
|
@@ -12593,6 +14972,37 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
12593
14972
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
12594
14973
|
hideLabel?: boolean | undefined;
|
12595
14974
|
defaultValue?: string | undefined;
|
14975
|
+
} | {
|
14976
|
+
type: "SELECT_DATE_RANGE";
|
14977
|
+
id: string;
|
14978
|
+
options: {
|
14979
|
+
value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
14980
|
+
label: import("./TranslationConfig").TranslationConfig;
|
14981
|
+
}[];
|
14982
|
+
label: import("./TranslationConfig").TranslationConfig;
|
14983
|
+
parent?: {
|
14984
|
+
$$field: string;
|
14985
|
+
} | undefined;
|
14986
|
+
validation?: {
|
14987
|
+
message: import("./TranslationConfig").TranslationConfig;
|
14988
|
+
validator: import(".").JSONSchema;
|
14989
|
+
}[] | undefined;
|
14990
|
+
required?: boolean | undefined;
|
14991
|
+
conditionals?: ({
|
14992
|
+
type: "SHOW";
|
14993
|
+
conditional: import(".").JSONSchema;
|
14994
|
+
} | {
|
14995
|
+
type: "ENABLE";
|
14996
|
+
conditional: import(".").JSONSchema;
|
14997
|
+
} | {
|
14998
|
+
type: "DISPLAY_ON_REVIEW";
|
14999
|
+
conditional: import(".").JSONSchema;
|
15000
|
+
})[] | undefined;
|
15001
|
+
secured?: boolean | undefined;
|
15002
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
15003
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
15004
|
+
hideLabel?: boolean | undefined;
|
15005
|
+
defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
|
12596
15006
|
} | {
|
12597
15007
|
type: "NAME";
|
12598
15008
|
id: string;
|
@@ -12627,6 +15037,8 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
12627
15037
|
maxLength?: number | undefined;
|
12628
15038
|
prefix?: import("./TranslationConfig").TranslationConfig | undefined;
|
12629
15039
|
postfix?: import("./TranslationConfig").TranslationConfig | undefined;
|
15040
|
+
includeMiddlename?: boolean | undefined;
|
15041
|
+
searchMode?: boolean | undefined;
|
12630
15042
|
} | undefined;
|
12631
15043
|
} | {
|
12632
15044
|
type: "PHONE";
|
@@ -12796,6 +15208,9 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
12796
15208
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
12797
15209
|
hideLabel?: boolean | undefined;
|
12798
15210
|
defaultValue?: string | undefined;
|
15211
|
+
configuration?: {
|
15212
|
+
searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
|
15213
|
+
} | undefined;
|
12799
15214
|
} | {
|
12800
15215
|
type: "FILE_WITH_OPTIONS";
|
12801
15216
|
id: string;
|
@@ -12833,7 +15248,7 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
12833
15248
|
defaultValue?: {
|
12834
15249
|
type: string;
|
12835
15250
|
option: string;
|
12836
|
-
|
15251
|
+
path: string;
|
12837
15252
|
originalFilename: string;
|
12838
15253
|
}[] | undefined;
|
12839
15254
|
} | {
|
@@ -12945,6 +15360,9 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
12945
15360
|
addressLine3?: string | undefined;
|
12946
15361
|
postcodeOrZip?: string | undefined;
|
12947
15362
|
} | undefined;
|
15363
|
+
configuration?: {
|
15364
|
+
searchMode?: boolean | undefined;
|
15365
|
+
} | undefined;
|
12948
15366
|
} | {
|
12949
15367
|
type: "DATA";
|
12950
15368
|
id: string;
|
@@ -13242,7 +15660,10 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
13242
15660
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
13243
15661
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
13244
15662
|
hideLabel?: boolean | undefined;
|
13245
|
-
defaultValue?: string |
|
15663
|
+
defaultValue?: string | {
|
15664
|
+
start: string;
|
15665
|
+
end: string;
|
15666
|
+
} | undefined;
|
13246
15667
|
configuration?: {
|
13247
15668
|
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
13248
15669
|
} | undefined;
|
@@ -13341,7 +15762,7 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
13341
15762
|
hideLabel?: boolean | undefined;
|
13342
15763
|
defaultValue?: {
|
13343
15764
|
type: string;
|
13344
|
-
|
15765
|
+
path: string;
|
13345
15766
|
originalFilename: string;
|
13346
15767
|
} | undefined;
|
13347
15768
|
} | {
|
@@ -13444,6 +15865,37 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
13444
15865
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
13445
15866
|
hideLabel?: boolean | undefined;
|
13446
15867
|
defaultValue?: string | undefined;
|
15868
|
+
} | {
|
15869
|
+
type: "SELECT_DATE_RANGE";
|
15870
|
+
id: string;
|
15871
|
+
options: {
|
15872
|
+
value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
15873
|
+
label: import("./TranslationConfig").TranslationConfig;
|
15874
|
+
}[];
|
15875
|
+
label: import("./TranslationConfig").TranslationConfig;
|
15876
|
+
parent?: {
|
15877
|
+
$$field: string;
|
15878
|
+
} | undefined;
|
15879
|
+
validation?: {
|
15880
|
+
message: import("./TranslationConfig").TranslationConfig;
|
15881
|
+
validator: import(".").JSONSchema;
|
15882
|
+
}[] | undefined;
|
15883
|
+
required?: boolean | undefined;
|
15884
|
+
conditionals?: ({
|
15885
|
+
type: "SHOW";
|
15886
|
+
conditional: import(".").JSONSchema;
|
15887
|
+
} | {
|
15888
|
+
type: "ENABLE";
|
15889
|
+
conditional: import(".").JSONSchema;
|
15890
|
+
} | {
|
15891
|
+
type: "DISPLAY_ON_REVIEW";
|
15892
|
+
conditional: import(".").JSONSchema;
|
15893
|
+
})[] | undefined;
|
15894
|
+
secured?: boolean | undefined;
|
15895
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
15896
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
15897
|
+
hideLabel?: boolean | undefined;
|
15898
|
+
defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
|
13447
15899
|
} | {
|
13448
15900
|
type: "NAME";
|
13449
15901
|
id: string;
|
@@ -13478,6 +15930,8 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
13478
15930
|
maxLength?: number | undefined;
|
13479
15931
|
prefix?: import("./TranslationConfig").TranslationConfig | undefined;
|
13480
15932
|
postfix?: import("./TranslationConfig").TranslationConfig | undefined;
|
15933
|
+
includeMiddlename?: boolean | undefined;
|
15934
|
+
searchMode?: boolean | undefined;
|
13481
15935
|
} | undefined;
|
13482
15936
|
} | {
|
13483
15937
|
type: "PHONE";
|
@@ -13647,6 +16101,9 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
13647
16101
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
13648
16102
|
hideLabel?: boolean | undefined;
|
13649
16103
|
defaultValue?: string | undefined;
|
16104
|
+
configuration?: {
|
16105
|
+
searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
|
16106
|
+
} | undefined;
|
13650
16107
|
} | {
|
13651
16108
|
type: "FILE_WITH_OPTIONS";
|
13652
16109
|
id: string;
|
@@ -13684,7 +16141,7 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
13684
16141
|
defaultValue?: {
|
13685
16142
|
type: string;
|
13686
16143
|
option: string;
|
13687
|
-
|
16144
|
+
path: string;
|
13688
16145
|
originalFilename: string;
|
13689
16146
|
}[] | undefined;
|
13690
16147
|
} | {
|
@@ -13796,6 +16253,9 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
13796
16253
|
addressLine3?: string | undefined;
|
13797
16254
|
postcodeOrZip?: string | undefined;
|
13798
16255
|
} | undefined;
|
16256
|
+
configuration?: {
|
16257
|
+
searchMode?: boolean | undefined;
|
16258
|
+
} | undefined;
|
13799
16259
|
} | {
|
13800
16260
|
type: "DATA";
|
13801
16261
|
id: string;
|
@@ -13911,11 +16371,13 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
13911
16371
|
message: import("./TranslationConfig").TranslationConfig;
|
13912
16372
|
validator: import(".").JSONSchema;
|
13913
16373
|
}[] | undefined;
|
16374
|
+
alternateFieldIds?: string[] | undefined;
|
16375
|
+
excludeInSearchQuery?: boolean | undefined;
|
13914
16376
|
} | {
|
13915
16377
|
config: {
|
13916
16378
|
type: "exact" | "fuzzy" | "range";
|
13917
16379
|
};
|
13918
|
-
fieldId: "status" | "updatedAt" | "trackingId" | "
|
16380
|
+
fieldId: "status" | "updatedAt" | "trackingId" | "legalStatuses.REGISTERED.acceptedAt" | "legalStatuses.REGISTERED.createdAtLocation";
|
13919
16381
|
fieldType: "event";
|
13920
16382
|
options?: {
|
13921
16383
|
value: string;
|
@@ -13943,4 +16405,8 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
13943
16405
|
} | undefined;
|
13944
16406
|
fallbackTitle?: import("./TranslationConfig").TranslationConfig | undefined;
|
13945
16407
|
};
|
16408
|
+
export declare function timePeriodToDateRange(value: SelectDateRangeValue): {
|
16409
|
+
startDate: string;
|
16410
|
+
endDate: string;
|
16411
|
+
};
|
13946
16412
|
//# sourceMappingURL=utils.d.ts.map
|