@objectstack/service-automation 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/index.cjs +59 -17
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +667 -8
- package/dist/index.d.ts +667 -8
- package/dist/index.js +59 -17
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/dist/index.d.cts
CHANGED
|
@@ -55,6 +55,14 @@ interface NodeExecutionResult {
|
|
|
55
55
|
* the form and `resume()` with the values.
|
|
56
56
|
*/
|
|
57
57
|
screen?: ScreenSpec;
|
|
58
|
+
/**
|
|
59
|
+
* #1479: step logs produced inside the node's structured region(s). A
|
|
60
|
+
* container node (`loop` / `parallel` / `try_catch`) collects the
|
|
61
|
+
* {@link AutomationEngine.runRegion} return value(s) here; {@link AutomationEngine.executeNode}
|
|
62
|
+
* appends them to the parent run log right after the container's own step,
|
|
63
|
+
* so per-iteration / per-branch body steps surface in run observability.
|
|
64
|
+
*/
|
|
65
|
+
childSteps?: StepLogEntry[];
|
|
58
66
|
}
|
|
59
67
|
/**
|
|
60
68
|
* A normalized description of *what* fires a flow, derived by the engine from
|
|
@@ -172,6 +180,18 @@ interface StepLogEntry {
|
|
|
172
180
|
message: string;
|
|
173
181
|
stack?: string;
|
|
174
182
|
};
|
|
183
|
+
/**
|
|
184
|
+
* #1479: structured-region grouping. When a step ran inside a `loop` /
|
|
185
|
+
* `parallel` / `try_catch` body region, these tag it with its **immediate**
|
|
186
|
+
* container so run observability can distinguish per-iteration / per-branch
|
|
187
|
+
* body steps from top-level ones. Set by {@link AutomationEngine.runRegion}
|
|
188
|
+
* (innermost wins — never overwritten as steps bubble through nested regions).
|
|
189
|
+
*/
|
|
190
|
+
parentNodeId?: string;
|
|
191
|
+
/** Zero-based loop iteration or parallel branch index of the enclosing region. */
|
|
192
|
+
iteration?: number;
|
|
193
|
+
/** Which region kind the step ran in: `loop-body` | `parallel-branch` | `try` | `catch`. */
|
|
194
|
+
regionKind?: string;
|
|
175
195
|
}
|
|
176
196
|
/**
|
|
177
197
|
* Internal execution log entry — compatible with ExecutionLog from spec.
|
|
@@ -518,14 +538,23 @@ declare class AutomationEngine implements IAutomationService {
|
|
|
518
538
|
* nodes/edges, so the main DAG traversal (`traverseNext`) is never aware of
|
|
519
539
|
* scope markers — keeping the shared traversal untouched.
|
|
520
540
|
*
|
|
521
|
-
*
|
|
522
|
-
*
|
|
541
|
+
* #1479: the executed body steps are **returned** (tagged with `grouping`)
|
|
542
|
+
* so the calling container node can fold them into the parent run log via
|
|
543
|
+
* `NodeExecutionResult.childSteps`. Tagging only fills fields left undefined,
|
|
544
|
+
* so when regions nest, each step keeps its **innermost** container's
|
|
545
|
+
* `parentNodeId` / `iteration` / `regionKind`. On failure the region throws
|
|
546
|
+
* as before (preserving `try_catch` retry semantics); a failed attempt's
|
|
547
|
+
* partial steps are not surfaced.
|
|
523
548
|
*
|
|
524
549
|
* Durable pause (`suspend`) inside a region is not supported in this
|
|
525
550
|
* iteration — it is converted into a clear error (mirrors the `subflow`
|
|
526
551
|
* nested-pause guard).
|
|
527
552
|
*/
|
|
528
|
-
runRegion(region: FlowRegionParsed, variables: Map<string, unknown>, context: AutomationContext
|
|
553
|
+
runRegion(region: FlowRegionParsed, variables: Map<string, unknown>, context: AutomationContext, grouping?: {
|
|
554
|
+
parentNodeId: string;
|
|
555
|
+
iteration?: number;
|
|
556
|
+
regionKind?: string;
|
|
557
|
+
}): Promise<StepLogEntry[]>;
|
|
529
558
|
/**
|
|
530
559
|
* Execute a promise with timeout using Promise.race.
|
|
531
560
|
*/
|
|
@@ -674,6 +703,13 @@ declare const SysAutomationRun: Omit<{
|
|
|
674
703
|
reference?: string | undefined;
|
|
675
704
|
referenceFilters?: string[] | undefined;
|
|
676
705
|
writeRequiresMasterRead?: boolean | undefined;
|
|
706
|
+
inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
707
|
+
inlineTitle?: string | undefined;
|
|
708
|
+
inlineColumns?: any[] | undefined;
|
|
709
|
+
inlineAmountField?: string | undefined;
|
|
710
|
+
relatedList?: boolean | undefined;
|
|
711
|
+
relatedListTitle?: string | undefined;
|
|
712
|
+
relatedListColumns?: any[] | undefined;
|
|
677
713
|
expression?: {
|
|
678
714
|
dialect: "cel" | "js" | "cron" | "template";
|
|
679
715
|
source?: string | undefined;
|
|
@@ -695,6 +731,7 @@ declare const SysAutomationRun: Omit<{
|
|
|
695
731
|
object: string;
|
|
696
732
|
field: string;
|
|
697
733
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
734
|
+
relationshipField?: string | undefined;
|
|
698
735
|
} | undefined;
|
|
699
736
|
language?: string | undefined;
|
|
700
737
|
theme?: string | undefined;
|
|
@@ -808,6 +845,57 @@ declare const SysAutomationRun: Omit<{
|
|
|
808
845
|
} | undefined;
|
|
809
846
|
} | undefined;
|
|
810
847
|
group?: string | undefined;
|
|
848
|
+
visibleWhen?: {
|
|
849
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
850
|
+
source?: string | undefined;
|
|
851
|
+
ast?: unknown;
|
|
852
|
+
meta?: {
|
|
853
|
+
rationale?: string | undefined;
|
|
854
|
+
generatedBy?: string | undefined;
|
|
855
|
+
} | undefined;
|
|
856
|
+
} | {
|
|
857
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
858
|
+
source?: string | undefined;
|
|
859
|
+
ast?: unknown;
|
|
860
|
+
meta?: {
|
|
861
|
+
rationale?: string | undefined;
|
|
862
|
+
generatedBy?: string | undefined;
|
|
863
|
+
} | undefined;
|
|
864
|
+
} | undefined;
|
|
865
|
+
readonlyWhen?: {
|
|
866
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
867
|
+
source?: string | undefined;
|
|
868
|
+
ast?: unknown;
|
|
869
|
+
meta?: {
|
|
870
|
+
rationale?: string | undefined;
|
|
871
|
+
generatedBy?: string | undefined;
|
|
872
|
+
} | undefined;
|
|
873
|
+
} | {
|
|
874
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
875
|
+
source?: string | undefined;
|
|
876
|
+
ast?: unknown;
|
|
877
|
+
meta?: {
|
|
878
|
+
rationale?: string | undefined;
|
|
879
|
+
generatedBy?: string | undefined;
|
|
880
|
+
} | undefined;
|
|
881
|
+
} | undefined;
|
|
882
|
+
requiredWhen?: {
|
|
883
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
884
|
+
source?: string | undefined;
|
|
885
|
+
ast?: unknown;
|
|
886
|
+
meta?: {
|
|
887
|
+
rationale?: string | undefined;
|
|
888
|
+
generatedBy?: string | undefined;
|
|
889
|
+
} | undefined;
|
|
890
|
+
} | {
|
|
891
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
892
|
+
source?: string | undefined;
|
|
893
|
+
ast?: unknown;
|
|
894
|
+
meta?: {
|
|
895
|
+
rationale?: string | undefined;
|
|
896
|
+
generatedBy?: string | undefined;
|
|
897
|
+
} | undefined;
|
|
898
|
+
} | undefined;
|
|
811
899
|
conditionalRequired?: {
|
|
812
900
|
dialect: "cel" | "js" | "cron" | "template";
|
|
813
901
|
source?: string | undefined;
|
|
@@ -949,7 +1037,7 @@ declare const SysAutomationRun: Omit<{
|
|
|
949
1037
|
} | undefined;
|
|
950
1038
|
compactLayout?: string[] | undefined;
|
|
951
1039
|
listViews?: Record<string, {
|
|
952
|
-
type: "map" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart"
|
|
1040
|
+
type: "map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart";
|
|
953
1041
|
columns: string[] | {
|
|
954
1042
|
field: string;
|
|
955
1043
|
label?: string | undefined;
|
|
@@ -1118,7 +1206,7 @@ declare const SysAutomationRun: Omit<{
|
|
|
1118
1206
|
} | undefined;
|
|
1119
1207
|
appearance?: {
|
|
1120
1208
|
showDescription: boolean;
|
|
1121
|
-
allowedVisualizations?: ("map" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline"
|
|
1209
|
+
allowedVisualizations?: ("map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline")[] | undefined;
|
|
1122
1210
|
} | undefined;
|
|
1123
1211
|
tabs?: {
|
|
1124
1212
|
name: string;
|
|
@@ -1138,7 +1226,7 @@ declare const SysAutomationRun: Omit<{
|
|
|
1138
1226
|
addRecord?: {
|
|
1139
1227
|
enabled: boolean;
|
|
1140
1228
|
position: "top" | "bottom" | "both";
|
|
1141
|
-
mode: "
|
|
1229
|
+
mode: "form" | "modal" | "inline";
|
|
1142
1230
|
formView?: string | undefined;
|
|
1143
1231
|
} | undefined;
|
|
1144
1232
|
showRecordCount?: boolean | undefined;
|
|
@@ -1224,7 +1312,7 @@ declare const SysAutomationRun: Omit<{
|
|
|
1224
1312
|
actions?: {
|
|
1225
1313
|
name: string;
|
|
1226
1314
|
label: string;
|
|
1227
|
-
type: "url" | "
|
|
1315
|
+
type: "url" | "form" | "flow" | "api" | "script" | "modal";
|
|
1228
1316
|
refreshAfter: boolean;
|
|
1229
1317
|
objectName?: string | undefined;
|
|
1230
1318
|
icon?: string | undefined;
|
|
@@ -1292,7 +1380,18 @@ declare const SysAutomationRun: Omit<{
|
|
|
1292
1380
|
} | undefined;
|
|
1293
1381
|
shortcut?: string | undefined;
|
|
1294
1382
|
bulkEnabled?: boolean | undefined;
|
|
1295
|
-
|
|
1383
|
+
ai?: {
|
|
1384
|
+
exposed: boolean;
|
|
1385
|
+
description?: string | undefined;
|
|
1386
|
+
category?: "action" | "data" | "flow" | "integration" | "vector_search" | "analytics" | "utility" | undefined;
|
|
1387
|
+
paramHints?: Record<string, {
|
|
1388
|
+
description?: string | undefined;
|
|
1389
|
+
enum?: (string | number)[] | undefined;
|
|
1390
|
+
examples?: unknown[] | undefined;
|
|
1391
|
+
}> | undefined;
|
|
1392
|
+
outputSchema?: Record<string, unknown> | undefined;
|
|
1393
|
+
requiresConfirmation?: boolean | undefined;
|
|
1394
|
+
} | undefined;
|
|
1296
1395
|
recordIdParam?: string | undefined;
|
|
1297
1396
|
recordIdField?: string | undefined;
|
|
1298
1397
|
bodyShape?: "flat" | {
|
|
@@ -1376,6 +1475,13 @@ declare const SysAutomationRun: Omit<{
|
|
|
1376
1475
|
readonly referenceFilters?: string[] | undefined;
|
|
1377
1476
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1378
1477
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1478
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1479
|
+
readonly inlineTitle?: string | undefined;
|
|
1480
|
+
readonly inlineColumns?: any[] | undefined;
|
|
1481
|
+
readonly inlineAmountField?: string | undefined;
|
|
1482
|
+
readonly relatedList?: boolean | undefined;
|
|
1483
|
+
readonly relatedListTitle?: string | undefined;
|
|
1484
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
1379
1485
|
readonly expression?: {
|
|
1380
1486
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1381
1487
|
source?: string | undefined;
|
|
@@ -1389,6 +1495,7 @@ declare const SysAutomationRun: Omit<{
|
|
|
1389
1495
|
object: string;
|
|
1390
1496
|
field: string;
|
|
1391
1497
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1498
|
+
relationshipField?: string | undefined;
|
|
1392
1499
|
} | undefined;
|
|
1393
1500
|
readonly language?: string | undefined;
|
|
1394
1501
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -1483,6 +1590,33 @@ declare const SysAutomationRun: Omit<{
|
|
|
1483
1590
|
threshold: number;
|
|
1484
1591
|
} | undefined;
|
|
1485
1592
|
} | undefined;
|
|
1593
|
+
readonly visibleWhen?: {
|
|
1594
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1595
|
+
source?: string | undefined;
|
|
1596
|
+
ast?: unknown;
|
|
1597
|
+
meta?: {
|
|
1598
|
+
rationale?: string | undefined;
|
|
1599
|
+
generatedBy?: string | undefined;
|
|
1600
|
+
} | undefined;
|
|
1601
|
+
} | undefined;
|
|
1602
|
+
readonly readonlyWhen?: {
|
|
1603
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1604
|
+
source?: string | undefined;
|
|
1605
|
+
ast?: unknown;
|
|
1606
|
+
meta?: {
|
|
1607
|
+
rationale?: string | undefined;
|
|
1608
|
+
generatedBy?: string | undefined;
|
|
1609
|
+
} | undefined;
|
|
1610
|
+
} | undefined;
|
|
1611
|
+
readonly requiredWhen?: {
|
|
1612
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1613
|
+
source?: string | undefined;
|
|
1614
|
+
ast?: unknown;
|
|
1615
|
+
meta?: {
|
|
1616
|
+
rationale?: string | undefined;
|
|
1617
|
+
generatedBy?: string | undefined;
|
|
1618
|
+
} | undefined;
|
|
1619
|
+
} | undefined;
|
|
1486
1620
|
readonly conditionalRequired?: {
|
|
1487
1621
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1488
1622
|
source?: string | undefined;
|
|
@@ -1551,6 +1685,13 @@ declare const SysAutomationRun: Omit<{
|
|
|
1551
1685
|
readonly referenceFilters?: string[] | undefined;
|
|
1552
1686
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1553
1687
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1688
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1689
|
+
readonly inlineTitle?: string | undefined;
|
|
1690
|
+
readonly inlineColumns?: any[] | undefined;
|
|
1691
|
+
readonly inlineAmountField?: string | undefined;
|
|
1692
|
+
readonly relatedList?: boolean | undefined;
|
|
1693
|
+
readonly relatedListTitle?: string | undefined;
|
|
1694
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
1554
1695
|
readonly expression?: {
|
|
1555
1696
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1556
1697
|
source?: string | undefined;
|
|
@@ -1564,6 +1705,7 @@ declare const SysAutomationRun: Omit<{
|
|
|
1564
1705
|
object: string;
|
|
1565
1706
|
field: string;
|
|
1566
1707
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1708
|
+
relationshipField?: string | undefined;
|
|
1567
1709
|
} | undefined;
|
|
1568
1710
|
readonly language?: string | undefined;
|
|
1569
1711
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -1658,6 +1800,33 @@ declare const SysAutomationRun: Omit<{
|
|
|
1658
1800
|
threshold: number;
|
|
1659
1801
|
} | undefined;
|
|
1660
1802
|
} | undefined;
|
|
1803
|
+
readonly visibleWhen?: {
|
|
1804
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1805
|
+
source?: string | undefined;
|
|
1806
|
+
ast?: unknown;
|
|
1807
|
+
meta?: {
|
|
1808
|
+
rationale?: string | undefined;
|
|
1809
|
+
generatedBy?: string | undefined;
|
|
1810
|
+
} | undefined;
|
|
1811
|
+
} | undefined;
|
|
1812
|
+
readonly readonlyWhen?: {
|
|
1813
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1814
|
+
source?: string | undefined;
|
|
1815
|
+
ast?: unknown;
|
|
1816
|
+
meta?: {
|
|
1817
|
+
rationale?: string | undefined;
|
|
1818
|
+
generatedBy?: string | undefined;
|
|
1819
|
+
} | undefined;
|
|
1820
|
+
} | undefined;
|
|
1821
|
+
readonly requiredWhen?: {
|
|
1822
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1823
|
+
source?: string | undefined;
|
|
1824
|
+
ast?: unknown;
|
|
1825
|
+
meta?: {
|
|
1826
|
+
rationale?: string | undefined;
|
|
1827
|
+
generatedBy?: string | undefined;
|
|
1828
|
+
} | undefined;
|
|
1829
|
+
} | undefined;
|
|
1661
1830
|
readonly conditionalRequired?: {
|
|
1662
1831
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1663
1832
|
source?: string | undefined;
|
|
@@ -1726,6 +1895,13 @@ declare const SysAutomationRun: Omit<{
|
|
|
1726
1895
|
readonly referenceFilters?: string[] | undefined;
|
|
1727
1896
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1728
1897
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1898
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1899
|
+
readonly inlineTitle?: string | undefined;
|
|
1900
|
+
readonly inlineColumns?: any[] | undefined;
|
|
1901
|
+
readonly inlineAmountField?: string | undefined;
|
|
1902
|
+
readonly relatedList?: boolean | undefined;
|
|
1903
|
+
readonly relatedListTitle?: string | undefined;
|
|
1904
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
1729
1905
|
readonly expression?: {
|
|
1730
1906
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1731
1907
|
source?: string | undefined;
|
|
@@ -1739,6 +1915,7 @@ declare const SysAutomationRun: Omit<{
|
|
|
1739
1915
|
object: string;
|
|
1740
1916
|
field: string;
|
|
1741
1917
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1918
|
+
relationshipField?: string | undefined;
|
|
1742
1919
|
} | undefined;
|
|
1743
1920
|
readonly language?: string | undefined;
|
|
1744
1921
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -1833,6 +2010,33 @@ declare const SysAutomationRun: Omit<{
|
|
|
1833
2010
|
threshold: number;
|
|
1834
2011
|
} | undefined;
|
|
1835
2012
|
} | undefined;
|
|
2013
|
+
readonly visibleWhen?: {
|
|
2014
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2015
|
+
source?: string | undefined;
|
|
2016
|
+
ast?: unknown;
|
|
2017
|
+
meta?: {
|
|
2018
|
+
rationale?: string | undefined;
|
|
2019
|
+
generatedBy?: string | undefined;
|
|
2020
|
+
} | undefined;
|
|
2021
|
+
} | undefined;
|
|
2022
|
+
readonly readonlyWhen?: {
|
|
2023
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2024
|
+
source?: string | undefined;
|
|
2025
|
+
ast?: unknown;
|
|
2026
|
+
meta?: {
|
|
2027
|
+
rationale?: string | undefined;
|
|
2028
|
+
generatedBy?: string | undefined;
|
|
2029
|
+
} | undefined;
|
|
2030
|
+
} | undefined;
|
|
2031
|
+
readonly requiredWhen?: {
|
|
2032
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2033
|
+
source?: string | undefined;
|
|
2034
|
+
ast?: unknown;
|
|
2035
|
+
meta?: {
|
|
2036
|
+
rationale?: string | undefined;
|
|
2037
|
+
generatedBy?: string | undefined;
|
|
2038
|
+
} | undefined;
|
|
2039
|
+
} | undefined;
|
|
1836
2040
|
readonly conditionalRequired?: {
|
|
1837
2041
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1838
2042
|
source?: string | undefined;
|
|
@@ -1901,6 +2105,13 @@ declare const SysAutomationRun: Omit<{
|
|
|
1901
2105
|
readonly referenceFilters?: string[] | undefined;
|
|
1902
2106
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1903
2107
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2108
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2109
|
+
readonly inlineTitle?: string | undefined;
|
|
2110
|
+
readonly inlineColumns?: any[] | undefined;
|
|
2111
|
+
readonly inlineAmountField?: string | undefined;
|
|
2112
|
+
readonly relatedList?: boolean | undefined;
|
|
2113
|
+
readonly relatedListTitle?: string | undefined;
|
|
2114
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
1904
2115
|
readonly expression?: {
|
|
1905
2116
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1906
2117
|
source?: string | undefined;
|
|
@@ -1914,6 +2125,7 @@ declare const SysAutomationRun: Omit<{
|
|
|
1914
2125
|
object: string;
|
|
1915
2126
|
field: string;
|
|
1916
2127
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2128
|
+
relationshipField?: string | undefined;
|
|
1917
2129
|
} | undefined;
|
|
1918
2130
|
readonly language?: string | undefined;
|
|
1919
2131
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -2008,6 +2220,33 @@ declare const SysAutomationRun: Omit<{
|
|
|
2008
2220
|
threshold: number;
|
|
2009
2221
|
} | undefined;
|
|
2010
2222
|
} | undefined;
|
|
2223
|
+
readonly visibleWhen?: {
|
|
2224
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2225
|
+
source?: string | undefined;
|
|
2226
|
+
ast?: unknown;
|
|
2227
|
+
meta?: {
|
|
2228
|
+
rationale?: string | undefined;
|
|
2229
|
+
generatedBy?: string | undefined;
|
|
2230
|
+
} | undefined;
|
|
2231
|
+
} | undefined;
|
|
2232
|
+
readonly readonlyWhen?: {
|
|
2233
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2234
|
+
source?: string | undefined;
|
|
2235
|
+
ast?: unknown;
|
|
2236
|
+
meta?: {
|
|
2237
|
+
rationale?: string | undefined;
|
|
2238
|
+
generatedBy?: string | undefined;
|
|
2239
|
+
} | undefined;
|
|
2240
|
+
} | undefined;
|
|
2241
|
+
readonly requiredWhen?: {
|
|
2242
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2243
|
+
source?: string | undefined;
|
|
2244
|
+
ast?: unknown;
|
|
2245
|
+
meta?: {
|
|
2246
|
+
rationale?: string | undefined;
|
|
2247
|
+
generatedBy?: string | undefined;
|
|
2248
|
+
} | undefined;
|
|
2249
|
+
} | undefined;
|
|
2011
2250
|
readonly conditionalRequired?: {
|
|
2012
2251
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2013
2252
|
source?: string | undefined;
|
|
@@ -2076,6 +2315,13 @@ declare const SysAutomationRun: Omit<{
|
|
|
2076
2315
|
readonly referenceFilters?: string[] | undefined;
|
|
2077
2316
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2078
2317
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2318
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2319
|
+
readonly inlineTitle?: string | undefined;
|
|
2320
|
+
readonly inlineColumns?: any[] | undefined;
|
|
2321
|
+
readonly inlineAmountField?: string | undefined;
|
|
2322
|
+
readonly relatedList?: boolean | undefined;
|
|
2323
|
+
readonly relatedListTitle?: string | undefined;
|
|
2324
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
2079
2325
|
readonly expression?: {
|
|
2080
2326
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2081
2327
|
source?: string | undefined;
|
|
@@ -2089,6 +2335,7 @@ declare const SysAutomationRun: Omit<{
|
|
|
2089
2335
|
object: string;
|
|
2090
2336
|
field: string;
|
|
2091
2337
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2338
|
+
relationshipField?: string | undefined;
|
|
2092
2339
|
} | undefined;
|
|
2093
2340
|
readonly language?: string | undefined;
|
|
2094
2341
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -2183,6 +2430,33 @@ declare const SysAutomationRun: Omit<{
|
|
|
2183
2430
|
threshold: number;
|
|
2184
2431
|
} | undefined;
|
|
2185
2432
|
} | undefined;
|
|
2433
|
+
readonly visibleWhen?: {
|
|
2434
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2435
|
+
source?: string | undefined;
|
|
2436
|
+
ast?: unknown;
|
|
2437
|
+
meta?: {
|
|
2438
|
+
rationale?: string | undefined;
|
|
2439
|
+
generatedBy?: string | undefined;
|
|
2440
|
+
} | undefined;
|
|
2441
|
+
} | undefined;
|
|
2442
|
+
readonly readonlyWhen?: {
|
|
2443
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2444
|
+
source?: string | undefined;
|
|
2445
|
+
ast?: unknown;
|
|
2446
|
+
meta?: {
|
|
2447
|
+
rationale?: string | undefined;
|
|
2448
|
+
generatedBy?: string | undefined;
|
|
2449
|
+
} | undefined;
|
|
2450
|
+
} | undefined;
|
|
2451
|
+
readonly requiredWhen?: {
|
|
2452
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2453
|
+
source?: string | undefined;
|
|
2454
|
+
ast?: unknown;
|
|
2455
|
+
meta?: {
|
|
2456
|
+
rationale?: string | undefined;
|
|
2457
|
+
generatedBy?: string | undefined;
|
|
2458
|
+
} | undefined;
|
|
2459
|
+
} | undefined;
|
|
2186
2460
|
readonly conditionalRequired?: {
|
|
2187
2461
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2188
2462
|
source?: string | undefined;
|
|
@@ -2251,6 +2525,13 @@ declare const SysAutomationRun: Omit<{
|
|
|
2251
2525
|
readonly referenceFilters?: string[] | undefined;
|
|
2252
2526
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2253
2527
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2528
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2529
|
+
readonly inlineTitle?: string | undefined;
|
|
2530
|
+
readonly inlineColumns?: any[] | undefined;
|
|
2531
|
+
readonly inlineAmountField?: string | undefined;
|
|
2532
|
+
readonly relatedList?: boolean | undefined;
|
|
2533
|
+
readonly relatedListTitle?: string | undefined;
|
|
2534
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
2254
2535
|
readonly expression?: {
|
|
2255
2536
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2256
2537
|
source?: string | undefined;
|
|
@@ -2264,6 +2545,7 @@ declare const SysAutomationRun: Omit<{
|
|
|
2264
2545
|
object: string;
|
|
2265
2546
|
field: string;
|
|
2266
2547
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2548
|
+
relationshipField?: string | undefined;
|
|
2267
2549
|
} | undefined;
|
|
2268
2550
|
readonly language?: string | undefined;
|
|
2269
2551
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -2358,6 +2640,33 @@ declare const SysAutomationRun: Omit<{
|
|
|
2358
2640
|
threshold: number;
|
|
2359
2641
|
} | undefined;
|
|
2360
2642
|
} | undefined;
|
|
2643
|
+
readonly visibleWhen?: {
|
|
2644
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2645
|
+
source?: string | undefined;
|
|
2646
|
+
ast?: unknown;
|
|
2647
|
+
meta?: {
|
|
2648
|
+
rationale?: string | undefined;
|
|
2649
|
+
generatedBy?: string | undefined;
|
|
2650
|
+
} | undefined;
|
|
2651
|
+
} | undefined;
|
|
2652
|
+
readonly readonlyWhen?: {
|
|
2653
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2654
|
+
source?: string | undefined;
|
|
2655
|
+
ast?: unknown;
|
|
2656
|
+
meta?: {
|
|
2657
|
+
rationale?: string | undefined;
|
|
2658
|
+
generatedBy?: string | undefined;
|
|
2659
|
+
} | undefined;
|
|
2660
|
+
} | undefined;
|
|
2661
|
+
readonly requiredWhen?: {
|
|
2662
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2663
|
+
source?: string | undefined;
|
|
2664
|
+
ast?: unknown;
|
|
2665
|
+
meta?: {
|
|
2666
|
+
rationale?: string | undefined;
|
|
2667
|
+
generatedBy?: string | undefined;
|
|
2668
|
+
} | undefined;
|
|
2669
|
+
} | undefined;
|
|
2361
2670
|
readonly conditionalRequired?: {
|
|
2362
2671
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2363
2672
|
source?: string | undefined;
|
|
@@ -2426,6 +2735,13 @@ declare const SysAutomationRun: Omit<{
|
|
|
2426
2735
|
readonly referenceFilters?: string[] | undefined;
|
|
2427
2736
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2428
2737
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2738
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2739
|
+
readonly inlineTitle?: string | undefined;
|
|
2740
|
+
readonly inlineColumns?: any[] | undefined;
|
|
2741
|
+
readonly inlineAmountField?: string | undefined;
|
|
2742
|
+
readonly relatedList?: boolean | undefined;
|
|
2743
|
+
readonly relatedListTitle?: string | undefined;
|
|
2744
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
2429
2745
|
readonly expression?: {
|
|
2430
2746
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2431
2747
|
source?: string | undefined;
|
|
@@ -2439,6 +2755,7 @@ declare const SysAutomationRun: Omit<{
|
|
|
2439
2755
|
object: string;
|
|
2440
2756
|
field: string;
|
|
2441
2757
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2758
|
+
relationshipField?: string | undefined;
|
|
2442
2759
|
} | undefined;
|
|
2443
2760
|
readonly language?: string | undefined;
|
|
2444
2761
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -2533,6 +2850,33 @@ declare const SysAutomationRun: Omit<{
|
|
|
2533
2850
|
threshold: number;
|
|
2534
2851
|
} | undefined;
|
|
2535
2852
|
} | undefined;
|
|
2853
|
+
readonly visibleWhen?: {
|
|
2854
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2855
|
+
source?: string | undefined;
|
|
2856
|
+
ast?: unknown;
|
|
2857
|
+
meta?: {
|
|
2858
|
+
rationale?: string | undefined;
|
|
2859
|
+
generatedBy?: string | undefined;
|
|
2860
|
+
} | undefined;
|
|
2861
|
+
} | undefined;
|
|
2862
|
+
readonly readonlyWhen?: {
|
|
2863
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2864
|
+
source?: string | undefined;
|
|
2865
|
+
ast?: unknown;
|
|
2866
|
+
meta?: {
|
|
2867
|
+
rationale?: string | undefined;
|
|
2868
|
+
generatedBy?: string | undefined;
|
|
2869
|
+
} | undefined;
|
|
2870
|
+
} | undefined;
|
|
2871
|
+
readonly requiredWhen?: {
|
|
2872
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2873
|
+
source?: string | undefined;
|
|
2874
|
+
ast?: unknown;
|
|
2875
|
+
meta?: {
|
|
2876
|
+
rationale?: string | undefined;
|
|
2877
|
+
generatedBy?: string | undefined;
|
|
2878
|
+
} | undefined;
|
|
2879
|
+
} | undefined;
|
|
2536
2880
|
readonly conditionalRequired?: {
|
|
2537
2881
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2538
2882
|
source?: string | undefined;
|
|
@@ -2601,6 +2945,13 @@ declare const SysAutomationRun: Omit<{
|
|
|
2601
2945
|
readonly referenceFilters?: string[] | undefined;
|
|
2602
2946
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2603
2947
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2948
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2949
|
+
readonly inlineTitle?: string | undefined;
|
|
2950
|
+
readonly inlineColumns?: any[] | undefined;
|
|
2951
|
+
readonly inlineAmountField?: string | undefined;
|
|
2952
|
+
readonly relatedList?: boolean | undefined;
|
|
2953
|
+
readonly relatedListTitle?: string | undefined;
|
|
2954
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
2604
2955
|
readonly expression?: {
|
|
2605
2956
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2606
2957
|
source?: string | undefined;
|
|
@@ -2614,6 +2965,7 @@ declare const SysAutomationRun: Omit<{
|
|
|
2614
2965
|
object: string;
|
|
2615
2966
|
field: string;
|
|
2616
2967
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2968
|
+
relationshipField?: string | undefined;
|
|
2617
2969
|
} | undefined;
|
|
2618
2970
|
readonly language?: string | undefined;
|
|
2619
2971
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -2708,6 +3060,33 @@ declare const SysAutomationRun: Omit<{
|
|
|
2708
3060
|
threshold: number;
|
|
2709
3061
|
} | undefined;
|
|
2710
3062
|
} | undefined;
|
|
3063
|
+
readonly visibleWhen?: {
|
|
3064
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3065
|
+
source?: string | undefined;
|
|
3066
|
+
ast?: unknown;
|
|
3067
|
+
meta?: {
|
|
3068
|
+
rationale?: string | undefined;
|
|
3069
|
+
generatedBy?: string | undefined;
|
|
3070
|
+
} | undefined;
|
|
3071
|
+
} | undefined;
|
|
3072
|
+
readonly readonlyWhen?: {
|
|
3073
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3074
|
+
source?: string | undefined;
|
|
3075
|
+
ast?: unknown;
|
|
3076
|
+
meta?: {
|
|
3077
|
+
rationale?: string | undefined;
|
|
3078
|
+
generatedBy?: string | undefined;
|
|
3079
|
+
} | undefined;
|
|
3080
|
+
} | undefined;
|
|
3081
|
+
readonly requiredWhen?: {
|
|
3082
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3083
|
+
source?: string | undefined;
|
|
3084
|
+
ast?: unknown;
|
|
3085
|
+
meta?: {
|
|
3086
|
+
rationale?: string | undefined;
|
|
3087
|
+
generatedBy?: string | undefined;
|
|
3088
|
+
} | undefined;
|
|
3089
|
+
} | undefined;
|
|
2711
3090
|
readonly conditionalRequired?: {
|
|
2712
3091
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2713
3092
|
source?: string | undefined;
|
|
@@ -2776,6 +3155,13 @@ declare const SysAutomationRun: Omit<{
|
|
|
2776
3155
|
readonly referenceFilters?: string[] | undefined;
|
|
2777
3156
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2778
3157
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3158
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
3159
|
+
readonly inlineTitle?: string | undefined;
|
|
3160
|
+
readonly inlineColumns?: any[] | undefined;
|
|
3161
|
+
readonly inlineAmountField?: string | undefined;
|
|
3162
|
+
readonly relatedList?: boolean | undefined;
|
|
3163
|
+
readonly relatedListTitle?: string | undefined;
|
|
3164
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
2779
3165
|
readonly expression?: {
|
|
2780
3166
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2781
3167
|
source?: string | undefined;
|
|
@@ -2789,6 +3175,7 @@ declare const SysAutomationRun: Omit<{
|
|
|
2789
3175
|
object: string;
|
|
2790
3176
|
field: string;
|
|
2791
3177
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
3178
|
+
relationshipField?: string | undefined;
|
|
2792
3179
|
} | undefined;
|
|
2793
3180
|
readonly language?: string | undefined;
|
|
2794
3181
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -2883,6 +3270,33 @@ declare const SysAutomationRun: Omit<{
|
|
|
2883
3270
|
threshold: number;
|
|
2884
3271
|
} | undefined;
|
|
2885
3272
|
} | undefined;
|
|
3273
|
+
readonly visibleWhen?: {
|
|
3274
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3275
|
+
source?: string | undefined;
|
|
3276
|
+
ast?: unknown;
|
|
3277
|
+
meta?: {
|
|
3278
|
+
rationale?: string | undefined;
|
|
3279
|
+
generatedBy?: string | undefined;
|
|
3280
|
+
} | undefined;
|
|
3281
|
+
} | undefined;
|
|
3282
|
+
readonly readonlyWhen?: {
|
|
3283
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3284
|
+
source?: string | undefined;
|
|
3285
|
+
ast?: unknown;
|
|
3286
|
+
meta?: {
|
|
3287
|
+
rationale?: string | undefined;
|
|
3288
|
+
generatedBy?: string | undefined;
|
|
3289
|
+
} | undefined;
|
|
3290
|
+
} | undefined;
|
|
3291
|
+
readonly requiredWhen?: {
|
|
3292
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3293
|
+
source?: string | undefined;
|
|
3294
|
+
ast?: unknown;
|
|
3295
|
+
meta?: {
|
|
3296
|
+
rationale?: string | undefined;
|
|
3297
|
+
generatedBy?: string | undefined;
|
|
3298
|
+
} | undefined;
|
|
3299
|
+
} | undefined;
|
|
2886
3300
|
readonly conditionalRequired?: {
|
|
2887
3301
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2888
3302
|
source?: string | undefined;
|
|
@@ -2951,6 +3365,13 @@ declare const SysAutomationRun: Omit<{
|
|
|
2951
3365
|
readonly referenceFilters?: string[] | undefined;
|
|
2952
3366
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2953
3367
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3368
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
3369
|
+
readonly inlineTitle?: string | undefined;
|
|
3370
|
+
readonly inlineColumns?: any[] | undefined;
|
|
3371
|
+
readonly inlineAmountField?: string | undefined;
|
|
3372
|
+
readonly relatedList?: boolean | undefined;
|
|
3373
|
+
readonly relatedListTitle?: string | undefined;
|
|
3374
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
2954
3375
|
readonly expression?: {
|
|
2955
3376
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2956
3377
|
source?: string | undefined;
|
|
@@ -2964,6 +3385,7 @@ declare const SysAutomationRun: Omit<{
|
|
|
2964
3385
|
object: string;
|
|
2965
3386
|
field: string;
|
|
2966
3387
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
3388
|
+
relationshipField?: string | undefined;
|
|
2967
3389
|
} | undefined;
|
|
2968
3390
|
readonly language?: string | undefined;
|
|
2969
3391
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -3058,6 +3480,33 @@ declare const SysAutomationRun: Omit<{
|
|
|
3058
3480
|
threshold: number;
|
|
3059
3481
|
} | undefined;
|
|
3060
3482
|
} | undefined;
|
|
3483
|
+
readonly visibleWhen?: {
|
|
3484
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3485
|
+
source?: string | undefined;
|
|
3486
|
+
ast?: unknown;
|
|
3487
|
+
meta?: {
|
|
3488
|
+
rationale?: string | undefined;
|
|
3489
|
+
generatedBy?: string | undefined;
|
|
3490
|
+
} | undefined;
|
|
3491
|
+
} | undefined;
|
|
3492
|
+
readonly readonlyWhen?: {
|
|
3493
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3494
|
+
source?: string | undefined;
|
|
3495
|
+
ast?: unknown;
|
|
3496
|
+
meta?: {
|
|
3497
|
+
rationale?: string | undefined;
|
|
3498
|
+
generatedBy?: string | undefined;
|
|
3499
|
+
} | undefined;
|
|
3500
|
+
} | undefined;
|
|
3501
|
+
readonly requiredWhen?: {
|
|
3502
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3503
|
+
source?: string | undefined;
|
|
3504
|
+
ast?: unknown;
|
|
3505
|
+
meta?: {
|
|
3506
|
+
rationale?: string | undefined;
|
|
3507
|
+
generatedBy?: string | undefined;
|
|
3508
|
+
} | undefined;
|
|
3509
|
+
} | undefined;
|
|
3061
3510
|
readonly conditionalRequired?: {
|
|
3062
3511
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3063
3512
|
source?: string | undefined;
|
|
@@ -3126,6 +3575,13 @@ declare const SysAutomationRun: Omit<{
|
|
|
3126
3575
|
readonly referenceFilters?: string[] | undefined;
|
|
3127
3576
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
3128
3577
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3578
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
3579
|
+
readonly inlineTitle?: string | undefined;
|
|
3580
|
+
readonly inlineColumns?: any[] | undefined;
|
|
3581
|
+
readonly inlineAmountField?: string | undefined;
|
|
3582
|
+
readonly relatedList?: boolean | undefined;
|
|
3583
|
+
readonly relatedListTitle?: string | undefined;
|
|
3584
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
3129
3585
|
readonly expression?: {
|
|
3130
3586
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3131
3587
|
source?: string | undefined;
|
|
@@ -3139,6 +3595,7 @@ declare const SysAutomationRun: Omit<{
|
|
|
3139
3595
|
object: string;
|
|
3140
3596
|
field: string;
|
|
3141
3597
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
3598
|
+
relationshipField?: string | undefined;
|
|
3142
3599
|
} | undefined;
|
|
3143
3600
|
readonly language?: string | undefined;
|
|
3144
3601
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -3233,6 +3690,33 @@ declare const SysAutomationRun: Omit<{
|
|
|
3233
3690
|
threshold: number;
|
|
3234
3691
|
} | undefined;
|
|
3235
3692
|
} | undefined;
|
|
3693
|
+
readonly visibleWhen?: {
|
|
3694
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3695
|
+
source?: string | undefined;
|
|
3696
|
+
ast?: unknown;
|
|
3697
|
+
meta?: {
|
|
3698
|
+
rationale?: string | undefined;
|
|
3699
|
+
generatedBy?: string | undefined;
|
|
3700
|
+
} | undefined;
|
|
3701
|
+
} | undefined;
|
|
3702
|
+
readonly readonlyWhen?: {
|
|
3703
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3704
|
+
source?: string | undefined;
|
|
3705
|
+
ast?: unknown;
|
|
3706
|
+
meta?: {
|
|
3707
|
+
rationale?: string | undefined;
|
|
3708
|
+
generatedBy?: string | undefined;
|
|
3709
|
+
} | undefined;
|
|
3710
|
+
} | undefined;
|
|
3711
|
+
readonly requiredWhen?: {
|
|
3712
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3713
|
+
source?: string | undefined;
|
|
3714
|
+
ast?: unknown;
|
|
3715
|
+
meta?: {
|
|
3716
|
+
rationale?: string | undefined;
|
|
3717
|
+
generatedBy?: string | undefined;
|
|
3718
|
+
} | undefined;
|
|
3719
|
+
} | undefined;
|
|
3236
3720
|
readonly conditionalRequired?: {
|
|
3237
3721
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3238
3722
|
source?: string | undefined;
|
|
@@ -3301,6 +3785,13 @@ declare const SysAutomationRun: Omit<{
|
|
|
3301
3785
|
readonly referenceFilters?: string[] | undefined;
|
|
3302
3786
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
3303
3787
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3788
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
3789
|
+
readonly inlineTitle?: string | undefined;
|
|
3790
|
+
readonly inlineColumns?: any[] | undefined;
|
|
3791
|
+
readonly inlineAmountField?: string | undefined;
|
|
3792
|
+
readonly relatedList?: boolean | undefined;
|
|
3793
|
+
readonly relatedListTitle?: string | undefined;
|
|
3794
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
3304
3795
|
readonly expression?: {
|
|
3305
3796
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3306
3797
|
source?: string | undefined;
|
|
@@ -3314,6 +3805,7 @@ declare const SysAutomationRun: Omit<{
|
|
|
3314
3805
|
object: string;
|
|
3315
3806
|
field: string;
|
|
3316
3807
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
3808
|
+
relationshipField?: string | undefined;
|
|
3317
3809
|
} | undefined;
|
|
3318
3810
|
readonly language?: string | undefined;
|
|
3319
3811
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -3408,6 +3900,33 @@ declare const SysAutomationRun: Omit<{
|
|
|
3408
3900
|
threshold: number;
|
|
3409
3901
|
} | undefined;
|
|
3410
3902
|
} | undefined;
|
|
3903
|
+
readonly visibleWhen?: {
|
|
3904
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3905
|
+
source?: string | undefined;
|
|
3906
|
+
ast?: unknown;
|
|
3907
|
+
meta?: {
|
|
3908
|
+
rationale?: string | undefined;
|
|
3909
|
+
generatedBy?: string | undefined;
|
|
3910
|
+
} | undefined;
|
|
3911
|
+
} | undefined;
|
|
3912
|
+
readonly readonlyWhen?: {
|
|
3913
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3914
|
+
source?: string | undefined;
|
|
3915
|
+
ast?: unknown;
|
|
3916
|
+
meta?: {
|
|
3917
|
+
rationale?: string | undefined;
|
|
3918
|
+
generatedBy?: string | undefined;
|
|
3919
|
+
} | undefined;
|
|
3920
|
+
} | undefined;
|
|
3921
|
+
readonly requiredWhen?: {
|
|
3922
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3923
|
+
source?: string | undefined;
|
|
3924
|
+
ast?: unknown;
|
|
3925
|
+
meta?: {
|
|
3926
|
+
rationale?: string | undefined;
|
|
3927
|
+
generatedBy?: string | undefined;
|
|
3928
|
+
} | undefined;
|
|
3929
|
+
} | undefined;
|
|
3411
3930
|
readonly conditionalRequired?: {
|
|
3412
3931
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3413
3932
|
source?: string | undefined;
|
|
@@ -3476,6 +3995,13 @@ declare const SysAutomationRun: Omit<{
|
|
|
3476
3995
|
readonly referenceFilters?: string[] | undefined;
|
|
3477
3996
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
3478
3997
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3998
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
3999
|
+
readonly inlineTitle?: string | undefined;
|
|
4000
|
+
readonly inlineColumns?: any[] | undefined;
|
|
4001
|
+
readonly inlineAmountField?: string | undefined;
|
|
4002
|
+
readonly relatedList?: boolean | undefined;
|
|
4003
|
+
readonly relatedListTitle?: string | undefined;
|
|
4004
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
3479
4005
|
readonly expression?: {
|
|
3480
4006
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3481
4007
|
source?: string | undefined;
|
|
@@ -3489,6 +4015,7 @@ declare const SysAutomationRun: Omit<{
|
|
|
3489
4015
|
object: string;
|
|
3490
4016
|
field: string;
|
|
3491
4017
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
4018
|
+
relationshipField?: string | undefined;
|
|
3492
4019
|
} | undefined;
|
|
3493
4020
|
readonly language?: string | undefined;
|
|
3494
4021
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -3583,6 +4110,33 @@ declare const SysAutomationRun: Omit<{
|
|
|
3583
4110
|
threshold: number;
|
|
3584
4111
|
} | undefined;
|
|
3585
4112
|
} | undefined;
|
|
4113
|
+
readonly visibleWhen?: {
|
|
4114
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4115
|
+
source?: string | undefined;
|
|
4116
|
+
ast?: unknown;
|
|
4117
|
+
meta?: {
|
|
4118
|
+
rationale?: string | undefined;
|
|
4119
|
+
generatedBy?: string | undefined;
|
|
4120
|
+
} | undefined;
|
|
4121
|
+
} | undefined;
|
|
4122
|
+
readonly readonlyWhen?: {
|
|
4123
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4124
|
+
source?: string | undefined;
|
|
4125
|
+
ast?: unknown;
|
|
4126
|
+
meta?: {
|
|
4127
|
+
rationale?: string | undefined;
|
|
4128
|
+
generatedBy?: string | undefined;
|
|
4129
|
+
} | undefined;
|
|
4130
|
+
} | undefined;
|
|
4131
|
+
readonly requiredWhen?: {
|
|
4132
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4133
|
+
source?: string | undefined;
|
|
4134
|
+
ast?: unknown;
|
|
4135
|
+
meta?: {
|
|
4136
|
+
rationale?: string | undefined;
|
|
4137
|
+
generatedBy?: string | undefined;
|
|
4138
|
+
} | undefined;
|
|
4139
|
+
} | undefined;
|
|
3586
4140
|
readonly conditionalRequired?: {
|
|
3587
4141
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3588
4142
|
source?: string | undefined;
|
|
@@ -3651,6 +4205,13 @@ declare const SysAutomationRun: Omit<{
|
|
|
3651
4205
|
readonly referenceFilters?: string[] | undefined;
|
|
3652
4206
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
3653
4207
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4208
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
4209
|
+
readonly inlineTitle?: string | undefined;
|
|
4210
|
+
readonly inlineColumns?: any[] | undefined;
|
|
4211
|
+
readonly inlineAmountField?: string | undefined;
|
|
4212
|
+
readonly relatedList?: boolean | undefined;
|
|
4213
|
+
readonly relatedListTitle?: string | undefined;
|
|
4214
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
3654
4215
|
readonly expression?: {
|
|
3655
4216
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3656
4217
|
source?: string | undefined;
|
|
@@ -3664,6 +4225,7 @@ declare const SysAutomationRun: Omit<{
|
|
|
3664
4225
|
object: string;
|
|
3665
4226
|
field: string;
|
|
3666
4227
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
4228
|
+
relationshipField?: string | undefined;
|
|
3667
4229
|
} | undefined;
|
|
3668
4230
|
readonly language?: string | undefined;
|
|
3669
4231
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -3758,6 +4320,33 @@ declare const SysAutomationRun: Omit<{
|
|
|
3758
4320
|
threshold: number;
|
|
3759
4321
|
} | undefined;
|
|
3760
4322
|
} | undefined;
|
|
4323
|
+
readonly visibleWhen?: {
|
|
4324
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4325
|
+
source?: string | undefined;
|
|
4326
|
+
ast?: unknown;
|
|
4327
|
+
meta?: {
|
|
4328
|
+
rationale?: string | undefined;
|
|
4329
|
+
generatedBy?: string | undefined;
|
|
4330
|
+
} | undefined;
|
|
4331
|
+
} | undefined;
|
|
4332
|
+
readonly readonlyWhen?: {
|
|
4333
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4334
|
+
source?: string | undefined;
|
|
4335
|
+
ast?: unknown;
|
|
4336
|
+
meta?: {
|
|
4337
|
+
rationale?: string | undefined;
|
|
4338
|
+
generatedBy?: string | undefined;
|
|
4339
|
+
} | undefined;
|
|
4340
|
+
} | undefined;
|
|
4341
|
+
readonly requiredWhen?: {
|
|
4342
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4343
|
+
source?: string | undefined;
|
|
4344
|
+
ast?: unknown;
|
|
4345
|
+
meta?: {
|
|
4346
|
+
rationale?: string | undefined;
|
|
4347
|
+
generatedBy?: string | undefined;
|
|
4348
|
+
} | undefined;
|
|
4349
|
+
} | undefined;
|
|
3761
4350
|
readonly conditionalRequired?: {
|
|
3762
4351
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3763
4352
|
source?: string | undefined;
|
|
@@ -3826,6 +4415,13 @@ declare const SysAutomationRun: Omit<{
|
|
|
3826
4415
|
readonly referenceFilters?: string[] | undefined;
|
|
3827
4416
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
3828
4417
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4418
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
4419
|
+
readonly inlineTitle?: string | undefined;
|
|
4420
|
+
readonly inlineColumns?: any[] | undefined;
|
|
4421
|
+
readonly inlineAmountField?: string | undefined;
|
|
4422
|
+
readonly relatedList?: boolean | undefined;
|
|
4423
|
+
readonly relatedListTitle?: string | undefined;
|
|
4424
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
3829
4425
|
readonly expression?: {
|
|
3830
4426
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3831
4427
|
source?: string | undefined;
|
|
@@ -3839,6 +4435,7 @@ declare const SysAutomationRun: Omit<{
|
|
|
3839
4435
|
object: string;
|
|
3840
4436
|
field: string;
|
|
3841
4437
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
4438
|
+
relationshipField?: string | undefined;
|
|
3842
4439
|
} | undefined;
|
|
3843
4440
|
readonly language?: string | undefined;
|
|
3844
4441
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -3933,6 +4530,33 @@ declare const SysAutomationRun: Omit<{
|
|
|
3933
4530
|
threshold: number;
|
|
3934
4531
|
} | undefined;
|
|
3935
4532
|
} | undefined;
|
|
4533
|
+
readonly visibleWhen?: {
|
|
4534
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4535
|
+
source?: string | undefined;
|
|
4536
|
+
ast?: unknown;
|
|
4537
|
+
meta?: {
|
|
4538
|
+
rationale?: string | undefined;
|
|
4539
|
+
generatedBy?: string | undefined;
|
|
4540
|
+
} | undefined;
|
|
4541
|
+
} | undefined;
|
|
4542
|
+
readonly readonlyWhen?: {
|
|
4543
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4544
|
+
source?: string | undefined;
|
|
4545
|
+
ast?: unknown;
|
|
4546
|
+
meta?: {
|
|
4547
|
+
rationale?: string | undefined;
|
|
4548
|
+
generatedBy?: string | undefined;
|
|
4549
|
+
} | undefined;
|
|
4550
|
+
} | undefined;
|
|
4551
|
+
readonly requiredWhen?: {
|
|
4552
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4553
|
+
source?: string | undefined;
|
|
4554
|
+
ast?: unknown;
|
|
4555
|
+
meta?: {
|
|
4556
|
+
rationale?: string | undefined;
|
|
4557
|
+
generatedBy?: string | undefined;
|
|
4558
|
+
} | undefined;
|
|
4559
|
+
} | undefined;
|
|
3936
4560
|
readonly conditionalRequired?: {
|
|
3937
4561
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3938
4562
|
source?: string | undefined;
|
|
@@ -4001,6 +4625,13 @@ declare const SysAutomationRun: Omit<{
|
|
|
4001
4625
|
readonly referenceFilters?: string[] | undefined;
|
|
4002
4626
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
4003
4627
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4628
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
4629
|
+
readonly inlineTitle?: string | undefined;
|
|
4630
|
+
readonly inlineColumns?: any[] | undefined;
|
|
4631
|
+
readonly inlineAmountField?: string | undefined;
|
|
4632
|
+
readonly relatedList?: boolean | undefined;
|
|
4633
|
+
readonly relatedListTitle?: string | undefined;
|
|
4634
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
4004
4635
|
readonly expression?: {
|
|
4005
4636
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4006
4637
|
source?: string | undefined;
|
|
@@ -4014,6 +4645,7 @@ declare const SysAutomationRun: Omit<{
|
|
|
4014
4645
|
object: string;
|
|
4015
4646
|
field: string;
|
|
4016
4647
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
4648
|
+
relationshipField?: string | undefined;
|
|
4017
4649
|
} | undefined;
|
|
4018
4650
|
readonly language?: string | undefined;
|
|
4019
4651
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -4108,6 +4740,33 @@ declare const SysAutomationRun: Omit<{
|
|
|
4108
4740
|
threshold: number;
|
|
4109
4741
|
} | undefined;
|
|
4110
4742
|
} | undefined;
|
|
4743
|
+
readonly visibleWhen?: {
|
|
4744
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4745
|
+
source?: string | undefined;
|
|
4746
|
+
ast?: unknown;
|
|
4747
|
+
meta?: {
|
|
4748
|
+
rationale?: string | undefined;
|
|
4749
|
+
generatedBy?: string | undefined;
|
|
4750
|
+
} | undefined;
|
|
4751
|
+
} | undefined;
|
|
4752
|
+
readonly readonlyWhen?: {
|
|
4753
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4754
|
+
source?: string | undefined;
|
|
4755
|
+
ast?: unknown;
|
|
4756
|
+
meta?: {
|
|
4757
|
+
rationale?: string | undefined;
|
|
4758
|
+
generatedBy?: string | undefined;
|
|
4759
|
+
} | undefined;
|
|
4760
|
+
} | undefined;
|
|
4761
|
+
readonly requiredWhen?: {
|
|
4762
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4763
|
+
source?: string | undefined;
|
|
4764
|
+
ast?: unknown;
|
|
4765
|
+
meta?: {
|
|
4766
|
+
rationale?: string | undefined;
|
|
4767
|
+
generatedBy?: string | undefined;
|
|
4768
|
+
} | undefined;
|
|
4769
|
+
} | undefined;
|
|
4111
4770
|
readonly conditionalRequired?: {
|
|
4112
4771
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4113
4772
|
source?: string | undefined;
|