@objectstack/plugin-security 7.3.0 → 7.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +192 -319
- package/dist/index.d.ts +192 -319
- package/dist/index.js +1932 -12
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1934 -13
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { Plugin, PluginContext } from '@objectstack/core';
|
|
2
2
|
import { PermissionSet, FieldPermission, RowLevelSecurityPolicy } from '@objectstack/spec/security';
|
|
3
3
|
import { ExecutionContext } from '@objectstack/spec/kernel';
|
|
4
|
-
import { z } from 'zod';
|
|
5
4
|
import * as _objectstack_spec_data from '@objectstack/spec/data';
|
|
6
5
|
|
|
7
6
|
interface SecurityPluginOptions {
|
|
@@ -289,44 +288,6 @@ declare class PermissionDeniedError extends Error {
|
|
|
289
288
|
}
|
|
290
289
|
declare function isPermissionDeniedError(e: unknown): e is PermissionDeniedError;
|
|
291
290
|
|
|
292
|
-
declare const ActionRefSchema: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
293
|
-
type: z.ZodString;
|
|
294
|
-
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
295
|
-
}, z.core.$strip>]>;
|
|
296
|
-
/**
|
|
297
|
-
* State Transition Definition
|
|
298
|
-
* "When EVENT happens, if GUARD is true, go to TARGET and run ACTIONS"
|
|
299
|
-
*/
|
|
300
|
-
declare const TransitionSchema: z.ZodObject<{
|
|
301
|
-
target: z.ZodOptional<z.ZodString>;
|
|
302
|
-
cond: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
303
|
-
type: z.ZodString;
|
|
304
|
-
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
305
|
-
}, z.core.$strip>]>>;
|
|
306
|
-
actions: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
307
|
-
type: z.ZodString;
|
|
308
|
-
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
309
|
-
}, z.core.$strip>]>>>;
|
|
310
|
-
description: z.ZodOptional<z.ZodString>;
|
|
311
|
-
}, z.core.$strip>;
|
|
312
|
-
type ActionRef = z.infer<typeof ActionRefSchema>;
|
|
313
|
-
type Transition = z.infer<typeof TransitionSchema>;
|
|
314
|
-
type StateNodeConfig = {
|
|
315
|
-
type?: 'atomic' | 'compound' | 'parallel' | 'final' | 'history';
|
|
316
|
-
entry?: ActionRef[];
|
|
317
|
-
exit?: ActionRef[];
|
|
318
|
-
on?: Record<string, string | Transition | Transition[]>;
|
|
319
|
-
always?: Transition[];
|
|
320
|
-
initial?: string;
|
|
321
|
-
states?: Record<string, StateNodeConfig>;
|
|
322
|
-
meta?: {
|
|
323
|
-
label?: string;
|
|
324
|
-
description?: string;
|
|
325
|
-
color?: string;
|
|
326
|
-
aiInstructions?: string;
|
|
327
|
-
};
|
|
328
|
-
};
|
|
329
|
-
|
|
330
291
|
declare const SECURITY_PLUGIN_ID = "com.objectstack.plugin-security";
|
|
331
292
|
declare const SECURITY_PLUGIN_VERSION = "1.0.0";
|
|
332
293
|
/** Security objects owned by plugin-security. */
|
|
@@ -337,7 +298,7 @@ declare const securityObjects: ((Omit<{
|
|
|
337
298
|
abstract: boolean;
|
|
338
299
|
datasource: string;
|
|
339
300
|
fields: Record<string, {
|
|
340
|
-
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "
|
|
301
|
+
type: "number" | "boolean" | "tags" | "select" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
341
302
|
required: boolean;
|
|
342
303
|
searchable: boolean;
|
|
343
304
|
multiple: boolean;
|
|
@@ -390,7 +351,7 @@ declare const securityObjects: ((Omit<{
|
|
|
390
351
|
summaryOperations?: {
|
|
391
352
|
object: string;
|
|
392
353
|
field: string;
|
|
393
|
-
function: "
|
|
354
|
+
function: "count" | "min" | "max" | "sum" | "avg";
|
|
394
355
|
} | undefined;
|
|
395
356
|
language?: string | undefined;
|
|
396
357
|
theme?: string | undefined;
|
|
@@ -476,7 +437,7 @@ declare const securityObjects: ((Omit<{
|
|
|
476
437
|
autoRotate: boolean;
|
|
477
438
|
} | undefined;
|
|
478
439
|
};
|
|
479
|
-
scope: "
|
|
440
|
+
scope: "field" | "record" | "table" | "database";
|
|
480
441
|
deterministicEncryption: boolean;
|
|
481
442
|
searchableEncryption: boolean;
|
|
482
443
|
} | undefined;
|
|
@@ -552,6 +513,14 @@ declare const securityObjects: ((Omit<{
|
|
|
552
513
|
owner?: boolean | undefined;
|
|
553
514
|
audit?: boolean | undefined;
|
|
554
515
|
} | undefined;
|
|
516
|
+
external?: {
|
|
517
|
+
writable: boolean;
|
|
518
|
+
remoteName?: string | undefined;
|
|
519
|
+
remoteSchema?: string | undefined;
|
|
520
|
+
columnMap?: Record<string, string> | undefined;
|
|
521
|
+
introspectedAt?: string | undefined;
|
|
522
|
+
ignoreColumns?: string[] | undefined;
|
|
523
|
+
} | undefined;
|
|
555
524
|
indexes?: {
|
|
556
525
|
fields: string[];
|
|
557
526
|
type: "hash" | "btree" | "gin" | "gist" | "fulltext";
|
|
@@ -608,40 +577,10 @@ declare const securityObjects: ((Omit<{
|
|
|
608
577
|
} | undefined;
|
|
609
578
|
cdc?: {
|
|
610
579
|
enabled: boolean;
|
|
611
|
-
events: ("
|
|
580
|
+
events: ("insert" | "update" | "delete")[];
|
|
612
581
|
destination: string;
|
|
613
582
|
} | undefined;
|
|
614
583
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
615
|
-
stateMachines?: Record<string, {
|
|
616
|
-
id: string;
|
|
617
|
-
initial: string;
|
|
618
|
-
states: Record<string, StateNodeConfig>;
|
|
619
|
-
description?: string | undefined;
|
|
620
|
-
contextSchema?: Record<string, unknown> | undefined;
|
|
621
|
-
on?: Record<string, string | {
|
|
622
|
-
target?: string | undefined;
|
|
623
|
-
cond?: string | {
|
|
624
|
-
type: string;
|
|
625
|
-
params?: Record<string, unknown> | undefined;
|
|
626
|
-
} | undefined;
|
|
627
|
-
actions?: (string | {
|
|
628
|
-
type: string;
|
|
629
|
-
params?: Record<string, unknown> | undefined;
|
|
630
|
-
})[] | undefined;
|
|
631
|
-
description?: string | undefined;
|
|
632
|
-
} | {
|
|
633
|
-
target?: string | undefined;
|
|
634
|
-
cond?: string | {
|
|
635
|
-
type: string;
|
|
636
|
-
params?: Record<string, unknown> | undefined;
|
|
637
|
-
} | undefined;
|
|
638
|
-
actions?: (string | {
|
|
639
|
-
type: string;
|
|
640
|
-
params?: Record<string, unknown> | undefined;
|
|
641
|
-
})[] | undefined;
|
|
642
|
-
description?: string | undefined;
|
|
643
|
-
}[]> | undefined;
|
|
644
|
-
}> | undefined;
|
|
645
584
|
displayNameField?: string | undefined;
|
|
646
585
|
recordName?: {
|
|
647
586
|
type: "text" | "autonumber";
|
|
@@ -667,7 +606,7 @@ declare const securityObjects: ((Omit<{
|
|
|
667
606
|
} | undefined;
|
|
668
607
|
compactLayout?: string[] | undefined;
|
|
669
608
|
listViews?: Record<string, {
|
|
670
|
-
type: "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "
|
|
609
|
+
type: "map" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "grid";
|
|
671
610
|
columns: string[] | {
|
|
672
611
|
field: string;
|
|
673
612
|
label?: string | undefined;
|
|
@@ -679,7 +618,7 @@ declare const securityObjects: ((Omit<{
|
|
|
679
618
|
wrap?: boolean | undefined;
|
|
680
619
|
type?: string | undefined;
|
|
681
620
|
pinned?: "left" | "right" | undefined;
|
|
682
|
-
summary?: "
|
|
621
|
+
summary?: "count" | "none" | "min" | "max" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
683
622
|
link?: boolean | undefined;
|
|
684
623
|
action?: string | undefined;
|
|
685
624
|
}[];
|
|
@@ -731,7 +670,7 @@ declare const securityObjects: ((Omit<{
|
|
|
731
670
|
type: "none" | "multiple" | "single";
|
|
732
671
|
} | undefined;
|
|
733
672
|
navigation?: {
|
|
734
|
-
mode: "none" | "split" | "page" | "
|
|
673
|
+
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
735
674
|
preventNavigation: boolean;
|
|
736
675
|
openNewTab: boolean;
|
|
737
676
|
view?: string | undefined;
|
|
@@ -778,7 +717,7 @@ declare const securityObjects: ((Omit<{
|
|
|
778
717
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
779
718
|
xAxisField: string;
|
|
780
719
|
yAxisFields: string[];
|
|
781
|
-
aggregation?: "
|
|
720
|
+
aggregation?: "count" | "min" | "max" | "sum" | "avg" | undefined;
|
|
782
721
|
groupByField?: string | undefined;
|
|
783
722
|
} | undefined;
|
|
784
723
|
description?: string | undefined;
|
|
@@ -836,7 +775,7 @@ declare const securityObjects: ((Omit<{
|
|
|
836
775
|
} | undefined;
|
|
837
776
|
appearance?: {
|
|
838
777
|
showDescription: boolean;
|
|
839
|
-
allowedVisualizations?: ("kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "
|
|
778
|
+
allowedVisualizations?: ("map" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "grid")[] | undefined;
|
|
840
779
|
} | undefined;
|
|
841
780
|
tabs?: {
|
|
842
781
|
name: string;
|
|
@@ -880,7 +819,7 @@ declare const securityObjects: ((Omit<{
|
|
|
880
819
|
md?: number | undefined;
|
|
881
820
|
lg?: number | undefined;
|
|
882
821
|
xl?: number | undefined;
|
|
883
|
-
|
|
822
|
+
'2xl'?: number | undefined;
|
|
884
823
|
} | undefined;
|
|
885
824
|
order?: {
|
|
886
825
|
xs?: number | undefined;
|
|
@@ -888,7 +827,7 @@ declare const securityObjects: ((Omit<{
|
|
|
888
827
|
md?: number | undefined;
|
|
889
828
|
lg?: number | undefined;
|
|
890
829
|
xl?: number | undefined;
|
|
891
|
-
|
|
830
|
+
'2xl'?: number | undefined;
|
|
892
831
|
} | undefined;
|
|
893
832
|
} | undefined;
|
|
894
833
|
performance?: {
|
|
@@ -920,7 +859,7 @@ declare const securityObjects: ((Omit<{
|
|
|
920
859
|
trash: boolean;
|
|
921
860
|
mru: boolean;
|
|
922
861
|
clone: boolean;
|
|
923
|
-
apiMethods?: ("
|
|
862
|
+
apiMethods?: ("aggregate" | "update" | "delete" | "search" | "create" | "import" | "list" | "get" | "upsert" | "bulk" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
924
863
|
} | undefined;
|
|
925
864
|
recordTypes?: string[] | undefined;
|
|
926
865
|
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
@@ -966,7 +905,7 @@ declare const securityObjects: ((Omit<{
|
|
|
966
905
|
field?: string | undefined;
|
|
967
906
|
objectOverride?: string | undefined;
|
|
968
907
|
label?: string | undefined;
|
|
969
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "
|
|
908
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
970
909
|
options?: {
|
|
971
910
|
label: string;
|
|
972
911
|
value: string;
|
|
@@ -1018,7 +957,7 @@ declare const securityObjects: ((Omit<{
|
|
|
1018
957
|
} | undefined;
|
|
1019
958
|
method?: "POST" | "PATCH" | "PUT" | "DELETE" | undefined;
|
|
1020
959
|
bodyExtra?: Record<string, unknown> | undefined;
|
|
1021
|
-
mode?: "custom" | "delete" | "
|
|
960
|
+
mode?: "custom" | "delete" | "edit" | "create" | undefined;
|
|
1022
961
|
timeout?: number | undefined;
|
|
1023
962
|
aria?: {
|
|
1024
963
|
ariaLabel?: string | undefined;
|
|
@@ -1040,7 +979,7 @@ declare const securityObjects: ((Omit<{
|
|
|
1040
979
|
readonly managedBy: "config";
|
|
1041
980
|
readonly protection: {
|
|
1042
981
|
readonly lock: "no-overlay";
|
|
1043
|
-
readonly reason: "RBAC schema is platform-defined
|
|
982
|
+
readonly reason: "RBAC schema is platform-defined — see ADR-0010.";
|
|
1044
983
|
readonly docsUrl: "https://docs.objectstack.ai/adr/0010-metadata-protection";
|
|
1045
984
|
};
|
|
1046
985
|
readonly description: "Role definitions for RBAC access control";
|
|
@@ -1233,10 +1172,12 @@ declare const securityObjects: ((Omit<{
|
|
|
1233
1172
|
readonly dependencies?: string[] | undefined;
|
|
1234
1173
|
readonly theme?: string | undefined;
|
|
1235
1174
|
readonly externalId?: boolean | undefined;
|
|
1175
|
+
readonly defaultValue?: unknown;
|
|
1176
|
+
readonly group?: string | undefined;
|
|
1177
|
+
readonly hidden?: boolean | undefined;
|
|
1236
1178
|
readonly system?: boolean | undefined;
|
|
1237
1179
|
readonly min?: number | undefined;
|
|
1238
1180
|
readonly max?: number | undefined;
|
|
1239
|
-
readonly group?: string | undefined;
|
|
1240
1181
|
readonly encryptionConfig?: {
|
|
1241
1182
|
enabled: boolean;
|
|
1242
1183
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -1257,7 +1198,6 @@ declare const securityObjects: ((Omit<{
|
|
|
1257
1198
|
readonly columnName?: string | undefined;
|
|
1258
1199
|
readonly searchable?: boolean | undefined;
|
|
1259
1200
|
readonly unique?: boolean | undefined;
|
|
1260
|
-
readonly defaultValue?: unknown;
|
|
1261
1201
|
readonly maxLength?: number | undefined;
|
|
1262
1202
|
readonly minLength?: number | undefined;
|
|
1263
1203
|
readonly scale?: number | undefined;
|
|
@@ -1381,7 +1321,6 @@ declare const securityObjects: ((Omit<{
|
|
|
1381
1321
|
generatedBy?: string | undefined;
|
|
1382
1322
|
} | undefined;
|
|
1383
1323
|
} | undefined;
|
|
1384
|
-
readonly hidden?: boolean | undefined;
|
|
1385
1324
|
readonly sortable?: boolean | undefined;
|
|
1386
1325
|
readonly inlineHelpText?: string | undefined;
|
|
1387
1326
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -1408,10 +1347,12 @@ declare const securityObjects: ((Omit<{
|
|
|
1408
1347
|
readonly dependencies?: string[] | undefined;
|
|
1409
1348
|
readonly theme?: string | undefined;
|
|
1410
1349
|
readonly externalId?: boolean | undefined;
|
|
1350
|
+
readonly defaultValue?: unknown;
|
|
1351
|
+
readonly group?: string | undefined;
|
|
1352
|
+
readonly hidden?: boolean | undefined;
|
|
1411
1353
|
readonly system?: boolean | undefined;
|
|
1412
1354
|
readonly min?: number | undefined;
|
|
1413
1355
|
readonly max?: number | undefined;
|
|
1414
|
-
readonly group?: string | undefined;
|
|
1415
1356
|
readonly encryptionConfig?: {
|
|
1416
1357
|
enabled: boolean;
|
|
1417
1358
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -1432,7 +1373,6 @@ declare const securityObjects: ((Omit<{
|
|
|
1432
1373
|
readonly columnName?: string | undefined;
|
|
1433
1374
|
readonly searchable?: boolean | undefined;
|
|
1434
1375
|
readonly unique?: boolean | undefined;
|
|
1435
|
-
readonly defaultValue?: unknown;
|
|
1436
1376
|
readonly maxLength?: number | undefined;
|
|
1437
1377
|
readonly minLength?: number | undefined;
|
|
1438
1378
|
readonly scale?: number | undefined;
|
|
@@ -1556,7 +1496,6 @@ declare const securityObjects: ((Omit<{
|
|
|
1556
1496
|
generatedBy?: string | undefined;
|
|
1557
1497
|
} | undefined;
|
|
1558
1498
|
} | undefined;
|
|
1559
|
-
readonly hidden?: boolean | undefined;
|
|
1560
1499
|
readonly sortable?: boolean | undefined;
|
|
1561
1500
|
readonly inlineHelpText?: string | undefined;
|
|
1562
1501
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -1583,10 +1522,12 @@ declare const securityObjects: ((Omit<{
|
|
|
1583
1522
|
readonly dependencies?: string[] | undefined;
|
|
1584
1523
|
readonly theme?: string | undefined;
|
|
1585
1524
|
readonly externalId?: boolean | undefined;
|
|
1525
|
+
readonly defaultValue?: unknown;
|
|
1526
|
+
readonly group?: string | undefined;
|
|
1527
|
+
readonly hidden?: boolean | undefined;
|
|
1586
1528
|
readonly system?: boolean | undefined;
|
|
1587
1529
|
readonly min?: number | undefined;
|
|
1588
1530
|
readonly max?: number | undefined;
|
|
1589
|
-
readonly group?: string | undefined;
|
|
1590
1531
|
readonly encryptionConfig?: {
|
|
1591
1532
|
enabled: boolean;
|
|
1592
1533
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -1607,7 +1548,6 @@ declare const securityObjects: ((Omit<{
|
|
|
1607
1548
|
readonly columnName?: string | undefined;
|
|
1608
1549
|
readonly searchable?: boolean | undefined;
|
|
1609
1550
|
readonly unique?: boolean | undefined;
|
|
1610
|
-
readonly defaultValue?: unknown;
|
|
1611
1551
|
readonly maxLength?: number | undefined;
|
|
1612
1552
|
readonly minLength?: number | undefined;
|
|
1613
1553
|
readonly scale?: number | undefined;
|
|
@@ -1731,7 +1671,6 @@ declare const securityObjects: ((Omit<{
|
|
|
1731
1671
|
generatedBy?: string | undefined;
|
|
1732
1672
|
} | undefined;
|
|
1733
1673
|
} | undefined;
|
|
1734
|
-
readonly hidden?: boolean | undefined;
|
|
1735
1674
|
readonly sortable?: boolean | undefined;
|
|
1736
1675
|
readonly inlineHelpText?: string | undefined;
|
|
1737
1676
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -1758,10 +1697,12 @@ declare const securityObjects: ((Omit<{
|
|
|
1758
1697
|
readonly dependencies?: string[] | undefined;
|
|
1759
1698
|
readonly theme?: string | undefined;
|
|
1760
1699
|
readonly externalId?: boolean | undefined;
|
|
1700
|
+
readonly defaultValue?: unknown;
|
|
1701
|
+
readonly group?: string | undefined;
|
|
1702
|
+
readonly hidden?: boolean | undefined;
|
|
1761
1703
|
readonly system?: boolean | undefined;
|
|
1762
1704
|
readonly min?: number | undefined;
|
|
1763
1705
|
readonly max?: number | undefined;
|
|
1764
|
-
readonly group?: string | undefined;
|
|
1765
1706
|
readonly encryptionConfig?: {
|
|
1766
1707
|
enabled: boolean;
|
|
1767
1708
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -1782,7 +1723,6 @@ declare const securityObjects: ((Omit<{
|
|
|
1782
1723
|
readonly columnName?: string | undefined;
|
|
1783
1724
|
readonly searchable?: boolean | undefined;
|
|
1784
1725
|
readonly unique?: boolean | undefined;
|
|
1785
|
-
readonly defaultValue?: unknown;
|
|
1786
1726
|
readonly maxLength?: number | undefined;
|
|
1787
1727
|
readonly minLength?: number | undefined;
|
|
1788
1728
|
readonly scale?: number | undefined;
|
|
@@ -1906,7 +1846,6 @@ declare const securityObjects: ((Omit<{
|
|
|
1906
1846
|
generatedBy?: string | undefined;
|
|
1907
1847
|
} | undefined;
|
|
1908
1848
|
} | undefined;
|
|
1909
|
-
readonly hidden?: boolean | undefined;
|
|
1910
1849
|
readonly sortable?: boolean | undefined;
|
|
1911
1850
|
readonly inlineHelpText?: string | undefined;
|
|
1912
1851
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -1933,10 +1872,12 @@ declare const securityObjects: ((Omit<{
|
|
|
1933
1872
|
readonly dependencies?: string[] | undefined;
|
|
1934
1873
|
readonly theme?: string | undefined;
|
|
1935
1874
|
readonly externalId?: boolean | undefined;
|
|
1875
|
+
readonly defaultValue?: unknown;
|
|
1876
|
+
readonly group?: string | undefined;
|
|
1877
|
+
readonly hidden?: boolean | undefined;
|
|
1936
1878
|
readonly system?: boolean | undefined;
|
|
1937
1879
|
readonly min?: number | undefined;
|
|
1938
1880
|
readonly max?: number | undefined;
|
|
1939
|
-
readonly group?: string | undefined;
|
|
1940
1881
|
readonly encryptionConfig?: {
|
|
1941
1882
|
enabled: boolean;
|
|
1942
1883
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -1957,7 +1898,6 @@ declare const securityObjects: ((Omit<{
|
|
|
1957
1898
|
readonly columnName?: string | undefined;
|
|
1958
1899
|
readonly searchable?: boolean | undefined;
|
|
1959
1900
|
readonly unique?: boolean | undefined;
|
|
1960
|
-
readonly defaultValue?: unknown;
|
|
1961
1901
|
readonly maxLength?: number | undefined;
|
|
1962
1902
|
readonly minLength?: number | undefined;
|
|
1963
1903
|
readonly scale?: number | undefined;
|
|
@@ -2081,7 +2021,6 @@ declare const securityObjects: ((Omit<{
|
|
|
2081
2021
|
generatedBy?: string | undefined;
|
|
2082
2022
|
} | undefined;
|
|
2083
2023
|
} | undefined;
|
|
2084
|
-
readonly hidden?: boolean | undefined;
|
|
2085
2024
|
readonly sortable?: boolean | undefined;
|
|
2086
2025
|
readonly inlineHelpText?: string | undefined;
|
|
2087
2026
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -2108,10 +2047,12 @@ declare const securityObjects: ((Omit<{
|
|
|
2108
2047
|
readonly dependencies?: string[] | undefined;
|
|
2109
2048
|
readonly theme?: string | undefined;
|
|
2110
2049
|
readonly externalId?: boolean | undefined;
|
|
2050
|
+
readonly defaultValue?: unknown;
|
|
2051
|
+
readonly group?: string | undefined;
|
|
2052
|
+
readonly hidden?: boolean | undefined;
|
|
2111
2053
|
readonly system?: boolean | undefined;
|
|
2112
2054
|
readonly min?: number | undefined;
|
|
2113
2055
|
readonly max?: number | undefined;
|
|
2114
|
-
readonly group?: string | undefined;
|
|
2115
2056
|
readonly encryptionConfig?: {
|
|
2116
2057
|
enabled: boolean;
|
|
2117
2058
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -2132,7 +2073,6 @@ declare const securityObjects: ((Omit<{
|
|
|
2132
2073
|
readonly columnName?: string | undefined;
|
|
2133
2074
|
readonly searchable?: boolean | undefined;
|
|
2134
2075
|
readonly unique?: boolean | undefined;
|
|
2135
|
-
readonly defaultValue?: unknown;
|
|
2136
2076
|
readonly maxLength?: number | undefined;
|
|
2137
2077
|
readonly minLength?: number | undefined;
|
|
2138
2078
|
readonly scale?: number | undefined;
|
|
@@ -2256,7 +2196,6 @@ declare const securityObjects: ((Omit<{
|
|
|
2256
2196
|
generatedBy?: string | undefined;
|
|
2257
2197
|
} | undefined;
|
|
2258
2198
|
} | undefined;
|
|
2259
|
-
readonly hidden?: boolean | undefined;
|
|
2260
2199
|
readonly sortable?: boolean | undefined;
|
|
2261
2200
|
readonly inlineHelpText?: string | undefined;
|
|
2262
2201
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -2283,10 +2222,12 @@ declare const securityObjects: ((Omit<{
|
|
|
2283
2222
|
readonly dependencies?: string[] | undefined;
|
|
2284
2223
|
readonly theme?: string | undefined;
|
|
2285
2224
|
readonly externalId?: boolean | undefined;
|
|
2225
|
+
readonly defaultValue?: unknown;
|
|
2226
|
+
readonly group?: string | undefined;
|
|
2227
|
+
readonly hidden?: boolean | undefined;
|
|
2286
2228
|
readonly system?: boolean | undefined;
|
|
2287
2229
|
readonly min?: number | undefined;
|
|
2288
2230
|
readonly max?: number | undefined;
|
|
2289
|
-
readonly group?: string | undefined;
|
|
2290
2231
|
readonly encryptionConfig?: {
|
|
2291
2232
|
enabled: boolean;
|
|
2292
2233
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -2307,7 +2248,6 @@ declare const securityObjects: ((Omit<{
|
|
|
2307
2248
|
readonly columnName?: string | undefined;
|
|
2308
2249
|
readonly searchable?: boolean | undefined;
|
|
2309
2250
|
readonly unique?: boolean | undefined;
|
|
2310
|
-
readonly defaultValue?: unknown;
|
|
2311
2251
|
readonly maxLength?: number | undefined;
|
|
2312
2252
|
readonly minLength?: number | undefined;
|
|
2313
2253
|
readonly scale?: number | undefined;
|
|
@@ -2431,7 +2371,6 @@ declare const securityObjects: ((Omit<{
|
|
|
2431
2371
|
generatedBy?: string | undefined;
|
|
2432
2372
|
} | undefined;
|
|
2433
2373
|
} | undefined;
|
|
2434
|
-
readonly hidden?: boolean | undefined;
|
|
2435
2374
|
readonly sortable?: boolean | undefined;
|
|
2436
2375
|
readonly inlineHelpText?: string | undefined;
|
|
2437
2376
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -2458,10 +2397,12 @@ declare const securityObjects: ((Omit<{
|
|
|
2458
2397
|
readonly dependencies?: string[] | undefined;
|
|
2459
2398
|
readonly theme?: string | undefined;
|
|
2460
2399
|
readonly externalId?: boolean | undefined;
|
|
2400
|
+
readonly defaultValue?: unknown;
|
|
2401
|
+
readonly group?: string | undefined;
|
|
2402
|
+
readonly hidden?: boolean | undefined;
|
|
2461
2403
|
readonly system?: boolean | undefined;
|
|
2462
2404
|
readonly min?: number | undefined;
|
|
2463
2405
|
readonly max?: number | undefined;
|
|
2464
|
-
readonly group?: string | undefined;
|
|
2465
2406
|
readonly encryptionConfig?: {
|
|
2466
2407
|
enabled: boolean;
|
|
2467
2408
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -2482,7 +2423,6 @@ declare const securityObjects: ((Omit<{
|
|
|
2482
2423
|
readonly columnName?: string | undefined;
|
|
2483
2424
|
readonly searchable?: boolean | undefined;
|
|
2484
2425
|
readonly unique?: boolean | undefined;
|
|
2485
|
-
readonly defaultValue?: unknown;
|
|
2486
2426
|
readonly maxLength?: number | undefined;
|
|
2487
2427
|
readonly minLength?: number | undefined;
|
|
2488
2428
|
readonly scale?: number | undefined;
|
|
@@ -2606,7 +2546,6 @@ declare const securityObjects: ((Omit<{
|
|
|
2606
2546
|
generatedBy?: string | undefined;
|
|
2607
2547
|
} | undefined;
|
|
2608
2548
|
} | undefined;
|
|
2609
|
-
readonly hidden?: boolean | undefined;
|
|
2610
2549
|
readonly sortable?: boolean | undefined;
|
|
2611
2550
|
readonly inlineHelpText?: string | undefined;
|
|
2612
2551
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -2633,10 +2572,12 @@ declare const securityObjects: ((Omit<{
|
|
|
2633
2572
|
readonly dependencies?: string[] | undefined;
|
|
2634
2573
|
readonly theme?: string | undefined;
|
|
2635
2574
|
readonly externalId?: boolean | undefined;
|
|
2575
|
+
readonly defaultValue?: unknown;
|
|
2576
|
+
readonly group?: string | undefined;
|
|
2577
|
+
readonly hidden?: boolean | undefined;
|
|
2636
2578
|
readonly system?: boolean | undefined;
|
|
2637
2579
|
readonly min?: number | undefined;
|
|
2638
2580
|
readonly max?: number | undefined;
|
|
2639
|
-
readonly group?: string | undefined;
|
|
2640
2581
|
readonly encryptionConfig?: {
|
|
2641
2582
|
enabled: boolean;
|
|
2642
2583
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -2657,7 +2598,6 @@ declare const securityObjects: ((Omit<{
|
|
|
2657
2598
|
readonly columnName?: string | undefined;
|
|
2658
2599
|
readonly searchable?: boolean | undefined;
|
|
2659
2600
|
readonly unique?: boolean | undefined;
|
|
2660
|
-
readonly defaultValue?: unknown;
|
|
2661
2601
|
readonly maxLength?: number | undefined;
|
|
2662
2602
|
readonly minLength?: number | undefined;
|
|
2663
2603
|
readonly scale?: number | undefined;
|
|
@@ -2781,7 +2721,6 @@ declare const securityObjects: ((Omit<{
|
|
|
2781
2721
|
generatedBy?: string | undefined;
|
|
2782
2722
|
} | undefined;
|
|
2783
2723
|
} | undefined;
|
|
2784
|
-
readonly hidden?: boolean | undefined;
|
|
2785
2724
|
readonly sortable?: boolean | undefined;
|
|
2786
2725
|
readonly inlineHelpText?: string | undefined;
|
|
2787
2726
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -2812,7 +2751,7 @@ declare const securityObjects: ((Omit<{
|
|
|
2812
2751
|
abstract: boolean;
|
|
2813
2752
|
datasource: string;
|
|
2814
2753
|
fields: Record<string, {
|
|
2815
|
-
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "
|
|
2754
|
+
type: "number" | "boolean" | "tags" | "select" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
2816
2755
|
required: boolean;
|
|
2817
2756
|
searchable: boolean;
|
|
2818
2757
|
multiple: boolean;
|
|
@@ -2865,7 +2804,7 @@ declare const securityObjects: ((Omit<{
|
|
|
2865
2804
|
summaryOperations?: {
|
|
2866
2805
|
object: string;
|
|
2867
2806
|
field: string;
|
|
2868
|
-
function: "
|
|
2807
|
+
function: "count" | "min" | "max" | "sum" | "avg";
|
|
2869
2808
|
} | undefined;
|
|
2870
2809
|
language?: string | undefined;
|
|
2871
2810
|
theme?: string | undefined;
|
|
@@ -2951,7 +2890,7 @@ declare const securityObjects: ((Omit<{
|
|
|
2951
2890
|
autoRotate: boolean;
|
|
2952
2891
|
} | undefined;
|
|
2953
2892
|
};
|
|
2954
|
-
scope: "
|
|
2893
|
+
scope: "field" | "record" | "table" | "database";
|
|
2955
2894
|
deterministicEncryption: boolean;
|
|
2956
2895
|
searchableEncryption: boolean;
|
|
2957
2896
|
} | undefined;
|
|
@@ -3027,6 +2966,14 @@ declare const securityObjects: ((Omit<{
|
|
|
3027
2966
|
owner?: boolean | undefined;
|
|
3028
2967
|
audit?: boolean | undefined;
|
|
3029
2968
|
} | undefined;
|
|
2969
|
+
external?: {
|
|
2970
|
+
writable: boolean;
|
|
2971
|
+
remoteName?: string | undefined;
|
|
2972
|
+
remoteSchema?: string | undefined;
|
|
2973
|
+
columnMap?: Record<string, string> | undefined;
|
|
2974
|
+
introspectedAt?: string | undefined;
|
|
2975
|
+
ignoreColumns?: string[] | undefined;
|
|
2976
|
+
} | undefined;
|
|
3030
2977
|
indexes?: {
|
|
3031
2978
|
fields: string[];
|
|
3032
2979
|
type: "hash" | "btree" | "gin" | "gist" | "fulltext";
|
|
@@ -3083,40 +3030,10 @@ declare const securityObjects: ((Omit<{
|
|
|
3083
3030
|
} | undefined;
|
|
3084
3031
|
cdc?: {
|
|
3085
3032
|
enabled: boolean;
|
|
3086
|
-
events: ("
|
|
3033
|
+
events: ("insert" | "update" | "delete")[];
|
|
3087
3034
|
destination: string;
|
|
3088
3035
|
} | undefined;
|
|
3089
3036
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
3090
|
-
stateMachines?: Record<string, {
|
|
3091
|
-
id: string;
|
|
3092
|
-
initial: string;
|
|
3093
|
-
states: Record<string, StateNodeConfig>;
|
|
3094
|
-
description?: string | undefined;
|
|
3095
|
-
contextSchema?: Record<string, unknown> | undefined;
|
|
3096
|
-
on?: Record<string, string | {
|
|
3097
|
-
target?: string | undefined;
|
|
3098
|
-
cond?: string | {
|
|
3099
|
-
type: string;
|
|
3100
|
-
params?: Record<string, unknown> | undefined;
|
|
3101
|
-
} | undefined;
|
|
3102
|
-
actions?: (string | {
|
|
3103
|
-
type: string;
|
|
3104
|
-
params?: Record<string, unknown> | undefined;
|
|
3105
|
-
})[] | undefined;
|
|
3106
|
-
description?: string | undefined;
|
|
3107
|
-
} | {
|
|
3108
|
-
target?: string | undefined;
|
|
3109
|
-
cond?: string | {
|
|
3110
|
-
type: string;
|
|
3111
|
-
params?: Record<string, unknown> | undefined;
|
|
3112
|
-
} | undefined;
|
|
3113
|
-
actions?: (string | {
|
|
3114
|
-
type: string;
|
|
3115
|
-
params?: Record<string, unknown> | undefined;
|
|
3116
|
-
})[] | undefined;
|
|
3117
|
-
description?: string | undefined;
|
|
3118
|
-
}[]> | undefined;
|
|
3119
|
-
}> | undefined;
|
|
3120
3037
|
displayNameField?: string | undefined;
|
|
3121
3038
|
recordName?: {
|
|
3122
3039
|
type: "text" | "autonumber";
|
|
@@ -3142,7 +3059,7 @@ declare const securityObjects: ((Omit<{
|
|
|
3142
3059
|
} | undefined;
|
|
3143
3060
|
compactLayout?: string[] | undefined;
|
|
3144
3061
|
listViews?: Record<string, {
|
|
3145
|
-
type: "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "
|
|
3062
|
+
type: "map" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "grid";
|
|
3146
3063
|
columns: string[] | {
|
|
3147
3064
|
field: string;
|
|
3148
3065
|
label?: string | undefined;
|
|
@@ -3154,7 +3071,7 @@ declare const securityObjects: ((Omit<{
|
|
|
3154
3071
|
wrap?: boolean | undefined;
|
|
3155
3072
|
type?: string | undefined;
|
|
3156
3073
|
pinned?: "left" | "right" | undefined;
|
|
3157
|
-
summary?: "
|
|
3074
|
+
summary?: "count" | "none" | "min" | "max" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
3158
3075
|
link?: boolean | undefined;
|
|
3159
3076
|
action?: string | undefined;
|
|
3160
3077
|
}[];
|
|
@@ -3206,7 +3123,7 @@ declare const securityObjects: ((Omit<{
|
|
|
3206
3123
|
type: "none" | "multiple" | "single";
|
|
3207
3124
|
} | undefined;
|
|
3208
3125
|
navigation?: {
|
|
3209
|
-
mode: "none" | "split" | "page" | "
|
|
3126
|
+
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
3210
3127
|
preventNavigation: boolean;
|
|
3211
3128
|
openNewTab: boolean;
|
|
3212
3129
|
view?: string | undefined;
|
|
@@ -3253,7 +3170,7 @@ declare const securityObjects: ((Omit<{
|
|
|
3253
3170
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
3254
3171
|
xAxisField: string;
|
|
3255
3172
|
yAxisFields: string[];
|
|
3256
|
-
aggregation?: "
|
|
3173
|
+
aggregation?: "count" | "min" | "max" | "sum" | "avg" | undefined;
|
|
3257
3174
|
groupByField?: string | undefined;
|
|
3258
3175
|
} | undefined;
|
|
3259
3176
|
description?: string | undefined;
|
|
@@ -3311,7 +3228,7 @@ declare const securityObjects: ((Omit<{
|
|
|
3311
3228
|
} | undefined;
|
|
3312
3229
|
appearance?: {
|
|
3313
3230
|
showDescription: boolean;
|
|
3314
|
-
allowedVisualizations?: ("kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "
|
|
3231
|
+
allowedVisualizations?: ("map" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "grid")[] | undefined;
|
|
3315
3232
|
} | undefined;
|
|
3316
3233
|
tabs?: {
|
|
3317
3234
|
name: string;
|
|
@@ -3355,7 +3272,7 @@ declare const securityObjects: ((Omit<{
|
|
|
3355
3272
|
md?: number | undefined;
|
|
3356
3273
|
lg?: number | undefined;
|
|
3357
3274
|
xl?: number | undefined;
|
|
3358
|
-
|
|
3275
|
+
'2xl'?: number | undefined;
|
|
3359
3276
|
} | undefined;
|
|
3360
3277
|
order?: {
|
|
3361
3278
|
xs?: number | undefined;
|
|
@@ -3363,7 +3280,7 @@ declare const securityObjects: ((Omit<{
|
|
|
3363
3280
|
md?: number | undefined;
|
|
3364
3281
|
lg?: number | undefined;
|
|
3365
3282
|
xl?: number | undefined;
|
|
3366
|
-
|
|
3283
|
+
'2xl'?: number | undefined;
|
|
3367
3284
|
} | undefined;
|
|
3368
3285
|
} | undefined;
|
|
3369
3286
|
performance?: {
|
|
@@ -3395,7 +3312,7 @@ declare const securityObjects: ((Omit<{
|
|
|
3395
3312
|
trash: boolean;
|
|
3396
3313
|
mru: boolean;
|
|
3397
3314
|
clone: boolean;
|
|
3398
|
-
apiMethods?: ("
|
|
3315
|
+
apiMethods?: ("aggregate" | "update" | "delete" | "search" | "create" | "import" | "list" | "get" | "upsert" | "bulk" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
3399
3316
|
} | undefined;
|
|
3400
3317
|
recordTypes?: string[] | undefined;
|
|
3401
3318
|
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
@@ -3441,7 +3358,7 @@ declare const securityObjects: ((Omit<{
|
|
|
3441
3358
|
field?: string | undefined;
|
|
3442
3359
|
objectOverride?: string | undefined;
|
|
3443
3360
|
label?: string | undefined;
|
|
3444
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "
|
|
3361
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
3445
3362
|
options?: {
|
|
3446
3363
|
label: string;
|
|
3447
3364
|
value: string;
|
|
@@ -3493,7 +3410,7 @@ declare const securityObjects: ((Omit<{
|
|
|
3493
3410
|
} | undefined;
|
|
3494
3411
|
method?: "POST" | "PATCH" | "PUT" | "DELETE" | undefined;
|
|
3495
3412
|
bodyExtra?: Record<string, unknown> | undefined;
|
|
3496
|
-
mode?: "custom" | "delete" | "
|
|
3413
|
+
mode?: "custom" | "delete" | "edit" | "create" | undefined;
|
|
3497
3414
|
timeout?: number | undefined;
|
|
3498
3415
|
aria?: {
|
|
3499
3416
|
ariaLabel?: string | undefined;
|
|
@@ -3515,7 +3432,7 @@ declare const securityObjects: ((Omit<{
|
|
|
3515
3432
|
readonly managedBy: "config";
|
|
3516
3433
|
readonly protection: {
|
|
3517
3434
|
readonly lock: "no-overlay";
|
|
3518
|
-
readonly reason: "RBAC schema is platform-defined
|
|
3435
|
+
readonly reason: "RBAC schema is platform-defined — see ADR-0010.";
|
|
3519
3436
|
readonly docsUrl: "https://docs.objectstack.ai/adr/0010-metadata-protection";
|
|
3520
3437
|
};
|
|
3521
3438
|
readonly description: "Named permission groupings for fine-grained access control";
|
|
@@ -3672,10 +3589,12 @@ declare const securityObjects: ((Omit<{
|
|
|
3672
3589
|
readonly dependencies?: string[] | undefined;
|
|
3673
3590
|
readonly theme?: string | undefined;
|
|
3674
3591
|
readonly externalId?: boolean | undefined;
|
|
3592
|
+
readonly defaultValue?: unknown;
|
|
3593
|
+
readonly group?: string | undefined;
|
|
3594
|
+
readonly hidden?: boolean | undefined;
|
|
3675
3595
|
readonly system?: boolean | undefined;
|
|
3676
3596
|
readonly min?: number | undefined;
|
|
3677
3597
|
readonly max?: number | undefined;
|
|
3678
|
-
readonly group?: string | undefined;
|
|
3679
3598
|
readonly encryptionConfig?: {
|
|
3680
3599
|
enabled: boolean;
|
|
3681
3600
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -3696,7 +3615,6 @@ declare const securityObjects: ((Omit<{
|
|
|
3696
3615
|
readonly columnName?: string | undefined;
|
|
3697
3616
|
readonly searchable?: boolean | undefined;
|
|
3698
3617
|
readonly unique?: boolean | undefined;
|
|
3699
|
-
readonly defaultValue?: unknown;
|
|
3700
3618
|
readonly maxLength?: number | undefined;
|
|
3701
3619
|
readonly minLength?: number | undefined;
|
|
3702
3620
|
readonly scale?: number | undefined;
|
|
@@ -3820,7 +3738,6 @@ declare const securityObjects: ((Omit<{
|
|
|
3820
3738
|
generatedBy?: string | undefined;
|
|
3821
3739
|
} | undefined;
|
|
3822
3740
|
} | undefined;
|
|
3823
|
-
readonly hidden?: boolean | undefined;
|
|
3824
3741
|
readonly sortable?: boolean | undefined;
|
|
3825
3742
|
readonly inlineHelpText?: string | undefined;
|
|
3826
3743
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -3847,10 +3764,12 @@ declare const securityObjects: ((Omit<{
|
|
|
3847
3764
|
readonly dependencies?: string[] | undefined;
|
|
3848
3765
|
readonly theme?: string | undefined;
|
|
3849
3766
|
readonly externalId?: boolean | undefined;
|
|
3767
|
+
readonly defaultValue?: unknown;
|
|
3768
|
+
readonly group?: string | undefined;
|
|
3769
|
+
readonly hidden?: boolean | undefined;
|
|
3850
3770
|
readonly system?: boolean | undefined;
|
|
3851
3771
|
readonly min?: number | undefined;
|
|
3852
3772
|
readonly max?: number | undefined;
|
|
3853
|
-
readonly group?: string | undefined;
|
|
3854
3773
|
readonly encryptionConfig?: {
|
|
3855
3774
|
enabled: boolean;
|
|
3856
3775
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -3871,7 +3790,6 @@ declare const securityObjects: ((Omit<{
|
|
|
3871
3790
|
readonly columnName?: string | undefined;
|
|
3872
3791
|
readonly searchable?: boolean | undefined;
|
|
3873
3792
|
readonly unique?: boolean | undefined;
|
|
3874
|
-
readonly defaultValue?: unknown;
|
|
3875
3793
|
readonly maxLength?: number | undefined;
|
|
3876
3794
|
readonly minLength?: number | undefined;
|
|
3877
3795
|
readonly scale?: number | undefined;
|
|
@@ -3995,7 +3913,6 @@ declare const securityObjects: ((Omit<{
|
|
|
3995
3913
|
generatedBy?: string | undefined;
|
|
3996
3914
|
} | undefined;
|
|
3997
3915
|
} | undefined;
|
|
3998
|
-
readonly hidden?: boolean | undefined;
|
|
3999
3916
|
readonly sortable?: boolean | undefined;
|
|
4000
3917
|
readonly inlineHelpText?: string | undefined;
|
|
4001
3918
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -4022,10 +3939,12 @@ declare const securityObjects: ((Omit<{
|
|
|
4022
3939
|
readonly dependencies?: string[] | undefined;
|
|
4023
3940
|
readonly theme?: string | undefined;
|
|
4024
3941
|
readonly externalId?: boolean | undefined;
|
|
3942
|
+
readonly defaultValue?: unknown;
|
|
3943
|
+
readonly group?: string | undefined;
|
|
3944
|
+
readonly hidden?: boolean | undefined;
|
|
4025
3945
|
readonly system?: boolean | undefined;
|
|
4026
3946
|
readonly min?: number | undefined;
|
|
4027
3947
|
readonly max?: number | undefined;
|
|
4028
|
-
readonly group?: string | undefined;
|
|
4029
3948
|
readonly encryptionConfig?: {
|
|
4030
3949
|
enabled: boolean;
|
|
4031
3950
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -4046,7 +3965,6 @@ declare const securityObjects: ((Omit<{
|
|
|
4046
3965
|
readonly columnName?: string | undefined;
|
|
4047
3966
|
readonly searchable?: boolean | undefined;
|
|
4048
3967
|
readonly unique?: boolean | undefined;
|
|
4049
|
-
readonly defaultValue?: unknown;
|
|
4050
3968
|
readonly maxLength?: number | undefined;
|
|
4051
3969
|
readonly minLength?: number | undefined;
|
|
4052
3970
|
readonly scale?: number | undefined;
|
|
@@ -4170,7 +4088,6 @@ declare const securityObjects: ((Omit<{
|
|
|
4170
4088
|
generatedBy?: string | undefined;
|
|
4171
4089
|
} | undefined;
|
|
4172
4090
|
} | undefined;
|
|
4173
|
-
readonly hidden?: boolean | undefined;
|
|
4174
4091
|
readonly sortable?: boolean | undefined;
|
|
4175
4092
|
readonly inlineHelpText?: string | undefined;
|
|
4176
4093
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -4197,10 +4114,12 @@ declare const securityObjects: ((Omit<{
|
|
|
4197
4114
|
readonly dependencies?: string[] | undefined;
|
|
4198
4115
|
readonly theme?: string | undefined;
|
|
4199
4116
|
readonly externalId?: boolean | undefined;
|
|
4117
|
+
readonly defaultValue?: unknown;
|
|
4118
|
+
readonly group?: string | undefined;
|
|
4119
|
+
readonly hidden?: boolean | undefined;
|
|
4200
4120
|
readonly system?: boolean | undefined;
|
|
4201
4121
|
readonly min?: number | undefined;
|
|
4202
4122
|
readonly max?: number | undefined;
|
|
4203
|
-
readonly group?: string | undefined;
|
|
4204
4123
|
readonly encryptionConfig?: {
|
|
4205
4124
|
enabled: boolean;
|
|
4206
4125
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -4221,7 +4140,6 @@ declare const securityObjects: ((Omit<{
|
|
|
4221
4140
|
readonly columnName?: string | undefined;
|
|
4222
4141
|
readonly searchable?: boolean | undefined;
|
|
4223
4142
|
readonly unique?: boolean | undefined;
|
|
4224
|
-
readonly defaultValue?: unknown;
|
|
4225
4143
|
readonly maxLength?: number | undefined;
|
|
4226
4144
|
readonly minLength?: number | undefined;
|
|
4227
4145
|
readonly scale?: number | undefined;
|
|
@@ -4345,7 +4263,6 @@ declare const securityObjects: ((Omit<{
|
|
|
4345
4263
|
generatedBy?: string | undefined;
|
|
4346
4264
|
} | undefined;
|
|
4347
4265
|
} | undefined;
|
|
4348
|
-
readonly hidden?: boolean | undefined;
|
|
4349
4266
|
readonly sortable?: boolean | undefined;
|
|
4350
4267
|
readonly inlineHelpText?: string | undefined;
|
|
4351
4268
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -4372,10 +4289,12 @@ declare const securityObjects: ((Omit<{
|
|
|
4372
4289
|
readonly dependencies?: string[] | undefined;
|
|
4373
4290
|
readonly theme?: string | undefined;
|
|
4374
4291
|
readonly externalId?: boolean | undefined;
|
|
4292
|
+
readonly defaultValue?: unknown;
|
|
4293
|
+
readonly group?: string | undefined;
|
|
4294
|
+
readonly hidden?: boolean | undefined;
|
|
4375
4295
|
readonly system?: boolean | undefined;
|
|
4376
4296
|
readonly min?: number | undefined;
|
|
4377
4297
|
readonly max?: number | undefined;
|
|
4378
|
-
readonly group?: string | undefined;
|
|
4379
4298
|
readonly encryptionConfig?: {
|
|
4380
4299
|
enabled: boolean;
|
|
4381
4300
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -4396,7 +4315,6 @@ declare const securityObjects: ((Omit<{
|
|
|
4396
4315
|
readonly columnName?: string | undefined;
|
|
4397
4316
|
readonly searchable?: boolean | undefined;
|
|
4398
4317
|
readonly unique?: boolean | undefined;
|
|
4399
|
-
readonly defaultValue?: unknown;
|
|
4400
4318
|
readonly maxLength?: number | undefined;
|
|
4401
4319
|
readonly minLength?: number | undefined;
|
|
4402
4320
|
readonly scale?: number | undefined;
|
|
@@ -4520,7 +4438,6 @@ declare const securityObjects: ((Omit<{
|
|
|
4520
4438
|
generatedBy?: string | undefined;
|
|
4521
4439
|
} | undefined;
|
|
4522
4440
|
} | undefined;
|
|
4523
|
-
readonly hidden?: boolean | undefined;
|
|
4524
4441
|
readonly sortable?: boolean | undefined;
|
|
4525
4442
|
readonly inlineHelpText?: string | undefined;
|
|
4526
4443
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -4547,10 +4464,12 @@ declare const securityObjects: ((Omit<{
|
|
|
4547
4464
|
readonly dependencies?: string[] | undefined;
|
|
4548
4465
|
readonly theme?: string | undefined;
|
|
4549
4466
|
readonly externalId?: boolean | undefined;
|
|
4467
|
+
readonly defaultValue?: unknown;
|
|
4468
|
+
readonly group?: string | undefined;
|
|
4469
|
+
readonly hidden?: boolean | undefined;
|
|
4550
4470
|
readonly system?: boolean | undefined;
|
|
4551
4471
|
readonly min?: number | undefined;
|
|
4552
4472
|
readonly max?: number | undefined;
|
|
4553
|
-
readonly group?: string | undefined;
|
|
4554
4473
|
readonly encryptionConfig?: {
|
|
4555
4474
|
enabled: boolean;
|
|
4556
4475
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -4571,7 +4490,6 @@ declare const securityObjects: ((Omit<{
|
|
|
4571
4490
|
readonly columnName?: string | undefined;
|
|
4572
4491
|
readonly searchable?: boolean | undefined;
|
|
4573
4492
|
readonly unique?: boolean | undefined;
|
|
4574
|
-
readonly defaultValue?: unknown;
|
|
4575
4493
|
readonly maxLength?: number | undefined;
|
|
4576
4494
|
readonly minLength?: number | undefined;
|
|
4577
4495
|
readonly scale?: number | undefined;
|
|
@@ -4695,7 +4613,6 @@ declare const securityObjects: ((Omit<{
|
|
|
4695
4613
|
generatedBy?: string | undefined;
|
|
4696
4614
|
} | undefined;
|
|
4697
4615
|
} | undefined;
|
|
4698
|
-
readonly hidden?: boolean | undefined;
|
|
4699
4616
|
readonly sortable?: boolean | undefined;
|
|
4700
4617
|
readonly inlineHelpText?: string | undefined;
|
|
4701
4618
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -4722,10 +4639,12 @@ declare const securityObjects: ((Omit<{
|
|
|
4722
4639
|
readonly dependencies?: string[] | undefined;
|
|
4723
4640
|
readonly theme?: string | undefined;
|
|
4724
4641
|
readonly externalId?: boolean | undefined;
|
|
4642
|
+
readonly defaultValue?: unknown;
|
|
4643
|
+
readonly group?: string | undefined;
|
|
4644
|
+
readonly hidden?: boolean | undefined;
|
|
4725
4645
|
readonly system?: boolean | undefined;
|
|
4726
4646
|
readonly min?: number | undefined;
|
|
4727
4647
|
readonly max?: number | undefined;
|
|
4728
|
-
readonly group?: string | undefined;
|
|
4729
4648
|
readonly encryptionConfig?: {
|
|
4730
4649
|
enabled: boolean;
|
|
4731
4650
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -4746,7 +4665,6 @@ declare const securityObjects: ((Omit<{
|
|
|
4746
4665
|
readonly columnName?: string | undefined;
|
|
4747
4666
|
readonly searchable?: boolean | undefined;
|
|
4748
4667
|
readonly unique?: boolean | undefined;
|
|
4749
|
-
readonly defaultValue?: unknown;
|
|
4750
4668
|
readonly maxLength?: number | undefined;
|
|
4751
4669
|
readonly minLength?: number | undefined;
|
|
4752
4670
|
readonly scale?: number | undefined;
|
|
@@ -4870,7 +4788,6 @@ declare const securityObjects: ((Omit<{
|
|
|
4870
4788
|
generatedBy?: string | undefined;
|
|
4871
4789
|
} | undefined;
|
|
4872
4790
|
} | undefined;
|
|
4873
|
-
readonly hidden?: boolean | undefined;
|
|
4874
4791
|
readonly sortable?: boolean | undefined;
|
|
4875
4792
|
readonly inlineHelpText?: string | undefined;
|
|
4876
4793
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -4897,10 +4814,12 @@ declare const securityObjects: ((Omit<{
|
|
|
4897
4814
|
readonly dependencies?: string[] | undefined;
|
|
4898
4815
|
readonly theme?: string | undefined;
|
|
4899
4816
|
readonly externalId?: boolean | undefined;
|
|
4817
|
+
readonly defaultValue?: unknown;
|
|
4818
|
+
readonly group?: string | undefined;
|
|
4819
|
+
readonly hidden?: boolean | undefined;
|
|
4900
4820
|
readonly system?: boolean | undefined;
|
|
4901
4821
|
readonly min?: number | undefined;
|
|
4902
4822
|
readonly max?: number | undefined;
|
|
4903
|
-
readonly group?: string | undefined;
|
|
4904
4823
|
readonly encryptionConfig?: {
|
|
4905
4824
|
enabled: boolean;
|
|
4906
4825
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -4921,7 +4840,6 @@ declare const securityObjects: ((Omit<{
|
|
|
4921
4840
|
readonly columnName?: string | undefined;
|
|
4922
4841
|
readonly searchable?: boolean | undefined;
|
|
4923
4842
|
readonly unique?: boolean | undefined;
|
|
4924
|
-
readonly defaultValue?: unknown;
|
|
4925
4843
|
readonly maxLength?: number | undefined;
|
|
4926
4844
|
readonly minLength?: number | undefined;
|
|
4927
4845
|
readonly scale?: number | undefined;
|
|
@@ -5045,7 +4963,6 @@ declare const securityObjects: ((Omit<{
|
|
|
5045
4963
|
generatedBy?: string | undefined;
|
|
5046
4964
|
} | undefined;
|
|
5047
4965
|
} | undefined;
|
|
5048
|
-
readonly hidden?: boolean | undefined;
|
|
5049
4966
|
readonly sortable?: boolean | undefined;
|
|
5050
4967
|
readonly inlineHelpText?: string | undefined;
|
|
5051
4968
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -5072,10 +4989,12 @@ declare const securityObjects: ((Omit<{
|
|
|
5072
4989
|
readonly dependencies?: string[] | undefined;
|
|
5073
4990
|
readonly theme?: string | undefined;
|
|
5074
4991
|
readonly externalId?: boolean | undefined;
|
|
4992
|
+
readonly defaultValue?: unknown;
|
|
4993
|
+
readonly group?: string | undefined;
|
|
4994
|
+
readonly hidden?: boolean | undefined;
|
|
5075
4995
|
readonly system?: boolean | undefined;
|
|
5076
4996
|
readonly min?: number | undefined;
|
|
5077
4997
|
readonly max?: number | undefined;
|
|
5078
|
-
readonly group?: string | undefined;
|
|
5079
4998
|
readonly encryptionConfig?: {
|
|
5080
4999
|
enabled: boolean;
|
|
5081
5000
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -5096,7 +5015,6 @@ declare const securityObjects: ((Omit<{
|
|
|
5096
5015
|
readonly columnName?: string | undefined;
|
|
5097
5016
|
readonly searchable?: boolean | undefined;
|
|
5098
5017
|
readonly unique?: boolean | undefined;
|
|
5099
|
-
readonly defaultValue?: unknown;
|
|
5100
5018
|
readonly maxLength?: number | undefined;
|
|
5101
5019
|
readonly minLength?: number | undefined;
|
|
5102
5020
|
readonly scale?: number | undefined;
|
|
@@ -5220,7 +5138,6 @@ declare const securityObjects: ((Omit<{
|
|
|
5220
5138
|
generatedBy?: string | undefined;
|
|
5221
5139
|
} | undefined;
|
|
5222
5140
|
} | undefined;
|
|
5223
|
-
readonly hidden?: boolean | undefined;
|
|
5224
5141
|
readonly sortable?: boolean | undefined;
|
|
5225
5142
|
readonly inlineHelpText?: string | undefined;
|
|
5226
5143
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -5247,10 +5164,12 @@ declare const securityObjects: ((Omit<{
|
|
|
5247
5164
|
readonly dependencies?: string[] | undefined;
|
|
5248
5165
|
readonly theme?: string | undefined;
|
|
5249
5166
|
readonly externalId?: boolean | undefined;
|
|
5167
|
+
readonly defaultValue?: unknown;
|
|
5168
|
+
readonly group?: string | undefined;
|
|
5169
|
+
readonly hidden?: boolean | undefined;
|
|
5250
5170
|
readonly system?: boolean | undefined;
|
|
5251
5171
|
readonly min?: number | undefined;
|
|
5252
5172
|
readonly max?: number | undefined;
|
|
5253
|
-
readonly group?: string | undefined;
|
|
5254
5173
|
readonly encryptionConfig?: {
|
|
5255
5174
|
enabled: boolean;
|
|
5256
5175
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -5271,7 +5190,6 @@ declare const securityObjects: ((Omit<{
|
|
|
5271
5190
|
readonly columnName?: string | undefined;
|
|
5272
5191
|
readonly searchable?: boolean | undefined;
|
|
5273
5192
|
readonly unique?: boolean | undefined;
|
|
5274
|
-
readonly defaultValue?: unknown;
|
|
5275
5193
|
readonly maxLength?: number | undefined;
|
|
5276
5194
|
readonly minLength?: number | undefined;
|
|
5277
5195
|
readonly scale?: number | undefined;
|
|
@@ -5395,7 +5313,6 @@ declare const securityObjects: ((Omit<{
|
|
|
5395
5313
|
generatedBy?: string | undefined;
|
|
5396
5314
|
} | undefined;
|
|
5397
5315
|
} | undefined;
|
|
5398
|
-
readonly hidden?: boolean | undefined;
|
|
5399
5316
|
readonly sortable?: boolean | undefined;
|
|
5400
5317
|
readonly inlineHelpText?: string | undefined;
|
|
5401
5318
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -5422,10 +5339,12 @@ declare const securityObjects: ((Omit<{
|
|
|
5422
5339
|
readonly dependencies?: string[] | undefined;
|
|
5423
5340
|
readonly theme?: string | undefined;
|
|
5424
5341
|
readonly externalId?: boolean | undefined;
|
|
5342
|
+
readonly defaultValue?: unknown;
|
|
5343
|
+
readonly group?: string | undefined;
|
|
5344
|
+
readonly hidden?: boolean | undefined;
|
|
5425
5345
|
readonly system?: boolean | undefined;
|
|
5426
5346
|
readonly min?: number | undefined;
|
|
5427
5347
|
readonly max?: number | undefined;
|
|
5428
|
-
readonly group?: string | undefined;
|
|
5429
5348
|
readonly encryptionConfig?: {
|
|
5430
5349
|
enabled: boolean;
|
|
5431
5350
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -5446,7 +5365,6 @@ declare const securityObjects: ((Omit<{
|
|
|
5446
5365
|
readonly columnName?: string | undefined;
|
|
5447
5366
|
readonly searchable?: boolean | undefined;
|
|
5448
5367
|
readonly unique?: boolean | undefined;
|
|
5449
|
-
readonly defaultValue?: unknown;
|
|
5450
5368
|
readonly maxLength?: number | undefined;
|
|
5451
5369
|
readonly minLength?: number | undefined;
|
|
5452
5370
|
readonly scale?: number | undefined;
|
|
@@ -5570,7 +5488,6 @@ declare const securityObjects: ((Omit<{
|
|
|
5570
5488
|
generatedBy?: string | undefined;
|
|
5571
5489
|
} | undefined;
|
|
5572
5490
|
} | undefined;
|
|
5573
|
-
readonly hidden?: boolean | undefined;
|
|
5574
5491
|
readonly sortable?: boolean | undefined;
|
|
5575
5492
|
readonly inlineHelpText?: string | undefined;
|
|
5576
5493
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -5597,10 +5514,12 @@ declare const securityObjects: ((Omit<{
|
|
|
5597
5514
|
readonly dependencies?: string[] | undefined;
|
|
5598
5515
|
readonly theme?: string | undefined;
|
|
5599
5516
|
readonly externalId?: boolean | undefined;
|
|
5517
|
+
readonly defaultValue?: unknown;
|
|
5518
|
+
readonly group?: string | undefined;
|
|
5519
|
+
readonly hidden?: boolean | undefined;
|
|
5600
5520
|
readonly system?: boolean | undefined;
|
|
5601
5521
|
readonly min?: number | undefined;
|
|
5602
5522
|
readonly max?: number | undefined;
|
|
5603
|
-
readonly group?: string | undefined;
|
|
5604
5523
|
readonly encryptionConfig?: {
|
|
5605
5524
|
enabled: boolean;
|
|
5606
5525
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -5621,7 +5540,6 @@ declare const securityObjects: ((Omit<{
|
|
|
5621
5540
|
readonly columnName?: string | undefined;
|
|
5622
5541
|
readonly searchable?: boolean | undefined;
|
|
5623
5542
|
readonly unique?: boolean | undefined;
|
|
5624
|
-
readonly defaultValue?: unknown;
|
|
5625
5543
|
readonly maxLength?: number | undefined;
|
|
5626
5544
|
readonly minLength?: number | undefined;
|
|
5627
5545
|
readonly scale?: number | undefined;
|
|
@@ -5745,7 +5663,6 @@ declare const securityObjects: ((Omit<{
|
|
|
5745
5663
|
generatedBy?: string | undefined;
|
|
5746
5664
|
} | undefined;
|
|
5747
5665
|
} | undefined;
|
|
5748
|
-
readonly hidden?: boolean | undefined;
|
|
5749
5666
|
readonly sortable?: boolean | undefined;
|
|
5750
5667
|
readonly inlineHelpText?: string | undefined;
|
|
5751
5668
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -5776,7 +5693,7 @@ declare const securityObjects: ((Omit<{
|
|
|
5776
5693
|
abstract: boolean;
|
|
5777
5694
|
datasource: string;
|
|
5778
5695
|
fields: Record<string, {
|
|
5779
|
-
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "
|
|
5696
|
+
type: "number" | "boolean" | "tags" | "select" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
5780
5697
|
required: boolean;
|
|
5781
5698
|
searchable: boolean;
|
|
5782
5699
|
multiple: boolean;
|
|
@@ -5829,7 +5746,7 @@ declare const securityObjects: ((Omit<{
|
|
|
5829
5746
|
summaryOperations?: {
|
|
5830
5747
|
object: string;
|
|
5831
5748
|
field: string;
|
|
5832
|
-
function: "
|
|
5749
|
+
function: "count" | "min" | "max" | "sum" | "avg";
|
|
5833
5750
|
} | undefined;
|
|
5834
5751
|
language?: string | undefined;
|
|
5835
5752
|
theme?: string | undefined;
|
|
@@ -5915,7 +5832,7 @@ declare const securityObjects: ((Omit<{
|
|
|
5915
5832
|
autoRotate: boolean;
|
|
5916
5833
|
} | undefined;
|
|
5917
5834
|
};
|
|
5918
|
-
scope: "
|
|
5835
|
+
scope: "field" | "record" | "table" | "database";
|
|
5919
5836
|
deterministicEncryption: boolean;
|
|
5920
5837
|
searchableEncryption: boolean;
|
|
5921
5838
|
} | undefined;
|
|
@@ -5991,6 +5908,14 @@ declare const securityObjects: ((Omit<{
|
|
|
5991
5908
|
owner?: boolean | undefined;
|
|
5992
5909
|
audit?: boolean | undefined;
|
|
5993
5910
|
} | undefined;
|
|
5911
|
+
external?: {
|
|
5912
|
+
writable: boolean;
|
|
5913
|
+
remoteName?: string | undefined;
|
|
5914
|
+
remoteSchema?: string | undefined;
|
|
5915
|
+
columnMap?: Record<string, string> | undefined;
|
|
5916
|
+
introspectedAt?: string | undefined;
|
|
5917
|
+
ignoreColumns?: string[] | undefined;
|
|
5918
|
+
} | undefined;
|
|
5994
5919
|
indexes?: {
|
|
5995
5920
|
fields: string[];
|
|
5996
5921
|
type: "hash" | "btree" | "gin" | "gist" | "fulltext";
|
|
@@ -6047,40 +5972,10 @@ declare const securityObjects: ((Omit<{
|
|
|
6047
5972
|
} | undefined;
|
|
6048
5973
|
cdc?: {
|
|
6049
5974
|
enabled: boolean;
|
|
6050
|
-
events: ("
|
|
5975
|
+
events: ("insert" | "update" | "delete")[];
|
|
6051
5976
|
destination: string;
|
|
6052
5977
|
} | undefined;
|
|
6053
5978
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
6054
|
-
stateMachines?: Record<string, {
|
|
6055
|
-
id: string;
|
|
6056
|
-
initial: string;
|
|
6057
|
-
states: Record<string, StateNodeConfig>;
|
|
6058
|
-
description?: string | undefined;
|
|
6059
|
-
contextSchema?: Record<string, unknown> | undefined;
|
|
6060
|
-
on?: Record<string, string | {
|
|
6061
|
-
target?: string | undefined;
|
|
6062
|
-
cond?: string | {
|
|
6063
|
-
type: string;
|
|
6064
|
-
params?: Record<string, unknown> | undefined;
|
|
6065
|
-
} | undefined;
|
|
6066
|
-
actions?: (string | {
|
|
6067
|
-
type: string;
|
|
6068
|
-
params?: Record<string, unknown> | undefined;
|
|
6069
|
-
})[] | undefined;
|
|
6070
|
-
description?: string | undefined;
|
|
6071
|
-
} | {
|
|
6072
|
-
target?: string | undefined;
|
|
6073
|
-
cond?: string | {
|
|
6074
|
-
type: string;
|
|
6075
|
-
params?: Record<string, unknown> | undefined;
|
|
6076
|
-
} | undefined;
|
|
6077
|
-
actions?: (string | {
|
|
6078
|
-
type: string;
|
|
6079
|
-
params?: Record<string, unknown> | undefined;
|
|
6080
|
-
})[] | undefined;
|
|
6081
|
-
description?: string | undefined;
|
|
6082
|
-
}[]> | undefined;
|
|
6083
|
-
}> | undefined;
|
|
6084
5979
|
displayNameField?: string | undefined;
|
|
6085
5980
|
recordName?: {
|
|
6086
5981
|
type: "text" | "autonumber";
|
|
@@ -6106,7 +6001,7 @@ declare const securityObjects: ((Omit<{
|
|
|
6106
6001
|
} | undefined;
|
|
6107
6002
|
compactLayout?: string[] | undefined;
|
|
6108
6003
|
listViews?: Record<string, {
|
|
6109
|
-
type: "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "
|
|
6004
|
+
type: "map" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "grid";
|
|
6110
6005
|
columns: string[] | {
|
|
6111
6006
|
field: string;
|
|
6112
6007
|
label?: string | undefined;
|
|
@@ -6118,7 +6013,7 @@ declare const securityObjects: ((Omit<{
|
|
|
6118
6013
|
wrap?: boolean | undefined;
|
|
6119
6014
|
type?: string | undefined;
|
|
6120
6015
|
pinned?: "left" | "right" | undefined;
|
|
6121
|
-
summary?: "
|
|
6016
|
+
summary?: "count" | "none" | "min" | "max" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
6122
6017
|
link?: boolean | undefined;
|
|
6123
6018
|
action?: string | undefined;
|
|
6124
6019
|
}[];
|
|
@@ -6170,7 +6065,7 @@ declare const securityObjects: ((Omit<{
|
|
|
6170
6065
|
type: "none" | "multiple" | "single";
|
|
6171
6066
|
} | undefined;
|
|
6172
6067
|
navigation?: {
|
|
6173
|
-
mode: "none" | "split" | "page" | "
|
|
6068
|
+
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
6174
6069
|
preventNavigation: boolean;
|
|
6175
6070
|
openNewTab: boolean;
|
|
6176
6071
|
view?: string | undefined;
|
|
@@ -6217,7 +6112,7 @@ declare const securityObjects: ((Omit<{
|
|
|
6217
6112
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
6218
6113
|
xAxisField: string;
|
|
6219
6114
|
yAxisFields: string[];
|
|
6220
|
-
aggregation?: "
|
|
6115
|
+
aggregation?: "count" | "min" | "max" | "sum" | "avg" | undefined;
|
|
6221
6116
|
groupByField?: string | undefined;
|
|
6222
6117
|
} | undefined;
|
|
6223
6118
|
description?: string | undefined;
|
|
@@ -6275,7 +6170,7 @@ declare const securityObjects: ((Omit<{
|
|
|
6275
6170
|
} | undefined;
|
|
6276
6171
|
appearance?: {
|
|
6277
6172
|
showDescription: boolean;
|
|
6278
|
-
allowedVisualizations?: ("kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "
|
|
6173
|
+
allowedVisualizations?: ("map" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "grid")[] | undefined;
|
|
6279
6174
|
} | undefined;
|
|
6280
6175
|
tabs?: {
|
|
6281
6176
|
name: string;
|
|
@@ -6319,7 +6214,7 @@ declare const securityObjects: ((Omit<{
|
|
|
6319
6214
|
md?: number | undefined;
|
|
6320
6215
|
lg?: number | undefined;
|
|
6321
6216
|
xl?: number | undefined;
|
|
6322
|
-
|
|
6217
|
+
'2xl'?: number | undefined;
|
|
6323
6218
|
} | undefined;
|
|
6324
6219
|
order?: {
|
|
6325
6220
|
xs?: number | undefined;
|
|
@@ -6327,7 +6222,7 @@ declare const securityObjects: ((Omit<{
|
|
|
6327
6222
|
md?: number | undefined;
|
|
6328
6223
|
lg?: number | undefined;
|
|
6329
6224
|
xl?: number | undefined;
|
|
6330
|
-
|
|
6225
|
+
'2xl'?: number | undefined;
|
|
6331
6226
|
} | undefined;
|
|
6332
6227
|
} | undefined;
|
|
6333
6228
|
performance?: {
|
|
@@ -6359,7 +6254,7 @@ declare const securityObjects: ((Omit<{
|
|
|
6359
6254
|
trash: boolean;
|
|
6360
6255
|
mru: boolean;
|
|
6361
6256
|
clone: boolean;
|
|
6362
|
-
apiMethods?: ("
|
|
6257
|
+
apiMethods?: ("aggregate" | "update" | "delete" | "search" | "create" | "import" | "list" | "get" | "upsert" | "bulk" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
6363
6258
|
} | undefined;
|
|
6364
6259
|
recordTypes?: string[] | undefined;
|
|
6365
6260
|
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
@@ -6405,7 +6300,7 @@ declare const securityObjects: ((Omit<{
|
|
|
6405
6300
|
field?: string | undefined;
|
|
6406
6301
|
objectOverride?: string | undefined;
|
|
6407
6302
|
label?: string | undefined;
|
|
6408
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "
|
|
6303
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
6409
6304
|
options?: {
|
|
6410
6305
|
label: string;
|
|
6411
6306
|
value: string;
|
|
@@ -6457,7 +6352,7 @@ declare const securityObjects: ((Omit<{
|
|
|
6457
6352
|
} | undefined;
|
|
6458
6353
|
method?: "POST" | "PATCH" | "PUT" | "DELETE" | undefined;
|
|
6459
6354
|
bodyExtra?: Record<string, unknown> | undefined;
|
|
6460
|
-
mode?: "custom" | "delete" | "
|
|
6355
|
+
mode?: "custom" | "delete" | "edit" | "create" | undefined;
|
|
6461
6356
|
timeout?: number | undefined;
|
|
6462
6357
|
aria?: {
|
|
6463
6358
|
ariaLabel?: string | undefined;
|
|
@@ -6478,7 +6373,7 @@ declare const securityObjects: ((Omit<{
|
|
|
6478
6373
|
readonly isSystem: true;
|
|
6479
6374
|
readonly managedBy: "system";
|
|
6480
6375
|
readonly description: "Direct assignment of a permission set to a user (optionally scoped to an organization).";
|
|
6481
|
-
readonly titleFormat: "{user_id}
|
|
6376
|
+
readonly titleFormat: "{user_id} → {permission_set_id}";
|
|
6482
6377
|
readonly compactLayout: ["user_id", "permission_set_id", "organization_id"];
|
|
6483
6378
|
readonly fields: {
|
|
6484
6379
|
readonly id: {
|
|
@@ -6499,10 +6394,12 @@ declare const securityObjects: ((Omit<{
|
|
|
6499
6394
|
readonly dependencies?: string[] | undefined;
|
|
6500
6395
|
readonly theme?: string | undefined;
|
|
6501
6396
|
readonly externalId?: boolean | undefined;
|
|
6397
|
+
readonly defaultValue?: unknown;
|
|
6398
|
+
readonly group?: string | undefined;
|
|
6399
|
+
readonly hidden?: boolean | undefined;
|
|
6502
6400
|
readonly system?: boolean | undefined;
|
|
6503
6401
|
readonly min?: number | undefined;
|
|
6504
6402
|
readonly max?: number | undefined;
|
|
6505
|
-
readonly group?: string | undefined;
|
|
6506
6403
|
readonly encryptionConfig?: {
|
|
6507
6404
|
enabled: boolean;
|
|
6508
6405
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -6523,7 +6420,6 @@ declare const securityObjects: ((Omit<{
|
|
|
6523
6420
|
readonly columnName?: string | undefined;
|
|
6524
6421
|
readonly searchable?: boolean | undefined;
|
|
6525
6422
|
readonly unique?: boolean | undefined;
|
|
6526
|
-
readonly defaultValue?: unknown;
|
|
6527
6423
|
readonly maxLength?: number | undefined;
|
|
6528
6424
|
readonly minLength?: number | undefined;
|
|
6529
6425
|
readonly scale?: number | undefined;
|
|
@@ -6647,7 +6543,6 @@ declare const securityObjects: ((Omit<{
|
|
|
6647
6543
|
generatedBy?: string | undefined;
|
|
6648
6544
|
} | undefined;
|
|
6649
6545
|
} | undefined;
|
|
6650
|
-
readonly hidden?: boolean | undefined;
|
|
6651
6546
|
readonly sortable?: boolean | undefined;
|
|
6652
6547
|
readonly inlineHelpText?: string | undefined;
|
|
6653
6548
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -6674,10 +6569,12 @@ declare const securityObjects: ((Omit<{
|
|
|
6674
6569
|
readonly dependencies?: string[] | undefined;
|
|
6675
6570
|
readonly theme?: string | undefined;
|
|
6676
6571
|
readonly externalId?: boolean | undefined;
|
|
6572
|
+
readonly defaultValue?: unknown;
|
|
6573
|
+
readonly group?: string | undefined;
|
|
6574
|
+
readonly hidden?: boolean | undefined;
|
|
6677
6575
|
readonly system?: boolean | undefined;
|
|
6678
6576
|
readonly min?: number | undefined;
|
|
6679
6577
|
readonly max?: number | undefined;
|
|
6680
|
-
readonly group?: string | undefined;
|
|
6681
6578
|
readonly encryptionConfig?: {
|
|
6682
6579
|
enabled: boolean;
|
|
6683
6580
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -6698,7 +6595,6 @@ declare const securityObjects: ((Omit<{
|
|
|
6698
6595
|
readonly columnName?: string | undefined;
|
|
6699
6596
|
readonly searchable?: boolean | undefined;
|
|
6700
6597
|
readonly unique?: boolean | undefined;
|
|
6701
|
-
readonly defaultValue?: unknown;
|
|
6702
6598
|
readonly maxLength?: number | undefined;
|
|
6703
6599
|
readonly minLength?: number | undefined;
|
|
6704
6600
|
readonly scale?: number | undefined;
|
|
@@ -6822,7 +6718,6 @@ declare const securityObjects: ((Omit<{
|
|
|
6822
6718
|
generatedBy?: string | undefined;
|
|
6823
6719
|
} | undefined;
|
|
6824
6720
|
} | undefined;
|
|
6825
|
-
readonly hidden?: boolean | undefined;
|
|
6826
6721
|
readonly sortable?: boolean | undefined;
|
|
6827
6722
|
readonly inlineHelpText?: string | undefined;
|
|
6828
6723
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -6849,10 +6744,12 @@ declare const securityObjects: ((Omit<{
|
|
|
6849
6744
|
readonly dependencies?: string[] | undefined;
|
|
6850
6745
|
readonly theme?: string | undefined;
|
|
6851
6746
|
readonly externalId?: boolean | undefined;
|
|
6747
|
+
readonly defaultValue?: unknown;
|
|
6748
|
+
readonly group?: string | undefined;
|
|
6749
|
+
readonly hidden?: boolean | undefined;
|
|
6852
6750
|
readonly system?: boolean | undefined;
|
|
6853
6751
|
readonly min?: number | undefined;
|
|
6854
6752
|
readonly max?: number | undefined;
|
|
6855
|
-
readonly group?: string | undefined;
|
|
6856
6753
|
readonly encryptionConfig?: {
|
|
6857
6754
|
enabled: boolean;
|
|
6858
6755
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -6873,7 +6770,6 @@ declare const securityObjects: ((Omit<{
|
|
|
6873
6770
|
readonly columnName?: string | undefined;
|
|
6874
6771
|
readonly searchable?: boolean | undefined;
|
|
6875
6772
|
readonly unique?: boolean | undefined;
|
|
6876
|
-
readonly defaultValue?: unknown;
|
|
6877
6773
|
readonly maxLength?: number | undefined;
|
|
6878
6774
|
readonly minLength?: number | undefined;
|
|
6879
6775
|
readonly scale?: number | undefined;
|
|
@@ -6997,7 +6893,6 @@ declare const securityObjects: ((Omit<{
|
|
|
6997
6893
|
generatedBy?: string | undefined;
|
|
6998
6894
|
} | undefined;
|
|
6999
6895
|
} | undefined;
|
|
7000
|
-
readonly hidden?: boolean | undefined;
|
|
7001
6896
|
readonly sortable?: boolean | undefined;
|
|
7002
6897
|
readonly inlineHelpText?: string | undefined;
|
|
7003
6898
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -7024,10 +6919,12 @@ declare const securityObjects: ((Omit<{
|
|
|
7024
6919
|
readonly dependencies?: string[] | undefined;
|
|
7025
6920
|
readonly theme?: string | undefined;
|
|
7026
6921
|
readonly externalId?: boolean | undefined;
|
|
6922
|
+
readonly defaultValue?: unknown;
|
|
6923
|
+
readonly group?: string | undefined;
|
|
6924
|
+
readonly hidden?: boolean | undefined;
|
|
7027
6925
|
readonly system?: boolean | undefined;
|
|
7028
6926
|
readonly min?: number | undefined;
|
|
7029
6927
|
readonly max?: number | undefined;
|
|
7030
|
-
readonly group?: string | undefined;
|
|
7031
6928
|
readonly encryptionConfig?: {
|
|
7032
6929
|
enabled: boolean;
|
|
7033
6930
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -7048,7 +6945,6 @@ declare const securityObjects: ((Omit<{
|
|
|
7048
6945
|
readonly columnName?: string | undefined;
|
|
7049
6946
|
readonly searchable?: boolean | undefined;
|
|
7050
6947
|
readonly unique?: boolean | undefined;
|
|
7051
|
-
readonly defaultValue?: unknown;
|
|
7052
6948
|
readonly maxLength?: number | undefined;
|
|
7053
6949
|
readonly minLength?: number | undefined;
|
|
7054
6950
|
readonly scale?: number | undefined;
|
|
@@ -7172,7 +7068,6 @@ declare const securityObjects: ((Omit<{
|
|
|
7172
7068
|
generatedBy?: string | undefined;
|
|
7173
7069
|
} | undefined;
|
|
7174
7070
|
} | undefined;
|
|
7175
|
-
readonly hidden?: boolean | undefined;
|
|
7176
7071
|
readonly sortable?: boolean | undefined;
|
|
7177
7072
|
readonly inlineHelpText?: string | undefined;
|
|
7178
7073
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -7199,10 +7094,12 @@ declare const securityObjects: ((Omit<{
|
|
|
7199
7094
|
readonly dependencies?: string[] | undefined;
|
|
7200
7095
|
readonly theme?: string | undefined;
|
|
7201
7096
|
readonly externalId?: boolean | undefined;
|
|
7097
|
+
readonly defaultValue?: unknown;
|
|
7098
|
+
readonly group?: string | undefined;
|
|
7099
|
+
readonly hidden?: boolean | undefined;
|
|
7202
7100
|
readonly system?: boolean | undefined;
|
|
7203
7101
|
readonly min?: number | undefined;
|
|
7204
7102
|
readonly max?: number | undefined;
|
|
7205
|
-
readonly group?: string | undefined;
|
|
7206
7103
|
readonly encryptionConfig?: {
|
|
7207
7104
|
enabled: boolean;
|
|
7208
7105
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -7223,7 +7120,6 @@ declare const securityObjects: ((Omit<{
|
|
|
7223
7120
|
readonly columnName?: string | undefined;
|
|
7224
7121
|
readonly searchable?: boolean | undefined;
|
|
7225
7122
|
readonly unique?: boolean | undefined;
|
|
7226
|
-
readonly defaultValue?: unknown;
|
|
7227
7123
|
readonly maxLength?: number | undefined;
|
|
7228
7124
|
readonly minLength?: number | undefined;
|
|
7229
7125
|
readonly scale?: number | undefined;
|
|
@@ -7347,7 +7243,6 @@ declare const securityObjects: ((Omit<{
|
|
|
7347
7243
|
generatedBy?: string | undefined;
|
|
7348
7244
|
} | undefined;
|
|
7349
7245
|
} | undefined;
|
|
7350
|
-
readonly hidden?: boolean | undefined;
|
|
7351
7246
|
readonly sortable?: boolean | undefined;
|
|
7352
7247
|
readonly inlineHelpText?: string | undefined;
|
|
7353
7248
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -7374,10 +7269,12 @@ declare const securityObjects: ((Omit<{
|
|
|
7374
7269
|
readonly dependencies?: string[] | undefined;
|
|
7375
7270
|
readonly theme?: string | undefined;
|
|
7376
7271
|
readonly externalId?: boolean | undefined;
|
|
7272
|
+
readonly defaultValue?: unknown;
|
|
7273
|
+
readonly group?: string | undefined;
|
|
7274
|
+
readonly hidden?: boolean | undefined;
|
|
7377
7275
|
readonly system?: boolean | undefined;
|
|
7378
7276
|
readonly min?: number | undefined;
|
|
7379
7277
|
readonly max?: number | undefined;
|
|
7380
|
-
readonly group?: string | undefined;
|
|
7381
7278
|
readonly encryptionConfig?: {
|
|
7382
7279
|
enabled: boolean;
|
|
7383
7280
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -7398,7 +7295,6 @@ declare const securityObjects: ((Omit<{
|
|
|
7398
7295
|
readonly columnName?: string | undefined;
|
|
7399
7296
|
readonly searchable?: boolean | undefined;
|
|
7400
7297
|
readonly unique?: boolean | undefined;
|
|
7401
|
-
readonly defaultValue?: unknown;
|
|
7402
7298
|
readonly maxLength?: number | undefined;
|
|
7403
7299
|
readonly minLength?: number | undefined;
|
|
7404
7300
|
readonly scale?: number | undefined;
|
|
@@ -7522,7 +7418,6 @@ declare const securityObjects: ((Omit<{
|
|
|
7522
7418
|
generatedBy?: string | undefined;
|
|
7523
7419
|
} | undefined;
|
|
7524
7420
|
} | undefined;
|
|
7525
|
-
readonly hidden?: boolean | undefined;
|
|
7526
7421
|
readonly sortable?: boolean | undefined;
|
|
7527
7422
|
readonly inlineHelpText?: string | undefined;
|
|
7528
7423
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -7549,10 +7444,12 @@ declare const securityObjects: ((Omit<{
|
|
|
7549
7444
|
readonly dependencies?: string[] | undefined;
|
|
7550
7445
|
readonly theme?: string | undefined;
|
|
7551
7446
|
readonly externalId?: boolean | undefined;
|
|
7447
|
+
readonly defaultValue?: unknown;
|
|
7448
|
+
readonly group?: string | undefined;
|
|
7449
|
+
readonly hidden?: boolean | undefined;
|
|
7552
7450
|
readonly system?: boolean | undefined;
|
|
7553
7451
|
readonly min?: number | undefined;
|
|
7554
7452
|
readonly max?: number | undefined;
|
|
7555
|
-
readonly group?: string | undefined;
|
|
7556
7453
|
readonly encryptionConfig?: {
|
|
7557
7454
|
enabled: boolean;
|
|
7558
7455
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -7573,7 +7470,6 @@ declare const securityObjects: ((Omit<{
|
|
|
7573
7470
|
readonly columnName?: string | undefined;
|
|
7574
7471
|
readonly searchable?: boolean | undefined;
|
|
7575
7472
|
readonly unique?: boolean | undefined;
|
|
7576
|
-
readonly defaultValue?: unknown;
|
|
7577
7473
|
readonly maxLength?: number | undefined;
|
|
7578
7474
|
readonly minLength?: number | undefined;
|
|
7579
7475
|
readonly scale?: number | undefined;
|
|
@@ -7697,7 +7593,6 @@ declare const securityObjects: ((Omit<{
|
|
|
7697
7593
|
generatedBy?: string | undefined;
|
|
7698
7594
|
} | undefined;
|
|
7699
7595
|
} | undefined;
|
|
7700
|
-
readonly hidden?: boolean | undefined;
|
|
7701
7596
|
readonly sortable?: boolean | undefined;
|
|
7702
7597
|
readonly inlineHelpText?: string | undefined;
|
|
7703
7598
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -7732,7 +7627,7 @@ declare const securityObjects: ((Omit<{
|
|
|
7732
7627
|
abstract: boolean;
|
|
7733
7628
|
datasource: string;
|
|
7734
7629
|
fields: Record<string, {
|
|
7735
|
-
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "
|
|
7630
|
+
type: "number" | "boolean" | "tags" | "select" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
7736
7631
|
required: boolean;
|
|
7737
7632
|
searchable: boolean;
|
|
7738
7633
|
multiple: boolean;
|
|
@@ -7785,7 +7680,7 @@ declare const securityObjects: ((Omit<{
|
|
|
7785
7680
|
summaryOperations?: {
|
|
7786
7681
|
object: string;
|
|
7787
7682
|
field: string;
|
|
7788
|
-
function: "
|
|
7683
|
+
function: "count" | "min" | "max" | "sum" | "avg";
|
|
7789
7684
|
} | undefined;
|
|
7790
7685
|
language?: string | undefined;
|
|
7791
7686
|
theme?: string | undefined;
|
|
@@ -7871,7 +7766,7 @@ declare const securityObjects: ((Omit<{
|
|
|
7871
7766
|
autoRotate: boolean;
|
|
7872
7767
|
} | undefined;
|
|
7873
7768
|
};
|
|
7874
|
-
scope: "
|
|
7769
|
+
scope: "field" | "record" | "table" | "database";
|
|
7875
7770
|
deterministicEncryption: boolean;
|
|
7876
7771
|
searchableEncryption: boolean;
|
|
7877
7772
|
} | undefined;
|
|
@@ -7947,6 +7842,14 @@ declare const securityObjects: ((Omit<{
|
|
|
7947
7842
|
owner?: boolean | undefined;
|
|
7948
7843
|
audit?: boolean | undefined;
|
|
7949
7844
|
} | undefined;
|
|
7845
|
+
external?: {
|
|
7846
|
+
writable: boolean;
|
|
7847
|
+
remoteName?: string | undefined;
|
|
7848
|
+
remoteSchema?: string | undefined;
|
|
7849
|
+
columnMap?: Record<string, string> | undefined;
|
|
7850
|
+
introspectedAt?: string | undefined;
|
|
7851
|
+
ignoreColumns?: string[] | undefined;
|
|
7852
|
+
} | undefined;
|
|
7950
7853
|
indexes?: {
|
|
7951
7854
|
fields: string[];
|
|
7952
7855
|
type: "hash" | "btree" | "gin" | "gist" | "fulltext";
|
|
@@ -8003,40 +7906,10 @@ declare const securityObjects: ((Omit<{
|
|
|
8003
7906
|
} | undefined;
|
|
8004
7907
|
cdc?: {
|
|
8005
7908
|
enabled: boolean;
|
|
8006
|
-
events: ("
|
|
7909
|
+
events: ("insert" | "update" | "delete")[];
|
|
8007
7910
|
destination: string;
|
|
8008
7911
|
} | undefined;
|
|
8009
7912
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
8010
|
-
stateMachines?: Record<string, {
|
|
8011
|
-
id: string;
|
|
8012
|
-
initial: string;
|
|
8013
|
-
states: Record<string, StateNodeConfig>;
|
|
8014
|
-
description?: string | undefined;
|
|
8015
|
-
contextSchema?: Record<string, unknown> | undefined;
|
|
8016
|
-
on?: Record<string, string | {
|
|
8017
|
-
target?: string | undefined;
|
|
8018
|
-
cond?: string | {
|
|
8019
|
-
type: string;
|
|
8020
|
-
params?: Record<string, unknown> | undefined;
|
|
8021
|
-
} | undefined;
|
|
8022
|
-
actions?: (string | {
|
|
8023
|
-
type: string;
|
|
8024
|
-
params?: Record<string, unknown> | undefined;
|
|
8025
|
-
})[] | undefined;
|
|
8026
|
-
description?: string | undefined;
|
|
8027
|
-
} | {
|
|
8028
|
-
target?: string | undefined;
|
|
8029
|
-
cond?: string | {
|
|
8030
|
-
type: string;
|
|
8031
|
-
params?: Record<string, unknown> | undefined;
|
|
8032
|
-
} | undefined;
|
|
8033
|
-
actions?: (string | {
|
|
8034
|
-
type: string;
|
|
8035
|
-
params?: Record<string, unknown> | undefined;
|
|
8036
|
-
})[] | undefined;
|
|
8037
|
-
description?: string | undefined;
|
|
8038
|
-
}[]> | undefined;
|
|
8039
|
-
}> | undefined;
|
|
8040
7913
|
displayNameField?: string | undefined;
|
|
8041
7914
|
recordName?: {
|
|
8042
7915
|
type: "text" | "autonumber";
|
|
@@ -8062,7 +7935,7 @@ declare const securityObjects: ((Omit<{
|
|
|
8062
7935
|
} | undefined;
|
|
8063
7936
|
compactLayout?: string[] | undefined;
|
|
8064
7937
|
listViews?: Record<string, {
|
|
8065
|
-
type: "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "
|
|
7938
|
+
type: "map" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart" | "grid";
|
|
8066
7939
|
columns: string[] | {
|
|
8067
7940
|
field: string;
|
|
8068
7941
|
label?: string | undefined;
|
|
@@ -8074,7 +7947,7 @@ declare const securityObjects: ((Omit<{
|
|
|
8074
7947
|
wrap?: boolean | undefined;
|
|
8075
7948
|
type?: string | undefined;
|
|
8076
7949
|
pinned?: "left" | "right" | undefined;
|
|
8077
|
-
summary?: "
|
|
7950
|
+
summary?: "count" | "none" | "min" | "max" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
8078
7951
|
link?: boolean | undefined;
|
|
8079
7952
|
action?: string | undefined;
|
|
8080
7953
|
}[];
|
|
@@ -8126,7 +7999,7 @@ declare const securityObjects: ((Omit<{
|
|
|
8126
7999
|
type: "none" | "multiple" | "single";
|
|
8127
8000
|
} | undefined;
|
|
8128
8001
|
navigation?: {
|
|
8129
|
-
mode: "none" | "split" | "page" | "
|
|
8002
|
+
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
8130
8003
|
preventNavigation: boolean;
|
|
8131
8004
|
openNewTab: boolean;
|
|
8132
8005
|
view?: string | undefined;
|
|
@@ -8173,7 +8046,7 @@ declare const securityObjects: ((Omit<{
|
|
|
8173
8046
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
8174
8047
|
xAxisField: string;
|
|
8175
8048
|
yAxisFields: string[];
|
|
8176
|
-
aggregation?: "
|
|
8049
|
+
aggregation?: "count" | "min" | "max" | "sum" | "avg" | undefined;
|
|
8177
8050
|
groupByField?: string | undefined;
|
|
8178
8051
|
} | undefined;
|
|
8179
8052
|
description?: string | undefined;
|
|
@@ -8231,7 +8104,7 @@ declare const securityObjects: ((Omit<{
|
|
|
8231
8104
|
} | undefined;
|
|
8232
8105
|
appearance?: {
|
|
8233
8106
|
showDescription: boolean;
|
|
8234
|
-
allowedVisualizations?: ("kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "
|
|
8107
|
+
allowedVisualizations?: ("map" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "grid")[] | undefined;
|
|
8235
8108
|
} | undefined;
|
|
8236
8109
|
tabs?: {
|
|
8237
8110
|
name: string;
|
|
@@ -8275,7 +8148,7 @@ declare const securityObjects: ((Omit<{
|
|
|
8275
8148
|
md?: number | undefined;
|
|
8276
8149
|
lg?: number | undefined;
|
|
8277
8150
|
xl?: number | undefined;
|
|
8278
|
-
|
|
8151
|
+
'2xl'?: number | undefined;
|
|
8279
8152
|
} | undefined;
|
|
8280
8153
|
order?: {
|
|
8281
8154
|
xs?: number | undefined;
|
|
@@ -8283,7 +8156,7 @@ declare const securityObjects: ((Omit<{
|
|
|
8283
8156
|
md?: number | undefined;
|
|
8284
8157
|
lg?: number | undefined;
|
|
8285
8158
|
xl?: number | undefined;
|
|
8286
|
-
|
|
8159
|
+
'2xl'?: number | undefined;
|
|
8287
8160
|
} | undefined;
|
|
8288
8161
|
} | undefined;
|
|
8289
8162
|
performance?: {
|
|
@@ -8315,7 +8188,7 @@ declare const securityObjects: ((Omit<{
|
|
|
8315
8188
|
trash: boolean;
|
|
8316
8189
|
mru: boolean;
|
|
8317
8190
|
clone: boolean;
|
|
8318
|
-
apiMethods?: ("
|
|
8191
|
+
apiMethods?: ("aggregate" | "update" | "delete" | "search" | "create" | "import" | "list" | "get" | "upsert" | "bulk" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
8319
8192
|
} | undefined;
|
|
8320
8193
|
recordTypes?: string[] | undefined;
|
|
8321
8194
|
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
@@ -8361,7 +8234,7 @@ declare const securityObjects: ((Omit<{
|
|
|
8361
8234
|
field?: string | undefined;
|
|
8362
8235
|
objectOverride?: string | undefined;
|
|
8363
8236
|
label?: string | undefined;
|
|
8364
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "
|
|
8237
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
8365
8238
|
options?: {
|
|
8366
8239
|
label: string;
|
|
8367
8240
|
value: string;
|
|
@@ -8413,7 +8286,7 @@ declare const securityObjects: ((Omit<{
|
|
|
8413
8286
|
} | undefined;
|
|
8414
8287
|
method?: "POST" | "PATCH" | "PUT" | "DELETE" | undefined;
|
|
8415
8288
|
bodyExtra?: Record<string, unknown> | undefined;
|
|
8416
|
-
mode?: "custom" | "delete" | "
|
|
8289
|
+
mode?: "custom" | "delete" | "edit" | "create" | undefined;
|
|
8417
8290
|
timeout?: number | undefined;
|
|
8418
8291
|
aria?: {
|
|
8419
8292
|
ariaLabel?: string | undefined;
|
|
@@ -8434,7 +8307,7 @@ declare const securityObjects: ((Omit<{
|
|
|
8434
8307
|
readonly isSystem: true;
|
|
8435
8308
|
readonly managedBy: "system";
|
|
8436
8309
|
readonly description: "Binds a permission set to a role.";
|
|
8437
|
-
readonly titleFormat: "{role_id}
|
|
8310
|
+
readonly titleFormat: "{role_id} → {permission_set_id}";
|
|
8438
8311
|
readonly compactLayout: ["role_id", "permission_set_id"];
|
|
8439
8312
|
readonly fields: {
|
|
8440
8313
|
readonly id: {
|
|
@@ -8455,10 +8328,12 @@ declare const securityObjects: ((Omit<{
|
|
|
8455
8328
|
readonly dependencies?: string[] | undefined;
|
|
8456
8329
|
readonly theme?: string | undefined;
|
|
8457
8330
|
readonly externalId?: boolean | undefined;
|
|
8331
|
+
readonly defaultValue?: unknown;
|
|
8332
|
+
readonly group?: string | undefined;
|
|
8333
|
+
readonly hidden?: boolean | undefined;
|
|
8458
8334
|
readonly system?: boolean | undefined;
|
|
8459
8335
|
readonly min?: number | undefined;
|
|
8460
8336
|
readonly max?: number | undefined;
|
|
8461
|
-
readonly group?: string | undefined;
|
|
8462
8337
|
readonly encryptionConfig?: {
|
|
8463
8338
|
enabled: boolean;
|
|
8464
8339
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -8479,7 +8354,6 @@ declare const securityObjects: ((Omit<{
|
|
|
8479
8354
|
readonly columnName?: string | undefined;
|
|
8480
8355
|
readonly searchable?: boolean | undefined;
|
|
8481
8356
|
readonly unique?: boolean | undefined;
|
|
8482
|
-
readonly defaultValue?: unknown;
|
|
8483
8357
|
readonly maxLength?: number | undefined;
|
|
8484
8358
|
readonly minLength?: number | undefined;
|
|
8485
8359
|
readonly scale?: number | undefined;
|
|
@@ -8603,7 +8477,6 @@ declare const securityObjects: ((Omit<{
|
|
|
8603
8477
|
generatedBy?: string | undefined;
|
|
8604
8478
|
} | undefined;
|
|
8605
8479
|
} | undefined;
|
|
8606
|
-
readonly hidden?: boolean | undefined;
|
|
8607
8480
|
readonly sortable?: boolean | undefined;
|
|
8608
8481
|
readonly inlineHelpText?: string | undefined;
|
|
8609
8482
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -8630,10 +8503,12 @@ declare const securityObjects: ((Omit<{
|
|
|
8630
8503
|
readonly dependencies?: string[] | undefined;
|
|
8631
8504
|
readonly theme?: string | undefined;
|
|
8632
8505
|
readonly externalId?: boolean | undefined;
|
|
8506
|
+
readonly defaultValue?: unknown;
|
|
8507
|
+
readonly group?: string | undefined;
|
|
8508
|
+
readonly hidden?: boolean | undefined;
|
|
8633
8509
|
readonly system?: boolean | undefined;
|
|
8634
8510
|
readonly min?: number | undefined;
|
|
8635
8511
|
readonly max?: number | undefined;
|
|
8636
|
-
readonly group?: string | undefined;
|
|
8637
8512
|
readonly encryptionConfig?: {
|
|
8638
8513
|
enabled: boolean;
|
|
8639
8514
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -8654,7 +8529,6 @@ declare const securityObjects: ((Omit<{
|
|
|
8654
8529
|
readonly columnName?: string | undefined;
|
|
8655
8530
|
readonly searchable?: boolean | undefined;
|
|
8656
8531
|
readonly unique?: boolean | undefined;
|
|
8657
|
-
readonly defaultValue?: unknown;
|
|
8658
8532
|
readonly maxLength?: number | undefined;
|
|
8659
8533
|
readonly minLength?: number | undefined;
|
|
8660
8534
|
readonly scale?: number | undefined;
|
|
@@ -8778,7 +8652,6 @@ declare const securityObjects: ((Omit<{
|
|
|
8778
8652
|
generatedBy?: string | undefined;
|
|
8779
8653
|
} | undefined;
|
|
8780
8654
|
} | undefined;
|
|
8781
|
-
readonly hidden?: boolean | undefined;
|
|
8782
8655
|
readonly sortable?: boolean | undefined;
|
|
8783
8656
|
readonly inlineHelpText?: string | undefined;
|
|
8784
8657
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -8805,10 +8678,12 @@ declare const securityObjects: ((Omit<{
|
|
|
8805
8678
|
readonly dependencies?: string[] | undefined;
|
|
8806
8679
|
readonly theme?: string | undefined;
|
|
8807
8680
|
readonly externalId?: boolean | undefined;
|
|
8681
|
+
readonly defaultValue?: unknown;
|
|
8682
|
+
readonly group?: string | undefined;
|
|
8683
|
+
readonly hidden?: boolean | undefined;
|
|
8808
8684
|
readonly system?: boolean | undefined;
|
|
8809
8685
|
readonly min?: number | undefined;
|
|
8810
8686
|
readonly max?: number | undefined;
|
|
8811
|
-
readonly group?: string | undefined;
|
|
8812
8687
|
readonly encryptionConfig?: {
|
|
8813
8688
|
enabled: boolean;
|
|
8814
8689
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -8829,7 +8704,6 @@ declare const securityObjects: ((Omit<{
|
|
|
8829
8704
|
readonly columnName?: string | undefined;
|
|
8830
8705
|
readonly searchable?: boolean | undefined;
|
|
8831
8706
|
readonly unique?: boolean | undefined;
|
|
8832
|
-
readonly defaultValue?: unknown;
|
|
8833
8707
|
readonly maxLength?: number | undefined;
|
|
8834
8708
|
readonly minLength?: number | undefined;
|
|
8835
8709
|
readonly scale?: number | undefined;
|
|
@@ -8953,7 +8827,6 @@ declare const securityObjects: ((Omit<{
|
|
|
8953
8827
|
generatedBy?: string | undefined;
|
|
8954
8828
|
} | undefined;
|
|
8955
8829
|
} | undefined;
|
|
8956
|
-
readonly hidden?: boolean | undefined;
|
|
8957
8830
|
readonly sortable?: boolean | undefined;
|
|
8958
8831
|
readonly inlineHelpText?: string | undefined;
|
|
8959
8832
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -8980,10 +8853,12 @@ declare const securityObjects: ((Omit<{
|
|
|
8980
8853
|
readonly dependencies?: string[] | undefined;
|
|
8981
8854
|
readonly theme?: string | undefined;
|
|
8982
8855
|
readonly externalId?: boolean | undefined;
|
|
8856
|
+
readonly defaultValue?: unknown;
|
|
8857
|
+
readonly group?: string | undefined;
|
|
8858
|
+
readonly hidden?: boolean | undefined;
|
|
8983
8859
|
readonly system?: boolean | undefined;
|
|
8984
8860
|
readonly min?: number | undefined;
|
|
8985
8861
|
readonly max?: number | undefined;
|
|
8986
|
-
readonly group?: string | undefined;
|
|
8987
8862
|
readonly encryptionConfig?: {
|
|
8988
8863
|
enabled: boolean;
|
|
8989
8864
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -9004,7 +8879,6 @@ declare const securityObjects: ((Omit<{
|
|
|
9004
8879
|
readonly columnName?: string | undefined;
|
|
9005
8880
|
readonly searchable?: boolean | undefined;
|
|
9006
8881
|
readonly unique?: boolean | undefined;
|
|
9007
|
-
readonly defaultValue?: unknown;
|
|
9008
8882
|
readonly maxLength?: number | undefined;
|
|
9009
8883
|
readonly minLength?: number | undefined;
|
|
9010
8884
|
readonly scale?: number | undefined;
|
|
@@ -9128,7 +9002,6 @@ declare const securityObjects: ((Omit<{
|
|
|
9128
9002
|
generatedBy?: string | undefined;
|
|
9129
9003
|
} | undefined;
|
|
9130
9004
|
} | undefined;
|
|
9131
|
-
readonly hidden?: boolean | undefined;
|
|
9132
9005
|
readonly sortable?: boolean | undefined;
|
|
9133
9006
|
readonly inlineHelpText?: string | undefined;
|
|
9134
9007
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -9155,10 +9028,12 @@ declare const securityObjects: ((Omit<{
|
|
|
9155
9028
|
readonly dependencies?: string[] | undefined;
|
|
9156
9029
|
readonly theme?: string | undefined;
|
|
9157
9030
|
readonly externalId?: boolean | undefined;
|
|
9031
|
+
readonly defaultValue?: unknown;
|
|
9032
|
+
readonly group?: string | undefined;
|
|
9033
|
+
readonly hidden?: boolean | undefined;
|
|
9158
9034
|
readonly system?: boolean | undefined;
|
|
9159
9035
|
readonly min?: number | undefined;
|
|
9160
9036
|
readonly max?: number | undefined;
|
|
9161
|
-
readonly group?: string | undefined;
|
|
9162
9037
|
readonly encryptionConfig?: {
|
|
9163
9038
|
enabled: boolean;
|
|
9164
9039
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -9179,7 +9054,6 @@ declare const securityObjects: ((Omit<{
|
|
|
9179
9054
|
readonly columnName?: string | undefined;
|
|
9180
9055
|
readonly searchable?: boolean | undefined;
|
|
9181
9056
|
readonly unique?: boolean | undefined;
|
|
9182
|
-
readonly defaultValue?: unknown;
|
|
9183
9057
|
readonly maxLength?: number | undefined;
|
|
9184
9058
|
readonly minLength?: number | undefined;
|
|
9185
9059
|
readonly scale?: number | undefined;
|
|
@@ -9303,7 +9177,6 @@ declare const securityObjects: ((Omit<{
|
|
|
9303
9177
|
generatedBy?: string | undefined;
|
|
9304
9178
|
} | undefined;
|
|
9305
9179
|
} | undefined;
|
|
9306
|
-
readonly hidden?: boolean | undefined;
|
|
9307
9180
|
readonly sortable?: boolean | undefined;
|
|
9308
9181
|
readonly inlineHelpText?: string | undefined;
|
|
9309
9182
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -9351,7 +9224,7 @@ declare const securityDefaultPermissionSets: {
|
|
|
9351
9224
|
editable: boolean;
|
|
9352
9225
|
}> | undefined;
|
|
9353
9226
|
systemPermissions?: string[] | undefined;
|
|
9354
|
-
tabPermissions?: Record<string, "
|
|
9227
|
+
tabPermissions?: Record<string, "visible" | "hidden" | "default_on" | "default_off"> | undefined;
|
|
9355
9228
|
rowLevelSecurity?: {
|
|
9356
9229
|
name: string;
|
|
9357
9230
|
object: string;
|