@objectstack/service-storage 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 +1354 -24
  2. package/dist/index.d.ts +1354 -24
  3. package/package.json +4 -4
package/dist/index.d.ts CHANGED
@@ -473,6 +473,13 @@ declare const SystemFile: Omit<{
473
473
  reference?: string | undefined;
474
474
  referenceFilters?: string[] | undefined;
475
475
  writeRequiresMasterRead?: boolean | undefined;
476
+ inlineEdit?: boolean | "grid" | "form" | undefined;
477
+ inlineTitle?: string | undefined;
478
+ inlineColumns?: any[] | undefined;
479
+ inlineAmountField?: string | undefined;
480
+ relatedList?: boolean | undefined;
481
+ relatedListTitle?: string | undefined;
482
+ relatedListColumns?: any[] | undefined;
476
483
  expression?: {
477
484
  dialect: "cel" | "js" | "cron" | "template";
478
485
  source?: string | undefined;
@@ -494,6 +501,7 @@ declare const SystemFile: Omit<{
494
501
  object: string;
495
502
  field: string;
496
503
  function: "min" | "max" | "count" | "sum" | "avg";
504
+ relationshipField?: string | undefined;
497
505
  } | undefined;
498
506
  language?: string | undefined;
499
507
  theme?: string | undefined;
@@ -607,6 +615,57 @@ declare const SystemFile: Omit<{
607
615
  } | undefined;
608
616
  } | undefined;
609
617
  group?: string | undefined;
618
+ visibleWhen?: {
619
+ dialect: "cel" | "js" | "cron" | "template";
620
+ source?: string | undefined;
621
+ ast?: unknown;
622
+ meta?: {
623
+ rationale?: string | undefined;
624
+ generatedBy?: string | undefined;
625
+ } | undefined;
626
+ } | {
627
+ dialect: "cel" | "js" | "cron" | "template";
628
+ source?: string | undefined;
629
+ ast?: unknown;
630
+ meta?: {
631
+ rationale?: string | undefined;
632
+ generatedBy?: string | undefined;
633
+ } | undefined;
634
+ } | undefined;
635
+ readonlyWhen?: {
636
+ dialect: "cel" | "js" | "cron" | "template";
637
+ source?: string | undefined;
638
+ ast?: unknown;
639
+ meta?: {
640
+ rationale?: string | undefined;
641
+ generatedBy?: string | undefined;
642
+ } | undefined;
643
+ } | {
644
+ dialect: "cel" | "js" | "cron" | "template";
645
+ source?: string | undefined;
646
+ ast?: unknown;
647
+ meta?: {
648
+ rationale?: string | undefined;
649
+ generatedBy?: string | undefined;
650
+ } | undefined;
651
+ } | undefined;
652
+ requiredWhen?: {
653
+ dialect: "cel" | "js" | "cron" | "template";
654
+ source?: string | undefined;
655
+ ast?: unknown;
656
+ meta?: {
657
+ rationale?: string | undefined;
658
+ generatedBy?: string | undefined;
659
+ } | undefined;
660
+ } | {
661
+ dialect: "cel" | "js" | "cron" | "template";
662
+ source?: string | undefined;
663
+ ast?: unknown;
664
+ meta?: {
665
+ rationale?: string | undefined;
666
+ generatedBy?: string | undefined;
667
+ } | undefined;
668
+ } | undefined;
610
669
  conditionalRequired?: {
611
670
  dialect: "cel" | "js" | "cron" | "template";
612
671
  source?: string | undefined;
@@ -748,7 +807,7 @@ declare const SystemFile: Omit<{
748
807
  } | undefined;
749
808
  compactLayout?: string[] | undefined;
750
809
  listViews?: Record<string, {
751
- type: "map" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "grid";
810
+ type: "map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart";
752
811
  columns: string[] | {
753
812
  field: string;
754
813
  label?: string | undefined;
@@ -917,7 +976,7 @@ declare const SystemFile: Omit<{
917
976
  } | undefined;
918
977
  appearance?: {
919
978
  showDescription: boolean;
920
- allowedVisualizations?: ("map" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "grid")[] | undefined;
979
+ allowedVisualizations?: ("map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline")[] | undefined;
921
980
  } | undefined;
922
981
  tabs?: {
923
982
  name: string;
@@ -937,7 +996,7 @@ declare const SystemFile: Omit<{
937
996
  addRecord?: {
938
997
  enabled: boolean;
939
998
  position: "top" | "bottom" | "both";
940
- mode: "modal" | "form" | "inline";
999
+ mode: "form" | "modal" | "inline";
941
1000
  formView?: string | undefined;
942
1001
  } | undefined;
943
1002
  showRecordCount?: boolean | undefined;
@@ -1023,7 +1082,7 @@ declare const SystemFile: Omit<{
1023
1082
  actions?: {
1024
1083
  name: string;
1025
1084
  label: string;
1026
- type: "url" | "flow" | "api" | "script" | "modal" | "form";
1085
+ type: "url" | "form" | "flow" | "api" | "script" | "modal";
1027
1086
  refreshAfter: boolean;
1028
1087
  objectName?: string | undefined;
1029
1088
  icon?: string | undefined;
@@ -1091,7 +1150,18 @@ declare const SystemFile: Omit<{
1091
1150
  } | undefined;
1092
1151
  shortcut?: string | undefined;
1093
1152
  bulkEnabled?: boolean | undefined;
1094
- aiExposed?: boolean | undefined;
1153
+ ai?: {
1154
+ exposed: boolean;
1155
+ description?: string | undefined;
1156
+ category?: "action" | "data" | "flow" | "integration" | "vector_search" | "analytics" | "utility" | undefined;
1157
+ paramHints?: Record<string, {
1158
+ description?: string | undefined;
1159
+ enum?: (string | number)[] | undefined;
1160
+ examples?: unknown[] | undefined;
1161
+ }> | undefined;
1162
+ outputSchema?: Record<string, unknown> | undefined;
1163
+ requiresConfirmation?: boolean | undefined;
1164
+ } | undefined;
1095
1165
  recordIdParam?: string | undefined;
1096
1166
  recordIdField?: string | undefined;
1097
1167
  bodyShape?: "flat" | {
@@ -1172,6 +1242,13 @@ declare const SystemFile: Omit<{
1172
1242
  readonly referenceFilters?: string[] | undefined;
1173
1243
  readonly writeRequiresMasterRead?: boolean | undefined;
1174
1244
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1245
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1246
+ readonly inlineTitle?: string | undefined;
1247
+ readonly inlineColumns?: any[] | undefined;
1248
+ readonly inlineAmountField?: string | undefined;
1249
+ readonly relatedList?: boolean | undefined;
1250
+ readonly relatedListTitle?: string | undefined;
1251
+ readonly relatedListColumns?: any[] | undefined;
1175
1252
  readonly expression?: {
1176
1253
  dialect: "cel" | "js" | "cron" | "template";
1177
1254
  source?: string | undefined;
@@ -1185,6 +1262,7 @@ declare const SystemFile: Omit<{
1185
1262
  object: string;
1186
1263
  field: string;
1187
1264
  function: "min" | "max" | "count" | "sum" | "avg";
1265
+ relationshipField?: string | undefined;
1188
1266
  } | undefined;
1189
1267
  readonly language?: string | undefined;
1190
1268
  readonly lineNumbers?: boolean | undefined;
@@ -1279,6 +1357,33 @@ declare const SystemFile: Omit<{
1279
1357
  threshold: number;
1280
1358
  } | undefined;
1281
1359
  } | undefined;
1360
+ readonly visibleWhen?: {
1361
+ dialect: "cel" | "js" | "cron" | "template";
1362
+ source?: string | undefined;
1363
+ ast?: unknown;
1364
+ meta?: {
1365
+ rationale?: string | undefined;
1366
+ generatedBy?: string | undefined;
1367
+ } | undefined;
1368
+ } | undefined;
1369
+ readonly readonlyWhen?: {
1370
+ dialect: "cel" | "js" | "cron" | "template";
1371
+ source?: string | undefined;
1372
+ ast?: unknown;
1373
+ meta?: {
1374
+ rationale?: string | undefined;
1375
+ generatedBy?: string | undefined;
1376
+ } | undefined;
1377
+ } | undefined;
1378
+ readonly requiredWhen?: {
1379
+ dialect: "cel" | "js" | "cron" | "template";
1380
+ source?: string | undefined;
1381
+ ast?: unknown;
1382
+ meta?: {
1383
+ rationale?: string | undefined;
1384
+ generatedBy?: string | undefined;
1385
+ } | undefined;
1386
+ } | undefined;
1282
1387
  readonly conditionalRequired?: {
1283
1388
  dialect: "cel" | "js" | "cron" | "template";
1284
1389
  source?: string | undefined;
@@ -1347,6 +1452,13 @@ declare const SystemFile: Omit<{
1347
1452
  readonly referenceFilters?: string[] | undefined;
1348
1453
  readonly writeRequiresMasterRead?: boolean | undefined;
1349
1454
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1455
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1456
+ readonly inlineTitle?: string | undefined;
1457
+ readonly inlineColumns?: any[] | undefined;
1458
+ readonly inlineAmountField?: string | undefined;
1459
+ readonly relatedList?: boolean | undefined;
1460
+ readonly relatedListTitle?: string | undefined;
1461
+ readonly relatedListColumns?: any[] | undefined;
1350
1462
  readonly expression?: {
1351
1463
  dialect: "cel" | "js" | "cron" | "template";
1352
1464
  source?: string | undefined;
@@ -1360,6 +1472,7 @@ declare const SystemFile: Omit<{
1360
1472
  object: string;
1361
1473
  field: string;
1362
1474
  function: "min" | "max" | "count" | "sum" | "avg";
1475
+ relationshipField?: string | undefined;
1363
1476
  } | undefined;
1364
1477
  readonly language?: string | undefined;
1365
1478
  readonly lineNumbers?: boolean | undefined;
@@ -1454,6 +1567,33 @@ declare const SystemFile: Omit<{
1454
1567
  threshold: number;
1455
1568
  } | undefined;
1456
1569
  } | undefined;
1570
+ readonly visibleWhen?: {
1571
+ dialect: "cel" | "js" | "cron" | "template";
1572
+ source?: string | undefined;
1573
+ ast?: unknown;
1574
+ meta?: {
1575
+ rationale?: string | undefined;
1576
+ generatedBy?: string | undefined;
1577
+ } | undefined;
1578
+ } | undefined;
1579
+ readonly readonlyWhen?: {
1580
+ dialect: "cel" | "js" | "cron" | "template";
1581
+ source?: string | undefined;
1582
+ ast?: unknown;
1583
+ meta?: {
1584
+ rationale?: string | undefined;
1585
+ generatedBy?: string | undefined;
1586
+ } | undefined;
1587
+ } | undefined;
1588
+ readonly requiredWhen?: {
1589
+ dialect: "cel" | "js" | "cron" | "template";
1590
+ source?: string | undefined;
1591
+ ast?: unknown;
1592
+ meta?: {
1593
+ rationale?: string | undefined;
1594
+ generatedBy?: string | undefined;
1595
+ } | undefined;
1596
+ } | undefined;
1457
1597
  readonly conditionalRequired?: {
1458
1598
  dialect: "cel" | "js" | "cron" | "template";
1459
1599
  source?: string | undefined;
@@ -1522,6 +1662,13 @@ declare const SystemFile: Omit<{
1522
1662
  readonly referenceFilters?: string[] | undefined;
1523
1663
  readonly writeRequiresMasterRead?: boolean | undefined;
1524
1664
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1665
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1666
+ readonly inlineTitle?: string | undefined;
1667
+ readonly inlineColumns?: any[] | undefined;
1668
+ readonly inlineAmountField?: string | undefined;
1669
+ readonly relatedList?: boolean | undefined;
1670
+ readonly relatedListTitle?: string | undefined;
1671
+ readonly relatedListColumns?: any[] | undefined;
1525
1672
  readonly expression?: {
1526
1673
  dialect: "cel" | "js" | "cron" | "template";
1527
1674
  source?: string | undefined;
@@ -1535,6 +1682,7 @@ declare const SystemFile: Omit<{
1535
1682
  object: string;
1536
1683
  field: string;
1537
1684
  function: "min" | "max" | "count" | "sum" | "avg";
1685
+ relationshipField?: string | undefined;
1538
1686
  } | undefined;
1539
1687
  readonly language?: string | undefined;
1540
1688
  readonly lineNumbers?: boolean | undefined;
@@ -1629,6 +1777,33 @@ declare const SystemFile: Omit<{
1629
1777
  threshold: number;
1630
1778
  } | undefined;
1631
1779
  } | undefined;
1780
+ readonly visibleWhen?: {
1781
+ dialect: "cel" | "js" | "cron" | "template";
1782
+ source?: string | undefined;
1783
+ ast?: unknown;
1784
+ meta?: {
1785
+ rationale?: string | undefined;
1786
+ generatedBy?: string | undefined;
1787
+ } | undefined;
1788
+ } | undefined;
1789
+ readonly readonlyWhen?: {
1790
+ dialect: "cel" | "js" | "cron" | "template";
1791
+ source?: string | undefined;
1792
+ ast?: unknown;
1793
+ meta?: {
1794
+ rationale?: string | undefined;
1795
+ generatedBy?: string | undefined;
1796
+ } | undefined;
1797
+ } | undefined;
1798
+ readonly requiredWhen?: {
1799
+ dialect: "cel" | "js" | "cron" | "template";
1800
+ source?: string | undefined;
1801
+ ast?: unknown;
1802
+ meta?: {
1803
+ rationale?: string | undefined;
1804
+ generatedBy?: string | undefined;
1805
+ } | undefined;
1806
+ } | undefined;
1632
1807
  readonly conditionalRequired?: {
1633
1808
  dialect: "cel" | "js" | "cron" | "template";
1634
1809
  source?: string | undefined;
@@ -1697,6 +1872,13 @@ declare const SystemFile: Omit<{
1697
1872
  readonly referenceFilters?: string[] | undefined;
1698
1873
  readonly writeRequiresMasterRead?: boolean | undefined;
1699
1874
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1875
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1876
+ readonly inlineTitle?: string | undefined;
1877
+ readonly inlineColumns?: any[] | undefined;
1878
+ readonly inlineAmountField?: string | undefined;
1879
+ readonly relatedList?: boolean | undefined;
1880
+ readonly relatedListTitle?: string | undefined;
1881
+ readonly relatedListColumns?: any[] | undefined;
1700
1882
  readonly expression?: {
1701
1883
  dialect: "cel" | "js" | "cron" | "template";
1702
1884
  source?: string | undefined;
@@ -1710,6 +1892,7 @@ declare const SystemFile: Omit<{
1710
1892
  object: string;
1711
1893
  field: string;
1712
1894
  function: "min" | "max" | "count" | "sum" | "avg";
1895
+ relationshipField?: string | undefined;
1713
1896
  } | undefined;
1714
1897
  readonly language?: string | undefined;
1715
1898
  readonly lineNumbers?: boolean | undefined;
@@ -1804,6 +1987,33 @@ declare const SystemFile: Omit<{
1804
1987
  threshold: number;
1805
1988
  } | undefined;
1806
1989
  } | undefined;
1990
+ readonly visibleWhen?: {
1991
+ dialect: "cel" | "js" | "cron" | "template";
1992
+ source?: string | undefined;
1993
+ ast?: unknown;
1994
+ meta?: {
1995
+ rationale?: string | undefined;
1996
+ generatedBy?: string | undefined;
1997
+ } | undefined;
1998
+ } | undefined;
1999
+ readonly readonlyWhen?: {
2000
+ dialect: "cel" | "js" | "cron" | "template";
2001
+ source?: string | undefined;
2002
+ ast?: unknown;
2003
+ meta?: {
2004
+ rationale?: string | undefined;
2005
+ generatedBy?: string | undefined;
2006
+ } | undefined;
2007
+ } | undefined;
2008
+ readonly requiredWhen?: {
2009
+ dialect: "cel" | "js" | "cron" | "template";
2010
+ source?: string | undefined;
2011
+ ast?: unknown;
2012
+ meta?: {
2013
+ rationale?: string | undefined;
2014
+ generatedBy?: string | undefined;
2015
+ } | undefined;
2016
+ } | undefined;
1807
2017
  readonly conditionalRequired?: {
1808
2018
  dialect: "cel" | "js" | "cron" | "template";
1809
2019
  source?: string | undefined;
@@ -1872,6 +2082,13 @@ declare const SystemFile: Omit<{
1872
2082
  readonly referenceFilters?: string[] | undefined;
1873
2083
  readonly writeRequiresMasterRead?: boolean | undefined;
1874
2084
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2085
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2086
+ readonly inlineTitle?: string | undefined;
2087
+ readonly inlineColumns?: any[] | undefined;
2088
+ readonly inlineAmountField?: string | undefined;
2089
+ readonly relatedList?: boolean | undefined;
2090
+ readonly relatedListTitle?: string | undefined;
2091
+ readonly relatedListColumns?: any[] | undefined;
1875
2092
  readonly expression?: {
1876
2093
  dialect: "cel" | "js" | "cron" | "template";
1877
2094
  source?: string | undefined;
@@ -1885,6 +2102,7 @@ declare const SystemFile: Omit<{
1885
2102
  object: string;
1886
2103
  field: string;
1887
2104
  function: "min" | "max" | "count" | "sum" | "avg";
2105
+ relationshipField?: string | undefined;
1888
2106
  } | undefined;
1889
2107
  readonly language?: string | undefined;
1890
2108
  readonly lineNumbers?: boolean | undefined;
@@ -1979,6 +2197,33 @@ declare const SystemFile: Omit<{
1979
2197
  threshold: number;
1980
2198
  } | undefined;
1981
2199
  } | undefined;
2200
+ readonly visibleWhen?: {
2201
+ dialect: "cel" | "js" | "cron" | "template";
2202
+ source?: string | undefined;
2203
+ ast?: unknown;
2204
+ meta?: {
2205
+ rationale?: string | undefined;
2206
+ generatedBy?: string | undefined;
2207
+ } | undefined;
2208
+ } | undefined;
2209
+ readonly readonlyWhen?: {
2210
+ dialect: "cel" | "js" | "cron" | "template";
2211
+ source?: string | undefined;
2212
+ ast?: unknown;
2213
+ meta?: {
2214
+ rationale?: string | undefined;
2215
+ generatedBy?: string | undefined;
2216
+ } | undefined;
2217
+ } | undefined;
2218
+ readonly requiredWhen?: {
2219
+ dialect: "cel" | "js" | "cron" | "template";
2220
+ source?: string | undefined;
2221
+ ast?: unknown;
2222
+ meta?: {
2223
+ rationale?: string | undefined;
2224
+ generatedBy?: string | undefined;
2225
+ } | undefined;
2226
+ } | undefined;
1982
2227
  readonly conditionalRequired?: {
1983
2228
  dialect: "cel" | "js" | "cron" | "template";
1984
2229
  source?: string | undefined;
@@ -2047,6 +2292,13 @@ declare const SystemFile: Omit<{
2047
2292
  readonly referenceFilters?: string[] | undefined;
2048
2293
  readonly writeRequiresMasterRead?: boolean | undefined;
2049
2294
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2295
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2296
+ readonly inlineTitle?: string | undefined;
2297
+ readonly inlineColumns?: any[] | undefined;
2298
+ readonly inlineAmountField?: string | undefined;
2299
+ readonly relatedList?: boolean | undefined;
2300
+ readonly relatedListTitle?: string | undefined;
2301
+ readonly relatedListColumns?: any[] | undefined;
2050
2302
  readonly expression?: {
2051
2303
  dialect: "cel" | "js" | "cron" | "template";
2052
2304
  source?: string | undefined;
@@ -2060,6 +2312,7 @@ declare const SystemFile: Omit<{
2060
2312
  object: string;
2061
2313
  field: string;
2062
2314
  function: "min" | "max" | "count" | "sum" | "avg";
2315
+ relationshipField?: string | undefined;
2063
2316
  } | undefined;
2064
2317
  readonly language?: string | undefined;
2065
2318
  readonly lineNumbers?: boolean | undefined;
@@ -2154,6 +2407,33 @@ declare const SystemFile: Omit<{
2154
2407
  threshold: number;
2155
2408
  } | undefined;
2156
2409
  } | undefined;
2410
+ readonly visibleWhen?: {
2411
+ dialect: "cel" | "js" | "cron" | "template";
2412
+ source?: string | undefined;
2413
+ ast?: unknown;
2414
+ meta?: {
2415
+ rationale?: string | undefined;
2416
+ generatedBy?: string | undefined;
2417
+ } | undefined;
2418
+ } | undefined;
2419
+ readonly readonlyWhen?: {
2420
+ dialect: "cel" | "js" | "cron" | "template";
2421
+ source?: string | undefined;
2422
+ ast?: unknown;
2423
+ meta?: {
2424
+ rationale?: string | undefined;
2425
+ generatedBy?: string | undefined;
2426
+ } | undefined;
2427
+ } | undefined;
2428
+ readonly requiredWhen?: {
2429
+ dialect: "cel" | "js" | "cron" | "template";
2430
+ source?: string | undefined;
2431
+ ast?: unknown;
2432
+ meta?: {
2433
+ rationale?: string | undefined;
2434
+ generatedBy?: string | undefined;
2435
+ } | undefined;
2436
+ } | undefined;
2157
2437
  readonly conditionalRequired?: {
2158
2438
  dialect: "cel" | "js" | "cron" | "template";
2159
2439
  source?: string | undefined;
@@ -2222,6 +2502,13 @@ declare const SystemFile: Omit<{
2222
2502
  readonly referenceFilters?: string[] | undefined;
2223
2503
  readonly writeRequiresMasterRead?: boolean | undefined;
2224
2504
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2505
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2506
+ readonly inlineTitle?: string | undefined;
2507
+ readonly inlineColumns?: any[] | undefined;
2508
+ readonly inlineAmountField?: string | undefined;
2509
+ readonly relatedList?: boolean | undefined;
2510
+ readonly relatedListTitle?: string | undefined;
2511
+ readonly relatedListColumns?: any[] | undefined;
2225
2512
  readonly expression?: {
2226
2513
  dialect: "cel" | "js" | "cron" | "template";
2227
2514
  source?: string | undefined;
@@ -2235,6 +2522,7 @@ declare const SystemFile: Omit<{
2235
2522
  object: string;
2236
2523
  field: string;
2237
2524
  function: "min" | "max" | "count" | "sum" | "avg";
2525
+ relationshipField?: string | undefined;
2238
2526
  } | undefined;
2239
2527
  readonly language?: string | undefined;
2240
2528
  readonly lineNumbers?: boolean | undefined;
@@ -2329,6 +2617,33 @@ declare const SystemFile: Omit<{
2329
2617
  threshold: number;
2330
2618
  } | undefined;
2331
2619
  } | undefined;
2620
+ readonly visibleWhen?: {
2621
+ dialect: "cel" | "js" | "cron" | "template";
2622
+ source?: string | undefined;
2623
+ ast?: unknown;
2624
+ meta?: {
2625
+ rationale?: string | undefined;
2626
+ generatedBy?: string | undefined;
2627
+ } | undefined;
2628
+ } | undefined;
2629
+ readonly readonlyWhen?: {
2630
+ dialect: "cel" | "js" | "cron" | "template";
2631
+ source?: string | undefined;
2632
+ ast?: unknown;
2633
+ meta?: {
2634
+ rationale?: string | undefined;
2635
+ generatedBy?: string | undefined;
2636
+ } | undefined;
2637
+ } | undefined;
2638
+ readonly requiredWhen?: {
2639
+ dialect: "cel" | "js" | "cron" | "template";
2640
+ source?: string | undefined;
2641
+ ast?: unknown;
2642
+ meta?: {
2643
+ rationale?: string | undefined;
2644
+ generatedBy?: string | undefined;
2645
+ } | undefined;
2646
+ } | undefined;
2332
2647
  readonly conditionalRequired?: {
2333
2648
  dialect: "cel" | "js" | "cron" | "template";
2334
2649
  source?: string | undefined;
@@ -2397,6 +2712,13 @@ declare const SystemFile: Omit<{
2397
2712
  readonly referenceFilters?: string[] | undefined;
2398
2713
  readonly writeRequiresMasterRead?: boolean | undefined;
2399
2714
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2715
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2716
+ readonly inlineTitle?: string | undefined;
2717
+ readonly inlineColumns?: any[] | undefined;
2718
+ readonly inlineAmountField?: string | undefined;
2719
+ readonly relatedList?: boolean | undefined;
2720
+ readonly relatedListTitle?: string | undefined;
2721
+ readonly relatedListColumns?: any[] | undefined;
2400
2722
  readonly expression?: {
2401
2723
  dialect: "cel" | "js" | "cron" | "template";
2402
2724
  source?: string | undefined;
@@ -2410,6 +2732,7 @@ declare const SystemFile: Omit<{
2410
2732
  object: string;
2411
2733
  field: string;
2412
2734
  function: "min" | "max" | "count" | "sum" | "avg";
2735
+ relationshipField?: string | undefined;
2413
2736
  } | undefined;
2414
2737
  readonly language?: string | undefined;
2415
2738
  readonly lineNumbers?: boolean | undefined;
@@ -2504,6 +2827,33 @@ declare const SystemFile: Omit<{
2504
2827
  threshold: number;
2505
2828
  } | undefined;
2506
2829
  } | undefined;
2830
+ readonly visibleWhen?: {
2831
+ dialect: "cel" | "js" | "cron" | "template";
2832
+ source?: string | undefined;
2833
+ ast?: unknown;
2834
+ meta?: {
2835
+ rationale?: string | undefined;
2836
+ generatedBy?: string | undefined;
2837
+ } | undefined;
2838
+ } | undefined;
2839
+ readonly readonlyWhen?: {
2840
+ dialect: "cel" | "js" | "cron" | "template";
2841
+ source?: string | undefined;
2842
+ ast?: unknown;
2843
+ meta?: {
2844
+ rationale?: string | undefined;
2845
+ generatedBy?: string | undefined;
2846
+ } | undefined;
2847
+ } | undefined;
2848
+ readonly requiredWhen?: {
2849
+ dialect: "cel" | "js" | "cron" | "template";
2850
+ source?: string | undefined;
2851
+ ast?: unknown;
2852
+ meta?: {
2853
+ rationale?: string | undefined;
2854
+ generatedBy?: string | undefined;
2855
+ } | undefined;
2856
+ } | undefined;
2507
2857
  readonly conditionalRequired?: {
2508
2858
  dialect: "cel" | "js" | "cron" | "template";
2509
2859
  source?: string | undefined;
@@ -2572,6 +2922,13 @@ declare const SystemFile: Omit<{
2572
2922
  readonly referenceFilters?: string[] | undefined;
2573
2923
  readonly writeRequiresMasterRead?: boolean | undefined;
2574
2924
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2925
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2926
+ readonly inlineTitle?: string | undefined;
2927
+ readonly inlineColumns?: any[] | undefined;
2928
+ readonly inlineAmountField?: string | undefined;
2929
+ readonly relatedList?: boolean | undefined;
2930
+ readonly relatedListTitle?: string | undefined;
2931
+ readonly relatedListColumns?: any[] | undefined;
2575
2932
  readonly expression?: {
2576
2933
  dialect: "cel" | "js" | "cron" | "template";
2577
2934
  source?: string | undefined;
@@ -2585,6 +2942,7 @@ declare const SystemFile: Omit<{
2585
2942
  object: string;
2586
2943
  field: string;
2587
2944
  function: "min" | "max" | "count" | "sum" | "avg";
2945
+ relationshipField?: string | undefined;
2588
2946
  } | undefined;
2589
2947
  readonly language?: string | undefined;
2590
2948
  readonly lineNumbers?: boolean | undefined;
@@ -2679,7 +3037,7 @@ declare const SystemFile: Omit<{
2679
3037
  threshold: number;
2680
3038
  } | undefined;
2681
3039
  } | undefined;
2682
- readonly conditionalRequired?: {
3040
+ readonly visibleWhen?: {
2683
3041
  dialect: "cel" | "js" | "cron" | "template";
2684
3042
  source?: string | undefined;
2685
3043
  ast?: unknown;
@@ -2688,19 +3046,46 @@ declare const SystemFile: Omit<{
2688
3046
  generatedBy?: string | undefined;
2689
3047
  } | undefined;
2690
3048
  } | undefined;
2691
- readonly sortable?: boolean | undefined;
2692
- readonly inlineHelpText?: string | undefined;
2693
- readonly trackFeedHistory?: boolean | undefined;
2694
- readonly caseSensitive?: boolean | undefined;
2695
- readonly autonumberFormat?: string | undefined;
2696
- readonly index?: boolean | undefined;
2697
- readonly type: "select";
2698
- };
2699
- readonly etag: {
2700
- readonly readonly?: boolean | undefined;
2701
- readonly format?: string | undefined;
2702
- readonly options?: {
2703
- label: string;
3049
+ readonly readonlyWhen?: {
3050
+ dialect: "cel" | "js" | "cron" | "template";
3051
+ source?: string | undefined;
3052
+ ast?: unknown;
3053
+ meta?: {
3054
+ rationale?: string | undefined;
3055
+ generatedBy?: string | undefined;
3056
+ } | undefined;
3057
+ } | undefined;
3058
+ readonly requiredWhen?: {
3059
+ dialect: "cel" | "js" | "cron" | "template";
3060
+ source?: string | undefined;
3061
+ ast?: unknown;
3062
+ meta?: {
3063
+ rationale?: string | undefined;
3064
+ generatedBy?: string | undefined;
3065
+ } | undefined;
3066
+ } | undefined;
3067
+ readonly conditionalRequired?: {
3068
+ dialect: "cel" | "js" | "cron" | "template";
3069
+ source?: string | undefined;
3070
+ ast?: unknown;
3071
+ meta?: {
3072
+ rationale?: string | undefined;
3073
+ generatedBy?: string | undefined;
3074
+ } | undefined;
3075
+ } | undefined;
3076
+ readonly sortable?: boolean | undefined;
3077
+ readonly inlineHelpText?: string | undefined;
3078
+ readonly trackFeedHistory?: boolean | undefined;
3079
+ readonly caseSensitive?: boolean | undefined;
3080
+ readonly autonumberFormat?: string | undefined;
3081
+ readonly index?: boolean | undefined;
3082
+ readonly type: "select";
3083
+ };
3084
+ readonly etag: {
3085
+ readonly readonly?: boolean | undefined;
3086
+ readonly format?: string | undefined;
3087
+ readonly options?: {
3088
+ label: string;
2704
3089
  value: string;
2705
3090
  color?: string | undefined;
2706
3091
  default?: boolean | undefined;
@@ -2747,6 +3132,13 @@ declare const SystemFile: Omit<{
2747
3132
  readonly referenceFilters?: string[] | undefined;
2748
3133
  readonly writeRequiresMasterRead?: boolean | undefined;
2749
3134
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
3135
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
3136
+ readonly inlineTitle?: string | undefined;
3137
+ readonly inlineColumns?: any[] | undefined;
3138
+ readonly inlineAmountField?: string | undefined;
3139
+ readonly relatedList?: boolean | undefined;
3140
+ readonly relatedListTitle?: string | undefined;
3141
+ readonly relatedListColumns?: any[] | undefined;
2750
3142
  readonly expression?: {
2751
3143
  dialect: "cel" | "js" | "cron" | "template";
2752
3144
  source?: string | undefined;
@@ -2760,6 +3152,7 @@ declare const SystemFile: Omit<{
2760
3152
  object: string;
2761
3153
  field: string;
2762
3154
  function: "min" | "max" | "count" | "sum" | "avg";
3155
+ relationshipField?: string | undefined;
2763
3156
  } | undefined;
2764
3157
  readonly language?: string | undefined;
2765
3158
  readonly lineNumbers?: boolean | undefined;
@@ -2854,6 +3247,33 @@ declare const SystemFile: Omit<{
2854
3247
  threshold: number;
2855
3248
  } | undefined;
2856
3249
  } | undefined;
3250
+ readonly visibleWhen?: {
3251
+ dialect: "cel" | "js" | "cron" | "template";
3252
+ source?: string | undefined;
3253
+ ast?: unknown;
3254
+ meta?: {
3255
+ rationale?: string | undefined;
3256
+ generatedBy?: string | undefined;
3257
+ } | undefined;
3258
+ } | undefined;
3259
+ readonly readonlyWhen?: {
3260
+ dialect: "cel" | "js" | "cron" | "template";
3261
+ source?: string | undefined;
3262
+ ast?: unknown;
3263
+ meta?: {
3264
+ rationale?: string | undefined;
3265
+ generatedBy?: string | undefined;
3266
+ } | undefined;
3267
+ } | undefined;
3268
+ readonly requiredWhen?: {
3269
+ dialect: "cel" | "js" | "cron" | "template";
3270
+ source?: string | undefined;
3271
+ ast?: unknown;
3272
+ meta?: {
3273
+ rationale?: string | undefined;
3274
+ generatedBy?: string | undefined;
3275
+ } | undefined;
3276
+ } | undefined;
2857
3277
  readonly conditionalRequired?: {
2858
3278
  dialect: "cel" | "js" | "cron" | "template";
2859
3279
  source?: string | undefined;
@@ -2922,6 +3342,13 @@ declare const SystemFile: Omit<{
2922
3342
  readonly referenceFilters?: string[] | undefined;
2923
3343
  readonly writeRequiresMasterRead?: boolean | undefined;
2924
3344
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
3345
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
3346
+ readonly inlineTitle?: string | undefined;
3347
+ readonly inlineColumns?: any[] | undefined;
3348
+ readonly inlineAmountField?: string | undefined;
3349
+ readonly relatedList?: boolean | undefined;
3350
+ readonly relatedListTitle?: string | undefined;
3351
+ readonly relatedListColumns?: any[] | undefined;
2925
3352
  readonly expression?: {
2926
3353
  dialect: "cel" | "js" | "cron" | "template";
2927
3354
  source?: string | undefined;
@@ -2935,6 +3362,7 @@ declare const SystemFile: Omit<{
2935
3362
  object: string;
2936
3363
  field: string;
2937
3364
  function: "min" | "max" | "count" | "sum" | "avg";
3365
+ relationshipField?: string | undefined;
2938
3366
  } | undefined;
2939
3367
  readonly language?: string | undefined;
2940
3368
  readonly lineNumbers?: boolean | undefined;
@@ -3029,6 +3457,33 @@ declare const SystemFile: Omit<{
3029
3457
  threshold: number;
3030
3458
  } | undefined;
3031
3459
  } | undefined;
3460
+ readonly visibleWhen?: {
3461
+ dialect: "cel" | "js" | "cron" | "template";
3462
+ source?: string | undefined;
3463
+ ast?: unknown;
3464
+ meta?: {
3465
+ rationale?: string | undefined;
3466
+ generatedBy?: string | undefined;
3467
+ } | undefined;
3468
+ } | undefined;
3469
+ readonly readonlyWhen?: {
3470
+ dialect: "cel" | "js" | "cron" | "template";
3471
+ source?: string | undefined;
3472
+ ast?: unknown;
3473
+ meta?: {
3474
+ rationale?: string | undefined;
3475
+ generatedBy?: string | undefined;
3476
+ } | undefined;
3477
+ } | undefined;
3478
+ readonly requiredWhen?: {
3479
+ dialect: "cel" | "js" | "cron" | "template";
3480
+ source?: string | undefined;
3481
+ ast?: unknown;
3482
+ meta?: {
3483
+ rationale?: string | undefined;
3484
+ generatedBy?: string | undefined;
3485
+ } | undefined;
3486
+ } | undefined;
3032
3487
  readonly conditionalRequired?: {
3033
3488
  dialect: "cel" | "js" | "cron" | "template";
3034
3489
  source?: string | undefined;
@@ -3097,6 +3552,13 @@ declare const SystemFile: Omit<{
3097
3552
  readonly referenceFilters?: string[] | undefined;
3098
3553
  readonly writeRequiresMasterRead?: boolean | undefined;
3099
3554
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
3555
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
3556
+ readonly inlineTitle?: string | undefined;
3557
+ readonly inlineColumns?: any[] | undefined;
3558
+ readonly inlineAmountField?: string | undefined;
3559
+ readonly relatedList?: boolean | undefined;
3560
+ readonly relatedListTitle?: string | undefined;
3561
+ readonly relatedListColumns?: any[] | undefined;
3100
3562
  readonly expression?: {
3101
3563
  dialect: "cel" | "js" | "cron" | "template";
3102
3564
  source?: string | undefined;
@@ -3110,6 +3572,7 @@ declare const SystemFile: Omit<{
3110
3572
  object: string;
3111
3573
  field: string;
3112
3574
  function: "min" | "max" | "count" | "sum" | "avg";
3575
+ relationshipField?: string | undefined;
3113
3576
  } | undefined;
3114
3577
  readonly language?: string | undefined;
3115
3578
  readonly lineNumbers?: boolean | undefined;
@@ -3204,6 +3667,33 @@ declare const SystemFile: Omit<{
3204
3667
  threshold: number;
3205
3668
  } | undefined;
3206
3669
  } | undefined;
3670
+ readonly visibleWhen?: {
3671
+ dialect: "cel" | "js" | "cron" | "template";
3672
+ source?: string | undefined;
3673
+ ast?: unknown;
3674
+ meta?: {
3675
+ rationale?: string | undefined;
3676
+ generatedBy?: string | undefined;
3677
+ } | undefined;
3678
+ } | undefined;
3679
+ readonly readonlyWhen?: {
3680
+ dialect: "cel" | "js" | "cron" | "template";
3681
+ source?: string | undefined;
3682
+ ast?: unknown;
3683
+ meta?: {
3684
+ rationale?: string | undefined;
3685
+ generatedBy?: string | undefined;
3686
+ } | undefined;
3687
+ } | undefined;
3688
+ readonly requiredWhen?: {
3689
+ dialect: "cel" | "js" | "cron" | "template";
3690
+ source?: string | undefined;
3691
+ ast?: unknown;
3692
+ meta?: {
3693
+ rationale?: string | undefined;
3694
+ generatedBy?: string | undefined;
3695
+ } | undefined;
3696
+ } | undefined;
3207
3697
  readonly conditionalRequired?: {
3208
3698
  dialect: "cel" | "js" | "cron" | "template";
3209
3699
  source?: string | undefined;
@@ -3272,6 +3762,13 @@ declare const SystemFile: Omit<{
3272
3762
  readonly referenceFilters?: string[] | undefined;
3273
3763
  readonly writeRequiresMasterRead?: boolean | undefined;
3274
3764
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
3765
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
3766
+ readonly inlineTitle?: string | undefined;
3767
+ readonly inlineColumns?: any[] | undefined;
3768
+ readonly inlineAmountField?: string | undefined;
3769
+ readonly relatedList?: boolean | undefined;
3770
+ readonly relatedListTitle?: string | undefined;
3771
+ readonly relatedListColumns?: any[] | undefined;
3275
3772
  readonly expression?: {
3276
3773
  dialect: "cel" | "js" | "cron" | "template";
3277
3774
  source?: string | undefined;
@@ -3285,6 +3782,7 @@ declare const SystemFile: Omit<{
3285
3782
  object: string;
3286
3783
  field: string;
3287
3784
  function: "min" | "max" | "count" | "sum" | "avg";
3785
+ relationshipField?: string | undefined;
3288
3786
  } | undefined;
3289
3787
  readonly language?: string | undefined;
3290
3788
  readonly lineNumbers?: boolean | undefined;
@@ -3379,6 +3877,33 @@ declare const SystemFile: Omit<{
3379
3877
  threshold: number;
3380
3878
  } | undefined;
3381
3879
  } | undefined;
3880
+ readonly visibleWhen?: {
3881
+ dialect: "cel" | "js" | "cron" | "template";
3882
+ source?: string | undefined;
3883
+ ast?: unknown;
3884
+ meta?: {
3885
+ rationale?: string | undefined;
3886
+ generatedBy?: string | undefined;
3887
+ } | undefined;
3888
+ } | undefined;
3889
+ readonly readonlyWhen?: {
3890
+ dialect: "cel" | "js" | "cron" | "template";
3891
+ source?: string | undefined;
3892
+ ast?: unknown;
3893
+ meta?: {
3894
+ rationale?: string | undefined;
3895
+ generatedBy?: string | undefined;
3896
+ } | undefined;
3897
+ } | undefined;
3898
+ readonly requiredWhen?: {
3899
+ dialect: "cel" | "js" | "cron" | "template";
3900
+ source?: string | undefined;
3901
+ ast?: unknown;
3902
+ meta?: {
3903
+ rationale?: string | undefined;
3904
+ generatedBy?: string | undefined;
3905
+ } | undefined;
3906
+ } | undefined;
3382
3907
  readonly conditionalRequired?: {
3383
3908
  dialect: "cel" | "js" | "cron" | "template";
3384
3909
  source?: string | undefined;
@@ -3447,6 +3972,13 @@ declare const SystemFile: Omit<{
3447
3972
  readonly referenceFilters?: string[] | undefined;
3448
3973
  readonly writeRequiresMasterRead?: boolean | undefined;
3449
3974
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
3975
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
3976
+ readonly inlineTitle?: string | undefined;
3977
+ readonly inlineColumns?: any[] | undefined;
3978
+ readonly inlineAmountField?: string | undefined;
3979
+ readonly relatedList?: boolean | undefined;
3980
+ readonly relatedListTitle?: string | undefined;
3981
+ readonly relatedListColumns?: any[] | undefined;
3450
3982
  readonly expression?: {
3451
3983
  dialect: "cel" | "js" | "cron" | "template";
3452
3984
  source?: string | undefined;
@@ -3460,6 +3992,7 @@ declare const SystemFile: Omit<{
3460
3992
  object: string;
3461
3993
  field: string;
3462
3994
  function: "min" | "max" | "count" | "sum" | "avg";
3995
+ relationshipField?: string | undefined;
3463
3996
  } | undefined;
3464
3997
  readonly language?: string | undefined;
3465
3998
  readonly lineNumbers?: boolean | undefined;
@@ -3554,6 +4087,33 @@ declare const SystemFile: Omit<{
3554
4087
  threshold: number;
3555
4088
  } | undefined;
3556
4089
  } | undefined;
4090
+ readonly visibleWhen?: {
4091
+ dialect: "cel" | "js" | "cron" | "template";
4092
+ source?: string | undefined;
4093
+ ast?: unknown;
4094
+ meta?: {
4095
+ rationale?: string | undefined;
4096
+ generatedBy?: string | undefined;
4097
+ } | undefined;
4098
+ } | undefined;
4099
+ readonly readonlyWhen?: {
4100
+ dialect: "cel" | "js" | "cron" | "template";
4101
+ source?: string | undefined;
4102
+ ast?: unknown;
4103
+ meta?: {
4104
+ rationale?: string | undefined;
4105
+ generatedBy?: string | undefined;
4106
+ } | undefined;
4107
+ } | undefined;
4108
+ readonly requiredWhen?: {
4109
+ dialect: "cel" | "js" | "cron" | "template";
4110
+ source?: string | undefined;
4111
+ ast?: unknown;
4112
+ meta?: {
4113
+ rationale?: string | undefined;
4114
+ generatedBy?: string | undefined;
4115
+ } | undefined;
4116
+ } | undefined;
3557
4117
  readonly conditionalRequired?: {
3558
4118
  dialect: "cel" | "js" | "cron" | "template";
3559
4119
  source?: string | undefined;
@@ -3623,6 +4183,13 @@ declare const SystemUploadSession: Omit<{
3623
4183
  reference?: string | undefined;
3624
4184
  referenceFilters?: string[] | undefined;
3625
4185
  writeRequiresMasterRead?: boolean | undefined;
4186
+ inlineEdit?: boolean | "grid" | "form" | undefined;
4187
+ inlineTitle?: string | undefined;
4188
+ inlineColumns?: any[] | undefined;
4189
+ inlineAmountField?: string | undefined;
4190
+ relatedList?: boolean | undefined;
4191
+ relatedListTitle?: string | undefined;
4192
+ relatedListColumns?: any[] | undefined;
3626
4193
  expression?: {
3627
4194
  dialect: "cel" | "js" | "cron" | "template";
3628
4195
  source?: string | undefined;
@@ -3644,6 +4211,7 @@ declare const SystemUploadSession: Omit<{
3644
4211
  object: string;
3645
4212
  field: string;
3646
4213
  function: "min" | "max" | "count" | "sum" | "avg";
4214
+ relationshipField?: string | undefined;
3647
4215
  } | undefined;
3648
4216
  language?: string | undefined;
3649
4217
  theme?: string | undefined;
@@ -3757,6 +4325,57 @@ declare const SystemUploadSession: Omit<{
3757
4325
  } | undefined;
3758
4326
  } | undefined;
3759
4327
  group?: string | undefined;
4328
+ visibleWhen?: {
4329
+ dialect: "cel" | "js" | "cron" | "template";
4330
+ source?: string | undefined;
4331
+ ast?: unknown;
4332
+ meta?: {
4333
+ rationale?: string | undefined;
4334
+ generatedBy?: string | undefined;
4335
+ } | undefined;
4336
+ } | {
4337
+ dialect: "cel" | "js" | "cron" | "template";
4338
+ source?: string | undefined;
4339
+ ast?: unknown;
4340
+ meta?: {
4341
+ rationale?: string | undefined;
4342
+ generatedBy?: string | undefined;
4343
+ } | undefined;
4344
+ } | undefined;
4345
+ readonlyWhen?: {
4346
+ dialect: "cel" | "js" | "cron" | "template";
4347
+ source?: string | undefined;
4348
+ ast?: unknown;
4349
+ meta?: {
4350
+ rationale?: string | undefined;
4351
+ generatedBy?: string | undefined;
4352
+ } | undefined;
4353
+ } | {
4354
+ dialect: "cel" | "js" | "cron" | "template";
4355
+ source?: string | undefined;
4356
+ ast?: unknown;
4357
+ meta?: {
4358
+ rationale?: string | undefined;
4359
+ generatedBy?: string | undefined;
4360
+ } | undefined;
4361
+ } | undefined;
4362
+ requiredWhen?: {
4363
+ dialect: "cel" | "js" | "cron" | "template";
4364
+ source?: string | undefined;
4365
+ ast?: unknown;
4366
+ meta?: {
4367
+ rationale?: string | undefined;
4368
+ generatedBy?: string | undefined;
4369
+ } | undefined;
4370
+ } | {
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;
3760
4379
  conditionalRequired?: {
3761
4380
  dialect: "cel" | "js" | "cron" | "template";
3762
4381
  source?: string | undefined;
@@ -3898,7 +4517,7 @@ declare const SystemUploadSession: Omit<{
3898
4517
  } | undefined;
3899
4518
  compactLayout?: string[] | undefined;
3900
4519
  listViews?: Record<string, {
3901
- type: "map" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "grid";
4520
+ type: "map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart";
3902
4521
  columns: string[] | {
3903
4522
  field: string;
3904
4523
  label?: string | undefined;
@@ -4067,7 +4686,7 @@ declare const SystemUploadSession: Omit<{
4067
4686
  } | undefined;
4068
4687
  appearance?: {
4069
4688
  showDescription: boolean;
4070
- allowedVisualizations?: ("map" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "grid")[] | undefined;
4689
+ allowedVisualizations?: ("map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline")[] | undefined;
4071
4690
  } | undefined;
4072
4691
  tabs?: {
4073
4692
  name: string;
@@ -4087,7 +4706,7 @@ declare const SystemUploadSession: Omit<{
4087
4706
  addRecord?: {
4088
4707
  enabled: boolean;
4089
4708
  position: "top" | "bottom" | "both";
4090
- mode: "modal" | "form" | "inline";
4709
+ mode: "form" | "modal" | "inline";
4091
4710
  formView?: string | undefined;
4092
4711
  } | undefined;
4093
4712
  showRecordCount?: boolean | undefined;
@@ -4173,7 +4792,7 @@ declare const SystemUploadSession: Omit<{
4173
4792
  actions?: {
4174
4793
  name: string;
4175
4794
  label: string;
4176
- type: "url" | "flow" | "api" | "script" | "modal" | "form";
4795
+ type: "url" | "form" | "flow" | "api" | "script" | "modal";
4177
4796
  refreshAfter: boolean;
4178
4797
  objectName?: string | undefined;
4179
4798
  icon?: string | undefined;
@@ -4241,7 +4860,18 @@ declare const SystemUploadSession: Omit<{
4241
4860
  } | undefined;
4242
4861
  shortcut?: string | undefined;
4243
4862
  bulkEnabled?: boolean | undefined;
4244
- aiExposed?: boolean | undefined;
4863
+ ai?: {
4864
+ exposed: boolean;
4865
+ description?: string | undefined;
4866
+ category?: "action" | "data" | "flow" | "integration" | "vector_search" | "analytics" | "utility" | undefined;
4867
+ paramHints?: Record<string, {
4868
+ description?: string | undefined;
4869
+ enum?: (string | number)[] | undefined;
4870
+ examples?: unknown[] | undefined;
4871
+ }> | undefined;
4872
+ outputSchema?: Record<string, unknown> | undefined;
4873
+ requiresConfirmation?: boolean | undefined;
4874
+ } | undefined;
4245
4875
  recordIdParam?: string | undefined;
4246
4876
  recordIdField?: string | undefined;
4247
4877
  bodyShape?: "flat" | {
@@ -4322,6 +4952,13 @@ declare const SystemUploadSession: Omit<{
4322
4952
  readonly referenceFilters?: string[] | undefined;
4323
4953
  readonly writeRequiresMasterRead?: boolean | undefined;
4324
4954
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
4955
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
4956
+ readonly inlineTitle?: string | undefined;
4957
+ readonly inlineColumns?: any[] | undefined;
4958
+ readonly inlineAmountField?: string | undefined;
4959
+ readonly relatedList?: boolean | undefined;
4960
+ readonly relatedListTitle?: string | undefined;
4961
+ readonly relatedListColumns?: any[] | undefined;
4325
4962
  readonly expression?: {
4326
4963
  dialect: "cel" | "js" | "cron" | "template";
4327
4964
  source?: string | undefined;
@@ -4335,6 +4972,7 @@ declare const SystemUploadSession: Omit<{
4335
4972
  object: string;
4336
4973
  field: string;
4337
4974
  function: "min" | "max" | "count" | "sum" | "avg";
4975
+ relationshipField?: string | undefined;
4338
4976
  } | undefined;
4339
4977
  readonly language?: string | undefined;
4340
4978
  readonly lineNumbers?: boolean | undefined;
@@ -4429,6 +5067,33 @@ declare const SystemUploadSession: Omit<{
4429
5067
  threshold: number;
4430
5068
  } | undefined;
4431
5069
  } | undefined;
5070
+ readonly visibleWhen?: {
5071
+ dialect: "cel" | "js" | "cron" | "template";
5072
+ source?: string | undefined;
5073
+ ast?: unknown;
5074
+ meta?: {
5075
+ rationale?: string | undefined;
5076
+ generatedBy?: string | undefined;
5077
+ } | undefined;
5078
+ } | undefined;
5079
+ readonly readonlyWhen?: {
5080
+ dialect: "cel" | "js" | "cron" | "template";
5081
+ source?: string | undefined;
5082
+ ast?: unknown;
5083
+ meta?: {
5084
+ rationale?: string | undefined;
5085
+ generatedBy?: string | undefined;
5086
+ } | undefined;
5087
+ } | undefined;
5088
+ readonly requiredWhen?: {
5089
+ dialect: "cel" | "js" | "cron" | "template";
5090
+ source?: string | undefined;
5091
+ ast?: unknown;
5092
+ meta?: {
5093
+ rationale?: string | undefined;
5094
+ generatedBy?: string | undefined;
5095
+ } | undefined;
5096
+ } | undefined;
4432
5097
  readonly conditionalRequired?: {
4433
5098
  dialect: "cel" | "js" | "cron" | "template";
4434
5099
  source?: string | undefined;
@@ -4497,6 +5162,13 @@ declare const SystemUploadSession: Omit<{
4497
5162
  readonly referenceFilters?: string[] | undefined;
4498
5163
  readonly writeRequiresMasterRead?: boolean | undefined;
4499
5164
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
5165
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
5166
+ readonly inlineTitle?: string | undefined;
5167
+ readonly inlineColumns?: any[] | undefined;
5168
+ readonly inlineAmountField?: string | undefined;
5169
+ readonly relatedList?: boolean | undefined;
5170
+ readonly relatedListTitle?: string | undefined;
5171
+ readonly relatedListColumns?: any[] | undefined;
4500
5172
  readonly expression?: {
4501
5173
  dialect: "cel" | "js" | "cron" | "template";
4502
5174
  source?: string | undefined;
@@ -4510,6 +5182,7 @@ declare const SystemUploadSession: Omit<{
4510
5182
  object: string;
4511
5183
  field: string;
4512
5184
  function: "min" | "max" | "count" | "sum" | "avg";
5185
+ relationshipField?: string | undefined;
4513
5186
  } | undefined;
4514
5187
  readonly language?: string | undefined;
4515
5188
  readonly lineNumbers?: boolean | undefined;
@@ -4604,6 +5277,33 @@ declare const SystemUploadSession: Omit<{
4604
5277
  threshold: number;
4605
5278
  } | undefined;
4606
5279
  } | undefined;
5280
+ readonly visibleWhen?: {
5281
+ dialect: "cel" | "js" | "cron" | "template";
5282
+ source?: string | undefined;
5283
+ ast?: unknown;
5284
+ meta?: {
5285
+ rationale?: string | undefined;
5286
+ generatedBy?: string | undefined;
5287
+ } | undefined;
5288
+ } | undefined;
5289
+ readonly readonlyWhen?: {
5290
+ dialect: "cel" | "js" | "cron" | "template";
5291
+ source?: string | undefined;
5292
+ ast?: unknown;
5293
+ meta?: {
5294
+ rationale?: string | undefined;
5295
+ generatedBy?: string | undefined;
5296
+ } | undefined;
5297
+ } | undefined;
5298
+ readonly requiredWhen?: {
5299
+ dialect: "cel" | "js" | "cron" | "template";
5300
+ source?: string | undefined;
5301
+ ast?: unknown;
5302
+ meta?: {
5303
+ rationale?: string | undefined;
5304
+ generatedBy?: string | undefined;
5305
+ } | undefined;
5306
+ } | undefined;
4607
5307
  readonly conditionalRequired?: {
4608
5308
  dialect: "cel" | "js" | "cron" | "template";
4609
5309
  source?: string | undefined;
@@ -4672,6 +5372,13 @@ declare const SystemUploadSession: Omit<{
4672
5372
  readonly referenceFilters?: string[] | undefined;
4673
5373
  readonly writeRequiresMasterRead?: boolean | undefined;
4674
5374
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
5375
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
5376
+ readonly inlineTitle?: string | undefined;
5377
+ readonly inlineColumns?: any[] | undefined;
5378
+ readonly inlineAmountField?: string | undefined;
5379
+ readonly relatedList?: boolean | undefined;
5380
+ readonly relatedListTitle?: string | undefined;
5381
+ readonly relatedListColumns?: any[] | undefined;
4675
5382
  readonly expression?: {
4676
5383
  dialect: "cel" | "js" | "cron" | "template";
4677
5384
  source?: string | undefined;
@@ -4685,6 +5392,7 @@ declare const SystemUploadSession: Omit<{
4685
5392
  object: string;
4686
5393
  field: string;
4687
5394
  function: "min" | "max" | "count" | "sum" | "avg";
5395
+ relationshipField?: string | undefined;
4688
5396
  } | undefined;
4689
5397
  readonly language?: string | undefined;
4690
5398
  readonly lineNumbers?: boolean | undefined;
@@ -4779,6 +5487,33 @@ declare const SystemUploadSession: Omit<{
4779
5487
  threshold: number;
4780
5488
  } | undefined;
4781
5489
  } | undefined;
5490
+ readonly visibleWhen?: {
5491
+ dialect: "cel" | "js" | "cron" | "template";
5492
+ source?: string | undefined;
5493
+ ast?: unknown;
5494
+ meta?: {
5495
+ rationale?: string | undefined;
5496
+ generatedBy?: string | undefined;
5497
+ } | undefined;
5498
+ } | undefined;
5499
+ readonly readonlyWhen?: {
5500
+ dialect: "cel" | "js" | "cron" | "template";
5501
+ source?: string | undefined;
5502
+ ast?: unknown;
5503
+ meta?: {
5504
+ rationale?: string | undefined;
5505
+ generatedBy?: string | undefined;
5506
+ } | undefined;
5507
+ } | undefined;
5508
+ readonly requiredWhen?: {
5509
+ dialect: "cel" | "js" | "cron" | "template";
5510
+ source?: string | undefined;
5511
+ ast?: unknown;
5512
+ meta?: {
5513
+ rationale?: string | undefined;
5514
+ generatedBy?: string | undefined;
5515
+ } | undefined;
5516
+ } | undefined;
4782
5517
  readonly conditionalRequired?: {
4783
5518
  dialect: "cel" | "js" | "cron" | "template";
4784
5519
  source?: string | undefined;
@@ -4847,6 +5582,13 @@ declare const SystemUploadSession: Omit<{
4847
5582
  readonly referenceFilters?: string[] | undefined;
4848
5583
  readonly writeRequiresMasterRead?: boolean | undefined;
4849
5584
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
5585
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
5586
+ readonly inlineTitle?: string | undefined;
5587
+ readonly inlineColumns?: any[] | undefined;
5588
+ readonly inlineAmountField?: string | undefined;
5589
+ readonly relatedList?: boolean | undefined;
5590
+ readonly relatedListTitle?: string | undefined;
5591
+ readonly relatedListColumns?: any[] | undefined;
4850
5592
  readonly expression?: {
4851
5593
  dialect: "cel" | "js" | "cron" | "template";
4852
5594
  source?: string | undefined;
@@ -4860,6 +5602,7 @@ declare const SystemUploadSession: Omit<{
4860
5602
  object: string;
4861
5603
  field: string;
4862
5604
  function: "min" | "max" | "count" | "sum" | "avg";
5605
+ relationshipField?: string | undefined;
4863
5606
  } | undefined;
4864
5607
  readonly language?: string | undefined;
4865
5608
  readonly lineNumbers?: boolean | undefined;
@@ -4954,6 +5697,33 @@ declare const SystemUploadSession: Omit<{
4954
5697
  threshold: number;
4955
5698
  } | undefined;
4956
5699
  } | undefined;
5700
+ readonly visibleWhen?: {
5701
+ dialect: "cel" | "js" | "cron" | "template";
5702
+ source?: string | undefined;
5703
+ ast?: unknown;
5704
+ meta?: {
5705
+ rationale?: string | undefined;
5706
+ generatedBy?: string | undefined;
5707
+ } | undefined;
5708
+ } | undefined;
5709
+ readonly readonlyWhen?: {
5710
+ dialect: "cel" | "js" | "cron" | "template";
5711
+ source?: string | undefined;
5712
+ ast?: unknown;
5713
+ meta?: {
5714
+ rationale?: string | undefined;
5715
+ generatedBy?: string | undefined;
5716
+ } | undefined;
5717
+ } | undefined;
5718
+ readonly requiredWhen?: {
5719
+ dialect: "cel" | "js" | "cron" | "template";
5720
+ source?: string | undefined;
5721
+ ast?: unknown;
5722
+ meta?: {
5723
+ rationale?: string | undefined;
5724
+ generatedBy?: string | undefined;
5725
+ } | undefined;
5726
+ } | undefined;
4957
5727
  readonly conditionalRequired?: {
4958
5728
  dialect: "cel" | "js" | "cron" | "template";
4959
5729
  source?: string | undefined;
@@ -5022,6 +5792,13 @@ declare const SystemUploadSession: Omit<{
5022
5792
  readonly referenceFilters?: string[] | undefined;
5023
5793
  readonly writeRequiresMasterRead?: boolean | undefined;
5024
5794
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
5795
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
5796
+ readonly inlineTitle?: string | undefined;
5797
+ readonly inlineColumns?: any[] | undefined;
5798
+ readonly inlineAmountField?: string | undefined;
5799
+ readonly relatedList?: boolean | undefined;
5800
+ readonly relatedListTitle?: string | undefined;
5801
+ readonly relatedListColumns?: any[] | undefined;
5025
5802
  readonly expression?: {
5026
5803
  dialect: "cel" | "js" | "cron" | "template";
5027
5804
  source?: string | undefined;
@@ -5035,6 +5812,7 @@ declare const SystemUploadSession: Omit<{
5035
5812
  object: string;
5036
5813
  field: string;
5037
5814
  function: "min" | "max" | "count" | "sum" | "avg";
5815
+ relationshipField?: string | undefined;
5038
5816
  } | undefined;
5039
5817
  readonly language?: string | undefined;
5040
5818
  readonly lineNumbers?: boolean | undefined;
@@ -5129,6 +5907,33 @@ declare const SystemUploadSession: Omit<{
5129
5907
  threshold: number;
5130
5908
  } | undefined;
5131
5909
  } | undefined;
5910
+ readonly visibleWhen?: {
5911
+ dialect: "cel" | "js" | "cron" | "template";
5912
+ source?: string | undefined;
5913
+ ast?: unknown;
5914
+ meta?: {
5915
+ rationale?: string | undefined;
5916
+ generatedBy?: string | undefined;
5917
+ } | undefined;
5918
+ } | undefined;
5919
+ readonly readonlyWhen?: {
5920
+ dialect: "cel" | "js" | "cron" | "template";
5921
+ source?: string | undefined;
5922
+ ast?: unknown;
5923
+ meta?: {
5924
+ rationale?: string | undefined;
5925
+ generatedBy?: string | undefined;
5926
+ } | undefined;
5927
+ } | undefined;
5928
+ readonly requiredWhen?: {
5929
+ dialect: "cel" | "js" | "cron" | "template";
5930
+ source?: string | undefined;
5931
+ ast?: unknown;
5932
+ meta?: {
5933
+ rationale?: string | undefined;
5934
+ generatedBy?: string | undefined;
5935
+ } | undefined;
5936
+ } | undefined;
5132
5937
  readonly conditionalRequired?: {
5133
5938
  dialect: "cel" | "js" | "cron" | "template";
5134
5939
  source?: string | undefined;
@@ -5197,6 +6002,13 @@ declare const SystemUploadSession: Omit<{
5197
6002
  readonly referenceFilters?: string[] | undefined;
5198
6003
  readonly writeRequiresMasterRead?: boolean | undefined;
5199
6004
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
6005
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
6006
+ readonly inlineTitle?: string | undefined;
6007
+ readonly inlineColumns?: any[] | undefined;
6008
+ readonly inlineAmountField?: string | undefined;
6009
+ readonly relatedList?: boolean | undefined;
6010
+ readonly relatedListTitle?: string | undefined;
6011
+ readonly relatedListColumns?: any[] | undefined;
5200
6012
  readonly expression?: {
5201
6013
  dialect: "cel" | "js" | "cron" | "template";
5202
6014
  source?: string | undefined;
@@ -5210,6 +6022,7 @@ declare const SystemUploadSession: Omit<{
5210
6022
  object: string;
5211
6023
  field: string;
5212
6024
  function: "min" | "max" | "count" | "sum" | "avg";
6025
+ relationshipField?: string | undefined;
5213
6026
  } | undefined;
5214
6027
  readonly language?: string | undefined;
5215
6028
  readonly lineNumbers?: boolean | undefined;
@@ -5304,6 +6117,33 @@ declare const SystemUploadSession: Omit<{
5304
6117
  threshold: number;
5305
6118
  } | undefined;
5306
6119
  } | undefined;
6120
+ readonly visibleWhen?: {
6121
+ dialect: "cel" | "js" | "cron" | "template";
6122
+ source?: string | undefined;
6123
+ ast?: unknown;
6124
+ meta?: {
6125
+ rationale?: string | undefined;
6126
+ generatedBy?: string | undefined;
6127
+ } | undefined;
6128
+ } | undefined;
6129
+ readonly readonlyWhen?: {
6130
+ dialect: "cel" | "js" | "cron" | "template";
6131
+ source?: string | undefined;
6132
+ ast?: unknown;
6133
+ meta?: {
6134
+ rationale?: string | undefined;
6135
+ generatedBy?: string | undefined;
6136
+ } | undefined;
6137
+ } | undefined;
6138
+ readonly requiredWhen?: {
6139
+ dialect: "cel" | "js" | "cron" | "template";
6140
+ source?: string | undefined;
6141
+ ast?: unknown;
6142
+ meta?: {
6143
+ rationale?: string | undefined;
6144
+ generatedBy?: string | undefined;
6145
+ } | undefined;
6146
+ } | undefined;
5307
6147
  readonly conditionalRequired?: {
5308
6148
  dialect: "cel" | "js" | "cron" | "template";
5309
6149
  source?: string | undefined;
@@ -5372,6 +6212,13 @@ declare const SystemUploadSession: Omit<{
5372
6212
  readonly referenceFilters?: string[] | undefined;
5373
6213
  readonly writeRequiresMasterRead?: boolean | undefined;
5374
6214
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
6215
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
6216
+ readonly inlineTitle?: string | undefined;
6217
+ readonly inlineColumns?: any[] | undefined;
6218
+ readonly inlineAmountField?: string | undefined;
6219
+ readonly relatedList?: boolean | undefined;
6220
+ readonly relatedListTitle?: string | undefined;
6221
+ readonly relatedListColumns?: any[] | undefined;
5375
6222
  readonly expression?: {
5376
6223
  dialect: "cel" | "js" | "cron" | "template";
5377
6224
  source?: string | undefined;
@@ -5385,6 +6232,7 @@ declare const SystemUploadSession: Omit<{
5385
6232
  object: string;
5386
6233
  field: string;
5387
6234
  function: "min" | "max" | "count" | "sum" | "avg";
6235
+ relationshipField?: string | undefined;
5388
6236
  } | undefined;
5389
6237
  readonly language?: string | undefined;
5390
6238
  readonly lineNumbers?: boolean | undefined;
@@ -5479,6 +6327,33 @@ declare const SystemUploadSession: Omit<{
5479
6327
  threshold: number;
5480
6328
  } | undefined;
5481
6329
  } | undefined;
6330
+ readonly visibleWhen?: {
6331
+ dialect: "cel" | "js" | "cron" | "template";
6332
+ source?: string | undefined;
6333
+ ast?: unknown;
6334
+ meta?: {
6335
+ rationale?: string | undefined;
6336
+ generatedBy?: string | undefined;
6337
+ } | undefined;
6338
+ } | undefined;
6339
+ readonly readonlyWhen?: {
6340
+ dialect: "cel" | "js" | "cron" | "template";
6341
+ source?: string | undefined;
6342
+ ast?: unknown;
6343
+ meta?: {
6344
+ rationale?: string | undefined;
6345
+ generatedBy?: string | undefined;
6346
+ } | undefined;
6347
+ } | undefined;
6348
+ readonly requiredWhen?: {
6349
+ dialect: "cel" | "js" | "cron" | "template";
6350
+ source?: string | undefined;
6351
+ ast?: unknown;
6352
+ meta?: {
6353
+ rationale?: string | undefined;
6354
+ generatedBy?: string | undefined;
6355
+ } | undefined;
6356
+ } | undefined;
5482
6357
  readonly conditionalRequired?: {
5483
6358
  dialect: "cel" | "js" | "cron" | "template";
5484
6359
  source?: string | undefined;
@@ -5547,6 +6422,13 @@ declare const SystemUploadSession: Omit<{
5547
6422
  readonly referenceFilters?: string[] | undefined;
5548
6423
  readonly writeRequiresMasterRead?: boolean | undefined;
5549
6424
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
6425
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
6426
+ readonly inlineTitle?: string | undefined;
6427
+ readonly inlineColumns?: any[] | undefined;
6428
+ readonly inlineAmountField?: string | undefined;
6429
+ readonly relatedList?: boolean | undefined;
6430
+ readonly relatedListTitle?: string | undefined;
6431
+ readonly relatedListColumns?: any[] | undefined;
5550
6432
  readonly expression?: {
5551
6433
  dialect: "cel" | "js" | "cron" | "template";
5552
6434
  source?: string | undefined;
@@ -5560,6 +6442,7 @@ declare const SystemUploadSession: Omit<{
5560
6442
  object: string;
5561
6443
  field: string;
5562
6444
  function: "min" | "max" | "count" | "sum" | "avg";
6445
+ relationshipField?: string | undefined;
5563
6446
  } | undefined;
5564
6447
  readonly language?: string | undefined;
5565
6448
  readonly lineNumbers?: boolean | undefined;
@@ -5654,6 +6537,33 @@ declare const SystemUploadSession: Omit<{
5654
6537
  threshold: number;
5655
6538
  } | undefined;
5656
6539
  } | undefined;
6540
+ readonly visibleWhen?: {
6541
+ dialect: "cel" | "js" | "cron" | "template";
6542
+ source?: string | undefined;
6543
+ ast?: unknown;
6544
+ meta?: {
6545
+ rationale?: string | undefined;
6546
+ generatedBy?: string | undefined;
6547
+ } | undefined;
6548
+ } | undefined;
6549
+ readonly readonlyWhen?: {
6550
+ dialect: "cel" | "js" | "cron" | "template";
6551
+ source?: string | undefined;
6552
+ ast?: unknown;
6553
+ meta?: {
6554
+ rationale?: string | undefined;
6555
+ generatedBy?: string | undefined;
6556
+ } | undefined;
6557
+ } | undefined;
6558
+ readonly requiredWhen?: {
6559
+ dialect: "cel" | "js" | "cron" | "template";
6560
+ source?: string | undefined;
6561
+ ast?: unknown;
6562
+ meta?: {
6563
+ rationale?: string | undefined;
6564
+ generatedBy?: string | undefined;
6565
+ } | undefined;
6566
+ } | undefined;
5657
6567
  readonly conditionalRequired?: {
5658
6568
  dialect: "cel" | "js" | "cron" | "template";
5659
6569
  source?: string | undefined;
@@ -5722,6 +6632,13 @@ declare const SystemUploadSession: Omit<{
5722
6632
  readonly referenceFilters?: string[] | undefined;
5723
6633
  readonly writeRequiresMasterRead?: boolean | undefined;
5724
6634
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
6635
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
6636
+ readonly inlineTitle?: string | undefined;
6637
+ readonly inlineColumns?: any[] | undefined;
6638
+ readonly inlineAmountField?: string | undefined;
6639
+ readonly relatedList?: boolean | undefined;
6640
+ readonly relatedListTitle?: string | undefined;
6641
+ readonly relatedListColumns?: any[] | undefined;
5725
6642
  readonly expression?: {
5726
6643
  dialect: "cel" | "js" | "cron" | "template";
5727
6644
  source?: string | undefined;
@@ -5735,6 +6652,7 @@ declare const SystemUploadSession: Omit<{
5735
6652
  object: string;
5736
6653
  field: string;
5737
6654
  function: "min" | "max" | "count" | "sum" | "avg";
6655
+ relationshipField?: string | undefined;
5738
6656
  } | undefined;
5739
6657
  readonly language?: string | undefined;
5740
6658
  readonly lineNumbers?: boolean | undefined;
@@ -5829,6 +6747,33 @@ declare const SystemUploadSession: Omit<{
5829
6747
  threshold: number;
5830
6748
  } | undefined;
5831
6749
  } | undefined;
6750
+ readonly visibleWhen?: {
6751
+ dialect: "cel" | "js" | "cron" | "template";
6752
+ source?: string | undefined;
6753
+ ast?: unknown;
6754
+ meta?: {
6755
+ rationale?: string | undefined;
6756
+ generatedBy?: string | undefined;
6757
+ } | undefined;
6758
+ } | undefined;
6759
+ readonly readonlyWhen?: {
6760
+ dialect: "cel" | "js" | "cron" | "template";
6761
+ source?: string | undefined;
6762
+ ast?: unknown;
6763
+ meta?: {
6764
+ rationale?: string | undefined;
6765
+ generatedBy?: string | undefined;
6766
+ } | undefined;
6767
+ } | undefined;
6768
+ readonly requiredWhen?: {
6769
+ dialect: "cel" | "js" | "cron" | "template";
6770
+ source?: string | undefined;
6771
+ ast?: unknown;
6772
+ meta?: {
6773
+ rationale?: string | undefined;
6774
+ generatedBy?: string | undefined;
6775
+ } | undefined;
6776
+ } | undefined;
5832
6777
  readonly conditionalRequired?: {
5833
6778
  dialect: "cel" | "js" | "cron" | "template";
5834
6779
  source?: string | undefined;
@@ -5897,6 +6842,13 @@ declare const SystemUploadSession: Omit<{
5897
6842
  readonly referenceFilters?: string[] | undefined;
5898
6843
  readonly writeRequiresMasterRead?: boolean | undefined;
5899
6844
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
6845
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
6846
+ readonly inlineTitle?: string | undefined;
6847
+ readonly inlineColumns?: any[] | undefined;
6848
+ readonly inlineAmountField?: string | undefined;
6849
+ readonly relatedList?: boolean | undefined;
6850
+ readonly relatedListTitle?: string | undefined;
6851
+ readonly relatedListColumns?: any[] | undefined;
5900
6852
  readonly expression?: {
5901
6853
  dialect: "cel" | "js" | "cron" | "template";
5902
6854
  source?: string | undefined;
@@ -5910,6 +6862,7 @@ declare const SystemUploadSession: Omit<{
5910
6862
  object: string;
5911
6863
  field: string;
5912
6864
  function: "min" | "max" | "count" | "sum" | "avg";
6865
+ relationshipField?: string | undefined;
5913
6866
  } | undefined;
5914
6867
  readonly language?: string | undefined;
5915
6868
  readonly lineNumbers?: boolean | undefined;
@@ -6004,6 +6957,33 @@ declare const SystemUploadSession: Omit<{
6004
6957
  threshold: number;
6005
6958
  } | undefined;
6006
6959
  } | undefined;
6960
+ readonly visibleWhen?: {
6961
+ dialect: "cel" | "js" | "cron" | "template";
6962
+ source?: string | undefined;
6963
+ ast?: unknown;
6964
+ meta?: {
6965
+ rationale?: string | undefined;
6966
+ generatedBy?: string | undefined;
6967
+ } | undefined;
6968
+ } | undefined;
6969
+ readonly readonlyWhen?: {
6970
+ dialect: "cel" | "js" | "cron" | "template";
6971
+ source?: string | undefined;
6972
+ ast?: unknown;
6973
+ meta?: {
6974
+ rationale?: string | undefined;
6975
+ generatedBy?: string | undefined;
6976
+ } | undefined;
6977
+ } | undefined;
6978
+ readonly requiredWhen?: {
6979
+ dialect: "cel" | "js" | "cron" | "template";
6980
+ source?: string | undefined;
6981
+ ast?: unknown;
6982
+ meta?: {
6983
+ rationale?: string | undefined;
6984
+ generatedBy?: string | undefined;
6985
+ } | undefined;
6986
+ } | undefined;
6007
6987
  readonly conditionalRequired?: {
6008
6988
  dialect: "cel" | "js" | "cron" | "template";
6009
6989
  source?: string | undefined;
@@ -6072,6 +7052,13 @@ declare const SystemUploadSession: Omit<{
6072
7052
  readonly referenceFilters?: string[] | undefined;
6073
7053
  readonly writeRequiresMasterRead?: boolean | undefined;
6074
7054
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
7055
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
7056
+ readonly inlineTitle?: string | undefined;
7057
+ readonly inlineColumns?: any[] | undefined;
7058
+ readonly inlineAmountField?: string | undefined;
7059
+ readonly relatedList?: boolean | undefined;
7060
+ readonly relatedListTitle?: string | undefined;
7061
+ readonly relatedListColumns?: any[] | undefined;
6075
7062
  readonly expression?: {
6076
7063
  dialect: "cel" | "js" | "cron" | "template";
6077
7064
  source?: string | undefined;
@@ -6085,6 +7072,7 @@ declare const SystemUploadSession: Omit<{
6085
7072
  object: string;
6086
7073
  field: string;
6087
7074
  function: "min" | "max" | "count" | "sum" | "avg";
7075
+ relationshipField?: string | undefined;
6088
7076
  } | undefined;
6089
7077
  readonly language?: string | undefined;
6090
7078
  readonly lineNumbers?: boolean | undefined;
@@ -6179,6 +7167,33 @@ declare const SystemUploadSession: Omit<{
6179
7167
  threshold: number;
6180
7168
  } | undefined;
6181
7169
  } | undefined;
7170
+ readonly visibleWhen?: {
7171
+ dialect: "cel" | "js" | "cron" | "template";
7172
+ source?: string | undefined;
7173
+ ast?: unknown;
7174
+ meta?: {
7175
+ rationale?: string | undefined;
7176
+ generatedBy?: string | undefined;
7177
+ } | undefined;
7178
+ } | undefined;
7179
+ readonly readonlyWhen?: {
7180
+ dialect: "cel" | "js" | "cron" | "template";
7181
+ source?: string | undefined;
7182
+ ast?: unknown;
7183
+ meta?: {
7184
+ rationale?: string | undefined;
7185
+ generatedBy?: string | undefined;
7186
+ } | undefined;
7187
+ } | undefined;
7188
+ readonly requiredWhen?: {
7189
+ dialect: "cel" | "js" | "cron" | "template";
7190
+ source?: string | undefined;
7191
+ ast?: unknown;
7192
+ meta?: {
7193
+ rationale?: string | undefined;
7194
+ generatedBy?: string | undefined;
7195
+ } | undefined;
7196
+ } | undefined;
6182
7197
  readonly conditionalRequired?: {
6183
7198
  dialect: "cel" | "js" | "cron" | "template";
6184
7199
  source?: string | undefined;
@@ -6247,6 +7262,13 @@ declare const SystemUploadSession: Omit<{
6247
7262
  readonly referenceFilters?: string[] | undefined;
6248
7263
  readonly writeRequiresMasterRead?: boolean | undefined;
6249
7264
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
7265
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
7266
+ readonly inlineTitle?: string | undefined;
7267
+ readonly inlineColumns?: any[] | undefined;
7268
+ readonly inlineAmountField?: string | undefined;
7269
+ readonly relatedList?: boolean | undefined;
7270
+ readonly relatedListTitle?: string | undefined;
7271
+ readonly relatedListColumns?: any[] | undefined;
6250
7272
  readonly expression?: {
6251
7273
  dialect: "cel" | "js" | "cron" | "template";
6252
7274
  source?: string | undefined;
@@ -6260,6 +7282,7 @@ declare const SystemUploadSession: Omit<{
6260
7282
  object: string;
6261
7283
  field: string;
6262
7284
  function: "min" | "max" | "count" | "sum" | "avg";
7285
+ relationshipField?: string | undefined;
6263
7286
  } | undefined;
6264
7287
  readonly language?: string | undefined;
6265
7288
  readonly lineNumbers?: boolean | undefined;
@@ -6354,6 +7377,33 @@ declare const SystemUploadSession: Omit<{
6354
7377
  threshold: number;
6355
7378
  } | undefined;
6356
7379
  } | undefined;
7380
+ readonly visibleWhen?: {
7381
+ dialect: "cel" | "js" | "cron" | "template";
7382
+ source?: string | undefined;
7383
+ ast?: unknown;
7384
+ meta?: {
7385
+ rationale?: string | undefined;
7386
+ generatedBy?: string | undefined;
7387
+ } | undefined;
7388
+ } | undefined;
7389
+ readonly readonlyWhen?: {
7390
+ dialect: "cel" | "js" | "cron" | "template";
7391
+ source?: string | undefined;
7392
+ ast?: unknown;
7393
+ meta?: {
7394
+ rationale?: string | undefined;
7395
+ generatedBy?: string | undefined;
7396
+ } | undefined;
7397
+ } | undefined;
7398
+ readonly requiredWhen?: {
7399
+ dialect: "cel" | "js" | "cron" | "template";
7400
+ source?: string | undefined;
7401
+ ast?: unknown;
7402
+ meta?: {
7403
+ rationale?: string | undefined;
7404
+ generatedBy?: string | undefined;
7405
+ } | undefined;
7406
+ } | undefined;
6357
7407
  readonly conditionalRequired?: {
6358
7408
  dialect: "cel" | "js" | "cron" | "template";
6359
7409
  source?: string | undefined;
@@ -6422,6 +7472,13 @@ declare const SystemUploadSession: Omit<{
6422
7472
  readonly referenceFilters?: string[] | undefined;
6423
7473
  readonly writeRequiresMasterRead?: boolean | undefined;
6424
7474
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
7475
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
7476
+ readonly inlineTitle?: string | undefined;
7477
+ readonly inlineColumns?: any[] | undefined;
7478
+ readonly inlineAmountField?: string | undefined;
7479
+ readonly relatedList?: boolean | undefined;
7480
+ readonly relatedListTitle?: string | undefined;
7481
+ readonly relatedListColumns?: any[] | undefined;
6425
7482
  readonly expression?: {
6426
7483
  dialect: "cel" | "js" | "cron" | "template";
6427
7484
  source?: string | undefined;
@@ -6435,6 +7492,7 @@ declare const SystemUploadSession: Omit<{
6435
7492
  object: string;
6436
7493
  field: string;
6437
7494
  function: "min" | "max" | "count" | "sum" | "avg";
7495
+ relationshipField?: string | undefined;
6438
7496
  } | undefined;
6439
7497
  readonly language?: string | undefined;
6440
7498
  readonly lineNumbers?: boolean | undefined;
@@ -6529,6 +7587,33 @@ declare const SystemUploadSession: Omit<{
6529
7587
  threshold: number;
6530
7588
  } | undefined;
6531
7589
  } | undefined;
7590
+ readonly visibleWhen?: {
7591
+ dialect: "cel" | "js" | "cron" | "template";
7592
+ source?: string | undefined;
7593
+ ast?: unknown;
7594
+ meta?: {
7595
+ rationale?: string | undefined;
7596
+ generatedBy?: string | undefined;
7597
+ } | undefined;
7598
+ } | undefined;
7599
+ readonly readonlyWhen?: {
7600
+ dialect: "cel" | "js" | "cron" | "template";
7601
+ source?: string | undefined;
7602
+ ast?: unknown;
7603
+ meta?: {
7604
+ rationale?: string | undefined;
7605
+ generatedBy?: string | undefined;
7606
+ } | undefined;
7607
+ } | undefined;
7608
+ readonly requiredWhen?: {
7609
+ dialect: "cel" | "js" | "cron" | "template";
7610
+ source?: string | undefined;
7611
+ ast?: unknown;
7612
+ meta?: {
7613
+ rationale?: string | undefined;
7614
+ generatedBy?: string | undefined;
7615
+ } | undefined;
7616
+ } | undefined;
6532
7617
  readonly conditionalRequired?: {
6533
7618
  dialect: "cel" | "js" | "cron" | "template";
6534
7619
  source?: string | undefined;
@@ -6597,6 +7682,13 @@ declare const SystemUploadSession: Omit<{
6597
7682
  readonly referenceFilters?: string[] | undefined;
6598
7683
  readonly writeRequiresMasterRead?: boolean | undefined;
6599
7684
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
7685
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
7686
+ readonly inlineTitle?: string | undefined;
7687
+ readonly inlineColumns?: any[] | undefined;
7688
+ readonly inlineAmountField?: string | undefined;
7689
+ readonly relatedList?: boolean | undefined;
7690
+ readonly relatedListTitle?: string | undefined;
7691
+ readonly relatedListColumns?: any[] | undefined;
6600
7692
  readonly expression?: {
6601
7693
  dialect: "cel" | "js" | "cron" | "template";
6602
7694
  source?: string | undefined;
@@ -6610,6 +7702,7 @@ declare const SystemUploadSession: Omit<{
6610
7702
  object: string;
6611
7703
  field: string;
6612
7704
  function: "min" | "max" | "count" | "sum" | "avg";
7705
+ relationshipField?: string | undefined;
6613
7706
  } | undefined;
6614
7707
  readonly language?: string | undefined;
6615
7708
  readonly lineNumbers?: boolean | undefined;
@@ -6704,6 +7797,33 @@ declare const SystemUploadSession: Omit<{
6704
7797
  threshold: number;
6705
7798
  } | undefined;
6706
7799
  } | undefined;
7800
+ readonly visibleWhen?: {
7801
+ dialect: "cel" | "js" | "cron" | "template";
7802
+ source?: string | undefined;
7803
+ ast?: unknown;
7804
+ meta?: {
7805
+ rationale?: string | undefined;
7806
+ generatedBy?: string | undefined;
7807
+ } | undefined;
7808
+ } | undefined;
7809
+ readonly readonlyWhen?: {
7810
+ dialect: "cel" | "js" | "cron" | "template";
7811
+ source?: string | undefined;
7812
+ ast?: unknown;
7813
+ meta?: {
7814
+ rationale?: string | undefined;
7815
+ generatedBy?: string | undefined;
7816
+ } | undefined;
7817
+ } | undefined;
7818
+ readonly requiredWhen?: {
7819
+ dialect: "cel" | "js" | "cron" | "template";
7820
+ source?: string | undefined;
7821
+ ast?: unknown;
7822
+ meta?: {
7823
+ rationale?: string | undefined;
7824
+ generatedBy?: string | undefined;
7825
+ } | undefined;
7826
+ } | undefined;
6707
7827
  readonly conditionalRequired?: {
6708
7828
  dialect: "cel" | "js" | "cron" | "template";
6709
7829
  source?: string | undefined;
@@ -6772,6 +7892,13 @@ declare const SystemUploadSession: Omit<{
6772
7892
  readonly referenceFilters?: string[] | undefined;
6773
7893
  readonly writeRequiresMasterRead?: boolean | undefined;
6774
7894
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
7895
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
7896
+ readonly inlineTitle?: string | undefined;
7897
+ readonly inlineColumns?: any[] | undefined;
7898
+ readonly inlineAmountField?: string | undefined;
7899
+ readonly relatedList?: boolean | undefined;
7900
+ readonly relatedListTitle?: string | undefined;
7901
+ readonly relatedListColumns?: any[] | undefined;
6775
7902
  readonly expression?: {
6776
7903
  dialect: "cel" | "js" | "cron" | "template";
6777
7904
  source?: string | undefined;
@@ -6785,6 +7912,7 @@ declare const SystemUploadSession: Omit<{
6785
7912
  object: string;
6786
7913
  field: string;
6787
7914
  function: "min" | "max" | "count" | "sum" | "avg";
7915
+ relationshipField?: string | undefined;
6788
7916
  } | undefined;
6789
7917
  readonly language?: string | undefined;
6790
7918
  readonly lineNumbers?: boolean | undefined;
@@ -6879,6 +8007,33 @@ declare const SystemUploadSession: Omit<{
6879
8007
  threshold: number;
6880
8008
  } | undefined;
6881
8009
  } | undefined;
8010
+ readonly visibleWhen?: {
8011
+ dialect: "cel" | "js" | "cron" | "template";
8012
+ source?: string | undefined;
8013
+ ast?: unknown;
8014
+ meta?: {
8015
+ rationale?: string | undefined;
8016
+ generatedBy?: string | undefined;
8017
+ } | undefined;
8018
+ } | undefined;
8019
+ readonly readonlyWhen?: {
8020
+ dialect: "cel" | "js" | "cron" | "template";
8021
+ source?: string | undefined;
8022
+ ast?: unknown;
8023
+ meta?: {
8024
+ rationale?: string | undefined;
8025
+ generatedBy?: string | undefined;
8026
+ } | undefined;
8027
+ } | undefined;
8028
+ readonly requiredWhen?: {
8029
+ dialect: "cel" | "js" | "cron" | "template";
8030
+ source?: string | undefined;
8031
+ ast?: unknown;
8032
+ meta?: {
8033
+ rationale?: string | undefined;
8034
+ generatedBy?: string | undefined;
8035
+ } | undefined;
8036
+ } | undefined;
6882
8037
  readonly conditionalRequired?: {
6883
8038
  dialect: "cel" | "js" | "cron" | "template";
6884
8039
  source?: string | undefined;
@@ -6947,6 +8102,13 @@ declare const SystemUploadSession: Omit<{
6947
8102
  readonly referenceFilters?: string[] | undefined;
6948
8103
  readonly writeRequiresMasterRead?: boolean | undefined;
6949
8104
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
8105
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
8106
+ readonly inlineTitle?: string | undefined;
8107
+ readonly inlineColumns?: any[] | undefined;
8108
+ readonly inlineAmountField?: string | undefined;
8109
+ readonly relatedList?: boolean | undefined;
8110
+ readonly relatedListTitle?: string | undefined;
8111
+ readonly relatedListColumns?: any[] | undefined;
6950
8112
  readonly expression?: {
6951
8113
  dialect: "cel" | "js" | "cron" | "template";
6952
8114
  source?: string | undefined;
@@ -6960,6 +8122,7 @@ declare const SystemUploadSession: Omit<{
6960
8122
  object: string;
6961
8123
  field: string;
6962
8124
  function: "min" | "max" | "count" | "sum" | "avg";
8125
+ relationshipField?: string | undefined;
6963
8126
  } | undefined;
6964
8127
  readonly language?: string | undefined;
6965
8128
  readonly lineNumbers?: boolean | undefined;
@@ -7054,6 +8217,33 @@ declare const SystemUploadSession: Omit<{
7054
8217
  threshold: number;
7055
8218
  } | undefined;
7056
8219
  } | undefined;
8220
+ readonly visibleWhen?: {
8221
+ dialect: "cel" | "js" | "cron" | "template";
8222
+ source?: string | undefined;
8223
+ ast?: unknown;
8224
+ meta?: {
8225
+ rationale?: string | undefined;
8226
+ generatedBy?: string | undefined;
8227
+ } | undefined;
8228
+ } | undefined;
8229
+ readonly readonlyWhen?: {
8230
+ dialect: "cel" | "js" | "cron" | "template";
8231
+ source?: string | undefined;
8232
+ ast?: unknown;
8233
+ meta?: {
8234
+ rationale?: string | undefined;
8235
+ generatedBy?: string | undefined;
8236
+ } | undefined;
8237
+ } | undefined;
8238
+ readonly requiredWhen?: {
8239
+ dialect: "cel" | "js" | "cron" | "template";
8240
+ source?: string | undefined;
8241
+ ast?: unknown;
8242
+ meta?: {
8243
+ rationale?: string | undefined;
8244
+ generatedBy?: string | undefined;
8245
+ } | undefined;
8246
+ } | undefined;
7057
8247
  readonly conditionalRequired?: {
7058
8248
  dialect: "cel" | "js" | "cron" | "template";
7059
8249
  source?: string | undefined;
@@ -7122,6 +8312,13 @@ declare const SystemUploadSession: Omit<{
7122
8312
  readonly referenceFilters?: string[] | undefined;
7123
8313
  readonly writeRequiresMasterRead?: boolean | undefined;
7124
8314
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
8315
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
8316
+ readonly inlineTitle?: string | undefined;
8317
+ readonly inlineColumns?: any[] | undefined;
8318
+ readonly inlineAmountField?: string | undefined;
8319
+ readonly relatedList?: boolean | undefined;
8320
+ readonly relatedListTitle?: string | undefined;
8321
+ readonly relatedListColumns?: any[] | undefined;
7125
8322
  readonly expression?: {
7126
8323
  dialect: "cel" | "js" | "cron" | "template";
7127
8324
  source?: string | undefined;
@@ -7135,6 +8332,7 @@ declare const SystemUploadSession: Omit<{
7135
8332
  object: string;
7136
8333
  field: string;
7137
8334
  function: "min" | "max" | "count" | "sum" | "avg";
8335
+ relationshipField?: string | undefined;
7138
8336
  } | undefined;
7139
8337
  readonly language?: string | undefined;
7140
8338
  readonly lineNumbers?: boolean | undefined;
@@ -7229,6 +8427,33 @@ declare const SystemUploadSession: Omit<{
7229
8427
  threshold: number;
7230
8428
  } | undefined;
7231
8429
  } | undefined;
8430
+ readonly visibleWhen?: {
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;
8439
+ readonly readonlyWhen?: {
8440
+ dialect: "cel" | "js" | "cron" | "template";
8441
+ source?: string | undefined;
8442
+ ast?: unknown;
8443
+ meta?: {
8444
+ rationale?: string | undefined;
8445
+ generatedBy?: string | undefined;
8446
+ } | undefined;
8447
+ } | undefined;
8448
+ readonly requiredWhen?: {
8449
+ dialect: "cel" | "js" | "cron" | "template";
8450
+ source?: string | undefined;
8451
+ ast?: unknown;
8452
+ meta?: {
8453
+ rationale?: string | undefined;
8454
+ generatedBy?: string | undefined;
8455
+ } | undefined;
8456
+ } | undefined;
7232
8457
  readonly conditionalRequired?: {
7233
8458
  dialect: "cel" | "js" | "cron" | "template";
7234
8459
  source?: string | undefined;
@@ -7297,6 +8522,13 @@ declare const SystemUploadSession: Omit<{
7297
8522
  readonly referenceFilters?: string[] | undefined;
7298
8523
  readonly writeRequiresMasterRead?: boolean | undefined;
7299
8524
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
8525
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
8526
+ readonly inlineTitle?: string | undefined;
8527
+ readonly inlineColumns?: any[] | undefined;
8528
+ readonly inlineAmountField?: string | undefined;
8529
+ readonly relatedList?: boolean | undefined;
8530
+ readonly relatedListTitle?: string | undefined;
8531
+ readonly relatedListColumns?: any[] | undefined;
7300
8532
  readonly expression?: {
7301
8533
  dialect: "cel" | "js" | "cron" | "template";
7302
8534
  source?: string | undefined;
@@ -7310,6 +8542,7 @@ declare const SystemUploadSession: Omit<{
7310
8542
  object: string;
7311
8543
  field: string;
7312
8544
  function: "min" | "max" | "count" | "sum" | "avg";
8545
+ relationshipField?: string | undefined;
7313
8546
  } | undefined;
7314
8547
  readonly language?: string | undefined;
7315
8548
  readonly lineNumbers?: boolean | undefined;
@@ -7404,6 +8637,33 @@ declare const SystemUploadSession: Omit<{
7404
8637
  threshold: number;
7405
8638
  } | undefined;
7406
8639
  } | undefined;
8640
+ readonly visibleWhen?: {
8641
+ dialect: "cel" | "js" | "cron" | "template";
8642
+ source?: string | undefined;
8643
+ ast?: unknown;
8644
+ meta?: {
8645
+ rationale?: string | undefined;
8646
+ generatedBy?: string | undefined;
8647
+ } | undefined;
8648
+ } | undefined;
8649
+ readonly readonlyWhen?: {
8650
+ dialect: "cel" | "js" | "cron" | "template";
8651
+ source?: string | undefined;
8652
+ ast?: unknown;
8653
+ meta?: {
8654
+ rationale?: string | undefined;
8655
+ generatedBy?: string | undefined;
8656
+ } | undefined;
8657
+ } | undefined;
8658
+ readonly requiredWhen?: {
8659
+ dialect: "cel" | "js" | "cron" | "template";
8660
+ source?: string | undefined;
8661
+ ast?: unknown;
8662
+ meta?: {
8663
+ rationale?: string | undefined;
8664
+ generatedBy?: string | undefined;
8665
+ } | undefined;
8666
+ } | undefined;
7407
8667
  readonly conditionalRequired?: {
7408
8668
  dialect: "cel" | "js" | "cron" | "template";
7409
8669
  source?: string | undefined;
@@ -7472,6 +8732,13 @@ declare const SystemUploadSession: Omit<{
7472
8732
  readonly referenceFilters?: string[] | undefined;
7473
8733
  readonly writeRequiresMasterRead?: boolean | undefined;
7474
8734
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
8735
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
8736
+ readonly inlineTitle?: string | undefined;
8737
+ readonly inlineColumns?: any[] | undefined;
8738
+ readonly inlineAmountField?: string | undefined;
8739
+ readonly relatedList?: boolean | undefined;
8740
+ readonly relatedListTitle?: string | undefined;
8741
+ readonly relatedListColumns?: any[] | undefined;
7475
8742
  readonly expression?: {
7476
8743
  dialect: "cel" | "js" | "cron" | "template";
7477
8744
  source?: string | undefined;
@@ -7485,6 +8752,7 @@ declare const SystemUploadSession: Omit<{
7485
8752
  object: string;
7486
8753
  field: string;
7487
8754
  function: "min" | "max" | "count" | "sum" | "avg";
8755
+ relationshipField?: string | undefined;
7488
8756
  } | undefined;
7489
8757
  readonly language?: string | undefined;
7490
8758
  readonly lineNumbers?: boolean | undefined;
@@ -7579,6 +8847,33 @@ declare const SystemUploadSession: Omit<{
7579
8847
  threshold: number;
7580
8848
  } | undefined;
7581
8849
  } | undefined;
8850
+ readonly visibleWhen?: {
8851
+ dialect: "cel" | "js" | "cron" | "template";
8852
+ source?: string | undefined;
8853
+ ast?: unknown;
8854
+ meta?: {
8855
+ rationale?: string | undefined;
8856
+ generatedBy?: string | undefined;
8857
+ } | undefined;
8858
+ } | undefined;
8859
+ readonly readonlyWhen?: {
8860
+ dialect: "cel" | "js" | "cron" | "template";
8861
+ source?: string | undefined;
8862
+ ast?: unknown;
8863
+ meta?: {
8864
+ rationale?: string | undefined;
8865
+ generatedBy?: string | undefined;
8866
+ } | undefined;
8867
+ } | undefined;
8868
+ readonly requiredWhen?: {
8869
+ dialect: "cel" | "js" | "cron" | "template";
8870
+ source?: string | undefined;
8871
+ ast?: unknown;
8872
+ meta?: {
8873
+ rationale?: string | undefined;
8874
+ generatedBy?: string | undefined;
8875
+ } | undefined;
8876
+ } | undefined;
7582
8877
  readonly conditionalRequired?: {
7583
8878
  dialect: "cel" | "js" | "cron" | "template";
7584
8879
  source?: string | undefined;
@@ -7647,6 +8942,13 @@ declare const SystemUploadSession: Omit<{
7647
8942
  readonly referenceFilters?: string[] | undefined;
7648
8943
  readonly writeRequiresMasterRead?: boolean | undefined;
7649
8944
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
8945
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
8946
+ readonly inlineTitle?: string | undefined;
8947
+ readonly inlineColumns?: any[] | undefined;
8948
+ readonly inlineAmountField?: string | undefined;
8949
+ readonly relatedList?: boolean | undefined;
8950
+ readonly relatedListTitle?: string | undefined;
8951
+ readonly relatedListColumns?: any[] | undefined;
7650
8952
  readonly expression?: {
7651
8953
  dialect: "cel" | "js" | "cron" | "template";
7652
8954
  source?: string | undefined;
@@ -7660,6 +8962,7 @@ declare const SystemUploadSession: Omit<{
7660
8962
  object: string;
7661
8963
  field: string;
7662
8964
  function: "min" | "max" | "count" | "sum" | "avg";
8965
+ relationshipField?: string | undefined;
7663
8966
  } | undefined;
7664
8967
  readonly language?: string | undefined;
7665
8968
  readonly lineNumbers?: boolean | undefined;
@@ -7754,6 +9057,33 @@ declare const SystemUploadSession: Omit<{
7754
9057
  threshold: number;
7755
9058
  } | undefined;
7756
9059
  } | undefined;
9060
+ readonly visibleWhen?: {
9061
+ dialect: "cel" | "js" | "cron" | "template";
9062
+ source?: string | undefined;
9063
+ ast?: unknown;
9064
+ meta?: {
9065
+ rationale?: string | undefined;
9066
+ generatedBy?: string | undefined;
9067
+ } | undefined;
9068
+ } | undefined;
9069
+ readonly readonlyWhen?: {
9070
+ dialect: "cel" | "js" | "cron" | "template";
9071
+ source?: string | undefined;
9072
+ ast?: unknown;
9073
+ meta?: {
9074
+ rationale?: string | undefined;
9075
+ generatedBy?: string | undefined;
9076
+ } | undefined;
9077
+ } | undefined;
9078
+ readonly requiredWhen?: {
9079
+ dialect: "cel" | "js" | "cron" | "template";
9080
+ source?: string | undefined;
9081
+ ast?: unknown;
9082
+ meta?: {
9083
+ rationale?: string | undefined;
9084
+ generatedBy?: string | undefined;
9085
+ } | undefined;
9086
+ } | undefined;
7757
9087
  readonly conditionalRequired?: {
7758
9088
  dialect: "cel" | "js" | "cron" | "template";
7759
9089
  source?: string | undefined;