@objectstack/platform-objects 7.9.0 → 8.0.1

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.
@@ -69,6 +69,13 @@ declare const SysSetting: Omit<{
69
69
  reference?: string | undefined;
70
70
  referenceFilters?: string[] | undefined;
71
71
  writeRequiresMasterRead?: boolean | undefined;
72
+ inlineEdit?: boolean | "grid" | "form" | undefined;
73
+ inlineTitle?: string | undefined;
74
+ inlineColumns?: any[] | undefined;
75
+ inlineAmountField?: string | undefined;
76
+ relatedList?: boolean | undefined;
77
+ relatedListTitle?: string | undefined;
78
+ relatedListColumns?: any[] | undefined;
72
79
  expression?: {
73
80
  dialect: "cel" | "js" | "cron" | "template";
74
81
  source?: string | undefined;
@@ -90,6 +97,7 @@ declare const SysSetting: Omit<{
90
97
  object: string;
91
98
  field: string;
92
99
  function: "min" | "max" | "count" | "sum" | "avg";
100
+ relationshipField?: string | undefined;
93
101
  } | undefined;
94
102
  language?: string | undefined;
95
103
  theme?: string | undefined;
@@ -203,6 +211,57 @@ declare const SysSetting: Omit<{
203
211
  } | undefined;
204
212
  } | undefined;
205
213
  group?: string | undefined;
214
+ visibleWhen?: {
215
+ dialect: "cel" | "js" | "cron" | "template";
216
+ source?: string | undefined;
217
+ ast?: unknown;
218
+ meta?: {
219
+ rationale?: string | undefined;
220
+ generatedBy?: string | undefined;
221
+ } | undefined;
222
+ } | {
223
+ dialect: "cel" | "js" | "cron" | "template";
224
+ source?: string | undefined;
225
+ ast?: unknown;
226
+ meta?: {
227
+ rationale?: string | undefined;
228
+ generatedBy?: string | undefined;
229
+ } | undefined;
230
+ } | undefined;
231
+ readonlyWhen?: {
232
+ dialect: "cel" | "js" | "cron" | "template";
233
+ source?: string | undefined;
234
+ ast?: unknown;
235
+ meta?: {
236
+ rationale?: string | undefined;
237
+ generatedBy?: string | undefined;
238
+ } | undefined;
239
+ } | {
240
+ dialect: "cel" | "js" | "cron" | "template";
241
+ source?: string | undefined;
242
+ ast?: unknown;
243
+ meta?: {
244
+ rationale?: string | undefined;
245
+ generatedBy?: string | undefined;
246
+ } | undefined;
247
+ } | undefined;
248
+ requiredWhen?: {
249
+ dialect: "cel" | "js" | "cron" | "template";
250
+ source?: string | undefined;
251
+ ast?: unknown;
252
+ meta?: {
253
+ rationale?: string | undefined;
254
+ generatedBy?: string | undefined;
255
+ } | undefined;
256
+ } | {
257
+ dialect: "cel" | "js" | "cron" | "template";
258
+ source?: string | undefined;
259
+ ast?: unknown;
260
+ meta?: {
261
+ rationale?: string | undefined;
262
+ generatedBy?: string | undefined;
263
+ } | undefined;
264
+ } | undefined;
206
265
  conditionalRequired?: {
207
266
  dialect: "cel" | "js" | "cron" | "template";
208
267
  source?: string | undefined;
@@ -344,7 +403,7 @@ declare const SysSetting: Omit<{
344
403
  } | undefined;
345
404
  compactLayout?: string[] | undefined;
346
405
  listViews?: Record<string, {
347
- type: "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map" | "grid";
406
+ type: "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map";
348
407
  columns: string[] | {
349
408
  field: string;
350
409
  label?: string | undefined;
@@ -513,7 +572,7 @@ declare const SysSetting: Omit<{
513
572
  } | undefined;
514
573
  appearance?: {
515
574
  showDescription: boolean;
516
- allowedVisualizations?: ("kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "map" | "grid")[] | undefined;
575
+ allowedVisualizations?: ("grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "map")[] | undefined;
517
576
  } | undefined;
518
577
  tabs?: {
519
578
  name: string;
@@ -533,7 +592,7 @@ declare const SysSetting: Omit<{
533
592
  addRecord?: {
534
593
  enabled: boolean;
535
594
  position: "top" | "bottom" | "both";
536
- mode: "modal" | "form" | "inline";
595
+ mode: "form" | "modal" | "inline";
537
596
  formView?: string | undefined;
538
597
  } | undefined;
539
598
  showRecordCount?: boolean | undefined;
@@ -619,7 +678,7 @@ declare const SysSetting: Omit<{
619
678
  actions?: {
620
679
  name: string;
621
680
  label: string;
622
- type: "url" | "flow" | "api" | "script" | "modal" | "form";
681
+ type: "url" | "form" | "flow" | "api" | "script" | "modal";
623
682
  refreshAfter: boolean;
624
683
  objectName?: string | undefined;
625
684
  icon?: string | undefined;
@@ -687,7 +746,18 @@ declare const SysSetting: Omit<{
687
746
  } | undefined;
688
747
  shortcut?: string | undefined;
689
748
  bulkEnabled?: boolean | undefined;
690
- aiExposed?: boolean | undefined;
749
+ ai?: {
750
+ exposed: boolean;
751
+ description?: string | undefined;
752
+ category?: "action" | "data" | "flow" | "integration" | "vector_search" | "analytics" | "utility" | undefined;
753
+ paramHints?: Record<string, {
754
+ description?: string | undefined;
755
+ enum?: (string | number)[] | undefined;
756
+ examples?: unknown[] | undefined;
757
+ }> | undefined;
758
+ outputSchema?: Record<string, unknown> | undefined;
759
+ requiresConfirmation?: boolean | undefined;
760
+ } | undefined;
691
761
  recordIdParam?: string | undefined;
692
762
  recordIdField?: string | undefined;
693
763
  bodyShape?: "flat" | {
@@ -867,6 +937,13 @@ declare const SysSetting: Omit<{
867
937
  readonly referenceFilters?: string[] | undefined;
868
938
  readonly writeRequiresMasterRead?: boolean | undefined;
869
939
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
940
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
941
+ readonly inlineTitle?: string | undefined;
942
+ readonly inlineColumns?: any[] | undefined;
943
+ readonly inlineAmountField?: string | undefined;
944
+ readonly relatedList?: boolean | undefined;
945
+ readonly relatedListTitle?: string | undefined;
946
+ readonly relatedListColumns?: any[] | undefined;
870
947
  readonly expression?: {
871
948
  dialect: "cel" | "js" | "cron" | "template";
872
949
  source?: string | undefined;
@@ -880,6 +957,7 @@ declare const SysSetting: Omit<{
880
957
  object: string;
881
958
  field: string;
882
959
  function: "min" | "max" | "count" | "sum" | "avg";
960
+ relationshipField?: string | undefined;
883
961
  } | undefined;
884
962
  readonly language?: string | undefined;
885
963
  readonly lineNumbers?: boolean | undefined;
@@ -974,6 +1052,33 @@ declare const SysSetting: Omit<{
974
1052
  threshold: number;
975
1053
  } | undefined;
976
1054
  } | undefined;
1055
+ readonly visibleWhen?: {
1056
+ dialect: "cel" | "js" | "cron" | "template";
1057
+ source?: string | undefined;
1058
+ ast?: unknown;
1059
+ meta?: {
1060
+ rationale?: string | undefined;
1061
+ generatedBy?: string | undefined;
1062
+ } | undefined;
1063
+ } | undefined;
1064
+ readonly readonlyWhen?: {
1065
+ dialect: "cel" | "js" | "cron" | "template";
1066
+ source?: string | undefined;
1067
+ ast?: unknown;
1068
+ meta?: {
1069
+ rationale?: string | undefined;
1070
+ generatedBy?: string | undefined;
1071
+ } | undefined;
1072
+ } | undefined;
1073
+ readonly requiredWhen?: {
1074
+ dialect: "cel" | "js" | "cron" | "template";
1075
+ source?: string | undefined;
1076
+ ast?: unknown;
1077
+ meta?: {
1078
+ rationale?: string | undefined;
1079
+ generatedBy?: string | undefined;
1080
+ } | undefined;
1081
+ } | undefined;
977
1082
  readonly conditionalRequired?: {
978
1083
  dialect: "cel" | "js" | "cron" | "template";
979
1084
  source?: string | undefined;
@@ -1042,6 +1147,13 @@ declare const SysSetting: Omit<{
1042
1147
  readonly referenceFilters?: string[] | undefined;
1043
1148
  readonly writeRequiresMasterRead?: boolean | undefined;
1044
1149
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1150
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1151
+ readonly inlineTitle?: string | undefined;
1152
+ readonly inlineColumns?: any[] | undefined;
1153
+ readonly inlineAmountField?: string | undefined;
1154
+ readonly relatedList?: boolean | undefined;
1155
+ readonly relatedListTitle?: string | undefined;
1156
+ readonly relatedListColumns?: any[] | undefined;
1045
1157
  readonly expression?: {
1046
1158
  dialect: "cel" | "js" | "cron" | "template";
1047
1159
  source?: string | undefined;
@@ -1055,6 +1167,7 @@ declare const SysSetting: Omit<{
1055
1167
  object: string;
1056
1168
  field: string;
1057
1169
  function: "min" | "max" | "count" | "sum" | "avg";
1170
+ relationshipField?: string | undefined;
1058
1171
  } | undefined;
1059
1172
  readonly language?: string | undefined;
1060
1173
  readonly lineNumbers?: boolean | undefined;
@@ -1149,6 +1262,33 @@ declare const SysSetting: Omit<{
1149
1262
  threshold: number;
1150
1263
  } | undefined;
1151
1264
  } | undefined;
1265
+ readonly visibleWhen?: {
1266
+ dialect: "cel" | "js" | "cron" | "template";
1267
+ source?: string | undefined;
1268
+ ast?: unknown;
1269
+ meta?: {
1270
+ rationale?: string | undefined;
1271
+ generatedBy?: string | undefined;
1272
+ } | undefined;
1273
+ } | undefined;
1274
+ readonly readonlyWhen?: {
1275
+ dialect: "cel" | "js" | "cron" | "template";
1276
+ source?: string | undefined;
1277
+ ast?: unknown;
1278
+ meta?: {
1279
+ rationale?: string | undefined;
1280
+ generatedBy?: string | undefined;
1281
+ } | undefined;
1282
+ } | undefined;
1283
+ readonly requiredWhen?: {
1284
+ dialect: "cel" | "js" | "cron" | "template";
1285
+ source?: string | undefined;
1286
+ ast?: unknown;
1287
+ meta?: {
1288
+ rationale?: string | undefined;
1289
+ generatedBy?: string | undefined;
1290
+ } | undefined;
1291
+ } | undefined;
1152
1292
  readonly conditionalRequired?: {
1153
1293
  dialect: "cel" | "js" | "cron" | "template";
1154
1294
  source?: string | undefined;
@@ -1217,6 +1357,13 @@ declare const SysSetting: Omit<{
1217
1357
  readonly referenceFilters?: string[] | undefined;
1218
1358
  readonly writeRequiresMasterRead?: boolean | undefined;
1219
1359
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1360
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1361
+ readonly inlineTitle?: string | undefined;
1362
+ readonly inlineColumns?: any[] | undefined;
1363
+ readonly inlineAmountField?: string | undefined;
1364
+ readonly relatedList?: boolean | undefined;
1365
+ readonly relatedListTitle?: string | undefined;
1366
+ readonly relatedListColumns?: any[] | undefined;
1220
1367
  readonly expression?: {
1221
1368
  dialect: "cel" | "js" | "cron" | "template";
1222
1369
  source?: string | undefined;
@@ -1230,6 +1377,7 @@ declare const SysSetting: Omit<{
1230
1377
  object: string;
1231
1378
  field: string;
1232
1379
  function: "min" | "max" | "count" | "sum" | "avg";
1380
+ relationshipField?: string | undefined;
1233
1381
  } | undefined;
1234
1382
  readonly language?: string | undefined;
1235
1383
  readonly lineNumbers?: boolean | undefined;
@@ -1324,6 +1472,33 @@ declare const SysSetting: Omit<{
1324
1472
  threshold: number;
1325
1473
  } | undefined;
1326
1474
  } | undefined;
1475
+ readonly visibleWhen?: {
1476
+ dialect: "cel" | "js" | "cron" | "template";
1477
+ source?: string | undefined;
1478
+ ast?: unknown;
1479
+ meta?: {
1480
+ rationale?: string | undefined;
1481
+ generatedBy?: string | undefined;
1482
+ } | undefined;
1483
+ } | undefined;
1484
+ readonly readonlyWhen?: {
1485
+ dialect: "cel" | "js" | "cron" | "template";
1486
+ source?: string | undefined;
1487
+ ast?: unknown;
1488
+ meta?: {
1489
+ rationale?: string | undefined;
1490
+ generatedBy?: string | undefined;
1491
+ } | undefined;
1492
+ } | undefined;
1493
+ readonly requiredWhen?: {
1494
+ dialect: "cel" | "js" | "cron" | "template";
1495
+ source?: string | undefined;
1496
+ ast?: unknown;
1497
+ meta?: {
1498
+ rationale?: string | undefined;
1499
+ generatedBy?: string | undefined;
1500
+ } | undefined;
1501
+ } | undefined;
1327
1502
  readonly conditionalRequired?: {
1328
1503
  dialect: "cel" | "js" | "cron" | "template";
1329
1504
  source?: string | undefined;
@@ -1392,6 +1567,13 @@ declare const SysSetting: Omit<{
1392
1567
  readonly referenceFilters?: string[] | undefined;
1393
1568
  readonly writeRequiresMasterRead?: boolean | undefined;
1394
1569
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1570
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1571
+ readonly inlineTitle?: string | undefined;
1572
+ readonly inlineColumns?: any[] | undefined;
1573
+ readonly inlineAmountField?: string | undefined;
1574
+ readonly relatedList?: boolean | undefined;
1575
+ readonly relatedListTitle?: string | undefined;
1576
+ readonly relatedListColumns?: any[] | undefined;
1395
1577
  readonly expression?: {
1396
1578
  dialect: "cel" | "js" | "cron" | "template";
1397
1579
  source?: string | undefined;
@@ -1405,6 +1587,7 @@ declare const SysSetting: Omit<{
1405
1587
  object: string;
1406
1588
  field: string;
1407
1589
  function: "min" | "max" | "count" | "sum" | "avg";
1590
+ relationshipField?: string | undefined;
1408
1591
  } | undefined;
1409
1592
  readonly language?: string | undefined;
1410
1593
  readonly lineNumbers?: boolean | undefined;
@@ -1499,6 +1682,33 @@ declare const SysSetting: Omit<{
1499
1682
  threshold: number;
1500
1683
  } | undefined;
1501
1684
  } | undefined;
1685
+ readonly visibleWhen?: {
1686
+ dialect: "cel" | "js" | "cron" | "template";
1687
+ source?: string | undefined;
1688
+ ast?: unknown;
1689
+ meta?: {
1690
+ rationale?: string | undefined;
1691
+ generatedBy?: string | undefined;
1692
+ } | undefined;
1693
+ } | undefined;
1694
+ readonly readonlyWhen?: {
1695
+ dialect: "cel" | "js" | "cron" | "template";
1696
+ source?: string | undefined;
1697
+ ast?: unknown;
1698
+ meta?: {
1699
+ rationale?: string | undefined;
1700
+ generatedBy?: string | undefined;
1701
+ } | undefined;
1702
+ } | undefined;
1703
+ readonly requiredWhen?: {
1704
+ dialect: "cel" | "js" | "cron" | "template";
1705
+ source?: string | undefined;
1706
+ ast?: unknown;
1707
+ meta?: {
1708
+ rationale?: string | undefined;
1709
+ generatedBy?: string | undefined;
1710
+ } | undefined;
1711
+ } | undefined;
1502
1712
  readonly conditionalRequired?: {
1503
1713
  dialect: "cel" | "js" | "cron" | "template";
1504
1714
  source?: string | undefined;
@@ -1567,6 +1777,13 @@ declare const SysSetting: Omit<{
1567
1777
  readonly referenceFilters?: string[] | undefined;
1568
1778
  readonly writeRequiresMasterRead?: boolean | undefined;
1569
1779
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1780
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1781
+ readonly inlineTitle?: string | undefined;
1782
+ readonly inlineColumns?: any[] | undefined;
1783
+ readonly inlineAmountField?: string | undefined;
1784
+ readonly relatedList?: boolean | undefined;
1785
+ readonly relatedListTitle?: string | undefined;
1786
+ readonly relatedListColumns?: any[] | undefined;
1570
1787
  readonly expression?: {
1571
1788
  dialect: "cel" | "js" | "cron" | "template";
1572
1789
  source?: string | undefined;
@@ -1580,6 +1797,7 @@ declare const SysSetting: Omit<{
1580
1797
  object: string;
1581
1798
  field: string;
1582
1799
  function: "min" | "max" | "count" | "sum" | "avg";
1800
+ relationshipField?: string | undefined;
1583
1801
  } | undefined;
1584
1802
  readonly language?: string | undefined;
1585
1803
  readonly lineNumbers?: boolean | undefined;
@@ -1674,6 +1892,33 @@ declare const SysSetting: Omit<{
1674
1892
  threshold: number;
1675
1893
  } | undefined;
1676
1894
  } | undefined;
1895
+ readonly visibleWhen?: {
1896
+ dialect: "cel" | "js" | "cron" | "template";
1897
+ source?: string | undefined;
1898
+ ast?: unknown;
1899
+ meta?: {
1900
+ rationale?: string | undefined;
1901
+ generatedBy?: string | undefined;
1902
+ } | undefined;
1903
+ } | undefined;
1904
+ readonly readonlyWhen?: {
1905
+ dialect: "cel" | "js" | "cron" | "template";
1906
+ source?: string | undefined;
1907
+ ast?: unknown;
1908
+ meta?: {
1909
+ rationale?: string | undefined;
1910
+ generatedBy?: string | undefined;
1911
+ } | undefined;
1912
+ } | undefined;
1913
+ readonly requiredWhen?: {
1914
+ dialect: "cel" | "js" | "cron" | "template";
1915
+ source?: string | undefined;
1916
+ ast?: unknown;
1917
+ meta?: {
1918
+ rationale?: string | undefined;
1919
+ generatedBy?: string | undefined;
1920
+ } | undefined;
1921
+ } | undefined;
1677
1922
  readonly conditionalRequired?: {
1678
1923
  dialect: "cel" | "js" | "cron" | "template";
1679
1924
  source?: string | undefined;
@@ -1742,6 +1987,13 @@ declare const SysSetting: Omit<{
1742
1987
  readonly referenceFilters?: string[] | undefined;
1743
1988
  readonly writeRequiresMasterRead?: boolean | undefined;
1744
1989
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1990
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1991
+ readonly inlineTitle?: string | undefined;
1992
+ readonly inlineColumns?: any[] | undefined;
1993
+ readonly inlineAmountField?: string | undefined;
1994
+ readonly relatedList?: boolean | undefined;
1995
+ readonly relatedListTitle?: string | undefined;
1996
+ readonly relatedListColumns?: any[] | undefined;
1745
1997
  readonly expression?: {
1746
1998
  dialect: "cel" | "js" | "cron" | "template";
1747
1999
  source?: string | undefined;
@@ -1755,6 +2007,7 @@ declare const SysSetting: Omit<{
1755
2007
  object: string;
1756
2008
  field: string;
1757
2009
  function: "min" | "max" | "count" | "sum" | "avg";
2010
+ relationshipField?: string | undefined;
1758
2011
  } | undefined;
1759
2012
  readonly language?: string | undefined;
1760
2013
  readonly lineNumbers?: boolean | undefined;
@@ -1849,6 +2102,33 @@ declare const SysSetting: Omit<{
1849
2102
  threshold: number;
1850
2103
  } | undefined;
1851
2104
  } | undefined;
2105
+ readonly visibleWhen?: {
2106
+ dialect: "cel" | "js" | "cron" | "template";
2107
+ source?: string | undefined;
2108
+ ast?: unknown;
2109
+ meta?: {
2110
+ rationale?: string | undefined;
2111
+ generatedBy?: string | undefined;
2112
+ } | undefined;
2113
+ } | undefined;
2114
+ readonly readonlyWhen?: {
2115
+ dialect: "cel" | "js" | "cron" | "template";
2116
+ source?: string | undefined;
2117
+ ast?: unknown;
2118
+ meta?: {
2119
+ rationale?: string | undefined;
2120
+ generatedBy?: string | undefined;
2121
+ } | undefined;
2122
+ } | undefined;
2123
+ readonly requiredWhen?: {
2124
+ dialect: "cel" | "js" | "cron" | "template";
2125
+ source?: string | undefined;
2126
+ ast?: unknown;
2127
+ meta?: {
2128
+ rationale?: string | undefined;
2129
+ generatedBy?: string | undefined;
2130
+ } | undefined;
2131
+ } | undefined;
1852
2132
  readonly conditionalRequired?: {
1853
2133
  dialect: "cel" | "js" | "cron" | "template";
1854
2134
  source?: string | undefined;
@@ -1917,6 +2197,13 @@ declare const SysSetting: Omit<{
1917
2197
  readonly referenceFilters?: string[] | undefined;
1918
2198
  readonly writeRequiresMasterRead?: boolean | undefined;
1919
2199
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2200
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2201
+ readonly inlineTitle?: string | undefined;
2202
+ readonly inlineColumns?: any[] | undefined;
2203
+ readonly inlineAmountField?: string | undefined;
2204
+ readonly relatedList?: boolean | undefined;
2205
+ readonly relatedListTitle?: string | undefined;
2206
+ readonly relatedListColumns?: any[] | undefined;
1920
2207
  readonly expression?: {
1921
2208
  dialect: "cel" | "js" | "cron" | "template";
1922
2209
  source?: string | undefined;
@@ -1930,6 +2217,7 @@ declare const SysSetting: Omit<{
1930
2217
  object: string;
1931
2218
  field: string;
1932
2219
  function: "min" | "max" | "count" | "sum" | "avg";
2220
+ relationshipField?: string | undefined;
1933
2221
  } | undefined;
1934
2222
  readonly language?: string | undefined;
1935
2223
  readonly lineNumbers?: boolean | undefined;
@@ -2024,6 +2312,33 @@ declare const SysSetting: Omit<{
2024
2312
  threshold: number;
2025
2313
  } | undefined;
2026
2314
  } | undefined;
2315
+ readonly visibleWhen?: {
2316
+ dialect: "cel" | "js" | "cron" | "template";
2317
+ source?: string | undefined;
2318
+ ast?: unknown;
2319
+ meta?: {
2320
+ rationale?: string | undefined;
2321
+ generatedBy?: string | undefined;
2322
+ } | undefined;
2323
+ } | undefined;
2324
+ readonly readonlyWhen?: {
2325
+ dialect: "cel" | "js" | "cron" | "template";
2326
+ source?: string | undefined;
2327
+ ast?: unknown;
2328
+ meta?: {
2329
+ rationale?: string | undefined;
2330
+ generatedBy?: string | undefined;
2331
+ } | undefined;
2332
+ } | undefined;
2333
+ readonly requiredWhen?: {
2334
+ dialect: "cel" | "js" | "cron" | "template";
2335
+ source?: string | undefined;
2336
+ ast?: unknown;
2337
+ meta?: {
2338
+ rationale?: string | undefined;
2339
+ generatedBy?: string | undefined;
2340
+ } | undefined;
2341
+ } | undefined;
2027
2342
  readonly conditionalRequired?: {
2028
2343
  dialect: "cel" | "js" | "cron" | "template";
2029
2344
  source?: string | undefined;
@@ -2092,6 +2407,13 @@ declare const SysSetting: Omit<{
2092
2407
  readonly referenceFilters?: string[] | undefined;
2093
2408
  readonly writeRequiresMasterRead?: boolean | undefined;
2094
2409
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2410
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2411
+ readonly inlineTitle?: string | undefined;
2412
+ readonly inlineColumns?: any[] | undefined;
2413
+ readonly inlineAmountField?: string | undefined;
2414
+ readonly relatedList?: boolean | undefined;
2415
+ readonly relatedListTitle?: string | undefined;
2416
+ readonly relatedListColumns?: any[] | undefined;
2095
2417
  readonly expression?: {
2096
2418
  dialect: "cel" | "js" | "cron" | "template";
2097
2419
  source?: string | undefined;
@@ -2105,6 +2427,7 @@ declare const SysSetting: Omit<{
2105
2427
  object: string;
2106
2428
  field: string;
2107
2429
  function: "min" | "max" | "count" | "sum" | "avg";
2430
+ relationshipField?: string | undefined;
2108
2431
  } | undefined;
2109
2432
  readonly language?: string | undefined;
2110
2433
  readonly lineNumbers?: boolean | undefined;
@@ -2199,6 +2522,33 @@ declare const SysSetting: Omit<{
2199
2522
  threshold: number;
2200
2523
  } | undefined;
2201
2524
  } | undefined;
2525
+ readonly visibleWhen?: {
2526
+ dialect: "cel" | "js" | "cron" | "template";
2527
+ source?: string | undefined;
2528
+ ast?: unknown;
2529
+ meta?: {
2530
+ rationale?: string | undefined;
2531
+ generatedBy?: string | undefined;
2532
+ } | undefined;
2533
+ } | undefined;
2534
+ readonly readonlyWhen?: {
2535
+ dialect: "cel" | "js" | "cron" | "template";
2536
+ source?: string | undefined;
2537
+ ast?: unknown;
2538
+ meta?: {
2539
+ rationale?: string | undefined;
2540
+ generatedBy?: string | undefined;
2541
+ } | undefined;
2542
+ } | undefined;
2543
+ readonly requiredWhen?: {
2544
+ dialect: "cel" | "js" | "cron" | "template";
2545
+ source?: string | undefined;
2546
+ ast?: unknown;
2547
+ meta?: {
2548
+ rationale?: string | undefined;
2549
+ generatedBy?: string | undefined;
2550
+ } | undefined;
2551
+ } | undefined;
2202
2552
  readonly conditionalRequired?: {
2203
2553
  dialect: "cel" | "js" | "cron" | "template";
2204
2554
  source?: string | undefined;
@@ -2267,6 +2617,13 @@ declare const SysSetting: Omit<{
2267
2617
  readonly referenceFilters?: string[] | undefined;
2268
2618
  readonly writeRequiresMasterRead?: boolean | undefined;
2269
2619
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2620
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2621
+ readonly inlineTitle?: string | undefined;
2622
+ readonly inlineColumns?: any[] | undefined;
2623
+ readonly inlineAmountField?: string | undefined;
2624
+ readonly relatedList?: boolean | undefined;
2625
+ readonly relatedListTitle?: string | undefined;
2626
+ readonly relatedListColumns?: any[] | undefined;
2270
2627
  readonly expression?: {
2271
2628
  dialect: "cel" | "js" | "cron" | "template";
2272
2629
  source?: string | undefined;
@@ -2280,6 +2637,7 @@ declare const SysSetting: Omit<{
2280
2637
  object: string;
2281
2638
  field: string;
2282
2639
  function: "min" | "max" | "count" | "sum" | "avg";
2640
+ relationshipField?: string | undefined;
2283
2641
  } | undefined;
2284
2642
  readonly language?: string | undefined;
2285
2643
  readonly lineNumbers?: boolean | undefined;
@@ -2374,7 +2732,7 @@ declare const SysSetting: Omit<{
2374
2732
  threshold: number;
2375
2733
  } | undefined;
2376
2734
  } | undefined;
2377
- readonly conditionalRequired?: {
2735
+ readonly visibleWhen?: {
2378
2736
  dialect: "cel" | "js" | "cron" | "template";
2379
2737
  source?: string | undefined;
2380
2738
  ast?: unknown;
@@ -2383,19 +2741,46 @@ declare const SysSetting: Omit<{
2383
2741
  generatedBy?: string | undefined;
2384
2742
  } | undefined;
2385
2743
  } | undefined;
2386
- readonly sortable?: boolean | undefined;
2387
- readonly inlineHelpText?: string | undefined;
2388
- readonly trackFeedHistory?: boolean | undefined;
2389
- readonly caseSensitive?: boolean | undefined;
2390
- readonly autonumberFormat?: string | undefined;
2391
- readonly index?: boolean | undefined;
2392
- readonly type: "boolean";
2393
- };
2394
- readonly locked: {
2395
- readonly readonly?: boolean | undefined;
2396
- readonly format?: string | undefined;
2397
- readonly options?: {
2398
- label: string;
2744
+ readonly readonlyWhen?: {
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
+ readonly requiredWhen?: {
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;
2762
+ readonly conditionalRequired?: {
2763
+ dialect: "cel" | "js" | "cron" | "template";
2764
+ source?: string | undefined;
2765
+ ast?: unknown;
2766
+ meta?: {
2767
+ rationale?: string | undefined;
2768
+ generatedBy?: string | undefined;
2769
+ } | undefined;
2770
+ } | undefined;
2771
+ readonly sortable?: boolean | undefined;
2772
+ readonly inlineHelpText?: string | undefined;
2773
+ readonly trackFeedHistory?: boolean | undefined;
2774
+ readonly caseSensitive?: boolean | undefined;
2775
+ readonly autonumberFormat?: string | undefined;
2776
+ readonly index?: boolean | undefined;
2777
+ readonly type: "boolean";
2778
+ };
2779
+ readonly locked: {
2780
+ readonly readonly?: boolean | undefined;
2781
+ readonly format?: string | undefined;
2782
+ readonly options?: {
2783
+ label: string;
2399
2784
  value: string;
2400
2785
  color?: string | undefined;
2401
2786
  default?: boolean | undefined;
@@ -2442,6 +2827,13 @@ declare const SysSetting: Omit<{
2442
2827
  readonly referenceFilters?: string[] | undefined;
2443
2828
  readonly writeRequiresMasterRead?: boolean | undefined;
2444
2829
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2830
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2831
+ readonly inlineTitle?: string | undefined;
2832
+ readonly inlineColumns?: any[] | undefined;
2833
+ readonly inlineAmountField?: string | undefined;
2834
+ readonly relatedList?: boolean | undefined;
2835
+ readonly relatedListTitle?: string | undefined;
2836
+ readonly relatedListColumns?: any[] | undefined;
2445
2837
  readonly expression?: {
2446
2838
  dialect: "cel" | "js" | "cron" | "template";
2447
2839
  source?: string | undefined;
@@ -2455,6 +2847,7 @@ declare const SysSetting: Omit<{
2455
2847
  object: string;
2456
2848
  field: string;
2457
2849
  function: "min" | "max" | "count" | "sum" | "avg";
2850
+ relationshipField?: string | undefined;
2458
2851
  } | undefined;
2459
2852
  readonly language?: string | undefined;
2460
2853
  readonly lineNumbers?: boolean | undefined;
@@ -2549,6 +2942,33 @@ declare const SysSetting: Omit<{
2549
2942
  threshold: number;
2550
2943
  } | undefined;
2551
2944
  } | undefined;
2945
+ readonly visibleWhen?: {
2946
+ dialect: "cel" | "js" | "cron" | "template";
2947
+ source?: string | undefined;
2948
+ ast?: unknown;
2949
+ meta?: {
2950
+ rationale?: string | undefined;
2951
+ generatedBy?: string | undefined;
2952
+ } | undefined;
2953
+ } | undefined;
2954
+ readonly readonlyWhen?: {
2955
+ dialect: "cel" | "js" | "cron" | "template";
2956
+ source?: string | undefined;
2957
+ ast?: unknown;
2958
+ meta?: {
2959
+ rationale?: string | undefined;
2960
+ generatedBy?: string | undefined;
2961
+ } | undefined;
2962
+ } | undefined;
2963
+ readonly requiredWhen?: {
2964
+ dialect: "cel" | "js" | "cron" | "template";
2965
+ source?: string | undefined;
2966
+ ast?: unknown;
2967
+ meta?: {
2968
+ rationale?: string | undefined;
2969
+ generatedBy?: string | undefined;
2970
+ } | undefined;
2971
+ } | undefined;
2552
2972
  readonly conditionalRequired?: {
2553
2973
  dialect: "cel" | "js" | "cron" | "template";
2554
2974
  source?: string | undefined;
@@ -2617,6 +3037,13 @@ declare const SysSetting: Omit<{
2617
3037
  readonly referenceFilters?: string[] | undefined;
2618
3038
  readonly writeRequiresMasterRead?: boolean | undefined;
2619
3039
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
3040
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
3041
+ readonly inlineTitle?: string | undefined;
3042
+ readonly inlineColumns?: any[] | undefined;
3043
+ readonly inlineAmountField?: string | undefined;
3044
+ readonly relatedList?: boolean | undefined;
3045
+ readonly relatedListTitle?: string | undefined;
3046
+ readonly relatedListColumns?: any[] | undefined;
2620
3047
  readonly expression?: {
2621
3048
  dialect: "cel" | "js" | "cron" | "template";
2622
3049
  source?: string | undefined;
@@ -2630,6 +3057,7 @@ declare const SysSetting: Omit<{
2630
3057
  object: string;
2631
3058
  field: string;
2632
3059
  function: "min" | "max" | "count" | "sum" | "avg";
3060
+ relationshipField?: string | undefined;
2633
3061
  } | undefined;
2634
3062
  readonly language?: string | undefined;
2635
3063
  readonly lineNumbers?: boolean | undefined;
@@ -2724,6 +3152,33 @@ declare const SysSetting: Omit<{
2724
3152
  threshold: number;
2725
3153
  } | undefined;
2726
3154
  } | undefined;
3155
+ readonly visibleWhen?: {
3156
+ dialect: "cel" | "js" | "cron" | "template";
3157
+ source?: string | undefined;
3158
+ ast?: unknown;
3159
+ meta?: {
3160
+ rationale?: string | undefined;
3161
+ generatedBy?: string | undefined;
3162
+ } | undefined;
3163
+ } | undefined;
3164
+ readonly readonlyWhen?: {
3165
+ dialect: "cel" | "js" | "cron" | "template";
3166
+ source?: string | undefined;
3167
+ ast?: unknown;
3168
+ meta?: {
3169
+ rationale?: string | undefined;
3170
+ generatedBy?: string | undefined;
3171
+ } | undefined;
3172
+ } | undefined;
3173
+ readonly requiredWhen?: {
3174
+ dialect: "cel" | "js" | "cron" | "template";
3175
+ source?: string | undefined;
3176
+ ast?: unknown;
3177
+ meta?: {
3178
+ rationale?: string | undefined;
3179
+ generatedBy?: string | undefined;
3180
+ } | undefined;
3181
+ } | undefined;
2727
3182
  readonly conditionalRequired?: {
2728
3183
  dialect: "cel" | "js" | "cron" | "template";
2729
3184
  source?: string | undefined;
@@ -2792,6 +3247,13 @@ declare const SysSetting: Omit<{
2792
3247
  readonly referenceFilters?: string[] | undefined;
2793
3248
  readonly writeRequiresMasterRead?: boolean | undefined;
2794
3249
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
3250
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
3251
+ readonly inlineTitle?: string | undefined;
3252
+ readonly inlineColumns?: any[] | undefined;
3253
+ readonly inlineAmountField?: string | undefined;
3254
+ readonly relatedList?: boolean | undefined;
3255
+ readonly relatedListTitle?: string | undefined;
3256
+ readonly relatedListColumns?: any[] | undefined;
2795
3257
  readonly expression?: {
2796
3258
  dialect: "cel" | "js" | "cron" | "template";
2797
3259
  source?: string | undefined;
@@ -2805,6 +3267,7 @@ declare const SysSetting: Omit<{
2805
3267
  object: string;
2806
3268
  field: string;
2807
3269
  function: "min" | "max" | "count" | "sum" | "avg";
3270
+ relationshipField?: string | undefined;
2808
3271
  } | undefined;
2809
3272
  readonly language?: string | undefined;
2810
3273
  readonly lineNumbers?: boolean | undefined;
@@ -2899,6 +3362,33 @@ declare const SysSetting: Omit<{
2899
3362
  threshold: number;
2900
3363
  } | undefined;
2901
3364
  } | undefined;
3365
+ readonly visibleWhen?: {
3366
+ dialect: "cel" | "js" | "cron" | "template";
3367
+ source?: string | undefined;
3368
+ ast?: unknown;
3369
+ meta?: {
3370
+ rationale?: string | undefined;
3371
+ generatedBy?: string | undefined;
3372
+ } | undefined;
3373
+ } | undefined;
3374
+ readonly readonlyWhen?: {
3375
+ dialect: "cel" | "js" | "cron" | "template";
3376
+ source?: string | undefined;
3377
+ ast?: unknown;
3378
+ meta?: {
3379
+ rationale?: string | undefined;
3380
+ generatedBy?: string | undefined;
3381
+ } | undefined;
3382
+ } | undefined;
3383
+ readonly requiredWhen?: {
3384
+ dialect: "cel" | "js" | "cron" | "template";
3385
+ source?: string | undefined;
3386
+ ast?: unknown;
3387
+ meta?: {
3388
+ rationale?: string | undefined;
3389
+ generatedBy?: string | undefined;
3390
+ } | undefined;
3391
+ } | undefined;
2902
3392
  readonly conditionalRequired?: {
2903
3393
  dialect: "cel" | "js" | "cron" | "template";
2904
3394
  source?: string | undefined;
@@ -2967,6 +3457,13 @@ declare const SysSetting: Omit<{
2967
3457
  readonly referenceFilters?: string[] | undefined;
2968
3458
  readonly writeRequiresMasterRead?: boolean | undefined;
2969
3459
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
3460
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
3461
+ readonly inlineTitle?: string | undefined;
3462
+ readonly inlineColumns?: any[] | undefined;
3463
+ readonly inlineAmountField?: string | undefined;
3464
+ readonly relatedList?: boolean | undefined;
3465
+ readonly relatedListTitle?: string | undefined;
3466
+ readonly relatedListColumns?: any[] | undefined;
2970
3467
  readonly expression?: {
2971
3468
  dialect: "cel" | "js" | "cron" | "template";
2972
3469
  source?: string | undefined;
@@ -2980,6 +3477,7 @@ declare const SysSetting: Omit<{
2980
3477
  object: string;
2981
3478
  field: string;
2982
3479
  function: "min" | "max" | "count" | "sum" | "avg";
3480
+ relationshipField?: string | undefined;
2983
3481
  } | undefined;
2984
3482
  readonly language?: string | undefined;
2985
3483
  readonly lineNumbers?: boolean | undefined;
@@ -3074,6 +3572,33 @@ declare const SysSetting: Omit<{
3074
3572
  threshold: number;
3075
3573
  } | undefined;
3076
3574
  } | undefined;
3575
+ readonly visibleWhen?: {
3576
+ dialect: "cel" | "js" | "cron" | "template";
3577
+ source?: string | undefined;
3578
+ ast?: unknown;
3579
+ meta?: {
3580
+ rationale?: string | undefined;
3581
+ generatedBy?: string | undefined;
3582
+ } | undefined;
3583
+ } | undefined;
3584
+ readonly readonlyWhen?: {
3585
+ dialect: "cel" | "js" | "cron" | "template";
3586
+ source?: string | undefined;
3587
+ ast?: unknown;
3588
+ meta?: {
3589
+ rationale?: string | undefined;
3590
+ generatedBy?: string | undefined;
3591
+ } | undefined;
3592
+ } | undefined;
3593
+ readonly requiredWhen?: {
3594
+ dialect: "cel" | "js" | "cron" | "template";
3595
+ source?: string | undefined;
3596
+ ast?: unknown;
3597
+ meta?: {
3598
+ rationale?: string | undefined;
3599
+ generatedBy?: string | undefined;
3600
+ } | undefined;
3601
+ } | undefined;
3077
3602
  readonly conditionalRequired?: {
3078
3603
  dialect: "cel" | "js" | "cron" | "template";
3079
3604
  source?: string | undefined;
@@ -3179,6 +3704,13 @@ declare const SysSecret: Omit<{
3179
3704
  reference?: string | undefined;
3180
3705
  referenceFilters?: string[] | undefined;
3181
3706
  writeRequiresMasterRead?: boolean | undefined;
3707
+ inlineEdit?: boolean | "grid" | "form" | undefined;
3708
+ inlineTitle?: string | undefined;
3709
+ inlineColumns?: any[] | undefined;
3710
+ inlineAmountField?: string | undefined;
3711
+ relatedList?: boolean | undefined;
3712
+ relatedListTitle?: string | undefined;
3713
+ relatedListColumns?: any[] | undefined;
3182
3714
  expression?: {
3183
3715
  dialect: "cel" | "js" | "cron" | "template";
3184
3716
  source?: string | undefined;
@@ -3200,6 +3732,7 @@ declare const SysSecret: Omit<{
3200
3732
  object: string;
3201
3733
  field: string;
3202
3734
  function: "min" | "max" | "count" | "sum" | "avg";
3735
+ relationshipField?: string | undefined;
3203
3736
  } | undefined;
3204
3737
  language?: string | undefined;
3205
3738
  theme?: string | undefined;
@@ -3313,6 +3846,57 @@ declare const SysSecret: Omit<{
3313
3846
  } | undefined;
3314
3847
  } | undefined;
3315
3848
  group?: string | undefined;
3849
+ visibleWhen?: {
3850
+ dialect: "cel" | "js" | "cron" | "template";
3851
+ source?: string | undefined;
3852
+ ast?: unknown;
3853
+ meta?: {
3854
+ rationale?: string | undefined;
3855
+ generatedBy?: string | undefined;
3856
+ } | undefined;
3857
+ } | {
3858
+ dialect: "cel" | "js" | "cron" | "template";
3859
+ source?: string | undefined;
3860
+ ast?: unknown;
3861
+ meta?: {
3862
+ rationale?: string | undefined;
3863
+ generatedBy?: string | undefined;
3864
+ } | undefined;
3865
+ } | undefined;
3866
+ readonlyWhen?: {
3867
+ dialect: "cel" | "js" | "cron" | "template";
3868
+ source?: string | undefined;
3869
+ ast?: unknown;
3870
+ meta?: {
3871
+ rationale?: string | undefined;
3872
+ generatedBy?: string | undefined;
3873
+ } | undefined;
3874
+ } | {
3875
+ dialect: "cel" | "js" | "cron" | "template";
3876
+ source?: string | undefined;
3877
+ ast?: unknown;
3878
+ meta?: {
3879
+ rationale?: string | undefined;
3880
+ generatedBy?: string | undefined;
3881
+ } | undefined;
3882
+ } | undefined;
3883
+ requiredWhen?: {
3884
+ dialect: "cel" | "js" | "cron" | "template";
3885
+ source?: string | undefined;
3886
+ ast?: unknown;
3887
+ meta?: {
3888
+ rationale?: string | undefined;
3889
+ generatedBy?: string | undefined;
3890
+ } | undefined;
3891
+ } | {
3892
+ dialect: "cel" | "js" | "cron" | "template";
3893
+ source?: string | undefined;
3894
+ ast?: unknown;
3895
+ meta?: {
3896
+ rationale?: string | undefined;
3897
+ generatedBy?: string | undefined;
3898
+ } | undefined;
3899
+ } | undefined;
3316
3900
  conditionalRequired?: {
3317
3901
  dialect: "cel" | "js" | "cron" | "template";
3318
3902
  source?: string | undefined;
@@ -3454,7 +4038,7 @@ declare const SysSecret: Omit<{
3454
4038
  } | undefined;
3455
4039
  compactLayout?: string[] | undefined;
3456
4040
  listViews?: Record<string, {
3457
- type: "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map" | "grid";
4041
+ type: "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map";
3458
4042
  columns: string[] | {
3459
4043
  field: string;
3460
4044
  label?: string | undefined;
@@ -3623,7 +4207,7 @@ declare const SysSecret: Omit<{
3623
4207
  } | undefined;
3624
4208
  appearance?: {
3625
4209
  showDescription: boolean;
3626
- allowedVisualizations?: ("kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "map" | "grid")[] | undefined;
4210
+ allowedVisualizations?: ("grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "map")[] | undefined;
3627
4211
  } | undefined;
3628
4212
  tabs?: {
3629
4213
  name: string;
@@ -3643,7 +4227,7 @@ declare const SysSecret: Omit<{
3643
4227
  addRecord?: {
3644
4228
  enabled: boolean;
3645
4229
  position: "top" | "bottom" | "both";
3646
- mode: "modal" | "form" | "inline";
4230
+ mode: "form" | "modal" | "inline";
3647
4231
  formView?: string | undefined;
3648
4232
  } | undefined;
3649
4233
  showRecordCount?: boolean | undefined;
@@ -3729,7 +4313,7 @@ declare const SysSecret: Omit<{
3729
4313
  actions?: {
3730
4314
  name: string;
3731
4315
  label: string;
3732
- type: "url" | "flow" | "api" | "script" | "modal" | "form";
4316
+ type: "url" | "form" | "flow" | "api" | "script" | "modal";
3733
4317
  refreshAfter: boolean;
3734
4318
  objectName?: string | undefined;
3735
4319
  icon?: string | undefined;
@@ -3797,7 +4381,18 @@ declare const SysSecret: Omit<{
3797
4381
  } | undefined;
3798
4382
  shortcut?: string | undefined;
3799
4383
  bulkEnabled?: boolean | undefined;
3800
- aiExposed?: boolean | undefined;
4384
+ ai?: {
4385
+ exposed: boolean;
4386
+ description?: string | undefined;
4387
+ category?: "action" | "data" | "flow" | "integration" | "vector_search" | "analytics" | "utility" | undefined;
4388
+ paramHints?: Record<string, {
4389
+ description?: string | undefined;
4390
+ enum?: (string | number)[] | undefined;
4391
+ examples?: unknown[] | undefined;
4392
+ }> | undefined;
4393
+ outputSchema?: Record<string, unknown> | undefined;
4394
+ requiresConfirmation?: boolean | undefined;
4395
+ } | undefined;
3801
4396
  recordIdParam?: string | undefined;
3802
4397
  recordIdField?: string | undefined;
3803
4398
  bodyShape?: "flat" | {
@@ -3887,6 +4482,13 @@ declare const SysSecret: Omit<{
3887
4482
  readonly referenceFilters?: string[] | undefined;
3888
4483
  readonly writeRequiresMasterRead?: boolean | undefined;
3889
4484
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
4485
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
4486
+ readonly inlineTitle?: string | undefined;
4487
+ readonly inlineColumns?: any[] | undefined;
4488
+ readonly inlineAmountField?: string | undefined;
4489
+ readonly relatedList?: boolean | undefined;
4490
+ readonly relatedListTitle?: string | undefined;
4491
+ readonly relatedListColumns?: any[] | undefined;
3890
4492
  readonly expression?: {
3891
4493
  dialect: "cel" | "js" | "cron" | "template";
3892
4494
  source?: string | undefined;
@@ -3900,6 +4502,7 @@ declare const SysSecret: Omit<{
3900
4502
  object: string;
3901
4503
  field: string;
3902
4504
  function: "min" | "max" | "count" | "sum" | "avg";
4505
+ relationshipField?: string | undefined;
3903
4506
  } | undefined;
3904
4507
  readonly language?: string | undefined;
3905
4508
  readonly lineNumbers?: boolean | undefined;
@@ -3994,6 +4597,33 @@ declare const SysSecret: Omit<{
3994
4597
  threshold: number;
3995
4598
  } | undefined;
3996
4599
  } | undefined;
4600
+ readonly visibleWhen?: {
4601
+ dialect: "cel" | "js" | "cron" | "template";
4602
+ source?: string | undefined;
4603
+ ast?: unknown;
4604
+ meta?: {
4605
+ rationale?: string | undefined;
4606
+ generatedBy?: string | undefined;
4607
+ } | undefined;
4608
+ } | undefined;
4609
+ readonly readonlyWhen?: {
4610
+ dialect: "cel" | "js" | "cron" | "template";
4611
+ source?: string | undefined;
4612
+ ast?: unknown;
4613
+ meta?: {
4614
+ rationale?: string | undefined;
4615
+ generatedBy?: string | undefined;
4616
+ } | undefined;
4617
+ } | undefined;
4618
+ readonly requiredWhen?: {
4619
+ dialect: "cel" | "js" | "cron" | "template";
4620
+ source?: string | undefined;
4621
+ ast?: unknown;
4622
+ meta?: {
4623
+ rationale?: string | undefined;
4624
+ generatedBy?: string | undefined;
4625
+ } | undefined;
4626
+ } | undefined;
3997
4627
  readonly conditionalRequired?: {
3998
4628
  dialect: "cel" | "js" | "cron" | "template";
3999
4629
  source?: string | undefined;
@@ -4062,6 +4692,13 @@ declare const SysSecret: Omit<{
4062
4692
  readonly referenceFilters?: string[] | undefined;
4063
4693
  readonly writeRequiresMasterRead?: boolean | undefined;
4064
4694
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
4695
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
4696
+ readonly inlineTitle?: string | undefined;
4697
+ readonly inlineColumns?: any[] | undefined;
4698
+ readonly inlineAmountField?: string | undefined;
4699
+ readonly relatedList?: boolean | undefined;
4700
+ readonly relatedListTitle?: string | undefined;
4701
+ readonly relatedListColumns?: any[] | undefined;
4065
4702
  readonly expression?: {
4066
4703
  dialect: "cel" | "js" | "cron" | "template";
4067
4704
  source?: string | undefined;
@@ -4075,6 +4712,7 @@ declare const SysSecret: Omit<{
4075
4712
  object: string;
4076
4713
  field: string;
4077
4714
  function: "min" | "max" | "count" | "sum" | "avg";
4715
+ relationshipField?: string | undefined;
4078
4716
  } | undefined;
4079
4717
  readonly language?: string | undefined;
4080
4718
  readonly lineNumbers?: boolean | undefined;
@@ -4169,6 +4807,33 @@ declare const SysSecret: Omit<{
4169
4807
  threshold: number;
4170
4808
  } | undefined;
4171
4809
  } | undefined;
4810
+ readonly visibleWhen?: {
4811
+ dialect: "cel" | "js" | "cron" | "template";
4812
+ source?: string | undefined;
4813
+ ast?: unknown;
4814
+ meta?: {
4815
+ rationale?: string | undefined;
4816
+ generatedBy?: string | undefined;
4817
+ } | undefined;
4818
+ } | undefined;
4819
+ readonly readonlyWhen?: {
4820
+ dialect: "cel" | "js" | "cron" | "template";
4821
+ source?: string | undefined;
4822
+ ast?: unknown;
4823
+ meta?: {
4824
+ rationale?: string | undefined;
4825
+ generatedBy?: string | undefined;
4826
+ } | undefined;
4827
+ } | undefined;
4828
+ readonly requiredWhen?: {
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;
4172
4837
  readonly conditionalRequired?: {
4173
4838
  dialect: "cel" | "js" | "cron" | "template";
4174
4839
  source?: string | undefined;
@@ -4237,6 +4902,13 @@ declare const SysSecret: Omit<{
4237
4902
  readonly referenceFilters?: string[] | undefined;
4238
4903
  readonly writeRequiresMasterRead?: boolean | undefined;
4239
4904
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
4905
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
4906
+ readonly inlineTitle?: string | undefined;
4907
+ readonly inlineColumns?: any[] | undefined;
4908
+ readonly inlineAmountField?: string | undefined;
4909
+ readonly relatedList?: boolean | undefined;
4910
+ readonly relatedListTitle?: string | undefined;
4911
+ readonly relatedListColumns?: any[] | undefined;
4240
4912
  readonly expression?: {
4241
4913
  dialect: "cel" | "js" | "cron" | "template";
4242
4914
  source?: string | undefined;
@@ -4250,6 +4922,7 @@ declare const SysSecret: Omit<{
4250
4922
  object: string;
4251
4923
  field: string;
4252
4924
  function: "min" | "max" | "count" | "sum" | "avg";
4925
+ relationshipField?: string | undefined;
4253
4926
  } | undefined;
4254
4927
  readonly language?: string | undefined;
4255
4928
  readonly lineNumbers?: boolean | undefined;
@@ -4344,6 +5017,33 @@ declare const SysSecret: Omit<{
4344
5017
  threshold: number;
4345
5018
  } | undefined;
4346
5019
  } | undefined;
5020
+ readonly visibleWhen?: {
5021
+ dialect: "cel" | "js" | "cron" | "template";
5022
+ source?: string | undefined;
5023
+ ast?: unknown;
5024
+ meta?: {
5025
+ rationale?: string | undefined;
5026
+ generatedBy?: string | undefined;
5027
+ } | undefined;
5028
+ } | undefined;
5029
+ readonly readonlyWhen?: {
5030
+ dialect: "cel" | "js" | "cron" | "template";
5031
+ source?: string | undefined;
5032
+ ast?: unknown;
5033
+ meta?: {
5034
+ rationale?: string | undefined;
5035
+ generatedBy?: string | undefined;
5036
+ } | undefined;
5037
+ } | undefined;
5038
+ readonly requiredWhen?: {
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;
4347
5047
  readonly conditionalRequired?: {
4348
5048
  dialect: "cel" | "js" | "cron" | "template";
4349
5049
  source?: string | undefined;
@@ -4418,6 +5118,13 @@ declare const SysSecret: Omit<{
4418
5118
  readonly referenceFilters?: string[] | undefined;
4419
5119
  readonly writeRequiresMasterRead?: boolean | undefined;
4420
5120
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
5121
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
5122
+ readonly inlineTitle?: string | undefined;
5123
+ readonly inlineColumns?: any[] | undefined;
5124
+ readonly inlineAmountField?: string | undefined;
5125
+ readonly relatedList?: boolean | undefined;
5126
+ readonly relatedListTitle?: string | undefined;
5127
+ readonly relatedListColumns?: any[] | undefined;
4421
5128
  readonly expression?: {
4422
5129
  dialect: "cel" | "js" | "cron" | "template";
4423
5130
  source?: string | undefined;
@@ -4431,6 +5138,7 @@ declare const SysSecret: Omit<{
4431
5138
  object: string;
4432
5139
  field: string;
4433
5140
  function: "min" | "max" | "count" | "sum" | "avg";
5141
+ relationshipField?: string | undefined;
4434
5142
  } | undefined;
4435
5143
  readonly language?: string | undefined;
4436
5144
  readonly lineNumbers?: boolean | undefined;
@@ -4525,6 +5233,33 @@ declare const SysSecret: Omit<{
4525
5233
  threshold: number;
4526
5234
  } | undefined;
4527
5235
  } | undefined;
5236
+ readonly visibleWhen?: {
5237
+ dialect: "cel" | "js" | "cron" | "template";
5238
+ source?: string | undefined;
5239
+ ast?: unknown;
5240
+ meta?: {
5241
+ rationale?: string | undefined;
5242
+ generatedBy?: string | undefined;
5243
+ } | undefined;
5244
+ } | undefined;
5245
+ readonly readonlyWhen?: {
5246
+ dialect: "cel" | "js" | "cron" | "template";
5247
+ source?: string | undefined;
5248
+ ast?: unknown;
5249
+ meta?: {
5250
+ rationale?: string | undefined;
5251
+ generatedBy?: string | undefined;
5252
+ } | undefined;
5253
+ } | undefined;
5254
+ readonly requiredWhen?: {
5255
+ dialect: "cel" | "js" | "cron" | "template";
5256
+ source?: string | undefined;
5257
+ ast?: unknown;
5258
+ meta?: {
5259
+ rationale?: string | undefined;
5260
+ generatedBy?: string | undefined;
5261
+ } | undefined;
5262
+ } | undefined;
4528
5263
  readonly conditionalRequired?: {
4529
5264
  dialect: "cel" | "js" | "cron" | "template";
4530
5265
  source?: string | undefined;
@@ -4593,6 +5328,13 @@ declare const SysSecret: Omit<{
4593
5328
  readonly referenceFilters?: string[] | undefined;
4594
5329
  readonly writeRequiresMasterRead?: boolean | undefined;
4595
5330
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
5331
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
5332
+ readonly inlineTitle?: string | undefined;
5333
+ readonly inlineColumns?: any[] | undefined;
5334
+ readonly inlineAmountField?: string | undefined;
5335
+ readonly relatedList?: boolean | undefined;
5336
+ readonly relatedListTitle?: string | undefined;
5337
+ readonly relatedListColumns?: any[] | undefined;
4596
5338
  readonly expression?: {
4597
5339
  dialect: "cel" | "js" | "cron" | "template";
4598
5340
  source?: string | undefined;
@@ -4606,6 +5348,7 @@ declare const SysSecret: Omit<{
4606
5348
  object: string;
4607
5349
  field: string;
4608
5350
  function: "min" | "max" | "count" | "sum" | "avg";
5351
+ relationshipField?: string | undefined;
4609
5352
  } | undefined;
4610
5353
  readonly language?: string | undefined;
4611
5354
  readonly lineNumbers?: boolean | undefined;
@@ -4700,6 +5443,33 @@ declare const SysSecret: Omit<{
4700
5443
  threshold: number;
4701
5444
  } | undefined;
4702
5445
  } | undefined;
5446
+ readonly visibleWhen?: {
5447
+ dialect: "cel" | "js" | "cron" | "template";
5448
+ source?: string | undefined;
5449
+ ast?: unknown;
5450
+ meta?: {
5451
+ rationale?: string | undefined;
5452
+ generatedBy?: string | undefined;
5453
+ } | undefined;
5454
+ } | undefined;
5455
+ readonly readonlyWhen?: {
5456
+ dialect: "cel" | "js" | "cron" | "template";
5457
+ source?: string | undefined;
5458
+ ast?: unknown;
5459
+ meta?: {
5460
+ rationale?: string | undefined;
5461
+ generatedBy?: string | undefined;
5462
+ } | undefined;
5463
+ } | undefined;
5464
+ readonly requiredWhen?: {
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;
4703
5473
  readonly conditionalRequired?: {
4704
5474
  dialect: "cel" | "js" | "cron" | "template";
4705
5475
  source?: string | undefined;
@@ -4769,6 +5539,13 @@ declare const SysSecret: Omit<{
4769
5539
  readonly referenceFilters?: string[] | undefined;
4770
5540
  readonly writeRequiresMasterRead?: boolean | undefined;
4771
5541
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
5542
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
5543
+ readonly inlineTitle?: string | undefined;
5544
+ readonly inlineColumns?: any[] | undefined;
5545
+ readonly inlineAmountField?: string | undefined;
5546
+ readonly relatedList?: boolean | undefined;
5547
+ readonly relatedListTitle?: string | undefined;
5548
+ readonly relatedListColumns?: any[] | undefined;
4772
5549
  readonly expression?: {
4773
5550
  dialect: "cel" | "js" | "cron" | "template";
4774
5551
  source?: string | undefined;
@@ -4782,6 +5559,7 @@ declare const SysSecret: Omit<{
4782
5559
  object: string;
4783
5560
  field: string;
4784
5561
  function: "min" | "max" | "count" | "sum" | "avg";
5562
+ relationshipField?: string | undefined;
4785
5563
  } | undefined;
4786
5564
  readonly language?: string | undefined;
4787
5565
  readonly lineNumbers?: boolean | undefined;
@@ -4876,6 +5654,33 @@ declare const SysSecret: Omit<{
4876
5654
  threshold: number;
4877
5655
  } | undefined;
4878
5656
  } | undefined;
5657
+ readonly visibleWhen?: {
5658
+ dialect: "cel" | "js" | "cron" | "template";
5659
+ source?: string | undefined;
5660
+ ast?: unknown;
5661
+ meta?: {
5662
+ rationale?: string | undefined;
5663
+ generatedBy?: string | undefined;
5664
+ } | undefined;
5665
+ } | undefined;
5666
+ readonly readonlyWhen?: {
5667
+ dialect: "cel" | "js" | "cron" | "template";
5668
+ source?: string | undefined;
5669
+ ast?: unknown;
5670
+ meta?: {
5671
+ rationale?: string | undefined;
5672
+ generatedBy?: string | undefined;
5673
+ } | undefined;
5674
+ } | undefined;
5675
+ readonly requiredWhen?: {
5676
+ dialect: "cel" | "js" | "cron" | "template";
5677
+ source?: string | undefined;
5678
+ ast?: unknown;
5679
+ meta?: {
5680
+ rationale?: string | undefined;
5681
+ generatedBy?: string | undefined;
5682
+ } | undefined;
5683
+ } | undefined;
4879
5684
  readonly conditionalRequired?: {
4880
5685
  dialect: "cel" | "js" | "cron" | "template";
4881
5686
  source?: string | undefined;
@@ -4945,6 +5750,13 @@ declare const SysSecret: Omit<{
4945
5750
  readonly referenceFilters?: string[] | undefined;
4946
5751
  readonly writeRequiresMasterRead?: boolean | undefined;
4947
5752
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
5753
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
5754
+ readonly inlineTitle?: string | undefined;
5755
+ readonly inlineColumns?: any[] | undefined;
5756
+ readonly inlineAmountField?: string | undefined;
5757
+ readonly relatedList?: boolean | undefined;
5758
+ readonly relatedListTitle?: string | undefined;
5759
+ readonly relatedListColumns?: any[] | undefined;
4948
5760
  readonly expression?: {
4949
5761
  dialect: "cel" | "js" | "cron" | "template";
4950
5762
  source?: string | undefined;
@@ -4958,6 +5770,7 @@ declare const SysSecret: Omit<{
4958
5770
  object: string;
4959
5771
  field: string;
4960
5772
  function: "min" | "max" | "count" | "sum" | "avg";
5773
+ relationshipField?: string | undefined;
4961
5774
  } | undefined;
4962
5775
  readonly language?: string | undefined;
4963
5776
  readonly lineNumbers?: boolean | undefined;
@@ -5052,6 +5865,33 @@ declare const SysSecret: Omit<{
5052
5865
  threshold: number;
5053
5866
  } | undefined;
5054
5867
  } | undefined;
5868
+ readonly visibleWhen?: {
5869
+ dialect: "cel" | "js" | "cron" | "template";
5870
+ source?: string | undefined;
5871
+ ast?: unknown;
5872
+ meta?: {
5873
+ rationale?: string | undefined;
5874
+ generatedBy?: string | undefined;
5875
+ } | undefined;
5876
+ } | undefined;
5877
+ readonly readonlyWhen?: {
5878
+ dialect: "cel" | "js" | "cron" | "template";
5879
+ source?: string | undefined;
5880
+ ast?: unknown;
5881
+ meta?: {
5882
+ rationale?: string | undefined;
5883
+ generatedBy?: string | undefined;
5884
+ } | undefined;
5885
+ } | undefined;
5886
+ readonly requiredWhen?: {
5887
+ dialect: "cel" | "js" | "cron" | "template";
5888
+ source?: string | undefined;
5889
+ ast?: unknown;
5890
+ meta?: {
5891
+ rationale?: string | undefined;
5892
+ generatedBy?: string | undefined;
5893
+ } | undefined;
5894
+ } | undefined;
5055
5895
  readonly conditionalRequired?: {
5056
5896
  dialect: "cel" | "js" | "cron" | "template";
5057
5897
  source?: string | undefined;
@@ -5121,6 +5961,13 @@ declare const SysSecret: Omit<{
5121
5961
  readonly referenceFilters?: string[] | undefined;
5122
5962
  readonly writeRequiresMasterRead?: boolean | undefined;
5123
5963
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
5964
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
5965
+ readonly inlineTitle?: string | undefined;
5966
+ readonly inlineColumns?: any[] | undefined;
5967
+ readonly inlineAmountField?: string | undefined;
5968
+ readonly relatedList?: boolean | undefined;
5969
+ readonly relatedListTitle?: string | undefined;
5970
+ readonly relatedListColumns?: any[] | undefined;
5124
5971
  readonly expression?: {
5125
5972
  dialect: "cel" | "js" | "cron" | "template";
5126
5973
  source?: string | undefined;
@@ -5134,6 +5981,7 @@ declare const SysSecret: Omit<{
5134
5981
  object: string;
5135
5982
  field: string;
5136
5983
  function: "min" | "max" | "count" | "sum" | "avg";
5984
+ relationshipField?: string | undefined;
5137
5985
  } | undefined;
5138
5986
  readonly language?: string | undefined;
5139
5987
  readonly lineNumbers?: boolean | undefined;
@@ -5228,6 +6076,33 @@ declare const SysSecret: Omit<{
5228
6076
  threshold: number;
5229
6077
  } | undefined;
5230
6078
  } | undefined;
6079
+ readonly visibleWhen?: {
6080
+ dialect: "cel" | "js" | "cron" | "template";
6081
+ source?: string | undefined;
6082
+ ast?: unknown;
6083
+ meta?: {
6084
+ rationale?: string | undefined;
6085
+ generatedBy?: string | undefined;
6086
+ } | undefined;
6087
+ } | undefined;
6088
+ readonly readonlyWhen?: {
6089
+ dialect: "cel" | "js" | "cron" | "template";
6090
+ source?: string | undefined;
6091
+ ast?: unknown;
6092
+ meta?: {
6093
+ rationale?: string | undefined;
6094
+ generatedBy?: string | undefined;
6095
+ } | undefined;
6096
+ } | undefined;
6097
+ readonly requiredWhen?: {
6098
+ dialect: "cel" | "js" | "cron" | "template";
6099
+ source?: string | undefined;
6100
+ ast?: unknown;
6101
+ meta?: {
6102
+ rationale?: string | undefined;
6103
+ generatedBy?: string | undefined;
6104
+ } | undefined;
6105
+ } | undefined;
5231
6106
  readonly conditionalRequired?: {
5232
6107
  dialect: "cel" | "js" | "cron" | "template";
5233
6108
  source?: string | undefined;
@@ -5296,6 +6171,13 @@ declare const SysSecret: Omit<{
5296
6171
  readonly referenceFilters?: string[] | undefined;
5297
6172
  readonly writeRequiresMasterRead?: boolean | undefined;
5298
6173
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
6174
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
6175
+ readonly inlineTitle?: string | undefined;
6176
+ readonly inlineColumns?: any[] | undefined;
6177
+ readonly inlineAmountField?: string | undefined;
6178
+ readonly relatedList?: boolean | undefined;
6179
+ readonly relatedListTitle?: string | undefined;
6180
+ readonly relatedListColumns?: any[] | undefined;
5299
6181
  readonly expression?: {
5300
6182
  dialect: "cel" | "js" | "cron" | "template";
5301
6183
  source?: string | undefined;
@@ -5309,6 +6191,7 @@ declare const SysSecret: Omit<{
5309
6191
  object: string;
5310
6192
  field: string;
5311
6193
  function: "min" | "max" | "count" | "sum" | "avg";
6194
+ relationshipField?: string | undefined;
5312
6195
  } | undefined;
5313
6196
  readonly language?: string | undefined;
5314
6197
  readonly lineNumbers?: boolean | undefined;
@@ -5403,6 +6286,33 @@ declare const SysSecret: Omit<{
5403
6286
  threshold: number;
5404
6287
  } | undefined;
5405
6288
  } | undefined;
6289
+ readonly visibleWhen?: {
6290
+ dialect: "cel" | "js" | "cron" | "template";
6291
+ source?: string | undefined;
6292
+ ast?: unknown;
6293
+ meta?: {
6294
+ rationale?: string | undefined;
6295
+ generatedBy?: string | undefined;
6296
+ } | undefined;
6297
+ } | undefined;
6298
+ readonly readonlyWhen?: {
6299
+ dialect: "cel" | "js" | "cron" | "template";
6300
+ source?: string | undefined;
6301
+ ast?: unknown;
6302
+ meta?: {
6303
+ rationale?: string | undefined;
6304
+ generatedBy?: string | undefined;
6305
+ } | undefined;
6306
+ } | undefined;
6307
+ readonly requiredWhen?: {
6308
+ dialect: "cel" | "js" | "cron" | "template";
6309
+ source?: string | undefined;
6310
+ ast?: unknown;
6311
+ meta?: {
6312
+ rationale?: string | undefined;
6313
+ generatedBy?: string | undefined;
6314
+ } | undefined;
6315
+ } | undefined;
5406
6316
  readonly conditionalRequired?: {
5407
6317
  dialect: "cel" | "js" | "cron" | "template";
5408
6318
  source?: string | undefined;
@@ -5498,6 +6408,13 @@ declare const SysSettingAudit: Omit<{
5498
6408
  reference?: string | undefined;
5499
6409
  referenceFilters?: string[] | undefined;
5500
6410
  writeRequiresMasterRead?: boolean | undefined;
6411
+ inlineEdit?: boolean | "grid" | "form" | undefined;
6412
+ inlineTitle?: string | undefined;
6413
+ inlineColumns?: any[] | undefined;
6414
+ inlineAmountField?: string | undefined;
6415
+ relatedList?: boolean | undefined;
6416
+ relatedListTitle?: string | undefined;
6417
+ relatedListColumns?: any[] | undefined;
5501
6418
  expression?: {
5502
6419
  dialect: "cel" | "js" | "cron" | "template";
5503
6420
  source?: string | undefined;
@@ -5519,6 +6436,7 @@ declare const SysSettingAudit: Omit<{
5519
6436
  object: string;
5520
6437
  field: string;
5521
6438
  function: "min" | "max" | "count" | "sum" | "avg";
6439
+ relationshipField?: string | undefined;
5522
6440
  } | undefined;
5523
6441
  language?: string | undefined;
5524
6442
  theme?: string | undefined;
@@ -5632,6 +6550,57 @@ declare const SysSettingAudit: Omit<{
5632
6550
  } | undefined;
5633
6551
  } | undefined;
5634
6552
  group?: string | undefined;
6553
+ visibleWhen?: {
6554
+ dialect: "cel" | "js" | "cron" | "template";
6555
+ source?: string | undefined;
6556
+ ast?: unknown;
6557
+ meta?: {
6558
+ rationale?: string | undefined;
6559
+ generatedBy?: string | undefined;
6560
+ } | undefined;
6561
+ } | {
6562
+ dialect: "cel" | "js" | "cron" | "template";
6563
+ source?: string | undefined;
6564
+ ast?: unknown;
6565
+ meta?: {
6566
+ rationale?: string | undefined;
6567
+ generatedBy?: string | undefined;
6568
+ } | undefined;
6569
+ } | undefined;
6570
+ readonlyWhen?: {
6571
+ dialect: "cel" | "js" | "cron" | "template";
6572
+ source?: string | undefined;
6573
+ ast?: unknown;
6574
+ meta?: {
6575
+ rationale?: string | undefined;
6576
+ generatedBy?: string | undefined;
6577
+ } | undefined;
6578
+ } | {
6579
+ dialect: "cel" | "js" | "cron" | "template";
6580
+ source?: string | undefined;
6581
+ ast?: unknown;
6582
+ meta?: {
6583
+ rationale?: string | undefined;
6584
+ generatedBy?: string | undefined;
6585
+ } | undefined;
6586
+ } | undefined;
6587
+ requiredWhen?: {
6588
+ dialect: "cel" | "js" | "cron" | "template";
6589
+ source?: string | undefined;
6590
+ ast?: unknown;
6591
+ meta?: {
6592
+ rationale?: string | undefined;
6593
+ generatedBy?: string | undefined;
6594
+ } | undefined;
6595
+ } | {
6596
+ dialect: "cel" | "js" | "cron" | "template";
6597
+ source?: string | undefined;
6598
+ ast?: unknown;
6599
+ meta?: {
6600
+ rationale?: string | undefined;
6601
+ generatedBy?: string | undefined;
6602
+ } | undefined;
6603
+ } | undefined;
5635
6604
  conditionalRequired?: {
5636
6605
  dialect: "cel" | "js" | "cron" | "template";
5637
6606
  source?: string | undefined;
@@ -5773,7 +6742,7 @@ declare const SysSettingAudit: Omit<{
5773
6742
  } | undefined;
5774
6743
  compactLayout?: string[] | undefined;
5775
6744
  listViews?: Record<string, {
5776
- type: "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map" | "grid";
6745
+ type: "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map";
5777
6746
  columns: string[] | {
5778
6747
  field: string;
5779
6748
  label?: string | undefined;
@@ -5942,7 +6911,7 @@ declare const SysSettingAudit: Omit<{
5942
6911
  } | undefined;
5943
6912
  appearance?: {
5944
6913
  showDescription: boolean;
5945
- allowedVisualizations?: ("kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "map" | "grid")[] | undefined;
6914
+ allowedVisualizations?: ("grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "map")[] | undefined;
5946
6915
  } | undefined;
5947
6916
  tabs?: {
5948
6917
  name: string;
@@ -5962,7 +6931,7 @@ declare const SysSettingAudit: Omit<{
5962
6931
  addRecord?: {
5963
6932
  enabled: boolean;
5964
6933
  position: "top" | "bottom" | "both";
5965
- mode: "modal" | "form" | "inline";
6934
+ mode: "form" | "modal" | "inline";
5966
6935
  formView?: string | undefined;
5967
6936
  } | undefined;
5968
6937
  showRecordCount?: boolean | undefined;
@@ -6048,7 +7017,7 @@ declare const SysSettingAudit: Omit<{
6048
7017
  actions?: {
6049
7018
  name: string;
6050
7019
  label: string;
6051
- type: "url" | "flow" | "api" | "script" | "modal" | "form";
7020
+ type: "url" | "form" | "flow" | "api" | "script" | "modal";
6052
7021
  refreshAfter: boolean;
6053
7022
  objectName?: string | undefined;
6054
7023
  icon?: string | undefined;
@@ -6116,7 +7085,18 @@ declare const SysSettingAudit: Omit<{
6116
7085
  } | undefined;
6117
7086
  shortcut?: string | undefined;
6118
7087
  bulkEnabled?: boolean | undefined;
6119
- aiExposed?: boolean | undefined;
7088
+ ai?: {
7089
+ exposed: boolean;
7090
+ description?: string | undefined;
7091
+ category?: "action" | "data" | "flow" | "integration" | "vector_search" | "analytics" | "utility" | undefined;
7092
+ paramHints?: Record<string, {
7093
+ description?: string | undefined;
7094
+ enum?: (string | number)[] | undefined;
7095
+ examples?: unknown[] | undefined;
7096
+ }> | undefined;
7097
+ outputSchema?: Record<string, unknown> | undefined;
7098
+ requiresConfirmation?: boolean | undefined;
7099
+ } | undefined;
6120
7100
  recordIdParam?: string | undefined;
6121
7101
  recordIdField?: string | undefined;
6122
7102
  bodyShape?: "flat" | {
@@ -6210,6 +7190,13 @@ declare const SysSettingAudit: Omit<{
6210
7190
  readonly referenceFilters?: string[] | undefined;
6211
7191
  readonly writeRequiresMasterRead?: boolean | undefined;
6212
7192
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
7193
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
7194
+ readonly inlineTitle?: string | undefined;
7195
+ readonly inlineColumns?: any[] | undefined;
7196
+ readonly inlineAmountField?: string | undefined;
7197
+ readonly relatedList?: boolean | undefined;
7198
+ readonly relatedListTitle?: string | undefined;
7199
+ readonly relatedListColumns?: any[] | undefined;
6213
7200
  readonly expression?: {
6214
7201
  dialect: "cel" | "js" | "cron" | "template";
6215
7202
  source?: string | undefined;
@@ -6223,6 +7210,7 @@ declare const SysSettingAudit: Omit<{
6223
7210
  object: string;
6224
7211
  field: string;
6225
7212
  function: "min" | "max" | "count" | "sum" | "avg";
7213
+ relationshipField?: string | undefined;
6226
7214
  } | undefined;
6227
7215
  readonly language?: string | undefined;
6228
7216
  readonly lineNumbers?: boolean | undefined;
@@ -6317,6 +7305,33 @@ declare const SysSettingAudit: Omit<{
6317
7305
  threshold: number;
6318
7306
  } | undefined;
6319
7307
  } | undefined;
7308
+ readonly visibleWhen?: {
7309
+ dialect: "cel" | "js" | "cron" | "template";
7310
+ source?: string | undefined;
7311
+ ast?: unknown;
7312
+ meta?: {
7313
+ rationale?: string | undefined;
7314
+ generatedBy?: string | undefined;
7315
+ } | undefined;
7316
+ } | undefined;
7317
+ readonly readonlyWhen?: {
7318
+ dialect: "cel" | "js" | "cron" | "template";
7319
+ source?: string | undefined;
7320
+ ast?: unknown;
7321
+ meta?: {
7322
+ rationale?: string | undefined;
7323
+ generatedBy?: string | undefined;
7324
+ } | undefined;
7325
+ } | undefined;
7326
+ readonly requiredWhen?: {
7327
+ dialect: "cel" | "js" | "cron" | "template";
7328
+ source?: string | undefined;
7329
+ ast?: unknown;
7330
+ meta?: {
7331
+ rationale?: string | undefined;
7332
+ generatedBy?: string | undefined;
7333
+ } | undefined;
7334
+ } | undefined;
6320
7335
  readonly conditionalRequired?: {
6321
7336
  dialect: "cel" | "js" | "cron" | "template";
6322
7337
  source?: string | undefined;
@@ -6385,6 +7400,13 @@ declare const SysSettingAudit: Omit<{
6385
7400
  readonly referenceFilters?: string[] | undefined;
6386
7401
  readonly writeRequiresMasterRead?: boolean | undefined;
6387
7402
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
7403
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
7404
+ readonly inlineTitle?: string | undefined;
7405
+ readonly inlineColumns?: any[] | undefined;
7406
+ readonly inlineAmountField?: string | undefined;
7407
+ readonly relatedList?: boolean | undefined;
7408
+ readonly relatedListTitle?: string | undefined;
7409
+ readonly relatedListColumns?: any[] | undefined;
6388
7410
  readonly expression?: {
6389
7411
  dialect: "cel" | "js" | "cron" | "template";
6390
7412
  source?: string | undefined;
@@ -6398,6 +7420,7 @@ declare const SysSettingAudit: Omit<{
6398
7420
  object: string;
6399
7421
  field: string;
6400
7422
  function: "min" | "max" | "count" | "sum" | "avg";
7423
+ relationshipField?: string | undefined;
6401
7424
  } | undefined;
6402
7425
  readonly language?: string | undefined;
6403
7426
  readonly lineNumbers?: boolean | undefined;
@@ -6492,6 +7515,33 @@ declare const SysSettingAudit: Omit<{
6492
7515
  threshold: number;
6493
7516
  } | undefined;
6494
7517
  } | undefined;
7518
+ readonly visibleWhen?: {
7519
+ dialect: "cel" | "js" | "cron" | "template";
7520
+ source?: string | undefined;
7521
+ ast?: unknown;
7522
+ meta?: {
7523
+ rationale?: string | undefined;
7524
+ generatedBy?: string | undefined;
7525
+ } | undefined;
7526
+ } | undefined;
7527
+ readonly readonlyWhen?: {
7528
+ dialect: "cel" | "js" | "cron" | "template";
7529
+ source?: string | undefined;
7530
+ ast?: unknown;
7531
+ meta?: {
7532
+ rationale?: string | undefined;
7533
+ generatedBy?: string | undefined;
7534
+ } | undefined;
7535
+ } | undefined;
7536
+ readonly requiredWhen?: {
7537
+ dialect: "cel" | "js" | "cron" | "template";
7538
+ source?: string | undefined;
7539
+ ast?: unknown;
7540
+ meta?: {
7541
+ rationale?: string | undefined;
7542
+ generatedBy?: string | undefined;
7543
+ } | undefined;
7544
+ } | undefined;
6495
7545
  readonly conditionalRequired?: {
6496
7546
  dialect: "cel" | "js" | "cron" | "template";
6497
7547
  source?: string | undefined;
@@ -6560,6 +7610,13 @@ declare const SysSettingAudit: Omit<{
6560
7610
  readonly referenceFilters?: string[] | undefined;
6561
7611
  readonly writeRequiresMasterRead?: boolean | undefined;
6562
7612
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
7613
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
7614
+ readonly inlineTitle?: string | undefined;
7615
+ readonly inlineColumns?: any[] | undefined;
7616
+ readonly inlineAmountField?: string | undefined;
7617
+ readonly relatedList?: boolean | undefined;
7618
+ readonly relatedListTitle?: string | undefined;
7619
+ readonly relatedListColumns?: any[] | undefined;
6563
7620
  readonly expression?: {
6564
7621
  dialect: "cel" | "js" | "cron" | "template";
6565
7622
  source?: string | undefined;
@@ -6573,6 +7630,7 @@ declare const SysSettingAudit: Omit<{
6573
7630
  object: string;
6574
7631
  field: string;
6575
7632
  function: "min" | "max" | "count" | "sum" | "avg";
7633
+ relationshipField?: string | undefined;
6576
7634
  } | undefined;
6577
7635
  readonly language?: string | undefined;
6578
7636
  readonly lineNumbers?: boolean | undefined;
@@ -6667,6 +7725,33 @@ declare const SysSettingAudit: Omit<{
6667
7725
  threshold: number;
6668
7726
  } | undefined;
6669
7727
  } | undefined;
7728
+ readonly visibleWhen?: {
7729
+ dialect: "cel" | "js" | "cron" | "template";
7730
+ source?: string | undefined;
7731
+ ast?: unknown;
7732
+ meta?: {
7733
+ rationale?: string | undefined;
7734
+ generatedBy?: string | undefined;
7735
+ } | undefined;
7736
+ } | undefined;
7737
+ readonly readonlyWhen?: {
7738
+ dialect: "cel" | "js" | "cron" | "template";
7739
+ source?: string | undefined;
7740
+ ast?: unknown;
7741
+ meta?: {
7742
+ rationale?: string | undefined;
7743
+ generatedBy?: string | undefined;
7744
+ } | undefined;
7745
+ } | undefined;
7746
+ readonly requiredWhen?: {
7747
+ dialect: "cel" | "js" | "cron" | "template";
7748
+ source?: string | undefined;
7749
+ ast?: unknown;
7750
+ meta?: {
7751
+ rationale?: string | undefined;
7752
+ generatedBy?: string | undefined;
7753
+ } | undefined;
7754
+ } | undefined;
6670
7755
  readonly conditionalRequired?: {
6671
7756
  dialect: "cel" | "js" | "cron" | "template";
6672
7757
  source?: string | undefined;
@@ -6735,6 +7820,13 @@ declare const SysSettingAudit: Omit<{
6735
7820
  readonly referenceFilters?: string[] | undefined;
6736
7821
  readonly writeRequiresMasterRead?: boolean | undefined;
6737
7822
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
7823
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
7824
+ readonly inlineTitle?: string | undefined;
7825
+ readonly inlineColumns?: any[] | undefined;
7826
+ readonly inlineAmountField?: string | undefined;
7827
+ readonly relatedList?: boolean | undefined;
7828
+ readonly relatedListTitle?: string | undefined;
7829
+ readonly relatedListColumns?: any[] | undefined;
6738
7830
  readonly expression?: {
6739
7831
  dialect: "cel" | "js" | "cron" | "template";
6740
7832
  source?: string | undefined;
@@ -6748,6 +7840,7 @@ declare const SysSettingAudit: Omit<{
6748
7840
  object: string;
6749
7841
  field: string;
6750
7842
  function: "min" | "max" | "count" | "sum" | "avg";
7843
+ relationshipField?: string | undefined;
6751
7844
  } | undefined;
6752
7845
  readonly language?: string | undefined;
6753
7846
  readonly lineNumbers?: boolean | undefined;
@@ -6842,6 +7935,33 @@ declare const SysSettingAudit: Omit<{
6842
7935
  threshold: number;
6843
7936
  } | undefined;
6844
7937
  } | undefined;
7938
+ readonly visibleWhen?: {
7939
+ dialect: "cel" | "js" | "cron" | "template";
7940
+ source?: string | undefined;
7941
+ ast?: unknown;
7942
+ meta?: {
7943
+ rationale?: string | undefined;
7944
+ generatedBy?: string | undefined;
7945
+ } | undefined;
7946
+ } | undefined;
7947
+ readonly readonlyWhen?: {
7948
+ dialect: "cel" | "js" | "cron" | "template";
7949
+ source?: string | undefined;
7950
+ ast?: unknown;
7951
+ meta?: {
7952
+ rationale?: string | undefined;
7953
+ generatedBy?: string | undefined;
7954
+ } | undefined;
7955
+ } | undefined;
7956
+ readonly requiredWhen?: {
7957
+ dialect: "cel" | "js" | "cron" | "template";
7958
+ source?: string | undefined;
7959
+ ast?: unknown;
7960
+ meta?: {
7961
+ rationale?: string | undefined;
7962
+ generatedBy?: string | undefined;
7963
+ } | undefined;
7964
+ } | undefined;
6845
7965
  readonly conditionalRequired?: {
6846
7966
  dialect: "cel" | "js" | "cron" | "template";
6847
7967
  source?: string | undefined;
@@ -6910,6 +8030,13 @@ declare const SysSettingAudit: Omit<{
6910
8030
  readonly referenceFilters?: string[] | undefined;
6911
8031
  readonly writeRequiresMasterRead?: boolean | undefined;
6912
8032
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
8033
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
8034
+ readonly inlineTitle?: string | undefined;
8035
+ readonly inlineColumns?: any[] | undefined;
8036
+ readonly inlineAmountField?: string | undefined;
8037
+ readonly relatedList?: boolean | undefined;
8038
+ readonly relatedListTitle?: string | undefined;
8039
+ readonly relatedListColumns?: any[] | undefined;
6913
8040
  readonly expression?: {
6914
8041
  dialect: "cel" | "js" | "cron" | "template";
6915
8042
  source?: string | undefined;
@@ -6923,6 +8050,7 @@ declare const SysSettingAudit: Omit<{
6923
8050
  object: string;
6924
8051
  field: string;
6925
8052
  function: "min" | "max" | "count" | "sum" | "avg";
8053
+ relationshipField?: string | undefined;
6926
8054
  } | undefined;
6927
8055
  readonly language?: string | undefined;
6928
8056
  readonly lineNumbers?: boolean | undefined;
@@ -7017,6 +8145,33 @@ declare const SysSettingAudit: Omit<{
7017
8145
  threshold: number;
7018
8146
  } | undefined;
7019
8147
  } | undefined;
8148
+ readonly visibleWhen?: {
8149
+ dialect: "cel" | "js" | "cron" | "template";
8150
+ source?: string | undefined;
8151
+ ast?: unknown;
8152
+ meta?: {
8153
+ rationale?: string | undefined;
8154
+ generatedBy?: string | undefined;
8155
+ } | undefined;
8156
+ } | undefined;
8157
+ readonly readonlyWhen?: {
8158
+ dialect: "cel" | "js" | "cron" | "template";
8159
+ source?: string | undefined;
8160
+ ast?: unknown;
8161
+ meta?: {
8162
+ rationale?: string | undefined;
8163
+ generatedBy?: string | undefined;
8164
+ } | undefined;
8165
+ } | undefined;
8166
+ readonly requiredWhen?: {
8167
+ dialect: "cel" | "js" | "cron" | "template";
8168
+ source?: string | undefined;
8169
+ ast?: unknown;
8170
+ meta?: {
8171
+ rationale?: string | undefined;
8172
+ generatedBy?: string | undefined;
8173
+ } | undefined;
8174
+ } | undefined;
7020
8175
  readonly conditionalRequired?: {
7021
8176
  dialect: "cel" | "js" | "cron" | "template";
7022
8177
  source?: string | undefined;
@@ -7085,6 +8240,13 @@ declare const SysSettingAudit: Omit<{
7085
8240
  readonly referenceFilters?: string[] | undefined;
7086
8241
  readonly writeRequiresMasterRead?: boolean | undefined;
7087
8242
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
8243
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
8244
+ readonly inlineTitle?: string | undefined;
8245
+ readonly inlineColumns?: any[] | undefined;
8246
+ readonly inlineAmountField?: string | undefined;
8247
+ readonly relatedList?: boolean | undefined;
8248
+ readonly relatedListTitle?: string | undefined;
8249
+ readonly relatedListColumns?: any[] | undefined;
7088
8250
  readonly expression?: {
7089
8251
  dialect: "cel" | "js" | "cron" | "template";
7090
8252
  source?: string | undefined;
@@ -7098,6 +8260,7 @@ declare const SysSettingAudit: Omit<{
7098
8260
  object: string;
7099
8261
  field: string;
7100
8262
  function: "min" | "max" | "count" | "sum" | "avg";
8263
+ relationshipField?: string | undefined;
7101
8264
  } | undefined;
7102
8265
  readonly language?: string | undefined;
7103
8266
  readonly lineNumbers?: boolean | undefined;
@@ -7192,6 +8355,33 @@ declare const SysSettingAudit: Omit<{
7192
8355
  threshold: number;
7193
8356
  } | undefined;
7194
8357
  } | undefined;
8358
+ readonly visibleWhen?: {
8359
+ dialect: "cel" | "js" | "cron" | "template";
8360
+ source?: string | undefined;
8361
+ ast?: unknown;
8362
+ meta?: {
8363
+ rationale?: string | undefined;
8364
+ generatedBy?: string | undefined;
8365
+ } | undefined;
8366
+ } | undefined;
8367
+ readonly readonlyWhen?: {
8368
+ dialect: "cel" | "js" | "cron" | "template";
8369
+ source?: string | undefined;
8370
+ ast?: unknown;
8371
+ meta?: {
8372
+ rationale?: string | undefined;
8373
+ generatedBy?: string | undefined;
8374
+ } | undefined;
8375
+ } | undefined;
8376
+ readonly requiredWhen?: {
8377
+ dialect: "cel" | "js" | "cron" | "template";
8378
+ source?: string | undefined;
8379
+ ast?: unknown;
8380
+ meta?: {
8381
+ rationale?: string | undefined;
8382
+ generatedBy?: string | undefined;
8383
+ } | undefined;
8384
+ } | undefined;
7195
8385
  readonly conditionalRequired?: {
7196
8386
  dialect: "cel" | "js" | "cron" | "template";
7197
8387
  source?: string | undefined;
@@ -7260,6 +8450,13 @@ declare const SysSettingAudit: Omit<{
7260
8450
  readonly referenceFilters?: string[] | undefined;
7261
8451
  readonly writeRequiresMasterRead?: boolean | undefined;
7262
8452
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
8453
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
8454
+ readonly inlineTitle?: string | undefined;
8455
+ readonly inlineColumns?: any[] | undefined;
8456
+ readonly inlineAmountField?: string | undefined;
8457
+ readonly relatedList?: boolean | undefined;
8458
+ readonly relatedListTitle?: string | undefined;
8459
+ readonly relatedListColumns?: any[] | undefined;
7263
8460
  readonly expression?: {
7264
8461
  dialect: "cel" | "js" | "cron" | "template";
7265
8462
  source?: string | undefined;
@@ -7273,6 +8470,7 @@ declare const SysSettingAudit: Omit<{
7273
8470
  object: string;
7274
8471
  field: string;
7275
8472
  function: "min" | "max" | "count" | "sum" | "avg";
8473
+ relationshipField?: string | undefined;
7276
8474
  } | undefined;
7277
8475
  readonly language?: string | undefined;
7278
8476
  readonly lineNumbers?: boolean | undefined;
@@ -7367,6 +8565,33 @@ declare const SysSettingAudit: Omit<{
7367
8565
  threshold: number;
7368
8566
  } | undefined;
7369
8567
  } | undefined;
8568
+ readonly visibleWhen?: {
8569
+ dialect: "cel" | "js" | "cron" | "template";
8570
+ source?: string | undefined;
8571
+ ast?: unknown;
8572
+ meta?: {
8573
+ rationale?: string | undefined;
8574
+ generatedBy?: string | undefined;
8575
+ } | undefined;
8576
+ } | undefined;
8577
+ readonly readonlyWhen?: {
8578
+ dialect: "cel" | "js" | "cron" | "template";
8579
+ source?: string | undefined;
8580
+ ast?: unknown;
8581
+ meta?: {
8582
+ rationale?: string | undefined;
8583
+ generatedBy?: string | undefined;
8584
+ } | undefined;
8585
+ } | undefined;
8586
+ readonly requiredWhen?: {
8587
+ dialect: "cel" | "js" | "cron" | "template";
8588
+ source?: string | undefined;
8589
+ ast?: unknown;
8590
+ meta?: {
8591
+ rationale?: string | undefined;
8592
+ generatedBy?: string | undefined;
8593
+ } | undefined;
8594
+ } | undefined;
7370
8595
  readonly conditionalRequired?: {
7371
8596
  dialect: "cel" | "js" | "cron" | "template";
7372
8597
  source?: string | undefined;
@@ -7440,6 +8665,13 @@ declare const SysSettingAudit: Omit<{
7440
8665
  readonly referenceFilters?: string[] | undefined;
7441
8666
  readonly writeRequiresMasterRead?: boolean | undefined;
7442
8667
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
8668
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
8669
+ readonly inlineTitle?: string | undefined;
8670
+ readonly inlineColumns?: any[] | undefined;
8671
+ readonly inlineAmountField?: string | undefined;
8672
+ readonly relatedList?: boolean | undefined;
8673
+ readonly relatedListTitle?: string | undefined;
8674
+ readonly relatedListColumns?: any[] | undefined;
7443
8675
  readonly expression?: {
7444
8676
  dialect: "cel" | "js" | "cron" | "template";
7445
8677
  source?: string | undefined;
@@ -7453,6 +8685,7 @@ declare const SysSettingAudit: Omit<{
7453
8685
  object: string;
7454
8686
  field: string;
7455
8687
  function: "min" | "max" | "count" | "sum" | "avg";
8688
+ relationshipField?: string | undefined;
7456
8689
  } | undefined;
7457
8690
  readonly language?: string | undefined;
7458
8691
  readonly lineNumbers?: boolean | undefined;
@@ -7547,6 +8780,33 @@ declare const SysSettingAudit: Omit<{
7547
8780
  threshold: number;
7548
8781
  } | undefined;
7549
8782
  } | undefined;
8783
+ readonly visibleWhen?: {
8784
+ dialect: "cel" | "js" | "cron" | "template";
8785
+ source?: string | undefined;
8786
+ ast?: unknown;
8787
+ meta?: {
8788
+ rationale?: string | undefined;
8789
+ generatedBy?: string | undefined;
8790
+ } | undefined;
8791
+ } | undefined;
8792
+ readonly readonlyWhen?: {
8793
+ dialect: "cel" | "js" | "cron" | "template";
8794
+ source?: string | undefined;
8795
+ ast?: unknown;
8796
+ meta?: {
8797
+ rationale?: string | undefined;
8798
+ generatedBy?: string | undefined;
8799
+ } | undefined;
8800
+ } | undefined;
8801
+ readonly requiredWhen?: {
8802
+ dialect: "cel" | "js" | "cron" | "template";
8803
+ source?: string | undefined;
8804
+ ast?: unknown;
8805
+ meta?: {
8806
+ rationale?: string | undefined;
8807
+ generatedBy?: string | undefined;
8808
+ } | undefined;
8809
+ } | undefined;
7550
8810
  readonly conditionalRequired?: {
7551
8811
  dialect: "cel" | "js" | "cron" | "template";
7552
8812
  source?: string | undefined;
@@ -7616,6 +8876,13 @@ declare const SysSettingAudit: Omit<{
7616
8876
  readonly referenceFilters?: string[] | undefined;
7617
8877
  readonly writeRequiresMasterRead?: boolean | undefined;
7618
8878
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
8879
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
8880
+ readonly inlineTitle?: string | undefined;
8881
+ readonly inlineColumns?: any[] | undefined;
8882
+ readonly inlineAmountField?: string | undefined;
8883
+ readonly relatedList?: boolean | undefined;
8884
+ readonly relatedListTitle?: string | undefined;
8885
+ readonly relatedListColumns?: any[] | undefined;
7619
8886
  readonly expression?: {
7620
8887
  dialect: "cel" | "js" | "cron" | "template";
7621
8888
  source?: string | undefined;
@@ -7629,6 +8896,7 @@ declare const SysSettingAudit: Omit<{
7629
8896
  object: string;
7630
8897
  field: string;
7631
8898
  function: "min" | "max" | "count" | "sum" | "avg";
8899
+ relationshipField?: string | undefined;
7632
8900
  } | undefined;
7633
8901
  readonly language?: string | undefined;
7634
8902
  readonly lineNumbers?: boolean | undefined;
@@ -7723,6 +8991,33 @@ declare const SysSettingAudit: Omit<{
7723
8991
  threshold: number;
7724
8992
  } | undefined;
7725
8993
  } | undefined;
8994
+ readonly visibleWhen?: {
8995
+ dialect: "cel" | "js" | "cron" | "template";
8996
+ source?: string | undefined;
8997
+ ast?: unknown;
8998
+ meta?: {
8999
+ rationale?: string | undefined;
9000
+ generatedBy?: string | undefined;
9001
+ } | undefined;
9002
+ } | undefined;
9003
+ readonly readonlyWhen?: {
9004
+ dialect: "cel" | "js" | "cron" | "template";
9005
+ source?: string | undefined;
9006
+ ast?: unknown;
9007
+ meta?: {
9008
+ rationale?: string | undefined;
9009
+ generatedBy?: string | undefined;
9010
+ } | undefined;
9011
+ } | undefined;
9012
+ readonly requiredWhen?: {
9013
+ dialect: "cel" | "js" | "cron" | "template";
9014
+ source?: string | undefined;
9015
+ ast?: unknown;
9016
+ meta?: {
9017
+ rationale?: string | undefined;
9018
+ generatedBy?: string | undefined;
9019
+ } | undefined;
9020
+ } | undefined;
7726
9021
  readonly conditionalRequired?: {
7727
9022
  dialect: "cel" | "js" | "cron" | "template";
7728
9023
  source?: string | undefined;
@@ -7797,6 +9092,13 @@ declare const SysSettingAudit: Omit<{
7797
9092
  readonly referenceFilters?: string[] | undefined;
7798
9093
  readonly writeRequiresMasterRead?: boolean | undefined;
7799
9094
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
9095
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
9096
+ readonly inlineTitle?: string | undefined;
9097
+ readonly inlineColumns?: any[] | undefined;
9098
+ readonly inlineAmountField?: string | undefined;
9099
+ readonly relatedList?: boolean | undefined;
9100
+ readonly relatedListTitle?: string | undefined;
9101
+ readonly relatedListColumns?: any[] | undefined;
7800
9102
  readonly expression?: {
7801
9103
  dialect: "cel" | "js" | "cron" | "template";
7802
9104
  source?: string | undefined;
@@ -7810,6 +9112,7 @@ declare const SysSettingAudit: Omit<{
7810
9112
  object: string;
7811
9113
  field: string;
7812
9114
  function: "min" | "max" | "count" | "sum" | "avg";
9115
+ relationshipField?: string | undefined;
7813
9116
  } | undefined;
7814
9117
  readonly language?: string | undefined;
7815
9118
  readonly lineNumbers?: boolean | undefined;
@@ -7904,6 +9207,33 @@ declare const SysSettingAudit: Omit<{
7904
9207
  threshold: number;
7905
9208
  } | undefined;
7906
9209
  } | undefined;
9210
+ readonly visibleWhen?: {
9211
+ dialect: "cel" | "js" | "cron" | "template";
9212
+ source?: string | undefined;
9213
+ ast?: unknown;
9214
+ meta?: {
9215
+ rationale?: string | undefined;
9216
+ generatedBy?: string | undefined;
9217
+ } | undefined;
9218
+ } | undefined;
9219
+ readonly readonlyWhen?: {
9220
+ dialect: "cel" | "js" | "cron" | "template";
9221
+ source?: string | undefined;
9222
+ ast?: unknown;
9223
+ meta?: {
9224
+ rationale?: string | undefined;
9225
+ generatedBy?: string | undefined;
9226
+ } | undefined;
9227
+ } | undefined;
9228
+ readonly requiredWhen?: {
9229
+ dialect: "cel" | "js" | "cron" | "template";
9230
+ source?: string | undefined;
9231
+ ast?: unknown;
9232
+ meta?: {
9233
+ rationale?: string | undefined;
9234
+ generatedBy?: string | undefined;
9235
+ } | undefined;
9236
+ } | undefined;
7907
9237
  readonly conditionalRequired?: {
7908
9238
  dialect: "cel" | "js" | "cron" | "template";
7909
9239
  source?: string | undefined;
@@ -7973,6 +9303,13 @@ declare const SysSettingAudit: Omit<{
7973
9303
  readonly referenceFilters?: string[] | undefined;
7974
9304
  readonly writeRequiresMasterRead?: boolean | undefined;
7975
9305
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
9306
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
9307
+ readonly inlineTitle?: string | undefined;
9308
+ readonly inlineColumns?: any[] | undefined;
9309
+ readonly inlineAmountField?: string | undefined;
9310
+ readonly relatedList?: boolean | undefined;
9311
+ readonly relatedListTitle?: string | undefined;
9312
+ readonly relatedListColumns?: any[] | undefined;
7976
9313
  readonly expression?: {
7977
9314
  dialect: "cel" | "js" | "cron" | "template";
7978
9315
  source?: string | undefined;
@@ -7986,6 +9323,7 @@ declare const SysSettingAudit: Omit<{
7986
9323
  object: string;
7987
9324
  field: string;
7988
9325
  function: "min" | "max" | "count" | "sum" | "avg";
9326
+ relationshipField?: string | undefined;
7989
9327
  } | undefined;
7990
9328
  readonly language?: string | undefined;
7991
9329
  readonly lineNumbers?: boolean | undefined;
@@ -8080,6 +9418,33 @@ declare const SysSettingAudit: Omit<{
8080
9418
  threshold: number;
8081
9419
  } | undefined;
8082
9420
  } | undefined;
9421
+ readonly visibleWhen?: {
9422
+ dialect: "cel" | "js" | "cron" | "template";
9423
+ source?: string | undefined;
9424
+ ast?: unknown;
9425
+ meta?: {
9426
+ rationale?: string | undefined;
9427
+ generatedBy?: string | undefined;
9428
+ } | undefined;
9429
+ } | undefined;
9430
+ readonly readonlyWhen?: {
9431
+ dialect: "cel" | "js" | "cron" | "template";
9432
+ source?: string | undefined;
9433
+ ast?: unknown;
9434
+ meta?: {
9435
+ rationale?: string | undefined;
9436
+ generatedBy?: string | undefined;
9437
+ } | undefined;
9438
+ } | undefined;
9439
+ readonly requiredWhen?: {
9440
+ dialect: "cel" | "js" | "cron" | "template";
9441
+ source?: string | undefined;
9442
+ ast?: unknown;
9443
+ meta?: {
9444
+ rationale?: string | undefined;
9445
+ generatedBy?: string | undefined;
9446
+ } | undefined;
9447
+ } | undefined;
8083
9448
  readonly conditionalRequired?: {
8084
9449
  dialect: "cel" | "js" | "cron" | "template";
8085
9450
  source?: string | undefined;
@@ -8149,6 +9514,13 @@ declare const SysSettingAudit: Omit<{
8149
9514
  readonly referenceFilters?: string[] | undefined;
8150
9515
  readonly writeRequiresMasterRead?: boolean | undefined;
8151
9516
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
9517
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
9518
+ readonly inlineTitle?: string | undefined;
9519
+ readonly inlineColumns?: any[] | undefined;
9520
+ readonly inlineAmountField?: string | undefined;
9521
+ readonly relatedList?: boolean | undefined;
9522
+ readonly relatedListTitle?: string | undefined;
9523
+ readonly relatedListColumns?: any[] | undefined;
8152
9524
  readonly expression?: {
8153
9525
  dialect: "cel" | "js" | "cron" | "template";
8154
9526
  source?: string | undefined;
@@ -8162,6 +9534,7 @@ declare const SysSettingAudit: Omit<{
8162
9534
  object: string;
8163
9535
  field: string;
8164
9536
  function: "min" | "max" | "count" | "sum" | "avg";
9537
+ relationshipField?: string | undefined;
8165
9538
  } | undefined;
8166
9539
  readonly language?: string | undefined;
8167
9540
  readonly lineNumbers?: boolean | undefined;
@@ -8256,6 +9629,33 @@ declare const SysSettingAudit: Omit<{
8256
9629
  threshold: number;
8257
9630
  } | undefined;
8258
9631
  } | undefined;
9632
+ readonly visibleWhen?: {
9633
+ dialect: "cel" | "js" | "cron" | "template";
9634
+ source?: string | undefined;
9635
+ ast?: unknown;
9636
+ meta?: {
9637
+ rationale?: string | undefined;
9638
+ generatedBy?: string | undefined;
9639
+ } | undefined;
9640
+ } | undefined;
9641
+ readonly readonlyWhen?: {
9642
+ dialect: "cel" | "js" | "cron" | "template";
9643
+ source?: string | undefined;
9644
+ ast?: unknown;
9645
+ meta?: {
9646
+ rationale?: string | undefined;
9647
+ generatedBy?: string | undefined;
9648
+ } | undefined;
9649
+ } | undefined;
9650
+ readonly requiredWhen?: {
9651
+ dialect: "cel" | "js" | "cron" | "template";
9652
+ source?: string | undefined;
9653
+ ast?: unknown;
9654
+ meta?: {
9655
+ rationale?: string | undefined;
9656
+ generatedBy?: string | undefined;
9657
+ } | undefined;
9658
+ } | undefined;
8259
9659
  readonly conditionalRequired?: {
8260
9660
  dialect: "cel" | "js" | "cron" | "template";
8261
9661
  source?: string | undefined;
@@ -8325,6 +9725,13 @@ declare const SysSettingAudit: Omit<{
8325
9725
  readonly referenceFilters?: string[] | undefined;
8326
9726
  readonly writeRequiresMasterRead?: boolean | undefined;
8327
9727
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
9728
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
9729
+ readonly inlineTitle?: string | undefined;
9730
+ readonly inlineColumns?: any[] | undefined;
9731
+ readonly inlineAmountField?: string | undefined;
9732
+ readonly relatedList?: boolean | undefined;
9733
+ readonly relatedListTitle?: string | undefined;
9734
+ readonly relatedListColumns?: any[] | undefined;
8328
9735
  readonly expression?: {
8329
9736
  dialect: "cel" | "js" | "cron" | "template";
8330
9737
  source?: string | undefined;
@@ -8338,6 +9745,7 @@ declare const SysSettingAudit: Omit<{
8338
9745
  object: string;
8339
9746
  field: string;
8340
9747
  function: "min" | "max" | "count" | "sum" | "avg";
9748
+ relationshipField?: string | undefined;
8341
9749
  } | undefined;
8342
9750
  readonly language?: string | undefined;
8343
9751
  readonly lineNumbers?: boolean | undefined;
@@ -8432,6 +9840,33 @@ declare const SysSettingAudit: Omit<{
8432
9840
  threshold: number;
8433
9841
  } | undefined;
8434
9842
  } | undefined;
9843
+ readonly visibleWhen?: {
9844
+ dialect: "cel" | "js" | "cron" | "template";
9845
+ source?: string | undefined;
9846
+ ast?: unknown;
9847
+ meta?: {
9848
+ rationale?: string | undefined;
9849
+ generatedBy?: string | undefined;
9850
+ } | undefined;
9851
+ } | undefined;
9852
+ readonly readonlyWhen?: {
9853
+ dialect: "cel" | "js" | "cron" | "template";
9854
+ source?: string | undefined;
9855
+ ast?: unknown;
9856
+ meta?: {
9857
+ rationale?: string | undefined;
9858
+ generatedBy?: string | undefined;
9859
+ } | undefined;
9860
+ } | undefined;
9861
+ readonly requiredWhen?: {
9862
+ dialect: "cel" | "js" | "cron" | "template";
9863
+ source?: string | undefined;
9864
+ ast?: unknown;
9865
+ meta?: {
9866
+ rationale?: string | undefined;
9867
+ generatedBy?: string | undefined;
9868
+ } | undefined;
9869
+ } | undefined;
8435
9870
  readonly conditionalRequired?: {
8436
9871
  dialect: "cel" | "js" | "cron" | "template";
8437
9872
  source?: string | undefined;