@objectstack/metadata-core 7.8.0 → 8.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/dist/index.d.cts +2718 -58
  2. package/dist/index.d.ts +2718 -58
  3. package/package.json +2 -2
package/dist/index.d.cts CHANGED
@@ -300,6 +300,13 @@ declare const SysMetadataObject: Omit<{
300
300
  reference?: string | undefined;
301
301
  referenceFilters?: string[] | undefined;
302
302
  writeRequiresMasterRead?: boolean | undefined;
303
+ inlineEdit?: boolean | "grid" | "form" | undefined;
304
+ inlineTitle?: string | undefined;
305
+ inlineColumns?: any[] | undefined;
306
+ inlineAmountField?: string | undefined;
307
+ relatedList?: boolean | undefined;
308
+ relatedListTitle?: string | undefined;
309
+ relatedListColumns?: any[] | undefined;
303
310
  expression?: {
304
311
  dialect: "cel" | "js" | "cron" | "template";
305
312
  source?: string | undefined;
@@ -321,6 +328,7 @@ declare const SysMetadataObject: Omit<{
321
328
  object: string;
322
329
  field: string;
323
330
  function: "min" | "max" | "count" | "sum" | "avg";
331
+ relationshipField?: string | undefined;
324
332
  } | undefined;
325
333
  language?: string | undefined;
326
334
  theme?: string | undefined;
@@ -434,6 +442,57 @@ declare const SysMetadataObject: Omit<{
434
442
  } | undefined;
435
443
  } | undefined;
436
444
  group?: string | undefined;
445
+ visibleWhen?: {
446
+ dialect: "cel" | "js" | "cron" | "template";
447
+ source?: string | undefined;
448
+ ast?: unknown;
449
+ meta?: {
450
+ rationale?: string | undefined;
451
+ generatedBy?: string | undefined;
452
+ } | undefined;
453
+ } | {
454
+ dialect: "cel" | "js" | "cron" | "template";
455
+ source?: string | undefined;
456
+ ast?: unknown;
457
+ meta?: {
458
+ rationale?: string | undefined;
459
+ generatedBy?: string | undefined;
460
+ } | undefined;
461
+ } | undefined;
462
+ readonlyWhen?: {
463
+ dialect: "cel" | "js" | "cron" | "template";
464
+ source?: string | undefined;
465
+ ast?: unknown;
466
+ meta?: {
467
+ rationale?: string | undefined;
468
+ generatedBy?: string | undefined;
469
+ } | undefined;
470
+ } | {
471
+ dialect: "cel" | "js" | "cron" | "template";
472
+ source?: string | undefined;
473
+ ast?: unknown;
474
+ meta?: {
475
+ rationale?: string | undefined;
476
+ generatedBy?: string | undefined;
477
+ } | undefined;
478
+ } | undefined;
479
+ requiredWhen?: {
480
+ dialect: "cel" | "js" | "cron" | "template";
481
+ source?: string | undefined;
482
+ ast?: unknown;
483
+ meta?: {
484
+ rationale?: string | undefined;
485
+ generatedBy?: string | undefined;
486
+ } | undefined;
487
+ } | {
488
+ dialect: "cel" | "js" | "cron" | "template";
489
+ source?: string | undefined;
490
+ ast?: unknown;
491
+ meta?: {
492
+ rationale?: string | undefined;
493
+ generatedBy?: string | undefined;
494
+ } | undefined;
495
+ } | undefined;
437
496
  conditionalRequired?: {
438
497
  dialect: "cel" | "js" | "cron" | "template";
439
498
  source?: string | undefined;
@@ -575,7 +634,7 @@ declare const SysMetadataObject: Omit<{
575
634
  } | undefined;
576
635
  compactLayout?: string[] | undefined;
577
636
  listViews?: Record<string, {
578
- type: "map" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "grid";
637
+ type: "map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart";
579
638
  columns: string[] | {
580
639
  field: string;
581
640
  label?: string | undefined;
@@ -744,7 +803,7 @@ declare const SysMetadataObject: Omit<{
744
803
  } | undefined;
745
804
  appearance?: {
746
805
  showDescription: boolean;
747
- allowedVisualizations?: ("map" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "grid")[] | undefined;
806
+ allowedVisualizations?: ("map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline")[] | undefined;
748
807
  } | undefined;
749
808
  tabs?: {
750
809
  name: string;
@@ -764,7 +823,7 @@ declare const SysMetadataObject: Omit<{
764
823
  addRecord?: {
765
824
  enabled: boolean;
766
825
  position: "top" | "bottom" | "both";
767
- mode: "modal" | "form" | "inline";
826
+ mode: "form" | "modal" | "inline";
768
827
  formView?: string | undefined;
769
828
  } | undefined;
770
829
  showRecordCount?: boolean | undefined;
@@ -850,7 +909,7 @@ declare const SysMetadataObject: Omit<{
850
909
  actions?: {
851
910
  name: string;
852
911
  label: string;
853
- type: "url" | "flow" | "api" | "script" | "modal" | "form";
912
+ type: "url" | "form" | "flow" | "api" | "script" | "modal";
854
913
  refreshAfter: boolean;
855
914
  objectName?: string | undefined;
856
915
  icon?: string | undefined;
@@ -918,7 +977,18 @@ declare const SysMetadataObject: Omit<{
918
977
  } | undefined;
919
978
  shortcut?: string | undefined;
920
979
  bulkEnabled?: boolean | undefined;
921
- aiExposed?: boolean | undefined;
980
+ ai?: {
981
+ exposed: boolean;
982
+ description?: string | undefined;
983
+ category?: "action" | "data" | "flow" | "integration" | "vector_search" | "analytics" | "utility" | undefined;
984
+ paramHints?: Record<string, {
985
+ description?: string | undefined;
986
+ enum?: (string | number)[] | undefined;
987
+ examples?: unknown[] | undefined;
988
+ }> | undefined;
989
+ outputSchema?: Record<string, unknown> | undefined;
990
+ requiresConfirmation?: boolean | undefined;
991
+ } | undefined;
922
992
  recordIdParam?: string | undefined;
923
993
  recordIdField?: string | undefined;
924
994
  bodyShape?: "flat" | {
@@ -1000,6 +1070,13 @@ declare const SysMetadataObject: Omit<{
1000
1070
  readonly referenceFilters?: string[] | undefined;
1001
1071
  readonly writeRequiresMasterRead?: boolean | undefined;
1002
1072
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1073
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1074
+ readonly inlineTitle?: string | undefined;
1075
+ readonly inlineColumns?: any[] | undefined;
1076
+ readonly inlineAmountField?: string | undefined;
1077
+ readonly relatedList?: boolean | undefined;
1078
+ readonly relatedListTitle?: string | undefined;
1079
+ readonly relatedListColumns?: any[] | undefined;
1003
1080
  readonly expression?: {
1004
1081
  dialect: "cel" | "js" | "cron" | "template";
1005
1082
  source?: string | undefined;
@@ -1013,6 +1090,7 @@ declare const SysMetadataObject: Omit<{
1013
1090
  object: string;
1014
1091
  field: string;
1015
1092
  function: "min" | "max" | "count" | "sum" | "avg";
1093
+ relationshipField?: string | undefined;
1016
1094
  } | undefined;
1017
1095
  readonly language?: string | undefined;
1018
1096
  readonly lineNumbers?: boolean | undefined;
@@ -1107,6 +1185,33 @@ declare const SysMetadataObject: Omit<{
1107
1185
  threshold: number;
1108
1186
  } | undefined;
1109
1187
  } | undefined;
1188
+ readonly visibleWhen?: {
1189
+ dialect: "cel" | "js" | "cron" | "template";
1190
+ source?: string | undefined;
1191
+ ast?: unknown;
1192
+ meta?: {
1193
+ rationale?: string | undefined;
1194
+ generatedBy?: string | undefined;
1195
+ } | undefined;
1196
+ } | undefined;
1197
+ readonly readonlyWhen?: {
1198
+ dialect: "cel" | "js" | "cron" | "template";
1199
+ source?: string | undefined;
1200
+ ast?: unknown;
1201
+ meta?: {
1202
+ rationale?: string | undefined;
1203
+ generatedBy?: string | undefined;
1204
+ } | undefined;
1205
+ } | undefined;
1206
+ readonly requiredWhen?: {
1207
+ dialect: "cel" | "js" | "cron" | "template";
1208
+ source?: string | undefined;
1209
+ ast?: unknown;
1210
+ meta?: {
1211
+ rationale?: string | undefined;
1212
+ generatedBy?: string | undefined;
1213
+ } | undefined;
1214
+ } | undefined;
1110
1215
  readonly conditionalRequired?: {
1111
1216
  dialect: "cel" | "js" | "cron" | "template";
1112
1217
  source?: string | undefined;
@@ -1176,6 +1281,13 @@ declare const SysMetadataObject: Omit<{
1176
1281
  readonly referenceFilters?: string[] | undefined;
1177
1282
  readonly writeRequiresMasterRead?: boolean | undefined;
1178
1283
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1284
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1285
+ readonly inlineTitle?: string | undefined;
1286
+ readonly inlineColumns?: any[] | undefined;
1287
+ readonly inlineAmountField?: string | undefined;
1288
+ readonly relatedList?: boolean | undefined;
1289
+ readonly relatedListTitle?: string | undefined;
1290
+ readonly relatedListColumns?: any[] | undefined;
1179
1291
  readonly expression?: {
1180
1292
  dialect: "cel" | "js" | "cron" | "template";
1181
1293
  source?: string | undefined;
@@ -1189,6 +1301,7 @@ declare const SysMetadataObject: Omit<{
1189
1301
  object: string;
1190
1302
  field: string;
1191
1303
  function: "min" | "max" | "count" | "sum" | "avg";
1304
+ relationshipField?: string | undefined;
1192
1305
  } | undefined;
1193
1306
  readonly language?: string | undefined;
1194
1307
  readonly lineNumbers?: boolean | undefined;
@@ -1283,6 +1396,33 @@ declare const SysMetadataObject: Omit<{
1283
1396
  threshold: number;
1284
1397
  } | undefined;
1285
1398
  } | undefined;
1399
+ readonly visibleWhen?: {
1400
+ dialect: "cel" | "js" | "cron" | "template";
1401
+ source?: string | undefined;
1402
+ ast?: unknown;
1403
+ meta?: {
1404
+ rationale?: string | undefined;
1405
+ generatedBy?: string | undefined;
1406
+ } | undefined;
1407
+ } | undefined;
1408
+ readonly readonlyWhen?: {
1409
+ dialect: "cel" | "js" | "cron" | "template";
1410
+ source?: string | undefined;
1411
+ ast?: unknown;
1412
+ meta?: {
1413
+ rationale?: string | undefined;
1414
+ generatedBy?: string | undefined;
1415
+ } | undefined;
1416
+ } | undefined;
1417
+ readonly requiredWhen?: {
1418
+ dialect: "cel" | "js" | "cron" | "template";
1419
+ source?: string | undefined;
1420
+ ast?: unknown;
1421
+ meta?: {
1422
+ rationale?: string | undefined;
1423
+ generatedBy?: string | undefined;
1424
+ } | undefined;
1425
+ } | undefined;
1286
1426
  readonly conditionalRequired?: {
1287
1427
  dialect: "cel" | "js" | "cron" | "template";
1288
1428
  source?: string | undefined;
@@ -1352,6 +1492,13 @@ declare const SysMetadataObject: Omit<{
1352
1492
  readonly referenceFilters?: string[] | undefined;
1353
1493
  readonly writeRequiresMasterRead?: boolean | undefined;
1354
1494
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1495
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1496
+ readonly inlineTitle?: string | undefined;
1497
+ readonly inlineColumns?: any[] | undefined;
1498
+ readonly inlineAmountField?: string | undefined;
1499
+ readonly relatedList?: boolean | undefined;
1500
+ readonly relatedListTitle?: string | undefined;
1501
+ readonly relatedListColumns?: any[] | undefined;
1355
1502
  readonly expression?: {
1356
1503
  dialect: "cel" | "js" | "cron" | "template";
1357
1504
  source?: string | undefined;
@@ -1365,6 +1512,7 @@ declare const SysMetadataObject: Omit<{
1365
1512
  object: string;
1366
1513
  field: string;
1367
1514
  function: "min" | "max" | "count" | "sum" | "avg";
1515
+ relationshipField?: string | undefined;
1368
1516
  } | undefined;
1369
1517
  readonly language?: string | undefined;
1370
1518
  readonly lineNumbers?: boolean | undefined;
@@ -1459,6 +1607,33 @@ declare const SysMetadataObject: Omit<{
1459
1607
  threshold: number;
1460
1608
  } | undefined;
1461
1609
  } | undefined;
1610
+ readonly visibleWhen?: {
1611
+ dialect: "cel" | "js" | "cron" | "template";
1612
+ source?: string | undefined;
1613
+ ast?: unknown;
1614
+ meta?: {
1615
+ rationale?: string | undefined;
1616
+ generatedBy?: string | undefined;
1617
+ } | undefined;
1618
+ } | undefined;
1619
+ readonly readonlyWhen?: {
1620
+ dialect: "cel" | "js" | "cron" | "template";
1621
+ source?: string | undefined;
1622
+ ast?: unknown;
1623
+ meta?: {
1624
+ rationale?: string | undefined;
1625
+ generatedBy?: string | undefined;
1626
+ } | undefined;
1627
+ } | undefined;
1628
+ readonly requiredWhen?: {
1629
+ dialect: "cel" | "js" | "cron" | "template";
1630
+ source?: string | undefined;
1631
+ ast?: unknown;
1632
+ meta?: {
1633
+ rationale?: string | undefined;
1634
+ generatedBy?: string | undefined;
1635
+ } | undefined;
1636
+ } | undefined;
1462
1637
  readonly conditionalRequired?: {
1463
1638
  dialect: "cel" | "js" | "cron" | "template";
1464
1639
  source?: string | undefined;
@@ -1528,6 +1703,13 @@ declare const SysMetadataObject: Omit<{
1528
1703
  readonly referenceFilters?: string[] | undefined;
1529
1704
  readonly writeRequiresMasterRead?: boolean | undefined;
1530
1705
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1706
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1707
+ readonly inlineTitle?: string | undefined;
1708
+ readonly inlineColumns?: any[] | undefined;
1709
+ readonly inlineAmountField?: string | undefined;
1710
+ readonly relatedList?: boolean | undefined;
1711
+ readonly relatedListTitle?: string | undefined;
1712
+ readonly relatedListColumns?: any[] | undefined;
1531
1713
  readonly expression?: {
1532
1714
  dialect: "cel" | "js" | "cron" | "template";
1533
1715
  source?: string | undefined;
@@ -1541,6 +1723,7 @@ declare const SysMetadataObject: Omit<{
1541
1723
  object: string;
1542
1724
  field: string;
1543
1725
  function: "min" | "max" | "count" | "sum" | "avg";
1726
+ relationshipField?: string | undefined;
1544
1727
  } | undefined;
1545
1728
  readonly language?: string | undefined;
1546
1729
  readonly lineNumbers?: boolean | undefined;
@@ -1635,6 +1818,33 @@ declare const SysMetadataObject: Omit<{
1635
1818
  threshold: number;
1636
1819
  } | undefined;
1637
1820
  } | undefined;
1821
+ readonly visibleWhen?: {
1822
+ dialect: "cel" | "js" | "cron" | "template";
1823
+ source?: string | undefined;
1824
+ ast?: unknown;
1825
+ meta?: {
1826
+ rationale?: string | undefined;
1827
+ generatedBy?: string | undefined;
1828
+ } | undefined;
1829
+ } | undefined;
1830
+ readonly readonlyWhen?: {
1831
+ dialect: "cel" | "js" | "cron" | "template";
1832
+ source?: string | undefined;
1833
+ ast?: unknown;
1834
+ meta?: {
1835
+ rationale?: string | undefined;
1836
+ generatedBy?: string | undefined;
1837
+ } | undefined;
1838
+ } | undefined;
1839
+ readonly requiredWhen?: {
1840
+ dialect: "cel" | "js" | "cron" | "template";
1841
+ source?: string | undefined;
1842
+ ast?: unknown;
1843
+ meta?: {
1844
+ rationale?: string | undefined;
1845
+ generatedBy?: string | undefined;
1846
+ } | undefined;
1847
+ } | undefined;
1638
1848
  readonly conditionalRequired?: {
1639
1849
  dialect: "cel" | "js" | "cron" | "template";
1640
1850
  source?: string | undefined;
@@ -1704,6 +1914,13 @@ declare const SysMetadataObject: Omit<{
1704
1914
  readonly referenceFilters?: string[] | undefined;
1705
1915
  readonly writeRequiresMasterRead?: boolean | undefined;
1706
1916
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1917
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1918
+ readonly inlineTitle?: string | undefined;
1919
+ readonly inlineColumns?: any[] | undefined;
1920
+ readonly inlineAmountField?: string | undefined;
1921
+ readonly relatedList?: boolean | undefined;
1922
+ readonly relatedListTitle?: string | undefined;
1923
+ readonly relatedListColumns?: any[] | undefined;
1707
1924
  readonly expression?: {
1708
1925
  dialect: "cel" | "js" | "cron" | "template";
1709
1926
  source?: string | undefined;
@@ -1717,6 +1934,7 @@ declare const SysMetadataObject: Omit<{
1717
1934
  object: string;
1718
1935
  field: string;
1719
1936
  function: "min" | "max" | "count" | "sum" | "avg";
1937
+ relationshipField?: string | undefined;
1720
1938
  } | undefined;
1721
1939
  readonly language?: string | undefined;
1722
1940
  readonly lineNumbers?: boolean | undefined;
@@ -1811,6 +2029,33 @@ declare const SysMetadataObject: Omit<{
1811
2029
  threshold: number;
1812
2030
  } | undefined;
1813
2031
  } | undefined;
2032
+ readonly visibleWhen?: {
2033
+ dialect: "cel" | "js" | "cron" | "template";
2034
+ source?: string | undefined;
2035
+ ast?: unknown;
2036
+ meta?: {
2037
+ rationale?: string | undefined;
2038
+ generatedBy?: string | undefined;
2039
+ } | undefined;
2040
+ } | undefined;
2041
+ readonly readonlyWhen?: {
2042
+ dialect: "cel" | "js" | "cron" | "template";
2043
+ source?: string | undefined;
2044
+ ast?: unknown;
2045
+ meta?: {
2046
+ rationale?: string | undefined;
2047
+ generatedBy?: string | undefined;
2048
+ } | undefined;
2049
+ } | undefined;
2050
+ readonly requiredWhen?: {
2051
+ dialect: "cel" | "js" | "cron" | "template";
2052
+ source?: string | undefined;
2053
+ ast?: unknown;
2054
+ meta?: {
2055
+ rationale?: string | undefined;
2056
+ generatedBy?: string | undefined;
2057
+ } | undefined;
2058
+ } | undefined;
1814
2059
  readonly conditionalRequired?: {
1815
2060
  dialect: "cel" | "js" | "cron" | "template";
1816
2061
  source?: string | undefined;
@@ -1883,6 +2128,13 @@ declare const SysMetadataObject: Omit<{
1883
2128
  readonly referenceFilters?: string[] | undefined;
1884
2129
  readonly writeRequiresMasterRead?: boolean | undefined;
1885
2130
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2131
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2132
+ readonly inlineTitle?: string | undefined;
2133
+ readonly inlineColumns?: any[] | undefined;
2134
+ readonly inlineAmountField?: string | undefined;
2135
+ readonly relatedList?: boolean | undefined;
2136
+ readonly relatedListTitle?: string | undefined;
2137
+ readonly relatedListColumns?: any[] | undefined;
1886
2138
  readonly expression?: {
1887
2139
  dialect: "cel" | "js" | "cron" | "template";
1888
2140
  source?: string | undefined;
@@ -1896,6 +2148,7 @@ declare const SysMetadataObject: Omit<{
1896
2148
  object: string;
1897
2149
  field: string;
1898
2150
  function: "min" | "max" | "count" | "sum" | "avg";
2151
+ relationshipField?: string | undefined;
1899
2152
  } | undefined;
1900
2153
  readonly language?: string | undefined;
1901
2154
  readonly lineNumbers?: boolean | undefined;
@@ -1990,6 +2243,33 @@ declare const SysMetadataObject: Omit<{
1990
2243
  threshold: number;
1991
2244
  } | undefined;
1992
2245
  } | undefined;
2246
+ readonly visibleWhen?: {
2247
+ dialect: "cel" | "js" | "cron" | "template";
2248
+ source?: string | undefined;
2249
+ ast?: unknown;
2250
+ meta?: {
2251
+ rationale?: string | undefined;
2252
+ generatedBy?: string | undefined;
2253
+ } | undefined;
2254
+ } | undefined;
2255
+ readonly readonlyWhen?: {
2256
+ dialect: "cel" | "js" | "cron" | "template";
2257
+ source?: string | undefined;
2258
+ ast?: unknown;
2259
+ meta?: {
2260
+ rationale?: string | undefined;
2261
+ generatedBy?: string | undefined;
2262
+ } | undefined;
2263
+ } | undefined;
2264
+ readonly requiredWhen?: {
2265
+ dialect: "cel" | "js" | "cron" | "template";
2266
+ source?: string | undefined;
2267
+ ast?: unknown;
2268
+ meta?: {
2269
+ rationale?: string | undefined;
2270
+ generatedBy?: string | undefined;
2271
+ } | undefined;
2272
+ } | undefined;
1993
2273
  readonly conditionalRequired?: {
1994
2274
  dialect: "cel" | "js" | "cron" | "template";
1995
2275
  source?: string | undefined;
@@ -2059,6 +2339,13 @@ declare const SysMetadataObject: Omit<{
2059
2339
  readonly referenceFilters?: string[] | undefined;
2060
2340
  readonly writeRequiresMasterRead?: boolean | undefined;
2061
2341
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2342
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2343
+ readonly inlineTitle?: string | undefined;
2344
+ readonly inlineColumns?: any[] | undefined;
2345
+ readonly inlineAmountField?: string | undefined;
2346
+ readonly relatedList?: boolean | undefined;
2347
+ readonly relatedListTitle?: string | undefined;
2348
+ readonly relatedListColumns?: any[] | undefined;
2062
2349
  readonly expression?: {
2063
2350
  dialect: "cel" | "js" | "cron" | "template";
2064
2351
  source?: string | undefined;
@@ -2072,6 +2359,7 @@ declare const SysMetadataObject: Omit<{
2072
2359
  object: string;
2073
2360
  field: string;
2074
2361
  function: "min" | "max" | "count" | "sum" | "avg";
2362
+ relationshipField?: string | undefined;
2075
2363
  } | undefined;
2076
2364
  readonly language?: string | undefined;
2077
2365
  readonly lineNumbers?: boolean | undefined;
@@ -2166,6 +2454,33 @@ declare const SysMetadataObject: Omit<{
2166
2454
  threshold: number;
2167
2455
  } | undefined;
2168
2456
  } | undefined;
2457
+ readonly visibleWhen?: {
2458
+ dialect: "cel" | "js" | "cron" | "template";
2459
+ source?: string | undefined;
2460
+ ast?: unknown;
2461
+ meta?: {
2462
+ rationale?: string | undefined;
2463
+ generatedBy?: string | undefined;
2464
+ } | undefined;
2465
+ } | undefined;
2466
+ readonly readonlyWhen?: {
2467
+ dialect: "cel" | "js" | "cron" | "template";
2468
+ source?: string | undefined;
2469
+ ast?: unknown;
2470
+ meta?: {
2471
+ rationale?: string | undefined;
2472
+ generatedBy?: string | undefined;
2473
+ } | undefined;
2474
+ } | undefined;
2475
+ readonly requiredWhen?: {
2476
+ dialect: "cel" | "js" | "cron" | "template";
2477
+ source?: string | undefined;
2478
+ ast?: unknown;
2479
+ meta?: {
2480
+ rationale?: string | undefined;
2481
+ generatedBy?: string | undefined;
2482
+ } | undefined;
2483
+ } | undefined;
2169
2484
  readonly conditionalRequired?: {
2170
2485
  dialect: "cel" | "js" | "cron" | "template";
2171
2486
  source?: string | undefined;
@@ -2235,6 +2550,13 @@ declare const SysMetadataObject: Omit<{
2235
2550
  readonly referenceFilters?: string[] | undefined;
2236
2551
  readonly writeRequiresMasterRead?: boolean | undefined;
2237
2552
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2553
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2554
+ readonly inlineTitle?: string | undefined;
2555
+ readonly inlineColumns?: any[] | undefined;
2556
+ readonly inlineAmountField?: string | undefined;
2557
+ readonly relatedList?: boolean | undefined;
2558
+ readonly relatedListTitle?: string | undefined;
2559
+ readonly relatedListColumns?: any[] | undefined;
2238
2560
  readonly expression?: {
2239
2561
  dialect: "cel" | "js" | "cron" | "template";
2240
2562
  source?: string | undefined;
@@ -2248,6 +2570,7 @@ declare const SysMetadataObject: Omit<{
2248
2570
  object: string;
2249
2571
  field: string;
2250
2572
  function: "min" | "max" | "count" | "sum" | "avg";
2573
+ relationshipField?: string | undefined;
2251
2574
  } | undefined;
2252
2575
  readonly language?: string | undefined;
2253
2576
  readonly lineNumbers?: boolean | undefined;
@@ -2342,6 +2665,33 @@ declare const SysMetadataObject: Omit<{
2342
2665
  threshold: number;
2343
2666
  } | undefined;
2344
2667
  } | undefined;
2668
+ readonly visibleWhen?: {
2669
+ dialect: "cel" | "js" | "cron" | "template";
2670
+ source?: string | undefined;
2671
+ ast?: unknown;
2672
+ meta?: {
2673
+ rationale?: string | undefined;
2674
+ generatedBy?: string | undefined;
2675
+ } | undefined;
2676
+ } | undefined;
2677
+ readonly readonlyWhen?: {
2678
+ dialect: "cel" | "js" | "cron" | "template";
2679
+ source?: string | undefined;
2680
+ ast?: unknown;
2681
+ meta?: {
2682
+ rationale?: string | undefined;
2683
+ generatedBy?: string | undefined;
2684
+ } | undefined;
2685
+ } | undefined;
2686
+ readonly requiredWhen?: {
2687
+ dialect: "cel" | "js" | "cron" | "template";
2688
+ source?: string | undefined;
2689
+ ast?: unknown;
2690
+ meta?: {
2691
+ rationale?: string | undefined;
2692
+ generatedBy?: string | undefined;
2693
+ } | undefined;
2694
+ } | undefined;
2345
2695
  readonly conditionalRequired?: {
2346
2696
  dialect: "cel" | "js" | "cron" | "template";
2347
2697
  source?: string | undefined;
@@ -2411,6 +2761,13 @@ declare const SysMetadataObject: Omit<{
2411
2761
  readonly referenceFilters?: string[] | undefined;
2412
2762
  readonly writeRequiresMasterRead?: boolean | undefined;
2413
2763
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2764
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2765
+ readonly inlineTitle?: string | undefined;
2766
+ readonly inlineColumns?: any[] | undefined;
2767
+ readonly inlineAmountField?: string | undefined;
2768
+ readonly relatedList?: boolean | undefined;
2769
+ readonly relatedListTitle?: string | undefined;
2770
+ readonly relatedListColumns?: any[] | undefined;
2414
2771
  readonly expression?: {
2415
2772
  dialect: "cel" | "js" | "cron" | "template";
2416
2773
  source?: string | undefined;
@@ -2424,6 +2781,7 @@ declare const SysMetadataObject: Omit<{
2424
2781
  object: string;
2425
2782
  field: string;
2426
2783
  function: "min" | "max" | "count" | "sum" | "avg";
2784
+ relationshipField?: string | undefined;
2427
2785
  } | undefined;
2428
2786
  readonly language?: string | undefined;
2429
2787
  readonly lineNumbers?: boolean | undefined;
@@ -2518,7 +2876,7 @@ declare const SysMetadataObject: Omit<{
2518
2876
  threshold: number;
2519
2877
  } | undefined;
2520
2878
  } | undefined;
2521
- readonly conditionalRequired?: {
2879
+ readonly visibleWhen?: {
2522
2880
  dialect: "cel" | "js" | "cron" | "template";
2523
2881
  source?: string | undefined;
2524
2882
  ast?: unknown;
@@ -2527,19 +2885,46 @@ declare const SysMetadataObject: Omit<{
2527
2885
  generatedBy?: string | undefined;
2528
2886
  } | undefined;
2529
2887
  } | undefined;
2530
- readonly sortable?: boolean | undefined;
2531
- readonly inlineHelpText?: string | undefined;
2532
- readonly trackFeedHistory?: boolean | undefined;
2533
- readonly caseSensitive?: boolean | undefined;
2534
- readonly autonumberFormat?: string | undefined;
2535
- readonly index?: boolean | undefined;
2536
- readonly type: "textarea";
2537
- };
2538
- /** Parent metadata name for extension/override */
2539
- readonly extends: {
2540
- readonly readonly?: boolean | undefined;
2541
- readonly format?: string | undefined;
2542
- readonly options?: {
2888
+ readonly readonlyWhen?: {
2889
+ dialect: "cel" | "js" | "cron" | "template";
2890
+ source?: string | undefined;
2891
+ ast?: unknown;
2892
+ meta?: {
2893
+ rationale?: string | undefined;
2894
+ generatedBy?: string | undefined;
2895
+ } | undefined;
2896
+ } | undefined;
2897
+ readonly requiredWhen?: {
2898
+ dialect: "cel" | "js" | "cron" | "template";
2899
+ source?: string | undefined;
2900
+ ast?: unknown;
2901
+ meta?: {
2902
+ rationale?: string | undefined;
2903
+ generatedBy?: string | undefined;
2904
+ } | undefined;
2905
+ } | undefined;
2906
+ readonly conditionalRequired?: {
2907
+ dialect: "cel" | "js" | "cron" | "template";
2908
+ source?: string | undefined;
2909
+ ast?: unknown;
2910
+ meta?: {
2911
+ rationale?: string | undefined;
2912
+ generatedBy?: string | undefined;
2913
+ } | undefined;
2914
+ } | undefined;
2915
+ readonly sortable?: boolean | undefined;
2916
+ readonly inlineHelpText?: string | undefined;
2917
+ readonly trackFeedHistory?: boolean | undefined;
2918
+ readonly caseSensitive?: boolean | undefined;
2919
+ readonly autonumberFormat?: string | undefined;
2920
+ readonly index?: boolean | undefined;
2921
+ readonly type: "textarea";
2922
+ };
2923
+ /** Parent metadata name for extension/override */
2924
+ readonly extends: {
2925
+ readonly readonly?: boolean | undefined;
2926
+ readonly format?: string | undefined;
2927
+ readonly options?: {
2543
2928
  label: string;
2544
2929
  value: string;
2545
2930
  color?: string | undefined;
@@ -2587,6 +2972,13 @@ declare const SysMetadataObject: Omit<{
2587
2972
  readonly referenceFilters?: string[] | undefined;
2588
2973
  readonly writeRequiresMasterRead?: boolean | undefined;
2589
2974
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2975
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2976
+ readonly inlineTitle?: string | undefined;
2977
+ readonly inlineColumns?: any[] | undefined;
2978
+ readonly inlineAmountField?: string | undefined;
2979
+ readonly relatedList?: boolean | undefined;
2980
+ readonly relatedListTitle?: string | undefined;
2981
+ readonly relatedListColumns?: any[] | undefined;
2590
2982
  readonly expression?: {
2591
2983
  dialect: "cel" | "js" | "cron" | "template";
2592
2984
  source?: string | undefined;
@@ -2600,6 +2992,7 @@ declare const SysMetadataObject: Omit<{
2600
2992
  object: string;
2601
2993
  field: string;
2602
2994
  function: "min" | "max" | "count" | "sum" | "avg";
2995
+ relationshipField?: string | undefined;
2603
2996
  } | undefined;
2604
2997
  readonly language?: string | undefined;
2605
2998
  readonly lineNumbers?: boolean | undefined;
@@ -2694,6 +3087,33 @@ declare const SysMetadataObject: Omit<{
2694
3087
  threshold: number;
2695
3088
  } | undefined;
2696
3089
  } | undefined;
3090
+ readonly visibleWhen?: {
3091
+ dialect: "cel" | "js" | "cron" | "template";
3092
+ source?: string | undefined;
3093
+ ast?: unknown;
3094
+ meta?: {
3095
+ rationale?: string | undefined;
3096
+ generatedBy?: string | undefined;
3097
+ } | undefined;
3098
+ } | undefined;
3099
+ readonly readonlyWhen?: {
3100
+ dialect: "cel" | "js" | "cron" | "template";
3101
+ source?: string | undefined;
3102
+ ast?: unknown;
3103
+ meta?: {
3104
+ rationale?: string | undefined;
3105
+ generatedBy?: string | undefined;
3106
+ } | undefined;
3107
+ } | undefined;
3108
+ readonly requiredWhen?: {
3109
+ dialect: "cel" | "js" | "cron" | "template";
3110
+ source?: string | undefined;
3111
+ ast?: unknown;
3112
+ meta?: {
3113
+ rationale?: string | undefined;
3114
+ generatedBy?: string | undefined;
3115
+ } | undefined;
3116
+ } | undefined;
2697
3117
  readonly conditionalRequired?: {
2698
3118
  dialect: "cel" | "js" | "cron" | "template";
2699
3119
  source?: string | undefined;
@@ -2763,6 +3183,13 @@ declare const SysMetadataObject: Omit<{
2763
3183
  readonly referenceFilters?: string[] | undefined;
2764
3184
  readonly writeRequiresMasterRead?: boolean | undefined;
2765
3185
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
3186
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
3187
+ readonly inlineTitle?: string | undefined;
3188
+ readonly inlineColumns?: any[] | undefined;
3189
+ readonly inlineAmountField?: string | undefined;
3190
+ readonly relatedList?: boolean | undefined;
3191
+ readonly relatedListTitle?: string | undefined;
3192
+ readonly relatedListColumns?: any[] | undefined;
2766
3193
  readonly expression?: {
2767
3194
  dialect: "cel" | "js" | "cron" | "template";
2768
3195
  source?: string | undefined;
@@ -2776,6 +3203,7 @@ declare const SysMetadataObject: Omit<{
2776
3203
  object: string;
2777
3204
  field: string;
2778
3205
  function: "min" | "max" | "count" | "sum" | "avg";
3206
+ relationshipField?: string | undefined;
2779
3207
  } | undefined;
2780
3208
  readonly language?: string | undefined;
2781
3209
  readonly lineNumbers?: boolean | undefined;
@@ -2870,6 +3298,33 @@ declare const SysMetadataObject: Omit<{
2870
3298
  threshold: number;
2871
3299
  } | undefined;
2872
3300
  } | undefined;
3301
+ readonly visibleWhen?: {
3302
+ dialect: "cel" | "js" | "cron" | "template";
3303
+ source?: string | undefined;
3304
+ ast?: unknown;
3305
+ meta?: {
3306
+ rationale?: string | undefined;
3307
+ generatedBy?: string | undefined;
3308
+ } | undefined;
3309
+ } | undefined;
3310
+ readonly readonlyWhen?: {
3311
+ dialect: "cel" | "js" | "cron" | "template";
3312
+ source?: string | undefined;
3313
+ ast?: unknown;
3314
+ meta?: {
3315
+ rationale?: string | undefined;
3316
+ generatedBy?: string | undefined;
3317
+ } | undefined;
3318
+ } | undefined;
3319
+ readonly requiredWhen?: {
3320
+ dialect: "cel" | "js" | "cron" | "template";
3321
+ source?: string | undefined;
3322
+ ast?: unknown;
3323
+ meta?: {
3324
+ rationale?: string | undefined;
3325
+ generatedBy?: string | undefined;
3326
+ } | undefined;
3327
+ } | undefined;
2873
3328
  readonly conditionalRequired?: {
2874
3329
  dialect: "cel" | "js" | "cron" | "template";
2875
3330
  source?: string | undefined;
@@ -2939,6 +3394,13 @@ declare const SysMetadataObject: Omit<{
2939
3394
  readonly referenceFilters?: string[] | undefined;
2940
3395
  readonly writeRequiresMasterRead?: boolean | undefined;
2941
3396
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
3397
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
3398
+ readonly inlineTitle?: string | undefined;
3399
+ readonly inlineColumns?: any[] | undefined;
3400
+ readonly inlineAmountField?: string | undefined;
3401
+ readonly relatedList?: boolean | undefined;
3402
+ readonly relatedListTitle?: string | undefined;
3403
+ readonly relatedListColumns?: any[] | undefined;
2942
3404
  readonly expression?: {
2943
3405
  dialect: "cel" | "js" | "cron" | "template";
2944
3406
  source?: string | undefined;
@@ -2952,6 +3414,7 @@ declare const SysMetadataObject: Omit<{
2952
3414
  object: string;
2953
3415
  field: string;
2954
3416
  function: "min" | "max" | "count" | "sum" | "avg";
3417
+ relationshipField?: string | undefined;
2955
3418
  } | undefined;
2956
3419
  readonly language?: string | undefined;
2957
3420
  readonly lineNumbers?: boolean | undefined;
@@ -3046,6 +3509,33 @@ declare const SysMetadataObject: Omit<{
3046
3509
  threshold: number;
3047
3510
  } | undefined;
3048
3511
  } | undefined;
3512
+ readonly visibleWhen?: {
3513
+ dialect: "cel" | "js" | "cron" | "template";
3514
+ source?: string | undefined;
3515
+ ast?: unknown;
3516
+ meta?: {
3517
+ rationale?: string | undefined;
3518
+ generatedBy?: string | undefined;
3519
+ } | undefined;
3520
+ } | undefined;
3521
+ readonly readonlyWhen?: {
3522
+ dialect: "cel" | "js" | "cron" | "template";
3523
+ source?: string | undefined;
3524
+ ast?: unknown;
3525
+ meta?: {
3526
+ rationale?: string | undefined;
3527
+ generatedBy?: string | undefined;
3528
+ } | undefined;
3529
+ } | undefined;
3530
+ readonly requiredWhen?: {
3531
+ dialect: "cel" | "js" | "cron" | "template";
3532
+ source?: string | undefined;
3533
+ ast?: unknown;
3534
+ meta?: {
3535
+ rationale?: string | undefined;
3536
+ generatedBy?: string | undefined;
3537
+ } | undefined;
3538
+ } | undefined;
3049
3539
  readonly conditionalRequired?: {
3050
3540
  dialect: "cel" | "js" | "cron" | "template";
3051
3541
  source?: string | undefined;
@@ -3115,6 +3605,13 @@ declare const SysMetadataObject: Omit<{
3115
3605
  readonly referenceFilters?: string[] | undefined;
3116
3606
  readonly writeRequiresMasterRead?: boolean | undefined;
3117
3607
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
3608
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
3609
+ readonly inlineTitle?: string | undefined;
3610
+ readonly inlineColumns?: any[] | undefined;
3611
+ readonly inlineAmountField?: string | undefined;
3612
+ readonly relatedList?: boolean | undefined;
3613
+ readonly relatedListTitle?: string | undefined;
3614
+ readonly relatedListColumns?: any[] | undefined;
3118
3615
  readonly expression?: {
3119
3616
  dialect: "cel" | "js" | "cron" | "template";
3120
3617
  source?: string | undefined;
@@ -3128,6 +3625,7 @@ declare const SysMetadataObject: Omit<{
3128
3625
  object: string;
3129
3626
  field: string;
3130
3627
  function: "min" | "max" | "count" | "sum" | "avg";
3628
+ relationshipField?: string | undefined;
3131
3629
  } | undefined;
3132
3630
  readonly language?: string | undefined;
3133
3631
  readonly lineNumbers?: boolean | undefined;
@@ -3222,6 +3720,33 @@ declare const SysMetadataObject: Omit<{
3222
3720
  threshold: number;
3223
3721
  } | undefined;
3224
3722
  } | undefined;
3723
+ readonly visibleWhen?: {
3724
+ dialect: "cel" | "js" | "cron" | "template";
3725
+ source?: string | undefined;
3726
+ ast?: unknown;
3727
+ meta?: {
3728
+ rationale?: string | undefined;
3729
+ generatedBy?: string | undefined;
3730
+ } | undefined;
3731
+ } | undefined;
3732
+ readonly readonlyWhen?: {
3733
+ dialect: "cel" | "js" | "cron" | "template";
3734
+ source?: string | undefined;
3735
+ ast?: unknown;
3736
+ meta?: {
3737
+ rationale?: string | undefined;
3738
+ generatedBy?: string | undefined;
3739
+ } | undefined;
3740
+ } | undefined;
3741
+ readonly requiredWhen?: {
3742
+ dialect: "cel" | "js" | "cron" | "template";
3743
+ source?: string | undefined;
3744
+ ast?: unknown;
3745
+ meta?: {
3746
+ rationale?: string | undefined;
3747
+ generatedBy?: string | undefined;
3748
+ } | undefined;
3749
+ } | undefined;
3225
3750
  readonly conditionalRequired?: {
3226
3751
  dialect: "cel" | "js" | "cron" | "template";
3227
3752
  source?: string | undefined;
@@ -3291,6 +3816,13 @@ declare const SysMetadataObject: Omit<{
3291
3816
  readonly referenceFilters?: string[] | undefined;
3292
3817
  readonly writeRequiresMasterRead?: boolean | undefined;
3293
3818
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
3819
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
3820
+ readonly inlineTitle?: string | undefined;
3821
+ readonly inlineColumns?: any[] | undefined;
3822
+ readonly inlineAmountField?: string | undefined;
3823
+ readonly relatedList?: boolean | undefined;
3824
+ readonly relatedListTitle?: string | undefined;
3825
+ readonly relatedListColumns?: any[] | undefined;
3294
3826
  readonly expression?: {
3295
3827
  dialect: "cel" | "js" | "cron" | "template";
3296
3828
  source?: string | undefined;
@@ -3304,6 +3836,7 @@ declare const SysMetadataObject: Omit<{
3304
3836
  object: string;
3305
3837
  field: string;
3306
3838
  function: "min" | "max" | "count" | "sum" | "avg";
3839
+ relationshipField?: string | undefined;
3307
3840
  } | undefined;
3308
3841
  readonly language?: string | undefined;
3309
3842
  readonly lineNumbers?: boolean | undefined;
@@ -3398,6 +3931,33 @@ declare const SysMetadataObject: Omit<{
3398
3931
  threshold: number;
3399
3932
  } | undefined;
3400
3933
  } | undefined;
3934
+ readonly visibleWhen?: {
3935
+ dialect: "cel" | "js" | "cron" | "template";
3936
+ source?: string | undefined;
3937
+ ast?: unknown;
3938
+ meta?: {
3939
+ rationale?: string | undefined;
3940
+ generatedBy?: string | undefined;
3941
+ } | undefined;
3942
+ } | undefined;
3943
+ readonly readonlyWhen?: {
3944
+ dialect: "cel" | "js" | "cron" | "template";
3945
+ source?: string | undefined;
3946
+ ast?: unknown;
3947
+ meta?: {
3948
+ rationale?: string | undefined;
3949
+ generatedBy?: string | undefined;
3950
+ } | undefined;
3951
+ } | undefined;
3952
+ readonly requiredWhen?: {
3953
+ dialect: "cel" | "js" | "cron" | "template";
3954
+ source?: string | undefined;
3955
+ ast?: unknown;
3956
+ meta?: {
3957
+ rationale?: string | undefined;
3958
+ generatedBy?: string | undefined;
3959
+ } | undefined;
3960
+ } | undefined;
3401
3961
  readonly conditionalRequired?: {
3402
3962
  dialect: "cel" | "js" | "cron" | "template";
3403
3963
  source?: string | undefined;
@@ -3472,6 +4032,13 @@ declare const SysMetadataObject: Omit<{
3472
4032
  readonly referenceFilters?: string[] | undefined;
3473
4033
  readonly writeRequiresMasterRead?: boolean | undefined;
3474
4034
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
4035
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
4036
+ readonly inlineTitle?: string | undefined;
4037
+ readonly inlineColumns?: any[] | undefined;
4038
+ readonly inlineAmountField?: string | undefined;
4039
+ readonly relatedList?: boolean | undefined;
4040
+ readonly relatedListTitle?: string | undefined;
4041
+ readonly relatedListColumns?: any[] | undefined;
3475
4042
  readonly expression?: {
3476
4043
  dialect: "cel" | "js" | "cron" | "template";
3477
4044
  source?: string | undefined;
@@ -3485,6 +4052,7 @@ declare const SysMetadataObject: Omit<{
3485
4052
  object: string;
3486
4053
  field: string;
3487
4054
  function: "min" | "max" | "count" | "sum" | "avg";
4055
+ relationshipField?: string | undefined;
3488
4056
  } | undefined;
3489
4057
  readonly language?: string | undefined;
3490
4058
  readonly lineNumbers?: boolean | undefined;
@@ -3579,6 +4147,33 @@ declare const SysMetadataObject: Omit<{
3579
4147
  threshold: number;
3580
4148
  } | undefined;
3581
4149
  } | undefined;
4150
+ readonly visibleWhen?: {
4151
+ dialect: "cel" | "js" | "cron" | "template";
4152
+ source?: string | undefined;
4153
+ ast?: unknown;
4154
+ meta?: {
4155
+ rationale?: string | undefined;
4156
+ generatedBy?: string | undefined;
4157
+ } | undefined;
4158
+ } | undefined;
4159
+ readonly readonlyWhen?: {
4160
+ dialect: "cel" | "js" | "cron" | "template";
4161
+ source?: string | undefined;
4162
+ ast?: unknown;
4163
+ meta?: {
4164
+ rationale?: string | undefined;
4165
+ generatedBy?: string | undefined;
4166
+ } | undefined;
4167
+ } | undefined;
4168
+ readonly requiredWhen?: {
4169
+ dialect: "cel" | "js" | "cron" | "template";
4170
+ source?: string | undefined;
4171
+ ast?: unknown;
4172
+ meta?: {
4173
+ rationale?: string | undefined;
4174
+ generatedBy?: string | undefined;
4175
+ } | undefined;
4176
+ } | undefined;
3582
4177
  readonly conditionalRequired?: {
3583
4178
  dialect: "cel" | "js" | "cron" | "template";
3584
4179
  source?: string | undefined;
@@ -3648,6 +4243,13 @@ declare const SysMetadataObject: Omit<{
3648
4243
  readonly referenceFilters?: string[] | undefined;
3649
4244
  readonly writeRequiresMasterRead?: boolean | undefined;
3650
4245
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
4246
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
4247
+ readonly inlineTitle?: string | undefined;
4248
+ readonly inlineColumns?: any[] | undefined;
4249
+ readonly inlineAmountField?: string | undefined;
4250
+ readonly relatedList?: boolean | undefined;
4251
+ readonly relatedListTitle?: string | undefined;
4252
+ readonly relatedListColumns?: any[] | undefined;
3651
4253
  readonly expression?: {
3652
4254
  dialect: "cel" | "js" | "cron" | "template";
3653
4255
  source?: string | undefined;
@@ -3661,6 +4263,7 @@ declare const SysMetadataObject: Omit<{
3661
4263
  object: string;
3662
4264
  field: string;
3663
4265
  function: "min" | "max" | "count" | "sum" | "avg";
4266
+ relationshipField?: string | undefined;
3664
4267
  } | undefined;
3665
4268
  readonly language?: string | undefined;
3666
4269
  readonly lineNumbers?: boolean | undefined;
@@ -3755,6 +4358,33 @@ declare const SysMetadataObject: Omit<{
3755
4358
  threshold: number;
3756
4359
  } | undefined;
3757
4360
  } | undefined;
4361
+ readonly visibleWhen?: {
4362
+ dialect: "cel" | "js" | "cron" | "template";
4363
+ source?: string | undefined;
4364
+ ast?: unknown;
4365
+ meta?: {
4366
+ rationale?: string | undefined;
4367
+ generatedBy?: string | undefined;
4368
+ } | undefined;
4369
+ } | undefined;
4370
+ readonly readonlyWhen?: {
4371
+ dialect: "cel" | "js" | "cron" | "template";
4372
+ source?: string | undefined;
4373
+ ast?: unknown;
4374
+ meta?: {
4375
+ rationale?: string | undefined;
4376
+ generatedBy?: string | undefined;
4377
+ } | undefined;
4378
+ } | undefined;
4379
+ readonly requiredWhen?: {
4380
+ dialect: "cel" | "js" | "cron" | "template";
4381
+ source?: string | undefined;
4382
+ ast?: unknown;
4383
+ meta?: {
4384
+ rationale?: string | undefined;
4385
+ generatedBy?: string | undefined;
4386
+ } | undefined;
4387
+ } | undefined;
3758
4388
  readonly conditionalRequired?: {
3759
4389
  dialect: "cel" | "js" | "cron" | "template";
3760
4390
  source?: string | undefined;
@@ -3824,6 +4454,13 @@ declare const SysMetadataObject: Omit<{
3824
4454
  readonly referenceFilters?: string[] | undefined;
3825
4455
  readonly writeRequiresMasterRead?: boolean | undefined;
3826
4456
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
4457
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
4458
+ readonly inlineTitle?: string | undefined;
4459
+ readonly inlineColumns?: any[] | undefined;
4460
+ readonly inlineAmountField?: string | undefined;
4461
+ readonly relatedList?: boolean | undefined;
4462
+ readonly relatedListTitle?: string | undefined;
4463
+ readonly relatedListColumns?: any[] | undefined;
3827
4464
  readonly expression?: {
3828
4465
  dialect: "cel" | "js" | "cron" | "template";
3829
4466
  source?: string | undefined;
@@ -3837,6 +4474,7 @@ declare const SysMetadataObject: Omit<{
3837
4474
  object: string;
3838
4475
  field: string;
3839
4476
  function: "min" | "max" | "count" | "sum" | "avg";
4477
+ relationshipField?: string | undefined;
3840
4478
  } | undefined;
3841
4479
  readonly language?: string | undefined;
3842
4480
  readonly lineNumbers?: boolean | undefined;
@@ -3931,6 +4569,33 @@ declare const SysMetadataObject: Omit<{
3931
4569
  threshold: number;
3932
4570
  } | undefined;
3933
4571
  } | undefined;
4572
+ readonly visibleWhen?: {
4573
+ dialect: "cel" | "js" | "cron" | "template";
4574
+ source?: string | undefined;
4575
+ ast?: unknown;
4576
+ meta?: {
4577
+ rationale?: string | undefined;
4578
+ generatedBy?: string | undefined;
4579
+ } | undefined;
4580
+ } | undefined;
4581
+ readonly readonlyWhen?: {
4582
+ dialect: "cel" | "js" | "cron" | "template";
4583
+ source?: string | undefined;
4584
+ ast?: unknown;
4585
+ meta?: {
4586
+ rationale?: string | undefined;
4587
+ generatedBy?: string | undefined;
4588
+ } | undefined;
4589
+ } | undefined;
4590
+ readonly requiredWhen?: {
4591
+ dialect: "cel" | "js" | "cron" | "template";
4592
+ source?: string | undefined;
4593
+ ast?: unknown;
4594
+ meta?: {
4595
+ rationale?: string | undefined;
4596
+ generatedBy?: string | undefined;
4597
+ } | undefined;
4598
+ } | undefined;
3934
4599
  readonly conditionalRequired?: {
3935
4600
  dialect: "cel" | "js" | "cron" | "template";
3936
4601
  source?: string | undefined;
@@ -4000,6 +4665,13 @@ declare const SysMetadataObject: Omit<{
4000
4665
  readonly referenceFilters?: string[] | undefined;
4001
4666
  readonly writeRequiresMasterRead?: boolean | undefined;
4002
4667
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
4668
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
4669
+ readonly inlineTitle?: string | undefined;
4670
+ readonly inlineColumns?: any[] | undefined;
4671
+ readonly inlineAmountField?: string | undefined;
4672
+ readonly relatedList?: boolean | undefined;
4673
+ readonly relatedListTitle?: string | undefined;
4674
+ readonly relatedListColumns?: any[] | undefined;
4003
4675
  readonly expression?: {
4004
4676
  dialect: "cel" | "js" | "cron" | "template";
4005
4677
  source?: string | undefined;
@@ -4013,6 +4685,7 @@ declare const SysMetadataObject: Omit<{
4013
4685
  object: string;
4014
4686
  field: string;
4015
4687
  function: "min" | "max" | "count" | "sum" | "avg";
4688
+ relationshipField?: string | undefined;
4016
4689
  } | undefined;
4017
4690
  readonly language?: string | undefined;
4018
4691
  readonly lineNumbers?: boolean | undefined;
@@ -4107,6 +4780,33 @@ declare const SysMetadataObject: Omit<{
4107
4780
  threshold: number;
4108
4781
  } | undefined;
4109
4782
  } | undefined;
4783
+ readonly visibleWhen?: {
4784
+ dialect: "cel" | "js" | "cron" | "template";
4785
+ source?: string | undefined;
4786
+ ast?: unknown;
4787
+ meta?: {
4788
+ rationale?: string | undefined;
4789
+ generatedBy?: string | undefined;
4790
+ } | undefined;
4791
+ } | undefined;
4792
+ readonly readonlyWhen?: {
4793
+ dialect: "cel" | "js" | "cron" | "template";
4794
+ source?: string | undefined;
4795
+ ast?: unknown;
4796
+ meta?: {
4797
+ rationale?: string | undefined;
4798
+ generatedBy?: string | undefined;
4799
+ } | undefined;
4800
+ } | undefined;
4801
+ readonly requiredWhen?: {
4802
+ dialect: "cel" | "js" | "cron" | "template";
4803
+ source?: string | undefined;
4804
+ ast?: unknown;
4805
+ meta?: {
4806
+ rationale?: string | undefined;
4807
+ generatedBy?: string | undefined;
4808
+ } | undefined;
4809
+ } | undefined;
4110
4810
  readonly conditionalRequired?: {
4111
4811
  dialect: "cel" | "js" | "cron" | "template";
4112
4812
  source?: string | undefined;
@@ -4176,6 +4876,13 @@ declare const SysMetadataObject: Omit<{
4176
4876
  readonly referenceFilters?: string[] | undefined;
4177
4877
  readonly writeRequiresMasterRead?: boolean | undefined;
4178
4878
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
4879
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
4880
+ readonly inlineTitle?: string | undefined;
4881
+ readonly inlineColumns?: any[] | undefined;
4882
+ readonly inlineAmountField?: string | undefined;
4883
+ readonly relatedList?: boolean | undefined;
4884
+ readonly relatedListTitle?: string | undefined;
4885
+ readonly relatedListColumns?: any[] | undefined;
4179
4886
  readonly expression?: {
4180
4887
  dialect: "cel" | "js" | "cron" | "template";
4181
4888
  source?: string | undefined;
@@ -4189,6 +4896,7 @@ declare const SysMetadataObject: Omit<{
4189
4896
  object: string;
4190
4897
  field: string;
4191
4898
  function: "min" | "max" | "count" | "sum" | "avg";
4899
+ relationshipField?: string | undefined;
4192
4900
  } | undefined;
4193
4901
  readonly language?: string | undefined;
4194
4902
  readonly lineNumbers?: boolean | undefined;
@@ -4283,6 +4991,33 @@ declare const SysMetadataObject: Omit<{
4283
4991
  threshold: number;
4284
4992
  } | undefined;
4285
4993
  } | undefined;
4994
+ readonly visibleWhen?: {
4995
+ dialect: "cel" | "js" | "cron" | "template";
4996
+ source?: string | undefined;
4997
+ ast?: unknown;
4998
+ meta?: {
4999
+ rationale?: string | undefined;
5000
+ generatedBy?: string | undefined;
5001
+ } | undefined;
5002
+ } | undefined;
5003
+ readonly readonlyWhen?: {
5004
+ dialect: "cel" | "js" | "cron" | "template";
5005
+ source?: string | undefined;
5006
+ ast?: unknown;
5007
+ meta?: {
5008
+ rationale?: string | undefined;
5009
+ generatedBy?: string | undefined;
5010
+ } | undefined;
5011
+ } | undefined;
5012
+ readonly requiredWhen?: {
5013
+ dialect: "cel" | "js" | "cron" | "template";
5014
+ source?: string | undefined;
5015
+ ast?: unknown;
5016
+ meta?: {
5017
+ rationale?: string | undefined;
5018
+ generatedBy?: string | undefined;
5019
+ } | undefined;
5020
+ } | undefined;
4286
5021
  readonly conditionalRequired?: {
4287
5022
  dialect: "cel" | "js" | "cron" | "template";
4288
5023
  source?: string | undefined;
@@ -4352,6 +5087,13 @@ declare const SysMetadataObject: Omit<{
4352
5087
  readonly referenceFilters?: string[] | undefined;
4353
5088
  readonly writeRequiresMasterRead?: boolean | undefined;
4354
5089
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
5090
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
5091
+ readonly inlineTitle?: string | undefined;
5092
+ readonly inlineColumns?: any[] | undefined;
5093
+ readonly inlineAmountField?: string | undefined;
5094
+ readonly relatedList?: boolean | undefined;
5095
+ readonly relatedListTitle?: string | undefined;
5096
+ readonly relatedListColumns?: any[] | undefined;
4355
5097
  readonly expression?: {
4356
5098
  dialect: "cel" | "js" | "cron" | "template";
4357
5099
  source?: string | undefined;
@@ -4365,6 +5107,7 @@ declare const SysMetadataObject: Omit<{
4365
5107
  object: string;
4366
5108
  field: string;
4367
5109
  function: "min" | "max" | "count" | "sum" | "avg";
5110
+ relationshipField?: string | undefined;
4368
5111
  } | undefined;
4369
5112
  readonly language?: string | undefined;
4370
5113
  readonly lineNumbers?: boolean | undefined;
@@ -4459,6 +5202,33 @@ declare const SysMetadataObject: Omit<{
4459
5202
  threshold: number;
4460
5203
  } | undefined;
4461
5204
  } | undefined;
5205
+ readonly visibleWhen?: {
5206
+ dialect: "cel" | "js" | "cron" | "template";
5207
+ source?: string | undefined;
5208
+ ast?: unknown;
5209
+ meta?: {
5210
+ rationale?: string | undefined;
5211
+ generatedBy?: string | undefined;
5212
+ } | undefined;
5213
+ } | undefined;
5214
+ readonly readonlyWhen?: {
5215
+ dialect: "cel" | "js" | "cron" | "template";
5216
+ source?: string | undefined;
5217
+ ast?: unknown;
5218
+ meta?: {
5219
+ rationale?: string | undefined;
5220
+ generatedBy?: string | undefined;
5221
+ } | undefined;
5222
+ } | undefined;
5223
+ readonly requiredWhen?: {
5224
+ dialect: "cel" | "js" | "cron" | "template";
5225
+ source?: string | undefined;
5226
+ ast?: unknown;
5227
+ meta?: {
5228
+ rationale?: string | undefined;
5229
+ generatedBy?: string | undefined;
5230
+ } | undefined;
5231
+ } | undefined;
4462
5232
  readonly conditionalRequired?: {
4463
5233
  dialect: "cel" | "js" | "cron" | "template";
4464
5234
  source?: string | undefined;
@@ -4527,6 +5297,13 @@ declare const SysMetadataObject: Omit<{
4527
5297
  readonly referenceFilters?: string[] | undefined;
4528
5298
  readonly writeRequiresMasterRead?: boolean | undefined;
4529
5299
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
5300
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
5301
+ readonly inlineTitle?: string | undefined;
5302
+ readonly inlineColumns?: any[] | undefined;
5303
+ readonly inlineAmountField?: string | undefined;
5304
+ readonly relatedList?: boolean | undefined;
5305
+ readonly relatedListTitle?: string | undefined;
5306
+ readonly relatedListColumns?: any[] | undefined;
4530
5307
  readonly expression?: {
4531
5308
  dialect: "cel" | "js" | "cron" | "template";
4532
5309
  source?: string | undefined;
@@ -4540,6 +5317,7 @@ declare const SysMetadataObject: Omit<{
4540
5317
  object: string;
4541
5318
  field: string;
4542
5319
  function: "min" | "max" | "count" | "sum" | "avg";
5320
+ relationshipField?: string | undefined;
4543
5321
  } | undefined;
4544
5322
  readonly language?: string | undefined;
4545
5323
  readonly lineNumbers?: boolean | undefined;
@@ -4634,6 +5412,33 @@ declare const SysMetadataObject: Omit<{
4634
5412
  threshold: number;
4635
5413
  } | undefined;
4636
5414
  } | undefined;
5415
+ readonly visibleWhen?: {
5416
+ dialect: "cel" | "js" | "cron" | "template";
5417
+ source?: string | undefined;
5418
+ ast?: unknown;
5419
+ meta?: {
5420
+ rationale?: string | undefined;
5421
+ generatedBy?: string | undefined;
5422
+ } | undefined;
5423
+ } | undefined;
5424
+ readonly readonlyWhen?: {
5425
+ dialect: "cel" | "js" | "cron" | "template";
5426
+ source?: string | undefined;
5427
+ ast?: unknown;
5428
+ meta?: {
5429
+ rationale?: string | undefined;
5430
+ generatedBy?: string | undefined;
5431
+ } | undefined;
5432
+ } | undefined;
5433
+ readonly requiredWhen?: {
5434
+ dialect: "cel" | "js" | "cron" | "template";
5435
+ source?: string | undefined;
5436
+ ast?: unknown;
5437
+ meta?: {
5438
+ rationale?: string | undefined;
5439
+ generatedBy?: string | undefined;
5440
+ } | undefined;
5441
+ } | undefined;
4637
5442
  readonly conditionalRequired?: {
4638
5443
  dialect: "cel" | "js" | "cron" | "template";
4639
5444
  source?: string | undefined;
@@ -4702,6 +5507,13 @@ declare const SysMetadataObject: Omit<{
4702
5507
  readonly referenceFilters?: string[] | undefined;
4703
5508
  readonly writeRequiresMasterRead?: boolean | undefined;
4704
5509
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
5510
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
5511
+ readonly inlineTitle?: string | undefined;
5512
+ readonly inlineColumns?: any[] | undefined;
5513
+ readonly inlineAmountField?: string | undefined;
5514
+ readonly relatedList?: boolean | undefined;
5515
+ readonly relatedListTitle?: string | undefined;
5516
+ readonly relatedListColumns?: any[] | undefined;
4705
5517
  readonly expression?: {
4706
5518
  dialect: "cel" | "js" | "cron" | "template";
4707
5519
  source?: string | undefined;
@@ -4715,6 +5527,7 @@ declare const SysMetadataObject: Omit<{
4715
5527
  object: string;
4716
5528
  field: string;
4717
5529
  function: "min" | "max" | "count" | "sum" | "avg";
5530
+ relationshipField?: string | undefined;
4718
5531
  } | undefined;
4719
5532
  readonly language?: string | undefined;
4720
5533
  readonly lineNumbers?: boolean | undefined;
@@ -4809,6 +5622,33 @@ declare const SysMetadataObject: Omit<{
4809
5622
  threshold: number;
4810
5623
  } | undefined;
4811
5624
  } | undefined;
5625
+ readonly visibleWhen?: {
5626
+ dialect: "cel" | "js" | "cron" | "template";
5627
+ source?: string | undefined;
5628
+ ast?: unknown;
5629
+ meta?: {
5630
+ rationale?: string | undefined;
5631
+ generatedBy?: string | undefined;
5632
+ } | undefined;
5633
+ } | undefined;
5634
+ readonly readonlyWhen?: {
5635
+ dialect: "cel" | "js" | "cron" | "template";
5636
+ source?: string | undefined;
5637
+ ast?: unknown;
5638
+ meta?: {
5639
+ rationale?: string | undefined;
5640
+ generatedBy?: string | undefined;
5641
+ } | undefined;
5642
+ } | undefined;
5643
+ readonly requiredWhen?: {
5644
+ dialect: "cel" | "js" | "cron" | "template";
5645
+ source?: string | undefined;
5646
+ ast?: unknown;
5647
+ meta?: {
5648
+ rationale?: string | undefined;
5649
+ generatedBy?: string | undefined;
5650
+ } | undefined;
5651
+ } | undefined;
4812
5652
  readonly conditionalRequired?: {
4813
5653
  dialect: "cel" | "js" | "cron" | "template";
4814
5654
  source?: string | undefined;
@@ -4877,6 +5717,13 @@ declare const SysMetadataObject: Omit<{
4877
5717
  readonly referenceFilters?: string[] | undefined;
4878
5718
  readonly writeRequiresMasterRead?: boolean | undefined;
4879
5719
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
5720
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
5721
+ readonly inlineTitle?: string | undefined;
5722
+ readonly inlineColumns?: any[] | undefined;
5723
+ readonly inlineAmountField?: string | undefined;
5724
+ readonly relatedList?: boolean | undefined;
5725
+ readonly relatedListTitle?: string | undefined;
5726
+ readonly relatedListColumns?: any[] | undefined;
4880
5727
  readonly expression?: {
4881
5728
  dialect: "cel" | "js" | "cron" | "template";
4882
5729
  source?: string | undefined;
@@ -4890,6 +5737,7 @@ declare const SysMetadataObject: Omit<{
4890
5737
  object: string;
4891
5738
  field: string;
4892
5739
  function: "min" | "max" | "count" | "sum" | "avg";
5740
+ relationshipField?: string | undefined;
4893
5741
  } | undefined;
4894
5742
  readonly language?: string | undefined;
4895
5743
  readonly lineNumbers?: boolean | undefined;
@@ -4976,12 +5824,39 @@ declare const SysMetadataObject: Omit<{
4976
5824
  ttl: number;
4977
5825
  invalidateOn: string[];
4978
5826
  } | undefined;
4979
- readonly dataQuality?: {
4980
- uniqueness: boolean;
4981
- completeness: number;
4982
- accuracy?: {
4983
- source: string;
4984
- threshold: number;
5827
+ readonly dataQuality?: {
5828
+ uniqueness: boolean;
5829
+ completeness: number;
5830
+ accuracy?: {
5831
+ source: string;
5832
+ threshold: number;
5833
+ } | undefined;
5834
+ } | undefined;
5835
+ readonly visibleWhen?: {
5836
+ dialect: "cel" | "js" | "cron" | "template";
5837
+ source?: string | undefined;
5838
+ ast?: unknown;
5839
+ meta?: {
5840
+ rationale?: string | undefined;
5841
+ generatedBy?: string | undefined;
5842
+ } | undefined;
5843
+ } | undefined;
5844
+ readonly readonlyWhen?: {
5845
+ dialect: "cel" | "js" | "cron" | "template";
5846
+ source?: string | undefined;
5847
+ ast?: unknown;
5848
+ meta?: {
5849
+ rationale?: string | undefined;
5850
+ generatedBy?: string | undefined;
5851
+ } | undefined;
5852
+ } | undefined;
5853
+ readonly requiredWhen?: {
5854
+ dialect: "cel" | "js" | "cron" | "template";
5855
+ source?: string | undefined;
5856
+ ast?: unknown;
5857
+ meta?: {
5858
+ rationale?: string | undefined;
5859
+ generatedBy?: string | undefined;
4985
5860
  } | undefined;
4986
5861
  } | undefined;
4987
5862
  readonly conditionalRequired?: {
@@ -5169,6 +6044,13 @@ declare const SysMetadataHistoryObject: Omit<{
5169
6044
  reference?: string | undefined;
5170
6045
  referenceFilters?: string[] | undefined;
5171
6046
  writeRequiresMasterRead?: boolean | undefined;
6047
+ inlineEdit?: boolean | "grid" | "form" | undefined;
6048
+ inlineTitle?: string | undefined;
6049
+ inlineColumns?: any[] | undefined;
6050
+ inlineAmountField?: string | undefined;
6051
+ relatedList?: boolean | undefined;
6052
+ relatedListTitle?: string | undefined;
6053
+ relatedListColumns?: any[] | undefined;
5172
6054
  expression?: {
5173
6055
  dialect: "cel" | "js" | "cron" | "template";
5174
6056
  source?: string | undefined;
@@ -5190,6 +6072,7 @@ declare const SysMetadataHistoryObject: Omit<{
5190
6072
  object: string;
5191
6073
  field: string;
5192
6074
  function: "min" | "max" | "count" | "sum" | "avg";
6075
+ relationshipField?: string | undefined;
5193
6076
  } | undefined;
5194
6077
  language?: string | undefined;
5195
6078
  theme?: string | undefined;
@@ -5303,6 +6186,57 @@ declare const SysMetadataHistoryObject: Omit<{
5303
6186
  } | undefined;
5304
6187
  } | undefined;
5305
6188
  group?: string | undefined;
6189
+ visibleWhen?: {
6190
+ dialect: "cel" | "js" | "cron" | "template";
6191
+ source?: string | undefined;
6192
+ ast?: unknown;
6193
+ meta?: {
6194
+ rationale?: string | undefined;
6195
+ generatedBy?: string | undefined;
6196
+ } | undefined;
6197
+ } | {
6198
+ dialect: "cel" | "js" | "cron" | "template";
6199
+ source?: string | undefined;
6200
+ ast?: unknown;
6201
+ meta?: {
6202
+ rationale?: string | undefined;
6203
+ generatedBy?: string | undefined;
6204
+ } | undefined;
6205
+ } | undefined;
6206
+ readonlyWhen?: {
6207
+ dialect: "cel" | "js" | "cron" | "template";
6208
+ source?: string | undefined;
6209
+ ast?: unknown;
6210
+ meta?: {
6211
+ rationale?: string | undefined;
6212
+ generatedBy?: string | undefined;
6213
+ } | undefined;
6214
+ } | {
6215
+ dialect: "cel" | "js" | "cron" | "template";
6216
+ source?: string | undefined;
6217
+ ast?: unknown;
6218
+ meta?: {
6219
+ rationale?: string | undefined;
6220
+ generatedBy?: string | undefined;
6221
+ } | undefined;
6222
+ } | undefined;
6223
+ requiredWhen?: {
6224
+ dialect: "cel" | "js" | "cron" | "template";
6225
+ source?: string | undefined;
6226
+ ast?: unknown;
6227
+ meta?: {
6228
+ rationale?: string | undefined;
6229
+ generatedBy?: string | undefined;
6230
+ } | undefined;
6231
+ } | {
6232
+ dialect: "cel" | "js" | "cron" | "template";
6233
+ source?: string | undefined;
6234
+ ast?: unknown;
6235
+ meta?: {
6236
+ rationale?: string | undefined;
6237
+ generatedBy?: string | undefined;
6238
+ } | undefined;
6239
+ } | undefined;
5306
6240
  conditionalRequired?: {
5307
6241
  dialect: "cel" | "js" | "cron" | "template";
5308
6242
  source?: string | undefined;
@@ -5444,7 +6378,7 @@ declare const SysMetadataHistoryObject: Omit<{
5444
6378
  } | undefined;
5445
6379
  compactLayout?: string[] | undefined;
5446
6380
  listViews?: Record<string, {
5447
- type: "map" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "grid";
6381
+ type: "map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart";
5448
6382
  columns: string[] | {
5449
6383
  field: string;
5450
6384
  label?: string | undefined;
@@ -5613,7 +6547,7 @@ declare const SysMetadataHistoryObject: Omit<{
5613
6547
  } | undefined;
5614
6548
  appearance?: {
5615
6549
  showDescription: boolean;
5616
- allowedVisualizations?: ("map" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "grid")[] | undefined;
6550
+ allowedVisualizations?: ("map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline")[] | undefined;
5617
6551
  } | undefined;
5618
6552
  tabs?: {
5619
6553
  name: string;
@@ -5633,7 +6567,7 @@ declare const SysMetadataHistoryObject: Omit<{
5633
6567
  addRecord?: {
5634
6568
  enabled: boolean;
5635
6569
  position: "top" | "bottom" | "both";
5636
- mode: "modal" | "form" | "inline";
6570
+ mode: "form" | "modal" | "inline";
5637
6571
  formView?: string | undefined;
5638
6572
  } | undefined;
5639
6573
  showRecordCount?: boolean | undefined;
@@ -5719,7 +6653,7 @@ declare const SysMetadataHistoryObject: Omit<{
5719
6653
  actions?: {
5720
6654
  name: string;
5721
6655
  label: string;
5722
- type: "url" | "flow" | "api" | "script" | "modal" | "form";
6656
+ type: "url" | "form" | "flow" | "api" | "script" | "modal";
5723
6657
  refreshAfter: boolean;
5724
6658
  objectName?: string | undefined;
5725
6659
  icon?: string | undefined;
@@ -5787,7 +6721,18 @@ declare const SysMetadataHistoryObject: Omit<{
5787
6721
  } | undefined;
5788
6722
  shortcut?: string | undefined;
5789
6723
  bulkEnabled?: boolean | undefined;
5790
- aiExposed?: boolean | undefined;
6724
+ ai?: {
6725
+ exposed: boolean;
6726
+ description?: string | undefined;
6727
+ category?: "action" | "data" | "flow" | "integration" | "vector_search" | "analytics" | "utility" | undefined;
6728
+ paramHints?: Record<string, {
6729
+ description?: string | undefined;
6730
+ enum?: (string | number)[] | undefined;
6731
+ examples?: unknown[] | undefined;
6732
+ }> | undefined;
6733
+ outputSchema?: Record<string, unknown> | undefined;
6734
+ requiresConfirmation?: boolean | undefined;
6735
+ } | undefined;
5791
6736
  recordIdParam?: string | undefined;
5792
6737
  recordIdField?: string | undefined;
5793
6738
  bodyShape?: "flat" | {
@@ -5869,6 +6814,13 @@ declare const SysMetadataHistoryObject: Omit<{
5869
6814
  readonly referenceFilters?: string[] | undefined;
5870
6815
  readonly writeRequiresMasterRead?: boolean | undefined;
5871
6816
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
6817
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
6818
+ readonly inlineTitle?: string | undefined;
6819
+ readonly inlineColumns?: any[] | undefined;
6820
+ readonly inlineAmountField?: string | undefined;
6821
+ readonly relatedList?: boolean | undefined;
6822
+ readonly relatedListTitle?: string | undefined;
6823
+ readonly relatedListColumns?: any[] | undefined;
5872
6824
  readonly expression?: {
5873
6825
  dialect: "cel" | "js" | "cron" | "template";
5874
6826
  source?: string | undefined;
@@ -5882,6 +6834,7 @@ declare const SysMetadataHistoryObject: Omit<{
5882
6834
  object: string;
5883
6835
  field: string;
5884
6836
  function: "min" | "max" | "count" | "sum" | "avg";
6837
+ relationshipField?: string | undefined;
5885
6838
  } | undefined;
5886
6839
  readonly language?: string | undefined;
5887
6840
  readonly lineNumbers?: boolean | undefined;
@@ -5976,6 +6929,33 @@ declare const SysMetadataHistoryObject: Omit<{
5976
6929
  threshold: number;
5977
6930
  } | undefined;
5978
6931
  } | undefined;
6932
+ readonly visibleWhen?: {
6933
+ dialect: "cel" | "js" | "cron" | "template";
6934
+ source?: string | undefined;
6935
+ ast?: unknown;
6936
+ meta?: {
6937
+ rationale?: string | undefined;
6938
+ generatedBy?: string | undefined;
6939
+ } | undefined;
6940
+ } | undefined;
6941
+ readonly readonlyWhen?: {
6942
+ dialect: "cel" | "js" | "cron" | "template";
6943
+ source?: string | undefined;
6944
+ ast?: unknown;
6945
+ meta?: {
6946
+ rationale?: string | undefined;
6947
+ generatedBy?: string | undefined;
6948
+ } | undefined;
6949
+ } | undefined;
6950
+ readonly requiredWhen?: {
6951
+ dialect: "cel" | "js" | "cron" | "template";
6952
+ source?: string | undefined;
6953
+ ast?: unknown;
6954
+ meta?: {
6955
+ rationale?: string | undefined;
6956
+ generatedBy?: string | undefined;
6957
+ } | undefined;
6958
+ } | undefined;
5979
6959
  readonly conditionalRequired?: {
5980
6960
  dialect: "cel" | "js" | "cron" | "template";
5981
6961
  source?: string | undefined;
@@ -6045,6 +7025,13 @@ declare const SysMetadataHistoryObject: Omit<{
6045
7025
  readonly referenceFilters?: string[] | undefined;
6046
7026
  readonly writeRequiresMasterRead?: boolean | undefined;
6047
7027
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
7028
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
7029
+ readonly inlineTitle?: string | undefined;
7030
+ readonly inlineColumns?: any[] | undefined;
7031
+ readonly inlineAmountField?: string | undefined;
7032
+ readonly relatedList?: boolean | undefined;
7033
+ readonly relatedListTitle?: string | undefined;
7034
+ readonly relatedListColumns?: any[] | undefined;
6048
7035
  readonly expression?: {
6049
7036
  dialect: "cel" | "js" | "cron" | "template";
6050
7037
  source?: string | undefined;
@@ -6058,6 +7045,7 @@ declare const SysMetadataHistoryObject: Omit<{
6058
7045
  object: string;
6059
7046
  field: string;
6060
7047
  function: "min" | "max" | "count" | "sum" | "avg";
7048
+ relationshipField?: string | undefined;
6061
7049
  } | undefined;
6062
7050
  readonly language?: string | undefined;
6063
7051
  readonly lineNumbers?: boolean | undefined;
@@ -6152,6 +7140,33 @@ declare const SysMetadataHistoryObject: Omit<{
6152
7140
  threshold: number;
6153
7141
  } | undefined;
6154
7142
  } | undefined;
7143
+ readonly visibleWhen?: {
7144
+ dialect: "cel" | "js" | "cron" | "template";
7145
+ source?: string | undefined;
7146
+ ast?: unknown;
7147
+ meta?: {
7148
+ rationale?: string | undefined;
7149
+ generatedBy?: string | undefined;
7150
+ } | undefined;
7151
+ } | undefined;
7152
+ readonly readonlyWhen?: {
7153
+ dialect: "cel" | "js" | "cron" | "template";
7154
+ source?: string | undefined;
7155
+ ast?: unknown;
7156
+ meta?: {
7157
+ rationale?: string | undefined;
7158
+ generatedBy?: string | undefined;
7159
+ } | undefined;
7160
+ } | undefined;
7161
+ readonly requiredWhen?: {
7162
+ dialect: "cel" | "js" | "cron" | "template";
7163
+ source?: string | undefined;
7164
+ ast?: unknown;
7165
+ meta?: {
7166
+ rationale?: string | undefined;
7167
+ generatedBy?: string | undefined;
7168
+ } | undefined;
7169
+ } | undefined;
6155
7170
  readonly conditionalRequired?: {
6156
7171
  dialect: "cel" | "js" | "cron" | "template";
6157
7172
  source?: string | undefined;
@@ -6221,6 +7236,13 @@ declare const SysMetadataHistoryObject: Omit<{
6221
7236
  readonly referenceFilters?: string[] | undefined;
6222
7237
  readonly writeRequiresMasterRead?: boolean | undefined;
6223
7238
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
7239
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
7240
+ readonly inlineTitle?: string | undefined;
7241
+ readonly inlineColumns?: any[] | undefined;
7242
+ readonly inlineAmountField?: string | undefined;
7243
+ readonly relatedList?: boolean | undefined;
7244
+ readonly relatedListTitle?: string | undefined;
7245
+ readonly relatedListColumns?: any[] | undefined;
6224
7246
  readonly expression?: {
6225
7247
  dialect: "cel" | "js" | "cron" | "template";
6226
7248
  source?: string | undefined;
@@ -6234,6 +7256,7 @@ declare const SysMetadataHistoryObject: Omit<{
6234
7256
  object: string;
6235
7257
  field: string;
6236
7258
  function: "min" | "max" | "count" | "sum" | "avg";
7259
+ relationshipField?: string | undefined;
6237
7260
  } | undefined;
6238
7261
  readonly language?: string | undefined;
6239
7262
  readonly lineNumbers?: boolean | undefined;
@@ -6328,6 +7351,33 @@ declare const SysMetadataHistoryObject: Omit<{
6328
7351
  threshold: number;
6329
7352
  } | undefined;
6330
7353
  } | undefined;
7354
+ readonly visibleWhen?: {
7355
+ dialect: "cel" | "js" | "cron" | "template";
7356
+ source?: string | undefined;
7357
+ ast?: unknown;
7358
+ meta?: {
7359
+ rationale?: string | undefined;
7360
+ generatedBy?: string | undefined;
7361
+ } | undefined;
7362
+ } | undefined;
7363
+ readonly readonlyWhen?: {
7364
+ dialect: "cel" | "js" | "cron" | "template";
7365
+ source?: string | undefined;
7366
+ ast?: unknown;
7367
+ meta?: {
7368
+ rationale?: string | undefined;
7369
+ generatedBy?: string | undefined;
7370
+ } | undefined;
7371
+ } | undefined;
7372
+ readonly requiredWhen?: {
7373
+ dialect: "cel" | "js" | "cron" | "template";
7374
+ source?: string | undefined;
7375
+ ast?: unknown;
7376
+ meta?: {
7377
+ rationale?: string | undefined;
7378
+ generatedBy?: string | undefined;
7379
+ } | undefined;
7380
+ } | undefined;
6331
7381
  readonly conditionalRequired?: {
6332
7382
  dialect: "cel" | "js" | "cron" | "template";
6333
7383
  source?: string | undefined;
@@ -6397,6 +7447,13 @@ declare const SysMetadataHistoryObject: Omit<{
6397
7447
  readonly referenceFilters?: string[] | undefined;
6398
7448
  readonly writeRequiresMasterRead?: boolean | undefined;
6399
7449
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
7450
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
7451
+ readonly inlineTitle?: string | undefined;
7452
+ readonly inlineColumns?: any[] | undefined;
7453
+ readonly inlineAmountField?: string | undefined;
7454
+ readonly relatedList?: boolean | undefined;
7455
+ readonly relatedListTitle?: string | undefined;
7456
+ readonly relatedListColumns?: any[] | undefined;
6400
7457
  readonly expression?: {
6401
7458
  dialect: "cel" | "js" | "cron" | "template";
6402
7459
  source?: string | undefined;
@@ -6410,6 +7467,7 @@ declare const SysMetadataHistoryObject: Omit<{
6410
7467
  object: string;
6411
7468
  field: string;
6412
7469
  function: "min" | "max" | "count" | "sum" | "avg";
7470
+ relationshipField?: string | undefined;
6413
7471
  } | undefined;
6414
7472
  readonly language?: string | undefined;
6415
7473
  readonly lineNumbers?: boolean | undefined;
@@ -6504,6 +7562,33 @@ declare const SysMetadataHistoryObject: Omit<{
6504
7562
  threshold: number;
6505
7563
  } | undefined;
6506
7564
  } | undefined;
7565
+ readonly visibleWhen?: {
7566
+ dialect: "cel" | "js" | "cron" | "template";
7567
+ source?: string | undefined;
7568
+ ast?: unknown;
7569
+ meta?: {
7570
+ rationale?: string | undefined;
7571
+ generatedBy?: string | undefined;
7572
+ } | undefined;
7573
+ } | undefined;
7574
+ readonly readonlyWhen?: {
7575
+ dialect: "cel" | "js" | "cron" | "template";
7576
+ source?: string | undefined;
7577
+ ast?: unknown;
7578
+ meta?: {
7579
+ rationale?: string | undefined;
7580
+ generatedBy?: string | undefined;
7581
+ } | undefined;
7582
+ } | undefined;
7583
+ readonly requiredWhen?: {
7584
+ dialect: "cel" | "js" | "cron" | "template";
7585
+ source?: string | undefined;
7586
+ ast?: unknown;
7587
+ meta?: {
7588
+ rationale?: string | undefined;
7589
+ generatedBy?: string | undefined;
7590
+ } | undefined;
7591
+ } | undefined;
6507
7592
  readonly conditionalRequired?: {
6508
7593
  dialect: "cel" | "js" | "cron" | "template";
6509
7594
  source?: string | undefined;
@@ -6573,6 +7658,13 @@ declare const SysMetadataHistoryObject: Omit<{
6573
7658
  readonly referenceFilters?: string[] | undefined;
6574
7659
  readonly writeRequiresMasterRead?: boolean | undefined;
6575
7660
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
7661
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
7662
+ readonly inlineTitle?: string | undefined;
7663
+ readonly inlineColumns?: any[] | undefined;
7664
+ readonly inlineAmountField?: string | undefined;
7665
+ readonly relatedList?: boolean | undefined;
7666
+ readonly relatedListTitle?: string | undefined;
7667
+ readonly relatedListColumns?: any[] | undefined;
6576
7668
  readonly expression?: {
6577
7669
  dialect: "cel" | "js" | "cron" | "template";
6578
7670
  source?: string | undefined;
@@ -6586,6 +7678,7 @@ declare const SysMetadataHistoryObject: Omit<{
6586
7678
  object: string;
6587
7679
  field: string;
6588
7680
  function: "min" | "max" | "count" | "sum" | "avg";
7681
+ relationshipField?: string | undefined;
6589
7682
  } | undefined;
6590
7683
  readonly language?: string | undefined;
6591
7684
  readonly lineNumbers?: boolean | undefined;
@@ -6680,6 +7773,33 @@ declare const SysMetadataHistoryObject: Omit<{
6680
7773
  threshold: number;
6681
7774
  } | undefined;
6682
7775
  } | undefined;
7776
+ readonly visibleWhen?: {
7777
+ dialect: "cel" | "js" | "cron" | "template";
7778
+ source?: string | undefined;
7779
+ ast?: unknown;
7780
+ meta?: {
7781
+ rationale?: string | undefined;
7782
+ generatedBy?: string | undefined;
7783
+ } | undefined;
7784
+ } | undefined;
7785
+ readonly readonlyWhen?: {
7786
+ dialect: "cel" | "js" | "cron" | "template";
7787
+ source?: string | undefined;
7788
+ ast?: unknown;
7789
+ meta?: {
7790
+ rationale?: string | undefined;
7791
+ generatedBy?: string | undefined;
7792
+ } | undefined;
7793
+ } | undefined;
7794
+ readonly requiredWhen?: {
7795
+ dialect: "cel" | "js" | "cron" | "template";
7796
+ source?: string | undefined;
7797
+ ast?: unknown;
7798
+ meta?: {
7799
+ rationale?: string | undefined;
7800
+ generatedBy?: string | undefined;
7801
+ } | undefined;
7802
+ } | undefined;
6683
7803
  readonly conditionalRequired?: {
6684
7804
  dialect: "cel" | "js" | "cron" | "template";
6685
7805
  source?: string | undefined;
@@ -6749,6 +7869,13 @@ declare const SysMetadataHistoryObject: Omit<{
6749
7869
  readonly referenceFilters?: string[] | undefined;
6750
7870
  readonly writeRequiresMasterRead?: boolean | undefined;
6751
7871
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
7872
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
7873
+ readonly inlineTitle?: string | undefined;
7874
+ readonly inlineColumns?: any[] | undefined;
7875
+ readonly inlineAmountField?: string | undefined;
7876
+ readonly relatedList?: boolean | undefined;
7877
+ readonly relatedListTitle?: string | undefined;
7878
+ readonly relatedListColumns?: any[] | undefined;
6752
7879
  readonly expression?: {
6753
7880
  dialect: "cel" | "js" | "cron" | "template";
6754
7881
  source?: string | undefined;
@@ -6762,6 +7889,7 @@ declare const SysMetadataHistoryObject: Omit<{
6762
7889
  object: string;
6763
7890
  field: string;
6764
7891
  function: "min" | "max" | "count" | "sum" | "avg";
7892
+ relationshipField?: string | undefined;
6765
7893
  } | undefined;
6766
7894
  readonly language?: string | undefined;
6767
7895
  readonly lineNumbers?: boolean | undefined;
@@ -6856,6 +7984,33 @@ declare const SysMetadataHistoryObject: Omit<{
6856
7984
  threshold: number;
6857
7985
  } | undefined;
6858
7986
  } | undefined;
7987
+ readonly visibleWhen?: {
7988
+ dialect: "cel" | "js" | "cron" | "template";
7989
+ source?: string | undefined;
7990
+ ast?: unknown;
7991
+ meta?: {
7992
+ rationale?: string | undefined;
7993
+ generatedBy?: string | undefined;
7994
+ } | undefined;
7995
+ } | undefined;
7996
+ readonly readonlyWhen?: {
7997
+ dialect: "cel" | "js" | "cron" | "template";
7998
+ source?: string | undefined;
7999
+ ast?: unknown;
8000
+ meta?: {
8001
+ rationale?: string | undefined;
8002
+ generatedBy?: string | undefined;
8003
+ } | undefined;
8004
+ } | undefined;
8005
+ readonly requiredWhen?: {
8006
+ dialect: "cel" | "js" | "cron" | "template";
8007
+ source?: string | undefined;
8008
+ ast?: unknown;
8009
+ meta?: {
8010
+ rationale?: string | undefined;
8011
+ generatedBy?: string | undefined;
8012
+ } | undefined;
8013
+ } | undefined;
6859
8014
  readonly conditionalRequired?: {
6860
8015
  dialect: "cel" | "js" | "cron" | "template";
6861
8016
  source?: string | undefined;
@@ -6928,6 +8083,13 @@ declare const SysMetadataHistoryObject: Omit<{
6928
8083
  readonly referenceFilters?: string[] | undefined;
6929
8084
  readonly writeRequiresMasterRead?: boolean | undefined;
6930
8085
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
8086
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
8087
+ readonly inlineTitle?: string | undefined;
8088
+ readonly inlineColumns?: any[] | undefined;
8089
+ readonly inlineAmountField?: string | undefined;
8090
+ readonly relatedList?: boolean | undefined;
8091
+ readonly relatedListTitle?: string | undefined;
8092
+ readonly relatedListColumns?: any[] | undefined;
6931
8093
  readonly expression?: {
6932
8094
  dialect: "cel" | "js" | "cron" | "template";
6933
8095
  source?: string | undefined;
@@ -6941,6 +8103,7 @@ declare const SysMetadataHistoryObject: Omit<{
6941
8103
  object: string;
6942
8104
  field: string;
6943
8105
  function: "min" | "max" | "count" | "sum" | "avg";
8106
+ relationshipField?: string | undefined;
6944
8107
  } | undefined;
6945
8108
  readonly language?: string | undefined;
6946
8109
  readonly lineNumbers?: boolean | undefined;
@@ -7035,6 +8198,33 @@ declare const SysMetadataHistoryObject: Omit<{
7035
8198
  threshold: number;
7036
8199
  } | undefined;
7037
8200
  } | undefined;
8201
+ readonly visibleWhen?: {
8202
+ dialect: "cel" | "js" | "cron" | "template";
8203
+ source?: string | undefined;
8204
+ ast?: unknown;
8205
+ meta?: {
8206
+ rationale?: string | undefined;
8207
+ generatedBy?: string | undefined;
8208
+ } | undefined;
8209
+ } | undefined;
8210
+ readonly readonlyWhen?: {
8211
+ dialect: "cel" | "js" | "cron" | "template";
8212
+ source?: string | undefined;
8213
+ ast?: unknown;
8214
+ meta?: {
8215
+ rationale?: string | undefined;
8216
+ generatedBy?: string | undefined;
8217
+ } | undefined;
8218
+ } | undefined;
8219
+ readonly requiredWhen?: {
8220
+ dialect: "cel" | "js" | "cron" | "template";
8221
+ source?: string | undefined;
8222
+ ast?: unknown;
8223
+ meta?: {
8224
+ rationale?: string | undefined;
8225
+ generatedBy?: string | undefined;
8226
+ } | undefined;
8227
+ } | undefined;
7038
8228
  readonly conditionalRequired?: {
7039
8229
  dialect: "cel" | "js" | "cron" | "template";
7040
8230
  source?: string | undefined;
@@ -7104,6 +8294,13 @@ declare const SysMetadataHistoryObject: Omit<{
7104
8294
  readonly referenceFilters?: string[] | undefined;
7105
8295
  readonly writeRequiresMasterRead?: boolean | undefined;
7106
8296
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
8297
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
8298
+ readonly inlineTitle?: string | undefined;
8299
+ readonly inlineColumns?: any[] | undefined;
8300
+ readonly inlineAmountField?: string | undefined;
8301
+ readonly relatedList?: boolean | undefined;
8302
+ readonly relatedListTitle?: string | undefined;
8303
+ readonly relatedListColumns?: any[] | undefined;
7107
8304
  readonly expression?: {
7108
8305
  dialect: "cel" | "js" | "cron" | "template";
7109
8306
  source?: string | undefined;
@@ -7117,6 +8314,7 @@ declare const SysMetadataHistoryObject: Omit<{
7117
8314
  object: string;
7118
8315
  field: string;
7119
8316
  function: "min" | "max" | "count" | "sum" | "avg";
8317
+ relationshipField?: string | undefined;
7120
8318
  } | undefined;
7121
8319
  readonly language?: string | undefined;
7122
8320
  readonly lineNumbers?: boolean | undefined;
@@ -7211,6 +8409,33 @@ declare const SysMetadataHistoryObject: Omit<{
7211
8409
  threshold: number;
7212
8410
  } | undefined;
7213
8411
  } | undefined;
8412
+ readonly visibleWhen?: {
8413
+ dialect: "cel" | "js" | "cron" | "template";
8414
+ source?: string | undefined;
8415
+ ast?: unknown;
8416
+ meta?: {
8417
+ rationale?: string | undefined;
8418
+ generatedBy?: string | undefined;
8419
+ } | undefined;
8420
+ } | undefined;
8421
+ readonly readonlyWhen?: {
8422
+ dialect: "cel" | "js" | "cron" | "template";
8423
+ source?: string | undefined;
8424
+ ast?: unknown;
8425
+ meta?: {
8426
+ rationale?: string | undefined;
8427
+ generatedBy?: string | undefined;
8428
+ } | undefined;
8429
+ } | undefined;
8430
+ readonly requiredWhen?: {
8431
+ dialect: "cel" | "js" | "cron" | "template";
8432
+ source?: string | undefined;
8433
+ ast?: unknown;
8434
+ meta?: {
8435
+ rationale?: string | undefined;
8436
+ generatedBy?: string | undefined;
8437
+ } | undefined;
8438
+ } | undefined;
7214
8439
  readonly conditionalRequired?: {
7215
8440
  dialect: "cel" | "js" | "cron" | "template";
7216
8441
  source?: string | undefined;
@@ -7280,6 +8505,13 @@ declare const SysMetadataHistoryObject: Omit<{
7280
8505
  readonly referenceFilters?: string[] | undefined;
7281
8506
  readonly writeRequiresMasterRead?: boolean | undefined;
7282
8507
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
8508
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
8509
+ readonly inlineTitle?: string | undefined;
8510
+ readonly inlineColumns?: any[] | undefined;
8511
+ readonly inlineAmountField?: string | undefined;
8512
+ readonly relatedList?: boolean | undefined;
8513
+ readonly relatedListTitle?: string | undefined;
8514
+ readonly relatedListColumns?: any[] | undefined;
7283
8515
  readonly expression?: {
7284
8516
  dialect: "cel" | "js" | "cron" | "template";
7285
8517
  source?: string | undefined;
@@ -7293,6 +8525,7 @@ declare const SysMetadataHistoryObject: Omit<{
7293
8525
  object: string;
7294
8526
  field: string;
7295
8527
  function: "min" | "max" | "count" | "sum" | "avg";
8528
+ relationshipField?: string | undefined;
7296
8529
  } | undefined;
7297
8530
  readonly language?: string | undefined;
7298
8531
  readonly lineNumbers?: boolean | undefined;
@@ -7387,6 +8620,33 @@ declare const SysMetadataHistoryObject: Omit<{
7387
8620
  threshold: number;
7388
8621
  } | undefined;
7389
8622
  } | undefined;
8623
+ readonly visibleWhen?: {
8624
+ dialect: "cel" | "js" | "cron" | "template";
8625
+ source?: string | undefined;
8626
+ ast?: unknown;
8627
+ meta?: {
8628
+ rationale?: string | undefined;
8629
+ generatedBy?: string | undefined;
8630
+ } | undefined;
8631
+ } | undefined;
8632
+ readonly readonlyWhen?: {
8633
+ dialect: "cel" | "js" | "cron" | "template";
8634
+ source?: string | undefined;
8635
+ ast?: unknown;
8636
+ meta?: {
8637
+ rationale?: string | undefined;
8638
+ generatedBy?: string | undefined;
8639
+ } | undefined;
8640
+ } | undefined;
8641
+ readonly requiredWhen?: {
8642
+ dialect: "cel" | "js" | "cron" | "template";
8643
+ source?: string | undefined;
8644
+ ast?: unknown;
8645
+ meta?: {
8646
+ rationale?: string | undefined;
8647
+ generatedBy?: string | undefined;
8648
+ } | undefined;
8649
+ } | undefined;
7390
8650
  readonly conditionalRequired?: {
7391
8651
  dialect: "cel" | "js" | "cron" | "template";
7392
8652
  source?: string | undefined;
@@ -7456,6 +8716,13 @@ declare const SysMetadataHistoryObject: Omit<{
7456
8716
  readonly referenceFilters?: string[] | undefined;
7457
8717
  readonly writeRequiresMasterRead?: boolean | undefined;
7458
8718
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
8719
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
8720
+ readonly inlineTitle?: string | undefined;
8721
+ readonly inlineColumns?: any[] | undefined;
8722
+ readonly inlineAmountField?: string | undefined;
8723
+ readonly relatedList?: boolean | undefined;
8724
+ readonly relatedListTitle?: string | undefined;
8725
+ readonly relatedListColumns?: any[] | undefined;
7459
8726
  readonly expression?: {
7460
8727
  dialect: "cel" | "js" | "cron" | "template";
7461
8728
  source?: string | undefined;
@@ -7469,6 +8736,7 @@ declare const SysMetadataHistoryObject: Omit<{
7469
8736
  object: string;
7470
8737
  field: string;
7471
8738
  function: "min" | "max" | "count" | "sum" | "avg";
8739
+ relationshipField?: string | undefined;
7472
8740
  } | undefined;
7473
8741
  readonly language?: string | undefined;
7474
8742
  readonly lineNumbers?: boolean | undefined;
@@ -7563,6 +8831,33 @@ declare const SysMetadataHistoryObject: Omit<{
7563
8831
  threshold: number;
7564
8832
  } | undefined;
7565
8833
  } | undefined;
8834
+ readonly visibleWhen?: {
8835
+ dialect: "cel" | "js" | "cron" | "template";
8836
+ source?: string | undefined;
8837
+ ast?: unknown;
8838
+ meta?: {
8839
+ rationale?: string | undefined;
8840
+ generatedBy?: string | undefined;
8841
+ } | undefined;
8842
+ } | undefined;
8843
+ readonly readonlyWhen?: {
8844
+ dialect: "cel" | "js" | "cron" | "template";
8845
+ source?: string | undefined;
8846
+ ast?: unknown;
8847
+ meta?: {
8848
+ rationale?: string | undefined;
8849
+ generatedBy?: string | undefined;
8850
+ } | undefined;
8851
+ } | undefined;
8852
+ readonly requiredWhen?: {
8853
+ dialect: "cel" | "js" | "cron" | "template";
8854
+ source?: string | undefined;
8855
+ ast?: unknown;
8856
+ meta?: {
8857
+ rationale?: string | undefined;
8858
+ generatedBy?: string | undefined;
8859
+ } | undefined;
8860
+ } | undefined;
7566
8861
  readonly conditionalRequired?: {
7567
8862
  dialect: "cel" | "js" | "cron" | "template";
7568
8863
  source?: string | undefined;
@@ -7636,6 +8931,13 @@ declare const SysMetadataHistoryObject: Omit<{
7636
8931
  readonly referenceFilters?: string[] | undefined;
7637
8932
  readonly writeRequiresMasterRead?: boolean | undefined;
7638
8933
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
8934
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
8935
+ readonly inlineTitle?: string | undefined;
8936
+ readonly inlineColumns?: any[] | undefined;
8937
+ readonly inlineAmountField?: string | undefined;
8938
+ readonly relatedList?: boolean | undefined;
8939
+ readonly relatedListTitle?: string | undefined;
8940
+ readonly relatedListColumns?: any[] | undefined;
7639
8941
  readonly expression?: {
7640
8942
  dialect: "cel" | "js" | "cron" | "template";
7641
8943
  source?: string | undefined;
@@ -7649,6 +8951,7 @@ declare const SysMetadataHistoryObject: Omit<{
7649
8951
  object: string;
7650
8952
  field: string;
7651
8953
  function: "min" | "max" | "count" | "sum" | "avg";
8954
+ relationshipField?: string | undefined;
7652
8955
  } | undefined;
7653
8956
  readonly language?: string | undefined;
7654
8957
  readonly lineNumbers?: boolean | undefined;
@@ -7743,6 +9046,33 @@ declare const SysMetadataHistoryObject: Omit<{
7743
9046
  threshold: number;
7744
9047
  } | undefined;
7745
9048
  } | undefined;
9049
+ readonly visibleWhen?: {
9050
+ dialect: "cel" | "js" | "cron" | "template";
9051
+ source?: string | undefined;
9052
+ ast?: unknown;
9053
+ meta?: {
9054
+ rationale?: string | undefined;
9055
+ generatedBy?: string | undefined;
9056
+ } | undefined;
9057
+ } | undefined;
9058
+ readonly readonlyWhen?: {
9059
+ dialect: "cel" | "js" | "cron" | "template";
9060
+ source?: string | undefined;
9061
+ ast?: unknown;
9062
+ meta?: {
9063
+ rationale?: string | undefined;
9064
+ generatedBy?: string | undefined;
9065
+ } | undefined;
9066
+ } | undefined;
9067
+ readonly requiredWhen?: {
9068
+ dialect: "cel" | "js" | "cron" | "template";
9069
+ source?: string | undefined;
9070
+ ast?: unknown;
9071
+ meta?: {
9072
+ rationale?: string | undefined;
9073
+ generatedBy?: string | undefined;
9074
+ } | undefined;
9075
+ } | undefined;
7746
9076
  readonly conditionalRequired?: {
7747
9077
  dialect: "cel" | "js" | "cron" | "template";
7748
9078
  source?: string | undefined;
@@ -7812,6 +9142,13 @@ declare const SysMetadataHistoryObject: Omit<{
7812
9142
  readonly referenceFilters?: string[] | undefined;
7813
9143
  readonly writeRequiresMasterRead?: boolean | undefined;
7814
9144
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
9145
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
9146
+ readonly inlineTitle?: string | undefined;
9147
+ readonly inlineColumns?: any[] | undefined;
9148
+ readonly inlineAmountField?: string | undefined;
9149
+ readonly relatedList?: boolean | undefined;
9150
+ readonly relatedListTitle?: string | undefined;
9151
+ readonly relatedListColumns?: any[] | undefined;
7815
9152
  readonly expression?: {
7816
9153
  dialect: "cel" | "js" | "cron" | "template";
7817
9154
  source?: string | undefined;
@@ -7825,6 +9162,7 @@ declare const SysMetadataHistoryObject: Omit<{
7825
9162
  object: string;
7826
9163
  field: string;
7827
9164
  function: "min" | "max" | "count" | "sum" | "avg";
9165
+ relationshipField?: string | undefined;
7828
9166
  } | undefined;
7829
9167
  readonly language?: string | undefined;
7830
9168
  readonly lineNumbers?: boolean | undefined;
@@ -7919,6 +9257,33 @@ declare const SysMetadataHistoryObject: Omit<{
7919
9257
  threshold: number;
7920
9258
  } | undefined;
7921
9259
  } | undefined;
9260
+ readonly visibleWhen?: {
9261
+ dialect: "cel" | "js" | "cron" | "template";
9262
+ source?: string | undefined;
9263
+ ast?: unknown;
9264
+ meta?: {
9265
+ rationale?: string | undefined;
9266
+ generatedBy?: string | undefined;
9267
+ } | undefined;
9268
+ } | undefined;
9269
+ readonly readonlyWhen?: {
9270
+ dialect: "cel" | "js" | "cron" | "template";
9271
+ source?: string | undefined;
9272
+ ast?: unknown;
9273
+ meta?: {
9274
+ rationale?: string | undefined;
9275
+ generatedBy?: string | undefined;
9276
+ } | undefined;
9277
+ } | undefined;
9278
+ readonly requiredWhen?: {
9279
+ dialect: "cel" | "js" | "cron" | "template";
9280
+ source?: string | undefined;
9281
+ ast?: unknown;
9282
+ meta?: {
9283
+ rationale?: string | undefined;
9284
+ generatedBy?: string | undefined;
9285
+ } | undefined;
9286
+ } | undefined;
7922
9287
  readonly conditionalRequired?: {
7923
9288
  dialect: "cel" | "js" | "cron" | "template";
7924
9289
  source?: string | undefined;
@@ -7988,6 +9353,13 @@ declare const SysMetadataHistoryObject: Omit<{
7988
9353
  readonly referenceFilters?: string[] | undefined;
7989
9354
  readonly writeRequiresMasterRead?: boolean | undefined;
7990
9355
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
9356
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
9357
+ readonly inlineTitle?: string | undefined;
9358
+ readonly inlineColumns?: any[] | undefined;
9359
+ readonly inlineAmountField?: string | undefined;
9360
+ readonly relatedList?: boolean | undefined;
9361
+ readonly relatedListTitle?: string | undefined;
9362
+ readonly relatedListColumns?: any[] | undefined;
7991
9363
  readonly expression?: {
7992
9364
  dialect: "cel" | "js" | "cron" | "template";
7993
9365
  source?: string | undefined;
@@ -8001,6 +9373,7 @@ declare const SysMetadataHistoryObject: Omit<{
8001
9373
  object: string;
8002
9374
  field: string;
8003
9375
  function: "min" | "max" | "count" | "sum" | "avg";
9376
+ relationshipField?: string | undefined;
8004
9377
  } | undefined;
8005
9378
  readonly language?: string | undefined;
8006
9379
  readonly lineNumbers?: boolean | undefined;
@@ -8095,6 +9468,33 @@ declare const SysMetadataHistoryObject: Omit<{
8095
9468
  threshold: number;
8096
9469
  } | undefined;
8097
9470
  } | undefined;
9471
+ readonly visibleWhen?: {
9472
+ dialect: "cel" | "js" | "cron" | "template";
9473
+ source?: string | undefined;
9474
+ ast?: unknown;
9475
+ meta?: {
9476
+ rationale?: string | undefined;
9477
+ generatedBy?: string | undefined;
9478
+ } | undefined;
9479
+ } | undefined;
9480
+ readonly readonlyWhen?: {
9481
+ dialect: "cel" | "js" | "cron" | "template";
9482
+ source?: string | undefined;
9483
+ ast?: unknown;
9484
+ meta?: {
9485
+ rationale?: string | undefined;
9486
+ generatedBy?: string | undefined;
9487
+ } | undefined;
9488
+ } | undefined;
9489
+ readonly requiredWhen?: {
9490
+ dialect: "cel" | "js" | "cron" | "template";
9491
+ source?: string | undefined;
9492
+ ast?: unknown;
9493
+ meta?: {
9494
+ rationale?: string | undefined;
9495
+ generatedBy?: string | undefined;
9496
+ } | undefined;
9497
+ } | undefined;
8098
9498
  readonly conditionalRequired?: {
8099
9499
  dialect: "cel" | "js" | "cron" | "template";
8100
9500
  source?: string | undefined;
@@ -8164,6 +9564,13 @@ declare const SysMetadataHistoryObject: Omit<{
8164
9564
  readonly referenceFilters?: string[] | undefined;
8165
9565
  readonly writeRequiresMasterRead?: boolean | undefined;
8166
9566
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
9567
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
9568
+ readonly inlineTitle?: string | undefined;
9569
+ readonly inlineColumns?: any[] | undefined;
9570
+ readonly inlineAmountField?: string | undefined;
9571
+ readonly relatedList?: boolean | undefined;
9572
+ readonly relatedListTitle?: string | undefined;
9573
+ readonly relatedListColumns?: any[] | undefined;
8167
9574
  readonly expression?: {
8168
9575
  dialect: "cel" | "js" | "cron" | "template";
8169
9576
  source?: string | undefined;
@@ -8177,6 +9584,7 @@ declare const SysMetadataHistoryObject: Omit<{
8177
9584
  object: string;
8178
9585
  field: string;
8179
9586
  function: "min" | "max" | "count" | "sum" | "avg";
9587
+ relationshipField?: string | undefined;
8180
9588
  } | undefined;
8181
9589
  readonly language?: string | undefined;
8182
9590
  readonly lineNumbers?: boolean | undefined;
@@ -8271,6 +9679,33 @@ declare const SysMetadataHistoryObject: Omit<{
8271
9679
  threshold: number;
8272
9680
  } | undefined;
8273
9681
  } | undefined;
9682
+ readonly visibleWhen?: {
9683
+ dialect: "cel" | "js" | "cron" | "template";
9684
+ source?: string | undefined;
9685
+ ast?: unknown;
9686
+ meta?: {
9687
+ rationale?: string | undefined;
9688
+ generatedBy?: string | undefined;
9689
+ } | undefined;
9690
+ } | undefined;
9691
+ readonly readonlyWhen?: {
9692
+ dialect: "cel" | "js" | "cron" | "template";
9693
+ source?: string | undefined;
9694
+ ast?: unknown;
9695
+ meta?: {
9696
+ rationale?: string | undefined;
9697
+ generatedBy?: string | undefined;
9698
+ } | undefined;
9699
+ } | undefined;
9700
+ readonly requiredWhen?: {
9701
+ dialect: "cel" | "js" | "cron" | "template";
9702
+ source?: string | undefined;
9703
+ ast?: unknown;
9704
+ meta?: {
9705
+ rationale?: string | undefined;
9706
+ generatedBy?: string | undefined;
9707
+ } | undefined;
9708
+ } | undefined;
8274
9709
  readonly conditionalRequired?: {
8275
9710
  dialect: "cel" | "js" | "cron" | "template";
8276
9711
  source?: string | undefined;
@@ -8383,6 +9818,13 @@ declare const SysMetadataAuditObject: Omit<{
8383
9818
  reference?: string | undefined;
8384
9819
  referenceFilters?: string[] | undefined;
8385
9820
  writeRequiresMasterRead?: boolean | undefined;
9821
+ inlineEdit?: boolean | "grid" | "form" | undefined;
9822
+ inlineTitle?: string | undefined;
9823
+ inlineColumns?: any[] | undefined;
9824
+ inlineAmountField?: string | undefined;
9825
+ relatedList?: boolean | undefined;
9826
+ relatedListTitle?: string | undefined;
9827
+ relatedListColumns?: any[] | undefined;
8386
9828
  expression?: {
8387
9829
  dialect: "cel" | "js" | "cron" | "template";
8388
9830
  source?: string | undefined;
@@ -8404,6 +9846,7 @@ declare const SysMetadataAuditObject: Omit<{
8404
9846
  object: string;
8405
9847
  field: string;
8406
9848
  function: "min" | "max" | "count" | "sum" | "avg";
9849
+ relationshipField?: string | undefined;
8407
9850
  } | undefined;
8408
9851
  language?: string | undefined;
8409
9852
  theme?: string | undefined;
@@ -8517,6 +9960,57 @@ declare const SysMetadataAuditObject: Omit<{
8517
9960
  } | undefined;
8518
9961
  } | undefined;
8519
9962
  group?: string | undefined;
9963
+ visibleWhen?: {
9964
+ dialect: "cel" | "js" | "cron" | "template";
9965
+ source?: string | undefined;
9966
+ ast?: unknown;
9967
+ meta?: {
9968
+ rationale?: string | undefined;
9969
+ generatedBy?: string | undefined;
9970
+ } | undefined;
9971
+ } | {
9972
+ dialect: "cel" | "js" | "cron" | "template";
9973
+ source?: string | undefined;
9974
+ ast?: unknown;
9975
+ meta?: {
9976
+ rationale?: string | undefined;
9977
+ generatedBy?: string | undefined;
9978
+ } | undefined;
9979
+ } | undefined;
9980
+ readonlyWhen?: {
9981
+ dialect: "cel" | "js" | "cron" | "template";
9982
+ source?: string | undefined;
9983
+ ast?: unknown;
9984
+ meta?: {
9985
+ rationale?: string | undefined;
9986
+ generatedBy?: string | undefined;
9987
+ } | undefined;
9988
+ } | {
9989
+ dialect: "cel" | "js" | "cron" | "template";
9990
+ source?: string | undefined;
9991
+ ast?: unknown;
9992
+ meta?: {
9993
+ rationale?: string | undefined;
9994
+ generatedBy?: string | undefined;
9995
+ } | undefined;
9996
+ } | undefined;
9997
+ requiredWhen?: {
9998
+ dialect: "cel" | "js" | "cron" | "template";
9999
+ source?: string | undefined;
10000
+ ast?: unknown;
10001
+ meta?: {
10002
+ rationale?: string | undefined;
10003
+ generatedBy?: string | undefined;
10004
+ } | undefined;
10005
+ } | {
10006
+ dialect: "cel" | "js" | "cron" | "template";
10007
+ source?: string | undefined;
10008
+ ast?: unknown;
10009
+ meta?: {
10010
+ rationale?: string | undefined;
10011
+ generatedBy?: string | undefined;
10012
+ } | undefined;
10013
+ } | undefined;
8520
10014
  conditionalRequired?: {
8521
10015
  dialect: "cel" | "js" | "cron" | "template";
8522
10016
  source?: string | undefined;
@@ -8658,7 +10152,7 @@ declare const SysMetadataAuditObject: Omit<{
8658
10152
  } | undefined;
8659
10153
  compactLayout?: string[] | undefined;
8660
10154
  listViews?: Record<string, {
8661
- type: "map" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "grid";
10155
+ type: "map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart";
8662
10156
  columns: string[] | {
8663
10157
  field: string;
8664
10158
  label?: string | undefined;
@@ -8827,7 +10321,7 @@ declare const SysMetadataAuditObject: Omit<{
8827
10321
  } | undefined;
8828
10322
  appearance?: {
8829
10323
  showDescription: boolean;
8830
- allowedVisualizations?: ("map" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "grid")[] | undefined;
10324
+ allowedVisualizations?: ("map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline")[] | undefined;
8831
10325
  } | undefined;
8832
10326
  tabs?: {
8833
10327
  name: string;
@@ -8847,7 +10341,7 @@ declare const SysMetadataAuditObject: Omit<{
8847
10341
  addRecord?: {
8848
10342
  enabled: boolean;
8849
10343
  position: "top" | "bottom" | "both";
8850
- mode: "modal" | "form" | "inline";
10344
+ mode: "form" | "modal" | "inline";
8851
10345
  formView?: string | undefined;
8852
10346
  } | undefined;
8853
10347
  showRecordCount?: boolean | undefined;
@@ -8933,7 +10427,7 @@ declare const SysMetadataAuditObject: Omit<{
8933
10427
  actions?: {
8934
10428
  name: string;
8935
10429
  label: string;
8936
- type: "url" | "flow" | "api" | "script" | "modal" | "form";
10430
+ type: "url" | "form" | "flow" | "api" | "script" | "modal";
8937
10431
  refreshAfter: boolean;
8938
10432
  objectName?: string | undefined;
8939
10433
  icon?: string | undefined;
@@ -9001,7 +10495,18 @@ declare const SysMetadataAuditObject: Omit<{
9001
10495
  } | undefined;
9002
10496
  shortcut?: string | undefined;
9003
10497
  bulkEnabled?: boolean | undefined;
9004
- aiExposed?: boolean | undefined;
10498
+ ai?: {
10499
+ exposed: boolean;
10500
+ description?: string | undefined;
10501
+ category?: "action" | "data" | "flow" | "integration" | "vector_search" | "analytics" | "utility" | undefined;
10502
+ paramHints?: Record<string, {
10503
+ description?: string | undefined;
10504
+ enum?: (string | number)[] | undefined;
10505
+ examples?: unknown[] | undefined;
10506
+ }> | undefined;
10507
+ outputSchema?: Record<string, unknown> | undefined;
10508
+ requiresConfirmation?: boolean | undefined;
10509
+ } | undefined;
9005
10510
  recordIdParam?: string | undefined;
9006
10511
  recordIdField?: string | undefined;
9007
10512
  bodyShape?: "flat" | {
@@ -9083,6 +10588,13 @@ declare const SysMetadataAuditObject: Omit<{
9083
10588
  readonly referenceFilters?: string[] | undefined;
9084
10589
  readonly writeRequiresMasterRead?: boolean | undefined;
9085
10590
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
10591
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
10592
+ readonly inlineTitle?: string | undefined;
10593
+ readonly inlineColumns?: any[] | undefined;
10594
+ readonly inlineAmountField?: string | undefined;
10595
+ readonly relatedList?: boolean | undefined;
10596
+ readonly relatedListTitle?: string | undefined;
10597
+ readonly relatedListColumns?: any[] | undefined;
9086
10598
  readonly expression?: {
9087
10599
  dialect: "cel" | "js" | "cron" | "template";
9088
10600
  source?: string | undefined;
@@ -9096,6 +10608,7 @@ declare const SysMetadataAuditObject: Omit<{
9096
10608
  object: string;
9097
10609
  field: string;
9098
10610
  function: "min" | "max" | "count" | "sum" | "avg";
10611
+ relationshipField?: string | undefined;
9099
10612
  } | undefined;
9100
10613
  readonly language?: string | undefined;
9101
10614
  readonly lineNumbers?: boolean | undefined;
@@ -9190,6 +10703,33 @@ declare const SysMetadataAuditObject: Omit<{
9190
10703
  threshold: number;
9191
10704
  } | undefined;
9192
10705
  } | undefined;
10706
+ readonly visibleWhen?: {
10707
+ dialect: "cel" | "js" | "cron" | "template";
10708
+ source?: string | undefined;
10709
+ ast?: unknown;
10710
+ meta?: {
10711
+ rationale?: string | undefined;
10712
+ generatedBy?: string | undefined;
10713
+ } | undefined;
10714
+ } | undefined;
10715
+ readonly readonlyWhen?: {
10716
+ dialect: "cel" | "js" | "cron" | "template";
10717
+ source?: string | undefined;
10718
+ ast?: unknown;
10719
+ meta?: {
10720
+ rationale?: string | undefined;
10721
+ generatedBy?: string | undefined;
10722
+ } | undefined;
10723
+ } | undefined;
10724
+ readonly requiredWhen?: {
10725
+ dialect: "cel" | "js" | "cron" | "template";
10726
+ source?: string | undefined;
10727
+ ast?: unknown;
10728
+ meta?: {
10729
+ rationale?: string | undefined;
10730
+ generatedBy?: string | undefined;
10731
+ } | undefined;
10732
+ } | undefined;
9193
10733
  readonly conditionalRequired?: {
9194
10734
  dialect: "cel" | "js" | "cron" | "template";
9195
10735
  source?: string | undefined;
@@ -9259,6 +10799,13 @@ declare const SysMetadataAuditObject: Omit<{
9259
10799
  readonly referenceFilters?: string[] | undefined;
9260
10800
  readonly writeRequiresMasterRead?: boolean | undefined;
9261
10801
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
10802
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
10803
+ readonly inlineTitle?: string | undefined;
10804
+ readonly inlineColumns?: any[] | undefined;
10805
+ readonly inlineAmountField?: string | undefined;
10806
+ readonly relatedList?: boolean | undefined;
10807
+ readonly relatedListTitle?: string | undefined;
10808
+ readonly relatedListColumns?: any[] | undefined;
9262
10809
  readonly expression?: {
9263
10810
  dialect: "cel" | "js" | "cron" | "template";
9264
10811
  source?: string | undefined;
@@ -9272,6 +10819,7 @@ declare const SysMetadataAuditObject: Omit<{
9272
10819
  object: string;
9273
10820
  field: string;
9274
10821
  function: "min" | "max" | "count" | "sum" | "avg";
10822
+ relationshipField?: string | undefined;
9275
10823
  } | undefined;
9276
10824
  readonly language?: string | undefined;
9277
10825
  readonly lineNumbers?: boolean | undefined;
@@ -9366,6 +10914,33 @@ declare const SysMetadataAuditObject: Omit<{
9366
10914
  threshold: number;
9367
10915
  } | undefined;
9368
10916
  } | undefined;
10917
+ readonly visibleWhen?: {
10918
+ dialect: "cel" | "js" | "cron" | "template";
10919
+ source?: string | undefined;
10920
+ ast?: unknown;
10921
+ meta?: {
10922
+ rationale?: string | undefined;
10923
+ generatedBy?: string | undefined;
10924
+ } | undefined;
10925
+ } | undefined;
10926
+ readonly readonlyWhen?: {
10927
+ dialect: "cel" | "js" | "cron" | "template";
10928
+ source?: string | undefined;
10929
+ ast?: unknown;
10930
+ meta?: {
10931
+ rationale?: string | undefined;
10932
+ generatedBy?: string | undefined;
10933
+ } | undefined;
10934
+ } | undefined;
10935
+ readonly requiredWhen?: {
10936
+ dialect: "cel" | "js" | "cron" | "template";
10937
+ source?: string | undefined;
10938
+ ast?: unknown;
10939
+ meta?: {
10940
+ rationale?: string | undefined;
10941
+ generatedBy?: string | undefined;
10942
+ } | undefined;
10943
+ } | undefined;
9369
10944
  readonly conditionalRequired?: {
9370
10945
  dialect: "cel" | "js" | "cron" | "template";
9371
10946
  source?: string | undefined;
@@ -9435,6 +11010,13 @@ declare const SysMetadataAuditObject: Omit<{
9435
11010
  readonly referenceFilters?: string[] | undefined;
9436
11011
  readonly writeRequiresMasterRead?: boolean | undefined;
9437
11012
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
11013
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
11014
+ readonly inlineTitle?: string | undefined;
11015
+ readonly inlineColumns?: any[] | undefined;
11016
+ readonly inlineAmountField?: string | undefined;
11017
+ readonly relatedList?: boolean | undefined;
11018
+ readonly relatedListTitle?: string | undefined;
11019
+ readonly relatedListColumns?: any[] | undefined;
9438
11020
  readonly expression?: {
9439
11021
  dialect: "cel" | "js" | "cron" | "template";
9440
11022
  source?: string | undefined;
@@ -9448,6 +11030,7 @@ declare const SysMetadataAuditObject: Omit<{
9448
11030
  object: string;
9449
11031
  field: string;
9450
11032
  function: "min" | "max" | "count" | "sum" | "avg";
11033
+ relationshipField?: string | undefined;
9451
11034
  } | undefined;
9452
11035
  readonly language?: string | undefined;
9453
11036
  readonly lineNumbers?: boolean | undefined;
@@ -9534,12 +11117,39 @@ declare const SysMetadataAuditObject: Omit<{
9534
11117
  ttl: number;
9535
11118
  invalidateOn: string[];
9536
11119
  } | undefined;
9537
- readonly dataQuality?: {
9538
- uniqueness: boolean;
9539
- completeness: number;
9540
- accuracy?: {
9541
- source: string;
9542
- threshold: number;
11120
+ readonly dataQuality?: {
11121
+ uniqueness: boolean;
11122
+ completeness: number;
11123
+ accuracy?: {
11124
+ source: string;
11125
+ threshold: number;
11126
+ } | undefined;
11127
+ } | undefined;
11128
+ readonly visibleWhen?: {
11129
+ dialect: "cel" | "js" | "cron" | "template";
11130
+ source?: string | undefined;
11131
+ ast?: unknown;
11132
+ meta?: {
11133
+ rationale?: string | undefined;
11134
+ generatedBy?: string | undefined;
11135
+ } | undefined;
11136
+ } | undefined;
11137
+ readonly readonlyWhen?: {
11138
+ dialect: "cel" | "js" | "cron" | "template";
11139
+ source?: string | undefined;
11140
+ ast?: unknown;
11141
+ meta?: {
11142
+ rationale?: string | undefined;
11143
+ generatedBy?: string | undefined;
11144
+ } | undefined;
11145
+ } | undefined;
11146
+ readonly requiredWhen?: {
11147
+ dialect: "cel" | "js" | "cron" | "template";
11148
+ source?: string | undefined;
11149
+ ast?: unknown;
11150
+ meta?: {
11151
+ rationale?: string | undefined;
11152
+ generatedBy?: string | undefined;
9543
11153
  } | undefined;
9544
11154
  } | undefined;
9545
11155
  readonly conditionalRequired?: {
@@ -9611,6 +11221,13 @@ declare const SysMetadataAuditObject: Omit<{
9611
11221
  readonly referenceFilters?: string[] | undefined;
9612
11222
  readonly writeRequiresMasterRead?: boolean | undefined;
9613
11223
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
11224
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
11225
+ readonly inlineTitle?: string | undefined;
11226
+ readonly inlineColumns?: any[] | undefined;
11227
+ readonly inlineAmountField?: string | undefined;
11228
+ readonly relatedList?: boolean | undefined;
11229
+ readonly relatedListTitle?: string | undefined;
11230
+ readonly relatedListColumns?: any[] | undefined;
9614
11231
  readonly expression?: {
9615
11232
  dialect: "cel" | "js" | "cron" | "template";
9616
11233
  source?: string | undefined;
@@ -9624,6 +11241,7 @@ declare const SysMetadataAuditObject: Omit<{
9624
11241
  object: string;
9625
11242
  field: string;
9626
11243
  function: "min" | "max" | "count" | "sum" | "avg";
11244
+ relationshipField?: string | undefined;
9627
11245
  } | undefined;
9628
11246
  readonly language?: string | undefined;
9629
11247
  readonly lineNumbers?: boolean | undefined;
@@ -9718,6 +11336,33 @@ declare const SysMetadataAuditObject: Omit<{
9718
11336
  threshold: number;
9719
11337
  } | undefined;
9720
11338
  } | undefined;
11339
+ readonly visibleWhen?: {
11340
+ dialect: "cel" | "js" | "cron" | "template";
11341
+ source?: string | undefined;
11342
+ ast?: unknown;
11343
+ meta?: {
11344
+ rationale?: string | undefined;
11345
+ generatedBy?: string | undefined;
11346
+ } | undefined;
11347
+ } | undefined;
11348
+ readonly readonlyWhen?: {
11349
+ dialect: "cel" | "js" | "cron" | "template";
11350
+ source?: string | undefined;
11351
+ ast?: unknown;
11352
+ meta?: {
11353
+ rationale?: string | undefined;
11354
+ generatedBy?: string | undefined;
11355
+ } | undefined;
11356
+ } | undefined;
11357
+ readonly requiredWhen?: {
11358
+ dialect: "cel" | "js" | "cron" | "template";
11359
+ source?: string | undefined;
11360
+ ast?: unknown;
11361
+ meta?: {
11362
+ rationale?: string | undefined;
11363
+ generatedBy?: string | undefined;
11364
+ } | undefined;
11365
+ } | undefined;
9721
11366
  readonly conditionalRequired?: {
9722
11367
  dialect: "cel" | "js" | "cron" | "template";
9723
11368
  source?: string | undefined;
@@ -9787,6 +11432,13 @@ declare const SysMetadataAuditObject: Omit<{
9787
11432
  readonly referenceFilters?: string[] | undefined;
9788
11433
  readonly writeRequiresMasterRead?: boolean | undefined;
9789
11434
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
11435
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
11436
+ readonly inlineTitle?: string | undefined;
11437
+ readonly inlineColumns?: any[] | undefined;
11438
+ readonly inlineAmountField?: string | undefined;
11439
+ readonly relatedList?: boolean | undefined;
11440
+ readonly relatedListTitle?: string | undefined;
11441
+ readonly relatedListColumns?: any[] | undefined;
9790
11442
  readonly expression?: {
9791
11443
  dialect: "cel" | "js" | "cron" | "template";
9792
11444
  source?: string | undefined;
@@ -9800,6 +11452,7 @@ declare const SysMetadataAuditObject: Omit<{
9800
11452
  object: string;
9801
11453
  field: string;
9802
11454
  function: "min" | "max" | "count" | "sum" | "avg";
11455
+ relationshipField?: string | undefined;
9803
11456
  } | undefined;
9804
11457
  readonly language?: string | undefined;
9805
11458
  readonly lineNumbers?: boolean | undefined;
@@ -9894,6 +11547,33 @@ declare const SysMetadataAuditObject: Omit<{
9894
11547
  threshold: number;
9895
11548
  } | undefined;
9896
11549
  } | undefined;
11550
+ readonly visibleWhen?: {
11551
+ dialect: "cel" | "js" | "cron" | "template";
11552
+ source?: string | undefined;
11553
+ ast?: unknown;
11554
+ meta?: {
11555
+ rationale?: string | undefined;
11556
+ generatedBy?: string | undefined;
11557
+ } | undefined;
11558
+ } | undefined;
11559
+ readonly readonlyWhen?: {
11560
+ dialect: "cel" | "js" | "cron" | "template";
11561
+ source?: string | undefined;
11562
+ ast?: unknown;
11563
+ meta?: {
11564
+ rationale?: string | undefined;
11565
+ generatedBy?: string | undefined;
11566
+ } | undefined;
11567
+ } | undefined;
11568
+ readonly requiredWhen?: {
11569
+ dialect: "cel" | "js" | "cron" | "template";
11570
+ source?: string | undefined;
11571
+ ast?: unknown;
11572
+ meta?: {
11573
+ rationale?: string | undefined;
11574
+ generatedBy?: string | undefined;
11575
+ } | undefined;
11576
+ } | undefined;
9897
11577
  readonly conditionalRequired?: {
9898
11578
  dialect: "cel" | "js" | "cron" | "template";
9899
11579
  source?: string | undefined;
@@ -9963,6 +11643,13 @@ declare const SysMetadataAuditObject: Omit<{
9963
11643
  readonly referenceFilters?: string[] | undefined;
9964
11644
  readonly writeRequiresMasterRead?: boolean | undefined;
9965
11645
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
11646
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
11647
+ readonly inlineTitle?: string | undefined;
11648
+ readonly inlineColumns?: any[] | undefined;
11649
+ readonly inlineAmountField?: string | undefined;
11650
+ readonly relatedList?: boolean | undefined;
11651
+ readonly relatedListTitle?: string | undefined;
11652
+ readonly relatedListColumns?: any[] | undefined;
9966
11653
  readonly expression?: {
9967
11654
  dialect: "cel" | "js" | "cron" | "template";
9968
11655
  source?: string | undefined;
@@ -9976,6 +11663,7 @@ declare const SysMetadataAuditObject: Omit<{
9976
11663
  object: string;
9977
11664
  field: string;
9978
11665
  function: "min" | "max" | "count" | "sum" | "avg";
11666
+ relationshipField?: string | undefined;
9979
11667
  } | undefined;
9980
11668
  readonly language?: string | undefined;
9981
11669
  readonly lineNumbers?: boolean | undefined;
@@ -10070,6 +11758,33 @@ declare const SysMetadataAuditObject: Omit<{
10070
11758
  threshold: number;
10071
11759
  } | undefined;
10072
11760
  } | undefined;
11761
+ readonly visibleWhen?: {
11762
+ dialect: "cel" | "js" | "cron" | "template";
11763
+ source?: string | undefined;
11764
+ ast?: unknown;
11765
+ meta?: {
11766
+ rationale?: string | undefined;
11767
+ generatedBy?: string | undefined;
11768
+ } | undefined;
11769
+ } | undefined;
11770
+ readonly readonlyWhen?: {
11771
+ dialect: "cel" | "js" | "cron" | "template";
11772
+ source?: string | undefined;
11773
+ ast?: unknown;
11774
+ meta?: {
11775
+ rationale?: string | undefined;
11776
+ generatedBy?: string | undefined;
11777
+ } | undefined;
11778
+ } | undefined;
11779
+ readonly requiredWhen?: {
11780
+ dialect: "cel" | "js" | "cron" | "template";
11781
+ source?: string | undefined;
11782
+ ast?: unknown;
11783
+ meta?: {
11784
+ rationale?: string | undefined;
11785
+ generatedBy?: string | undefined;
11786
+ } | undefined;
11787
+ } | undefined;
10073
11788
  readonly conditionalRequired?: {
10074
11789
  dialect: "cel" | "js" | "cron" | "template";
10075
11790
  source?: string | undefined;
@@ -10139,6 +11854,13 @@ declare const SysMetadataAuditObject: Omit<{
10139
11854
  readonly referenceFilters?: string[] | undefined;
10140
11855
  readonly writeRequiresMasterRead?: boolean | undefined;
10141
11856
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
11857
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
11858
+ readonly inlineTitle?: string | undefined;
11859
+ readonly inlineColumns?: any[] | undefined;
11860
+ readonly inlineAmountField?: string | undefined;
11861
+ readonly relatedList?: boolean | undefined;
11862
+ readonly relatedListTitle?: string | undefined;
11863
+ readonly relatedListColumns?: any[] | undefined;
10142
11864
  readonly expression?: {
10143
11865
  dialect: "cel" | "js" | "cron" | "template";
10144
11866
  source?: string | undefined;
@@ -10152,6 +11874,7 @@ declare const SysMetadataAuditObject: Omit<{
10152
11874
  object: string;
10153
11875
  field: string;
10154
11876
  function: "min" | "max" | "count" | "sum" | "avg";
11877
+ relationshipField?: string | undefined;
10155
11878
  } | undefined;
10156
11879
  readonly language?: string | undefined;
10157
11880
  readonly lineNumbers?: boolean | undefined;
@@ -10246,6 +11969,33 @@ declare const SysMetadataAuditObject: Omit<{
10246
11969
  threshold: number;
10247
11970
  } | undefined;
10248
11971
  } | undefined;
11972
+ readonly visibleWhen?: {
11973
+ dialect: "cel" | "js" | "cron" | "template";
11974
+ source?: string | undefined;
11975
+ ast?: unknown;
11976
+ meta?: {
11977
+ rationale?: string | undefined;
11978
+ generatedBy?: string | undefined;
11979
+ } | undefined;
11980
+ } | undefined;
11981
+ readonly readonlyWhen?: {
11982
+ dialect: "cel" | "js" | "cron" | "template";
11983
+ source?: string | undefined;
11984
+ ast?: unknown;
11985
+ meta?: {
11986
+ rationale?: string | undefined;
11987
+ generatedBy?: string | undefined;
11988
+ } | undefined;
11989
+ } | undefined;
11990
+ readonly requiredWhen?: {
11991
+ dialect: "cel" | "js" | "cron" | "template";
11992
+ source?: string | undefined;
11993
+ ast?: unknown;
11994
+ meta?: {
11995
+ rationale?: string | undefined;
11996
+ generatedBy?: string | undefined;
11997
+ } | undefined;
11998
+ } | undefined;
10249
11999
  readonly conditionalRequired?: {
10250
12000
  dialect: "cel" | "js" | "cron" | "template";
10251
12001
  source?: string | undefined;
@@ -10315,6 +12065,13 @@ declare const SysMetadataAuditObject: Omit<{
10315
12065
  readonly referenceFilters?: string[] | undefined;
10316
12066
  readonly writeRequiresMasterRead?: boolean | undefined;
10317
12067
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
12068
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
12069
+ readonly inlineTitle?: string | undefined;
12070
+ readonly inlineColumns?: any[] | undefined;
12071
+ readonly inlineAmountField?: string | undefined;
12072
+ readonly relatedList?: boolean | undefined;
12073
+ readonly relatedListTitle?: string | undefined;
12074
+ readonly relatedListColumns?: any[] | undefined;
10318
12075
  readonly expression?: {
10319
12076
  dialect: "cel" | "js" | "cron" | "template";
10320
12077
  source?: string | undefined;
@@ -10328,6 +12085,7 @@ declare const SysMetadataAuditObject: Omit<{
10328
12085
  object: string;
10329
12086
  field: string;
10330
12087
  function: "min" | "max" | "count" | "sum" | "avg";
12088
+ relationshipField?: string | undefined;
10331
12089
  } | undefined;
10332
12090
  readonly language?: string | undefined;
10333
12091
  readonly lineNumbers?: boolean | undefined;
@@ -10422,6 +12180,33 @@ declare const SysMetadataAuditObject: Omit<{
10422
12180
  threshold: number;
10423
12181
  } | undefined;
10424
12182
  } | undefined;
12183
+ readonly visibleWhen?: {
12184
+ dialect: "cel" | "js" | "cron" | "template";
12185
+ source?: string | undefined;
12186
+ ast?: unknown;
12187
+ meta?: {
12188
+ rationale?: string | undefined;
12189
+ generatedBy?: string | undefined;
12190
+ } | undefined;
12191
+ } | undefined;
12192
+ readonly readonlyWhen?: {
12193
+ dialect: "cel" | "js" | "cron" | "template";
12194
+ source?: string | undefined;
12195
+ ast?: unknown;
12196
+ meta?: {
12197
+ rationale?: string | undefined;
12198
+ generatedBy?: string | undefined;
12199
+ } | undefined;
12200
+ } | undefined;
12201
+ readonly requiredWhen?: {
12202
+ dialect: "cel" | "js" | "cron" | "template";
12203
+ source?: string | undefined;
12204
+ ast?: unknown;
12205
+ meta?: {
12206
+ rationale?: string | undefined;
12207
+ generatedBy?: string | undefined;
12208
+ } | undefined;
12209
+ } | undefined;
10425
12210
  readonly conditionalRequired?: {
10426
12211
  dialect: "cel" | "js" | "cron" | "template";
10427
12212
  source?: string | undefined;
@@ -10491,6 +12276,13 @@ declare const SysMetadataAuditObject: Omit<{
10491
12276
  readonly referenceFilters?: string[] | undefined;
10492
12277
  readonly writeRequiresMasterRead?: boolean | undefined;
10493
12278
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
12279
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
12280
+ readonly inlineTitle?: string | undefined;
12281
+ readonly inlineColumns?: any[] | undefined;
12282
+ readonly inlineAmountField?: string | undefined;
12283
+ readonly relatedList?: boolean | undefined;
12284
+ readonly relatedListTitle?: string | undefined;
12285
+ readonly relatedListColumns?: any[] | undefined;
10494
12286
  readonly expression?: {
10495
12287
  dialect: "cel" | "js" | "cron" | "template";
10496
12288
  source?: string | undefined;
@@ -10504,6 +12296,7 @@ declare const SysMetadataAuditObject: Omit<{
10504
12296
  object: string;
10505
12297
  field: string;
10506
12298
  function: "min" | "max" | "count" | "sum" | "avg";
12299
+ relationshipField?: string | undefined;
10507
12300
  } | undefined;
10508
12301
  readonly language?: string | undefined;
10509
12302
  readonly lineNumbers?: boolean | undefined;
@@ -10598,6 +12391,33 @@ declare const SysMetadataAuditObject: Omit<{
10598
12391
  threshold: number;
10599
12392
  } | undefined;
10600
12393
  } | undefined;
12394
+ readonly visibleWhen?: {
12395
+ dialect: "cel" | "js" | "cron" | "template";
12396
+ source?: string | undefined;
12397
+ ast?: unknown;
12398
+ meta?: {
12399
+ rationale?: string | undefined;
12400
+ generatedBy?: string | undefined;
12401
+ } | undefined;
12402
+ } | undefined;
12403
+ readonly readonlyWhen?: {
12404
+ dialect: "cel" | "js" | "cron" | "template";
12405
+ source?: string | undefined;
12406
+ ast?: unknown;
12407
+ meta?: {
12408
+ rationale?: string | undefined;
12409
+ generatedBy?: string | undefined;
12410
+ } | undefined;
12411
+ } | undefined;
12412
+ readonly requiredWhen?: {
12413
+ dialect: "cel" | "js" | "cron" | "template";
12414
+ source?: string | undefined;
12415
+ ast?: unknown;
12416
+ meta?: {
12417
+ rationale?: string | undefined;
12418
+ generatedBy?: string | undefined;
12419
+ } | undefined;
12420
+ } | undefined;
10601
12421
  readonly conditionalRequired?: {
10602
12422
  dialect: "cel" | "js" | "cron" | "template";
10603
12423
  source?: string | undefined;
@@ -10674,6 +12494,13 @@ declare const SysMetadataAuditObject: Omit<{
10674
12494
  readonly referenceFilters?: string[] | undefined;
10675
12495
  readonly writeRequiresMasterRead?: boolean | undefined;
10676
12496
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
12497
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
12498
+ readonly inlineTitle?: string | undefined;
12499
+ readonly inlineColumns?: any[] | undefined;
12500
+ readonly inlineAmountField?: string | undefined;
12501
+ readonly relatedList?: boolean | undefined;
12502
+ readonly relatedListTitle?: string | undefined;
12503
+ readonly relatedListColumns?: any[] | undefined;
10677
12504
  readonly expression?: {
10678
12505
  dialect: "cel" | "js" | "cron" | "template";
10679
12506
  source?: string | undefined;
@@ -10687,6 +12514,7 @@ declare const SysMetadataAuditObject: Omit<{
10687
12514
  object: string;
10688
12515
  field: string;
10689
12516
  function: "min" | "max" | "count" | "sum" | "avg";
12517
+ relationshipField?: string | undefined;
10690
12518
  } | undefined;
10691
12519
  readonly language?: string | undefined;
10692
12520
  readonly lineNumbers?: boolean | undefined;
@@ -10781,6 +12609,33 @@ declare const SysMetadataAuditObject: Omit<{
10781
12609
  threshold: number;
10782
12610
  } | undefined;
10783
12611
  } | undefined;
12612
+ readonly visibleWhen?: {
12613
+ dialect: "cel" | "js" | "cron" | "template";
12614
+ source?: string | undefined;
12615
+ ast?: unknown;
12616
+ meta?: {
12617
+ rationale?: string | undefined;
12618
+ generatedBy?: string | undefined;
12619
+ } | undefined;
12620
+ } | undefined;
12621
+ readonly readonlyWhen?: {
12622
+ dialect: "cel" | "js" | "cron" | "template";
12623
+ source?: string | undefined;
12624
+ ast?: unknown;
12625
+ meta?: {
12626
+ rationale?: string | undefined;
12627
+ generatedBy?: string | undefined;
12628
+ } | undefined;
12629
+ } | undefined;
12630
+ readonly requiredWhen?: {
12631
+ dialect: "cel" | "js" | "cron" | "template";
12632
+ source?: string | undefined;
12633
+ ast?: unknown;
12634
+ meta?: {
12635
+ rationale?: string | undefined;
12636
+ generatedBy?: string | undefined;
12637
+ } | undefined;
12638
+ } | undefined;
10784
12639
  readonly conditionalRequired?: {
10785
12640
  dialect: "cel" | "js" | "cron" | "template";
10786
12641
  source?: string | undefined;
@@ -10855,6 +12710,13 @@ declare const SysMetadataAuditObject: Omit<{
10855
12710
  readonly referenceFilters?: string[] | undefined;
10856
12711
  readonly writeRequiresMasterRead?: boolean | undefined;
10857
12712
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
12713
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
12714
+ readonly inlineTitle?: string | undefined;
12715
+ readonly inlineColumns?: any[] | undefined;
12716
+ readonly inlineAmountField?: string | undefined;
12717
+ readonly relatedList?: boolean | undefined;
12718
+ readonly relatedListTitle?: string | undefined;
12719
+ readonly relatedListColumns?: any[] | undefined;
10858
12720
  readonly expression?: {
10859
12721
  dialect: "cel" | "js" | "cron" | "template";
10860
12722
  source?: string | undefined;
@@ -10868,6 +12730,7 @@ declare const SysMetadataAuditObject: Omit<{
10868
12730
  object: string;
10869
12731
  field: string;
10870
12732
  function: "min" | "max" | "count" | "sum" | "avg";
12733
+ relationshipField?: string | undefined;
10871
12734
  } | undefined;
10872
12735
  readonly language?: string | undefined;
10873
12736
  readonly lineNumbers?: boolean | undefined;
@@ -10962,6 +12825,33 @@ declare const SysMetadataAuditObject: Omit<{
10962
12825
  threshold: number;
10963
12826
  } | undefined;
10964
12827
  } | undefined;
12828
+ readonly visibleWhen?: {
12829
+ dialect: "cel" | "js" | "cron" | "template";
12830
+ source?: string | undefined;
12831
+ ast?: unknown;
12832
+ meta?: {
12833
+ rationale?: string | undefined;
12834
+ generatedBy?: string | undefined;
12835
+ } | undefined;
12836
+ } | undefined;
12837
+ readonly readonlyWhen?: {
12838
+ dialect: "cel" | "js" | "cron" | "template";
12839
+ source?: string | undefined;
12840
+ ast?: unknown;
12841
+ meta?: {
12842
+ rationale?: string | undefined;
12843
+ generatedBy?: string | undefined;
12844
+ } | undefined;
12845
+ } | undefined;
12846
+ readonly requiredWhen?: {
12847
+ dialect: "cel" | "js" | "cron" | "template";
12848
+ source?: string | undefined;
12849
+ ast?: unknown;
12850
+ meta?: {
12851
+ rationale?: string | undefined;
12852
+ generatedBy?: string | undefined;
12853
+ } | undefined;
12854
+ } | undefined;
10965
12855
  readonly conditionalRequired?: {
10966
12856
  dialect: "cel" | "js" | "cron" | "template";
10967
12857
  source?: string | undefined;
@@ -11031,6 +12921,13 @@ declare const SysMetadataAuditObject: Omit<{
11031
12921
  readonly referenceFilters?: string[] | undefined;
11032
12922
  readonly writeRequiresMasterRead?: boolean | undefined;
11033
12923
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
12924
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
12925
+ readonly inlineTitle?: string | undefined;
12926
+ readonly inlineColumns?: any[] | undefined;
12927
+ readonly inlineAmountField?: string | undefined;
12928
+ readonly relatedList?: boolean | undefined;
12929
+ readonly relatedListTitle?: string | undefined;
12930
+ readonly relatedListColumns?: any[] | undefined;
11034
12931
  readonly expression?: {
11035
12932
  dialect: "cel" | "js" | "cron" | "template";
11036
12933
  source?: string | undefined;
@@ -11044,6 +12941,7 @@ declare const SysMetadataAuditObject: Omit<{
11044
12941
  object: string;
11045
12942
  field: string;
11046
12943
  function: "min" | "max" | "count" | "sum" | "avg";
12944
+ relationshipField?: string | undefined;
11047
12945
  } | undefined;
11048
12946
  readonly language?: string | undefined;
11049
12947
  readonly lineNumbers?: boolean | undefined;
@@ -11138,6 +13036,33 @@ declare const SysMetadataAuditObject: Omit<{
11138
13036
  threshold: number;
11139
13037
  } | undefined;
11140
13038
  } | undefined;
13039
+ readonly visibleWhen?: {
13040
+ dialect: "cel" | "js" | "cron" | "template";
13041
+ source?: string | undefined;
13042
+ ast?: unknown;
13043
+ meta?: {
13044
+ rationale?: string | undefined;
13045
+ generatedBy?: string | undefined;
13046
+ } | undefined;
13047
+ } | undefined;
13048
+ readonly readonlyWhen?: {
13049
+ dialect: "cel" | "js" | "cron" | "template";
13050
+ source?: string | undefined;
13051
+ ast?: unknown;
13052
+ meta?: {
13053
+ rationale?: string | undefined;
13054
+ generatedBy?: string | undefined;
13055
+ } | undefined;
13056
+ } | undefined;
13057
+ readonly requiredWhen?: {
13058
+ dialect: "cel" | "js" | "cron" | "template";
13059
+ source?: string | undefined;
13060
+ ast?: unknown;
13061
+ meta?: {
13062
+ rationale?: string | undefined;
13063
+ generatedBy?: string | undefined;
13064
+ } | undefined;
13065
+ } | undefined;
11141
13066
  readonly conditionalRequired?: {
11142
13067
  dialect: "cel" | "js" | "cron" | "template";
11143
13068
  source?: string | undefined;
@@ -11207,6 +13132,13 @@ declare const SysMetadataAuditObject: Omit<{
11207
13132
  readonly referenceFilters?: string[] | undefined;
11208
13133
  readonly writeRequiresMasterRead?: boolean | undefined;
11209
13134
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
13135
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
13136
+ readonly inlineTitle?: string | undefined;
13137
+ readonly inlineColumns?: any[] | undefined;
13138
+ readonly inlineAmountField?: string | undefined;
13139
+ readonly relatedList?: boolean | undefined;
13140
+ readonly relatedListTitle?: string | undefined;
13141
+ readonly relatedListColumns?: any[] | undefined;
11210
13142
  readonly expression?: {
11211
13143
  dialect: "cel" | "js" | "cron" | "template";
11212
13144
  source?: string | undefined;
@@ -11220,6 +13152,7 @@ declare const SysMetadataAuditObject: Omit<{
11220
13152
  object: string;
11221
13153
  field: string;
11222
13154
  function: "min" | "max" | "count" | "sum" | "avg";
13155
+ relationshipField?: string | undefined;
11223
13156
  } | undefined;
11224
13157
  readonly language?: string | undefined;
11225
13158
  readonly lineNumbers?: boolean | undefined;
@@ -11306,12 +13239,39 @@ declare const SysMetadataAuditObject: Omit<{
11306
13239
  ttl: number;
11307
13240
  invalidateOn: string[];
11308
13241
  } | undefined;
11309
- readonly dataQuality?: {
11310
- uniqueness: boolean;
11311
- completeness: number;
11312
- accuracy?: {
11313
- source: string;
11314
- threshold: number;
13242
+ readonly dataQuality?: {
13243
+ uniqueness: boolean;
13244
+ completeness: number;
13245
+ accuracy?: {
13246
+ source: string;
13247
+ threshold: number;
13248
+ } | undefined;
13249
+ } | undefined;
13250
+ readonly visibleWhen?: {
13251
+ dialect: "cel" | "js" | "cron" | "template";
13252
+ source?: string | undefined;
13253
+ ast?: unknown;
13254
+ meta?: {
13255
+ rationale?: string | undefined;
13256
+ generatedBy?: string | undefined;
13257
+ } | undefined;
13258
+ } | undefined;
13259
+ readonly readonlyWhen?: {
13260
+ dialect: "cel" | "js" | "cron" | "template";
13261
+ source?: string | undefined;
13262
+ ast?: unknown;
13263
+ meta?: {
13264
+ rationale?: string | undefined;
13265
+ generatedBy?: string | undefined;
13266
+ } | undefined;
13267
+ } | undefined;
13268
+ readonly requiredWhen?: {
13269
+ dialect: "cel" | "js" | "cron" | "template";
13270
+ source?: string | undefined;
13271
+ ast?: unknown;
13272
+ meta?: {
13273
+ rationale?: string | undefined;
13274
+ generatedBy?: string | undefined;
11315
13275
  } | undefined;
11316
13276
  } | undefined;
11317
13277
  readonly conditionalRequired?: {
@@ -11383,6 +13343,13 @@ declare const SysMetadataAuditObject: Omit<{
11383
13343
  readonly referenceFilters?: string[] | undefined;
11384
13344
  readonly writeRequiresMasterRead?: boolean | undefined;
11385
13345
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
13346
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
13347
+ readonly inlineTitle?: string | undefined;
13348
+ readonly inlineColumns?: any[] | undefined;
13349
+ readonly inlineAmountField?: string | undefined;
13350
+ readonly relatedList?: boolean | undefined;
13351
+ readonly relatedListTitle?: string | undefined;
13352
+ readonly relatedListColumns?: any[] | undefined;
11386
13353
  readonly expression?: {
11387
13354
  dialect: "cel" | "js" | "cron" | "template";
11388
13355
  source?: string | undefined;
@@ -11396,6 +13363,7 @@ declare const SysMetadataAuditObject: Omit<{
11396
13363
  object: string;
11397
13364
  field: string;
11398
13365
  function: "min" | "max" | "count" | "sum" | "avg";
13366
+ relationshipField?: string | undefined;
11399
13367
  } | undefined;
11400
13368
  readonly language?: string | undefined;
11401
13369
  readonly lineNumbers?: boolean | undefined;
@@ -11490,6 +13458,33 @@ declare const SysMetadataAuditObject: Omit<{
11490
13458
  threshold: number;
11491
13459
  } | undefined;
11492
13460
  } | undefined;
13461
+ readonly visibleWhen?: {
13462
+ dialect: "cel" | "js" | "cron" | "template";
13463
+ source?: string | undefined;
13464
+ ast?: unknown;
13465
+ meta?: {
13466
+ rationale?: string | undefined;
13467
+ generatedBy?: string | undefined;
13468
+ } | undefined;
13469
+ } | undefined;
13470
+ readonly readonlyWhen?: {
13471
+ dialect: "cel" | "js" | "cron" | "template";
13472
+ source?: string | undefined;
13473
+ ast?: unknown;
13474
+ meta?: {
13475
+ rationale?: string | undefined;
13476
+ generatedBy?: string | undefined;
13477
+ } | undefined;
13478
+ } | undefined;
13479
+ readonly requiredWhen?: {
13480
+ dialect: "cel" | "js" | "cron" | "template";
13481
+ source?: string | undefined;
13482
+ ast?: unknown;
13483
+ meta?: {
13484
+ rationale?: string | undefined;
13485
+ generatedBy?: string | undefined;
13486
+ } | undefined;
13487
+ } | undefined;
11493
13488
  readonly conditionalRequired?: {
11494
13489
  dialect: "cel" | "js" | "cron" | "template";
11495
13490
  source?: string | undefined;
@@ -11589,6 +13584,13 @@ declare const SysViewDefinitionObject: Omit<{
11589
13584
  reference?: string | undefined;
11590
13585
  referenceFilters?: string[] | undefined;
11591
13586
  writeRequiresMasterRead?: boolean | undefined;
13587
+ inlineEdit?: boolean | "grid" | "form" | undefined;
13588
+ inlineTitle?: string | undefined;
13589
+ inlineColumns?: any[] | undefined;
13590
+ inlineAmountField?: string | undefined;
13591
+ relatedList?: boolean | undefined;
13592
+ relatedListTitle?: string | undefined;
13593
+ relatedListColumns?: any[] | undefined;
11592
13594
  expression?: {
11593
13595
  dialect: "cel" | "js" | "cron" | "template";
11594
13596
  source?: string | undefined;
@@ -11610,6 +13612,7 @@ declare const SysViewDefinitionObject: Omit<{
11610
13612
  object: string;
11611
13613
  field: string;
11612
13614
  function: "min" | "max" | "count" | "sum" | "avg";
13615
+ relationshipField?: string | undefined;
11613
13616
  } | undefined;
11614
13617
  language?: string | undefined;
11615
13618
  theme?: string | undefined;
@@ -11723,6 +13726,57 @@ declare const SysViewDefinitionObject: Omit<{
11723
13726
  } | undefined;
11724
13727
  } | undefined;
11725
13728
  group?: string | undefined;
13729
+ visibleWhen?: {
13730
+ dialect: "cel" | "js" | "cron" | "template";
13731
+ source?: string | undefined;
13732
+ ast?: unknown;
13733
+ meta?: {
13734
+ rationale?: string | undefined;
13735
+ generatedBy?: string | undefined;
13736
+ } | undefined;
13737
+ } | {
13738
+ dialect: "cel" | "js" | "cron" | "template";
13739
+ source?: string | undefined;
13740
+ ast?: unknown;
13741
+ meta?: {
13742
+ rationale?: string | undefined;
13743
+ generatedBy?: string | undefined;
13744
+ } | undefined;
13745
+ } | undefined;
13746
+ readonlyWhen?: {
13747
+ dialect: "cel" | "js" | "cron" | "template";
13748
+ source?: string | undefined;
13749
+ ast?: unknown;
13750
+ meta?: {
13751
+ rationale?: string | undefined;
13752
+ generatedBy?: string | undefined;
13753
+ } | undefined;
13754
+ } | {
13755
+ dialect: "cel" | "js" | "cron" | "template";
13756
+ source?: string | undefined;
13757
+ ast?: unknown;
13758
+ meta?: {
13759
+ rationale?: string | undefined;
13760
+ generatedBy?: string | undefined;
13761
+ } | undefined;
13762
+ } | undefined;
13763
+ requiredWhen?: {
13764
+ dialect: "cel" | "js" | "cron" | "template";
13765
+ source?: string | undefined;
13766
+ ast?: unknown;
13767
+ meta?: {
13768
+ rationale?: string | undefined;
13769
+ generatedBy?: string | undefined;
13770
+ } | undefined;
13771
+ } | {
13772
+ dialect: "cel" | "js" | "cron" | "template";
13773
+ source?: string | undefined;
13774
+ ast?: unknown;
13775
+ meta?: {
13776
+ rationale?: string | undefined;
13777
+ generatedBy?: string | undefined;
13778
+ } | undefined;
13779
+ } | undefined;
11726
13780
  conditionalRequired?: {
11727
13781
  dialect: "cel" | "js" | "cron" | "template";
11728
13782
  source?: string | undefined;
@@ -11864,7 +13918,7 @@ declare const SysViewDefinitionObject: Omit<{
11864
13918
  } | undefined;
11865
13919
  compactLayout?: string[] | undefined;
11866
13920
  listViews?: Record<string, {
11867
- type: "map" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "grid";
13921
+ type: "map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart";
11868
13922
  columns: string[] | {
11869
13923
  field: string;
11870
13924
  label?: string | undefined;
@@ -12033,7 +14087,7 @@ declare const SysViewDefinitionObject: Omit<{
12033
14087
  } | undefined;
12034
14088
  appearance?: {
12035
14089
  showDescription: boolean;
12036
- allowedVisualizations?: ("map" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "grid")[] | undefined;
14090
+ allowedVisualizations?: ("map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline")[] | undefined;
12037
14091
  } | undefined;
12038
14092
  tabs?: {
12039
14093
  name: string;
@@ -12053,7 +14107,7 @@ declare const SysViewDefinitionObject: Omit<{
12053
14107
  addRecord?: {
12054
14108
  enabled: boolean;
12055
14109
  position: "top" | "bottom" | "both";
12056
- mode: "modal" | "form" | "inline";
14110
+ mode: "form" | "modal" | "inline";
12057
14111
  formView?: string | undefined;
12058
14112
  } | undefined;
12059
14113
  showRecordCount?: boolean | undefined;
@@ -12139,7 +14193,7 @@ declare const SysViewDefinitionObject: Omit<{
12139
14193
  actions?: {
12140
14194
  name: string;
12141
14195
  label: string;
12142
- type: "url" | "flow" | "api" | "script" | "modal" | "form";
14196
+ type: "url" | "form" | "flow" | "api" | "script" | "modal";
12143
14197
  refreshAfter: boolean;
12144
14198
  objectName?: string | undefined;
12145
14199
  icon?: string | undefined;
@@ -12207,7 +14261,18 @@ declare const SysViewDefinitionObject: Omit<{
12207
14261
  } | undefined;
12208
14262
  shortcut?: string | undefined;
12209
14263
  bulkEnabled?: boolean | undefined;
12210
- aiExposed?: boolean | undefined;
14264
+ ai?: {
14265
+ exposed: boolean;
14266
+ description?: string | undefined;
14267
+ category?: "action" | "data" | "flow" | "integration" | "vector_search" | "analytics" | "utility" | undefined;
14268
+ paramHints?: Record<string, {
14269
+ description?: string | undefined;
14270
+ enum?: (string | number)[] | undefined;
14271
+ examples?: unknown[] | undefined;
14272
+ }> | undefined;
14273
+ outputSchema?: Record<string, unknown> | undefined;
14274
+ requiresConfirmation?: boolean | undefined;
14275
+ } | undefined;
12211
14276
  recordIdParam?: string | undefined;
12212
14277
  recordIdField?: string | undefined;
12213
14278
  bodyShape?: "flat" | {
@@ -12288,6 +14353,13 @@ declare const SysViewDefinitionObject: Omit<{
12288
14353
  readonly referenceFilters?: string[] | undefined;
12289
14354
  readonly writeRequiresMasterRead?: boolean | undefined;
12290
14355
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
14356
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
14357
+ readonly inlineTitle?: string | undefined;
14358
+ readonly inlineColumns?: any[] | undefined;
14359
+ readonly inlineAmountField?: string | undefined;
14360
+ readonly relatedList?: boolean | undefined;
14361
+ readonly relatedListTitle?: string | undefined;
14362
+ readonly relatedListColumns?: any[] | undefined;
12291
14363
  readonly expression?: {
12292
14364
  dialect: "cel" | "js" | "cron" | "template";
12293
14365
  source?: string | undefined;
@@ -12301,6 +14373,7 @@ declare const SysViewDefinitionObject: Omit<{
12301
14373
  object: string;
12302
14374
  field: string;
12303
14375
  function: "min" | "max" | "count" | "sum" | "avg";
14376
+ relationshipField?: string | undefined;
12304
14377
  } | undefined;
12305
14378
  readonly language?: string | undefined;
12306
14379
  readonly lineNumbers?: boolean | undefined;
@@ -12395,6 +14468,33 @@ declare const SysViewDefinitionObject: Omit<{
12395
14468
  threshold: number;
12396
14469
  } | undefined;
12397
14470
  } | undefined;
14471
+ readonly visibleWhen?: {
14472
+ dialect: "cel" | "js" | "cron" | "template";
14473
+ source?: string | undefined;
14474
+ ast?: unknown;
14475
+ meta?: {
14476
+ rationale?: string | undefined;
14477
+ generatedBy?: string | undefined;
14478
+ } | undefined;
14479
+ } | undefined;
14480
+ readonly readonlyWhen?: {
14481
+ dialect: "cel" | "js" | "cron" | "template";
14482
+ source?: string | undefined;
14483
+ ast?: unknown;
14484
+ meta?: {
14485
+ rationale?: string | undefined;
14486
+ generatedBy?: string | undefined;
14487
+ } | undefined;
14488
+ } | undefined;
14489
+ readonly requiredWhen?: {
14490
+ dialect: "cel" | "js" | "cron" | "template";
14491
+ source?: string | undefined;
14492
+ ast?: unknown;
14493
+ meta?: {
14494
+ rationale?: string | undefined;
14495
+ generatedBy?: string | undefined;
14496
+ } | undefined;
14497
+ } | undefined;
12398
14498
  readonly conditionalRequired?: {
12399
14499
  dialect: "cel" | "js" | "cron" | "template";
12400
14500
  source?: string | undefined;
@@ -12468,6 +14568,13 @@ declare const SysViewDefinitionObject: Omit<{
12468
14568
  readonly referenceFilters?: string[] | undefined;
12469
14569
  readonly writeRequiresMasterRead?: boolean | undefined;
12470
14570
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
14571
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
14572
+ readonly inlineTitle?: string | undefined;
14573
+ readonly inlineColumns?: any[] | undefined;
14574
+ readonly inlineAmountField?: string | undefined;
14575
+ readonly relatedList?: boolean | undefined;
14576
+ readonly relatedListTitle?: string | undefined;
14577
+ readonly relatedListColumns?: any[] | undefined;
12471
14578
  readonly expression?: {
12472
14579
  dialect: "cel" | "js" | "cron" | "template";
12473
14580
  source?: string | undefined;
@@ -12481,6 +14588,7 @@ declare const SysViewDefinitionObject: Omit<{
12481
14588
  object: string;
12482
14589
  field: string;
12483
14590
  function: "min" | "max" | "count" | "sum" | "avg";
14591
+ relationshipField?: string | undefined;
12484
14592
  } | undefined;
12485
14593
  readonly language?: string | undefined;
12486
14594
  readonly lineNumbers?: boolean | undefined;
@@ -12575,6 +14683,33 @@ declare const SysViewDefinitionObject: Omit<{
12575
14683
  threshold: number;
12576
14684
  } | undefined;
12577
14685
  } | undefined;
14686
+ readonly visibleWhen?: {
14687
+ dialect: "cel" | "js" | "cron" | "template";
14688
+ source?: string | undefined;
14689
+ ast?: unknown;
14690
+ meta?: {
14691
+ rationale?: string | undefined;
14692
+ generatedBy?: string | undefined;
14693
+ } | undefined;
14694
+ } | undefined;
14695
+ readonly readonlyWhen?: {
14696
+ dialect: "cel" | "js" | "cron" | "template";
14697
+ source?: string | undefined;
14698
+ ast?: unknown;
14699
+ meta?: {
14700
+ rationale?: string | undefined;
14701
+ generatedBy?: string | undefined;
14702
+ } | undefined;
14703
+ } | undefined;
14704
+ readonly requiredWhen?: {
14705
+ dialect: "cel" | "js" | "cron" | "template";
14706
+ source?: string | undefined;
14707
+ ast?: unknown;
14708
+ meta?: {
14709
+ rationale?: string | undefined;
14710
+ generatedBy?: string | undefined;
14711
+ } | undefined;
14712
+ } | undefined;
12578
14713
  readonly conditionalRequired?: {
12579
14714
  dialect: "cel" | "js" | "cron" | "template";
12580
14715
  source?: string | undefined;
@@ -12644,6 +14779,13 @@ declare const SysViewDefinitionObject: Omit<{
12644
14779
  readonly referenceFilters?: string[] | undefined;
12645
14780
  readonly writeRequiresMasterRead?: boolean | undefined;
12646
14781
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
14782
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
14783
+ readonly inlineTitle?: string | undefined;
14784
+ readonly inlineColumns?: any[] | undefined;
14785
+ readonly inlineAmountField?: string | undefined;
14786
+ readonly relatedList?: boolean | undefined;
14787
+ readonly relatedListTitle?: string | undefined;
14788
+ readonly relatedListColumns?: any[] | undefined;
12647
14789
  readonly expression?: {
12648
14790
  dialect: "cel" | "js" | "cron" | "template";
12649
14791
  source?: string | undefined;
@@ -12657,6 +14799,7 @@ declare const SysViewDefinitionObject: Omit<{
12657
14799
  object: string;
12658
14800
  field: string;
12659
14801
  function: "min" | "max" | "count" | "sum" | "avg";
14802
+ relationshipField?: string | undefined;
12660
14803
  } | undefined;
12661
14804
  readonly language?: string | undefined;
12662
14805
  readonly lineNumbers?: boolean | undefined;
@@ -12751,6 +14894,33 @@ declare const SysViewDefinitionObject: Omit<{
12751
14894
  threshold: number;
12752
14895
  } | undefined;
12753
14896
  } | undefined;
14897
+ readonly visibleWhen?: {
14898
+ dialect: "cel" | "js" | "cron" | "template";
14899
+ source?: string | undefined;
14900
+ ast?: unknown;
14901
+ meta?: {
14902
+ rationale?: string | undefined;
14903
+ generatedBy?: string | undefined;
14904
+ } | undefined;
14905
+ } | undefined;
14906
+ readonly readonlyWhen?: {
14907
+ dialect: "cel" | "js" | "cron" | "template";
14908
+ source?: string | undefined;
14909
+ ast?: unknown;
14910
+ meta?: {
14911
+ rationale?: string | undefined;
14912
+ generatedBy?: string | undefined;
14913
+ } | undefined;
14914
+ } | undefined;
14915
+ readonly requiredWhen?: {
14916
+ dialect: "cel" | "js" | "cron" | "template";
14917
+ source?: string | undefined;
14918
+ ast?: unknown;
14919
+ meta?: {
14920
+ rationale?: string | undefined;
14921
+ generatedBy?: string | undefined;
14922
+ } | undefined;
14923
+ } | undefined;
12754
14924
  readonly conditionalRequired?: {
12755
14925
  dialect: "cel" | "js" | "cron" | "template";
12756
14926
  source?: string | undefined;
@@ -12820,6 +14990,13 @@ declare const SysViewDefinitionObject: Omit<{
12820
14990
  readonly referenceFilters?: string[] | undefined;
12821
14991
  readonly writeRequiresMasterRead?: boolean | undefined;
12822
14992
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
14993
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
14994
+ readonly inlineTitle?: string | undefined;
14995
+ readonly inlineColumns?: any[] | undefined;
14996
+ readonly inlineAmountField?: string | undefined;
14997
+ readonly relatedList?: boolean | undefined;
14998
+ readonly relatedListTitle?: string | undefined;
14999
+ readonly relatedListColumns?: any[] | undefined;
12823
15000
  readonly expression?: {
12824
15001
  dialect: "cel" | "js" | "cron" | "template";
12825
15002
  source?: string | undefined;
@@ -12833,6 +15010,7 @@ declare const SysViewDefinitionObject: Omit<{
12833
15010
  object: string;
12834
15011
  field: string;
12835
15012
  function: "min" | "max" | "count" | "sum" | "avg";
15013
+ relationshipField?: string | undefined;
12836
15014
  } | undefined;
12837
15015
  readonly language?: string | undefined;
12838
15016
  readonly lineNumbers?: boolean | undefined;
@@ -12927,6 +15105,33 @@ declare const SysViewDefinitionObject: Omit<{
12927
15105
  threshold: number;
12928
15106
  } | undefined;
12929
15107
  } | undefined;
15108
+ readonly visibleWhen?: {
15109
+ dialect: "cel" | "js" | "cron" | "template";
15110
+ source?: string | undefined;
15111
+ ast?: unknown;
15112
+ meta?: {
15113
+ rationale?: string | undefined;
15114
+ generatedBy?: string | undefined;
15115
+ } | undefined;
15116
+ } | undefined;
15117
+ readonly readonlyWhen?: {
15118
+ dialect: "cel" | "js" | "cron" | "template";
15119
+ source?: string | undefined;
15120
+ ast?: unknown;
15121
+ meta?: {
15122
+ rationale?: string | undefined;
15123
+ generatedBy?: string | undefined;
15124
+ } | undefined;
15125
+ } | undefined;
15126
+ readonly requiredWhen?: {
15127
+ dialect: "cel" | "js" | "cron" | "template";
15128
+ source?: string | undefined;
15129
+ ast?: unknown;
15130
+ meta?: {
15131
+ rationale?: string | undefined;
15132
+ generatedBy?: string | undefined;
15133
+ } | undefined;
15134
+ } | undefined;
12930
15135
  readonly conditionalRequired?: {
12931
15136
  dialect: "cel" | "js" | "cron" | "template";
12932
15137
  source?: string | undefined;
@@ -12996,6 +15201,13 @@ declare const SysViewDefinitionObject: Omit<{
12996
15201
  readonly referenceFilters?: string[] | undefined;
12997
15202
  readonly writeRequiresMasterRead?: boolean | undefined;
12998
15203
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
15204
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
15205
+ readonly inlineTitle?: string | undefined;
15206
+ readonly inlineColumns?: any[] | undefined;
15207
+ readonly inlineAmountField?: string | undefined;
15208
+ readonly relatedList?: boolean | undefined;
15209
+ readonly relatedListTitle?: string | undefined;
15210
+ readonly relatedListColumns?: any[] | undefined;
12999
15211
  readonly expression?: {
13000
15212
  dialect: "cel" | "js" | "cron" | "template";
13001
15213
  source?: string | undefined;
@@ -13009,6 +15221,7 @@ declare const SysViewDefinitionObject: Omit<{
13009
15221
  object: string;
13010
15222
  field: string;
13011
15223
  function: "min" | "max" | "count" | "sum" | "avg";
15224
+ relationshipField?: string | undefined;
13012
15225
  } | undefined;
13013
15226
  readonly language?: string | undefined;
13014
15227
  readonly lineNumbers?: boolean | undefined;
@@ -13103,6 +15316,33 @@ declare const SysViewDefinitionObject: Omit<{
13103
15316
  threshold: number;
13104
15317
  } | undefined;
13105
15318
  } | undefined;
15319
+ readonly visibleWhen?: {
15320
+ dialect: "cel" | "js" | "cron" | "template";
15321
+ source?: string | undefined;
15322
+ ast?: unknown;
15323
+ meta?: {
15324
+ rationale?: string | undefined;
15325
+ generatedBy?: string | undefined;
15326
+ } | undefined;
15327
+ } | undefined;
15328
+ readonly readonlyWhen?: {
15329
+ dialect: "cel" | "js" | "cron" | "template";
15330
+ source?: string | undefined;
15331
+ ast?: unknown;
15332
+ meta?: {
15333
+ rationale?: string | undefined;
15334
+ generatedBy?: string | undefined;
15335
+ } | undefined;
15336
+ } | undefined;
15337
+ readonly requiredWhen?: {
15338
+ dialect: "cel" | "js" | "cron" | "template";
15339
+ source?: string | undefined;
15340
+ ast?: unknown;
15341
+ meta?: {
15342
+ rationale?: string | undefined;
15343
+ generatedBy?: string | undefined;
15344
+ } | undefined;
15345
+ } | undefined;
13106
15346
  readonly conditionalRequired?: {
13107
15347
  dialect: "cel" | "js" | "cron" | "template";
13108
15348
  source?: string | undefined;
@@ -13172,6 +15412,13 @@ declare const SysViewDefinitionObject: Omit<{
13172
15412
  readonly referenceFilters?: string[] | undefined;
13173
15413
  readonly writeRequiresMasterRead?: boolean | undefined;
13174
15414
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
15415
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
15416
+ readonly inlineTitle?: string | undefined;
15417
+ readonly inlineColumns?: any[] | undefined;
15418
+ readonly inlineAmountField?: string | undefined;
15419
+ readonly relatedList?: boolean | undefined;
15420
+ readonly relatedListTitle?: string | undefined;
15421
+ readonly relatedListColumns?: any[] | undefined;
13175
15422
  readonly expression?: {
13176
15423
  dialect: "cel" | "js" | "cron" | "template";
13177
15424
  source?: string | undefined;
@@ -13185,6 +15432,7 @@ declare const SysViewDefinitionObject: Omit<{
13185
15432
  object: string;
13186
15433
  field: string;
13187
15434
  function: "min" | "max" | "count" | "sum" | "avg";
15435
+ relationshipField?: string | undefined;
13188
15436
  } | undefined;
13189
15437
  readonly language?: string | undefined;
13190
15438
  readonly lineNumbers?: boolean | undefined;
@@ -13279,6 +15527,33 @@ declare const SysViewDefinitionObject: Omit<{
13279
15527
  threshold: number;
13280
15528
  } | undefined;
13281
15529
  } | undefined;
15530
+ readonly visibleWhen?: {
15531
+ dialect: "cel" | "js" | "cron" | "template";
15532
+ source?: string | undefined;
15533
+ ast?: unknown;
15534
+ meta?: {
15535
+ rationale?: string | undefined;
15536
+ generatedBy?: string | undefined;
15537
+ } | undefined;
15538
+ } | undefined;
15539
+ readonly readonlyWhen?: {
15540
+ dialect: "cel" | "js" | "cron" | "template";
15541
+ source?: string | undefined;
15542
+ ast?: unknown;
15543
+ meta?: {
15544
+ rationale?: string | undefined;
15545
+ generatedBy?: string | undefined;
15546
+ } | undefined;
15547
+ } | undefined;
15548
+ readonly requiredWhen?: {
15549
+ dialect: "cel" | "js" | "cron" | "template";
15550
+ source?: string | undefined;
15551
+ ast?: unknown;
15552
+ meta?: {
15553
+ rationale?: string | undefined;
15554
+ generatedBy?: string | undefined;
15555
+ } | undefined;
15556
+ } | undefined;
13282
15557
  readonly conditionalRequired?: {
13283
15558
  dialect: "cel" | "js" | "cron" | "template";
13284
15559
  source?: string | undefined;
@@ -13348,6 +15623,13 @@ declare const SysViewDefinitionObject: Omit<{
13348
15623
  readonly referenceFilters?: string[] | undefined;
13349
15624
  readonly writeRequiresMasterRead?: boolean | undefined;
13350
15625
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
15626
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
15627
+ readonly inlineTitle?: string | undefined;
15628
+ readonly inlineColumns?: any[] | undefined;
15629
+ readonly inlineAmountField?: string | undefined;
15630
+ readonly relatedList?: boolean | undefined;
15631
+ readonly relatedListTitle?: string | undefined;
15632
+ readonly relatedListColumns?: any[] | undefined;
13351
15633
  readonly expression?: {
13352
15634
  dialect: "cel" | "js" | "cron" | "template";
13353
15635
  source?: string | undefined;
@@ -13361,6 +15643,7 @@ declare const SysViewDefinitionObject: Omit<{
13361
15643
  object: string;
13362
15644
  field: string;
13363
15645
  function: "min" | "max" | "count" | "sum" | "avg";
15646
+ relationshipField?: string | undefined;
13364
15647
  } | undefined;
13365
15648
  readonly language?: string | undefined;
13366
15649
  readonly lineNumbers?: boolean | undefined;
@@ -13447,12 +15730,39 @@ declare const SysViewDefinitionObject: Omit<{
13447
15730
  ttl: number;
13448
15731
  invalidateOn: string[];
13449
15732
  } | undefined;
13450
- readonly dataQuality?: {
13451
- uniqueness: boolean;
13452
- completeness: number;
13453
- accuracy?: {
13454
- source: string;
13455
- threshold: number;
15733
+ readonly dataQuality?: {
15734
+ uniqueness: boolean;
15735
+ completeness: number;
15736
+ accuracy?: {
15737
+ source: string;
15738
+ threshold: number;
15739
+ } | undefined;
15740
+ } | undefined;
15741
+ readonly visibleWhen?: {
15742
+ dialect: "cel" | "js" | "cron" | "template";
15743
+ source?: string | undefined;
15744
+ ast?: unknown;
15745
+ meta?: {
15746
+ rationale?: string | undefined;
15747
+ generatedBy?: string | undefined;
15748
+ } | undefined;
15749
+ } | undefined;
15750
+ readonly readonlyWhen?: {
15751
+ dialect: "cel" | "js" | "cron" | "template";
15752
+ source?: string | undefined;
15753
+ ast?: unknown;
15754
+ meta?: {
15755
+ rationale?: string | undefined;
15756
+ generatedBy?: string | undefined;
15757
+ } | undefined;
15758
+ } | undefined;
15759
+ readonly requiredWhen?: {
15760
+ dialect: "cel" | "js" | "cron" | "template";
15761
+ source?: string | undefined;
15762
+ ast?: unknown;
15763
+ meta?: {
15764
+ rationale?: string | undefined;
15765
+ generatedBy?: string | undefined;
13456
15766
  } | undefined;
13457
15767
  } | undefined;
13458
15768
  readonly conditionalRequired?: {
@@ -13527,6 +15837,13 @@ declare const SysViewDefinitionObject: Omit<{
13527
15837
  readonly referenceFilters?: string[] | undefined;
13528
15838
  readonly writeRequiresMasterRead?: boolean | undefined;
13529
15839
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
15840
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
15841
+ readonly inlineTitle?: string | undefined;
15842
+ readonly inlineColumns?: any[] | undefined;
15843
+ readonly inlineAmountField?: string | undefined;
15844
+ readonly relatedList?: boolean | undefined;
15845
+ readonly relatedListTitle?: string | undefined;
15846
+ readonly relatedListColumns?: any[] | undefined;
13530
15847
  readonly expression?: {
13531
15848
  dialect: "cel" | "js" | "cron" | "template";
13532
15849
  source?: string | undefined;
@@ -13540,6 +15857,7 @@ declare const SysViewDefinitionObject: Omit<{
13540
15857
  object: string;
13541
15858
  field: string;
13542
15859
  function: "min" | "max" | "count" | "sum" | "avg";
15860
+ relationshipField?: string | undefined;
13543
15861
  } | undefined;
13544
15862
  readonly language?: string | undefined;
13545
15863
  readonly lineNumbers?: boolean | undefined;
@@ -13634,6 +15952,33 @@ declare const SysViewDefinitionObject: Omit<{
13634
15952
  threshold: number;
13635
15953
  } | undefined;
13636
15954
  } | undefined;
15955
+ readonly visibleWhen?: {
15956
+ dialect: "cel" | "js" | "cron" | "template";
15957
+ source?: string | undefined;
15958
+ ast?: unknown;
15959
+ meta?: {
15960
+ rationale?: string | undefined;
15961
+ generatedBy?: string | undefined;
15962
+ } | undefined;
15963
+ } | undefined;
15964
+ readonly readonlyWhen?: {
15965
+ dialect: "cel" | "js" | "cron" | "template";
15966
+ source?: string | undefined;
15967
+ ast?: unknown;
15968
+ meta?: {
15969
+ rationale?: string | undefined;
15970
+ generatedBy?: string | undefined;
15971
+ } | undefined;
15972
+ } | undefined;
15973
+ readonly requiredWhen?: {
15974
+ dialect: "cel" | "js" | "cron" | "template";
15975
+ source?: string | undefined;
15976
+ ast?: unknown;
15977
+ meta?: {
15978
+ rationale?: string | undefined;
15979
+ generatedBy?: string | undefined;
15980
+ } | undefined;
15981
+ } | undefined;
13637
15982
  readonly conditionalRequired?: {
13638
15983
  dialect: "cel" | "js" | "cron" | "template";
13639
15984
  source?: string | undefined;
@@ -13703,6 +16048,13 @@ declare const SysViewDefinitionObject: Omit<{
13703
16048
  readonly referenceFilters?: string[] | undefined;
13704
16049
  readonly writeRequiresMasterRead?: boolean | undefined;
13705
16050
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
16051
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
16052
+ readonly inlineTitle?: string | undefined;
16053
+ readonly inlineColumns?: any[] | undefined;
16054
+ readonly inlineAmountField?: string | undefined;
16055
+ readonly relatedList?: boolean | undefined;
16056
+ readonly relatedListTitle?: string | undefined;
16057
+ readonly relatedListColumns?: any[] | undefined;
13706
16058
  readonly expression?: {
13707
16059
  dialect: "cel" | "js" | "cron" | "template";
13708
16060
  source?: string | undefined;
@@ -13716,6 +16068,7 @@ declare const SysViewDefinitionObject: Omit<{
13716
16068
  object: string;
13717
16069
  field: string;
13718
16070
  function: "min" | "max" | "count" | "sum" | "avg";
16071
+ relationshipField?: string | undefined;
13719
16072
  } | undefined;
13720
16073
  readonly language?: string | undefined;
13721
16074
  readonly lineNumbers?: boolean | undefined;
@@ -13810,6 +16163,33 @@ declare const SysViewDefinitionObject: Omit<{
13810
16163
  threshold: number;
13811
16164
  } | undefined;
13812
16165
  } | undefined;
16166
+ readonly visibleWhen?: {
16167
+ dialect: "cel" | "js" | "cron" | "template";
16168
+ source?: string | undefined;
16169
+ ast?: unknown;
16170
+ meta?: {
16171
+ rationale?: string | undefined;
16172
+ generatedBy?: string | undefined;
16173
+ } | undefined;
16174
+ } | undefined;
16175
+ readonly readonlyWhen?: {
16176
+ dialect: "cel" | "js" | "cron" | "template";
16177
+ source?: string | undefined;
16178
+ ast?: unknown;
16179
+ meta?: {
16180
+ rationale?: string | undefined;
16181
+ generatedBy?: string | undefined;
16182
+ } | undefined;
16183
+ } | undefined;
16184
+ readonly requiredWhen?: {
16185
+ dialect: "cel" | "js" | "cron" | "template";
16186
+ source?: string | undefined;
16187
+ ast?: unknown;
16188
+ meta?: {
16189
+ rationale?: string | undefined;
16190
+ generatedBy?: string | undefined;
16191
+ } | undefined;
16192
+ } | undefined;
13813
16193
  readonly conditionalRequired?: {
13814
16194
  dialect: "cel" | "js" | "cron" | "template";
13815
16195
  source?: string | undefined;
@@ -13879,6 +16259,13 @@ declare const SysViewDefinitionObject: Omit<{
13879
16259
  readonly referenceFilters?: string[] | undefined;
13880
16260
  readonly writeRequiresMasterRead?: boolean | undefined;
13881
16261
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
16262
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
16263
+ readonly inlineTitle?: string | undefined;
16264
+ readonly inlineColumns?: any[] | undefined;
16265
+ readonly inlineAmountField?: string | undefined;
16266
+ readonly relatedList?: boolean | undefined;
16267
+ readonly relatedListTitle?: string | undefined;
16268
+ readonly relatedListColumns?: any[] | undefined;
13882
16269
  readonly expression?: {
13883
16270
  dialect: "cel" | "js" | "cron" | "template";
13884
16271
  source?: string | undefined;
@@ -13892,6 +16279,7 @@ declare const SysViewDefinitionObject: Omit<{
13892
16279
  object: string;
13893
16280
  field: string;
13894
16281
  function: "min" | "max" | "count" | "sum" | "avg";
16282
+ relationshipField?: string | undefined;
13895
16283
  } | undefined;
13896
16284
  readonly language?: string | undefined;
13897
16285
  readonly lineNumbers?: boolean | undefined;
@@ -13986,6 +16374,33 @@ declare const SysViewDefinitionObject: Omit<{
13986
16374
  threshold: number;
13987
16375
  } | undefined;
13988
16376
  } | undefined;
16377
+ readonly visibleWhen?: {
16378
+ dialect: "cel" | "js" | "cron" | "template";
16379
+ source?: string | undefined;
16380
+ ast?: unknown;
16381
+ meta?: {
16382
+ rationale?: string | undefined;
16383
+ generatedBy?: string | undefined;
16384
+ } | undefined;
16385
+ } | undefined;
16386
+ readonly readonlyWhen?: {
16387
+ dialect: "cel" | "js" | "cron" | "template";
16388
+ source?: string | undefined;
16389
+ ast?: unknown;
16390
+ meta?: {
16391
+ rationale?: string | undefined;
16392
+ generatedBy?: string | undefined;
16393
+ } | undefined;
16394
+ } | undefined;
16395
+ readonly requiredWhen?: {
16396
+ dialect: "cel" | "js" | "cron" | "template";
16397
+ source?: string | undefined;
16398
+ ast?: unknown;
16399
+ meta?: {
16400
+ rationale?: string | undefined;
16401
+ generatedBy?: string | undefined;
16402
+ } | undefined;
16403
+ } | undefined;
13989
16404
  readonly conditionalRequired?: {
13990
16405
  dialect: "cel" | "js" | "cron" | "template";
13991
16406
  source?: string | undefined;
@@ -14055,6 +16470,13 @@ declare const SysViewDefinitionObject: Omit<{
14055
16470
  readonly referenceFilters?: string[] | undefined;
14056
16471
  readonly writeRequiresMasterRead?: boolean | undefined;
14057
16472
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
16473
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
16474
+ readonly inlineTitle?: string | undefined;
16475
+ readonly inlineColumns?: any[] | undefined;
16476
+ readonly inlineAmountField?: string | undefined;
16477
+ readonly relatedList?: boolean | undefined;
16478
+ readonly relatedListTitle?: string | undefined;
16479
+ readonly relatedListColumns?: any[] | undefined;
14058
16480
  readonly expression?: {
14059
16481
  dialect: "cel" | "js" | "cron" | "template";
14060
16482
  source?: string | undefined;
@@ -14068,6 +16490,7 @@ declare const SysViewDefinitionObject: Omit<{
14068
16490
  object: string;
14069
16491
  field: string;
14070
16492
  function: "min" | "max" | "count" | "sum" | "avg";
16493
+ relationshipField?: string | undefined;
14071
16494
  } | undefined;
14072
16495
  readonly language?: string | undefined;
14073
16496
  readonly lineNumbers?: boolean | undefined;
@@ -14162,6 +16585,33 @@ declare const SysViewDefinitionObject: Omit<{
14162
16585
  threshold: number;
14163
16586
  } | undefined;
14164
16587
  } | undefined;
16588
+ readonly visibleWhen?: {
16589
+ dialect: "cel" | "js" | "cron" | "template";
16590
+ source?: string | undefined;
16591
+ ast?: unknown;
16592
+ meta?: {
16593
+ rationale?: string | undefined;
16594
+ generatedBy?: string | undefined;
16595
+ } | undefined;
16596
+ } | undefined;
16597
+ readonly readonlyWhen?: {
16598
+ dialect: "cel" | "js" | "cron" | "template";
16599
+ source?: string | undefined;
16600
+ ast?: unknown;
16601
+ meta?: {
16602
+ rationale?: string | undefined;
16603
+ generatedBy?: string | undefined;
16604
+ } | undefined;
16605
+ } | undefined;
16606
+ readonly requiredWhen?: {
16607
+ dialect: "cel" | "js" | "cron" | "template";
16608
+ source?: string | undefined;
16609
+ ast?: unknown;
16610
+ meta?: {
16611
+ rationale?: string | undefined;
16612
+ generatedBy?: string | undefined;
16613
+ } | undefined;
16614
+ } | undefined;
14165
16615
  readonly conditionalRequired?: {
14166
16616
  dialect: "cel" | "js" | "cron" | "template";
14167
16617
  source?: string | undefined;
@@ -14231,6 +16681,13 @@ declare const SysViewDefinitionObject: Omit<{
14231
16681
  readonly referenceFilters?: string[] | undefined;
14232
16682
  readonly writeRequiresMasterRead?: boolean | undefined;
14233
16683
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
16684
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
16685
+ readonly inlineTitle?: string | undefined;
16686
+ readonly inlineColumns?: any[] | undefined;
16687
+ readonly inlineAmountField?: string | undefined;
16688
+ readonly relatedList?: boolean | undefined;
16689
+ readonly relatedListTitle?: string | undefined;
16690
+ readonly relatedListColumns?: any[] | undefined;
14234
16691
  readonly expression?: {
14235
16692
  dialect: "cel" | "js" | "cron" | "template";
14236
16693
  source?: string | undefined;
@@ -14244,6 +16701,7 @@ declare const SysViewDefinitionObject: Omit<{
14244
16701
  object: string;
14245
16702
  field: string;
14246
16703
  function: "min" | "max" | "count" | "sum" | "avg";
16704
+ relationshipField?: string | undefined;
14247
16705
  } | undefined;
14248
16706
  readonly language?: string | undefined;
14249
16707
  readonly lineNumbers?: boolean | undefined;
@@ -14338,6 +16796,33 @@ declare const SysViewDefinitionObject: Omit<{
14338
16796
  threshold: number;
14339
16797
  } | undefined;
14340
16798
  } | undefined;
16799
+ readonly visibleWhen?: {
16800
+ dialect: "cel" | "js" | "cron" | "template";
16801
+ source?: string | undefined;
16802
+ ast?: unknown;
16803
+ meta?: {
16804
+ rationale?: string | undefined;
16805
+ generatedBy?: string | undefined;
16806
+ } | undefined;
16807
+ } | undefined;
16808
+ readonly readonlyWhen?: {
16809
+ dialect: "cel" | "js" | "cron" | "template";
16810
+ source?: string | undefined;
16811
+ ast?: unknown;
16812
+ meta?: {
16813
+ rationale?: string | undefined;
16814
+ generatedBy?: string | undefined;
16815
+ } | undefined;
16816
+ } | undefined;
16817
+ readonly requiredWhen?: {
16818
+ dialect: "cel" | "js" | "cron" | "template";
16819
+ source?: string | undefined;
16820
+ ast?: unknown;
16821
+ meta?: {
16822
+ rationale?: string | undefined;
16823
+ generatedBy?: string | undefined;
16824
+ } | undefined;
16825
+ } | undefined;
14341
16826
  readonly conditionalRequired?: {
14342
16827
  dialect: "cel" | "js" | "cron" | "template";
14343
16828
  source?: string | undefined;
@@ -14407,6 +16892,13 @@ declare const SysViewDefinitionObject: Omit<{
14407
16892
  readonly referenceFilters?: string[] | undefined;
14408
16893
  readonly writeRequiresMasterRead?: boolean | undefined;
14409
16894
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
16895
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
16896
+ readonly inlineTitle?: string | undefined;
16897
+ readonly inlineColumns?: any[] | undefined;
16898
+ readonly inlineAmountField?: string | undefined;
16899
+ readonly relatedList?: boolean | undefined;
16900
+ readonly relatedListTitle?: string | undefined;
16901
+ readonly relatedListColumns?: any[] | undefined;
14410
16902
  readonly expression?: {
14411
16903
  dialect: "cel" | "js" | "cron" | "template";
14412
16904
  source?: string | undefined;
@@ -14420,6 +16912,7 @@ declare const SysViewDefinitionObject: Omit<{
14420
16912
  object: string;
14421
16913
  field: string;
14422
16914
  function: "min" | "max" | "count" | "sum" | "avg";
16915
+ relationshipField?: string | undefined;
14423
16916
  } | undefined;
14424
16917
  readonly language?: string | undefined;
14425
16918
  readonly lineNumbers?: boolean | undefined;
@@ -14514,6 +17007,33 @@ declare const SysViewDefinitionObject: Omit<{
14514
17007
  threshold: number;
14515
17008
  } | undefined;
14516
17009
  } | undefined;
17010
+ readonly visibleWhen?: {
17011
+ dialect: "cel" | "js" | "cron" | "template";
17012
+ source?: string | undefined;
17013
+ ast?: unknown;
17014
+ meta?: {
17015
+ rationale?: string | undefined;
17016
+ generatedBy?: string | undefined;
17017
+ } | undefined;
17018
+ } | undefined;
17019
+ readonly readonlyWhen?: {
17020
+ dialect: "cel" | "js" | "cron" | "template";
17021
+ source?: string | undefined;
17022
+ ast?: unknown;
17023
+ meta?: {
17024
+ rationale?: string | undefined;
17025
+ generatedBy?: string | undefined;
17026
+ } | undefined;
17027
+ } | undefined;
17028
+ readonly requiredWhen?: {
17029
+ dialect: "cel" | "js" | "cron" | "template";
17030
+ source?: string | undefined;
17031
+ ast?: unknown;
17032
+ meta?: {
17033
+ rationale?: string | undefined;
17034
+ generatedBy?: string | undefined;
17035
+ } | undefined;
17036
+ } | undefined;
14517
17037
  readonly conditionalRequired?: {
14518
17038
  dialect: "cel" | "js" | "cron" | "template";
14519
17039
  source?: string | undefined;
@@ -14583,6 +17103,13 @@ declare const SysViewDefinitionObject: Omit<{
14583
17103
  readonly referenceFilters?: string[] | undefined;
14584
17104
  readonly writeRequiresMasterRead?: boolean | undefined;
14585
17105
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
17106
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
17107
+ readonly inlineTitle?: string | undefined;
17108
+ readonly inlineColumns?: any[] | undefined;
17109
+ readonly inlineAmountField?: string | undefined;
17110
+ readonly relatedList?: boolean | undefined;
17111
+ readonly relatedListTitle?: string | undefined;
17112
+ readonly relatedListColumns?: any[] | undefined;
14586
17113
  readonly expression?: {
14587
17114
  dialect: "cel" | "js" | "cron" | "template";
14588
17115
  source?: string | undefined;
@@ -14596,6 +17123,7 @@ declare const SysViewDefinitionObject: Omit<{
14596
17123
  object: string;
14597
17124
  field: string;
14598
17125
  function: "min" | "max" | "count" | "sum" | "avg";
17126
+ relationshipField?: string | undefined;
14599
17127
  } | undefined;
14600
17128
  readonly language?: string | undefined;
14601
17129
  readonly lineNumbers?: boolean | undefined;
@@ -14690,6 +17218,33 @@ declare const SysViewDefinitionObject: Omit<{
14690
17218
  threshold: number;
14691
17219
  } | undefined;
14692
17220
  } | undefined;
17221
+ readonly visibleWhen?: {
17222
+ dialect: "cel" | "js" | "cron" | "template";
17223
+ source?: string | undefined;
17224
+ ast?: unknown;
17225
+ meta?: {
17226
+ rationale?: string | undefined;
17227
+ generatedBy?: string | undefined;
17228
+ } | undefined;
17229
+ } | undefined;
17230
+ readonly readonlyWhen?: {
17231
+ dialect: "cel" | "js" | "cron" | "template";
17232
+ source?: string | undefined;
17233
+ ast?: unknown;
17234
+ meta?: {
17235
+ rationale?: string | undefined;
17236
+ generatedBy?: string | undefined;
17237
+ } | undefined;
17238
+ } | undefined;
17239
+ readonly requiredWhen?: {
17240
+ dialect: "cel" | "js" | "cron" | "template";
17241
+ source?: string | undefined;
17242
+ ast?: unknown;
17243
+ meta?: {
17244
+ rationale?: string | undefined;
17245
+ generatedBy?: string | undefined;
17246
+ } | undefined;
17247
+ } | undefined;
14693
17248
  readonly conditionalRequired?: {
14694
17249
  dialect: "cel" | "js" | "cron" | "template";
14695
17250
  source?: string | undefined;
@@ -14758,6 +17313,13 @@ declare const SysViewDefinitionObject: Omit<{
14758
17313
  readonly referenceFilters?: string[] | undefined;
14759
17314
  readonly writeRequiresMasterRead?: boolean | undefined;
14760
17315
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
17316
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
17317
+ readonly inlineTitle?: string | undefined;
17318
+ readonly inlineColumns?: any[] | undefined;
17319
+ readonly inlineAmountField?: string | undefined;
17320
+ readonly relatedList?: boolean | undefined;
17321
+ readonly relatedListTitle?: string | undefined;
17322
+ readonly relatedListColumns?: any[] | undefined;
14761
17323
  readonly expression?: {
14762
17324
  dialect: "cel" | "js" | "cron" | "template";
14763
17325
  source?: string | undefined;
@@ -14771,6 +17333,7 @@ declare const SysViewDefinitionObject: Omit<{
14771
17333
  object: string;
14772
17334
  field: string;
14773
17335
  function: "min" | "max" | "count" | "sum" | "avg";
17336
+ relationshipField?: string | undefined;
14774
17337
  } | undefined;
14775
17338
  readonly language?: string | undefined;
14776
17339
  readonly lineNumbers?: boolean | undefined;
@@ -14865,6 +17428,33 @@ declare const SysViewDefinitionObject: Omit<{
14865
17428
  threshold: number;
14866
17429
  } | undefined;
14867
17430
  } | undefined;
17431
+ readonly visibleWhen?: {
17432
+ dialect: "cel" | "js" | "cron" | "template";
17433
+ source?: string | undefined;
17434
+ ast?: unknown;
17435
+ meta?: {
17436
+ rationale?: string | undefined;
17437
+ generatedBy?: string | undefined;
17438
+ } | undefined;
17439
+ } | undefined;
17440
+ readonly readonlyWhen?: {
17441
+ dialect: "cel" | "js" | "cron" | "template";
17442
+ source?: string | undefined;
17443
+ ast?: unknown;
17444
+ meta?: {
17445
+ rationale?: string | undefined;
17446
+ generatedBy?: string | undefined;
17447
+ } | undefined;
17448
+ } | undefined;
17449
+ readonly requiredWhen?: {
17450
+ dialect: "cel" | "js" | "cron" | "template";
17451
+ source?: string | undefined;
17452
+ ast?: unknown;
17453
+ meta?: {
17454
+ rationale?: string | undefined;
17455
+ generatedBy?: string | undefined;
17456
+ } | undefined;
17457
+ } | undefined;
14868
17458
  readonly conditionalRequired?: {
14869
17459
  dialect: "cel" | "js" | "cron" | "template";
14870
17460
  source?: string | undefined;
@@ -14933,6 +17523,13 @@ declare const SysViewDefinitionObject: Omit<{
14933
17523
  readonly referenceFilters?: string[] | undefined;
14934
17524
  readonly writeRequiresMasterRead?: boolean | undefined;
14935
17525
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
17526
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
17527
+ readonly inlineTitle?: string | undefined;
17528
+ readonly inlineColumns?: any[] | undefined;
17529
+ readonly inlineAmountField?: string | undefined;
17530
+ readonly relatedList?: boolean | undefined;
17531
+ readonly relatedListTitle?: string | undefined;
17532
+ readonly relatedListColumns?: any[] | undefined;
14936
17533
  readonly expression?: {
14937
17534
  dialect: "cel" | "js" | "cron" | "template";
14938
17535
  source?: string | undefined;
@@ -14946,6 +17543,7 @@ declare const SysViewDefinitionObject: Omit<{
14946
17543
  object: string;
14947
17544
  field: string;
14948
17545
  function: "min" | "max" | "count" | "sum" | "avg";
17546
+ relationshipField?: string | undefined;
14949
17547
  } | undefined;
14950
17548
  readonly language?: string | undefined;
14951
17549
  readonly lineNumbers?: boolean | undefined;
@@ -15040,6 +17638,33 @@ declare const SysViewDefinitionObject: Omit<{
15040
17638
  threshold: number;
15041
17639
  } | undefined;
15042
17640
  } | undefined;
17641
+ readonly visibleWhen?: {
17642
+ dialect: "cel" | "js" | "cron" | "template";
17643
+ source?: string | undefined;
17644
+ ast?: unknown;
17645
+ meta?: {
17646
+ rationale?: string | undefined;
17647
+ generatedBy?: string | undefined;
17648
+ } | undefined;
17649
+ } | undefined;
17650
+ readonly readonlyWhen?: {
17651
+ dialect: "cel" | "js" | "cron" | "template";
17652
+ source?: string | undefined;
17653
+ ast?: unknown;
17654
+ meta?: {
17655
+ rationale?: string | undefined;
17656
+ generatedBy?: string | undefined;
17657
+ } | undefined;
17658
+ } | undefined;
17659
+ readonly requiredWhen?: {
17660
+ dialect: "cel" | "js" | "cron" | "template";
17661
+ source?: string | undefined;
17662
+ ast?: unknown;
17663
+ meta?: {
17664
+ rationale?: string | undefined;
17665
+ generatedBy?: string | undefined;
17666
+ } | undefined;
17667
+ } | undefined;
15043
17668
  readonly conditionalRequired?: {
15044
17669
  dialect: "cel" | "js" | "cron" | "template";
15045
17670
  source?: string | undefined;
@@ -15108,6 +17733,13 @@ declare const SysViewDefinitionObject: Omit<{
15108
17733
  readonly referenceFilters?: string[] | undefined;
15109
17734
  readonly writeRequiresMasterRead?: boolean | undefined;
15110
17735
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
17736
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
17737
+ readonly inlineTitle?: string | undefined;
17738
+ readonly inlineColumns?: any[] | undefined;
17739
+ readonly inlineAmountField?: string | undefined;
17740
+ readonly relatedList?: boolean | undefined;
17741
+ readonly relatedListTitle?: string | undefined;
17742
+ readonly relatedListColumns?: any[] | undefined;
15111
17743
  readonly expression?: {
15112
17744
  dialect: "cel" | "js" | "cron" | "template";
15113
17745
  source?: string | undefined;
@@ -15121,6 +17753,7 @@ declare const SysViewDefinitionObject: Omit<{
15121
17753
  object: string;
15122
17754
  field: string;
15123
17755
  function: "min" | "max" | "count" | "sum" | "avg";
17756
+ relationshipField?: string | undefined;
15124
17757
  } | undefined;
15125
17758
  readonly language?: string | undefined;
15126
17759
  readonly lineNumbers?: boolean | undefined;
@@ -15215,6 +17848,33 @@ declare const SysViewDefinitionObject: Omit<{
15215
17848
  threshold: number;
15216
17849
  } | undefined;
15217
17850
  } | undefined;
17851
+ readonly visibleWhen?: {
17852
+ dialect: "cel" | "js" | "cron" | "template";
17853
+ source?: string | undefined;
17854
+ ast?: unknown;
17855
+ meta?: {
17856
+ rationale?: string | undefined;
17857
+ generatedBy?: string | undefined;
17858
+ } | undefined;
17859
+ } | undefined;
17860
+ readonly readonlyWhen?: {
17861
+ dialect: "cel" | "js" | "cron" | "template";
17862
+ source?: string | undefined;
17863
+ ast?: unknown;
17864
+ meta?: {
17865
+ rationale?: string | undefined;
17866
+ generatedBy?: string | undefined;
17867
+ } | undefined;
17868
+ } | undefined;
17869
+ readonly requiredWhen?: {
17870
+ dialect: "cel" | "js" | "cron" | "template";
17871
+ source?: string | undefined;
17872
+ ast?: unknown;
17873
+ meta?: {
17874
+ rationale?: string | undefined;
17875
+ generatedBy?: string | undefined;
17876
+ } | undefined;
17877
+ } | undefined;
15218
17878
  readonly conditionalRequired?: {
15219
17879
  dialect: "cel" | "js" | "cron" | "template";
15220
17880
  source?: string | undefined;