@objectstack/plugin-approvals 12.2.0 → 12.4.0
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/.turbo/turbo-build.log +6 -6
- package/CHANGELOG.md +22 -0
- package/dist/index.d.mts +628 -289
- package/dist/index.d.ts +628 -289
- package/package.json +9 -9
package/dist/index.d.mts
CHANGED
|
@@ -59,6 +59,23 @@ declare const SysApprovalRequest: Omit<{
|
|
|
59
59
|
value: string;
|
|
60
60
|
color?: string | undefined;
|
|
61
61
|
default?: boolean | undefined;
|
|
62
|
+
visibleWhen?: {
|
|
63
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
64
|
+
source?: string | undefined;
|
|
65
|
+
ast?: unknown;
|
|
66
|
+
meta?: {
|
|
67
|
+
rationale?: string | undefined;
|
|
68
|
+
generatedBy?: string | undefined;
|
|
69
|
+
} | undefined;
|
|
70
|
+
} | {
|
|
71
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
72
|
+
source?: string | undefined;
|
|
73
|
+
ast?: unknown;
|
|
74
|
+
meta?: {
|
|
75
|
+
rationale?: string | undefined;
|
|
76
|
+
generatedBy?: string | undefined;
|
|
77
|
+
} | undefined;
|
|
78
|
+
} | undefined;
|
|
62
79
|
}[] | undefined;
|
|
63
80
|
reference?: string | undefined;
|
|
64
81
|
referenceFilters?: string[] | undefined;
|
|
@@ -869,6 +886,15 @@ declare const SysApprovalRequest: Omit<{
|
|
|
869
886
|
value: string;
|
|
870
887
|
color?: string | undefined;
|
|
871
888
|
default?: boolean | undefined;
|
|
889
|
+
visibleWhen?: {
|
|
890
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
891
|
+
source?: string | undefined;
|
|
892
|
+
ast?: unknown;
|
|
893
|
+
meta?: {
|
|
894
|
+
rationale?: string | undefined;
|
|
895
|
+
generatedBy?: string | undefined;
|
|
896
|
+
} | undefined;
|
|
897
|
+
} | undefined;
|
|
872
898
|
}[] | undefined;
|
|
873
899
|
readonly description?: string | undefined;
|
|
874
900
|
readonly label?: string | undefined;
|
|
@@ -886,6 +912,15 @@ declare const SysApprovalRequest: Omit<{
|
|
|
886
912
|
readonly system?: boolean | undefined;
|
|
887
913
|
readonly min?: number | undefined;
|
|
888
914
|
readonly max?: number | undefined;
|
|
915
|
+
readonly visibleWhen?: {
|
|
916
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
917
|
+
source?: string | undefined;
|
|
918
|
+
ast?: unknown;
|
|
919
|
+
meta?: {
|
|
920
|
+
rationale?: string | undefined;
|
|
921
|
+
generatedBy?: string | undefined;
|
|
922
|
+
} | undefined;
|
|
923
|
+
} | undefined;
|
|
889
924
|
readonly dimensions?: number | undefined;
|
|
890
925
|
readonly columnName?: string | undefined;
|
|
891
926
|
readonly searchable?: boolean | undefined;
|
|
@@ -993,15 +1028,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
993
1028
|
maxVersions?: number | undefined;
|
|
994
1029
|
} | undefined;
|
|
995
1030
|
readonly trackHistory?: boolean | undefined;
|
|
996
|
-
readonly visibleWhen?: {
|
|
997
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
998
|
-
source?: string | undefined;
|
|
999
|
-
ast?: unknown;
|
|
1000
|
-
meta?: {
|
|
1001
|
-
rationale?: string | undefined;
|
|
1002
|
-
generatedBy?: string | undefined;
|
|
1003
|
-
} | undefined;
|
|
1004
|
-
} | undefined;
|
|
1005
1031
|
readonly readonlyWhen?: {
|
|
1006
1032
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1007
1033
|
source?: string | undefined;
|
|
@@ -1043,6 +1069,15 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1043
1069
|
value: string;
|
|
1044
1070
|
color?: string | undefined;
|
|
1045
1071
|
default?: boolean | undefined;
|
|
1072
|
+
visibleWhen?: {
|
|
1073
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1074
|
+
source?: string | undefined;
|
|
1075
|
+
ast?: unknown;
|
|
1076
|
+
meta?: {
|
|
1077
|
+
rationale?: string | undefined;
|
|
1078
|
+
generatedBy?: string | undefined;
|
|
1079
|
+
} | undefined;
|
|
1080
|
+
} | undefined;
|
|
1046
1081
|
}[] | undefined;
|
|
1047
1082
|
readonly description?: string | undefined;
|
|
1048
1083
|
readonly label?: string | undefined;
|
|
@@ -1060,6 +1095,15 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1060
1095
|
readonly system?: boolean | undefined;
|
|
1061
1096
|
readonly min?: number | undefined;
|
|
1062
1097
|
readonly max?: number | undefined;
|
|
1098
|
+
readonly visibleWhen?: {
|
|
1099
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1100
|
+
source?: string | undefined;
|
|
1101
|
+
ast?: unknown;
|
|
1102
|
+
meta?: {
|
|
1103
|
+
rationale?: string | undefined;
|
|
1104
|
+
generatedBy?: string | undefined;
|
|
1105
|
+
} | undefined;
|
|
1106
|
+
} | undefined;
|
|
1063
1107
|
readonly dimensions?: number | undefined;
|
|
1064
1108
|
readonly columnName?: string | undefined;
|
|
1065
1109
|
readonly searchable?: boolean | undefined;
|
|
@@ -1167,15 +1211,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1167
1211
|
maxVersions?: number | undefined;
|
|
1168
1212
|
} | undefined;
|
|
1169
1213
|
readonly trackHistory?: boolean | undefined;
|
|
1170
|
-
readonly visibleWhen?: {
|
|
1171
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
1172
|
-
source?: string | undefined;
|
|
1173
|
-
ast?: unknown;
|
|
1174
|
-
meta?: {
|
|
1175
|
-
rationale?: string | undefined;
|
|
1176
|
-
generatedBy?: string | undefined;
|
|
1177
|
-
} | undefined;
|
|
1178
|
-
} | undefined;
|
|
1179
1214
|
readonly readonlyWhen?: {
|
|
1180
1215
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1181
1216
|
source?: string | undefined;
|
|
@@ -1217,6 +1252,15 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1217
1252
|
value: string;
|
|
1218
1253
|
color?: string | undefined;
|
|
1219
1254
|
default?: boolean | undefined;
|
|
1255
|
+
visibleWhen?: {
|
|
1256
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1257
|
+
source?: string | undefined;
|
|
1258
|
+
ast?: unknown;
|
|
1259
|
+
meta?: {
|
|
1260
|
+
rationale?: string | undefined;
|
|
1261
|
+
generatedBy?: string | undefined;
|
|
1262
|
+
} | undefined;
|
|
1263
|
+
} | undefined;
|
|
1220
1264
|
}[] | undefined;
|
|
1221
1265
|
readonly description?: string | undefined;
|
|
1222
1266
|
readonly label?: string | undefined;
|
|
@@ -1234,6 +1278,15 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1234
1278
|
readonly system?: boolean | undefined;
|
|
1235
1279
|
readonly min?: number | undefined;
|
|
1236
1280
|
readonly max?: number | undefined;
|
|
1281
|
+
readonly visibleWhen?: {
|
|
1282
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1283
|
+
source?: string | undefined;
|
|
1284
|
+
ast?: unknown;
|
|
1285
|
+
meta?: {
|
|
1286
|
+
rationale?: string | undefined;
|
|
1287
|
+
generatedBy?: string | undefined;
|
|
1288
|
+
} | undefined;
|
|
1289
|
+
} | undefined;
|
|
1237
1290
|
readonly dimensions?: number | undefined;
|
|
1238
1291
|
readonly columnName?: string | undefined;
|
|
1239
1292
|
readonly searchable?: boolean | undefined;
|
|
@@ -1341,15 +1394,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1341
1394
|
maxVersions?: number | undefined;
|
|
1342
1395
|
} | undefined;
|
|
1343
1396
|
readonly trackHistory?: boolean | undefined;
|
|
1344
|
-
readonly visibleWhen?: {
|
|
1345
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
1346
|
-
source?: string | undefined;
|
|
1347
|
-
ast?: unknown;
|
|
1348
|
-
meta?: {
|
|
1349
|
-
rationale?: string | undefined;
|
|
1350
|
-
generatedBy?: string | undefined;
|
|
1351
|
-
} | undefined;
|
|
1352
|
-
} | undefined;
|
|
1353
1397
|
readonly readonlyWhen?: {
|
|
1354
1398
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1355
1399
|
source?: string | undefined;
|
|
@@ -1391,6 +1435,15 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1391
1435
|
value: string;
|
|
1392
1436
|
color?: string | undefined;
|
|
1393
1437
|
default?: boolean | undefined;
|
|
1438
|
+
visibleWhen?: {
|
|
1439
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1440
|
+
source?: string | undefined;
|
|
1441
|
+
ast?: unknown;
|
|
1442
|
+
meta?: {
|
|
1443
|
+
rationale?: string | undefined;
|
|
1444
|
+
generatedBy?: string | undefined;
|
|
1445
|
+
} | undefined;
|
|
1446
|
+
} | undefined;
|
|
1394
1447
|
}[] | undefined;
|
|
1395
1448
|
readonly description?: string | undefined;
|
|
1396
1449
|
readonly label?: string | undefined;
|
|
@@ -1408,6 +1461,15 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1408
1461
|
readonly system?: boolean | undefined;
|
|
1409
1462
|
readonly min?: number | undefined;
|
|
1410
1463
|
readonly max?: number | undefined;
|
|
1464
|
+
readonly visibleWhen?: {
|
|
1465
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1466
|
+
source?: string | undefined;
|
|
1467
|
+
ast?: unknown;
|
|
1468
|
+
meta?: {
|
|
1469
|
+
rationale?: string | undefined;
|
|
1470
|
+
generatedBy?: string | undefined;
|
|
1471
|
+
} | undefined;
|
|
1472
|
+
} | undefined;
|
|
1411
1473
|
readonly dimensions?: number | undefined;
|
|
1412
1474
|
readonly columnName?: string | undefined;
|
|
1413
1475
|
readonly searchable?: boolean | undefined;
|
|
@@ -1515,15 +1577,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1515
1577
|
maxVersions?: number | undefined;
|
|
1516
1578
|
} | undefined;
|
|
1517
1579
|
readonly trackHistory?: boolean | undefined;
|
|
1518
|
-
readonly visibleWhen?: {
|
|
1519
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
1520
|
-
source?: string | undefined;
|
|
1521
|
-
ast?: unknown;
|
|
1522
|
-
meta?: {
|
|
1523
|
-
rationale?: string | undefined;
|
|
1524
|
-
generatedBy?: string | undefined;
|
|
1525
|
-
} | undefined;
|
|
1526
|
-
} | undefined;
|
|
1527
1580
|
readonly readonlyWhen?: {
|
|
1528
1581
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1529
1582
|
source?: string | undefined;
|
|
@@ -1565,6 +1618,15 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1565
1618
|
value: string;
|
|
1566
1619
|
color?: string | undefined;
|
|
1567
1620
|
default?: boolean | undefined;
|
|
1621
|
+
visibleWhen?: {
|
|
1622
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1623
|
+
source?: string | undefined;
|
|
1624
|
+
ast?: unknown;
|
|
1625
|
+
meta?: {
|
|
1626
|
+
rationale?: string | undefined;
|
|
1627
|
+
generatedBy?: string | undefined;
|
|
1628
|
+
} | undefined;
|
|
1629
|
+
} | undefined;
|
|
1568
1630
|
}[] | undefined;
|
|
1569
1631
|
readonly description?: string | undefined;
|
|
1570
1632
|
readonly label?: string | undefined;
|
|
@@ -1582,6 +1644,15 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1582
1644
|
readonly system?: boolean | undefined;
|
|
1583
1645
|
readonly min?: number | undefined;
|
|
1584
1646
|
readonly max?: number | undefined;
|
|
1647
|
+
readonly visibleWhen?: {
|
|
1648
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1649
|
+
source?: string | undefined;
|
|
1650
|
+
ast?: unknown;
|
|
1651
|
+
meta?: {
|
|
1652
|
+
rationale?: string | undefined;
|
|
1653
|
+
generatedBy?: string | undefined;
|
|
1654
|
+
} | undefined;
|
|
1655
|
+
} | undefined;
|
|
1585
1656
|
readonly dimensions?: number | undefined;
|
|
1586
1657
|
readonly columnName?: string | undefined;
|
|
1587
1658
|
readonly searchable?: boolean | undefined;
|
|
@@ -1689,15 +1760,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1689
1760
|
maxVersions?: number | undefined;
|
|
1690
1761
|
} | undefined;
|
|
1691
1762
|
readonly trackHistory?: boolean | undefined;
|
|
1692
|
-
readonly visibleWhen?: {
|
|
1693
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
1694
|
-
source?: string | undefined;
|
|
1695
|
-
ast?: unknown;
|
|
1696
|
-
meta?: {
|
|
1697
|
-
rationale?: string | undefined;
|
|
1698
|
-
generatedBy?: string | undefined;
|
|
1699
|
-
} | undefined;
|
|
1700
|
-
} | undefined;
|
|
1701
1763
|
readonly readonlyWhen?: {
|
|
1702
1764
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1703
1765
|
source?: string | undefined;
|
|
@@ -1739,6 +1801,15 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1739
1801
|
value: string;
|
|
1740
1802
|
color?: string | undefined;
|
|
1741
1803
|
default?: boolean | undefined;
|
|
1804
|
+
visibleWhen?: {
|
|
1805
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1806
|
+
source?: string | undefined;
|
|
1807
|
+
ast?: unknown;
|
|
1808
|
+
meta?: {
|
|
1809
|
+
rationale?: string | undefined;
|
|
1810
|
+
generatedBy?: string | undefined;
|
|
1811
|
+
} | undefined;
|
|
1812
|
+
} | undefined;
|
|
1742
1813
|
}[] | undefined;
|
|
1743
1814
|
readonly description?: string | undefined;
|
|
1744
1815
|
readonly label?: string | undefined;
|
|
@@ -1756,6 +1827,15 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1756
1827
|
readonly system?: boolean | undefined;
|
|
1757
1828
|
readonly min?: number | undefined;
|
|
1758
1829
|
readonly max?: number | undefined;
|
|
1830
|
+
readonly visibleWhen?: {
|
|
1831
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1832
|
+
source?: string | undefined;
|
|
1833
|
+
ast?: unknown;
|
|
1834
|
+
meta?: {
|
|
1835
|
+
rationale?: string | undefined;
|
|
1836
|
+
generatedBy?: string | undefined;
|
|
1837
|
+
} | undefined;
|
|
1838
|
+
} | undefined;
|
|
1759
1839
|
readonly dimensions?: number | undefined;
|
|
1760
1840
|
readonly columnName?: string | undefined;
|
|
1761
1841
|
readonly searchable?: boolean | undefined;
|
|
@@ -1863,15 +1943,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1863
1943
|
maxVersions?: number | undefined;
|
|
1864
1944
|
} | undefined;
|
|
1865
1945
|
readonly trackHistory?: boolean | undefined;
|
|
1866
|
-
readonly visibleWhen?: {
|
|
1867
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
1868
|
-
source?: string | undefined;
|
|
1869
|
-
ast?: unknown;
|
|
1870
|
-
meta?: {
|
|
1871
|
-
rationale?: string | undefined;
|
|
1872
|
-
generatedBy?: string | undefined;
|
|
1873
|
-
} | undefined;
|
|
1874
|
-
} | undefined;
|
|
1875
1946
|
readonly readonlyWhen?: {
|
|
1876
1947
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1877
1948
|
source?: string | undefined;
|
|
@@ -1913,6 +1984,15 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1913
1984
|
value: string;
|
|
1914
1985
|
color?: string | undefined;
|
|
1915
1986
|
default?: boolean | undefined;
|
|
1987
|
+
visibleWhen?: {
|
|
1988
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1989
|
+
source?: string | undefined;
|
|
1990
|
+
ast?: unknown;
|
|
1991
|
+
meta?: {
|
|
1992
|
+
rationale?: string | undefined;
|
|
1993
|
+
generatedBy?: string | undefined;
|
|
1994
|
+
} | undefined;
|
|
1995
|
+
} | undefined;
|
|
1916
1996
|
}[] | undefined;
|
|
1917
1997
|
readonly description?: string | undefined;
|
|
1918
1998
|
readonly label?: string | undefined;
|
|
@@ -1930,6 +2010,15 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1930
2010
|
readonly system?: boolean | undefined;
|
|
1931
2011
|
readonly min?: number | undefined;
|
|
1932
2012
|
readonly max?: number | undefined;
|
|
2013
|
+
readonly visibleWhen?: {
|
|
2014
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2015
|
+
source?: string | undefined;
|
|
2016
|
+
ast?: unknown;
|
|
2017
|
+
meta?: {
|
|
2018
|
+
rationale?: string | undefined;
|
|
2019
|
+
generatedBy?: string | undefined;
|
|
2020
|
+
} | undefined;
|
|
2021
|
+
} | undefined;
|
|
1933
2022
|
readonly dimensions?: number | undefined;
|
|
1934
2023
|
readonly columnName?: string | undefined;
|
|
1935
2024
|
readonly searchable?: boolean | undefined;
|
|
@@ -2037,15 +2126,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2037
2126
|
maxVersions?: number | undefined;
|
|
2038
2127
|
} | undefined;
|
|
2039
2128
|
readonly trackHistory?: boolean | undefined;
|
|
2040
|
-
readonly visibleWhen?: {
|
|
2041
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
2042
|
-
source?: string | undefined;
|
|
2043
|
-
ast?: unknown;
|
|
2044
|
-
meta?: {
|
|
2045
|
-
rationale?: string | undefined;
|
|
2046
|
-
generatedBy?: string | undefined;
|
|
2047
|
-
} | undefined;
|
|
2048
|
-
} | undefined;
|
|
2049
2129
|
readonly readonlyWhen?: {
|
|
2050
2130
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2051
2131
|
source?: string | undefined;
|
|
@@ -2087,6 +2167,15 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2087
2167
|
value: string;
|
|
2088
2168
|
color?: string | undefined;
|
|
2089
2169
|
default?: boolean | undefined;
|
|
2170
|
+
visibleWhen?: {
|
|
2171
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2172
|
+
source?: string | undefined;
|
|
2173
|
+
ast?: unknown;
|
|
2174
|
+
meta?: {
|
|
2175
|
+
rationale?: string | undefined;
|
|
2176
|
+
generatedBy?: string | undefined;
|
|
2177
|
+
} | undefined;
|
|
2178
|
+
} | undefined;
|
|
2090
2179
|
}[];
|
|
2091
2180
|
readonly description?: string | undefined;
|
|
2092
2181
|
readonly label?: string | undefined;
|
|
@@ -2104,6 +2193,15 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2104
2193
|
readonly system?: boolean | undefined;
|
|
2105
2194
|
readonly min?: number | undefined;
|
|
2106
2195
|
readonly max?: number | undefined;
|
|
2196
|
+
readonly visibleWhen?: {
|
|
2197
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2198
|
+
source?: string | undefined;
|
|
2199
|
+
ast?: unknown;
|
|
2200
|
+
meta?: {
|
|
2201
|
+
rationale?: string | undefined;
|
|
2202
|
+
generatedBy?: string | undefined;
|
|
2203
|
+
} | undefined;
|
|
2204
|
+
} | undefined;
|
|
2107
2205
|
readonly dimensions?: number | undefined;
|
|
2108
2206
|
readonly columnName?: string | undefined;
|
|
2109
2207
|
readonly searchable?: boolean | undefined;
|
|
@@ -2211,15 +2309,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2211
2309
|
maxVersions?: number | undefined;
|
|
2212
2310
|
} | undefined;
|
|
2213
2311
|
readonly trackHistory?: boolean | undefined;
|
|
2214
|
-
readonly visibleWhen?: {
|
|
2215
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
2216
|
-
source?: string | undefined;
|
|
2217
|
-
ast?: unknown;
|
|
2218
|
-
meta?: {
|
|
2219
|
-
rationale?: string | undefined;
|
|
2220
|
-
generatedBy?: string | undefined;
|
|
2221
|
-
} | undefined;
|
|
2222
|
-
} | undefined;
|
|
2223
2312
|
readonly readonlyWhen?: {
|
|
2224
2313
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2225
2314
|
source?: string | undefined;
|
|
@@ -2261,6 +2350,15 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2261
2350
|
value: string;
|
|
2262
2351
|
color?: string | undefined;
|
|
2263
2352
|
default?: boolean | undefined;
|
|
2353
|
+
visibleWhen?: {
|
|
2354
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2355
|
+
source?: string | undefined;
|
|
2356
|
+
ast?: unknown;
|
|
2357
|
+
meta?: {
|
|
2358
|
+
rationale?: string | undefined;
|
|
2359
|
+
generatedBy?: string | undefined;
|
|
2360
|
+
} | undefined;
|
|
2361
|
+
} | undefined;
|
|
2264
2362
|
}[] | undefined;
|
|
2265
2363
|
readonly description?: string | undefined;
|
|
2266
2364
|
readonly label?: string | undefined;
|
|
@@ -2278,6 +2376,15 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2278
2376
|
readonly system?: boolean | undefined;
|
|
2279
2377
|
readonly min?: number | undefined;
|
|
2280
2378
|
readonly max?: number | undefined;
|
|
2379
|
+
readonly visibleWhen?: {
|
|
2380
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2381
|
+
source?: string | undefined;
|
|
2382
|
+
ast?: unknown;
|
|
2383
|
+
meta?: {
|
|
2384
|
+
rationale?: string | undefined;
|
|
2385
|
+
generatedBy?: string | undefined;
|
|
2386
|
+
} | undefined;
|
|
2387
|
+
} | undefined;
|
|
2281
2388
|
readonly dimensions?: number | undefined;
|
|
2282
2389
|
readonly columnName?: string | undefined;
|
|
2283
2390
|
readonly searchable?: boolean | undefined;
|
|
@@ -2385,15 +2492,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2385
2492
|
maxVersions?: number | undefined;
|
|
2386
2493
|
} | undefined;
|
|
2387
2494
|
readonly trackHistory?: boolean | undefined;
|
|
2388
|
-
readonly visibleWhen?: {
|
|
2389
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
2390
|
-
source?: string | undefined;
|
|
2391
|
-
ast?: unknown;
|
|
2392
|
-
meta?: {
|
|
2393
|
-
rationale?: string | undefined;
|
|
2394
|
-
generatedBy?: string | undefined;
|
|
2395
|
-
} | undefined;
|
|
2396
|
-
} | undefined;
|
|
2397
2495
|
readonly readonlyWhen?: {
|
|
2398
2496
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2399
2497
|
source?: string | undefined;
|
|
@@ -2435,6 +2533,15 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2435
2533
|
value: string;
|
|
2436
2534
|
color?: string | undefined;
|
|
2437
2535
|
default?: boolean | undefined;
|
|
2536
|
+
visibleWhen?: {
|
|
2537
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2538
|
+
source?: string | undefined;
|
|
2539
|
+
ast?: unknown;
|
|
2540
|
+
meta?: {
|
|
2541
|
+
rationale?: string | undefined;
|
|
2542
|
+
generatedBy?: string | undefined;
|
|
2543
|
+
} | undefined;
|
|
2544
|
+
} | undefined;
|
|
2438
2545
|
}[] | undefined;
|
|
2439
2546
|
readonly description?: string | undefined;
|
|
2440
2547
|
readonly label?: string | undefined;
|
|
@@ -2452,6 +2559,15 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2452
2559
|
readonly system?: boolean | undefined;
|
|
2453
2560
|
readonly min?: number | undefined;
|
|
2454
2561
|
readonly max?: number | undefined;
|
|
2562
|
+
readonly visibleWhen?: {
|
|
2563
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2564
|
+
source?: string | undefined;
|
|
2565
|
+
ast?: unknown;
|
|
2566
|
+
meta?: {
|
|
2567
|
+
rationale?: string | undefined;
|
|
2568
|
+
generatedBy?: string | undefined;
|
|
2569
|
+
} | undefined;
|
|
2570
|
+
} | undefined;
|
|
2455
2571
|
readonly dimensions?: number | undefined;
|
|
2456
2572
|
readonly columnName?: string | undefined;
|
|
2457
2573
|
readonly searchable?: boolean | undefined;
|
|
@@ -2559,15 +2675,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2559
2675
|
maxVersions?: number | undefined;
|
|
2560
2676
|
} | undefined;
|
|
2561
2677
|
readonly trackHistory?: boolean | undefined;
|
|
2562
|
-
readonly visibleWhen?: {
|
|
2563
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
2564
|
-
source?: string | undefined;
|
|
2565
|
-
ast?: unknown;
|
|
2566
|
-
meta?: {
|
|
2567
|
-
rationale?: string | undefined;
|
|
2568
|
-
generatedBy?: string | undefined;
|
|
2569
|
-
} | undefined;
|
|
2570
|
-
} | undefined;
|
|
2571
2678
|
readonly readonlyWhen?: {
|
|
2572
2679
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2573
2680
|
source?: string | undefined;
|
|
@@ -2609,6 +2716,15 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2609
2716
|
value: string;
|
|
2610
2717
|
color?: string | undefined;
|
|
2611
2718
|
default?: boolean | undefined;
|
|
2719
|
+
visibleWhen?: {
|
|
2720
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2721
|
+
source?: string | undefined;
|
|
2722
|
+
ast?: unknown;
|
|
2723
|
+
meta?: {
|
|
2724
|
+
rationale?: string | undefined;
|
|
2725
|
+
generatedBy?: string | undefined;
|
|
2726
|
+
} | undefined;
|
|
2727
|
+
} | undefined;
|
|
2612
2728
|
}[] | undefined;
|
|
2613
2729
|
readonly description?: string | undefined;
|
|
2614
2730
|
readonly label?: string | undefined;
|
|
@@ -2626,6 +2742,15 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2626
2742
|
readonly system?: boolean | undefined;
|
|
2627
2743
|
readonly min?: number | undefined;
|
|
2628
2744
|
readonly max?: number | undefined;
|
|
2745
|
+
readonly visibleWhen?: {
|
|
2746
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2747
|
+
source?: string | undefined;
|
|
2748
|
+
ast?: unknown;
|
|
2749
|
+
meta?: {
|
|
2750
|
+
rationale?: string | undefined;
|
|
2751
|
+
generatedBy?: string | undefined;
|
|
2752
|
+
} | undefined;
|
|
2753
|
+
} | undefined;
|
|
2629
2754
|
readonly dimensions?: number | undefined;
|
|
2630
2755
|
readonly columnName?: string | undefined;
|
|
2631
2756
|
readonly searchable?: boolean | undefined;
|
|
@@ -2733,15 +2858,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2733
2858
|
maxVersions?: number | undefined;
|
|
2734
2859
|
} | undefined;
|
|
2735
2860
|
readonly trackHistory?: boolean | undefined;
|
|
2736
|
-
readonly visibleWhen?: {
|
|
2737
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
2738
|
-
source?: string | undefined;
|
|
2739
|
-
ast?: unknown;
|
|
2740
|
-
meta?: {
|
|
2741
|
-
rationale?: string | undefined;
|
|
2742
|
-
generatedBy?: string | undefined;
|
|
2743
|
-
} | undefined;
|
|
2744
|
-
} | undefined;
|
|
2745
2861
|
readonly readonlyWhen?: {
|
|
2746
2862
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2747
2863
|
source?: string | undefined;
|
|
@@ -2783,6 +2899,15 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2783
2899
|
value: string;
|
|
2784
2900
|
color?: string | undefined;
|
|
2785
2901
|
default?: boolean | undefined;
|
|
2902
|
+
visibleWhen?: {
|
|
2903
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2904
|
+
source?: string | undefined;
|
|
2905
|
+
ast?: unknown;
|
|
2906
|
+
meta?: {
|
|
2907
|
+
rationale?: string | undefined;
|
|
2908
|
+
generatedBy?: string | undefined;
|
|
2909
|
+
} | undefined;
|
|
2910
|
+
} | undefined;
|
|
2786
2911
|
}[] | undefined;
|
|
2787
2912
|
readonly description?: string | undefined;
|
|
2788
2913
|
readonly label?: string | undefined;
|
|
@@ -2800,6 +2925,15 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2800
2925
|
readonly system?: boolean | undefined;
|
|
2801
2926
|
readonly min?: number | undefined;
|
|
2802
2927
|
readonly max?: number | undefined;
|
|
2928
|
+
readonly visibleWhen?: {
|
|
2929
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2930
|
+
source?: string | undefined;
|
|
2931
|
+
ast?: unknown;
|
|
2932
|
+
meta?: {
|
|
2933
|
+
rationale?: string | undefined;
|
|
2934
|
+
generatedBy?: string | undefined;
|
|
2935
|
+
} | undefined;
|
|
2936
|
+
} | undefined;
|
|
2803
2937
|
readonly dimensions?: number | undefined;
|
|
2804
2938
|
readonly columnName?: string | undefined;
|
|
2805
2939
|
readonly searchable?: boolean | undefined;
|
|
@@ -2907,15 +3041,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2907
3041
|
maxVersions?: number | undefined;
|
|
2908
3042
|
} | undefined;
|
|
2909
3043
|
readonly trackHistory?: boolean | undefined;
|
|
2910
|
-
readonly visibleWhen?: {
|
|
2911
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
2912
|
-
source?: string | undefined;
|
|
2913
|
-
ast?: unknown;
|
|
2914
|
-
meta?: {
|
|
2915
|
-
rationale?: string | undefined;
|
|
2916
|
-
generatedBy?: string | undefined;
|
|
2917
|
-
} | undefined;
|
|
2918
|
-
} | undefined;
|
|
2919
3044
|
readonly readonlyWhen?: {
|
|
2920
3045
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2921
3046
|
source?: string | undefined;
|
|
@@ -2957,6 +3082,15 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2957
3082
|
value: string;
|
|
2958
3083
|
color?: string | undefined;
|
|
2959
3084
|
default?: boolean | undefined;
|
|
3085
|
+
visibleWhen?: {
|
|
3086
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3087
|
+
source?: string | undefined;
|
|
3088
|
+
ast?: unknown;
|
|
3089
|
+
meta?: {
|
|
3090
|
+
rationale?: string | undefined;
|
|
3091
|
+
generatedBy?: string | undefined;
|
|
3092
|
+
} | undefined;
|
|
3093
|
+
} | undefined;
|
|
2960
3094
|
}[] | undefined;
|
|
2961
3095
|
readonly description?: string | undefined;
|
|
2962
3096
|
readonly label?: string | undefined;
|
|
@@ -2974,6 +3108,15 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2974
3108
|
readonly system?: boolean | undefined;
|
|
2975
3109
|
readonly min?: number | undefined;
|
|
2976
3110
|
readonly max?: number | undefined;
|
|
3111
|
+
readonly visibleWhen?: {
|
|
3112
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3113
|
+
source?: string | undefined;
|
|
3114
|
+
ast?: unknown;
|
|
3115
|
+
meta?: {
|
|
3116
|
+
rationale?: string | undefined;
|
|
3117
|
+
generatedBy?: string | undefined;
|
|
3118
|
+
} | undefined;
|
|
3119
|
+
} | undefined;
|
|
2977
3120
|
readonly dimensions?: number | undefined;
|
|
2978
3121
|
readonly columnName?: string | undefined;
|
|
2979
3122
|
readonly searchable?: boolean | undefined;
|
|
@@ -3081,16 +3224,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3081
3224
|
maxVersions?: number | undefined;
|
|
3082
3225
|
} | undefined;
|
|
3083
3226
|
readonly trackHistory?: boolean | undefined;
|
|
3084
|
-
readonly
|
|
3085
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
3086
|
-
source?: string | undefined;
|
|
3087
|
-
ast?: unknown;
|
|
3088
|
-
meta?: {
|
|
3089
|
-
rationale?: string | undefined;
|
|
3090
|
-
generatedBy?: string | undefined;
|
|
3091
|
-
} | undefined;
|
|
3092
|
-
} | undefined;
|
|
3093
|
-
readonly readonlyWhen?: {
|
|
3227
|
+
readonly readonlyWhen?: {
|
|
3094
3228
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3095
3229
|
source?: string | undefined;
|
|
3096
3230
|
ast?: unknown;
|
|
@@ -3131,6 +3265,15 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3131
3265
|
value: string;
|
|
3132
3266
|
color?: string | undefined;
|
|
3133
3267
|
default?: boolean | undefined;
|
|
3268
|
+
visibleWhen?: {
|
|
3269
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3270
|
+
source?: string | undefined;
|
|
3271
|
+
ast?: unknown;
|
|
3272
|
+
meta?: {
|
|
3273
|
+
rationale?: string | undefined;
|
|
3274
|
+
generatedBy?: string | undefined;
|
|
3275
|
+
} | undefined;
|
|
3276
|
+
} | undefined;
|
|
3134
3277
|
}[] | undefined;
|
|
3135
3278
|
readonly description?: string | undefined;
|
|
3136
3279
|
readonly label?: string | undefined;
|
|
@@ -3148,6 +3291,15 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3148
3291
|
readonly system?: boolean | undefined;
|
|
3149
3292
|
readonly min?: number | undefined;
|
|
3150
3293
|
readonly max?: number | undefined;
|
|
3294
|
+
readonly visibleWhen?: {
|
|
3295
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3296
|
+
source?: string | undefined;
|
|
3297
|
+
ast?: unknown;
|
|
3298
|
+
meta?: {
|
|
3299
|
+
rationale?: string | undefined;
|
|
3300
|
+
generatedBy?: string | undefined;
|
|
3301
|
+
} | undefined;
|
|
3302
|
+
} | undefined;
|
|
3151
3303
|
readonly dimensions?: number | undefined;
|
|
3152
3304
|
readonly columnName?: string | undefined;
|
|
3153
3305
|
readonly searchable?: boolean | undefined;
|
|
@@ -3255,15 +3407,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3255
3407
|
maxVersions?: number | undefined;
|
|
3256
3408
|
} | undefined;
|
|
3257
3409
|
readonly trackHistory?: boolean | undefined;
|
|
3258
|
-
readonly visibleWhen?: {
|
|
3259
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
3260
|
-
source?: string | undefined;
|
|
3261
|
-
ast?: unknown;
|
|
3262
|
-
meta?: {
|
|
3263
|
-
rationale?: string | undefined;
|
|
3264
|
-
generatedBy?: string | undefined;
|
|
3265
|
-
} | undefined;
|
|
3266
|
-
} | undefined;
|
|
3267
3410
|
readonly readonlyWhen?: {
|
|
3268
3411
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3269
3412
|
source?: string | undefined;
|
|
@@ -3305,6 +3448,15 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3305
3448
|
value: string;
|
|
3306
3449
|
color?: string | undefined;
|
|
3307
3450
|
default?: boolean | undefined;
|
|
3451
|
+
visibleWhen?: {
|
|
3452
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3453
|
+
source?: string | undefined;
|
|
3454
|
+
ast?: unknown;
|
|
3455
|
+
meta?: {
|
|
3456
|
+
rationale?: string | undefined;
|
|
3457
|
+
generatedBy?: string | undefined;
|
|
3458
|
+
} | undefined;
|
|
3459
|
+
} | undefined;
|
|
3308
3460
|
}[] | undefined;
|
|
3309
3461
|
readonly description?: string | undefined;
|
|
3310
3462
|
readonly label?: string | undefined;
|
|
@@ -3322,6 +3474,15 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3322
3474
|
readonly system?: boolean | undefined;
|
|
3323
3475
|
readonly min?: number | undefined;
|
|
3324
3476
|
readonly max?: number | undefined;
|
|
3477
|
+
readonly visibleWhen?: {
|
|
3478
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3479
|
+
source?: string | undefined;
|
|
3480
|
+
ast?: unknown;
|
|
3481
|
+
meta?: {
|
|
3482
|
+
rationale?: string | undefined;
|
|
3483
|
+
generatedBy?: string | undefined;
|
|
3484
|
+
} | undefined;
|
|
3485
|
+
} | undefined;
|
|
3325
3486
|
readonly dimensions?: number | undefined;
|
|
3326
3487
|
readonly columnName?: string | undefined;
|
|
3327
3488
|
readonly searchable?: boolean | undefined;
|
|
@@ -3429,15 +3590,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3429
3590
|
maxVersions?: number | undefined;
|
|
3430
3591
|
} | undefined;
|
|
3431
3592
|
readonly trackHistory?: boolean | undefined;
|
|
3432
|
-
readonly visibleWhen?: {
|
|
3433
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
3434
|
-
source?: string | undefined;
|
|
3435
|
-
ast?: unknown;
|
|
3436
|
-
meta?: {
|
|
3437
|
-
rationale?: string | undefined;
|
|
3438
|
-
generatedBy?: string | undefined;
|
|
3439
|
-
} | undefined;
|
|
3440
|
-
} | undefined;
|
|
3441
3593
|
readonly readonlyWhen?: {
|
|
3442
3594
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3443
3595
|
source?: string | undefined;
|
|
@@ -3479,6 +3631,15 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3479
3631
|
value: string;
|
|
3480
3632
|
color?: string | undefined;
|
|
3481
3633
|
default?: boolean | undefined;
|
|
3634
|
+
visibleWhen?: {
|
|
3635
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3636
|
+
source?: string | undefined;
|
|
3637
|
+
ast?: unknown;
|
|
3638
|
+
meta?: {
|
|
3639
|
+
rationale?: string | undefined;
|
|
3640
|
+
generatedBy?: string | undefined;
|
|
3641
|
+
} | undefined;
|
|
3642
|
+
} | undefined;
|
|
3482
3643
|
}[] | undefined;
|
|
3483
3644
|
readonly description?: string | undefined;
|
|
3484
3645
|
readonly label?: string | undefined;
|
|
@@ -3496,6 +3657,15 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3496
3657
|
readonly system?: boolean | undefined;
|
|
3497
3658
|
readonly min?: number | undefined;
|
|
3498
3659
|
readonly max?: number | undefined;
|
|
3660
|
+
readonly visibleWhen?: {
|
|
3661
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3662
|
+
source?: string | undefined;
|
|
3663
|
+
ast?: unknown;
|
|
3664
|
+
meta?: {
|
|
3665
|
+
rationale?: string | undefined;
|
|
3666
|
+
generatedBy?: string | undefined;
|
|
3667
|
+
} | undefined;
|
|
3668
|
+
} | undefined;
|
|
3499
3669
|
readonly dimensions?: number | undefined;
|
|
3500
3670
|
readonly columnName?: string | undefined;
|
|
3501
3671
|
readonly searchable?: boolean | undefined;
|
|
@@ -3603,15 +3773,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3603
3773
|
maxVersions?: number | undefined;
|
|
3604
3774
|
} | undefined;
|
|
3605
3775
|
readonly trackHistory?: boolean | undefined;
|
|
3606
|
-
readonly visibleWhen?: {
|
|
3607
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
3608
|
-
source?: string | undefined;
|
|
3609
|
-
ast?: unknown;
|
|
3610
|
-
meta?: {
|
|
3611
|
-
rationale?: string | undefined;
|
|
3612
|
-
generatedBy?: string | undefined;
|
|
3613
|
-
} | undefined;
|
|
3614
|
-
} | undefined;
|
|
3615
3776
|
readonly readonlyWhen?: {
|
|
3616
3777
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3617
3778
|
source?: string | undefined;
|
|
@@ -3653,6 +3814,15 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3653
3814
|
value: string;
|
|
3654
3815
|
color?: string | undefined;
|
|
3655
3816
|
default?: boolean | undefined;
|
|
3817
|
+
visibleWhen?: {
|
|
3818
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3819
|
+
source?: string | undefined;
|
|
3820
|
+
ast?: unknown;
|
|
3821
|
+
meta?: {
|
|
3822
|
+
rationale?: string | undefined;
|
|
3823
|
+
generatedBy?: string | undefined;
|
|
3824
|
+
} | undefined;
|
|
3825
|
+
} | undefined;
|
|
3656
3826
|
}[] | undefined;
|
|
3657
3827
|
readonly description?: string | undefined;
|
|
3658
3828
|
readonly label?: string | undefined;
|
|
@@ -3670,6 +3840,15 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3670
3840
|
readonly system?: boolean | undefined;
|
|
3671
3841
|
readonly min?: number | undefined;
|
|
3672
3842
|
readonly max?: number | undefined;
|
|
3843
|
+
readonly visibleWhen?: {
|
|
3844
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3845
|
+
source?: string | undefined;
|
|
3846
|
+
ast?: unknown;
|
|
3847
|
+
meta?: {
|
|
3848
|
+
rationale?: string | undefined;
|
|
3849
|
+
generatedBy?: string | undefined;
|
|
3850
|
+
} | undefined;
|
|
3851
|
+
} | undefined;
|
|
3673
3852
|
readonly dimensions?: number | undefined;
|
|
3674
3853
|
readonly columnName?: string | undefined;
|
|
3675
3854
|
readonly searchable?: boolean | undefined;
|
|
@@ -3777,15 +3956,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3777
3956
|
maxVersions?: number | undefined;
|
|
3778
3957
|
} | undefined;
|
|
3779
3958
|
readonly trackHistory?: boolean | undefined;
|
|
3780
|
-
readonly visibleWhen?: {
|
|
3781
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
3782
|
-
source?: string | undefined;
|
|
3783
|
-
ast?: unknown;
|
|
3784
|
-
meta?: {
|
|
3785
|
-
rationale?: string | undefined;
|
|
3786
|
-
generatedBy?: string | undefined;
|
|
3787
|
-
} | undefined;
|
|
3788
|
-
} | undefined;
|
|
3789
3959
|
readonly readonlyWhen?: {
|
|
3790
3960
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3791
3961
|
source?: string | undefined;
|
|
@@ -3827,6 +3997,15 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3827
3997
|
value: string;
|
|
3828
3998
|
color?: string | undefined;
|
|
3829
3999
|
default?: boolean | undefined;
|
|
4000
|
+
visibleWhen?: {
|
|
4001
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4002
|
+
source?: string | undefined;
|
|
4003
|
+
ast?: unknown;
|
|
4004
|
+
meta?: {
|
|
4005
|
+
rationale?: string | undefined;
|
|
4006
|
+
generatedBy?: string | undefined;
|
|
4007
|
+
} | undefined;
|
|
4008
|
+
} | undefined;
|
|
3830
4009
|
}[] | undefined;
|
|
3831
4010
|
readonly description?: string | undefined;
|
|
3832
4011
|
readonly label?: string | undefined;
|
|
@@ -3844,6 +4023,15 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3844
4023
|
readonly system?: boolean | undefined;
|
|
3845
4024
|
readonly min?: number | undefined;
|
|
3846
4025
|
readonly max?: number | undefined;
|
|
4026
|
+
readonly visibleWhen?: {
|
|
4027
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4028
|
+
source?: string | undefined;
|
|
4029
|
+
ast?: unknown;
|
|
4030
|
+
meta?: {
|
|
4031
|
+
rationale?: string | undefined;
|
|
4032
|
+
generatedBy?: string | undefined;
|
|
4033
|
+
} | undefined;
|
|
4034
|
+
} | undefined;
|
|
3847
4035
|
readonly dimensions?: number | undefined;
|
|
3848
4036
|
readonly columnName?: string | undefined;
|
|
3849
4037
|
readonly searchable?: boolean | undefined;
|
|
@@ -3951,15 +4139,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3951
4139
|
maxVersions?: number | undefined;
|
|
3952
4140
|
} | undefined;
|
|
3953
4141
|
readonly trackHistory?: boolean | undefined;
|
|
3954
|
-
readonly visibleWhen?: {
|
|
3955
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
3956
|
-
source?: string | undefined;
|
|
3957
|
-
ast?: unknown;
|
|
3958
|
-
meta?: {
|
|
3959
|
-
rationale?: string | undefined;
|
|
3960
|
-
generatedBy?: string | undefined;
|
|
3961
|
-
} | undefined;
|
|
3962
|
-
} | undefined;
|
|
3963
4142
|
readonly readonlyWhen?: {
|
|
3964
4143
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3965
4144
|
source?: string | undefined;
|
|
@@ -4051,6 +4230,23 @@ declare const SysApprovalAction: Omit<{
|
|
|
4051
4230
|
value: string;
|
|
4052
4231
|
color?: string | undefined;
|
|
4053
4232
|
default?: boolean | undefined;
|
|
4233
|
+
visibleWhen?: {
|
|
4234
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4235
|
+
source?: string | undefined;
|
|
4236
|
+
ast?: unknown;
|
|
4237
|
+
meta?: {
|
|
4238
|
+
rationale?: string | undefined;
|
|
4239
|
+
generatedBy?: string | undefined;
|
|
4240
|
+
} | undefined;
|
|
4241
|
+
} | {
|
|
4242
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4243
|
+
source?: string | undefined;
|
|
4244
|
+
ast?: unknown;
|
|
4245
|
+
meta?: {
|
|
4246
|
+
rationale?: string | undefined;
|
|
4247
|
+
generatedBy?: string | undefined;
|
|
4248
|
+
} | undefined;
|
|
4249
|
+
} | undefined;
|
|
4054
4250
|
}[] | undefined;
|
|
4055
4251
|
reference?: string | undefined;
|
|
4056
4252
|
referenceFilters?: string[] | undefined;
|
|
@@ -4835,6 +5031,15 @@ declare const SysApprovalAction: Omit<{
|
|
|
4835
5031
|
value: string;
|
|
4836
5032
|
color?: string | undefined;
|
|
4837
5033
|
default?: boolean | undefined;
|
|
5034
|
+
visibleWhen?: {
|
|
5035
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5036
|
+
source?: string | undefined;
|
|
5037
|
+
ast?: unknown;
|
|
5038
|
+
meta?: {
|
|
5039
|
+
rationale?: string | undefined;
|
|
5040
|
+
generatedBy?: string | undefined;
|
|
5041
|
+
} | undefined;
|
|
5042
|
+
} | undefined;
|
|
4838
5043
|
}[] | undefined;
|
|
4839
5044
|
readonly description?: string | undefined;
|
|
4840
5045
|
readonly label?: string | undefined;
|
|
@@ -4852,6 +5057,15 @@ declare const SysApprovalAction: Omit<{
|
|
|
4852
5057
|
readonly system?: boolean | undefined;
|
|
4853
5058
|
readonly min?: number | undefined;
|
|
4854
5059
|
readonly max?: number | undefined;
|
|
5060
|
+
readonly visibleWhen?: {
|
|
5061
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5062
|
+
source?: string | undefined;
|
|
5063
|
+
ast?: unknown;
|
|
5064
|
+
meta?: {
|
|
5065
|
+
rationale?: string | undefined;
|
|
5066
|
+
generatedBy?: string | undefined;
|
|
5067
|
+
} | undefined;
|
|
5068
|
+
} | undefined;
|
|
4855
5069
|
readonly dimensions?: number | undefined;
|
|
4856
5070
|
readonly columnName?: string | undefined;
|
|
4857
5071
|
readonly searchable?: boolean | undefined;
|
|
@@ -4959,15 +5173,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
4959
5173
|
maxVersions?: number | undefined;
|
|
4960
5174
|
} | undefined;
|
|
4961
5175
|
readonly trackHistory?: boolean | undefined;
|
|
4962
|
-
readonly visibleWhen?: {
|
|
4963
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
4964
|
-
source?: string | undefined;
|
|
4965
|
-
ast?: unknown;
|
|
4966
|
-
meta?: {
|
|
4967
|
-
rationale?: string | undefined;
|
|
4968
|
-
generatedBy?: string | undefined;
|
|
4969
|
-
} | undefined;
|
|
4970
|
-
} | undefined;
|
|
4971
5176
|
readonly readonlyWhen?: {
|
|
4972
5177
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4973
5178
|
source?: string | undefined;
|
|
@@ -5009,6 +5214,15 @@ declare const SysApprovalAction: Omit<{
|
|
|
5009
5214
|
value: string;
|
|
5010
5215
|
color?: string | undefined;
|
|
5011
5216
|
default?: boolean | undefined;
|
|
5217
|
+
visibleWhen?: {
|
|
5218
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5219
|
+
source?: string | undefined;
|
|
5220
|
+
ast?: unknown;
|
|
5221
|
+
meta?: {
|
|
5222
|
+
rationale?: string | undefined;
|
|
5223
|
+
generatedBy?: string | undefined;
|
|
5224
|
+
} | undefined;
|
|
5225
|
+
} | undefined;
|
|
5012
5226
|
}[] | undefined;
|
|
5013
5227
|
readonly description?: string | undefined;
|
|
5014
5228
|
readonly label?: string | undefined;
|
|
@@ -5026,6 +5240,15 @@ declare const SysApprovalAction: Omit<{
|
|
|
5026
5240
|
readonly system?: boolean | undefined;
|
|
5027
5241
|
readonly min?: number | undefined;
|
|
5028
5242
|
readonly max?: number | undefined;
|
|
5243
|
+
readonly visibleWhen?: {
|
|
5244
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5245
|
+
source?: string | undefined;
|
|
5246
|
+
ast?: unknown;
|
|
5247
|
+
meta?: {
|
|
5248
|
+
rationale?: string | undefined;
|
|
5249
|
+
generatedBy?: string | undefined;
|
|
5250
|
+
} | undefined;
|
|
5251
|
+
} | undefined;
|
|
5029
5252
|
readonly dimensions?: number | undefined;
|
|
5030
5253
|
readonly columnName?: string | undefined;
|
|
5031
5254
|
readonly searchable?: boolean | undefined;
|
|
@@ -5133,15 +5356,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
5133
5356
|
maxVersions?: number | undefined;
|
|
5134
5357
|
} | undefined;
|
|
5135
5358
|
readonly trackHistory?: boolean | undefined;
|
|
5136
|
-
readonly visibleWhen?: {
|
|
5137
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
5138
|
-
source?: string | undefined;
|
|
5139
|
-
ast?: unknown;
|
|
5140
|
-
meta?: {
|
|
5141
|
-
rationale?: string | undefined;
|
|
5142
|
-
generatedBy?: string | undefined;
|
|
5143
|
-
} | undefined;
|
|
5144
|
-
} | undefined;
|
|
5145
5359
|
readonly readonlyWhen?: {
|
|
5146
5360
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5147
5361
|
source?: string | undefined;
|
|
@@ -5183,6 +5397,15 @@ declare const SysApprovalAction: Omit<{
|
|
|
5183
5397
|
value: string;
|
|
5184
5398
|
color?: string | undefined;
|
|
5185
5399
|
default?: boolean | undefined;
|
|
5400
|
+
visibleWhen?: {
|
|
5401
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5402
|
+
source?: string | undefined;
|
|
5403
|
+
ast?: unknown;
|
|
5404
|
+
meta?: {
|
|
5405
|
+
rationale?: string | undefined;
|
|
5406
|
+
generatedBy?: string | undefined;
|
|
5407
|
+
} | undefined;
|
|
5408
|
+
} | undefined;
|
|
5186
5409
|
}[] | undefined;
|
|
5187
5410
|
readonly description?: string | undefined;
|
|
5188
5411
|
readonly label?: string | undefined;
|
|
@@ -5200,6 +5423,15 @@ declare const SysApprovalAction: Omit<{
|
|
|
5200
5423
|
readonly system?: boolean | undefined;
|
|
5201
5424
|
readonly min?: number | undefined;
|
|
5202
5425
|
readonly max?: number | undefined;
|
|
5426
|
+
readonly visibleWhen?: {
|
|
5427
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5428
|
+
source?: string | undefined;
|
|
5429
|
+
ast?: unknown;
|
|
5430
|
+
meta?: {
|
|
5431
|
+
rationale?: string | undefined;
|
|
5432
|
+
generatedBy?: string | undefined;
|
|
5433
|
+
} | undefined;
|
|
5434
|
+
} | undefined;
|
|
5203
5435
|
readonly dimensions?: number | undefined;
|
|
5204
5436
|
readonly columnName?: string | undefined;
|
|
5205
5437
|
readonly searchable?: boolean | undefined;
|
|
@@ -5307,15 +5539,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
5307
5539
|
maxVersions?: number | undefined;
|
|
5308
5540
|
} | undefined;
|
|
5309
5541
|
readonly trackHistory?: boolean | undefined;
|
|
5310
|
-
readonly visibleWhen?: {
|
|
5311
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
5312
|
-
source?: string | undefined;
|
|
5313
|
-
ast?: unknown;
|
|
5314
|
-
meta?: {
|
|
5315
|
-
rationale?: string | undefined;
|
|
5316
|
-
generatedBy?: string | undefined;
|
|
5317
|
-
} | undefined;
|
|
5318
|
-
} | undefined;
|
|
5319
5542
|
readonly readonlyWhen?: {
|
|
5320
5543
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5321
5544
|
source?: string | undefined;
|
|
@@ -5357,6 +5580,15 @@ declare const SysApprovalAction: Omit<{
|
|
|
5357
5580
|
value: string;
|
|
5358
5581
|
color?: string | undefined;
|
|
5359
5582
|
default?: boolean | undefined;
|
|
5583
|
+
visibleWhen?: {
|
|
5584
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5585
|
+
source?: string | undefined;
|
|
5586
|
+
ast?: unknown;
|
|
5587
|
+
meta?: {
|
|
5588
|
+
rationale?: string | undefined;
|
|
5589
|
+
generatedBy?: string | undefined;
|
|
5590
|
+
} | undefined;
|
|
5591
|
+
} | undefined;
|
|
5360
5592
|
}[] | undefined;
|
|
5361
5593
|
readonly description?: string | undefined;
|
|
5362
5594
|
readonly label?: string | undefined;
|
|
@@ -5374,6 +5606,15 @@ declare const SysApprovalAction: Omit<{
|
|
|
5374
5606
|
readonly system?: boolean | undefined;
|
|
5375
5607
|
readonly min?: number | undefined;
|
|
5376
5608
|
readonly max?: number | undefined;
|
|
5609
|
+
readonly visibleWhen?: {
|
|
5610
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5611
|
+
source?: string | undefined;
|
|
5612
|
+
ast?: unknown;
|
|
5613
|
+
meta?: {
|
|
5614
|
+
rationale?: string | undefined;
|
|
5615
|
+
generatedBy?: string | undefined;
|
|
5616
|
+
} | undefined;
|
|
5617
|
+
} | undefined;
|
|
5377
5618
|
readonly dimensions?: number | undefined;
|
|
5378
5619
|
readonly columnName?: string | undefined;
|
|
5379
5620
|
readonly searchable?: boolean | undefined;
|
|
@@ -5481,15 +5722,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
5481
5722
|
maxVersions?: number | undefined;
|
|
5482
5723
|
} | undefined;
|
|
5483
5724
|
readonly trackHistory?: boolean | undefined;
|
|
5484
|
-
readonly visibleWhen?: {
|
|
5485
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
5486
|
-
source?: string | undefined;
|
|
5487
|
-
ast?: unknown;
|
|
5488
|
-
meta?: {
|
|
5489
|
-
rationale?: string | undefined;
|
|
5490
|
-
generatedBy?: string | undefined;
|
|
5491
|
-
} | undefined;
|
|
5492
|
-
} | undefined;
|
|
5493
5725
|
readonly readonlyWhen?: {
|
|
5494
5726
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5495
5727
|
source?: string | undefined;
|
|
@@ -5531,6 +5763,15 @@ declare const SysApprovalAction: Omit<{
|
|
|
5531
5763
|
value: string;
|
|
5532
5764
|
color?: string | undefined;
|
|
5533
5765
|
default?: boolean | undefined;
|
|
5766
|
+
visibleWhen?: {
|
|
5767
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5768
|
+
source?: string | undefined;
|
|
5769
|
+
ast?: unknown;
|
|
5770
|
+
meta?: {
|
|
5771
|
+
rationale?: string | undefined;
|
|
5772
|
+
generatedBy?: string | undefined;
|
|
5773
|
+
} | undefined;
|
|
5774
|
+
} | undefined;
|
|
5534
5775
|
}[] | undefined;
|
|
5535
5776
|
readonly description?: string | undefined;
|
|
5536
5777
|
readonly label?: string | undefined;
|
|
@@ -5548,6 +5789,15 @@ declare const SysApprovalAction: Omit<{
|
|
|
5548
5789
|
readonly system?: boolean | undefined;
|
|
5549
5790
|
readonly min?: number | undefined;
|
|
5550
5791
|
readonly max?: number | undefined;
|
|
5792
|
+
readonly visibleWhen?: {
|
|
5793
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5794
|
+
source?: string | undefined;
|
|
5795
|
+
ast?: unknown;
|
|
5796
|
+
meta?: {
|
|
5797
|
+
rationale?: string | undefined;
|
|
5798
|
+
generatedBy?: string | undefined;
|
|
5799
|
+
} | undefined;
|
|
5800
|
+
} | undefined;
|
|
5551
5801
|
readonly dimensions?: number | undefined;
|
|
5552
5802
|
readonly columnName?: string | undefined;
|
|
5553
5803
|
readonly searchable?: boolean | undefined;
|
|
@@ -5655,15 +5905,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
5655
5905
|
maxVersions?: number | undefined;
|
|
5656
5906
|
} | undefined;
|
|
5657
5907
|
readonly trackHistory?: boolean | undefined;
|
|
5658
|
-
readonly visibleWhen?: {
|
|
5659
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
5660
|
-
source?: string | undefined;
|
|
5661
|
-
ast?: unknown;
|
|
5662
|
-
meta?: {
|
|
5663
|
-
rationale?: string | undefined;
|
|
5664
|
-
generatedBy?: string | undefined;
|
|
5665
|
-
} | undefined;
|
|
5666
|
-
} | undefined;
|
|
5667
5908
|
readonly readonlyWhen?: {
|
|
5668
5909
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5669
5910
|
source?: string | undefined;
|
|
@@ -5705,6 +5946,15 @@ declare const SysApprovalAction: Omit<{
|
|
|
5705
5946
|
value: string;
|
|
5706
5947
|
color?: string | undefined;
|
|
5707
5948
|
default?: boolean | undefined;
|
|
5949
|
+
visibleWhen?: {
|
|
5950
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5951
|
+
source?: string | undefined;
|
|
5952
|
+
ast?: unknown;
|
|
5953
|
+
meta?: {
|
|
5954
|
+
rationale?: string | undefined;
|
|
5955
|
+
generatedBy?: string | undefined;
|
|
5956
|
+
} | undefined;
|
|
5957
|
+
} | undefined;
|
|
5708
5958
|
}[];
|
|
5709
5959
|
readonly description?: string | undefined;
|
|
5710
5960
|
readonly label?: string | undefined;
|
|
@@ -5722,6 +5972,15 @@ declare const SysApprovalAction: Omit<{
|
|
|
5722
5972
|
readonly system?: boolean | undefined;
|
|
5723
5973
|
readonly min?: number | undefined;
|
|
5724
5974
|
readonly max?: number | undefined;
|
|
5975
|
+
readonly visibleWhen?: {
|
|
5976
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5977
|
+
source?: string | undefined;
|
|
5978
|
+
ast?: unknown;
|
|
5979
|
+
meta?: {
|
|
5980
|
+
rationale?: string | undefined;
|
|
5981
|
+
generatedBy?: string | undefined;
|
|
5982
|
+
} | undefined;
|
|
5983
|
+
} | undefined;
|
|
5725
5984
|
readonly dimensions?: number | undefined;
|
|
5726
5985
|
readonly columnName?: string | undefined;
|
|
5727
5986
|
readonly searchable?: boolean | undefined;
|
|
@@ -5829,15 +6088,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
5829
6088
|
maxVersions?: number | undefined;
|
|
5830
6089
|
} | undefined;
|
|
5831
6090
|
readonly trackHistory?: boolean | undefined;
|
|
5832
|
-
readonly visibleWhen?: {
|
|
5833
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
5834
|
-
source?: string | undefined;
|
|
5835
|
-
ast?: unknown;
|
|
5836
|
-
meta?: {
|
|
5837
|
-
rationale?: string | undefined;
|
|
5838
|
-
generatedBy?: string | undefined;
|
|
5839
|
-
} | undefined;
|
|
5840
|
-
} | undefined;
|
|
5841
6091
|
readonly readonlyWhen?: {
|
|
5842
6092
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5843
6093
|
source?: string | undefined;
|
|
@@ -5879,6 +6129,15 @@ declare const SysApprovalAction: Omit<{
|
|
|
5879
6129
|
value: string;
|
|
5880
6130
|
color?: string | undefined;
|
|
5881
6131
|
default?: boolean | undefined;
|
|
6132
|
+
visibleWhen?: {
|
|
6133
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6134
|
+
source?: string | undefined;
|
|
6135
|
+
ast?: unknown;
|
|
6136
|
+
meta?: {
|
|
6137
|
+
rationale?: string | undefined;
|
|
6138
|
+
generatedBy?: string | undefined;
|
|
6139
|
+
} | undefined;
|
|
6140
|
+
} | undefined;
|
|
5882
6141
|
}[] | undefined;
|
|
5883
6142
|
readonly description?: string | undefined;
|
|
5884
6143
|
readonly label?: string | undefined;
|
|
@@ -5896,6 +6155,15 @@ declare const SysApprovalAction: Omit<{
|
|
|
5896
6155
|
readonly system?: boolean | undefined;
|
|
5897
6156
|
readonly min?: number | undefined;
|
|
5898
6157
|
readonly max?: number | undefined;
|
|
6158
|
+
readonly visibleWhen?: {
|
|
6159
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6160
|
+
source?: string | undefined;
|
|
6161
|
+
ast?: unknown;
|
|
6162
|
+
meta?: {
|
|
6163
|
+
rationale?: string | undefined;
|
|
6164
|
+
generatedBy?: string | undefined;
|
|
6165
|
+
} | undefined;
|
|
6166
|
+
} | undefined;
|
|
5899
6167
|
readonly dimensions?: number | undefined;
|
|
5900
6168
|
readonly columnName?: string | undefined;
|
|
5901
6169
|
readonly searchable?: boolean | undefined;
|
|
@@ -6003,15 +6271,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
6003
6271
|
maxVersions?: number | undefined;
|
|
6004
6272
|
} | undefined;
|
|
6005
6273
|
readonly trackHistory?: boolean | undefined;
|
|
6006
|
-
readonly visibleWhen?: {
|
|
6007
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
6008
|
-
source?: string | undefined;
|
|
6009
|
-
ast?: unknown;
|
|
6010
|
-
meta?: {
|
|
6011
|
-
rationale?: string | undefined;
|
|
6012
|
-
generatedBy?: string | undefined;
|
|
6013
|
-
} | undefined;
|
|
6014
|
-
} | undefined;
|
|
6015
6274
|
readonly readonlyWhen?: {
|
|
6016
6275
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6017
6276
|
source?: string | undefined;
|
|
@@ -6053,6 +6312,15 @@ declare const SysApprovalAction: Omit<{
|
|
|
6053
6312
|
value: string;
|
|
6054
6313
|
color?: string | undefined;
|
|
6055
6314
|
default?: boolean | undefined;
|
|
6315
|
+
visibleWhen?: {
|
|
6316
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6317
|
+
source?: string | undefined;
|
|
6318
|
+
ast?: unknown;
|
|
6319
|
+
meta?: {
|
|
6320
|
+
rationale?: string | undefined;
|
|
6321
|
+
generatedBy?: string | undefined;
|
|
6322
|
+
} | undefined;
|
|
6323
|
+
} | undefined;
|
|
6056
6324
|
}[] | undefined;
|
|
6057
6325
|
readonly description?: string | undefined;
|
|
6058
6326
|
readonly label?: string | undefined;
|
|
@@ -6070,6 +6338,15 @@ declare const SysApprovalAction: Omit<{
|
|
|
6070
6338
|
readonly system?: boolean | undefined;
|
|
6071
6339
|
readonly min?: number | undefined;
|
|
6072
6340
|
readonly max?: number | undefined;
|
|
6341
|
+
readonly visibleWhen?: {
|
|
6342
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6343
|
+
source?: string | undefined;
|
|
6344
|
+
ast?: unknown;
|
|
6345
|
+
meta?: {
|
|
6346
|
+
rationale?: string | undefined;
|
|
6347
|
+
generatedBy?: string | undefined;
|
|
6348
|
+
} | undefined;
|
|
6349
|
+
} | undefined;
|
|
6073
6350
|
readonly dimensions?: number | undefined;
|
|
6074
6351
|
readonly columnName?: string | undefined;
|
|
6075
6352
|
readonly searchable?: boolean | undefined;
|
|
@@ -6177,15 +6454,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
6177
6454
|
maxVersions?: number | undefined;
|
|
6178
6455
|
} | undefined;
|
|
6179
6456
|
readonly trackHistory?: boolean | undefined;
|
|
6180
|
-
readonly visibleWhen?: {
|
|
6181
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
6182
|
-
source?: string | undefined;
|
|
6183
|
-
ast?: unknown;
|
|
6184
|
-
meta?: {
|
|
6185
|
-
rationale?: string | undefined;
|
|
6186
|
-
generatedBy?: string | undefined;
|
|
6187
|
-
} | undefined;
|
|
6188
|
-
} | undefined;
|
|
6189
6457
|
readonly readonlyWhen?: {
|
|
6190
6458
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6191
6459
|
source?: string | undefined;
|
|
@@ -6227,6 +6495,15 @@ declare const SysApprovalAction: Omit<{
|
|
|
6227
6495
|
value: string;
|
|
6228
6496
|
color?: string | undefined;
|
|
6229
6497
|
default?: boolean | undefined;
|
|
6498
|
+
visibleWhen?: {
|
|
6499
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6500
|
+
source?: string | undefined;
|
|
6501
|
+
ast?: unknown;
|
|
6502
|
+
meta?: {
|
|
6503
|
+
rationale?: string | undefined;
|
|
6504
|
+
generatedBy?: string | undefined;
|
|
6505
|
+
} | undefined;
|
|
6506
|
+
} | undefined;
|
|
6230
6507
|
}[] | undefined;
|
|
6231
6508
|
readonly description?: string | undefined;
|
|
6232
6509
|
readonly label?: string | undefined;
|
|
@@ -6244,6 +6521,15 @@ declare const SysApprovalAction: Omit<{
|
|
|
6244
6521
|
readonly system?: boolean | undefined;
|
|
6245
6522
|
readonly min?: number | undefined;
|
|
6246
6523
|
readonly max?: number | undefined;
|
|
6524
|
+
readonly visibleWhen?: {
|
|
6525
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6526
|
+
source?: string | undefined;
|
|
6527
|
+
ast?: unknown;
|
|
6528
|
+
meta?: {
|
|
6529
|
+
rationale?: string | undefined;
|
|
6530
|
+
generatedBy?: string | undefined;
|
|
6531
|
+
} | undefined;
|
|
6532
|
+
} | undefined;
|
|
6247
6533
|
readonly dimensions?: number | undefined;
|
|
6248
6534
|
readonly columnName?: string | undefined;
|
|
6249
6535
|
readonly searchable?: boolean | undefined;
|
|
@@ -6351,15 +6637,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
6351
6637
|
maxVersions?: number | undefined;
|
|
6352
6638
|
} | undefined;
|
|
6353
6639
|
readonly trackHistory?: boolean | undefined;
|
|
6354
|
-
readonly visibleWhen?: {
|
|
6355
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
6356
|
-
source?: string | undefined;
|
|
6357
|
-
ast?: unknown;
|
|
6358
|
-
meta?: {
|
|
6359
|
-
rationale?: string | undefined;
|
|
6360
|
-
generatedBy?: string | undefined;
|
|
6361
|
-
} | undefined;
|
|
6362
|
-
} | undefined;
|
|
6363
6640
|
readonly readonlyWhen?: {
|
|
6364
6641
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6365
6642
|
source?: string | undefined;
|
|
@@ -6458,6 +6735,23 @@ declare const SysApprovalApprover: Omit<{
|
|
|
6458
6735
|
value: string;
|
|
6459
6736
|
color?: string | undefined;
|
|
6460
6737
|
default?: boolean | undefined;
|
|
6738
|
+
visibleWhen?: {
|
|
6739
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6740
|
+
source?: string | undefined;
|
|
6741
|
+
ast?: unknown;
|
|
6742
|
+
meta?: {
|
|
6743
|
+
rationale?: string | undefined;
|
|
6744
|
+
generatedBy?: string | undefined;
|
|
6745
|
+
} | undefined;
|
|
6746
|
+
} | {
|
|
6747
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6748
|
+
source?: string | undefined;
|
|
6749
|
+
ast?: unknown;
|
|
6750
|
+
meta?: {
|
|
6751
|
+
rationale?: string | undefined;
|
|
6752
|
+
generatedBy?: string | undefined;
|
|
6753
|
+
} | undefined;
|
|
6754
|
+
} | undefined;
|
|
6461
6755
|
}[] | undefined;
|
|
6462
6756
|
reference?: string | undefined;
|
|
6463
6757
|
referenceFilters?: string[] | undefined;
|
|
@@ -7175,6 +7469,15 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7175
7469
|
value: string;
|
|
7176
7470
|
color?: string | undefined;
|
|
7177
7471
|
default?: boolean | undefined;
|
|
7472
|
+
visibleWhen?: {
|
|
7473
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
7474
|
+
source?: string | undefined;
|
|
7475
|
+
ast?: unknown;
|
|
7476
|
+
meta?: {
|
|
7477
|
+
rationale?: string | undefined;
|
|
7478
|
+
generatedBy?: string | undefined;
|
|
7479
|
+
} | undefined;
|
|
7480
|
+
} | undefined;
|
|
7178
7481
|
}[] | undefined;
|
|
7179
7482
|
readonly description?: string | undefined;
|
|
7180
7483
|
readonly label?: string | undefined;
|
|
@@ -7192,6 +7495,15 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7192
7495
|
readonly system?: boolean | undefined;
|
|
7193
7496
|
readonly min?: number | undefined;
|
|
7194
7497
|
readonly max?: number | undefined;
|
|
7498
|
+
readonly visibleWhen?: {
|
|
7499
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
7500
|
+
source?: string | undefined;
|
|
7501
|
+
ast?: unknown;
|
|
7502
|
+
meta?: {
|
|
7503
|
+
rationale?: string | undefined;
|
|
7504
|
+
generatedBy?: string | undefined;
|
|
7505
|
+
} | undefined;
|
|
7506
|
+
} | undefined;
|
|
7195
7507
|
readonly dimensions?: number | undefined;
|
|
7196
7508
|
readonly columnName?: string | undefined;
|
|
7197
7509
|
readonly searchable?: boolean | undefined;
|
|
@@ -7299,15 +7611,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7299
7611
|
maxVersions?: number | undefined;
|
|
7300
7612
|
} | undefined;
|
|
7301
7613
|
readonly trackHistory?: boolean | undefined;
|
|
7302
|
-
readonly visibleWhen?: {
|
|
7303
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
7304
|
-
source?: string | undefined;
|
|
7305
|
-
ast?: unknown;
|
|
7306
|
-
meta?: {
|
|
7307
|
-
rationale?: string | undefined;
|
|
7308
|
-
generatedBy?: string | undefined;
|
|
7309
|
-
} | undefined;
|
|
7310
|
-
} | undefined;
|
|
7311
7614
|
readonly readonlyWhen?: {
|
|
7312
7615
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7313
7616
|
source?: string | undefined;
|
|
@@ -7349,6 +7652,15 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7349
7652
|
value: string;
|
|
7350
7653
|
color?: string | undefined;
|
|
7351
7654
|
default?: boolean | undefined;
|
|
7655
|
+
visibleWhen?: {
|
|
7656
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
7657
|
+
source?: string | undefined;
|
|
7658
|
+
ast?: unknown;
|
|
7659
|
+
meta?: {
|
|
7660
|
+
rationale?: string | undefined;
|
|
7661
|
+
generatedBy?: string | undefined;
|
|
7662
|
+
} | undefined;
|
|
7663
|
+
} | undefined;
|
|
7352
7664
|
}[] | undefined;
|
|
7353
7665
|
readonly description?: string | undefined;
|
|
7354
7666
|
readonly label?: string | undefined;
|
|
@@ -7366,6 +7678,15 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7366
7678
|
readonly system?: boolean | undefined;
|
|
7367
7679
|
readonly min?: number | undefined;
|
|
7368
7680
|
readonly max?: number | undefined;
|
|
7681
|
+
readonly visibleWhen?: {
|
|
7682
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
7683
|
+
source?: string | undefined;
|
|
7684
|
+
ast?: unknown;
|
|
7685
|
+
meta?: {
|
|
7686
|
+
rationale?: string | undefined;
|
|
7687
|
+
generatedBy?: string | undefined;
|
|
7688
|
+
} | undefined;
|
|
7689
|
+
} | undefined;
|
|
7369
7690
|
readonly dimensions?: number | undefined;
|
|
7370
7691
|
readonly columnName?: string | undefined;
|
|
7371
7692
|
readonly searchable?: boolean | undefined;
|
|
@@ -7473,15 +7794,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7473
7794
|
maxVersions?: number | undefined;
|
|
7474
7795
|
} | undefined;
|
|
7475
7796
|
readonly trackHistory?: boolean | undefined;
|
|
7476
|
-
readonly visibleWhen?: {
|
|
7477
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
7478
|
-
source?: string | undefined;
|
|
7479
|
-
ast?: unknown;
|
|
7480
|
-
meta?: {
|
|
7481
|
-
rationale?: string | undefined;
|
|
7482
|
-
generatedBy?: string | undefined;
|
|
7483
|
-
} | undefined;
|
|
7484
|
-
} | undefined;
|
|
7485
7797
|
readonly readonlyWhen?: {
|
|
7486
7798
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7487
7799
|
source?: string | undefined;
|
|
@@ -7523,6 +7835,15 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7523
7835
|
value: string;
|
|
7524
7836
|
color?: string | undefined;
|
|
7525
7837
|
default?: boolean | undefined;
|
|
7838
|
+
visibleWhen?: {
|
|
7839
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
7840
|
+
source?: string | undefined;
|
|
7841
|
+
ast?: unknown;
|
|
7842
|
+
meta?: {
|
|
7843
|
+
rationale?: string | undefined;
|
|
7844
|
+
generatedBy?: string | undefined;
|
|
7845
|
+
} | undefined;
|
|
7846
|
+
} | undefined;
|
|
7526
7847
|
}[] | undefined;
|
|
7527
7848
|
readonly description?: string | undefined;
|
|
7528
7849
|
readonly label?: string | undefined;
|
|
@@ -7540,6 +7861,15 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7540
7861
|
readonly system?: boolean | undefined;
|
|
7541
7862
|
readonly min?: number | undefined;
|
|
7542
7863
|
readonly max?: number | undefined;
|
|
7864
|
+
readonly visibleWhen?: {
|
|
7865
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
7866
|
+
source?: string | undefined;
|
|
7867
|
+
ast?: unknown;
|
|
7868
|
+
meta?: {
|
|
7869
|
+
rationale?: string | undefined;
|
|
7870
|
+
generatedBy?: string | undefined;
|
|
7871
|
+
} | undefined;
|
|
7872
|
+
} | undefined;
|
|
7543
7873
|
readonly dimensions?: number | undefined;
|
|
7544
7874
|
readonly columnName?: string | undefined;
|
|
7545
7875
|
readonly searchable?: boolean | undefined;
|
|
@@ -7647,15 +7977,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7647
7977
|
maxVersions?: number | undefined;
|
|
7648
7978
|
} | undefined;
|
|
7649
7979
|
readonly trackHistory?: boolean | undefined;
|
|
7650
|
-
readonly visibleWhen?: {
|
|
7651
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
7652
|
-
source?: string | undefined;
|
|
7653
|
-
ast?: unknown;
|
|
7654
|
-
meta?: {
|
|
7655
|
-
rationale?: string | undefined;
|
|
7656
|
-
generatedBy?: string | undefined;
|
|
7657
|
-
} | undefined;
|
|
7658
|
-
} | undefined;
|
|
7659
7980
|
readonly readonlyWhen?: {
|
|
7660
7981
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7661
7982
|
source?: string | undefined;
|
|
@@ -7697,6 +8018,15 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7697
8018
|
value: string;
|
|
7698
8019
|
color?: string | undefined;
|
|
7699
8020
|
default?: boolean | undefined;
|
|
8021
|
+
visibleWhen?: {
|
|
8022
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
8023
|
+
source?: string | undefined;
|
|
8024
|
+
ast?: unknown;
|
|
8025
|
+
meta?: {
|
|
8026
|
+
rationale?: string | undefined;
|
|
8027
|
+
generatedBy?: string | undefined;
|
|
8028
|
+
} | undefined;
|
|
8029
|
+
} | undefined;
|
|
7700
8030
|
}[] | undefined;
|
|
7701
8031
|
readonly description?: string | undefined;
|
|
7702
8032
|
readonly label?: string | undefined;
|
|
@@ -7714,6 +8044,15 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7714
8044
|
readonly system?: boolean | undefined;
|
|
7715
8045
|
readonly min?: number | undefined;
|
|
7716
8046
|
readonly max?: number | undefined;
|
|
8047
|
+
readonly visibleWhen?: {
|
|
8048
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
8049
|
+
source?: string | undefined;
|
|
8050
|
+
ast?: unknown;
|
|
8051
|
+
meta?: {
|
|
8052
|
+
rationale?: string | undefined;
|
|
8053
|
+
generatedBy?: string | undefined;
|
|
8054
|
+
} | undefined;
|
|
8055
|
+
} | undefined;
|
|
7717
8056
|
readonly dimensions?: number | undefined;
|
|
7718
8057
|
readonly columnName?: string | undefined;
|
|
7719
8058
|
readonly searchable?: boolean | undefined;
|
|
@@ -7821,15 +8160,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7821
8160
|
maxVersions?: number | undefined;
|
|
7822
8161
|
} | undefined;
|
|
7823
8162
|
readonly trackHistory?: boolean | undefined;
|
|
7824
|
-
readonly visibleWhen?: {
|
|
7825
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
7826
|
-
source?: string | undefined;
|
|
7827
|
-
ast?: unknown;
|
|
7828
|
-
meta?: {
|
|
7829
|
-
rationale?: string | undefined;
|
|
7830
|
-
generatedBy?: string | undefined;
|
|
7831
|
-
} | undefined;
|
|
7832
|
-
} | undefined;
|
|
7833
8163
|
readonly readonlyWhen?: {
|
|
7834
8164
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7835
8165
|
source?: string | undefined;
|
|
@@ -7871,6 +8201,15 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7871
8201
|
value: string;
|
|
7872
8202
|
color?: string | undefined;
|
|
7873
8203
|
default?: boolean | undefined;
|
|
8204
|
+
visibleWhen?: {
|
|
8205
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
8206
|
+
source?: string | undefined;
|
|
8207
|
+
ast?: unknown;
|
|
8208
|
+
meta?: {
|
|
8209
|
+
rationale?: string | undefined;
|
|
8210
|
+
generatedBy?: string | undefined;
|
|
8211
|
+
} | undefined;
|
|
8212
|
+
} | undefined;
|
|
7874
8213
|
}[] | undefined;
|
|
7875
8214
|
readonly description?: string | undefined;
|
|
7876
8215
|
readonly label?: string | undefined;
|
|
@@ -7888,6 +8227,15 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7888
8227
|
readonly system?: boolean | undefined;
|
|
7889
8228
|
readonly min?: number | undefined;
|
|
7890
8229
|
readonly max?: number | undefined;
|
|
8230
|
+
readonly visibleWhen?: {
|
|
8231
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
8232
|
+
source?: string | undefined;
|
|
8233
|
+
ast?: unknown;
|
|
8234
|
+
meta?: {
|
|
8235
|
+
rationale?: string | undefined;
|
|
8236
|
+
generatedBy?: string | undefined;
|
|
8237
|
+
} | undefined;
|
|
8238
|
+
} | undefined;
|
|
7891
8239
|
readonly dimensions?: number | undefined;
|
|
7892
8240
|
readonly columnName?: string | undefined;
|
|
7893
8241
|
readonly searchable?: boolean | undefined;
|
|
@@ -7995,15 +8343,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7995
8343
|
maxVersions?: number | undefined;
|
|
7996
8344
|
} | undefined;
|
|
7997
8345
|
readonly trackHistory?: boolean | undefined;
|
|
7998
|
-
readonly visibleWhen?: {
|
|
7999
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
8000
|
-
source?: string | undefined;
|
|
8001
|
-
ast?: unknown;
|
|
8002
|
-
meta?: {
|
|
8003
|
-
rationale?: string | undefined;
|
|
8004
|
-
generatedBy?: string | undefined;
|
|
8005
|
-
} | undefined;
|
|
8006
|
-
} | undefined;
|
|
8007
8346
|
readonly readonlyWhen?: {
|
|
8008
8347
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8009
8348
|
source?: string | undefined;
|