@objectstack/platform-objects 0.1.0 → 4.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/apps/index.js +2 -0
- package/dist/apps/index.js.map +1 -1
- package/dist/apps/index.mjs +2 -0
- package/dist/apps/index.mjs.map +1 -1
- package/dist/audit/index.d.mts +1286 -126
- package/dist/audit/index.d.ts +1286 -126
- package/dist/identity/index.d.mts +4643 -438
- package/dist/identity/index.d.ts +4643 -438
- package/dist/identity/index.js +17 -0
- package/dist/identity/index.js.map +1 -1
- package/dist/identity/index.mjs +17 -0
- package/dist/identity/index.mjs.map +1 -1
- package/dist/index.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +265 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +263 -1
- package/dist/index.mjs.map +1 -1
- package/dist/metadata/index.d.mts +3272 -334
- package/dist/metadata/index.d.ts +3272 -334
- package/dist/security/index.d.mts +3516 -49
- package/dist/security/index.d.ts +3516 -49
- package/dist/security/index.js +246 -0
- package/dist/security/index.js.map +1 -1
- package/dist/security/index.mjs +244 -1
- package/dist/security/index.mjs.map +1 -1
- package/dist/tenant/index.d.mts +2228 -218
- package/dist/tenant/index.d.ts +2228 -218
- package/package.json +3 -3
package/dist/tenant/index.d.ts
CHANGED
|
@@ -55,7 +55,23 @@ declare const SysProject: Omit<{
|
|
|
55
55
|
reference?: string | undefined;
|
|
56
56
|
referenceFilters?: string[] | undefined;
|
|
57
57
|
writeRequiresMasterRead?: boolean | undefined;
|
|
58
|
-
expression?:
|
|
58
|
+
expression?: {
|
|
59
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
60
|
+
source?: string | undefined;
|
|
61
|
+
ast?: unknown;
|
|
62
|
+
meta?: {
|
|
63
|
+
rationale?: string | undefined;
|
|
64
|
+
generatedBy?: string | undefined;
|
|
65
|
+
} | undefined;
|
|
66
|
+
} | {
|
|
67
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
68
|
+
source?: string | undefined;
|
|
69
|
+
ast?: unknown;
|
|
70
|
+
meta?: {
|
|
71
|
+
rationale?: string | undefined;
|
|
72
|
+
generatedBy?: string | undefined;
|
|
73
|
+
} | undefined;
|
|
74
|
+
} | undefined;
|
|
59
75
|
summaryOperations?: {
|
|
60
76
|
object: string;
|
|
61
77
|
field: string;
|
|
@@ -173,7 +189,23 @@ declare const SysProject: Omit<{
|
|
|
173
189
|
} | undefined;
|
|
174
190
|
} | undefined;
|
|
175
191
|
group?: string | undefined;
|
|
176
|
-
conditionalRequired?:
|
|
192
|
+
conditionalRequired?: {
|
|
193
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
194
|
+
source?: string | undefined;
|
|
195
|
+
ast?: unknown;
|
|
196
|
+
meta?: {
|
|
197
|
+
rationale?: string | undefined;
|
|
198
|
+
generatedBy?: string | undefined;
|
|
199
|
+
} | undefined;
|
|
200
|
+
} | {
|
|
201
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
202
|
+
source?: string | undefined;
|
|
203
|
+
ast?: unknown;
|
|
204
|
+
meta?: {
|
|
205
|
+
rationale?: string | undefined;
|
|
206
|
+
generatedBy?: string | undefined;
|
|
207
|
+
} | undefined;
|
|
208
|
+
} | undefined;
|
|
177
209
|
inlineHelpText?: string | undefined;
|
|
178
210
|
trackFeedHistory?: boolean | undefined;
|
|
179
211
|
caseSensitive?: boolean | undefined;
|
|
@@ -184,6 +216,12 @@ declare const SysProject: Omit<{
|
|
|
184
216
|
description?: string | undefined;
|
|
185
217
|
icon?: string | undefined;
|
|
186
218
|
tags?: string[] | undefined;
|
|
219
|
+
managedBy?: "system" | "better-auth" | "platform" | undefined;
|
|
220
|
+
systemFields?: false | {
|
|
221
|
+
tenant?: boolean | undefined;
|
|
222
|
+
owner?: boolean | undefined;
|
|
223
|
+
audit?: boolean | undefined;
|
|
224
|
+
} | undefined;
|
|
187
225
|
indexes?: {
|
|
188
226
|
fields: string[];
|
|
189
227
|
type: "hash" | "btree" | "gin" | "gist" | "fulltext";
|
|
@@ -197,7 +235,23 @@ declare const SysProject: Omit<{
|
|
|
197
235
|
defaultExpanded: boolean;
|
|
198
236
|
icon?: string | undefined;
|
|
199
237
|
description?: string | undefined;
|
|
200
|
-
visibleOn?:
|
|
238
|
+
visibleOn?: {
|
|
239
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
240
|
+
source?: string | undefined;
|
|
241
|
+
ast?: unknown;
|
|
242
|
+
meta?: {
|
|
243
|
+
rationale?: string | undefined;
|
|
244
|
+
generatedBy?: string | undefined;
|
|
245
|
+
} | undefined;
|
|
246
|
+
} | {
|
|
247
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
248
|
+
source?: string | undefined;
|
|
249
|
+
ast?: unknown;
|
|
250
|
+
meta?: {
|
|
251
|
+
rationale?: string | undefined;
|
|
252
|
+
generatedBy?: string | undefined;
|
|
253
|
+
} | undefined;
|
|
254
|
+
} | undefined;
|
|
201
255
|
}[] | undefined;
|
|
202
256
|
tenancy?: {
|
|
203
257
|
enabled: boolean;
|
|
@@ -264,7 +318,23 @@ declare const SysProject: Omit<{
|
|
|
264
318
|
displayFormat?: string | undefined;
|
|
265
319
|
startNumber?: number | undefined;
|
|
266
320
|
} | undefined;
|
|
267
|
-
titleFormat?:
|
|
321
|
+
titleFormat?: {
|
|
322
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
323
|
+
source?: string | undefined;
|
|
324
|
+
ast?: unknown;
|
|
325
|
+
meta?: {
|
|
326
|
+
rationale?: string | undefined;
|
|
327
|
+
generatedBy?: string | undefined;
|
|
328
|
+
} | undefined;
|
|
329
|
+
} | {
|
|
330
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
331
|
+
source?: string | undefined;
|
|
332
|
+
ast?: unknown;
|
|
333
|
+
meta?: {
|
|
334
|
+
rationale?: string | undefined;
|
|
335
|
+
generatedBy?: string | undefined;
|
|
336
|
+
} | undefined;
|
|
337
|
+
} | undefined;
|
|
268
338
|
compactLayout?: string[] | undefined;
|
|
269
339
|
search?: {
|
|
270
340
|
fields: string[];
|
|
@@ -320,8 +390,24 @@ declare const SysProject: Omit<{
|
|
|
320
390
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
321
391
|
confirmText?: string | undefined;
|
|
322
392
|
successMessage?: string | undefined;
|
|
323
|
-
visible?:
|
|
324
|
-
|
|
393
|
+
visible?: {
|
|
394
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
395
|
+
source?: string | undefined;
|
|
396
|
+
ast?: unknown;
|
|
397
|
+
meta?: {
|
|
398
|
+
rationale?: string | undefined;
|
|
399
|
+
generatedBy?: string | undefined;
|
|
400
|
+
} | undefined;
|
|
401
|
+
} | undefined;
|
|
402
|
+
disabled?: boolean | {
|
|
403
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
404
|
+
source?: string | undefined;
|
|
405
|
+
ast?: unknown;
|
|
406
|
+
meta?: {
|
|
407
|
+
rationale?: string | undefined;
|
|
408
|
+
generatedBy?: string | undefined;
|
|
409
|
+
} | undefined;
|
|
410
|
+
} | undefined;
|
|
325
411
|
shortcut?: string | undefined;
|
|
326
412
|
bulkEnabled?: boolean | undefined;
|
|
327
413
|
timeout?: number | undefined;
|
|
@@ -390,7 +476,15 @@ declare const SysProject: Omit<{
|
|
|
390
476
|
readonly referenceFilters?: string[] | undefined;
|
|
391
477
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
392
478
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
393
|
-
readonly expression?:
|
|
479
|
+
readonly expression?: {
|
|
480
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
481
|
+
source?: string | undefined;
|
|
482
|
+
ast?: unknown;
|
|
483
|
+
meta?: {
|
|
484
|
+
rationale?: string | undefined;
|
|
485
|
+
generatedBy?: string | undefined;
|
|
486
|
+
} | undefined;
|
|
487
|
+
} | undefined;
|
|
394
488
|
readonly summaryOperations?: {
|
|
395
489
|
object: string;
|
|
396
490
|
field: string;
|
|
@@ -489,7 +583,15 @@ declare const SysProject: Omit<{
|
|
|
489
583
|
threshold: number;
|
|
490
584
|
} | undefined;
|
|
491
585
|
} | undefined;
|
|
492
|
-
readonly conditionalRequired?:
|
|
586
|
+
readonly conditionalRequired?: {
|
|
587
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
588
|
+
source?: string | undefined;
|
|
589
|
+
ast?: unknown;
|
|
590
|
+
meta?: {
|
|
591
|
+
rationale?: string | undefined;
|
|
592
|
+
generatedBy?: string | undefined;
|
|
593
|
+
} | undefined;
|
|
594
|
+
} | undefined;
|
|
493
595
|
readonly hidden?: boolean | undefined;
|
|
494
596
|
readonly sortable?: boolean | undefined;
|
|
495
597
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -548,7 +650,15 @@ declare const SysProject: Omit<{
|
|
|
548
650
|
readonly referenceFilters?: string[] | undefined;
|
|
549
651
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
550
652
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
551
|
-
readonly expression?:
|
|
653
|
+
readonly expression?: {
|
|
654
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
655
|
+
source?: string | undefined;
|
|
656
|
+
ast?: unknown;
|
|
657
|
+
meta?: {
|
|
658
|
+
rationale?: string | undefined;
|
|
659
|
+
generatedBy?: string | undefined;
|
|
660
|
+
} | undefined;
|
|
661
|
+
} | undefined;
|
|
552
662
|
readonly summaryOperations?: {
|
|
553
663
|
object: string;
|
|
554
664
|
field: string;
|
|
@@ -647,7 +757,15 @@ declare const SysProject: Omit<{
|
|
|
647
757
|
threshold: number;
|
|
648
758
|
} | undefined;
|
|
649
759
|
} | undefined;
|
|
650
|
-
readonly conditionalRequired?:
|
|
760
|
+
readonly conditionalRequired?: {
|
|
761
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
762
|
+
source?: string | undefined;
|
|
763
|
+
ast?: unknown;
|
|
764
|
+
meta?: {
|
|
765
|
+
rationale?: string | undefined;
|
|
766
|
+
generatedBy?: string | undefined;
|
|
767
|
+
} | undefined;
|
|
768
|
+
} | undefined;
|
|
651
769
|
readonly hidden?: boolean | undefined;
|
|
652
770
|
readonly sortable?: boolean | undefined;
|
|
653
771
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -706,7 +824,15 @@ declare const SysProject: Omit<{
|
|
|
706
824
|
readonly referenceFilters?: string[] | undefined;
|
|
707
825
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
708
826
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
709
|
-
readonly expression?:
|
|
827
|
+
readonly expression?: {
|
|
828
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
829
|
+
source?: string | undefined;
|
|
830
|
+
ast?: unknown;
|
|
831
|
+
meta?: {
|
|
832
|
+
rationale?: string | undefined;
|
|
833
|
+
generatedBy?: string | undefined;
|
|
834
|
+
} | undefined;
|
|
835
|
+
} | undefined;
|
|
710
836
|
readonly summaryOperations?: {
|
|
711
837
|
object: string;
|
|
712
838
|
field: string;
|
|
@@ -805,7 +931,15 @@ declare const SysProject: Omit<{
|
|
|
805
931
|
threshold: number;
|
|
806
932
|
} | undefined;
|
|
807
933
|
} | undefined;
|
|
808
|
-
readonly conditionalRequired?:
|
|
934
|
+
readonly conditionalRequired?: {
|
|
935
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
936
|
+
source?: string | undefined;
|
|
937
|
+
ast?: unknown;
|
|
938
|
+
meta?: {
|
|
939
|
+
rationale?: string | undefined;
|
|
940
|
+
generatedBy?: string | undefined;
|
|
941
|
+
} | undefined;
|
|
942
|
+
} | undefined;
|
|
809
943
|
readonly hidden?: boolean | undefined;
|
|
810
944
|
readonly sortable?: boolean | undefined;
|
|
811
945
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -864,7 +998,15 @@ declare const SysProject: Omit<{
|
|
|
864
998
|
readonly referenceFilters?: string[] | undefined;
|
|
865
999
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
866
1000
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
867
|
-
readonly expression?:
|
|
1001
|
+
readonly expression?: {
|
|
1002
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1003
|
+
source?: string | undefined;
|
|
1004
|
+
ast?: unknown;
|
|
1005
|
+
meta?: {
|
|
1006
|
+
rationale?: string | undefined;
|
|
1007
|
+
generatedBy?: string | undefined;
|
|
1008
|
+
} | undefined;
|
|
1009
|
+
} | undefined;
|
|
868
1010
|
readonly summaryOperations?: {
|
|
869
1011
|
object: string;
|
|
870
1012
|
field: string;
|
|
@@ -963,7 +1105,15 @@ declare const SysProject: Omit<{
|
|
|
963
1105
|
threshold: number;
|
|
964
1106
|
} | undefined;
|
|
965
1107
|
} | undefined;
|
|
966
|
-
readonly conditionalRequired?:
|
|
1108
|
+
readonly conditionalRequired?: {
|
|
1109
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1110
|
+
source?: string | undefined;
|
|
1111
|
+
ast?: unknown;
|
|
1112
|
+
meta?: {
|
|
1113
|
+
rationale?: string | undefined;
|
|
1114
|
+
generatedBy?: string | undefined;
|
|
1115
|
+
} | undefined;
|
|
1116
|
+
} | undefined;
|
|
967
1117
|
readonly hidden?: boolean | undefined;
|
|
968
1118
|
readonly sortable?: boolean | undefined;
|
|
969
1119
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -1022,7 +1172,15 @@ declare const SysProject: Omit<{
|
|
|
1022
1172
|
readonly referenceFilters?: string[] | undefined;
|
|
1023
1173
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1024
1174
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1025
|
-
readonly expression?:
|
|
1175
|
+
readonly expression?: {
|
|
1176
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1177
|
+
source?: string | undefined;
|
|
1178
|
+
ast?: unknown;
|
|
1179
|
+
meta?: {
|
|
1180
|
+
rationale?: string | undefined;
|
|
1181
|
+
generatedBy?: string | undefined;
|
|
1182
|
+
} | undefined;
|
|
1183
|
+
} | undefined;
|
|
1026
1184
|
readonly summaryOperations?: {
|
|
1027
1185
|
object: string;
|
|
1028
1186
|
field: string;
|
|
@@ -1121,7 +1279,15 @@ declare const SysProject: Omit<{
|
|
|
1121
1279
|
threshold: number;
|
|
1122
1280
|
} | undefined;
|
|
1123
1281
|
} | undefined;
|
|
1124
|
-
readonly conditionalRequired?:
|
|
1282
|
+
readonly conditionalRequired?: {
|
|
1283
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1284
|
+
source?: string | undefined;
|
|
1285
|
+
ast?: unknown;
|
|
1286
|
+
meta?: {
|
|
1287
|
+
rationale?: string | undefined;
|
|
1288
|
+
generatedBy?: string | undefined;
|
|
1289
|
+
} | undefined;
|
|
1290
|
+
} | undefined;
|
|
1125
1291
|
readonly hidden?: boolean | undefined;
|
|
1126
1292
|
readonly sortable?: boolean | undefined;
|
|
1127
1293
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -1180,7 +1346,15 @@ declare const SysProject: Omit<{
|
|
|
1180
1346
|
readonly referenceFilters?: string[] | undefined;
|
|
1181
1347
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1182
1348
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1183
|
-
readonly expression?:
|
|
1349
|
+
readonly expression?: {
|
|
1350
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1351
|
+
source?: string | undefined;
|
|
1352
|
+
ast?: unknown;
|
|
1353
|
+
meta?: {
|
|
1354
|
+
rationale?: string | undefined;
|
|
1355
|
+
generatedBy?: string | undefined;
|
|
1356
|
+
} | undefined;
|
|
1357
|
+
} | undefined;
|
|
1184
1358
|
readonly summaryOperations?: {
|
|
1185
1359
|
object: string;
|
|
1186
1360
|
field: string;
|
|
@@ -1279,7 +1453,15 @@ declare const SysProject: Omit<{
|
|
|
1279
1453
|
threshold: number;
|
|
1280
1454
|
} | undefined;
|
|
1281
1455
|
} | undefined;
|
|
1282
|
-
readonly conditionalRequired?:
|
|
1456
|
+
readonly conditionalRequired?: {
|
|
1457
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1458
|
+
source?: string | undefined;
|
|
1459
|
+
ast?: unknown;
|
|
1460
|
+
meta?: {
|
|
1461
|
+
rationale?: string | undefined;
|
|
1462
|
+
generatedBy?: string | undefined;
|
|
1463
|
+
} | undefined;
|
|
1464
|
+
} | undefined;
|
|
1283
1465
|
readonly hidden?: boolean | undefined;
|
|
1284
1466
|
readonly sortable?: boolean | undefined;
|
|
1285
1467
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -1338,7 +1520,15 @@ declare const SysProject: Omit<{
|
|
|
1338
1520
|
readonly referenceFilters?: string[] | undefined;
|
|
1339
1521
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1340
1522
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1341
|
-
readonly expression?:
|
|
1523
|
+
readonly expression?: {
|
|
1524
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1525
|
+
source?: string | undefined;
|
|
1526
|
+
ast?: unknown;
|
|
1527
|
+
meta?: {
|
|
1528
|
+
rationale?: string | undefined;
|
|
1529
|
+
generatedBy?: string | undefined;
|
|
1530
|
+
} | undefined;
|
|
1531
|
+
} | undefined;
|
|
1342
1532
|
readonly summaryOperations?: {
|
|
1343
1533
|
object: string;
|
|
1344
1534
|
field: string;
|
|
@@ -1437,7 +1627,15 @@ declare const SysProject: Omit<{
|
|
|
1437
1627
|
threshold: number;
|
|
1438
1628
|
} | undefined;
|
|
1439
1629
|
} | undefined;
|
|
1440
|
-
readonly conditionalRequired?:
|
|
1630
|
+
readonly conditionalRequired?: {
|
|
1631
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1632
|
+
source?: string | undefined;
|
|
1633
|
+
ast?: unknown;
|
|
1634
|
+
meta?: {
|
|
1635
|
+
rationale?: string | undefined;
|
|
1636
|
+
generatedBy?: string | undefined;
|
|
1637
|
+
} | undefined;
|
|
1638
|
+
} | undefined;
|
|
1441
1639
|
readonly hidden?: boolean | undefined;
|
|
1442
1640
|
readonly sortable?: boolean | undefined;
|
|
1443
1641
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -1496,7 +1694,15 @@ declare const SysProject: Omit<{
|
|
|
1496
1694
|
readonly referenceFilters?: string[] | undefined;
|
|
1497
1695
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1498
1696
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1499
|
-
readonly expression?:
|
|
1697
|
+
readonly expression?: {
|
|
1698
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1699
|
+
source?: string | undefined;
|
|
1700
|
+
ast?: unknown;
|
|
1701
|
+
meta?: {
|
|
1702
|
+
rationale?: string | undefined;
|
|
1703
|
+
generatedBy?: string | undefined;
|
|
1704
|
+
} | undefined;
|
|
1705
|
+
} | undefined;
|
|
1500
1706
|
readonly summaryOperations?: {
|
|
1501
1707
|
object: string;
|
|
1502
1708
|
field: string;
|
|
@@ -1595,7 +1801,15 @@ declare const SysProject: Omit<{
|
|
|
1595
1801
|
threshold: number;
|
|
1596
1802
|
} | undefined;
|
|
1597
1803
|
} | undefined;
|
|
1598
|
-
readonly conditionalRequired?:
|
|
1804
|
+
readonly conditionalRequired?: {
|
|
1805
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1806
|
+
source?: string | undefined;
|
|
1807
|
+
ast?: unknown;
|
|
1808
|
+
meta?: {
|
|
1809
|
+
rationale?: string | undefined;
|
|
1810
|
+
generatedBy?: string | undefined;
|
|
1811
|
+
} | undefined;
|
|
1812
|
+
} | undefined;
|
|
1599
1813
|
readonly hidden?: boolean | undefined;
|
|
1600
1814
|
readonly sortable?: boolean | undefined;
|
|
1601
1815
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -1654,7 +1868,15 @@ declare const SysProject: Omit<{
|
|
|
1654
1868
|
readonly referenceFilters?: string[] | undefined;
|
|
1655
1869
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1656
1870
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1657
|
-
readonly expression?:
|
|
1871
|
+
readonly expression?: {
|
|
1872
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1873
|
+
source?: string | undefined;
|
|
1874
|
+
ast?: unknown;
|
|
1875
|
+
meta?: {
|
|
1876
|
+
rationale?: string | undefined;
|
|
1877
|
+
generatedBy?: string | undefined;
|
|
1878
|
+
} | undefined;
|
|
1879
|
+
} | undefined;
|
|
1658
1880
|
readonly summaryOperations?: {
|
|
1659
1881
|
object: string;
|
|
1660
1882
|
field: string;
|
|
@@ -1753,7 +1975,15 @@ declare const SysProject: Omit<{
|
|
|
1753
1975
|
threshold: number;
|
|
1754
1976
|
} | undefined;
|
|
1755
1977
|
} | undefined;
|
|
1756
|
-
readonly conditionalRequired?:
|
|
1978
|
+
readonly conditionalRequired?: {
|
|
1979
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1980
|
+
source?: string | undefined;
|
|
1981
|
+
ast?: unknown;
|
|
1982
|
+
meta?: {
|
|
1983
|
+
rationale?: string | undefined;
|
|
1984
|
+
generatedBy?: string | undefined;
|
|
1985
|
+
} | undefined;
|
|
1986
|
+
} | undefined;
|
|
1757
1987
|
readonly hidden?: boolean | undefined;
|
|
1758
1988
|
readonly sortable?: boolean | undefined;
|
|
1759
1989
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -1812,7 +2042,15 @@ declare const SysProject: Omit<{
|
|
|
1812
2042
|
readonly referenceFilters?: string[] | undefined;
|
|
1813
2043
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1814
2044
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1815
|
-
readonly expression?:
|
|
2045
|
+
readonly expression?: {
|
|
2046
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2047
|
+
source?: string | undefined;
|
|
2048
|
+
ast?: unknown;
|
|
2049
|
+
meta?: {
|
|
2050
|
+
rationale?: string | undefined;
|
|
2051
|
+
generatedBy?: string | undefined;
|
|
2052
|
+
} | undefined;
|
|
2053
|
+
} | undefined;
|
|
1816
2054
|
readonly summaryOperations?: {
|
|
1817
2055
|
object: string;
|
|
1818
2056
|
field: string;
|
|
@@ -1911,7 +2149,15 @@ declare const SysProject: Omit<{
|
|
|
1911
2149
|
threshold: number;
|
|
1912
2150
|
} | undefined;
|
|
1913
2151
|
} | undefined;
|
|
1914
|
-
readonly conditionalRequired?:
|
|
2152
|
+
readonly conditionalRequired?: {
|
|
2153
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2154
|
+
source?: string | undefined;
|
|
2155
|
+
ast?: unknown;
|
|
2156
|
+
meta?: {
|
|
2157
|
+
rationale?: string | undefined;
|
|
2158
|
+
generatedBy?: string | undefined;
|
|
2159
|
+
} | undefined;
|
|
2160
|
+
} | undefined;
|
|
1915
2161
|
readonly hidden?: boolean | undefined;
|
|
1916
2162
|
readonly sortable?: boolean | undefined;
|
|
1917
2163
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -1970,7 +2216,15 @@ declare const SysProject: Omit<{
|
|
|
1970
2216
|
readonly referenceFilters?: string[] | undefined;
|
|
1971
2217
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1972
2218
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1973
|
-
readonly expression?:
|
|
2219
|
+
readonly expression?: {
|
|
2220
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2221
|
+
source?: string | undefined;
|
|
2222
|
+
ast?: unknown;
|
|
2223
|
+
meta?: {
|
|
2224
|
+
rationale?: string | undefined;
|
|
2225
|
+
generatedBy?: string | undefined;
|
|
2226
|
+
} | undefined;
|
|
2227
|
+
} | undefined;
|
|
1974
2228
|
readonly summaryOperations?: {
|
|
1975
2229
|
object: string;
|
|
1976
2230
|
field: string;
|
|
@@ -2069,7 +2323,15 @@ declare const SysProject: Omit<{
|
|
|
2069
2323
|
threshold: number;
|
|
2070
2324
|
} | undefined;
|
|
2071
2325
|
} | undefined;
|
|
2072
|
-
readonly conditionalRequired?:
|
|
2326
|
+
readonly conditionalRequired?: {
|
|
2327
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2328
|
+
source?: string | undefined;
|
|
2329
|
+
ast?: unknown;
|
|
2330
|
+
meta?: {
|
|
2331
|
+
rationale?: string | undefined;
|
|
2332
|
+
generatedBy?: string | undefined;
|
|
2333
|
+
} | undefined;
|
|
2334
|
+
} | undefined;
|
|
2073
2335
|
readonly hidden?: boolean | undefined;
|
|
2074
2336
|
readonly sortable?: boolean | undefined;
|
|
2075
2337
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -2128,7 +2390,15 @@ declare const SysProject: Omit<{
|
|
|
2128
2390
|
readonly referenceFilters?: string[] | undefined;
|
|
2129
2391
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2130
2392
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2131
|
-
readonly expression?:
|
|
2393
|
+
readonly expression?: {
|
|
2394
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2395
|
+
source?: string | undefined;
|
|
2396
|
+
ast?: unknown;
|
|
2397
|
+
meta?: {
|
|
2398
|
+
rationale?: string | undefined;
|
|
2399
|
+
generatedBy?: string | undefined;
|
|
2400
|
+
} | undefined;
|
|
2401
|
+
} | undefined;
|
|
2132
2402
|
readonly summaryOperations?: {
|
|
2133
2403
|
object: string;
|
|
2134
2404
|
field: string;
|
|
@@ -2227,7 +2497,15 @@ declare const SysProject: Omit<{
|
|
|
2227
2497
|
threshold: number;
|
|
2228
2498
|
} | undefined;
|
|
2229
2499
|
} | undefined;
|
|
2230
|
-
readonly conditionalRequired?:
|
|
2500
|
+
readonly conditionalRequired?: {
|
|
2501
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2502
|
+
source?: string | undefined;
|
|
2503
|
+
ast?: unknown;
|
|
2504
|
+
meta?: {
|
|
2505
|
+
rationale?: string | undefined;
|
|
2506
|
+
generatedBy?: string | undefined;
|
|
2507
|
+
} | undefined;
|
|
2508
|
+
} | undefined;
|
|
2231
2509
|
readonly hidden?: boolean | undefined;
|
|
2232
2510
|
readonly sortable?: boolean | undefined;
|
|
2233
2511
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -2286,7 +2564,15 @@ declare const SysProject: Omit<{
|
|
|
2286
2564
|
readonly referenceFilters?: string[] | undefined;
|
|
2287
2565
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2288
2566
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2289
|
-
readonly expression?:
|
|
2567
|
+
readonly expression?: {
|
|
2568
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2569
|
+
source?: string | undefined;
|
|
2570
|
+
ast?: unknown;
|
|
2571
|
+
meta?: {
|
|
2572
|
+
rationale?: string | undefined;
|
|
2573
|
+
generatedBy?: string | undefined;
|
|
2574
|
+
} | undefined;
|
|
2575
|
+
} | undefined;
|
|
2290
2576
|
readonly summaryOperations?: {
|
|
2291
2577
|
object: string;
|
|
2292
2578
|
field: string;
|
|
@@ -2385,7 +2671,15 @@ declare const SysProject: Omit<{
|
|
|
2385
2671
|
threshold: number;
|
|
2386
2672
|
} | undefined;
|
|
2387
2673
|
} | undefined;
|
|
2388
|
-
readonly conditionalRequired?:
|
|
2674
|
+
readonly conditionalRequired?: {
|
|
2675
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2676
|
+
source?: string | undefined;
|
|
2677
|
+
ast?: unknown;
|
|
2678
|
+
meta?: {
|
|
2679
|
+
rationale?: string | undefined;
|
|
2680
|
+
generatedBy?: string | undefined;
|
|
2681
|
+
} | undefined;
|
|
2682
|
+
} | undefined;
|
|
2389
2683
|
readonly hidden?: boolean | undefined;
|
|
2390
2684
|
readonly sortable?: boolean | undefined;
|
|
2391
2685
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -2444,7 +2738,15 @@ declare const SysProject: Omit<{
|
|
|
2444
2738
|
readonly referenceFilters?: string[] | undefined;
|
|
2445
2739
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2446
2740
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2447
|
-
readonly expression?:
|
|
2741
|
+
readonly expression?: {
|
|
2742
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2743
|
+
source?: string | undefined;
|
|
2744
|
+
ast?: unknown;
|
|
2745
|
+
meta?: {
|
|
2746
|
+
rationale?: string | undefined;
|
|
2747
|
+
generatedBy?: string | undefined;
|
|
2748
|
+
} | undefined;
|
|
2749
|
+
} | undefined;
|
|
2448
2750
|
readonly summaryOperations?: {
|
|
2449
2751
|
object: string;
|
|
2450
2752
|
field: string;
|
|
@@ -2543,7 +2845,15 @@ declare const SysProject: Omit<{
|
|
|
2543
2845
|
threshold: number;
|
|
2544
2846
|
} | undefined;
|
|
2545
2847
|
} | undefined;
|
|
2546
|
-
readonly conditionalRequired?:
|
|
2848
|
+
readonly conditionalRequired?: {
|
|
2849
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2850
|
+
source?: string | undefined;
|
|
2851
|
+
ast?: unknown;
|
|
2852
|
+
meta?: {
|
|
2853
|
+
rationale?: string | undefined;
|
|
2854
|
+
generatedBy?: string | undefined;
|
|
2855
|
+
} | undefined;
|
|
2856
|
+
} | undefined;
|
|
2547
2857
|
readonly hidden?: boolean | undefined;
|
|
2548
2858
|
readonly sortable?: boolean | undefined;
|
|
2549
2859
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -2602,7 +2912,15 @@ declare const SysProject: Omit<{
|
|
|
2602
2912
|
readonly referenceFilters?: string[] | undefined;
|
|
2603
2913
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2604
2914
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2605
|
-
readonly expression?:
|
|
2915
|
+
readonly expression?: {
|
|
2916
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2917
|
+
source?: string | undefined;
|
|
2918
|
+
ast?: unknown;
|
|
2919
|
+
meta?: {
|
|
2920
|
+
rationale?: string | undefined;
|
|
2921
|
+
generatedBy?: string | undefined;
|
|
2922
|
+
} | undefined;
|
|
2923
|
+
} | undefined;
|
|
2606
2924
|
readonly summaryOperations?: {
|
|
2607
2925
|
object: string;
|
|
2608
2926
|
field: string;
|
|
@@ -2701,7 +3019,15 @@ declare const SysProject: Omit<{
|
|
|
2701
3019
|
threshold: number;
|
|
2702
3020
|
} | undefined;
|
|
2703
3021
|
} | undefined;
|
|
2704
|
-
readonly conditionalRequired?:
|
|
3022
|
+
readonly conditionalRequired?: {
|
|
3023
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3024
|
+
source?: string | undefined;
|
|
3025
|
+
ast?: unknown;
|
|
3026
|
+
meta?: {
|
|
3027
|
+
rationale?: string | undefined;
|
|
3028
|
+
generatedBy?: string | undefined;
|
|
3029
|
+
} | undefined;
|
|
3030
|
+
} | undefined;
|
|
2705
3031
|
readonly hidden?: boolean | undefined;
|
|
2706
3032
|
readonly sortable?: boolean | undefined;
|
|
2707
3033
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -2760,7 +3086,15 @@ declare const SysProject: Omit<{
|
|
|
2760
3086
|
readonly referenceFilters?: string[] | undefined;
|
|
2761
3087
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2762
3088
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2763
|
-
readonly expression?:
|
|
3089
|
+
readonly expression?: {
|
|
3090
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3091
|
+
source?: string | undefined;
|
|
3092
|
+
ast?: unknown;
|
|
3093
|
+
meta?: {
|
|
3094
|
+
rationale?: string | undefined;
|
|
3095
|
+
generatedBy?: string | undefined;
|
|
3096
|
+
} | undefined;
|
|
3097
|
+
} | undefined;
|
|
2764
3098
|
readonly summaryOperations?: {
|
|
2765
3099
|
object: string;
|
|
2766
3100
|
field: string;
|
|
@@ -2859,7 +3193,15 @@ declare const SysProject: Omit<{
|
|
|
2859
3193
|
threshold: number;
|
|
2860
3194
|
} | undefined;
|
|
2861
3195
|
} | undefined;
|
|
2862
|
-
readonly conditionalRequired?:
|
|
3196
|
+
readonly conditionalRequired?: {
|
|
3197
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3198
|
+
source?: string | undefined;
|
|
3199
|
+
ast?: unknown;
|
|
3200
|
+
meta?: {
|
|
3201
|
+
rationale?: string | undefined;
|
|
3202
|
+
generatedBy?: string | undefined;
|
|
3203
|
+
} | undefined;
|
|
3204
|
+
} | undefined;
|
|
2863
3205
|
readonly hidden?: boolean | undefined;
|
|
2864
3206
|
readonly sortable?: boolean | undefined;
|
|
2865
3207
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -2944,7 +3286,23 @@ declare const SysProjectMember: Omit<{
|
|
|
2944
3286
|
reference?: string | undefined;
|
|
2945
3287
|
referenceFilters?: string[] | undefined;
|
|
2946
3288
|
writeRequiresMasterRead?: boolean | undefined;
|
|
2947
|
-
expression?:
|
|
3289
|
+
expression?: {
|
|
3290
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3291
|
+
source?: string | undefined;
|
|
3292
|
+
ast?: unknown;
|
|
3293
|
+
meta?: {
|
|
3294
|
+
rationale?: string | undefined;
|
|
3295
|
+
generatedBy?: string | undefined;
|
|
3296
|
+
} | undefined;
|
|
3297
|
+
} | {
|
|
3298
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3299
|
+
source?: string | undefined;
|
|
3300
|
+
ast?: unknown;
|
|
3301
|
+
meta?: {
|
|
3302
|
+
rationale?: string | undefined;
|
|
3303
|
+
generatedBy?: string | undefined;
|
|
3304
|
+
} | undefined;
|
|
3305
|
+
} | undefined;
|
|
2948
3306
|
summaryOperations?: {
|
|
2949
3307
|
object: string;
|
|
2950
3308
|
field: string;
|
|
@@ -3062,7 +3420,23 @@ declare const SysProjectMember: Omit<{
|
|
|
3062
3420
|
} | undefined;
|
|
3063
3421
|
} | undefined;
|
|
3064
3422
|
group?: string | undefined;
|
|
3065
|
-
conditionalRequired?:
|
|
3423
|
+
conditionalRequired?: {
|
|
3424
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3425
|
+
source?: string | undefined;
|
|
3426
|
+
ast?: unknown;
|
|
3427
|
+
meta?: {
|
|
3428
|
+
rationale?: string | undefined;
|
|
3429
|
+
generatedBy?: string | undefined;
|
|
3430
|
+
} | undefined;
|
|
3431
|
+
} | {
|
|
3432
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3433
|
+
source?: string | undefined;
|
|
3434
|
+
ast?: unknown;
|
|
3435
|
+
meta?: {
|
|
3436
|
+
rationale?: string | undefined;
|
|
3437
|
+
generatedBy?: string | undefined;
|
|
3438
|
+
} | undefined;
|
|
3439
|
+
} | undefined;
|
|
3066
3440
|
inlineHelpText?: string | undefined;
|
|
3067
3441
|
trackFeedHistory?: boolean | undefined;
|
|
3068
3442
|
caseSensitive?: boolean | undefined;
|
|
@@ -3073,6 +3447,12 @@ declare const SysProjectMember: Omit<{
|
|
|
3073
3447
|
description?: string | undefined;
|
|
3074
3448
|
icon?: string | undefined;
|
|
3075
3449
|
tags?: string[] | undefined;
|
|
3450
|
+
managedBy?: "system" | "better-auth" | "platform" | undefined;
|
|
3451
|
+
systemFields?: false | {
|
|
3452
|
+
tenant?: boolean | undefined;
|
|
3453
|
+
owner?: boolean | undefined;
|
|
3454
|
+
audit?: boolean | undefined;
|
|
3455
|
+
} | undefined;
|
|
3076
3456
|
indexes?: {
|
|
3077
3457
|
fields: string[];
|
|
3078
3458
|
type: "hash" | "btree" | "gin" | "gist" | "fulltext";
|
|
@@ -3086,7 +3466,23 @@ declare const SysProjectMember: Omit<{
|
|
|
3086
3466
|
defaultExpanded: boolean;
|
|
3087
3467
|
icon?: string | undefined;
|
|
3088
3468
|
description?: string | undefined;
|
|
3089
|
-
visibleOn?:
|
|
3469
|
+
visibleOn?: {
|
|
3470
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3471
|
+
source?: string | undefined;
|
|
3472
|
+
ast?: unknown;
|
|
3473
|
+
meta?: {
|
|
3474
|
+
rationale?: string | undefined;
|
|
3475
|
+
generatedBy?: string | undefined;
|
|
3476
|
+
} | undefined;
|
|
3477
|
+
} | {
|
|
3478
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3479
|
+
source?: string | undefined;
|
|
3480
|
+
ast?: unknown;
|
|
3481
|
+
meta?: {
|
|
3482
|
+
rationale?: string | undefined;
|
|
3483
|
+
generatedBy?: string | undefined;
|
|
3484
|
+
} | undefined;
|
|
3485
|
+
} | undefined;
|
|
3090
3486
|
}[] | undefined;
|
|
3091
3487
|
tenancy?: {
|
|
3092
3488
|
enabled: boolean;
|
|
@@ -3153,7 +3549,23 @@ declare const SysProjectMember: Omit<{
|
|
|
3153
3549
|
displayFormat?: string | undefined;
|
|
3154
3550
|
startNumber?: number | undefined;
|
|
3155
3551
|
} | undefined;
|
|
3156
|
-
titleFormat?:
|
|
3552
|
+
titleFormat?: {
|
|
3553
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3554
|
+
source?: string | undefined;
|
|
3555
|
+
ast?: unknown;
|
|
3556
|
+
meta?: {
|
|
3557
|
+
rationale?: string | undefined;
|
|
3558
|
+
generatedBy?: string | undefined;
|
|
3559
|
+
} | undefined;
|
|
3560
|
+
} | {
|
|
3561
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3562
|
+
source?: string | undefined;
|
|
3563
|
+
ast?: unknown;
|
|
3564
|
+
meta?: {
|
|
3565
|
+
rationale?: string | undefined;
|
|
3566
|
+
generatedBy?: string | undefined;
|
|
3567
|
+
} | undefined;
|
|
3568
|
+
} | undefined;
|
|
3157
3569
|
compactLayout?: string[] | undefined;
|
|
3158
3570
|
search?: {
|
|
3159
3571
|
fields: string[];
|
|
@@ -3209,8 +3621,24 @@ declare const SysProjectMember: Omit<{
|
|
|
3209
3621
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
3210
3622
|
confirmText?: string | undefined;
|
|
3211
3623
|
successMessage?: string | undefined;
|
|
3212
|
-
visible?:
|
|
3213
|
-
|
|
3624
|
+
visible?: {
|
|
3625
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3626
|
+
source?: string | undefined;
|
|
3627
|
+
ast?: unknown;
|
|
3628
|
+
meta?: {
|
|
3629
|
+
rationale?: string | undefined;
|
|
3630
|
+
generatedBy?: string | undefined;
|
|
3631
|
+
} | undefined;
|
|
3632
|
+
} | undefined;
|
|
3633
|
+
disabled?: boolean | {
|
|
3634
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3635
|
+
source?: string | undefined;
|
|
3636
|
+
ast?: unknown;
|
|
3637
|
+
meta?: {
|
|
3638
|
+
rationale?: string | undefined;
|
|
3639
|
+
generatedBy?: string | undefined;
|
|
3640
|
+
} | undefined;
|
|
3641
|
+
} | undefined;
|
|
3214
3642
|
shortcut?: string | undefined;
|
|
3215
3643
|
bulkEnabled?: boolean | undefined;
|
|
3216
3644
|
timeout?: number | undefined;
|
|
@@ -3279,7 +3707,15 @@ declare const SysProjectMember: Omit<{
|
|
|
3279
3707
|
readonly referenceFilters?: string[] | undefined;
|
|
3280
3708
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
3281
3709
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3282
|
-
readonly expression?:
|
|
3710
|
+
readonly expression?: {
|
|
3711
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3712
|
+
source?: string | undefined;
|
|
3713
|
+
ast?: unknown;
|
|
3714
|
+
meta?: {
|
|
3715
|
+
rationale?: string | undefined;
|
|
3716
|
+
generatedBy?: string | undefined;
|
|
3717
|
+
} | undefined;
|
|
3718
|
+
} | undefined;
|
|
3283
3719
|
readonly summaryOperations?: {
|
|
3284
3720
|
object: string;
|
|
3285
3721
|
field: string;
|
|
@@ -3378,7 +3814,15 @@ declare const SysProjectMember: Omit<{
|
|
|
3378
3814
|
threshold: number;
|
|
3379
3815
|
} | undefined;
|
|
3380
3816
|
} | undefined;
|
|
3381
|
-
readonly conditionalRequired?:
|
|
3817
|
+
readonly conditionalRequired?: {
|
|
3818
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3819
|
+
source?: string | undefined;
|
|
3820
|
+
ast?: unknown;
|
|
3821
|
+
meta?: {
|
|
3822
|
+
rationale?: string | undefined;
|
|
3823
|
+
generatedBy?: string | undefined;
|
|
3824
|
+
} | undefined;
|
|
3825
|
+
} | undefined;
|
|
3382
3826
|
readonly hidden?: boolean | undefined;
|
|
3383
3827
|
readonly sortable?: boolean | undefined;
|
|
3384
3828
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -3437,7 +3881,15 @@ declare const SysProjectMember: Omit<{
|
|
|
3437
3881
|
readonly referenceFilters?: string[] | undefined;
|
|
3438
3882
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
3439
3883
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3440
|
-
readonly expression?:
|
|
3884
|
+
readonly expression?: {
|
|
3885
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3886
|
+
source?: string | undefined;
|
|
3887
|
+
ast?: unknown;
|
|
3888
|
+
meta?: {
|
|
3889
|
+
rationale?: string | undefined;
|
|
3890
|
+
generatedBy?: string | undefined;
|
|
3891
|
+
} | undefined;
|
|
3892
|
+
} | undefined;
|
|
3441
3893
|
readonly summaryOperations?: {
|
|
3442
3894
|
object: string;
|
|
3443
3895
|
field: string;
|
|
@@ -3536,7 +3988,15 @@ declare const SysProjectMember: Omit<{
|
|
|
3536
3988
|
threshold: number;
|
|
3537
3989
|
} | undefined;
|
|
3538
3990
|
} | undefined;
|
|
3539
|
-
readonly conditionalRequired?:
|
|
3991
|
+
readonly conditionalRequired?: {
|
|
3992
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3993
|
+
source?: string | undefined;
|
|
3994
|
+
ast?: unknown;
|
|
3995
|
+
meta?: {
|
|
3996
|
+
rationale?: string | undefined;
|
|
3997
|
+
generatedBy?: string | undefined;
|
|
3998
|
+
} | undefined;
|
|
3999
|
+
} | undefined;
|
|
3540
4000
|
readonly hidden?: boolean | undefined;
|
|
3541
4001
|
readonly sortable?: boolean | undefined;
|
|
3542
4002
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -3595,7 +4055,15 @@ declare const SysProjectMember: Omit<{
|
|
|
3595
4055
|
readonly referenceFilters?: string[] | undefined;
|
|
3596
4056
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
3597
4057
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3598
|
-
readonly expression?:
|
|
4058
|
+
readonly expression?: {
|
|
4059
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4060
|
+
source?: string | undefined;
|
|
4061
|
+
ast?: unknown;
|
|
4062
|
+
meta?: {
|
|
4063
|
+
rationale?: string | undefined;
|
|
4064
|
+
generatedBy?: string | undefined;
|
|
4065
|
+
} | undefined;
|
|
4066
|
+
} | undefined;
|
|
3599
4067
|
readonly summaryOperations?: {
|
|
3600
4068
|
object: string;
|
|
3601
4069
|
field: string;
|
|
@@ -3694,7 +4162,15 @@ declare const SysProjectMember: Omit<{
|
|
|
3694
4162
|
threshold: number;
|
|
3695
4163
|
} | undefined;
|
|
3696
4164
|
} | undefined;
|
|
3697
|
-
readonly conditionalRequired?:
|
|
4165
|
+
readonly conditionalRequired?: {
|
|
4166
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4167
|
+
source?: string | undefined;
|
|
4168
|
+
ast?: unknown;
|
|
4169
|
+
meta?: {
|
|
4170
|
+
rationale?: string | undefined;
|
|
4171
|
+
generatedBy?: string | undefined;
|
|
4172
|
+
} | undefined;
|
|
4173
|
+
} | undefined;
|
|
3698
4174
|
readonly hidden?: boolean | undefined;
|
|
3699
4175
|
readonly sortable?: boolean | undefined;
|
|
3700
4176
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -3753,7 +4229,15 @@ declare const SysProjectMember: Omit<{
|
|
|
3753
4229
|
readonly referenceFilters?: string[] | undefined;
|
|
3754
4230
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
3755
4231
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3756
|
-
readonly expression?:
|
|
4232
|
+
readonly expression?: {
|
|
4233
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4234
|
+
source?: string | undefined;
|
|
4235
|
+
ast?: unknown;
|
|
4236
|
+
meta?: {
|
|
4237
|
+
rationale?: string | undefined;
|
|
4238
|
+
generatedBy?: string | undefined;
|
|
4239
|
+
} | undefined;
|
|
4240
|
+
} | undefined;
|
|
3757
4241
|
readonly summaryOperations?: {
|
|
3758
4242
|
object: string;
|
|
3759
4243
|
field: string;
|
|
@@ -3852,7 +4336,15 @@ declare const SysProjectMember: Omit<{
|
|
|
3852
4336
|
threshold: number;
|
|
3853
4337
|
} | undefined;
|
|
3854
4338
|
} | undefined;
|
|
3855
|
-
readonly conditionalRequired?:
|
|
4339
|
+
readonly conditionalRequired?: {
|
|
4340
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4341
|
+
source?: string | undefined;
|
|
4342
|
+
ast?: unknown;
|
|
4343
|
+
meta?: {
|
|
4344
|
+
rationale?: string | undefined;
|
|
4345
|
+
generatedBy?: string | undefined;
|
|
4346
|
+
} | undefined;
|
|
4347
|
+
} | undefined;
|
|
3856
4348
|
readonly hidden?: boolean | undefined;
|
|
3857
4349
|
readonly sortable?: boolean | undefined;
|
|
3858
4350
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -3911,7 +4403,15 @@ declare const SysProjectMember: Omit<{
|
|
|
3911
4403
|
readonly referenceFilters?: string[] | undefined;
|
|
3912
4404
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
3913
4405
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3914
|
-
readonly expression?:
|
|
4406
|
+
readonly expression?: {
|
|
4407
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4408
|
+
source?: string | undefined;
|
|
4409
|
+
ast?: unknown;
|
|
4410
|
+
meta?: {
|
|
4411
|
+
rationale?: string | undefined;
|
|
4412
|
+
generatedBy?: string | undefined;
|
|
4413
|
+
} | undefined;
|
|
4414
|
+
} | undefined;
|
|
3915
4415
|
readonly summaryOperations?: {
|
|
3916
4416
|
object: string;
|
|
3917
4417
|
field: string;
|
|
@@ -4010,7 +4510,15 @@ declare const SysProjectMember: Omit<{
|
|
|
4010
4510
|
threshold: number;
|
|
4011
4511
|
} | undefined;
|
|
4012
4512
|
} | undefined;
|
|
4013
|
-
readonly conditionalRequired?:
|
|
4513
|
+
readonly conditionalRequired?: {
|
|
4514
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4515
|
+
source?: string | undefined;
|
|
4516
|
+
ast?: unknown;
|
|
4517
|
+
meta?: {
|
|
4518
|
+
rationale?: string | undefined;
|
|
4519
|
+
generatedBy?: string | undefined;
|
|
4520
|
+
} | undefined;
|
|
4521
|
+
} | undefined;
|
|
4014
4522
|
readonly hidden?: boolean | undefined;
|
|
4015
4523
|
readonly sortable?: boolean | undefined;
|
|
4016
4524
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -4069,7 +4577,15 @@ declare const SysProjectMember: Omit<{
|
|
|
4069
4577
|
readonly referenceFilters?: string[] | undefined;
|
|
4070
4578
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
4071
4579
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4072
|
-
readonly expression?:
|
|
4580
|
+
readonly expression?: {
|
|
4581
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4582
|
+
source?: string | undefined;
|
|
4583
|
+
ast?: unknown;
|
|
4584
|
+
meta?: {
|
|
4585
|
+
rationale?: string | undefined;
|
|
4586
|
+
generatedBy?: string | undefined;
|
|
4587
|
+
} | undefined;
|
|
4588
|
+
} | undefined;
|
|
4073
4589
|
readonly summaryOperations?: {
|
|
4074
4590
|
object: string;
|
|
4075
4591
|
field: string;
|
|
@@ -4168,7 +4684,15 @@ declare const SysProjectMember: Omit<{
|
|
|
4168
4684
|
threshold: number;
|
|
4169
4685
|
} | undefined;
|
|
4170
4686
|
} | undefined;
|
|
4171
|
-
readonly conditionalRequired?:
|
|
4687
|
+
readonly conditionalRequired?: {
|
|
4688
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4689
|
+
source?: string | undefined;
|
|
4690
|
+
ast?: unknown;
|
|
4691
|
+
meta?: {
|
|
4692
|
+
rationale?: string | undefined;
|
|
4693
|
+
generatedBy?: string | undefined;
|
|
4694
|
+
} | undefined;
|
|
4695
|
+
} | undefined;
|
|
4172
4696
|
readonly hidden?: boolean | undefined;
|
|
4173
4697
|
readonly sortable?: boolean | undefined;
|
|
4174
4698
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -4227,7 +4751,15 @@ declare const SysProjectMember: Omit<{
|
|
|
4227
4751
|
readonly referenceFilters?: string[] | undefined;
|
|
4228
4752
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
4229
4753
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4230
|
-
readonly expression?:
|
|
4754
|
+
readonly expression?: {
|
|
4755
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4756
|
+
source?: string | undefined;
|
|
4757
|
+
ast?: unknown;
|
|
4758
|
+
meta?: {
|
|
4759
|
+
rationale?: string | undefined;
|
|
4760
|
+
generatedBy?: string | undefined;
|
|
4761
|
+
} | undefined;
|
|
4762
|
+
} | undefined;
|
|
4231
4763
|
readonly summaryOperations?: {
|
|
4232
4764
|
object: string;
|
|
4233
4765
|
field: string;
|
|
@@ -4326,7 +4858,15 @@ declare const SysProjectMember: Omit<{
|
|
|
4326
4858
|
threshold: number;
|
|
4327
4859
|
} | undefined;
|
|
4328
4860
|
} | undefined;
|
|
4329
|
-
readonly conditionalRequired?:
|
|
4861
|
+
readonly conditionalRequired?: {
|
|
4862
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4863
|
+
source?: string | undefined;
|
|
4864
|
+
ast?: unknown;
|
|
4865
|
+
meta?: {
|
|
4866
|
+
rationale?: string | undefined;
|
|
4867
|
+
generatedBy?: string | undefined;
|
|
4868
|
+
} | undefined;
|
|
4869
|
+
} | undefined;
|
|
4330
4870
|
readonly hidden?: boolean | undefined;
|
|
4331
4871
|
readonly sortable?: boolean | undefined;
|
|
4332
4872
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -4410,7 +4950,23 @@ declare const SysProjectCredential: Omit<{
|
|
|
4410
4950
|
reference?: string | undefined;
|
|
4411
4951
|
referenceFilters?: string[] | undefined;
|
|
4412
4952
|
writeRequiresMasterRead?: boolean | undefined;
|
|
4413
|
-
expression?:
|
|
4953
|
+
expression?: {
|
|
4954
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4955
|
+
source?: string | undefined;
|
|
4956
|
+
ast?: unknown;
|
|
4957
|
+
meta?: {
|
|
4958
|
+
rationale?: string | undefined;
|
|
4959
|
+
generatedBy?: string | undefined;
|
|
4960
|
+
} | undefined;
|
|
4961
|
+
} | {
|
|
4962
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4963
|
+
source?: string | undefined;
|
|
4964
|
+
ast?: unknown;
|
|
4965
|
+
meta?: {
|
|
4966
|
+
rationale?: string | undefined;
|
|
4967
|
+
generatedBy?: string | undefined;
|
|
4968
|
+
} | undefined;
|
|
4969
|
+
} | undefined;
|
|
4414
4970
|
summaryOperations?: {
|
|
4415
4971
|
object: string;
|
|
4416
4972
|
field: string;
|
|
@@ -4528,7 +5084,23 @@ declare const SysProjectCredential: Omit<{
|
|
|
4528
5084
|
} | undefined;
|
|
4529
5085
|
} | undefined;
|
|
4530
5086
|
group?: string | undefined;
|
|
4531
|
-
conditionalRequired?:
|
|
5087
|
+
conditionalRequired?: {
|
|
5088
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5089
|
+
source?: string | undefined;
|
|
5090
|
+
ast?: unknown;
|
|
5091
|
+
meta?: {
|
|
5092
|
+
rationale?: string | undefined;
|
|
5093
|
+
generatedBy?: string | undefined;
|
|
5094
|
+
} | undefined;
|
|
5095
|
+
} | {
|
|
5096
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5097
|
+
source?: string | undefined;
|
|
5098
|
+
ast?: unknown;
|
|
5099
|
+
meta?: {
|
|
5100
|
+
rationale?: string | undefined;
|
|
5101
|
+
generatedBy?: string | undefined;
|
|
5102
|
+
} | undefined;
|
|
5103
|
+
} | undefined;
|
|
4532
5104
|
inlineHelpText?: string | undefined;
|
|
4533
5105
|
trackFeedHistory?: boolean | undefined;
|
|
4534
5106
|
caseSensitive?: boolean | undefined;
|
|
@@ -4539,6 +5111,12 @@ declare const SysProjectCredential: Omit<{
|
|
|
4539
5111
|
description?: string | undefined;
|
|
4540
5112
|
icon?: string | undefined;
|
|
4541
5113
|
tags?: string[] | undefined;
|
|
5114
|
+
managedBy?: "system" | "better-auth" | "platform" | undefined;
|
|
5115
|
+
systemFields?: false | {
|
|
5116
|
+
tenant?: boolean | undefined;
|
|
5117
|
+
owner?: boolean | undefined;
|
|
5118
|
+
audit?: boolean | undefined;
|
|
5119
|
+
} | undefined;
|
|
4542
5120
|
indexes?: {
|
|
4543
5121
|
fields: string[];
|
|
4544
5122
|
type: "hash" | "btree" | "gin" | "gist" | "fulltext";
|
|
@@ -4552,7 +5130,23 @@ declare const SysProjectCredential: Omit<{
|
|
|
4552
5130
|
defaultExpanded: boolean;
|
|
4553
5131
|
icon?: string | undefined;
|
|
4554
5132
|
description?: string | undefined;
|
|
4555
|
-
visibleOn?:
|
|
5133
|
+
visibleOn?: {
|
|
5134
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5135
|
+
source?: string | undefined;
|
|
5136
|
+
ast?: unknown;
|
|
5137
|
+
meta?: {
|
|
5138
|
+
rationale?: string | undefined;
|
|
5139
|
+
generatedBy?: string | undefined;
|
|
5140
|
+
} | undefined;
|
|
5141
|
+
} | {
|
|
5142
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5143
|
+
source?: string | undefined;
|
|
5144
|
+
ast?: unknown;
|
|
5145
|
+
meta?: {
|
|
5146
|
+
rationale?: string | undefined;
|
|
5147
|
+
generatedBy?: string | undefined;
|
|
5148
|
+
} | undefined;
|
|
5149
|
+
} | undefined;
|
|
4556
5150
|
}[] | undefined;
|
|
4557
5151
|
tenancy?: {
|
|
4558
5152
|
enabled: boolean;
|
|
@@ -4619,7 +5213,23 @@ declare const SysProjectCredential: Omit<{
|
|
|
4619
5213
|
displayFormat?: string | undefined;
|
|
4620
5214
|
startNumber?: number | undefined;
|
|
4621
5215
|
} | undefined;
|
|
4622
|
-
titleFormat?:
|
|
5216
|
+
titleFormat?: {
|
|
5217
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5218
|
+
source?: string | undefined;
|
|
5219
|
+
ast?: unknown;
|
|
5220
|
+
meta?: {
|
|
5221
|
+
rationale?: string | undefined;
|
|
5222
|
+
generatedBy?: string | undefined;
|
|
5223
|
+
} | undefined;
|
|
5224
|
+
} | {
|
|
5225
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5226
|
+
source?: string | undefined;
|
|
5227
|
+
ast?: unknown;
|
|
5228
|
+
meta?: {
|
|
5229
|
+
rationale?: string | undefined;
|
|
5230
|
+
generatedBy?: string | undefined;
|
|
5231
|
+
} | undefined;
|
|
5232
|
+
} | undefined;
|
|
4623
5233
|
compactLayout?: string[] | undefined;
|
|
4624
5234
|
search?: {
|
|
4625
5235
|
fields: string[];
|
|
@@ -4675,8 +5285,24 @@ declare const SysProjectCredential: Omit<{
|
|
|
4675
5285
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
4676
5286
|
confirmText?: string | undefined;
|
|
4677
5287
|
successMessage?: string | undefined;
|
|
4678
|
-
visible?:
|
|
4679
|
-
|
|
5288
|
+
visible?: {
|
|
5289
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5290
|
+
source?: string | undefined;
|
|
5291
|
+
ast?: unknown;
|
|
5292
|
+
meta?: {
|
|
5293
|
+
rationale?: string | undefined;
|
|
5294
|
+
generatedBy?: string | undefined;
|
|
5295
|
+
} | undefined;
|
|
5296
|
+
} | undefined;
|
|
5297
|
+
disabled?: boolean | {
|
|
5298
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5299
|
+
source?: string | undefined;
|
|
5300
|
+
ast?: unknown;
|
|
5301
|
+
meta?: {
|
|
5302
|
+
rationale?: string | undefined;
|
|
5303
|
+
generatedBy?: string | undefined;
|
|
5304
|
+
} | undefined;
|
|
5305
|
+
} | undefined;
|
|
4680
5306
|
shortcut?: string | undefined;
|
|
4681
5307
|
bulkEnabled?: boolean | undefined;
|
|
4682
5308
|
timeout?: number | undefined;
|
|
@@ -4745,7 +5371,15 @@ declare const SysProjectCredential: Omit<{
|
|
|
4745
5371
|
readonly referenceFilters?: string[] | undefined;
|
|
4746
5372
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
4747
5373
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4748
|
-
readonly expression?:
|
|
5374
|
+
readonly expression?: {
|
|
5375
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5376
|
+
source?: string | undefined;
|
|
5377
|
+
ast?: unknown;
|
|
5378
|
+
meta?: {
|
|
5379
|
+
rationale?: string | undefined;
|
|
5380
|
+
generatedBy?: string | undefined;
|
|
5381
|
+
} | undefined;
|
|
5382
|
+
} | undefined;
|
|
4749
5383
|
readonly summaryOperations?: {
|
|
4750
5384
|
object: string;
|
|
4751
5385
|
field: string;
|
|
@@ -4844,7 +5478,15 @@ declare const SysProjectCredential: Omit<{
|
|
|
4844
5478
|
threshold: number;
|
|
4845
5479
|
} | undefined;
|
|
4846
5480
|
} | undefined;
|
|
4847
|
-
readonly conditionalRequired?:
|
|
5481
|
+
readonly conditionalRequired?: {
|
|
5482
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5483
|
+
source?: string | undefined;
|
|
5484
|
+
ast?: unknown;
|
|
5485
|
+
meta?: {
|
|
5486
|
+
rationale?: string | undefined;
|
|
5487
|
+
generatedBy?: string | undefined;
|
|
5488
|
+
} | undefined;
|
|
5489
|
+
} | undefined;
|
|
4848
5490
|
readonly hidden?: boolean | undefined;
|
|
4849
5491
|
readonly sortable?: boolean | undefined;
|
|
4850
5492
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -4903,7 +5545,15 @@ declare const SysProjectCredential: Omit<{
|
|
|
4903
5545
|
readonly referenceFilters?: string[] | undefined;
|
|
4904
5546
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
4905
5547
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4906
|
-
readonly expression?:
|
|
5548
|
+
readonly expression?: {
|
|
5549
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5550
|
+
source?: string | undefined;
|
|
5551
|
+
ast?: unknown;
|
|
5552
|
+
meta?: {
|
|
5553
|
+
rationale?: string | undefined;
|
|
5554
|
+
generatedBy?: string | undefined;
|
|
5555
|
+
} | undefined;
|
|
5556
|
+
} | undefined;
|
|
4907
5557
|
readonly summaryOperations?: {
|
|
4908
5558
|
object: string;
|
|
4909
5559
|
field: string;
|
|
@@ -5002,7 +5652,15 @@ declare const SysProjectCredential: Omit<{
|
|
|
5002
5652
|
threshold: number;
|
|
5003
5653
|
} | undefined;
|
|
5004
5654
|
} | undefined;
|
|
5005
|
-
readonly conditionalRequired?:
|
|
5655
|
+
readonly conditionalRequired?: {
|
|
5656
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5657
|
+
source?: string | undefined;
|
|
5658
|
+
ast?: unknown;
|
|
5659
|
+
meta?: {
|
|
5660
|
+
rationale?: string | undefined;
|
|
5661
|
+
generatedBy?: string | undefined;
|
|
5662
|
+
} | undefined;
|
|
5663
|
+
} | undefined;
|
|
5006
5664
|
readonly hidden?: boolean | undefined;
|
|
5007
5665
|
readonly sortable?: boolean | undefined;
|
|
5008
5666
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -5061,7 +5719,15 @@ declare const SysProjectCredential: Omit<{
|
|
|
5061
5719
|
readonly referenceFilters?: string[] | undefined;
|
|
5062
5720
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
5063
5721
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5064
|
-
readonly expression?:
|
|
5722
|
+
readonly expression?: {
|
|
5723
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5724
|
+
source?: string | undefined;
|
|
5725
|
+
ast?: unknown;
|
|
5726
|
+
meta?: {
|
|
5727
|
+
rationale?: string | undefined;
|
|
5728
|
+
generatedBy?: string | undefined;
|
|
5729
|
+
} | undefined;
|
|
5730
|
+
} | undefined;
|
|
5065
5731
|
readonly summaryOperations?: {
|
|
5066
5732
|
object: string;
|
|
5067
5733
|
field: string;
|
|
@@ -5160,7 +5826,15 @@ declare const SysProjectCredential: Omit<{
|
|
|
5160
5826
|
threshold: number;
|
|
5161
5827
|
} | undefined;
|
|
5162
5828
|
} | undefined;
|
|
5163
|
-
readonly conditionalRequired?:
|
|
5829
|
+
readonly conditionalRequired?: {
|
|
5830
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5831
|
+
source?: string | undefined;
|
|
5832
|
+
ast?: unknown;
|
|
5833
|
+
meta?: {
|
|
5834
|
+
rationale?: string | undefined;
|
|
5835
|
+
generatedBy?: string | undefined;
|
|
5836
|
+
} | undefined;
|
|
5837
|
+
} | undefined;
|
|
5164
5838
|
readonly hidden?: boolean | undefined;
|
|
5165
5839
|
readonly sortable?: boolean | undefined;
|
|
5166
5840
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -5219,7 +5893,15 @@ declare const SysProjectCredential: Omit<{
|
|
|
5219
5893
|
readonly referenceFilters?: string[] | undefined;
|
|
5220
5894
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
5221
5895
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5222
|
-
readonly expression?:
|
|
5896
|
+
readonly expression?: {
|
|
5897
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5898
|
+
source?: string | undefined;
|
|
5899
|
+
ast?: unknown;
|
|
5900
|
+
meta?: {
|
|
5901
|
+
rationale?: string | undefined;
|
|
5902
|
+
generatedBy?: string | undefined;
|
|
5903
|
+
} | undefined;
|
|
5904
|
+
} | undefined;
|
|
5223
5905
|
readonly summaryOperations?: {
|
|
5224
5906
|
object: string;
|
|
5225
5907
|
field: string;
|
|
@@ -5318,7 +6000,15 @@ declare const SysProjectCredential: Omit<{
|
|
|
5318
6000
|
threshold: number;
|
|
5319
6001
|
} | undefined;
|
|
5320
6002
|
} | undefined;
|
|
5321
|
-
readonly conditionalRequired?:
|
|
6003
|
+
readonly conditionalRequired?: {
|
|
6004
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6005
|
+
source?: string | undefined;
|
|
6006
|
+
ast?: unknown;
|
|
6007
|
+
meta?: {
|
|
6008
|
+
rationale?: string | undefined;
|
|
6009
|
+
generatedBy?: string | undefined;
|
|
6010
|
+
} | undefined;
|
|
6011
|
+
} | undefined;
|
|
5322
6012
|
readonly hidden?: boolean | undefined;
|
|
5323
6013
|
readonly sortable?: boolean | undefined;
|
|
5324
6014
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -5377,7 +6067,15 @@ declare const SysProjectCredential: Omit<{
|
|
|
5377
6067
|
readonly referenceFilters?: string[] | undefined;
|
|
5378
6068
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
5379
6069
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5380
|
-
readonly expression?:
|
|
6070
|
+
readonly expression?: {
|
|
6071
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6072
|
+
source?: string | undefined;
|
|
6073
|
+
ast?: unknown;
|
|
6074
|
+
meta?: {
|
|
6075
|
+
rationale?: string | undefined;
|
|
6076
|
+
generatedBy?: string | undefined;
|
|
6077
|
+
} | undefined;
|
|
6078
|
+
} | undefined;
|
|
5381
6079
|
readonly summaryOperations?: {
|
|
5382
6080
|
object: string;
|
|
5383
6081
|
field: string;
|
|
@@ -5476,7 +6174,15 @@ declare const SysProjectCredential: Omit<{
|
|
|
5476
6174
|
threshold: number;
|
|
5477
6175
|
} | undefined;
|
|
5478
6176
|
} | undefined;
|
|
5479
|
-
readonly conditionalRequired?:
|
|
6177
|
+
readonly conditionalRequired?: {
|
|
6178
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6179
|
+
source?: string | undefined;
|
|
6180
|
+
ast?: unknown;
|
|
6181
|
+
meta?: {
|
|
6182
|
+
rationale?: string | undefined;
|
|
6183
|
+
generatedBy?: string | undefined;
|
|
6184
|
+
} | undefined;
|
|
6185
|
+
} | undefined;
|
|
5480
6186
|
readonly hidden?: boolean | undefined;
|
|
5481
6187
|
readonly sortable?: boolean | undefined;
|
|
5482
6188
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -5535,7 +6241,15 @@ declare const SysProjectCredential: Omit<{
|
|
|
5535
6241
|
readonly referenceFilters?: string[] | undefined;
|
|
5536
6242
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
5537
6243
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5538
|
-
readonly expression?:
|
|
6244
|
+
readonly expression?: {
|
|
6245
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6246
|
+
source?: string | undefined;
|
|
6247
|
+
ast?: unknown;
|
|
6248
|
+
meta?: {
|
|
6249
|
+
rationale?: string | undefined;
|
|
6250
|
+
generatedBy?: string | undefined;
|
|
6251
|
+
} | undefined;
|
|
6252
|
+
} | undefined;
|
|
5539
6253
|
readonly summaryOperations?: {
|
|
5540
6254
|
object: string;
|
|
5541
6255
|
field: string;
|
|
@@ -5634,7 +6348,15 @@ declare const SysProjectCredential: Omit<{
|
|
|
5634
6348
|
threshold: number;
|
|
5635
6349
|
} | undefined;
|
|
5636
6350
|
} | undefined;
|
|
5637
|
-
readonly conditionalRequired?:
|
|
6351
|
+
readonly conditionalRequired?: {
|
|
6352
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6353
|
+
source?: string | undefined;
|
|
6354
|
+
ast?: unknown;
|
|
6355
|
+
meta?: {
|
|
6356
|
+
rationale?: string | undefined;
|
|
6357
|
+
generatedBy?: string | undefined;
|
|
6358
|
+
} | undefined;
|
|
6359
|
+
} | undefined;
|
|
5638
6360
|
readonly hidden?: boolean | undefined;
|
|
5639
6361
|
readonly sortable?: boolean | undefined;
|
|
5640
6362
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -5693,7 +6415,15 @@ declare const SysProjectCredential: Omit<{
|
|
|
5693
6415
|
readonly referenceFilters?: string[] | undefined;
|
|
5694
6416
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
5695
6417
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5696
|
-
readonly expression?:
|
|
6418
|
+
readonly expression?: {
|
|
6419
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6420
|
+
source?: string | undefined;
|
|
6421
|
+
ast?: unknown;
|
|
6422
|
+
meta?: {
|
|
6423
|
+
rationale?: string | undefined;
|
|
6424
|
+
generatedBy?: string | undefined;
|
|
6425
|
+
} | undefined;
|
|
6426
|
+
} | undefined;
|
|
5697
6427
|
readonly summaryOperations?: {
|
|
5698
6428
|
object: string;
|
|
5699
6429
|
field: string;
|
|
@@ -5792,7 +6522,15 @@ declare const SysProjectCredential: Omit<{
|
|
|
5792
6522
|
threshold: number;
|
|
5793
6523
|
} | undefined;
|
|
5794
6524
|
} | undefined;
|
|
5795
|
-
readonly conditionalRequired?:
|
|
6525
|
+
readonly conditionalRequired?: {
|
|
6526
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6527
|
+
source?: string | undefined;
|
|
6528
|
+
ast?: unknown;
|
|
6529
|
+
meta?: {
|
|
6530
|
+
rationale?: string | undefined;
|
|
6531
|
+
generatedBy?: string | undefined;
|
|
6532
|
+
} | undefined;
|
|
6533
|
+
} | undefined;
|
|
5796
6534
|
readonly hidden?: boolean | undefined;
|
|
5797
6535
|
readonly sortable?: boolean | undefined;
|
|
5798
6536
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -5851,7 +6589,15 @@ declare const SysProjectCredential: Omit<{
|
|
|
5851
6589
|
readonly referenceFilters?: string[] | undefined;
|
|
5852
6590
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
5853
6591
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5854
|
-
readonly expression?:
|
|
6592
|
+
readonly expression?: {
|
|
6593
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6594
|
+
source?: string | undefined;
|
|
6595
|
+
ast?: unknown;
|
|
6596
|
+
meta?: {
|
|
6597
|
+
rationale?: string | undefined;
|
|
6598
|
+
generatedBy?: string | undefined;
|
|
6599
|
+
} | undefined;
|
|
6600
|
+
} | undefined;
|
|
5855
6601
|
readonly summaryOperations?: {
|
|
5856
6602
|
object: string;
|
|
5857
6603
|
field: string;
|
|
@@ -5950,7 +6696,15 @@ declare const SysProjectCredential: Omit<{
|
|
|
5950
6696
|
threshold: number;
|
|
5951
6697
|
} | undefined;
|
|
5952
6698
|
} | undefined;
|
|
5953
|
-
readonly conditionalRequired?:
|
|
6699
|
+
readonly conditionalRequired?: {
|
|
6700
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6701
|
+
source?: string | undefined;
|
|
6702
|
+
ast?: unknown;
|
|
6703
|
+
meta?: {
|
|
6704
|
+
rationale?: string | undefined;
|
|
6705
|
+
generatedBy?: string | undefined;
|
|
6706
|
+
} | undefined;
|
|
6707
|
+
} | undefined;
|
|
5954
6708
|
readonly hidden?: boolean | undefined;
|
|
5955
6709
|
readonly sortable?: boolean | undefined;
|
|
5956
6710
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -6009,7 +6763,15 @@ declare const SysProjectCredential: Omit<{
|
|
|
6009
6763
|
readonly referenceFilters?: string[] | undefined;
|
|
6010
6764
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
6011
6765
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6012
|
-
readonly expression?:
|
|
6766
|
+
readonly expression?: {
|
|
6767
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6768
|
+
source?: string | undefined;
|
|
6769
|
+
ast?: unknown;
|
|
6770
|
+
meta?: {
|
|
6771
|
+
rationale?: string | undefined;
|
|
6772
|
+
generatedBy?: string | undefined;
|
|
6773
|
+
} | undefined;
|
|
6774
|
+
} | undefined;
|
|
6013
6775
|
readonly summaryOperations?: {
|
|
6014
6776
|
object: string;
|
|
6015
6777
|
field: string;
|
|
@@ -6108,7 +6870,15 @@ declare const SysProjectCredential: Omit<{
|
|
|
6108
6870
|
threshold: number;
|
|
6109
6871
|
} | undefined;
|
|
6110
6872
|
} | undefined;
|
|
6111
|
-
readonly conditionalRequired?:
|
|
6873
|
+
readonly conditionalRequired?: {
|
|
6874
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6875
|
+
source?: string | undefined;
|
|
6876
|
+
ast?: unknown;
|
|
6877
|
+
meta?: {
|
|
6878
|
+
rationale?: string | undefined;
|
|
6879
|
+
generatedBy?: string | undefined;
|
|
6880
|
+
} | undefined;
|
|
6881
|
+
} | undefined;
|
|
6112
6882
|
readonly hidden?: boolean | undefined;
|
|
6113
6883
|
readonly sortable?: boolean | undefined;
|
|
6114
6884
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -6167,7 +6937,15 @@ declare const SysProjectCredential: Omit<{
|
|
|
6167
6937
|
readonly referenceFilters?: string[] | undefined;
|
|
6168
6938
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
6169
6939
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6170
|
-
readonly expression?:
|
|
6940
|
+
readonly expression?: {
|
|
6941
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6942
|
+
source?: string | undefined;
|
|
6943
|
+
ast?: unknown;
|
|
6944
|
+
meta?: {
|
|
6945
|
+
rationale?: string | undefined;
|
|
6946
|
+
generatedBy?: string | undefined;
|
|
6947
|
+
} | undefined;
|
|
6948
|
+
} | undefined;
|
|
6171
6949
|
readonly summaryOperations?: {
|
|
6172
6950
|
object: string;
|
|
6173
6951
|
field: string;
|
|
@@ -6266,7 +7044,15 @@ declare const SysProjectCredential: Omit<{
|
|
|
6266
7044
|
threshold: number;
|
|
6267
7045
|
} | undefined;
|
|
6268
7046
|
} | undefined;
|
|
6269
|
-
readonly conditionalRequired?:
|
|
7047
|
+
readonly conditionalRequired?: {
|
|
7048
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
7049
|
+
source?: string | undefined;
|
|
7050
|
+
ast?: unknown;
|
|
7051
|
+
meta?: {
|
|
7052
|
+
rationale?: string | undefined;
|
|
7053
|
+
generatedBy?: string | undefined;
|
|
7054
|
+
} | undefined;
|
|
7055
|
+
} | undefined;
|
|
6270
7056
|
readonly hidden?: boolean | undefined;
|
|
6271
7057
|
readonly sortable?: boolean | undefined;
|
|
6272
7058
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -6356,7 +7142,23 @@ declare const SysApp: Omit<{
|
|
|
6356
7142
|
reference?: string | undefined;
|
|
6357
7143
|
referenceFilters?: string[] | undefined;
|
|
6358
7144
|
writeRequiresMasterRead?: boolean | undefined;
|
|
6359
|
-
expression?:
|
|
7145
|
+
expression?: {
|
|
7146
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
7147
|
+
source?: string | undefined;
|
|
7148
|
+
ast?: unknown;
|
|
7149
|
+
meta?: {
|
|
7150
|
+
rationale?: string | undefined;
|
|
7151
|
+
generatedBy?: string | undefined;
|
|
7152
|
+
} | undefined;
|
|
7153
|
+
} | {
|
|
7154
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
7155
|
+
source?: string | undefined;
|
|
7156
|
+
ast?: unknown;
|
|
7157
|
+
meta?: {
|
|
7158
|
+
rationale?: string | undefined;
|
|
7159
|
+
generatedBy?: string | undefined;
|
|
7160
|
+
} | undefined;
|
|
7161
|
+
} | undefined;
|
|
6360
7162
|
summaryOperations?: {
|
|
6361
7163
|
object: string;
|
|
6362
7164
|
field: string;
|
|
@@ -6474,7 +7276,23 @@ declare const SysApp: Omit<{
|
|
|
6474
7276
|
} | undefined;
|
|
6475
7277
|
} | undefined;
|
|
6476
7278
|
group?: string | undefined;
|
|
6477
|
-
conditionalRequired?:
|
|
7279
|
+
conditionalRequired?: {
|
|
7280
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
7281
|
+
source?: string | undefined;
|
|
7282
|
+
ast?: unknown;
|
|
7283
|
+
meta?: {
|
|
7284
|
+
rationale?: string | undefined;
|
|
7285
|
+
generatedBy?: string | undefined;
|
|
7286
|
+
} | undefined;
|
|
7287
|
+
} | {
|
|
7288
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
7289
|
+
source?: string | undefined;
|
|
7290
|
+
ast?: unknown;
|
|
7291
|
+
meta?: {
|
|
7292
|
+
rationale?: string | undefined;
|
|
7293
|
+
generatedBy?: string | undefined;
|
|
7294
|
+
} | undefined;
|
|
7295
|
+
} | undefined;
|
|
6478
7296
|
inlineHelpText?: string | undefined;
|
|
6479
7297
|
trackFeedHistory?: boolean | undefined;
|
|
6480
7298
|
caseSensitive?: boolean | undefined;
|
|
@@ -6485,6 +7303,12 @@ declare const SysApp: Omit<{
|
|
|
6485
7303
|
description?: string | undefined;
|
|
6486
7304
|
icon?: string | undefined;
|
|
6487
7305
|
tags?: string[] | undefined;
|
|
7306
|
+
managedBy?: "system" | "better-auth" | "platform" | undefined;
|
|
7307
|
+
systemFields?: false | {
|
|
7308
|
+
tenant?: boolean | undefined;
|
|
7309
|
+
owner?: boolean | undefined;
|
|
7310
|
+
audit?: boolean | undefined;
|
|
7311
|
+
} | undefined;
|
|
6488
7312
|
indexes?: {
|
|
6489
7313
|
fields: string[];
|
|
6490
7314
|
type: "hash" | "btree" | "gin" | "gist" | "fulltext";
|
|
@@ -6498,7 +7322,23 @@ declare const SysApp: Omit<{
|
|
|
6498
7322
|
defaultExpanded: boolean;
|
|
6499
7323
|
icon?: string | undefined;
|
|
6500
7324
|
description?: string | undefined;
|
|
6501
|
-
visibleOn?:
|
|
7325
|
+
visibleOn?: {
|
|
7326
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
7327
|
+
source?: string | undefined;
|
|
7328
|
+
ast?: unknown;
|
|
7329
|
+
meta?: {
|
|
7330
|
+
rationale?: string | undefined;
|
|
7331
|
+
generatedBy?: string | undefined;
|
|
7332
|
+
} | undefined;
|
|
7333
|
+
} | {
|
|
7334
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
7335
|
+
source?: string | undefined;
|
|
7336
|
+
ast?: unknown;
|
|
7337
|
+
meta?: {
|
|
7338
|
+
rationale?: string | undefined;
|
|
7339
|
+
generatedBy?: string | undefined;
|
|
7340
|
+
} | undefined;
|
|
7341
|
+
} | undefined;
|
|
6502
7342
|
}[] | undefined;
|
|
6503
7343
|
tenancy?: {
|
|
6504
7344
|
enabled: boolean;
|
|
@@ -6565,7 +7405,23 @@ declare const SysApp: Omit<{
|
|
|
6565
7405
|
displayFormat?: string | undefined;
|
|
6566
7406
|
startNumber?: number | undefined;
|
|
6567
7407
|
} | undefined;
|
|
6568
|
-
titleFormat?:
|
|
7408
|
+
titleFormat?: {
|
|
7409
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
7410
|
+
source?: string | undefined;
|
|
7411
|
+
ast?: unknown;
|
|
7412
|
+
meta?: {
|
|
7413
|
+
rationale?: string | undefined;
|
|
7414
|
+
generatedBy?: string | undefined;
|
|
7415
|
+
} | undefined;
|
|
7416
|
+
} | {
|
|
7417
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
7418
|
+
source?: string | undefined;
|
|
7419
|
+
ast?: unknown;
|
|
7420
|
+
meta?: {
|
|
7421
|
+
rationale?: string | undefined;
|
|
7422
|
+
generatedBy?: string | undefined;
|
|
7423
|
+
} | undefined;
|
|
7424
|
+
} | undefined;
|
|
6569
7425
|
compactLayout?: string[] | undefined;
|
|
6570
7426
|
search?: {
|
|
6571
7427
|
fields: string[];
|
|
@@ -6621,8 +7477,24 @@ declare const SysApp: Omit<{
|
|
|
6621
7477
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
6622
7478
|
confirmText?: string | undefined;
|
|
6623
7479
|
successMessage?: string | undefined;
|
|
6624
|
-
visible?:
|
|
6625
|
-
|
|
7480
|
+
visible?: {
|
|
7481
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
7482
|
+
source?: string | undefined;
|
|
7483
|
+
ast?: unknown;
|
|
7484
|
+
meta?: {
|
|
7485
|
+
rationale?: string | undefined;
|
|
7486
|
+
generatedBy?: string | undefined;
|
|
7487
|
+
} | undefined;
|
|
7488
|
+
} | undefined;
|
|
7489
|
+
disabled?: boolean | {
|
|
7490
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
7491
|
+
source?: string | undefined;
|
|
7492
|
+
ast?: unknown;
|
|
7493
|
+
meta?: {
|
|
7494
|
+
rationale?: string | undefined;
|
|
7495
|
+
generatedBy?: string | undefined;
|
|
7496
|
+
} | undefined;
|
|
7497
|
+
} | undefined;
|
|
6626
7498
|
shortcut?: string | undefined;
|
|
6627
7499
|
bulkEnabled?: boolean | undefined;
|
|
6628
7500
|
timeout?: number | undefined;
|
|
@@ -6691,7 +7563,15 @@ declare const SysApp: Omit<{
|
|
|
6691
7563
|
readonly referenceFilters?: string[] | undefined;
|
|
6692
7564
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
6693
7565
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6694
|
-
readonly expression?:
|
|
7566
|
+
readonly expression?: {
|
|
7567
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
7568
|
+
source?: string | undefined;
|
|
7569
|
+
ast?: unknown;
|
|
7570
|
+
meta?: {
|
|
7571
|
+
rationale?: string | undefined;
|
|
7572
|
+
generatedBy?: string | undefined;
|
|
7573
|
+
} | undefined;
|
|
7574
|
+
} | undefined;
|
|
6695
7575
|
readonly summaryOperations?: {
|
|
6696
7576
|
object: string;
|
|
6697
7577
|
field: string;
|
|
@@ -6790,7 +7670,15 @@ declare const SysApp: Omit<{
|
|
|
6790
7670
|
threshold: number;
|
|
6791
7671
|
} | undefined;
|
|
6792
7672
|
} | undefined;
|
|
6793
|
-
readonly conditionalRequired?:
|
|
7673
|
+
readonly conditionalRequired?: {
|
|
7674
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
7675
|
+
source?: string | undefined;
|
|
7676
|
+
ast?: unknown;
|
|
7677
|
+
meta?: {
|
|
7678
|
+
rationale?: string | undefined;
|
|
7679
|
+
generatedBy?: string | undefined;
|
|
7680
|
+
} | undefined;
|
|
7681
|
+
} | undefined;
|
|
6794
7682
|
readonly hidden?: boolean | undefined;
|
|
6795
7683
|
readonly sortable?: boolean | undefined;
|
|
6796
7684
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -6849,7 +7737,15 @@ declare const SysApp: Omit<{
|
|
|
6849
7737
|
readonly referenceFilters?: string[] | undefined;
|
|
6850
7738
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
6851
7739
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6852
|
-
readonly expression?:
|
|
7740
|
+
readonly expression?: {
|
|
7741
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
7742
|
+
source?: string | undefined;
|
|
7743
|
+
ast?: unknown;
|
|
7744
|
+
meta?: {
|
|
7745
|
+
rationale?: string | undefined;
|
|
7746
|
+
generatedBy?: string | undefined;
|
|
7747
|
+
} | undefined;
|
|
7748
|
+
} | undefined;
|
|
6853
7749
|
readonly summaryOperations?: {
|
|
6854
7750
|
object: string;
|
|
6855
7751
|
field: string;
|
|
@@ -6948,7 +7844,15 @@ declare const SysApp: Omit<{
|
|
|
6948
7844
|
threshold: number;
|
|
6949
7845
|
} | undefined;
|
|
6950
7846
|
} | undefined;
|
|
6951
|
-
readonly conditionalRequired?:
|
|
7847
|
+
readonly conditionalRequired?: {
|
|
7848
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
7849
|
+
source?: string | undefined;
|
|
7850
|
+
ast?: unknown;
|
|
7851
|
+
meta?: {
|
|
7852
|
+
rationale?: string | undefined;
|
|
7853
|
+
generatedBy?: string | undefined;
|
|
7854
|
+
} | undefined;
|
|
7855
|
+
} | undefined;
|
|
6952
7856
|
readonly hidden?: boolean | undefined;
|
|
6953
7857
|
readonly sortable?: boolean | undefined;
|
|
6954
7858
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -7007,7 +7911,15 @@ declare const SysApp: Omit<{
|
|
|
7007
7911
|
readonly referenceFilters?: string[] | undefined;
|
|
7008
7912
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
7009
7913
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7010
|
-
readonly expression?:
|
|
7914
|
+
readonly expression?: {
|
|
7915
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
7916
|
+
source?: string | undefined;
|
|
7917
|
+
ast?: unknown;
|
|
7918
|
+
meta?: {
|
|
7919
|
+
rationale?: string | undefined;
|
|
7920
|
+
generatedBy?: string | undefined;
|
|
7921
|
+
} | undefined;
|
|
7922
|
+
} | undefined;
|
|
7011
7923
|
readonly summaryOperations?: {
|
|
7012
7924
|
object: string;
|
|
7013
7925
|
field: string;
|
|
@@ -7106,7 +8018,15 @@ declare const SysApp: Omit<{
|
|
|
7106
8018
|
threshold: number;
|
|
7107
8019
|
} | undefined;
|
|
7108
8020
|
} | undefined;
|
|
7109
|
-
readonly conditionalRequired?:
|
|
8021
|
+
readonly conditionalRequired?: {
|
|
8022
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
8023
|
+
source?: string | undefined;
|
|
8024
|
+
ast?: unknown;
|
|
8025
|
+
meta?: {
|
|
8026
|
+
rationale?: string | undefined;
|
|
8027
|
+
generatedBy?: string | undefined;
|
|
8028
|
+
} | undefined;
|
|
8029
|
+
} | undefined;
|
|
7110
8030
|
readonly hidden?: boolean | undefined;
|
|
7111
8031
|
readonly sortable?: boolean | undefined;
|
|
7112
8032
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -7165,7 +8085,15 @@ declare const SysApp: Omit<{
|
|
|
7165
8085
|
readonly referenceFilters?: string[] | undefined;
|
|
7166
8086
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
7167
8087
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7168
|
-
readonly expression?:
|
|
8088
|
+
readonly expression?: {
|
|
8089
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
8090
|
+
source?: string | undefined;
|
|
8091
|
+
ast?: unknown;
|
|
8092
|
+
meta?: {
|
|
8093
|
+
rationale?: string | undefined;
|
|
8094
|
+
generatedBy?: string | undefined;
|
|
8095
|
+
} | undefined;
|
|
8096
|
+
} | undefined;
|
|
7169
8097
|
readonly summaryOperations?: {
|
|
7170
8098
|
object: string;
|
|
7171
8099
|
field: string;
|
|
@@ -7264,7 +8192,15 @@ declare const SysApp: Omit<{
|
|
|
7264
8192
|
threshold: number;
|
|
7265
8193
|
} | undefined;
|
|
7266
8194
|
} | undefined;
|
|
7267
|
-
readonly conditionalRequired?:
|
|
8195
|
+
readonly conditionalRequired?: {
|
|
8196
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
8197
|
+
source?: string | undefined;
|
|
8198
|
+
ast?: unknown;
|
|
8199
|
+
meta?: {
|
|
8200
|
+
rationale?: string | undefined;
|
|
8201
|
+
generatedBy?: string | undefined;
|
|
8202
|
+
} | undefined;
|
|
8203
|
+
} | undefined;
|
|
7268
8204
|
readonly hidden?: boolean | undefined;
|
|
7269
8205
|
readonly sortable?: boolean | undefined;
|
|
7270
8206
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -7323,7 +8259,15 @@ declare const SysApp: Omit<{
|
|
|
7323
8259
|
readonly referenceFilters?: string[] | undefined;
|
|
7324
8260
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
7325
8261
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7326
|
-
readonly expression?:
|
|
8262
|
+
readonly expression?: {
|
|
8263
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
8264
|
+
source?: string | undefined;
|
|
8265
|
+
ast?: unknown;
|
|
8266
|
+
meta?: {
|
|
8267
|
+
rationale?: string | undefined;
|
|
8268
|
+
generatedBy?: string | undefined;
|
|
8269
|
+
} | undefined;
|
|
8270
|
+
} | undefined;
|
|
7327
8271
|
readonly summaryOperations?: {
|
|
7328
8272
|
object: string;
|
|
7329
8273
|
field: string;
|
|
@@ -7422,7 +8366,15 @@ declare const SysApp: Omit<{
|
|
|
7422
8366
|
threshold: number;
|
|
7423
8367
|
} | undefined;
|
|
7424
8368
|
} | undefined;
|
|
7425
|
-
readonly conditionalRequired?:
|
|
8369
|
+
readonly conditionalRequired?: {
|
|
8370
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
8371
|
+
source?: string | undefined;
|
|
8372
|
+
ast?: unknown;
|
|
8373
|
+
meta?: {
|
|
8374
|
+
rationale?: string | undefined;
|
|
8375
|
+
generatedBy?: string | undefined;
|
|
8376
|
+
} | undefined;
|
|
8377
|
+
} | undefined;
|
|
7426
8378
|
readonly hidden?: boolean | undefined;
|
|
7427
8379
|
readonly sortable?: boolean | undefined;
|
|
7428
8380
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -7481,7 +8433,15 @@ declare const SysApp: Omit<{
|
|
|
7481
8433
|
readonly referenceFilters?: string[] | undefined;
|
|
7482
8434
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
7483
8435
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7484
|
-
readonly expression?:
|
|
8436
|
+
readonly expression?: {
|
|
8437
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
8438
|
+
source?: string | undefined;
|
|
8439
|
+
ast?: unknown;
|
|
8440
|
+
meta?: {
|
|
8441
|
+
rationale?: string | undefined;
|
|
8442
|
+
generatedBy?: string | undefined;
|
|
8443
|
+
} | undefined;
|
|
8444
|
+
} | undefined;
|
|
7485
8445
|
readonly summaryOperations?: {
|
|
7486
8446
|
object: string;
|
|
7487
8447
|
field: string;
|
|
@@ -7580,7 +8540,15 @@ declare const SysApp: Omit<{
|
|
|
7580
8540
|
threshold: number;
|
|
7581
8541
|
} | undefined;
|
|
7582
8542
|
} | undefined;
|
|
7583
|
-
readonly conditionalRequired?:
|
|
8543
|
+
readonly conditionalRequired?: {
|
|
8544
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
8545
|
+
source?: string | undefined;
|
|
8546
|
+
ast?: unknown;
|
|
8547
|
+
meta?: {
|
|
8548
|
+
rationale?: string | undefined;
|
|
8549
|
+
generatedBy?: string | undefined;
|
|
8550
|
+
} | undefined;
|
|
8551
|
+
} | undefined;
|
|
7584
8552
|
readonly hidden?: boolean | undefined;
|
|
7585
8553
|
readonly sortable?: boolean | undefined;
|
|
7586
8554
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -7639,7 +8607,15 @@ declare const SysApp: Omit<{
|
|
|
7639
8607
|
readonly referenceFilters?: string[] | undefined;
|
|
7640
8608
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
7641
8609
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7642
|
-
readonly expression?:
|
|
8610
|
+
readonly expression?: {
|
|
8611
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
8612
|
+
source?: string | undefined;
|
|
8613
|
+
ast?: unknown;
|
|
8614
|
+
meta?: {
|
|
8615
|
+
rationale?: string | undefined;
|
|
8616
|
+
generatedBy?: string | undefined;
|
|
8617
|
+
} | undefined;
|
|
8618
|
+
} | undefined;
|
|
7643
8619
|
readonly summaryOperations?: {
|
|
7644
8620
|
object: string;
|
|
7645
8621
|
field: string;
|
|
@@ -7738,7 +8714,15 @@ declare const SysApp: Omit<{
|
|
|
7738
8714
|
threshold: number;
|
|
7739
8715
|
} | undefined;
|
|
7740
8716
|
} | undefined;
|
|
7741
|
-
readonly conditionalRequired?:
|
|
8717
|
+
readonly conditionalRequired?: {
|
|
8718
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
8719
|
+
source?: string | undefined;
|
|
8720
|
+
ast?: unknown;
|
|
8721
|
+
meta?: {
|
|
8722
|
+
rationale?: string | undefined;
|
|
8723
|
+
generatedBy?: string | undefined;
|
|
8724
|
+
} | undefined;
|
|
8725
|
+
} | undefined;
|
|
7742
8726
|
readonly hidden?: boolean | undefined;
|
|
7743
8727
|
readonly sortable?: boolean | undefined;
|
|
7744
8728
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -7797,7 +8781,15 @@ declare const SysApp: Omit<{
|
|
|
7797
8781
|
readonly referenceFilters?: string[] | undefined;
|
|
7798
8782
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
7799
8783
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7800
|
-
readonly expression?:
|
|
8784
|
+
readonly expression?: {
|
|
8785
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
8786
|
+
source?: string | undefined;
|
|
8787
|
+
ast?: unknown;
|
|
8788
|
+
meta?: {
|
|
8789
|
+
rationale?: string | undefined;
|
|
8790
|
+
generatedBy?: string | undefined;
|
|
8791
|
+
} | undefined;
|
|
8792
|
+
} | undefined;
|
|
7801
8793
|
readonly summaryOperations?: {
|
|
7802
8794
|
object: string;
|
|
7803
8795
|
field: string;
|
|
@@ -7896,7 +8888,15 @@ declare const SysApp: Omit<{
|
|
|
7896
8888
|
threshold: number;
|
|
7897
8889
|
} | undefined;
|
|
7898
8890
|
} | undefined;
|
|
7899
|
-
readonly conditionalRequired?:
|
|
8891
|
+
readonly conditionalRequired?: {
|
|
8892
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
8893
|
+
source?: string | undefined;
|
|
8894
|
+
ast?: unknown;
|
|
8895
|
+
meta?: {
|
|
8896
|
+
rationale?: string | undefined;
|
|
8897
|
+
generatedBy?: string | undefined;
|
|
8898
|
+
} | undefined;
|
|
8899
|
+
} | undefined;
|
|
7900
8900
|
readonly hidden?: boolean | undefined;
|
|
7901
8901
|
readonly sortable?: boolean | undefined;
|
|
7902
8902
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -7955,7 +8955,15 @@ declare const SysApp: Omit<{
|
|
|
7955
8955
|
readonly referenceFilters?: string[] | undefined;
|
|
7956
8956
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
7957
8957
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7958
|
-
readonly expression?:
|
|
8958
|
+
readonly expression?: {
|
|
8959
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
8960
|
+
source?: string | undefined;
|
|
8961
|
+
ast?: unknown;
|
|
8962
|
+
meta?: {
|
|
8963
|
+
rationale?: string | undefined;
|
|
8964
|
+
generatedBy?: string | undefined;
|
|
8965
|
+
} | undefined;
|
|
8966
|
+
} | undefined;
|
|
7959
8967
|
readonly summaryOperations?: {
|
|
7960
8968
|
object: string;
|
|
7961
8969
|
field: string;
|
|
@@ -8054,7 +9062,15 @@ declare const SysApp: Omit<{
|
|
|
8054
9062
|
threshold: number;
|
|
8055
9063
|
} | undefined;
|
|
8056
9064
|
} | undefined;
|
|
8057
|
-
readonly conditionalRequired?:
|
|
9065
|
+
readonly conditionalRequired?: {
|
|
9066
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
9067
|
+
source?: string | undefined;
|
|
9068
|
+
ast?: unknown;
|
|
9069
|
+
meta?: {
|
|
9070
|
+
rationale?: string | undefined;
|
|
9071
|
+
generatedBy?: string | undefined;
|
|
9072
|
+
} | undefined;
|
|
9073
|
+
} | undefined;
|
|
8058
9074
|
readonly hidden?: boolean | undefined;
|
|
8059
9075
|
readonly sortable?: boolean | undefined;
|
|
8060
9076
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -8113,7 +9129,15 @@ declare const SysApp: Omit<{
|
|
|
8113
9129
|
readonly referenceFilters?: string[] | undefined;
|
|
8114
9130
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
8115
9131
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
8116
|
-
readonly expression?:
|
|
9132
|
+
readonly expression?: {
|
|
9133
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
9134
|
+
source?: string | undefined;
|
|
9135
|
+
ast?: unknown;
|
|
9136
|
+
meta?: {
|
|
9137
|
+
rationale?: string | undefined;
|
|
9138
|
+
generatedBy?: string | undefined;
|
|
9139
|
+
} | undefined;
|
|
9140
|
+
} | undefined;
|
|
8117
9141
|
readonly summaryOperations?: {
|
|
8118
9142
|
object: string;
|
|
8119
9143
|
field: string;
|
|
@@ -8212,7 +9236,15 @@ declare const SysApp: Omit<{
|
|
|
8212
9236
|
threshold: number;
|
|
8213
9237
|
} | undefined;
|
|
8214
9238
|
} | undefined;
|
|
8215
|
-
readonly conditionalRequired?:
|
|
9239
|
+
readonly conditionalRequired?: {
|
|
9240
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
9241
|
+
source?: string | undefined;
|
|
9242
|
+
ast?: unknown;
|
|
9243
|
+
meta?: {
|
|
9244
|
+
rationale?: string | undefined;
|
|
9245
|
+
generatedBy?: string | undefined;
|
|
9246
|
+
} | undefined;
|
|
9247
|
+
} | undefined;
|
|
8216
9248
|
readonly hidden?: boolean | undefined;
|
|
8217
9249
|
readonly sortable?: boolean | undefined;
|
|
8218
9250
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -8271,7 +9303,15 @@ declare const SysApp: Omit<{
|
|
|
8271
9303
|
readonly referenceFilters?: string[] | undefined;
|
|
8272
9304
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
8273
9305
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
8274
|
-
readonly expression?:
|
|
9306
|
+
readonly expression?: {
|
|
9307
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
9308
|
+
source?: string | undefined;
|
|
9309
|
+
ast?: unknown;
|
|
9310
|
+
meta?: {
|
|
9311
|
+
rationale?: string | undefined;
|
|
9312
|
+
generatedBy?: string | undefined;
|
|
9313
|
+
} | undefined;
|
|
9314
|
+
} | undefined;
|
|
8275
9315
|
readonly summaryOperations?: {
|
|
8276
9316
|
object: string;
|
|
8277
9317
|
field: string;
|
|
@@ -8370,7 +9410,15 @@ declare const SysApp: Omit<{
|
|
|
8370
9410
|
threshold: number;
|
|
8371
9411
|
} | undefined;
|
|
8372
9412
|
} | undefined;
|
|
8373
|
-
readonly conditionalRequired?:
|
|
9413
|
+
readonly conditionalRequired?: {
|
|
9414
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
9415
|
+
source?: string | undefined;
|
|
9416
|
+
ast?: unknown;
|
|
9417
|
+
meta?: {
|
|
9418
|
+
rationale?: string | undefined;
|
|
9419
|
+
generatedBy?: string | undefined;
|
|
9420
|
+
} | undefined;
|
|
9421
|
+
} | undefined;
|
|
8374
9422
|
readonly hidden?: boolean | undefined;
|
|
8375
9423
|
readonly sortable?: boolean | undefined;
|
|
8376
9424
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -8429,7 +9477,15 @@ declare const SysApp: Omit<{
|
|
|
8429
9477
|
readonly referenceFilters?: string[] | undefined;
|
|
8430
9478
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
8431
9479
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
8432
|
-
readonly expression?:
|
|
9480
|
+
readonly expression?: {
|
|
9481
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
9482
|
+
source?: string | undefined;
|
|
9483
|
+
ast?: unknown;
|
|
9484
|
+
meta?: {
|
|
9485
|
+
rationale?: string | undefined;
|
|
9486
|
+
generatedBy?: string | undefined;
|
|
9487
|
+
} | undefined;
|
|
9488
|
+
} | undefined;
|
|
8433
9489
|
readonly summaryOperations?: {
|
|
8434
9490
|
object: string;
|
|
8435
9491
|
field: string;
|
|
@@ -8528,7 +9584,15 @@ declare const SysApp: Omit<{
|
|
|
8528
9584
|
threshold: number;
|
|
8529
9585
|
} | undefined;
|
|
8530
9586
|
} | undefined;
|
|
8531
|
-
readonly conditionalRequired?:
|
|
9587
|
+
readonly conditionalRequired?: {
|
|
9588
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
9589
|
+
source?: string | undefined;
|
|
9590
|
+
ast?: unknown;
|
|
9591
|
+
meta?: {
|
|
9592
|
+
rationale?: string | undefined;
|
|
9593
|
+
generatedBy?: string | undefined;
|
|
9594
|
+
} | undefined;
|
|
9595
|
+
} | undefined;
|
|
8532
9596
|
readonly hidden?: boolean | undefined;
|
|
8533
9597
|
readonly sortable?: boolean | undefined;
|
|
8534
9598
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -8587,7 +9651,15 @@ declare const SysApp: Omit<{
|
|
|
8587
9651
|
readonly referenceFilters?: string[] | undefined;
|
|
8588
9652
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
8589
9653
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
8590
|
-
readonly expression?:
|
|
9654
|
+
readonly expression?: {
|
|
9655
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
9656
|
+
source?: string | undefined;
|
|
9657
|
+
ast?: unknown;
|
|
9658
|
+
meta?: {
|
|
9659
|
+
rationale?: string | undefined;
|
|
9660
|
+
generatedBy?: string | undefined;
|
|
9661
|
+
} | undefined;
|
|
9662
|
+
} | undefined;
|
|
8591
9663
|
readonly summaryOperations?: {
|
|
8592
9664
|
object: string;
|
|
8593
9665
|
field: string;
|
|
@@ -8686,7 +9758,15 @@ declare const SysApp: Omit<{
|
|
|
8686
9758
|
threshold: number;
|
|
8687
9759
|
} | undefined;
|
|
8688
9760
|
} | undefined;
|
|
8689
|
-
readonly conditionalRequired?:
|
|
9761
|
+
readonly conditionalRequired?: {
|
|
9762
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
9763
|
+
source?: string | undefined;
|
|
9764
|
+
ast?: unknown;
|
|
9765
|
+
meta?: {
|
|
9766
|
+
rationale?: string | undefined;
|
|
9767
|
+
generatedBy?: string | undefined;
|
|
9768
|
+
} | undefined;
|
|
9769
|
+
} | undefined;
|
|
8690
9770
|
readonly hidden?: boolean | undefined;
|
|
8691
9771
|
readonly sortable?: boolean | undefined;
|
|
8692
9772
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -8745,7 +9825,15 @@ declare const SysApp: Omit<{
|
|
|
8745
9825
|
readonly referenceFilters?: string[] | undefined;
|
|
8746
9826
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
8747
9827
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
8748
|
-
readonly expression?:
|
|
9828
|
+
readonly expression?: {
|
|
9829
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
9830
|
+
source?: string | undefined;
|
|
9831
|
+
ast?: unknown;
|
|
9832
|
+
meta?: {
|
|
9833
|
+
rationale?: string | undefined;
|
|
9834
|
+
generatedBy?: string | undefined;
|
|
9835
|
+
} | undefined;
|
|
9836
|
+
} | undefined;
|
|
8749
9837
|
readonly summaryOperations?: {
|
|
8750
9838
|
object: string;
|
|
8751
9839
|
field: string;
|
|
@@ -8844,7 +9932,15 @@ declare const SysApp: Omit<{
|
|
|
8844
9932
|
threshold: number;
|
|
8845
9933
|
} | undefined;
|
|
8846
9934
|
} | undefined;
|
|
8847
|
-
readonly conditionalRequired?:
|
|
9935
|
+
readonly conditionalRequired?: {
|
|
9936
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
9937
|
+
source?: string | undefined;
|
|
9938
|
+
ast?: unknown;
|
|
9939
|
+
meta?: {
|
|
9940
|
+
rationale?: string | undefined;
|
|
9941
|
+
generatedBy?: string | undefined;
|
|
9942
|
+
} | undefined;
|
|
9943
|
+
} | undefined;
|
|
8848
9944
|
readonly hidden?: boolean | undefined;
|
|
8849
9945
|
readonly sortable?: boolean | undefined;
|
|
8850
9946
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -8931,7 +10027,23 @@ declare const SysPackage: Omit<{
|
|
|
8931
10027
|
reference?: string | undefined;
|
|
8932
10028
|
referenceFilters?: string[] | undefined;
|
|
8933
10029
|
writeRequiresMasterRead?: boolean | undefined;
|
|
8934
|
-
expression?:
|
|
10030
|
+
expression?: {
|
|
10031
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
10032
|
+
source?: string | undefined;
|
|
10033
|
+
ast?: unknown;
|
|
10034
|
+
meta?: {
|
|
10035
|
+
rationale?: string | undefined;
|
|
10036
|
+
generatedBy?: string | undefined;
|
|
10037
|
+
} | undefined;
|
|
10038
|
+
} | {
|
|
10039
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
10040
|
+
source?: string | undefined;
|
|
10041
|
+
ast?: unknown;
|
|
10042
|
+
meta?: {
|
|
10043
|
+
rationale?: string | undefined;
|
|
10044
|
+
generatedBy?: string | undefined;
|
|
10045
|
+
} | undefined;
|
|
10046
|
+
} | undefined;
|
|
8935
10047
|
summaryOperations?: {
|
|
8936
10048
|
object: string;
|
|
8937
10049
|
field: string;
|
|
@@ -9049,7 +10161,23 @@ declare const SysPackage: Omit<{
|
|
|
9049
10161
|
} | undefined;
|
|
9050
10162
|
} | undefined;
|
|
9051
10163
|
group?: string | undefined;
|
|
9052
|
-
conditionalRequired?:
|
|
10164
|
+
conditionalRequired?: {
|
|
10165
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
10166
|
+
source?: string | undefined;
|
|
10167
|
+
ast?: unknown;
|
|
10168
|
+
meta?: {
|
|
10169
|
+
rationale?: string | undefined;
|
|
10170
|
+
generatedBy?: string | undefined;
|
|
10171
|
+
} | undefined;
|
|
10172
|
+
} | {
|
|
10173
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
10174
|
+
source?: string | undefined;
|
|
10175
|
+
ast?: unknown;
|
|
10176
|
+
meta?: {
|
|
10177
|
+
rationale?: string | undefined;
|
|
10178
|
+
generatedBy?: string | undefined;
|
|
10179
|
+
} | undefined;
|
|
10180
|
+
} | undefined;
|
|
9053
10181
|
inlineHelpText?: string | undefined;
|
|
9054
10182
|
trackFeedHistory?: boolean | undefined;
|
|
9055
10183
|
caseSensitive?: boolean | undefined;
|
|
@@ -9060,6 +10188,12 @@ declare const SysPackage: Omit<{
|
|
|
9060
10188
|
description?: string | undefined;
|
|
9061
10189
|
icon?: string | undefined;
|
|
9062
10190
|
tags?: string[] | undefined;
|
|
10191
|
+
managedBy?: "system" | "better-auth" | "platform" | undefined;
|
|
10192
|
+
systemFields?: false | {
|
|
10193
|
+
tenant?: boolean | undefined;
|
|
10194
|
+
owner?: boolean | undefined;
|
|
10195
|
+
audit?: boolean | undefined;
|
|
10196
|
+
} | undefined;
|
|
9063
10197
|
indexes?: {
|
|
9064
10198
|
fields: string[];
|
|
9065
10199
|
type: "hash" | "btree" | "gin" | "gist" | "fulltext";
|
|
@@ -9073,7 +10207,23 @@ declare const SysPackage: Omit<{
|
|
|
9073
10207
|
defaultExpanded: boolean;
|
|
9074
10208
|
icon?: string | undefined;
|
|
9075
10209
|
description?: string | undefined;
|
|
9076
|
-
visibleOn?:
|
|
10210
|
+
visibleOn?: {
|
|
10211
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
10212
|
+
source?: string | undefined;
|
|
10213
|
+
ast?: unknown;
|
|
10214
|
+
meta?: {
|
|
10215
|
+
rationale?: string | undefined;
|
|
10216
|
+
generatedBy?: string | undefined;
|
|
10217
|
+
} | undefined;
|
|
10218
|
+
} | {
|
|
10219
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
10220
|
+
source?: string | undefined;
|
|
10221
|
+
ast?: unknown;
|
|
10222
|
+
meta?: {
|
|
10223
|
+
rationale?: string | undefined;
|
|
10224
|
+
generatedBy?: string | undefined;
|
|
10225
|
+
} | undefined;
|
|
10226
|
+
} | undefined;
|
|
9077
10227
|
}[] | undefined;
|
|
9078
10228
|
tenancy?: {
|
|
9079
10229
|
enabled: boolean;
|
|
@@ -9140,7 +10290,23 @@ declare const SysPackage: Omit<{
|
|
|
9140
10290
|
displayFormat?: string | undefined;
|
|
9141
10291
|
startNumber?: number | undefined;
|
|
9142
10292
|
} | undefined;
|
|
9143
|
-
titleFormat?:
|
|
10293
|
+
titleFormat?: {
|
|
10294
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
10295
|
+
source?: string | undefined;
|
|
10296
|
+
ast?: unknown;
|
|
10297
|
+
meta?: {
|
|
10298
|
+
rationale?: string | undefined;
|
|
10299
|
+
generatedBy?: string | undefined;
|
|
10300
|
+
} | undefined;
|
|
10301
|
+
} | {
|
|
10302
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
10303
|
+
source?: string | undefined;
|
|
10304
|
+
ast?: unknown;
|
|
10305
|
+
meta?: {
|
|
10306
|
+
rationale?: string | undefined;
|
|
10307
|
+
generatedBy?: string | undefined;
|
|
10308
|
+
} | undefined;
|
|
10309
|
+
} | undefined;
|
|
9144
10310
|
compactLayout?: string[] | undefined;
|
|
9145
10311
|
search?: {
|
|
9146
10312
|
fields: string[];
|
|
@@ -9196,8 +10362,24 @@ declare const SysPackage: Omit<{
|
|
|
9196
10362
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
9197
10363
|
confirmText?: string | undefined;
|
|
9198
10364
|
successMessage?: string | undefined;
|
|
9199
|
-
visible?:
|
|
9200
|
-
|
|
10365
|
+
visible?: {
|
|
10366
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
10367
|
+
source?: string | undefined;
|
|
10368
|
+
ast?: unknown;
|
|
10369
|
+
meta?: {
|
|
10370
|
+
rationale?: string | undefined;
|
|
10371
|
+
generatedBy?: string | undefined;
|
|
10372
|
+
} | undefined;
|
|
10373
|
+
} | undefined;
|
|
10374
|
+
disabled?: boolean | {
|
|
10375
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
10376
|
+
source?: string | undefined;
|
|
10377
|
+
ast?: unknown;
|
|
10378
|
+
meta?: {
|
|
10379
|
+
rationale?: string | undefined;
|
|
10380
|
+
generatedBy?: string | undefined;
|
|
10381
|
+
} | undefined;
|
|
10382
|
+
} | undefined;
|
|
9201
10383
|
shortcut?: string | undefined;
|
|
9202
10384
|
bulkEnabled?: boolean | undefined;
|
|
9203
10385
|
timeout?: number | undefined;
|
|
@@ -9266,7 +10448,15 @@ declare const SysPackage: Omit<{
|
|
|
9266
10448
|
readonly referenceFilters?: string[] | undefined;
|
|
9267
10449
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
9268
10450
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
9269
|
-
readonly expression?:
|
|
10451
|
+
readonly expression?: {
|
|
10452
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
10453
|
+
source?: string | undefined;
|
|
10454
|
+
ast?: unknown;
|
|
10455
|
+
meta?: {
|
|
10456
|
+
rationale?: string | undefined;
|
|
10457
|
+
generatedBy?: string | undefined;
|
|
10458
|
+
} | undefined;
|
|
10459
|
+
} | undefined;
|
|
9270
10460
|
readonly summaryOperations?: {
|
|
9271
10461
|
object: string;
|
|
9272
10462
|
field: string;
|
|
@@ -9365,7 +10555,15 @@ declare const SysPackage: Omit<{
|
|
|
9365
10555
|
threshold: number;
|
|
9366
10556
|
} | undefined;
|
|
9367
10557
|
} | undefined;
|
|
9368
|
-
readonly conditionalRequired?:
|
|
10558
|
+
readonly conditionalRequired?: {
|
|
10559
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
10560
|
+
source?: string | undefined;
|
|
10561
|
+
ast?: unknown;
|
|
10562
|
+
meta?: {
|
|
10563
|
+
rationale?: string | undefined;
|
|
10564
|
+
generatedBy?: string | undefined;
|
|
10565
|
+
} | undefined;
|
|
10566
|
+
} | undefined;
|
|
9369
10567
|
readonly hidden?: boolean | undefined;
|
|
9370
10568
|
readonly sortable?: boolean | undefined;
|
|
9371
10569
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -9424,7 +10622,15 @@ declare const SysPackage: Omit<{
|
|
|
9424
10622
|
readonly referenceFilters?: string[] | undefined;
|
|
9425
10623
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
9426
10624
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
9427
|
-
readonly expression?:
|
|
10625
|
+
readonly expression?: {
|
|
10626
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
10627
|
+
source?: string | undefined;
|
|
10628
|
+
ast?: unknown;
|
|
10629
|
+
meta?: {
|
|
10630
|
+
rationale?: string | undefined;
|
|
10631
|
+
generatedBy?: string | undefined;
|
|
10632
|
+
} | undefined;
|
|
10633
|
+
} | undefined;
|
|
9428
10634
|
readonly summaryOperations?: {
|
|
9429
10635
|
object: string;
|
|
9430
10636
|
field: string;
|
|
@@ -9523,7 +10729,15 @@ declare const SysPackage: Omit<{
|
|
|
9523
10729
|
threshold: number;
|
|
9524
10730
|
} | undefined;
|
|
9525
10731
|
} | undefined;
|
|
9526
|
-
readonly conditionalRequired?:
|
|
10732
|
+
readonly conditionalRequired?: {
|
|
10733
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
10734
|
+
source?: string | undefined;
|
|
10735
|
+
ast?: unknown;
|
|
10736
|
+
meta?: {
|
|
10737
|
+
rationale?: string | undefined;
|
|
10738
|
+
generatedBy?: string | undefined;
|
|
10739
|
+
} | undefined;
|
|
10740
|
+
} | undefined;
|
|
9527
10741
|
readonly hidden?: boolean | undefined;
|
|
9528
10742
|
readonly sortable?: boolean | undefined;
|
|
9529
10743
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -9582,7 +10796,15 @@ declare const SysPackage: Omit<{
|
|
|
9582
10796
|
readonly referenceFilters?: string[] | undefined;
|
|
9583
10797
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
9584
10798
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
9585
|
-
readonly expression?:
|
|
10799
|
+
readonly expression?: {
|
|
10800
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
10801
|
+
source?: string | undefined;
|
|
10802
|
+
ast?: unknown;
|
|
10803
|
+
meta?: {
|
|
10804
|
+
rationale?: string | undefined;
|
|
10805
|
+
generatedBy?: string | undefined;
|
|
10806
|
+
} | undefined;
|
|
10807
|
+
} | undefined;
|
|
9586
10808
|
readonly summaryOperations?: {
|
|
9587
10809
|
object: string;
|
|
9588
10810
|
field: string;
|
|
@@ -9681,7 +10903,15 @@ declare const SysPackage: Omit<{
|
|
|
9681
10903
|
threshold: number;
|
|
9682
10904
|
} | undefined;
|
|
9683
10905
|
} | undefined;
|
|
9684
|
-
readonly conditionalRequired?:
|
|
10906
|
+
readonly conditionalRequired?: {
|
|
10907
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
10908
|
+
source?: string | undefined;
|
|
10909
|
+
ast?: unknown;
|
|
10910
|
+
meta?: {
|
|
10911
|
+
rationale?: string | undefined;
|
|
10912
|
+
generatedBy?: string | undefined;
|
|
10913
|
+
} | undefined;
|
|
10914
|
+
} | undefined;
|
|
9685
10915
|
readonly hidden?: boolean | undefined;
|
|
9686
10916
|
readonly sortable?: boolean | undefined;
|
|
9687
10917
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -9740,7 +10970,15 @@ declare const SysPackage: Omit<{
|
|
|
9740
10970
|
readonly referenceFilters?: string[] | undefined;
|
|
9741
10971
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
9742
10972
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
9743
|
-
readonly expression?:
|
|
10973
|
+
readonly expression?: {
|
|
10974
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
10975
|
+
source?: string | undefined;
|
|
10976
|
+
ast?: unknown;
|
|
10977
|
+
meta?: {
|
|
10978
|
+
rationale?: string | undefined;
|
|
10979
|
+
generatedBy?: string | undefined;
|
|
10980
|
+
} | undefined;
|
|
10981
|
+
} | undefined;
|
|
9744
10982
|
readonly summaryOperations?: {
|
|
9745
10983
|
object: string;
|
|
9746
10984
|
field: string;
|
|
@@ -9839,7 +11077,15 @@ declare const SysPackage: Omit<{
|
|
|
9839
11077
|
threshold: number;
|
|
9840
11078
|
} | undefined;
|
|
9841
11079
|
} | undefined;
|
|
9842
|
-
readonly conditionalRequired?:
|
|
11080
|
+
readonly conditionalRequired?: {
|
|
11081
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
11082
|
+
source?: string | undefined;
|
|
11083
|
+
ast?: unknown;
|
|
11084
|
+
meta?: {
|
|
11085
|
+
rationale?: string | undefined;
|
|
11086
|
+
generatedBy?: string | undefined;
|
|
11087
|
+
} | undefined;
|
|
11088
|
+
} | undefined;
|
|
9843
11089
|
readonly hidden?: boolean | undefined;
|
|
9844
11090
|
readonly sortable?: boolean | undefined;
|
|
9845
11091
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -9898,7 +11144,15 @@ declare const SysPackage: Omit<{
|
|
|
9898
11144
|
readonly referenceFilters?: string[] | undefined;
|
|
9899
11145
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
9900
11146
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
9901
|
-
readonly expression?:
|
|
11147
|
+
readonly expression?: {
|
|
11148
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
11149
|
+
source?: string | undefined;
|
|
11150
|
+
ast?: unknown;
|
|
11151
|
+
meta?: {
|
|
11152
|
+
rationale?: string | undefined;
|
|
11153
|
+
generatedBy?: string | undefined;
|
|
11154
|
+
} | undefined;
|
|
11155
|
+
} | undefined;
|
|
9902
11156
|
readonly summaryOperations?: {
|
|
9903
11157
|
object: string;
|
|
9904
11158
|
field: string;
|
|
@@ -9997,7 +11251,15 @@ declare const SysPackage: Omit<{
|
|
|
9997
11251
|
threshold: number;
|
|
9998
11252
|
} | undefined;
|
|
9999
11253
|
} | undefined;
|
|
10000
|
-
readonly conditionalRequired?:
|
|
11254
|
+
readonly conditionalRequired?: {
|
|
11255
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
11256
|
+
source?: string | undefined;
|
|
11257
|
+
ast?: unknown;
|
|
11258
|
+
meta?: {
|
|
11259
|
+
rationale?: string | undefined;
|
|
11260
|
+
generatedBy?: string | undefined;
|
|
11261
|
+
} | undefined;
|
|
11262
|
+
} | undefined;
|
|
10001
11263
|
readonly hidden?: boolean | undefined;
|
|
10002
11264
|
readonly sortable?: boolean | undefined;
|
|
10003
11265
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -10056,7 +11318,15 @@ declare const SysPackage: Omit<{
|
|
|
10056
11318
|
readonly referenceFilters?: string[] | undefined;
|
|
10057
11319
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
10058
11320
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
10059
|
-
readonly expression?:
|
|
11321
|
+
readonly expression?: {
|
|
11322
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
11323
|
+
source?: string | undefined;
|
|
11324
|
+
ast?: unknown;
|
|
11325
|
+
meta?: {
|
|
11326
|
+
rationale?: string | undefined;
|
|
11327
|
+
generatedBy?: string | undefined;
|
|
11328
|
+
} | undefined;
|
|
11329
|
+
} | undefined;
|
|
10060
11330
|
readonly summaryOperations?: {
|
|
10061
11331
|
object: string;
|
|
10062
11332
|
field: string;
|
|
@@ -10155,7 +11425,15 @@ declare const SysPackage: Omit<{
|
|
|
10155
11425
|
threshold: number;
|
|
10156
11426
|
} | undefined;
|
|
10157
11427
|
} | undefined;
|
|
10158
|
-
readonly conditionalRequired?:
|
|
11428
|
+
readonly conditionalRequired?: {
|
|
11429
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
11430
|
+
source?: string | undefined;
|
|
11431
|
+
ast?: unknown;
|
|
11432
|
+
meta?: {
|
|
11433
|
+
rationale?: string | undefined;
|
|
11434
|
+
generatedBy?: string | undefined;
|
|
11435
|
+
} | undefined;
|
|
11436
|
+
} | undefined;
|
|
10159
11437
|
readonly hidden?: boolean | undefined;
|
|
10160
11438
|
readonly sortable?: boolean | undefined;
|
|
10161
11439
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -10214,7 +11492,15 @@ declare const SysPackage: Omit<{
|
|
|
10214
11492
|
readonly referenceFilters?: string[] | undefined;
|
|
10215
11493
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
10216
11494
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
10217
|
-
readonly expression?:
|
|
11495
|
+
readonly expression?: {
|
|
11496
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
11497
|
+
source?: string | undefined;
|
|
11498
|
+
ast?: unknown;
|
|
11499
|
+
meta?: {
|
|
11500
|
+
rationale?: string | undefined;
|
|
11501
|
+
generatedBy?: string | undefined;
|
|
11502
|
+
} | undefined;
|
|
11503
|
+
} | undefined;
|
|
10218
11504
|
readonly summaryOperations?: {
|
|
10219
11505
|
object: string;
|
|
10220
11506
|
field: string;
|
|
@@ -10313,7 +11599,15 @@ declare const SysPackage: Omit<{
|
|
|
10313
11599
|
threshold: number;
|
|
10314
11600
|
} | undefined;
|
|
10315
11601
|
} | undefined;
|
|
10316
|
-
readonly conditionalRequired?:
|
|
11602
|
+
readonly conditionalRequired?: {
|
|
11603
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
11604
|
+
source?: string | undefined;
|
|
11605
|
+
ast?: unknown;
|
|
11606
|
+
meta?: {
|
|
11607
|
+
rationale?: string | undefined;
|
|
11608
|
+
generatedBy?: string | undefined;
|
|
11609
|
+
} | undefined;
|
|
11610
|
+
} | undefined;
|
|
10317
11611
|
readonly hidden?: boolean | undefined;
|
|
10318
11612
|
readonly sortable?: boolean | undefined;
|
|
10319
11613
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -10372,7 +11666,15 @@ declare const SysPackage: Omit<{
|
|
|
10372
11666
|
readonly referenceFilters?: string[] | undefined;
|
|
10373
11667
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
10374
11668
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
10375
|
-
readonly expression?:
|
|
11669
|
+
readonly expression?: {
|
|
11670
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
11671
|
+
source?: string | undefined;
|
|
11672
|
+
ast?: unknown;
|
|
11673
|
+
meta?: {
|
|
11674
|
+
rationale?: string | undefined;
|
|
11675
|
+
generatedBy?: string | undefined;
|
|
11676
|
+
} | undefined;
|
|
11677
|
+
} | undefined;
|
|
10376
11678
|
readonly summaryOperations?: {
|
|
10377
11679
|
object: string;
|
|
10378
11680
|
field: string;
|
|
@@ -10471,7 +11773,15 @@ declare const SysPackage: Omit<{
|
|
|
10471
11773
|
threshold: number;
|
|
10472
11774
|
} | undefined;
|
|
10473
11775
|
} | undefined;
|
|
10474
|
-
readonly conditionalRequired?:
|
|
11776
|
+
readonly conditionalRequired?: {
|
|
11777
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
11778
|
+
source?: string | undefined;
|
|
11779
|
+
ast?: unknown;
|
|
11780
|
+
meta?: {
|
|
11781
|
+
rationale?: string | undefined;
|
|
11782
|
+
generatedBy?: string | undefined;
|
|
11783
|
+
} | undefined;
|
|
11784
|
+
} | undefined;
|
|
10475
11785
|
readonly hidden?: boolean | undefined;
|
|
10476
11786
|
readonly sortable?: boolean | undefined;
|
|
10477
11787
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -10530,7 +11840,15 @@ declare const SysPackage: Omit<{
|
|
|
10530
11840
|
readonly referenceFilters?: string[] | undefined;
|
|
10531
11841
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
10532
11842
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
10533
|
-
readonly expression?:
|
|
11843
|
+
readonly expression?: {
|
|
11844
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
11845
|
+
source?: string | undefined;
|
|
11846
|
+
ast?: unknown;
|
|
11847
|
+
meta?: {
|
|
11848
|
+
rationale?: string | undefined;
|
|
11849
|
+
generatedBy?: string | undefined;
|
|
11850
|
+
} | undefined;
|
|
11851
|
+
} | undefined;
|
|
10534
11852
|
readonly summaryOperations?: {
|
|
10535
11853
|
object: string;
|
|
10536
11854
|
field: string;
|
|
@@ -10629,7 +11947,15 @@ declare const SysPackage: Omit<{
|
|
|
10629
11947
|
threshold: number;
|
|
10630
11948
|
} | undefined;
|
|
10631
11949
|
} | undefined;
|
|
10632
|
-
readonly conditionalRequired?:
|
|
11950
|
+
readonly conditionalRequired?: {
|
|
11951
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
11952
|
+
source?: string | undefined;
|
|
11953
|
+
ast?: unknown;
|
|
11954
|
+
meta?: {
|
|
11955
|
+
rationale?: string | undefined;
|
|
11956
|
+
generatedBy?: string | undefined;
|
|
11957
|
+
} | undefined;
|
|
11958
|
+
} | undefined;
|
|
10633
11959
|
readonly hidden?: boolean | undefined;
|
|
10634
11960
|
readonly sortable?: boolean | undefined;
|
|
10635
11961
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -10688,7 +12014,15 @@ declare const SysPackage: Omit<{
|
|
|
10688
12014
|
readonly referenceFilters?: string[] | undefined;
|
|
10689
12015
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
10690
12016
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
10691
|
-
readonly expression?:
|
|
12017
|
+
readonly expression?: {
|
|
12018
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
12019
|
+
source?: string | undefined;
|
|
12020
|
+
ast?: unknown;
|
|
12021
|
+
meta?: {
|
|
12022
|
+
rationale?: string | undefined;
|
|
12023
|
+
generatedBy?: string | undefined;
|
|
12024
|
+
} | undefined;
|
|
12025
|
+
} | undefined;
|
|
10692
12026
|
readonly summaryOperations?: {
|
|
10693
12027
|
object: string;
|
|
10694
12028
|
field: string;
|
|
@@ -10787,7 +12121,15 @@ declare const SysPackage: Omit<{
|
|
|
10787
12121
|
threshold: number;
|
|
10788
12122
|
} | undefined;
|
|
10789
12123
|
} | undefined;
|
|
10790
|
-
readonly conditionalRequired?:
|
|
12124
|
+
readonly conditionalRequired?: {
|
|
12125
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
12126
|
+
source?: string | undefined;
|
|
12127
|
+
ast?: unknown;
|
|
12128
|
+
meta?: {
|
|
12129
|
+
rationale?: string | undefined;
|
|
12130
|
+
generatedBy?: string | undefined;
|
|
12131
|
+
} | undefined;
|
|
12132
|
+
} | undefined;
|
|
10791
12133
|
readonly hidden?: boolean | undefined;
|
|
10792
12134
|
readonly sortable?: boolean | undefined;
|
|
10793
12135
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -10846,7 +12188,15 @@ declare const SysPackage: Omit<{
|
|
|
10846
12188
|
readonly referenceFilters?: string[] | undefined;
|
|
10847
12189
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
10848
12190
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
10849
|
-
readonly expression?:
|
|
12191
|
+
readonly expression?: {
|
|
12192
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
12193
|
+
source?: string | undefined;
|
|
12194
|
+
ast?: unknown;
|
|
12195
|
+
meta?: {
|
|
12196
|
+
rationale?: string | undefined;
|
|
12197
|
+
generatedBy?: string | undefined;
|
|
12198
|
+
} | undefined;
|
|
12199
|
+
} | undefined;
|
|
10850
12200
|
readonly summaryOperations?: {
|
|
10851
12201
|
object: string;
|
|
10852
12202
|
field: string;
|
|
@@ -10945,7 +12295,15 @@ declare const SysPackage: Omit<{
|
|
|
10945
12295
|
threshold: number;
|
|
10946
12296
|
} | undefined;
|
|
10947
12297
|
} | undefined;
|
|
10948
|
-
readonly conditionalRequired?:
|
|
12298
|
+
readonly conditionalRequired?: {
|
|
12299
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
12300
|
+
source?: string | undefined;
|
|
12301
|
+
ast?: unknown;
|
|
12302
|
+
meta?: {
|
|
12303
|
+
rationale?: string | undefined;
|
|
12304
|
+
generatedBy?: string | undefined;
|
|
12305
|
+
} | undefined;
|
|
12306
|
+
} | undefined;
|
|
10949
12307
|
readonly hidden?: boolean | undefined;
|
|
10950
12308
|
readonly sortable?: boolean | undefined;
|
|
10951
12309
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -11004,7 +12362,15 @@ declare const SysPackage: Omit<{
|
|
|
11004
12362
|
readonly referenceFilters?: string[] | undefined;
|
|
11005
12363
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
11006
12364
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
11007
|
-
readonly expression?:
|
|
12365
|
+
readonly expression?: {
|
|
12366
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
12367
|
+
source?: string | undefined;
|
|
12368
|
+
ast?: unknown;
|
|
12369
|
+
meta?: {
|
|
12370
|
+
rationale?: string | undefined;
|
|
12371
|
+
generatedBy?: string | undefined;
|
|
12372
|
+
} | undefined;
|
|
12373
|
+
} | undefined;
|
|
11008
12374
|
readonly summaryOperations?: {
|
|
11009
12375
|
object: string;
|
|
11010
12376
|
field: string;
|
|
@@ -11103,7 +12469,15 @@ declare const SysPackage: Omit<{
|
|
|
11103
12469
|
threshold: number;
|
|
11104
12470
|
} | undefined;
|
|
11105
12471
|
} | undefined;
|
|
11106
|
-
readonly conditionalRequired?:
|
|
12472
|
+
readonly conditionalRequired?: {
|
|
12473
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
12474
|
+
source?: string | undefined;
|
|
12475
|
+
ast?: unknown;
|
|
12476
|
+
meta?: {
|
|
12477
|
+
rationale?: string | undefined;
|
|
12478
|
+
generatedBy?: string | undefined;
|
|
12479
|
+
} | undefined;
|
|
12480
|
+
} | undefined;
|
|
11107
12481
|
readonly hidden?: boolean | undefined;
|
|
11108
12482
|
readonly sortable?: boolean | undefined;
|
|
11109
12483
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -11162,7 +12536,15 @@ declare const SysPackage: Omit<{
|
|
|
11162
12536
|
readonly referenceFilters?: string[] | undefined;
|
|
11163
12537
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
11164
12538
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
11165
|
-
readonly expression?:
|
|
12539
|
+
readonly expression?: {
|
|
12540
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
12541
|
+
source?: string | undefined;
|
|
12542
|
+
ast?: unknown;
|
|
12543
|
+
meta?: {
|
|
12544
|
+
rationale?: string | undefined;
|
|
12545
|
+
generatedBy?: string | undefined;
|
|
12546
|
+
} | undefined;
|
|
12547
|
+
} | undefined;
|
|
11166
12548
|
readonly summaryOperations?: {
|
|
11167
12549
|
object: string;
|
|
11168
12550
|
field: string;
|
|
@@ -11261,7 +12643,15 @@ declare const SysPackage: Omit<{
|
|
|
11261
12643
|
threshold: number;
|
|
11262
12644
|
} | undefined;
|
|
11263
12645
|
} | undefined;
|
|
11264
|
-
readonly conditionalRequired?:
|
|
12646
|
+
readonly conditionalRequired?: {
|
|
12647
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
12648
|
+
source?: string | undefined;
|
|
12649
|
+
ast?: unknown;
|
|
12650
|
+
meta?: {
|
|
12651
|
+
rationale?: string | undefined;
|
|
12652
|
+
generatedBy?: string | undefined;
|
|
12653
|
+
} | undefined;
|
|
12654
|
+
} | undefined;
|
|
11265
12655
|
readonly hidden?: boolean | undefined;
|
|
11266
12656
|
readonly sortable?: boolean | undefined;
|
|
11267
12657
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -11320,7 +12710,15 @@ declare const SysPackage: Omit<{
|
|
|
11320
12710
|
readonly referenceFilters?: string[] | undefined;
|
|
11321
12711
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
11322
12712
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
11323
|
-
readonly expression?:
|
|
12713
|
+
readonly expression?: {
|
|
12714
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
12715
|
+
source?: string | undefined;
|
|
12716
|
+
ast?: unknown;
|
|
12717
|
+
meta?: {
|
|
12718
|
+
rationale?: string | undefined;
|
|
12719
|
+
generatedBy?: string | undefined;
|
|
12720
|
+
} | undefined;
|
|
12721
|
+
} | undefined;
|
|
11324
12722
|
readonly summaryOperations?: {
|
|
11325
12723
|
object: string;
|
|
11326
12724
|
field: string;
|
|
@@ -11419,7 +12817,15 @@ declare const SysPackage: Omit<{
|
|
|
11419
12817
|
threshold: number;
|
|
11420
12818
|
} | undefined;
|
|
11421
12819
|
} | undefined;
|
|
11422
|
-
readonly conditionalRequired?:
|
|
12820
|
+
readonly conditionalRequired?: {
|
|
12821
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
12822
|
+
source?: string | undefined;
|
|
12823
|
+
ast?: unknown;
|
|
12824
|
+
meta?: {
|
|
12825
|
+
rationale?: string | undefined;
|
|
12826
|
+
generatedBy?: string | undefined;
|
|
12827
|
+
} | undefined;
|
|
12828
|
+
} | undefined;
|
|
11423
12829
|
readonly hidden?: boolean | undefined;
|
|
11424
12830
|
readonly sortable?: boolean | undefined;
|
|
11425
12831
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -11478,7 +12884,15 @@ declare const SysPackage: Omit<{
|
|
|
11478
12884
|
readonly referenceFilters?: string[] | undefined;
|
|
11479
12885
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
11480
12886
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
11481
|
-
readonly expression?:
|
|
12887
|
+
readonly expression?: {
|
|
12888
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
12889
|
+
source?: string | undefined;
|
|
12890
|
+
ast?: unknown;
|
|
12891
|
+
meta?: {
|
|
12892
|
+
rationale?: string | undefined;
|
|
12893
|
+
generatedBy?: string | undefined;
|
|
12894
|
+
} | undefined;
|
|
12895
|
+
} | undefined;
|
|
11482
12896
|
readonly summaryOperations?: {
|
|
11483
12897
|
object: string;
|
|
11484
12898
|
field: string;
|
|
@@ -11577,7 +12991,15 @@ declare const SysPackage: Omit<{
|
|
|
11577
12991
|
threshold: number;
|
|
11578
12992
|
} | undefined;
|
|
11579
12993
|
} | undefined;
|
|
11580
|
-
readonly conditionalRequired?:
|
|
12994
|
+
readonly conditionalRequired?: {
|
|
12995
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
12996
|
+
source?: string | undefined;
|
|
12997
|
+
ast?: unknown;
|
|
12998
|
+
meta?: {
|
|
12999
|
+
rationale?: string | undefined;
|
|
13000
|
+
generatedBy?: string | undefined;
|
|
13001
|
+
} | undefined;
|
|
13002
|
+
} | undefined;
|
|
11581
13003
|
readonly hidden?: boolean | undefined;
|
|
11582
13004
|
readonly sortable?: boolean | undefined;
|
|
11583
13005
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -11667,7 +13089,23 @@ declare const SysPackageVersion: Omit<{
|
|
|
11667
13089
|
reference?: string | undefined;
|
|
11668
13090
|
referenceFilters?: string[] | undefined;
|
|
11669
13091
|
writeRequiresMasterRead?: boolean | undefined;
|
|
11670
|
-
expression?:
|
|
13092
|
+
expression?: {
|
|
13093
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
13094
|
+
source?: string | undefined;
|
|
13095
|
+
ast?: unknown;
|
|
13096
|
+
meta?: {
|
|
13097
|
+
rationale?: string | undefined;
|
|
13098
|
+
generatedBy?: string | undefined;
|
|
13099
|
+
} | undefined;
|
|
13100
|
+
} | {
|
|
13101
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
13102
|
+
source?: string | undefined;
|
|
13103
|
+
ast?: unknown;
|
|
13104
|
+
meta?: {
|
|
13105
|
+
rationale?: string | undefined;
|
|
13106
|
+
generatedBy?: string | undefined;
|
|
13107
|
+
} | undefined;
|
|
13108
|
+
} | undefined;
|
|
11671
13109
|
summaryOperations?: {
|
|
11672
13110
|
object: string;
|
|
11673
13111
|
field: string;
|
|
@@ -11785,7 +13223,23 @@ declare const SysPackageVersion: Omit<{
|
|
|
11785
13223
|
} | undefined;
|
|
11786
13224
|
} | undefined;
|
|
11787
13225
|
group?: string | undefined;
|
|
11788
|
-
conditionalRequired?:
|
|
13226
|
+
conditionalRequired?: {
|
|
13227
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
13228
|
+
source?: string | undefined;
|
|
13229
|
+
ast?: unknown;
|
|
13230
|
+
meta?: {
|
|
13231
|
+
rationale?: string | undefined;
|
|
13232
|
+
generatedBy?: string | undefined;
|
|
13233
|
+
} | undefined;
|
|
13234
|
+
} | {
|
|
13235
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
13236
|
+
source?: string | undefined;
|
|
13237
|
+
ast?: unknown;
|
|
13238
|
+
meta?: {
|
|
13239
|
+
rationale?: string | undefined;
|
|
13240
|
+
generatedBy?: string | undefined;
|
|
13241
|
+
} | undefined;
|
|
13242
|
+
} | undefined;
|
|
11789
13243
|
inlineHelpText?: string | undefined;
|
|
11790
13244
|
trackFeedHistory?: boolean | undefined;
|
|
11791
13245
|
caseSensitive?: boolean | undefined;
|
|
@@ -11796,6 +13250,12 @@ declare const SysPackageVersion: Omit<{
|
|
|
11796
13250
|
description?: string | undefined;
|
|
11797
13251
|
icon?: string | undefined;
|
|
11798
13252
|
tags?: string[] | undefined;
|
|
13253
|
+
managedBy?: "system" | "better-auth" | "platform" | undefined;
|
|
13254
|
+
systemFields?: false | {
|
|
13255
|
+
tenant?: boolean | undefined;
|
|
13256
|
+
owner?: boolean | undefined;
|
|
13257
|
+
audit?: boolean | undefined;
|
|
13258
|
+
} | undefined;
|
|
11799
13259
|
indexes?: {
|
|
11800
13260
|
fields: string[];
|
|
11801
13261
|
type: "hash" | "btree" | "gin" | "gist" | "fulltext";
|
|
@@ -11809,7 +13269,23 @@ declare const SysPackageVersion: Omit<{
|
|
|
11809
13269
|
defaultExpanded: boolean;
|
|
11810
13270
|
icon?: string | undefined;
|
|
11811
13271
|
description?: string | undefined;
|
|
11812
|
-
visibleOn?:
|
|
13272
|
+
visibleOn?: {
|
|
13273
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
13274
|
+
source?: string | undefined;
|
|
13275
|
+
ast?: unknown;
|
|
13276
|
+
meta?: {
|
|
13277
|
+
rationale?: string | undefined;
|
|
13278
|
+
generatedBy?: string | undefined;
|
|
13279
|
+
} | undefined;
|
|
13280
|
+
} | {
|
|
13281
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
13282
|
+
source?: string | undefined;
|
|
13283
|
+
ast?: unknown;
|
|
13284
|
+
meta?: {
|
|
13285
|
+
rationale?: string | undefined;
|
|
13286
|
+
generatedBy?: string | undefined;
|
|
13287
|
+
} | undefined;
|
|
13288
|
+
} | undefined;
|
|
11813
13289
|
}[] | undefined;
|
|
11814
13290
|
tenancy?: {
|
|
11815
13291
|
enabled: boolean;
|
|
@@ -11876,7 +13352,23 @@ declare const SysPackageVersion: Omit<{
|
|
|
11876
13352
|
displayFormat?: string | undefined;
|
|
11877
13353
|
startNumber?: number | undefined;
|
|
11878
13354
|
} | undefined;
|
|
11879
|
-
titleFormat?:
|
|
13355
|
+
titleFormat?: {
|
|
13356
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
13357
|
+
source?: string | undefined;
|
|
13358
|
+
ast?: unknown;
|
|
13359
|
+
meta?: {
|
|
13360
|
+
rationale?: string | undefined;
|
|
13361
|
+
generatedBy?: string | undefined;
|
|
13362
|
+
} | undefined;
|
|
13363
|
+
} | {
|
|
13364
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
13365
|
+
source?: string | undefined;
|
|
13366
|
+
ast?: unknown;
|
|
13367
|
+
meta?: {
|
|
13368
|
+
rationale?: string | undefined;
|
|
13369
|
+
generatedBy?: string | undefined;
|
|
13370
|
+
} | undefined;
|
|
13371
|
+
} | undefined;
|
|
11880
13372
|
compactLayout?: string[] | undefined;
|
|
11881
13373
|
search?: {
|
|
11882
13374
|
fields: string[];
|
|
@@ -11932,8 +13424,24 @@ declare const SysPackageVersion: Omit<{
|
|
|
11932
13424
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
11933
13425
|
confirmText?: string | undefined;
|
|
11934
13426
|
successMessage?: string | undefined;
|
|
11935
|
-
visible?:
|
|
11936
|
-
|
|
13427
|
+
visible?: {
|
|
13428
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
13429
|
+
source?: string | undefined;
|
|
13430
|
+
ast?: unknown;
|
|
13431
|
+
meta?: {
|
|
13432
|
+
rationale?: string | undefined;
|
|
13433
|
+
generatedBy?: string | undefined;
|
|
13434
|
+
} | undefined;
|
|
13435
|
+
} | undefined;
|
|
13436
|
+
disabled?: boolean | {
|
|
13437
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
13438
|
+
source?: string | undefined;
|
|
13439
|
+
ast?: unknown;
|
|
13440
|
+
meta?: {
|
|
13441
|
+
rationale?: string | undefined;
|
|
13442
|
+
generatedBy?: string | undefined;
|
|
13443
|
+
} | undefined;
|
|
13444
|
+
} | undefined;
|
|
11937
13445
|
shortcut?: string | undefined;
|
|
11938
13446
|
bulkEnabled?: boolean | undefined;
|
|
11939
13447
|
timeout?: number | undefined;
|
|
@@ -12002,7 +13510,15 @@ declare const SysPackageVersion: Omit<{
|
|
|
12002
13510
|
readonly referenceFilters?: string[] | undefined;
|
|
12003
13511
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
12004
13512
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
12005
|
-
readonly expression?:
|
|
13513
|
+
readonly expression?: {
|
|
13514
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
13515
|
+
source?: string | undefined;
|
|
13516
|
+
ast?: unknown;
|
|
13517
|
+
meta?: {
|
|
13518
|
+
rationale?: string | undefined;
|
|
13519
|
+
generatedBy?: string | undefined;
|
|
13520
|
+
} | undefined;
|
|
13521
|
+
} | undefined;
|
|
12006
13522
|
readonly summaryOperations?: {
|
|
12007
13523
|
object: string;
|
|
12008
13524
|
field: string;
|
|
@@ -12101,7 +13617,15 @@ declare const SysPackageVersion: Omit<{
|
|
|
12101
13617
|
threshold: number;
|
|
12102
13618
|
} | undefined;
|
|
12103
13619
|
} | undefined;
|
|
12104
|
-
readonly conditionalRequired?:
|
|
13620
|
+
readonly conditionalRequired?: {
|
|
13621
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
13622
|
+
source?: string | undefined;
|
|
13623
|
+
ast?: unknown;
|
|
13624
|
+
meta?: {
|
|
13625
|
+
rationale?: string | undefined;
|
|
13626
|
+
generatedBy?: string | undefined;
|
|
13627
|
+
} | undefined;
|
|
13628
|
+
} | undefined;
|
|
12105
13629
|
readonly hidden?: boolean | undefined;
|
|
12106
13630
|
readonly sortable?: boolean | undefined;
|
|
12107
13631
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -12160,7 +13684,15 @@ declare const SysPackageVersion: Omit<{
|
|
|
12160
13684
|
readonly referenceFilters?: string[] | undefined;
|
|
12161
13685
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
12162
13686
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
12163
|
-
readonly expression?:
|
|
13687
|
+
readonly expression?: {
|
|
13688
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
13689
|
+
source?: string | undefined;
|
|
13690
|
+
ast?: unknown;
|
|
13691
|
+
meta?: {
|
|
13692
|
+
rationale?: string | undefined;
|
|
13693
|
+
generatedBy?: string | undefined;
|
|
13694
|
+
} | undefined;
|
|
13695
|
+
} | undefined;
|
|
12164
13696
|
readonly summaryOperations?: {
|
|
12165
13697
|
object: string;
|
|
12166
13698
|
field: string;
|
|
@@ -12259,7 +13791,15 @@ declare const SysPackageVersion: Omit<{
|
|
|
12259
13791
|
threshold: number;
|
|
12260
13792
|
} | undefined;
|
|
12261
13793
|
} | undefined;
|
|
12262
|
-
readonly conditionalRequired?:
|
|
13794
|
+
readonly conditionalRequired?: {
|
|
13795
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
13796
|
+
source?: string | undefined;
|
|
13797
|
+
ast?: unknown;
|
|
13798
|
+
meta?: {
|
|
13799
|
+
rationale?: string | undefined;
|
|
13800
|
+
generatedBy?: string | undefined;
|
|
13801
|
+
} | undefined;
|
|
13802
|
+
} | undefined;
|
|
12263
13803
|
readonly hidden?: boolean | undefined;
|
|
12264
13804
|
readonly sortable?: boolean | undefined;
|
|
12265
13805
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -12318,7 +13858,15 @@ declare const SysPackageVersion: Omit<{
|
|
|
12318
13858
|
readonly referenceFilters?: string[] | undefined;
|
|
12319
13859
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
12320
13860
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
12321
|
-
readonly expression?:
|
|
13861
|
+
readonly expression?: {
|
|
13862
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
13863
|
+
source?: string | undefined;
|
|
13864
|
+
ast?: unknown;
|
|
13865
|
+
meta?: {
|
|
13866
|
+
rationale?: string | undefined;
|
|
13867
|
+
generatedBy?: string | undefined;
|
|
13868
|
+
} | undefined;
|
|
13869
|
+
} | undefined;
|
|
12322
13870
|
readonly summaryOperations?: {
|
|
12323
13871
|
object: string;
|
|
12324
13872
|
field: string;
|
|
@@ -12417,7 +13965,15 @@ declare const SysPackageVersion: Omit<{
|
|
|
12417
13965
|
threshold: number;
|
|
12418
13966
|
} | undefined;
|
|
12419
13967
|
} | undefined;
|
|
12420
|
-
readonly conditionalRequired?:
|
|
13968
|
+
readonly conditionalRequired?: {
|
|
13969
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
13970
|
+
source?: string | undefined;
|
|
13971
|
+
ast?: unknown;
|
|
13972
|
+
meta?: {
|
|
13973
|
+
rationale?: string | undefined;
|
|
13974
|
+
generatedBy?: string | undefined;
|
|
13975
|
+
} | undefined;
|
|
13976
|
+
} | undefined;
|
|
12421
13977
|
readonly hidden?: boolean | undefined;
|
|
12422
13978
|
readonly sortable?: boolean | undefined;
|
|
12423
13979
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -12476,7 +14032,15 @@ declare const SysPackageVersion: Omit<{
|
|
|
12476
14032
|
readonly referenceFilters?: string[] | undefined;
|
|
12477
14033
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
12478
14034
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
12479
|
-
readonly expression?:
|
|
14035
|
+
readonly expression?: {
|
|
14036
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
14037
|
+
source?: string | undefined;
|
|
14038
|
+
ast?: unknown;
|
|
14039
|
+
meta?: {
|
|
14040
|
+
rationale?: string | undefined;
|
|
14041
|
+
generatedBy?: string | undefined;
|
|
14042
|
+
} | undefined;
|
|
14043
|
+
} | undefined;
|
|
12480
14044
|
readonly summaryOperations?: {
|
|
12481
14045
|
object: string;
|
|
12482
14046
|
field: string;
|
|
@@ -12575,7 +14139,15 @@ declare const SysPackageVersion: Omit<{
|
|
|
12575
14139
|
threshold: number;
|
|
12576
14140
|
} | undefined;
|
|
12577
14141
|
} | undefined;
|
|
12578
|
-
readonly conditionalRequired?:
|
|
14142
|
+
readonly conditionalRequired?: {
|
|
14143
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
14144
|
+
source?: string | undefined;
|
|
14145
|
+
ast?: unknown;
|
|
14146
|
+
meta?: {
|
|
14147
|
+
rationale?: string | undefined;
|
|
14148
|
+
generatedBy?: string | undefined;
|
|
14149
|
+
} | undefined;
|
|
14150
|
+
} | undefined;
|
|
12579
14151
|
readonly hidden?: boolean | undefined;
|
|
12580
14152
|
readonly sortable?: boolean | undefined;
|
|
12581
14153
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -12634,7 +14206,15 @@ declare const SysPackageVersion: Omit<{
|
|
|
12634
14206
|
readonly referenceFilters?: string[] | undefined;
|
|
12635
14207
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
12636
14208
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
12637
|
-
readonly expression?:
|
|
14209
|
+
readonly expression?: {
|
|
14210
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
14211
|
+
source?: string | undefined;
|
|
14212
|
+
ast?: unknown;
|
|
14213
|
+
meta?: {
|
|
14214
|
+
rationale?: string | undefined;
|
|
14215
|
+
generatedBy?: string | undefined;
|
|
14216
|
+
} | undefined;
|
|
14217
|
+
} | undefined;
|
|
12638
14218
|
readonly summaryOperations?: {
|
|
12639
14219
|
object: string;
|
|
12640
14220
|
field: string;
|
|
@@ -12733,7 +14313,15 @@ declare const SysPackageVersion: Omit<{
|
|
|
12733
14313
|
threshold: number;
|
|
12734
14314
|
} | undefined;
|
|
12735
14315
|
} | undefined;
|
|
12736
|
-
readonly conditionalRequired?:
|
|
14316
|
+
readonly conditionalRequired?: {
|
|
14317
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
14318
|
+
source?: string | undefined;
|
|
14319
|
+
ast?: unknown;
|
|
14320
|
+
meta?: {
|
|
14321
|
+
rationale?: string | undefined;
|
|
14322
|
+
generatedBy?: string | undefined;
|
|
14323
|
+
} | undefined;
|
|
14324
|
+
} | undefined;
|
|
12737
14325
|
readonly hidden?: boolean | undefined;
|
|
12738
14326
|
readonly sortable?: boolean | undefined;
|
|
12739
14327
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -12792,7 +14380,15 @@ declare const SysPackageVersion: Omit<{
|
|
|
12792
14380
|
readonly referenceFilters?: string[] | undefined;
|
|
12793
14381
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
12794
14382
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
12795
|
-
readonly expression?:
|
|
14383
|
+
readonly expression?: {
|
|
14384
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
14385
|
+
source?: string | undefined;
|
|
14386
|
+
ast?: unknown;
|
|
14387
|
+
meta?: {
|
|
14388
|
+
rationale?: string | undefined;
|
|
14389
|
+
generatedBy?: string | undefined;
|
|
14390
|
+
} | undefined;
|
|
14391
|
+
} | undefined;
|
|
12796
14392
|
readonly summaryOperations?: {
|
|
12797
14393
|
object: string;
|
|
12798
14394
|
field: string;
|
|
@@ -12891,7 +14487,15 @@ declare const SysPackageVersion: Omit<{
|
|
|
12891
14487
|
threshold: number;
|
|
12892
14488
|
} | undefined;
|
|
12893
14489
|
} | undefined;
|
|
12894
|
-
readonly conditionalRequired?:
|
|
14490
|
+
readonly conditionalRequired?: {
|
|
14491
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
14492
|
+
source?: string | undefined;
|
|
14493
|
+
ast?: unknown;
|
|
14494
|
+
meta?: {
|
|
14495
|
+
rationale?: string | undefined;
|
|
14496
|
+
generatedBy?: string | undefined;
|
|
14497
|
+
} | undefined;
|
|
14498
|
+
} | undefined;
|
|
12895
14499
|
readonly hidden?: boolean | undefined;
|
|
12896
14500
|
readonly sortable?: boolean | undefined;
|
|
12897
14501
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -12950,7 +14554,15 @@ declare const SysPackageVersion: Omit<{
|
|
|
12950
14554
|
readonly referenceFilters?: string[] | undefined;
|
|
12951
14555
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
12952
14556
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
12953
|
-
readonly expression?:
|
|
14557
|
+
readonly expression?: {
|
|
14558
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
14559
|
+
source?: string | undefined;
|
|
14560
|
+
ast?: unknown;
|
|
14561
|
+
meta?: {
|
|
14562
|
+
rationale?: string | undefined;
|
|
14563
|
+
generatedBy?: string | undefined;
|
|
14564
|
+
} | undefined;
|
|
14565
|
+
} | undefined;
|
|
12954
14566
|
readonly summaryOperations?: {
|
|
12955
14567
|
object: string;
|
|
12956
14568
|
field: string;
|
|
@@ -13049,7 +14661,15 @@ declare const SysPackageVersion: Omit<{
|
|
|
13049
14661
|
threshold: number;
|
|
13050
14662
|
} | undefined;
|
|
13051
14663
|
} | undefined;
|
|
13052
|
-
readonly conditionalRequired?:
|
|
14664
|
+
readonly conditionalRequired?: {
|
|
14665
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
14666
|
+
source?: string | undefined;
|
|
14667
|
+
ast?: unknown;
|
|
14668
|
+
meta?: {
|
|
14669
|
+
rationale?: string | undefined;
|
|
14670
|
+
generatedBy?: string | undefined;
|
|
14671
|
+
} | undefined;
|
|
14672
|
+
} | undefined;
|
|
13053
14673
|
readonly hidden?: boolean | undefined;
|
|
13054
14674
|
readonly sortable?: boolean | undefined;
|
|
13055
14675
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -13108,7 +14728,15 @@ declare const SysPackageVersion: Omit<{
|
|
|
13108
14728
|
readonly referenceFilters?: string[] | undefined;
|
|
13109
14729
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
13110
14730
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
13111
|
-
readonly expression?:
|
|
14731
|
+
readonly expression?: {
|
|
14732
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
14733
|
+
source?: string | undefined;
|
|
14734
|
+
ast?: unknown;
|
|
14735
|
+
meta?: {
|
|
14736
|
+
rationale?: string | undefined;
|
|
14737
|
+
generatedBy?: string | undefined;
|
|
14738
|
+
} | undefined;
|
|
14739
|
+
} | undefined;
|
|
13112
14740
|
readonly summaryOperations?: {
|
|
13113
14741
|
object: string;
|
|
13114
14742
|
field: string;
|
|
@@ -13207,7 +14835,15 @@ declare const SysPackageVersion: Omit<{
|
|
|
13207
14835
|
threshold: number;
|
|
13208
14836
|
} | undefined;
|
|
13209
14837
|
} | undefined;
|
|
13210
|
-
readonly conditionalRequired?:
|
|
14838
|
+
readonly conditionalRequired?: {
|
|
14839
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
14840
|
+
source?: string | undefined;
|
|
14841
|
+
ast?: unknown;
|
|
14842
|
+
meta?: {
|
|
14843
|
+
rationale?: string | undefined;
|
|
14844
|
+
generatedBy?: string | undefined;
|
|
14845
|
+
} | undefined;
|
|
14846
|
+
} | undefined;
|
|
13211
14847
|
readonly hidden?: boolean | undefined;
|
|
13212
14848
|
readonly sortable?: boolean | undefined;
|
|
13213
14849
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -13266,7 +14902,15 @@ declare const SysPackageVersion: Omit<{
|
|
|
13266
14902
|
readonly referenceFilters?: string[] | undefined;
|
|
13267
14903
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
13268
14904
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
13269
|
-
readonly expression?:
|
|
14905
|
+
readonly expression?: {
|
|
14906
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
14907
|
+
source?: string | undefined;
|
|
14908
|
+
ast?: unknown;
|
|
14909
|
+
meta?: {
|
|
14910
|
+
rationale?: string | undefined;
|
|
14911
|
+
generatedBy?: string | undefined;
|
|
14912
|
+
} | undefined;
|
|
14913
|
+
} | undefined;
|
|
13270
14914
|
readonly summaryOperations?: {
|
|
13271
14915
|
object: string;
|
|
13272
14916
|
field: string;
|
|
@@ -13365,7 +15009,15 @@ declare const SysPackageVersion: Omit<{
|
|
|
13365
15009
|
threshold: number;
|
|
13366
15010
|
} | undefined;
|
|
13367
15011
|
} | undefined;
|
|
13368
|
-
readonly conditionalRequired?:
|
|
15012
|
+
readonly conditionalRequired?: {
|
|
15013
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
15014
|
+
source?: string | undefined;
|
|
15015
|
+
ast?: unknown;
|
|
15016
|
+
meta?: {
|
|
15017
|
+
rationale?: string | undefined;
|
|
15018
|
+
generatedBy?: string | undefined;
|
|
15019
|
+
} | undefined;
|
|
15020
|
+
} | undefined;
|
|
13369
15021
|
readonly hidden?: boolean | undefined;
|
|
13370
15022
|
readonly sortable?: boolean | undefined;
|
|
13371
15023
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -13424,7 +15076,15 @@ declare const SysPackageVersion: Omit<{
|
|
|
13424
15076
|
readonly referenceFilters?: string[] | undefined;
|
|
13425
15077
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
13426
15078
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
13427
|
-
readonly expression?:
|
|
15079
|
+
readonly expression?: {
|
|
15080
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
15081
|
+
source?: string | undefined;
|
|
15082
|
+
ast?: unknown;
|
|
15083
|
+
meta?: {
|
|
15084
|
+
rationale?: string | undefined;
|
|
15085
|
+
generatedBy?: string | undefined;
|
|
15086
|
+
} | undefined;
|
|
15087
|
+
} | undefined;
|
|
13428
15088
|
readonly summaryOperations?: {
|
|
13429
15089
|
object: string;
|
|
13430
15090
|
field: string;
|
|
@@ -13523,7 +15183,15 @@ declare const SysPackageVersion: Omit<{
|
|
|
13523
15183
|
threshold: number;
|
|
13524
15184
|
} | undefined;
|
|
13525
15185
|
} | undefined;
|
|
13526
|
-
readonly conditionalRequired?:
|
|
15186
|
+
readonly conditionalRequired?: {
|
|
15187
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
15188
|
+
source?: string | undefined;
|
|
15189
|
+
ast?: unknown;
|
|
15190
|
+
meta?: {
|
|
15191
|
+
rationale?: string | undefined;
|
|
15192
|
+
generatedBy?: string | undefined;
|
|
15193
|
+
} | undefined;
|
|
15194
|
+
} | undefined;
|
|
13527
15195
|
readonly hidden?: boolean | undefined;
|
|
13528
15196
|
readonly sortable?: boolean | undefined;
|
|
13529
15197
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -13582,7 +15250,15 @@ declare const SysPackageVersion: Omit<{
|
|
|
13582
15250
|
readonly referenceFilters?: string[] | undefined;
|
|
13583
15251
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
13584
15252
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
13585
|
-
readonly expression?:
|
|
15253
|
+
readonly expression?: {
|
|
15254
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
15255
|
+
source?: string | undefined;
|
|
15256
|
+
ast?: unknown;
|
|
15257
|
+
meta?: {
|
|
15258
|
+
rationale?: string | undefined;
|
|
15259
|
+
generatedBy?: string | undefined;
|
|
15260
|
+
} | undefined;
|
|
15261
|
+
} | undefined;
|
|
13586
15262
|
readonly summaryOperations?: {
|
|
13587
15263
|
object: string;
|
|
13588
15264
|
field: string;
|
|
@@ -13681,7 +15357,15 @@ declare const SysPackageVersion: Omit<{
|
|
|
13681
15357
|
threshold: number;
|
|
13682
15358
|
} | undefined;
|
|
13683
15359
|
} | undefined;
|
|
13684
|
-
readonly conditionalRequired?:
|
|
15360
|
+
readonly conditionalRequired?: {
|
|
15361
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
15362
|
+
source?: string | undefined;
|
|
15363
|
+
ast?: unknown;
|
|
15364
|
+
meta?: {
|
|
15365
|
+
rationale?: string | undefined;
|
|
15366
|
+
generatedBy?: string | undefined;
|
|
15367
|
+
} | undefined;
|
|
15368
|
+
} | undefined;
|
|
13685
15369
|
readonly hidden?: boolean | undefined;
|
|
13686
15370
|
readonly sortable?: boolean | undefined;
|
|
13687
15371
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -13740,7 +15424,15 @@ declare const SysPackageVersion: Omit<{
|
|
|
13740
15424
|
readonly referenceFilters?: string[] | undefined;
|
|
13741
15425
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
13742
15426
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
13743
|
-
readonly expression?:
|
|
15427
|
+
readonly expression?: {
|
|
15428
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
15429
|
+
source?: string | undefined;
|
|
15430
|
+
ast?: unknown;
|
|
15431
|
+
meta?: {
|
|
15432
|
+
rationale?: string | undefined;
|
|
15433
|
+
generatedBy?: string | undefined;
|
|
15434
|
+
} | undefined;
|
|
15435
|
+
} | undefined;
|
|
13744
15436
|
readonly summaryOperations?: {
|
|
13745
15437
|
object: string;
|
|
13746
15438
|
field: string;
|
|
@@ -13839,7 +15531,15 @@ declare const SysPackageVersion: Omit<{
|
|
|
13839
15531
|
threshold: number;
|
|
13840
15532
|
} | undefined;
|
|
13841
15533
|
} | undefined;
|
|
13842
|
-
readonly conditionalRequired?:
|
|
15534
|
+
readonly conditionalRequired?: {
|
|
15535
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
15536
|
+
source?: string | undefined;
|
|
15537
|
+
ast?: unknown;
|
|
15538
|
+
meta?: {
|
|
15539
|
+
rationale?: string | undefined;
|
|
15540
|
+
generatedBy?: string | undefined;
|
|
15541
|
+
} | undefined;
|
|
15542
|
+
} | undefined;
|
|
13843
15543
|
readonly hidden?: boolean | undefined;
|
|
13844
15544
|
readonly sortable?: boolean | undefined;
|
|
13845
15545
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -13898,7 +15598,15 @@ declare const SysPackageVersion: Omit<{
|
|
|
13898
15598
|
readonly referenceFilters?: string[] | undefined;
|
|
13899
15599
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
13900
15600
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
13901
|
-
readonly expression?:
|
|
15601
|
+
readonly expression?: {
|
|
15602
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
15603
|
+
source?: string | undefined;
|
|
15604
|
+
ast?: unknown;
|
|
15605
|
+
meta?: {
|
|
15606
|
+
rationale?: string | undefined;
|
|
15607
|
+
generatedBy?: string | undefined;
|
|
15608
|
+
} | undefined;
|
|
15609
|
+
} | undefined;
|
|
13902
15610
|
readonly summaryOperations?: {
|
|
13903
15611
|
object: string;
|
|
13904
15612
|
field: string;
|
|
@@ -13997,7 +15705,15 @@ declare const SysPackageVersion: Omit<{
|
|
|
13997
15705
|
threshold: number;
|
|
13998
15706
|
} | undefined;
|
|
13999
15707
|
} | undefined;
|
|
14000
|
-
readonly conditionalRequired?:
|
|
15708
|
+
readonly conditionalRequired?: {
|
|
15709
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
15710
|
+
source?: string | undefined;
|
|
15711
|
+
ast?: unknown;
|
|
15712
|
+
meta?: {
|
|
15713
|
+
rationale?: string | undefined;
|
|
15714
|
+
generatedBy?: string | undefined;
|
|
15715
|
+
} | undefined;
|
|
15716
|
+
} | undefined;
|
|
14001
15717
|
readonly hidden?: boolean | undefined;
|
|
14002
15718
|
readonly sortable?: boolean | undefined;
|
|
14003
15719
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -14056,7 +15772,15 @@ declare const SysPackageVersion: Omit<{
|
|
|
14056
15772
|
readonly referenceFilters?: string[] | undefined;
|
|
14057
15773
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
14058
15774
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
14059
|
-
readonly expression?:
|
|
15775
|
+
readonly expression?: {
|
|
15776
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
15777
|
+
source?: string | undefined;
|
|
15778
|
+
ast?: unknown;
|
|
15779
|
+
meta?: {
|
|
15780
|
+
rationale?: string | undefined;
|
|
15781
|
+
generatedBy?: string | undefined;
|
|
15782
|
+
} | undefined;
|
|
15783
|
+
} | undefined;
|
|
14060
15784
|
readonly summaryOperations?: {
|
|
14061
15785
|
object: string;
|
|
14062
15786
|
field: string;
|
|
@@ -14155,7 +15879,15 @@ declare const SysPackageVersion: Omit<{
|
|
|
14155
15879
|
threshold: number;
|
|
14156
15880
|
} | undefined;
|
|
14157
15881
|
} | undefined;
|
|
14158
|
-
readonly conditionalRequired?:
|
|
15882
|
+
readonly conditionalRequired?: {
|
|
15883
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
15884
|
+
source?: string | undefined;
|
|
15885
|
+
ast?: unknown;
|
|
15886
|
+
meta?: {
|
|
15887
|
+
rationale?: string | undefined;
|
|
15888
|
+
generatedBy?: string | undefined;
|
|
15889
|
+
} | undefined;
|
|
15890
|
+
} | undefined;
|
|
14159
15891
|
readonly hidden?: boolean | undefined;
|
|
14160
15892
|
readonly sortable?: boolean | undefined;
|
|
14161
15893
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -14246,7 +15978,23 @@ declare const SysPackageInstallation: Omit<{
|
|
|
14246
15978
|
reference?: string | undefined;
|
|
14247
15979
|
referenceFilters?: string[] | undefined;
|
|
14248
15980
|
writeRequiresMasterRead?: boolean | undefined;
|
|
14249
|
-
expression?:
|
|
15981
|
+
expression?: {
|
|
15982
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
15983
|
+
source?: string | undefined;
|
|
15984
|
+
ast?: unknown;
|
|
15985
|
+
meta?: {
|
|
15986
|
+
rationale?: string | undefined;
|
|
15987
|
+
generatedBy?: string | undefined;
|
|
15988
|
+
} | undefined;
|
|
15989
|
+
} | {
|
|
15990
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
15991
|
+
source?: string | undefined;
|
|
15992
|
+
ast?: unknown;
|
|
15993
|
+
meta?: {
|
|
15994
|
+
rationale?: string | undefined;
|
|
15995
|
+
generatedBy?: string | undefined;
|
|
15996
|
+
} | undefined;
|
|
15997
|
+
} | undefined;
|
|
14250
15998
|
summaryOperations?: {
|
|
14251
15999
|
object: string;
|
|
14252
16000
|
field: string;
|
|
@@ -14364,7 +16112,23 @@ declare const SysPackageInstallation: Omit<{
|
|
|
14364
16112
|
} | undefined;
|
|
14365
16113
|
} | undefined;
|
|
14366
16114
|
group?: string | undefined;
|
|
14367
|
-
conditionalRequired?:
|
|
16115
|
+
conditionalRequired?: {
|
|
16116
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
16117
|
+
source?: string | undefined;
|
|
16118
|
+
ast?: unknown;
|
|
16119
|
+
meta?: {
|
|
16120
|
+
rationale?: string | undefined;
|
|
16121
|
+
generatedBy?: string | undefined;
|
|
16122
|
+
} | undefined;
|
|
16123
|
+
} | {
|
|
16124
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
16125
|
+
source?: string | undefined;
|
|
16126
|
+
ast?: unknown;
|
|
16127
|
+
meta?: {
|
|
16128
|
+
rationale?: string | undefined;
|
|
16129
|
+
generatedBy?: string | undefined;
|
|
16130
|
+
} | undefined;
|
|
16131
|
+
} | undefined;
|
|
14368
16132
|
inlineHelpText?: string | undefined;
|
|
14369
16133
|
trackFeedHistory?: boolean | undefined;
|
|
14370
16134
|
caseSensitive?: boolean | undefined;
|
|
@@ -14375,6 +16139,12 @@ declare const SysPackageInstallation: Omit<{
|
|
|
14375
16139
|
description?: string | undefined;
|
|
14376
16140
|
icon?: string | undefined;
|
|
14377
16141
|
tags?: string[] | undefined;
|
|
16142
|
+
managedBy?: "system" | "better-auth" | "platform" | undefined;
|
|
16143
|
+
systemFields?: false | {
|
|
16144
|
+
tenant?: boolean | undefined;
|
|
16145
|
+
owner?: boolean | undefined;
|
|
16146
|
+
audit?: boolean | undefined;
|
|
16147
|
+
} | undefined;
|
|
14378
16148
|
indexes?: {
|
|
14379
16149
|
fields: string[];
|
|
14380
16150
|
type: "hash" | "btree" | "gin" | "gist" | "fulltext";
|
|
@@ -14388,7 +16158,23 @@ declare const SysPackageInstallation: Omit<{
|
|
|
14388
16158
|
defaultExpanded: boolean;
|
|
14389
16159
|
icon?: string | undefined;
|
|
14390
16160
|
description?: string | undefined;
|
|
14391
|
-
visibleOn?:
|
|
16161
|
+
visibleOn?: {
|
|
16162
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
16163
|
+
source?: string | undefined;
|
|
16164
|
+
ast?: unknown;
|
|
16165
|
+
meta?: {
|
|
16166
|
+
rationale?: string | undefined;
|
|
16167
|
+
generatedBy?: string | undefined;
|
|
16168
|
+
} | undefined;
|
|
16169
|
+
} | {
|
|
16170
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
16171
|
+
source?: string | undefined;
|
|
16172
|
+
ast?: unknown;
|
|
16173
|
+
meta?: {
|
|
16174
|
+
rationale?: string | undefined;
|
|
16175
|
+
generatedBy?: string | undefined;
|
|
16176
|
+
} | undefined;
|
|
16177
|
+
} | undefined;
|
|
14392
16178
|
}[] | undefined;
|
|
14393
16179
|
tenancy?: {
|
|
14394
16180
|
enabled: boolean;
|
|
@@ -14455,7 +16241,23 @@ declare const SysPackageInstallation: Omit<{
|
|
|
14455
16241
|
displayFormat?: string | undefined;
|
|
14456
16242
|
startNumber?: number | undefined;
|
|
14457
16243
|
} | undefined;
|
|
14458
|
-
titleFormat?:
|
|
16244
|
+
titleFormat?: {
|
|
16245
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
16246
|
+
source?: string | undefined;
|
|
16247
|
+
ast?: unknown;
|
|
16248
|
+
meta?: {
|
|
16249
|
+
rationale?: string | undefined;
|
|
16250
|
+
generatedBy?: string | undefined;
|
|
16251
|
+
} | undefined;
|
|
16252
|
+
} | {
|
|
16253
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
16254
|
+
source?: string | undefined;
|
|
16255
|
+
ast?: unknown;
|
|
16256
|
+
meta?: {
|
|
16257
|
+
rationale?: string | undefined;
|
|
16258
|
+
generatedBy?: string | undefined;
|
|
16259
|
+
} | undefined;
|
|
16260
|
+
} | undefined;
|
|
14459
16261
|
compactLayout?: string[] | undefined;
|
|
14460
16262
|
search?: {
|
|
14461
16263
|
fields: string[];
|
|
@@ -14511,8 +16313,24 @@ declare const SysPackageInstallation: Omit<{
|
|
|
14511
16313
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
14512
16314
|
confirmText?: string | undefined;
|
|
14513
16315
|
successMessage?: string | undefined;
|
|
14514
|
-
visible?:
|
|
14515
|
-
|
|
16316
|
+
visible?: {
|
|
16317
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
16318
|
+
source?: string | undefined;
|
|
16319
|
+
ast?: unknown;
|
|
16320
|
+
meta?: {
|
|
16321
|
+
rationale?: string | undefined;
|
|
16322
|
+
generatedBy?: string | undefined;
|
|
16323
|
+
} | undefined;
|
|
16324
|
+
} | undefined;
|
|
16325
|
+
disabled?: boolean | {
|
|
16326
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
16327
|
+
source?: string | undefined;
|
|
16328
|
+
ast?: unknown;
|
|
16329
|
+
meta?: {
|
|
16330
|
+
rationale?: string | undefined;
|
|
16331
|
+
generatedBy?: string | undefined;
|
|
16332
|
+
} | undefined;
|
|
16333
|
+
} | undefined;
|
|
14516
16334
|
shortcut?: string | undefined;
|
|
14517
16335
|
bulkEnabled?: boolean | undefined;
|
|
14518
16336
|
timeout?: number | undefined;
|
|
@@ -14581,7 +16399,15 @@ declare const SysPackageInstallation: Omit<{
|
|
|
14581
16399
|
readonly referenceFilters?: string[] | undefined;
|
|
14582
16400
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
14583
16401
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
14584
|
-
readonly expression?:
|
|
16402
|
+
readonly expression?: {
|
|
16403
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
16404
|
+
source?: string | undefined;
|
|
16405
|
+
ast?: unknown;
|
|
16406
|
+
meta?: {
|
|
16407
|
+
rationale?: string | undefined;
|
|
16408
|
+
generatedBy?: string | undefined;
|
|
16409
|
+
} | undefined;
|
|
16410
|
+
} | undefined;
|
|
14585
16411
|
readonly summaryOperations?: {
|
|
14586
16412
|
object: string;
|
|
14587
16413
|
field: string;
|
|
@@ -14680,7 +16506,15 @@ declare const SysPackageInstallation: Omit<{
|
|
|
14680
16506
|
threshold: number;
|
|
14681
16507
|
} | undefined;
|
|
14682
16508
|
} | undefined;
|
|
14683
|
-
readonly conditionalRequired?:
|
|
16509
|
+
readonly conditionalRequired?: {
|
|
16510
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
16511
|
+
source?: string | undefined;
|
|
16512
|
+
ast?: unknown;
|
|
16513
|
+
meta?: {
|
|
16514
|
+
rationale?: string | undefined;
|
|
16515
|
+
generatedBy?: string | undefined;
|
|
16516
|
+
} | undefined;
|
|
16517
|
+
} | undefined;
|
|
14684
16518
|
readonly hidden?: boolean | undefined;
|
|
14685
16519
|
readonly sortable?: boolean | undefined;
|
|
14686
16520
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -14739,7 +16573,15 @@ declare const SysPackageInstallation: Omit<{
|
|
|
14739
16573
|
readonly referenceFilters?: string[] | undefined;
|
|
14740
16574
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
14741
16575
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
14742
|
-
readonly expression?:
|
|
16576
|
+
readonly expression?: {
|
|
16577
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
16578
|
+
source?: string | undefined;
|
|
16579
|
+
ast?: unknown;
|
|
16580
|
+
meta?: {
|
|
16581
|
+
rationale?: string | undefined;
|
|
16582
|
+
generatedBy?: string | undefined;
|
|
16583
|
+
} | undefined;
|
|
16584
|
+
} | undefined;
|
|
14743
16585
|
readonly summaryOperations?: {
|
|
14744
16586
|
object: string;
|
|
14745
16587
|
field: string;
|
|
@@ -14838,7 +16680,15 @@ declare const SysPackageInstallation: Omit<{
|
|
|
14838
16680
|
threshold: number;
|
|
14839
16681
|
} | undefined;
|
|
14840
16682
|
} | undefined;
|
|
14841
|
-
readonly conditionalRequired?:
|
|
16683
|
+
readonly conditionalRequired?: {
|
|
16684
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
16685
|
+
source?: string | undefined;
|
|
16686
|
+
ast?: unknown;
|
|
16687
|
+
meta?: {
|
|
16688
|
+
rationale?: string | undefined;
|
|
16689
|
+
generatedBy?: string | undefined;
|
|
16690
|
+
} | undefined;
|
|
16691
|
+
} | undefined;
|
|
14842
16692
|
readonly hidden?: boolean | undefined;
|
|
14843
16693
|
readonly sortable?: boolean | undefined;
|
|
14844
16694
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -14897,7 +16747,15 @@ declare const SysPackageInstallation: Omit<{
|
|
|
14897
16747
|
readonly referenceFilters?: string[] | undefined;
|
|
14898
16748
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
14899
16749
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
14900
|
-
readonly expression?:
|
|
16750
|
+
readonly expression?: {
|
|
16751
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
16752
|
+
source?: string | undefined;
|
|
16753
|
+
ast?: unknown;
|
|
16754
|
+
meta?: {
|
|
16755
|
+
rationale?: string | undefined;
|
|
16756
|
+
generatedBy?: string | undefined;
|
|
16757
|
+
} | undefined;
|
|
16758
|
+
} | undefined;
|
|
14901
16759
|
readonly summaryOperations?: {
|
|
14902
16760
|
object: string;
|
|
14903
16761
|
field: string;
|
|
@@ -14996,7 +16854,15 @@ declare const SysPackageInstallation: Omit<{
|
|
|
14996
16854
|
threshold: number;
|
|
14997
16855
|
} | undefined;
|
|
14998
16856
|
} | undefined;
|
|
14999
|
-
readonly conditionalRequired?:
|
|
16857
|
+
readonly conditionalRequired?: {
|
|
16858
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
16859
|
+
source?: string | undefined;
|
|
16860
|
+
ast?: unknown;
|
|
16861
|
+
meta?: {
|
|
16862
|
+
rationale?: string | undefined;
|
|
16863
|
+
generatedBy?: string | undefined;
|
|
16864
|
+
} | undefined;
|
|
16865
|
+
} | undefined;
|
|
15000
16866
|
readonly hidden?: boolean | undefined;
|
|
15001
16867
|
readonly sortable?: boolean | undefined;
|
|
15002
16868
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -15055,7 +16921,15 @@ declare const SysPackageInstallation: Omit<{
|
|
|
15055
16921
|
readonly referenceFilters?: string[] | undefined;
|
|
15056
16922
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
15057
16923
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
15058
|
-
readonly expression?:
|
|
16924
|
+
readonly expression?: {
|
|
16925
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
16926
|
+
source?: string | undefined;
|
|
16927
|
+
ast?: unknown;
|
|
16928
|
+
meta?: {
|
|
16929
|
+
rationale?: string | undefined;
|
|
16930
|
+
generatedBy?: string | undefined;
|
|
16931
|
+
} | undefined;
|
|
16932
|
+
} | undefined;
|
|
15059
16933
|
readonly summaryOperations?: {
|
|
15060
16934
|
object: string;
|
|
15061
16935
|
field: string;
|
|
@@ -15154,7 +17028,15 @@ declare const SysPackageInstallation: Omit<{
|
|
|
15154
17028
|
threshold: number;
|
|
15155
17029
|
} | undefined;
|
|
15156
17030
|
} | undefined;
|
|
15157
|
-
readonly conditionalRequired?:
|
|
17031
|
+
readonly conditionalRequired?: {
|
|
17032
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
17033
|
+
source?: string | undefined;
|
|
17034
|
+
ast?: unknown;
|
|
17035
|
+
meta?: {
|
|
17036
|
+
rationale?: string | undefined;
|
|
17037
|
+
generatedBy?: string | undefined;
|
|
17038
|
+
} | undefined;
|
|
17039
|
+
} | undefined;
|
|
15158
17040
|
readonly hidden?: boolean | undefined;
|
|
15159
17041
|
readonly sortable?: boolean | undefined;
|
|
15160
17042
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -15213,7 +17095,15 @@ declare const SysPackageInstallation: Omit<{
|
|
|
15213
17095
|
readonly referenceFilters?: string[] | undefined;
|
|
15214
17096
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
15215
17097
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
15216
|
-
readonly expression?:
|
|
17098
|
+
readonly expression?: {
|
|
17099
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
17100
|
+
source?: string | undefined;
|
|
17101
|
+
ast?: unknown;
|
|
17102
|
+
meta?: {
|
|
17103
|
+
rationale?: string | undefined;
|
|
17104
|
+
generatedBy?: string | undefined;
|
|
17105
|
+
} | undefined;
|
|
17106
|
+
} | undefined;
|
|
15217
17107
|
readonly summaryOperations?: {
|
|
15218
17108
|
object: string;
|
|
15219
17109
|
field: string;
|
|
@@ -15312,7 +17202,15 @@ declare const SysPackageInstallation: Omit<{
|
|
|
15312
17202
|
threshold: number;
|
|
15313
17203
|
} | undefined;
|
|
15314
17204
|
} | undefined;
|
|
15315
|
-
readonly conditionalRequired?:
|
|
17205
|
+
readonly conditionalRequired?: {
|
|
17206
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
17207
|
+
source?: string | undefined;
|
|
17208
|
+
ast?: unknown;
|
|
17209
|
+
meta?: {
|
|
17210
|
+
rationale?: string | undefined;
|
|
17211
|
+
generatedBy?: string | undefined;
|
|
17212
|
+
} | undefined;
|
|
17213
|
+
} | undefined;
|
|
15316
17214
|
readonly hidden?: boolean | undefined;
|
|
15317
17215
|
readonly sortable?: boolean | undefined;
|
|
15318
17216
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -15371,7 +17269,15 @@ declare const SysPackageInstallation: Omit<{
|
|
|
15371
17269
|
readonly referenceFilters?: string[] | undefined;
|
|
15372
17270
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
15373
17271
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
15374
|
-
readonly expression?:
|
|
17272
|
+
readonly expression?: {
|
|
17273
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
17274
|
+
source?: string | undefined;
|
|
17275
|
+
ast?: unknown;
|
|
17276
|
+
meta?: {
|
|
17277
|
+
rationale?: string | undefined;
|
|
17278
|
+
generatedBy?: string | undefined;
|
|
17279
|
+
} | undefined;
|
|
17280
|
+
} | undefined;
|
|
15375
17281
|
readonly summaryOperations?: {
|
|
15376
17282
|
object: string;
|
|
15377
17283
|
field: string;
|
|
@@ -15470,7 +17376,15 @@ declare const SysPackageInstallation: Omit<{
|
|
|
15470
17376
|
threshold: number;
|
|
15471
17377
|
} | undefined;
|
|
15472
17378
|
} | undefined;
|
|
15473
|
-
readonly conditionalRequired?:
|
|
17379
|
+
readonly conditionalRequired?: {
|
|
17380
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
17381
|
+
source?: string | undefined;
|
|
17382
|
+
ast?: unknown;
|
|
17383
|
+
meta?: {
|
|
17384
|
+
rationale?: string | undefined;
|
|
17385
|
+
generatedBy?: string | undefined;
|
|
17386
|
+
} | undefined;
|
|
17387
|
+
} | undefined;
|
|
15474
17388
|
readonly hidden?: boolean | undefined;
|
|
15475
17389
|
readonly sortable?: boolean | undefined;
|
|
15476
17390
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -15529,7 +17443,15 @@ declare const SysPackageInstallation: Omit<{
|
|
|
15529
17443
|
readonly referenceFilters?: string[] | undefined;
|
|
15530
17444
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
15531
17445
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
15532
|
-
readonly expression?:
|
|
17446
|
+
readonly expression?: {
|
|
17447
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
17448
|
+
source?: string | undefined;
|
|
17449
|
+
ast?: unknown;
|
|
17450
|
+
meta?: {
|
|
17451
|
+
rationale?: string | undefined;
|
|
17452
|
+
generatedBy?: string | undefined;
|
|
17453
|
+
} | undefined;
|
|
17454
|
+
} | undefined;
|
|
15533
17455
|
readonly summaryOperations?: {
|
|
15534
17456
|
object: string;
|
|
15535
17457
|
field: string;
|
|
@@ -15628,7 +17550,15 @@ declare const SysPackageInstallation: Omit<{
|
|
|
15628
17550
|
threshold: number;
|
|
15629
17551
|
} | undefined;
|
|
15630
17552
|
} | undefined;
|
|
15631
|
-
readonly conditionalRequired?:
|
|
17553
|
+
readonly conditionalRequired?: {
|
|
17554
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
17555
|
+
source?: string | undefined;
|
|
17556
|
+
ast?: unknown;
|
|
17557
|
+
meta?: {
|
|
17558
|
+
rationale?: string | undefined;
|
|
17559
|
+
generatedBy?: string | undefined;
|
|
17560
|
+
} | undefined;
|
|
17561
|
+
} | undefined;
|
|
15632
17562
|
readonly hidden?: boolean | undefined;
|
|
15633
17563
|
readonly sortable?: boolean | undefined;
|
|
15634
17564
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -15687,7 +17617,15 @@ declare const SysPackageInstallation: Omit<{
|
|
|
15687
17617
|
readonly referenceFilters?: string[] | undefined;
|
|
15688
17618
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
15689
17619
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
15690
|
-
readonly expression?:
|
|
17620
|
+
readonly expression?: {
|
|
17621
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
17622
|
+
source?: string | undefined;
|
|
17623
|
+
ast?: unknown;
|
|
17624
|
+
meta?: {
|
|
17625
|
+
rationale?: string | undefined;
|
|
17626
|
+
generatedBy?: string | undefined;
|
|
17627
|
+
} | undefined;
|
|
17628
|
+
} | undefined;
|
|
15691
17629
|
readonly summaryOperations?: {
|
|
15692
17630
|
object: string;
|
|
15693
17631
|
field: string;
|
|
@@ -15786,7 +17724,15 @@ declare const SysPackageInstallation: Omit<{
|
|
|
15786
17724
|
threshold: number;
|
|
15787
17725
|
} | undefined;
|
|
15788
17726
|
} | undefined;
|
|
15789
|
-
readonly conditionalRequired?:
|
|
17727
|
+
readonly conditionalRequired?: {
|
|
17728
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
17729
|
+
source?: string | undefined;
|
|
17730
|
+
ast?: unknown;
|
|
17731
|
+
meta?: {
|
|
17732
|
+
rationale?: string | undefined;
|
|
17733
|
+
generatedBy?: string | undefined;
|
|
17734
|
+
} | undefined;
|
|
17735
|
+
} | undefined;
|
|
15790
17736
|
readonly hidden?: boolean | undefined;
|
|
15791
17737
|
readonly sortable?: boolean | undefined;
|
|
15792
17738
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -15845,7 +17791,15 @@ declare const SysPackageInstallation: Omit<{
|
|
|
15845
17791
|
readonly referenceFilters?: string[] | undefined;
|
|
15846
17792
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
15847
17793
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
15848
|
-
readonly expression?:
|
|
17794
|
+
readonly expression?: {
|
|
17795
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
17796
|
+
source?: string | undefined;
|
|
17797
|
+
ast?: unknown;
|
|
17798
|
+
meta?: {
|
|
17799
|
+
rationale?: string | undefined;
|
|
17800
|
+
generatedBy?: string | undefined;
|
|
17801
|
+
} | undefined;
|
|
17802
|
+
} | undefined;
|
|
15849
17803
|
readonly summaryOperations?: {
|
|
15850
17804
|
object: string;
|
|
15851
17805
|
field: string;
|
|
@@ -15944,7 +17898,15 @@ declare const SysPackageInstallation: Omit<{
|
|
|
15944
17898
|
threshold: number;
|
|
15945
17899
|
} | undefined;
|
|
15946
17900
|
} | undefined;
|
|
15947
|
-
readonly conditionalRequired?:
|
|
17901
|
+
readonly conditionalRequired?: {
|
|
17902
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
17903
|
+
source?: string | undefined;
|
|
17904
|
+
ast?: unknown;
|
|
17905
|
+
meta?: {
|
|
17906
|
+
rationale?: string | undefined;
|
|
17907
|
+
generatedBy?: string | undefined;
|
|
17908
|
+
} | undefined;
|
|
17909
|
+
} | undefined;
|
|
15948
17910
|
readonly hidden?: boolean | undefined;
|
|
15949
17911
|
readonly sortable?: boolean | undefined;
|
|
15950
17912
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -16003,7 +17965,15 @@ declare const SysPackageInstallation: Omit<{
|
|
|
16003
17965
|
readonly referenceFilters?: string[] | undefined;
|
|
16004
17966
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
16005
17967
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
16006
|
-
readonly expression?:
|
|
17968
|
+
readonly expression?: {
|
|
17969
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
17970
|
+
source?: string | undefined;
|
|
17971
|
+
ast?: unknown;
|
|
17972
|
+
meta?: {
|
|
17973
|
+
rationale?: string | undefined;
|
|
17974
|
+
generatedBy?: string | undefined;
|
|
17975
|
+
} | undefined;
|
|
17976
|
+
} | undefined;
|
|
16007
17977
|
readonly summaryOperations?: {
|
|
16008
17978
|
object: string;
|
|
16009
17979
|
field: string;
|
|
@@ -16102,7 +18072,15 @@ declare const SysPackageInstallation: Omit<{
|
|
|
16102
18072
|
threshold: number;
|
|
16103
18073
|
} | undefined;
|
|
16104
18074
|
} | undefined;
|
|
16105
|
-
readonly conditionalRequired?:
|
|
18075
|
+
readonly conditionalRequired?: {
|
|
18076
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
18077
|
+
source?: string | undefined;
|
|
18078
|
+
ast?: unknown;
|
|
18079
|
+
meta?: {
|
|
18080
|
+
rationale?: string | undefined;
|
|
18081
|
+
generatedBy?: string | undefined;
|
|
18082
|
+
} | undefined;
|
|
18083
|
+
} | undefined;
|
|
16106
18084
|
readonly hidden?: boolean | undefined;
|
|
16107
18085
|
readonly sortable?: boolean | undefined;
|
|
16108
18086
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -16161,7 +18139,15 @@ declare const SysPackageInstallation: Omit<{
|
|
|
16161
18139
|
readonly referenceFilters?: string[] | undefined;
|
|
16162
18140
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
16163
18141
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
16164
|
-
readonly expression?:
|
|
18142
|
+
readonly expression?: {
|
|
18143
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
18144
|
+
source?: string | undefined;
|
|
18145
|
+
ast?: unknown;
|
|
18146
|
+
meta?: {
|
|
18147
|
+
rationale?: string | undefined;
|
|
18148
|
+
generatedBy?: string | undefined;
|
|
18149
|
+
} | undefined;
|
|
18150
|
+
} | undefined;
|
|
16165
18151
|
readonly summaryOperations?: {
|
|
16166
18152
|
object: string;
|
|
16167
18153
|
field: string;
|
|
@@ -16260,7 +18246,15 @@ declare const SysPackageInstallation: Omit<{
|
|
|
16260
18246
|
threshold: number;
|
|
16261
18247
|
} | undefined;
|
|
16262
18248
|
} | undefined;
|
|
16263
|
-
readonly conditionalRequired?:
|
|
18249
|
+
readonly conditionalRequired?: {
|
|
18250
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
18251
|
+
source?: string | undefined;
|
|
18252
|
+
ast?: unknown;
|
|
18253
|
+
meta?: {
|
|
18254
|
+
rationale?: string | undefined;
|
|
18255
|
+
generatedBy?: string | undefined;
|
|
18256
|
+
} | undefined;
|
|
18257
|
+
} | undefined;
|
|
16264
18258
|
readonly hidden?: boolean | undefined;
|
|
16265
18259
|
readonly sortable?: boolean | undefined;
|
|
16266
18260
|
readonly inlineHelpText?: string | undefined;
|
|
@@ -16319,7 +18313,15 @@ declare const SysPackageInstallation: Omit<{
|
|
|
16319
18313
|
readonly referenceFilters?: string[] | undefined;
|
|
16320
18314
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
16321
18315
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
16322
|
-
readonly expression?:
|
|
18316
|
+
readonly expression?: {
|
|
18317
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
18318
|
+
source?: string | undefined;
|
|
18319
|
+
ast?: unknown;
|
|
18320
|
+
meta?: {
|
|
18321
|
+
rationale?: string | undefined;
|
|
18322
|
+
generatedBy?: string | undefined;
|
|
18323
|
+
} | undefined;
|
|
18324
|
+
} | undefined;
|
|
16323
18325
|
readonly summaryOperations?: {
|
|
16324
18326
|
object: string;
|
|
16325
18327
|
field: string;
|
|
@@ -16418,7 +18420,15 @@ declare const SysPackageInstallation: Omit<{
|
|
|
16418
18420
|
threshold: number;
|
|
16419
18421
|
} | undefined;
|
|
16420
18422
|
} | undefined;
|
|
16421
|
-
readonly conditionalRequired?:
|
|
18423
|
+
readonly conditionalRequired?: {
|
|
18424
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
18425
|
+
source?: string | undefined;
|
|
18426
|
+
ast?: unknown;
|
|
18427
|
+
meta?: {
|
|
18428
|
+
rationale?: string | undefined;
|
|
18429
|
+
generatedBy?: string | undefined;
|
|
18430
|
+
} | undefined;
|
|
18431
|
+
} | undefined;
|
|
16422
18432
|
readonly hidden?: boolean | undefined;
|
|
16423
18433
|
readonly sortable?: boolean | undefined;
|
|
16424
18434
|
readonly inlineHelpText?: string | undefined;
|