@objectstack/platform-objects 12.1.0 → 12.3.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/dist/audit/index.d.mts +4211 -2709
- package/dist/audit/index.d.ts +4211 -2709
- package/dist/identity/index.d.mts +5836 -3428
- package/dist/identity/index.d.ts +5836 -3428
- package/dist/system/index.d.mts +688 -322
- package/dist/system/index.d.ts +688 -322
- package/package.json +3 -3
package/dist/system/index.d.ts
CHANGED
|
@@ -36,7 +36,7 @@ declare const SysSetting: Omit<{
|
|
|
36
36
|
abstract: boolean;
|
|
37
37
|
datasource: string;
|
|
38
38
|
fields: Record<string, {
|
|
39
|
-
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "
|
|
39
|
+
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "email" | "time" | "secret" | "user" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
40
40
|
required: boolean;
|
|
41
41
|
searchable: boolean;
|
|
42
42
|
multiple: boolean;
|
|
@@ -64,6 +64,23 @@ declare const SysSetting: Omit<{
|
|
|
64
64
|
value: string;
|
|
65
65
|
color?: string | undefined;
|
|
66
66
|
default?: boolean | undefined;
|
|
67
|
+
visibleWhen?: {
|
|
68
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
69
|
+
source?: string | undefined;
|
|
70
|
+
ast?: unknown;
|
|
71
|
+
meta?: {
|
|
72
|
+
rationale?: string | undefined;
|
|
73
|
+
generatedBy?: string | undefined;
|
|
74
|
+
} | undefined;
|
|
75
|
+
} | {
|
|
76
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
77
|
+
source?: string | undefined;
|
|
78
|
+
ast?: unknown;
|
|
79
|
+
meta?: {
|
|
80
|
+
rationale?: string | undefined;
|
|
81
|
+
generatedBy?: string | undefined;
|
|
82
|
+
} | undefined;
|
|
83
|
+
} | undefined;
|
|
67
84
|
}[] | undefined;
|
|
68
85
|
reference?: string | undefined;
|
|
69
86
|
referenceFilters?: string[] | undefined;
|
|
@@ -679,7 +696,7 @@ declare const SysSetting: Omit<{
|
|
|
679
696
|
field?: string | undefined;
|
|
680
697
|
objectOverride?: string | undefined;
|
|
681
698
|
label?: string | undefined;
|
|
682
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "
|
|
699
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "email" | "time" | "secret" | "user" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
683
700
|
options?: {
|
|
684
701
|
label: string;
|
|
685
702
|
value: string;
|
|
@@ -877,6 +894,15 @@ declare const SysSetting: Omit<{
|
|
|
877
894
|
value: string;
|
|
878
895
|
color?: string | undefined;
|
|
879
896
|
default?: boolean | undefined;
|
|
897
|
+
visibleWhen?: {
|
|
898
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
899
|
+
source?: string | undefined;
|
|
900
|
+
ast?: unknown;
|
|
901
|
+
meta?: {
|
|
902
|
+
rationale?: string | undefined;
|
|
903
|
+
generatedBy?: string | undefined;
|
|
904
|
+
} | undefined;
|
|
905
|
+
} | undefined;
|
|
880
906
|
}[] | undefined;
|
|
881
907
|
readonly description?: string | undefined;
|
|
882
908
|
readonly label?: string | undefined;
|
|
@@ -894,6 +920,15 @@ declare const SysSetting: Omit<{
|
|
|
894
920
|
readonly system?: boolean | undefined;
|
|
895
921
|
readonly min?: number | undefined;
|
|
896
922
|
readonly max?: number | undefined;
|
|
923
|
+
readonly visibleWhen?: {
|
|
924
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
925
|
+
source?: string | undefined;
|
|
926
|
+
ast?: unknown;
|
|
927
|
+
meta?: {
|
|
928
|
+
rationale?: string | undefined;
|
|
929
|
+
generatedBy?: string | undefined;
|
|
930
|
+
} | undefined;
|
|
931
|
+
} | undefined;
|
|
897
932
|
readonly dimensions?: number | undefined;
|
|
898
933
|
readonly columnName?: string | undefined;
|
|
899
934
|
readonly searchable?: boolean | undefined;
|
|
@@ -1001,15 +1036,6 @@ declare const SysSetting: Omit<{
|
|
|
1001
1036
|
maxVersions?: number | undefined;
|
|
1002
1037
|
} | undefined;
|
|
1003
1038
|
readonly trackHistory?: boolean | undefined;
|
|
1004
|
-
readonly visibleWhen?: {
|
|
1005
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
1006
|
-
source?: string | undefined;
|
|
1007
|
-
ast?: unknown;
|
|
1008
|
-
meta?: {
|
|
1009
|
-
rationale?: string | undefined;
|
|
1010
|
-
generatedBy?: string | undefined;
|
|
1011
|
-
} | undefined;
|
|
1012
|
-
} | undefined;
|
|
1013
1039
|
readonly readonlyWhen?: {
|
|
1014
1040
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1015
1041
|
source?: string | undefined;
|
|
@@ -1051,6 +1077,15 @@ declare const SysSetting: Omit<{
|
|
|
1051
1077
|
value: string;
|
|
1052
1078
|
color?: string | undefined;
|
|
1053
1079
|
default?: boolean | undefined;
|
|
1080
|
+
visibleWhen?: {
|
|
1081
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1082
|
+
source?: string | undefined;
|
|
1083
|
+
ast?: unknown;
|
|
1084
|
+
meta?: {
|
|
1085
|
+
rationale?: string | undefined;
|
|
1086
|
+
generatedBy?: string | undefined;
|
|
1087
|
+
} | undefined;
|
|
1088
|
+
} | undefined;
|
|
1054
1089
|
}[] | undefined;
|
|
1055
1090
|
readonly description?: string | undefined;
|
|
1056
1091
|
readonly label?: string | undefined;
|
|
@@ -1068,6 +1103,15 @@ declare const SysSetting: Omit<{
|
|
|
1068
1103
|
readonly system?: boolean | undefined;
|
|
1069
1104
|
readonly min?: number | undefined;
|
|
1070
1105
|
readonly max?: number | undefined;
|
|
1106
|
+
readonly visibleWhen?: {
|
|
1107
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1108
|
+
source?: string | undefined;
|
|
1109
|
+
ast?: unknown;
|
|
1110
|
+
meta?: {
|
|
1111
|
+
rationale?: string | undefined;
|
|
1112
|
+
generatedBy?: string | undefined;
|
|
1113
|
+
} | undefined;
|
|
1114
|
+
} | undefined;
|
|
1071
1115
|
readonly dimensions?: number | undefined;
|
|
1072
1116
|
readonly columnName?: string | undefined;
|
|
1073
1117
|
readonly searchable?: boolean | undefined;
|
|
@@ -1175,15 +1219,6 @@ declare const SysSetting: Omit<{
|
|
|
1175
1219
|
maxVersions?: number | undefined;
|
|
1176
1220
|
} | undefined;
|
|
1177
1221
|
readonly trackHistory?: boolean | undefined;
|
|
1178
|
-
readonly visibleWhen?: {
|
|
1179
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
1180
|
-
source?: string | undefined;
|
|
1181
|
-
ast?: unknown;
|
|
1182
|
-
meta?: {
|
|
1183
|
-
rationale?: string | undefined;
|
|
1184
|
-
generatedBy?: string | undefined;
|
|
1185
|
-
} | undefined;
|
|
1186
|
-
} | undefined;
|
|
1187
1222
|
readonly readonlyWhen?: {
|
|
1188
1223
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1189
1224
|
source?: string | undefined;
|
|
@@ -1225,6 +1260,15 @@ declare const SysSetting: Omit<{
|
|
|
1225
1260
|
value: string;
|
|
1226
1261
|
color?: string | undefined;
|
|
1227
1262
|
default?: boolean | undefined;
|
|
1263
|
+
visibleWhen?: {
|
|
1264
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1265
|
+
source?: string | undefined;
|
|
1266
|
+
ast?: unknown;
|
|
1267
|
+
meta?: {
|
|
1268
|
+
rationale?: string | undefined;
|
|
1269
|
+
generatedBy?: string | undefined;
|
|
1270
|
+
} | undefined;
|
|
1271
|
+
} | undefined;
|
|
1228
1272
|
}[] | undefined;
|
|
1229
1273
|
readonly description?: string | undefined;
|
|
1230
1274
|
readonly label?: string | undefined;
|
|
@@ -1242,6 +1286,15 @@ declare const SysSetting: Omit<{
|
|
|
1242
1286
|
readonly system?: boolean | undefined;
|
|
1243
1287
|
readonly min?: number | undefined;
|
|
1244
1288
|
readonly max?: number | undefined;
|
|
1289
|
+
readonly visibleWhen?: {
|
|
1290
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1291
|
+
source?: string | undefined;
|
|
1292
|
+
ast?: unknown;
|
|
1293
|
+
meta?: {
|
|
1294
|
+
rationale?: string | undefined;
|
|
1295
|
+
generatedBy?: string | undefined;
|
|
1296
|
+
} | undefined;
|
|
1297
|
+
} | undefined;
|
|
1245
1298
|
readonly dimensions?: number | undefined;
|
|
1246
1299
|
readonly columnName?: string | undefined;
|
|
1247
1300
|
readonly searchable?: boolean | undefined;
|
|
@@ -1349,15 +1402,6 @@ declare const SysSetting: Omit<{
|
|
|
1349
1402
|
maxVersions?: number | undefined;
|
|
1350
1403
|
} | undefined;
|
|
1351
1404
|
readonly trackHistory?: boolean | undefined;
|
|
1352
|
-
readonly visibleWhen?: {
|
|
1353
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
1354
|
-
source?: string | undefined;
|
|
1355
|
-
ast?: unknown;
|
|
1356
|
-
meta?: {
|
|
1357
|
-
rationale?: string | undefined;
|
|
1358
|
-
generatedBy?: string | undefined;
|
|
1359
|
-
} | undefined;
|
|
1360
|
-
} | undefined;
|
|
1361
1405
|
readonly readonlyWhen?: {
|
|
1362
1406
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1363
1407
|
source?: string | undefined;
|
|
@@ -1399,6 +1443,15 @@ declare const SysSetting: Omit<{
|
|
|
1399
1443
|
value: string;
|
|
1400
1444
|
color?: string | undefined;
|
|
1401
1445
|
default?: boolean | undefined;
|
|
1446
|
+
visibleWhen?: {
|
|
1447
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1448
|
+
source?: string | undefined;
|
|
1449
|
+
ast?: unknown;
|
|
1450
|
+
meta?: {
|
|
1451
|
+
rationale?: string | undefined;
|
|
1452
|
+
generatedBy?: string | undefined;
|
|
1453
|
+
} | undefined;
|
|
1454
|
+
} | undefined;
|
|
1402
1455
|
}[] | undefined;
|
|
1403
1456
|
readonly description?: string | undefined;
|
|
1404
1457
|
readonly label?: string | undefined;
|
|
@@ -1416,6 +1469,15 @@ declare const SysSetting: Omit<{
|
|
|
1416
1469
|
readonly system?: boolean | undefined;
|
|
1417
1470
|
readonly min?: number | undefined;
|
|
1418
1471
|
readonly max?: number | undefined;
|
|
1472
|
+
readonly visibleWhen?: {
|
|
1473
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1474
|
+
source?: string | undefined;
|
|
1475
|
+
ast?: unknown;
|
|
1476
|
+
meta?: {
|
|
1477
|
+
rationale?: string | undefined;
|
|
1478
|
+
generatedBy?: string | undefined;
|
|
1479
|
+
} | undefined;
|
|
1480
|
+
} | undefined;
|
|
1419
1481
|
readonly dimensions?: number | undefined;
|
|
1420
1482
|
readonly columnName?: string | undefined;
|
|
1421
1483
|
readonly searchable?: boolean | undefined;
|
|
@@ -1523,15 +1585,6 @@ declare const SysSetting: Omit<{
|
|
|
1523
1585
|
maxVersions?: number | undefined;
|
|
1524
1586
|
} | undefined;
|
|
1525
1587
|
readonly trackHistory?: boolean | undefined;
|
|
1526
|
-
readonly visibleWhen?: {
|
|
1527
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
1528
|
-
source?: string | undefined;
|
|
1529
|
-
ast?: unknown;
|
|
1530
|
-
meta?: {
|
|
1531
|
-
rationale?: string | undefined;
|
|
1532
|
-
generatedBy?: string | undefined;
|
|
1533
|
-
} | undefined;
|
|
1534
|
-
} | undefined;
|
|
1535
1588
|
readonly readonlyWhen?: {
|
|
1536
1589
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1537
1590
|
source?: string | undefined;
|
|
@@ -1573,6 +1626,15 @@ declare const SysSetting: Omit<{
|
|
|
1573
1626
|
value: string;
|
|
1574
1627
|
color?: string | undefined;
|
|
1575
1628
|
default?: boolean | undefined;
|
|
1629
|
+
visibleWhen?: {
|
|
1630
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1631
|
+
source?: string | undefined;
|
|
1632
|
+
ast?: unknown;
|
|
1633
|
+
meta?: {
|
|
1634
|
+
rationale?: string | undefined;
|
|
1635
|
+
generatedBy?: string | undefined;
|
|
1636
|
+
} | undefined;
|
|
1637
|
+
} | undefined;
|
|
1576
1638
|
}[] | undefined;
|
|
1577
1639
|
readonly description?: string | undefined;
|
|
1578
1640
|
readonly label?: string | undefined;
|
|
@@ -1590,6 +1652,15 @@ declare const SysSetting: Omit<{
|
|
|
1590
1652
|
readonly system?: boolean | undefined;
|
|
1591
1653
|
readonly min?: number | undefined;
|
|
1592
1654
|
readonly max?: number | undefined;
|
|
1655
|
+
readonly visibleWhen?: {
|
|
1656
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1657
|
+
source?: string | undefined;
|
|
1658
|
+
ast?: unknown;
|
|
1659
|
+
meta?: {
|
|
1660
|
+
rationale?: string | undefined;
|
|
1661
|
+
generatedBy?: string | undefined;
|
|
1662
|
+
} | undefined;
|
|
1663
|
+
} | undefined;
|
|
1593
1664
|
readonly dimensions?: number | undefined;
|
|
1594
1665
|
readonly columnName?: string | undefined;
|
|
1595
1666
|
readonly searchable?: boolean | undefined;
|
|
@@ -1697,15 +1768,6 @@ declare const SysSetting: Omit<{
|
|
|
1697
1768
|
maxVersions?: number | undefined;
|
|
1698
1769
|
} | undefined;
|
|
1699
1770
|
readonly trackHistory?: boolean | undefined;
|
|
1700
|
-
readonly visibleWhen?: {
|
|
1701
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
1702
|
-
source?: string | undefined;
|
|
1703
|
-
ast?: unknown;
|
|
1704
|
-
meta?: {
|
|
1705
|
-
rationale?: string | undefined;
|
|
1706
|
-
generatedBy?: string | undefined;
|
|
1707
|
-
} | undefined;
|
|
1708
|
-
} | undefined;
|
|
1709
1771
|
readonly readonlyWhen?: {
|
|
1710
1772
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1711
1773
|
source?: string | undefined;
|
|
@@ -1747,6 +1809,15 @@ declare const SysSetting: Omit<{
|
|
|
1747
1809
|
value: string;
|
|
1748
1810
|
color?: string | undefined;
|
|
1749
1811
|
default?: boolean | undefined;
|
|
1812
|
+
visibleWhen?: {
|
|
1813
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1814
|
+
source?: string | undefined;
|
|
1815
|
+
ast?: unknown;
|
|
1816
|
+
meta?: {
|
|
1817
|
+
rationale?: string | undefined;
|
|
1818
|
+
generatedBy?: string | undefined;
|
|
1819
|
+
} | undefined;
|
|
1820
|
+
} | undefined;
|
|
1750
1821
|
}[];
|
|
1751
1822
|
readonly description?: string | undefined;
|
|
1752
1823
|
readonly label?: string | undefined;
|
|
@@ -1764,6 +1835,15 @@ declare const SysSetting: Omit<{
|
|
|
1764
1835
|
readonly system?: boolean | undefined;
|
|
1765
1836
|
readonly min?: number | undefined;
|
|
1766
1837
|
readonly max?: number | undefined;
|
|
1838
|
+
readonly visibleWhen?: {
|
|
1839
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1840
|
+
source?: string | undefined;
|
|
1841
|
+
ast?: unknown;
|
|
1842
|
+
meta?: {
|
|
1843
|
+
rationale?: string | undefined;
|
|
1844
|
+
generatedBy?: string | undefined;
|
|
1845
|
+
} | undefined;
|
|
1846
|
+
} | undefined;
|
|
1767
1847
|
readonly dimensions?: number | undefined;
|
|
1768
1848
|
readonly columnName?: string | undefined;
|
|
1769
1849
|
readonly searchable?: boolean | undefined;
|
|
@@ -1871,15 +1951,6 @@ declare const SysSetting: Omit<{
|
|
|
1871
1951
|
maxVersions?: number | undefined;
|
|
1872
1952
|
} | undefined;
|
|
1873
1953
|
readonly trackHistory?: boolean | undefined;
|
|
1874
|
-
readonly visibleWhen?: {
|
|
1875
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
1876
|
-
source?: string | undefined;
|
|
1877
|
-
ast?: unknown;
|
|
1878
|
-
meta?: {
|
|
1879
|
-
rationale?: string | undefined;
|
|
1880
|
-
generatedBy?: string | undefined;
|
|
1881
|
-
} | undefined;
|
|
1882
|
-
} | undefined;
|
|
1883
1954
|
readonly readonlyWhen?: {
|
|
1884
1955
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1885
1956
|
source?: string | undefined;
|
|
@@ -1921,6 +1992,15 @@ declare const SysSetting: Omit<{
|
|
|
1921
1992
|
value: string;
|
|
1922
1993
|
color?: string | undefined;
|
|
1923
1994
|
default?: boolean | undefined;
|
|
1995
|
+
visibleWhen?: {
|
|
1996
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1997
|
+
source?: string | undefined;
|
|
1998
|
+
ast?: unknown;
|
|
1999
|
+
meta?: {
|
|
2000
|
+
rationale?: string | undefined;
|
|
2001
|
+
generatedBy?: string | undefined;
|
|
2002
|
+
} | undefined;
|
|
2003
|
+
} | undefined;
|
|
1924
2004
|
}[] | undefined;
|
|
1925
2005
|
readonly description?: string | undefined;
|
|
1926
2006
|
readonly label?: string | undefined;
|
|
@@ -1938,6 +2018,15 @@ declare const SysSetting: Omit<{
|
|
|
1938
2018
|
readonly system?: boolean | undefined;
|
|
1939
2019
|
readonly min?: number | undefined;
|
|
1940
2020
|
readonly max?: number | undefined;
|
|
2021
|
+
readonly visibleWhen?: {
|
|
2022
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2023
|
+
source?: string | undefined;
|
|
2024
|
+
ast?: unknown;
|
|
2025
|
+
meta?: {
|
|
2026
|
+
rationale?: string | undefined;
|
|
2027
|
+
generatedBy?: string | undefined;
|
|
2028
|
+
} | undefined;
|
|
2029
|
+
} | undefined;
|
|
1941
2030
|
readonly dimensions?: number | undefined;
|
|
1942
2031
|
readonly columnName?: string | undefined;
|
|
1943
2032
|
readonly searchable?: boolean | undefined;
|
|
@@ -2045,15 +2134,6 @@ declare const SysSetting: Omit<{
|
|
|
2045
2134
|
maxVersions?: number | undefined;
|
|
2046
2135
|
} | undefined;
|
|
2047
2136
|
readonly trackHistory?: boolean | undefined;
|
|
2048
|
-
readonly visibleWhen?: {
|
|
2049
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
2050
|
-
source?: string | undefined;
|
|
2051
|
-
ast?: unknown;
|
|
2052
|
-
meta?: {
|
|
2053
|
-
rationale?: string | undefined;
|
|
2054
|
-
generatedBy?: string | undefined;
|
|
2055
|
-
} | undefined;
|
|
2056
|
-
} | undefined;
|
|
2057
2137
|
readonly readonlyWhen?: {
|
|
2058
2138
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2059
2139
|
source?: string | undefined;
|
|
@@ -2095,6 +2175,15 @@ declare const SysSetting: Omit<{
|
|
|
2095
2175
|
value: string;
|
|
2096
2176
|
color?: string | undefined;
|
|
2097
2177
|
default?: boolean | undefined;
|
|
2178
|
+
visibleWhen?: {
|
|
2179
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2180
|
+
source?: string | undefined;
|
|
2181
|
+
ast?: unknown;
|
|
2182
|
+
meta?: {
|
|
2183
|
+
rationale?: string | undefined;
|
|
2184
|
+
generatedBy?: string | undefined;
|
|
2185
|
+
} | undefined;
|
|
2186
|
+
} | undefined;
|
|
2098
2187
|
}[] | undefined;
|
|
2099
2188
|
readonly description?: string | undefined;
|
|
2100
2189
|
readonly label?: string | undefined;
|
|
@@ -2112,6 +2201,15 @@ declare const SysSetting: Omit<{
|
|
|
2112
2201
|
readonly system?: boolean | undefined;
|
|
2113
2202
|
readonly min?: number | undefined;
|
|
2114
2203
|
readonly max?: number | undefined;
|
|
2204
|
+
readonly visibleWhen?: {
|
|
2205
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2206
|
+
source?: string | undefined;
|
|
2207
|
+
ast?: unknown;
|
|
2208
|
+
meta?: {
|
|
2209
|
+
rationale?: string | undefined;
|
|
2210
|
+
generatedBy?: string | undefined;
|
|
2211
|
+
} | undefined;
|
|
2212
|
+
} | undefined;
|
|
2115
2213
|
readonly dimensions?: number | undefined;
|
|
2116
2214
|
readonly columnName?: string | undefined;
|
|
2117
2215
|
readonly searchable?: boolean | undefined;
|
|
@@ -2219,15 +2317,6 @@ declare const SysSetting: Omit<{
|
|
|
2219
2317
|
maxVersions?: number | undefined;
|
|
2220
2318
|
} | undefined;
|
|
2221
2319
|
readonly trackHistory?: boolean | undefined;
|
|
2222
|
-
readonly visibleWhen?: {
|
|
2223
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
2224
|
-
source?: string | undefined;
|
|
2225
|
-
ast?: unknown;
|
|
2226
|
-
meta?: {
|
|
2227
|
-
rationale?: string | undefined;
|
|
2228
|
-
generatedBy?: string | undefined;
|
|
2229
|
-
} | undefined;
|
|
2230
|
-
} | undefined;
|
|
2231
2320
|
readonly readonlyWhen?: {
|
|
2232
2321
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2233
2322
|
source?: string | undefined;
|
|
@@ -2269,6 +2358,15 @@ declare const SysSetting: Omit<{
|
|
|
2269
2358
|
value: string;
|
|
2270
2359
|
color?: string | undefined;
|
|
2271
2360
|
default?: boolean | undefined;
|
|
2361
|
+
visibleWhen?: {
|
|
2362
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2363
|
+
source?: string | undefined;
|
|
2364
|
+
ast?: unknown;
|
|
2365
|
+
meta?: {
|
|
2366
|
+
rationale?: string | undefined;
|
|
2367
|
+
generatedBy?: string | undefined;
|
|
2368
|
+
} | undefined;
|
|
2369
|
+
} | undefined;
|
|
2272
2370
|
}[] | undefined;
|
|
2273
2371
|
readonly description?: string | undefined;
|
|
2274
2372
|
readonly label?: string | undefined;
|
|
@@ -2286,6 +2384,15 @@ declare const SysSetting: Omit<{
|
|
|
2286
2384
|
readonly system?: boolean | undefined;
|
|
2287
2385
|
readonly min?: number | undefined;
|
|
2288
2386
|
readonly max?: number | undefined;
|
|
2387
|
+
readonly visibleWhen?: {
|
|
2388
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2389
|
+
source?: string | undefined;
|
|
2390
|
+
ast?: unknown;
|
|
2391
|
+
meta?: {
|
|
2392
|
+
rationale?: string | undefined;
|
|
2393
|
+
generatedBy?: string | undefined;
|
|
2394
|
+
} | undefined;
|
|
2395
|
+
} | undefined;
|
|
2289
2396
|
readonly dimensions?: number | undefined;
|
|
2290
2397
|
readonly columnName?: string | undefined;
|
|
2291
2398
|
readonly searchable?: boolean | undefined;
|
|
@@ -2393,15 +2500,6 @@ declare const SysSetting: Omit<{
|
|
|
2393
2500
|
maxVersions?: number | undefined;
|
|
2394
2501
|
} | undefined;
|
|
2395
2502
|
readonly trackHistory?: boolean | undefined;
|
|
2396
|
-
readonly visibleWhen?: {
|
|
2397
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
2398
|
-
source?: string | undefined;
|
|
2399
|
-
ast?: unknown;
|
|
2400
|
-
meta?: {
|
|
2401
|
-
rationale?: string | undefined;
|
|
2402
|
-
generatedBy?: string | undefined;
|
|
2403
|
-
} | undefined;
|
|
2404
|
-
} | undefined;
|
|
2405
2503
|
readonly readonlyWhen?: {
|
|
2406
2504
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2407
2505
|
source?: string | undefined;
|
|
@@ -2443,6 +2541,15 @@ declare const SysSetting: Omit<{
|
|
|
2443
2541
|
value: string;
|
|
2444
2542
|
color?: string | undefined;
|
|
2445
2543
|
default?: boolean | undefined;
|
|
2544
|
+
visibleWhen?: {
|
|
2545
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2546
|
+
source?: string | undefined;
|
|
2547
|
+
ast?: unknown;
|
|
2548
|
+
meta?: {
|
|
2549
|
+
rationale?: string | undefined;
|
|
2550
|
+
generatedBy?: string | undefined;
|
|
2551
|
+
} | undefined;
|
|
2552
|
+
} | undefined;
|
|
2446
2553
|
}[] | undefined;
|
|
2447
2554
|
readonly description?: string | undefined;
|
|
2448
2555
|
readonly label?: string | undefined;
|
|
@@ -2460,6 +2567,15 @@ declare const SysSetting: Omit<{
|
|
|
2460
2567
|
readonly system?: boolean | undefined;
|
|
2461
2568
|
readonly min?: number | undefined;
|
|
2462
2569
|
readonly max?: number | undefined;
|
|
2570
|
+
readonly visibleWhen?: {
|
|
2571
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2572
|
+
source?: string | undefined;
|
|
2573
|
+
ast?: unknown;
|
|
2574
|
+
meta?: {
|
|
2575
|
+
rationale?: string | undefined;
|
|
2576
|
+
generatedBy?: string | undefined;
|
|
2577
|
+
} | undefined;
|
|
2578
|
+
} | undefined;
|
|
2463
2579
|
readonly dimensions?: number | undefined;
|
|
2464
2580
|
readonly columnName?: string | undefined;
|
|
2465
2581
|
readonly searchable?: boolean | undefined;
|
|
@@ -2567,15 +2683,6 @@ declare const SysSetting: Omit<{
|
|
|
2567
2683
|
maxVersions?: number | undefined;
|
|
2568
2684
|
} | undefined;
|
|
2569
2685
|
readonly trackHistory?: boolean | undefined;
|
|
2570
|
-
readonly visibleWhen?: {
|
|
2571
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
2572
|
-
source?: string | undefined;
|
|
2573
|
-
ast?: unknown;
|
|
2574
|
-
meta?: {
|
|
2575
|
-
rationale?: string | undefined;
|
|
2576
|
-
generatedBy?: string | undefined;
|
|
2577
|
-
} | undefined;
|
|
2578
|
-
} | undefined;
|
|
2579
2686
|
readonly readonlyWhen?: {
|
|
2580
2687
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2581
2688
|
source?: string | undefined;
|
|
@@ -2617,6 +2724,15 @@ declare const SysSetting: Omit<{
|
|
|
2617
2724
|
value: string;
|
|
2618
2725
|
color?: string | undefined;
|
|
2619
2726
|
default?: boolean | undefined;
|
|
2727
|
+
visibleWhen?: {
|
|
2728
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2729
|
+
source?: string | undefined;
|
|
2730
|
+
ast?: unknown;
|
|
2731
|
+
meta?: {
|
|
2732
|
+
rationale?: string | undefined;
|
|
2733
|
+
generatedBy?: string | undefined;
|
|
2734
|
+
} | undefined;
|
|
2735
|
+
} | undefined;
|
|
2620
2736
|
}[] | undefined;
|
|
2621
2737
|
readonly description?: string | undefined;
|
|
2622
2738
|
readonly label?: string | undefined;
|
|
@@ -2634,6 +2750,15 @@ declare const SysSetting: Omit<{
|
|
|
2634
2750
|
readonly system?: boolean | undefined;
|
|
2635
2751
|
readonly min?: number | undefined;
|
|
2636
2752
|
readonly max?: number | undefined;
|
|
2753
|
+
readonly visibleWhen?: {
|
|
2754
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2755
|
+
source?: string | undefined;
|
|
2756
|
+
ast?: unknown;
|
|
2757
|
+
meta?: {
|
|
2758
|
+
rationale?: string | undefined;
|
|
2759
|
+
generatedBy?: string | undefined;
|
|
2760
|
+
} | undefined;
|
|
2761
|
+
} | undefined;
|
|
2637
2762
|
readonly dimensions?: number | undefined;
|
|
2638
2763
|
readonly columnName?: string | undefined;
|
|
2639
2764
|
readonly searchable?: boolean | undefined;
|
|
@@ -2741,15 +2866,6 @@ declare const SysSetting: Omit<{
|
|
|
2741
2866
|
maxVersions?: number | undefined;
|
|
2742
2867
|
} | undefined;
|
|
2743
2868
|
readonly trackHistory?: boolean | undefined;
|
|
2744
|
-
readonly visibleWhen?: {
|
|
2745
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
2746
|
-
source?: string | undefined;
|
|
2747
|
-
ast?: unknown;
|
|
2748
|
-
meta?: {
|
|
2749
|
-
rationale?: string | undefined;
|
|
2750
|
-
generatedBy?: string | undefined;
|
|
2751
|
-
} | undefined;
|
|
2752
|
-
} | undefined;
|
|
2753
2869
|
readonly readonlyWhen?: {
|
|
2754
2870
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2755
2871
|
source?: string | undefined;
|
|
@@ -2791,6 +2907,15 @@ declare const SysSetting: Omit<{
|
|
|
2791
2907
|
value: string;
|
|
2792
2908
|
color?: string | undefined;
|
|
2793
2909
|
default?: boolean | undefined;
|
|
2910
|
+
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;
|
|
2794
2919
|
}[] | undefined;
|
|
2795
2920
|
readonly description?: string | undefined;
|
|
2796
2921
|
readonly label?: string | undefined;
|
|
@@ -2808,6 +2933,15 @@ declare const SysSetting: Omit<{
|
|
|
2808
2933
|
readonly system?: boolean | undefined;
|
|
2809
2934
|
readonly min?: number | undefined;
|
|
2810
2935
|
readonly max?: number | undefined;
|
|
2936
|
+
readonly visibleWhen?: {
|
|
2937
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2938
|
+
source?: string | undefined;
|
|
2939
|
+
ast?: unknown;
|
|
2940
|
+
meta?: {
|
|
2941
|
+
rationale?: string | undefined;
|
|
2942
|
+
generatedBy?: string | undefined;
|
|
2943
|
+
} | undefined;
|
|
2944
|
+
} | undefined;
|
|
2811
2945
|
readonly dimensions?: number | undefined;
|
|
2812
2946
|
readonly columnName?: string | undefined;
|
|
2813
2947
|
readonly searchable?: boolean | undefined;
|
|
@@ -2915,15 +3049,6 @@ declare const SysSetting: Omit<{
|
|
|
2915
3049
|
maxVersions?: number | undefined;
|
|
2916
3050
|
} | undefined;
|
|
2917
3051
|
readonly trackHistory?: boolean | undefined;
|
|
2918
|
-
readonly visibleWhen?: {
|
|
2919
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
2920
|
-
source?: string | undefined;
|
|
2921
|
-
ast?: unknown;
|
|
2922
|
-
meta?: {
|
|
2923
|
-
rationale?: string | undefined;
|
|
2924
|
-
generatedBy?: string | undefined;
|
|
2925
|
-
} | undefined;
|
|
2926
|
-
} | undefined;
|
|
2927
3052
|
readonly readonlyWhen?: {
|
|
2928
3053
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2929
3054
|
source?: string | undefined;
|
|
@@ -2965,6 +3090,15 @@ declare const SysSetting: Omit<{
|
|
|
2965
3090
|
value: string;
|
|
2966
3091
|
color?: string | undefined;
|
|
2967
3092
|
default?: boolean | undefined;
|
|
3093
|
+
visibleWhen?: {
|
|
3094
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3095
|
+
source?: string | undefined;
|
|
3096
|
+
ast?: unknown;
|
|
3097
|
+
meta?: {
|
|
3098
|
+
rationale?: string | undefined;
|
|
3099
|
+
generatedBy?: string | undefined;
|
|
3100
|
+
} | undefined;
|
|
3101
|
+
} | undefined;
|
|
2968
3102
|
}[] | undefined;
|
|
2969
3103
|
readonly description?: string | undefined;
|
|
2970
3104
|
readonly label?: string | undefined;
|
|
@@ -2982,6 +3116,15 @@ declare const SysSetting: Omit<{
|
|
|
2982
3116
|
readonly system?: boolean | undefined;
|
|
2983
3117
|
readonly min?: number | undefined;
|
|
2984
3118
|
readonly max?: number | undefined;
|
|
3119
|
+
readonly visibleWhen?: {
|
|
3120
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3121
|
+
source?: string | undefined;
|
|
3122
|
+
ast?: unknown;
|
|
3123
|
+
meta?: {
|
|
3124
|
+
rationale?: string | undefined;
|
|
3125
|
+
generatedBy?: string | undefined;
|
|
3126
|
+
} | undefined;
|
|
3127
|
+
} | undefined;
|
|
2985
3128
|
readonly dimensions?: number | undefined;
|
|
2986
3129
|
readonly columnName?: string | undefined;
|
|
2987
3130
|
readonly searchable?: boolean | undefined;
|
|
@@ -3089,16 +3232,7 @@ declare const SysSetting: Omit<{
|
|
|
3089
3232
|
maxVersions?: number | undefined;
|
|
3090
3233
|
} | undefined;
|
|
3091
3234
|
readonly trackHistory?: boolean | undefined;
|
|
3092
|
-
readonly
|
|
3093
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
3094
|
-
source?: string | undefined;
|
|
3095
|
-
ast?: unknown;
|
|
3096
|
-
meta?: {
|
|
3097
|
-
rationale?: string | undefined;
|
|
3098
|
-
generatedBy?: string | undefined;
|
|
3099
|
-
} | undefined;
|
|
3100
|
-
} | undefined;
|
|
3101
|
-
readonly readonlyWhen?: {
|
|
3235
|
+
readonly readonlyWhen?: {
|
|
3102
3236
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3103
3237
|
source?: string | undefined;
|
|
3104
3238
|
ast?: unknown;
|
|
@@ -3186,7 +3320,7 @@ declare const SysSecret: Omit<{
|
|
|
3186
3320
|
abstract: boolean;
|
|
3187
3321
|
datasource: string;
|
|
3188
3322
|
fields: Record<string, {
|
|
3189
|
-
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "
|
|
3323
|
+
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "email" | "time" | "secret" | "user" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
3190
3324
|
required: boolean;
|
|
3191
3325
|
searchable: boolean;
|
|
3192
3326
|
multiple: boolean;
|
|
@@ -3214,6 +3348,23 @@ declare const SysSecret: Omit<{
|
|
|
3214
3348
|
value: string;
|
|
3215
3349
|
color?: string | undefined;
|
|
3216
3350
|
default?: boolean | undefined;
|
|
3351
|
+
visibleWhen?: {
|
|
3352
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3353
|
+
source?: string | undefined;
|
|
3354
|
+
ast?: unknown;
|
|
3355
|
+
meta?: {
|
|
3356
|
+
rationale?: string | undefined;
|
|
3357
|
+
generatedBy?: string | undefined;
|
|
3358
|
+
} | undefined;
|
|
3359
|
+
} | {
|
|
3360
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3361
|
+
source?: string | undefined;
|
|
3362
|
+
ast?: unknown;
|
|
3363
|
+
meta?: {
|
|
3364
|
+
rationale?: string | undefined;
|
|
3365
|
+
generatedBy?: string | undefined;
|
|
3366
|
+
} | undefined;
|
|
3367
|
+
} | undefined;
|
|
3217
3368
|
}[] | undefined;
|
|
3218
3369
|
reference?: string | undefined;
|
|
3219
3370
|
referenceFilters?: string[] | undefined;
|
|
@@ -3829,7 +3980,7 @@ declare const SysSecret: Omit<{
|
|
|
3829
3980
|
field?: string | undefined;
|
|
3830
3981
|
objectOverride?: string | undefined;
|
|
3831
3982
|
label?: string | undefined;
|
|
3832
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "
|
|
3983
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "email" | "time" | "secret" | "user" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
3833
3984
|
options?: {
|
|
3834
3985
|
label: string;
|
|
3835
3986
|
value: string;
|
|
@@ -3936,6 +4087,15 @@ declare const SysSecret: Omit<{
|
|
|
3936
4087
|
value: string;
|
|
3937
4088
|
color?: string | undefined;
|
|
3938
4089
|
default?: boolean | undefined;
|
|
4090
|
+
visibleWhen?: {
|
|
4091
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4092
|
+
source?: string | undefined;
|
|
4093
|
+
ast?: unknown;
|
|
4094
|
+
meta?: {
|
|
4095
|
+
rationale?: string | undefined;
|
|
4096
|
+
generatedBy?: string | undefined;
|
|
4097
|
+
} | undefined;
|
|
4098
|
+
} | undefined;
|
|
3939
4099
|
}[] | undefined;
|
|
3940
4100
|
readonly description?: string | undefined;
|
|
3941
4101
|
readonly label?: string | undefined;
|
|
@@ -3953,6 +4113,15 @@ declare const SysSecret: Omit<{
|
|
|
3953
4113
|
readonly system?: boolean | undefined;
|
|
3954
4114
|
readonly min?: number | undefined;
|
|
3955
4115
|
readonly max?: number | undefined;
|
|
4116
|
+
readonly visibleWhen?: {
|
|
4117
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4118
|
+
source?: string | undefined;
|
|
4119
|
+
ast?: unknown;
|
|
4120
|
+
meta?: {
|
|
4121
|
+
rationale?: string | undefined;
|
|
4122
|
+
generatedBy?: string | undefined;
|
|
4123
|
+
} | undefined;
|
|
4124
|
+
} | undefined;
|
|
3956
4125
|
readonly dimensions?: number | undefined;
|
|
3957
4126
|
readonly columnName?: string | undefined;
|
|
3958
4127
|
readonly searchable?: boolean | undefined;
|
|
@@ -4060,15 +4229,6 @@ declare const SysSecret: Omit<{
|
|
|
4060
4229
|
maxVersions?: number | undefined;
|
|
4061
4230
|
} | undefined;
|
|
4062
4231
|
readonly trackHistory?: boolean | undefined;
|
|
4063
|
-
readonly visibleWhen?: {
|
|
4064
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
4065
|
-
source?: string | undefined;
|
|
4066
|
-
ast?: unknown;
|
|
4067
|
-
meta?: {
|
|
4068
|
-
rationale?: string | undefined;
|
|
4069
|
-
generatedBy?: string | undefined;
|
|
4070
|
-
} | undefined;
|
|
4071
|
-
} | undefined;
|
|
4072
4232
|
readonly readonlyWhen?: {
|
|
4073
4233
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4074
4234
|
source?: string | undefined;
|
|
@@ -4110,6 +4270,15 @@ declare const SysSecret: Omit<{
|
|
|
4110
4270
|
value: string;
|
|
4111
4271
|
color?: string | undefined;
|
|
4112
4272
|
default?: boolean | undefined;
|
|
4273
|
+
visibleWhen?: {
|
|
4274
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4275
|
+
source?: string | undefined;
|
|
4276
|
+
ast?: unknown;
|
|
4277
|
+
meta?: {
|
|
4278
|
+
rationale?: string | undefined;
|
|
4279
|
+
generatedBy?: string | undefined;
|
|
4280
|
+
} | undefined;
|
|
4281
|
+
} | undefined;
|
|
4113
4282
|
}[] | undefined;
|
|
4114
4283
|
readonly description?: string | undefined;
|
|
4115
4284
|
readonly label?: string | undefined;
|
|
@@ -4127,6 +4296,15 @@ declare const SysSecret: Omit<{
|
|
|
4127
4296
|
readonly system?: boolean | undefined;
|
|
4128
4297
|
readonly min?: number | undefined;
|
|
4129
4298
|
readonly max?: number | undefined;
|
|
4299
|
+
readonly visibleWhen?: {
|
|
4300
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4301
|
+
source?: string | undefined;
|
|
4302
|
+
ast?: unknown;
|
|
4303
|
+
meta?: {
|
|
4304
|
+
rationale?: string | undefined;
|
|
4305
|
+
generatedBy?: string | undefined;
|
|
4306
|
+
} | undefined;
|
|
4307
|
+
} | undefined;
|
|
4130
4308
|
readonly dimensions?: number | undefined;
|
|
4131
4309
|
readonly columnName?: string | undefined;
|
|
4132
4310
|
readonly searchable?: boolean | undefined;
|
|
@@ -4234,15 +4412,6 @@ declare const SysSecret: Omit<{
|
|
|
4234
4412
|
maxVersions?: number | undefined;
|
|
4235
4413
|
} | undefined;
|
|
4236
4414
|
readonly trackHistory?: boolean | undefined;
|
|
4237
|
-
readonly visibleWhen?: {
|
|
4238
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
4239
|
-
source?: string | undefined;
|
|
4240
|
-
ast?: unknown;
|
|
4241
|
-
meta?: {
|
|
4242
|
-
rationale?: string | undefined;
|
|
4243
|
-
generatedBy?: string | undefined;
|
|
4244
|
-
} | undefined;
|
|
4245
|
-
} | undefined;
|
|
4246
4415
|
readonly readonlyWhen?: {
|
|
4247
4416
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4248
4417
|
source?: string | undefined;
|
|
@@ -4284,6 +4453,15 @@ declare const SysSecret: Omit<{
|
|
|
4284
4453
|
value: string;
|
|
4285
4454
|
color?: string | undefined;
|
|
4286
4455
|
default?: boolean | undefined;
|
|
4456
|
+
visibleWhen?: {
|
|
4457
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4458
|
+
source?: string | undefined;
|
|
4459
|
+
ast?: unknown;
|
|
4460
|
+
meta?: {
|
|
4461
|
+
rationale?: string | undefined;
|
|
4462
|
+
generatedBy?: string | undefined;
|
|
4463
|
+
} | undefined;
|
|
4464
|
+
} | undefined;
|
|
4287
4465
|
}[] | undefined;
|
|
4288
4466
|
readonly description?: string | undefined;
|
|
4289
4467
|
readonly label?: string | undefined;
|
|
@@ -4301,6 +4479,15 @@ declare const SysSecret: Omit<{
|
|
|
4301
4479
|
readonly system?: boolean | undefined;
|
|
4302
4480
|
readonly min?: number | undefined;
|
|
4303
4481
|
readonly max?: number | undefined;
|
|
4482
|
+
readonly visibleWhen?: {
|
|
4483
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4484
|
+
source?: string | undefined;
|
|
4485
|
+
ast?: unknown;
|
|
4486
|
+
meta?: {
|
|
4487
|
+
rationale?: string | undefined;
|
|
4488
|
+
generatedBy?: string | undefined;
|
|
4489
|
+
} | undefined;
|
|
4490
|
+
} | undefined;
|
|
4304
4491
|
readonly dimensions?: number | undefined;
|
|
4305
4492
|
readonly columnName?: string | undefined;
|
|
4306
4493
|
readonly searchable?: boolean | undefined;
|
|
@@ -4408,15 +4595,6 @@ declare const SysSecret: Omit<{
|
|
|
4408
4595
|
maxVersions?: number | undefined;
|
|
4409
4596
|
} | undefined;
|
|
4410
4597
|
readonly trackHistory?: boolean | undefined;
|
|
4411
|
-
readonly visibleWhen?: {
|
|
4412
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
4413
|
-
source?: string | undefined;
|
|
4414
|
-
ast?: unknown;
|
|
4415
|
-
meta?: {
|
|
4416
|
-
rationale?: string | undefined;
|
|
4417
|
-
generatedBy?: string | undefined;
|
|
4418
|
-
} | undefined;
|
|
4419
|
-
} | undefined;
|
|
4420
4598
|
readonly readonlyWhen?: {
|
|
4421
4599
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4422
4600
|
source?: string | undefined;
|
|
@@ -4464,6 +4642,15 @@ declare const SysSecret: Omit<{
|
|
|
4464
4642
|
value: string;
|
|
4465
4643
|
color?: string | undefined;
|
|
4466
4644
|
default?: boolean | undefined;
|
|
4645
|
+
visibleWhen?: {
|
|
4646
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4647
|
+
source?: string | undefined;
|
|
4648
|
+
ast?: unknown;
|
|
4649
|
+
meta?: {
|
|
4650
|
+
rationale?: string | undefined;
|
|
4651
|
+
generatedBy?: string | undefined;
|
|
4652
|
+
} | undefined;
|
|
4653
|
+
} | undefined;
|
|
4467
4654
|
}[] | undefined;
|
|
4468
4655
|
readonly description?: string | undefined;
|
|
4469
4656
|
readonly label?: string | undefined;
|
|
@@ -4481,6 +4668,15 @@ declare const SysSecret: Omit<{
|
|
|
4481
4668
|
readonly system?: boolean | undefined;
|
|
4482
4669
|
readonly min?: number | undefined;
|
|
4483
4670
|
readonly max?: number | undefined;
|
|
4671
|
+
readonly visibleWhen?: {
|
|
4672
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4673
|
+
source?: string | undefined;
|
|
4674
|
+
ast?: unknown;
|
|
4675
|
+
meta?: {
|
|
4676
|
+
rationale?: string | undefined;
|
|
4677
|
+
generatedBy?: string | undefined;
|
|
4678
|
+
} | undefined;
|
|
4679
|
+
} | undefined;
|
|
4484
4680
|
readonly dimensions?: number | undefined;
|
|
4485
4681
|
readonly columnName?: string | undefined;
|
|
4486
4682
|
readonly searchable?: boolean | undefined;
|
|
@@ -4588,15 +4784,6 @@ declare const SysSecret: Omit<{
|
|
|
4588
4784
|
maxVersions?: number | undefined;
|
|
4589
4785
|
} | undefined;
|
|
4590
4786
|
readonly trackHistory?: boolean | undefined;
|
|
4591
|
-
readonly visibleWhen?: {
|
|
4592
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
4593
|
-
source?: string | undefined;
|
|
4594
|
-
ast?: unknown;
|
|
4595
|
-
meta?: {
|
|
4596
|
-
rationale?: string | undefined;
|
|
4597
|
-
generatedBy?: string | undefined;
|
|
4598
|
-
} | undefined;
|
|
4599
|
-
} | undefined;
|
|
4600
4787
|
readonly readonlyWhen?: {
|
|
4601
4788
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4602
4789
|
source?: string | undefined;
|
|
@@ -4638,6 +4825,15 @@ declare const SysSecret: Omit<{
|
|
|
4638
4825
|
value: string;
|
|
4639
4826
|
color?: string | undefined;
|
|
4640
4827
|
default?: boolean | undefined;
|
|
4828
|
+
visibleWhen?: {
|
|
4829
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4830
|
+
source?: string | undefined;
|
|
4831
|
+
ast?: unknown;
|
|
4832
|
+
meta?: {
|
|
4833
|
+
rationale?: string | undefined;
|
|
4834
|
+
generatedBy?: string | undefined;
|
|
4835
|
+
} | undefined;
|
|
4836
|
+
} | undefined;
|
|
4641
4837
|
}[] | undefined;
|
|
4642
4838
|
readonly description?: string | undefined;
|
|
4643
4839
|
readonly label?: string | undefined;
|
|
@@ -4655,6 +4851,15 @@ declare const SysSecret: Omit<{
|
|
|
4655
4851
|
readonly system?: boolean | undefined;
|
|
4656
4852
|
readonly min?: number | undefined;
|
|
4657
4853
|
readonly max?: number | undefined;
|
|
4854
|
+
readonly visibleWhen?: {
|
|
4855
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4856
|
+
source?: string | undefined;
|
|
4857
|
+
ast?: unknown;
|
|
4858
|
+
meta?: {
|
|
4859
|
+
rationale?: string | undefined;
|
|
4860
|
+
generatedBy?: string | undefined;
|
|
4861
|
+
} | undefined;
|
|
4862
|
+
} | undefined;
|
|
4658
4863
|
readonly dimensions?: number | undefined;
|
|
4659
4864
|
readonly columnName?: string | undefined;
|
|
4660
4865
|
readonly searchable?: boolean | undefined;
|
|
@@ -4762,15 +4967,6 @@ declare const SysSecret: Omit<{
|
|
|
4762
4967
|
maxVersions?: number | undefined;
|
|
4763
4968
|
} | undefined;
|
|
4764
4969
|
readonly trackHistory?: boolean | undefined;
|
|
4765
|
-
readonly visibleWhen?: {
|
|
4766
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
4767
|
-
source?: string | undefined;
|
|
4768
|
-
ast?: unknown;
|
|
4769
|
-
meta?: {
|
|
4770
|
-
rationale?: string | undefined;
|
|
4771
|
-
generatedBy?: string | undefined;
|
|
4772
|
-
} | undefined;
|
|
4773
|
-
} | undefined;
|
|
4774
4970
|
readonly readonlyWhen?: {
|
|
4775
4971
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4776
4972
|
source?: string | undefined;
|
|
@@ -4813,6 +5009,15 @@ declare const SysSecret: Omit<{
|
|
|
4813
5009
|
value: string;
|
|
4814
5010
|
color?: string | undefined;
|
|
4815
5011
|
default?: boolean | undefined;
|
|
5012
|
+
visibleWhen?: {
|
|
5013
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5014
|
+
source?: string | undefined;
|
|
5015
|
+
ast?: unknown;
|
|
5016
|
+
meta?: {
|
|
5017
|
+
rationale?: string | undefined;
|
|
5018
|
+
generatedBy?: string | undefined;
|
|
5019
|
+
} | undefined;
|
|
5020
|
+
} | undefined;
|
|
4816
5021
|
}[] | undefined;
|
|
4817
5022
|
readonly description?: string | undefined;
|
|
4818
5023
|
readonly label?: string | undefined;
|
|
@@ -4830,6 +5035,15 @@ declare const SysSecret: Omit<{
|
|
|
4830
5035
|
readonly system?: boolean | undefined;
|
|
4831
5036
|
readonly min?: number | undefined;
|
|
4832
5037
|
readonly max?: number | undefined;
|
|
5038
|
+
readonly visibleWhen?: {
|
|
5039
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5040
|
+
source?: string | undefined;
|
|
5041
|
+
ast?: unknown;
|
|
5042
|
+
meta?: {
|
|
5043
|
+
rationale?: string | undefined;
|
|
5044
|
+
generatedBy?: string | undefined;
|
|
5045
|
+
} | undefined;
|
|
5046
|
+
} | undefined;
|
|
4833
5047
|
readonly dimensions?: number | undefined;
|
|
4834
5048
|
readonly columnName?: string | undefined;
|
|
4835
5049
|
readonly searchable?: boolean | undefined;
|
|
@@ -4937,15 +5151,6 @@ declare const SysSecret: Omit<{
|
|
|
4937
5151
|
maxVersions?: number | undefined;
|
|
4938
5152
|
} | undefined;
|
|
4939
5153
|
readonly trackHistory?: boolean | undefined;
|
|
4940
|
-
readonly visibleWhen?: {
|
|
4941
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
4942
|
-
source?: string | undefined;
|
|
4943
|
-
ast?: unknown;
|
|
4944
|
-
meta?: {
|
|
4945
|
-
rationale?: string | undefined;
|
|
4946
|
-
generatedBy?: string | undefined;
|
|
4947
|
-
} | undefined;
|
|
4948
|
-
} | undefined;
|
|
4949
5154
|
readonly readonlyWhen?: {
|
|
4950
5155
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4951
5156
|
source?: string | undefined;
|
|
@@ -4988,6 +5193,15 @@ declare const SysSecret: Omit<{
|
|
|
4988
5193
|
value: string;
|
|
4989
5194
|
color?: string | undefined;
|
|
4990
5195
|
default?: boolean | undefined;
|
|
5196
|
+
visibleWhen?: {
|
|
5197
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5198
|
+
source?: string | undefined;
|
|
5199
|
+
ast?: unknown;
|
|
5200
|
+
meta?: {
|
|
5201
|
+
rationale?: string | undefined;
|
|
5202
|
+
generatedBy?: string | undefined;
|
|
5203
|
+
} | undefined;
|
|
5204
|
+
} | undefined;
|
|
4991
5205
|
}[] | undefined;
|
|
4992
5206
|
readonly description?: string | undefined;
|
|
4993
5207
|
readonly label?: string | undefined;
|
|
@@ -5005,6 +5219,15 @@ declare const SysSecret: Omit<{
|
|
|
5005
5219
|
readonly system?: boolean | undefined;
|
|
5006
5220
|
readonly min?: number | undefined;
|
|
5007
5221
|
readonly max?: number | undefined;
|
|
5222
|
+
readonly visibleWhen?: {
|
|
5223
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5224
|
+
source?: string | undefined;
|
|
5225
|
+
ast?: unknown;
|
|
5226
|
+
meta?: {
|
|
5227
|
+
rationale?: string | undefined;
|
|
5228
|
+
generatedBy?: string | undefined;
|
|
5229
|
+
} | undefined;
|
|
5230
|
+
} | undefined;
|
|
5008
5231
|
readonly dimensions?: number | undefined;
|
|
5009
5232
|
readonly columnName?: string | undefined;
|
|
5010
5233
|
readonly searchable?: boolean | undefined;
|
|
@@ -5112,15 +5335,6 @@ declare const SysSecret: Omit<{
|
|
|
5112
5335
|
maxVersions?: number | undefined;
|
|
5113
5336
|
} | undefined;
|
|
5114
5337
|
readonly trackHistory?: boolean | undefined;
|
|
5115
|
-
readonly visibleWhen?: {
|
|
5116
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
5117
|
-
source?: string | undefined;
|
|
5118
|
-
ast?: unknown;
|
|
5119
|
-
meta?: {
|
|
5120
|
-
rationale?: string | undefined;
|
|
5121
|
-
generatedBy?: string | undefined;
|
|
5122
|
-
} | undefined;
|
|
5123
|
-
} | undefined;
|
|
5124
5338
|
readonly readonlyWhen?: {
|
|
5125
5339
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5126
5340
|
source?: string | undefined;
|
|
@@ -5163,6 +5377,15 @@ declare const SysSecret: Omit<{
|
|
|
5163
5377
|
value: string;
|
|
5164
5378
|
color?: string | undefined;
|
|
5165
5379
|
default?: boolean | undefined;
|
|
5380
|
+
visibleWhen?: {
|
|
5381
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5382
|
+
source?: string | undefined;
|
|
5383
|
+
ast?: unknown;
|
|
5384
|
+
meta?: {
|
|
5385
|
+
rationale?: string | undefined;
|
|
5386
|
+
generatedBy?: string | undefined;
|
|
5387
|
+
} | undefined;
|
|
5388
|
+
} | undefined;
|
|
5166
5389
|
}[] | undefined;
|
|
5167
5390
|
readonly description?: string | undefined;
|
|
5168
5391
|
readonly label?: string | undefined;
|
|
@@ -5180,6 +5403,15 @@ declare const SysSecret: Omit<{
|
|
|
5180
5403
|
readonly system?: boolean | undefined;
|
|
5181
5404
|
readonly min?: number | undefined;
|
|
5182
5405
|
readonly max?: number | undefined;
|
|
5406
|
+
readonly visibleWhen?: {
|
|
5407
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5408
|
+
source?: string | undefined;
|
|
5409
|
+
ast?: unknown;
|
|
5410
|
+
meta?: {
|
|
5411
|
+
rationale?: string | undefined;
|
|
5412
|
+
generatedBy?: string | undefined;
|
|
5413
|
+
} | undefined;
|
|
5414
|
+
} | undefined;
|
|
5183
5415
|
readonly dimensions?: number | undefined;
|
|
5184
5416
|
readonly columnName?: string | undefined;
|
|
5185
5417
|
readonly searchable?: boolean | undefined;
|
|
@@ -5287,15 +5519,6 @@ declare const SysSecret: Omit<{
|
|
|
5287
5519
|
maxVersions?: number | undefined;
|
|
5288
5520
|
} | undefined;
|
|
5289
5521
|
readonly trackHistory?: boolean | undefined;
|
|
5290
|
-
readonly visibleWhen?: {
|
|
5291
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
5292
|
-
source?: string | undefined;
|
|
5293
|
-
ast?: unknown;
|
|
5294
|
-
meta?: {
|
|
5295
|
-
rationale?: string | undefined;
|
|
5296
|
-
generatedBy?: string | undefined;
|
|
5297
|
-
} | undefined;
|
|
5298
|
-
} | undefined;
|
|
5299
5522
|
readonly readonlyWhen?: {
|
|
5300
5523
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5301
5524
|
source?: string | undefined;
|
|
@@ -5337,6 +5560,15 @@ declare const SysSecret: Omit<{
|
|
|
5337
5560
|
value: string;
|
|
5338
5561
|
color?: string | undefined;
|
|
5339
5562
|
default?: boolean | undefined;
|
|
5563
|
+
visibleWhen?: {
|
|
5564
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5565
|
+
source?: string | undefined;
|
|
5566
|
+
ast?: unknown;
|
|
5567
|
+
meta?: {
|
|
5568
|
+
rationale?: string | undefined;
|
|
5569
|
+
generatedBy?: string | undefined;
|
|
5570
|
+
} | undefined;
|
|
5571
|
+
} | undefined;
|
|
5340
5572
|
}[] | undefined;
|
|
5341
5573
|
readonly description?: string | undefined;
|
|
5342
5574
|
readonly label?: string | undefined;
|
|
@@ -5354,6 +5586,15 @@ declare const SysSecret: Omit<{
|
|
|
5354
5586
|
readonly system?: boolean | undefined;
|
|
5355
5587
|
readonly min?: number | undefined;
|
|
5356
5588
|
readonly max?: number | undefined;
|
|
5589
|
+
readonly visibleWhen?: {
|
|
5590
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5591
|
+
source?: string | undefined;
|
|
5592
|
+
ast?: unknown;
|
|
5593
|
+
meta?: {
|
|
5594
|
+
rationale?: string | undefined;
|
|
5595
|
+
generatedBy?: string | undefined;
|
|
5596
|
+
} | undefined;
|
|
5597
|
+
} | undefined;
|
|
5357
5598
|
readonly dimensions?: number | undefined;
|
|
5358
5599
|
readonly columnName?: string | undefined;
|
|
5359
5600
|
readonly searchable?: boolean | undefined;
|
|
@@ -5461,15 +5702,6 @@ declare const SysSecret: Omit<{
|
|
|
5461
5702
|
maxVersions?: number | undefined;
|
|
5462
5703
|
} | undefined;
|
|
5463
5704
|
readonly trackHistory?: boolean | undefined;
|
|
5464
|
-
readonly visibleWhen?: {
|
|
5465
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
5466
|
-
source?: string | undefined;
|
|
5467
|
-
ast?: unknown;
|
|
5468
|
-
meta?: {
|
|
5469
|
-
rationale?: string | undefined;
|
|
5470
|
-
generatedBy?: string | undefined;
|
|
5471
|
-
} | undefined;
|
|
5472
|
-
} | undefined;
|
|
5473
5705
|
readonly readonlyWhen?: {
|
|
5474
5706
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5475
5707
|
source?: string | undefined;
|
|
@@ -5548,7 +5780,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
5548
5780
|
abstract: boolean;
|
|
5549
5781
|
datasource: string;
|
|
5550
5782
|
fields: Record<string, {
|
|
5551
|
-
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "
|
|
5783
|
+
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "email" | "time" | "secret" | "user" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
5552
5784
|
required: boolean;
|
|
5553
5785
|
searchable: boolean;
|
|
5554
5786
|
multiple: boolean;
|
|
@@ -5576,6 +5808,23 @@ declare const SysSettingAudit: Omit<{
|
|
|
5576
5808
|
value: string;
|
|
5577
5809
|
color?: string | undefined;
|
|
5578
5810
|
default?: boolean | undefined;
|
|
5811
|
+
visibleWhen?: {
|
|
5812
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5813
|
+
source?: string | undefined;
|
|
5814
|
+
ast?: unknown;
|
|
5815
|
+
meta?: {
|
|
5816
|
+
rationale?: string | undefined;
|
|
5817
|
+
generatedBy?: string | undefined;
|
|
5818
|
+
} | undefined;
|
|
5819
|
+
} | {
|
|
5820
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5821
|
+
source?: string | undefined;
|
|
5822
|
+
ast?: unknown;
|
|
5823
|
+
meta?: {
|
|
5824
|
+
rationale?: string | undefined;
|
|
5825
|
+
generatedBy?: string | undefined;
|
|
5826
|
+
} | undefined;
|
|
5827
|
+
} | undefined;
|
|
5579
5828
|
}[] | undefined;
|
|
5580
5829
|
reference?: string | undefined;
|
|
5581
5830
|
referenceFilters?: string[] | undefined;
|
|
@@ -6191,7 +6440,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
6191
6440
|
field?: string | undefined;
|
|
6192
6441
|
objectOverride?: string | undefined;
|
|
6193
6442
|
label?: string | undefined;
|
|
6194
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "
|
|
6443
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "email" | "time" | "secret" | "user" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
6195
6444
|
options?: {
|
|
6196
6445
|
label: string;
|
|
6197
6446
|
value: string;
|
|
@@ -6302,6 +6551,15 @@ declare const SysSettingAudit: Omit<{
|
|
|
6302
6551
|
value: string;
|
|
6303
6552
|
color?: string | undefined;
|
|
6304
6553
|
default?: boolean | undefined;
|
|
6554
|
+
visibleWhen?: {
|
|
6555
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6556
|
+
source?: string | undefined;
|
|
6557
|
+
ast?: unknown;
|
|
6558
|
+
meta?: {
|
|
6559
|
+
rationale?: string | undefined;
|
|
6560
|
+
generatedBy?: string | undefined;
|
|
6561
|
+
} | undefined;
|
|
6562
|
+
} | undefined;
|
|
6305
6563
|
}[] | undefined;
|
|
6306
6564
|
readonly description?: string | undefined;
|
|
6307
6565
|
readonly label?: string | undefined;
|
|
@@ -6319,6 +6577,15 @@ declare const SysSettingAudit: Omit<{
|
|
|
6319
6577
|
readonly system?: boolean | undefined;
|
|
6320
6578
|
readonly min?: number | undefined;
|
|
6321
6579
|
readonly max?: number | undefined;
|
|
6580
|
+
readonly visibleWhen?: {
|
|
6581
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6582
|
+
source?: string | undefined;
|
|
6583
|
+
ast?: unknown;
|
|
6584
|
+
meta?: {
|
|
6585
|
+
rationale?: string | undefined;
|
|
6586
|
+
generatedBy?: string | undefined;
|
|
6587
|
+
} | undefined;
|
|
6588
|
+
} | undefined;
|
|
6322
6589
|
readonly dimensions?: number | undefined;
|
|
6323
6590
|
readonly columnName?: string | undefined;
|
|
6324
6591
|
readonly searchable?: boolean | undefined;
|
|
@@ -6426,15 +6693,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
6426
6693
|
maxVersions?: number | undefined;
|
|
6427
6694
|
} | undefined;
|
|
6428
6695
|
readonly trackHistory?: boolean | undefined;
|
|
6429
|
-
readonly visibleWhen?: {
|
|
6430
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
6431
|
-
source?: string | undefined;
|
|
6432
|
-
ast?: unknown;
|
|
6433
|
-
meta?: {
|
|
6434
|
-
rationale?: string | undefined;
|
|
6435
|
-
generatedBy?: string | undefined;
|
|
6436
|
-
} | undefined;
|
|
6437
|
-
} | undefined;
|
|
6438
6696
|
readonly readonlyWhen?: {
|
|
6439
6697
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6440
6698
|
source?: string | undefined;
|
|
@@ -6476,6 +6734,15 @@ declare const SysSettingAudit: Omit<{
|
|
|
6476
6734
|
value: string;
|
|
6477
6735
|
color?: string | undefined;
|
|
6478
6736
|
default?: boolean | undefined;
|
|
6737
|
+
visibleWhen?: {
|
|
6738
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6739
|
+
source?: string | undefined;
|
|
6740
|
+
ast?: unknown;
|
|
6741
|
+
meta?: {
|
|
6742
|
+
rationale?: string | undefined;
|
|
6743
|
+
generatedBy?: string | undefined;
|
|
6744
|
+
} | undefined;
|
|
6745
|
+
} | undefined;
|
|
6479
6746
|
}[] | undefined;
|
|
6480
6747
|
readonly description?: string | undefined;
|
|
6481
6748
|
readonly label?: string | undefined;
|
|
@@ -6493,6 +6760,15 @@ declare const SysSettingAudit: Omit<{
|
|
|
6493
6760
|
readonly system?: boolean | undefined;
|
|
6494
6761
|
readonly min?: number | undefined;
|
|
6495
6762
|
readonly max?: number | undefined;
|
|
6763
|
+
readonly visibleWhen?: {
|
|
6764
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6765
|
+
source?: string | undefined;
|
|
6766
|
+
ast?: unknown;
|
|
6767
|
+
meta?: {
|
|
6768
|
+
rationale?: string | undefined;
|
|
6769
|
+
generatedBy?: string | undefined;
|
|
6770
|
+
} | undefined;
|
|
6771
|
+
} | undefined;
|
|
6496
6772
|
readonly dimensions?: number | undefined;
|
|
6497
6773
|
readonly columnName?: string | undefined;
|
|
6498
6774
|
readonly searchable?: boolean | undefined;
|
|
@@ -6600,15 +6876,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
6600
6876
|
maxVersions?: number | undefined;
|
|
6601
6877
|
} | undefined;
|
|
6602
6878
|
readonly trackHistory?: boolean | undefined;
|
|
6603
|
-
readonly visibleWhen?: {
|
|
6604
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
6605
|
-
source?: string | undefined;
|
|
6606
|
-
ast?: unknown;
|
|
6607
|
-
meta?: {
|
|
6608
|
-
rationale?: string | undefined;
|
|
6609
|
-
generatedBy?: string | undefined;
|
|
6610
|
-
} | undefined;
|
|
6611
|
-
} | undefined;
|
|
6612
6879
|
readonly readonlyWhen?: {
|
|
6613
6880
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6614
6881
|
source?: string | undefined;
|
|
@@ -6650,6 +6917,15 @@ declare const SysSettingAudit: Omit<{
|
|
|
6650
6917
|
value: string;
|
|
6651
6918
|
color?: string | undefined;
|
|
6652
6919
|
default?: boolean | undefined;
|
|
6920
|
+
visibleWhen?: {
|
|
6921
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6922
|
+
source?: string | undefined;
|
|
6923
|
+
ast?: unknown;
|
|
6924
|
+
meta?: {
|
|
6925
|
+
rationale?: string | undefined;
|
|
6926
|
+
generatedBy?: string | undefined;
|
|
6927
|
+
} | undefined;
|
|
6928
|
+
} | undefined;
|
|
6653
6929
|
}[] | undefined;
|
|
6654
6930
|
readonly description?: string | undefined;
|
|
6655
6931
|
readonly label?: string | undefined;
|
|
@@ -6667,6 +6943,15 @@ declare const SysSettingAudit: Omit<{
|
|
|
6667
6943
|
readonly system?: boolean | undefined;
|
|
6668
6944
|
readonly min?: number | undefined;
|
|
6669
6945
|
readonly max?: number | undefined;
|
|
6946
|
+
readonly visibleWhen?: {
|
|
6947
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6948
|
+
source?: string | undefined;
|
|
6949
|
+
ast?: unknown;
|
|
6950
|
+
meta?: {
|
|
6951
|
+
rationale?: string | undefined;
|
|
6952
|
+
generatedBy?: string | undefined;
|
|
6953
|
+
} | undefined;
|
|
6954
|
+
} | undefined;
|
|
6670
6955
|
readonly dimensions?: number | undefined;
|
|
6671
6956
|
readonly columnName?: string | undefined;
|
|
6672
6957
|
readonly searchable?: boolean | undefined;
|
|
@@ -6774,15 +7059,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
6774
7059
|
maxVersions?: number | undefined;
|
|
6775
7060
|
} | undefined;
|
|
6776
7061
|
readonly trackHistory?: boolean | undefined;
|
|
6777
|
-
readonly visibleWhen?: {
|
|
6778
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
6779
|
-
source?: string | undefined;
|
|
6780
|
-
ast?: unknown;
|
|
6781
|
-
meta?: {
|
|
6782
|
-
rationale?: string | undefined;
|
|
6783
|
-
generatedBy?: string | undefined;
|
|
6784
|
-
} | undefined;
|
|
6785
|
-
} | undefined;
|
|
6786
7062
|
readonly readonlyWhen?: {
|
|
6787
7063
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6788
7064
|
source?: string | undefined;
|
|
@@ -6824,6 +7100,15 @@ declare const SysSettingAudit: Omit<{
|
|
|
6824
7100
|
value: string;
|
|
6825
7101
|
color?: string | undefined;
|
|
6826
7102
|
default?: boolean | undefined;
|
|
7103
|
+
visibleWhen?: {
|
|
7104
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
7105
|
+
source?: string | undefined;
|
|
7106
|
+
ast?: unknown;
|
|
7107
|
+
meta?: {
|
|
7108
|
+
rationale?: string | undefined;
|
|
7109
|
+
generatedBy?: string | undefined;
|
|
7110
|
+
} | undefined;
|
|
7111
|
+
} | undefined;
|
|
6827
7112
|
}[] | undefined;
|
|
6828
7113
|
readonly description?: string | undefined;
|
|
6829
7114
|
readonly label?: string | undefined;
|
|
@@ -6841,6 +7126,15 @@ declare const SysSettingAudit: Omit<{
|
|
|
6841
7126
|
readonly system?: boolean | undefined;
|
|
6842
7127
|
readonly min?: number | undefined;
|
|
6843
7128
|
readonly max?: number | undefined;
|
|
7129
|
+
readonly visibleWhen?: {
|
|
7130
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
7131
|
+
source?: string | undefined;
|
|
7132
|
+
ast?: unknown;
|
|
7133
|
+
meta?: {
|
|
7134
|
+
rationale?: string | undefined;
|
|
7135
|
+
generatedBy?: string | undefined;
|
|
7136
|
+
} | undefined;
|
|
7137
|
+
} | undefined;
|
|
6844
7138
|
readonly dimensions?: number | undefined;
|
|
6845
7139
|
readonly columnName?: string | undefined;
|
|
6846
7140
|
readonly searchable?: boolean | undefined;
|
|
@@ -6948,15 +7242,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
6948
7242
|
maxVersions?: number | undefined;
|
|
6949
7243
|
} | undefined;
|
|
6950
7244
|
readonly trackHistory?: boolean | undefined;
|
|
6951
|
-
readonly visibleWhen?: {
|
|
6952
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
6953
|
-
source?: string | undefined;
|
|
6954
|
-
ast?: unknown;
|
|
6955
|
-
meta?: {
|
|
6956
|
-
rationale?: string | undefined;
|
|
6957
|
-
generatedBy?: string | undefined;
|
|
6958
|
-
} | undefined;
|
|
6959
|
-
} | undefined;
|
|
6960
7245
|
readonly readonlyWhen?: {
|
|
6961
7246
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6962
7247
|
source?: string | undefined;
|
|
@@ -6998,6 +7283,15 @@ declare const SysSettingAudit: Omit<{
|
|
|
6998
7283
|
value: string;
|
|
6999
7284
|
color?: string | undefined;
|
|
7000
7285
|
default?: boolean | undefined;
|
|
7286
|
+
visibleWhen?: {
|
|
7287
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
7288
|
+
source?: string | undefined;
|
|
7289
|
+
ast?: unknown;
|
|
7290
|
+
meta?: {
|
|
7291
|
+
rationale?: string | undefined;
|
|
7292
|
+
generatedBy?: string | undefined;
|
|
7293
|
+
} | undefined;
|
|
7294
|
+
} | undefined;
|
|
7001
7295
|
}[];
|
|
7002
7296
|
readonly description?: string | undefined;
|
|
7003
7297
|
readonly label?: string | undefined;
|
|
@@ -7015,6 +7309,15 @@ declare const SysSettingAudit: Omit<{
|
|
|
7015
7309
|
readonly system?: boolean | undefined;
|
|
7016
7310
|
readonly min?: number | undefined;
|
|
7017
7311
|
readonly max?: number | undefined;
|
|
7312
|
+
readonly visibleWhen?: {
|
|
7313
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
7314
|
+
source?: string | undefined;
|
|
7315
|
+
ast?: unknown;
|
|
7316
|
+
meta?: {
|
|
7317
|
+
rationale?: string | undefined;
|
|
7318
|
+
generatedBy?: string | undefined;
|
|
7319
|
+
} | undefined;
|
|
7320
|
+
} | undefined;
|
|
7018
7321
|
readonly dimensions?: number | undefined;
|
|
7019
7322
|
readonly columnName?: string | undefined;
|
|
7020
7323
|
readonly searchable?: boolean | undefined;
|
|
@@ -7122,15 +7425,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
7122
7425
|
maxVersions?: number | undefined;
|
|
7123
7426
|
} | undefined;
|
|
7124
7427
|
readonly trackHistory?: boolean | undefined;
|
|
7125
|
-
readonly visibleWhen?: {
|
|
7126
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
7127
|
-
source?: string | undefined;
|
|
7128
|
-
ast?: unknown;
|
|
7129
|
-
meta?: {
|
|
7130
|
-
rationale?: string | undefined;
|
|
7131
|
-
generatedBy?: string | undefined;
|
|
7132
|
-
} | undefined;
|
|
7133
|
-
} | undefined;
|
|
7134
7428
|
readonly readonlyWhen?: {
|
|
7135
7429
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7136
7430
|
source?: string | undefined;
|
|
@@ -7172,6 +7466,15 @@ declare const SysSettingAudit: Omit<{
|
|
|
7172
7466
|
value: string;
|
|
7173
7467
|
color?: string | undefined;
|
|
7174
7468
|
default?: boolean | undefined;
|
|
7469
|
+
visibleWhen?: {
|
|
7470
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
7471
|
+
source?: string | undefined;
|
|
7472
|
+
ast?: unknown;
|
|
7473
|
+
meta?: {
|
|
7474
|
+
rationale?: string | undefined;
|
|
7475
|
+
generatedBy?: string | undefined;
|
|
7476
|
+
} | undefined;
|
|
7477
|
+
} | undefined;
|
|
7175
7478
|
}[];
|
|
7176
7479
|
readonly description?: string | undefined;
|
|
7177
7480
|
readonly label?: string | undefined;
|
|
@@ -7189,6 +7492,15 @@ declare const SysSettingAudit: Omit<{
|
|
|
7189
7492
|
readonly system?: boolean | undefined;
|
|
7190
7493
|
readonly min?: number | undefined;
|
|
7191
7494
|
readonly max?: number | undefined;
|
|
7495
|
+
readonly visibleWhen?: {
|
|
7496
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
7497
|
+
source?: string | undefined;
|
|
7498
|
+
ast?: unknown;
|
|
7499
|
+
meta?: {
|
|
7500
|
+
rationale?: string | undefined;
|
|
7501
|
+
generatedBy?: string | undefined;
|
|
7502
|
+
} | undefined;
|
|
7503
|
+
} | undefined;
|
|
7192
7504
|
readonly dimensions?: number | undefined;
|
|
7193
7505
|
readonly columnName?: string | undefined;
|
|
7194
7506
|
readonly searchable?: boolean | undefined;
|
|
@@ -7296,15 +7608,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
7296
7608
|
maxVersions?: number | undefined;
|
|
7297
7609
|
} | undefined;
|
|
7298
7610
|
readonly trackHistory?: boolean | undefined;
|
|
7299
|
-
readonly visibleWhen?: {
|
|
7300
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
7301
|
-
source?: string | undefined;
|
|
7302
|
-
ast?: unknown;
|
|
7303
|
-
meta?: {
|
|
7304
|
-
rationale?: string | undefined;
|
|
7305
|
-
generatedBy?: string | undefined;
|
|
7306
|
-
} | undefined;
|
|
7307
|
-
} | undefined;
|
|
7308
7611
|
readonly readonlyWhen?: {
|
|
7309
7612
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7310
7613
|
source?: string | undefined;
|
|
@@ -7346,6 +7649,15 @@ declare const SysSettingAudit: Omit<{
|
|
|
7346
7649
|
value: string;
|
|
7347
7650
|
color?: string | undefined;
|
|
7348
7651
|
default?: boolean | undefined;
|
|
7652
|
+
visibleWhen?: {
|
|
7653
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
7654
|
+
source?: string | undefined;
|
|
7655
|
+
ast?: unknown;
|
|
7656
|
+
meta?: {
|
|
7657
|
+
rationale?: string | undefined;
|
|
7658
|
+
generatedBy?: string | undefined;
|
|
7659
|
+
} | undefined;
|
|
7660
|
+
} | undefined;
|
|
7349
7661
|
}[] | undefined;
|
|
7350
7662
|
readonly description?: string | undefined;
|
|
7351
7663
|
readonly label?: string | undefined;
|
|
@@ -7363,6 +7675,15 @@ declare const SysSettingAudit: Omit<{
|
|
|
7363
7675
|
readonly system?: boolean | undefined;
|
|
7364
7676
|
readonly min?: number | undefined;
|
|
7365
7677
|
readonly max?: number | undefined;
|
|
7678
|
+
readonly visibleWhen?: {
|
|
7679
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
7680
|
+
source?: string | undefined;
|
|
7681
|
+
ast?: unknown;
|
|
7682
|
+
meta?: {
|
|
7683
|
+
rationale?: string | undefined;
|
|
7684
|
+
generatedBy?: string | undefined;
|
|
7685
|
+
} | undefined;
|
|
7686
|
+
} | undefined;
|
|
7366
7687
|
readonly dimensions?: number | undefined;
|
|
7367
7688
|
readonly columnName?: string | undefined;
|
|
7368
7689
|
readonly searchable?: boolean | undefined;
|
|
@@ -7470,15 +7791,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
7470
7791
|
maxVersions?: number | undefined;
|
|
7471
7792
|
} | undefined;
|
|
7472
7793
|
readonly trackHistory?: boolean | undefined;
|
|
7473
|
-
readonly visibleWhen?: {
|
|
7474
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
7475
|
-
source?: string | undefined;
|
|
7476
|
-
ast?: unknown;
|
|
7477
|
-
meta?: {
|
|
7478
|
-
rationale?: string | undefined;
|
|
7479
|
-
generatedBy?: string | undefined;
|
|
7480
|
-
} | undefined;
|
|
7481
|
-
} | undefined;
|
|
7482
7794
|
readonly readonlyWhen?: {
|
|
7483
7795
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7484
7796
|
source?: string | undefined;
|
|
@@ -7525,6 +7837,15 @@ declare const SysSettingAudit: Omit<{
|
|
|
7525
7837
|
value: string;
|
|
7526
7838
|
color?: string | undefined;
|
|
7527
7839
|
default?: boolean | undefined;
|
|
7840
|
+
visibleWhen?: {
|
|
7841
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
7842
|
+
source?: string | undefined;
|
|
7843
|
+
ast?: unknown;
|
|
7844
|
+
meta?: {
|
|
7845
|
+
rationale?: string | undefined;
|
|
7846
|
+
generatedBy?: string | undefined;
|
|
7847
|
+
} | undefined;
|
|
7848
|
+
} | undefined;
|
|
7528
7849
|
}[];
|
|
7529
7850
|
readonly description?: string | undefined;
|
|
7530
7851
|
readonly label?: string | undefined;
|
|
@@ -7542,6 +7863,15 @@ declare const SysSettingAudit: Omit<{
|
|
|
7542
7863
|
readonly system?: boolean | undefined;
|
|
7543
7864
|
readonly min?: number | undefined;
|
|
7544
7865
|
readonly max?: number | undefined;
|
|
7866
|
+
readonly visibleWhen?: {
|
|
7867
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
7868
|
+
source?: string | undefined;
|
|
7869
|
+
ast?: unknown;
|
|
7870
|
+
meta?: {
|
|
7871
|
+
rationale?: string | undefined;
|
|
7872
|
+
generatedBy?: string | undefined;
|
|
7873
|
+
} | undefined;
|
|
7874
|
+
} | undefined;
|
|
7545
7875
|
readonly dimensions?: number | undefined;
|
|
7546
7876
|
readonly columnName?: string | undefined;
|
|
7547
7877
|
readonly searchable?: boolean | undefined;
|
|
@@ -7649,15 +7979,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
7649
7979
|
maxVersions?: number | undefined;
|
|
7650
7980
|
} | undefined;
|
|
7651
7981
|
readonly trackHistory?: boolean | undefined;
|
|
7652
|
-
readonly visibleWhen?: {
|
|
7653
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
7654
|
-
source?: string | undefined;
|
|
7655
|
-
ast?: unknown;
|
|
7656
|
-
meta?: {
|
|
7657
|
-
rationale?: string | undefined;
|
|
7658
|
-
generatedBy?: string | undefined;
|
|
7659
|
-
} | undefined;
|
|
7660
|
-
} | undefined;
|
|
7661
7982
|
readonly readonlyWhen?: {
|
|
7662
7983
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7663
7984
|
source?: string | undefined;
|
|
@@ -7700,6 +8021,15 @@ declare const SysSettingAudit: Omit<{
|
|
|
7700
8021
|
value: string;
|
|
7701
8022
|
color?: string | undefined;
|
|
7702
8023
|
default?: boolean | undefined;
|
|
8024
|
+
visibleWhen?: {
|
|
8025
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
8026
|
+
source?: string | undefined;
|
|
8027
|
+
ast?: unknown;
|
|
8028
|
+
meta?: {
|
|
8029
|
+
rationale?: string | undefined;
|
|
8030
|
+
generatedBy?: string | undefined;
|
|
8031
|
+
} | undefined;
|
|
8032
|
+
} | undefined;
|
|
7703
8033
|
}[] | undefined;
|
|
7704
8034
|
readonly description?: string | undefined;
|
|
7705
8035
|
readonly label?: string | undefined;
|
|
@@ -7717,6 +8047,15 @@ declare const SysSettingAudit: Omit<{
|
|
|
7717
8047
|
readonly system?: boolean | undefined;
|
|
7718
8048
|
readonly min?: number | undefined;
|
|
7719
8049
|
readonly max?: number | undefined;
|
|
8050
|
+
readonly visibleWhen?: {
|
|
8051
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
8052
|
+
source?: string | undefined;
|
|
8053
|
+
ast?: unknown;
|
|
8054
|
+
meta?: {
|
|
8055
|
+
rationale?: string | undefined;
|
|
8056
|
+
generatedBy?: string | undefined;
|
|
8057
|
+
} | undefined;
|
|
8058
|
+
} | undefined;
|
|
7720
8059
|
readonly dimensions?: number | undefined;
|
|
7721
8060
|
readonly columnName?: string | undefined;
|
|
7722
8061
|
readonly searchable?: boolean | undefined;
|
|
@@ -7824,15 +8163,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
7824
8163
|
maxVersions?: number | undefined;
|
|
7825
8164
|
} | undefined;
|
|
7826
8165
|
readonly trackHistory?: boolean | undefined;
|
|
7827
|
-
readonly visibleWhen?: {
|
|
7828
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
7829
|
-
source?: string | undefined;
|
|
7830
|
-
ast?: unknown;
|
|
7831
|
-
meta?: {
|
|
7832
|
-
rationale?: string | undefined;
|
|
7833
|
-
generatedBy?: string | undefined;
|
|
7834
|
-
} | undefined;
|
|
7835
|
-
} | undefined;
|
|
7836
8166
|
readonly readonlyWhen?: {
|
|
7837
8167
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7838
8168
|
source?: string | undefined;
|
|
@@ -7880,6 +8210,15 @@ declare const SysSettingAudit: Omit<{
|
|
|
7880
8210
|
value: string;
|
|
7881
8211
|
color?: string | undefined;
|
|
7882
8212
|
default?: boolean | undefined;
|
|
8213
|
+
visibleWhen?: {
|
|
8214
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
8215
|
+
source?: string | undefined;
|
|
8216
|
+
ast?: unknown;
|
|
8217
|
+
meta?: {
|
|
8218
|
+
rationale?: string | undefined;
|
|
8219
|
+
generatedBy?: string | undefined;
|
|
8220
|
+
} | undefined;
|
|
8221
|
+
} | undefined;
|
|
7883
8222
|
}[] | undefined;
|
|
7884
8223
|
readonly description?: string | undefined;
|
|
7885
8224
|
readonly label?: string | undefined;
|
|
@@ -7897,6 +8236,15 @@ declare const SysSettingAudit: Omit<{
|
|
|
7897
8236
|
readonly system?: boolean | undefined;
|
|
7898
8237
|
readonly min?: number | undefined;
|
|
7899
8238
|
readonly max?: number | undefined;
|
|
8239
|
+
readonly visibleWhen?: {
|
|
8240
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
8241
|
+
source?: string | undefined;
|
|
8242
|
+
ast?: unknown;
|
|
8243
|
+
meta?: {
|
|
8244
|
+
rationale?: string | undefined;
|
|
8245
|
+
generatedBy?: string | undefined;
|
|
8246
|
+
} | undefined;
|
|
8247
|
+
} | undefined;
|
|
7900
8248
|
readonly dimensions?: number | undefined;
|
|
7901
8249
|
readonly columnName?: string | undefined;
|
|
7902
8250
|
readonly searchable?: boolean | undefined;
|
|
@@ -8004,15 +8352,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
8004
8352
|
maxVersions?: number | undefined;
|
|
8005
8353
|
} | undefined;
|
|
8006
8354
|
readonly trackHistory?: boolean | undefined;
|
|
8007
|
-
readonly visibleWhen?: {
|
|
8008
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
8009
|
-
source?: string | undefined;
|
|
8010
|
-
ast?: unknown;
|
|
8011
|
-
meta?: {
|
|
8012
|
-
rationale?: string | undefined;
|
|
8013
|
-
generatedBy?: string | undefined;
|
|
8014
|
-
} | undefined;
|
|
8015
|
-
} | undefined;
|
|
8016
8355
|
readonly readonlyWhen?: {
|
|
8017
8356
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8018
8357
|
source?: string | undefined;
|
|
@@ -8055,6 +8394,15 @@ declare const SysSettingAudit: Omit<{
|
|
|
8055
8394
|
value: string;
|
|
8056
8395
|
color?: string | undefined;
|
|
8057
8396
|
default?: boolean | undefined;
|
|
8397
|
+
visibleWhen?: {
|
|
8398
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
8399
|
+
source?: string | undefined;
|
|
8400
|
+
ast?: unknown;
|
|
8401
|
+
meta?: {
|
|
8402
|
+
rationale?: string | undefined;
|
|
8403
|
+
generatedBy?: string | undefined;
|
|
8404
|
+
} | undefined;
|
|
8405
|
+
} | undefined;
|
|
8058
8406
|
}[] | undefined;
|
|
8059
8407
|
readonly description?: string | undefined;
|
|
8060
8408
|
readonly label?: string | undefined;
|
|
@@ -8072,6 +8420,15 @@ declare const SysSettingAudit: Omit<{
|
|
|
8072
8420
|
readonly system?: boolean | undefined;
|
|
8073
8421
|
readonly min?: number | undefined;
|
|
8074
8422
|
readonly max?: number | undefined;
|
|
8423
|
+
readonly visibleWhen?: {
|
|
8424
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
8425
|
+
source?: string | undefined;
|
|
8426
|
+
ast?: unknown;
|
|
8427
|
+
meta?: {
|
|
8428
|
+
rationale?: string | undefined;
|
|
8429
|
+
generatedBy?: string | undefined;
|
|
8430
|
+
} | undefined;
|
|
8431
|
+
} | undefined;
|
|
8075
8432
|
readonly dimensions?: number | undefined;
|
|
8076
8433
|
readonly columnName?: string | undefined;
|
|
8077
8434
|
readonly searchable?: boolean | undefined;
|
|
@@ -8179,15 +8536,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
8179
8536
|
maxVersions?: number | undefined;
|
|
8180
8537
|
} | undefined;
|
|
8181
8538
|
readonly trackHistory?: boolean | undefined;
|
|
8182
|
-
readonly visibleWhen?: {
|
|
8183
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
8184
|
-
source?: string | undefined;
|
|
8185
|
-
ast?: unknown;
|
|
8186
|
-
meta?: {
|
|
8187
|
-
rationale?: string | undefined;
|
|
8188
|
-
generatedBy?: string | undefined;
|
|
8189
|
-
} | undefined;
|
|
8190
|
-
} | undefined;
|
|
8191
8539
|
readonly readonlyWhen?: {
|
|
8192
8540
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8193
8541
|
source?: string | undefined;
|
|
@@ -8230,6 +8578,15 @@ declare const SysSettingAudit: Omit<{
|
|
|
8230
8578
|
value: string;
|
|
8231
8579
|
color?: string | undefined;
|
|
8232
8580
|
default?: boolean | undefined;
|
|
8581
|
+
visibleWhen?: {
|
|
8582
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
8583
|
+
source?: string | undefined;
|
|
8584
|
+
ast?: unknown;
|
|
8585
|
+
meta?: {
|
|
8586
|
+
rationale?: string | undefined;
|
|
8587
|
+
generatedBy?: string | undefined;
|
|
8588
|
+
} | undefined;
|
|
8589
|
+
} | undefined;
|
|
8233
8590
|
}[] | undefined;
|
|
8234
8591
|
readonly description?: string | undefined;
|
|
8235
8592
|
readonly label?: string | undefined;
|
|
@@ -8247,6 +8604,15 @@ declare const SysSettingAudit: Omit<{
|
|
|
8247
8604
|
readonly system?: boolean | undefined;
|
|
8248
8605
|
readonly min?: number | undefined;
|
|
8249
8606
|
readonly max?: number | undefined;
|
|
8607
|
+
readonly visibleWhen?: {
|
|
8608
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
8609
|
+
source?: string | undefined;
|
|
8610
|
+
ast?: unknown;
|
|
8611
|
+
meta?: {
|
|
8612
|
+
rationale?: string | undefined;
|
|
8613
|
+
generatedBy?: string | undefined;
|
|
8614
|
+
} | undefined;
|
|
8615
|
+
} | undefined;
|
|
8250
8616
|
readonly dimensions?: number | undefined;
|
|
8251
8617
|
readonly columnName?: string | undefined;
|
|
8252
8618
|
readonly searchable?: boolean | undefined;
|
|
@@ -8354,15 +8720,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
8354
8720
|
maxVersions?: number | undefined;
|
|
8355
8721
|
} | undefined;
|
|
8356
8722
|
readonly trackHistory?: boolean | undefined;
|
|
8357
|
-
readonly visibleWhen?: {
|
|
8358
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
8359
|
-
source?: string | undefined;
|
|
8360
|
-
ast?: unknown;
|
|
8361
|
-
meta?: {
|
|
8362
|
-
rationale?: string | undefined;
|
|
8363
|
-
generatedBy?: string | undefined;
|
|
8364
|
-
} | undefined;
|
|
8365
|
-
} | undefined;
|
|
8366
8723
|
readonly readonlyWhen?: {
|
|
8367
8724
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8368
8725
|
source?: string | undefined;
|
|
@@ -8405,6 +8762,15 @@ declare const SysSettingAudit: Omit<{
|
|
|
8405
8762
|
value: string;
|
|
8406
8763
|
color?: string | undefined;
|
|
8407
8764
|
default?: boolean | undefined;
|
|
8765
|
+
visibleWhen?: {
|
|
8766
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
8767
|
+
source?: string | undefined;
|
|
8768
|
+
ast?: unknown;
|
|
8769
|
+
meta?: {
|
|
8770
|
+
rationale?: string | undefined;
|
|
8771
|
+
generatedBy?: string | undefined;
|
|
8772
|
+
} | undefined;
|
|
8773
|
+
} | undefined;
|
|
8408
8774
|
}[] | undefined;
|
|
8409
8775
|
readonly description?: string | undefined;
|
|
8410
8776
|
readonly label?: string | undefined;
|
|
@@ -8422,6 +8788,15 @@ declare const SysSettingAudit: Omit<{
|
|
|
8422
8788
|
readonly system?: boolean | undefined;
|
|
8423
8789
|
readonly min?: number | undefined;
|
|
8424
8790
|
readonly max?: number | undefined;
|
|
8791
|
+
readonly visibleWhen?: {
|
|
8792
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
8793
|
+
source?: string | undefined;
|
|
8794
|
+
ast?: unknown;
|
|
8795
|
+
meta?: {
|
|
8796
|
+
rationale?: string | undefined;
|
|
8797
|
+
generatedBy?: string | undefined;
|
|
8798
|
+
} | undefined;
|
|
8799
|
+
} | undefined;
|
|
8425
8800
|
readonly dimensions?: number | undefined;
|
|
8426
8801
|
readonly columnName?: string | undefined;
|
|
8427
8802
|
readonly searchable?: boolean | undefined;
|
|
@@ -8529,15 +8904,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
8529
8904
|
maxVersions?: number | undefined;
|
|
8530
8905
|
} | undefined;
|
|
8531
8906
|
readonly trackHistory?: boolean | undefined;
|
|
8532
|
-
readonly visibleWhen?: {
|
|
8533
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
8534
|
-
source?: string | undefined;
|
|
8535
|
-
ast?: unknown;
|
|
8536
|
-
meta?: {
|
|
8537
|
-
rationale?: string | undefined;
|
|
8538
|
-
generatedBy?: string | undefined;
|
|
8539
|
-
} | undefined;
|
|
8540
|
-
} | undefined;
|
|
8541
8907
|
readonly readonlyWhen?: {
|
|
8542
8908
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8543
8909
|
source?: string | undefined;
|