@objectstack/plugin-webhooks 7.9.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.
package/dist/schema.d.cts CHANGED
@@ -68,6 +68,13 @@ declare const SysWebhook: Omit<{
68
68
  reference?: string | undefined;
69
69
  referenceFilters?: string[] | undefined;
70
70
  writeRequiresMasterRead?: boolean | undefined;
71
+ inlineEdit?: boolean | "grid" | "form" | undefined;
72
+ inlineTitle?: string | undefined;
73
+ inlineColumns?: any[] | undefined;
74
+ inlineAmountField?: string | undefined;
75
+ relatedList?: boolean | undefined;
76
+ relatedListTitle?: string | undefined;
77
+ relatedListColumns?: any[] | undefined;
71
78
  expression?: {
72
79
  dialect: "cel" | "js" | "cron" | "template";
73
80
  source?: string | undefined;
@@ -89,6 +96,7 @@ declare const SysWebhook: Omit<{
89
96
  object: string;
90
97
  field: string;
91
98
  function: "min" | "max" | "count" | "sum" | "avg";
99
+ relationshipField?: string | undefined;
92
100
  } | undefined;
93
101
  language?: string | undefined;
94
102
  theme?: string | undefined;
@@ -202,6 +210,57 @@ declare const SysWebhook: Omit<{
202
210
  } | undefined;
203
211
  } | undefined;
204
212
  group?: string | undefined;
213
+ visibleWhen?: {
214
+ dialect: "cel" | "js" | "cron" | "template";
215
+ source?: string | undefined;
216
+ ast?: unknown;
217
+ meta?: {
218
+ rationale?: string | undefined;
219
+ generatedBy?: string | undefined;
220
+ } | undefined;
221
+ } | {
222
+ dialect: "cel" | "js" | "cron" | "template";
223
+ source?: string | undefined;
224
+ ast?: unknown;
225
+ meta?: {
226
+ rationale?: string | undefined;
227
+ generatedBy?: string | undefined;
228
+ } | undefined;
229
+ } | undefined;
230
+ readonlyWhen?: {
231
+ dialect: "cel" | "js" | "cron" | "template";
232
+ source?: string | undefined;
233
+ ast?: unknown;
234
+ meta?: {
235
+ rationale?: string | undefined;
236
+ generatedBy?: string | undefined;
237
+ } | undefined;
238
+ } | {
239
+ dialect: "cel" | "js" | "cron" | "template";
240
+ source?: string | undefined;
241
+ ast?: unknown;
242
+ meta?: {
243
+ rationale?: string | undefined;
244
+ generatedBy?: string | undefined;
245
+ } | undefined;
246
+ } | undefined;
247
+ requiredWhen?: {
248
+ dialect: "cel" | "js" | "cron" | "template";
249
+ source?: string | undefined;
250
+ ast?: unknown;
251
+ meta?: {
252
+ rationale?: string | undefined;
253
+ generatedBy?: string | undefined;
254
+ } | undefined;
255
+ } | {
256
+ dialect: "cel" | "js" | "cron" | "template";
257
+ source?: string | undefined;
258
+ ast?: unknown;
259
+ meta?: {
260
+ rationale?: string | undefined;
261
+ generatedBy?: string | undefined;
262
+ } | undefined;
263
+ } | undefined;
205
264
  conditionalRequired?: {
206
265
  dialect: "cel" | "js" | "cron" | "template";
207
266
  source?: string | undefined;
@@ -343,7 +402,7 @@ declare const SysWebhook: Omit<{
343
402
  } | undefined;
344
403
  compactLayout?: string[] | undefined;
345
404
  listViews?: Record<string, {
346
- type: "map" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "grid";
405
+ type: "map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart";
347
406
  columns: string[] | {
348
407
  field: string;
349
408
  label?: string | undefined;
@@ -512,7 +571,7 @@ declare const SysWebhook: Omit<{
512
571
  } | undefined;
513
572
  appearance?: {
514
573
  showDescription: boolean;
515
- allowedVisualizations?: ("map" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "grid")[] | undefined;
574
+ allowedVisualizations?: ("map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline")[] | undefined;
516
575
  } | undefined;
517
576
  tabs?: {
518
577
  name: string;
@@ -532,7 +591,7 @@ declare const SysWebhook: Omit<{
532
591
  addRecord?: {
533
592
  enabled: boolean;
534
593
  position: "top" | "bottom" | "both";
535
- mode: "modal" | "form" | "inline";
594
+ mode: "form" | "modal" | "inline";
536
595
  formView?: string | undefined;
537
596
  } | undefined;
538
597
  showRecordCount?: boolean | undefined;
@@ -618,7 +677,7 @@ declare const SysWebhook: Omit<{
618
677
  actions?: {
619
678
  name: string;
620
679
  label: string;
621
- type: "url" | "flow" | "api" | "script" | "modal" | "form";
680
+ type: "url" | "form" | "flow" | "api" | "script" | "modal";
622
681
  refreshAfter: boolean;
623
682
  objectName?: string | undefined;
624
683
  icon?: string | undefined;
@@ -686,7 +745,18 @@ declare const SysWebhook: Omit<{
686
745
  } | undefined;
687
746
  shortcut?: string | undefined;
688
747
  bulkEnabled?: boolean | undefined;
689
- aiExposed?: boolean | undefined;
748
+ ai?: {
749
+ exposed: boolean;
750
+ description?: string | undefined;
751
+ category?: "action" | "data" | "flow" | "integration" | "vector_search" | "analytics" | "utility" | undefined;
752
+ paramHints?: Record<string, {
753
+ description?: string | undefined;
754
+ enum?: (string | number)[] | undefined;
755
+ examples?: unknown[] | undefined;
756
+ }> | undefined;
757
+ outputSchema?: Record<string, unknown> | undefined;
758
+ requiresConfirmation?: boolean | undefined;
759
+ } | undefined;
690
760
  recordIdParam?: string | undefined;
691
761
  recordIdField?: string | undefined;
692
762
  bodyShape?: "flat" | {
@@ -866,6 +936,13 @@ declare const SysWebhook: Omit<{
866
936
  readonly referenceFilters?: string[] | undefined;
867
937
  readonly writeRequiresMasterRead?: boolean | undefined;
868
938
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
939
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
940
+ readonly inlineTitle?: string | undefined;
941
+ readonly inlineColumns?: any[] | undefined;
942
+ readonly inlineAmountField?: string | undefined;
943
+ readonly relatedList?: boolean | undefined;
944
+ readonly relatedListTitle?: string | undefined;
945
+ readonly relatedListColumns?: any[] | undefined;
869
946
  readonly expression?: {
870
947
  dialect: "cel" | "js" | "cron" | "template";
871
948
  source?: string | undefined;
@@ -879,6 +956,7 @@ declare const SysWebhook: Omit<{
879
956
  object: string;
880
957
  field: string;
881
958
  function: "min" | "max" | "count" | "sum" | "avg";
959
+ relationshipField?: string | undefined;
882
960
  } | undefined;
883
961
  readonly language?: string | undefined;
884
962
  readonly lineNumbers?: boolean | undefined;
@@ -973,6 +1051,33 @@ declare const SysWebhook: Omit<{
973
1051
  threshold: number;
974
1052
  } | undefined;
975
1053
  } | undefined;
1054
+ readonly visibleWhen?: {
1055
+ dialect: "cel" | "js" | "cron" | "template";
1056
+ source?: string | undefined;
1057
+ ast?: unknown;
1058
+ meta?: {
1059
+ rationale?: string | undefined;
1060
+ generatedBy?: string | undefined;
1061
+ } | undefined;
1062
+ } | undefined;
1063
+ readonly readonlyWhen?: {
1064
+ dialect: "cel" | "js" | "cron" | "template";
1065
+ source?: string | undefined;
1066
+ ast?: unknown;
1067
+ meta?: {
1068
+ rationale?: string | undefined;
1069
+ generatedBy?: string | undefined;
1070
+ } | undefined;
1071
+ } | undefined;
1072
+ readonly requiredWhen?: {
1073
+ dialect: "cel" | "js" | "cron" | "template";
1074
+ source?: string | undefined;
1075
+ ast?: unknown;
1076
+ meta?: {
1077
+ rationale?: string | undefined;
1078
+ generatedBy?: string | undefined;
1079
+ } | undefined;
1080
+ } | undefined;
976
1081
  readonly conditionalRequired?: {
977
1082
  dialect: "cel" | "js" | "cron" | "template";
978
1083
  source?: string | undefined;
@@ -1041,6 +1146,13 @@ declare const SysWebhook: Omit<{
1041
1146
  readonly referenceFilters?: string[] | undefined;
1042
1147
  readonly writeRequiresMasterRead?: boolean | undefined;
1043
1148
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1149
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1150
+ readonly inlineTitle?: string | undefined;
1151
+ readonly inlineColumns?: any[] | undefined;
1152
+ readonly inlineAmountField?: string | undefined;
1153
+ readonly relatedList?: boolean | undefined;
1154
+ readonly relatedListTitle?: string | undefined;
1155
+ readonly relatedListColumns?: any[] | undefined;
1044
1156
  readonly expression?: {
1045
1157
  dialect: "cel" | "js" | "cron" | "template";
1046
1158
  source?: string | undefined;
@@ -1054,6 +1166,7 @@ declare const SysWebhook: Omit<{
1054
1166
  object: string;
1055
1167
  field: string;
1056
1168
  function: "min" | "max" | "count" | "sum" | "avg";
1169
+ relationshipField?: string | undefined;
1057
1170
  } | undefined;
1058
1171
  readonly language?: string | undefined;
1059
1172
  readonly lineNumbers?: boolean | undefined;
@@ -1148,6 +1261,33 @@ declare const SysWebhook: Omit<{
1148
1261
  threshold: number;
1149
1262
  } | undefined;
1150
1263
  } | undefined;
1264
+ readonly visibleWhen?: {
1265
+ dialect: "cel" | "js" | "cron" | "template";
1266
+ source?: string | undefined;
1267
+ ast?: unknown;
1268
+ meta?: {
1269
+ rationale?: string | undefined;
1270
+ generatedBy?: string | undefined;
1271
+ } | undefined;
1272
+ } | undefined;
1273
+ readonly readonlyWhen?: {
1274
+ dialect: "cel" | "js" | "cron" | "template";
1275
+ source?: string | undefined;
1276
+ ast?: unknown;
1277
+ meta?: {
1278
+ rationale?: string | undefined;
1279
+ generatedBy?: string | undefined;
1280
+ } | undefined;
1281
+ } | undefined;
1282
+ readonly requiredWhen?: {
1283
+ dialect: "cel" | "js" | "cron" | "template";
1284
+ source?: string | undefined;
1285
+ ast?: unknown;
1286
+ meta?: {
1287
+ rationale?: string | undefined;
1288
+ generatedBy?: string | undefined;
1289
+ } | undefined;
1290
+ } | undefined;
1151
1291
  readonly conditionalRequired?: {
1152
1292
  dialect: "cel" | "js" | "cron" | "template";
1153
1293
  source?: string | undefined;
@@ -1216,6 +1356,13 @@ declare const SysWebhook: Omit<{
1216
1356
  readonly referenceFilters?: string[] | undefined;
1217
1357
  readonly writeRequiresMasterRead?: boolean | undefined;
1218
1358
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1359
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1360
+ readonly inlineTitle?: string | undefined;
1361
+ readonly inlineColumns?: any[] | undefined;
1362
+ readonly inlineAmountField?: string | undefined;
1363
+ readonly relatedList?: boolean | undefined;
1364
+ readonly relatedListTitle?: string | undefined;
1365
+ readonly relatedListColumns?: any[] | undefined;
1219
1366
  readonly expression?: {
1220
1367
  dialect: "cel" | "js" | "cron" | "template";
1221
1368
  source?: string | undefined;
@@ -1229,6 +1376,7 @@ declare const SysWebhook: Omit<{
1229
1376
  object: string;
1230
1377
  field: string;
1231
1378
  function: "min" | "max" | "count" | "sum" | "avg";
1379
+ relationshipField?: string | undefined;
1232
1380
  } | undefined;
1233
1381
  readonly language?: string | undefined;
1234
1382
  readonly lineNumbers?: boolean | undefined;
@@ -1323,6 +1471,33 @@ declare const SysWebhook: Omit<{
1323
1471
  threshold: number;
1324
1472
  } | undefined;
1325
1473
  } | undefined;
1474
+ readonly visibleWhen?: {
1475
+ dialect: "cel" | "js" | "cron" | "template";
1476
+ source?: string | undefined;
1477
+ ast?: unknown;
1478
+ meta?: {
1479
+ rationale?: string | undefined;
1480
+ generatedBy?: string | undefined;
1481
+ } | undefined;
1482
+ } | undefined;
1483
+ readonly readonlyWhen?: {
1484
+ dialect: "cel" | "js" | "cron" | "template";
1485
+ source?: string | undefined;
1486
+ ast?: unknown;
1487
+ meta?: {
1488
+ rationale?: string | undefined;
1489
+ generatedBy?: string | undefined;
1490
+ } | undefined;
1491
+ } | undefined;
1492
+ readonly requiredWhen?: {
1493
+ dialect: "cel" | "js" | "cron" | "template";
1494
+ source?: string | undefined;
1495
+ ast?: unknown;
1496
+ meta?: {
1497
+ rationale?: string | undefined;
1498
+ generatedBy?: string | undefined;
1499
+ } | undefined;
1500
+ } | undefined;
1326
1501
  readonly conditionalRequired?: {
1327
1502
  dialect: "cel" | "js" | "cron" | "template";
1328
1503
  source?: string | undefined;
@@ -1391,6 +1566,13 @@ declare const SysWebhook: Omit<{
1391
1566
  readonly referenceFilters?: string[] | undefined;
1392
1567
  readonly writeRequiresMasterRead?: boolean | undefined;
1393
1568
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1569
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1570
+ readonly inlineTitle?: string | undefined;
1571
+ readonly inlineColumns?: any[] | undefined;
1572
+ readonly inlineAmountField?: string | undefined;
1573
+ readonly relatedList?: boolean | undefined;
1574
+ readonly relatedListTitle?: string | undefined;
1575
+ readonly relatedListColumns?: any[] | undefined;
1394
1576
  readonly expression?: {
1395
1577
  dialect: "cel" | "js" | "cron" | "template";
1396
1578
  source?: string | undefined;
@@ -1404,6 +1586,7 @@ declare const SysWebhook: Omit<{
1404
1586
  object: string;
1405
1587
  field: string;
1406
1588
  function: "min" | "max" | "count" | "sum" | "avg";
1589
+ relationshipField?: string | undefined;
1407
1590
  } | undefined;
1408
1591
  readonly language?: string | undefined;
1409
1592
  readonly lineNumbers?: boolean | undefined;
@@ -1498,6 +1681,33 @@ declare const SysWebhook: Omit<{
1498
1681
  threshold: number;
1499
1682
  } | undefined;
1500
1683
  } | undefined;
1684
+ readonly visibleWhen?: {
1685
+ dialect: "cel" | "js" | "cron" | "template";
1686
+ source?: string | undefined;
1687
+ ast?: unknown;
1688
+ meta?: {
1689
+ rationale?: string | undefined;
1690
+ generatedBy?: string | undefined;
1691
+ } | undefined;
1692
+ } | undefined;
1693
+ readonly readonlyWhen?: {
1694
+ dialect: "cel" | "js" | "cron" | "template";
1695
+ source?: string | undefined;
1696
+ ast?: unknown;
1697
+ meta?: {
1698
+ rationale?: string | undefined;
1699
+ generatedBy?: string | undefined;
1700
+ } | undefined;
1701
+ } | undefined;
1702
+ readonly requiredWhen?: {
1703
+ dialect: "cel" | "js" | "cron" | "template";
1704
+ source?: string | undefined;
1705
+ ast?: unknown;
1706
+ meta?: {
1707
+ rationale?: string | undefined;
1708
+ generatedBy?: string | undefined;
1709
+ } | undefined;
1710
+ } | undefined;
1501
1711
  readonly conditionalRequired?: {
1502
1712
  dialect: "cel" | "js" | "cron" | "template";
1503
1713
  source?: string | undefined;
@@ -1566,6 +1776,13 @@ declare const SysWebhook: Omit<{
1566
1776
  readonly referenceFilters?: string[] | undefined;
1567
1777
  readonly writeRequiresMasterRead?: boolean | undefined;
1568
1778
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1779
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1780
+ readonly inlineTitle?: string | undefined;
1781
+ readonly inlineColumns?: any[] | undefined;
1782
+ readonly inlineAmountField?: string | undefined;
1783
+ readonly relatedList?: boolean | undefined;
1784
+ readonly relatedListTitle?: string | undefined;
1785
+ readonly relatedListColumns?: any[] | undefined;
1569
1786
  readonly expression?: {
1570
1787
  dialect: "cel" | "js" | "cron" | "template";
1571
1788
  source?: string | undefined;
@@ -1579,6 +1796,7 @@ declare const SysWebhook: Omit<{
1579
1796
  object: string;
1580
1797
  field: string;
1581
1798
  function: "min" | "max" | "count" | "sum" | "avg";
1799
+ relationshipField?: string | undefined;
1582
1800
  } | undefined;
1583
1801
  readonly language?: string | undefined;
1584
1802
  readonly lineNumbers?: boolean | undefined;
@@ -1673,6 +1891,33 @@ declare const SysWebhook: Omit<{
1673
1891
  threshold: number;
1674
1892
  } | undefined;
1675
1893
  } | undefined;
1894
+ readonly visibleWhen?: {
1895
+ dialect: "cel" | "js" | "cron" | "template";
1896
+ source?: string | undefined;
1897
+ ast?: unknown;
1898
+ meta?: {
1899
+ rationale?: string | undefined;
1900
+ generatedBy?: string | undefined;
1901
+ } | undefined;
1902
+ } | undefined;
1903
+ readonly readonlyWhen?: {
1904
+ dialect: "cel" | "js" | "cron" | "template";
1905
+ source?: string | undefined;
1906
+ ast?: unknown;
1907
+ meta?: {
1908
+ rationale?: string | undefined;
1909
+ generatedBy?: string | undefined;
1910
+ } | undefined;
1911
+ } | undefined;
1912
+ readonly requiredWhen?: {
1913
+ dialect: "cel" | "js" | "cron" | "template";
1914
+ source?: string | undefined;
1915
+ ast?: unknown;
1916
+ meta?: {
1917
+ rationale?: string | undefined;
1918
+ generatedBy?: string | undefined;
1919
+ } | undefined;
1920
+ } | undefined;
1676
1921
  readonly conditionalRequired?: {
1677
1922
  dialect: "cel" | "js" | "cron" | "template";
1678
1923
  source?: string | undefined;
@@ -1741,6 +1986,13 @@ declare const SysWebhook: Omit<{
1741
1986
  readonly referenceFilters?: string[] | undefined;
1742
1987
  readonly writeRequiresMasterRead?: boolean | undefined;
1743
1988
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1989
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1990
+ readonly inlineTitle?: string | undefined;
1991
+ readonly inlineColumns?: any[] | undefined;
1992
+ readonly inlineAmountField?: string | undefined;
1993
+ readonly relatedList?: boolean | undefined;
1994
+ readonly relatedListTitle?: string | undefined;
1995
+ readonly relatedListColumns?: any[] | undefined;
1744
1996
  readonly expression?: {
1745
1997
  dialect: "cel" | "js" | "cron" | "template";
1746
1998
  source?: string | undefined;
@@ -1754,6 +2006,7 @@ declare const SysWebhook: Omit<{
1754
2006
  object: string;
1755
2007
  field: string;
1756
2008
  function: "min" | "max" | "count" | "sum" | "avg";
2009
+ relationshipField?: string | undefined;
1757
2010
  } | undefined;
1758
2011
  readonly language?: string | undefined;
1759
2012
  readonly lineNumbers?: boolean | undefined;
@@ -1848,6 +2101,33 @@ declare const SysWebhook: Omit<{
1848
2101
  threshold: number;
1849
2102
  } | undefined;
1850
2103
  } | undefined;
2104
+ readonly visibleWhen?: {
2105
+ dialect: "cel" | "js" | "cron" | "template";
2106
+ source?: string | undefined;
2107
+ ast?: unknown;
2108
+ meta?: {
2109
+ rationale?: string | undefined;
2110
+ generatedBy?: string | undefined;
2111
+ } | undefined;
2112
+ } | undefined;
2113
+ readonly readonlyWhen?: {
2114
+ dialect: "cel" | "js" | "cron" | "template";
2115
+ source?: string | undefined;
2116
+ ast?: unknown;
2117
+ meta?: {
2118
+ rationale?: string | undefined;
2119
+ generatedBy?: string | undefined;
2120
+ } | undefined;
2121
+ } | undefined;
2122
+ readonly requiredWhen?: {
2123
+ dialect: "cel" | "js" | "cron" | "template";
2124
+ source?: string | undefined;
2125
+ ast?: unknown;
2126
+ meta?: {
2127
+ rationale?: string | undefined;
2128
+ generatedBy?: string | undefined;
2129
+ } | undefined;
2130
+ } | undefined;
1851
2131
  readonly conditionalRequired?: {
1852
2132
  dialect: "cel" | "js" | "cron" | "template";
1853
2133
  source?: string | undefined;
@@ -1916,6 +2196,13 @@ declare const SysWebhook: Omit<{
1916
2196
  readonly referenceFilters?: string[] | undefined;
1917
2197
  readonly writeRequiresMasterRead?: boolean | undefined;
1918
2198
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2199
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2200
+ readonly inlineTitle?: string | undefined;
2201
+ readonly inlineColumns?: any[] | undefined;
2202
+ readonly inlineAmountField?: string | undefined;
2203
+ readonly relatedList?: boolean | undefined;
2204
+ readonly relatedListTitle?: string | undefined;
2205
+ readonly relatedListColumns?: any[] | undefined;
1919
2206
  readonly expression?: {
1920
2207
  dialect: "cel" | "js" | "cron" | "template";
1921
2208
  source?: string | undefined;
@@ -1929,6 +2216,7 @@ declare const SysWebhook: Omit<{
1929
2216
  object: string;
1930
2217
  field: string;
1931
2218
  function: "min" | "max" | "count" | "sum" | "avg";
2219
+ relationshipField?: string | undefined;
1932
2220
  } | undefined;
1933
2221
  readonly language?: string | undefined;
1934
2222
  readonly lineNumbers?: boolean | undefined;
@@ -2023,6 +2311,33 @@ declare const SysWebhook: Omit<{
2023
2311
  threshold: number;
2024
2312
  } | undefined;
2025
2313
  } | undefined;
2314
+ readonly visibleWhen?: {
2315
+ dialect: "cel" | "js" | "cron" | "template";
2316
+ source?: string | undefined;
2317
+ ast?: unknown;
2318
+ meta?: {
2319
+ rationale?: string | undefined;
2320
+ generatedBy?: string | undefined;
2321
+ } | undefined;
2322
+ } | undefined;
2323
+ readonly readonlyWhen?: {
2324
+ dialect: "cel" | "js" | "cron" | "template";
2325
+ source?: string | undefined;
2326
+ ast?: unknown;
2327
+ meta?: {
2328
+ rationale?: string | undefined;
2329
+ generatedBy?: string | undefined;
2330
+ } | undefined;
2331
+ } | undefined;
2332
+ readonly requiredWhen?: {
2333
+ dialect: "cel" | "js" | "cron" | "template";
2334
+ source?: string | undefined;
2335
+ ast?: unknown;
2336
+ meta?: {
2337
+ rationale?: string | undefined;
2338
+ generatedBy?: string | undefined;
2339
+ } | undefined;
2340
+ } | undefined;
2026
2341
  readonly conditionalRequired?: {
2027
2342
  dialect: "cel" | "js" | "cron" | "template";
2028
2343
  source?: string | undefined;
@@ -2091,6 +2406,13 @@ declare const SysWebhook: Omit<{
2091
2406
  readonly referenceFilters?: string[] | undefined;
2092
2407
  readonly writeRequiresMasterRead?: boolean | undefined;
2093
2408
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2409
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2410
+ readonly inlineTitle?: string | undefined;
2411
+ readonly inlineColumns?: any[] | undefined;
2412
+ readonly inlineAmountField?: string | undefined;
2413
+ readonly relatedList?: boolean | undefined;
2414
+ readonly relatedListTitle?: string | undefined;
2415
+ readonly relatedListColumns?: any[] | undefined;
2094
2416
  readonly expression?: {
2095
2417
  dialect: "cel" | "js" | "cron" | "template";
2096
2418
  source?: string | undefined;
@@ -2104,6 +2426,7 @@ declare const SysWebhook: Omit<{
2104
2426
  object: string;
2105
2427
  field: string;
2106
2428
  function: "min" | "max" | "count" | "sum" | "avg";
2429
+ relationshipField?: string | undefined;
2107
2430
  } | undefined;
2108
2431
  readonly language?: string | undefined;
2109
2432
  readonly lineNumbers?: boolean | undefined;
@@ -2198,6 +2521,33 @@ declare const SysWebhook: Omit<{
2198
2521
  threshold: number;
2199
2522
  } | undefined;
2200
2523
  } | undefined;
2524
+ readonly visibleWhen?: {
2525
+ dialect: "cel" | "js" | "cron" | "template";
2526
+ source?: string | undefined;
2527
+ ast?: unknown;
2528
+ meta?: {
2529
+ rationale?: string | undefined;
2530
+ generatedBy?: string | undefined;
2531
+ } | undefined;
2532
+ } | undefined;
2533
+ readonly readonlyWhen?: {
2534
+ dialect: "cel" | "js" | "cron" | "template";
2535
+ source?: string | undefined;
2536
+ ast?: unknown;
2537
+ meta?: {
2538
+ rationale?: string | undefined;
2539
+ generatedBy?: string | undefined;
2540
+ } | undefined;
2541
+ } | undefined;
2542
+ readonly requiredWhen?: {
2543
+ dialect: "cel" | "js" | "cron" | "template";
2544
+ source?: string | undefined;
2545
+ ast?: unknown;
2546
+ meta?: {
2547
+ rationale?: string | undefined;
2548
+ generatedBy?: string | undefined;
2549
+ } | undefined;
2550
+ } | undefined;
2201
2551
  readonly conditionalRequired?: {
2202
2552
  dialect: "cel" | "js" | "cron" | "template";
2203
2553
  source?: string | undefined;
@@ -2266,6 +2616,13 @@ declare const SysWebhook: Omit<{
2266
2616
  readonly referenceFilters?: string[] | undefined;
2267
2617
  readonly writeRequiresMasterRead?: boolean | undefined;
2268
2618
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2619
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2620
+ readonly inlineTitle?: string | undefined;
2621
+ readonly inlineColumns?: any[] | undefined;
2622
+ readonly inlineAmountField?: string | undefined;
2623
+ readonly relatedList?: boolean | undefined;
2624
+ readonly relatedListTitle?: string | undefined;
2625
+ readonly relatedListColumns?: any[] | undefined;
2269
2626
  readonly expression?: {
2270
2627
  dialect: "cel" | "js" | "cron" | "template";
2271
2628
  source?: string | undefined;
@@ -2279,6 +2636,7 @@ declare const SysWebhook: Omit<{
2279
2636
  object: string;
2280
2637
  field: string;
2281
2638
  function: "min" | "max" | "count" | "sum" | "avg";
2639
+ relationshipField?: string | undefined;
2282
2640
  } | undefined;
2283
2641
  readonly language?: string | undefined;
2284
2642
  readonly lineNumbers?: boolean | undefined;
@@ -2373,6 +2731,33 @@ declare const SysWebhook: Omit<{
2373
2731
  threshold: number;
2374
2732
  } | undefined;
2375
2733
  } | undefined;
2734
+ readonly visibleWhen?: {
2735
+ dialect: "cel" | "js" | "cron" | "template";
2736
+ source?: string | undefined;
2737
+ ast?: unknown;
2738
+ meta?: {
2739
+ rationale?: string | undefined;
2740
+ generatedBy?: string | undefined;
2741
+ } | undefined;
2742
+ } | undefined;
2743
+ readonly readonlyWhen?: {
2744
+ dialect: "cel" | "js" | "cron" | "template";
2745
+ source?: string | undefined;
2746
+ ast?: unknown;
2747
+ meta?: {
2748
+ rationale?: string | undefined;
2749
+ generatedBy?: string | undefined;
2750
+ } | undefined;
2751
+ } | undefined;
2752
+ readonly requiredWhen?: {
2753
+ dialect: "cel" | "js" | "cron" | "template";
2754
+ source?: string | undefined;
2755
+ ast?: unknown;
2756
+ meta?: {
2757
+ rationale?: string | undefined;
2758
+ generatedBy?: string | undefined;
2759
+ } | undefined;
2760
+ } | undefined;
2376
2761
  readonly conditionalRequired?: {
2377
2762
  dialect: "cel" | "js" | "cron" | "template";
2378
2763
  source?: string | undefined;
@@ -2441,6 +2826,13 @@ declare const SysWebhook: Omit<{
2441
2826
  readonly referenceFilters?: string[] | undefined;
2442
2827
  readonly writeRequiresMasterRead?: boolean | undefined;
2443
2828
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2829
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2830
+ readonly inlineTitle?: string | undefined;
2831
+ readonly inlineColumns?: any[] | undefined;
2832
+ readonly inlineAmountField?: string | undefined;
2833
+ readonly relatedList?: boolean | undefined;
2834
+ readonly relatedListTitle?: string | undefined;
2835
+ readonly relatedListColumns?: any[] | undefined;
2444
2836
  readonly expression?: {
2445
2837
  dialect: "cel" | "js" | "cron" | "template";
2446
2838
  source?: string | undefined;
@@ -2454,6 +2846,7 @@ declare const SysWebhook: Omit<{
2454
2846
  object: string;
2455
2847
  field: string;
2456
2848
  function: "min" | "max" | "count" | "sum" | "avg";
2849
+ relationshipField?: string | undefined;
2457
2850
  } | undefined;
2458
2851
  readonly language?: string | undefined;
2459
2852
  readonly lineNumbers?: boolean | undefined;
@@ -2548,6 +2941,33 @@ declare const SysWebhook: Omit<{
2548
2941
  threshold: number;
2549
2942
  } | undefined;
2550
2943
  } | undefined;
2944
+ readonly visibleWhen?: {
2945
+ dialect: "cel" | "js" | "cron" | "template";
2946
+ source?: string | undefined;
2947
+ ast?: unknown;
2948
+ meta?: {
2949
+ rationale?: string | undefined;
2950
+ generatedBy?: string | undefined;
2951
+ } | undefined;
2952
+ } | undefined;
2953
+ readonly readonlyWhen?: {
2954
+ dialect: "cel" | "js" | "cron" | "template";
2955
+ source?: string | undefined;
2956
+ ast?: unknown;
2957
+ meta?: {
2958
+ rationale?: string | undefined;
2959
+ generatedBy?: string | undefined;
2960
+ } | undefined;
2961
+ } | undefined;
2962
+ readonly requiredWhen?: {
2963
+ dialect: "cel" | "js" | "cron" | "template";
2964
+ source?: string | undefined;
2965
+ ast?: unknown;
2966
+ meta?: {
2967
+ rationale?: string | undefined;
2968
+ generatedBy?: string | undefined;
2969
+ } | undefined;
2970
+ } | undefined;
2551
2971
  readonly conditionalRequired?: {
2552
2972
  dialect: "cel" | "js" | "cron" | "template";
2553
2973
  source?: string | undefined;
@@ -2616,6 +3036,13 @@ declare const SysWebhook: Omit<{
2616
3036
  readonly referenceFilters?: string[] | undefined;
2617
3037
  readonly writeRequiresMasterRead?: boolean | undefined;
2618
3038
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
3039
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
3040
+ readonly inlineTitle?: string | undefined;
3041
+ readonly inlineColumns?: any[] | undefined;
3042
+ readonly inlineAmountField?: string | undefined;
3043
+ readonly relatedList?: boolean | undefined;
3044
+ readonly relatedListTitle?: string | undefined;
3045
+ readonly relatedListColumns?: any[] | undefined;
2619
3046
  readonly expression?: {
2620
3047
  dialect: "cel" | "js" | "cron" | "template";
2621
3048
  source?: string | undefined;
@@ -2629,6 +3056,7 @@ declare const SysWebhook: Omit<{
2629
3056
  object: string;
2630
3057
  field: string;
2631
3058
  function: "min" | "max" | "count" | "sum" | "avg";
3059
+ relationshipField?: string | undefined;
2632
3060
  } | undefined;
2633
3061
  readonly language?: string | undefined;
2634
3062
  readonly lineNumbers?: boolean | undefined;
@@ -2723,6 +3151,33 @@ declare const SysWebhook: Omit<{
2723
3151
  threshold: number;
2724
3152
  } | undefined;
2725
3153
  } | undefined;
3154
+ readonly visibleWhen?: {
3155
+ dialect: "cel" | "js" | "cron" | "template";
3156
+ source?: string | undefined;
3157
+ ast?: unknown;
3158
+ meta?: {
3159
+ rationale?: string | undefined;
3160
+ generatedBy?: string | undefined;
3161
+ } | undefined;
3162
+ } | undefined;
3163
+ readonly readonlyWhen?: {
3164
+ dialect: "cel" | "js" | "cron" | "template";
3165
+ source?: string | undefined;
3166
+ ast?: unknown;
3167
+ meta?: {
3168
+ rationale?: string | undefined;
3169
+ generatedBy?: string | undefined;
3170
+ } | undefined;
3171
+ } | undefined;
3172
+ readonly requiredWhen?: {
3173
+ dialect: "cel" | "js" | "cron" | "template";
3174
+ source?: string | undefined;
3175
+ ast?: unknown;
3176
+ meta?: {
3177
+ rationale?: string | undefined;
3178
+ generatedBy?: string | undefined;
3179
+ } | undefined;
3180
+ } | undefined;
2726
3181
  readonly conditionalRequired?: {
2727
3182
  dialect: "cel" | "js" | "cron" | "template";
2728
3183
  source?: string | undefined;
@@ -2791,6 +3246,13 @@ declare const SysWebhook: Omit<{
2791
3246
  readonly referenceFilters?: string[] | undefined;
2792
3247
  readonly writeRequiresMasterRead?: boolean | undefined;
2793
3248
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
3249
+ readonly inlineEdit?: boolean | "grid" | "form" | undefined;
3250
+ readonly inlineTitle?: string | undefined;
3251
+ readonly inlineColumns?: any[] | undefined;
3252
+ readonly inlineAmountField?: string | undefined;
3253
+ readonly relatedList?: boolean | undefined;
3254
+ readonly relatedListTitle?: string | undefined;
3255
+ readonly relatedListColumns?: any[] | undefined;
2794
3256
  readonly expression?: {
2795
3257
  dialect: "cel" | "js" | "cron" | "template";
2796
3258
  source?: string | undefined;
@@ -2804,6 +3266,7 @@ declare const SysWebhook: Omit<{
2804
3266
  object: string;
2805
3267
  field: string;
2806
3268
  function: "min" | "max" | "count" | "sum" | "avg";
3269
+ relationshipField?: string | undefined;
2807
3270
  } | undefined;
2808
3271
  readonly language?: string | undefined;
2809
3272
  readonly lineNumbers?: boolean | undefined;
@@ -2898,6 +3361,33 @@ declare const SysWebhook: Omit<{
2898
3361
  threshold: number;
2899
3362
  } | undefined;
2900
3363
  } | undefined;
3364
+ readonly visibleWhen?: {
3365
+ dialect: "cel" | "js" | "cron" | "template";
3366
+ source?: string | undefined;
3367
+ ast?: unknown;
3368
+ meta?: {
3369
+ rationale?: string | undefined;
3370
+ generatedBy?: string | undefined;
3371
+ } | undefined;
3372
+ } | undefined;
3373
+ readonly readonlyWhen?: {
3374
+ dialect: "cel" | "js" | "cron" | "template";
3375
+ source?: string | undefined;
3376
+ ast?: unknown;
3377
+ meta?: {
3378
+ rationale?: string | undefined;
3379
+ generatedBy?: string | undefined;
3380
+ } | undefined;
3381
+ } | undefined;
3382
+ readonly requiredWhen?: {
3383
+ dialect: "cel" | "js" | "cron" | "template";
3384
+ source?: string | undefined;
3385
+ ast?: unknown;
3386
+ meta?: {
3387
+ rationale?: string | undefined;
3388
+ generatedBy?: string | undefined;
3389
+ } | undefined;
3390
+ } | undefined;
2901
3391
  readonly conditionalRequired?: {
2902
3392
  dialect: "cel" | "js" | "cron" | "template";
2903
3393
  source?: string | undefined;