@objectstack/plugin-approvals 17.0.0-rc.6 → 17.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/CHANGELOG.md +2712 -0
- package/dist/index.d.mts +938 -673
- package/dist/index.d.ts +938 -673
- package/dist/index.js +52 -32
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +54 -34
- package/dist/index.mjs.map +1 -1
- package/package.json +12 -11
package/dist/index.d.ts
CHANGED
|
@@ -54,6 +54,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
54
54
|
scale?: number | undefined;
|
|
55
55
|
min?: number | undefined;
|
|
56
56
|
max?: number | undefined;
|
|
57
|
+
useGrouping?: boolean | undefined;
|
|
57
58
|
accept?: string[] | undefined;
|
|
58
59
|
maxSize?: number | undefined;
|
|
59
60
|
options?: {
|
|
@@ -156,6 +157,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
156
157
|
conditionalRequired?: undefined;
|
|
157
158
|
widget?: string | undefined;
|
|
158
159
|
hidden?: boolean | undefined;
|
|
160
|
+
internal?: boolean | undefined;
|
|
159
161
|
readonly?: boolean | undefined;
|
|
160
162
|
requiredPermissions?: string[] | undefined;
|
|
161
163
|
ackPlaintextMasking?: boolean | undefined;
|
|
@@ -180,8 +182,48 @@ declare const SysApprovalRequest: Omit<{
|
|
|
180
182
|
managedBy?: "platform" | "config" | "system-data" | "engine-owned" | "append-only" | "better-auth" | undefined;
|
|
181
183
|
ownership?: "none" | "org" | "user" | "business_unit" | undefined;
|
|
182
184
|
userActions?: {
|
|
183
|
-
create?: boolean |
|
|
184
|
-
|
|
185
|
+
create?: boolean | {
|
|
186
|
+
enabled?: boolean | undefined;
|
|
187
|
+
visibleWhen?: string | {
|
|
188
|
+
dialect: "cel" | "cron" | "template";
|
|
189
|
+
source?: string | undefined;
|
|
190
|
+
ast?: unknown;
|
|
191
|
+
meta?: {
|
|
192
|
+
rationale?: string | undefined;
|
|
193
|
+
generatedBy?: string | undefined;
|
|
194
|
+
} | undefined;
|
|
195
|
+
} | undefined;
|
|
196
|
+
disabledWhen?: string | {
|
|
197
|
+
dialect: "cel" | "cron" | "template";
|
|
198
|
+
source?: string | undefined;
|
|
199
|
+
ast?: unknown;
|
|
200
|
+
meta?: {
|
|
201
|
+
rationale?: string | undefined;
|
|
202
|
+
generatedBy?: string | undefined;
|
|
203
|
+
} | undefined;
|
|
204
|
+
} | undefined;
|
|
205
|
+
} | undefined;
|
|
206
|
+
import?: boolean | {
|
|
207
|
+
enabled?: boolean | undefined;
|
|
208
|
+
visibleWhen?: string | {
|
|
209
|
+
dialect: "cel" | "cron" | "template";
|
|
210
|
+
source?: string | undefined;
|
|
211
|
+
ast?: unknown;
|
|
212
|
+
meta?: {
|
|
213
|
+
rationale?: string | undefined;
|
|
214
|
+
generatedBy?: string | undefined;
|
|
215
|
+
} | undefined;
|
|
216
|
+
} | undefined;
|
|
217
|
+
disabledWhen?: string | {
|
|
218
|
+
dialect: "cel" | "cron" | "template";
|
|
219
|
+
source?: string | undefined;
|
|
220
|
+
ast?: unknown;
|
|
221
|
+
meta?: {
|
|
222
|
+
rationale?: string | undefined;
|
|
223
|
+
generatedBy?: string | undefined;
|
|
224
|
+
} | undefined;
|
|
225
|
+
} | undefined;
|
|
226
|
+
} | undefined;
|
|
185
227
|
edit?: boolean | {
|
|
186
228
|
enabled?: boolean | undefined;
|
|
187
229
|
visibleWhen?: string | {
|
|
@@ -441,6 +483,16 @@ declare const SysApprovalRequest: Omit<{
|
|
|
441
483
|
} | undefined;
|
|
442
484
|
responsive?: undefined;
|
|
443
485
|
performance?: undefined;
|
|
486
|
+
striped?: undefined;
|
|
487
|
+
bordered?: undefined;
|
|
488
|
+
virtualScroll?: undefined;
|
|
489
|
+
exportOptions?: ("json" | "xlsx" | "csv")[] | {
|
|
490
|
+
formats?: ("json" | "xlsx" | "csv")[] | undefined;
|
|
491
|
+
maxRecords?: number | undefined;
|
|
492
|
+
includeHeaders?: boolean | undefined;
|
|
493
|
+
fileNamePrefix?: string | undefined;
|
|
494
|
+
streaming?: boolean | undefined;
|
|
495
|
+
} | undefined;
|
|
444
496
|
appearance?: {
|
|
445
497
|
showDescription?: boolean | undefined;
|
|
446
498
|
allowedVisualizations?: ("tree" | "grid" | "gallery" | "kanban" | "calendar" | "timeline" | "gantt" | "chart" | "map")[] | undefined;
|
|
@@ -505,8 +557,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
505
557
|
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
506
558
|
searchableFields?: string[] | undefined;
|
|
507
559
|
filterableFields?: string[] | undefined;
|
|
508
|
-
striped?: boolean | undefined;
|
|
509
|
-
bordered?: boolean | undefined;
|
|
510
560
|
compactToolbar?: boolean | undefined;
|
|
511
561
|
selection?: {
|
|
512
562
|
type?: "none" | "multiple" | "single" | undefined;
|
|
@@ -571,7 +621,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
571
621
|
maxRecords?: number | undefined;
|
|
572
622
|
batchSize?: number | undefined;
|
|
573
623
|
}[] | undefined;
|
|
574
|
-
virtualScroll?: boolean | undefined;
|
|
575
624
|
conditionalFormatting?: {
|
|
576
625
|
condition: string | {
|
|
577
626
|
dialect: "cel" | "cron" | "template";
|
|
@@ -584,7 +633,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
584
633
|
};
|
|
585
634
|
style: Record<string, string>;
|
|
586
635
|
}[] | undefined;
|
|
587
|
-
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
588
636
|
addRecord?: {
|
|
589
637
|
enabled?: boolean | undefined;
|
|
590
638
|
position?: "top" | "bottom" | "both" | undefined;
|
|
@@ -645,7 +693,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
645
693
|
icon?: string | undefined;
|
|
646
694
|
locations?: ("record_header" | "list_toolbar" | "list_item" | "record_more" | "record_related" | "record_section")[] | undefined;
|
|
647
695
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
648
|
-
type?: "url" | "form" | "api" | "modal" | "
|
|
696
|
+
type?: "url" | "form" | "api" | "modal" | "flow" | "script" | undefined;
|
|
649
697
|
target?: string | undefined;
|
|
650
698
|
openIn?: "self" | "new-tab" | undefined;
|
|
651
699
|
body?: {
|
|
@@ -696,7 +744,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
696
744
|
generatedBy?: string | undefined;
|
|
697
745
|
} | undefined;
|
|
698
746
|
} | undefined;
|
|
699
|
-
requiresFeature?: "organization" | "twoFactor" | "
|
|
747
|
+
requiresFeature?: "organization" | "twoFactor" | "multiOrgEnabled" | "degradedTenancy" | "oidcProvider" | "sso" | "ssoEnforced" | "deviceAuthorization" | "admin" | "phoneNumber" | "phoneNumberOtp" | undefined;
|
|
700
748
|
}[] | undefined;
|
|
701
749
|
variant?: "primary" | "secondary" | "danger" | "ghost" | "link" | undefined;
|
|
702
750
|
order?: number | undefined;
|
|
@@ -725,7 +773,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
725
773
|
generatedBy?: string | undefined;
|
|
726
774
|
} | undefined;
|
|
727
775
|
} | undefined;
|
|
728
|
-
requiresFeature?: "organization" | "twoFactor" | "
|
|
776
|
+
requiresFeature?: "organization" | "twoFactor" | "multiOrgEnabled" | "degradedTenancy" | "oidcProvider" | "sso" | "ssoEnforced" | "deviceAuthorization" | "admin" | "phoneNumber" | "phoneNumberOtp" | undefined;
|
|
729
777
|
disabled?: string | boolean | {
|
|
730
778
|
dialect: "cel" | "cron" | "template";
|
|
731
779
|
source?: string | undefined;
|
|
@@ -906,6 +954,24 @@ declare const SysApprovalRequest: Omit<{
|
|
|
906
954
|
readonly storage?: {
|
|
907
955
|
notNull?: boolean | undefined;
|
|
908
956
|
} | undefined;
|
|
957
|
+
readonly visibleWhen?: string | {
|
|
958
|
+
dialect: "cel" | "cron" | "template";
|
|
959
|
+
source?: string | undefined;
|
|
960
|
+
ast?: unknown;
|
|
961
|
+
meta?: {
|
|
962
|
+
rationale?: string | undefined;
|
|
963
|
+
generatedBy?: string | undefined;
|
|
964
|
+
} | undefined;
|
|
965
|
+
} | undefined;
|
|
966
|
+
readonly readonlyWhen?: string | {
|
|
967
|
+
dialect: "cel" | "cron" | "template";
|
|
968
|
+
source?: string | undefined;
|
|
969
|
+
ast?: unknown;
|
|
970
|
+
meta?: {
|
|
971
|
+
rationale?: string | undefined;
|
|
972
|
+
generatedBy?: string | undefined;
|
|
973
|
+
} | undefined;
|
|
974
|
+
} | undefined;
|
|
909
975
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
910
976
|
readonly _lockReason?: string | undefined;
|
|
911
977
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -937,15 +1003,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
937
1003
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
938
1004
|
} | undefined;
|
|
939
1005
|
readonly reference?: string | undefined;
|
|
940
|
-
readonly visibleWhen?: string | {
|
|
941
|
-
dialect: "cel" | "cron" | "template";
|
|
942
|
-
source?: string | undefined;
|
|
943
|
-
ast?: unknown;
|
|
944
|
-
meta?: {
|
|
945
|
-
rationale?: string | undefined;
|
|
946
|
-
generatedBy?: string | undefined;
|
|
947
|
-
} | undefined;
|
|
948
|
-
} | undefined;
|
|
949
1006
|
readonly scale?: number | undefined;
|
|
950
1007
|
readonly searchable?: boolean | undefined;
|
|
951
1008
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -954,6 +1011,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
954
1011
|
readonly minLength?: number | undefined;
|
|
955
1012
|
readonly min?: number | undefined;
|
|
956
1013
|
readonly max?: number | undefined;
|
|
1014
|
+
readonly useGrouping?: boolean | undefined;
|
|
957
1015
|
readonly accept?: string[] | undefined;
|
|
958
1016
|
readonly maxSize?: number | undefined;
|
|
959
1017
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -987,15 +1045,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
987
1045
|
readonly dimensions?: number | undefined;
|
|
988
1046
|
readonly trackHistory?: boolean | undefined;
|
|
989
1047
|
readonly group?: string | undefined;
|
|
990
|
-
readonly readonlyWhen?: string | {
|
|
991
|
-
dialect: "cel" | "cron" | "template";
|
|
992
|
-
source?: string | undefined;
|
|
993
|
-
ast?: unknown;
|
|
994
|
-
meta?: {
|
|
995
|
-
rationale?: string | undefined;
|
|
996
|
-
generatedBy?: string | undefined;
|
|
997
|
-
} | undefined;
|
|
998
|
-
} | undefined;
|
|
999
1048
|
readonly requiredWhen?: string | {
|
|
1000
1049
|
dialect: "cel" | "cron" | "template";
|
|
1001
1050
|
source?: string | undefined;
|
|
@@ -1007,6 +1056,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1007
1056
|
} | undefined;
|
|
1008
1057
|
readonly conditionalRequired?: undefined;
|
|
1009
1058
|
readonly hidden?: boolean | undefined;
|
|
1059
|
+
readonly internal?: boolean | undefined;
|
|
1010
1060
|
readonly requiredPermissions?: string[] | undefined;
|
|
1011
1061
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1012
1062
|
readonly system?: boolean | undefined;
|
|
@@ -1053,6 +1103,24 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1053
1103
|
readonly storage?: {
|
|
1054
1104
|
notNull?: boolean | undefined;
|
|
1055
1105
|
} | undefined;
|
|
1106
|
+
readonly visibleWhen?: string | {
|
|
1107
|
+
dialect: "cel" | "cron" | "template";
|
|
1108
|
+
source?: string | undefined;
|
|
1109
|
+
ast?: unknown;
|
|
1110
|
+
meta?: {
|
|
1111
|
+
rationale?: string | undefined;
|
|
1112
|
+
generatedBy?: string | undefined;
|
|
1113
|
+
} | undefined;
|
|
1114
|
+
} | undefined;
|
|
1115
|
+
readonly readonlyWhen?: string | {
|
|
1116
|
+
dialect: "cel" | "cron" | "template";
|
|
1117
|
+
source?: string | undefined;
|
|
1118
|
+
ast?: unknown;
|
|
1119
|
+
meta?: {
|
|
1120
|
+
rationale?: string | undefined;
|
|
1121
|
+
generatedBy?: string | undefined;
|
|
1122
|
+
} | undefined;
|
|
1123
|
+
} | undefined;
|
|
1056
1124
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1057
1125
|
readonly _lockReason?: string | undefined;
|
|
1058
1126
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -1084,15 +1152,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1084
1152
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1085
1153
|
} | undefined;
|
|
1086
1154
|
readonly reference?: string | undefined;
|
|
1087
|
-
readonly visibleWhen?: string | {
|
|
1088
|
-
dialect: "cel" | "cron" | "template";
|
|
1089
|
-
source?: string | undefined;
|
|
1090
|
-
ast?: unknown;
|
|
1091
|
-
meta?: {
|
|
1092
|
-
rationale?: string | undefined;
|
|
1093
|
-
generatedBy?: string | undefined;
|
|
1094
|
-
} | undefined;
|
|
1095
|
-
} | undefined;
|
|
1096
1155
|
readonly scale?: number | undefined;
|
|
1097
1156
|
readonly searchable?: boolean | undefined;
|
|
1098
1157
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -1101,6 +1160,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1101
1160
|
readonly minLength?: number | undefined;
|
|
1102
1161
|
readonly min?: number | undefined;
|
|
1103
1162
|
readonly max?: number | undefined;
|
|
1163
|
+
readonly useGrouping?: boolean | undefined;
|
|
1104
1164
|
readonly accept?: string[] | undefined;
|
|
1105
1165
|
readonly maxSize?: number | undefined;
|
|
1106
1166
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -1134,15 +1194,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1134
1194
|
readonly dimensions?: number | undefined;
|
|
1135
1195
|
readonly trackHistory?: boolean | undefined;
|
|
1136
1196
|
readonly group?: string | undefined;
|
|
1137
|
-
readonly readonlyWhen?: string | {
|
|
1138
|
-
dialect: "cel" | "cron" | "template";
|
|
1139
|
-
source?: string | undefined;
|
|
1140
|
-
ast?: unknown;
|
|
1141
|
-
meta?: {
|
|
1142
|
-
rationale?: string | undefined;
|
|
1143
|
-
generatedBy?: string | undefined;
|
|
1144
|
-
} | undefined;
|
|
1145
|
-
} | undefined;
|
|
1146
1197
|
readonly requiredWhen?: string | {
|
|
1147
1198
|
dialect: "cel" | "cron" | "template";
|
|
1148
1199
|
source?: string | undefined;
|
|
@@ -1154,6 +1205,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1154
1205
|
} | undefined;
|
|
1155
1206
|
readonly conditionalRequired?: undefined;
|
|
1156
1207
|
readonly hidden?: boolean | undefined;
|
|
1208
|
+
readonly internal?: boolean | undefined;
|
|
1157
1209
|
readonly requiredPermissions?: string[] | undefined;
|
|
1158
1210
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1159
1211
|
readonly system?: boolean | undefined;
|
|
@@ -1191,6 +1243,24 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1191
1243
|
readonly storage?: {
|
|
1192
1244
|
notNull?: boolean | undefined;
|
|
1193
1245
|
} | undefined;
|
|
1246
|
+
readonly visibleWhen?: string | {
|
|
1247
|
+
dialect: "cel" | "cron" | "template";
|
|
1248
|
+
source?: string | undefined;
|
|
1249
|
+
ast?: unknown;
|
|
1250
|
+
meta?: {
|
|
1251
|
+
rationale?: string | undefined;
|
|
1252
|
+
generatedBy?: string | undefined;
|
|
1253
|
+
} | undefined;
|
|
1254
|
+
} | undefined;
|
|
1255
|
+
readonly readonlyWhen?: string | {
|
|
1256
|
+
dialect: "cel" | "cron" | "template";
|
|
1257
|
+
source?: string | undefined;
|
|
1258
|
+
ast?: unknown;
|
|
1259
|
+
meta?: {
|
|
1260
|
+
rationale?: string | undefined;
|
|
1261
|
+
generatedBy?: string | undefined;
|
|
1262
|
+
} | undefined;
|
|
1263
|
+
} | undefined;
|
|
1194
1264
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1195
1265
|
readonly _lockReason?: string | undefined;
|
|
1196
1266
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -1222,15 +1292,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1222
1292
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1223
1293
|
} | undefined;
|
|
1224
1294
|
readonly reference?: string | undefined;
|
|
1225
|
-
readonly visibleWhen?: string | {
|
|
1226
|
-
dialect: "cel" | "cron" | "template";
|
|
1227
|
-
source?: string | undefined;
|
|
1228
|
-
ast?: unknown;
|
|
1229
|
-
meta?: {
|
|
1230
|
-
rationale?: string | undefined;
|
|
1231
|
-
generatedBy?: string | undefined;
|
|
1232
|
-
} | undefined;
|
|
1233
|
-
} | undefined;
|
|
1234
1295
|
readonly scale?: number | undefined;
|
|
1235
1296
|
readonly searchable?: boolean | undefined;
|
|
1236
1297
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -1239,6 +1300,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1239
1300
|
readonly minLength?: number | undefined;
|
|
1240
1301
|
readonly min?: number | undefined;
|
|
1241
1302
|
readonly max?: number | undefined;
|
|
1303
|
+
readonly useGrouping?: boolean | undefined;
|
|
1242
1304
|
readonly accept?: string[] | undefined;
|
|
1243
1305
|
readonly maxSize?: number | undefined;
|
|
1244
1306
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -1272,15 +1334,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1272
1334
|
readonly dimensions?: number | undefined;
|
|
1273
1335
|
readonly trackHistory?: boolean | undefined;
|
|
1274
1336
|
readonly group?: string | undefined;
|
|
1275
|
-
readonly readonlyWhen?: string | {
|
|
1276
|
-
dialect: "cel" | "cron" | "template";
|
|
1277
|
-
source?: string | undefined;
|
|
1278
|
-
ast?: unknown;
|
|
1279
|
-
meta?: {
|
|
1280
|
-
rationale?: string | undefined;
|
|
1281
|
-
generatedBy?: string | undefined;
|
|
1282
|
-
} | undefined;
|
|
1283
|
-
} | undefined;
|
|
1284
1337
|
readonly requiredWhen?: string | {
|
|
1285
1338
|
dialect: "cel" | "cron" | "template";
|
|
1286
1339
|
source?: string | undefined;
|
|
@@ -1292,6 +1345,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1292
1345
|
} | undefined;
|
|
1293
1346
|
readonly conditionalRequired?: undefined;
|
|
1294
1347
|
readonly hidden?: boolean | undefined;
|
|
1348
|
+
readonly internal?: boolean | undefined;
|
|
1295
1349
|
readonly requiredPermissions?: string[] | undefined;
|
|
1296
1350
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1297
1351
|
readonly system?: boolean | undefined;
|
|
@@ -1329,6 +1383,24 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1329
1383
|
readonly storage?: {
|
|
1330
1384
|
notNull?: boolean | undefined;
|
|
1331
1385
|
} | undefined;
|
|
1386
|
+
readonly visibleWhen?: string | {
|
|
1387
|
+
dialect: "cel" | "cron" | "template";
|
|
1388
|
+
source?: string | undefined;
|
|
1389
|
+
ast?: unknown;
|
|
1390
|
+
meta?: {
|
|
1391
|
+
rationale?: string | undefined;
|
|
1392
|
+
generatedBy?: string | undefined;
|
|
1393
|
+
} | undefined;
|
|
1394
|
+
} | undefined;
|
|
1395
|
+
readonly readonlyWhen?: string | {
|
|
1396
|
+
dialect: "cel" | "cron" | "template";
|
|
1397
|
+
source?: string | undefined;
|
|
1398
|
+
ast?: unknown;
|
|
1399
|
+
meta?: {
|
|
1400
|
+
rationale?: string | undefined;
|
|
1401
|
+
generatedBy?: string | undefined;
|
|
1402
|
+
} | undefined;
|
|
1403
|
+
} | undefined;
|
|
1332
1404
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1333
1405
|
readonly _lockReason?: string | undefined;
|
|
1334
1406
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -1360,15 +1432,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1360
1432
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1361
1433
|
} | undefined;
|
|
1362
1434
|
readonly reference?: string | undefined;
|
|
1363
|
-
readonly visibleWhen?: string | {
|
|
1364
|
-
dialect: "cel" | "cron" | "template";
|
|
1365
|
-
source?: string | undefined;
|
|
1366
|
-
ast?: unknown;
|
|
1367
|
-
meta?: {
|
|
1368
|
-
rationale?: string | undefined;
|
|
1369
|
-
generatedBy?: string | undefined;
|
|
1370
|
-
} | undefined;
|
|
1371
|
-
} | undefined;
|
|
1372
1435
|
readonly scale?: number | undefined;
|
|
1373
1436
|
readonly searchable?: boolean | undefined;
|
|
1374
1437
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -1377,6 +1440,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1377
1440
|
readonly minLength?: number | undefined;
|
|
1378
1441
|
readonly min?: number | undefined;
|
|
1379
1442
|
readonly max?: number | undefined;
|
|
1443
|
+
readonly useGrouping?: boolean | undefined;
|
|
1380
1444
|
readonly accept?: string[] | undefined;
|
|
1381
1445
|
readonly maxSize?: number | undefined;
|
|
1382
1446
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -1410,15 +1474,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1410
1474
|
readonly dimensions?: number | undefined;
|
|
1411
1475
|
readonly trackHistory?: boolean | undefined;
|
|
1412
1476
|
readonly group?: string | undefined;
|
|
1413
|
-
readonly readonlyWhen?: string | {
|
|
1414
|
-
dialect: "cel" | "cron" | "template";
|
|
1415
|
-
source?: string | undefined;
|
|
1416
|
-
ast?: unknown;
|
|
1417
|
-
meta?: {
|
|
1418
|
-
rationale?: string | undefined;
|
|
1419
|
-
generatedBy?: string | undefined;
|
|
1420
|
-
} | undefined;
|
|
1421
|
-
} | undefined;
|
|
1422
1477
|
readonly requiredWhen?: string | {
|
|
1423
1478
|
dialect: "cel" | "cron" | "template";
|
|
1424
1479
|
source?: string | undefined;
|
|
@@ -1430,6 +1485,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1430
1485
|
} | undefined;
|
|
1431
1486
|
readonly conditionalRequired?: undefined;
|
|
1432
1487
|
readonly hidden?: boolean | undefined;
|
|
1488
|
+
readonly internal?: boolean | undefined;
|
|
1433
1489
|
readonly requiredPermissions?: string[] | undefined;
|
|
1434
1490
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1435
1491
|
readonly system?: boolean | undefined;
|
|
@@ -1475,6 +1531,24 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1475
1531
|
readonly storage?: {
|
|
1476
1532
|
notNull?: boolean | undefined;
|
|
1477
1533
|
} | undefined;
|
|
1534
|
+
readonly visibleWhen?: string | {
|
|
1535
|
+
dialect: "cel" | "cron" | "template";
|
|
1536
|
+
source?: string | undefined;
|
|
1537
|
+
ast?: unknown;
|
|
1538
|
+
meta?: {
|
|
1539
|
+
rationale?: string | undefined;
|
|
1540
|
+
generatedBy?: string | undefined;
|
|
1541
|
+
} | undefined;
|
|
1542
|
+
} | undefined;
|
|
1543
|
+
readonly readonlyWhen?: string | {
|
|
1544
|
+
dialect: "cel" | "cron" | "template";
|
|
1545
|
+
source?: string | undefined;
|
|
1546
|
+
ast?: unknown;
|
|
1547
|
+
meta?: {
|
|
1548
|
+
rationale?: string | undefined;
|
|
1549
|
+
generatedBy?: string | undefined;
|
|
1550
|
+
} | undefined;
|
|
1551
|
+
} | undefined;
|
|
1478
1552
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1479
1553
|
readonly _lockReason?: string | undefined;
|
|
1480
1554
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -1506,15 +1580,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1506
1580
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1507
1581
|
} | undefined;
|
|
1508
1582
|
readonly reference?: string | undefined;
|
|
1509
|
-
readonly visibleWhen?: string | {
|
|
1510
|
-
dialect: "cel" | "cron" | "template";
|
|
1511
|
-
source?: string | undefined;
|
|
1512
|
-
ast?: unknown;
|
|
1513
|
-
meta?: {
|
|
1514
|
-
rationale?: string | undefined;
|
|
1515
|
-
generatedBy?: string | undefined;
|
|
1516
|
-
} | undefined;
|
|
1517
|
-
} | undefined;
|
|
1518
1583
|
readonly scale?: number | undefined;
|
|
1519
1584
|
readonly searchable?: boolean | undefined;
|
|
1520
1585
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -1523,6 +1588,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1523
1588
|
readonly minLength?: number | undefined;
|
|
1524
1589
|
readonly min?: number | undefined;
|
|
1525
1590
|
readonly max?: number | undefined;
|
|
1591
|
+
readonly useGrouping?: boolean | undefined;
|
|
1526
1592
|
readonly accept?: string[] | undefined;
|
|
1527
1593
|
readonly maxSize?: number | undefined;
|
|
1528
1594
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -1556,15 +1622,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1556
1622
|
readonly dimensions?: number | undefined;
|
|
1557
1623
|
readonly trackHistory?: boolean | undefined;
|
|
1558
1624
|
readonly group?: string | undefined;
|
|
1559
|
-
readonly readonlyWhen?: string | {
|
|
1560
|
-
dialect: "cel" | "cron" | "template";
|
|
1561
|
-
source?: string | undefined;
|
|
1562
|
-
ast?: unknown;
|
|
1563
|
-
meta?: {
|
|
1564
|
-
rationale?: string | undefined;
|
|
1565
|
-
generatedBy?: string | undefined;
|
|
1566
|
-
} | undefined;
|
|
1567
|
-
} | undefined;
|
|
1568
1625
|
readonly requiredWhen?: string | {
|
|
1569
1626
|
dialect: "cel" | "cron" | "template";
|
|
1570
1627
|
source?: string | undefined;
|
|
@@ -1576,6 +1633,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1576
1633
|
} | undefined;
|
|
1577
1634
|
readonly conditionalRequired?: undefined;
|
|
1578
1635
|
readonly hidden?: boolean | undefined;
|
|
1636
|
+
readonly internal?: boolean | undefined;
|
|
1579
1637
|
readonly requiredPermissions?: string[] | undefined;
|
|
1580
1638
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1581
1639
|
readonly system?: boolean | undefined;
|
|
@@ -1613,6 +1671,24 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1613
1671
|
readonly storage?: {
|
|
1614
1672
|
notNull?: boolean | undefined;
|
|
1615
1673
|
} | undefined;
|
|
1674
|
+
readonly visibleWhen?: string | {
|
|
1675
|
+
dialect: "cel" | "cron" | "template";
|
|
1676
|
+
source?: string | undefined;
|
|
1677
|
+
ast?: unknown;
|
|
1678
|
+
meta?: {
|
|
1679
|
+
rationale?: string | undefined;
|
|
1680
|
+
generatedBy?: string | undefined;
|
|
1681
|
+
} | undefined;
|
|
1682
|
+
} | undefined;
|
|
1683
|
+
readonly readonlyWhen?: string | {
|
|
1684
|
+
dialect: "cel" | "cron" | "template";
|
|
1685
|
+
source?: string | undefined;
|
|
1686
|
+
ast?: unknown;
|
|
1687
|
+
meta?: {
|
|
1688
|
+
rationale?: string | undefined;
|
|
1689
|
+
generatedBy?: string | undefined;
|
|
1690
|
+
} | undefined;
|
|
1691
|
+
} | undefined;
|
|
1616
1692
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1617
1693
|
readonly _lockReason?: string | undefined;
|
|
1618
1694
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -1644,15 +1720,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1644
1720
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1645
1721
|
} | undefined;
|
|
1646
1722
|
readonly reference?: string | undefined;
|
|
1647
|
-
readonly visibleWhen?: string | {
|
|
1648
|
-
dialect: "cel" | "cron" | "template";
|
|
1649
|
-
source?: string | undefined;
|
|
1650
|
-
ast?: unknown;
|
|
1651
|
-
meta?: {
|
|
1652
|
-
rationale?: string | undefined;
|
|
1653
|
-
generatedBy?: string | undefined;
|
|
1654
|
-
} | undefined;
|
|
1655
|
-
} | undefined;
|
|
1656
1723
|
readonly scale?: number | undefined;
|
|
1657
1724
|
readonly searchable?: boolean | undefined;
|
|
1658
1725
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -1661,6 +1728,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1661
1728
|
readonly minLength?: number | undefined;
|
|
1662
1729
|
readonly min?: number | undefined;
|
|
1663
1730
|
readonly max?: number | undefined;
|
|
1731
|
+
readonly useGrouping?: boolean | undefined;
|
|
1664
1732
|
readonly accept?: string[] | undefined;
|
|
1665
1733
|
readonly maxSize?: number | undefined;
|
|
1666
1734
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -1694,16 +1762,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1694
1762
|
readonly dimensions?: number | undefined;
|
|
1695
1763
|
readonly trackHistory?: boolean | undefined;
|
|
1696
1764
|
readonly group?: string | undefined;
|
|
1697
|
-
readonly
|
|
1698
|
-
dialect: "cel" | "cron" | "template";
|
|
1699
|
-
source?: string | undefined;
|
|
1700
|
-
ast?: unknown;
|
|
1701
|
-
meta?: {
|
|
1702
|
-
rationale?: string | undefined;
|
|
1703
|
-
generatedBy?: string | undefined;
|
|
1704
|
-
} | undefined;
|
|
1705
|
-
} | undefined;
|
|
1706
|
-
readonly requiredWhen?: string | {
|
|
1765
|
+
readonly requiredWhen?: string | {
|
|
1707
1766
|
dialect: "cel" | "cron" | "template";
|
|
1708
1767
|
source?: string | undefined;
|
|
1709
1768
|
ast?: unknown;
|
|
@@ -1714,6 +1773,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1714
1773
|
} | undefined;
|
|
1715
1774
|
readonly conditionalRequired?: undefined;
|
|
1716
1775
|
readonly hidden?: boolean | undefined;
|
|
1776
|
+
readonly internal?: boolean | undefined;
|
|
1717
1777
|
readonly requiredPermissions?: string[] | undefined;
|
|
1718
1778
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1719
1779
|
readonly system?: boolean | undefined;
|
|
@@ -1751,6 +1811,24 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1751
1811
|
readonly storage?: {
|
|
1752
1812
|
notNull?: boolean | undefined;
|
|
1753
1813
|
} | undefined;
|
|
1814
|
+
readonly visibleWhen?: string | {
|
|
1815
|
+
dialect: "cel" | "cron" | "template";
|
|
1816
|
+
source?: string | undefined;
|
|
1817
|
+
ast?: unknown;
|
|
1818
|
+
meta?: {
|
|
1819
|
+
rationale?: string | undefined;
|
|
1820
|
+
generatedBy?: string | undefined;
|
|
1821
|
+
} | undefined;
|
|
1822
|
+
} | undefined;
|
|
1823
|
+
readonly readonlyWhen?: string | {
|
|
1824
|
+
dialect: "cel" | "cron" | "template";
|
|
1825
|
+
source?: string | undefined;
|
|
1826
|
+
ast?: unknown;
|
|
1827
|
+
meta?: {
|
|
1828
|
+
rationale?: string | undefined;
|
|
1829
|
+
generatedBy?: string | undefined;
|
|
1830
|
+
} | undefined;
|
|
1831
|
+
} | undefined;
|
|
1754
1832
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1755
1833
|
readonly _lockReason?: string | undefined;
|
|
1756
1834
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -1782,15 +1860,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1782
1860
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1783
1861
|
} | undefined;
|
|
1784
1862
|
readonly reference?: string | undefined;
|
|
1785
|
-
readonly visibleWhen?: string | {
|
|
1786
|
-
dialect: "cel" | "cron" | "template";
|
|
1787
|
-
source?: string | undefined;
|
|
1788
|
-
ast?: unknown;
|
|
1789
|
-
meta?: {
|
|
1790
|
-
rationale?: string | undefined;
|
|
1791
|
-
generatedBy?: string | undefined;
|
|
1792
|
-
} | undefined;
|
|
1793
|
-
} | undefined;
|
|
1794
1863
|
readonly scale?: number | undefined;
|
|
1795
1864
|
readonly searchable?: boolean | undefined;
|
|
1796
1865
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -1799,6 +1868,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1799
1868
|
readonly minLength?: number | undefined;
|
|
1800
1869
|
readonly min?: number | undefined;
|
|
1801
1870
|
readonly max?: number | undefined;
|
|
1871
|
+
readonly useGrouping?: boolean | undefined;
|
|
1802
1872
|
readonly accept?: string[] | undefined;
|
|
1803
1873
|
readonly maxSize?: number | undefined;
|
|
1804
1874
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -1832,15 +1902,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1832
1902
|
readonly dimensions?: number | undefined;
|
|
1833
1903
|
readonly trackHistory?: boolean | undefined;
|
|
1834
1904
|
readonly group?: string | undefined;
|
|
1835
|
-
readonly readonlyWhen?: string | {
|
|
1836
|
-
dialect: "cel" | "cron" | "template";
|
|
1837
|
-
source?: string | undefined;
|
|
1838
|
-
ast?: unknown;
|
|
1839
|
-
meta?: {
|
|
1840
|
-
rationale?: string | undefined;
|
|
1841
|
-
generatedBy?: string | undefined;
|
|
1842
|
-
} | undefined;
|
|
1843
|
-
} | undefined;
|
|
1844
1905
|
readonly requiredWhen?: string | {
|
|
1845
1906
|
dialect: "cel" | "cron" | "template";
|
|
1846
1907
|
source?: string | undefined;
|
|
@@ -1852,6 +1913,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1852
1913
|
} | undefined;
|
|
1853
1914
|
readonly conditionalRequired?: undefined;
|
|
1854
1915
|
readonly hidden?: boolean | undefined;
|
|
1916
|
+
readonly internal?: boolean | undefined;
|
|
1855
1917
|
readonly requiredPermissions?: string[] | undefined;
|
|
1856
1918
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1857
1919
|
readonly system?: boolean | undefined;
|
|
@@ -1889,6 +1951,24 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1889
1951
|
readonly storage?: {
|
|
1890
1952
|
notNull?: boolean | undefined;
|
|
1891
1953
|
} | undefined;
|
|
1954
|
+
readonly visibleWhen?: string | {
|
|
1955
|
+
dialect: "cel" | "cron" | "template";
|
|
1956
|
+
source?: string | undefined;
|
|
1957
|
+
ast?: unknown;
|
|
1958
|
+
meta?: {
|
|
1959
|
+
rationale?: string | undefined;
|
|
1960
|
+
generatedBy?: string | undefined;
|
|
1961
|
+
} | undefined;
|
|
1962
|
+
} | undefined;
|
|
1963
|
+
readonly readonlyWhen?: string | {
|
|
1964
|
+
dialect: "cel" | "cron" | "template";
|
|
1965
|
+
source?: string | undefined;
|
|
1966
|
+
ast?: unknown;
|
|
1967
|
+
meta?: {
|
|
1968
|
+
rationale?: string | undefined;
|
|
1969
|
+
generatedBy?: string | undefined;
|
|
1970
|
+
} | undefined;
|
|
1971
|
+
} | undefined;
|
|
1892
1972
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1893
1973
|
readonly _lockReason?: string | undefined;
|
|
1894
1974
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -1920,15 +2000,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1920
2000
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1921
2001
|
} | undefined;
|
|
1922
2002
|
readonly reference?: string | undefined;
|
|
1923
|
-
readonly visibleWhen?: string | {
|
|
1924
|
-
dialect: "cel" | "cron" | "template";
|
|
1925
|
-
source?: string | undefined;
|
|
1926
|
-
ast?: unknown;
|
|
1927
|
-
meta?: {
|
|
1928
|
-
rationale?: string | undefined;
|
|
1929
|
-
generatedBy?: string | undefined;
|
|
1930
|
-
} | undefined;
|
|
1931
|
-
} | undefined;
|
|
1932
2003
|
readonly scale?: number | undefined;
|
|
1933
2004
|
readonly searchable?: boolean | undefined;
|
|
1934
2005
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -1937,6 +2008,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1937
2008
|
readonly minLength?: number | undefined;
|
|
1938
2009
|
readonly min?: number | undefined;
|
|
1939
2010
|
readonly max?: number | undefined;
|
|
2011
|
+
readonly useGrouping?: boolean | undefined;
|
|
1940
2012
|
readonly accept?: string[] | undefined;
|
|
1941
2013
|
readonly maxSize?: number | undefined;
|
|
1942
2014
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -1970,15 +2042,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1970
2042
|
readonly dimensions?: number | undefined;
|
|
1971
2043
|
readonly trackHistory?: boolean | undefined;
|
|
1972
2044
|
readonly group?: string | undefined;
|
|
1973
|
-
readonly readonlyWhen?: string | {
|
|
1974
|
-
dialect: "cel" | "cron" | "template";
|
|
1975
|
-
source?: string | undefined;
|
|
1976
|
-
ast?: unknown;
|
|
1977
|
-
meta?: {
|
|
1978
|
-
rationale?: string | undefined;
|
|
1979
|
-
generatedBy?: string | undefined;
|
|
1980
|
-
} | undefined;
|
|
1981
|
-
} | undefined;
|
|
1982
2045
|
readonly requiredWhen?: string | {
|
|
1983
2046
|
dialect: "cel" | "cron" | "template";
|
|
1984
2047
|
source?: string | undefined;
|
|
@@ -1990,6 +2053,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1990
2053
|
} | undefined;
|
|
1991
2054
|
readonly conditionalRequired?: undefined;
|
|
1992
2055
|
readonly hidden?: boolean | undefined;
|
|
2056
|
+
readonly internal?: boolean | undefined;
|
|
1993
2057
|
readonly requiredPermissions?: string[] | undefined;
|
|
1994
2058
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1995
2059
|
readonly system?: boolean | undefined;
|
|
@@ -2027,6 +2091,24 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2027
2091
|
readonly storage?: {
|
|
2028
2092
|
notNull?: boolean | undefined;
|
|
2029
2093
|
} | undefined;
|
|
2094
|
+
readonly visibleWhen?: string | {
|
|
2095
|
+
dialect: "cel" | "cron" | "template";
|
|
2096
|
+
source?: string | undefined;
|
|
2097
|
+
ast?: unknown;
|
|
2098
|
+
meta?: {
|
|
2099
|
+
rationale?: string | undefined;
|
|
2100
|
+
generatedBy?: string | undefined;
|
|
2101
|
+
} | undefined;
|
|
2102
|
+
} | undefined;
|
|
2103
|
+
readonly readonlyWhen?: string | {
|
|
2104
|
+
dialect: "cel" | "cron" | "template";
|
|
2105
|
+
source?: string | undefined;
|
|
2106
|
+
ast?: unknown;
|
|
2107
|
+
meta?: {
|
|
2108
|
+
rationale?: string | undefined;
|
|
2109
|
+
generatedBy?: string | undefined;
|
|
2110
|
+
} | undefined;
|
|
2111
|
+
} | undefined;
|
|
2030
2112
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2031
2113
|
readonly _lockReason?: string | undefined;
|
|
2032
2114
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -2058,15 +2140,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2058
2140
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2059
2141
|
} | undefined;
|
|
2060
2142
|
readonly reference?: string | undefined;
|
|
2061
|
-
readonly visibleWhen?: string | {
|
|
2062
|
-
dialect: "cel" | "cron" | "template";
|
|
2063
|
-
source?: string | undefined;
|
|
2064
|
-
ast?: unknown;
|
|
2065
|
-
meta?: {
|
|
2066
|
-
rationale?: string | undefined;
|
|
2067
|
-
generatedBy?: string | undefined;
|
|
2068
|
-
} | undefined;
|
|
2069
|
-
} | undefined;
|
|
2070
2143
|
readonly scale?: number | undefined;
|
|
2071
2144
|
readonly searchable?: boolean | undefined;
|
|
2072
2145
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -2075,6 +2148,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2075
2148
|
readonly minLength?: number | undefined;
|
|
2076
2149
|
readonly min?: number | undefined;
|
|
2077
2150
|
readonly max?: number | undefined;
|
|
2151
|
+
readonly useGrouping?: boolean | undefined;
|
|
2078
2152
|
readonly accept?: string[] | undefined;
|
|
2079
2153
|
readonly maxSize?: number | undefined;
|
|
2080
2154
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -2108,15 +2182,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2108
2182
|
readonly dimensions?: number | undefined;
|
|
2109
2183
|
readonly trackHistory?: boolean | undefined;
|
|
2110
2184
|
readonly group?: string | undefined;
|
|
2111
|
-
readonly readonlyWhen?: string | {
|
|
2112
|
-
dialect: "cel" | "cron" | "template";
|
|
2113
|
-
source?: string | undefined;
|
|
2114
|
-
ast?: unknown;
|
|
2115
|
-
meta?: {
|
|
2116
|
-
rationale?: string | undefined;
|
|
2117
|
-
generatedBy?: string | undefined;
|
|
2118
|
-
} | undefined;
|
|
2119
|
-
} | undefined;
|
|
2120
2185
|
readonly requiredWhen?: string | {
|
|
2121
2186
|
dialect: "cel" | "cron" | "template";
|
|
2122
2187
|
source?: string | undefined;
|
|
@@ -2128,6 +2193,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2128
2193
|
} | undefined;
|
|
2129
2194
|
readonly conditionalRequired?: undefined;
|
|
2130
2195
|
readonly hidden?: boolean | undefined;
|
|
2196
|
+
readonly internal?: boolean | undefined;
|
|
2131
2197
|
readonly requiredPermissions?: string[] | undefined;
|
|
2132
2198
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
2133
2199
|
readonly system?: boolean | undefined;
|
|
@@ -2165,6 +2231,24 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2165
2231
|
readonly storage?: {
|
|
2166
2232
|
notNull?: boolean | undefined;
|
|
2167
2233
|
} | undefined;
|
|
2234
|
+
readonly visibleWhen?: string | {
|
|
2235
|
+
dialect: "cel" | "cron" | "template";
|
|
2236
|
+
source?: string | undefined;
|
|
2237
|
+
ast?: unknown;
|
|
2238
|
+
meta?: {
|
|
2239
|
+
rationale?: string | undefined;
|
|
2240
|
+
generatedBy?: string | undefined;
|
|
2241
|
+
} | undefined;
|
|
2242
|
+
} | undefined;
|
|
2243
|
+
readonly readonlyWhen?: string | {
|
|
2244
|
+
dialect: "cel" | "cron" | "template";
|
|
2245
|
+
source?: string | undefined;
|
|
2246
|
+
ast?: unknown;
|
|
2247
|
+
meta?: {
|
|
2248
|
+
rationale?: string | undefined;
|
|
2249
|
+
generatedBy?: string | undefined;
|
|
2250
|
+
} | undefined;
|
|
2251
|
+
} | undefined;
|
|
2168
2252
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2169
2253
|
readonly _lockReason?: string | undefined;
|
|
2170
2254
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -2196,15 +2280,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2196
2280
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2197
2281
|
} | undefined;
|
|
2198
2282
|
readonly reference?: string | undefined;
|
|
2199
|
-
readonly visibleWhen?: string | {
|
|
2200
|
-
dialect: "cel" | "cron" | "template";
|
|
2201
|
-
source?: string | undefined;
|
|
2202
|
-
ast?: unknown;
|
|
2203
|
-
meta?: {
|
|
2204
|
-
rationale?: string | undefined;
|
|
2205
|
-
generatedBy?: string | undefined;
|
|
2206
|
-
} | undefined;
|
|
2207
|
-
} | undefined;
|
|
2208
2283
|
readonly scale?: number | undefined;
|
|
2209
2284
|
readonly searchable?: boolean | undefined;
|
|
2210
2285
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -2213,6 +2288,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2213
2288
|
readonly minLength?: number | undefined;
|
|
2214
2289
|
readonly min?: number | undefined;
|
|
2215
2290
|
readonly max?: number | undefined;
|
|
2291
|
+
readonly useGrouping?: boolean | undefined;
|
|
2216
2292
|
readonly accept?: string[] | undefined;
|
|
2217
2293
|
readonly maxSize?: number | undefined;
|
|
2218
2294
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -2246,15 +2322,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2246
2322
|
readonly dimensions?: number | undefined;
|
|
2247
2323
|
readonly trackHistory?: boolean | undefined;
|
|
2248
2324
|
readonly group?: string | undefined;
|
|
2249
|
-
readonly readonlyWhen?: string | {
|
|
2250
|
-
dialect: "cel" | "cron" | "template";
|
|
2251
|
-
source?: string | undefined;
|
|
2252
|
-
ast?: unknown;
|
|
2253
|
-
meta?: {
|
|
2254
|
-
rationale?: string | undefined;
|
|
2255
|
-
generatedBy?: string | undefined;
|
|
2256
|
-
} | undefined;
|
|
2257
|
-
} | undefined;
|
|
2258
2325
|
readonly requiredWhen?: string | {
|
|
2259
2326
|
dialect: "cel" | "cron" | "template";
|
|
2260
2327
|
source?: string | undefined;
|
|
@@ -2266,6 +2333,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2266
2333
|
} | undefined;
|
|
2267
2334
|
readonly conditionalRequired?: undefined;
|
|
2268
2335
|
readonly hidden?: boolean | undefined;
|
|
2336
|
+
readonly internal?: boolean | undefined;
|
|
2269
2337
|
readonly requiredPermissions?: string[] | undefined;
|
|
2270
2338
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
2271
2339
|
readonly system?: boolean | undefined;
|
|
@@ -2303,6 +2371,24 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2303
2371
|
readonly storage?: {
|
|
2304
2372
|
notNull?: boolean | undefined;
|
|
2305
2373
|
} | undefined;
|
|
2374
|
+
readonly visibleWhen?: string | {
|
|
2375
|
+
dialect: "cel" | "cron" | "template";
|
|
2376
|
+
source?: string | undefined;
|
|
2377
|
+
ast?: unknown;
|
|
2378
|
+
meta?: {
|
|
2379
|
+
rationale?: string | undefined;
|
|
2380
|
+
generatedBy?: string | undefined;
|
|
2381
|
+
} | undefined;
|
|
2382
|
+
} | undefined;
|
|
2383
|
+
readonly readonlyWhen?: string | {
|
|
2384
|
+
dialect: "cel" | "cron" | "template";
|
|
2385
|
+
source?: string | undefined;
|
|
2386
|
+
ast?: unknown;
|
|
2387
|
+
meta?: {
|
|
2388
|
+
rationale?: string | undefined;
|
|
2389
|
+
generatedBy?: string | undefined;
|
|
2390
|
+
} | undefined;
|
|
2391
|
+
} | undefined;
|
|
2306
2392
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2307
2393
|
readonly _lockReason?: string | undefined;
|
|
2308
2394
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -2334,15 +2420,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2334
2420
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2335
2421
|
} | undefined;
|
|
2336
2422
|
readonly reference?: string | undefined;
|
|
2337
|
-
readonly visibleWhen?: string | {
|
|
2338
|
-
dialect: "cel" | "cron" | "template";
|
|
2339
|
-
source?: string | undefined;
|
|
2340
|
-
ast?: unknown;
|
|
2341
|
-
meta?: {
|
|
2342
|
-
rationale?: string | undefined;
|
|
2343
|
-
generatedBy?: string | undefined;
|
|
2344
|
-
} | undefined;
|
|
2345
|
-
} | undefined;
|
|
2346
2423
|
readonly scale?: number | undefined;
|
|
2347
2424
|
readonly searchable?: boolean | undefined;
|
|
2348
2425
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -2351,6 +2428,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2351
2428
|
readonly minLength?: number | undefined;
|
|
2352
2429
|
readonly min?: number | undefined;
|
|
2353
2430
|
readonly max?: number | undefined;
|
|
2431
|
+
readonly useGrouping?: boolean | undefined;
|
|
2354
2432
|
readonly accept?: string[] | undefined;
|
|
2355
2433
|
readonly maxSize?: number | undefined;
|
|
2356
2434
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -2384,15 +2462,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2384
2462
|
readonly dimensions?: number | undefined;
|
|
2385
2463
|
readonly trackHistory?: boolean | undefined;
|
|
2386
2464
|
readonly group?: string | undefined;
|
|
2387
|
-
readonly readonlyWhen?: string | {
|
|
2388
|
-
dialect: "cel" | "cron" | "template";
|
|
2389
|
-
source?: string | undefined;
|
|
2390
|
-
ast?: unknown;
|
|
2391
|
-
meta?: {
|
|
2392
|
-
rationale?: string | undefined;
|
|
2393
|
-
generatedBy?: string | undefined;
|
|
2394
|
-
} | undefined;
|
|
2395
|
-
} | undefined;
|
|
2396
2465
|
readonly requiredWhen?: string | {
|
|
2397
2466
|
dialect: "cel" | "cron" | "template";
|
|
2398
2467
|
source?: string | undefined;
|
|
@@ -2404,6 +2473,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2404
2473
|
} | undefined;
|
|
2405
2474
|
readonly conditionalRequired?: undefined;
|
|
2406
2475
|
readonly hidden?: boolean | undefined;
|
|
2476
|
+
readonly internal?: boolean | undefined;
|
|
2407
2477
|
readonly requiredPermissions?: string[] | undefined;
|
|
2408
2478
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
2409
2479
|
readonly system?: boolean | undefined;
|
|
@@ -2441,6 +2511,24 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2441
2511
|
readonly storage?: {
|
|
2442
2512
|
notNull?: boolean | undefined;
|
|
2443
2513
|
} | undefined;
|
|
2514
|
+
readonly visibleWhen?: string | {
|
|
2515
|
+
dialect: "cel" | "cron" | "template";
|
|
2516
|
+
source?: string | undefined;
|
|
2517
|
+
ast?: unknown;
|
|
2518
|
+
meta?: {
|
|
2519
|
+
rationale?: string | undefined;
|
|
2520
|
+
generatedBy?: string | undefined;
|
|
2521
|
+
} | undefined;
|
|
2522
|
+
} | undefined;
|
|
2523
|
+
readonly readonlyWhen?: string | {
|
|
2524
|
+
dialect: "cel" | "cron" | "template";
|
|
2525
|
+
source?: string | undefined;
|
|
2526
|
+
ast?: unknown;
|
|
2527
|
+
meta?: {
|
|
2528
|
+
rationale?: string | undefined;
|
|
2529
|
+
generatedBy?: string | undefined;
|
|
2530
|
+
} | undefined;
|
|
2531
|
+
} | undefined;
|
|
2444
2532
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2445
2533
|
readonly _lockReason?: string | undefined;
|
|
2446
2534
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -2472,15 +2560,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2472
2560
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2473
2561
|
} | undefined;
|
|
2474
2562
|
readonly reference?: string | undefined;
|
|
2475
|
-
readonly visibleWhen?: string | {
|
|
2476
|
-
dialect: "cel" | "cron" | "template";
|
|
2477
|
-
source?: string | undefined;
|
|
2478
|
-
ast?: unknown;
|
|
2479
|
-
meta?: {
|
|
2480
|
-
rationale?: string | undefined;
|
|
2481
|
-
generatedBy?: string | undefined;
|
|
2482
|
-
} | undefined;
|
|
2483
|
-
} | undefined;
|
|
2484
2563
|
readonly scale?: number | undefined;
|
|
2485
2564
|
readonly searchable?: boolean | undefined;
|
|
2486
2565
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -2489,6 +2568,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2489
2568
|
readonly minLength?: number | undefined;
|
|
2490
2569
|
readonly min?: number | undefined;
|
|
2491
2570
|
readonly max?: number | undefined;
|
|
2571
|
+
readonly useGrouping?: boolean | undefined;
|
|
2492
2572
|
readonly accept?: string[] | undefined;
|
|
2493
2573
|
readonly maxSize?: number | undefined;
|
|
2494
2574
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -2522,15 +2602,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2522
2602
|
readonly dimensions?: number | undefined;
|
|
2523
2603
|
readonly trackHistory?: boolean | undefined;
|
|
2524
2604
|
readonly group?: string | undefined;
|
|
2525
|
-
readonly readonlyWhen?: string | {
|
|
2526
|
-
dialect: "cel" | "cron" | "template";
|
|
2527
|
-
source?: string | undefined;
|
|
2528
|
-
ast?: unknown;
|
|
2529
|
-
meta?: {
|
|
2530
|
-
rationale?: string | undefined;
|
|
2531
|
-
generatedBy?: string | undefined;
|
|
2532
|
-
} | undefined;
|
|
2533
|
-
} | undefined;
|
|
2534
2605
|
readonly requiredWhen?: string | {
|
|
2535
2606
|
dialect: "cel" | "cron" | "template";
|
|
2536
2607
|
source?: string | undefined;
|
|
@@ -2542,6 +2613,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2542
2613
|
} | undefined;
|
|
2543
2614
|
readonly conditionalRequired?: undefined;
|
|
2544
2615
|
readonly hidden?: boolean | undefined;
|
|
2616
|
+
readonly internal?: boolean | undefined;
|
|
2545
2617
|
readonly requiredPermissions?: string[] | undefined;
|
|
2546
2618
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
2547
2619
|
readonly system?: boolean | undefined;
|
|
@@ -2579,6 +2651,24 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2579
2651
|
readonly storage?: {
|
|
2580
2652
|
notNull?: boolean | undefined;
|
|
2581
2653
|
} | undefined;
|
|
2654
|
+
readonly visibleWhen?: string | {
|
|
2655
|
+
dialect: "cel" | "cron" | "template";
|
|
2656
|
+
source?: string | undefined;
|
|
2657
|
+
ast?: unknown;
|
|
2658
|
+
meta?: {
|
|
2659
|
+
rationale?: string | undefined;
|
|
2660
|
+
generatedBy?: string | undefined;
|
|
2661
|
+
} | undefined;
|
|
2662
|
+
} | undefined;
|
|
2663
|
+
readonly readonlyWhen?: string | {
|
|
2664
|
+
dialect: "cel" | "cron" | "template";
|
|
2665
|
+
source?: string | undefined;
|
|
2666
|
+
ast?: unknown;
|
|
2667
|
+
meta?: {
|
|
2668
|
+
rationale?: string | undefined;
|
|
2669
|
+
generatedBy?: string | undefined;
|
|
2670
|
+
} | undefined;
|
|
2671
|
+
} | undefined;
|
|
2582
2672
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2583
2673
|
readonly _lockReason?: string | undefined;
|
|
2584
2674
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -2610,15 +2700,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2610
2700
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2611
2701
|
} | undefined;
|
|
2612
2702
|
readonly reference?: string | undefined;
|
|
2613
|
-
readonly visibleWhen?: string | {
|
|
2614
|
-
dialect: "cel" | "cron" | "template";
|
|
2615
|
-
source?: string | undefined;
|
|
2616
|
-
ast?: unknown;
|
|
2617
|
-
meta?: {
|
|
2618
|
-
rationale?: string | undefined;
|
|
2619
|
-
generatedBy?: string | undefined;
|
|
2620
|
-
} | undefined;
|
|
2621
|
-
} | undefined;
|
|
2622
2703
|
readonly scale?: number | undefined;
|
|
2623
2704
|
readonly searchable?: boolean | undefined;
|
|
2624
2705
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -2627,6 +2708,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2627
2708
|
readonly minLength?: number | undefined;
|
|
2628
2709
|
readonly min?: number | undefined;
|
|
2629
2710
|
readonly max?: number | undefined;
|
|
2711
|
+
readonly useGrouping?: boolean | undefined;
|
|
2630
2712
|
readonly accept?: string[] | undefined;
|
|
2631
2713
|
readonly maxSize?: number | undefined;
|
|
2632
2714
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -2660,15 +2742,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2660
2742
|
readonly dimensions?: number | undefined;
|
|
2661
2743
|
readonly trackHistory?: boolean | undefined;
|
|
2662
2744
|
readonly group?: string | undefined;
|
|
2663
|
-
readonly readonlyWhen?: string | {
|
|
2664
|
-
dialect: "cel" | "cron" | "template";
|
|
2665
|
-
source?: string | undefined;
|
|
2666
|
-
ast?: unknown;
|
|
2667
|
-
meta?: {
|
|
2668
|
-
rationale?: string | undefined;
|
|
2669
|
-
generatedBy?: string | undefined;
|
|
2670
|
-
} | undefined;
|
|
2671
|
-
} | undefined;
|
|
2672
2745
|
readonly requiredWhen?: string | {
|
|
2673
2746
|
dialect: "cel" | "cron" | "template";
|
|
2674
2747
|
source?: string | undefined;
|
|
@@ -2680,6 +2753,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2680
2753
|
} | undefined;
|
|
2681
2754
|
readonly conditionalRequired?: undefined;
|
|
2682
2755
|
readonly hidden?: boolean | undefined;
|
|
2756
|
+
readonly internal?: boolean | undefined;
|
|
2683
2757
|
readonly requiredPermissions?: string[] | undefined;
|
|
2684
2758
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
2685
2759
|
readonly system?: boolean | undefined;
|
|
@@ -2717,6 +2791,24 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2717
2791
|
readonly storage?: {
|
|
2718
2792
|
notNull?: boolean | undefined;
|
|
2719
2793
|
} | undefined;
|
|
2794
|
+
readonly visibleWhen?: string | {
|
|
2795
|
+
dialect: "cel" | "cron" | "template";
|
|
2796
|
+
source?: string | undefined;
|
|
2797
|
+
ast?: unknown;
|
|
2798
|
+
meta?: {
|
|
2799
|
+
rationale?: string | undefined;
|
|
2800
|
+
generatedBy?: string | undefined;
|
|
2801
|
+
} | undefined;
|
|
2802
|
+
} | undefined;
|
|
2803
|
+
readonly readonlyWhen?: string | {
|
|
2804
|
+
dialect: "cel" | "cron" | "template";
|
|
2805
|
+
source?: string | undefined;
|
|
2806
|
+
ast?: unknown;
|
|
2807
|
+
meta?: {
|
|
2808
|
+
rationale?: string | undefined;
|
|
2809
|
+
generatedBy?: string | undefined;
|
|
2810
|
+
} | undefined;
|
|
2811
|
+
} | undefined;
|
|
2720
2812
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2721
2813
|
readonly _lockReason?: string | undefined;
|
|
2722
2814
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -2748,15 +2840,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2748
2840
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2749
2841
|
} | undefined;
|
|
2750
2842
|
readonly reference?: string | undefined;
|
|
2751
|
-
readonly visibleWhen?: string | {
|
|
2752
|
-
dialect: "cel" | "cron" | "template";
|
|
2753
|
-
source?: string | undefined;
|
|
2754
|
-
ast?: unknown;
|
|
2755
|
-
meta?: {
|
|
2756
|
-
rationale?: string | undefined;
|
|
2757
|
-
generatedBy?: string | undefined;
|
|
2758
|
-
} | undefined;
|
|
2759
|
-
} | undefined;
|
|
2760
2843
|
readonly scale?: number | undefined;
|
|
2761
2844
|
readonly searchable?: boolean | undefined;
|
|
2762
2845
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -2765,6 +2848,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2765
2848
|
readonly minLength?: number | undefined;
|
|
2766
2849
|
readonly min?: number | undefined;
|
|
2767
2850
|
readonly max?: number | undefined;
|
|
2851
|
+
readonly useGrouping?: boolean | undefined;
|
|
2768
2852
|
readonly accept?: string[] | undefined;
|
|
2769
2853
|
readonly maxSize?: number | undefined;
|
|
2770
2854
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -2798,15 +2882,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2798
2882
|
readonly dimensions?: number | undefined;
|
|
2799
2883
|
readonly trackHistory?: boolean | undefined;
|
|
2800
2884
|
readonly group?: string | undefined;
|
|
2801
|
-
readonly readonlyWhen?: string | {
|
|
2802
|
-
dialect: "cel" | "cron" | "template";
|
|
2803
|
-
source?: string | undefined;
|
|
2804
|
-
ast?: unknown;
|
|
2805
|
-
meta?: {
|
|
2806
|
-
rationale?: string | undefined;
|
|
2807
|
-
generatedBy?: string | undefined;
|
|
2808
|
-
} | undefined;
|
|
2809
|
-
} | undefined;
|
|
2810
2885
|
readonly requiredWhen?: string | {
|
|
2811
2886
|
dialect: "cel" | "cron" | "template";
|
|
2812
2887
|
source?: string | undefined;
|
|
@@ -2818,6 +2893,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2818
2893
|
} | undefined;
|
|
2819
2894
|
readonly conditionalRequired?: undefined;
|
|
2820
2895
|
readonly hidden?: boolean | undefined;
|
|
2896
|
+
readonly internal?: boolean | undefined;
|
|
2821
2897
|
readonly requiredPermissions?: string[] | undefined;
|
|
2822
2898
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
2823
2899
|
readonly system?: boolean | undefined;
|
|
@@ -2855,6 +2931,24 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2855
2931
|
readonly storage?: {
|
|
2856
2932
|
notNull?: boolean | undefined;
|
|
2857
2933
|
} | undefined;
|
|
2934
|
+
readonly visibleWhen?: string | {
|
|
2935
|
+
dialect: "cel" | "cron" | "template";
|
|
2936
|
+
source?: string | undefined;
|
|
2937
|
+
ast?: unknown;
|
|
2938
|
+
meta?: {
|
|
2939
|
+
rationale?: string | undefined;
|
|
2940
|
+
generatedBy?: string | undefined;
|
|
2941
|
+
} | undefined;
|
|
2942
|
+
} | undefined;
|
|
2943
|
+
readonly readonlyWhen?: string | {
|
|
2944
|
+
dialect: "cel" | "cron" | "template";
|
|
2945
|
+
source?: string | undefined;
|
|
2946
|
+
ast?: unknown;
|
|
2947
|
+
meta?: {
|
|
2948
|
+
rationale?: string | undefined;
|
|
2949
|
+
generatedBy?: string | undefined;
|
|
2950
|
+
} | undefined;
|
|
2951
|
+
} | undefined;
|
|
2858
2952
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2859
2953
|
readonly _lockReason?: string | undefined;
|
|
2860
2954
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -2886,15 +2980,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2886
2980
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2887
2981
|
} | undefined;
|
|
2888
2982
|
readonly reference?: string | undefined;
|
|
2889
|
-
readonly visibleWhen?: string | {
|
|
2890
|
-
dialect: "cel" | "cron" | "template";
|
|
2891
|
-
source?: string | undefined;
|
|
2892
|
-
ast?: unknown;
|
|
2893
|
-
meta?: {
|
|
2894
|
-
rationale?: string | undefined;
|
|
2895
|
-
generatedBy?: string | undefined;
|
|
2896
|
-
} | undefined;
|
|
2897
|
-
} | undefined;
|
|
2898
2983
|
readonly scale?: number | undefined;
|
|
2899
2984
|
readonly searchable?: boolean | undefined;
|
|
2900
2985
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -2903,6 +2988,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2903
2988
|
readonly minLength?: number | undefined;
|
|
2904
2989
|
readonly min?: number | undefined;
|
|
2905
2990
|
readonly max?: number | undefined;
|
|
2991
|
+
readonly useGrouping?: boolean | undefined;
|
|
2906
2992
|
readonly accept?: string[] | undefined;
|
|
2907
2993
|
readonly maxSize?: number | undefined;
|
|
2908
2994
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -2936,15 +3022,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2936
3022
|
readonly dimensions?: number | undefined;
|
|
2937
3023
|
readonly trackHistory?: boolean | undefined;
|
|
2938
3024
|
readonly group?: string | undefined;
|
|
2939
|
-
readonly readonlyWhen?: string | {
|
|
2940
|
-
dialect: "cel" | "cron" | "template";
|
|
2941
|
-
source?: string | undefined;
|
|
2942
|
-
ast?: unknown;
|
|
2943
|
-
meta?: {
|
|
2944
|
-
rationale?: string | undefined;
|
|
2945
|
-
generatedBy?: string | undefined;
|
|
2946
|
-
} | undefined;
|
|
2947
|
-
} | undefined;
|
|
2948
3025
|
readonly requiredWhen?: string | {
|
|
2949
3026
|
dialect: "cel" | "cron" | "template";
|
|
2950
3027
|
source?: string | undefined;
|
|
@@ -2956,6 +3033,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2956
3033
|
} | undefined;
|
|
2957
3034
|
readonly conditionalRequired?: undefined;
|
|
2958
3035
|
readonly hidden?: boolean | undefined;
|
|
3036
|
+
readonly internal?: boolean | undefined;
|
|
2959
3037
|
readonly requiredPermissions?: string[] | undefined;
|
|
2960
3038
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
2961
3039
|
readonly system?: boolean | undefined;
|
|
@@ -2993,6 +3071,24 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2993
3071
|
readonly storage?: {
|
|
2994
3072
|
notNull?: boolean | undefined;
|
|
2995
3073
|
} | undefined;
|
|
3074
|
+
readonly visibleWhen?: string | {
|
|
3075
|
+
dialect: "cel" | "cron" | "template";
|
|
3076
|
+
source?: string | undefined;
|
|
3077
|
+
ast?: unknown;
|
|
3078
|
+
meta?: {
|
|
3079
|
+
rationale?: string | undefined;
|
|
3080
|
+
generatedBy?: string | undefined;
|
|
3081
|
+
} | undefined;
|
|
3082
|
+
} | undefined;
|
|
3083
|
+
readonly readonlyWhen?: string | {
|
|
3084
|
+
dialect: "cel" | "cron" | "template";
|
|
3085
|
+
source?: string | undefined;
|
|
3086
|
+
ast?: unknown;
|
|
3087
|
+
meta?: {
|
|
3088
|
+
rationale?: string | undefined;
|
|
3089
|
+
generatedBy?: string | undefined;
|
|
3090
|
+
} | undefined;
|
|
3091
|
+
} | undefined;
|
|
2996
3092
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2997
3093
|
readonly _lockReason?: string | undefined;
|
|
2998
3094
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -3024,15 +3120,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3024
3120
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
3025
3121
|
} | undefined;
|
|
3026
3122
|
readonly reference?: string | undefined;
|
|
3027
|
-
readonly visibleWhen?: string | {
|
|
3028
|
-
dialect: "cel" | "cron" | "template";
|
|
3029
|
-
source?: string | undefined;
|
|
3030
|
-
ast?: unknown;
|
|
3031
|
-
meta?: {
|
|
3032
|
-
rationale?: string | undefined;
|
|
3033
|
-
generatedBy?: string | undefined;
|
|
3034
|
-
} | undefined;
|
|
3035
|
-
} | undefined;
|
|
3036
3123
|
readonly scale?: number | undefined;
|
|
3037
3124
|
readonly searchable?: boolean | undefined;
|
|
3038
3125
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -3041,6 +3128,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3041
3128
|
readonly minLength?: number | undefined;
|
|
3042
3129
|
readonly min?: number | undefined;
|
|
3043
3130
|
readonly max?: number | undefined;
|
|
3131
|
+
readonly useGrouping?: boolean | undefined;
|
|
3044
3132
|
readonly accept?: string[] | undefined;
|
|
3045
3133
|
readonly maxSize?: number | undefined;
|
|
3046
3134
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -3074,15 +3162,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3074
3162
|
readonly dimensions?: number | undefined;
|
|
3075
3163
|
readonly trackHistory?: boolean | undefined;
|
|
3076
3164
|
readonly group?: string | undefined;
|
|
3077
|
-
readonly readonlyWhen?: string | {
|
|
3078
|
-
dialect: "cel" | "cron" | "template";
|
|
3079
|
-
source?: string | undefined;
|
|
3080
|
-
ast?: unknown;
|
|
3081
|
-
meta?: {
|
|
3082
|
-
rationale?: string | undefined;
|
|
3083
|
-
generatedBy?: string | undefined;
|
|
3084
|
-
} | undefined;
|
|
3085
|
-
} | undefined;
|
|
3086
3165
|
readonly requiredWhen?: string | {
|
|
3087
3166
|
dialect: "cel" | "cron" | "template";
|
|
3088
3167
|
source?: string | undefined;
|
|
@@ -3094,6 +3173,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3094
3173
|
} | undefined;
|
|
3095
3174
|
readonly conditionalRequired?: undefined;
|
|
3096
3175
|
readonly hidden?: boolean | undefined;
|
|
3176
|
+
readonly internal?: boolean | undefined;
|
|
3097
3177
|
readonly requiredPermissions?: string[] | undefined;
|
|
3098
3178
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
3099
3179
|
readonly system?: boolean | undefined;
|
|
@@ -3139,6 +3219,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3139
3219
|
}, {
|
|
3140
3220
|
readonly name: "approval_reject";
|
|
3141
3221
|
readonly label: "Reject";
|
|
3222
|
+
readonly description: "Reject this request? A rejection is final for every approver.";
|
|
3142
3223
|
readonly icon: "x-circle";
|
|
3143
3224
|
readonly variant: "danger";
|
|
3144
3225
|
readonly type: "api";
|
|
@@ -3157,7 +3238,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3157
3238
|
readonly required: false;
|
|
3158
3239
|
}];
|
|
3159
3240
|
readonly visible: "record.viewer.can_act || record.viewer.can_override";
|
|
3160
|
-
readonly confirmText: "Reject this request? A rejection is final for every approver.";
|
|
3161
3241
|
readonly locations: ["record_section", "list_item"];
|
|
3162
3242
|
readonly successMessage: "Rejected.";
|
|
3163
3243
|
readonly refreshAfter: true;
|
|
@@ -3238,6 +3318,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3238
3318
|
}, {
|
|
3239
3319
|
readonly name: "approval_recall";
|
|
3240
3320
|
readonly label: "Recall";
|
|
3321
|
+
readonly description: "Recall this request? Approvers can no longer act on it and the record is unlocked.";
|
|
3241
3322
|
readonly icon: "undo-2";
|
|
3242
3323
|
readonly type: "api";
|
|
3243
3324
|
readonly method: "POST";
|
|
@@ -3249,7 +3330,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3249
3330
|
readonly required: false;
|
|
3250
3331
|
}];
|
|
3251
3332
|
readonly visible: "(record.status == \"pending\" || record.status == \"returned\") && record.viewer.is_submitter";
|
|
3252
|
-
readonly confirmText: "Recall this request? Approvers can no longer act on it and the record is unlocked.";
|
|
3253
3333
|
readonly locations: ["record_section"];
|
|
3254
3334
|
readonly successMessage: "Recalled.";
|
|
3255
3335
|
readonly refreshAfter: true;
|
|
@@ -3316,6 +3396,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
3316
3396
|
scale?: number | undefined;
|
|
3317
3397
|
min?: number | undefined;
|
|
3318
3398
|
max?: number | undefined;
|
|
3399
|
+
useGrouping?: boolean | undefined;
|
|
3319
3400
|
accept?: string[] | undefined;
|
|
3320
3401
|
maxSize?: number | undefined;
|
|
3321
3402
|
options?: {
|
|
@@ -3418,6 +3499,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
3418
3499
|
conditionalRequired?: undefined;
|
|
3419
3500
|
widget?: string | undefined;
|
|
3420
3501
|
hidden?: boolean | undefined;
|
|
3502
|
+
internal?: boolean | undefined;
|
|
3421
3503
|
readonly?: boolean | undefined;
|
|
3422
3504
|
requiredPermissions?: string[] | undefined;
|
|
3423
3505
|
ackPlaintextMasking?: boolean | undefined;
|
|
@@ -3442,8 +3524,48 @@ declare const SysApprovalAction: Omit<{
|
|
|
3442
3524
|
managedBy?: "platform" | "config" | "system-data" | "engine-owned" | "append-only" | "better-auth" | undefined;
|
|
3443
3525
|
ownership?: "none" | "org" | "user" | "business_unit" | undefined;
|
|
3444
3526
|
userActions?: {
|
|
3445
|
-
create?: boolean |
|
|
3446
|
-
|
|
3527
|
+
create?: boolean | {
|
|
3528
|
+
enabled?: boolean | undefined;
|
|
3529
|
+
visibleWhen?: string | {
|
|
3530
|
+
dialect: "cel" | "cron" | "template";
|
|
3531
|
+
source?: string | undefined;
|
|
3532
|
+
ast?: unknown;
|
|
3533
|
+
meta?: {
|
|
3534
|
+
rationale?: string | undefined;
|
|
3535
|
+
generatedBy?: string | undefined;
|
|
3536
|
+
} | undefined;
|
|
3537
|
+
} | undefined;
|
|
3538
|
+
disabledWhen?: string | {
|
|
3539
|
+
dialect: "cel" | "cron" | "template";
|
|
3540
|
+
source?: string | undefined;
|
|
3541
|
+
ast?: unknown;
|
|
3542
|
+
meta?: {
|
|
3543
|
+
rationale?: string | undefined;
|
|
3544
|
+
generatedBy?: string | undefined;
|
|
3545
|
+
} | undefined;
|
|
3546
|
+
} | undefined;
|
|
3547
|
+
} | undefined;
|
|
3548
|
+
import?: boolean | {
|
|
3549
|
+
enabled?: boolean | undefined;
|
|
3550
|
+
visibleWhen?: string | {
|
|
3551
|
+
dialect: "cel" | "cron" | "template";
|
|
3552
|
+
source?: string | undefined;
|
|
3553
|
+
ast?: unknown;
|
|
3554
|
+
meta?: {
|
|
3555
|
+
rationale?: string | undefined;
|
|
3556
|
+
generatedBy?: string | undefined;
|
|
3557
|
+
} | undefined;
|
|
3558
|
+
} | undefined;
|
|
3559
|
+
disabledWhen?: string | {
|
|
3560
|
+
dialect: "cel" | "cron" | "template";
|
|
3561
|
+
source?: string | undefined;
|
|
3562
|
+
ast?: unknown;
|
|
3563
|
+
meta?: {
|
|
3564
|
+
rationale?: string | undefined;
|
|
3565
|
+
generatedBy?: string | undefined;
|
|
3566
|
+
} | undefined;
|
|
3567
|
+
} | undefined;
|
|
3568
|
+
} | undefined;
|
|
3447
3569
|
edit?: boolean | {
|
|
3448
3570
|
enabled?: boolean | undefined;
|
|
3449
3571
|
visibleWhen?: string | {
|
|
@@ -3703,6 +3825,16 @@ declare const SysApprovalAction: Omit<{
|
|
|
3703
3825
|
} | undefined;
|
|
3704
3826
|
responsive?: undefined;
|
|
3705
3827
|
performance?: undefined;
|
|
3828
|
+
striped?: undefined;
|
|
3829
|
+
bordered?: undefined;
|
|
3830
|
+
virtualScroll?: undefined;
|
|
3831
|
+
exportOptions?: ("json" | "xlsx" | "csv")[] | {
|
|
3832
|
+
formats?: ("json" | "xlsx" | "csv")[] | undefined;
|
|
3833
|
+
maxRecords?: number | undefined;
|
|
3834
|
+
includeHeaders?: boolean | undefined;
|
|
3835
|
+
fileNamePrefix?: string | undefined;
|
|
3836
|
+
streaming?: boolean | undefined;
|
|
3837
|
+
} | undefined;
|
|
3706
3838
|
appearance?: {
|
|
3707
3839
|
showDescription?: boolean | undefined;
|
|
3708
3840
|
allowedVisualizations?: ("tree" | "grid" | "gallery" | "kanban" | "calendar" | "timeline" | "gantt" | "chart" | "map")[] | undefined;
|
|
@@ -3767,8 +3899,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
3767
3899
|
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
3768
3900
|
searchableFields?: string[] | undefined;
|
|
3769
3901
|
filterableFields?: string[] | undefined;
|
|
3770
|
-
striped?: boolean | undefined;
|
|
3771
|
-
bordered?: boolean | undefined;
|
|
3772
3902
|
compactToolbar?: boolean | undefined;
|
|
3773
3903
|
selection?: {
|
|
3774
3904
|
type?: "none" | "multiple" | "single" | undefined;
|
|
@@ -3833,7 +3963,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
3833
3963
|
maxRecords?: number | undefined;
|
|
3834
3964
|
batchSize?: number | undefined;
|
|
3835
3965
|
}[] | undefined;
|
|
3836
|
-
virtualScroll?: boolean | undefined;
|
|
3837
3966
|
conditionalFormatting?: {
|
|
3838
3967
|
condition: string | {
|
|
3839
3968
|
dialect: "cel" | "cron" | "template";
|
|
@@ -3846,7 +3975,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
3846
3975
|
};
|
|
3847
3976
|
style: Record<string, string>;
|
|
3848
3977
|
}[] | undefined;
|
|
3849
|
-
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
3850
3978
|
addRecord?: {
|
|
3851
3979
|
enabled?: boolean | undefined;
|
|
3852
3980
|
position?: "top" | "bottom" | "both" | undefined;
|
|
@@ -3907,7 +4035,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
3907
4035
|
icon?: string | undefined;
|
|
3908
4036
|
locations?: ("record_header" | "list_toolbar" | "list_item" | "record_more" | "record_related" | "record_section")[] | undefined;
|
|
3909
4037
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
3910
|
-
type?: "url" | "form" | "api" | "modal" | "
|
|
4038
|
+
type?: "url" | "form" | "api" | "modal" | "flow" | "script" | undefined;
|
|
3911
4039
|
target?: string | undefined;
|
|
3912
4040
|
openIn?: "self" | "new-tab" | undefined;
|
|
3913
4041
|
body?: {
|
|
@@ -3958,7 +4086,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
3958
4086
|
generatedBy?: string | undefined;
|
|
3959
4087
|
} | undefined;
|
|
3960
4088
|
} | undefined;
|
|
3961
|
-
requiresFeature?: "organization" | "twoFactor" | "
|
|
4089
|
+
requiresFeature?: "organization" | "twoFactor" | "multiOrgEnabled" | "degradedTenancy" | "oidcProvider" | "sso" | "ssoEnforced" | "deviceAuthorization" | "admin" | "phoneNumber" | "phoneNumberOtp" | undefined;
|
|
3962
4090
|
}[] | undefined;
|
|
3963
4091
|
variant?: "primary" | "secondary" | "danger" | "ghost" | "link" | undefined;
|
|
3964
4092
|
order?: number | undefined;
|
|
@@ -3987,7 +4115,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
3987
4115
|
generatedBy?: string | undefined;
|
|
3988
4116
|
} | undefined;
|
|
3989
4117
|
} | undefined;
|
|
3990
|
-
requiresFeature?: "organization" | "twoFactor" | "
|
|
4118
|
+
requiresFeature?: "organization" | "twoFactor" | "multiOrgEnabled" | "degradedTenancy" | "oidcProvider" | "sso" | "ssoEnforced" | "deviceAuthorization" | "admin" | "phoneNumber" | "phoneNumberOtp" | undefined;
|
|
3991
4119
|
disabled?: string | boolean | {
|
|
3992
4120
|
dialect: "cel" | "cron" | "template";
|
|
3993
4121
|
source?: string | undefined;
|
|
@@ -4143,6 +4271,24 @@ declare const SysApprovalAction: Omit<{
|
|
|
4143
4271
|
readonly storage?: {
|
|
4144
4272
|
notNull?: boolean | undefined;
|
|
4145
4273
|
} | undefined;
|
|
4274
|
+
readonly visibleWhen?: string | {
|
|
4275
|
+
dialect: "cel" | "cron" | "template";
|
|
4276
|
+
source?: string | undefined;
|
|
4277
|
+
ast?: unknown;
|
|
4278
|
+
meta?: {
|
|
4279
|
+
rationale?: string | undefined;
|
|
4280
|
+
generatedBy?: string | undefined;
|
|
4281
|
+
} | undefined;
|
|
4282
|
+
} | undefined;
|
|
4283
|
+
readonly readonlyWhen?: string | {
|
|
4284
|
+
dialect: "cel" | "cron" | "template";
|
|
4285
|
+
source?: string | undefined;
|
|
4286
|
+
ast?: unknown;
|
|
4287
|
+
meta?: {
|
|
4288
|
+
rationale?: string | undefined;
|
|
4289
|
+
generatedBy?: string | undefined;
|
|
4290
|
+
} | undefined;
|
|
4291
|
+
} | undefined;
|
|
4146
4292
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
4147
4293
|
readonly _lockReason?: string | undefined;
|
|
4148
4294
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -4174,15 +4320,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
4174
4320
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
4175
4321
|
} | undefined;
|
|
4176
4322
|
readonly reference?: string | undefined;
|
|
4177
|
-
readonly visibleWhen?: string | {
|
|
4178
|
-
dialect: "cel" | "cron" | "template";
|
|
4179
|
-
source?: string | undefined;
|
|
4180
|
-
ast?: unknown;
|
|
4181
|
-
meta?: {
|
|
4182
|
-
rationale?: string | undefined;
|
|
4183
|
-
generatedBy?: string | undefined;
|
|
4184
|
-
} | undefined;
|
|
4185
|
-
} | undefined;
|
|
4186
4323
|
readonly scale?: number | undefined;
|
|
4187
4324
|
readonly searchable?: boolean | undefined;
|
|
4188
4325
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -4191,6 +4328,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
4191
4328
|
readonly minLength?: number | undefined;
|
|
4192
4329
|
readonly min?: number | undefined;
|
|
4193
4330
|
readonly max?: number | undefined;
|
|
4331
|
+
readonly useGrouping?: boolean | undefined;
|
|
4194
4332
|
readonly accept?: string[] | undefined;
|
|
4195
4333
|
readonly maxSize?: number | undefined;
|
|
4196
4334
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -4224,15 +4362,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
4224
4362
|
readonly dimensions?: number | undefined;
|
|
4225
4363
|
readonly trackHistory?: boolean | undefined;
|
|
4226
4364
|
readonly group?: string | undefined;
|
|
4227
|
-
readonly readonlyWhen?: string | {
|
|
4228
|
-
dialect: "cel" | "cron" | "template";
|
|
4229
|
-
source?: string | undefined;
|
|
4230
|
-
ast?: unknown;
|
|
4231
|
-
meta?: {
|
|
4232
|
-
rationale?: string | undefined;
|
|
4233
|
-
generatedBy?: string | undefined;
|
|
4234
|
-
} | undefined;
|
|
4235
|
-
} | undefined;
|
|
4236
4365
|
readonly requiredWhen?: string | {
|
|
4237
4366
|
dialect: "cel" | "cron" | "template";
|
|
4238
4367
|
source?: string | undefined;
|
|
@@ -4244,6 +4373,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
4244
4373
|
} | undefined;
|
|
4245
4374
|
readonly conditionalRequired?: undefined;
|
|
4246
4375
|
readonly hidden?: boolean | undefined;
|
|
4376
|
+
readonly internal?: boolean | undefined;
|
|
4247
4377
|
readonly requiredPermissions?: string[] | undefined;
|
|
4248
4378
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
4249
4379
|
readonly system?: boolean | undefined;
|
|
@@ -4298,6 +4428,24 @@ declare const SysApprovalAction: Omit<{
|
|
|
4298
4428
|
readonly storage?: {
|
|
4299
4429
|
notNull?: boolean | undefined;
|
|
4300
4430
|
} | undefined;
|
|
4431
|
+
readonly visibleWhen?: string | {
|
|
4432
|
+
dialect: "cel" | "cron" | "template";
|
|
4433
|
+
source?: string | undefined;
|
|
4434
|
+
ast?: unknown;
|
|
4435
|
+
meta?: {
|
|
4436
|
+
rationale?: string | undefined;
|
|
4437
|
+
generatedBy?: string | undefined;
|
|
4438
|
+
} | undefined;
|
|
4439
|
+
} | undefined;
|
|
4440
|
+
readonly readonlyWhen?: string | {
|
|
4441
|
+
dialect: "cel" | "cron" | "template";
|
|
4442
|
+
source?: string | undefined;
|
|
4443
|
+
ast?: unknown;
|
|
4444
|
+
meta?: {
|
|
4445
|
+
rationale?: string | undefined;
|
|
4446
|
+
generatedBy?: string | undefined;
|
|
4447
|
+
} | undefined;
|
|
4448
|
+
} | undefined;
|
|
4301
4449
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
4302
4450
|
readonly _lockReason?: string | undefined;
|
|
4303
4451
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -4329,15 +4477,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
4329
4477
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
4330
4478
|
} | undefined;
|
|
4331
4479
|
readonly reference?: string | undefined;
|
|
4332
|
-
readonly visibleWhen?: string | {
|
|
4333
|
-
dialect: "cel" | "cron" | "template";
|
|
4334
|
-
source?: string | undefined;
|
|
4335
|
-
ast?: unknown;
|
|
4336
|
-
meta?: {
|
|
4337
|
-
rationale?: string | undefined;
|
|
4338
|
-
generatedBy?: string | undefined;
|
|
4339
|
-
} | undefined;
|
|
4340
|
-
} | undefined;
|
|
4341
4480
|
readonly scale?: number | undefined;
|
|
4342
4481
|
readonly searchable?: boolean | undefined;
|
|
4343
4482
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -4346,6 +4485,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
4346
4485
|
readonly minLength?: number | undefined;
|
|
4347
4486
|
readonly min?: number | undefined;
|
|
4348
4487
|
readonly max?: number | undefined;
|
|
4488
|
+
readonly useGrouping?: boolean | undefined;
|
|
4349
4489
|
readonly accept?: string[] | undefined;
|
|
4350
4490
|
readonly maxSize?: number | undefined;
|
|
4351
4491
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -4379,15 +4519,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
4379
4519
|
readonly dimensions?: number | undefined;
|
|
4380
4520
|
readonly trackHistory?: boolean | undefined;
|
|
4381
4521
|
readonly group?: string | undefined;
|
|
4382
|
-
readonly readonlyWhen?: string | {
|
|
4383
|
-
dialect: "cel" | "cron" | "template";
|
|
4384
|
-
source?: string | undefined;
|
|
4385
|
-
ast?: unknown;
|
|
4386
|
-
meta?: {
|
|
4387
|
-
rationale?: string | undefined;
|
|
4388
|
-
generatedBy?: string | undefined;
|
|
4389
|
-
} | undefined;
|
|
4390
|
-
} | undefined;
|
|
4391
4522
|
readonly requiredWhen?: string | {
|
|
4392
4523
|
dialect: "cel" | "cron" | "template";
|
|
4393
4524
|
source?: string | undefined;
|
|
@@ -4399,6 +4530,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
4399
4530
|
} | undefined;
|
|
4400
4531
|
readonly conditionalRequired?: undefined;
|
|
4401
4532
|
readonly hidden?: boolean | undefined;
|
|
4533
|
+
readonly internal?: boolean | undefined;
|
|
4402
4534
|
readonly requiredPermissions?: string[] | undefined;
|
|
4403
4535
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
4404
4536
|
readonly system?: boolean | undefined;
|
|
@@ -4436,6 +4568,24 @@ declare const SysApprovalAction: Omit<{
|
|
|
4436
4568
|
readonly storage?: {
|
|
4437
4569
|
notNull?: boolean | undefined;
|
|
4438
4570
|
} | undefined;
|
|
4571
|
+
readonly visibleWhen?: string | {
|
|
4572
|
+
dialect: "cel" | "cron" | "template";
|
|
4573
|
+
source?: string | undefined;
|
|
4574
|
+
ast?: unknown;
|
|
4575
|
+
meta?: {
|
|
4576
|
+
rationale?: string | undefined;
|
|
4577
|
+
generatedBy?: string | undefined;
|
|
4578
|
+
} | undefined;
|
|
4579
|
+
} | undefined;
|
|
4580
|
+
readonly readonlyWhen?: string | {
|
|
4581
|
+
dialect: "cel" | "cron" | "template";
|
|
4582
|
+
source?: string | undefined;
|
|
4583
|
+
ast?: unknown;
|
|
4584
|
+
meta?: {
|
|
4585
|
+
rationale?: string | undefined;
|
|
4586
|
+
generatedBy?: string | undefined;
|
|
4587
|
+
} | undefined;
|
|
4588
|
+
} | undefined;
|
|
4439
4589
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
4440
4590
|
readonly _lockReason?: string | undefined;
|
|
4441
4591
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -4467,15 +4617,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
4467
4617
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
4468
4618
|
} | undefined;
|
|
4469
4619
|
readonly reference?: string | undefined;
|
|
4470
|
-
readonly visibleWhen?: string | {
|
|
4471
|
-
dialect: "cel" | "cron" | "template";
|
|
4472
|
-
source?: string | undefined;
|
|
4473
|
-
ast?: unknown;
|
|
4474
|
-
meta?: {
|
|
4475
|
-
rationale?: string | undefined;
|
|
4476
|
-
generatedBy?: string | undefined;
|
|
4477
|
-
} | undefined;
|
|
4478
|
-
} | undefined;
|
|
4479
4620
|
readonly scale?: number | undefined;
|
|
4480
4621
|
readonly searchable?: boolean | undefined;
|
|
4481
4622
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -4484,6 +4625,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
4484
4625
|
readonly minLength?: number | undefined;
|
|
4485
4626
|
readonly min?: number | undefined;
|
|
4486
4627
|
readonly max?: number | undefined;
|
|
4628
|
+
readonly useGrouping?: boolean | undefined;
|
|
4487
4629
|
readonly accept?: string[] | undefined;
|
|
4488
4630
|
readonly maxSize?: number | undefined;
|
|
4489
4631
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -4517,15 +4659,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
4517
4659
|
readonly dimensions?: number | undefined;
|
|
4518
4660
|
readonly trackHistory?: boolean | undefined;
|
|
4519
4661
|
readonly group?: string | undefined;
|
|
4520
|
-
readonly readonlyWhen?: string | {
|
|
4521
|
-
dialect: "cel" | "cron" | "template";
|
|
4522
|
-
source?: string | undefined;
|
|
4523
|
-
ast?: unknown;
|
|
4524
|
-
meta?: {
|
|
4525
|
-
rationale?: string | undefined;
|
|
4526
|
-
generatedBy?: string | undefined;
|
|
4527
|
-
} | undefined;
|
|
4528
|
-
} | undefined;
|
|
4529
4662
|
readonly requiredWhen?: string | {
|
|
4530
4663
|
dialect: "cel" | "cron" | "template";
|
|
4531
4664
|
source?: string | undefined;
|
|
@@ -4537,6 +4670,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
4537
4670
|
} | undefined;
|
|
4538
4671
|
readonly conditionalRequired?: undefined;
|
|
4539
4672
|
readonly hidden?: boolean | undefined;
|
|
4673
|
+
readonly internal?: boolean | undefined;
|
|
4540
4674
|
readonly requiredPermissions?: string[] | undefined;
|
|
4541
4675
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
4542
4676
|
readonly system?: boolean | undefined;
|
|
@@ -4574,6 +4708,24 @@ declare const SysApprovalAction: Omit<{
|
|
|
4574
4708
|
readonly storage?: {
|
|
4575
4709
|
notNull?: boolean | undefined;
|
|
4576
4710
|
} | undefined;
|
|
4711
|
+
readonly visibleWhen?: string | {
|
|
4712
|
+
dialect: "cel" | "cron" | "template";
|
|
4713
|
+
source?: string | undefined;
|
|
4714
|
+
ast?: unknown;
|
|
4715
|
+
meta?: {
|
|
4716
|
+
rationale?: string | undefined;
|
|
4717
|
+
generatedBy?: string | undefined;
|
|
4718
|
+
} | undefined;
|
|
4719
|
+
} | undefined;
|
|
4720
|
+
readonly readonlyWhen?: string | {
|
|
4721
|
+
dialect: "cel" | "cron" | "template";
|
|
4722
|
+
source?: string | undefined;
|
|
4723
|
+
ast?: unknown;
|
|
4724
|
+
meta?: {
|
|
4725
|
+
rationale?: string | undefined;
|
|
4726
|
+
generatedBy?: string | undefined;
|
|
4727
|
+
} | undefined;
|
|
4728
|
+
} | undefined;
|
|
4577
4729
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
4578
4730
|
readonly _lockReason?: string | undefined;
|
|
4579
4731
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -4605,15 +4757,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
4605
4757
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
4606
4758
|
} | undefined;
|
|
4607
4759
|
readonly reference?: string | undefined;
|
|
4608
|
-
readonly visibleWhen?: string | {
|
|
4609
|
-
dialect: "cel" | "cron" | "template";
|
|
4610
|
-
source?: string | undefined;
|
|
4611
|
-
ast?: unknown;
|
|
4612
|
-
meta?: {
|
|
4613
|
-
rationale?: string | undefined;
|
|
4614
|
-
generatedBy?: string | undefined;
|
|
4615
|
-
} | undefined;
|
|
4616
|
-
} | undefined;
|
|
4617
4760
|
readonly scale?: number | undefined;
|
|
4618
4761
|
readonly searchable?: boolean | undefined;
|
|
4619
4762
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -4622,6 +4765,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
4622
4765
|
readonly minLength?: number | undefined;
|
|
4623
4766
|
readonly min?: number | undefined;
|
|
4624
4767
|
readonly max?: number | undefined;
|
|
4768
|
+
readonly useGrouping?: boolean | undefined;
|
|
4625
4769
|
readonly accept?: string[] | undefined;
|
|
4626
4770
|
readonly maxSize?: number | undefined;
|
|
4627
4771
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -4655,15 +4799,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
4655
4799
|
readonly dimensions?: number | undefined;
|
|
4656
4800
|
readonly trackHistory?: boolean | undefined;
|
|
4657
4801
|
readonly group?: string | undefined;
|
|
4658
|
-
readonly readonlyWhen?: string | {
|
|
4659
|
-
dialect: "cel" | "cron" | "template";
|
|
4660
|
-
source?: string | undefined;
|
|
4661
|
-
ast?: unknown;
|
|
4662
|
-
meta?: {
|
|
4663
|
-
rationale?: string | undefined;
|
|
4664
|
-
generatedBy?: string | undefined;
|
|
4665
|
-
} | undefined;
|
|
4666
|
-
} | undefined;
|
|
4667
4802
|
readonly requiredWhen?: string | {
|
|
4668
4803
|
dialect: "cel" | "cron" | "template";
|
|
4669
4804
|
source?: string | undefined;
|
|
@@ -4675,6 +4810,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
4675
4810
|
} | undefined;
|
|
4676
4811
|
readonly conditionalRequired?: undefined;
|
|
4677
4812
|
readonly hidden?: boolean | undefined;
|
|
4813
|
+
readonly internal?: boolean | undefined;
|
|
4678
4814
|
readonly requiredPermissions?: string[] | undefined;
|
|
4679
4815
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
4680
4816
|
readonly system?: boolean | undefined;
|
|
@@ -4720,6 +4856,24 @@ declare const SysApprovalAction: Omit<{
|
|
|
4720
4856
|
readonly storage?: {
|
|
4721
4857
|
notNull?: boolean | undefined;
|
|
4722
4858
|
} | undefined;
|
|
4859
|
+
readonly visibleWhen?: string | {
|
|
4860
|
+
dialect: "cel" | "cron" | "template";
|
|
4861
|
+
source?: string | undefined;
|
|
4862
|
+
ast?: unknown;
|
|
4863
|
+
meta?: {
|
|
4864
|
+
rationale?: string | undefined;
|
|
4865
|
+
generatedBy?: string | undefined;
|
|
4866
|
+
} | undefined;
|
|
4867
|
+
} | undefined;
|
|
4868
|
+
readonly readonlyWhen?: string | {
|
|
4869
|
+
dialect: "cel" | "cron" | "template";
|
|
4870
|
+
source?: string | undefined;
|
|
4871
|
+
ast?: unknown;
|
|
4872
|
+
meta?: {
|
|
4873
|
+
rationale?: string | undefined;
|
|
4874
|
+
generatedBy?: string | undefined;
|
|
4875
|
+
} | undefined;
|
|
4876
|
+
} | undefined;
|
|
4723
4877
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
4724
4878
|
readonly _lockReason?: string | undefined;
|
|
4725
4879
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -4751,15 +4905,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
4751
4905
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
4752
4906
|
} | undefined;
|
|
4753
4907
|
readonly reference?: string | undefined;
|
|
4754
|
-
readonly visibleWhen?: string | {
|
|
4755
|
-
dialect: "cel" | "cron" | "template";
|
|
4756
|
-
source?: string | undefined;
|
|
4757
|
-
ast?: unknown;
|
|
4758
|
-
meta?: {
|
|
4759
|
-
rationale?: string | undefined;
|
|
4760
|
-
generatedBy?: string | undefined;
|
|
4761
|
-
} | undefined;
|
|
4762
|
-
} | undefined;
|
|
4763
4908
|
readonly scale?: number | undefined;
|
|
4764
4909
|
readonly searchable?: boolean | undefined;
|
|
4765
4910
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -4768,6 +4913,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
4768
4913
|
readonly minLength?: number | undefined;
|
|
4769
4914
|
readonly min?: number | undefined;
|
|
4770
4915
|
readonly max?: number | undefined;
|
|
4916
|
+
readonly useGrouping?: boolean | undefined;
|
|
4771
4917
|
readonly accept?: string[] | undefined;
|
|
4772
4918
|
readonly maxSize?: number | undefined;
|
|
4773
4919
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -4801,15 +4947,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
4801
4947
|
readonly dimensions?: number | undefined;
|
|
4802
4948
|
readonly trackHistory?: boolean | undefined;
|
|
4803
4949
|
readonly group?: string | undefined;
|
|
4804
|
-
readonly readonlyWhen?: string | {
|
|
4805
|
-
dialect: "cel" | "cron" | "template";
|
|
4806
|
-
source?: string | undefined;
|
|
4807
|
-
ast?: unknown;
|
|
4808
|
-
meta?: {
|
|
4809
|
-
rationale?: string | undefined;
|
|
4810
|
-
generatedBy?: string | undefined;
|
|
4811
|
-
} | undefined;
|
|
4812
|
-
} | undefined;
|
|
4813
4950
|
readonly requiredWhen?: string | {
|
|
4814
4951
|
dialect: "cel" | "cron" | "template";
|
|
4815
4952
|
source?: string | undefined;
|
|
@@ -4821,6 +4958,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
4821
4958
|
} | undefined;
|
|
4822
4959
|
readonly conditionalRequired?: undefined;
|
|
4823
4960
|
readonly hidden?: boolean | undefined;
|
|
4961
|
+
readonly internal?: boolean | undefined;
|
|
4824
4962
|
readonly requiredPermissions?: string[] | undefined;
|
|
4825
4963
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
4826
4964
|
readonly system?: boolean | undefined;
|
|
@@ -4858,6 +4996,24 @@ declare const SysApprovalAction: Omit<{
|
|
|
4858
4996
|
readonly storage?: {
|
|
4859
4997
|
notNull?: boolean | undefined;
|
|
4860
4998
|
} | undefined;
|
|
4999
|
+
readonly visibleWhen?: string | {
|
|
5000
|
+
dialect: "cel" | "cron" | "template";
|
|
5001
|
+
source?: string | undefined;
|
|
5002
|
+
ast?: unknown;
|
|
5003
|
+
meta?: {
|
|
5004
|
+
rationale?: string | undefined;
|
|
5005
|
+
generatedBy?: string | undefined;
|
|
5006
|
+
} | undefined;
|
|
5007
|
+
} | undefined;
|
|
5008
|
+
readonly readonlyWhen?: string | {
|
|
5009
|
+
dialect: "cel" | "cron" | "template";
|
|
5010
|
+
source?: string | undefined;
|
|
5011
|
+
ast?: unknown;
|
|
5012
|
+
meta?: {
|
|
5013
|
+
rationale?: string | undefined;
|
|
5014
|
+
generatedBy?: string | undefined;
|
|
5015
|
+
} | undefined;
|
|
5016
|
+
} | undefined;
|
|
4861
5017
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
4862
5018
|
readonly _lockReason?: string | undefined;
|
|
4863
5019
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -4889,15 +5045,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
4889
5045
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
4890
5046
|
} | undefined;
|
|
4891
5047
|
readonly reference?: string | undefined;
|
|
4892
|
-
readonly visibleWhen?: string | {
|
|
4893
|
-
dialect: "cel" | "cron" | "template";
|
|
4894
|
-
source?: string | undefined;
|
|
4895
|
-
ast?: unknown;
|
|
4896
|
-
meta?: {
|
|
4897
|
-
rationale?: string | undefined;
|
|
4898
|
-
generatedBy?: string | undefined;
|
|
4899
|
-
} | undefined;
|
|
4900
|
-
} | undefined;
|
|
4901
5048
|
readonly scale?: number | undefined;
|
|
4902
5049
|
readonly searchable?: boolean | undefined;
|
|
4903
5050
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -4906,6 +5053,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
4906
5053
|
readonly minLength?: number | undefined;
|
|
4907
5054
|
readonly min?: number | undefined;
|
|
4908
5055
|
readonly max?: number | undefined;
|
|
5056
|
+
readonly useGrouping?: boolean | undefined;
|
|
4909
5057
|
readonly accept?: string[] | undefined;
|
|
4910
5058
|
readonly maxSize?: number | undefined;
|
|
4911
5059
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -4939,15 +5087,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
4939
5087
|
readonly dimensions?: number | undefined;
|
|
4940
5088
|
readonly trackHistory?: boolean | undefined;
|
|
4941
5089
|
readonly group?: string | undefined;
|
|
4942
|
-
readonly readonlyWhen?: string | {
|
|
4943
|
-
dialect: "cel" | "cron" | "template";
|
|
4944
|
-
source?: string | undefined;
|
|
4945
|
-
ast?: unknown;
|
|
4946
|
-
meta?: {
|
|
4947
|
-
rationale?: string | undefined;
|
|
4948
|
-
generatedBy?: string | undefined;
|
|
4949
|
-
} | undefined;
|
|
4950
|
-
} | undefined;
|
|
4951
5090
|
readonly requiredWhen?: string | {
|
|
4952
5091
|
dialect: "cel" | "cron" | "template";
|
|
4953
5092
|
source?: string | undefined;
|
|
@@ -4959,6 +5098,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
4959
5098
|
} | undefined;
|
|
4960
5099
|
readonly conditionalRequired?: undefined;
|
|
4961
5100
|
readonly hidden?: boolean | undefined;
|
|
5101
|
+
readonly internal?: boolean | undefined;
|
|
4962
5102
|
readonly requiredPermissions?: string[] | undefined;
|
|
4963
5103
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
4964
5104
|
readonly system?: boolean | undefined;
|
|
@@ -5014,6 +5154,24 @@ declare const SysApprovalAction: Omit<{
|
|
|
5014
5154
|
readonly storage?: {
|
|
5015
5155
|
notNull?: boolean | undefined;
|
|
5016
5156
|
} | undefined;
|
|
5157
|
+
readonly visibleWhen?: string | {
|
|
5158
|
+
dialect: "cel" | "cron" | "template";
|
|
5159
|
+
source?: string | undefined;
|
|
5160
|
+
ast?: unknown;
|
|
5161
|
+
meta?: {
|
|
5162
|
+
rationale?: string | undefined;
|
|
5163
|
+
generatedBy?: string | undefined;
|
|
5164
|
+
} | undefined;
|
|
5165
|
+
} | undefined;
|
|
5166
|
+
readonly readonlyWhen?: string | {
|
|
5167
|
+
dialect: "cel" | "cron" | "template";
|
|
5168
|
+
source?: string | undefined;
|
|
5169
|
+
ast?: unknown;
|
|
5170
|
+
meta?: {
|
|
5171
|
+
rationale?: string | undefined;
|
|
5172
|
+
generatedBy?: string | undefined;
|
|
5173
|
+
} | undefined;
|
|
5174
|
+
} | undefined;
|
|
5017
5175
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
5018
5176
|
readonly _lockReason?: string | undefined;
|
|
5019
5177
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -5039,21 +5197,12 @@ declare const SysApprovalAction: Omit<{
|
|
|
5039
5197
|
readonly autonumberFormat?: string | undefined;
|
|
5040
5198
|
readonly summaryOperations?: {
|
|
5041
5199
|
object: string;
|
|
5042
|
-
field: string;
|
|
5043
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
5044
|
-
relationshipField?: string | undefined;
|
|
5045
|
-
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
5046
|
-
} | undefined;
|
|
5047
|
-
readonly reference?: string | undefined;
|
|
5048
|
-
readonly visibleWhen?: string | {
|
|
5049
|
-
dialect: "cel" | "cron" | "template";
|
|
5050
|
-
source?: string | undefined;
|
|
5051
|
-
ast?: unknown;
|
|
5052
|
-
meta?: {
|
|
5053
|
-
rationale?: string | undefined;
|
|
5054
|
-
generatedBy?: string | undefined;
|
|
5055
|
-
} | undefined;
|
|
5200
|
+
field: string;
|
|
5201
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
5202
|
+
relationshipField?: string | undefined;
|
|
5203
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
5056
5204
|
} | undefined;
|
|
5205
|
+
readonly reference?: string | undefined;
|
|
5057
5206
|
readonly scale?: number | undefined;
|
|
5058
5207
|
readonly searchable?: boolean | undefined;
|
|
5059
5208
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -5062,6 +5211,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
5062
5211
|
readonly minLength?: number | undefined;
|
|
5063
5212
|
readonly min?: number | undefined;
|
|
5064
5213
|
readonly max?: number | undefined;
|
|
5214
|
+
readonly useGrouping?: boolean | undefined;
|
|
5065
5215
|
readonly accept?: string[] | undefined;
|
|
5066
5216
|
readonly maxSize?: number | undefined;
|
|
5067
5217
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -5095,15 +5245,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
5095
5245
|
readonly dimensions?: number | undefined;
|
|
5096
5246
|
readonly trackHistory?: boolean | undefined;
|
|
5097
5247
|
readonly group?: string | undefined;
|
|
5098
|
-
readonly readonlyWhen?: string | {
|
|
5099
|
-
dialect: "cel" | "cron" | "template";
|
|
5100
|
-
source?: string | undefined;
|
|
5101
|
-
ast?: unknown;
|
|
5102
|
-
meta?: {
|
|
5103
|
-
rationale?: string | undefined;
|
|
5104
|
-
generatedBy?: string | undefined;
|
|
5105
|
-
} | undefined;
|
|
5106
|
-
} | undefined;
|
|
5107
5248
|
readonly requiredWhen?: string | {
|
|
5108
5249
|
dialect: "cel" | "cron" | "template";
|
|
5109
5250
|
source?: string | undefined;
|
|
@@ -5115,6 +5256,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
5115
5256
|
} | undefined;
|
|
5116
5257
|
readonly conditionalRequired?: undefined;
|
|
5117
5258
|
readonly hidden?: boolean | undefined;
|
|
5259
|
+
readonly internal?: boolean | undefined;
|
|
5118
5260
|
readonly requiredPermissions?: string[] | undefined;
|
|
5119
5261
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
5120
5262
|
readonly system?: boolean | undefined;
|
|
@@ -5152,6 +5294,24 @@ declare const SysApprovalAction: Omit<{
|
|
|
5152
5294
|
readonly storage?: {
|
|
5153
5295
|
notNull?: boolean | undefined;
|
|
5154
5296
|
} | undefined;
|
|
5297
|
+
readonly visibleWhen?: string | {
|
|
5298
|
+
dialect: "cel" | "cron" | "template";
|
|
5299
|
+
source?: string | undefined;
|
|
5300
|
+
ast?: unknown;
|
|
5301
|
+
meta?: {
|
|
5302
|
+
rationale?: string | undefined;
|
|
5303
|
+
generatedBy?: string | undefined;
|
|
5304
|
+
} | undefined;
|
|
5305
|
+
} | undefined;
|
|
5306
|
+
readonly readonlyWhen?: string | {
|
|
5307
|
+
dialect: "cel" | "cron" | "template";
|
|
5308
|
+
source?: string | undefined;
|
|
5309
|
+
ast?: unknown;
|
|
5310
|
+
meta?: {
|
|
5311
|
+
rationale?: string | undefined;
|
|
5312
|
+
generatedBy?: string | undefined;
|
|
5313
|
+
} | undefined;
|
|
5314
|
+
} | undefined;
|
|
5155
5315
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
5156
5316
|
readonly _lockReason?: string | undefined;
|
|
5157
5317
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -5183,15 +5343,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
5183
5343
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
5184
5344
|
} | undefined;
|
|
5185
5345
|
readonly reference?: string | undefined;
|
|
5186
|
-
readonly visibleWhen?: string | {
|
|
5187
|
-
dialect: "cel" | "cron" | "template";
|
|
5188
|
-
source?: string | undefined;
|
|
5189
|
-
ast?: unknown;
|
|
5190
|
-
meta?: {
|
|
5191
|
-
rationale?: string | undefined;
|
|
5192
|
-
generatedBy?: string | undefined;
|
|
5193
|
-
} | undefined;
|
|
5194
|
-
} | undefined;
|
|
5195
5346
|
readonly scale?: number | undefined;
|
|
5196
5347
|
readonly searchable?: boolean | undefined;
|
|
5197
5348
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -5200,6 +5351,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
5200
5351
|
readonly minLength?: number | undefined;
|
|
5201
5352
|
readonly min?: number | undefined;
|
|
5202
5353
|
readonly max?: number | undefined;
|
|
5354
|
+
readonly useGrouping?: boolean | undefined;
|
|
5203
5355
|
readonly accept?: string[] | undefined;
|
|
5204
5356
|
readonly maxSize?: number | undefined;
|
|
5205
5357
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -5233,15 +5385,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
5233
5385
|
readonly dimensions?: number | undefined;
|
|
5234
5386
|
readonly trackHistory?: boolean | undefined;
|
|
5235
5387
|
readonly group?: string | undefined;
|
|
5236
|
-
readonly readonlyWhen?: string | {
|
|
5237
|
-
dialect: "cel" | "cron" | "template";
|
|
5238
|
-
source?: string | undefined;
|
|
5239
|
-
ast?: unknown;
|
|
5240
|
-
meta?: {
|
|
5241
|
-
rationale?: string | undefined;
|
|
5242
|
-
generatedBy?: string | undefined;
|
|
5243
|
-
} | undefined;
|
|
5244
|
-
} | undefined;
|
|
5245
5388
|
readonly requiredWhen?: string | {
|
|
5246
5389
|
dialect: "cel" | "cron" | "template";
|
|
5247
5390
|
source?: string | undefined;
|
|
@@ -5253,6 +5396,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
5253
5396
|
} | undefined;
|
|
5254
5397
|
readonly conditionalRequired?: undefined;
|
|
5255
5398
|
readonly hidden?: boolean | undefined;
|
|
5399
|
+
readonly internal?: boolean | undefined;
|
|
5256
5400
|
readonly requiredPermissions?: string[] | undefined;
|
|
5257
5401
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
5258
5402
|
readonly system?: boolean | undefined;
|
|
@@ -5323,6 +5467,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
5323
5467
|
scale?: number | undefined;
|
|
5324
5468
|
min?: number | undefined;
|
|
5325
5469
|
max?: number | undefined;
|
|
5470
|
+
useGrouping?: boolean | undefined;
|
|
5326
5471
|
accept?: string[] | undefined;
|
|
5327
5472
|
maxSize?: number | undefined;
|
|
5328
5473
|
options?: {
|
|
@@ -5425,6 +5570,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
5425
5570
|
conditionalRequired?: undefined;
|
|
5426
5571
|
widget?: string | undefined;
|
|
5427
5572
|
hidden?: boolean | undefined;
|
|
5573
|
+
internal?: boolean | undefined;
|
|
5428
5574
|
readonly?: boolean | undefined;
|
|
5429
5575
|
requiredPermissions?: string[] | undefined;
|
|
5430
5576
|
ackPlaintextMasking?: boolean | undefined;
|
|
@@ -5449,8 +5595,48 @@ declare const SysApprovalApprover: Omit<{
|
|
|
5449
5595
|
managedBy?: "platform" | "config" | "system-data" | "engine-owned" | "append-only" | "better-auth" | undefined;
|
|
5450
5596
|
ownership?: "none" | "org" | "user" | "business_unit" | undefined;
|
|
5451
5597
|
userActions?: {
|
|
5452
|
-
create?: boolean |
|
|
5453
|
-
|
|
5598
|
+
create?: boolean | {
|
|
5599
|
+
enabled?: boolean | undefined;
|
|
5600
|
+
visibleWhen?: string | {
|
|
5601
|
+
dialect: "cel" | "cron" | "template";
|
|
5602
|
+
source?: string | undefined;
|
|
5603
|
+
ast?: unknown;
|
|
5604
|
+
meta?: {
|
|
5605
|
+
rationale?: string | undefined;
|
|
5606
|
+
generatedBy?: string | undefined;
|
|
5607
|
+
} | undefined;
|
|
5608
|
+
} | undefined;
|
|
5609
|
+
disabledWhen?: string | {
|
|
5610
|
+
dialect: "cel" | "cron" | "template";
|
|
5611
|
+
source?: string | undefined;
|
|
5612
|
+
ast?: unknown;
|
|
5613
|
+
meta?: {
|
|
5614
|
+
rationale?: string | undefined;
|
|
5615
|
+
generatedBy?: string | undefined;
|
|
5616
|
+
} | undefined;
|
|
5617
|
+
} | undefined;
|
|
5618
|
+
} | undefined;
|
|
5619
|
+
import?: boolean | {
|
|
5620
|
+
enabled?: boolean | undefined;
|
|
5621
|
+
visibleWhen?: string | {
|
|
5622
|
+
dialect: "cel" | "cron" | "template";
|
|
5623
|
+
source?: string | undefined;
|
|
5624
|
+
ast?: unknown;
|
|
5625
|
+
meta?: {
|
|
5626
|
+
rationale?: string | undefined;
|
|
5627
|
+
generatedBy?: string | undefined;
|
|
5628
|
+
} | undefined;
|
|
5629
|
+
} | undefined;
|
|
5630
|
+
disabledWhen?: string | {
|
|
5631
|
+
dialect: "cel" | "cron" | "template";
|
|
5632
|
+
source?: string | undefined;
|
|
5633
|
+
ast?: unknown;
|
|
5634
|
+
meta?: {
|
|
5635
|
+
rationale?: string | undefined;
|
|
5636
|
+
generatedBy?: string | undefined;
|
|
5637
|
+
} | undefined;
|
|
5638
|
+
} | undefined;
|
|
5639
|
+
} | undefined;
|
|
5454
5640
|
edit?: boolean | {
|
|
5455
5641
|
enabled?: boolean | undefined;
|
|
5456
5642
|
visibleWhen?: string | {
|
|
@@ -5710,6 +5896,16 @@ declare const SysApprovalApprover: Omit<{
|
|
|
5710
5896
|
} | undefined;
|
|
5711
5897
|
responsive?: undefined;
|
|
5712
5898
|
performance?: undefined;
|
|
5899
|
+
striped?: undefined;
|
|
5900
|
+
bordered?: undefined;
|
|
5901
|
+
virtualScroll?: undefined;
|
|
5902
|
+
exportOptions?: ("json" | "xlsx" | "csv")[] | {
|
|
5903
|
+
formats?: ("json" | "xlsx" | "csv")[] | undefined;
|
|
5904
|
+
maxRecords?: number | undefined;
|
|
5905
|
+
includeHeaders?: boolean | undefined;
|
|
5906
|
+
fileNamePrefix?: string | undefined;
|
|
5907
|
+
streaming?: boolean | undefined;
|
|
5908
|
+
} | undefined;
|
|
5713
5909
|
appearance?: {
|
|
5714
5910
|
showDescription?: boolean | undefined;
|
|
5715
5911
|
allowedVisualizations?: ("tree" | "grid" | "gallery" | "kanban" | "calendar" | "timeline" | "gantt" | "chart" | "map")[] | undefined;
|
|
@@ -5774,8 +5970,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
5774
5970
|
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
5775
5971
|
searchableFields?: string[] | undefined;
|
|
5776
5972
|
filterableFields?: string[] | undefined;
|
|
5777
|
-
striped?: boolean | undefined;
|
|
5778
|
-
bordered?: boolean | undefined;
|
|
5779
5973
|
compactToolbar?: boolean | undefined;
|
|
5780
5974
|
selection?: {
|
|
5781
5975
|
type?: "none" | "multiple" | "single" | undefined;
|
|
@@ -5840,7 +6034,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
5840
6034
|
maxRecords?: number | undefined;
|
|
5841
6035
|
batchSize?: number | undefined;
|
|
5842
6036
|
}[] | undefined;
|
|
5843
|
-
virtualScroll?: boolean | undefined;
|
|
5844
6037
|
conditionalFormatting?: {
|
|
5845
6038
|
condition: string | {
|
|
5846
6039
|
dialect: "cel" | "cron" | "template";
|
|
@@ -5853,7 +6046,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
5853
6046
|
};
|
|
5854
6047
|
style: Record<string, string>;
|
|
5855
6048
|
}[] | undefined;
|
|
5856
|
-
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
5857
6049
|
addRecord?: {
|
|
5858
6050
|
enabled?: boolean | undefined;
|
|
5859
6051
|
position?: "top" | "bottom" | "both" | undefined;
|
|
@@ -5914,7 +6106,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
5914
6106
|
icon?: string | undefined;
|
|
5915
6107
|
locations?: ("record_header" | "list_toolbar" | "list_item" | "record_more" | "record_related" | "record_section")[] | undefined;
|
|
5916
6108
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
5917
|
-
type?: "url" | "form" | "api" | "modal" | "
|
|
6109
|
+
type?: "url" | "form" | "api" | "modal" | "flow" | "script" | undefined;
|
|
5918
6110
|
target?: string | undefined;
|
|
5919
6111
|
openIn?: "self" | "new-tab" | undefined;
|
|
5920
6112
|
body?: {
|
|
@@ -5965,7 +6157,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
5965
6157
|
generatedBy?: string | undefined;
|
|
5966
6158
|
} | undefined;
|
|
5967
6159
|
} | undefined;
|
|
5968
|
-
requiresFeature?: "organization" | "twoFactor" | "
|
|
6160
|
+
requiresFeature?: "organization" | "twoFactor" | "multiOrgEnabled" | "degradedTenancy" | "oidcProvider" | "sso" | "ssoEnforced" | "deviceAuthorization" | "admin" | "phoneNumber" | "phoneNumberOtp" | undefined;
|
|
5969
6161
|
}[] | undefined;
|
|
5970
6162
|
variant?: "primary" | "secondary" | "danger" | "ghost" | "link" | undefined;
|
|
5971
6163
|
order?: number | undefined;
|
|
@@ -5994,7 +6186,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
5994
6186
|
generatedBy?: string | undefined;
|
|
5995
6187
|
} | undefined;
|
|
5996
6188
|
} | undefined;
|
|
5997
|
-
requiresFeature?: "organization" | "twoFactor" | "
|
|
6189
|
+
requiresFeature?: "organization" | "twoFactor" | "multiOrgEnabled" | "degradedTenancy" | "oidcProvider" | "sso" | "ssoEnforced" | "deviceAuthorization" | "admin" | "phoneNumber" | "phoneNumberOtp" | undefined;
|
|
5998
6190
|
disabled?: string | boolean | {
|
|
5999
6191
|
dialect: "cel" | "cron" | "template";
|
|
6000
6192
|
source?: string | undefined;
|
|
@@ -6082,6 +6274,24 @@ declare const SysApprovalApprover: Omit<{
|
|
|
6082
6274
|
readonly storage?: {
|
|
6083
6275
|
notNull?: boolean | undefined;
|
|
6084
6276
|
} | undefined;
|
|
6277
|
+
readonly visibleWhen?: string | {
|
|
6278
|
+
dialect: "cel" | "cron" | "template";
|
|
6279
|
+
source?: string | undefined;
|
|
6280
|
+
ast?: unknown;
|
|
6281
|
+
meta?: {
|
|
6282
|
+
rationale?: string | undefined;
|
|
6283
|
+
generatedBy?: string | undefined;
|
|
6284
|
+
} | undefined;
|
|
6285
|
+
} | undefined;
|
|
6286
|
+
readonly readonlyWhen?: string | {
|
|
6287
|
+
dialect: "cel" | "cron" | "template";
|
|
6288
|
+
source?: string | undefined;
|
|
6289
|
+
ast?: unknown;
|
|
6290
|
+
meta?: {
|
|
6291
|
+
rationale?: string | undefined;
|
|
6292
|
+
generatedBy?: string | undefined;
|
|
6293
|
+
} | undefined;
|
|
6294
|
+
} | undefined;
|
|
6085
6295
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
6086
6296
|
readonly _lockReason?: string | undefined;
|
|
6087
6297
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -6113,15 +6323,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
6113
6323
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
6114
6324
|
} | undefined;
|
|
6115
6325
|
readonly reference?: string | undefined;
|
|
6116
|
-
readonly visibleWhen?: string | {
|
|
6117
|
-
dialect: "cel" | "cron" | "template";
|
|
6118
|
-
source?: string | undefined;
|
|
6119
|
-
ast?: unknown;
|
|
6120
|
-
meta?: {
|
|
6121
|
-
rationale?: string | undefined;
|
|
6122
|
-
generatedBy?: string | undefined;
|
|
6123
|
-
} | undefined;
|
|
6124
|
-
} | undefined;
|
|
6125
6326
|
readonly scale?: number | undefined;
|
|
6126
6327
|
readonly searchable?: boolean | undefined;
|
|
6127
6328
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -6130,6 +6331,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
6130
6331
|
readonly minLength?: number | undefined;
|
|
6131
6332
|
readonly min?: number | undefined;
|
|
6132
6333
|
readonly max?: number | undefined;
|
|
6334
|
+
readonly useGrouping?: boolean | undefined;
|
|
6133
6335
|
readonly accept?: string[] | undefined;
|
|
6134
6336
|
readonly maxSize?: number | undefined;
|
|
6135
6337
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -6163,15 +6365,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
6163
6365
|
readonly dimensions?: number | undefined;
|
|
6164
6366
|
readonly trackHistory?: boolean | undefined;
|
|
6165
6367
|
readonly group?: string | undefined;
|
|
6166
|
-
readonly readonlyWhen?: string | {
|
|
6167
|
-
dialect: "cel" | "cron" | "template";
|
|
6168
|
-
source?: string | undefined;
|
|
6169
|
-
ast?: unknown;
|
|
6170
|
-
meta?: {
|
|
6171
|
-
rationale?: string | undefined;
|
|
6172
|
-
generatedBy?: string | undefined;
|
|
6173
|
-
} | undefined;
|
|
6174
|
-
} | undefined;
|
|
6175
6368
|
readonly requiredWhen?: string | {
|
|
6176
6369
|
dialect: "cel" | "cron" | "template";
|
|
6177
6370
|
source?: string | undefined;
|
|
@@ -6183,6 +6376,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
6183
6376
|
} | undefined;
|
|
6184
6377
|
readonly conditionalRequired?: undefined;
|
|
6185
6378
|
readonly hidden?: boolean | undefined;
|
|
6379
|
+
readonly internal?: boolean | undefined;
|
|
6186
6380
|
readonly requiredPermissions?: string[] | undefined;
|
|
6187
6381
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
6188
6382
|
readonly system?: boolean | undefined;
|
|
@@ -6237,6 +6431,24 @@ declare const SysApprovalApprover: Omit<{
|
|
|
6237
6431
|
readonly storage?: {
|
|
6238
6432
|
notNull?: boolean | undefined;
|
|
6239
6433
|
} | undefined;
|
|
6434
|
+
readonly visibleWhen?: string | {
|
|
6435
|
+
dialect: "cel" | "cron" | "template";
|
|
6436
|
+
source?: string | undefined;
|
|
6437
|
+
ast?: unknown;
|
|
6438
|
+
meta?: {
|
|
6439
|
+
rationale?: string | undefined;
|
|
6440
|
+
generatedBy?: string | undefined;
|
|
6441
|
+
} | undefined;
|
|
6442
|
+
} | undefined;
|
|
6443
|
+
readonly readonlyWhen?: string | {
|
|
6444
|
+
dialect: "cel" | "cron" | "template";
|
|
6445
|
+
source?: string | undefined;
|
|
6446
|
+
ast?: unknown;
|
|
6447
|
+
meta?: {
|
|
6448
|
+
rationale?: string | undefined;
|
|
6449
|
+
generatedBy?: string | undefined;
|
|
6450
|
+
} | undefined;
|
|
6451
|
+
} | undefined;
|
|
6240
6452
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
6241
6453
|
readonly _lockReason?: string | undefined;
|
|
6242
6454
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -6268,15 +6480,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
6268
6480
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
6269
6481
|
} | undefined;
|
|
6270
6482
|
readonly reference?: string | undefined;
|
|
6271
|
-
readonly visibleWhen?: string | {
|
|
6272
|
-
dialect: "cel" | "cron" | "template";
|
|
6273
|
-
source?: string | undefined;
|
|
6274
|
-
ast?: unknown;
|
|
6275
|
-
meta?: {
|
|
6276
|
-
rationale?: string | undefined;
|
|
6277
|
-
generatedBy?: string | undefined;
|
|
6278
|
-
} | undefined;
|
|
6279
|
-
} | undefined;
|
|
6280
6483
|
readonly scale?: number | undefined;
|
|
6281
6484
|
readonly searchable?: boolean | undefined;
|
|
6282
6485
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -6285,6 +6488,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
6285
6488
|
readonly minLength?: number | undefined;
|
|
6286
6489
|
readonly min?: number | undefined;
|
|
6287
6490
|
readonly max?: number | undefined;
|
|
6491
|
+
readonly useGrouping?: boolean | undefined;
|
|
6288
6492
|
readonly accept?: string[] | undefined;
|
|
6289
6493
|
readonly maxSize?: number | undefined;
|
|
6290
6494
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -6318,15 +6522,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
6318
6522
|
readonly dimensions?: number | undefined;
|
|
6319
6523
|
readonly trackHistory?: boolean | undefined;
|
|
6320
6524
|
readonly group?: string | undefined;
|
|
6321
|
-
readonly readonlyWhen?: string | {
|
|
6322
|
-
dialect: "cel" | "cron" | "template";
|
|
6323
|
-
source?: string | undefined;
|
|
6324
|
-
ast?: unknown;
|
|
6325
|
-
meta?: {
|
|
6326
|
-
rationale?: string | undefined;
|
|
6327
|
-
generatedBy?: string | undefined;
|
|
6328
|
-
} | undefined;
|
|
6329
|
-
} | undefined;
|
|
6330
6525
|
readonly requiredWhen?: string | {
|
|
6331
6526
|
dialect: "cel" | "cron" | "template";
|
|
6332
6527
|
source?: string | undefined;
|
|
@@ -6338,6 +6533,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
6338
6533
|
} | undefined;
|
|
6339
6534
|
readonly conditionalRequired?: undefined;
|
|
6340
6535
|
readonly hidden?: boolean | undefined;
|
|
6536
|
+
readonly internal?: boolean | undefined;
|
|
6341
6537
|
readonly requiredPermissions?: string[] | undefined;
|
|
6342
6538
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
6343
6539
|
readonly system?: boolean | undefined;
|
|
@@ -6375,6 +6571,24 @@ declare const SysApprovalApprover: Omit<{
|
|
|
6375
6571
|
readonly storage?: {
|
|
6376
6572
|
notNull?: boolean | undefined;
|
|
6377
6573
|
} | undefined;
|
|
6574
|
+
readonly visibleWhen?: string | {
|
|
6575
|
+
dialect: "cel" | "cron" | "template";
|
|
6576
|
+
source?: string | undefined;
|
|
6577
|
+
ast?: unknown;
|
|
6578
|
+
meta?: {
|
|
6579
|
+
rationale?: string | undefined;
|
|
6580
|
+
generatedBy?: string | undefined;
|
|
6581
|
+
} | undefined;
|
|
6582
|
+
} | undefined;
|
|
6583
|
+
readonly readonlyWhen?: string | {
|
|
6584
|
+
dialect: "cel" | "cron" | "template";
|
|
6585
|
+
source?: string | undefined;
|
|
6586
|
+
ast?: unknown;
|
|
6587
|
+
meta?: {
|
|
6588
|
+
rationale?: string | undefined;
|
|
6589
|
+
generatedBy?: string | undefined;
|
|
6590
|
+
} | undefined;
|
|
6591
|
+
} | undefined;
|
|
6378
6592
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
6379
6593
|
readonly _lockReason?: string | undefined;
|
|
6380
6594
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -6406,15 +6620,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
6406
6620
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
6407
6621
|
} | undefined;
|
|
6408
6622
|
readonly reference?: string | undefined;
|
|
6409
|
-
readonly visibleWhen?: string | {
|
|
6410
|
-
dialect: "cel" | "cron" | "template";
|
|
6411
|
-
source?: string | undefined;
|
|
6412
|
-
ast?: unknown;
|
|
6413
|
-
meta?: {
|
|
6414
|
-
rationale?: string | undefined;
|
|
6415
|
-
generatedBy?: string | undefined;
|
|
6416
|
-
} | undefined;
|
|
6417
|
-
} | undefined;
|
|
6418
6623
|
readonly scale?: number | undefined;
|
|
6419
6624
|
readonly searchable?: boolean | undefined;
|
|
6420
6625
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -6423,6 +6628,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
6423
6628
|
readonly minLength?: number | undefined;
|
|
6424
6629
|
readonly min?: number | undefined;
|
|
6425
6630
|
readonly max?: number | undefined;
|
|
6631
|
+
readonly useGrouping?: boolean | undefined;
|
|
6426
6632
|
readonly accept?: string[] | undefined;
|
|
6427
6633
|
readonly maxSize?: number | undefined;
|
|
6428
6634
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -6456,15 +6662,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
6456
6662
|
readonly dimensions?: number | undefined;
|
|
6457
6663
|
readonly trackHistory?: boolean | undefined;
|
|
6458
6664
|
readonly group?: string | undefined;
|
|
6459
|
-
readonly readonlyWhen?: string | {
|
|
6460
|
-
dialect: "cel" | "cron" | "template";
|
|
6461
|
-
source?: string | undefined;
|
|
6462
|
-
ast?: unknown;
|
|
6463
|
-
meta?: {
|
|
6464
|
-
rationale?: string | undefined;
|
|
6465
|
-
generatedBy?: string | undefined;
|
|
6466
|
-
} | undefined;
|
|
6467
|
-
} | undefined;
|
|
6468
6665
|
readonly requiredWhen?: string | {
|
|
6469
6666
|
dialect: "cel" | "cron" | "template";
|
|
6470
6667
|
source?: string | undefined;
|
|
@@ -6476,6 +6673,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
6476
6673
|
} | undefined;
|
|
6477
6674
|
readonly conditionalRequired?: undefined;
|
|
6478
6675
|
readonly hidden?: boolean | undefined;
|
|
6676
|
+
readonly internal?: boolean | undefined;
|
|
6479
6677
|
readonly requiredPermissions?: string[] | undefined;
|
|
6480
6678
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
6481
6679
|
readonly system?: boolean | undefined;
|
|
@@ -6549,6 +6747,7 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
6549
6747
|
scale?: number | undefined;
|
|
6550
6748
|
min?: number | undefined;
|
|
6551
6749
|
max?: number | undefined;
|
|
6750
|
+
useGrouping?: boolean | undefined;
|
|
6552
6751
|
accept?: string[] | undefined;
|
|
6553
6752
|
maxSize?: number | undefined;
|
|
6554
6753
|
options?: {
|
|
@@ -6648,35 +6847,76 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
6648
6847
|
generatedBy?: string | undefined;
|
|
6649
6848
|
} | undefined;
|
|
6650
6849
|
} | undefined;
|
|
6651
|
-
conditionalRequired?: undefined;
|
|
6652
|
-
widget?: string | undefined;
|
|
6653
|
-
hidden?: boolean | undefined;
|
|
6654
|
-
|
|
6655
|
-
|
|
6656
|
-
|
|
6657
|
-
|
|
6658
|
-
|
|
6659
|
-
|
|
6660
|
-
|
|
6661
|
-
|
|
6662
|
-
|
|
6663
|
-
|
|
6664
|
-
|
|
6665
|
-
|
|
6666
|
-
|
|
6667
|
-
|
|
6668
|
-
|
|
6669
|
-
|
|
6670
|
-
|
|
6671
|
-
|
|
6672
|
-
|
|
6673
|
-
|
|
6674
|
-
|
|
6675
|
-
|
|
6676
|
-
|
|
6677
|
-
|
|
6678
|
-
|
|
6679
|
-
|
|
6850
|
+
conditionalRequired?: undefined;
|
|
6851
|
+
widget?: string | undefined;
|
|
6852
|
+
hidden?: boolean | undefined;
|
|
6853
|
+
internal?: boolean | undefined;
|
|
6854
|
+
readonly?: boolean | undefined;
|
|
6855
|
+
requiredPermissions?: string[] | undefined;
|
|
6856
|
+
ackPlaintextMasking?: boolean | undefined;
|
|
6857
|
+
system?: boolean | undefined;
|
|
6858
|
+
sortable?: boolean | undefined;
|
|
6859
|
+
inlineHelpText?: string | undefined;
|
|
6860
|
+
autonumberFormat?: string | undefined;
|
|
6861
|
+
externalId?: boolean | undefined;
|
|
6862
|
+
}>;
|
|
6863
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
6864
|
+
_lockReason?: string | undefined;
|
|
6865
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
6866
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
6867
|
+
_packageId?: string | undefined;
|
|
6868
|
+
_packageVersion?: string | undefined;
|
|
6869
|
+
_lockDocsUrl?: string | undefined;
|
|
6870
|
+
label?: string | undefined;
|
|
6871
|
+
pluralLabel?: string | undefined;
|
|
6872
|
+
description?: string | undefined;
|
|
6873
|
+
icon?: string | undefined;
|
|
6874
|
+
isSystem?: boolean | undefined;
|
|
6875
|
+
managedBy?: "platform" | "config" | "system-data" | "engine-owned" | "append-only" | "better-auth" | undefined;
|
|
6876
|
+
ownership?: "none" | "org" | "user" | "business_unit" | undefined;
|
|
6877
|
+
userActions?: {
|
|
6878
|
+
create?: boolean | {
|
|
6879
|
+
enabled?: boolean | undefined;
|
|
6880
|
+
visibleWhen?: string | {
|
|
6881
|
+
dialect: "cel" | "cron" | "template";
|
|
6882
|
+
source?: string | undefined;
|
|
6883
|
+
ast?: unknown;
|
|
6884
|
+
meta?: {
|
|
6885
|
+
rationale?: string | undefined;
|
|
6886
|
+
generatedBy?: string | undefined;
|
|
6887
|
+
} | undefined;
|
|
6888
|
+
} | undefined;
|
|
6889
|
+
disabledWhen?: string | {
|
|
6890
|
+
dialect: "cel" | "cron" | "template";
|
|
6891
|
+
source?: string | undefined;
|
|
6892
|
+
ast?: unknown;
|
|
6893
|
+
meta?: {
|
|
6894
|
+
rationale?: string | undefined;
|
|
6895
|
+
generatedBy?: string | undefined;
|
|
6896
|
+
} | undefined;
|
|
6897
|
+
} | undefined;
|
|
6898
|
+
} | undefined;
|
|
6899
|
+
import?: boolean | {
|
|
6900
|
+
enabled?: boolean | undefined;
|
|
6901
|
+
visibleWhen?: string | {
|
|
6902
|
+
dialect: "cel" | "cron" | "template";
|
|
6903
|
+
source?: string | undefined;
|
|
6904
|
+
ast?: unknown;
|
|
6905
|
+
meta?: {
|
|
6906
|
+
rationale?: string | undefined;
|
|
6907
|
+
generatedBy?: string | undefined;
|
|
6908
|
+
} | undefined;
|
|
6909
|
+
} | undefined;
|
|
6910
|
+
disabledWhen?: string | {
|
|
6911
|
+
dialect: "cel" | "cron" | "template";
|
|
6912
|
+
source?: string | undefined;
|
|
6913
|
+
ast?: unknown;
|
|
6914
|
+
meta?: {
|
|
6915
|
+
rationale?: string | undefined;
|
|
6916
|
+
generatedBy?: string | undefined;
|
|
6917
|
+
} | undefined;
|
|
6918
|
+
} | undefined;
|
|
6919
|
+
} | undefined;
|
|
6680
6920
|
edit?: boolean | {
|
|
6681
6921
|
enabled?: boolean | undefined;
|
|
6682
6922
|
visibleWhen?: string | {
|
|
@@ -6936,6 +7176,16 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
6936
7176
|
} | undefined;
|
|
6937
7177
|
responsive?: undefined;
|
|
6938
7178
|
performance?: undefined;
|
|
7179
|
+
striped?: undefined;
|
|
7180
|
+
bordered?: undefined;
|
|
7181
|
+
virtualScroll?: undefined;
|
|
7182
|
+
exportOptions?: ("json" | "xlsx" | "csv")[] | {
|
|
7183
|
+
formats?: ("json" | "xlsx" | "csv")[] | undefined;
|
|
7184
|
+
maxRecords?: number | undefined;
|
|
7185
|
+
includeHeaders?: boolean | undefined;
|
|
7186
|
+
fileNamePrefix?: string | undefined;
|
|
7187
|
+
streaming?: boolean | undefined;
|
|
7188
|
+
} | undefined;
|
|
6939
7189
|
appearance?: {
|
|
6940
7190
|
showDescription?: boolean | undefined;
|
|
6941
7191
|
allowedVisualizations?: ("tree" | "grid" | "gallery" | "kanban" | "calendar" | "timeline" | "gantt" | "chart" | "map")[] | undefined;
|
|
@@ -7000,8 +7250,6 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7000
7250
|
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
7001
7251
|
searchableFields?: string[] | undefined;
|
|
7002
7252
|
filterableFields?: string[] | undefined;
|
|
7003
|
-
striped?: boolean | undefined;
|
|
7004
|
-
bordered?: boolean | undefined;
|
|
7005
7253
|
compactToolbar?: boolean | undefined;
|
|
7006
7254
|
selection?: {
|
|
7007
7255
|
type?: "none" | "multiple" | "single" | undefined;
|
|
@@ -7066,7 +7314,6 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7066
7314
|
maxRecords?: number | undefined;
|
|
7067
7315
|
batchSize?: number | undefined;
|
|
7068
7316
|
}[] | undefined;
|
|
7069
|
-
virtualScroll?: boolean | undefined;
|
|
7070
7317
|
conditionalFormatting?: {
|
|
7071
7318
|
condition: string | {
|
|
7072
7319
|
dialect: "cel" | "cron" | "template";
|
|
@@ -7079,7 +7326,6 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7079
7326
|
};
|
|
7080
7327
|
style: Record<string, string>;
|
|
7081
7328
|
}[] | undefined;
|
|
7082
|
-
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
7083
7329
|
addRecord?: {
|
|
7084
7330
|
enabled?: boolean | undefined;
|
|
7085
7331
|
position?: "top" | "bottom" | "both" | undefined;
|
|
@@ -7140,7 +7386,7 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7140
7386
|
icon?: string | undefined;
|
|
7141
7387
|
locations?: ("record_header" | "list_toolbar" | "list_item" | "record_more" | "record_related" | "record_section")[] | undefined;
|
|
7142
7388
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
7143
|
-
type?: "url" | "form" | "api" | "modal" | "
|
|
7389
|
+
type?: "url" | "form" | "api" | "modal" | "flow" | "script" | undefined;
|
|
7144
7390
|
target?: string | undefined;
|
|
7145
7391
|
openIn?: "self" | "new-tab" | undefined;
|
|
7146
7392
|
body?: {
|
|
@@ -7191,7 +7437,7 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7191
7437
|
generatedBy?: string | undefined;
|
|
7192
7438
|
} | undefined;
|
|
7193
7439
|
} | undefined;
|
|
7194
|
-
requiresFeature?: "organization" | "twoFactor" | "
|
|
7440
|
+
requiresFeature?: "organization" | "twoFactor" | "multiOrgEnabled" | "degradedTenancy" | "oidcProvider" | "sso" | "ssoEnforced" | "deviceAuthorization" | "admin" | "phoneNumber" | "phoneNumberOtp" | undefined;
|
|
7195
7441
|
}[] | undefined;
|
|
7196
7442
|
variant?: "primary" | "secondary" | "danger" | "ghost" | "link" | undefined;
|
|
7197
7443
|
order?: number | undefined;
|
|
@@ -7220,7 +7466,7 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7220
7466
|
generatedBy?: string | undefined;
|
|
7221
7467
|
} | undefined;
|
|
7222
7468
|
} | undefined;
|
|
7223
|
-
requiresFeature?: "organization" | "twoFactor" | "
|
|
7469
|
+
requiresFeature?: "organization" | "twoFactor" | "multiOrgEnabled" | "degradedTenancy" | "oidcProvider" | "sso" | "ssoEnforced" | "deviceAuthorization" | "admin" | "phoneNumber" | "phoneNumberOtp" | undefined;
|
|
7224
7470
|
disabled?: string | boolean | {
|
|
7225
7471
|
dialect: "cel" | "cron" | "template";
|
|
7226
7472
|
source?: string | undefined;
|
|
@@ -7329,6 +7575,24 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7329
7575
|
readonly storage?: {
|
|
7330
7576
|
notNull?: boolean | undefined;
|
|
7331
7577
|
} | undefined;
|
|
7578
|
+
readonly visibleWhen?: string | {
|
|
7579
|
+
dialect: "cel" | "cron" | "template";
|
|
7580
|
+
source?: string | undefined;
|
|
7581
|
+
ast?: unknown;
|
|
7582
|
+
meta?: {
|
|
7583
|
+
rationale?: string | undefined;
|
|
7584
|
+
generatedBy?: string | undefined;
|
|
7585
|
+
} | undefined;
|
|
7586
|
+
} | undefined;
|
|
7587
|
+
readonly readonlyWhen?: string | {
|
|
7588
|
+
dialect: "cel" | "cron" | "template";
|
|
7589
|
+
source?: string | undefined;
|
|
7590
|
+
ast?: unknown;
|
|
7591
|
+
meta?: {
|
|
7592
|
+
rationale?: string | undefined;
|
|
7593
|
+
generatedBy?: string | undefined;
|
|
7594
|
+
} | undefined;
|
|
7595
|
+
} | undefined;
|
|
7332
7596
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
7333
7597
|
readonly _lockReason?: string | undefined;
|
|
7334
7598
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -7360,15 +7624,6 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7360
7624
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
7361
7625
|
} | undefined;
|
|
7362
7626
|
readonly reference?: string | undefined;
|
|
7363
|
-
readonly visibleWhen?: string | {
|
|
7364
|
-
dialect: "cel" | "cron" | "template";
|
|
7365
|
-
source?: string | undefined;
|
|
7366
|
-
ast?: unknown;
|
|
7367
|
-
meta?: {
|
|
7368
|
-
rationale?: string | undefined;
|
|
7369
|
-
generatedBy?: string | undefined;
|
|
7370
|
-
} | undefined;
|
|
7371
|
-
} | undefined;
|
|
7372
7627
|
readonly scale?: number | undefined;
|
|
7373
7628
|
readonly searchable?: boolean | undefined;
|
|
7374
7629
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -7377,6 +7632,7 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7377
7632
|
readonly minLength?: number | undefined;
|
|
7378
7633
|
readonly min?: number | undefined;
|
|
7379
7634
|
readonly max?: number | undefined;
|
|
7635
|
+
readonly useGrouping?: boolean | undefined;
|
|
7380
7636
|
readonly accept?: string[] | undefined;
|
|
7381
7637
|
readonly maxSize?: number | undefined;
|
|
7382
7638
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -7410,15 +7666,6 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7410
7666
|
readonly dimensions?: number | undefined;
|
|
7411
7667
|
readonly trackHistory?: boolean | undefined;
|
|
7412
7668
|
readonly group?: string | undefined;
|
|
7413
|
-
readonly readonlyWhen?: string | {
|
|
7414
|
-
dialect: "cel" | "cron" | "template";
|
|
7415
|
-
source?: string | undefined;
|
|
7416
|
-
ast?: unknown;
|
|
7417
|
-
meta?: {
|
|
7418
|
-
rationale?: string | undefined;
|
|
7419
|
-
generatedBy?: string | undefined;
|
|
7420
|
-
} | undefined;
|
|
7421
|
-
} | undefined;
|
|
7422
7669
|
readonly requiredWhen?: string | {
|
|
7423
7670
|
dialect: "cel" | "cron" | "template";
|
|
7424
7671
|
source?: string | undefined;
|
|
@@ -7430,6 +7677,7 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7430
7677
|
} | undefined;
|
|
7431
7678
|
readonly conditionalRequired?: undefined;
|
|
7432
7679
|
readonly hidden?: boolean | undefined;
|
|
7680
|
+
readonly internal?: boolean | undefined;
|
|
7433
7681
|
readonly requiredPermissions?: string[] | undefined;
|
|
7434
7682
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
7435
7683
|
readonly system?: boolean | undefined;
|
|
@@ -7485,6 +7733,24 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7485
7733
|
readonly storage?: {
|
|
7486
7734
|
notNull?: boolean | undefined;
|
|
7487
7735
|
} | undefined;
|
|
7736
|
+
readonly visibleWhen?: string | {
|
|
7737
|
+
dialect: "cel" | "cron" | "template";
|
|
7738
|
+
source?: string | undefined;
|
|
7739
|
+
ast?: unknown;
|
|
7740
|
+
meta?: {
|
|
7741
|
+
rationale?: string | undefined;
|
|
7742
|
+
generatedBy?: string | undefined;
|
|
7743
|
+
} | undefined;
|
|
7744
|
+
} | undefined;
|
|
7745
|
+
readonly readonlyWhen?: string | {
|
|
7746
|
+
dialect: "cel" | "cron" | "template";
|
|
7747
|
+
source?: string | undefined;
|
|
7748
|
+
ast?: unknown;
|
|
7749
|
+
meta?: {
|
|
7750
|
+
rationale?: string | undefined;
|
|
7751
|
+
generatedBy?: string | undefined;
|
|
7752
|
+
} | undefined;
|
|
7753
|
+
} | undefined;
|
|
7488
7754
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
7489
7755
|
readonly _lockReason?: string | undefined;
|
|
7490
7756
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -7516,15 +7782,6 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7516
7782
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
7517
7783
|
} | undefined;
|
|
7518
7784
|
readonly reference?: string | undefined;
|
|
7519
|
-
readonly visibleWhen?: string | {
|
|
7520
|
-
dialect: "cel" | "cron" | "template";
|
|
7521
|
-
source?: string | undefined;
|
|
7522
|
-
ast?: unknown;
|
|
7523
|
-
meta?: {
|
|
7524
|
-
rationale?: string | undefined;
|
|
7525
|
-
generatedBy?: string | undefined;
|
|
7526
|
-
} | undefined;
|
|
7527
|
-
} | undefined;
|
|
7528
7785
|
readonly scale?: number | undefined;
|
|
7529
7786
|
readonly searchable?: boolean | undefined;
|
|
7530
7787
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -7533,6 +7790,7 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7533
7790
|
readonly minLength?: number | undefined;
|
|
7534
7791
|
readonly min?: number | undefined;
|
|
7535
7792
|
readonly max?: number | undefined;
|
|
7793
|
+
readonly useGrouping?: boolean | undefined;
|
|
7536
7794
|
readonly accept?: string[] | undefined;
|
|
7537
7795
|
readonly maxSize?: number | undefined;
|
|
7538
7796
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -7566,15 +7824,6 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7566
7824
|
readonly dimensions?: number | undefined;
|
|
7567
7825
|
readonly trackHistory?: boolean | undefined;
|
|
7568
7826
|
readonly group?: string | undefined;
|
|
7569
|
-
readonly readonlyWhen?: string | {
|
|
7570
|
-
dialect: "cel" | "cron" | "template";
|
|
7571
|
-
source?: string | undefined;
|
|
7572
|
-
ast?: unknown;
|
|
7573
|
-
meta?: {
|
|
7574
|
-
rationale?: string | undefined;
|
|
7575
|
-
generatedBy?: string | undefined;
|
|
7576
|
-
} | undefined;
|
|
7577
|
-
} | undefined;
|
|
7578
7827
|
readonly requiredWhen?: string | {
|
|
7579
7828
|
dialect: "cel" | "cron" | "template";
|
|
7580
7829
|
source?: string | undefined;
|
|
@@ -7586,6 +7835,7 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7586
7835
|
} | undefined;
|
|
7587
7836
|
readonly conditionalRequired?: undefined;
|
|
7588
7837
|
readonly hidden?: boolean | undefined;
|
|
7838
|
+
readonly internal?: boolean | undefined;
|
|
7589
7839
|
readonly requiredPermissions?: string[] | undefined;
|
|
7590
7840
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
7591
7841
|
readonly system?: boolean | undefined;
|
|
@@ -7623,6 +7873,24 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7623
7873
|
readonly storage?: {
|
|
7624
7874
|
notNull?: boolean | undefined;
|
|
7625
7875
|
} | undefined;
|
|
7876
|
+
readonly visibleWhen?: string | {
|
|
7877
|
+
dialect: "cel" | "cron" | "template";
|
|
7878
|
+
source?: string | undefined;
|
|
7879
|
+
ast?: unknown;
|
|
7880
|
+
meta?: {
|
|
7881
|
+
rationale?: string | undefined;
|
|
7882
|
+
generatedBy?: string | undefined;
|
|
7883
|
+
} | undefined;
|
|
7884
|
+
} | undefined;
|
|
7885
|
+
readonly readonlyWhen?: string | {
|
|
7886
|
+
dialect: "cel" | "cron" | "template";
|
|
7887
|
+
source?: string | undefined;
|
|
7888
|
+
ast?: unknown;
|
|
7889
|
+
meta?: {
|
|
7890
|
+
rationale?: string | undefined;
|
|
7891
|
+
generatedBy?: string | undefined;
|
|
7892
|
+
} | undefined;
|
|
7893
|
+
} | undefined;
|
|
7626
7894
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
7627
7895
|
readonly _lockReason?: string | undefined;
|
|
7628
7896
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -7654,15 +7922,6 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7654
7922
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
7655
7923
|
} | undefined;
|
|
7656
7924
|
readonly reference?: string | undefined;
|
|
7657
|
-
readonly visibleWhen?: string | {
|
|
7658
|
-
dialect: "cel" | "cron" | "template";
|
|
7659
|
-
source?: string | undefined;
|
|
7660
|
-
ast?: unknown;
|
|
7661
|
-
meta?: {
|
|
7662
|
-
rationale?: string | undefined;
|
|
7663
|
-
generatedBy?: string | undefined;
|
|
7664
|
-
} | undefined;
|
|
7665
|
-
} | undefined;
|
|
7666
7925
|
readonly scale?: number | undefined;
|
|
7667
7926
|
readonly searchable?: boolean | undefined;
|
|
7668
7927
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -7671,6 +7930,7 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7671
7930
|
readonly minLength?: number | undefined;
|
|
7672
7931
|
readonly min?: number | undefined;
|
|
7673
7932
|
readonly max?: number | undefined;
|
|
7933
|
+
readonly useGrouping?: boolean | undefined;
|
|
7674
7934
|
readonly accept?: string[] | undefined;
|
|
7675
7935
|
readonly maxSize?: number | undefined;
|
|
7676
7936
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -7704,15 +7964,6 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7704
7964
|
readonly dimensions?: number | undefined;
|
|
7705
7965
|
readonly trackHistory?: boolean | undefined;
|
|
7706
7966
|
readonly group?: string | undefined;
|
|
7707
|
-
readonly readonlyWhen?: string | {
|
|
7708
|
-
dialect: "cel" | "cron" | "template";
|
|
7709
|
-
source?: string | undefined;
|
|
7710
|
-
ast?: unknown;
|
|
7711
|
-
meta?: {
|
|
7712
|
-
rationale?: string | undefined;
|
|
7713
|
-
generatedBy?: string | undefined;
|
|
7714
|
-
} | undefined;
|
|
7715
|
-
} | undefined;
|
|
7716
7967
|
readonly requiredWhen?: string | {
|
|
7717
7968
|
dialect: "cel" | "cron" | "template";
|
|
7718
7969
|
source?: string | undefined;
|
|
@@ -7724,6 +7975,7 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7724
7975
|
} | undefined;
|
|
7725
7976
|
readonly conditionalRequired?: undefined;
|
|
7726
7977
|
readonly hidden?: boolean | undefined;
|
|
7978
|
+
readonly internal?: boolean | undefined;
|
|
7727
7979
|
readonly requiredPermissions?: string[] | undefined;
|
|
7728
7980
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
7729
7981
|
readonly system?: boolean | undefined;
|
|
@@ -7761,6 +8013,24 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7761
8013
|
readonly storage?: {
|
|
7762
8014
|
notNull?: boolean | undefined;
|
|
7763
8015
|
} | undefined;
|
|
8016
|
+
readonly visibleWhen?: string | {
|
|
8017
|
+
dialect: "cel" | "cron" | "template";
|
|
8018
|
+
source?: string | undefined;
|
|
8019
|
+
ast?: unknown;
|
|
8020
|
+
meta?: {
|
|
8021
|
+
rationale?: string | undefined;
|
|
8022
|
+
generatedBy?: string | undefined;
|
|
8023
|
+
} | undefined;
|
|
8024
|
+
} | undefined;
|
|
8025
|
+
readonly readonlyWhen?: string | {
|
|
8026
|
+
dialect: "cel" | "cron" | "template";
|
|
8027
|
+
source?: string | undefined;
|
|
8028
|
+
ast?: unknown;
|
|
8029
|
+
meta?: {
|
|
8030
|
+
rationale?: string | undefined;
|
|
8031
|
+
generatedBy?: string | undefined;
|
|
8032
|
+
} | undefined;
|
|
8033
|
+
} | undefined;
|
|
7764
8034
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
7765
8035
|
readonly _lockReason?: string | undefined;
|
|
7766
8036
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -7792,15 +8062,6 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7792
8062
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
7793
8063
|
} | undefined;
|
|
7794
8064
|
readonly reference?: string | undefined;
|
|
7795
|
-
readonly visibleWhen?: string | {
|
|
7796
|
-
dialect: "cel" | "cron" | "template";
|
|
7797
|
-
source?: string | undefined;
|
|
7798
|
-
ast?: unknown;
|
|
7799
|
-
meta?: {
|
|
7800
|
-
rationale?: string | undefined;
|
|
7801
|
-
generatedBy?: string | undefined;
|
|
7802
|
-
} | undefined;
|
|
7803
|
-
} | undefined;
|
|
7804
8065
|
readonly scale?: number | undefined;
|
|
7805
8066
|
readonly searchable?: boolean | undefined;
|
|
7806
8067
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -7809,6 +8070,7 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7809
8070
|
readonly minLength?: number | undefined;
|
|
7810
8071
|
readonly min?: number | undefined;
|
|
7811
8072
|
readonly max?: number | undefined;
|
|
8073
|
+
readonly useGrouping?: boolean | undefined;
|
|
7812
8074
|
readonly accept?: string[] | undefined;
|
|
7813
8075
|
readonly maxSize?: number | undefined;
|
|
7814
8076
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -7842,15 +8104,6 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7842
8104
|
readonly dimensions?: number | undefined;
|
|
7843
8105
|
readonly trackHistory?: boolean | undefined;
|
|
7844
8106
|
readonly group?: string | undefined;
|
|
7845
|
-
readonly readonlyWhen?: string | {
|
|
7846
|
-
dialect: "cel" | "cron" | "template";
|
|
7847
|
-
source?: string | undefined;
|
|
7848
|
-
ast?: unknown;
|
|
7849
|
-
meta?: {
|
|
7850
|
-
rationale?: string | undefined;
|
|
7851
|
-
generatedBy?: string | undefined;
|
|
7852
|
-
} | undefined;
|
|
7853
|
-
} | undefined;
|
|
7854
8107
|
readonly requiredWhen?: string | {
|
|
7855
8108
|
dialect: "cel" | "cron" | "template";
|
|
7856
8109
|
source?: string | undefined;
|
|
@@ -7862,6 +8115,7 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7862
8115
|
} | undefined;
|
|
7863
8116
|
readonly conditionalRequired?: undefined;
|
|
7864
8117
|
readonly hidden?: boolean | undefined;
|
|
8118
|
+
readonly internal?: boolean | undefined;
|
|
7865
8119
|
readonly requiredPermissions?: string[] | undefined;
|
|
7866
8120
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
7867
8121
|
readonly system?: boolean | undefined;
|
|
@@ -7908,6 +8162,24 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7908
8162
|
readonly storage?: {
|
|
7909
8163
|
notNull?: boolean | undefined;
|
|
7910
8164
|
} | undefined;
|
|
8165
|
+
readonly visibleWhen?: string | {
|
|
8166
|
+
dialect: "cel" | "cron" | "template";
|
|
8167
|
+
source?: string | undefined;
|
|
8168
|
+
ast?: unknown;
|
|
8169
|
+
meta?: {
|
|
8170
|
+
rationale?: string | undefined;
|
|
8171
|
+
generatedBy?: string | undefined;
|
|
8172
|
+
} | undefined;
|
|
8173
|
+
} | undefined;
|
|
8174
|
+
readonly readonlyWhen?: string | {
|
|
8175
|
+
dialect: "cel" | "cron" | "template";
|
|
8176
|
+
source?: string | undefined;
|
|
8177
|
+
ast?: unknown;
|
|
8178
|
+
meta?: {
|
|
8179
|
+
rationale?: string | undefined;
|
|
8180
|
+
generatedBy?: string | undefined;
|
|
8181
|
+
} | undefined;
|
|
8182
|
+
} | undefined;
|
|
7911
8183
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
7912
8184
|
readonly _lockReason?: string | undefined;
|
|
7913
8185
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -7939,15 +8211,6 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7939
8211
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
7940
8212
|
} | undefined;
|
|
7941
8213
|
readonly reference?: string | undefined;
|
|
7942
|
-
readonly visibleWhen?: string | {
|
|
7943
|
-
dialect: "cel" | "cron" | "template";
|
|
7944
|
-
source?: string | undefined;
|
|
7945
|
-
ast?: unknown;
|
|
7946
|
-
meta?: {
|
|
7947
|
-
rationale?: string | undefined;
|
|
7948
|
-
generatedBy?: string | undefined;
|
|
7949
|
-
} | undefined;
|
|
7950
|
-
} | undefined;
|
|
7951
8214
|
readonly scale?: number | undefined;
|
|
7952
8215
|
readonly searchable?: boolean | undefined;
|
|
7953
8216
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -7956,6 +8219,7 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7956
8219
|
readonly minLength?: number | undefined;
|
|
7957
8220
|
readonly min?: number | undefined;
|
|
7958
8221
|
readonly max?: number | undefined;
|
|
8222
|
+
readonly useGrouping?: boolean | undefined;
|
|
7959
8223
|
readonly accept?: string[] | undefined;
|
|
7960
8224
|
readonly maxSize?: number | undefined;
|
|
7961
8225
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -7989,15 +8253,6 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7989
8253
|
readonly dimensions?: number | undefined;
|
|
7990
8254
|
readonly trackHistory?: boolean | undefined;
|
|
7991
8255
|
readonly group?: string | undefined;
|
|
7992
|
-
readonly readonlyWhen?: string | {
|
|
7993
|
-
dialect: "cel" | "cron" | "template";
|
|
7994
|
-
source?: string | undefined;
|
|
7995
|
-
ast?: unknown;
|
|
7996
|
-
meta?: {
|
|
7997
|
-
rationale?: string | undefined;
|
|
7998
|
-
generatedBy?: string | undefined;
|
|
7999
|
-
} | undefined;
|
|
8000
|
-
} | undefined;
|
|
8001
8256
|
readonly requiredWhen?: string | {
|
|
8002
8257
|
dialect: "cel" | "cron" | "template";
|
|
8003
8258
|
source?: string | undefined;
|
|
@@ -8009,6 +8264,7 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
8009
8264
|
} | undefined;
|
|
8010
8265
|
readonly conditionalRequired?: undefined;
|
|
8011
8266
|
readonly hidden?: boolean | undefined;
|
|
8267
|
+
readonly internal?: boolean | undefined;
|
|
8012
8268
|
readonly requiredPermissions?: string[] | undefined;
|
|
8013
8269
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
8014
8270
|
readonly system?: boolean | undefined;
|
|
@@ -8046,6 +8302,24 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
8046
8302
|
readonly storage?: {
|
|
8047
8303
|
notNull?: boolean | undefined;
|
|
8048
8304
|
} | undefined;
|
|
8305
|
+
readonly visibleWhen?: string | {
|
|
8306
|
+
dialect: "cel" | "cron" | "template";
|
|
8307
|
+
source?: string | undefined;
|
|
8308
|
+
ast?: unknown;
|
|
8309
|
+
meta?: {
|
|
8310
|
+
rationale?: string | undefined;
|
|
8311
|
+
generatedBy?: string | undefined;
|
|
8312
|
+
} | undefined;
|
|
8313
|
+
} | undefined;
|
|
8314
|
+
readonly readonlyWhen?: string | {
|
|
8315
|
+
dialect: "cel" | "cron" | "template";
|
|
8316
|
+
source?: string | undefined;
|
|
8317
|
+
ast?: unknown;
|
|
8318
|
+
meta?: {
|
|
8319
|
+
rationale?: string | undefined;
|
|
8320
|
+
generatedBy?: string | undefined;
|
|
8321
|
+
} | undefined;
|
|
8322
|
+
} | undefined;
|
|
8049
8323
|
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
8050
8324
|
readonly _lockReason?: string | undefined;
|
|
8051
8325
|
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
@@ -8077,15 +8351,6 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
8077
8351
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
8078
8352
|
} | undefined;
|
|
8079
8353
|
readonly reference?: string | undefined;
|
|
8080
|
-
readonly visibleWhen?: string | {
|
|
8081
|
-
dialect: "cel" | "cron" | "template";
|
|
8082
|
-
source?: string | undefined;
|
|
8083
|
-
ast?: unknown;
|
|
8084
|
-
meta?: {
|
|
8085
|
-
rationale?: string | undefined;
|
|
8086
|
-
generatedBy?: string | undefined;
|
|
8087
|
-
} | undefined;
|
|
8088
|
-
} | undefined;
|
|
8089
8354
|
readonly scale?: number | undefined;
|
|
8090
8355
|
readonly searchable?: boolean | undefined;
|
|
8091
8356
|
readonly unique?: boolean | "global" | "organization" | undefined;
|
|
@@ -8094,6 +8359,7 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
8094
8359
|
readonly minLength?: number | undefined;
|
|
8095
8360
|
readonly min?: number | undefined;
|
|
8096
8361
|
readonly max?: number | undefined;
|
|
8362
|
+
readonly useGrouping?: boolean | undefined;
|
|
8097
8363
|
readonly accept?: string[] | undefined;
|
|
8098
8364
|
readonly maxSize?: number | undefined;
|
|
8099
8365
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
@@ -8127,15 +8393,6 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
8127
8393
|
readonly dimensions?: number | undefined;
|
|
8128
8394
|
readonly trackHistory?: boolean | undefined;
|
|
8129
8395
|
readonly group?: string | undefined;
|
|
8130
|
-
readonly readonlyWhen?: string | {
|
|
8131
|
-
dialect: "cel" | "cron" | "template";
|
|
8132
|
-
source?: string | undefined;
|
|
8133
|
-
ast?: unknown;
|
|
8134
|
-
meta?: {
|
|
8135
|
-
rationale?: string | undefined;
|
|
8136
|
-
generatedBy?: string | undefined;
|
|
8137
|
-
} | undefined;
|
|
8138
|
-
} | undefined;
|
|
8139
8396
|
readonly requiredWhen?: string | {
|
|
8140
8397
|
dialect: "cel" | "cron" | "template";
|
|
8141
8398
|
source?: string | undefined;
|
|
@@ -8147,6 +8404,7 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
8147
8404
|
} | undefined;
|
|
8148
8405
|
readonly conditionalRequired?: undefined;
|
|
8149
8406
|
readonly hidden?: boolean | undefined;
|
|
8407
|
+
readonly internal?: boolean | undefined;
|
|
8150
8408
|
readonly requiredPermissions?: string[] | undefined;
|
|
8151
8409
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
8152
8410
|
readonly system?: boolean | undefined;
|
|
@@ -8241,10 +8499,13 @@ interface ApprovalResumeSurface {
|
|
|
8241
8499
|
* a decision from being recorded against a run that can never advance
|
|
8242
8500
|
* (#4420). Read-only; it never consumes the suspension.
|
|
8243
8501
|
*
|
|
8244
|
-
*
|
|
8245
|
-
*
|
|
8246
|
-
*
|
|
8247
|
-
*
|
|
8502
|
+
* Still distinct from {@link getRun}, but no longer on the axis this comment
|
|
8503
|
+
* used to name: since #8050 `getRun` also sees a run suspended by a PREVIOUS
|
|
8504
|
+
* process (it resolved `null` there before, unable to tell "waiting for a
|
|
8505
|
+
* human" from "dead"). The difference that remains is the one a pre-flight
|
|
8506
|
+
* turns on — this asks the suspension store and REJECTS when it cannot be
|
|
8507
|
+
* read, where `getRun` degrades an outage to `null`. A caller about to WRITE
|
|
8508
|
+
* must not accept a degraded read.
|
|
8248
8509
|
*
|
|
8249
8510
|
* Rejects when the durable store cannot be read — existence is then
|
|
8250
8511
|
* unknown, and callers must not read an outage as a dead run. Optional: an
|
|
@@ -8971,10 +9232,14 @@ declare class ApprovalService implements IApprovalService {
|
|
|
8971
9232
|
* class of failure stayed silent.
|
|
8972
9233
|
*
|
|
8973
9234
|
* It also could not have answered the question even if it looked: its
|
|
8974
|
-
* liveness oracle is `getRun`, which
|
|
8975
|
-
*
|
|
8976
|
-
*
|
|
8977
|
-
*
|
|
9235
|
+
* liveness oracle is `getRun`, which treats both `null` and `paused` as alive
|
|
9236
|
+
* (conservative, correct) — so it has no way to say "this run is really
|
|
9237
|
+
* gone". (Until #8050 that oracle was weaker still: after a restart it
|
|
9238
|
+
* returned `null` for a perfectly ALIVE suspended run, so "alive" and
|
|
9239
|
+
* "unknown" were the same answer. It now reports such a run as `paused`,
|
|
9240
|
+
* which does not change any branch here — both already meant "leave alone" —
|
|
9241
|
+
* but it is why the sweep below needs `hasSuspendedRun` as a second oracle
|
|
9242
|
+
* rather than a sharper reading of the first.)
|
|
8978
9243
|
*
|
|
8979
9244
|
* So this uses BOTH oracles, and a row must fail both to be reported:
|
|
8980
9245
|
*
|