@objectstack/plugin-security 7.9.0 → 8.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +1523 -40
- package/dist/index.d.ts +1523 -40
- package/dist/index.js +137 -39
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +137 -39
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -82,10 +82,58 @@ declare class SecurityPlugin implements Plugin {
|
|
|
82
82
|
* zero rows.
|
|
83
83
|
*/
|
|
84
84
|
private readonly tenancyDisabledCache;
|
|
85
|
+
/**
|
|
86
|
+
* Service handles captured in `start()` so the request-time RLS resolution
|
|
87
|
+
* (used by BOTH the engine middleware and the public {@link getReadFilter}
|
|
88
|
+
* service method) shares one code path. `null` until `start()` wires them.
|
|
89
|
+
*/
|
|
90
|
+
private metadata;
|
|
91
|
+
private ql;
|
|
92
|
+
private dbLoader?;
|
|
93
|
+
private logger;
|
|
85
94
|
constructor(options?: SecurityPluginOptions);
|
|
86
95
|
init(ctx: PluginContext): Promise<void>;
|
|
87
96
|
start(ctx: PluginContext): Promise<void>;
|
|
88
97
|
destroy(): Promise<void>;
|
|
98
|
+
/**
|
|
99
|
+
* ADR-0021 D-C — resolve the per-request READ scope (tenant + RLS predicate)
|
|
100
|
+
* for one object as a canonical `FilterCondition`, WITHOUT touching the
|
|
101
|
+
* ObjectQL engine. This is the seam the analytics raw-SQL path bridges to so
|
|
102
|
+
* it enforces the SAME row scoping the engine middleware applies on `find`.
|
|
103
|
+
*
|
|
104
|
+
* Returns:
|
|
105
|
+
* - `undefined` → no scope applies (system context, or an unauthenticated
|
|
106
|
+
* request with no userId/roles/permissions — authn is gated elsewhere).
|
|
107
|
+
* - a `FilterCondition` → AND it into the object's scan (the join's `ON`/
|
|
108
|
+
* `WHERE` for analytics; the where clause for a plain find).
|
|
109
|
+
* - the `RLS_DENY_FILTER` sentinel → policies applied but none compiled, or
|
|
110
|
+
* resolution failed — fail-closed to zero rows. NEVER returns "allow all"
|
|
111
|
+
* on error, so a degraded permission subsystem cannot leak cross-tenant
|
|
112
|
+
* rows through analytics.
|
|
113
|
+
*
|
|
114
|
+
* Async because permission-set resolution can hit the database; the analytics
|
|
115
|
+
* service pre-resolves these per request (base + every joined object) before
|
|
116
|
+
* the synchronous SQL builder runs.
|
|
117
|
+
*/
|
|
118
|
+
getReadFilter(object: string, context?: any): Promise<Record<string, unknown> | null | undefined>;
|
|
119
|
+
/**
|
|
120
|
+
* Resolve the effective permission sets for an execution context — roles +
|
|
121
|
+
* explicit permission sets, with the configured baseline applied both as an
|
|
122
|
+
* implicit request (when none were named) and as a post-resolution fallback
|
|
123
|
+
* (when named ones resolved to nothing). Shared by the engine middleware and
|
|
124
|
+
* {@link getReadFilter} so both enforce identical RLS. May throw if the
|
|
125
|
+
* underlying metadata/db resolution fails (callers fail-closed).
|
|
126
|
+
*/
|
|
127
|
+
private resolvePermissionSetsForContext;
|
|
128
|
+
/**
|
|
129
|
+
* Compile the applicable RLS policies for (object, operation) into a single
|
|
130
|
+
* `FilterCondition`, applying the field-existence safety net (wildcard
|
|
131
|
+
* policies targeting a column the object lacks fail-closed to the deny
|
|
132
|
+
* sentinel, unless the object explicitly opted out of tenancy). Shared by the
|
|
133
|
+
* engine middleware and {@link getReadFilter}. Returns `null` when no policy
|
|
134
|
+
* applies (caller adds no filter).
|
|
135
|
+
*/
|
|
136
|
+
private computeRlsFilter;
|
|
89
137
|
/**
|
|
90
138
|
* Collect all RLS policies from permission sets applicable to the given object/operation.
|
|
91
139
|
*/
|
|
@@ -331,6 +379,13 @@ declare const securityObjects: ((Omit<{
|
|
|
331
379
|
reference?: string | undefined;
|
|
332
380
|
referenceFilters?: string[] | undefined;
|
|
333
381
|
writeRequiresMasterRead?: boolean | undefined;
|
|
382
|
+
inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
383
|
+
inlineTitle?: string | undefined;
|
|
384
|
+
inlineColumns?: any[] | undefined;
|
|
385
|
+
inlineAmountField?: string | undefined;
|
|
386
|
+
relatedList?: boolean | undefined;
|
|
387
|
+
relatedListTitle?: string | undefined;
|
|
388
|
+
relatedListColumns?: any[] | undefined;
|
|
334
389
|
expression?: {
|
|
335
390
|
dialect: "cel" | "js" | "cron" | "template";
|
|
336
391
|
source?: string | undefined;
|
|
@@ -352,6 +407,7 @@ declare const securityObjects: ((Omit<{
|
|
|
352
407
|
object: string;
|
|
353
408
|
field: string;
|
|
354
409
|
function: "count" | "min" | "max" | "sum" | "avg";
|
|
410
|
+
relationshipField?: string | undefined;
|
|
355
411
|
} | undefined;
|
|
356
412
|
language?: string | undefined;
|
|
357
413
|
theme?: string | undefined;
|
|
@@ -465,6 +521,57 @@ declare const securityObjects: ((Omit<{
|
|
|
465
521
|
} | undefined;
|
|
466
522
|
} | undefined;
|
|
467
523
|
group?: string | undefined;
|
|
524
|
+
visibleWhen?: {
|
|
525
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
526
|
+
source?: string | undefined;
|
|
527
|
+
ast?: unknown;
|
|
528
|
+
meta?: {
|
|
529
|
+
rationale?: string | undefined;
|
|
530
|
+
generatedBy?: string | undefined;
|
|
531
|
+
} | undefined;
|
|
532
|
+
} | {
|
|
533
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
534
|
+
source?: string | undefined;
|
|
535
|
+
ast?: unknown;
|
|
536
|
+
meta?: {
|
|
537
|
+
rationale?: string | undefined;
|
|
538
|
+
generatedBy?: string | undefined;
|
|
539
|
+
} | undefined;
|
|
540
|
+
} | undefined;
|
|
541
|
+
readonlyWhen?: {
|
|
542
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
543
|
+
source?: string | undefined;
|
|
544
|
+
ast?: unknown;
|
|
545
|
+
meta?: {
|
|
546
|
+
rationale?: string | undefined;
|
|
547
|
+
generatedBy?: string | undefined;
|
|
548
|
+
} | undefined;
|
|
549
|
+
} | {
|
|
550
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
551
|
+
source?: string | undefined;
|
|
552
|
+
ast?: unknown;
|
|
553
|
+
meta?: {
|
|
554
|
+
rationale?: string | undefined;
|
|
555
|
+
generatedBy?: string | undefined;
|
|
556
|
+
} | undefined;
|
|
557
|
+
} | undefined;
|
|
558
|
+
requiredWhen?: {
|
|
559
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
560
|
+
source?: string | undefined;
|
|
561
|
+
ast?: unknown;
|
|
562
|
+
meta?: {
|
|
563
|
+
rationale?: string | undefined;
|
|
564
|
+
generatedBy?: string | undefined;
|
|
565
|
+
} | undefined;
|
|
566
|
+
} | {
|
|
567
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
568
|
+
source?: string | undefined;
|
|
569
|
+
ast?: unknown;
|
|
570
|
+
meta?: {
|
|
571
|
+
rationale?: string | undefined;
|
|
572
|
+
generatedBy?: string | undefined;
|
|
573
|
+
} | undefined;
|
|
574
|
+
} | undefined;
|
|
468
575
|
conditionalRequired?: {
|
|
469
576
|
dialect: "cel" | "js" | "cron" | "template";
|
|
470
577
|
source?: string | undefined;
|
|
@@ -606,7 +713,7 @@ declare const securityObjects: ((Omit<{
|
|
|
606
713
|
} | undefined;
|
|
607
714
|
compactLayout?: string[] | undefined;
|
|
608
715
|
listViews?: Record<string, {
|
|
609
|
-
type: "map" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart"
|
|
716
|
+
type: "map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart";
|
|
610
717
|
columns: string[] | {
|
|
611
718
|
field: string;
|
|
612
719
|
label?: string | undefined;
|
|
@@ -775,7 +882,7 @@ declare const securityObjects: ((Omit<{
|
|
|
775
882
|
} | undefined;
|
|
776
883
|
appearance?: {
|
|
777
884
|
showDescription: boolean;
|
|
778
|
-
allowedVisualizations?: ("map" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline"
|
|
885
|
+
allowedVisualizations?: ("map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline")[] | undefined;
|
|
779
886
|
} | undefined;
|
|
780
887
|
tabs?: {
|
|
781
888
|
name: string;
|
|
@@ -795,7 +902,7 @@ declare const securityObjects: ((Omit<{
|
|
|
795
902
|
addRecord?: {
|
|
796
903
|
enabled: boolean;
|
|
797
904
|
position: "top" | "bottom" | "both";
|
|
798
|
-
mode: "
|
|
905
|
+
mode: "form" | "modal" | "inline";
|
|
799
906
|
formView?: string | undefined;
|
|
800
907
|
} | undefined;
|
|
801
908
|
showRecordCount?: boolean | undefined;
|
|
@@ -881,7 +988,7 @@ declare const securityObjects: ((Omit<{
|
|
|
881
988
|
actions?: {
|
|
882
989
|
name: string;
|
|
883
990
|
label: string;
|
|
884
|
-
type: "url" | "
|
|
991
|
+
type: "url" | "form" | "flow" | "api" | "script" | "modal";
|
|
885
992
|
refreshAfter: boolean;
|
|
886
993
|
objectName?: string | undefined;
|
|
887
994
|
icon?: string | undefined;
|
|
@@ -949,7 +1056,18 @@ declare const securityObjects: ((Omit<{
|
|
|
949
1056
|
} | undefined;
|
|
950
1057
|
shortcut?: string | undefined;
|
|
951
1058
|
bulkEnabled?: boolean | undefined;
|
|
952
|
-
|
|
1059
|
+
ai?: {
|
|
1060
|
+
exposed: boolean;
|
|
1061
|
+
description?: string | undefined;
|
|
1062
|
+
category?: "action" | "data" | "flow" | "integration" | "vector_search" | "analytics" | "utility" | undefined;
|
|
1063
|
+
paramHints?: Record<string, {
|
|
1064
|
+
description?: string | undefined;
|
|
1065
|
+
enum?: (string | number)[] | undefined;
|
|
1066
|
+
examples?: unknown[] | undefined;
|
|
1067
|
+
}> | undefined;
|
|
1068
|
+
outputSchema?: Record<string, unknown> | undefined;
|
|
1069
|
+
requiresConfirmation?: boolean | undefined;
|
|
1070
|
+
} | undefined;
|
|
953
1071
|
recordIdParam?: string | undefined;
|
|
954
1072
|
recordIdField?: string | undefined;
|
|
955
1073
|
bodyShape?: "flat" | {
|
|
@@ -1205,6 +1323,13 @@ declare const securityObjects: ((Omit<{
|
|
|
1205
1323
|
readonly referenceFilters?: string[] | undefined;
|
|
1206
1324
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1207
1325
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1326
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1327
|
+
readonly inlineTitle?: string | undefined;
|
|
1328
|
+
readonly inlineColumns?: any[] | undefined;
|
|
1329
|
+
readonly inlineAmountField?: string | undefined;
|
|
1330
|
+
readonly relatedList?: boolean | undefined;
|
|
1331
|
+
readonly relatedListTitle?: string | undefined;
|
|
1332
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
1208
1333
|
readonly expression?: {
|
|
1209
1334
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1210
1335
|
source?: string | undefined;
|
|
@@ -1218,6 +1343,7 @@ declare const securityObjects: ((Omit<{
|
|
|
1218
1343
|
object: string;
|
|
1219
1344
|
field: string;
|
|
1220
1345
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1346
|
+
relationshipField?: string | undefined;
|
|
1221
1347
|
} | undefined;
|
|
1222
1348
|
readonly language?: string | undefined;
|
|
1223
1349
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -1312,6 +1438,33 @@ declare const securityObjects: ((Omit<{
|
|
|
1312
1438
|
threshold: number;
|
|
1313
1439
|
} | undefined;
|
|
1314
1440
|
} | undefined;
|
|
1441
|
+
readonly visibleWhen?: {
|
|
1442
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1443
|
+
source?: string | undefined;
|
|
1444
|
+
ast?: unknown;
|
|
1445
|
+
meta?: {
|
|
1446
|
+
rationale?: string | undefined;
|
|
1447
|
+
generatedBy?: string | undefined;
|
|
1448
|
+
} | undefined;
|
|
1449
|
+
} | undefined;
|
|
1450
|
+
readonly readonlyWhen?: {
|
|
1451
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1452
|
+
source?: string | undefined;
|
|
1453
|
+
ast?: unknown;
|
|
1454
|
+
meta?: {
|
|
1455
|
+
rationale?: string | undefined;
|
|
1456
|
+
generatedBy?: string | undefined;
|
|
1457
|
+
} | undefined;
|
|
1458
|
+
} | undefined;
|
|
1459
|
+
readonly requiredWhen?: {
|
|
1460
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1461
|
+
source?: string | undefined;
|
|
1462
|
+
ast?: unknown;
|
|
1463
|
+
meta?: {
|
|
1464
|
+
rationale?: string | undefined;
|
|
1465
|
+
generatedBy?: string | undefined;
|
|
1466
|
+
} | undefined;
|
|
1467
|
+
} | undefined;
|
|
1315
1468
|
readonly conditionalRequired?: {
|
|
1316
1469
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1317
1470
|
source?: string | undefined;
|
|
@@ -1380,6 +1533,13 @@ declare const securityObjects: ((Omit<{
|
|
|
1380
1533
|
readonly referenceFilters?: string[] | undefined;
|
|
1381
1534
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1382
1535
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1536
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1537
|
+
readonly inlineTitle?: string | undefined;
|
|
1538
|
+
readonly inlineColumns?: any[] | undefined;
|
|
1539
|
+
readonly inlineAmountField?: string | undefined;
|
|
1540
|
+
readonly relatedList?: boolean | undefined;
|
|
1541
|
+
readonly relatedListTitle?: string | undefined;
|
|
1542
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
1383
1543
|
readonly expression?: {
|
|
1384
1544
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1385
1545
|
source?: string | undefined;
|
|
@@ -1393,6 +1553,7 @@ declare const securityObjects: ((Omit<{
|
|
|
1393
1553
|
object: string;
|
|
1394
1554
|
field: string;
|
|
1395
1555
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1556
|
+
relationshipField?: string | undefined;
|
|
1396
1557
|
} | undefined;
|
|
1397
1558
|
readonly language?: string | undefined;
|
|
1398
1559
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -1487,6 +1648,33 @@ declare const securityObjects: ((Omit<{
|
|
|
1487
1648
|
threshold: number;
|
|
1488
1649
|
} | undefined;
|
|
1489
1650
|
} | undefined;
|
|
1651
|
+
readonly visibleWhen?: {
|
|
1652
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1653
|
+
source?: string | undefined;
|
|
1654
|
+
ast?: unknown;
|
|
1655
|
+
meta?: {
|
|
1656
|
+
rationale?: string | undefined;
|
|
1657
|
+
generatedBy?: string | undefined;
|
|
1658
|
+
} | undefined;
|
|
1659
|
+
} | undefined;
|
|
1660
|
+
readonly readonlyWhen?: {
|
|
1661
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1662
|
+
source?: string | undefined;
|
|
1663
|
+
ast?: unknown;
|
|
1664
|
+
meta?: {
|
|
1665
|
+
rationale?: string | undefined;
|
|
1666
|
+
generatedBy?: string | undefined;
|
|
1667
|
+
} | undefined;
|
|
1668
|
+
} | undefined;
|
|
1669
|
+
readonly requiredWhen?: {
|
|
1670
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1671
|
+
source?: string | undefined;
|
|
1672
|
+
ast?: unknown;
|
|
1673
|
+
meta?: {
|
|
1674
|
+
rationale?: string | undefined;
|
|
1675
|
+
generatedBy?: string | undefined;
|
|
1676
|
+
} | undefined;
|
|
1677
|
+
} | undefined;
|
|
1490
1678
|
readonly conditionalRequired?: {
|
|
1491
1679
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1492
1680
|
source?: string | undefined;
|
|
@@ -1555,6 +1743,13 @@ declare const securityObjects: ((Omit<{
|
|
|
1555
1743
|
readonly referenceFilters?: string[] | undefined;
|
|
1556
1744
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1557
1745
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1746
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1747
|
+
readonly inlineTitle?: string | undefined;
|
|
1748
|
+
readonly inlineColumns?: any[] | undefined;
|
|
1749
|
+
readonly inlineAmountField?: string | undefined;
|
|
1750
|
+
readonly relatedList?: boolean | undefined;
|
|
1751
|
+
readonly relatedListTitle?: string | undefined;
|
|
1752
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
1558
1753
|
readonly expression?: {
|
|
1559
1754
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1560
1755
|
source?: string | undefined;
|
|
@@ -1568,6 +1763,7 @@ declare const securityObjects: ((Omit<{
|
|
|
1568
1763
|
object: string;
|
|
1569
1764
|
field: string;
|
|
1570
1765
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1766
|
+
relationshipField?: string | undefined;
|
|
1571
1767
|
} | undefined;
|
|
1572
1768
|
readonly language?: string | undefined;
|
|
1573
1769
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -1662,6 +1858,33 @@ declare const securityObjects: ((Omit<{
|
|
|
1662
1858
|
threshold: number;
|
|
1663
1859
|
} | undefined;
|
|
1664
1860
|
} | undefined;
|
|
1861
|
+
readonly visibleWhen?: {
|
|
1862
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1863
|
+
source?: string | undefined;
|
|
1864
|
+
ast?: unknown;
|
|
1865
|
+
meta?: {
|
|
1866
|
+
rationale?: string | undefined;
|
|
1867
|
+
generatedBy?: string | undefined;
|
|
1868
|
+
} | undefined;
|
|
1869
|
+
} | undefined;
|
|
1870
|
+
readonly readonlyWhen?: {
|
|
1871
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1872
|
+
source?: string | undefined;
|
|
1873
|
+
ast?: unknown;
|
|
1874
|
+
meta?: {
|
|
1875
|
+
rationale?: string | undefined;
|
|
1876
|
+
generatedBy?: string | undefined;
|
|
1877
|
+
} | undefined;
|
|
1878
|
+
} | undefined;
|
|
1879
|
+
readonly requiredWhen?: {
|
|
1880
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
1881
|
+
source?: string | undefined;
|
|
1882
|
+
ast?: unknown;
|
|
1883
|
+
meta?: {
|
|
1884
|
+
rationale?: string | undefined;
|
|
1885
|
+
generatedBy?: string | undefined;
|
|
1886
|
+
} | undefined;
|
|
1887
|
+
} | undefined;
|
|
1665
1888
|
readonly conditionalRequired?: {
|
|
1666
1889
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1667
1890
|
source?: string | undefined;
|
|
@@ -1730,6 +1953,13 @@ declare const securityObjects: ((Omit<{
|
|
|
1730
1953
|
readonly referenceFilters?: string[] | undefined;
|
|
1731
1954
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1732
1955
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1956
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1957
|
+
readonly inlineTitle?: string | undefined;
|
|
1958
|
+
readonly inlineColumns?: any[] | undefined;
|
|
1959
|
+
readonly inlineAmountField?: string | undefined;
|
|
1960
|
+
readonly relatedList?: boolean | undefined;
|
|
1961
|
+
readonly relatedListTitle?: string | undefined;
|
|
1962
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
1733
1963
|
readonly expression?: {
|
|
1734
1964
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1735
1965
|
source?: string | undefined;
|
|
@@ -1743,6 +1973,7 @@ declare const securityObjects: ((Omit<{
|
|
|
1743
1973
|
object: string;
|
|
1744
1974
|
field: string;
|
|
1745
1975
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1976
|
+
relationshipField?: string | undefined;
|
|
1746
1977
|
} | undefined;
|
|
1747
1978
|
readonly language?: string | undefined;
|
|
1748
1979
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -1837,6 +2068,33 @@ declare const securityObjects: ((Omit<{
|
|
|
1837
2068
|
threshold: number;
|
|
1838
2069
|
} | undefined;
|
|
1839
2070
|
} | undefined;
|
|
2071
|
+
readonly visibleWhen?: {
|
|
2072
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2073
|
+
source?: string | undefined;
|
|
2074
|
+
ast?: unknown;
|
|
2075
|
+
meta?: {
|
|
2076
|
+
rationale?: string | undefined;
|
|
2077
|
+
generatedBy?: string | undefined;
|
|
2078
|
+
} | undefined;
|
|
2079
|
+
} | undefined;
|
|
2080
|
+
readonly readonlyWhen?: {
|
|
2081
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2082
|
+
source?: string | undefined;
|
|
2083
|
+
ast?: unknown;
|
|
2084
|
+
meta?: {
|
|
2085
|
+
rationale?: string | undefined;
|
|
2086
|
+
generatedBy?: string | undefined;
|
|
2087
|
+
} | undefined;
|
|
2088
|
+
} | undefined;
|
|
2089
|
+
readonly requiredWhen?: {
|
|
2090
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2091
|
+
source?: string | undefined;
|
|
2092
|
+
ast?: unknown;
|
|
2093
|
+
meta?: {
|
|
2094
|
+
rationale?: string | undefined;
|
|
2095
|
+
generatedBy?: string | undefined;
|
|
2096
|
+
} | undefined;
|
|
2097
|
+
} | undefined;
|
|
1840
2098
|
readonly conditionalRequired?: {
|
|
1841
2099
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1842
2100
|
source?: string | undefined;
|
|
@@ -1905,6 +2163,13 @@ declare const securityObjects: ((Omit<{
|
|
|
1905
2163
|
readonly referenceFilters?: string[] | undefined;
|
|
1906
2164
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1907
2165
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2166
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2167
|
+
readonly inlineTitle?: string | undefined;
|
|
2168
|
+
readonly inlineColumns?: any[] | undefined;
|
|
2169
|
+
readonly inlineAmountField?: string | undefined;
|
|
2170
|
+
readonly relatedList?: boolean | undefined;
|
|
2171
|
+
readonly relatedListTitle?: string | undefined;
|
|
2172
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
1908
2173
|
readonly expression?: {
|
|
1909
2174
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1910
2175
|
source?: string | undefined;
|
|
@@ -1918,6 +2183,7 @@ declare const securityObjects: ((Omit<{
|
|
|
1918
2183
|
object: string;
|
|
1919
2184
|
field: string;
|
|
1920
2185
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2186
|
+
relationshipField?: string | undefined;
|
|
1921
2187
|
} | undefined;
|
|
1922
2188
|
readonly language?: string | undefined;
|
|
1923
2189
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -2012,6 +2278,33 @@ declare const securityObjects: ((Omit<{
|
|
|
2012
2278
|
threshold: number;
|
|
2013
2279
|
} | undefined;
|
|
2014
2280
|
} | undefined;
|
|
2281
|
+
readonly visibleWhen?: {
|
|
2282
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2283
|
+
source?: string | undefined;
|
|
2284
|
+
ast?: unknown;
|
|
2285
|
+
meta?: {
|
|
2286
|
+
rationale?: string | undefined;
|
|
2287
|
+
generatedBy?: string | undefined;
|
|
2288
|
+
} | undefined;
|
|
2289
|
+
} | undefined;
|
|
2290
|
+
readonly readonlyWhen?: {
|
|
2291
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2292
|
+
source?: string | undefined;
|
|
2293
|
+
ast?: unknown;
|
|
2294
|
+
meta?: {
|
|
2295
|
+
rationale?: string | undefined;
|
|
2296
|
+
generatedBy?: string | undefined;
|
|
2297
|
+
} | undefined;
|
|
2298
|
+
} | undefined;
|
|
2299
|
+
readonly requiredWhen?: {
|
|
2300
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2301
|
+
source?: string | undefined;
|
|
2302
|
+
ast?: unknown;
|
|
2303
|
+
meta?: {
|
|
2304
|
+
rationale?: string | undefined;
|
|
2305
|
+
generatedBy?: string | undefined;
|
|
2306
|
+
} | undefined;
|
|
2307
|
+
} | undefined;
|
|
2015
2308
|
readonly conditionalRequired?: {
|
|
2016
2309
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2017
2310
|
source?: string | undefined;
|
|
@@ -2080,6 +2373,13 @@ declare const securityObjects: ((Omit<{
|
|
|
2080
2373
|
readonly referenceFilters?: string[] | undefined;
|
|
2081
2374
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2082
2375
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2376
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2377
|
+
readonly inlineTitle?: string | undefined;
|
|
2378
|
+
readonly inlineColumns?: any[] | undefined;
|
|
2379
|
+
readonly inlineAmountField?: string | undefined;
|
|
2380
|
+
readonly relatedList?: boolean | undefined;
|
|
2381
|
+
readonly relatedListTitle?: string | undefined;
|
|
2382
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
2083
2383
|
readonly expression?: {
|
|
2084
2384
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2085
2385
|
source?: string | undefined;
|
|
@@ -2093,6 +2393,7 @@ declare const securityObjects: ((Omit<{
|
|
|
2093
2393
|
object: string;
|
|
2094
2394
|
field: string;
|
|
2095
2395
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2396
|
+
relationshipField?: string | undefined;
|
|
2096
2397
|
} | undefined;
|
|
2097
2398
|
readonly language?: string | undefined;
|
|
2098
2399
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -2187,6 +2488,33 @@ declare const securityObjects: ((Omit<{
|
|
|
2187
2488
|
threshold: number;
|
|
2188
2489
|
} | undefined;
|
|
2189
2490
|
} | undefined;
|
|
2491
|
+
readonly visibleWhen?: {
|
|
2492
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2493
|
+
source?: string | undefined;
|
|
2494
|
+
ast?: unknown;
|
|
2495
|
+
meta?: {
|
|
2496
|
+
rationale?: string | undefined;
|
|
2497
|
+
generatedBy?: string | undefined;
|
|
2498
|
+
} | undefined;
|
|
2499
|
+
} | undefined;
|
|
2500
|
+
readonly readonlyWhen?: {
|
|
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;
|
|
2509
|
+
readonly requiredWhen?: {
|
|
2510
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2511
|
+
source?: string | undefined;
|
|
2512
|
+
ast?: unknown;
|
|
2513
|
+
meta?: {
|
|
2514
|
+
rationale?: string | undefined;
|
|
2515
|
+
generatedBy?: string | undefined;
|
|
2516
|
+
} | undefined;
|
|
2517
|
+
} | undefined;
|
|
2190
2518
|
readonly conditionalRequired?: {
|
|
2191
2519
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2192
2520
|
source?: string | undefined;
|
|
@@ -2255,6 +2583,13 @@ declare const securityObjects: ((Omit<{
|
|
|
2255
2583
|
readonly referenceFilters?: string[] | undefined;
|
|
2256
2584
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2257
2585
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2586
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2587
|
+
readonly inlineTitle?: string | undefined;
|
|
2588
|
+
readonly inlineColumns?: any[] | undefined;
|
|
2589
|
+
readonly inlineAmountField?: string | undefined;
|
|
2590
|
+
readonly relatedList?: boolean | undefined;
|
|
2591
|
+
readonly relatedListTitle?: string | undefined;
|
|
2592
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
2258
2593
|
readonly expression?: {
|
|
2259
2594
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2260
2595
|
source?: string | undefined;
|
|
@@ -2268,6 +2603,7 @@ declare const securityObjects: ((Omit<{
|
|
|
2268
2603
|
object: string;
|
|
2269
2604
|
field: string;
|
|
2270
2605
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2606
|
+
relationshipField?: string | undefined;
|
|
2271
2607
|
} | undefined;
|
|
2272
2608
|
readonly language?: string | undefined;
|
|
2273
2609
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -2362,6 +2698,33 @@ declare const securityObjects: ((Omit<{
|
|
|
2362
2698
|
threshold: number;
|
|
2363
2699
|
} | undefined;
|
|
2364
2700
|
} | undefined;
|
|
2701
|
+
readonly visibleWhen?: {
|
|
2702
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2703
|
+
source?: string | undefined;
|
|
2704
|
+
ast?: unknown;
|
|
2705
|
+
meta?: {
|
|
2706
|
+
rationale?: string | undefined;
|
|
2707
|
+
generatedBy?: string | undefined;
|
|
2708
|
+
} | undefined;
|
|
2709
|
+
} | undefined;
|
|
2710
|
+
readonly readonlyWhen?: {
|
|
2711
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2712
|
+
source?: string | undefined;
|
|
2713
|
+
ast?: unknown;
|
|
2714
|
+
meta?: {
|
|
2715
|
+
rationale?: string | undefined;
|
|
2716
|
+
generatedBy?: string | undefined;
|
|
2717
|
+
} | undefined;
|
|
2718
|
+
} | undefined;
|
|
2719
|
+
readonly requiredWhen?: {
|
|
2720
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2721
|
+
source?: string | undefined;
|
|
2722
|
+
ast?: unknown;
|
|
2723
|
+
meta?: {
|
|
2724
|
+
rationale?: string | undefined;
|
|
2725
|
+
generatedBy?: string | undefined;
|
|
2726
|
+
} | undefined;
|
|
2727
|
+
} | undefined;
|
|
2365
2728
|
readonly conditionalRequired?: {
|
|
2366
2729
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2367
2730
|
source?: string | undefined;
|
|
@@ -2430,6 +2793,13 @@ declare const securityObjects: ((Omit<{
|
|
|
2430
2793
|
readonly referenceFilters?: string[] | undefined;
|
|
2431
2794
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2432
2795
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2796
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2797
|
+
readonly inlineTitle?: string | undefined;
|
|
2798
|
+
readonly inlineColumns?: any[] | undefined;
|
|
2799
|
+
readonly inlineAmountField?: string | undefined;
|
|
2800
|
+
readonly relatedList?: boolean | undefined;
|
|
2801
|
+
readonly relatedListTitle?: string | undefined;
|
|
2802
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
2433
2803
|
readonly expression?: {
|
|
2434
2804
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2435
2805
|
source?: string | undefined;
|
|
@@ -2443,6 +2813,7 @@ declare const securityObjects: ((Omit<{
|
|
|
2443
2813
|
object: string;
|
|
2444
2814
|
field: string;
|
|
2445
2815
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2816
|
+
relationshipField?: string | undefined;
|
|
2446
2817
|
} | undefined;
|
|
2447
2818
|
readonly language?: string | undefined;
|
|
2448
2819
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -2537,6 +2908,33 @@ declare const securityObjects: ((Omit<{
|
|
|
2537
2908
|
threshold: number;
|
|
2538
2909
|
} | undefined;
|
|
2539
2910
|
} | undefined;
|
|
2911
|
+
readonly visibleWhen?: {
|
|
2912
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2913
|
+
source?: string | undefined;
|
|
2914
|
+
ast?: unknown;
|
|
2915
|
+
meta?: {
|
|
2916
|
+
rationale?: string | undefined;
|
|
2917
|
+
generatedBy?: string | undefined;
|
|
2918
|
+
} | undefined;
|
|
2919
|
+
} | undefined;
|
|
2920
|
+
readonly readonlyWhen?: {
|
|
2921
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2922
|
+
source?: string | undefined;
|
|
2923
|
+
ast?: unknown;
|
|
2924
|
+
meta?: {
|
|
2925
|
+
rationale?: string | undefined;
|
|
2926
|
+
generatedBy?: string | undefined;
|
|
2927
|
+
} | undefined;
|
|
2928
|
+
} | undefined;
|
|
2929
|
+
readonly requiredWhen?: {
|
|
2930
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
2931
|
+
source?: string | undefined;
|
|
2932
|
+
ast?: unknown;
|
|
2933
|
+
meta?: {
|
|
2934
|
+
rationale?: string | undefined;
|
|
2935
|
+
generatedBy?: string | undefined;
|
|
2936
|
+
} | undefined;
|
|
2937
|
+
} | undefined;
|
|
2540
2938
|
readonly conditionalRequired?: {
|
|
2541
2939
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2542
2940
|
source?: string | undefined;
|
|
@@ -2605,6 +3003,13 @@ declare const securityObjects: ((Omit<{
|
|
|
2605
3003
|
readonly referenceFilters?: string[] | undefined;
|
|
2606
3004
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2607
3005
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3006
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
3007
|
+
readonly inlineTitle?: string | undefined;
|
|
3008
|
+
readonly inlineColumns?: any[] | undefined;
|
|
3009
|
+
readonly inlineAmountField?: string | undefined;
|
|
3010
|
+
readonly relatedList?: boolean | undefined;
|
|
3011
|
+
readonly relatedListTitle?: string | undefined;
|
|
3012
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
2608
3013
|
readonly expression?: {
|
|
2609
3014
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2610
3015
|
source?: string | undefined;
|
|
@@ -2618,6 +3023,7 @@ declare const securityObjects: ((Omit<{
|
|
|
2618
3023
|
object: string;
|
|
2619
3024
|
field: string;
|
|
2620
3025
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
3026
|
+
relationshipField?: string | undefined;
|
|
2621
3027
|
} | undefined;
|
|
2622
3028
|
readonly language?: string | undefined;
|
|
2623
3029
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -2712,7 +3118,7 @@ declare const securityObjects: ((Omit<{
|
|
|
2712
3118
|
threshold: number;
|
|
2713
3119
|
} | undefined;
|
|
2714
3120
|
} | undefined;
|
|
2715
|
-
readonly
|
|
3121
|
+
readonly visibleWhen?: {
|
|
2716
3122
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2717
3123
|
source?: string | undefined;
|
|
2718
3124
|
ast?: unknown;
|
|
@@ -2721,9 +3127,36 @@ declare const securityObjects: ((Omit<{
|
|
|
2721
3127
|
generatedBy?: string | undefined;
|
|
2722
3128
|
} | undefined;
|
|
2723
3129
|
} | undefined;
|
|
2724
|
-
readonly
|
|
2725
|
-
|
|
2726
|
-
|
|
3130
|
+
readonly readonlyWhen?: {
|
|
3131
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3132
|
+
source?: string | undefined;
|
|
3133
|
+
ast?: unknown;
|
|
3134
|
+
meta?: {
|
|
3135
|
+
rationale?: string | undefined;
|
|
3136
|
+
generatedBy?: string | undefined;
|
|
3137
|
+
} | undefined;
|
|
3138
|
+
} | undefined;
|
|
3139
|
+
readonly requiredWhen?: {
|
|
3140
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3141
|
+
source?: string | undefined;
|
|
3142
|
+
ast?: unknown;
|
|
3143
|
+
meta?: {
|
|
3144
|
+
rationale?: string | undefined;
|
|
3145
|
+
generatedBy?: string | undefined;
|
|
3146
|
+
} | undefined;
|
|
3147
|
+
} | undefined;
|
|
3148
|
+
readonly conditionalRequired?: {
|
|
3149
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3150
|
+
source?: string | undefined;
|
|
3151
|
+
ast?: unknown;
|
|
3152
|
+
meta?: {
|
|
3153
|
+
rationale?: string | undefined;
|
|
3154
|
+
generatedBy?: string | undefined;
|
|
3155
|
+
} | undefined;
|
|
3156
|
+
} | undefined;
|
|
3157
|
+
readonly sortable?: boolean | undefined;
|
|
3158
|
+
readonly inlineHelpText?: string | undefined;
|
|
3159
|
+
readonly trackFeedHistory?: boolean | undefined;
|
|
2727
3160
|
readonly caseSensitive?: boolean | undefined;
|
|
2728
3161
|
readonly autonumberFormat?: string | undefined;
|
|
2729
3162
|
readonly index?: boolean | undefined;
|
|
@@ -2784,6 +3217,13 @@ declare const securityObjects: ((Omit<{
|
|
|
2784
3217
|
reference?: string | undefined;
|
|
2785
3218
|
referenceFilters?: string[] | undefined;
|
|
2786
3219
|
writeRequiresMasterRead?: boolean | undefined;
|
|
3220
|
+
inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
3221
|
+
inlineTitle?: string | undefined;
|
|
3222
|
+
inlineColumns?: any[] | undefined;
|
|
3223
|
+
inlineAmountField?: string | undefined;
|
|
3224
|
+
relatedList?: boolean | undefined;
|
|
3225
|
+
relatedListTitle?: string | undefined;
|
|
3226
|
+
relatedListColumns?: any[] | undefined;
|
|
2787
3227
|
expression?: {
|
|
2788
3228
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2789
3229
|
source?: string | undefined;
|
|
@@ -2805,6 +3245,7 @@ declare const securityObjects: ((Omit<{
|
|
|
2805
3245
|
object: string;
|
|
2806
3246
|
field: string;
|
|
2807
3247
|
function: "count" | "min" | "max" | "sum" | "avg";
|
|
3248
|
+
relationshipField?: string | undefined;
|
|
2808
3249
|
} | undefined;
|
|
2809
3250
|
language?: string | undefined;
|
|
2810
3251
|
theme?: string | undefined;
|
|
@@ -2918,6 +3359,57 @@ declare const securityObjects: ((Omit<{
|
|
|
2918
3359
|
} | undefined;
|
|
2919
3360
|
} | undefined;
|
|
2920
3361
|
group?: string | undefined;
|
|
3362
|
+
visibleWhen?: {
|
|
3363
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3364
|
+
source?: string | undefined;
|
|
3365
|
+
ast?: unknown;
|
|
3366
|
+
meta?: {
|
|
3367
|
+
rationale?: string | undefined;
|
|
3368
|
+
generatedBy?: string | undefined;
|
|
3369
|
+
} | undefined;
|
|
3370
|
+
} | {
|
|
3371
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3372
|
+
source?: string | undefined;
|
|
3373
|
+
ast?: unknown;
|
|
3374
|
+
meta?: {
|
|
3375
|
+
rationale?: string | undefined;
|
|
3376
|
+
generatedBy?: string | undefined;
|
|
3377
|
+
} | undefined;
|
|
3378
|
+
} | undefined;
|
|
3379
|
+
readonlyWhen?: {
|
|
3380
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3381
|
+
source?: string | undefined;
|
|
3382
|
+
ast?: unknown;
|
|
3383
|
+
meta?: {
|
|
3384
|
+
rationale?: string | undefined;
|
|
3385
|
+
generatedBy?: string | undefined;
|
|
3386
|
+
} | undefined;
|
|
3387
|
+
} | {
|
|
3388
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3389
|
+
source?: string | undefined;
|
|
3390
|
+
ast?: unknown;
|
|
3391
|
+
meta?: {
|
|
3392
|
+
rationale?: string | undefined;
|
|
3393
|
+
generatedBy?: string | undefined;
|
|
3394
|
+
} | undefined;
|
|
3395
|
+
} | undefined;
|
|
3396
|
+
requiredWhen?: {
|
|
3397
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3398
|
+
source?: string | undefined;
|
|
3399
|
+
ast?: unknown;
|
|
3400
|
+
meta?: {
|
|
3401
|
+
rationale?: string | undefined;
|
|
3402
|
+
generatedBy?: string | undefined;
|
|
3403
|
+
} | undefined;
|
|
3404
|
+
} | {
|
|
3405
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3406
|
+
source?: string | undefined;
|
|
3407
|
+
ast?: unknown;
|
|
3408
|
+
meta?: {
|
|
3409
|
+
rationale?: string | undefined;
|
|
3410
|
+
generatedBy?: string | undefined;
|
|
3411
|
+
} | undefined;
|
|
3412
|
+
} | undefined;
|
|
2921
3413
|
conditionalRequired?: {
|
|
2922
3414
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2923
3415
|
source?: string | undefined;
|
|
@@ -3059,7 +3551,7 @@ declare const securityObjects: ((Omit<{
|
|
|
3059
3551
|
} | undefined;
|
|
3060
3552
|
compactLayout?: string[] | undefined;
|
|
3061
3553
|
listViews?: Record<string, {
|
|
3062
|
-
type: "map" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart"
|
|
3554
|
+
type: "map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart";
|
|
3063
3555
|
columns: string[] | {
|
|
3064
3556
|
field: string;
|
|
3065
3557
|
label?: string | undefined;
|
|
@@ -3228,7 +3720,7 @@ declare const securityObjects: ((Omit<{
|
|
|
3228
3720
|
} | undefined;
|
|
3229
3721
|
appearance?: {
|
|
3230
3722
|
showDescription: boolean;
|
|
3231
|
-
allowedVisualizations?: ("map" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline"
|
|
3723
|
+
allowedVisualizations?: ("map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline")[] | undefined;
|
|
3232
3724
|
} | undefined;
|
|
3233
3725
|
tabs?: {
|
|
3234
3726
|
name: string;
|
|
@@ -3248,7 +3740,7 @@ declare const securityObjects: ((Omit<{
|
|
|
3248
3740
|
addRecord?: {
|
|
3249
3741
|
enabled: boolean;
|
|
3250
3742
|
position: "top" | "bottom" | "both";
|
|
3251
|
-
mode: "
|
|
3743
|
+
mode: "form" | "modal" | "inline";
|
|
3252
3744
|
formView?: string | undefined;
|
|
3253
3745
|
} | undefined;
|
|
3254
3746
|
showRecordCount?: boolean | undefined;
|
|
@@ -3334,7 +3826,7 @@ declare const securityObjects: ((Omit<{
|
|
|
3334
3826
|
actions?: {
|
|
3335
3827
|
name: string;
|
|
3336
3828
|
label: string;
|
|
3337
|
-
type: "url" | "
|
|
3829
|
+
type: "url" | "form" | "flow" | "api" | "script" | "modal";
|
|
3338
3830
|
refreshAfter: boolean;
|
|
3339
3831
|
objectName?: string | undefined;
|
|
3340
3832
|
icon?: string | undefined;
|
|
@@ -3402,7 +3894,18 @@ declare const securityObjects: ((Omit<{
|
|
|
3402
3894
|
} | undefined;
|
|
3403
3895
|
shortcut?: string | undefined;
|
|
3404
3896
|
bulkEnabled?: boolean | undefined;
|
|
3405
|
-
|
|
3897
|
+
ai?: {
|
|
3898
|
+
exposed: boolean;
|
|
3899
|
+
description?: string | undefined;
|
|
3900
|
+
category?: "action" | "data" | "flow" | "integration" | "vector_search" | "analytics" | "utility" | undefined;
|
|
3901
|
+
paramHints?: Record<string, {
|
|
3902
|
+
description?: string | undefined;
|
|
3903
|
+
enum?: (string | number)[] | undefined;
|
|
3904
|
+
examples?: unknown[] | undefined;
|
|
3905
|
+
}> | undefined;
|
|
3906
|
+
outputSchema?: Record<string, unknown> | undefined;
|
|
3907
|
+
requiresConfirmation?: boolean | undefined;
|
|
3908
|
+
} | undefined;
|
|
3406
3909
|
recordIdParam?: string | undefined;
|
|
3407
3910
|
recordIdField?: string | undefined;
|
|
3408
3911
|
bodyShape?: "flat" | {
|
|
@@ -3622,6 +4125,13 @@ declare const securityObjects: ((Omit<{
|
|
|
3622
4125
|
readonly referenceFilters?: string[] | undefined;
|
|
3623
4126
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
3624
4127
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4128
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
4129
|
+
readonly inlineTitle?: string | undefined;
|
|
4130
|
+
readonly inlineColumns?: any[] | undefined;
|
|
4131
|
+
readonly inlineAmountField?: string | undefined;
|
|
4132
|
+
readonly relatedList?: boolean | undefined;
|
|
4133
|
+
readonly relatedListTitle?: string | undefined;
|
|
4134
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
3625
4135
|
readonly expression?: {
|
|
3626
4136
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3627
4137
|
source?: string | undefined;
|
|
@@ -3635,6 +4145,7 @@ declare const securityObjects: ((Omit<{
|
|
|
3635
4145
|
object: string;
|
|
3636
4146
|
field: string;
|
|
3637
4147
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
4148
|
+
relationshipField?: string | undefined;
|
|
3638
4149
|
} | undefined;
|
|
3639
4150
|
readonly language?: string | undefined;
|
|
3640
4151
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -3729,6 +4240,33 @@ declare const securityObjects: ((Omit<{
|
|
|
3729
4240
|
threshold: number;
|
|
3730
4241
|
} | undefined;
|
|
3731
4242
|
} | undefined;
|
|
4243
|
+
readonly visibleWhen?: {
|
|
4244
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4245
|
+
source?: string | undefined;
|
|
4246
|
+
ast?: unknown;
|
|
4247
|
+
meta?: {
|
|
4248
|
+
rationale?: string | undefined;
|
|
4249
|
+
generatedBy?: string | undefined;
|
|
4250
|
+
} | undefined;
|
|
4251
|
+
} | undefined;
|
|
4252
|
+
readonly readonlyWhen?: {
|
|
4253
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4254
|
+
source?: string | undefined;
|
|
4255
|
+
ast?: unknown;
|
|
4256
|
+
meta?: {
|
|
4257
|
+
rationale?: string | undefined;
|
|
4258
|
+
generatedBy?: string | undefined;
|
|
4259
|
+
} | undefined;
|
|
4260
|
+
} | undefined;
|
|
4261
|
+
readonly requiredWhen?: {
|
|
4262
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4263
|
+
source?: string | undefined;
|
|
4264
|
+
ast?: unknown;
|
|
4265
|
+
meta?: {
|
|
4266
|
+
rationale?: string | undefined;
|
|
4267
|
+
generatedBy?: string | undefined;
|
|
4268
|
+
} | undefined;
|
|
4269
|
+
} | undefined;
|
|
3732
4270
|
readonly conditionalRequired?: {
|
|
3733
4271
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3734
4272
|
source?: string | undefined;
|
|
@@ -3797,6 +4335,13 @@ declare const securityObjects: ((Omit<{
|
|
|
3797
4335
|
readonly referenceFilters?: string[] | undefined;
|
|
3798
4336
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
3799
4337
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4338
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
4339
|
+
readonly inlineTitle?: string | undefined;
|
|
4340
|
+
readonly inlineColumns?: any[] | undefined;
|
|
4341
|
+
readonly inlineAmountField?: string | undefined;
|
|
4342
|
+
readonly relatedList?: boolean | undefined;
|
|
4343
|
+
readonly relatedListTitle?: string | undefined;
|
|
4344
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
3800
4345
|
readonly expression?: {
|
|
3801
4346
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3802
4347
|
source?: string | undefined;
|
|
@@ -3810,6 +4355,7 @@ declare const securityObjects: ((Omit<{
|
|
|
3810
4355
|
object: string;
|
|
3811
4356
|
field: string;
|
|
3812
4357
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
4358
|
+
relationshipField?: string | undefined;
|
|
3813
4359
|
} | undefined;
|
|
3814
4360
|
readonly language?: string | undefined;
|
|
3815
4361
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -3904,6 +4450,33 @@ declare const securityObjects: ((Omit<{
|
|
|
3904
4450
|
threshold: number;
|
|
3905
4451
|
} | undefined;
|
|
3906
4452
|
} | undefined;
|
|
4453
|
+
readonly visibleWhen?: {
|
|
4454
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4455
|
+
source?: string | undefined;
|
|
4456
|
+
ast?: unknown;
|
|
4457
|
+
meta?: {
|
|
4458
|
+
rationale?: string | undefined;
|
|
4459
|
+
generatedBy?: string | undefined;
|
|
4460
|
+
} | undefined;
|
|
4461
|
+
} | undefined;
|
|
4462
|
+
readonly readonlyWhen?: {
|
|
4463
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4464
|
+
source?: string | undefined;
|
|
4465
|
+
ast?: unknown;
|
|
4466
|
+
meta?: {
|
|
4467
|
+
rationale?: string | undefined;
|
|
4468
|
+
generatedBy?: string | undefined;
|
|
4469
|
+
} | undefined;
|
|
4470
|
+
} | undefined;
|
|
4471
|
+
readonly requiredWhen?: {
|
|
4472
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4473
|
+
source?: string | undefined;
|
|
4474
|
+
ast?: unknown;
|
|
4475
|
+
meta?: {
|
|
4476
|
+
rationale?: string | undefined;
|
|
4477
|
+
generatedBy?: string | undefined;
|
|
4478
|
+
} | undefined;
|
|
4479
|
+
} | undefined;
|
|
3907
4480
|
readonly conditionalRequired?: {
|
|
3908
4481
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3909
4482
|
source?: string | undefined;
|
|
@@ -3972,6 +4545,13 @@ declare const securityObjects: ((Omit<{
|
|
|
3972
4545
|
readonly referenceFilters?: string[] | undefined;
|
|
3973
4546
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
3974
4547
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4548
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
4549
|
+
readonly inlineTitle?: string | undefined;
|
|
4550
|
+
readonly inlineColumns?: any[] | undefined;
|
|
4551
|
+
readonly inlineAmountField?: string | undefined;
|
|
4552
|
+
readonly relatedList?: boolean | undefined;
|
|
4553
|
+
readonly relatedListTitle?: string | undefined;
|
|
4554
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
3975
4555
|
readonly expression?: {
|
|
3976
4556
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3977
4557
|
source?: string | undefined;
|
|
@@ -3985,6 +4565,7 @@ declare const securityObjects: ((Omit<{
|
|
|
3985
4565
|
object: string;
|
|
3986
4566
|
field: string;
|
|
3987
4567
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
4568
|
+
relationshipField?: string | undefined;
|
|
3988
4569
|
} | undefined;
|
|
3989
4570
|
readonly language?: string | undefined;
|
|
3990
4571
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -4079,6 +4660,33 @@ declare const securityObjects: ((Omit<{
|
|
|
4079
4660
|
threshold: number;
|
|
4080
4661
|
} | undefined;
|
|
4081
4662
|
} | undefined;
|
|
4663
|
+
readonly visibleWhen?: {
|
|
4664
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4665
|
+
source?: string | undefined;
|
|
4666
|
+
ast?: unknown;
|
|
4667
|
+
meta?: {
|
|
4668
|
+
rationale?: string | undefined;
|
|
4669
|
+
generatedBy?: string | undefined;
|
|
4670
|
+
} | undefined;
|
|
4671
|
+
} | undefined;
|
|
4672
|
+
readonly readonlyWhen?: {
|
|
4673
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4674
|
+
source?: string | undefined;
|
|
4675
|
+
ast?: unknown;
|
|
4676
|
+
meta?: {
|
|
4677
|
+
rationale?: string | undefined;
|
|
4678
|
+
generatedBy?: string | undefined;
|
|
4679
|
+
} | undefined;
|
|
4680
|
+
} | undefined;
|
|
4681
|
+
readonly requiredWhen?: {
|
|
4682
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4683
|
+
source?: string | undefined;
|
|
4684
|
+
ast?: unknown;
|
|
4685
|
+
meta?: {
|
|
4686
|
+
rationale?: string | undefined;
|
|
4687
|
+
generatedBy?: string | undefined;
|
|
4688
|
+
} | undefined;
|
|
4689
|
+
} | undefined;
|
|
4082
4690
|
readonly conditionalRequired?: {
|
|
4083
4691
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4084
4692
|
source?: string | undefined;
|
|
@@ -4147,6 +4755,13 @@ declare const securityObjects: ((Omit<{
|
|
|
4147
4755
|
readonly referenceFilters?: string[] | undefined;
|
|
4148
4756
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
4149
4757
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4758
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
4759
|
+
readonly inlineTitle?: string | undefined;
|
|
4760
|
+
readonly inlineColumns?: any[] | undefined;
|
|
4761
|
+
readonly inlineAmountField?: string | undefined;
|
|
4762
|
+
readonly relatedList?: boolean | undefined;
|
|
4763
|
+
readonly relatedListTitle?: string | undefined;
|
|
4764
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
4150
4765
|
readonly expression?: {
|
|
4151
4766
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4152
4767
|
source?: string | undefined;
|
|
@@ -4160,6 +4775,7 @@ declare const securityObjects: ((Omit<{
|
|
|
4160
4775
|
object: string;
|
|
4161
4776
|
field: string;
|
|
4162
4777
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
4778
|
+
relationshipField?: string | undefined;
|
|
4163
4779
|
} | undefined;
|
|
4164
4780
|
readonly language?: string | undefined;
|
|
4165
4781
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -4254,6 +4870,33 @@ declare const securityObjects: ((Omit<{
|
|
|
4254
4870
|
threshold: number;
|
|
4255
4871
|
} | undefined;
|
|
4256
4872
|
} | undefined;
|
|
4873
|
+
readonly visibleWhen?: {
|
|
4874
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4875
|
+
source?: string | undefined;
|
|
4876
|
+
ast?: unknown;
|
|
4877
|
+
meta?: {
|
|
4878
|
+
rationale?: string | undefined;
|
|
4879
|
+
generatedBy?: string | undefined;
|
|
4880
|
+
} | undefined;
|
|
4881
|
+
} | undefined;
|
|
4882
|
+
readonly readonlyWhen?: {
|
|
4883
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4884
|
+
source?: string | undefined;
|
|
4885
|
+
ast?: unknown;
|
|
4886
|
+
meta?: {
|
|
4887
|
+
rationale?: string | undefined;
|
|
4888
|
+
generatedBy?: string | undefined;
|
|
4889
|
+
} | undefined;
|
|
4890
|
+
} | undefined;
|
|
4891
|
+
readonly requiredWhen?: {
|
|
4892
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
4893
|
+
source?: string | undefined;
|
|
4894
|
+
ast?: unknown;
|
|
4895
|
+
meta?: {
|
|
4896
|
+
rationale?: string | undefined;
|
|
4897
|
+
generatedBy?: string | undefined;
|
|
4898
|
+
} | undefined;
|
|
4899
|
+
} | undefined;
|
|
4257
4900
|
readonly conditionalRequired?: {
|
|
4258
4901
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4259
4902
|
source?: string | undefined;
|
|
@@ -4322,6 +4965,13 @@ declare const securityObjects: ((Omit<{
|
|
|
4322
4965
|
readonly referenceFilters?: string[] | undefined;
|
|
4323
4966
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
4324
4967
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4968
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
4969
|
+
readonly inlineTitle?: string | undefined;
|
|
4970
|
+
readonly inlineColumns?: any[] | undefined;
|
|
4971
|
+
readonly inlineAmountField?: string | undefined;
|
|
4972
|
+
readonly relatedList?: boolean | undefined;
|
|
4973
|
+
readonly relatedListTitle?: string | undefined;
|
|
4974
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
4325
4975
|
readonly expression?: {
|
|
4326
4976
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4327
4977
|
source?: string | undefined;
|
|
@@ -4335,6 +4985,7 @@ declare const securityObjects: ((Omit<{
|
|
|
4335
4985
|
object: string;
|
|
4336
4986
|
field: string;
|
|
4337
4987
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
4988
|
+
relationshipField?: string | undefined;
|
|
4338
4989
|
} | undefined;
|
|
4339
4990
|
readonly language?: string | undefined;
|
|
4340
4991
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -4429,6 +5080,33 @@ declare const securityObjects: ((Omit<{
|
|
|
4429
5080
|
threshold: number;
|
|
4430
5081
|
} | undefined;
|
|
4431
5082
|
} | undefined;
|
|
5083
|
+
readonly visibleWhen?: {
|
|
5084
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5085
|
+
source?: string | undefined;
|
|
5086
|
+
ast?: unknown;
|
|
5087
|
+
meta?: {
|
|
5088
|
+
rationale?: string | undefined;
|
|
5089
|
+
generatedBy?: string | undefined;
|
|
5090
|
+
} | undefined;
|
|
5091
|
+
} | undefined;
|
|
5092
|
+
readonly readonlyWhen?: {
|
|
5093
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5094
|
+
source?: string | undefined;
|
|
5095
|
+
ast?: unknown;
|
|
5096
|
+
meta?: {
|
|
5097
|
+
rationale?: string | undefined;
|
|
5098
|
+
generatedBy?: string | undefined;
|
|
5099
|
+
} | undefined;
|
|
5100
|
+
} | undefined;
|
|
5101
|
+
readonly requiredWhen?: {
|
|
5102
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5103
|
+
source?: string | undefined;
|
|
5104
|
+
ast?: unknown;
|
|
5105
|
+
meta?: {
|
|
5106
|
+
rationale?: string | undefined;
|
|
5107
|
+
generatedBy?: string | undefined;
|
|
5108
|
+
} | undefined;
|
|
5109
|
+
} | undefined;
|
|
4432
5110
|
readonly conditionalRequired?: {
|
|
4433
5111
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4434
5112
|
source?: string | undefined;
|
|
@@ -4497,6 +5175,13 @@ declare const securityObjects: ((Omit<{
|
|
|
4497
5175
|
readonly referenceFilters?: string[] | undefined;
|
|
4498
5176
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
4499
5177
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5178
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
5179
|
+
readonly inlineTitle?: string | undefined;
|
|
5180
|
+
readonly inlineColumns?: any[] | undefined;
|
|
5181
|
+
readonly inlineAmountField?: string | undefined;
|
|
5182
|
+
readonly relatedList?: boolean | undefined;
|
|
5183
|
+
readonly relatedListTitle?: string | undefined;
|
|
5184
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
4500
5185
|
readonly expression?: {
|
|
4501
5186
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4502
5187
|
source?: string | undefined;
|
|
@@ -4510,6 +5195,7 @@ declare const securityObjects: ((Omit<{
|
|
|
4510
5195
|
object: string;
|
|
4511
5196
|
field: string;
|
|
4512
5197
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
5198
|
+
relationshipField?: string | undefined;
|
|
4513
5199
|
} | undefined;
|
|
4514
5200
|
readonly language?: string | undefined;
|
|
4515
5201
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -4604,6 +5290,33 @@ declare const securityObjects: ((Omit<{
|
|
|
4604
5290
|
threshold: number;
|
|
4605
5291
|
} | undefined;
|
|
4606
5292
|
} | undefined;
|
|
5293
|
+
readonly visibleWhen?: {
|
|
5294
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5295
|
+
source?: string | undefined;
|
|
5296
|
+
ast?: unknown;
|
|
5297
|
+
meta?: {
|
|
5298
|
+
rationale?: string | undefined;
|
|
5299
|
+
generatedBy?: string | undefined;
|
|
5300
|
+
} | undefined;
|
|
5301
|
+
} | undefined;
|
|
5302
|
+
readonly readonlyWhen?: {
|
|
5303
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5304
|
+
source?: string | undefined;
|
|
5305
|
+
ast?: unknown;
|
|
5306
|
+
meta?: {
|
|
5307
|
+
rationale?: string | undefined;
|
|
5308
|
+
generatedBy?: string | undefined;
|
|
5309
|
+
} | undefined;
|
|
5310
|
+
} | undefined;
|
|
5311
|
+
readonly requiredWhen?: {
|
|
5312
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5313
|
+
source?: string | undefined;
|
|
5314
|
+
ast?: unknown;
|
|
5315
|
+
meta?: {
|
|
5316
|
+
rationale?: string | undefined;
|
|
5317
|
+
generatedBy?: string | undefined;
|
|
5318
|
+
} | undefined;
|
|
5319
|
+
} | undefined;
|
|
4607
5320
|
readonly conditionalRequired?: {
|
|
4608
5321
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4609
5322
|
source?: string | undefined;
|
|
@@ -4672,6 +5385,13 @@ declare const securityObjects: ((Omit<{
|
|
|
4672
5385
|
readonly referenceFilters?: string[] | undefined;
|
|
4673
5386
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
4674
5387
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5388
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
5389
|
+
readonly inlineTitle?: string | undefined;
|
|
5390
|
+
readonly inlineColumns?: any[] | undefined;
|
|
5391
|
+
readonly inlineAmountField?: string | undefined;
|
|
5392
|
+
readonly relatedList?: boolean | undefined;
|
|
5393
|
+
readonly relatedListTitle?: string | undefined;
|
|
5394
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
4675
5395
|
readonly expression?: {
|
|
4676
5396
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4677
5397
|
source?: string | undefined;
|
|
@@ -4685,6 +5405,7 @@ declare const securityObjects: ((Omit<{
|
|
|
4685
5405
|
object: string;
|
|
4686
5406
|
field: string;
|
|
4687
5407
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
5408
|
+
relationshipField?: string | undefined;
|
|
4688
5409
|
} | undefined;
|
|
4689
5410
|
readonly language?: string | undefined;
|
|
4690
5411
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -4779,6 +5500,33 @@ declare const securityObjects: ((Omit<{
|
|
|
4779
5500
|
threshold: number;
|
|
4780
5501
|
} | undefined;
|
|
4781
5502
|
} | undefined;
|
|
5503
|
+
readonly visibleWhen?: {
|
|
5504
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5505
|
+
source?: string | undefined;
|
|
5506
|
+
ast?: unknown;
|
|
5507
|
+
meta?: {
|
|
5508
|
+
rationale?: string | undefined;
|
|
5509
|
+
generatedBy?: string | undefined;
|
|
5510
|
+
} | undefined;
|
|
5511
|
+
} | undefined;
|
|
5512
|
+
readonly readonlyWhen?: {
|
|
5513
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5514
|
+
source?: string | undefined;
|
|
5515
|
+
ast?: unknown;
|
|
5516
|
+
meta?: {
|
|
5517
|
+
rationale?: string | undefined;
|
|
5518
|
+
generatedBy?: string | undefined;
|
|
5519
|
+
} | undefined;
|
|
5520
|
+
} | undefined;
|
|
5521
|
+
readonly requiredWhen?: {
|
|
5522
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5523
|
+
source?: string | undefined;
|
|
5524
|
+
ast?: unknown;
|
|
5525
|
+
meta?: {
|
|
5526
|
+
rationale?: string | undefined;
|
|
5527
|
+
generatedBy?: string | undefined;
|
|
5528
|
+
} | undefined;
|
|
5529
|
+
} | undefined;
|
|
4782
5530
|
readonly conditionalRequired?: {
|
|
4783
5531
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4784
5532
|
source?: string | undefined;
|
|
@@ -4847,6 +5595,13 @@ declare const securityObjects: ((Omit<{
|
|
|
4847
5595
|
readonly referenceFilters?: string[] | undefined;
|
|
4848
5596
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
4849
5597
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5598
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
5599
|
+
readonly inlineTitle?: string | undefined;
|
|
5600
|
+
readonly inlineColumns?: any[] | undefined;
|
|
5601
|
+
readonly inlineAmountField?: string | undefined;
|
|
5602
|
+
readonly relatedList?: boolean | undefined;
|
|
5603
|
+
readonly relatedListTitle?: string | undefined;
|
|
5604
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
4850
5605
|
readonly expression?: {
|
|
4851
5606
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4852
5607
|
source?: string | undefined;
|
|
@@ -4860,6 +5615,7 @@ declare const securityObjects: ((Omit<{
|
|
|
4860
5615
|
object: string;
|
|
4861
5616
|
field: string;
|
|
4862
5617
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
5618
|
+
relationshipField?: string | undefined;
|
|
4863
5619
|
} | undefined;
|
|
4864
5620
|
readonly language?: string | undefined;
|
|
4865
5621
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -4954,7 +5710,7 @@ declare const securityObjects: ((Omit<{
|
|
|
4954
5710
|
threshold: number;
|
|
4955
5711
|
} | undefined;
|
|
4956
5712
|
} | undefined;
|
|
4957
|
-
readonly
|
|
5713
|
+
readonly visibleWhen?: {
|
|
4958
5714
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4959
5715
|
source?: string | undefined;
|
|
4960
5716
|
ast?: unknown;
|
|
@@ -4963,15 +5719,42 @@ declare const securityObjects: ((Omit<{
|
|
|
4963
5719
|
generatedBy?: string | undefined;
|
|
4964
5720
|
} | undefined;
|
|
4965
5721
|
} | undefined;
|
|
4966
|
-
readonly
|
|
4967
|
-
|
|
4968
|
-
|
|
4969
|
-
|
|
4970
|
-
|
|
4971
|
-
|
|
4972
|
-
|
|
4973
|
-
|
|
4974
|
-
|
|
5722
|
+
readonly readonlyWhen?: {
|
|
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;
|
|
5731
|
+
readonly requiredWhen?: {
|
|
5732
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5733
|
+
source?: string | undefined;
|
|
5734
|
+
ast?: unknown;
|
|
5735
|
+
meta?: {
|
|
5736
|
+
rationale?: string | undefined;
|
|
5737
|
+
generatedBy?: string | undefined;
|
|
5738
|
+
} | undefined;
|
|
5739
|
+
} | undefined;
|
|
5740
|
+
readonly conditionalRequired?: {
|
|
5741
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5742
|
+
source?: string | undefined;
|
|
5743
|
+
ast?: unknown;
|
|
5744
|
+
meta?: {
|
|
5745
|
+
rationale?: string | undefined;
|
|
5746
|
+
generatedBy?: string | undefined;
|
|
5747
|
+
} | undefined;
|
|
5748
|
+
} | undefined;
|
|
5749
|
+
readonly sortable?: boolean | undefined;
|
|
5750
|
+
readonly inlineHelpText?: string | undefined;
|
|
5751
|
+
readonly trackFeedHistory?: boolean | undefined;
|
|
5752
|
+
readonly caseSensitive?: boolean | undefined;
|
|
5753
|
+
readonly autonumberFormat?: string | undefined;
|
|
5754
|
+
readonly index?: boolean | undefined;
|
|
5755
|
+
readonly type: "textarea";
|
|
5756
|
+
};
|
|
5757
|
+
readonly active: {
|
|
4975
5758
|
readonly readonly?: boolean | undefined;
|
|
4976
5759
|
readonly format?: string | undefined;
|
|
4977
5760
|
readonly options?: {
|
|
@@ -5022,6 +5805,13 @@ declare const securityObjects: ((Omit<{
|
|
|
5022
5805
|
readonly referenceFilters?: string[] | undefined;
|
|
5023
5806
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
5024
5807
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5808
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
5809
|
+
readonly inlineTitle?: string | undefined;
|
|
5810
|
+
readonly inlineColumns?: any[] | undefined;
|
|
5811
|
+
readonly inlineAmountField?: string | undefined;
|
|
5812
|
+
readonly relatedList?: boolean | undefined;
|
|
5813
|
+
readonly relatedListTitle?: string | undefined;
|
|
5814
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
5025
5815
|
readonly expression?: {
|
|
5026
5816
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5027
5817
|
source?: string | undefined;
|
|
@@ -5035,6 +5825,7 @@ declare const securityObjects: ((Omit<{
|
|
|
5035
5825
|
object: string;
|
|
5036
5826
|
field: string;
|
|
5037
5827
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
5828
|
+
relationshipField?: string | undefined;
|
|
5038
5829
|
} | undefined;
|
|
5039
5830
|
readonly language?: string | undefined;
|
|
5040
5831
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -5129,6 +5920,33 @@ declare const securityObjects: ((Omit<{
|
|
|
5129
5920
|
threshold: number;
|
|
5130
5921
|
} | undefined;
|
|
5131
5922
|
} | undefined;
|
|
5923
|
+
readonly visibleWhen?: {
|
|
5924
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5925
|
+
source?: string | undefined;
|
|
5926
|
+
ast?: unknown;
|
|
5927
|
+
meta?: {
|
|
5928
|
+
rationale?: string | undefined;
|
|
5929
|
+
generatedBy?: string | undefined;
|
|
5930
|
+
} | undefined;
|
|
5931
|
+
} | undefined;
|
|
5932
|
+
readonly readonlyWhen?: {
|
|
5933
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5934
|
+
source?: string | undefined;
|
|
5935
|
+
ast?: unknown;
|
|
5936
|
+
meta?: {
|
|
5937
|
+
rationale?: string | undefined;
|
|
5938
|
+
generatedBy?: string | undefined;
|
|
5939
|
+
} | undefined;
|
|
5940
|
+
} | undefined;
|
|
5941
|
+
readonly requiredWhen?: {
|
|
5942
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
5943
|
+
source?: string | undefined;
|
|
5944
|
+
ast?: unknown;
|
|
5945
|
+
meta?: {
|
|
5946
|
+
rationale?: string | undefined;
|
|
5947
|
+
generatedBy?: string | undefined;
|
|
5948
|
+
} | undefined;
|
|
5949
|
+
} | undefined;
|
|
5132
5950
|
readonly conditionalRequired?: {
|
|
5133
5951
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5134
5952
|
source?: string | undefined;
|
|
@@ -5197,6 +6015,13 @@ declare const securityObjects: ((Omit<{
|
|
|
5197
6015
|
readonly referenceFilters?: string[] | undefined;
|
|
5198
6016
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
5199
6017
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6018
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
6019
|
+
readonly inlineTitle?: string | undefined;
|
|
6020
|
+
readonly inlineColumns?: any[] | undefined;
|
|
6021
|
+
readonly inlineAmountField?: string | undefined;
|
|
6022
|
+
readonly relatedList?: boolean | undefined;
|
|
6023
|
+
readonly relatedListTitle?: string | undefined;
|
|
6024
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
5200
6025
|
readonly expression?: {
|
|
5201
6026
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5202
6027
|
source?: string | undefined;
|
|
@@ -5210,6 +6035,7 @@ declare const securityObjects: ((Omit<{
|
|
|
5210
6035
|
object: string;
|
|
5211
6036
|
field: string;
|
|
5212
6037
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
6038
|
+
relationshipField?: string | undefined;
|
|
5213
6039
|
} | undefined;
|
|
5214
6040
|
readonly language?: string | undefined;
|
|
5215
6041
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -5304,6 +6130,33 @@ declare const securityObjects: ((Omit<{
|
|
|
5304
6130
|
threshold: number;
|
|
5305
6131
|
} | undefined;
|
|
5306
6132
|
} | undefined;
|
|
6133
|
+
readonly visibleWhen?: {
|
|
6134
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6135
|
+
source?: string | undefined;
|
|
6136
|
+
ast?: unknown;
|
|
6137
|
+
meta?: {
|
|
6138
|
+
rationale?: string | undefined;
|
|
6139
|
+
generatedBy?: string | undefined;
|
|
6140
|
+
} | undefined;
|
|
6141
|
+
} | undefined;
|
|
6142
|
+
readonly readonlyWhen?: {
|
|
6143
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6144
|
+
source?: string | undefined;
|
|
6145
|
+
ast?: unknown;
|
|
6146
|
+
meta?: {
|
|
6147
|
+
rationale?: string | undefined;
|
|
6148
|
+
generatedBy?: string | undefined;
|
|
6149
|
+
} | undefined;
|
|
6150
|
+
} | undefined;
|
|
6151
|
+
readonly requiredWhen?: {
|
|
6152
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6153
|
+
source?: string | undefined;
|
|
6154
|
+
ast?: unknown;
|
|
6155
|
+
meta?: {
|
|
6156
|
+
rationale?: string | undefined;
|
|
6157
|
+
generatedBy?: string | undefined;
|
|
6158
|
+
} | undefined;
|
|
6159
|
+
} | undefined;
|
|
5307
6160
|
readonly conditionalRequired?: {
|
|
5308
6161
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5309
6162
|
source?: string | undefined;
|
|
@@ -5372,6 +6225,13 @@ declare const securityObjects: ((Omit<{
|
|
|
5372
6225
|
readonly referenceFilters?: string[] | undefined;
|
|
5373
6226
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
5374
6227
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6228
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
6229
|
+
readonly inlineTitle?: string | undefined;
|
|
6230
|
+
readonly inlineColumns?: any[] | undefined;
|
|
6231
|
+
readonly inlineAmountField?: string | undefined;
|
|
6232
|
+
readonly relatedList?: boolean | undefined;
|
|
6233
|
+
readonly relatedListTitle?: string | undefined;
|
|
6234
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
5375
6235
|
readonly expression?: {
|
|
5376
6236
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5377
6237
|
source?: string | undefined;
|
|
@@ -5385,6 +6245,7 @@ declare const securityObjects: ((Omit<{
|
|
|
5385
6245
|
object: string;
|
|
5386
6246
|
field: string;
|
|
5387
6247
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
6248
|
+
relationshipField?: string | undefined;
|
|
5388
6249
|
} | undefined;
|
|
5389
6250
|
readonly language?: string | undefined;
|
|
5390
6251
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -5479,6 +6340,33 @@ declare const securityObjects: ((Omit<{
|
|
|
5479
6340
|
threshold: number;
|
|
5480
6341
|
} | undefined;
|
|
5481
6342
|
} | undefined;
|
|
6343
|
+
readonly visibleWhen?: {
|
|
6344
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6345
|
+
source?: string | undefined;
|
|
6346
|
+
ast?: unknown;
|
|
6347
|
+
meta?: {
|
|
6348
|
+
rationale?: string | undefined;
|
|
6349
|
+
generatedBy?: string | undefined;
|
|
6350
|
+
} | undefined;
|
|
6351
|
+
} | undefined;
|
|
6352
|
+
readonly readonlyWhen?: {
|
|
6353
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6354
|
+
source?: string | undefined;
|
|
6355
|
+
ast?: unknown;
|
|
6356
|
+
meta?: {
|
|
6357
|
+
rationale?: string | undefined;
|
|
6358
|
+
generatedBy?: string | undefined;
|
|
6359
|
+
} | undefined;
|
|
6360
|
+
} | undefined;
|
|
6361
|
+
readonly requiredWhen?: {
|
|
6362
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6363
|
+
source?: string | undefined;
|
|
6364
|
+
ast?: unknown;
|
|
6365
|
+
meta?: {
|
|
6366
|
+
rationale?: string | undefined;
|
|
6367
|
+
generatedBy?: string | undefined;
|
|
6368
|
+
} | undefined;
|
|
6369
|
+
} | undefined;
|
|
5482
6370
|
readonly conditionalRequired?: {
|
|
5483
6371
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5484
6372
|
source?: string | undefined;
|
|
@@ -5547,6 +6435,13 @@ declare const securityObjects: ((Omit<{
|
|
|
5547
6435
|
readonly referenceFilters?: string[] | undefined;
|
|
5548
6436
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
5549
6437
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6438
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
6439
|
+
readonly inlineTitle?: string | undefined;
|
|
6440
|
+
readonly inlineColumns?: any[] | undefined;
|
|
6441
|
+
readonly inlineAmountField?: string | undefined;
|
|
6442
|
+
readonly relatedList?: boolean | undefined;
|
|
6443
|
+
readonly relatedListTitle?: string | undefined;
|
|
6444
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
5550
6445
|
readonly expression?: {
|
|
5551
6446
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5552
6447
|
source?: string | undefined;
|
|
@@ -5560,6 +6455,7 @@ declare const securityObjects: ((Omit<{
|
|
|
5560
6455
|
object: string;
|
|
5561
6456
|
field: string;
|
|
5562
6457
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
6458
|
+
relationshipField?: string | undefined;
|
|
5563
6459
|
} | undefined;
|
|
5564
6460
|
readonly language?: string | undefined;
|
|
5565
6461
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -5654,6 +6550,33 @@ declare const securityObjects: ((Omit<{
|
|
|
5654
6550
|
threshold: number;
|
|
5655
6551
|
} | undefined;
|
|
5656
6552
|
} | undefined;
|
|
6553
|
+
readonly visibleWhen?: {
|
|
6554
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6555
|
+
source?: string | undefined;
|
|
6556
|
+
ast?: unknown;
|
|
6557
|
+
meta?: {
|
|
6558
|
+
rationale?: string | undefined;
|
|
6559
|
+
generatedBy?: string | undefined;
|
|
6560
|
+
} | undefined;
|
|
6561
|
+
} | undefined;
|
|
6562
|
+
readonly readonlyWhen?: {
|
|
6563
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6564
|
+
source?: string | undefined;
|
|
6565
|
+
ast?: unknown;
|
|
6566
|
+
meta?: {
|
|
6567
|
+
rationale?: string | undefined;
|
|
6568
|
+
generatedBy?: string | undefined;
|
|
6569
|
+
} | undefined;
|
|
6570
|
+
} | undefined;
|
|
6571
|
+
readonly requiredWhen?: {
|
|
6572
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6573
|
+
source?: string | undefined;
|
|
6574
|
+
ast?: unknown;
|
|
6575
|
+
meta?: {
|
|
6576
|
+
rationale?: string | undefined;
|
|
6577
|
+
generatedBy?: string | undefined;
|
|
6578
|
+
} | undefined;
|
|
6579
|
+
} | undefined;
|
|
5657
6580
|
readonly conditionalRequired?: {
|
|
5658
6581
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5659
6582
|
source?: string | undefined;
|
|
@@ -5726,6 +6649,13 @@ declare const securityObjects: ((Omit<{
|
|
|
5726
6649
|
reference?: string | undefined;
|
|
5727
6650
|
referenceFilters?: string[] | undefined;
|
|
5728
6651
|
writeRequiresMasterRead?: boolean | undefined;
|
|
6652
|
+
inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
6653
|
+
inlineTitle?: string | undefined;
|
|
6654
|
+
inlineColumns?: any[] | undefined;
|
|
6655
|
+
inlineAmountField?: string | undefined;
|
|
6656
|
+
relatedList?: boolean | undefined;
|
|
6657
|
+
relatedListTitle?: string | undefined;
|
|
6658
|
+
relatedListColumns?: any[] | undefined;
|
|
5729
6659
|
expression?: {
|
|
5730
6660
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5731
6661
|
source?: string | undefined;
|
|
@@ -5747,6 +6677,7 @@ declare const securityObjects: ((Omit<{
|
|
|
5747
6677
|
object: string;
|
|
5748
6678
|
field: string;
|
|
5749
6679
|
function: "count" | "min" | "max" | "sum" | "avg";
|
|
6680
|
+
relationshipField?: string | undefined;
|
|
5750
6681
|
} | undefined;
|
|
5751
6682
|
language?: string | undefined;
|
|
5752
6683
|
theme?: string | undefined;
|
|
@@ -5860,6 +6791,57 @@ declare const securityObjects: ((Omit<{
|
|
|
5860
6791
|
} | undefined;
|
|
5861
6792
|
} | undefined;
|
|
5862
6793
|
group?: string | undefined;
|
|
6794
|
+
visibleWhen?: {
|
|
6795
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6796
|
+
source?: string | undefined;
|
|
6797
|
+
ast?: unknown;
|
|
6798
|
+
meta?: {
|
|
6799
|
+
rationale?: string | undefined;
|
|
6800
|
+
generatedBy?: string | undefined;
|
|
6801
|
+
} | undefined;
|
|
6802
|
+
} | {
|
|
6803
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6804
|
+
source?: string | undefined;
|
|
6805
|
+
ast?: unknown;
|
|
6806
|
+
meta?: {
|
|
6807
|
+
rationale?: string | undefined;
|
|
6808
|
+
generatedBy?: string | undefined;
|
|
6809
|
+
} | undefined;
|
|
6810
|
+
} | undefined;
|
|
6811
|
+
readonlyWhen?: {
|
|
6812
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6813
|
+
source?: string | undefined;
|
|
6814
|
+
ast?: unknown;
|
|
6815
|
+
meta?: {
|
|
6816
|
+
rationale?: string | undefined;
|
|
6817
|
+
generatedBy?: string | undefined;
|
|
6818
|
+
} | undefined;
|
|
6819
|
+
} | {
|
|
6820
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6821
|
+
source?: string | undefined;
|
|
6822
|
+
ast?: unknown;
|
|
6823
|
+
meta?: {
|
|
6824
|
+
rationale?: string | undefined;
|
|
6825
|
+
generatedBy?: string | undefined;
|
|
6826
|
+
} | undefined;
|
|
6827
|
+
} | undefined;
|
|
6828
|
+
requiredWhen?: {
|
|
6829
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6830
|
+
source?: string | undefined;
|
|
6831
|
+
ast?: unknown;
|
|
6832
|
+
meta?: {
|
|
6833
|
+
rationale?: string | undefined;
|
|
6834
|
+
generatedBy?: string | undefined;
|
|
6835
|
+
} | undefined;
|
|
6836
|
+
} | {
|
|
6837
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
6838
|
+
source?: string | undefined;
|
|
6839
|
+
ast?: unknown;
|
|
6840
|
+
meta?: {
|
|
6841
|
+
rationale?: string | undefined;
|
|
6842
|
+
generatedBy?: string | undefined;
|
|
6843
|
+
} | undefined;
|
|
6844
|
+
} | undefined;
|
|
5863
6845
|
conditionalRequired?: {
|
|
5864
6846
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5865
6847
|
source?: string | undefined;
|
|
@@ -6001,7 +6983,7 @@ declare const securityObjects: ((Omit<{
|
|
|
6001
6983
|
} | undefined;
|
|
6002
6984
|
compactLayout?: string[] | undefined;
|
|
6003
6985
|
listViews?: Record<string, {
|
|
6004
|
-
type: "map" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart"
|
|
6986
|
+
type: "map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart";
|
|
6005
6987
|
columns: string[] | {
|
|
6006
6988
|
field: string;
|
|
6007
6989
|
label?: string | undefined;
|
|
@@ -6170,7 +7152,7 @@ declare const securityObjects: ((Omit<{
|
|
|
6170
7152
|
} | undefined;
|
|
6171
7153
|
appearance?: {
|
|
6172
7154
|
showDescription: boolean;
|
|
6173
|
-
allowedVisualizations?: ("map" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline"
|
|
7155
|
+
allowedVisualizations?: ("map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline")[] | undefined;
|
|
6174
7156
|
} | undefined;
|
|
6175
7157
|
tabs?: {
|
|
6176
7158
|
name: string;
|
|
@@ -6190,7 +7172,7 @@ declare const securityObjects: ((Omit<{
|
|
|
6190
7172
|
addRecord?: {
|
|
6191
7173
|
enabled: boolean;
|
|
6192
7174
|
position: "top" | "bottom" | "both";
|
|
6193
|
-
mode: "
|
|
7175
|
+
mode: "form" | "modal" | "inline";
|
|
6194
7176
|
formView?: string | undefined;
|
|
6195
7177
|
} | undefined;
|
|
6196
7178
|
showRecordCount?: boolean | undefined;
|
|
@@ -6276,7 +7258,7 @@ declare const securityObjects: ((Omit<{
|
|
|
6276
7258
|
actions?: {
|
|
6277
7259
|
name: string;
|
|
6278
7260
|
label: string;
|
|
6279
|
-
type: "url" | "
|
|
7261
|
+
type: "url" | "form" | "flow" | "api" | "script" | "modal";
|
|
6280
7262
|
refreshAfter: boolean;
|
|
6281
7263
|
objectName?: string | undefined;
|
|
6282
7264
|
icon?: string | undefined;
|
|
@@ -6344,7 +7326,18 @@ declare const securityObjects: ((Omit<{
|
|
|
6344
7326
|
} | undefined;
|
|
6345
7327
|
shortcut?: string | undefined;
|
|
6346
7328
|
bulkEnabled?: boolean | undefined;
|
|
6347
|
-
|
|
7329
|
+
ai?: {
|
|
7330
|
+
exposed: boolean;
|
|
7331
|
+
description?: string | undefined;
|
|
7332
|
+
category?: "action" | "data" | "flow" | "integration" | "vector_search" | "analytics" | "utility" | undefined;
|
|
7333
|
+
paramHints?: Record<string, {
|
|
7334
|
+
description?: string | undefined;
|
|
7335
|
+
enum?: (string | number)[] | undefined;
|
|
7336
|
+
examples?: unknown[] | undefined;
|
|
7337
|
+
}> | undefined;
|
|
7338
|
+
outputSchema?: Record<string, unknown> | undefined;
|
|
7339
|
+
requiresConfirmation?: boolean | undefined;
|
|
7340
|
+
} | undefined;
|
|
6348
7341
|
recordIdParam?: string | undefined;
|
|
6349
7342
|
recordIdField?: string | undefined;
|
|
6350
7343
|
bodyShape?: "flat" | {
|
|
@@ -6427,6 +7420,13 @@ declare const securityObjects: ((Omit<{
|
|
|
6427
7420
|
readonly referenceFilters?: string[] | undefined;
|
|
6428
7421
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
6429
7422
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7423
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
7424
|
+
readonly inlineTitle?: string | undefined;
|
|
7425
|
+
readonly inlineColumns?: any[] | undefined;
|
|
7426
|
+
readonly inlineAmountField?: string | undefined;
|
|
7427
|
+
readonly relatedList?: boolean | undefined;
|
|
7428
|
+
readonly relatedListTitle?: string | undefined;
|
|
7429
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
6430
7430
|
readonly expression?: {
|
|
6431
7431
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6432
7432
|
source?: string | undefined;
|
|
@@ -6440,6 +7440,7 @@ declare const securityObjects: ((Omit<{
|
|
|
6440
7440
|
object: string;
|
|
6441
7441
|
field: string;
|
|
6442
7442
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
7443
|
+
relationshipField?: string | undefined;
|
|
6443
7444
|
} | undefined;
|
|
6444
7445
|
readonly language?: string | undefined;
|
|
6445
7446
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -6534,6 +7535,33 @@ declare const securityObjects: ((Omit<{
|
|
|
6534
7535
|
threshold: number;
|
|
6535
7536
|
} | undefined;
|
|
6536
7537
|
} | undefined;
|
|
7538
|
+
readonly visibleWhen?: {
|
|
7539
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
7540
|
+
source?: string | undefined;
|
|
7541
|
+
ast?: unknown;
|
|
7542
|
+
meta?: {
|
|
7543
|
+
rationale?: string | undefined;
|
|
7544
|
+
generatedBy?: string | undefined;
|
|
7545
|
+
} | undefined;
|
|
7546
|
+
} | undefined;
|
|
7547
|
+
readonly readonlyWhen?: {
|
|
7548
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
7549
|
+
source?: string | undefined;
|
|
7550
|
+
ast?: unknown;
|
|
7551
|
+
meta?: {
|
|
7552
|
+
rationale?: string | undefined;
|
|
7553
|
+
generatedBy?: string | undefined;
|
|
7554
|
+
} | undefined;
|
|
7555
|
+
} | undefined;
|
|
7556
|
+
readonly requiredWhen?: {
|
|
7557
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
7558
|
+
source?: string | undefined;
|
|
7559
|
+
ast?: unknown;
|
|
7560
|
+
meta?: {
|
|
7561
|
+
rationale?: string | undefined;
|
|
7562
|
+
generatedBy?: string | undefined;
|
|
7563
|
+
} | undefined;
|
|
7564
|
+
} | undefined;
|
|
6537
7565
|
readonly conditionalRequired?: {
|
|
6538
7566
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6539
7567
|
source?: string | undefined;
|
|
@@ -6602,6 +7630,13 @@ declare const securityObjects: ((Omit<{
|
|
|
6602
7630
|
readonly referenceFilters?: string[] | undefined;
|
|
6603
7631
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
6604
7632
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7633
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
7634
|
+
readonly inlineTitle?: string | undefined;
|
|
7635
|
+
readonly inlineColumns?: any[] | undefined;
|
|
7636
|
+
readonly inlineAmountField?: string | undefined;
|
|
7637
|
+
readonly relatedList?: boolean | undefined;
|
|
7638
|
+
readonly relatedListTitle?: string | undefined;
|
|
7639
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
6605
7640
|
readonly expression?: {
|
|
6606
7641
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6607
7642
|
source?: string | undefined;
|
|
@@ -6615,6 +7650,7 @@ declare const securityObjects: ((Omit<{
|
|
|
6615
7650
|
object: string;
|
|
6616
7651
|
field: string;
|
|
6617
7652
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
7653
|
+
relationshipField?: string | undefined;
|
|
6618
7654
|
} | undefined;
|
|
6619
7655
|
readonly language?: string | undefined;
|
|
6620
7656
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -6709,6 +7745,33 @@ declare const securityObjects: ((Omit<{
|
|
|
6709
7745
|
threshold: number;
|
|
6710
7746
|
} | undefined;
|
|
6711
7747
|
} | undefined;
|
|
7748
|
+
readonly visibleWhen?: {
|
|
7749
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
7750
|
+
source?: string | undefined;
|
|
7751
|
+
ast?: unknown;
|
|
7752
|
+
meta?: {
|
|
7753
|
+
rationale?: string | undefined;
|
|
7754
|
+
generatedBy?: string | undefined;
|
|
7755
|
+
} | undefined;
|
|
7756
|
+
} | undefined;
|
|
7757
|
+
readonly readonlyWhen?: {
|
|
7758
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
7759
|
+
source?: string | undefined;
|
|
7760
|
+
ast?: unknown;
|
|
7761
|
+
meta?: {
|
|
7762
|
+
rationale?: string | undefined;
|
|
7763
|
+
generatedBy?: string | undefined;
|
|
7764
|
+
} | undefined;
|
|
7765
|
+
} | undefined;
|
|
7766
|
+
readonly requiredWhen?: {
|
|
7767
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
7768
|
+
source?: string | undefined;
|
|
7769
|
+
ast?: unknown;
|
|
7770
|
+
meta?: {
|
|
7771
|
+
rationale?: string | undefined;
|
|
7772
|
+
generatedBy?: string | undefined;
|
|
7773
|
+
} | undefined;
|
|
7774
|
+
} | undefined;
|
|
6712
7775
|
readonly conditionalRequired?: {
|
|
6713
7776
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6714
7777
|
source?: string | undefined;
|
|
@@ -6777,6 +7840,13 @@ declare const securityObjects: ((Omit<{
|
|
|
6777
7840
|
readonly referenceFilters?: string[] | undefined;
|
|
6778
7841
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
6779
7842
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7843
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
7844
|
+
readonly inlineTitle?: string | undefined;
|
|
7845
|
+
readonly inlineColumns?: any[] | undefined;
|
|
7846
|
+
readonly inlineAmountField?: string | undefined;
|
|
7847
|
+
readonly relatedList?: boolean | undefined;
|
|
7848
|
+
readonly relatedListTitle?: string | undefined;
|
|
7849
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
6780
7850
|
readonly expression?: {
|
|
6781
7851
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6782
7852
|
source?: string | undefined;
|
|
@@ -6790,6 +7860,7 @@ declare const securityObjects: ((Omit<{
|
|
|
6790
7860
|
object: string;
|
|
6791
7861
|
field: string;
|
|
6792
7862
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
7863
|
+
relationshipField?: string | undefined;
|
|
6793
7864
|
} | undefined;
|
|
6794
7865
|
readonly language?: string | undefined;
|
|
6795
7866
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -6884,6 +7955,33 @@ declare const securityObjects: ((Omit<{
|
|
|
6884
7955
|
threshold: number;
|
|
6885
7956
|
} | undefined;
|
|
6886
7957
|
} | undefined;
|
|
7958
|
+
readonly visibleWhen?: {
|
|
7959
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
7960
|
+
source?: string | undefined;
|
|
7961
|
+
ast?: unknown;
|
|
7962
|
+
meta?: {
|
|
7963
|
+
rationale?: string | undefined;
|
|
7964
|
+
generatedBy?: string | undefined;
|
|
7965
|
+
} | undefined;
|
|
7966
|
+
} | undefined;
|
|
7967
|
+
readonly readonlyWhen?: {
|
|
7968
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
7969
|
+
source?: string | undefined;
|
|
7970
|
+
ast?: unknown;
|
|
7971
|
+
meta?: {
|
|
7972
|
+
rationale?: string | undefined;
|
|
7973
|
+
generatedBy?: string | undefined;
|
|
7974
|
+
} | undefined;
|
|
7975
|
+
} | undefined;
|
|
7976
|
+
readonly requiredWhen?: {
|
|
7977
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
7978
|
+
source?: string | undefined;
|
|
7979
|
+
ast?: unknown;
|
|
7980
|
+
meta?: {
|
|
7981
|
+
rationale?: string | undefined;
|
|
7982
|
+
generatedBy?: string | undefined;
|
|
7983
|
+
} | undefined;
|
|
7984
|
+
} | undefined;
|
|
6887
7985
|
readonly conditionalRequired?: {
|
|
6888
7986
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6889
7987
|
source?: string | undefined;
|
|
@@ -6952,6 +8050,13 @@ declare const securityObjects: ((Omit<{
|
|
|
6952
8050
|
readonly referenceFilters?: string[] | undefined;
|
|
6953
8051
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
6954
8052
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
8053
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
8054
|
+
readonly inlineTitle?: string | undefined;
|
|
8055
|
+
readonly inlineColumns?: any[] | undefined;
|
|
8056
|
+
readonly inlineAmountField?: string | undefined;
|
|
8057
|
+
readonly relatedList?: boolean | undefined;
|
|
8058
|
+
readonly relatedListTitle?: string | undefined;
|
|
8059
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
6955
8060
|
readonly expression?: {
|
|
6956
8061
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6957
8062
|
source?: string | undefined;
|
|
@@ -6965,6 +8070,7 @@ declare const securityObjects: ((Omit<{
|
|
|
6965
8070
|
object: string;
|
|
6966
8071
|
field: string;
|
|
6967
8072
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
8073
|
+
relationshipField?: string | undefined;
|
|
6968
8074
|
} | undefined;
|
|
6969
8075
|
readonly language?: string | undefined;
|
|
6970
8076
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -7051,12 +8157,39 @@ declare const securityObjects: ((Omit<{
|
|
|
7051
8157
|
ttl: number;
|
|
7052
8158
|
invalidateOn: string[];
|
|
7053
8159
|
} | undefined;
|
|
7054
|
-
readonly dataQuality?: {
|
|
7055
|
-
uniqueness: boolean;
|
|
7056
|
-
completeness: number;
|
|
7057
|
-
accuracy?: {
|
|
7058
|
-
source: string;
|
|
7059
|
-
threshold: number;
|
|
8160
|
+
readonly dataQuality?: {
|
|
8161
|
+
uniqueness: boolean;
|
|
8162
|
+
completeness: number;
|
|
8163
|
+
accuracy?: {
|
|
8164
|
+
source: string;
|
|
8165
|
+
threshold: number;
|
|
8166
|
+
} | undefined;
|
|
8167
|
+
} | undefined;
|
|
8168
|
+
readonly visibleWhen?: {
|
|
8169
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
8170
|
+
source?: string | undefined;
|
|
8171
|
+
ast?: unknown;
|
|
8172
|
+
meta?: {
|
|
8173
|
+
rationale?: string | undefined;
|
|
8174
|
+
generatedBy?: string | undefined;
|
|
8175
|
+
} | undefined;
|
|
8176
|
+
} | undefined;
|
|
8177
|
+
readonly readonlyWhen?: {
|
|
8178
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
8179
|
+
source?: string | undefined;
|
|
8180
|
+
ast?: unknown;
|
|
8181
|
+
meta?: {
|
|
8182
|
+
rationale?: string | undefined;
|
|
8183
|
+
generatedBy?: string | undefined;
|
|
8184
|
+
} | undefined;
|
|
8185
|
+
} | undefined;
|
|
8186
|
+
readonly requiredWhen?: {
|
|
8187
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
8188
|
+
source?: string | undefined;
|
|
8189
|
+
ast?: unknown;
|
|
8190
|
+
meta?: {
|
|
8191
|
+
rationale?: string | undefined;
|
|
8192
|
+
generatedBy?: string | undefined;
|
|
7060
8193
|
} | undefined;
|
|
7061
8194
|
} | undefined;
|
|
7062
8195
|
readonly conditionalRequired?: {
|
|
@@ -7127,6 +8260,13 @@ declare const securityObjects: ((Omit<{
|
|
|
7127
8260
|
readonly referenceFilters?: string[] | undefined;
|
|
7128
8261
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
7129
8262
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
8263
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
8264
|
+
readonly inlineTitle?: string | undefined;
|
|
8265
|
+
readonly inlineColumns?: any[] | undefined;
|
|
8266
|
+
readonly inlineAmountField?: string | undefined;
|
|
8267
|
+
readonly relatedList?: boolean | undefined;
|
|
8268
|
+
readonly relatedListTitle?: string | undefined;
|
|
8269
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
7130
8270
|
readonly expression?: {
|
|
7131
8271
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7132
8272
|
source?: string | undefined;
|
|
@@ -7140,6 +8280,7 @@ declare const securityObjects: ((Omit<{
|
|
|
7140
8280
|
object: string;
|
|
7141
8281
|
field: string;
|
|
7142
8282
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
8283
|
+
relationshipField?: string | undefined;
|
|
7143
8284
|
} | undefined;
|
|
7144
8285
|
readonly language?: string | undefined;
|
|
7145
8286
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -7234,6 +8375,33 @@ declare const securityObjects: ((Omit<{
|
|
|
7234
8375
|
threshold: number;
|
|
7235
8376
|
} | undefined;
|
|
7236
8377
|
} | undefined;
|
|
8378
|
+
readonly visibleWhen?: {
|
|
8379
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
8380
|
+
source?: string | undefined;
|
|
8381
|
+
ast?: unknown;
|
|
8382
|
+
meta?: {
|
|
8383
|
+
rationale?: string | undefined;
|
|
8384
|
+
generatedBy?: string | undefined;
|
|
8385
|
+
} | undefined;
|
|
8386
|
+
} | undefined;
|
|
8387
|
+
readonly readonlyWhen?: {
|
|
8388
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
8389
|
+
source?: string | undefined;
|
|
8390
|
+
ast?: unknown;
|
|
8391
|
+
meta?: {
|
|
8392
|
+
rationale?: string | undefined;
|
|
8393
|
+
generatedBy?: string | undefined;
|
|
8394
|
+
} | undefined;
|
|
8395
|
+
} | undefined;
|
|
8396
|
+
readonly requiredWhen?: {
|
|
8397
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
8398
|
+
source?: string | undefined;
|
|
8399
|
+
ast?: unknown;
|
|
8400
|
+
meta?: {
|
|
8401
|
+
rationale?: string | undefined;
|
|
8402
|
+
generatedBy?: string | undefined;
|
|
8403
|
+
} | undefined;
|
|
8404
|
+
} | undefined;
|
|
7237
8405
|
readonly conditionalRequired?: {
|
|
7238
8406
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7239
8407
|
source?: string | undefined;
|
|
@@ -7302,6 +8470,13 @@ declare const securityObjects: ((Omit<{
|
|
|
7302
8470
|
readonly referenceFilters?: string[] | undefined;
|
|
7303
8471
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
7304
8472
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
8473
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
8474
|
+
readonly inlineTitle?: string | undefined;
|
|
8475
|
+
readonly inlineColumns?: any[] | undefined;
|
|
8476
|
+
readonly inlineAmountField?: string | undefined;
|
|
8477
|
+
readonly relatedList?: boolean | undefined;
|
|
8478
|
+
readonly relatedListTitle?: string | undefined;
|
|
8479
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
7305
8480
|
readonly expression?: {
|
|
7306
8481
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7307
8482
|
source?: string | undefined;
|
|
@@ -7315,6 +8490,7 @@ declare const securityObjects: ((Omit<{
|
|
|
7315
8490
|
object: string;
|
|
7316
8491
|
field: string;
|
|
7317
8492
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
8493
|
+
relationshipField?: string | undefined;
|
|
7318
8494
|
} | undefined;
|
|
7319
8495
|
readonly language?: string | undefined;
|
|
7320
8496
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -7409,6 +8585,33 @@ declare const securityObjects: ((Omit<{
|
|
|
7409
8585
|
threshold: number;
|
|
7410
8586
|
} | undefined;
|
|
7411
8587
|
} | undefined;
|
|
8588
|
+
readonly visibleWhen?: {
|
|
8589
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
8590
|
+
source?: string | undefined;
|
|
8591
|
+
ast?: unknown;
|
|
8592
|
+
meta?: {
|
|
8593
|
+
rationale?: string | undefined;
|
|
8594
|
+
generatedBy?: string | undefined;
|
|
8595
|
+
} | undefined;
|
|
8596
|
+
} | undefined;
|
|
8597
|
+
readonly readonlyWhen?: {
|
|
8598
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
8599
|
+
source?: string | undefined;
|
|
8600
|
+
ast?: unknown;
|
|
8601
|
+
meta?: {
|
|
8602
|
+
rationale?: string | undefined;
|
|
8603
|
+
generatedBy?: string | undefined;
|
|
8604
|
+
} | undefined;
|
|
8605
|
+
} | undefined;
|
|
8606
|
+
readonly requiredWhen?: {
|
|
8607
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
8608
|
+
source?: string | undefined;
|
|
8609
|
+
ast?: unknown;
|
|
8610
|
+
meta?: {
|
|
8611
|
+
rationale?: string | undefined;
|
|
8612
|
+
generatedBy?: string | undefined;
|
|
8613
|
+
} | undefined;
|
|
8614
|
+
} | undefined;
|
|
7412
8615
|
readonly conditionalRequired?: {
|
|
7413
8616
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7414
8617
|
source?: string | undefined;
|
|
@@ -7477,6 +8680,13 @@ declare const securityObjects: ((Omit<{
|
|
|
7477
8680
|
readonly referenceFilters?: string[] | undefined;
|
|
7478
8681
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
7479
8682
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
8683
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
8684
|
+
readonly inlineTitle?: string | undefined;
|
|
8685
|
+
readonly inlineColumns?: any[] | undefined;
|
|
8686
|
+
readonly inlineAmountField?: string | undefined;
|
|
8687
|
+
readonly relatedList?: boolean | undefined;
|
|
8688
|
+
readonly relatedListTitle?: string | undefined;
|
|
8689
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
7480
8690
|
readonly expression?: {
|
|
7481
8691
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7482
8692
|
source?: string | undefined;
|
|
@@ -7490,6 +8700,7 @@ declare const securityObjects: ((Omit<{
|
|
|
7490
8700
|
object: string;
|
|
7491
8701
|
field: string;
|
|
7492
8702
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
8703
|
+
relationshipField?: string | undefined;
|
|
7493
8704
|
} | undefined;
|
|
7494
8705
|
readonly language?: string | undefined;
|
|
7495
8706
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -7584,6 +8795,33 @@ declare const securityObjects: ((Omit<{
|
|
|
7584
8795
|
threshold: number;
|
|
7585
8796
|
} | undefined;
|
|
7586
8797
|
} | undefined;
|
|
8798
|
+
readonly visibleWhen?: {
|
|
8799
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
8800
|
+
source?: string | undefined;
|
|
8801
|
+
ast?: unknown;
|
|
8802
|
+
meta?: {
|
|
8803
|
+
rationale?: string | undefined;
|
|
8804
|
+
generatedBy?: string | undefined;
|
|
8805
|
+
} | undefined;
|
|
8806
|
+
} | undefined;
|
|
8807
|
+
readonly readonlyWhen?: {
|
|
8808
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
8809
|
+
source?: string | undefined;
|
|
8810
|
+
ast?: unknown;
|
|
8811
|
+
meta?: {
|
|
8812
|
+
rationale?: string | undefined;
|
|
8813
|
+
generatedBy?: string | undefined;
|
|
8814
|
+
} | undefined;
|
|
8815
|
+
} | undefined;
|
|
8816
|
+
readonly requiredWhen?: {
|
|
8817
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
8818
|
+
source?: string | undefined;
|
|
8819
|
+
ast?: unknown;
|
|
8820
|
+
meta?: {
|
|
8821
|
+
rationale?: string | undefined;
|
|
8822
|
+
generatedBy?: string | undefined;
|
|
8823
|
+
} | undefined;
|
|
8824
|
+
} | undefined;
|
|
7587
8825
|
readonly conditionalRequired?: {
|
|
7588
8826
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7589
8827
|
source?: string | undefined;
|
|
@@ -7660,6 +8898,13 @@ declare const securityObjects: ((Omit<{
|
|
|
7660
8898
|
reference?: string | undefined;
|
|
7661
8899
|
referenceFilters?: string[] | undefined;
|
|
7662
8900
|
writeRequiresMasterRead?: boolean | undefined;
|
|
8901
|
+
inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
8902
|
+
inlineTitle?: string | undefined;
|
|
8903
|
+
inlineColumns?: any[] | undefined;
|
|
8904
|
+
inlineAmountField?: string | undefined;
|
|
8905
|
+
relatedList?: boolean | undefined;
|
|
8906
|
+
relatedListTitle?: string | undefined;
|
|
8907
|
+
relatedListColumns?: any[] | undefined;
|
|
7663
8908
|
expression?: {
|
|
7664
8909
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7665
8910
|
source?: string | undefined;
|
|
@@ -7681,6 +8926,7 @@ declare const securityObjects: ((Omit<{
|
|
|
7681
8926
|
object: string;
|
|
7682
8927
|
field: string;
|
|
7683
8928
|
function: "count" | "min" | "max" | "sum" | "avg";
|
|
8929
|
+
relationshipField?: string | undefined;
|
|
7684
8930
|
} | undefined;
|
|
7685
8931
|
language?: string | undefined;
|
|
7686
8932
|
theme?: string | undefined;
|
|
@@ -7794,6 +9040,57 @@ declare const securityObjects: ((Omit<{
|
|
|
7794
9040
|
} | undefined;
|
|
7795
9041
|
} | undefined;
|
|
7796
9042
|
group?: string | undefined;
|
|
9043
|
+
visibleWhen?: {
|
|
9044
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
9045
|
+
source?: string | undefined;
|
|
9046
|
+
ast?: unknown;
|
|
9047
|
+
meta?: {
|
|
9048
|
+
rationale?: string | undefined;
|
|
9049
|
+
generatedBy?: string | undefined;
|
|
9050
|
+
} | undefined;
|
|
9051
|
+
} | {
|
|
9052
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
9053
|
+
source?: string | undefined;
|
|
9054
|
+
ast?: unknown;
|
|
9055
|
+
meta?: {
|
|
9056
|
+
rationale?: string | undefined;
|
|
9057
|
+
generatedBy?: string | undefined;
|
|
9058
|
+
} | undefined;
|
|
9059
|
+
} | undefined;
|
|
9060
|
+
readonlyWhen?: {
|
|
9061
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
9062
|
+
source?: string | undefined;
|
|
9063
|
+
ast?: unknown;
|
|
9064
|
+
meta?: {
|
|
9065
|
+
rationale?: string | undefined;
|
|
9066
|
+
generatedBy?: string | undefined;
|
|
9067
|
+
} | undefined;
|
|
9068
|
+
} | {
|
|
9069
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
9070
|
+
source?: string | undefined;
|
|
9071
|
+
ast?: unknown;
|
|
9072
|
+
meta?: {
|
|
9073
|
+
rationale?: string | undefined;
|
|
9074
|
+
generatedBy?: string | undefined;
|
|
9075
|
+
} | undefined;
|
|
9076
|
+
} | undefined;
|
|
9077
|
+
requiredWhen?: {
|
|
9078
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
9079
|
+
source?: string | undefined;
|
|
9080
|
+
ast?: unknown;
|
|
9081
|
+
meta?: {
|
|
9082
|
+
rationale?: string | undefined;
|
|
9083
|
+
generatedBy?: string | undefined;
|
|
9084
|
+
} | undefined;
|
|
9085
|
+
} | {
|
|
9086
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
9087
|
+
source?: string | undefined;
|
|
9088
|
+
ast?: unknown;
|
|
9089
|
+
meta?: {
|
|
9090
|
+
rationale?: string | undefined;
|
|
9091
|
+
generatedBy?: string | undefined;
|
|
9092
|
+
} | undefined;
|
|
9093
|
+
} | undefined;
|
|
7797
9094
|
conditionalRequired?: {
|
|
7798
9095
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7799
9096
|
source?: string | undefined;
|
|
@@ -7935,7 +9232,7 @@ declare const securityObjects: ((Omit<{
|
|
|
7935
9232
|
} | undefined;
|
|
7936
9233
|
compactLayout?: string[] | undefined;
|
|
7937
9234
|
listViews?: Record<string, {
|
|
7938
|
-
type: "map" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart"
|
|
9235
|
+
type: "map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart";
|
|
7939
9236
|
columns: string[] | {
|
|
7940
9237
|
field: string;
|
|
7941
9238
|
label?: string | undefined;
|
|
@@ -8104,7 +9401,7 @@ declare const securityObjects: ((Omit<{
|
|
|
8104
9401
|
} | undefined;
|
|
8105
9402
|
appearance?: {
|
|
8106
9403
|
showDescription: boolean;
|
|
8107
|
-
allowedVisualizations?: ("map" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline"
|
|
9404
|
+
allowedVisualizations?: ("map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline")[] | undefined;
|
|
8108
9405
|
} | undefined;
|
|
8109
9406
|
tabs?: {
|
|
8110
9407
|
name: string;
|
|
@@ -8124,7 +9421,7 @@ declare const securityObjects: ((Omit<{
|
|
|
8124
9421
|
addRecord?: {
|
|
8125
9422
|
enabled: boolean;
|
|
8126
9423
|
position: "top" | "bottom" | "both";
|
|
8127
|
-
mode: "
|
|
9424
|
+
mode: "form" | "modal" | "inline";
|
|
8128
9425
|
formView?: string | undefined;
|
|
8129
9426
|
} | undefined;
|
|
8130
9427
|
showRecordCount?: boolean | undefined;
|
|
@@ -8210,7 +9507,7 @@ declare const securityObjects: ((Omit<{
|
|
|
8210
9507
|
actions?: {
|
|
8211
9508
|
name: string;
|
|
8212
9509
|
label: string;
|
|
8213
|
-
type: "url" | "
|
|
9510
|
+
type: "url" | "form" | "flow" | "api" | "script" | "modal";
|
|
8214
9511
|
refreshAfter: boolean;
|
|
8215
9512
|
objectName?: string | undefined;
|
|
8216
9513
|
icon?: string | undefined;
|
|
@@ -8278,7 +9575,18 @@ declare const securityObjects: ((Omit<{
|
|
|
8278
9575
|
} | undefined;
|
|
8279
9576
|
shortcut?: string | undefined;
|
|
8280
9577
|
bulkEnabled?: boolean | undefined;
|
|
8281
|
-
|
|
9578
|
+
ai?: {
|
|
9579
|
+
exposed: boolean;
|
|
9580
|
+
description?: string | undefined;
|
|
9581
|
+
category?: "action" | "data" | "flow" | "integration" | "vector_search" | "analytics" | "utility" | undefined;
|
|
9582
|
+
paramHints?: Record<string, {
|
|
9583
|
+
description?: string | undefined;
|
|
9584
|
+
enum?: (string | number)[] | undefined;
|
|
9585
|
+
examples?: unknown[] | undefined;
|
|
9586
|
+
}> | undefined;
|
|
9587
|
+
outputSchema?: Record<string, unknown> | undefined;
|
|
9588
|
+
requiresConfirmation?: boolean | undefined;
|
|
9589
|
+
} | undefined;
|
|
8282
9590
|
recordIdParam?: string | undefined;
|
|
8283
9591
|
recordIdField?: string | undefined;
|
|
8284
9592
|
bodyShape?: "flat" | {
|
|
@@ -8361,6 +9669,13 @@ declare const securityObjects: ((Omit<{
|
|
|
8361
9669
|
readonly referenceFilters?: string[] | undefined;
|
|
8362
9670
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
8363
9671
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
9672
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
9673
|
+
readonly inlineTitle?: string | undefined;
|
|
9674
|
+
readonly inlineColumns?: any[] | undefined;
|
|
9675
|
+
readonly inlineAmountField?: string | undefined;
|
|
9676
|
+
readonly relatedList?: boolean | undefined;
|
|
9677
|
+
readonly relatedListTitle?: string | undefined;
|
|
9678
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
8364
9679
|
readonly expression?: {
|
|
8365
9680
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8366
9681
|
source?: string | undefined;
|
|
@@ -8374,6 +9689,7 @@ declare const securityObjects: ((Omit<{
|
|
|
8374
9689
|
object: string;
|
|
8375
9690
|
field: string;
|
|
8376
9691
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
9692
|
+
relationshipField?: string | undefined;
|
|
8377
9693
|
} | undefined;
|
|
8378
9694
|
readonly language?: string | undefined;
|
|
8379
9695
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -8468,6 +9784,33 @@ declare const securityObjects: ((Omit<{
|
|
|
8468
9784
|
threshold: number;
|
|
8469
9785
|
} | undefined;
|
|
8470
9786
|
} | undefined;
|
|
9787
|
+
readonly visibleWhen?: {
|
|
9788
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
9789
|
+
source?: string | undefined;
|
|
9790
|
+
ast?: unknown;
|
|
9791
|
+
meta?: {
|
|
9792
|
+
rationale?: string | undefined;
|
|
9793
|
+
generatedBy?: string | undefined;
|
|
9794
|
+
} | undefined;
|
|
9795
|
+
} | undefined;
|
|
9796
|
+
readonly readonlyWhen?: {
|
|
9797
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
9798
|
+
source?: string | undefined;
|
|
9799
|
+
ast?: unknown;
|
|
9800
|
+
meta?: {
|
|
9801
|
+
rationale?: string | undefined;
|
|
9802
|
+
generatedBy?: string | undefined;
|
|
9803
|
+
} | undefined;
|
|
9804
|
+
} | undefined;
|
|
9805
|
+
readonly requiredWhen?: {
|
|
9806
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
9807
|
+
source?: string | undefined;
|
|
9808
|
+
ast?: unknown;
|
|
9809
|
+
meta?: {
|
|
9810
|
+
rationale?: string | undefined;
|
|
9811
|
+
generatedBy?: string | undefined;
|
|
9812
|
+
} | undefined;
|
|
9813
|
+
} | undefined;
|
|
8471
9814
|
readonly conditionalRequired?: {
|
|
8472
9815
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8473
9816
|
source?: string | undefined;
|
|
@@ -8536,6 +9879,13 @@ declare const securityObjects: ((Omit<{
|
|
|
8536
9879
|
readonly referenceFilters?: string[] | undefined;
|
|
8537
9880
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
8538
9881
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
9882
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
9883
|
+
readonly inlineTitle?: string | undefined;
|
|
9884
|
+
readonly inlineColumns?: any[] | undefined;
|
|
9885
|
+
readonly inlineAmountField?: string | undefined;
|
|
9886
|
+
readonly relatedList?: boolean | undefined;
|
|
9887
|
+
readonly relatedListTitle?: string | undefined;
|
|
9888
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
8539
9889
|
readonly expression?: {
|
|
8540
9890
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8541
9891
|
source?: string | undefined;
|
|
@@ -8549,6 +9899,7 @@ declare const securityObjects: ((Omit<{
|
|
|
8549
9899
|
object: string;
|
|
8550
9900
|
field: string;
|
|
8551
9901
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
9902
|
+
relationshipField?: string | undefined;
|
|
8552
9903
|
} | undefined;
|
|
8553
9904
|
readonly language?: string | undefined;
|
|
8554
9905
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -8643,6 +9994,33 @@ declare const securityObjects: ((Omit<{
|
|
|
8643
9994
|
threshold: number;
|
|
8644
9995
|
} | undefined;
|
|
8645
9996
|
} | undefined;
|
|
9997
|
+
readonly visibleWhen?: {
|
|
9998
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
9999
|
+
source?: string | undefined;
|
|
10000
|
+
ast?: unknown;
|
|
10001
|
+
meta?: {
|
|
10002
|
+
rationale?: string | undefined;
|
|
10003
|
+
generatedBy?: string | undefined;
|
|
10004
|
+
} | undefined;
|
|
10005
|
+
} | undefined;
|
|
10006
|
+
readonly readonlyWhen?: {
|
|
10007
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
10008
|
+
source?: string | undefined;
|
|
10009
|
+
ast?: unknown;
|
|
10010
|
+
meta?: {
|
|
10011
|
+
rationale?: string | undefined;
|
|
10012
|
+
generatedBy?: string | undefined;
|
|
10013
|
+
} | undefined;
|
|
10014
|
+
} | undefined;
|
|
10015
|
+
readonly requiredWhen?: {
|
|
10016
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
10017
|
+
source?: string | undefined;
|
|
10018
|
+
ast?: unknown;
|
|
10019
|
+
meta?: {
|
|
10020
|
+
rationale?: string | undefined;
|
|
10021
|
+
generatedBy?: string | undefined;
|
|
10022
|
+
} | undefined;
|
|
10023
|
+
} | undefined;
|
|
8646
10024
|
readonly conditionalRequired?: {
|
|
8647
10025
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8648
10026
|
source?: string | undefined;
|
|
@@ -8711,6 +10089,13 @@ declare const securityObjects: ((Omit<{
|
|
|
8711
10089
|
readonly referenceFilters?: string[] | undefined;
|
|
8712
10090
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
8713
10091
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
10092
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
10093
|
+
readonly inlineTitle?: string | undefined;
|
|
10094
|
+
readonly inlineColumns?: any[] | undefined;
|
|
10095
|
+
readonly inlineAmountField?: string | undefined;
|
|
10096
|
+
readonly relatedList?: boolean | undefined;
|
|
10097
|
+
readonly relatedListTitle?: string | undefined;
|
|
10098
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
8714
10099
|
readonly expression?: {
|
|
8715
10100
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8716
10101
|
source?: string | undefined;
|
|
@@ -8724,6 +10109,7 @@ declare const securityObjects: ((Omit<{
|
|
|
8724
10109
|
object: string;
|
|
8725
10110
|
field: string;
|
|
8726
10111
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
10112
|
+
relationshipField?: string | undefined;
|
|
8727
10113
|
} | undefined;
|
|
8728
10114
|
readonly language?: string | undefined;
|
|
8729
10115
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -8818,6 +10204,33 @@ declare const securityObjects: ((Omit<{
|
|
|
8818
10204
|
threshold: number;
|
|
8819
10205
|
} | undefined;
|
|
8820
10206
|
} | undefined;
|
|
10207
|
+
readonly visibleWhen?: {
|
|
10208
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
10209
|
+
source?: string | undefined;
|
|
10210
|
+
ast?: unknown;
|
|
10211
|
+
meta?: {
|
|
10212
|
+
rationale?: string | undefined;
|
|
10213
|
+
generatedBy?: string | undefined;
|
|
10214
|
+
} | undefined;
|
|
10215
|
+
} | undefined;
|
|
10216
|
+
readonly readonlyWhen?: {
|
|
10217
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
10218
|
+
source?: string | undefined;
|
|
10219
|
+
ast?: unknown;
|
|
10220
|
+
meta?: {
|
|
10221
|
+
rationale?: string | undefined;
|
|
10222
|
+
generatedBy?: string | undefined;
|
|
10223
|
+
} | undefined;
|
|
10224
|
+
} | undefined;
|
|
10225
|
+
readonly requiredWhen?: {
|
|
10226
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
10227
|
+
source?: string | undefined;
|
|
10228
|
+
ast?: unknown;
|
|
10229
|
+
meta?: {
|
|
10230
|
+
rationale?: string | undefined;
|
|
10231
|
+
generatedBy?: string | undefined;
|
|
10232
|
+
} | undefined;
|
|
10233
|
+
} | undefined;
|
|
8821
10234
|
readonly conditionalRequired?: {
|
|
8822
10235
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8823
10236
|
source?: string | undefined;
|
|
@@ -8886,6 +10299,13 @@ declare const securityObjects: ((Omit<{
|
|
|
8886
10299
|
readonly referenceFilters?: string[] | undefined;
|
|
8887
10300
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
8888
10301
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
10302
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
10303
|
+
readonly inlineTitle?: string | undefined;
|
|
10304
|
+
readonly inlineColumns?: any[] | undefined;
|
|
10305
|
+
readonly inlineAmountField?: string | undefined;
|
|
10306
|
+
readonly relatedList?: boolean | undefined;
|
|
10307
|
+
readonly relatedListTitle?: string | undefined;
|
|
10308
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
8889
10309
|
readonly expression?: {
|
|
8890
10310
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8891
10311
|
source?: string | undefined;
|
|
@@ -8899,6 +10319,7 @@ declare const securityObjects: ((Omit<{
|
|
|
8899
10319
|
object: string;
|
|
8900
10320
|
field: string;
|
|
8901
10321
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
10322
|
+
relationshipField?: string | undefined;
|
|
8902
10323
|
} | undefined;
|
|
8903
10324
|
readonly language?: string | undefined;
|
|
8904
10325
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -8993,6 +10414,33 @@ declare const securityObjects: ((Omit<{
|
|
|
8993
10414
|
threshold: number;
|
|
8994
10415
|
} | undefined;
|
|
8995
10416
|
} | undefined;
|
|
10417
|
+
readonly visibleWhen?: {
|
|
10418
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
10419
|
+
source?: string | undefined;
|
|
10420
|
+
ast?: unknown;
|
|
10421
|
+
meta?: {
|
|
10422
|
+
rationale?: string | undefined;
|
|
10423
|
+
generatedBy?: string | undefined;
|
|
10424
|
+
} | undefined;
|
|
10425
|
+
} | undefined;
|
|
10426
|
+
readonly readonlyWhen?: {
|
|
10427
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
10428
|
+
source?: string | undefined;
|
|
10429
|
+
ast?: unknown;
|
|
10430
|
+
meta?: {
|
|
10431
|
+
rationale?: string | undefined;
|
|
10432
|
+
generatedBy?: string | undefined;
|
|
10433
|
+
} | undefined;
|
|
10434
|
+
} | undefined;
|
|
10435
|
+
readonly requiredWhen?: {
|
|
10436
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
10437
|
+
source?: string | undefined;
|
|
10438
|
+
ast?: unknown;
|
|
10439
|
+
meta?: {
|
|
10440
|
+
rationale?: string | undefined;
|
|
10441
|
+
generatedBy?: string | undefined;
|
|
10442
|
+
} | undefined;
|
|
10443
|
+
} | undefined;
|
|
8996
10444
|
readonly conditionalRequired?: {
|
|
8997
10445
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8998
10446
|
source?: string | undefined;
|
|
@@ -9061,6 +10509,13 @@ declare const securityObjects: ((Omit<{
|
|
|
9061
10509
|
readonly referenceFilters?: string[] | undefined;
|
|
9062
10510
|
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
9063
10511
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
10512
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
10513
|
+
readonly inlineTitle?: string | undefined;
|
|
10514
|
+
readonly inlineColumns?: any[] | undefined;
|
|
10515
|
+
readonly inlineAmountField?: string | undefined;
|
|
10516
|
+
readonly relatedList?: boolean | undefined;
|
|
10517
|
+
readonly relatedListTitle?: string | undefined;
|
|
10518
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
9064
10519
|
readonly expression?: {
|
|
9065
10520
|
dialect: "cel" | "js" | "cron" | "template";
|
|
9066
10521
|
source?: string | undefined;
|
|
@@ -9074,6 +10529,7 @@ declare const securityObjects: ((Omit<{
|
|
|
9074
10529
|
object: string;
|
|
9075
10530
|
field: string;
|
|
9076
10531
|
function: "min" | "max" | "count" | "sum" | "avg";
|
|
10532
|
+
relationshipField?: string | undefined;
|
|
9077
10533
|
} | undefined;
|
|
9078
10534
|
readonly language?: string | undefined;
|
|
9079
10535
|
readonly lineNumbers?: boolean | undefined;
|
|
@@ -9168,6 +10624,33 @@ declare const securityObjects: ((Omit<{
|
|
|
9168
10624
|
threshold: number;
|
|
9169
10625
|
} | undefined;
|
|
9170
10626
|
} | undefined;
|
|
10627
|
+
readonly visibleWhen?: {
|
|
10628
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
10629
|
+
source?: string | undefined;
|
|
10630
|
+
ast?: unknown;
|
|
10631
|
+
meta?: {
|
|
10632
|
+
rationale?: string | undefined;
|
|
10633
|
+
generatedBy?: string | undefined;
|
|
10634
|
+
} | undefined;
|
|
10635
|
+
} | undefined;
|
|
10636
|
+
readonly readonlyWhen?: {
|
|
10637
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
10638
|
+
source?: string | undefined;
|
|
10639
|
+
ast?: unknown;
|
|
10640
|
+
meta?: {
|
|
10641
|
+
rationale?: string | undefined;
|
|
10642
|
+
generatedBy?: string | undefined;
|
|
10643
|
+
} | undefined;
|
|
10644
|
+
} | undefined;
|
|
10645
|
+
readonly requiredWhen?: {
|
|
10646
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
10647
|
+
source?: string | undefined;
|
|
10648
|
+
ast?: unknown;
|
|
10649
|
+
meta?: {
|
|
10650
|
+
rationale?: string | undefined;
|
|
10651
|
+
generatedBy?: string | undefined;
|
|
10652
|
+
} | undefined;
|
|
10653
|
+
} | undefined;
|
|
9171
10654
|
readonly conditionalRequired?: {
|
|
9172
10655
|
dialect: "cel" | "js" | "cron" | "template";
|
|
9173
10656
|
source?: string | undefined;
|