@objectstack/plugin-approvals 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.
- package/.turbo/turbo-build.log +10 -10
- package/CHANGELOG.md +30 -0
- package/dist/index.d.mts +1117 -32
- package/dist/index.d.ts +1117 -32
- package/dist/index.js +7 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +7 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +7 -7
- package/src/approval-service.test.ts +16 -0
- package/src/approval-service.ts +15 -3
package/dist/index.d.mts
CHANGED
|
@@ -64,6 +64,13 @@ declare const SysApprovalRequest: Omit<{
|
|
|
64
64
|
reference?: string | undefined;
|
|
65
65
|
referenceFilters?: string[] | undefined;
|
|
66
66
|
writeRequiresMasterRead?: boolean | undefined;
|
|
67
|
+
inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
68
|
+
inlineTitle?: string | undefined;
|
|
69
|
+
inlineColumns?: any[] | undefined;
|
|
70
|
+
inlineAmountField?: string | undefined;
|
|
71
|
+
relatedList?: boolean | undefined;
|
|
72
|
+
relatedListTitle?: string | undefined;
|
|
73
|
+
relatedListColumns?: any[] | undefined;
|
|
67
74
|
expression?: {
|
|
68
75
|
dialect: "cel" | "js" | "cron" | "template";
|
|
69
76
|
source?: string | undefined;
|
|
@@ -85,6 +92,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
85
92
|
object: string;
|
|
86
93
|
field: string;
|
|
87
94
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
95
|
+
relationshipField?: string | undefined;
|
|
88
96
|
} | undefined;
|
|
89
97
|
language?: string | undefined;
|
|
90
98
|
theme?: string | undefined;
|
|
@@ -198,6 +206,57 @@ declare const SysApprovalRequest: Omit<{
|
|
|
198
206
|
} | undefined;
|
|
199
207
|
} | undefined;
|
|
200
208
|
group?: string | undefined;
|
|
209
|
+
visibleWhen?: {
|
|
210
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
211
|
+
source?: string | undefined;
|
|
212
|
+
ast?: unknown;
|
|
213
|
+
meta?: {
|
|
214
|
+
rationale?: string | undefined;
|
|
215
|
+
generatedBy?: string | undefined;
|
|
216
|
+
} | undefined;
|
|
217
|
+
} | {
|
|
218
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
219
|
+
source?: string | undefined;
|
|
220
|
+
ast?: unknown;
|
|
221
|
+
meta?: {
|
|
222
|
+
rationale?: string | undefined;
|
|
223
|
+
generatedBy?: string | undefined;
|
|
224
|
+
} | undefined;
|
|
225
|
+
} | undefined;
|
|
226
|
+
readonlyWhen?: {
|
|
227
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
228
|
+
source?: string | undefined;
|
|
229
|
+
ast?: unknown;
|
|
230
|
+
meta?: {
|
|
231
|
+
rationale?: string | undefined;
|
|
232
|
+
generatedBy?: string | undefined;
|
|
233
|
+
} | undefined;
|
|
234
|
+
} | {
|
|
235
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
236
|
+
source?: string | undefined;
|
|
237
|
+
ast?: unknown;
|
|
238
|
+
meta?: {
|
|
239
|
+
rationale?: string | undefined;
|
|
240
|
+
generatedBy?: string | undefined;
|
|
241
|
+
} | undefined;
|
|
242
|
+
} | undefined;
|
|
243
|
+
requiredWhen?: {
|
|
244
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
245
|
+
source?: string | undefined;
|
|
246
|
+
ast?: unknown;
|
|
247
|
+
meta?: {
|
|
248
|
+
rationale?: string | undefined;
|
|
249
|
+
generatedBy?: string | undefined;
|
|
250
|
+
} | undefined;
|
|
251
|
+
} | {
|
|
252
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
253
|
+
source?: string | undefined;
|
|
254
|
+
ast?: unknown;
|
|
255
|
+
meta?: {
|
|
256
|
+
rationale?: string | undefined;
|
|
257
|
+
generatedBy?: string | undefined;
|
|
258
|
+
} | undefined;
|
|
259
|
+
} | undefined;
|
|
201
260
|
conditionalRequired?: {
|
|
202
261
|
dialect: "cel" | "js" | "cron" | "template";
|
|
203
262
|
source?: string | undefined;
|
|
@@ -339,7 +398,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
339
398
|
} | undefined;
|
|
340
399
|
compactLayout?: string[] | undefined;
|
|
341
400
|
listViews?: Record<string, {
|
|
342
|
-
type: "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map"
|
|
401
|
+
type: "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map";
|
|
343
402
|
columns: string[] | {
|
|
344
403
|
field: string;
|
|
345
404
|
label?: string | undefined;
|
|
@@ -508,7 +567,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
508
567
|
} | undefined;
|
|
509
568
|
appearance?: {
|
|
510
569
|
showDescription: boolean;
|
|
511
|
-
allowedVisualizations?: ("kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "map"
|
|
570
|
+
allowedVisualizations?: ("grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "map")[] | undefined;
|
|
512
571
|
} | undefined;
|
|
513
572
|
tabs?: {
|
|
514
573
|
name: string;
|
|
@@ -528,7 +587,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
528
587
|
addRecord?: {
|
|
529
588
|
enabled: boolean;
|
|
530
589
|
position: "top" | "bottom" | "both";
|
|
531
|
-
mode: "
|
|
590
|
+
mode: "form" | "modal" | "inline";
|
|
532
591
|
formView?: string | undefined;
|
|
533
592
|
} | undefined;
|
|
534
593
|
showRecordCount?: boolean | undefined;
|
|
@@ -614,7 +673,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
614
673
|
actions?: {
|
|
615
674
|
name: string;
|
|
616
675
|
label: string;
|
|
617
|
-
type: "url" | "
|
|
676
|
+
type: "url" | "form" | "flow" | "api" | "script" | "modal";
|
|
618
677
|
refreshAfter: boolean;
|
|
619
678
|
objectName?: string | undefined;
|
|
620
679
|
icon?: string | undefined;
|
|
@@ -682,7 +741,18 @@ declare const SysApprovalRequest: Omit<{
|
|
|
682
741
|
} | undefined;
|
|
683
742
|
shortcut?: string | undefined;
|
|
684
743
|
bulkEnabled?: boolean | undefined;
|
|
685
|
-
|
|
744
|
+
ai?: {
|
|
745
|
+
exposed: boolean;
|
|
746
|
+
description?: string | undefined;
|
|
747
|
+
category?: "action" | "data" | "flow" | "integration" | "vector_search" | "analytics" | "utility" | undefined;
|
|
748
|
+
paramHints?: Record<string, {
|
|
749
|
+
description?: string | undefined;
|
|
750
|
+
enum?: (string | number)[] | undefined;
|
|
751
|
+
examples?: unknown[] | undefined;
|
|
752
|
+
}> | undefined;
|
|
753
|
+
outputSchema?: Record<string, unknown> | undefined;
|
|
754
|
+
requiresConfirmation?: boolean | undefined;
|
|
755
|
+
} | undefined;
|
|
686
756
|
recordIdParam?: string | undefined;
|
|
687
757
|
recordIdField?: string | undefined;
|
|
688
758
|
bodyShape?: "flat" | {
|
|
@@ -859,6 +929,13 @@ declare const SysApprovalRequest: Omit<{
|
|
|
859
929
|
readonly referenceFilters?: string[] | undefined;
|
|
860
930
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
861
931
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
932
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
933
|
+
readonly inlineTitle?: string | undefined;
|
|
934
|
+
readonly inlineColumns?: any[] | undefined;
|
|
935
|
+
readonly inlineAmountField?: string | undefined;
|
|
936
|
+
readonly relatedList?: boolean | undefined;
|
|
937
|
+
readonly relatedListTitle?: string | undefined;
|
|
938
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
862
939
|
readonly expression?: {
|
|
863
940
|
dialect: "cel" | "js" | "cron" | "template";
|
|
864
941
|
source?: string | undefined;
|
|
@@ -872,6 +949,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
872
949
|
object: string;
|
|
873
950
|
field: string;
|
|
874
951
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
952
|
+
relationshipField?: string | undefined;
|
|
875
953
|
} | undefined;
|
|
876
954
|
readonly language?: string | undefined;
|
|
877
955
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -966,6 +1044,33 @@ declare const SysApprovalRequest: Omit<{
|
|
|
966
1044
|
threshold: number;
|
|
967
1045
|
} | undefined;
|
|
968
1046
|
} | undefined;
|
|
1047
|
+
readonly visibleWhen?: {
|
|
1048
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1049
|
+
source?: string | undefined;
|
|
1050
|
+
ast?: unknown;
|
|
1051
|
+
meta?: {
|
|
1052
|
+
rationale?: string | undefined;
|
|
1053
|
+
generatedBy?: string | undefined;
|
|
1054
|
+
} | undefined;
|
|
1055
|
+
} | undefined;
|
|
1056
|
+
readonly readonlyWhen?: {
|
|
1057
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1058
|
+
source?: string | undefined;
|
|
1059
|
+
ast?: unknown;
|
|
1060
|
+
meta?: {
|
|
1061
|
+
rationale?: string | undefined;
|
|
1062
|
+
generatedBy?: string | undefined;
|
|
1063
|
+
} | undefined;
|
|
1064
|
+
} | undefined;
|
|
1065
|
+
readonly requiredWhen?: {
|
|
1066
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1067
|
+
source?: string | undefined;
|
|
1068
|
+
ast?: unknown;
|
|
1069
|
+
meta?: {
|
|
1070
|
+
rationale?: string | undefined;
|
|
1071
|
+
generatedBy?: string | undefined;
|
|
1072
|
+
} | undefined;
|
|
1073
|
+
} | undefined;
|
|
969
1074
|
readonly conditionalRequired?: {
|
|
970
1075
|
dialect: "cel" | "js" | "cron" | "template";
|
|
971
1076
|
source?: string | undefined;
|
|
@@ -1034,6 +1139,13 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1034
1139
|
readonly referenceFilters?: string[] | undefined;
|
|
1035
1140
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1036
1141
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1142
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1143
|
+
readonly inlineTitle?: string | undefined;
|
|
1144
|
+
readonly inlineColumns?: any[] | undefined;
|
|
1145
|
+
readonly inlineAmountField?: string | undefined;
|
|
1146
|
+
readonly relatedList?: boolean | undefined;
|
|
1147
|
+
readonly relatedListTitle?: string | undefined;
|
|
1148
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
1037
1149
|
readonly expression?: {
|
|
1038
1150
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1039
1151
|
source?: string | undefined;
|
|
@@ -1047,6 +1159,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1047
1159
|
object: string;
|
|
1048
1160
|
field: string;
|
|
1049
1161
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1162
|
+
relationshipField?: string | undefined;
|
|
1050
1163
|
} | undefined;
|
|
1051
1164
|
readonly language?: string | undefined;
|
|
1052
1165
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -1141,6 +1254,33 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1141
1254
|
threshold: number;
|
|
1142
1255
|
} | undefined;
|
|
1143
1256
|
} | undefined;
|
|
1257
|
+
readonly visibleWhen?: {
|
|
1258
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1259
|
+
source?: string | undefined;
|
|
1260
|
+
ast?: unknown;
|
|
1261
|
+
meta?: {
|
|
1262
|
+
rationale?: string | undefined;
|
|
1263
|
+
generatedBy?: string | undefined;
|
|
1264
|
+
} | undefined;
|
|
1265
|
+
} | undefined;
|
|
1266
|
+
readonly readonlyWhen?: {
|
|
1267
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1268
|
+
source?: string | undefined;
|
|
1269
|
+
ast?: unknown;
|
|
1270
|
+
meta?: {
|
|
1271
|
+
rationale?: string | undefined;
|
|
1272
|
+
generatedBy?: string | undefined;
|
|
1273
|
+
} | undefined;
|
|
1274
|
+
} | undefined;
|
|
1275
|
+
readonly requiredWhen?: {
|
|
1276
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1277
|
+
source?: string | undefined;
|
|
1278
|
+
ast?: unknown;
|
|
1279
|
+
meta?: {
|
|
1280
|
+
rationale?: string | undefined;
|
|
1281
|
+
generatedBy?: string | undefined;
|
|
1282
|
+
} | undefined;
|
|
1283
|
+
} | undefined;
|
|
1144
1284
|
readonly conditionalRequired?: {
|
|
1145
1285
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1146
1286
|
source?: string | undefined;
|
|
@@ -1209,6 +1349,13 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1209
1349
|
readonly referenceFilters?: string[] | undefined;
|
|
1210
1350
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1211
1351
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1352
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1353
|
+
readonly inlineTitle?: string | undefined;
|
|
1354
|
+
readonly inlineColumns?: any[] | undefined;
|
|
1355
|
+
readonly inlineAmountField?: string | undefined;
|
|
1356
|
+
readonly relatedList?: boolean | undefined;
|
|
1357
|
+
readonly relatedListTitle?: string | undefined;
|
|
1358
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
1212
1359
|
readonly expression?: {
|
|
1213
1360
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1214
1361
|
source?: string | undefined;
|
|
@@ -1222,6 +1369,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1222
1369
|
object: string;
|
|
1223
1370
|
field: string;
|
|
1224
1371
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1372
|
+
relationshipField?: string | undefined;
|
|
1225
1373
|
} | undefined;
|
|
1226
1374
|
readonly language?: string | undefined;
|
|
1227
1375
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -1316,6 +1464,33 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1316
1464
|
threshold: number;
|
|
1317
1465
|
} | undefined;
|
|
1318
1466
|
} | undefined;
|
|
1467
|
+
readonly visibleWhen?: {
|
|
1468
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1469
|
+
source?: string | undefined;
|
|
1470
|
+
ast?: unknown;
|
|
1471
|
+
meta?: {
|
|
1472
|
+
rationale?: string | undefined;
|
|
1473
|
+
generatedBy?: string | undefined;
|
|
1474
|
+
} | undefined;
|
|
1475
|
+
} | undefined;
|
|
1476
|
+
readonly readonlyWhen?: {
|
|
1477
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1478
|
+
source?: string | undefined;
|
|
1479
|
+
ast?: unknown;
|
|
1480
|
+
meta?: {
|
|
1481
|
+
rationale?: string | undefined;
|
|
1482
|
+
generatedBy?: string | undefined;
|
|
1483
|
+
} | undefined;
|
|
1484
|
+
} | undefined;
|
|
1485
|
+
readonly requiredWhen?: {
|
|
1486
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1487
|
+
source?: string | undefined;
|
|
1488
|
+
ast?: unknown;
|
|
1489
|
+
meta?: {
|
|
1490
|
+
rationale?: string | undefined;
|
|
1491
|
+
generatedBy?: string | undefined;
|
|
1492
|
+
} | undefined;
|
|
1493
|
+
} | undefined;
|
|
1319
1494
|
readonly conditionalRequired?: {
|
|
1320
1495
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1321
1496
|
source?: string | undefined;
|
|
@@ -1384,6 +1559,13 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1384
1559
|
readonly referenceFilters?: string[] | undefined;
|
|
1385
1560
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1386
1561
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1562
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1563
|
+
readonly inlineTitle?: string | undefined;
|
|
1564
|
+
readonly inlineColumns?: any[] | undefined;
|
|
1565
|
+
readonly inlineAmountField?: string | undefined;
|
|
1566
|
+
readonly relatedList?: boolean | undefined;
|
|
1567
|
+
readonly relatedListTitle?: string | undefined;
|
|
1568
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
1387
1569
|
readonly expression?: {
|
|
1388
1570
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1389
1571
|
source?: string | undefined;
|
|
@@ -1397,6 +1579,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1397
1579
|
object: string;
|
|
1398
1580
|
field: string;
|
|
1399
1581
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1582
|
+
relationshipField?: string | undefined;
|
|
1400
1583
|
} | undefined;
|
|
1401
1584
|
readonly language?: string | undefined;
|
|
1402
1585
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -1491,6 +1674,33 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1491
1674
|
threshold: number;
|
|
1492
1675
|
} | undefined;
|
|
1493
1676
|
} | undefined;
|
|
1677
|
+
readonly visibleWhen?: {
|
|
1678
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1679
|
+
source?: string | undefined;
|
|
1680
|
+
ast?: unknown;
|
|
1681
|
+
meta?: {
|
|
1682
|
+
rationale?: string | undefined;
|
|
1683
|
+
generatedBy?: string | undefined;
|
|
1684
|
+
} | undefined;
|
|
1685
|
+
} | undefined;
|
|
1686
|
+
readonly readonlyWhen?: {
|
|
1687
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1688
|
+
source?: string | undefined;
|
|
1689
|
+
ast?: unknown;
|
|
1690
|
+
meta?: {
|
|
1691
|
+
rationale?: string | undefined;
|
|
1692
|
+
generatedBy?: string | undefined;
|
|
1693
|
+
} | undefined;
|
|
1694
|
+
} | undefined;
|
|
1695
|
+
readonly requiredWhen?: {
|
|
1696
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1697
|
+
source?: string | undefined;
|
|
1698
|
+
ast?: unknown;
|
|
1699
|
+
meta?: {
|
|
1700
|
+
rationale?: string | undefined;
|
|
1701
|
+
generatedBy?: string | undefined;
|
|
1702
|
+
} | undefined;
|
|
1703
|
+
} | undefined;
|
|
1494
1704
|
readonly conditionalRequired?: {
|
|
1495
1705
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1496
1706
|
source?: string | undefined;
|
|
@@ -1559,6 +1769,13 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1559
1769
|
readonly referenceFilters?: string[] | undefined;
|
|
1560
1770
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1561
1771
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1772
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1773
|
+
readonly inlineTitle?: string | undefined;
|
|
1774
|
+
readonly inlineColumns?: any[] | undefined;
|
|
1775
|
+
readonly inlineAmountField?: string | undefined;
|
|
1776
|
+
readonly relatedList?: boolean | undefined;
|
|
1777
|
+
readonly relatedListTitle?: string | undefined;
|
|
1778
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
1562
1779
|
readonly expression?: {
|
|
1563
1780
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1564
1781
|
source?: string | undefined;
|
|
@@ -1572,6 +1789,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1572
1789
|
object: string;
|
|
1573
1790
|
field: string;
|
|
1574
1791
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1792
|
+
relationshipField?: string | undefined;
|
|
1575
1793
|
} | undefined;
|
|
1576
1794
|
readonly language?: string | undefined;
|
|
1577
1795
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -1666,6 +1884,33 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1666
1884
|
threshold: number;
|
|
1667
1885
|
} | undefined;
|
|
1668
1886
|
} | undefined;
|
|
1887
|
+
readonly visibleWhen?: {
|
|
1888
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1889
|
+
source?: string | undefined;
|
|
1890
|
+
ast?: unknown;
|
|
1891
|
+
meta?: {
|
|
1892
|
+
rationale?: string | undefined;
|
|
1893
|
+
generatedBy?: string | undefined;
|
|
1894
|
+
} | undefined;
|
|
1895
|
+
} | undefined;
|
|
1896
|
+
readonly readonlyWhen?: {
|
|
1897
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1898
|
+
source?: string | undefined;
|
|
1899
|
+
ast?: unknown;
|
|
1900
|
+
meta?: {
|
|
1901
|
+
rationale?: string | undefined;
|
|
1902
|
+
generatedBy?: string | undefined;
|
|
1903
|
+
} | undefined;
|
|
1904
|
+
} | undefined;
|
|
1905
|
+
readonly requiredWhen?: {
|
|
1906
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1907
|
+
source?: string | undefined;
|
|
1908
|
+
ast?: unknown;
|
|
1909
|
+
meta?: {
|
|
1910
|
+
rationale?: string | undefined;
|
|
1911
|
+
generatedBy?: string | undefined;
|
|
1912
|
+
} | undefined;
|
|
1913
|
+
} | undefined;
|
|
1669
1914
|
readonly conditionalRequired?: {
|
|
1670
1915
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1671
1916
|
source?: string | undefined;
|
|
@@ -1734,6 +1979,13 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1734
1979
|
readonly referenceFilters?: string[] | undefined;
|
|
1735
1980
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1736
1981
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1982
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1983
|
+
readonly inlineTitle?: string | undefined;
|
|
1984
|
+
readonly inlineColumns?: any[] | undefined;
|
|
1985
|
+
readonly inlineAmountField?: string | undefined;
|
|
1986
|
+
readonly relatedList?: boolean | undefined;
|
|
1987
|
+
readonly relatedListTitle?: string | undefined;
|
|
1988
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
1737
1989
|
readonly expression?: {
|
|
1738
1990
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1739
1991
|
source?: string | undefined;
|
|
@@ -1747,6 +1999,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1747
1999
|
object: string;
|
|
1748
2000
|
field: string;
|
|
1749
2001
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2002
|
+
relationshipField?: string | undefined;
|
|
1750
2003
|
} | undefined;
|
|
1751
2004
|
readonly language?: string | undefined;
|
|
1752
2005
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -1841,6 +2094,33 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1841
2094
|
threshold: number;
|
|
1842
2095
|
} | undefined;
|
|
1843
2096
|
} | undefined;
|
|
2097
|
+
readonly visibleWhen?: {
|
|
2098
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2099
|
+
source?: string | undefined;
|
|
2100
|
+
ast?: unknown;
|
|
2101
|
+
meta?: {
|
|
2102
|
+
rationale?: string | undefined;
|
|
2103
|
+
generatedBy?: string | undefined;
|
|
2104
|
+
} | undefined;
|
|
2105
|
+
} | undefined;
|
|
2106
|
+
readonly readonlyWhen?: {
|
|
2107
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2108
|
+
source?: string | undefined;
|
|
2109
|
+
ast?: unknown;
|
|
2110
|
+
meta?: {
|
|
2111
|
+
rationale?: string | undefined;
|
|
2112
|
+
generatedBy?: string | undefined;
|
|
2113
|
+
} | undefined;
|
|
2114
|
+
} | undefined;
|
|
2115
|
+
readonly requiredWhen?: {
|
|
2116
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2117
|
+
source?: string | undefined;
|
|
2118
|
+
ast?: unknown;
|
|
2119
|
+
meta?: {
|
|
2120
|
+
rationale?: string | undefined;
|
|
2121
|
+
generatedBy?: string | undefined;
|
|
2122
|
+
} | undefined;
|
|
2123
|
+
} | undefined;
|
|
1844
2124
|
readonly conditionalRequired?: {
|
|
1845
2125
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1846
2126
|
source?: string | undefined;
|
|
@@ -1909,6 +2189,13 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1909
2189
|
readonly referenceFilters?: string[] | undefined;
|
|
1910
2190
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1911
2191
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2192
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2193
|
+
readonly inlineTitle?: string | undefined;
|
|
2194
|
+
readonly inlineColumns?: any[] | undefined;
|
|
2195
|
+
readonly inlineAmountField?: string | undefined;
|
|
2196
|
+
readonly relatedList?: boolean | undefined;
|
|
2197
|
+
readonly relatedListTitle?: string | undefined;
|
|
2198
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
1912
2199
|
readonly expression?: {
|
|
1913
2200
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1914
2201
|
source?: string | undefined;
|
|
@@ -1922,6 +2209,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1922
2209
|
object: string;
|
|
1923
2210
|
field: string;
|
|
1924
2211
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2212
|
+
relationshipField?: string | undefined;
|
|
1925
2213
|
} | undefined;
|
|
1926
2214
|
readonly language?: string | undefined;
|
|
1927
2215
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -2016,6 +2304,33 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2016
2304
|
threshold: number;
|
|
2017
2305
|
} | undefined;
|
|
2018
2306
|
} | undefined;
|
|
2307
|
+
readonly visibleWhen?: {
|
|
2308
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2309
|
+
source?: string | undefined;
|
|
2310
|
+
ast?: unknown;
|
|
2311
|
+
meta?: {
|
|
2312
|
+
rationale?: string | undefined;
|
|
2313
|
+
generatedBy?: string | undefined;
|
|
2314
|
+
} | undefined;
|
|
2315
|
+
} | undefined;
|
|
2316
|
+
readonly readonlyWhen?: {
|
|
2317
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2318
|
+
source?: string | undefined;
|
|
2319
|
+
ast?: unknown;
|
|
2320
|
+
meta?: {
|
|
2321
|
+
rationale?: string | undefined;
|
|
2322
|
+
generatedBy?: string | undefined;
|
|
2323
|
+
} | undefined;
|
|
2324
|
+
} | undefined;
|
|
2325
|
+
readonly requiredWhen?: {
|
|
2326
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2327
|
+
source?: string | undefined;
|
|
2328
|
+
ast?: unknown;
|
|
2329
|
+
meta?: {
|
|
2330
|
+
rationale?: string | undefined;
|
|
2331
|
+
generatedBy?: string | undefined;
|
|
2332
|
+
} | undefined;
|
|
2333
|
+
} | undefined;
|
|
2019
2334
|
readonly conditionalRequired?: {
|
|
2020
2335
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2021
2336
|
source?: string | undefined;
|
|
@@ -2084,6 +2399,13 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2084
2399
|
readonly referenceFilters?: string[] | undefined;
|
|
2085
2400
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2086
2401
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2402
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2403
|
+
readonly inlineTitle?: string | undefined;
|
|
2404
|
+
readonly inlineColumns?: any[] | undefined;
|
|
2405
|
+
readonly inlineAmountField?: string | undefined;
|
|
2406
|
+
readonly relatedList?: boolean | undefined;
|
|
2407
|
+
readonly relatedListTitle?: string | undefined;
|
|
2408
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
2087
2409
|
readonly expression?: {
|
|
2088
2410
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2089
2411
|
source?: string | undefined;
|
|
@@ -2097,6 +2419,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2097
2419
|
object: string;
|
|
2098
2420
|
field: string;
|
|
2099
2421
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2422
|
+
relationshipField?: string | undefined;
|
|
2100
2423
|
} | undefined;
|
|
2101
2424
|
readonly language?: string | undefined;
|
|
2102
2425
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -2191,6 +2514,33 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2191
2514
|
threshold: number;
|
|
2192
2515
|
} | undefined;
|
|
2193
2516
|
} | undefined;
|
|
2517
|
+
readonly visibleWhen?: {
|
|
2518
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2519
|
+
source?: string | undefined;
|
|
2520
|
+
ast?: unknown;
|
|
2521
|
+
meta?: {
|
|
2522
|
+
rationale?: string | undefined;
|
|
2523
|
+
generatedBy?: string | undefined;
|
|
2524
|
+
} | undefined;
|
|
2525
|
+
} | undefined;
|
|
2526
|
+
readonly readonlyWhen?: {
|
|
2527
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2528
|
+
source?: string | undefined;
|
|
2529
|
+
ast?: unknown;
|
|
2530
|
+
meta?: {
|
|
2531
|
+
rationale?: string | undefined;
|
|
2532
|
+
generatedBy?: string | undefined;
|
|
2533
|
+
} | undefined;
|
|
2534
|
+
} | undefined;
|
|
2535
|
+
readonly requiredWhen?: {
|
|
2536
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2537
|
+
source?: string | undefined;
|
|
2538
|
+
ast?: unknown;
|
|
2539
|
+
meta?: {
|
|
2540
|
+
rationale?: string | undefined;
|
|
2541
|
+
generatedBy?: string | undefined;
|
|
2542
|
+
} | undefined;
|
|
2543
|
+
} | undefined;
|
|
2194
2544
|
readonly conditionalRequired?: {
|
|
2195
2545
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2196
2546
|
source?: string | undefined;
|
|
@@ -2259,6 +2609,13 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2259
2609
|
readonly referenceFilters?: string[] | undefined;
|
|
2260
2610
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2261
2611
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2612
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2613
|
+
readonly inlineTitle?: string | undefined;
|
|
2614
|
+
readonly inlineColumns?: any[] | undefined;
|
|
2615
|
+
readonly inlineAmountField?: string | undefined;
|
|
2616
|
+
readonly relatedList?: boolean | undefined;
|
|
2617
|
+
readonly relatedListTitle?: string | undefined;
|
|
2618
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
2262
2619
|
readonly expression?: {
|
|
2263
2620
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2264
2621
|
source?: string | undefined;
|
|
@@ -2272,6 +2629,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2272
2629
|
object: string;
|
|
2273
2630
|
field: string;
|
|
2274
2631
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2632
|
+
relationshipField?: string | undefined;
|
|
2275
2633
|
} | undefined;
|
|
2276
2634
|
readonly language?: string | undefined;
|
|
2277
2635
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -2366,7 +2724,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2366
2724
|
threshold: number;
|
|
2367
2725
|
} | undefined;
|
|
2368
2726
|
} | undefined;
|
|
2369
|
-
readonly
|
|
2727
|
+
readonly visibleWhen?: {
|
|
2370
2728
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2371
2729
|
source?: string | undefined;
|
|
2372
2730
|
ast?: unknown;
|
|
@@ -2375,19 +2733,46 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2375
2733
|
generatedBy?: string | undefined;
|
|
2376
2734
|
} | undefined;
|
|
2377
2735
|
} | undefined;
|
|
2378
|
-
readonly
|
|
2379
|
-
|
|
2380
|
-
|
|
2381
|
-
|
|
2382
|
-
|
|
2383
|
-
|
|
2384
|
-
|
|
2385
|
-
|
|
2386
|
-
|
|
2387
|
-
readonly
|
|
2388
|
-
|
|
2389
|
-
|
|
2390
|
-
|
|
2736
|
+
readonly readonlyWhen?: {
|
|
2737
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2738
|
+
source?: string | undefined;
|
|
2739
|
+
ast?: unknown;
|
|
2740
|
+
meta?: {
|
|
2741
|
+
rationale?: string | undefined;
|
|
2742
|
+
generatedBy?: string | undefined;
|
|
2743
|
+
} | undefined;
|
|
2744
|
+
} | undefined;
|
|
2745
|
+
readonly requiredWhen?: {
|
|
2746
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2747
|
+
source?: string | undefined;
|
|
2748
|
+
ast?: unknown;
|
|
2749
|
+
meta?: {
|
|
2750
|
+
rationale?: string | undefined;
|
|
2751
|
+
generatedBy?: string | undefined;
|
|
2752
|
+
} | undefined;
|
|
2753
|
+
} | undefined;
|
|
2754
|
+
readonly conditionalRequired?: {
|
|
2755
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2756
|
+
source?: string | undefined;
|
|
2757
|
+
ast?: unknown;
|
|
2758
|
+
meta?: {
|
|
2759
|
+
rationale?: string | undefined;
|
|
2760
|
+
generatedBy?: string | undefined;
|
|
2761
|
+
} | undefined;
|
|
2762
|
+
} | undefined;
|
|
2763
|
+
readonly sortable?: boolean | undefined;
|
|
2764
|
+
readonly inlineHelpText?: string | undefined;
|
|
2765
|
+
readonly trackFeedHistory?: boolean | undefined;
|
|
2766
|
+
readonly caseSensitive?: boolean | undefined;
|
|
2767
|
+
readonly autonumberFormat?: string | undefined;
|
|
2768
|
+
readonly index?: boolean | undefined;
|
|
2769
|
+
readonly type: "text";
|
|
2770
|
+
};
|
|
2771
|
+
readonly current_step_index: {
|
|
2772
|
+
readonly readonly?: boolean | undefined;
|
|
2773
|
+
readonly format?: string | undefined;
|
|
2774
|
+
readonly options?: {
|
|
2775
|
+
label: string;
|
|
2391
2776
|
value: string;
|
|
2392
2777
|
color?: string | undefined;
|
|
2393
2778
|
default?: boolean | undefined;
|
|
@@ -2434,6 +2819,13 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2434
2819
|
readonly referenceFilters?: string[] | undefined;
|
|
2435
2820
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2436
2821
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2822
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2823
|
+
readonly inlineTitle?: string | undefined;
|
|
2824
|
+
readonly inlineColumns?: any[] | undefined;
|
|
2825
|
+
readonly inlineAmountField?: string | undefined;
|
|
2826
|
+
readonly relatedList?: boolean | undefined;
|
|
2827
|
+
readonly relatedListTitle?: string | undefined;
|
|
2828
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
2437
2829
|
readonly expression?: {
|
|
2438
2830
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2439
2831
|
source?: string | undefined;
|
|
@@ -2447,6 +2839,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2447
2839
|
object: string;
|
|
2448
2840
|
field: string;
|
|
2449
2841
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2842
|
+
relationshipField?: string | undefined;
|
|
2450
2843
|
} | undefined;
|
|
2451
2844
|
readonly language?: string | undefined;
|
|
2452
2845
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -2541,6 +2934,33 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2541
2934
|
threshold: number;
|
|
2542
2935
|
} | undefined;
|
|
2543
2936
|
} | undefined;
|
|
2937
|
+
readonly visibleWhen?: {
|
|
2938
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2939
|
+
source?: string | undefined;
|
|
2940
|
+
ast?: unknown;
|
|
2941
|
+
meta?: {
|
|
2942
|
+
rationale?: string | undefined;
|
|
2943
|
+
generatedBy?: string | undefined;
|
|
2944
|
+
} | undefined;
|
|
2945
|
+
} | undefined;
|
|
2946
|
+
readonly readonlyWhen?: {
|
|
2947
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2948
|
+
source?: string | undefined;
|
|
2949
|
+
ast?: unknown;
|
|
2950
|
+
meta?: {
|
|
2951
|
+
rationale?: string | undefined;
|
|
2952
|
+
generatedBy?: string | undefined;
|
|
2953
|
+
} | undefined;
|
|
2954
|
+
} | undefined;
|
|
2955
|
+
readonly requiredWhen?: {
|
|
2956
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2957
|
+
source?: string | undefined;
|
|
2958
|
+
ast?: unknown;
|
|
2959
|
+
meta?: {
|
|
2960
|
+
rationale?: string | undefined;
|
|
2961
|
+
generatedBy?: string | undefined;
|
|
2962
|
+
} | undefined;
|
|
2963
|
+
} | undefined;
|
|
2544
2964
|
readonly conditionalRequired?: {
|
|
2545
2965
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2546
2966
|
source?: string | undefined;
|
|
@@ -2609,6 +3029,13 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2609
3029
|
readonly referenceFilters?: string[] | undefined;
|
|
2610
3030
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2611
3031
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3032
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
3033
|
+
readonly inlineTitle?: string | undefined;
|
|
3034
|
+
readonly inlineColumns?: any[] | undefined;
|
|
3035
|
+
readonly inlineAmountField?: string | undefined;
|
|
3036
|
+
readonly relatedList?: boolean | undefined;
|
|
3037
|
+
readonly relatedListTitle?: string | undefined;
|
|
3038
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
2612
3039
|
readonly expression?: {
|
|
2613
3040
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2614
3041
|
source?: string | undefined;
|
|
@@ -2622,6 +3049,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2622
3049
|
object: string;
|
|
2623
3050
|
field: string;
|
|
2624
3051
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
3052
|
+
relationshipField?: string | undefined;
|
|
2625
3053
|
} | undefined;
|
|
2626
3054
|
readonly language?: string | undefined;
|
|
2627
3055
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -2716,6 +3144,33 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2716
3144
|
threshold: number;
|
|
2717
3145
|
} | undefined;
|
|
2718
3146
|
} | undefined;
|
|
3147
|
+
readonly visibleWhen?: {
|
|
3148
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3149
|
+
source?: string | undefined;
|
|
3150
|
+
ast?: unknown;
|
|
3151
|
+
meta?: {
|
|
3152
|
+
rationale?: string | undefined;
|
|
3153
|
+
generatedBy?: string | undefined;
|
|
3154
|
+
} | undefined;
|
|
3155
|
+
} | undefined;
|
|
3156
|
+
readonly readonlyWhen?: {
|
|
3157
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3158
|
+
source?: string | undefined;
|
|
3159
|
+
ast?: unknown;
|
|
3160
|
+
meta?: {
|
|
3161
|
+
rationale?: string | undefined;
|
|
3162
|
+
generatedBy?: string | undefined;
|
|
3163
|
+
} | undefined;
|
|
3164
|
+
} | undefined;
|
|
3165
|
+
readonly requiredWhen?: {
|
|
3166
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3167
|
+
source?: string | undefined;
|
|
3168
|
+
ast?: unknown;
|
|
3169
|
+
meta?: {
|
|
3170
|
+
rationale?: string | undefined;
|
|
3171
|
+
generatedBy?: string | undefined;
|
|
3172
|
+
} | undefined;
|
|
3173
|
+
} | undefined;
|
|
2719
3174
|
readonly conditionalRequired?: {
|
|
2720
3175
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2721
3176
|
source?: string | undefined;
|
|
@@ -2784,6 +3239,13 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2784
3239
|
readonly referenceFilters?: string[] | undefined;
|
|
2785
3240
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2786
3241
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3242
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
3243
|
+
readonly inlineTitle?: string | undefined;
|
|
3244
|
+
readonly inlineColumns?: any[] | undefined;
|
|
3245
|
+
readonly inlineAmountField?: string | undefined;
|
|
3246
|
+
readonly relatedList?: boolean | undefined;
|
|
3247
|
+
readonly relatedListTitle?: string | undefined;
|
|
3248
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
2787
3249
|
readonly expression?: {
|
|
2788
3250
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2789
3251
|
source?: string | undefined;
|
|
@@ -2797,6 +3259,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2797
3259
|
object: string;
|
|
2798
3260
|
field: string;
|
|
2799
3261
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
3262
|
+
relationshipField?: string | undefined;
|
|
2800
3263
|
} | undefined;
|
|
2801
3264
|
readonly language?: string | undefined;
|
|
2802
3265
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -2891,6 +3354,33 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2891
3354
|
threshold: number;
|
|
2892
3355
|
} | undefined;
|
|
2893
3356
|
} | undefined;
|
|
3357
|
+
readonly visibleWhen?: {
|
|
3358
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3359
|
+
source?: string | undefined;
|
|
3360
|
+
ast?: unknown;
|
|
3361
|
+
meta?: {
|
|
3362
|
+
rationale?: string | undefined;
|
|
3363
|
+
generatedBy?: string | undefined;
|
|
3364
|
+
} | undefined;
|
|
3365
|
+
} | undefined;
|
|
3366
|
+
readonly readonlyWhen?: {
|
|
3367
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3368
|
+
source?: string | undefined;
|
|
3369
|
+
ast?: unknown;
|
|
3370
|
+
meta?: {
|
|
3371
|
+
rationale?: string | undefined;
|
|
3372
|
+
generatedBy?: string | undefined;
|
|
3373
|
+
} | undefined;
|
|
3374
|
+
} | undefined;
|
|
3375
|
+
readonly requiredWhen?: {
|
|
3376
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3377
|
+
source?: string | undefined;
|
|
3378
|
+
ast?: unknown;
|
|
3379
|
+
meta?: {
|
|
3380
|
+
rationale?: string | undefined;
|
|
3381
|
+
generatedBy?: string | undefined;
|
|
3382
|
+
} | undefined;
|
|
3383
|
+
} | undefined;
|
|
2894
3384
|
readonly conditionalRequired?: {
|
|
2895
3385
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2896
3386
|
source?: string | undefined;
|
|
@@ -2959,6 +3449,13 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2959
3449
|
readonly referenceFilters?: string[] | undefined;
|
|
2960
3450
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2961
3451
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3452
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
3453
|
+
readonly inlineTitle?: string | undefined;
|
|
3454
|
+
readonly inlineColumns?: any[] | undefined;
|
|
3455
|
+
readonly inlineAmountField?: string | undefined;
|
|
3456
|
+
readonly relatedList?: boolean | undefined;
|
|
3457
|
+
readonly relatedListTitle?: string | undefined;
|
|
3458
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
2962
3459
|
readonly expression?: {
|
|
2963
3460
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2964
3461
|
source?: string | undefined;
|
|
@@ -2972,6 +3469,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2972
3469
|
object: string;
|
|
2973
3470
|
field: string;
|
|
2974
3471
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
3472
|
+
relationshipField?: string | undefined;
|
|
2975
3473
|
} | undefined;
|
|
2976
3474
|
readonly language?: string | undefined;
|
|
2977
3475
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -3066,6 +3564,33 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3066
3564
|
threshold: number;
|
|
3067
3565
|
} | undefined;
|
|
3068
3566
|
} | undefined;
|
|
3567
|
+
readonly visibleWhen?: {
|
|
3568
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3569
|
+
source?: string | undefined;
|
|
3570
|
+
ast?: unknown;
|
|
3571
|
+
meta?: {
|
|
3572
|
+
rationale?: string | undefined;
|
|
3573
|
+
generatedBy?: string | undefined;
|
|
3574
|
+
} | undefined;
|
|
3575
|
+
} | undefined;
|
|
3576
|
+
readonly readonlyWhen?: {
|
|
3577
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3578
|
+
source?: string | undefined;
|
|
3579
|
+
ast?: unknown;
|
|
3580
|
+
meta?: {
|
|
3581
|
+
rationale?: string | undefined;
|
|
3582
|
+
generatedBy?: string | undefined;
|
|
3583
|
+
} | undefined;
|
|
3584
|
+
} | undefined;
|
|
3585
|
+
readonly requiredWhen?: {
|
|
3586
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3587
|
+
source?: string | undefined;
|
|
3588
|
+
ast?: unknown;
|
|
3589
|
+
meta?: {
|
|
3590
|
+
rationale?: string | undefined;
|
|
3591
|
+
generatedBy?: string | undefined;
|
|
3592
|
+
} | undefined;
|
|
3593
|
+
} | undefined;
|
|
3069
3594
|
readonly conditionalRequired?: {
|
|
3070
3595
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3071
3596
|
source?: string | undefined;
|
|
@@ -3134,6 +3659,13 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3134
3659
|
readonly referenceFilters?: string[] | undefined;
|
|
3135
3660
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
3136
3661
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3662
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
3663
|
+
readonly inlineTitle?: string | undefined;
|
|
3664
|
+
readonly inlineColumns?: any[] | undefined;
|
|
3665
|
+
readonly inlineAmountField?: string | undefined;
|
|
3666
|
+
readonly relatedList?: boolean | undefined;
|
|
3667
|
+
readonly relatedListTitle?: string | undefined;
|
|
3668
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
3137
3669
|
readonly expression?: {
|
|
3138
3670
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3139
3671
|
source?: string | undefined;
|
|
@@ -3147,6 +3679,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3147
3679
|
object: string;
|
|
3148
3680
|
field: string;
|
|
3149
3681
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
3682
|
+
relationshipField?: string | undefined;
|
|
3150
3683
|
} | undefined;
|
|
3151
3684
|
readonly language?: string | undefined;
|
|
3152
3685
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -3241,6 +3774,33 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3241
3774
|
threshold: number;
|
|
3242
3775
|
} | undefined;
|
|
3243
3776
|
} | undefined;
|
|
3777
|
+
readonly visibleWhen?: {
|
|
3778
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3779
|
+
source?: string | undefined;
|
|
3780
|
+
ast?: unknown;
|
|
3781
|
+
meta?: {
|
|
3782
|
+
rationale?: string | undefined;
|
|
3783
|
+
generatedBy?: string | undefined;
|
|
3784
|
+
} | undefined;
|
|
3785
|
+
} | undefined;
|
|
3786
|
+
readonly readonlyWhen?: {
|
|
3787
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3788
|
+
source?: string | undefined;
|
|
3789
|
+
ast?: unknown;
|
|
3790
|
+
meta?: {
|
|
3791
|
+
rationale?: string | undefined;
|
|
3792
|
+
generatedBy?: string | undefined;
|
|
3793
|
+
} | undefined;
|
|
3794
|
+
} | undefined;
|
|
3795
|
+
readonly requiredWhen?: {
|
|
3796
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3797
|
+
source?: string | undefined;
|
|
3798
|
+
ast?: unknown;
|
|
3799
|
+
meta?: {
|
|
3800
|
+
rationale?: string | undefined;
|
|
3801
|
+
generatedBy?: string | undefined;
|
|
3802
|
+
} | undefined;
|
|
3803
|
+
} | undefined;
|
|
3244
3804
|
readonly conditionalRequired?: {
|
|
3245
3805
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3246
3806
|
source?: string | undefined;
|
|
@@ -3309,6 +3869,13 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3309
3869
|
readonly referenceFilters?: string[] | undefined;
|
|
3310
3870
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
3311
3871
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3872
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
3873
|
+
readonly inlineTitle?: string | undefined;
|
|
3874
|
+
readonly inlineColumns?: any[] | undefined;
|
|
3875
|
+
readonly inlineAmountField?: string | undefined;
|
|
3876
|
+
readonly relatedList?: boolean | undefined;
|
|
3877
|
+
readonly relatedListTitle?: string | undefined;
|
|
3878
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
3312
3879
|
readonly expression?: {
|
|
3313
3880
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3314
3881
|
source?: string | undefined;
|
|
@@ -3322,6 +3889,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3322
3889
|
object: string;
|
|
3323
3890
|
field: string;
|
|
3324
3891
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
3892
|
+
relationshipField?: string | undefined;
|
|
3325
3893
|
} | undefined;
|
|
3326
3894
|
readonly language?: string | undefined;
|
|
3327
3895
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -3416,6 +3984,33 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3416
3984
|
threshold: number;
|
|
3417
3985
|
} | undefined;
|
|
3418
3986
|
} | undefined;
|
|
3987
|
+
readonly visibleWhen?: {
|
|
3988
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3989
|
+
source?: string | undefined;
|
|
3990
|
+
ast?: unknown;
|
|
3991
|
+
meta?: {
|
|
3992
|
+
rationale?: string | undefined;
|
|
3993
|
+
generatedBy?: string | undefined;
|
|
3994
|
+
} | undefined;
|
|
3995
|
+
} | undefined;
|
|
3996
|
+
readonly readonlyWhen?: {
|
|
3997
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3998
|
+
source?: string | undefined;
|
|
3999
|
+
ast?: unknown;
|
|
4000
|
+
meta?: {
|
|
4001
|
+
rationale?: string | undefined;
|
|
4002
|
+
generatedBy?: string | undefined;
|
|
4003
|
+
} | undefined;
|
|
4004
|
+
} | undefined;
|
|
4005
|
+
readonly requiredWhen?: {
|
|
4006
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4007
|
+
source?: string | undefined;
|
|
4008
|
+
ast?: unknown;
|
|
4009
|
+
meta?: {
|
|
4010
|
+
rationale?: string | undefined;
|
|
4011
|
+
generatedBy?: string | undefined;
|
|
4012
|
+
} | undefined;
|
|
4013
|
+
} | undefined;
|
|
3419
4014
|
readonly conditionalRequired?: {
|
|
3420
4015
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3421
4016
|
source?: string | undefined;
|
|
@@ -3484,6 +4079,13 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3484
4079
|
readonly referenceFilters?: string[] | undefined;
|
|
3485
4080
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
3486
4081
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4082
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
4083
|
+
readonly inlineTitle?: string | undefined;
|
|
4084
|
+
readonly inlineColumns?: any[] | undefined;
|
|
4085
|
+
readonly inlineAmountField?: string | undefined;
|
|
4086
|
+
readonly relatedList?: boolean | undefined;
|
|
4087
|
+
readonly relatedListTitle?: string | undefined;
|
|
4088
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
3487
4089
|
readonly expression?: {
|
|
3488
4090
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3489
4091
|
source?: string | undefined;
|
|
@@ -3497,6 +4099,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3497
4099
|
object: string;
|
|
3498
4100
|
field: string;
|
|
3499
4101
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
4102
|
+
relationshipField?: string | undefined;
|
|
3500
4103
|
} | undefined;
|
|
3501
4104
|
readonly language?: string | undefined;
|
|
3502
4105
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -3591,6 +4194,33 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3591
4194
|
threshold: number;
|
|
3592
4195
|
} | undefined;
|
|
3593
4196
|
} | undefined;
|
|
4197
|
+
readonly visibleWhen?: {
|
|
4198
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4199
|
+
source?: string | undefined;
|
|
4200
|
+
ast?: unknown;
|
|
4201
|
+
meta?: {
|
|
4202
|
+
rationale?: string | undefined;
|
|
4203
|
+
generatedBy?: string | undefined;
|
|
4204
|
+
} | undefined;
|
|
4205
|
+
} | undefined;
|
|
4206
|
+
readonly readonlyWhen?: {
|
|
4207
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4208
|
+
source?: string | undefined;
|
|
4209
|
+
ast?: unknown;
|
|
4210
|
+
meta?: {
|
|
4211
|
+
rationale?: string | undefined;
|
|
4212
|
+
generatedBy?: string | undefined;
|
|
4213
|
+
} | undefined;
|
|
4214
|
+
} | undefined;
|
|
4215
|
+
readonly requiredWhen?: {
|
|
4216
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4217
|
+
source?: string | undefined;
|
|
4218
|
+
ast?: unknown;
|
|
4219
|
+
meta?: {
|
|
4220
|
+
rationale?: string | undefined;
|
|
4221
|
+
generatedBy?: string | undefined;
|
|
4222
|
+
} | undefined;
|
|
4223
|
+
} | undefined;
|
|
3594
4224
|
readonly conditionalRequired?: {
|
|
3595
4225
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3596
4226
|
source?: string | undefined;
|
|
@@ -3659,6 +4289,13 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3659
4289
|
readonly referenceFilters?: string[] | undefined;
|
|
3660
4290
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
3661
4291
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4292
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
4293
|
+
readonly inlineTitle?: string | undefined;
|
|
4294
|
+
readonly inlineColumns?: any[] | undefined;
|
|
4295
|
+
readonly inlineAmountField?: string | undefined;
|
|
4296
|
+
readonly relatedList?: boolean | undefined;
|
|
4297
|
+
readonly relatedListTitle?: string | undefined;
|
|
4298
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
3662
4299
|
readonly expression?: {
|
|
3663
4300
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3664
4301
|
source?: string | undefined;
|
|
@@ -3672,6 +4309,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3672
4309
|
object: string;
|
|
3673
4310
|
field: string;
|
|
3674
4311
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
4312
|
+
relationshipField?: string | undefined;
|
|
3675
4313
|
} | undefined;
|
|
3676
4314
|
readonly language?: string | undefined;
|
|
3677
4315
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -3766,6 +4404,33 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3766
4404
|
threshold: number;
|
|
3767
4405
|
} | undefined;
|
|
3768
4406
|
} | undefined;
|
|
4407
|
+
readonly visibleWhen?: {
|
|
4408
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4409
|
+
source?: string | undefined;
|
|
4410
|
+
ast?: unknown;
|
|
4411
|
+
meta?: {
|
|
4412
|
+
rationale?: string | undefined;
|
|
4413
|
+
generatedBy?: string | undefined;
|
|
4414
|
+
} | undefined;
|
|
4415
|
+
} | undefined;
|
|
4416
|
+
readonly readonlyWhen?: {
|
|
4417
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4418
|
+
source?: string | undefined;
|
|
4419
|
+
ast?: unknown;
|
|
4420
|
+
meta?: {
|
|
4421
|
+
rationale?: string | undefined;
|
|
4422
|
+
generatedBy?: string | undefined;
|
|
4423
|
+
} | undefined;
|
|
4424
|
+
} | undefined;
|
|
4425
|
+
readonly requiredWhen?: {
|
|
4426
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4427
|
+
source?: string | undefined;
|
|
4428
|
+
ast?: unknown;
|
|
4429
|
+
meta?: {
|
|
4430
|
+
rationale?: string | undefined;
|
|
4431
|
+
generatedBy?: string | undefined;
|
|
4432
|
+
} | undefined;
|
|
4433
|
+
} | undefined;
|
|
3769
4434
|
readonly conditionalRequired?: {
|
|
3770
4435
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3771
4436
|
source?: string | undefined;
|
|
@@ -3834,6 +4499,13 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3834
4499
|
readonly referenceFilters?: string[] | undefined;
|
|
3835
4500
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
3836
4501
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4502
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
4503
|
+
readonly inlineTitle?: string | undefined;
|
|
4504
|
+
readonly inlineColumns?: any[] | undefined;
|
|
4505
|
+
readonly inlineAmountField?: string | undefined;
|
|
4506
|
+
readonly relatedList?: boolean | undefined;
|
|
4507
|
+
readonly relatedListTitle?: string | undefined;
|
|
4508
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
3837
4509
|
readonly expression?: {
|
|
3838
4510
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3839
4511
|
source?: string | undefined;
|
|
@@ -3847,6 +4519,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3847
4519
|
object: string;
|
|
3848
4520
|
field: string;
|
|
3849
4521
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
4522
|
+
relationshipField?: string | undefined;
|
|
3850
4523
|
} | undefined;
|
|
3851
4524
|
readonly language?: string | undefined;
|
|
3852
4525
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -3941,6 +4614,33 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3941
4614
|
threshold: number;
|
|
3942
4615
|
} | undefined;
|
|
3943
4616
|
} | undefined;
|
|
4617
|
+
readonly visibleWhen?: {
|
|
4618
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4619
|
+
source?: string | undefined;
|
|
4620
|
+
ast?: unknown;
|
|
4621
|
+
meta?: {
|
|
4622
|
+
rationale?: string | undefined;
|
|
4623
|
+
generatedBy?: string | undefined;
|
|
4624
|
+
} | undefined;
|
|
4625
|
+
} | undefined;
|
|
4626
|
+
readonly readonlyWhen?: {
|
|
4627
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4628
|
+
source?: string | undefined;
|
|
4629
|
+
ast?: unknown;
|
|
4630
|
+
meta?: {
|
|
4631
|
+
rationale?: string | undefined;
|
|
4632
|
+
generatedBy?: string | undefined;
|
|
4633
|
+
} | undefined;
|
|
4634
|
+
} | undefined;
|
|
4635
|
+
readonly requiredWhen?: {
|
|
4636
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4637
|
+
source?: string | undefined;
|
|
4638
|
+
ast?: unknown;
|
|
4639
|
+
meta?: {
|
|
4640
|
+
rationale?: string | undefined;
|
|
4641
|
+
generatedBy?: string | undefined;
|
|
4642
|
+
} | undefined;
|
|
4643
|
+
} | undefined;
|
|
3944
4644
|
readonly conditionalRequired?: {
|
|
3945
4645
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3946
4646
|
source?: string | undefined;
|
|
@@ -4021,6 +4721,13 @@ declare const SysApprovalAction: Omit<{
|
|
|
4021
4721
|
reference?: string | undefined;
|
|
4022
4722
|
referenceFilters?: string[] | undefined;
|
|
4023
4723
|
writeRequiresMasterRead?: boolean | undefined;
|
|
4724
|
+
inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
4725
|
+
inlineTitle?: string | undefined;
|
|
4726
|
+
inlineColumns?: any[] | undefined;
|
|
4727
|
+
inlineAmountField?: string | undefined;
|
|
4728
|
+
relatedList?: boolean | undefined;
|
|
4729
|
+
relatedListTitle?: string | undefined;
|
|
4730
|
+
relatedListColumns?: any[] | undefined;
|
|
4024
4731
|
expression?: {
|
|
4025
4732
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4026
4733
|
source?: string | undefined;
|
|
@@ -4042,6 +4749,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
4042
4749
|
object: string;
|
|
4043
4750
|
field: string;
|
|
4044
4751
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
4752
|
+
relationshipField?: string | undefined;
|
|
4045
4753
|
} | undefined;
|
|
4046
4754
|
language?: string | undefined;
|
|
4047
4755
|
theme?: string | undefined;
|
|
@@ -4146,15 +4854,66 @@ declare const SysApprovalAction: Omit<{
|
|
|
4146
4854
|
ttl: number;
|
|
4147
4855
|
invalidateOn: string[];
|
|
4148
4856
|
} | undefined;
|
|
4149
|
-
dataQuality?: {
|
|
4150
|
-
uniqueness: boolean;
|
|
4151
|
-
completeness: number;
|
|
4152
|
-
accuracy?: {
|
|
4153
|
-
source: string;
|
|
4154
|
-
threshold: number;
|
|
4857
|
+
dataQuality?: {
|
|
4858
|
+
uniqueness: boolean;
|
|
4859
|
+
completeness: number;
|
|
4860
|
+
accuracy?: {
|
|
4861
|
+
source: string;
|
|
4862
|
+
threshold: number;
|
|
4863
|
+
} | undefined;
|
|
4864
|
+
} | undefined;
|
|
4865
|
+
group?: string | undefined;
|
|
4866
|
+
visibleWhen?: {
|
|
4867
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4868
|
+
source?: string | undefined;
|
|
4869
|
+
ast?: unknown;
|
|
4870
|
+
meta?: {
|
|
4871
|
+
rationale?: string | undefined;
|
|
4872
|
+
generatedBy?: string | undefined;
|
|
4873
|
+
} | undefined;
|
|
4874
|
+
} | {
|
|
4875
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4876
|
+
source?: string | undefined;
|
|
4877
|
+
ast?: unknown;
|
|
4878
|
+
meta?: {
|
|
4879
|
+
rationale?: string | undefined;
|
|
4880
|
+
generatedBy?: string | undefined;
|
|
4881
|
+
} | undefined;
|
|
4882
|
+
} | undefined;
|
|
4883
|
+
readonlyWhen?: {
|
|
4884
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4885
|
+
source?: string | undefined;
|
|
4886
|
+
ast?: unknown;
|
|
4887
|
+
meta?: {
|
|
4888
|
+
rationale?: string | undefined;
|
|
4889
|
+
generatedBy?: string | undefined;
|
|
4890
|
+
} | undefined;
|
|
4891
|
+
} | {
|
|
4892
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4893
|
+
source?: string | undefined;
|
|
4894
|
+
ast?: unknown;
|
|
4895
|
+
meta?: {
|
|
4896
|
+
rationale?: string | undefined;
|
|
4897
|
+
generatedBy?: string | undefined;
|
|
4898
|
+
} | undefined;
|
|
4899
|
+
} | undefined;
|
|
4900
|
+
requiredWhen?: {
|
|
4901
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4902
|
+
source?: string | undefined;
|
|
4903
|
+
ast?: unknown;
|
|
4904
|
+
meta?: {
|
|
4905
|
+
rationale?: string | undefined;
|
|
4906
|
+
generatedBy?: string | undefined;
|
|
4907
|
+
} | undefined;
|
|
4908
|
+
} | {
|
|
4909
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4910
|
+
source?: string | undefined;
|
|
4911
|
+
ast?: unknown;
|
|
4912
|
+
meta?: {
|
|
4913
|
+
rationale?: string | undefined;
|
|
4914
|
+
generatedBy?: string | undefined;
|
|
4155
4915
|
} | undefined;
|
|
4156
4916
|
} | undefined;
|
|
4157
|
-
group?: string | undefined;
|
|
4158
4917
|
conditionalRequired?: {
|
|
4159
4918
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4160
4919
|
source?: string | undefined;
|
|
@@ -4296,7 +5055,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
4296
5055
|
} | undefined;
|
|
4297
5056
|
compactLayout?: string[] | undefined;
|
|
4298
5057
|
listViews?: Record<string, {
|
|
4299
|
-
type: "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map"
|
|
5058
|
+
type: "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "map";
|
|
4300
5059
|
columns: string[] | {
|
|
4301
5060
|
field: string;
|
|
4302
5061
|
label?: string | undefined;
|
|
@@ -4465,7 +5224,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
4465
5224
|
} | undefined;
|
|
4466
5225
|
appearance?: {
|
|
4467
5226
|
showDescription: boolean;
|
|
4468
|
-
allowedVisualizations?: ("kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "map"
|
|
5227
|
+
allowedVisualizations?: ("grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "map")[] | undefined;
|
|
4469
5228
|
} | undefined;
|
|
4470
5229
|
tabs?: {
|
|
4471
5230
|
name: string;
|
|
@@ -4485,7 +5244,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
4485
5244
|
addRecord?: {
|
|
4486
5245
|
enabled: boolean;
|
|
4487
5246
|
position: "top" | "bottom" | "both";
|
|
4488
|
-
mode: "
|
|
5247
|
+
mode: "form" | "modal" | "inline";
|
|
4489
5248
|
formView?: string | undefined;
|
|
4490
5249
|
} | undefined;
|
|
4491
5250
|
showRecordCount?: boolean | undefined;
|
|
@@ -4571,7 +5330,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
4571
5330
|
actions?: {
|
|
4572
5331
|
name: string;
|
|
4573
5332
|
label: string;
|
|
4574
|
-
type: "url" | "
|
|
5333
|
+
type: "url" | "form" | "flow" | "api" | "script" | "modal";
|
|
4575
5334
|
refreshAfter: boolean;
|
|
4576
5335
|
objectName?: string | undefined;
|
|
4577
5336
|
icon?: string | undefined;
|
|
@@ -4639,7 +5398,18 @@ declare const SysApprovalAction: Omit<{
|
|
|
4639
5398
|
} | undefined;
|
|
4640
5399
|
shortcut?: string | undefined;
|
|
4641
5400
|
bulkEnabled?: boolean | undefined;
|
|
4642
|
-
|
|
5401
|
+
ai?: {
|
|
5402
|
+
exposed: boolean;
|
|
5403
|
+
description?: string | undefined;
|
|
5404
|
+
category?: "action" | "data" | "flow" | "integration" | "vector_search" | "analytics" | "utility" | undefined;
|
|
5405
|
+
paramHints?: Record<string, {
|
|
5406
|
+
description?: string | undefined;
|
|
5407
|
+
enum?: (string | number)[] | undefined;
|
|
5408
|
+
examples?: unknown[] | undefined;
|
|
5409
|
+
}> | undefined;
|
|
5410
|
+
outputSchema?: Record<string, unknown> | undefined;
|
|
5411
|
+
requiresConfirmation?: boolean | undefined;
|
|
5412
|
+
} | undefined;
|
|
4643
5413
|
recordIdParam?: string | undefined;
|
|
4644
5414
|
recordIdField?: string | undefined;
|
|
4645
5415
|
bodyShape?: "flat" | {
|
|
@@ -4790,6 +5560,13 @@ declare const SysApprovalAction: Omit<{
|
|
|
4790
5560
|
readonly referenceFilters?: string[] | undefined;
|
|
4791
5561
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
4792
5562
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5563
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
5564
|
+
readonly inlineTitle?: string | undefined;
|
|
5565
|
+
readonly inlineColumns?: any[] | undefined;
|
|
5566
|
+
readonly inlineAmountField?: string | undefined;
|
|
5567
|
+
readonly relatedList?: boolean | undefined;
|
|
5568
|
+
readonly relatedListTitle?: string | undefined;
|
|
5569
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
4793
5570
|
readonly expression?: {
|
|
4794
5571
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4795
5572
|
source?: string | undefined;
|
|
@@ -4803,6 +5580,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
4803
5580
|
object: string;
|
|
4804
5581
|
field: string;
|
|
4805
5582
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
5583
|
+
relationshipField?: string | undefined;
|
|
4806
5584
|
} | undefined;
|
|
4807
5585
|
readonly language?: string | undefined;
|
|
4808
5586
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -4897,6 +5675,33 @@ declare const SysApprovalAction: Omit<{
|
|
|
4897
5675
|
threshold: number;
|
|
4898
5676
|
} | undefined;
|
|
4899
5677
|
} | undefined;
|
|
5678
|
+
readonly visibleWhen?: {
|
|
5679
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5680
|
+
source?: string | undefined;
|
|
5681
|
+
ast?: unknown;
|
|
5682
|
+
meta?: {
|
|
5683
|
+
rationale?: string | undefined;
|
|
5684
|
+
generatedBy?: string | undefined;
|
|
5685
|
+
} | undefined;
|
|
5686
|
+
} | undefined;
|
|
5687
|
+
readonly readonlyWhen?: {
|
|
5688
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5689
|
+
source?: string | undefined;
|
|
5690
|
+
ast?: unknown;
|
|
5691
|
+
meta?: {
|
|
5692
|
+
rationale?: string | undefined;
|
|
5693
|
+
generatedBy?: string | undefined;
|
|
5694
|
+
} | undefined;
|
|
5695
|
+
} | undefined;
|
|
5696
|
+
readonly requiredWhen?: {
|
|
5697
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5698
|
+
source?: string | undefined;
|
|
5699
|
+
ast?: unknown;
|
|
5700
|
+
meta?: {
|
|
5701
|
+
rationale?: string | undefined;
|
|
5702
|
+
generatedBy?: string | undefined;
|
|
5703
|
+
} | undefined;
|
|
5704
|
+
} | undefined;
|
|
4900
5705
|
readonly conditionalRequired?: {
|
|
4901
5706
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4902
5707
|
source?: string | undefined;
|
|
@@ -4965,6 +5770,13 @@ declare const SysApprovalAction: Omit<{
|
|
|
4965
5770
|
readonly referenceFilters?: string[] | undefined;
|
|
4966
5771
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
4967
5772
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5773
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
5774
|
+
readonly inlineTitle?: string | undefined;
|
|
5775
|
+
readonly inlineColumns?: any[] | undefined;
|
|
5776
|
+
readonly inlineAmountField?: string | undefined;
|
|
5777
|
+
readonly relatedList?: boolean | undefined;
|
|
5778
|
+
readonly relatedListTitle?: string | undefined;
|
|
5779
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
4968
5780
|
readonly expression?: {
|
|
4969
5781
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4970
5782
|
source?: string | undefined;
|
|
@@ -4978,6 +5790,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
4978
5790
|
object: string;
|
|
4979
5791
|
field: string;
|
|
4980
5792
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
5793
|
+
relationshipField?: string | undefined;
|
|
4981
5794
|
} | undefined;
|
|
4982
5795
|
readonly language?: string | undefined;
|
|
4983
5796
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -5072,6 +5885,33 @@ declare const SysApprovalAction: Omit<{
|
|
|
5072
5885
|
threshold: number;
|
|
5073
5886
|
} | undefined;
|
|
5074
5887
|
} | undefined;
|
|
5888
|
+
readonly visibleWhen?: {
|
|
5889
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5890
|
+
source?: string | undefined;
|
|
5891
|
+
ast?: unknown;
|
|
5892
|
+
meta?: {
|
|
5893
|
+
rationale?: string | undefined;
|
|
5894
|
+
generatedBy?: string | undefined;
|
|
5895
|
+
} | undefined;
|
|
5896
|
+
} | undefined;
|
|
5897
|
+
readonly readonlyWhen?: {
|
|
5898
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5899
|
+
source?: string | undefined;
|
|
5900
|
+
ast?: unknown;
|
|
5901
|
+
meta?: {
|
|
5902
|
+
rationale?: string | undefined;
|
|
5903
|
+
generatedBy?: string | undefined;
|
|
5904
|
+
} | undefined;
|
|
5905
|
+
} | undefined;
|
|
5906
|
+
readonly requiredWhen?: {
|
|
5907
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5908
|
+
source?: string | undefined;
|
|
5909
|
+
ast?: unknown;
|
|
5910
|
+
meta?: {
|
|
5911
|
+
rationale?: string | undefined;
|
|
5912
|
+
generatedBy?: string | undefined;
|
|
5913
|
+
} | undefined;
|
|
5914
|
+
} | undefined;
|
|
5075
5915
|
readonly conditionalRequired?: {
|
|
5076
5916
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5077
5917
|
source?: string | undefined;
|
|
@@ -5140,6 +5980,13 @@ declare const SysApprovalAction: Omit<{
|
|
|
5140
5980
|
readonly referenceFilters?: string[] | undefined;
|
|
5141
5981
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
5142
5982
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5983
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
5984
|
+
readonly inlineTitle?: string | undefined;
|
|
5985
|
+
readonly inlineColumns?: any[] | undefined;
|
|
5986
|
+
readonly inlineAmountField?: string | undefined;
|
|
5987
|
+
readonly relatedList?: boolean | undefined;
|
|
5988
|
+
readonly relatedListTitle?: string | undefined;
|
|
5989
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
5143
5990
|
readonly expression?: {
|
|
5144
5991
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5145
5992
|
source?: string | undefined;
|
|
@@ -5153,6 +6000,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
5153
6000
|
object: string;
|
|
5154
6001
|
field: string;
|
|
5155
6002
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
6003
|
+
relationshipField?: string | undefined;
|
|
5156
6004
|
} | undefined;
|
|
5157
6005
|
readonly language?: string | undefined;
|
|
5158
6006
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -5247,6 +6095,33 @@ declare const SysApprovalAction: Omit<{
|
|
|
5247
6095
|
threshold: number;
|
|
5248
6096
|
} | undefined;
|
|
5249
6097
|
} | undefined;
|
|
6098
|
+
readonly visibleWhen?: {
|
|
6099
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6100
|
+
source?: string | undefined;
|
|
6101
|
+
ast?: unknown;
|
|
6102
|
+
meta?: {
|
|
6103
|
+
rationale?: string | undefined;
|
|
6104
|
+
generatedBy?: string | undefined;
|
|
6105
|
+
} | undefined;
|
|
6106
|
+
} | undefined;
|
|
6107
|
+
readonly readonlyWhen?: {
|
|
6108
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6109
|
+
source?: string | undefined;
|
|
6110
|
+
ast?: unknown;
|
|
6111
|
+
meta?: {
|
|
6112
|
+
rationale?: string | undefined;
|
|
6113
|
+
generatedBy?: string | undefined;
|
|
6114
|
+
} | undefined;
|
|
6115
|
+
} | undefined;
|
|
6116
|
+
readonly requiredWhen?: {
|
|
6117
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6118
|
+
source?: string | undefined;
|
|
6119
|
+
ast?: unknown;
|
|
6120
|
+
meta?: {
|
|
6121
|
+
rationale?: string | undefined;
|
|
6122
|
+
generatedBy?: string | undefined;
|
|
6123
|
+
} | undefined;
|
|
6124
|
+
} | undefined;
|
|
5250
6125
|
readonly conditionalRequired?: {
|
|
5251
6126
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5252
6127
|
source?: string | undefined;
|
|
@@ -5315,6 +6190,13 @@ declare const SysApprovalAction: Omit<{
|
|
|
5315
6190
|
readonly referenceFilters?: string[] | undefined;
|
|
5316
6191
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
5317
6192
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6193
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
6194
|
+
readonly inlineTitle?: string | undefined;
|
|
6195
|
+
readonly inlineColumns?: any[] | undefined;
|
|
6196
|
+
readonly inlineAmountField?: string | undefined;
|
|
6197
|
+
readonly relatedList?: boolean | undefined;
|
|
6198
|
+
readonly relatedListTitle?: string | undefined;
|
|
6199
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
5318
6200
|
readonly expression?: {
|
|
5319
6201
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5320
6202
|
source?: string | undefined;
|
|
@@ -5328,6 +6210,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
5328
6210
|
object: string;
|
|
5329
6211
|
field: string;
|
|
5330
6212
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
6213
|
+
relationshipField?: string | undefined;
|
|
5331
6214
|
} | undefined;
|
|
5332
6215
|
readonly language?: string | undefined;
|
|
5333
6216
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -5422,6 +6305,33 @@ declare const SysApprovalAction: Omit<{
|
|
|
5422
6305
|
threshold: number;
|
|
5423
6306
|
} | undefined;
|
|
5424
6307
|
} | undefined;
|
|
6308
|
+
readonly visibleWhen?: {
|
|
6309
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6310
|
+
source?: string | undefined;
|
|
6311
|
+
ast?: unknown;
|
|
6312
|
+
meta?: {
|
|
6313
|
+
rationale?: string | undefined;
|
|
6314
|
+
generatedBy?: string | undefined;
|
|
6315
|
+
} | undefined;
|
|
6316
|
+
} | undefined;
|
|
6317
|
+
readonly readonlyWhen?: {
|
|
6318
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6319
|
+
source?: string | undefined;
|
|
6320
|
+
ast?: unknown;
|
|
6321
|
+
meta?: {
|
|
6322
|
+
rationale?: string | undefined;
|
|
6323
|
+
generatedBy?: string | undefined;
|
|
6324
|
+
} | undefined;
|
|
6325
|
+
} | undefined;
|
|
6326
|
+
readonly requiredWhen?: {
|
|
6327
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6328
|
+
source?: string | undefined;
|
|
6329
|
+
ast?: unknown;
|
|
6330
|
+
meta?: {
|
|
6331
|
+
rationale?: string | undefined;
|
|
6332
|
+
generatedBy?: string | undefined;
|
|
6333
|
+
} | undefined;
|
|
6334
|
+
} | undefined;
|
|
5425
6335
|
readonly conditionalRequired?: {
|
|
5426
6336
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5427
6337
|
source?: string | undefined;
|
|
@@ -5490,6 +6400,13 @@ declare const SysApprovalAction: Omit<{
|
|
|
5490
6400
|
readonly referenceFilters?: string[] | undefined;
|
|
5491
6401
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
5492
6402
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6403
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
6404
|
+
readonly inlineTitle?: string | undefined;
|
|
6405
|
+
readonly inlineColumns?: any[] | undefined;
|
|
6406
|
+
readonly inlineAmountField?: string | undefined;
|
|
6407
|
+
readonly relatedList?: boolean | undefined;
|
|
6408
|
+
readonly relatedListTitle?: string | undefined;
|
|
6409
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
5493
6410
|
readonly expression?: {
|
|
5494
6411
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5495
6412
|
source?: string | undefined;
|
|
@@ -5503,6 +6420,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
5503
6420
|
object: string;
|
|
5504
6421
|
field: string;
|
|
5505
6422
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
6423
|
+
relationshipField?: string | undefined;
|
|
5506
6424
|
} | undefined;
|
|
5507
6425
|
readonly language?: string | undefined;
|
|
5508
6426
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -5597,6 +6515,33 @@ declare const SysApprovalAction: Omit<{
|
|
|
5597
6515
|
threshold: number;
|
|
5598
6516
|
} | undefined;
|
|
5599
6517
|
} | undefined;
|
|
6518
|
+
readonly visibleWhen?: {
|
|
6519
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6520
|
+
source?: string | undefined;
|
|
6521
|
+
ast?: unknown;
|
|
6522
|
+
meta?: {
|
|
6523
|
+
rationale?: string | undefined;
|
|
6524
|
+
generatedBy?: string | undefined;
|
|
6525
|
+
} | undefined;
|
|
6526
|
+
} | undefined;
|
|
6527
|
+
readonly readonlyWhen?: {
|
|
6528
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6529
|
+
source?: string | undefined;
|
|
6530
|
+
ast?: unknown;
|
|
6531
|
+
meta?: {
|
|
6532
|
+
rationale?: string | undefined;
|
|
6533
|
+
generatedBy?: string | undefined;
|
|
6534
|
+
} | undefined;
|
|
6535
|
+
} | undefined;
|
|
6536
|
+
readonly requiredWhen?: {
|
|
6537
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6538
|
+
source?: string | undefined;
|
|
6539
|
+
ast?: unknown;
|
|
6540
|
+
meta?: {
|
|
6541
|
+
rationale?: string | undefined;
|
|
6542
|
+
generatedBy?: string | undefined;
|
|
6543
|
+
} | undefined;
|
|
6544
|
+
} | undefined;
|
|
5600
6545
|
readonly conditionalRequired?: {
|
|
5601
6546
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5602
6547
|
source?: string | undefined;
|
|
@@ -5665,6 +6610,13 @@ declare const SysApprovalAction: Omit<{
|
|
|
5665
6610
|
readonly referenceFilters?: string[] | undefined;
|
|
5666
6611
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
5667
6612
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6613
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
6614
|
+
readonly inlineTitle?: string | undefined;
|
|
6615
|
+
readonly inlineColumns?: any[] | undefined;
|
|
6616
|
+
readonly inlineAmountField?: string | undefined;
|
|
6617
|
+
readonly relatedList?: boolean | undefined;
|
|
6618
|
+
readonly relatedListTitle?: string | undefined;
|
|
6619
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
5668
6620
|
readonly expression?: {
|
|
5669
6621
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5670
6622
|
source?: string | undefined;
|
|
@@ -5678,6 +6630,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
5678
6630
|
object: string;
|
|
5679
6631
|
field: string;
|
|
5680
6632
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
6633
|
+
relationshipField?: string | undefined;
|
|
5681
6634
|
} | undefined;
|
|
5682
6635
|
readonly language?: string | undefined;
|
|
5683
6636
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -5772,6 +6725,33 @@ declare const SysApprovalAction: Omit<{
|
|
|
5772
6725
|
threshold: number;
|
|
5773
6726
|
} | undefined;
|
|
5774
6727
|
} | undefined;
|
|
6728
|
+
readonly visibleWhen?: {
|
|
6729
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6730
|
+
source?: string | undefined;
|
|
6731
|
+
ast?: unknown;
|
|
6732
|
+
meta?: {
|
|
6733
|
+
rationale?: string | undefined;
|
|
6734
|
+
generatedBy?: string | undefined;
|
|
6735
|
+
} | undefined;
|
|
6736
|
+
} | undefined;
|
|
6737
|
+
readonly readonlyWhen?: {
|
|
6738
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6739
|
+
source?: string | undefined;
|
|
6740
|
+
ast?: unknown;
|
|
6741
|
+
meta?: {
|
|
6742
|
+
rationale?: string | undefined;
|
|
6743
|
+
generatedBy?: string | undefined;
|
|
6744
|
+
} | undefined;
|
|
6745
|
+
} | undefined;
|
|
6746
|
+
readonly requiredWhen?: {
|
|
6747
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6748
|
+
source?: string | undefined;
|
|
6749
|
+
ast?: unknown;
|
|
6750
|
+
meta?: {
|
|
6751
|
+
rationale?: string | undefined;
|
|
6752
|
+
generatedBy?: string | undefined;
|
|
6753
|
+
} | undefined;
|
|
6754
|
+
} | undefined;
|
|
5775
6755
|
readonly conditionalRequired?: {
|
|
5776
6756
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5777
6757
|
source?: string | undefined;
|
|
@@ -5840,6 +6820,13 @@ declare const SysApprovalAction: Omit<{
|
|
|
5840
6820
|
readonly referenceFilters?: string[] | undefined;
|
|
5841
6821
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
5842
6822
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6823
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
6824
|
+
readonly inlineTitle?: string | undefined;
|
|
6825
|
+
readonly inlineColumns?: any[] | undefined;
|
|
6826
|
+
readonly inlineAmountField?: string | undefined;
|
|
6827
|
+
readonly relatedList?: boolean | undefined;
|
|
6828
|
+
readonly relatedListTitle?: string | undefined;
|
|
6829
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
5843
6830
|
readonly expression?: {
|
|
5844
6831
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5845
6832
|
source?: string | undefined;
|
|
@@ -5853,6 +6840,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
5853
6840
|
object: string;
|
|
5854
6841
|
field: string;
|
|
5855
6842
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
6843
|
+
relationshipField?: string | undefined;
|
|
5856
6844
|
} | undefined;
|
|
5857
6845
|
readonly language?: string | undefined;
|
|
5858
6846
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -5947,6 +6935,33 @@ declare const SysApprovalAction: Omit<{
|
|
|
5947
6935
|
threshold: number;
|
|
5948
6936
|
} | undefined;
|
|
5949
6937
|
} | undefined;
|
|
6938
|
+
readonly visibleWhen?: {
|
|
6939
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6940
|
+
source?: string | undefined;
|
|
6941
|
+
ast?: unknown;
|
|
6942
|
+
meta?: {
|
|
6943
|
+
rationale?: string | undefined;
|
|
6944
|
+
generatedBy?: string | undefined;
|
|
6945
|
+
} | undefined;
|
|
6946
|
+
} | undefined;
|
|
6947
|
+
readonly readonlyWhen?: {
|
|
6948
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6949
|
+
source?: string | undefined;
|
|
6950
|
+
ast?: unknown;
|
|
6951
|
+
meta?: {
|
|
6952
|
+
rationale?: string | undefined;
|
|
6953
|
+
generatedBy?: string | undefined;
|
|
6954
|
+
} | undefined;
|
|
6955
|
+
} | undefined;
|
|
6956
|
+
readonly requiredWhen?: {
|
|
6957
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6958
|
+
source?: string | undefined;
|
|
6959
|
+
ast?: unknown;
|
|
6960
|
+
meta?: {
|
|
6961
|
+
rationale?: string | undefined;
|
|
6962
|
+
generatedBy?: string | undefined;
|
|
6963
|
+
} | undefined;
|
|
6964
|
+
} | undefined;
|
|
5950
6965
|
readonly conditionalRequired?: {
|
|
5951
6966
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5952
6967
|
source?: string | undefined;
|
|
@@ -6015,6 +7030,13 @@ declare const SysApprovalAction: Omit<{
|
|
|
6015
7030
|
readonly referenceFilters?: string[] | undefined;
|
|
6016
7031
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
6017
7032
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7033
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
7034
|
+
readonly inlineTitle?: string | undefined;
|
|
7035
|
+
readonly inlineColumns?: any[] | undefined;
|
|
7036
|
+
readonly inlineAmountField?: string | undefined;
|
|
7037
|
+
readonly relatedList?: boolean | undefined;
|
|
7038
|
+
readonly relatedListTitle?: string | undefined;
|
|
7039
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
6018
7040
|
readonly expression?: {
|
|
6019
7041
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6020
7042
|
source?: string | undefined;
|
|
@@ -6028,6 +7050,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
6028
7050
|
object: string;
|
|
6029
7051
|
field: string;
|
|
6030
7052
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
7053
|
+
relationshipField?: string | undefined;
|
|
6031
7054
|
} | undefined;
|
|
6032
7055
|
readonly language?: string | undefined;
|
|
6033
7056
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -6122,6 +7145,33 @@ declare const SysApprovalAction: Omit<{
|
|
|
6122
7145
|
threshold: number;
|
|
6123
7146
|
} | undefined;
|
|
6124
7147
|
} | undefined;
|
|
7148
|
+
readonly visibleWhen?: {
|
|
7149
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
7150
|
+
source?: string | undefined;
|
|
7151
|
+
ast?: unknown;
|
|
7152
|
+
meta?: {
|
|
7153
|
+
rationale?: string | undefined;
|
|
7154
|
+
generatedBy?: string | undefined;
|
|
7155
|
+
} | undefined;
|
|
7156
|
+
} | undefined;
|
|
7157
|
+
readonly readonlyWhen?: {
|
|
7158
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
7159
|
+
source?: string | undefined;
|
|
7160
|
+
ast?: unknown;
|
|
7161
|
+
meta?: {
|
|
7162
|
+
rationale?: string | undefined;
|
|
7163
|
+
generatedBy?: string | undefined;
|
|
7164
|
+
} | undefined;
|
|
7165
|
+
} | undefined;
|
|
7166
|
+
readonly requiredWhen?: {
|
|
7167
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
7168
|
+
source?: string | undefined;
|
|
7169
|
+
ast?: unknown;
|
|
7170
|
+
meta?: {
|
|
7171
|
+
rationale?: string | undefined;
|
|
7172
|
+
generatedBy?: string | undefined;
|
|
7173
|
+
} | undefined;
|
|
7174
|
+
} | undefined;
|
|
6125
7175
|
readonly conditionalRequired?: {
|
|
6126
7176
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6127
7177
|
source?: string | undefined;
|
|
@@ -6190,6 +7240,13 @@ declare const SysApprovalAction: Omit<{
|
|
|
6190
7240
|
readonly referenceFilters?: string[] | undefined;
|
|
6191
7241
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
6192
7242
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7243
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
7244
|
+
readonly inlineTitle?: string | undefined;
|
|
7245
|
+
readonly inlineColumns?: any[] | undefined;
|
|
7246
|
+
readonly inlineAmountField?: string | undefined;
|
|
7247
|
+
readonly relatedList?: boolean | undefined;
|
|
7248
|
+
readonly relatedListTitle?: string | undefined;
|
|
7249
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
6193
7250
|
readonly expression?: {
|
|
6194
7251
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6195
7252
|
source?: string | undefined;
|
|
@@ -6203,6 +7260,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
6203
7260
|
object: string;
|
|
6204
7261
|
field: string;
|
|
6205
7262
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
7263
|
+
relationshipField?: string | undefined;
|
|
6206
7264
|
} | undefined;
|
|
6207
7265
|
readonly language?: string | undefined;
|
|
6208
7266
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -6297,6 +7355,33 @@ declare const SysApprovalAction: Omit<{
|
|
|
6297
7355
|
threshold: number;
|
|
6298
7356
|
} | undefined;
|
|
6299
7357
|
} | undefined;
|
|
7358
|
+
readonly visibleWhen?: {
|
|
7359
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
7360
|
+
source?: string | undefined;
|
|
7361
|
+
ast?: unknown;
|
|
7362
|
+
meta?: {
|
|
7363
|
+
rationale?: string | undefined;
|
|
7364
|
+
generatedBy?: string | undefined;
|
|
7365
|
+
} | undefined;
|
|
7366
|
+
} | undefined;
|
|
7367
|
+
readonly readonlyWhen?: {
|
|
7368
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
7369
|
+
source?: string | undefined;
|
|
7370
|
+
ast?: unknown;
|
|
7371
|
+
meta?: {
|
|
7372
|
+
rationale?: string | undefined;
|
|
7373
|
+
generatedBy?: string | undefined;
|
|
7374
|
+
} | undefined;
|
|
7375
|
+
} | undefined;
|
|
7376
|
+
readonly requiredWhen?: {
|
|
7377
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
7378
|
+
source?: string | undefined;
|
|
7379
|
+
ast?: unknown;
|
|
7380
|
+
meta?: {
|
|
7381
|
+
rationale?: string | undefined;
|
|
7382
|
+
generatedBy?: string | undefined;
|
|
7383
|
+
} | undefined;
|
|
7384
|
+
} | undefined;
|
|
6300
7385
|
readonly conditionalRequired?: {
|
|
6301
7386
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6302
7387
|
source?: string | undefined;
|
|
@@ -6451,7 +7536,7 @@ declare class ApprovalService implements IApprovalService {
|
|
|
6451
7536
|
object?: string;
|
|
6452
7537
|
recordId?: string;
|
|
6453
7538
|
status?: ApprovalStatus | ApprovalStatus[];
|
|
6454
|
-
approverId?: string;
|
|
7539
|
+
approverId?: string | string[];
|
|
6455
7540
|
submitterId?: string;
|
|
6456
7541
|
} | undefined, context: SharingExecutionContext): Promise<ApprovalRequestRow[]>;
|
|
6457
7542
|
getRequest(requestId: string, context: SharingExecutionContext): Promise<ApprovalRequestRow | null>;
|