@objectstack/plugin-security 9.7.0 → 9.8.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 +61 -2133
- package/dist/index.d.ts +61 -2133
- package/package.json +4 -4
package/dist/index.d.mts
CHANGED
|
@@ -352,7 +352,6 @@ declare const securityObjects: ((Omit<{
|
|
|
352
352
|
multiple: boolean;
|
|
353
353
|
unique: boolean;
|
|
354
354
|
deleteBehavior: "set_null" | "cascade" | "restrict";
|
|
355
|
-
auditTrail: boolean;
|
|
356
355
|
hidden: boolean;
|
|
357
356
|
readonly: boolean;
|
|
358
357
|
sortable: boolean;
|
|
@@ -378,7 +377,6 @@ declare const securityObjects: ((Omit<{
|
|
|
378
377
|
}[] | undefined;
|
|
379
378
|
reference?: string | undefined;
|
|
380
379
|
referenceFilters?: string[] | undefined;
|
|
381
|
-
writeRequiresMasterRead?: boolean | undefined;
|
|
382
380
|
inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
383
381
|
inlineTitle?: string | undefined;
|
|
384
382
|
inlineColumns?: any[] | undefined;
|
|
@@ -410,23 +408,8 @@ declare const securityObjects: ((Omit<{
|
|
|
410
408
|
relationshipField?: string | undefined;
|
|
411
409
|
} | undefined;
|
|
412
410
|
language?: string | undefined;
|
|
413
|
-
theme?: string | undefined;
|
|
414
|
-
lineNumbers?: boolean | undefined;
|
|
415
411
|
maxRating?: number | undefined;
|
|
416
|
-
allowHalf?: boolean | undefined;
|
|
417
|
-
displayMap?: boolean | undefined;
|
|
418
|
-
allowGeocoding?: boolean | undefined;
|
|
419
|
-
addressFormat?: "us" | "uk" | "international" | undefined;
|
|
420
|
-
colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
421
|
-
allowAlpha?: boolean | undefined;
|
|
422
|
-
presetColors?: string[] | undefined;
|
|
423
412
|
step?: number | undefined;
|
|
424
|
-
showValue?: boolean | undefined;
|
|
425
|
-
marks?: Record<string, string> | undefined;
|
|
426
|
-
barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
427
|
-
qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
428
|
-
displayValue?: boolean | undefined;
|
|
429
|
-
allowScanning?: boolean | undefined;
|
|
430
413
|
currencyConfig?: {
|
|
431
414
|
precision: number;
|
|
432
415
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -480,46 +463,8 @@ declare const securityObjects: ((Omit<{
|
|
|
480
463
|
} | undefined;
|
|
481
464
|
maxVersions?: number | undefined;
|
|
482
465
|
} | undefined;
|
|
483
|
-
|
|
484
|
-
enabled: boolean;
|
|
485
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
486
|
-
keyManagement: {
|
|
487
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
488
|
-
keyId?: string | undefined;
|
|
489
|
-
rotationPolicy?: {
|
|
490
|
-
enabled: boolean;
|
|
491
|
-
frequencyDays: number;
|
|
492
|
-
retainOldVersions: number;
|
|
493
|
-
autoRotate: boolean;
|
|
494
|
-
} | undefined;
|
|
495
|
-
};
|
|
496
|
-
scope: "field" | "record" | "table" | "database";
|
|
497
|
-
deterministicEncryption: boolean;
|
|
498
|
-
searchableEncryption: boolean;
|
|
499
|
-
} | undefined;
|
|
500
|
-
maskingRule?: {
|
|
501
|
-
field: string;
|
|
502
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
503
|
-
preserveFormat: boolean;
|
|
504
|
-
preserveLength: boolean;
|
|
505
|
-
pattern?: string | undefined;
|
|
506
|
-
roles?: string[] | undefined;
|
|
507
|
-
exemptRoles?: string[] | undefined;
|
|
508
|
-
} | undefined;
|
|
466
|
+
trackHistory?: boolean | undefined;
|
|
509
467
|
dependencies?: string[] | undefined;
|
|
510
|
-
cached?: {
|
|
511
|
-
enabled: boolean;
|
|
512
|
-
ttl: number;
|
|
513
|
-
invalidateOn: string[];
|
|
514
|
-
} | undefined;
|
|
515
|
-
dataQuality?: {
|
|
516
|
-
uniqueness: boolean;
|
|
517
|
-
completeness: number;
|
|
518
|
-
accuracy?: {
|
|
519
|
-
source: string;
|
|
520
|
-
threshold: number;
|
|
521
|
-
} | undefined;
|
|
522
|
-
} | undefined;
|
|
523
468
|
group?: string | undefined;
|
|
524
469
|
visibleWhen?: {
|
|
525
470
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -591,7 +536,6 @@ declare const securityObjects: ((Omit<{
|
|
|
591
536
|
} | undefined;
|
|
592
537
|
system?: boolean | undefined;
|
|
593
538
|
inlineHelpText?: string | undefined;
|
|
594
|
-
trackFeedHistory?: boolean | undefined;
|
|
595
539
|
caseSensitive?: boolean | undefined;
|
|
596
540
|
autonumberFormat?: string | undefined;
|
|
597
541
|
}>;
|
|
@@ -682,12 +626,13 @@ declare const securityObjects: ((Omit<{
|
|
|
682
626
|
key: string;
|
|
683
627
|
interval?: string | undefined;
|
|
684
628
|
} | undefined;
|
|
685
|
-
cdc?: {
|
|
686
|
-
enabled: boolean;
|
|
687
|
-
events: ("insert" | "update" | "delete")[];
|
|
688
|
-
destination: string;
|
|
689
|
-
} | undefined;
|
|
690
629
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
630
|
+
activityMilestones?: {
|
|
631
|
+
field: string;
|
|
632
|
+
value: string;
|
|
633
|
+
summary: string;
|
|
634
|
+
type?: string | undefined;
|
|
635
|
+
}[] | undefined;
|
|
691
636
|
displayNameField?: string | undefined;
|
|
692
637
|
recordName?: {
|
|
693
638
|
type: "text" | "autonumber";
|
|
@@ -998,7 +943,6 @@ declare const securityObjects: ((Omit<{
|
|
|
998
943
|
clone: boolean;
|
|
999
944
|
apiMethods?: ("aggregate" | "update" | "delete" | "restore" | "purge" | "search" | "create" | "import" | "list" | "get" | "upsert" | "bulk" | "history" | "export")[] | undefined;
|
|
1000
945
|
} | undefined;
|
|
1001
|
-
recordTypes?: string[] | undefined;
|
|
1002
946
|
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
1003
947
|
publicSharing?: {
|
|
1004
948
|
enabled: boolean;
|
|
@@ -1320,7 +1264,6 @@ declare const securityObjects: ((Omit<{
|
|
|
1320
1264
|
readonly required?: boolean | undefined;
|
|
1321
1265
|
readonly multiple?: boolean | undefined;
|
|
1322
1266
|
readonly dependencies?: string[] | undefined;
|
|
1323
|
-
readonly theme?: string | undefined;
|
|
1324
1267
|
readonly externalId?: boolean | undefined;
|
|
1325
1268
|
readonly defaultValue?: unknown;
|
|
1326
1269
|
readonly group?: string | undefined;
|
|
@@ -1328,23 +1271,6 @@ declare const securityObjects: ((Omit<{
|
|
|
1328
1271
|
readonly system?: boolean | undefined;
|
|
1329
1272
|
readonly min?: number | undefined;
|
|
1330
1273
|
readonly max?: number | undefined;
|
|
1331
|
-
readonly encryptionConfig?: {
|
|
1332
|
-
enabled: boolean;
|
|
1333
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
1334
|
-
keyManagement: {
|
|
1335
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
1336
|
-
keyId?: string | undefined;
|
|
1337
|
-
rotationPolicy?: {
|
|
1338
|
-
enabled: boolean;
|
|
1339
|
-
frequencyDays: number;
|
|
1340
|
-
retainOldVersions: number;
|
|
1341
|
-
autoRotate: boolean;
|
|
1342
|
-
} | undefined;
|
|
1343
|
-
};
|
|
1344
|
-
scope: "record" | "field" | "table" | "database";
|
|
1345
|
-
deterministicEncryption: boolean;
|
|
1346
|
-
searchableEncryption: boolean;
|
|
1347
|
-
} | undefined;
|
|
1348
1274
|
readonly columnName?: string | undefined;
|
|
1349
1275
|
readonly searchable?: boolean | undefined;
|
|
1350
1276
|
readonly unique?: boolean | undefined;
|
|
@@ -1353,7 +1279,6 @@ declare const securityObjects: ((Omit<{
|
|
|
1353
1279
|
readonly scale?: number | undefined;
|
|
1354
1280
|
readonly reference?: string | undefined;
|
|
1355
1281
|
readonly referenceFilters?: string[] | undefined;
|
|
1356
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1357
1282
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1358
1283
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1359
1284
|
readonly inlineTitle?: string | undefined;
|
|
@@ -1378,22 +1303,8 @@ declare const securityObjects: ((Omit<{
|
|
|
1378
1303
|
relationshipField?: string | undefined;
|
|
1379
1304
|
} | undefined;
|
|
1380
1305
|
readonly language?: string | undefined;
|
|
1381
|
-
readonly lineNumbers?: boolean | undefined;
|
|
1382
1306
|
readonly maxRating?: number | undefined;
|
|
1383
|
-
readonly allowHalf?: boolean | undefined;
|
|
1384
|
-
readonly displayMap?: boolean | undefined;
|
|
1385
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
1386
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
1387
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1388
|
-
readonly allowAlpha?: boolean | undefined;
|
|
1389
|
-
readonly presetColors?: string[] | undefined;
|
|
1390
1307
|
readonly step?: number | undefined;
|
|
1391
|
-
readonly showValue?: boolean | undefined;
|
|
1392
|
-
readonly marks?: Record<string, string> | undefined;
|
|
1393
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1394
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1395
|
-
readonly displayValue?: boolean | undefined;
|
|
1396
|
-
readonly allowScanning?: boolean | undefined;
|
|
1397
1308
|
readonly currencyConfig?: {
|
|
1398
1309
|
precision: number;
|
|
1399
1310
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -1447,29 +1358,7 @@ declare const securityObjects: ((Omit<{
|
|
|
1447
1358
|
} | undefined;
|
|
1448
1359
|
maxVersions?: number | undefined;
|
|
1449
1360
|
} | undefined;
|
|
1450
|
-
readonly
|
|
1451
|
-
field: string;
|
|
1452
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
1453
|
-
preserveFormat: boolean;
|
|
1454
|
-
preserveLength: boolean;
|
|
1455
|
-
pattern?: string | undefined;
|
|
1456
|
-
roles?: string[] | undefined;
|
|
1457
|
-
exemptRoles?: string[] | undefined;
|
|
1458
|
-
} | undefined;
|
|
1459
|
-
readonly auditTrail?: boolean | undefined;
|
|
1460
|
-
readonly cached?: {
|
|
1461
|
-
enabled: boolean;
|
|
1462
|
-
ttl: number;
|
|
1463
|
-
invalidateOn: string[];
|
|
1464
|
-
} | undefined;
|
|
1465
|
-
readonly dataQuality?: {
|
|
1466
|
-
uniqueness: boolean;
|
|
1467
|
-
completeness: number;
|
|
1468
|
-
accuracy?: {
|
|
1469
|
-
source: string;
|
|
1470
|
-
threshold: number;
|
|
1471
|
-
} | undefined;
|
|
1472
|
-
} | undefined;
|
|
1361
|
+
readonly trackHistory?: boolean | undefined;
|
|
1473
1362
|
readonly visibleWhen?: {
|
|
1474
1363
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1475
1364
|
source?: string | undefined;
|
|
@@ -1508,7 +1397,6 @@ declare const securityObjects: ((Omit<{
|
|
|
1508
1397
|
} | undefined;
|
|
1509
1398
|
readonly sortable?: boolean | undefined;
|
|
1510
1399
|
readonly inlineHelpText?: string | undefined;
|
|
1511
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
1512
1400
|
readonly caseSensitive?: boolean | undefined;
|
|
1513
1401
|
readonly autonumberFormat?: string | undefined;
|
|
1514
1402
|
readonly index?: boolean | undefined;
|
|
@@ -1530,7 +1418,6 @@ declare const securityObjects: ((Omit<{
|
|
|
1530
1418
|
readonly required?: boolean | undefined;
|
|
1531
1419
|
readonly multiple?: boolean | undefined;
|
|
1532
1420
|
readonly dependencies?: string[] | undefined;
|
|
1533
|
-
readonly theme?: string | undefined;
|
|
1534
1421
|
readonly externalId?: boolean | undefined;
|
|
1535
1422
|
readonly defaultValue?: unknown;
|
|
1536
1423
|
readonly group?: string | undefined;
|
|
@@ -1538,23 +1425,6 @@ declare const securityObjects: ((Omit<{
|
|
|
1538
1425
|
readonly system?: boolean | undefined;
|
|
1539
1426
|
readonly min?: number | undefined;
|
|
1540
1427
|
readonly max?: number | undefined;
|
|
1541
|
-
readonly encryptionConfig?: {
|
|
1542
|
-
enabled: boolean;
|
|
1543
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
1544
|
-
keyManagement: {
|
|
1545
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
1546
|
-
keyId?: string | undefined;
|
|
1547
|
-
rotationPolicy?: {
|
|
1548
|
-
enabled: boolean;
|
|
1549
|
-
frequencyDays: number;
|
|
1550
|
-
retainOldVersions: number;
|
|
1551
|
-
autoRotate: boolean;
|
|
1552
|
-
} | undefined;
|
|
1553
|
-
};
|
|
1554
|
-
scope: "record" | "field" | "table" | "database";
|
|
1555
|
-
deterministicEncryption: boolean;
|
|
1556
|
-
searchableEncryption: boolean;
|
|
1557
|
-
} | undefined;
|
|
1558
1428
|
readonly columnName?: string | undefined;
|
|
1559
1429
|
readonly searchable?: boolean | undefined;
|
|
1560
1430
|
readonly unique?: boolean | undefined;
|
|
@@ -1563,7 +1433,6 @@ declare const securityObjects: ((Omit<{
|
|
|
1563
1433
|
readonly scale?: number | undefined;
|
|
1564
1434
|
readonly reference?: string | undefined;
|
|
1565
1435
|
readonly referenceFilters?: string[] | undefined;
|
|
1566
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1567
1436
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1568
1437
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1569
1438
|
readonly inlineTitle?: string | undefined;
|
|
@@ -1588,22 +1457,8 @@ declare const securityObjects: ((Omit<{
|
|
|
1588
1457
|
relationshipField?: string | undefined;
|
|
1589
1458
|
} | undefined;
|
|
1590
1459
|
readonly language?: string | undefined;
|
|
1591
|
-
readonly lineNumbers?: boolean | undefined;
|
|
1592
1460
|
readonly maxRating?: number | undefined;
|
|
1593
|
-
readonly allowHalf?: boolean | undefined;
|
|
1594
|
-
readonly displayMap?: boolean | undefined;
|
|
1595
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
1596
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
1597
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1598
|
-
readonly allowAlpha?: boolean | undefined;
|
|
1599
|
-
readonly presetColors?: string[] | undefined;
|
|
1600
1461
|
readonly step?: number | undefined;
|
|
1601
|
-
readonly showValue?: boolean | undefined;
|
|
1602
|
-
readonly marks?: Record<string, string> | undefined;
|
|
1603
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1604
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1605
|
-
readonly displayValue?: boolean | undefined;
|
|
1606
|
-
readonly allowScanning?: boolean | undefined;
|
|
1607
1462
|
readonly currencyConfig?: {
|
|
1608
1463
|
precision: number;
|
|
1609
1464
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -1657,29 +1512,7 @@ declare const securityObjects: ((Omit<{
|
|
|
1657
1512
|
} | undefined;
|
|
1658
1513
|
maxVersions?: number | undefined;
|
|
1659
1514
|
} | undefined;
|
|
1660
|
-
readonly
|
|
1661
|
-
field: string;
|
|
1662
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
1663
|
-
preserveFormat: boolean;
|
|
1664
|
-
preserveLength: boolean;
|
|
1665
|
-
pattern?: string | undefined;
|
|
1666
|
-
roles?: string[] | undefined;
|
|
1667
|
-
exemptRoles?: string[] | undefined;
|
|
1668
|
-
} | undefined;
|
|
1669
|
-
readonly auditTrail?: boolean | undefined;
|
|
1670
|
-
readonly cached?: {
|
|
1671
|
-
enabled: boolean;
|
|
1672
|
-
ttl: number;
|
|
1673
|
-
invalidateOn: string[];
|
|
1674
|
-
} | undefined;
|
|
1675
|
-
readonly dataQuality?: {
|
|
1676
|
-
uniqueness: boolean;
|
|
1677
|
-
completeness: number;
|
|
1678
|
-
accuracy?: {
|
|
1679
|
-
source: string;
|
|
1680
|
-
threshold: number;
|
|
1681
|
-
} | undefined;
|
|
1682
|
-
} | undefined;
|
|
1515
|
+
readonly trackHistory?: boolean | undefined;
|
|
1683
1516
|
readonly visibleWhen?: {
|
|
1684
1517
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1685
1518
|
source?: string | undefined;
|
|
@@ -1718,7 +1551,6 @@ declare const securityObjects: ((Omit<{
|
|
|
1718
1551
|
} | undefined;
|
|
1719
1552
|
readonly sortable?: boolean | undefined;
|
|
1720
1553
|
readonly inlineHelpText?: string | undefined;
|
|
1721
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
1722
1554
|
readonly caseSensitive?: boolean | undefined;
|
|
1723
1555
|
readonly autonumberFormat?: string | undefined;
|
|
1724
1556
|
readonly index?: boolean | undefined;
|
|
@@ -1740,7 +1572,6 @@ declare const securityObjects: ((Omit<{
|
|
|
1740
1572
|
readonly required?: boolean | undefined;
|
|
1741
1573
|
readonly multiple?: boolean | undefined;
|
|
1742
1574
|
readonly dependencies?: string[] | undefined;
|
|
1743
|
-
readonly theme?: string | undefined;
|
|
1744
1575
|
readonly externalId?: boolean | undefined;
|
|
1745
1576
|
readonly defaultValue?: unknown;
|
|
1746
1577
|
readonly group?: string | undefined;
|
|
@@ -1748,23 +1579,6 @@ declare const securityObjects: ((Omit<{
|
|
|
1748
1579
|
readonly system?: boolean | undefined;
|
|
1749
1580
|
readonly min?: number | undefined;
|
|
1750
1581
|
readonly max?: number | undefined;
|
|
1751
|
-
readonly encryptionConfig?: {
|
|
1752
|
-
enabled: boolean;
|
|
1753
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
1754
|
-
keyManagement: {
|
|
1755
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
1756
|
-
keyId?: string | undefined;
|
|
1757
|
-
rotationPolicy?: {
|
|
1758
|
-
enabled: boolean;
|
|
1759
|
-
frequencyDays: number;
|
|
1760
|
-
retainOldVersions: number;
|
|
1761
|
-
autoRotate: boolean;
|
|
1762
|
-
} | undefined;
|
|
1763
|
-
};
|
|
1764
|
-
scope: "record" | "field" | "table" | "database";
|
|
1765
|
-
deterministicEncryption: boolean;
|
|
1766
|
-
searchableEncryption: boolean;
|
|
1767
|
-
} | undefined;
|
|
1768
1582
|
readonly columnName?: string | undefined;
|
|
1769
1583
|
readonly searchable?: boolean | undefined;
|
|
1770
1584
|
readonly unique?: boolean | undefined;
|
|
@@ -1773,7 +1587,6 @@ declare const securityObjects: ((Omit<{
|
|
|
1773
1587
|
readonly scale?: number | undefined;
|
|
1774
1588
|
readonly reference?: string | undefined;
|
|
1775
1589
|
readonly referenceFilters?: string[] | undefined;
|
|
1776
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1777
1590
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1778
1591
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1779
1592
|
readonly inlineTitle?: string | undefined;
|
|
@@ -1798,22 +1611,8 @@ declare const securityObjects: ((Omit<{
|
|
|
1798
1611
|
relationshipField?: string | undefined;
|
|
1799
1612
|
} | undefined;
|
|
1800
1613
|
readonly language?: string | undefined;
|
|
1801
|
-
readonly lineNumbers?: boolean | undefined;
|
|
1802
1614
|
readonly maxRating?: number | undefined;
|
|
1803
|
-
readonly allowHalf?: boolean | undefined;
|
|
1804
|
-
readonly displayMap?: boolean | undefined;
|
|
1805
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
1806
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
1807
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1808
|
-
readonly allowAlpha?: boolean | undefined;
|
|
1809
|
-
readonly presetColors?: string[] | undefined;
|
|
1810
1615
|
readonly step?: number | undefined;
|
|
1811
|
-
readonly showValue?: boolean | undefined;
|
|
1812
|
-
readonly marks?: Record<string, string> | undefined;
|
|
1813
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1814
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1815
|
-
readonly displayValue?: boolean | undefined;
|
|
1816
|
-
readonly allowScanning?: boolean | undefined;
|
|
1817
1616
|
readonly currencyConfig?: {
|
|
1818
1617
|
precision: number;
|
|
1819
1618
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -1867,29 +1666,7 @@ declare const securityObjects: ((Omit<{
|
|
|
1867
1666
|
} | undefined;
|
|
1868
1667
|
maxVersions?: number | undefined;
|
|
1869
1668
|
} | undefined;
|
|
1870
|
-
readonly
|
|
1871
|
-
field: string;
|
|
1872
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
1873
|
-
preserveFormat: boolean;
|
|
1874
|
-
preserveLength: boolean;
|
|
1875
|
-
pattern?: string | undefined;
|
|
1876
|
-
roles?: string[] | undefined;
|
|
1877
|
-
exemptRoles?: string[] | undefined;
|
|
1878
|
-
} | undefined;
|
|
1879
|
-
readonly auditTrail?: boolean | undefined;
|
|
1880
|
-
readonly cached?: {
|
|
1881
|
-
enabled: boolean;
|
|
1882
|
-
ttl: number;
|
|
1883
|
-
invalidateOn: string[];
|
|
1884
|
-
} | undefined;
|
|
1885
|
-
readonly dataQuality?: {
|
|
1886
|
-
uniqueness: boolean;
|
|
1887
|
-
completeness: number;
|
|
1888
|
-
accuracy?: {
|
|
1889
|
-
source: string;
|
|
1890
|
-
threshold: number;
|
|
1891
|
-
} | undefined;
|
|
1892
|
-
} | undefined;
|
|
1669
|
+
readonly trackHistory?: boolean | undefined;
|
|
1893
1670
|
readonly visibleWhen?: {
|
|
1894
1671
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1895
1672
|
source?: string | undefined;
|
|
@@ -1928,7 +1705,6 @@ declare const securityObjects: ((Omit<{
|
|
|
1928
1705
|
} | undefined;
|
|
1929
1706
|
readonly sortable?: boolean | undefined;
|
|
1930
1707
|
readonly inlineHelpText?: string | undefined;
|
|
1931
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
1932
1708
|
readonly caseSensitive?: boolean | undefined;
|
|
1933
1709
|
readonly autonumberFormat?: string | undefined;
|
|
1934
1710
|
readonly index?: boolean | undefined;
|
|
@@ -1950,7 +1726,6 @@ declare const securityObjects: ((Omit<{
|
|
|
1950
1726
|
readonly required?: boolean | undefined;
|
|
1951
1727
|
readonly multiple?: boolean | undefined;
|
|
1952
1728
|
readonly dependencies?: string[] | undefined;
|
|
1953
|
-
readonly theme?: string | undefined;
|
|
1954
1729
|
readonly externalId?: boolean | undefined;
|
|
1955
1730
|
readonly defaultValue?: unknown;
|
|
1956
1731
|
readonly group?: string | undefined;
|
|
@@ -1958,23 +1733,6 @@ declare const securityObjects: ((Omit<{
|
|
|
1958
1733
|
readonly system?: boolean | undefined;
|
|
1959
1734
|
readonly min?: number | undefined;
|
|
1960
1735
|
readonly max?: number | undefined;
|
|
1961
|
-
readonly encryptionConfig?: {
|
|
1962
|
-
enabled: boolean;
|
|
1963
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
1964
|
-
keyManagement: {
|
|
1965
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
1966
|
-
keyId?: string | undefined;
|
|
1967
|
-
rotationPolicy?: {
|
|
1968
|
-
enabled: boolean;
|
|
1969
|
-
frequencyDays: number;
|
|
1970
|
-
retainOldVersions: number;
|
|
1971
|
-
autoRotate: boolean;
|
|
1972
|
-
} | undefined;
|
|
1973
|
-
};
|
|
1974
|
-
scope: "record" | "field" | "table" | "database";
|
|
1975
|
-
deterministicEncryption: boolean;
|
|
1976
|
-
searchableEncryption: boolean;
|
|
1977
|
-
} | undefined;
|
|
1978
1736
|
readonly columnName?: string | undefined;
|
|
1979
1737
|
readonly searchable?: boolean | undefined;
|
|
1980
1738
|
readonly unique?: boolean | undefined;
|
|
@@ -1983,7 +1741,6 @@ declare const securityObjects: ((Omit<{
|
|
|
1983
1741
|
readonly scale?: number | undefined;
|
|
1984
1742
|
readonly reference?: string | undefined;
|
|
1985
1743
|
readonly referenceFilters?: string[] | undefined;
|
|
1986
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1987
1744
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1988
1745
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1989
1746
|
readonly inlineTitle?: string | undefined;
|
|
@@ -2008,22 +1765,8 @@ declare const securityObjects: ((Omit<{
|
|
|
2008
1765
|
relationshipField?: string | undefined;
|
|
2009
1766
|
} | undefined;
|
|
2010
1767
|
readonly language?: string | undefined;
|
|
2011
|
-
readonly lineNumbers?: boolean | undefined;
|
|
2012
1768
|
readonly maxRating?: number | undefined;
|
|
2013
|
-
readonly allowHalf?: boolean | undefined;
|
|
2014
|
-
readonly displayMap?: boolean | undefined;
|
|
2015
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
2016
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
2017
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
2018
|
-
readonly allowAlpha?: boolean | undefined;
|
|
2019
|
-
readonly presetColors?: string[] | undefined;
|
|
2020
1769
|
readonly step?: number | undefined;
|
|
2021
|
-
readonly showValue?: boolean | undefined;
|
|
2022
|
-
readonly marks?: Record<string, string> | undefined;
|
|
2023
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
2024
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
2025
|
-
readonly displayValue?: boolean | undefined;
|
|
2026
|
-
readonly allowScanning?: boolean | undefined;
|
|
2027
1770
|
readonly currencyConfig?: {
|
|
2028
1771
|
precision: number;
|
|
2029
1772
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -2077,29 +1820,7 @@ declare const securityObjects: ((Omit<{
|
|
|
2077
1820
|
} | undefined;
|
|
2078
1821
|
maxVersions?: number | undefined;
|
|
2079
1822
|
} | undefined;
|
|
2080
|
-
readonly
|
|
2081
|
-
field: string;
|
|
2082
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
2083
|
-
preserveFormat: boolean;
|
|
2084
|
-
preserveLength: boolean;
|
|
2085
|
-
pattern?: string | undefined;
|
|
2086
|
-
roles?: string[] | undefined;
|
|
2087
|
-
exemptRoles?: string[] | undefined;
|
|
2088
|
-
} | undefined;
|
|
2089
|
-
readonly auditTrail?: boolean | undefined;
|
|
2090
|
-
readonly cached?: {
|
|
2091
|
-
enabled: boolean;
|
|
2092
|
-
ttl: number;
|
|
2093
|
-
invalidateOn: string[];
|
|
2094
|
-
} | undefined;
|
|
2095
|
-
readonly dataQuality?: {
|
|
2096
|
-
uniqueness: boolean;
|
|
2097
|
-
completeness: number;
|
|
2098
|
-
accuracy?: {
|
|
2099
|
-
source: string;
|
|
2100
|
-
threshold: number;
|
|
2101
|
-
} | undefined;
|
|
2102
|
-
} | undefined;
|
|
1823
|
+
readonly trackHistory?: boolean | undefined;
|
|
2103
1824
|
readonly visibleWhen?: {
|
|
2104
1825
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2105
1826
|
source?: string | undefined;
|
|
@@ -2138,7 +1859,6 @@ declare const securityObjects: ((Omit<{
|
|
|
2138
1859
|
} | undefined;
|
|
2139
1860
|
readonly sortable?: boolean | undefined;
|
|
2140
1861
|
readonly inlineHelpText?: string | undefined;
|
|
2141
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
2142
1862
|
readonly caseSensitive?: boolean | undefined;
|
|
2143
1863
|
readonly autonumberFormat?: string | undefined;
|
|
2144
1864
|
readonly index?: boolean | undefined;
|
|
@@ -2160,7 +1880,6 @@ declare const securityObjects: ((Omit<{
|
|
|
2160
1880
|
readonly required?: boolean | undefined;
|
|
2161
1881
|
readonly multiple?: boolean | undefined;
|
|
2162
1882
|
readonly dependencies?: string[] | undefined;
|
|
2163
|
-
readonly theme?: string | undefined;
|
|
2164
1883
|
readonly externalId?: boolean | undefined;
|
|
2165
1884
|
readonly defaultValue?: unknown;
|
|
2166
1885
|
readonly group?: string | undefined;
|
|
@@ -2168,23 +1887,6 @@ declare const securityObjects: ((Omit<{
|
|
|
2168
1887
|
readonly system?: boolean | undefined;
|
|
2169
1888
|
readonly min?: number | undefined;
|
|
2170
1889
|
readonly max?: number | undefined;
|
|
2171
|
-
readonly encryptionConfig?: {
|
|
2172
|
-
enabled: boolean;
|
|
2173
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
2174
|
-
keyManagement: {
|
|
2175
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
2176
|
-
keyId?: string | undefined;
|
|
2177
|
-
rotationPolicy?: {
|
|
2178
|
-
enabled: boolean;
|
|
2179
|
-
frequencyDays: number;
|
|
2180
|
-
retainOldVersions: number;
|
|
2181
|
-
autoRotate: boolean;
|
|
2182
|
-
} | undefined;
|
|
2183
|
-
};
|
|
2184
|
-
scope: "record" | "field" | "table" | "database";
|
|
2185
|
-
deterministicEncryption: boolean;
|
|
2186
|
-
searchableEncryption: boolean;
|
|
2187
|
-
} | undefined;
|
|
2188
1890
|
readonly columnName?: string | undefined;
|
|
2189
1891
|
readonly searchable?: boolean | undefined;
|
|
2190
1892
|
readonly unique?: boolean | undefined;
|
|
@@ -2193,7 +1895,6 @@ declare const securityObjects: ((Omit<{
|
|
|
2193
1895
|
readonly scale?: number | undefined;
|
|
2194
1896
|
readonly reference?: string | undefined;
|
|
2195
1897
|
readonly referenceFilters?: string[] | undefined;
|
|
2196
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2197
1898
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2198
1899
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2199
1900
|
readonly inlineTitle?: string | undefined;
|
|
@@ -2218,22 +1919,8 @@ declare const securityObjects: ((Omit<{
|
|
|
2218
1919
|
relationshipField?: string | undefined;
|
|
2219
1920
|
} | undefined;
|
|
2220
1921
|
readonly language?: string | undefined;
|
|
2221
|
-
readonly lineNumbers?: boolean | undefined;
|
|
2222
1922
|
readonly maxRating?: number | undefined;
|
|
2223
|
-
readonly allowHalf?: boolean | undefined;
|
|
2224
|
-
readonly displayMap?: boolean | undefined;
|
|
2225
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
2226
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
2227
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
2228
|
-
readonly allowAlpha?: boolean | undefined;
|
|
2229
|
-
readonly presetColors?: string[] | undefined;
|
|
2230
1923
|
readonly step?: number | undefined;
|
|
2231
|
-
readonly showValue?: boolean | undefined;
|
|
2232
|
-
readonly marks?: Record<string, string> | undefined;
|
|
2233
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
2234
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
2235
|
-
readonly displayValue?: boolean | undefined;
|
|
2236
|
-
readonly allowScanning?: boolean | undefined;
|
|
2237
1924
|
readonly currencyConfig?: {
|
|
2238
1925
|
precision: number;
|
|
2239
1926
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -2287,29 +1974,7 @@ declare const securityObjects: ((Omit<{
|
|
|
2287
1974
|
} | undefined;
|
|
2288
1975
|
maxVersions?: number | undefined;
|
|
2289
1976
|
} | undefined;
|
|
2290
|
-
readonly
|
|
2291
|
-
field: string;
|
|
2292
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
2293
|
-
preserveFormat: boolean;
|
|
2294
|
-
preserveLength: boolean;
|
|
2295
|
-
pattern?: string | undefined;
|
|
2296
|
-
roles?: string[] | undefined;
|
|
2297
|
-
exemptRoles?: string[] | undefined;
|
|
2298
|
-
} | undefined;
|
|
2299
|
-
readonly auditTrail?: boolean | undefined;
|
|
2300
|
-
readonly cached?: {
|
|
2301
|
-
enabled: boolean;
|
|
2302
|
-
ttl: number;
|
|
2303
|
-
invalidateOn: string[];
|
|
2304
|
-
} | undefined;
|
|
2305
|
-
readonly dataQuality?: {
|
|
2306
|
-
uniqueness: boolean;
|
|
2307
|
-
completeness: number;
|
|
2308
|
-
accuracy?: {
|
|
2309
|
-
source: string;
|
|
2310
|
-
threshold: number;
|
|
2311
|
-
} | undefined;
|
|
2312
|
-
} | undefined;
|
|
1977
|
+
readonly trackHistory?: boolean | undefined;
|
|
2313
1978
|
readonly visibleWhen?: {
|
|
2314
1979
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2315
1980
|
source?: string | undefined;
|
|
@@ -2348,7 +2013,6 @@ declare const securityObjects: ((Omit<{
|
|
|
2348
2013
|
} | undefined;
|
|
2349
2014
|
readonly sortable?: boolean | undefined;
|
|
2350
2015
|
readonly inlineHelpText?: string | undefined;
|
|
2351
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
2352
2016
|
readonly caseSensitive?: boolean | undefined;
|
|
2353
2017
|
readonly autonumberFormat?: string | undefined;
|
|
2354
2018
|
readonly index?: boolean | undefined;
|
|
@@ -2370,7 +2034,6 @@ declare const securityObjects: ((Omit<{
|
|
|
2370
2034
|
readonly required?: boolean | undefined;
|
|
2371
2035
|
readonly multiple?: boolean | undefined;
|
|
2372
2036
|
readonly dependencies?: string[] | undefined;
|
|
2373
|
-
readonly theme?: string | undefined;
|
|
2374
2037
|
readonly externalId?: boolean | undefined;
|
|
2375
2038
|
readonly defaultValue?: unknown;
|
|
2376
2039
|
readonly group?: string | undefined;
|
|
@@ -2378,23 +2041,6 @@ declare const securityObjects: ((Omit<{
|
|
|
2378
2041
|
readonly system?: boolean | undefined;
|
|
2379
2042
|
readonly min?: number | undefined;
|
|
2380
2043
|
readonly max?: number | undefined;
|
|
2381
|
-
readonly encryptionConfig?: {
|
|
2382
|
-
enabled: boolean;
|
|
2383
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
2384
|
-
keyManagement: {
|
|
2385
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
2386
|
-
keyId?: string | undefined;
|
|
2387
|
-
rotationPolicy?: {
|
|
2388
|
-
enabled: boolean;
|
|
2389
|
-
frequencyDays: number;
|
|
2390
|
-
retainOldVersions: number;
|
|
2391
|
-
autoRotate: boolean;
|
|
2392
|
-
} | undefined;
|
|
2393
|
-
};
|
|
2394
|
-
scope: "record" | "field" | "table" | "database";
|
|
2395
|
-
deterministicEncryption: boolean;
|
|
2396
|
-
searchableEncryption: boolean;
|
|
2397
|
-
} | undefined;
|
|
2398
2044
|
readonly columnName?: string | undefined;
|
|
2399
2045
|
readonly searchable?: boolean | undefined;
|
|
2400
2046
|
readonly unique?: boolean | undefined;
|
|
@@ -2403,7 +2049,6 @@ declare const securityObjects: ((Omit<{
|
|
|
2403
2049
|
readonly scale?: number | undefined;
|
|
2404
2050
|
readonly reference?: string | undefined;
|
|
2405
2051
|
readonly referenceFilters?: string[] | undefined;
|
|
2406
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2407
2052
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2408
2053
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2409
2054
|
readonly inlineTitle?: string | undefined;
|
|
@@ -2428,22 +2073,8 @@ declare const securityObjects: ((Omit<{
|
|
|
2428
2073
|
relationshipField?: string | undefined;
|
|
2429
2074
|
} | undefined;
|
|
2430
2075
|
readonly language?: string | undefined;
|
|
2431
|
-
readonly lineNumbers?: boolean | undefined;
|
|
2432
2076
|
readonly maxRating?: number | undefined;
|
|
2433
|
-
readonly allowHalf?: boolean | undefined;
|
|
2434
|
-
readonly displayMap?: boolean | undefined;
|
|
2435
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
2436
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
2437
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
2438
|
-
readonly allowAlpha?: boolean | undefined;
|
|
2439
|
-
readonly presetColors?: string[] | undefined;
|
|
2440
2077
|
readonly step?: number | undefined;
|
|
2441
|
-
readonly showValue?: boolean | undefined;
|
|
2442
|
-
readonly marks?: Record<string, string> | undefined;
|
|
2443
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
2444
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
2445
|
-
readonly displayValue?: boolean | undefined;
|
|
2446
|
-
readonly allowScanning?: boolean | undefined;
|
|
2447
2078
|
readonly currencyConfig?: {
|
|
2448
2079
|
precision: number;
|
|
2449
2080
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -2497,29 +2128,7 @@ declare const securityObjects: ((Omit<{
|
|
|
2497
2128
|
} | undefined;
|
|
2498
2129
|
maxVersions?: number | undefined;
|
|
2499
2130
|
} | undefined;
|
|
2500
|
-
readonly
|
|
2501
|
-
field: string;
|
|
2502
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
2503
|
-
preserveFormat: boolean;
|
|
2504
|
-
preserveLength: boolean;
|
|
2505
|
-
pattern?: string | undefined;
|
|
2506
|
-
roles?: string[] | undefined;
|
|
2507
|
-
exemptRoles?: string[] | undefined;
|
|
2508
|
-
} | undefined;
|
|
2509
|
-
readonly auditTrail?: boolean | undefined;
|
|
2510
|
-
readonly cached?: {
|
|
2511
|
-
enabled: boolean;
|
|
2512
|
-
ttl: number;
|
|
2513
|
-
invalidateOn: string[];
|
|
2514
|
-
} | undefined;
|
|
2515
|
-
readonly dataQuality?: {
|
|
2516
|
-
uniqueness: boolean;
|
|
2517
|
-
completeness: number;
|
|
2518
|
-
accuracy?: {
|
|
2519
|
-
source: string;
|
|
2520
|
-
threshold: number;
|
|
2521
|
-
} | undefined;
|
|
2522
|
-
} | undefined;
|
|
2131
|
+
readonly trackHistory?: boolean | undefined;
|
|
2523
2132
|
readonly visibleWhen?: {
|
|
2524
2133
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2525
2134
|
source?: string | undefined;
|
|
@@ -2558,7 +2167,6 @@ declare const securityObjects: ((Omit<{
|
|
|
2558
2167
|
} | undefined;
|
|
2559
2168
|
readonly sortable?: boolean | undefined;
|
|
2560
2169
|
readonly inlineHelpText?: string | undefined;
|
|
2561
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
2562
2170
|
readonly caseSensitive?: boolean | undefined;
|
|
2563
2171
|
readonly autonumberFormat?: string | undefined;
|
|
2564
2172
|
readonly index?: boolean | undefined;
|
|
@@ -2580,7 +2188,6 @@ declare const securityObjects: ((Omit<{
|
|
|
2580
2188
|
readonly required?: boolean | undefined;
|
|
2581
2189
|
readonly multiple?: boolean | undefined;
|
|
2582
2190
|
readonly dependencies?: string[] | undefined;
|
|
2583
|
-
readonly theme?: string | undefined;
|
|
2584
2191
|
readonly externalId?: boolean | undefined;
|
|
2585
2192
|
readonly defaultValue?: unknown;
|
|
2586
2193
|
readonly group?: string | undefined;
|
|
@@ -2588,23 +2195,6 @@ declare const securityObjects: ((Omit<{
|
|
|
2588
2195
|
readonly system?: boolean | undefined;
|
|
2589
2196
|
readonly min?: number | undefined;
|
|
2590
2197
|
readonly max?: number | undefined;
|
|
2591
|
-
readonly encryptionConfig?: {
|
|
2592
|
-
enabled: boolean;
|
|
2593
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
2594
|
-
keyManagement: {
|
|
2595
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
2596
|
-
keyId?: string | undefined;
|
|
2597
|
-
rotationPolicy?: {
|
|
2598
|
-
enabled: boolean;
|
|
2599
|
-
frequencyDays: number;
|
|
2600
|
-
retainOldVersions: number;
|
|
2601
|
-
autoRotate: boolean;
|
|
2602
|
-
} | undefined;
|
|
2603
|
-
};
|
|
2604
|
-
scope: "record" | "field" | "table" | "database";
|
|
2605
|
-
deterministicEncryption: boolean;
|
|
2606
|
-
searchableEncryption: boolean;
|
|
2607
|
-
} | undefined;
|
|
2608
2198
|
readonly columnName?: string | undefined;
|
|
2609
2199
|
readonly searchable?: boolean | undefined;
|
|
2610
2200
|
readonly unique?: boolean | undefined;
|
|
@@ -2613,7 +2203,6 @@ declare const securityObjects: ((Omit<{
|
|
|
2613
2203
|
readonly scale?: number | undefined;
|
|
2614
2204
|
readonly reference?: string | undefined;
|
|
2615
2205
|
readonly referenceFilters?: string[] | undefined;
|
|
2616
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2617
2206
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2618
2207
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2619
2208
|
readonly inlineTitle?: string | undefined;
|
|
@@ -2638,22 +2227,8 @@ declare const securityObjects: ((Omit<{
|
|
|
2638
2227
|
relationshipField?: string | undefined;
|
|
2639
2228
|
} | undefined;
|
|
2640
2229
|
readonly language?: string | undefined;
|
|
2641
|
-
readonly lineNumbers?: boolean | undefined;
|
|
2642
2230
|
readonly maxRating?: number | undefined;
|
|
2643
|
-
readonly allowHalf?: boolean | undefined;
|
|
2644
|
-
readonly displayMap?: boolean | undefined;
|
|
2645
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
2646
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
2647
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
2648
|
-
readonly allowAlpha?: boolean | undefined;
|
|
2649
|
-
readonly presetColors?: string[] | undefined;
|
|
2650
2231
|
readonly step?: number | undefined;
|
|
2651
|
-
readonly showValue?: boolean | undefined;
|
|
2652
|
-
readonly marks?: Record<string, string> | undefined;
|
|
2653
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
2654
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
2655
|
-
readonly displayValue?: boolean | undefined;
|
|
2656
|
-
readonly allowScanning?: boolean | undefined;
|
|
2657
2232
|
readonly currencyConfig?: {
|
|
2658
2233
|
precision: number;
|
|
2659
2234
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -2707,29 +2282,7 @@ declare const securityObjects: ((Omit<{
|
|
|
2707
2282
|
} | undefined;
|
|
2708
2283
|
maxVersions?: number | undefined;
|
|
2709
2284
|
} | undefined;
|
|
2710
|
-
readonly
|
|
2711
|
-
field: string;
|
|
2712
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
2713
|
-
preserveFormat: boolean;
|
|
2714
|
-
preserveLength: boolean;
|
|
2715
|
-
pattern?: string | undefined;
|
|
2716
|
-
roles?: string[] | undefined;
|
|
2717
|
-
exemptRoles?: string[] | undefined;
|
|
2718
|
-
} | undefined;
|
|
2719
|
-
readonly auditTrail?: boolean | undefined;
|
|
2720
|
-
readonly cached?: {
|
|
2721
|
-
enabled: boolean;
|
|
2722
|
-
ttl: number;
|
|
2723
|
-
invalidateOn: string[];
|
|
2724
|
-
} | undefined;
|
|
2725
|
-
readonly dataQuality?: {
|
|
2726
|
-
uniqueness: boolean;
|
|
2727
|
-
completeness: number;
|
|
2728
|
-
accuracy?: {
|
|
2729
|
-
source: string;
|
|
2730
|
-
threshold: number;
|
|
2731
|
-
} | undefined;
|
|
2732
|
-
} | undefined;
|
|
2285
|
+
readonly trackHistory?: boolean | undefined;
|
|
2733
2286
|
readonly visibleWhen?: {
|
|
2734
2287
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2735
2288
|
source?: string | undefined;
|
|
@@ -2768,7 +2321,6 @@ declare const securityObjects: ((Omit<{
|
|
|
2768
2321
|
} | undefined;
|
|
2769
2322
|
readonly sortable?: boolean | undefined;
|
|
2770
2323
|
readonly inlineHelpText?: string | undefined;
|
|
2771
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
2772
2324
|
readonly caseSensitive?: boolean | undefined;
|
|
2773
2325
|
readonly autonumberFormat?: string | undefined;
|
|
2774
2326
|
readonly index?: boolean | undefined;
|
|
@@ -2790,7 +2342,6 @@ declare const securityObjects: ((Omit<{
|
|
|
2790
2342
|
readonly required?: boolean | undefined;
|
|
2791
2343
|
readonly multiple?: boolean | undefined;
|
|
2792
2344
|
readonly dependencies?: string[] | undefined;
|
|
2793
|
-
readonly theme?: string | undefined;
|
|
2794
2345
|
readonly externalId?: boolean | undefined;
|
|
2795
2346
|
readonly defaultValue?: unknown;
|
|
2796
2347
|
readonly group?: string | undefined;
|
|
@@ -2798,23 +2349,6 @@ declare const securityObjects: ((Omit<{
|
|
|
2798
2349
|
readonly system?: boolean | undefined;
|
|
2799
2350
|
readonly min?: number | undefined;
|
|
2800
2351
|
readonly max?: number | undefined;
|
|
2801
|
-
readonly encryptionConfig?: {
|
|
2802
|
-
enabled: boolean;
|
|
2803
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
2804
|
-
keyManagement: {
|
|
2805
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
2806
|
-
keyId?: string | undefined;
|
|
2807
|
-
rotationPolicy?: {
|
|
2808
|
-
enabled: boolean;
|
|
2809
|
-
frequencyDays: number;
|
|
2810
|
-
retainOldVersions: number;
|
|
2811
|
-
autoRotate: boolean;
|
|
2812
|
-
} | undefined;
|
|
2813
|
-
};
|
|
2814
|
-
scope: "record" | "field" | "table" | "database";
|
|
2815
|
-
deterministicEncryption: boolean;
|
|
2816
|
-
searchableEncryption: boolean;
|
|
2817
|
-
} | undefined;
|
|
2818
2352
|
readonly columnName?: string | undefined;
|
|
2819
2353
|
readonly searchable?: boolean | undefined;
|
|
2820
2354
|
readonly unique?: boolean | undefined;
|
|
@@ -2823,7 +2357,6 @@ declare const securityObjects: ((Omit<{
|
|
|
2823
2357
|
readonly scale?: number | undefined;
|
|
2824
2358
|
readonly reference?: string | undefined;
|
|
2825
2359
|
readonly referenceFilters?: string[] | undefined;
|
|
2826
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2827
2360
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2828
2361
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2829
2362
|
readonly inlineTitle?: string | undefined;
|
|
@@ -2848,22 +2381,8 @@ declare const securityObjects: ((Omit<{
|
|
|
2848
2381
|
relationshipField?: string | undefined;
|
|
2849
2382
|
} | undefined;
|
|
2850
2383
|
readonly language?: string | undefined;
|
|
2851
|
-
readonly lineNumbers?: boolean | undefined;
|
|
2852
2384
|
readonly maxRating?: number | undefined;
|
|
2853
|
-
readonly allowHalf?: boolean | undefined;
|
|
2854
|
-
readonly displayMap?: boolean | undefined;
|
|
2855
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
2856
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
2857
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
2858
|
-
readonly allowAlpha?: boolean | undefined;
|
|
2859
|
-
readonly presetColors?: string[] | undefined;
|
|
2860
2385
|
readonly step?: number | undefined;
|
|
2861
|
-
readonly showValue?: boolean | undefined;
|
|
2862
|
-
readonly marks?: Record<string, string> | undefined;
|
|
2863
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
2864
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
2865
|
-
readonly displayValue?: boolean | undefined;
|
|
2866
|
-
readonly allowScanning?: boolean | undefined;
|
|
2867
2386
|
readonly currencyConfig?: {
|
|
2868
2387
|
precision: number;
|
|
2869
2388
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -2917,29 +2436,7 @@ declare const securityObjects: ((Omit<{
|
|
|
2917
2436
|
} | undefined;
|
|
2918
2437
|
maxVersions?: number | undefined;
|
|
2919
2438
|
} | undefined;
|
|
2920
|
-
readonly
|
|
2921
|
-
field: string;
|
|
2922
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
2923
|
-
preserveFormat: boolean;
|
|
2924
|
-
preserveLength: boolean;
|
|
2925
|
-
pattern?: string | undefined;
|
|
2926
|
-
roles?: string[] | undefined;
|
|
2927
|
-
exemptRoles?: string[] | undefined;
|
|
2928
|
-
} | undefined;
|
|
2929
|
-
readonly auditTrail?: boolean | undefined;
|
|
2930
|
-
readonly cached?: {
|
|
2931
|
-
enabled: boolean;
|
|
2932
|
-
ttl: number;
|
|
2933
|
-
invalidateOn: string[];
|
|
2934
|
-
} | undefined;
|
|
2935
|
-
readonly dataQuality?: {
|
|
2936
|
-
uniqueness: boolean;
|
|
2937
|
-
completeness: number;
|
|
2938
|
-
accuracy?: {
|
|
2939
|
-
source: string;
|
|
2940
|
-
threshold: number;
|
|
2941
|
-
} | undefined;
|
|
2942
|
-
} | undefined;
|
|
2439
|
+
readonly trackHistory?: boolean | undefined;
|
|
2943
2440
|
readonly visibleWhen?: {
|
|
2944
2441
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2945
2442
|
source?: string | undefined;
|
|
@@ -2978,7 +2475,6 @@ declare const securityObjects: ((Omit<{
|
|
|
2978
2475
|
} | undefined;
|
|
2979
2476
|
readonly sortable?: boolean | undefined;
|
|
2980
2477
|
readonly inlineHelpText?: string | undefined;
|
|
2981
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
2982
2478
|
readonly caseSensitive?: boolean | undefined;
|
|
2983
2479
|
readonly autonumberFormat?: string | undefined;
|
|
2984
2480
|
readonly index?: boolean | undefined;
|
|
@@ -3000,7 +2496,6 @@ declare const securityObjects: ((Omit<{
|
|
|
3000
2496
|
readonly required?: boolean | undefined;
|
|
3001
2497
|
readonly multiple?: boolean | undefined;
|
|
3002
2498
|
readonly dependencies?: string[] | undefined;
|
|
3003
|
-
readonly theme?: string | undefined;
|
|
3004
2499
|
readonly externalId?: boolean | undefined;
|
|
3005
2500
|
readonly defaultValue?: unknown;
|
|
3006
2501
|
readonly group?: string | undefined;
|
|
@@ -3008,23 +2503,6 @@ declare const securityObjects: ((Omit<{
|
|
|
3008
2503
|
readonly system?: boolean | undefined;
|
|
3009
2504
|
readonly min?: number | undefined;
|
|
3010
2505
|
readonly max?: number | undefined;
|
|
3011
|
-
readonly encryptionConfig?: {
|
|
3012
|
-
enabled: boolean;
|
|
3013
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
3014
|
-
keyManagement: {
|
|
3015
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
3016
|
-
keyId?: string | undefined;
|
|
3017
|
-
rotationPolicy?: {
|
|
3018
|
-
enabled: boolean;
|
|
3019
|
-
frequencyDays: number;
|
|
3020
|
-
retainOldVersions: number;
|
|
3021
|
-
autoRotate: boolean;
|
|
3022
|
-
} | undefined;
|
|
3023
|
-
};
|
|
3024
|
-
scope: "record" | "field" | "table" | "database";
|
|
3025
|
-
deterministicEncryption: boolean;
|
|
3026
|
-
searchableEncryption: boolean;
|
|
3027
|
-
} | undefined;
|
|
3028
2506
|
readonly columnName?: string | undefined;
|
|
3029
2507
|
readonly searchable?: boolean | undefined;
|
|
3030
2508
|
readonly unique?: boolean | undefined;
|
|
@@ -3033,7 +2511,6 @@ declare const securityObjects: ((Omit<{
|
|
|
3033
2511
|
readonly scale?: number | undefined;
|
|
3034
2512
|
readonly reference?: string | undefined;
|
|
3035
2513
|
readonly referenceFilters?: string[] | undefined;
|
|
3036
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
3037
2514
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3038
2515
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
3039
2516
|
readonly inlineTitle?: string | undefined;
|
|
@@ -3058,22 +2535,8 @@ declare const securityObjects: ((Omit<{
|
|
|
3058
2535
|
relationshipField?: string | undefined;
|
|
3059
2536
|
} | undefined;
|
|
3060
2537
|
readonly language?: string | undefined;
|
|
3061
|
-
readonly lineNumbers?: boolean | undefined;
|
|
3062
2538
|
readonly maxRating?: number | undefined;
|
|
3063
|
-
readonly allowHalf?: boolean | undefined;
|
|
3064
|
-
readonly displayMap?: boolean | undefined;
|
|
3065
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
3066
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
3067
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
3068
|
-
readonly allowAlpha?: boolean | undefined;
|
|
3069
|
-
readonly presetColors?: string[] | undefined;
|
|
3070
2539
|
readonly step?: number | undefined;
|
|
3071
|
-
readonly showValue?: boolean | undefined;
|
|
3072
|
-
readonly marks?: Record<string, string> | undefined;
|
|
3073
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
3074
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
3075
|
-
readonly displayValue?: boolean | undefined;
|
|
3076
|
-
readonly allowScanning?: boolean | undefined;
|
|
3077
2540
|
readonly currencyConfig?: {
|
|
3078
2541
|
precision: number;
|
|
3079
2542
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -3127,29 +2590,7 @@ declare const securityObjects: ((Omit<{
|
|
|
3127
2590
|
} | undefined;
|
|
3128
2591
|
maxVersions?: number | undefined;
|
|
3129
2592
|
} | undefined;
|
|
3130
|
-
readonly
|
|
3131
|
-
field: string;
|
|
3132
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
3133
|
-
preserveFormat: boolean;
|
|
3134
|
-
preserveLength: boolean;
|
|
3135
|
-
pattern?: string | undefined;
|
|
3136
|
-
roles?: string[] | undefined;
|
|
3137
|
-
exemptRoles?: string[] | undefined;
|
|
3138
|
-
} | undefined;
|
|
3139
|
-
readonly auditTrail?: boolean | undefined;
|
|
3140
|
-
readonly cached?: {
|
|
3141
|
-
enabled: boolean;
|
|
3142
|
-
ttl: number;
|
|
3143
|
-
invalidateOn: string[];
|
|
3144
|
-
} | undefined;
|
|
3145
|
-
readonly dataQuality?: {
|
|
3146
|
-
uniqueness: boolean;
|
|
3147
|
-
completeness: number;
|
|
3148
|
-
accuracy?: {
|
|
3149
|
-
source: string;
|
|
3150
|
-
threshold: number;
|
|
3151
|
-
} | undefined;
|
|
3152
|
-
} | undefined;
|
|
2593
|
+
readonly trackHistory?: boolean | undefined;
|
|
3153
2594
|
readonly visibleWhen?: {
|
|
3154
2595
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3155
2596
|
source?: string | undefined;
|
|
@@ -3188,7 +2629,6 @@ declare const securityObjects: ((Omit<{
|
|
|
3188
2629
|
} | undefined;
|
|
3189
2630
|
readonly sortable?: boolean | undefined;
|
|
3190
2631
|
readonly inlineHelpText?: string | undefined;
|
|
3191
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
3192
2632
|
readonly caseSensitive?: boolean | undefined;
|
|
3193
2633
|
readonly autonumberFormat?: string | undefined;
|
|
3194
2634
|
readonly index?: boolean | undefined;
|
|
@@ -3222,7 +2662,6 @@ declare const securityObjects: ((Omit<{
|
|
|
3222
2662
|
multiple: boolean;
|
|
3223
2663
|
unique: boolean;
|
|
3224
2664
|
deleteBehavior: "set_null" | "cascade" | "restrict";
|
|
3225
|
-
auditTrail: boolean;
|
|
3226
2665
|
hidden: boolean;
|
|
3227
2666
|
readonly: boolean;
|
|
3228
2667
|
sortable: boolean;
|
|
@@ -3248,7 +2687,6 @@ declare const securityObjects: ((Omit<{
|
|
|
3248
2687
|
}[] | undefined;
|
|
3249
2688
|
reference?: string | undefined;
|
|
3250
2689
|
referenceFilters?: string[] | undefined;
|
|
3251
|
-
writeRequiresMasterRead?: boolean | undefined;
|
|
3252
2690
|
inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
3253
2691
|
inlineTitle?: string | undefined;
|
|
3254
2692
|
inlineColumns?: any[] | undefined;
|
|
@@ -3280,23 +2718,8 @@ declare const securityObjects: ((Omit<{
|
|
|
3280
2718
|
relationshipField?: string | undefined;
|
|
3281
2719
|
} | undefined;
|
|
3282
2720
|
language?: string | undefined;
|
|
3283
|
-
theme?: string | undefined;
|
|
3284
|
-
lineNumbers?: boolean | undefined;
|
|
3285
2721
|
maxRating?: number | undefined;
|
|
3286
|
-
allowHalf?: boolean | undefined;
|
|
3287
|
-
displayMap?: boolean | undefined;
|
|
3288
|
-
allowGeocoding?: boolean | undefined;
|
|
3289
|
-
addressFormat?: "us" | "uk" | "international" | undefined;
|
|
3290
|
-
colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
3291
|
-
allowAlpha?: boolean | undefined;
|
|
3292
|
-
presetColors?: string[] | undefined;
|
|
3293
2722
|
step?: number | undefined;
|
|
3294
|
-
showValue?: boolean | undefined;
|
|
3295
|
-
marks?: Record<string, string> | undefined;
|
|
3296
|
-
barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
3297
|
-
qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
3298
|
-
displayValue?: boolean | undefined;
|
|
3299
|
-
allowScanning?: boolean | undefined;
|
|
3300
2723
|
currencyConfig?: {
|
|
3301
2724
|
precision: number;
|
|
3302
2725
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -3350,46 +2773,8 @@ declare const securityObjects: ((Omit<{
|
|
|
3350
2773
|
} | undefined;
|
|
3351
2774
|
maxVersions?: number | undefined;
|
|
3352
2775
|
} | undefined;
|
|
3353
|
-
|
|
3354
|
-
enabled: boolean;
|
|
3355
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
3356
|
-
keyManagement: {
|
|
3357
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
3358
|
-
keyId?: string | undefined;
|
|
3359
|
-
rotationPolicy?: {
|
|
3360
|
-
enabled: boolean;
|
|
3361
|
-
frequencyDays: number;
|
|
3362
|
-
retainOldVersions: number;
|
|
3363
|
-
autoRotate: boolean;
|
|
3364
|
-
} | undefined;
|
|
3365
|
-
};
|
|
3366
|
-
scope: "field" | "record" | "table" | "database";
|
|
3367
|
-
deterministicEncryption: boolean;
|
|
3368
|
-
searchableEncryption: boolean;
|
|
3369
|
-
} | undefined;
|
|
3370
|
-
maskingRule?: {
|
|
3371
|
-
field: string;
|
|
3372
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
3373
|
-
preserveFormat: boolean;
|
|
3374
|
-
preserveLength: boolean;
|
|
3375
|
-
pattern?: string | undefined;
|
|
3376
|
-
roles?: string[] | undefined;
|
|
3377
|
-
exemptRoles?: string[] | undefined;
|
|
3378
|
-
} | undefined;
|
|
2776
|
+
trackHistory?: boolean | undefined;
|
|
3379
2777
|
dependencies?: string[] | undefined;
|
|
3380
|
-
cached?: {
|
|
3381
|
-
enabled: boolean;
|
|
3382
|
-
ttl: number;
|
|
3383
|
-
invalidateOn: string[];
|
|
3384
|
-
} | undefined;
|
|
3385
|
-
dataQuality?: {
|
|
3386
|
-
uniqueness: boolean;
|
|
3387
|
-
completeness: number;
|
|
3388
|
-
accuracy?: {
|
|
3389
|
-
source: string;
|
|
3390
|
-
threshold: number;
|
|
3391
|
-
} | undefined;
|
|
3392
|
-
} | undefined;
|
|
3393
2778
|
group?: string | undefined;
|
|
3394
2779
|
visibleWhen?: {
|
|
3395
2780
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -3461,7 +2846,6 @@ declare const securityObjects: ((Omit<{
|
|
|
3461
2846
|
} | undefined;
|
|
3462
2847
|
system?: boolean | undefined;
|
|
3463
2848
|
inlineHelpText?: string | undefined;
|
|
3464
|
-
trackFeedHistory?: boolean | undefined;
|
|
3465
2849
|
caseSensitive?: boolean | undefined;
|
|
3466
2850
|
autonumberFormat?: string | undefined;
|
|
3467
2851
|
}>;
|
|
@@ -3552,12 +2936,13 @@ declare const securityObjects: ((Omit<{
|
|
|
3552
2936
|
key: string;
|
|
3553
2937
|
interval?: string | undefined;
|
|
3554
2938
|
} | undefined;
|
|
3555
|
-
cdc?: {
|
|
3556
|
-
enabled: boolean;
|
|
3557
|
-
events: ("insert" | "update" | "delete")[];
|
|
3558
|
-
destination: string;
|
|
3559
|
-
} | undefined;
|
|
3560
2939
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
2940
|
+
activityMilestones?: {
|
|
2941
|
+
field: string;
|
|
2942
|
+
value: string;
|
|
2943
|
+
summary: string;
|
|
2944
|
+
type?: string | undefined;
|
|
2945
|
+
}[] | undefined;
|
|
3561
2946
|
displayNameField?: string | undefined;
|
|
3562
2947
|
recordName?: {
|
|
3563
2948
|
type: "text" | "autonumber";
|
|
@@ -3868,7 +3253,6 @@ declare const securityObjects: ((Omit<{
|
|
|
3868
3253
|
clone: boolean;
|
|
3869
3254
|
apiMethods?: ("aggregate" | "update" | "delete" | "restore" | "purge" | "search" | "create" | "import" | "list" | "get" | "upsert" | "bulk" | "history" | "export")[] | undefined;
|
|
3870
3255
|
} | undefined;
|
|
3871
|
-
recordTypes?: string[] | undefined;
|
|
3872
3256
|
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
3873
3257
|
publicSharing?: {
|
|
3874
3258
|
enabled: boolean;
|
|
@@ -4154,7 +3538,6 @@ declare const securityObjects: ((Omit<{
|
|
|
4154
3538
|
readonly required?: boolean | undefined;
|
|
4155
3539
|
readonly multiple?: boolean | undefined;
|
|
4156
3540
|
readonly dependencies?: string[] | undefined;
|
|
4157
|
-
readonly theme?: string | undefined;
|
|
4158
3541
|
readonly externalId?: boolean | undefined;
|
|
4159
3542
|
readonly defaultValue?: unknown;
|
|
4160
3543
|
readonly group?: string | undefined;
|
|
@@ -4162,23 +3545,6 @@ declare const securityObjects: ((Omit<{
|
|
|
4162
3545
|
readonly system?: boolean | undefined;
|
|
4163
3546
|
readonly min?: number | undefined;
|
|
4164
3547
|
readonly max?: number | undefined;
|
|
4165
|
-
readonly encryptionConfig?: {
|
|
4166
|
-
enabled: boolean;
|
|
4167
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
4168
|
-
keyManagement: {
|
|
4169
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
4170
|
-
keyId?: string | undefined;
|
|
4171
|
-
rotationPolicy?: {
|
|
4172
|
-
enabled: boolean;
|
|
4173
|
-
frequencyDays: number;
|
|
4174
|
-
retainOldVersions: number;
|
|
4175
|
-
autoRotate: boolean;
|
|
4176
|
-
} | undefined;
|
|
4177
|
-
};
|
|
4178
|
-
scope: "record" | "field" | "table" | "database";
|
|
4179
|
-
deterministicEncryption: boolean;
|
|
4180
|
-
searchableEncryption: boolean;
|
|
4181
|
-
} | undefined;
|
|
4182
3548
|
readonly columnName?: string | undefined;
|
|
4183
3549
|
readonly searchable?: boolean | undefined;
|
|
4184
3550
|
readonly unique?: boolean | undefined;
|
|
@@ -4187,7 +3553,6 @@ declare const securityObjects: ((Omit<{
|
|
|
4187
3553
|
readonly scale?: number | undefined;
|
|
4188
3554
|
readonly reference?: string | undefined;
|
|
4189
3555
|
readonly referenceFilters?: string[] | undefined;
|
|
4190
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
4191
3556
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4192
3557
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
4193
3558
|
readonly inlineTitle?: string | undefined;
|
|
@@ -4212,22 +3577,8 @@ declare const securityObjects: ((Omit<{
|
|
|
4212
3577
|
relationshipField?: string | undefined;
|
|
4213
3578
|
} | undefined;
|
|
4214
3579
|
readonly language?: string | undefined;
|
|
4215
|
-
readonly lineNumbers?: boolean | undefined;
|
|
4216
3580
|
readonly maxRating?: number | undefined;
|
|
4217
|
-
readonly allowHalf?: boolean | undefined;
|
|
4218
|
-
readonly displayMap?: boolean | undefined;
|
|
4219
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
4220
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
4221
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
4222
|
-
readonly allowAlpha?: boolean | undefined;
|
|
4223
|
-
readonly presetColors?: string[] | undefined;
|
|
4224
3581
|
readonly step?: number | undefined;
|
|
4225
|
-
readonly showValue?: boolean | undefined;
|
|
4226
|
-
readonly marks?: Record<string, string> | undefined;
|
|
4227
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
4228
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
4229
|
-
readonly displayValue?: boolean | undefined;
|
|
4230
|
-
readonly allowScanning?: boolean | undefined;
|
|
4231
3582
|
readonly currencyConfig?: {
|
|
4232
3583
|
precision: number;
|
|
4233
3584
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -4281,29 +3632,7 @@ declare const securityObjects: ((Omit<{
|
|
|
4281
3632
|
} | undefined;
|
|
4282
3633
|
maxVersions?: number | undefined;
|
|
4283
3634
|
} | undefined;
|
|
4284
|
-
readonly
|
|
4285
|
-
field: string;
|
|
4286
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
4287
|
-
preserveFormat: boolean;
|
|
4288
|
-
preserveLength: boolean;
|
|
4289
|
-
pattern?: string | undefined;
|
|
4290
|
-
roles?: string[] | undefined;
|
|
4291
|
-
exemptRoles?: string[] | undefined;
|
|
4292
|
-
} | undefined;
|
|
4293
|
-
readonly auditTrail?: boolean | undefined;
|
|
4294
|
-
readonly cached?: {
|
|
4295
|
-
enabled: boolean;
|
|
4296
|
-
ttl: number;
|
|
4297
|
-
invalidateOn: string[];
|
|
4298
|
-
} | undefined;
|
|
4299
|
-
readonly dataQuality?: {
|
|
4300
|
-
uniqueness: boolean;
|
|
4301
|
-
completeness: number;
|
|
4302
|
-
accuracy?: {
|
|
4303
|
-
source: string;
|
|
4304
|
-
threshold: number;
|
|
4305
|
-
} | undefined;
|
|
4306
|
-
} | undefined;
|
|
3635
|
+
readonly trackHistory?: boolean | undefined;
|
|
4307
3636
|
readonly visibleWhen?: {
|
|
4308
3637
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4309
3638
|
source?: string | undefined;
|
|
@@ -4342,7 +3671,6 @@ declare const securityObjects: ((Omit<{
|
|
|
4342
3671
|
} | undefined;
|
|
4343
3672
|
readonly sortable?: boolean | undefined;
|
|
4344
3673
|
readonly inlineHelpText?: string | undefined;
|
|
4345
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
4346
3674
|
readonly caseSensitive?: boolean | undefined;
|
|
4347
3675
|
readonly autonumberFormat?: string | undefined;
|
|
4348
3676
|
readonly index?: boolean | undefined;
|
|
@@ -4364,7 +3692,6 @@ declare const securityObjects: ((Omit<{
|
|
|
4364
3692
|
readonly required?: boolean | undefined;
|
|
4365
3693
|
readonly multiple?: boolean | undefined;
|
|
4366
3694
|
readonly dependencies?: string[] | undefined;
|
|
4367
|
-
readonly theme?: string | undefined;
|
|
4368
3695
|
readonly externalId?: boolean | undefined;
|
|
4369
3696
|
readonly defaultValue?: unknown;
|
|
4370
3697
|
readonly group?: string | undefined;
|
|
@@ -4372,23 +3699,6 @@ declare const securityObjects: ((Omit<{
|
|
|
4372
3699
|
readonly system?: boolean | undefined;
|
|
4373
3700
|
readonly min?: number | undefined;
|
|
4374
3701
|
readonly max?: number | undefined;
|
|
4375
|
-
readonly encryptionConfig?: {
|
|
4376
|
-
enabled: boolean;
|
|
4377
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
4378
|
-
keyManagement: {
|
|
4379
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
4380
|
-
keyId?: string | undefined;
|
|
4381
|
-
rotationPolicy?: {
|
|
4382
|
-
enabled: boolean;
|
|
4383
|
-
frequencyDays: number;
|
|
4384
|
-
retainOldVersions: number;
|
|
4385
|
-
autoRotate: boolean;
|
|
4386
|
-
} | undefined;
|
|
4387
|
-
};
|
|
4388
|
-
scope: "record" | "field" | "table" | "database";
|
|
4389
|
-
deterministicEncryption: boolean;
|
|
4390
|
-
searchableEncryption: boolean;
|
|
4391
|
-
} | undefined;
|
|
4392
3702
|
readonly columnName?: string | undefined;
|
|
4393
3703
|
readonly searchable?: boolean | undefined;
|
|
4394
3704
|
readonly unique?: boolean | undefined;
|
|
@@ -4397,7 +3707,6 @@ declare const securityObjects: ((Omit<{
|
|
|
4397
3707
|
readonly scale?: number | undefined;
|
|
4398
3708
|
readonly reference?: string | undefined;
|
|
4399
3709
|
readonly referenceFilters?: string[] | undefined;
|
|
4400
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
4401
3710
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4402
3711
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
4403
3712
|
readonly inlineTitle?: string | undefined;
|
|
@@ -4422,22 +3731,8 @@ declare const securityObjects: ((Omit<{
|
|
|
4422
3731
|
relationshipField?: string | undefined;
|
|
4423
3732
|
} | undefined;
|
|
4424
3733
|
readonly language?: string | undefined;
|
|
4425
|
-
readonly lineNumbers?: boolean | undefined;
|
|
4426
3734
|
readonly maxRating?: number | undefined;
|
|
4427
|
-
readonly allowHalf?: boolean | undefined;
|
|
4428
|
-
readonly displayMap?: boolean | undefined;
|
|
4429
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
4430
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
4431
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
4432
|
-
readonly allowAlpha?: boolean | undefined;
|
|
4433
|
-
readonly presetColors?: string[] | undefined;
|
|
4434
3735
|
readonly step?: number | undefined;
|
|
4435
|
-
readonly showValue?: boolean | undefined;
|
|
4436
|
-
readonly marks?: Record<string, string> | undefined;
|
|
4437
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
4438
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
4439
|
-
readonly displayValue?: boolean | undefined;
|
|
4440
|
-
readonly allowScanning?: boolean | undefined;
|
|
4441
3736
|
readonly currencyConfig?: {
|
|
4442
3737
|
precision: number;
|
|
4443
3738
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -4491,29 +3786,7 @@ declare const securityObjects: ((Omit<{
|
|
|
4491
3786
|
} | undefined;
|
|
4492
3787
|
maxVersions?: number | undefined;
|
|
4493
3788
|
} | undefined;
|
|
4494
|
-
readonly
|
|
4495
|
-
field: string;
|
|
4496
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
4497
|
-
preserveFormat: boolean;
|
|
4498
|
-
preserveLength: boolean;
|
|
4499
|
-
pattern?: string | undefined;
|
|
4500
|
-
roles?: string[] | undefined;
|
|
4501
|
-
exemptRoles?: string[] | undefined;
|
|
4502
|
-
} | undefined;
|
|
4503
|
-
readonly auditTrail?: boolean | undefined;
|
|
4504
|
-
readonly cached?: {
|
|
4505
|
-
enabled: boolean;
|
|
4506
|
-
ttl: number;
|
|
4507
|
-
invalidateOn: string[];
|
|
4508
|
-
} | undefined;
|
|
4509
|
-
readonly dataQuality?: {
|
|
4510
|
-
uniqueness: boolean;
|
|
4511
|
-
completeness: number;
|
|
4512
|
-
accuracy?: {
|
|
4513
|
-
source: string;
|
|
4514
|
-
threshold: number;
|
|
4515
|
-
} | undefined;
|
|
4516
|
-
} | undefined;
|
|
3789
|
+
readonly trackHistory?: boolean | undefined;
|
|
4517
3790
|
readonly visibleWhen?: {
|
|
4518
3791
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4519
3792
|
source?: string | undefined;
|
|
@@ -4552,7 +3825,6 @@ declare const securityObjects: ((Omit<{
|
|
|
4552
3825
|
} | undefined;
|
|
4553
3826
|
readonly sortable?: boolean | undefined;
|
|
4554
3827
|
readonly inlineHelpText?: string | undefined;
|
|
4555
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
4556
3828
|
readonly caseSensitive?: boolean | undefined;
|
|
4557
3829
|
readonly autonumberFormat?: string | undefined;
|
|
4558
3830
|
readonly index?: boolean | undefined;
|
|
@@ -4574,7 +3846,6 @@ declare const securityObjects: ((Omit<{
|
|
|
4574
3846
|
readonly required?: boolean | undefined;
|
|
4575
3847
|
readonly multiple?: boolean | undefined;
|
|
4576
3848
|
readonly dependencies?: string[] | undefined;
|
|
4577
|
-
readonly theme?: string | undefined;
|
|
4578
3849
|
readonly externalId?: boolean | undefined;
|
|
4579
3850
|
readonly defaultValue?: unknown;
|
|
4580
3851
|
readonly group?: string | undefined;
|
|
@@ -4582,23 +3853,6 @@ declare const securityObjects: ((Omit<{
|
|
|
4582
3853
|
readonly system?: boolean | undefined;
|
|
4583
3854
|
readonly min?: number | undefined;
|
|
4584
3855
|
readonly max?: number | undefined;
|
|
4585
|
-
readonly encryptionConfig?: {
|
|
4586
|
-
enabled: boolean;
|
|
4587
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
4588
|
-
keyManagement: {
|
|
4589
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
4590
|
-
keyId?: string | undefined;
|
|
4591
|
-
rotationPolicy?: {
|
|
4592
|
-
enabled: boolean;
|
|
4593
|
-
frequencyDays: number;
|
|
4594
|
-
retainOldVersions: number;
|
|
4595
|
-
autoRotate: boolean;
|
|
4596
|
-
} | undefined;
|
|
4597
|
-
};
|
|
4598
|
-
scope: "record" | "field" | "table" | "database";
|
|
4599
|
-
deterministicEncryption: boolean;
|
|
4600
|
-
searchableEncryption: boolean;
|
|
4601
|
-
} | undefined;
|
|
4602
3856
|
readonly columnName?: string | undefined;
|
|
4603
3857
|
readonly searchable?: boolean | undefined;
|
|
4604
3858
|
readonly unique?: boolean | undefined;
|
|
@@ -4607,7 +3861,6 @@ declare const securityObjects: ((Omit<{
|
|
|
4607
3861
|
readonly scale?: number | undefined;
|
|
4608
3862
|
readonly reference?: string | undefined;
|
|
4609
3863
|
readonly referenceFilters?: string[] | undefined;
|
|
4610
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
4611
3864
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4612
3865
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
4613
3866
|
readonly inlineTitle?: string | undefined;
|
|
@@ -4632,22 +3885,8 @@ declare const securityObjects: ((Omit<{
|
|
|
4632
3885
|
relationshipField?: string | undefined;
|
|
4633
3886
|
} | undefined;
|
|
4634
3887
|
readonly language?: string | undefined;
|
|
4635
|
-
readonly lineNumbers?: boolean | undefined;
|
|
4636
3888
|
readonly maxRating?: number | undefined;
|
|
4637
|
-
readonly allowHalf?: boolean | undefined;
|
|
4638
|
-
readonly displayMap?: boolean | undefined;
|
|
4639
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
4640
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
4641
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
4642
|
-
readonly allowAlpha?: boolean | undefined;
|
|
4643
|
-
readonly presetColors?: string[] | undefined;
|
|
4644
3889
|
readonly step?: number | undefined;
|
|
4645
|
-
readonly showValue?: boolean | undefined;
|
|
4646
|
-
readonly marks?: Record<string, string> | undefined;
|
|
4647
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
4648
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
4649
|
-
readonly displayValue?: boolean | undefined;
|
|
4650
|
-
readonly allowScanning?: boolean | undefined;
|
|
4651
3890
|
readonly currencyConfig?: {
|
|
4652
3891
|
precision: number;
|
|
4653
3892
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -4701,29 +3940,7 @@ declare const securityObjects: ((Omit<{
|
|
|
4701
3940
|
} | undefined;
|
|
4702
3941
|
maxVersions?: number | undefined;
|
|
4703
3942
|
} | undefined;
|
|
4704
|
-
readonly
|
|
4705
|
-
field: string;
|
|
4706
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
4707
|
-
preserveFormat: boolean;
|
|
4708
|
-
preserveLength: boolean;
|
|
4709
|
-
pattern?: string | undefined;
|
|
4710
|
-
roles?: string[] | undefined;
|
|
4711
|
-
exemptRoles?: string[] | undefined;
|
|
4712
|
-
} | undefined;
|
|
4713
|
-
readonly auditTrail?: boolean | undefined;
|
|
4714
|
-
readonly cached?: {
|
|
4715
|
-
enabled: boolean;
|
|
4716
|
-
ttl: number;
|
|
4717
|
-
invalidateOn: string[];
|
|
4718
|
-
} | undefined;
|
|
4719
|
-
readonly dataQuality?: {
|
|
4720
|
-
uniqueness: boolean;
|
|
4721
|
-
completeness: number;
|
|
4722
|
-
accuracy?: {
|
|
4723
|
-
source: string;
|
|
4724
|
-
threshold: number;
|
|
4725
|
-
} | undefined;
|
|
4726
|
-
} | undefined;
|
|
3943
|
+
readonly trackHistory?: boolean | undefined;
|
|
4727
3944
|
readonly visibleWhen?: {
|
|
4728
3945
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4729
3946
|
source?: string | undefined;
|
|
@@ -4762,7 +3979,6 @@ declare const securityObjects: ((Omit<{
|
|
|
4762
3979
|
} | undefined;
|
|
4763
3980
|
readonly sortable?: boolean | undefined;
|
|
4764
3981
|
readonly inlineHelpText?: string | undefined;
|
|
4765
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
4766
3982
|
readonly caseSensitive?: boolean | undefined;
|
|
4767
3983
|
readonly autonumberFormat?: string | undefined;
|
|
4768
3984
|
readonly index?: boolean | undefined;
|
|
@@ -4784,7 +4000,6 @@ declare const securityObjects: ((Omit<{
|
|
|
4784
4000
|
readonly required?: boolean | undefined;
|
|
4785
4001
|
readonly multiple?: boolean | undefined;
|
|
4786
4002
|
readonly dependencies?: string[] | undefined;
|
|
4787
|
-
readonly theme?: string | undefined;
|
|
4788
4003
|
readonly externalId?: boolean | undefined;
|
|
4789
4004
|
readonly defaultValue?: unknown;
|
|
4790
4005
|
readonly group?: string | undefined;
|
|
@@ -4792,23 +4007,6 @@ declare const securityObjects: ((Omit<{
|
|
|
4792
4007
|
readonly system?: boolean | undefined;
|
|
4793
4008
|
readonly min?: number | undefined;
|
|
4794
4009
|
readonly max?: number | undefined;
|
|
4795
|
-
readonly encryptionConfig?: {
|
|
4796
|
-
enabled: boolean;
|
|
4797
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
4798
|
-
keyManagement: {
|
|
4799
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
4800
|
-
keyId?: string | undefined;
|
|
4801
|
-
rotationPolicy?: {
|
|
4802
|
-
enabled: boolean;
|
|
4803
|
-
frequencyDays: number;
|
|
4804
|
-
retainOldVersions: number;
|
|
4805
|
-
autoRotate: boolean;
|
|
4806
|
-
} | undefined;
|
|
4807
|
-
};
|
|
4808
|
-
scope: "record" | "field" | "table" | "database";
|
|
4809
|
-
deterministicEncryption: boolean;
|
|
4810
|
-
searchableEncryption: boolean;
|
|
4811
|
-
} | undefined;
|
|
4812
4010
|
readonly columnName?: string | undefined;
|
|
4813
4011
|
readonly searchable?: boolean | undefined;
|
|
4814
4012
|
readonly unique?: boolean | undefined;
|
|
@@ -4817,7 +4015,6 @@ declare const securityObjects: ((Omit<{
|
|
|
4817
4015
|
readonly scale?: number | undefined;
|
|
4818
4016
|
readonly reference?: string | undefined;
|
|
4819
4017
|
readonly referenceFilters?: string[] | undefined;
|
|
4820
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
4821
4018
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4822
4019
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
4823
4020
|
readonly inlineTitle?: string | undefined;
|
|
@@ -4842,22 +4039,8 @@ declare const securityObjects: ((Omit<{
|
|
|
4842
4039
|
relationshipField?: string | undefined;
|
|
4843
4040
|
} | undefined;
|
|
4844
4041
|
readonly language?: string | undefined;
|
|
4845
|
-
readonly lineNumbers?: boolean | undefined;
|
|
4846
4042
|
readonly maxRating?: number | undefined;
|
|
4847
|
-
readonly allowHalf?: boolean | undefined;
|
|
4848
|
-
readonly displayMap?: boolean | undefined;
|
|
4849
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
4850
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
4851
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
4852
|
-
readonly allowAlpha?: boolean | undefined;
|
|
4853
|
-
readonly presetColors?: string[] | undefined;
|
|
4854
4043
|
readonly step?: number | undefined;
|
|
4855
|
-
readonly showValue?: boolean | undefined;
|
|
4856
|
-
readonly marks?: Record<string, string> | undefined;
|
|
4857
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
4858
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
4859
|
-
readonly displayValue?: boolean | undefined;
|
|
4860
|
-
readonly allowScanning?: boolean | undefined;
|
|
4861
4044
|
readonly currencyConfig?: {
|
|
4862
4045
|
precision: number;
|
|
4863
4046
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -4911,29 +4094,7 @@ declare const securityObjects: ((Omit<{
|
|
|
4911
4094
|
} | undefined;
|
|
4912
4095
|
maxVersions?: number | undefined;
|
|
4913
4096
|
} | undefined;
|
|
4914
|
-
readonly
|
|
4915
|
-
field: string;
|
|
4916
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
4917
|
-
preserveFormat: boolean;
|
|
4918
|
-
preserveLength: boolean;
|
|
4919
|
-
pattern?: string | undefined;
|
|
4920
|
-
roles?: string[] | undefined;
|
|
4921
|
-
exemptRoles?: string[] | undefined;
|
|
4922
|
-
} | undefined;
|
|
4923
|
-
readonly auditTrail?: boolean | undefined;
|
|
4924
|
-
readonly cached?: {
|
|
4925
|
-
enabled: boolean;
|
|
4926
|
-
ttl: number;
|
|
4927
|
-
invalidateOn: string[];
|
|
4928
|
-
} | undefined;
|
|
4929
|
-
readonly dataQuality?: {
|
|
4930
|
-
uniqueness: boolean;
|
|
4931
|
-
completeness: number;
|
|
4932
|
-
accuracy?: {
|
|
4933
|
-
source: string;
|
|
4934
|
-
threshold: number;
|
|
4935
|
-
} | undefined;
|
|
4936
|
-
} | undefined;
|
|
4097
|
+
readonly trackHistory?: boolean | undefined;
|
|
4937
4098
|
readonly visibleWhen?: {
|
|
4938
4099
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4939
4100
|
source?: string | undefined;
|
|
@@ -4972,7 +4133,6 @@ declare const securityObjects: ((Omit<{
|
|
|
4972
4133
|
} | undefined;
|
|
4973
4134
|
readonly sortable?: boolean | undefined;
|
|
4974
4135
|
readonly inlineHelpText?: string | undefined;
|
|
4975
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
4976
4136
|
readonly caseSensitive?: boolean | undefined;
|
|
4977
4137
|
readonly autonumberFormat?: string | undefined;
|
|
4978
4138
|
readonly index?: boolean | undefined;
|
|
@@ -4994,7 +4154,6 @@ declare const securityObjects: ((Omit<{
|
|
|
4994
4154
|
readonly required?: boolean | undefined;
|
|
4995
4155
|
readonly multiple?: boolean | undefined;
|
|
4996
4156
|
readonly dependencies?: string[] | undefined;
|
|
4997
|
-
readonly theme?: string | undefined;
|
|
4998
4157
|
readonly externalId?: boolean | undefined;
|
|
4999
4158
|
readonly defaultValue?: unknown;
|
|
5000
4159
|
readonly group?: string | undefined;
|
|
@@ -5002,23 +4161,6 @@ declare const securityObjects: ((Omit<{
|
|
|
5002
4161
|
readonly system?: boolean | undefined;
|
|
5003
4162
|
readonly min?: number | undefined;
|
|
5004
4163
|
readonly max?: number | undefined;
|
|
5005
|
-
readonly encryptionConfig?: {
|
|
5006
|
-
enabled: boolean;
|
|
5007
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
5008
|
-
keyManagement: {
|
|
5009
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
5010
|
-
keyId?: string | undefined;
|
|
5011
|
-
rotationPolicy?: {
|
|
5012
|
-
enabled: boolean;
|
|
5013
|
-
frequencyDays: number;
|
|
5014
|
-
retainOldVersions: number;
|
|
5015
|
-
autoRotate: boolean;
|
|
5016
|
-
} | undefined;
|
|
5017
|
-
};
|
|
5018
|
-
scope: "record" | "field" | "table" | "database";
|
|
5019
|
-
deterministicEncryption: boolean;
|
|
5020
|
-
searchableEncryption: boolean;
|
|
5021
|
-
} | undefined;
|
|
5022
4164
|
readonly columnName?: string | undefined;
|
|
5023
4165
|
readonly searchable?: boolean | undefined;
|
|
5024
4166
|
readonly unique?: boolean | undefined;
|
|
@@ -5027,7 +4169,6 @@ declare const securityObjects: ((Omit<{
|
|
|
5027
4169
|
readonly scale?: number | undefined;
|
|
5028
4170
|
readonly reference?: string | undefined;
|
|
5029
4171
|
readonly referenceFilters?: string[] | undefined;
|
|
5030
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
5031
4172
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5032
4173
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
5033
4174
|
readonly inlineTitle?: string | undefined;
|
|
@@ -5052,22 +4193,8 @@ declare const securityObjects: ((Omit<{
|
|
|
5052
4193
|
relationshipField?: string | undefined;
|
|
5053
4194
|
} | undefined;
|
|
5054
4195
|
readonly language?: string | undefined;
|
|
5055
|
-
readonly lineNumbers?: boolean | undefined;
|
|
5056
4196
|
readonly maxRating?: number | undefined;
|
|
5057
|
-
readonly allowHalf?: boolean | undefined;
|
|
5058
|
-
readonly displayMap?: boolean | undefined;
|
|
5059
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
5060
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
5061
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
5062
|
-
readonly allowAlpha?: boolean | undefined;
|
|
5063
|
-
readonly presetColors?: string[] | undefined;
|
|
5064
4197
|
readonly step?: number | undefined;
|
|
5065
|
-
readonly showValue?: boolean | undefined;
|
|
5066
|
-
readonly marks?: Record<string, string> | undefined;
|
|
5067
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
5068
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
5069
|
-
readonly displayValue?: boolean | undefined;
|
|
5070
|
-
readonly allowScanning?: boolean | undefined;
|
|
5071
4198
|
readonly currencyConfig?: {
|
|
5072
4199
|
precision: number;
|
|
5073
4200
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -5121,29 +4248,7 @@ declare const securityObjects: ((Omit<{
|
|
|
5121
4248
|
} | undefined;
|
|
5122
4249
|
maxVersions?: number | undefined;
|
|
5123
4250
|
} | undefined;
|
|
5124
|
-
readonly
|
|
5125
|
-
field: string;
|
|
5126
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
5127
|
-
preserveFormat: boolean;
|
|
5128
|
-
preserveLength: boolean;
|
|
5129
|
-
pattern?: string | undefined;
|
|
5130
|
-
roles?: string[] | undefined;
|
|
5131
|
-
exemptRoles?: string[] | undefined;
|
|
5132
|
-
} | undefined;
|
|
5133
|
-
readonly auditTrail?: boolean | undefined;
|
|
5134
|
-
readonly cached?: {
|
|
5135
|
-
enabled: boolean;
|
|
5136
|
-
ttl: number;
|
|
5137
|
-
invalidateOn: string[];
|
|
5138
|
-
} | undefined;
|
|
5139
|
-
readonly dataQuality?: {
|
|
5140
|
-
uniqueness: boolean;
|
|
5141
|
-
completeness: number;
|
|
5142
|
-
accuracy?: {
|
|
5143
|
-
source: string;
|
|
5144
|
-
threshold: number;
|
|
5145
|
-
} | undefined;
|
|
5146
|
-
} | undefined;
|
|
4251
|
+
readonly trackHistory?: boolean | undefined;
|
|
5147
4252
|
readonly visibleWhen?: {
|
|
5148
4253
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5149
4254
|
source?: string | undefined;
|
|
@@ -5182,7 +4287,6 @@ declare const securityObjects: ((Omit<{
|
|
|
5182
4287
|
} | undefined;
|
|
5183
4288
|
readonly sortable?: boolean | undefined;
|
|
5184
4289
|
readonly inlineHelpText?: string | undefined;
|
|
5185
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
5186
4290
|
readonly caseSensitive?: boolean | undefined;
|
|
5187
4291
|
readonly autonumberFormat?: string | undefined;
|
|
5188
4292
|
readonly index?: boolean | undefined;
|
|
@@ -5204,7 +4308,6 @@ declare const securityObjects: ((Omit<{
|
|
|
5204
4308
|
readonly required?: boolean | undefined;
|
|
5205
4309
|
readonly multiple?: boolean | undefined;
|
|
5206
4310
|
readonly dependencies?: string[] | undefined;
|
|
5207
|
-
readonly theme?: string | undefined;
|
|
5208
4311
|
readonly externalId?: boolean | undefined;
|
|
5209
4312
|
readonly defaultValue?: unknown;
|
|
5210
4313
|
readonly group?: string | undefined;
|
|
@@ -5212,23 +4315,6 @@ declare const securityObjects: ((Omit<{
|
|
|
5212
4315
|
readonly system?: boolean | undefined;
|
|
5213
4316
|
readonly min?: number | undefined;
|
|
5214
4317
|
readonly max?: number | undefined;
|
|
5215
|
-
readonly encryptionConfig?: {
|
|
5216
|
-
enabled: boolean;
|
|
5217
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
5218
|
-
keyManagement: {
|
|
5219
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
5220
|
-
keyId?: string | undefined;
|
|
5221
|
-
rotationPolicy?: {
|
|
5222
|
-
enabled: boolean;
|
|
5223
|
-
frequencyDays: number;
|
|
5224
|
-
retainOldVersions: number;
|
|
5225
|
-
autoRotate: boolean;
|
|
5226
|
-
} | undefined;
|
|
5227
|
-
};
|
|
5228
|
-
scope: "record" | "field" | "table" | "database";
|
|
5229
|
-
deterministicEncryption: boolean;
|
|
5230
|
-
searchableEncryption: boolean;
|
|
5231
|
-
} | undefined;
|
|
5232
4318
|
readonly columnName?: string | undefined;
|
|
5233
4319
|
readonly searchable?: boolean | undefined;
|
|
5234
4320
|
readonly unique?: boolean | undefined;
|
|
@@ -5237,7 +4323,6 @@ declare const securityObjects: ((Omit<{
|
|
|
5237
4323
|
readonly scale?: number | undefined;
|
|
5238
4324
|
readonly reference?: string | undefined;
|
|
5239
4325
|
readonly referenceFilters?: string[] | undefined;
|
|
5240
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
5241
4326
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5242
4327
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
5243
4328
|
readonly inlineTitle?: string | undefined;
|
|
@@ -5262,22 +4347,8 @@ declare const securityObjects: ((Omit<{
|
|
|
5262
4347
|
relationshipField?: string | undefined;
|
|
5263
4348
|
} | undefined;
|
|
5264
4349
|
readonly language?: string | undefined;
|
|
5265
|
-
readonly lineNumbers?: boolean | undefined;
|
|
5266
4350
|
readonly maxRating?: number | undefined;
|
|
5267
|
-
readonly allowHalf?: boolean | undefined;
|
|
5268
|
-
readonly displayMap?: boolean | undefined;
|
|
5269
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
5270
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
5271
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
5272
|
-
readonly allowAlpha?: boolean | undefined;
|
|
5273
|
-
readonly presetColors?: string[] | undefined;
|
|
5274
4351
|
readonly step?: number | undefined;
|
|
5275
|
-
readonly showValue?: boolean | undefined;
|
|
5276
|
-
readonly marks?: Record<string, string> | undefined;
|
|
5277
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
5278
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
5279
|
-
readonly displayValue?: boolean | undefined;
|
|
5280
|
-
readonly allowScanning?: boolean | undefined;
|
|
5281
4352
|
readonly currencyConfig?: {
|
|
5282
4353
|
precision: number;
|
|
5283
4354
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -5331,29 +4402,7 @@ declare const securityObjects: ((Omit<{
|
|
|
5331
4402
|
} | undefined;
|
|
5332
4403
|
maxVersions?: number | undefined;
|
|
5333
4404
|
} | undefined;
|
|
5334
|
-
readonly
|
|
5335
|
-
field: string;
|
|
5336
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
5337
|
-
preserveFormat: boolean;
|
|
5338
|
-
preserveLength: boolean;
|
|
5339
|
-
pattern?: string | undefined;
|
|
5340
|
-
roles?: string[] | undefined;
|
|
5341
|
-
exemptRoles?: string[] | undefined;
|
|
5342
|
-
} | undefined;
|
|
5343
|
-
readonly auditTrail?: boolean | undefined;
|
|
5344
|
-
readonly cached?: {
|
|
5345
|
-
enabled: boolean;
|
|
5346
|
-
ttl: number;
|
|
5347
|
-
invalidateOn: string[];
|
|
5348
|
-
} | undefined;
|
|
5349
|
-
readonly dataQuality?: {
|
|
5350
|
-
uniqueness: boolean;
|
|
5351
|
-
completeness: number;
|
|
5352
|
-
accuracy?: {
|
|
5353
|
-
source: string;
|
|
5354
|
-
threshold: number;
|
|
5355
|
-
} | undefined;
|
|
5356
|
-
} | undefined;
|
|
4405
|
+
readonly trackHistory?: boolean | undefined;
|
|
5357
4406
|
readonly visibleWhen?: {
|
|
5358
4407
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5359
4408
|
source?: string | undefined;
|
|
@@ -5392,7 +4441,6 @@ declare const securityObjects: ((Omit<{
|
|
|
5392
4441
|
} | undefined;
|
|
5393
4442
|
readonly sortable?: boolean | undefined;
|
|
5394
4443
|
readonly inlineHelpText?: string | undefined;
|
|
5395
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
5396
4444
|
readonly caseSensitive?: boolean | undefined;
|
|
5397
4445
|
readonly autonumberFormat?: string | undefined;
|
|
5398
4446
|
readonly index?: boolean | undefined;
|
|
@@ -5414,7 +4462,6 @@ declare const securityObjects: ((Omit<{
|
|
|
5414
4462
|
readonly required?: boolean | undefined;
|
|
5415
4463
|
readonly multiple?: boolean | undefined;
|
|
5416
4464
|
readonly dependencies?: string[] | undefined;
|
|
5417
|
-
readonly theme?: string | undefined;
|
|
5418
4465
|
readonly externalId?: boolean | undefined;
|
|
5419
4466
|
readonly defaultValue?: unknown;
|
|
5420
4467
|
readonly group?: string | undefined;
|
|
@@ -5422,23 +4469,6 @@ declare const securityObjects: ((Omit<{
|
|
|
5422
4469
|
readonly system?: boolean | undefined;
|
|
5423
4470
|
readonly min?: number | undefined;
|
|
5424
4471
|
readonly max?: number | undefined;
|
|
5425
|
-
readonly encryptionConfig?: {
|
|
5426
|
-
enabled: boolean;
|
|
5427
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
5428
|
-
keyManagement: {
|
|
5429
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
5430
|
-
keyId?: string | undefined;
|
|
5431
|
-
rotationPolicy?: {
|
|
5432
|
-
enabled: boolean;
|
|
5433
|
-
frequencyDays: number;
|
|
5434
|
-
retainOldVersions: number;
|
|
5435
|
-
autoRotate: boolean;
|
|
5436
|
-
} | undefined;
|
|
5437
|
-
};
|
|
5438
|
-
scope: "record" | "field" | "table" | "database";
|
|
5439
|
-
deterministicEncryption: boolean;
|
|
5440
|
-
searchableEncryption: boolean;
|
|
5441
|
-
} | undefined;
|
|
5442
4472
|
readonly columnName?: string | undefined;
|
|
5443
4473
|
readonly searchable?: boolean | undefined;
|
|
5444
4474
|
readonly unique?: boolean | undefined;
|
|
@@ -5447,7 +4477,6 @@ declare const securityObjects: ((Omit<{
|
|
|
5447
4477
|
readonly scale?: number | undefined;
|
|
5448
4478
|
readonly reference?: string | undefined;
|
|
5449
4479
|
readonly referenceFilters?: string[] | undefined;
|
|
5450
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
5451
4480
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5452
4481
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
5453
4482
|
readonly inlineTitle?: string | undefined;
|
|
@@ -5472,22 +4501,8 @@ declare const securityObjects: ((Omit<{
|
|
|
5472
4501
|
relationshipField?: string | undefined;
|
|
5473
4502
|
} | undefined;
|
|
5474
4503
|
readonly language?: string | undefined;
|
|
5475
|
-
readonly lineNumbers?: boolean | undefined;
|
|
5476
4504
|
readonly maxRating?: number | undefined;
|
|
5477
|
-
readonly allowHalf?: boolean | undefined;
|
|
5478
|
-
readonly displayMap?: boolean | undefined;
|
|
5479
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
5480
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
5481
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
5482
|
-
readonly allowAlpha?: boolean | undefined;
|
|
5483
|
-
readonly presetColors?: string[] | undefined;
|
|
5484
4505
|
readonly step?: number | undefined;
|
|
5485
|
-
readonly showValue?: boolean | undefined;
|
|
5486
|
-
readonly marks?: Record<string, string> | undefined;
|
|
5487
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
5488
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
5489
|
-
readonly displayValue?: boolean | undefined;
|
|
5490
|
-
readonly allowScanning?: boolean | undefined;
|
|
5491
4506
|
readonly currencyConfig?: {
|
|
5492
4507
|
precision: number;
|
|
5493
4508
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -5541,29 +4556,7 @@ declare const securityObjects: ((Omit<{
|
|
|
5541
4556
|
} | undefined;
|
|
5542
4557
|
maxVersions?: number | undefined;
|
|
5543
4558
|
} | undefined;
|
|
5544
|
-
readonly
|
|
5545
|
-
field: string;
|
|
5546
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
5547
|
-
preserveFormat: boolean;
|
|
5548
|
-
preserveLength: boolean;
|
|
5549
|
-
pattern?: string | undefined;
|
|
5550
|
-
roles?: string[] | undefined;
|
|
5551
|
-
exemptRoles?: string[] | undefined;
|
|
5552
|
-
} | undefined;
|
|
5553
|
-
readonly auditTrail?: boolean | undefined;
|
|
5554
|
-
readonly cached?: {
|
|
5555
|
-
enabled: boolean;
|
|
5556
|
-
ttl: number;
|
|
5557
|
-
invalidateOn: string[];
|
|
5558
|
-
} | undefined;
|
|
5559
|
-
readonly dataQuality?: {
|
|
5560
|
-
uniqueness: boolean;
|
|
5561
|
-
completeness: number;
|
|
5562
|
-
accuracy?: {
|
|
5563
|
-
source: string;
|
|
5564
|
-
threshold: number;
|
|
5565
|
-
} | undefined;
|
|
5566
|
-
} | undefined;
|
|
4559
|
+
readonly trackHistory?: boolean | undefined;
|
|
5567
4560
|
readonly visibleWhen?: {
|
|
5568
4561
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5569
4562
|
source?: string | undefined;
|
|
@@ -5602,7 +4595,6 @@ declare const securityObjects: ((Omit<{
|
|
|
5602
4595
|
} | undefined;
|
|
5603
4596
|
readonly sortable?: boolean | undefined;
|
|
5604
4597
|
readonly inlineHelpText?: string | undefined;
|
|
5605
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
5606
4598
|
readonly caseSensitive?: boolean | undefined;
|
|
5607
4599
|
readonly autonumberFormat?: string | undefined;
|
|
5608
4600
|
readonly index?: boolean | undefined;
|
|
@@ -5624,7 +4616,6 @@ declare const securityObjects: ((Omit<{
|
|
|
5624
4616
|
readonly required?: boolean | undefined;
|
|
5625
4617
|
readonly multiple?: boolean | undefined;
|
|
5626
4618
|
readonly dependencies?: string[] | undefined;
|
|
5627
|
-
readonly theme?: string | undefined;
|
|
5628
4619
|
readonly externalId?: boolean | undefined;
|
|
5629
4620
|
readonly defaultValue?: unknown;
|
|
5630
4621
|
readonly group?: string | undefined;
|
|
@@ -5632,23 +4623,6 @@ declare const securityObjects: ((Omit<{
|
|
|
5632
4623
|
readonly system?: boolean | undefined;
|
|
5633
4624
|
readonly min?: number | undefined;
|
|
5634
4625
|
readonly max?: number | undefined;
|
|
5635
|
-
readonly encryptionConfig?: {
|
|
5636
|
-
enabled: boolean;
|
|
5637
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
5638
|
-
keyManagement: {
|
|
5639
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
5640
|
-
keyId?: string | undefined;
|
|
5641
|
-
rotationPolicy?: {
|
|
5642
|
-
enabled: boolean;
|
|
5643
|
-
frequencyDays: number;
|
|
5644
|
-
retainOldVersions: number;
|
|
5645
|
-
autoRotate: boolean;
|
|
5646
|
-
} | undefined;
|
|
5647
|
-
};
|
|
5648
|
-
scope: "record" | "field" | "table" | "database";
|
|
5649
|
-
deterministicEncryption: boolean;
|
|
5650
|
-
searchableEncryption: boolean;
|
|
5651
|
-
} | undefined;
|
|
5652
4626
|
readonly columnName?: string | undefined;
|
|
5653
4627
|
readonly searchable?: boolean | undefined;
|
|
5654
4628
|
readonly unique?: boolean | undefined;
|
|
@@ -5657,7 +4631,6 @@ declare const securityObjects: ((Omit<{
|
|
|
5657
4631
|
readonly scale?: number | undefined;
|
|
5658
4632
|
readonly reference?: string | undefined;
|
|
5659
4633
|
readonly referenceFilters?: string[] | undefined;
|
|
5660
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
5661
4634
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5662
4635
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
5663
4636
|
readonly inlineTitle?: string | undefined;
|
|
@@ -5682,22 +4655,8 @@ declare const securityObjects: ((Omit<{
|
|
|
5682
4655
|
relationshipField?: string | undefined;
|
|
5683
4656
|
} | undefined;
|
|
5684
4657
|
readonly language?: string | undefined;
|
|
5685
|
-
readonly lineNumbers?: boolean | undefined;
|
|
5686
4658
|
readonly maxRating?: number | undefined;
|
|
5687
|
-
readonly allowHalf?: boolean | undefined;
|
|
5688
|
-
readonly displayMap?: boolean | undefined;
|
|
5689
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
5690
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
5691
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
5692
|
-
readonly allowAlpha?: boolean | undefined;
|
|
5693
|
-
readonly presetColors?: string[] | undefined;
|
|
5694
4659
|
readonly step?: number | undefined;
|
|
5695
|
-
readonly showValue?: boolean | undefined;
|
|
5696
|
-
readonly marks?: Record<string, string> | undefined;
|
|
5697
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
5698
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
5699
|
-
readonly displayValue?: boolean | undefined;
|
|
5700
|
-
readonly allowScanning?: boolean | undefined;
|
|
5701
4660
|
readonly currencyConfig?: {
|
|
5702
4661
|
precision: number;
|
|
5703
4662
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -5751,29 +4710,7 @@ declare const securityObjects: ((Omit<{
|
|
|
5751
4710
|
} | undefined;
|
|
5752
4711
|
maxVersions?: number | undefined;
|
|
5753
4712
|
} | undefined;
|
|
5754
|
-
readonly
|
|
5755
|
-
field: string;
|
|
5756
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
5757
|
-
preserveFormat: boolean;
|
|
5758
|
-
preserveLength: boolean;
|
|
5759
|
-
pattern?: string | undefined;
|
|
5760
|
-
roles?: string[] | undefined;
|
|
5761
|
-
exemptRoles?: string[] | undefined;
|
|
5762
|
-
} | undefined;
|
|
5763
|
-
readonly auditTrail?: boolean | undefined;
|
|
5764
|
-
readonly cached?: {
|
|
5765
|
-
enabled: boolean;
|
|
5766
|
-
ttl: number;
|
|
5767
|
-
invalidateOn: string[];
|
|
5768
|
-
} | undefined;
|
|
5769
|
-
readonly dataQuality?: {
|
|
5770
|
-
uniqueness: boolean;
|
|
5771
|
-
completeness: number;
|
|
5772
|
-
accuracy?: {
|
|
5773
|
-
source: string;
|
|
5774
|
-
threshold: number;
|
|
5775
|
-
} | undefined;
|
|
5776
|
-
} | undefined;
|
|
4713
|
+
readonly trackHistory?: boolean | undefined;
|
|
5777
4714
|
readonly visibleWhen?: {
|
|
5778
4715
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5779
4716
|
source?: string | undefined;
|
|
@@ -5812,7 +4749,6 @@ declare const securityObjects: ((Omit<{
|
|
|
5812
4749
|
} | undefined;
|
|
5813
4750
|
readonly sortable?: boolean | undefined;
|
|
5814
4751
|
readonly inlineHelpText?: string | undefined;
|
|
5815
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
5816
4752
|
readonly caseSensitive?: boolean | undefined;
|
|
5817
4753
|
readonly autonumberFormat?: string | undefined;
|
|
5818
4754
|
readonly index?: boolean | undefined;
|
|
@@ -5834,7 +4770,6 @@ declare const securityObjects: ((Omit<{
|
|
|
5834
4770
|
readonly required?: boolean | undefined;
|
|
5835
4771
|
readonly multiple?: boolean | undefined;
|
|
5836
4772
|
readonly dependencies?: string[] | undefined;
|
|
5837
|
-
readonly theme?: string | undefined;
|
|
5838
4773
|
readonly externalId?: boolean | undefined;
|
|
5839
4774
|
readonly defaultValue?: unknown;
|
|
5840
4775
|
readonly group?: string | undefined;
|
|
@@ -5842,23 +4777,6 @@ declare const securityObjects: ((Omit<{
|
|
|
5842
4777
|
readonly system?: boolean | undefined;
|
|
5843
4778
|
readonly min?: number | undefined;
|
|
5844
4779
|
readonly max?: number | undefined;
|
|
5845
|
-
readonly encryptionConfig?: {
|
|
5846
|
-
enabled: boolean;
|
|
5847
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
5848
|
-
keyManagement: {
|
|
5849
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
5850
|
-
keyId?: string | undefined;
|
|
5851
|
-
rotationPolicy?: {
|
|
5852
|
-
enabled: boolean;
|
|
5853
|
-
frequencyDays: number;
|
|
5854
|
-
retainOldVersions: number;
|
|
5855
|
-
autoRotate: boolean;
|
|
5856
|
-
} | undefined;
|
|
5857
|
-
};
|
|
5858
|
-
scope: "record" | "field" | "table" | "database";
|
|
5859
|
-
deterministicEncryption: boolean;
|
|
5860
|
-
searchableEncryption: boolean;
|
|
5861
|
-
} | undefined;
|
|
5862
4780
|
readonly columnName?: string | undefined;
|
|
5863
4781
|
readonly searchable?: boolean | undefined;
|
|
5864
4782
|
readonly unique?: boolean | undefined;
|
|
@@ -5867,7 +4785,6 @@ declare const securityObjects: ((Omit<{
|
|
|
5867
4785
|
readonly scale?: number | undefined;
|
|
5868
4786
|
readonly reference?: string | undefined;
|
|
5869
4787
|
readonly referenceFilters?: string[] | undefined;
|
|
5870
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
5871
4788
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5872
4789
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
5873
4790
|
readonly inlineTitle?: string | undefined;
|
|
@@ -5892,22 +4809,8 @@ declare const securityObjects: ((Omit<{
|
|
|
5892
4809
|
relationshipField?: string | undefined;
|
|
5893
4810
|
} | undefined;
|
|
5894
4811
|
readonly language?: string | undefined;
|
|
5895
|
-
readonly lineNumbers?: boolean | undefined;
|
|
5896
4812
|
readonly maxRating?: number | undefined;
|
|
5897
|
-
readonly allowHalf?: boolean | undefined;
|
|
5898
|
-
readonly displayMap?: boolean | undefined;
|
|
5899
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
5900
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
5901
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
5902
|
-
readonly allowAlpha?: boolean | undefined;
|
|
5903
|
-
readonly presetColors?: string[] | undefined;
|
|
5904
4813
|
readonly step?: number | undefined;
|
|
5905
|
-
readonly showValue?: boolean | undefined;
|
|
5906
|
-
readonly marks?: Record<string, string> | undefined;
|
|
5907
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
5908
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
5909
|
-
readonly displayValue?: boolean | undefined;
|
|
5910
|
-
readonly allowScanning?: boolean | undefined;
|
|
5911
4814
|
readonly currencyConfig?: {
|
|
5912
4815
|
precision: number;
|
|
5913
4816
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -5961,29 +4864,7 @@ declare const securityObjects: ((Omit<{
|
|
|
5961
4864
|
} | undefined;
|
|
5962
4865
|
maxVersions?: number | undefined;
|
|
5963
4866
|
} | undefined;
|
|
5964
|
-
readonly
|
|
5965
|
-
field: string;
|
|
5966
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
5967
|
-
preserveFormat: boolean;
|
|
5968
|
-
preserveLength: boolean;
|
|
5969
|
-
pattern?: string | undefined;
|
|
5970
|
-
roles?: string[] | undefined;
|
|
5971
|
-
exemptRoles?: string[] | undefined;
|
|
5972
|
-
} | undefined;
|
|
5973
|
-
readonly auditTrail?: boolean | undefined;
|
|
5974
|
-
readonly cached?: {
|
|
5975
|
-
enabled: boolean;
|
|
5976
|
-
ttl: number;
|
|
5977
|
-
invalidateOn: string[];
|
|
5978
|
-
} | undefined;
|
|
5979
|
-
readonly dataQuality?: {
|
|
5980
|
-
uniqueness: boolean;
|
|
5981
|
-
completeness: number;
|
|
5982
|
-
accuracy?: {
|
|
5983
|
-
source: string;
|
|
5984
|
-
threshold: number;
|
|
5985
|
-
} | undefined;
|
|
5986
|
-
} | undefined;
|
|
4867
|
+
readonly trackHistory?: boolean | undefined;
|
|
5987
4868
|
readonly visibleWhen?: {
|
|
5988
4869
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5989
4870
|
source?: string | undefined;
|
|
@@ -6022,7 +4903,6 @@ declare const securityObjects: ((Omit<{
|
|
|
6022
4903
|
} | undefined;
|
|
6023
4904
|
readonly sortable?: boolean | undefined;
|
|
6024
4905
|
readonly inlineHelpText?: string | undefined;
|
|
6025
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
6026
4906
|
readonly caseSensitive?: boolean | undefined;
|
|
6027
4907
|
readonly autonumberFormat?: string | undefined;
|
|
6028
4908
|
readonly index?: boolean | undefined;
|
|
@@ -6044,7 +4924,6 @@ declare const securityObjects: ((Omit<{
|
|
|
6044
4924
|
readonly required?: boolean | undefined;
|
|
6045
4925
|
readonly multiple?: boolean | undefined;
|
|
6046
4926
|
readonly dependencies?: string[] | undefined;
|
|
6047
|
-
readonly theme?: string | undefined;
|
|
6048
4927
|
readonly externalId?: boolean | undefined;
|
|
6049
4928
|
readonly defaultValue?: unknown;
|
|
6050
4929
|
readonly group?: string | undefined;
|
|
@@ -6052,23 +4931,6 @@ declare const securityObjects: ((Omit<{
|
|
|
6052
4931
|
readonly system?: boolean | undefined;
|
|
6053
4932
|
readonly min?: number | undefined;
|
|
6054
4933
|
readonly max?: number | undefined;
|
|
6055
|
-
readonly encryptionConfig?: {
|
|
6056
|
-
enabled: boolean;
|
|
6057
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
6058
|
-
keyManagement: {
|
|
6059
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
6060
|
-
keyId?: string | undefined;
|
|
6061
|
-
rotationPolicy?: {
|
|
6062
|
-
enabled: boolean;
|
|
6063
|
-
frequencyDays: number;
|
|
6064
|
-
retainOldVersions: number;
|
|
6065
|
-
autoRotate: boolean;
|
|
6066
|
-
} | undefined;
|
|
6067
|
-
};
|
|
6068
|
-
scope: "record" | "field" | "table" | "database";
|
|
6069
|
-
deterministicEncryption: boolean;
|
|
6070
|
-
searchableEncryption: boolean;
|
|
6071
|
-
} | undefined;
|
|
6072
4934
|
readonly columnName?: string | undefined;
|
|
6073
4935
|
readonly searchable?: boolean | undefined;
|
|
6074
4936
|
readonly unique?: boolean | undefined;
|
|
@@ -6077,7 +4939,6 @@ declare const securityObjects: ((Omit<{
|
|
|
6077
4939
|
readonly scale?: number | undefined;
|
|
6078
4940
|
readonly reference?: string | undefined;
|
|
6079
4941
|
readonly referenceFilters?: string[] | undefined;
|
|
6080
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
6081
4942
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6082
4943
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
6083
4944
|
readonly inlineTitle?: string | undefined;
|
|
@@ -6102,22 +4963,8 @@ declare const securityObjects: ((Omit<{
|
|
|
6102
4963
|
relationshipField?: string | undefined;
|
|
6103
4964
|
} | undefined;
|
|
6104
4965
|
readonly language?: string | undefined;
|
|
6105
|
-
readonly lineNumbers?: boolean | undefined;
|
|
6106
4966
|
readonly maxRating?: number | undefined;
|
|
6107
|
-
readonly allowHalf?: boolean | undefined;
|
|
6108
|
-
readonly displayMap?: boolean | undefined;
|
|
6109
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
6110
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
6111
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
6112
|
-
readonly allowAlpha?: boolean | undefined;
|
|
6113
|
-
readonly presetColors?: string[] | undefined;
|
|
6114
4967
|
readonly step?: number | undefined;
|
|
6115
|
-
readonly showValue?: boolean | undefined;
|
|
6116
|
-
readonly marks?: Record<string, string> | undefined;
|
|
6117
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
6118
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
6119
|
-
readonly displayValue?: boolean | undefined;
|
|
6120
|
-
readonly allowScanning?: boolean | undefined;
|
|
6121
4968
|
readonly currencyConfig?: {
|
|
6122
4969
|
precision: number;
|
|
6123
4970
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -6171,29 +5018,7 @@ declare const securityObjects: ((Omit<{
|
|
|
6171
5018
|
} | undefined;
|
|
6172
5019
|
maxVersions?: number | undefined;
|
|
6173
5020
|
} | undefined;
|
|
6174
|
-
readonly
|
|
6175
|
-
field: string;
|
|
6176
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
6177
|
-
preserveFormat: boolean;
|
|
6178
|
-
preserveLength: boolean;
|
|
6179
|
-
pattern?: string | undefined;
|
|
6180
|
-
roles?: string[] | undefined;
|
|
6181
|
-
exemptRoles?: string[] | undefined;
|
|
6182
|
-
} | undefined;
|
|
6183
|
-
readonly auditTrail?: boolean | undefined;
|
|
6184
|
-
readonly cached?: {
|
|
6185
|
-
enabled: boolean;
|
|
6186
|
-
ttl: number;
|
|
6187
|
-
invalidateOn: string[];
|
|
6188
|
-
} | undefined;
|
|
6189
|
-
readonly dataQuality?: {
|
|
6190
|
-
uniqueness: boolean;
|
|
6191
|
-
completeness: number;
|
|
6192
|
-
accuracy?: {
|
|
6193
|
-
source: string;
|
|
6194
|
-
threshold: number;
|
|
6195
|
-
} | undefined;
|
|
6196
|
-
} | undefined;
|
|
5021
|
+
readonly trackHistory?: boolean | undefined;
|
|
6197
5022
|
readonly visibleWhen?: {
|
|
6198
5023
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6199
5024
|
source?: string | undefined;
|
|
@@ -6232,7 +5057,6 @@ declare const securityObjects: ((Omit<{
|
|
|
6232
5057
|
} | undefined;
|
|
6233
5058
|
readonly sortable?: boolean | undefined;
|
|
6234
5059
|
readonly inlineHelpText?: string | undefined;
|
|
6235
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
6236
5060
|
readonly caseSensitive?: boolean | undefined;
|
|
6237
5061
|
readonly autonumberFormat?: string | undefined;
|
|
6238
5062
|
readonly index?: boolean | undefined;
|
|
@@ -6254,7 +5078,6 @@ declare const securityObjects: ((Omit<{
|
|
|
6254
5078
|
readonly required?: boolean | undefined;
|
|
6255
5079
|
readonly multiple?: boolean | undefined;
|
|
6256
5080
|
readonly dependencies?: string[] | undefined;
|
|
6257
|
-
readonly theme?: string | undefined;
|
|
6258
5081
|
readonly externalId?: boolean | undefined;
|
|
6259
5082
|
readonly defaultValue?: unknown;
|
|
6260
5083
|
readonly group?: string | undefined;
|
|
@@ -6262,23 +5085,6 @@ declare const securityObjects: ((Omit<{
|
|
|
6262
5085
|
readonly system?: boolean | undefined;
|
|
6263
5086
|
readonly min?: number | undefined;
|
|
6264
5087
|
readonly max?: number | undefined;
|
|
6265
|
-
readonly encryptionConfig?: {
|
|
6266
|
-
enabled: boolean;
|
|
6267
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
6268
|
-
keyManagement: {
|
|
6269
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
6270
|
-
keyId?: string | undefined;
|
|
6271
|
-
rotationPolicy?: {
|
|
6272
|
-
enabled: boolean;
|
|
6273
|
-
frequencyDays: number;
|
|
6274
|
-
retainOldVersions: number;
|
|
6275
|
-
autoRotate: boolean;
|
|
6276
|
-
} | undefined;
|
|
6277
|
-
};
|
|
6278
|
-
scope: "record" | "field" | "table" | "database";
|
|
6279
|
-
deterministicEncryption: boolean;
|
|
6280
|
-
searchableEncryption: boolean;
|
|
6281
|
-
} | undefined;
|
|
6282
5088
|
readonly columnName?: string | undefined;
|
|
6283
5089
|
readonly searchable?: boolean | undefined;
|
|
6284
5090
|
readonly unique?: boolean | undefined;
|
|
@@ -6287,7 +5093,6 @@ declare const securityObjects: ((Omit<{
|
|
|
6287
5093
|
readonly scale?: number | undefined;
|
|
6288
5094
|
readonly reference?: string | undefined;
|
|
6289
5095
|
readonly referenceFilters?: string[] | undefined;
|
|
6290
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
6291
5096
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6292
5097
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
6293
5098
|
readonly inlineTitle?: string | undefined;
|
|
@@ -6312,22 +5117,8 @@ declare const securityObjects: ((Omit<{
|
|
|
6312
5117
|
relationshipField?: string | undefined;
|
|
6313
5118
|
} | undefined;
|
|
6314
5119
|
readonly language?: string | undefined;
|
|
6315
|
-
readonly lineNumbers?: boolean | undefined;
|
|
6316
5120
|
readonly maxRating?: number | undefined;
|
|
6317
|
-
readonly allowHalf?: boolean | undefined;
|
|
6318
|
-
readonly displayMap?: boolean | undefined;
|
|
6319
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
6320
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
6321
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
6322
|
-
readonly allowAlpha?: boolean | undefined;
|
|
6323
|
-
readonly presetColors?: string[] | undefined;
|
|
6324
5121
|
readonly step?: number | undefined;
|
|
6325
|
-
readonly showValue?: boolean | undefined;
|
|
6326
|
-
readonly marks?: Record<string, string> | undefined;
|
|
6327
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
6328
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
6329
|
-
readonly displayValue?: boolean | undefined;
|
|
6330
|
-
readonly allowScanning?: boolean | undefined;
|
|
6331
5122
|
readonly currencyConfig?: {
|
|
6332
5123
|
precision: number;
|
|
6333
5124
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -6381,29 +5172,7 @@ declare const securityObjects: ((Omit<{
|
|
|
6381
5172
|
} | undefined;
|
|
6382
5173
|
maxVersions?: number | undefined;
|
|
6383
5174
|
} | undefined;
|
|
6384
|
-
readonly
|
|
6385
|
-
field: string;
|
|
6386
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
6387
|
-
preserveFormat: boolean;
|
|
6388
|
-
preserveLength: boolean;
|
|
6389
|
-
pattern?: string | undefined;
|
|
6390
|
-
roles?: string[] | undefined;
|
|
6391
|
-
exemptRoles?: string[] | undefined;
|
|
6392
|
-
} | undefined;
|
|
6393
|
-
readonly auditTrail?: boolean | undefined;
|
|
6394
|
-
readonly cached?: {
|
|
6395
|
-
enabled: boolean;
|
|
6396
|
-
ttl: number;
|
|
6397
|
-
invalidateOn: string[];
|
|
6398
|
-
} | undefined;
|
|
6399
|
-
readonly dataQuality?: {
|
|
6400
|
-
uniqueness: boolean;
|
|
6401
|
-
completeness: number;
|
|
6402
|
-
accuracy?: {
|
|
6403
|
-
source: string;
|
|
6404
|
-
threshold: number;
|
|
6405
|
-
} | undefined;
|
|
6406
|
-
} | undefined;
|
|
5175
|
+
readonly trackHistory?: boolean | undefined;
|
|
6407
5176
|
readonly visibleWhen?: {
|
|
6408
5177
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6409
5178
|
source?: string | undefined;
|
|
@@ -6442,7 +5211,6 @@ declare const securityObjects: ((Omit<{
|
|
|
6442
5211
|
} | undefined;
|
|
6443
5212
|
readonly sortable?: boolean | undefined;
|
|
6444
5213
|
readonly inlineHelpText?: string | undefined;
|
|
6445
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
6446
5214
|
readonly caseSensitive?: boolean | undefined;
|
|
6447
5215
|
readonly autonumberFormat?: string | undefined;
|
|
6448
5216
|
readonly index?: boolean | undefined;
|
|
@@ -6464,7 +5232,6 @@ declare const securityObjects: ((Omit<{
|
|
|
6464
5232
|
readonly required?: boolean | undefined;
|
|
6465
5233
|
readonly multiple?: boolean | undefined;
|
|
6466
5234
|
readonly dependencies?: string[] | undefined;
|
|
6467
|
-
readonly theme?: string | undefined;
|
|
6468
5235
|
readonly externalId?: boolean | undefined;
|
|
6469
5236
|
readonly defaultValue?: unknown;
|
|
6470
5237
|
readonly group?: string | undefined;
|
|
@@ -6472,23 +5239,6 @@ declare const securityObjects: ((Omit<{
|
|
|
6472
5239
|
readonly system?: boolean | undefined;
|
|
6473
5240
|
readonly min?: number | undefined;
|
|
6474
5241
|
readonly max?: number | undefined;
|
|
6475
|
-
readonly encryptionConfig?: {
|
|
6476
|
-
enabled: boolean;
|
|
6477
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
6478
|
-
keyManagement: {
|
|
6479
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
6480
|
-
keyId?: string | undefined;
|
|
6481
|
-
rotationPolicy?: {
|
|
6482
|
-
enabled: boolean;
|
|
6483
|
-
frequencyDays: number;
|
|
6484
|
-
retainOldVersions: number;
|
|
6485
|
-
autoRotate: boolean;
|
|
6486
|
-
} | undefined;
|
|
6487
|
-
};
|
|
6488
|
-
scope: "record" | "field" | "table" | "database";
|
|
6489
|
-
deterministicEncryption: boolean;
|
|
6490
|
-
searchableEncryption: boolean;
|
|
6491
|
-
} | undefined;
|
|
6492
5242
|
readonly columnName?: string | undefined;
|
|
6493
5243
|
readonly searchable?: boolean | undefined;
|
|
6494
5244
|
readonly unique?: boolean | undefined;
|
|
@@ -6497,7 +5247,6 @@ declare const securityObjects: ((Omit<{
|
|
|
6497
5247
|
readonly scale?: number | undefined;
|
|
6498
5248
|
readonly reference?: string | undefined;
|
|
6499
5249
|
readonly referenceFilters?: string[] | undefined;
|
|
6500
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
6501
5250
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6502
5251
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
6503
5252
|
readonly inlineTitle?: string | undefined;
|
|
@@ -6522,22 +5271,8 @@ declare const securityObjects: ((Omit<{
|
|
|
6522
5271
|
relationshipField?: string | undefined;
|
|
6523
5272
|
} | undefined;
|
|
6524
5273
|
readonly language?: string | undefined;
|
|
6525
|
-
readonly lineNumbers?: boolean | undefined;
|
|
6526
5274
|
readonly maxRating?: number | undefined;
|
|
6527
|
-
readonly allowHalf?: boolean | undefined;
|
|
6528
|
-
readonly displayMap?: boolean | undefined;
|
|
6529
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
6530
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
6531
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
6532
|
-
readonly allowAlpha?: boolean | undefined;
|
|
6533
|
-
readonly presetColors?: string[] | undefined;
|
|
6534
5275
|
readonly step?: number | undefined;
|
|
6535
|
-
readonly showValue?: boolean | undefined;
|
|
6536
|
-
readonly marks?: Record<string, string> | undefined;
|
|
6537
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
6538
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
6539
|
-
readonly displayValue?: boolean | undefined;
|
|
6540
|
-
readonly allowScanning?: boolean | undefined;
|
|
6541
5276
|
readonly currencyConfig?: {
|
|
6542
5277
|
precision: number;
|
|
6543
5278
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -6591,29 +5326,7 @@ declare const securityObjects: ((Omit<{
|
|
|
6591
5326
|
} | undefined;
|
|
6592
5327
|
maxVersions?: number | undefined;
|
|
6593
5328
|
} | undefined;
|
|
6594
|
-
readonly
|
|
6595
|
-
field: string;
|
|
6596
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
6597
|
-
preserveFormat: boolean;
|
|
6598
|
-
preserveLength: boolean;
|
|
6599
|
-
pattern?: string | undefined;
|
|
6600
|
-
roles?: string[] | undefined;
|
|
6601
|
-
exemptRoles?: string[] | undefined;
|
|
6602
|
-
} | undefined;
|
|
6603
|
-
readonly auditTrail?: boolean | undefined;
|
|
6604
|
-
readonly cached?: {
|
|
6605
|
-
enabled: boolean;
|
|
6606
|
-
ttl: number;
|
|
6607
|
-
invalidateOn: string[];
|
|
6608
|
-
} | undefined;
|
|
6609
|
-
readonly dataQuality?: {
|
|
6610
|
-
uniqueness: boolean;
|
|
6611
|
-
completeness: number;
|
|
6612
|
-
accuracy?: {
|
|
6613
|
-
source: string;
|
|
6614
|
-
threshold: number;
|
|
6615
|
-
} | undefined;
|
|
6616
|
-
} | undefined;
|
|
5329
|
+
readonly trackHistory?: boolean | undefined;
|
|
6617
5330
|
readonly visibleWhen?: {
|
|
6618
5331
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6619
5332
|
source?: string | undefined;
|
|
@@ -6652,7 +5365,6 @@ declare const securityObjects: ((Omit<{
|
|
|
6652
5365
|
} | undefined;
|
|
6653
5366
|
readonly sortable?: boolean | undefined;
|
|
6654
5367
|
readonly inlineHelpText?: string | undefined;
|
|
6655
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
6656
5368
|
readonly caseSensitive?: boolean | undefined;
|
|
6657
5369
|
readonly autonumberFormat?: string | undefined;
|
|
6658
5370
|
readonly index?: boolean | undefined;
|
|
@@ -6686,7 +5398,6 @@ declare const securityObjects: ((Omit<{
|
|
|
6686
5398
|
multiple: boolean;
|
|
6687
5399
|
unique: boolean;
|
|
6688
5400
|
deleteBehavior: "set_null" | "cascade" | "restrict";
|
|
6689
|
-
auditTrail: boolean;
|
|
6690
5401
|
hidden: boolean;
|
|
6691
5402
|
readonly: boolean;
|
|
6692
5403
|
sortable: boolean;
|
|
@@ -6712,7 +5423,6 @@ declare const securityObjects: ((Omit<{
|
|
|
6712
5423
|
}[] | undefined;
|
|
6713
5424
|
reference?: string | undefined;
|
|
6714
5425
|
referenceFilters?: string[] | undefined;
|
|
6715
|
-
writeRequiresMasterRead?: boolean | undefined;
|
|
6716
5426
|
inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
6717
5427
|
inlineTitle?: string | undefined;
|
|
6718
5428
|
inlineColumns?: any[] | undefined;
|
|
@@ -6744,23 +5454,8 @@ declare const securityObjects: ((Omit<{
|
|
|
6744
5454
|
relationshipField?: string | undefined;
|
|
6745
5455
|
} | undefined;
|
|
6746
5456
|
language?: string | undefined;
|
|
6747
|
-
theme?: string | undefined;
|
|
6748
|
-
lineNumbers?: boolean | undefined;
|
|
6749
5457
|
maxRating?: number | undefined;
|
|
6750
|
-
allowHalf?: boolean | undefined;
|
|
6751
|
-
displayMap?: boolean | undefined;
|
|
6752
|
-
allowGeocoding?: boolean | undefined;
|
|
6753
|
-
addressFormat?: "us" | "uk" | "international" | undefined;
|
|
6754
|
-
colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
6755
|
-
allowAlpha?: boolean | undefined;
|
|
6756
|
-
presetColors?: string[] | undefined;
|
|
6757
5458
|
step?: number | undefined;
|
|
6758
|
-
showValue?: boolean | undefined;
|
|
6759
|
-
marks?: Record<string, string> | undefined;
|
|
6760
|
-
barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
6761
|
-
qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
6762
|
-
displayValue?: boolean | undefined;
|
|
6763
|
-
allowScanning?: boolean | undefined;
|
|
6764
5459
|
currencyConfig?: {
|
|
6765
5460
|
precision: number;
|
|
6766
5461
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -6814,46 +5509,8 @@ declare const securityObjects: ((Omit<{
|
|
|
6814
5509
|
} | undefined;
|
|
6815
5510
|
maxVersions?: number | undefined;
|
|
6816
5511
|
} | undefined;
|
|
6817
|
-
|
|
6818
|
-
enabled: boolean;
|
|
6819
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
6820
|
-
keyManagement: {
|
|
6821
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
6822
|
-
keyId?: string | undefined;
|
|
6823
|
-
rotationPolicy?: {
|
|
6824
|
-
enabled: boolean;
|
|
6825
|
-
frequencyDays: number;
|
|
6826
|
-
retainOldVersions: number;
|
|
6827
|
-
autoRotate: boolean;
|
|
6828
|
-
} | undefined;
|
|
6829
|
-
};
|
|
6830
|
-
scope: "field" | "record" | "table" | "database";
|
|
6831
|
-
deterministicEncryption: boolean;
|
|
6832
|
-
searchableEncryption: boolean;
|
|
6833
|
-
} | undefined;
|
|
6834
|
-
maskingRule?: {
|
|
6835
|
-
field: string;
|
|
6836
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
6837
|
-
preserveFormat: boolean;
|
|
6838
|
-
preserveLength: boolean;
|
|
6839
|
-
pattern?: string | undefined;
|
|
6840
|
-
roles?: string[] | undefined;
|
|
6841
|
-
exemptRoles?: string[] | undefined;
|
|
6842
|
-
} | undefined;
|
|
5512
|
+
trackHistory?: boolean | undefined;
|
|
6843
5513
|
dependencies?: string[] | undefined;
|
|
6844
|
-
cached?: {
|
|
6845
|
-
enabled: boolean;
|
|
6846
|
-
ttl: number;
|
|
6847
|
-
invalidateOn: string[];
|
|
6848
|
-
} | undefined;
|
|
6849
|
-
dataQuality?: {
|
|
6850
|
-
uniqueness: boolean;
|
|
6851
|
-
completeness: number;
|
|
6852
|
-
accuracy?: {
|
|
6853
|
-
source: string;
|
|
6854
|
-
threshold: number;
|
|
6855
|
-
} | undefined;
|
|
6856
|
-
} | undefined;
|
|
6857
5514
|
group?: string | undefined;
|
|
6858
5515
|
visibleWhen?: {
|
|
6859
5516
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -6925,7 +5582,6 @@ declare const securityObjects: ((Omit<{
|
|
|
6925
5582
|
} | undefined;
|
|
6926
5583
|
system?: boolean | undefined;
|
|
6927
5584
|
inlineHelpText?: string | undefined;
|
|
6928
|
-
trackFeedHistory?: boolean | undefined;
|
|
6929
5585
|
caseSensitive?: boolean | undefined;
|
|
6930
5586
|
autonumberFormat?: string | undefined;
|
|
6931
5587
|
}>;
|
|
@@ -7016,12 +5672,13 @@ declare const securityObjects: ((Omit<{
|
|
|
7016
5672
|
key: string;
|
|
7017
5673
|
interval?: string | undefined;
|
|
7018
5674
|
} | undefined;
|
|
7019
|
-
cdc?: {
|
|
7020
|
-
enabled: boolean;
|
|
7021
|
-
events: ("insert" | "update" | "delete")[];
|
|
7022
|
-
destination: string;
|
|
7023
|
-
} | undefined;
|
|
7024
5675
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
5676
|
+
activityMilestones?: {
|
|
5677
|
+
field: string;
|
|
5678
|
+
value: string;
|
|
5679
|
+
summary: string;
|
|
5680
|
+
type?: string | undefined;
|
|
5681
|
+
}[] | undefined;
|
|
7025
5682
|
displayNameField?: string | undefined;
|
|
7026
5683
|
recordName?: {
|
|
7027
5684
|
type: "text" | "autonumber";
|
|
@@ -7332,7 +5989,6 @@ declare const securityObjects: ((Omit<{
|
|
|
7332
5989
|
clone: boolean;
|
|
7333
5990
|
apiMethods?: ("aggregate" | "update" | "delete" | "restore" | "purge" | "search" | "create" | "import" | "list" | "get" | "upsert" | "bulk" | "history" | "export")[] | undefined;
|
|
7334
5991
|
} | undefined;
|
|
7335
|
-
recordTypes?: string[] | undefined;
|
|
7336
5992
|
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
7337
5993
|
publicSharing?: {
|
|
7338
5994
|
enabled: boolean;
|
|
@@ -7481,7 +6137,6 @@ declare const securityObjects: ((Omit<{
|
|
|
7481
6137
|
readonly required?: boolean | undefined;
|
|
7482
6138
|
readonly multiple?: boolean | undefined;
|
|
7483
6139
|
readonly dependencies?: string[] | undefined;
|
|
7484
|
-
readonly theme?: string | undefined;
|
|
7485
6140
|
readonly externalId?: boolean | undefined;
|
|
7486
6141
|
readonly defaultValue?: unknown;
|
|
7487
6142
|
readonly group?: string | undefined;
|
|
@@ -7489,23 +6144,6 @@ declare const securityObjects: ((Omit<{
|
|
|
7489
6144
|
readonly system?: boolean | undefined;
|
|
7490
6145
|
readonly min?: number | undefined;
|
|
7491
6146
|
readonly max?: number | undefined;
|
|
7492
|
-
readonly encryptionConfig?: {
|
|
7493
|
-
enabled: boolean;
|
|
7494
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
7495
|
-
keyManagement: {
|
|
7496
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
7497
|
-
keyId?: string | undefined;
|
|
7498
|
-
rotationPolicy?: {
|
|
7499
|
-
enabled: boolean;
|
|
7500
|
-
frequencyDays: number;
|
|
7501
|
-
retainOldVersions: number;
|
|
7502
|
-
autoRotate: boolean;
|
|
7503
|
-
} | undefined;
|
|
7504
|
-
};
|
|
7505
|
-
scope: "record" | "field" | "table" | "database";
|
|
7506
|
-
deterministicEncryption: boolean;
|
|
7507
|
-
searchableEncryption: boolean;
|
|
7508
|
-
} | undefined;
|
|
7509
6147
|
readonly columnName?: string | undefined;
|
|
7510
6148
|
readonly searchable?: boolean | undefined;
|
|
7511
6149
|
readonly unique?: boolean | undefined;
|
|
@@ -7514,7 +6152,6 @@ declare const securityObjects: ((Omit<{
|
|
|
7514
6152
|
readonly scale?: number | undefined;
|
|
7515
6153
|
readonly reference?: string | undefined;
|
|
7516
6154
|
readonly referenceFilters?: string[] | undefined;
|
|
7517
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
7518
6155
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7519
6156
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
7520
6157
|
readonly inlineTitle?: string | undefined;
|
|
@@ -7539,22 +6176,8 @@ declare const securityObjects: ((Omit<{
|
|
|
7539
6176
|
relationshipField?: string | undefined;
|
|
7540
6177
|
} | undefined;
|
|
7541
6178
|
readonly language?: string | undefined;
|
|
7542
|
-
readonly lineNumbers?: boolean | undefined;
|
|
7543
6179
|
readonly maxRating?: number | undefined;
|
|
7544
|
-
readonly allowHalf?: boolean | undefined;
|
|
7545
|
-
readonly displayMap?: boolean | undefined;
|
|
7546
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
7547
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
7548
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
7549
|
-
readonly allowAlpha?: boolean | undefined;
|
|
7550
|
-
readonly presetColors?: string[] | undefined;
|
|
7551
6180
|
readonly step?: number | undefined;
|
|
7552
|
-
readonly showValue?: boolean | undefined;
|
|
7553
|
-
readonly marks?: Record<string, string> | undefined;
|
|
7554
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
7555
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
7556
|
-
readonly displayValue?: boolean | undefined;
|
|
7557
|
-
readonly allowScanning?: boolean | undefined;
|
|
7558
6181
|
readonly currencyConfig?: {
|
|
7559
6182
|
precision: number;
|
|
7560
6183
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -7608,29 +6231,7 @@ declare const securityObjects: ((Omit<{
|
|
|
7608
6231
|
} | undefined;
|
|
7609
6232
|
maxVersions?: number | undefined;
|
|
7610
6233
|
} | undefined;
|
|
7611
|
-
readonly
|
|
7612
|
-
field: string;
|
|
7613
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
7614
|
-
preserveFormat: boolean;
|
|
7615
|
-
preserveLength: boolean;
|
|
7616
|
-
pattern?: string | undefined;
|
|
7617
|
-
roles?: string[] | undefined;
|
|
7618
|
-
exemptRoles?: string[] | undefined;
|
|
7619
|
-
} | undefined;
|
|
7620
|
-
readonly auditTrail?: boolean | undefined;
|
|
7621
|
-
readonly cached?: {
|
|
7622
|
-
enabled: boolean;
|
|
7623
|
-
ttl: number;
|
|
7624
|
-
invalidateOn: string[];
|
|
7625
|
-
} | undefined;
|
|
7626
|
-
readonly dataQuality?: {
|
|
7627
|
-
uniqueness: boolean;
|
|
7628
|
-
completeness: number;
|
|
7629
|
-
accuracy?: {
|
|
7630
|
-
source: string;
|
|
7631
|
-
threshold: number;
|
|
7632
|
-
} | undefined;
|
|
7633
|
-
} | undefined;
|
|
6234
|
+
readonly trackHistory?: boolean | undefined;
|
|
7634
6235
|
readonly visibleWhen?: {
|
|
7635
6236
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7636
6237
|
source?: string | undefined;
|
|
@@ -7669,7 +6270,6 @@ declare const securityObjects: ((Omit<{
|
|
|
7669
6270
|
} | undefined;
|
|
7670
6271
|
readonly sortable?: boolean | undefined;
|
|
7671
6272
|
readonly inlineHelpText?: string | undefined;
|
|
7672
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
7673
6273
|
readonly caseSensitive?: boolean | undefined;
|
|
7674
6274
|
readonly autonumberFormat?: string | undefined;
|
|
7675
6275
|
readonly index?: boolean | undefined;
|
|
@@ -7691,7 +6291,6 @@ declare const securityObjects: ((Omit<{
|
|
|
7691
6291
|
readonly required?: boolean | undefined;
|
|
7692
6292
|
readonly multiple?: boolean | undefined;
|
|
7693
6293
|
readonly dependencies?: string[] | undefined;
|
|
7694
|
-
readonly theme?: string | undefined;
|
|
7695
6294
|
readonly externalId?: boolean | undefined;
|
|
7696
6295
|
readonly defaultValue?: unknown;
|
|
7697
6296
|
readonly group?: string | undefined;
|
|
@@ -7699,23 +6298,6 @@ declare const securityObjects: ((Omit<{
|
|
|
7699
6298
|
readonly system?: boolean | undefined;
|
|
7700
6299
|
readonly min?: number | undefined;
|
|
7701
6300
|
readonly max?: number | undefined;
|
|
7702
|
-
readonly encryptionConfig?: {
|
|
7703
|
-
enabled: boolean;
|
|
7704
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
7705
|
-
keyManagement: {
|
|
7706
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
7707
|
-
keyId?: string | undefined;
|
|
7708
|
-
rotationPolicy?: {
|
|
7709
|
-
enabled: boolean;
|
|
7710
|
-
frequencyDays: number;
|
|
7711
|
-
retainOldVersions: number;
|
|
7712
|
-
autoRotate: boolean;
|
|
7713
|
-
} | undefined;
|
|
7714
|
-
};
|
|
7715
|
-
scope: "record" | "field" | "table" | "database";
|
|
7716
|
-
deterministicEncryption: boolean;
|
|
7717
|
-
searchableEncryption: boolean;
|
|
7718
|
-
} | undefined;
|
|
7719
6301
|
readonly columnName?: string | undefined;
|
|
7720
6302
|
readonly searchable?: boolean | undefined;
|
|
7721
6303
|
readonly unique?: boolean | undefined;
|
|
@@ -7724,7 +6306,6 @@ declare const securityObjects: ((Omit<{
|
|
|
7724
6306
|
readonly scale?: number | undefined;
|
|
7725
6307
|
reference: string;
|
|
7726
6308
|
readonly referenceFilters?: string[] | undefined;
|
|
7727
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
7728
6309
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7729
6310
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
7730
6311
|
readonly inlineTitle?: string | undefined;
|
|
@@ -7749,22 +6330,8 @@ declare const securityObjects: ((Omit<{
|
|
|
7749
6330
|
relationshipField?: string | undefined;
|
|
7750
6331
|
} | undefined;
|
|
7751
6332
|
readonly language?: string | undefined;
|
|
7752
|
-
readonly lineNumbers?: boolean | undefined;
|
|
7753
6333
|
readonly maxRating?: number | undefined;
|
|
7754
|
-
readonly allowHalf?: boolean | undefined;
|
|
7755
|
-
readonly displayMap?: boolean | undefined;
|
|
7756
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
7757
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
7758
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
7759
|
-
readonly allowAlpha?: boolean | undefined;
|
|
7760
|
-
readonly presetColors?: string[] | undefined;
|
|
7761
6334
|
readonly step?: number | undefined;
|
|
7762
|
-
readonly showValue?: boolean | undefined;
|
|
7763
|
-
readonly marks?: Record<string, string> | undefined;
|
|
7764
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
7765
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
7766
|
-
readonly displayValue?: boolean | undefined;
|
|
7767
|
-
readonly allowScanning?: boolean | undefined;
|
|
7768
6335
|
readonly currencyConfig?: {
|
|
7769
6336
|
precision: number;
|
|
7770
6337
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -7818,29 +6385,7 @@ declare const securityObjects: ((Omit<{
|
|
|
7818
6385
|
} | undefined;
|
|
7819
6386
|
maxVersions?: number | undefined;
|
|
7820
6387
|
} | undefined;
|
|
7821
|
-
readonly
|
|
7822
|
-
field: string;
|
|
7823
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
7824
|
-
preserveFormat: boolean;
|
|
7825
|
-
preserveLength: boolean;
|
|
7826
|
-
pattern?: string | undefined;
|
|
7827
|
-
roles?: string[] | undefined;
|
|
7828
|
-
exemptRoles?: string[] | undefined;
|
|
7829
|
-
} | undefined;
|
|
7830
|
-
readonly auditTrail?: boolean | undefined;
|
|
7831
|
-
readonly cached?: {
|
|
7832
|
-
enabled: boolean;
|
|
7833
|
-
ttl: number;
|
|
7834
|
-
invalidateOn: string[];
|
|
7835
|
-
} | undefined;
|
|
7836
|
-
readonly dataQuality?: {
|
|
7837
|
-
uniqueness: boolean;
|
|
7838
|
-
completeness: number;
|
|
7839
|
-
accuracy?: {
|
|
7840
|
-
source: string;
|
|
7841
|
-
threshold: number;
|
|
7842
|
-
} | undefined;
|
|
7843
|
-
} | undefined;
|
|
6388
|
+
readonly trackHistory?: boolean | undefined;
|
|
7844
6389
|
readonly visibleWhen?: {
|
|
7845
6390
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7846
6391
|
source?: string | undefined;
|
|
@@ -7879,7 +6424,6 @@ declare const securityObjects: ((Omit<{
|
|
|
7879
6424
|
} | undefined;
|
|
7880
6425
|
readonly sortable?: boolean | undefined;
|
|
7881
6426
|
readonly inlineHelpText?: string | undefined;
|
|
7882
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
7883
6427
|
readonly caseSensitive?: boolean | undefined;
|
|
7884
6428
|
readonly autonumberFormat?: string | undefined;
|
|
7885
6429
|
readonly index?: boolean | undefined;
|
|
@@ -7901,7 +6445,6 @@ declare const securityObjects: ((Omit<{
|
|
|
7901
6445
|
readonly required?: boolean | undefined;
|
|
7902
6446
|
readonly multiple?: boolean | undefined;
|
|
7903
6447
|
readonly dependencies?: string[] | undefined;
|
|
7904
|
-
readonly theme?: string | undefined;
|
|
7905
6448
|
readonly externalId?: boolean | undefined;
|
|
7906
6449
|
readonly defaultValue?: unknown;
|
|
7907
6450
|
readonly group?: string | undefined;
|
|
@@ -7909,23 +6452,6 @@ declare const securityObjects: ((Omit<{
|
|
|
7909
6452
|
readonly system?: boolean | undefined;
|
|
7910
6453
|
readonly min?: number | undefined;
|
|
7911
6454
|
readonly max?: number | undefined;
|
|
7912
|
-
readonly encryptionConfig?: {
|
|
7913
|
-
enabled: boolean;
|
|
7914
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
7915
|
-
keyManagement: {
|
|
7916
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
7917
|
-
keyId?: string | undefined;
|
|
7918
|
-
rotationPolicy?: {
|
|
7919
|
-
enabled: boolean;
|
|
7920
|
-
frequencyDays: number;
|
|
7921
|
-
retainOldVersions: number;
|
|
7922
|
-
autoRotate: boolean;
|
|
7923
|
-
} | undefined;
|
|
7924
|
-
};
|
|
7925
|
-
scope: "record" | "field" | "table" | "database";
|
|
7926
|
-
deterministicEncryption: boolean;
|
|
7927
|
-
searchableEncryption: boolean;
|
|
7928
|
-
} | undefined;
|
|
7929
6455
|
readonly columnName?: string | undefined;
|
|
7930
6456
|
readonly searchable?: boolean | undefined;
|
|
7931
6457
|
readonly unique?: boolean | undefined;
|
|
@@ -7934,7 +6460,6 @@ declare const securityObjects: ((Omit<{
|
|
|
7934
6460
|
readonly scale?: number | undefined;
|
|
7935
6461
|
reference: string;
|
|
7936
6462
|
readonly referenceFilters?: string[] | undefined;
|
|
7937
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
7938
6463
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7939
6464
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
7940
6465
|
readonly inlineTitle?: string | undefined;
|
|
@@ -7959,22 +6484,8 @@ declare const securityObjects: ((Omit<{
|
|
|
7959
6484
|
relationshipField?: string | undefined;
|
|
7960
6485
|
} | undefined;
|
|
7961
6486
|
readonly language?: string | undefined;
|
|
7962
|
-
readonly lineNumbers?: boolean | undefined;
|
|
7963
6487
|
readonly maxRating?: number | undefined;
|
|
7964
|
-
readonly allowHalf?: boolean | undefined;
|
|
7965
|
-
readonly displayMap?: boolean | undefined;
|
|
7966
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
7967
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
7968
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
7969
|
-
readonly allowAlpha?: boolean | undefined;
|
|
7970
|
-
readonly presetColors?: string[] | undefined;
|
|
7971
6488
|
readonly step?: number | undefined;
|
|
7972
|
-
readonly showValue?: boolean | undefined;
|
|
7973
|
-
readonly marks?: Record<string, string> | undefined;
|
|
7974
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
7975
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
7976
|
-
readonly displayValue?: boolean | undefined;
|
|
7977
|
-
readonly allowScanning?: boolean | undefined;
|
|
7978
6489
|
readonly currencyConfig?: {
|
|
7979
6490
|
precision: number;
|
|
7980
6491
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -8028,29 +6539,7 @@ declare const securityObjects: ((Omit<{
|
|
|
8028
6539
|
} | undefined;
|
|
8029
6540
|
maxVersions?: number | undefined;
|
|
8030
6541
|
} | undefined;
|
|
8031
|
-
readonly
|
|
8032
|
-
field: string;
|
|
8033
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
8034
|
-
preserveFormat: boolean;
|
|
8035
|
-
preserveLength: boolean;
|
|
8036
|
-
pattern?: string | undefined;
|
|
8037
|
-
roles?: string[] | undefined;
|
|
8038
|
-
exemptRoles?: string[] | undefined;
|
|
8039
|
-
} | undefined;
|
|
8040
|
-
readonly auditTrail?: boolean | undefined;
|
|
8041
|
-
readonly cached?: {
|
|
8042
|
-
enabled: boolean;
|
|
8043
|
-
ttl: number;
|
|
8044
|
-
invalidateOn: string[];
|
|
8045
|
-
} | undefined;
|
|
8046
|
-
readonly dataQuality?: {
|
|
8047
|
-
uniqueness: boolean;
|
|
8048
|
-
completeness: number;
|
|
8049
|
-
accuracy?: {
|
|
8050
|
-
source: string;
|
|
8051
|
-
threshold: number;
|
|
8052
|
-
} | undefined;
|
|
8053
|
-
} | undefined;
|
|
6542
|
+
readonly trackHistory?: boolean | undefined;
|
|
8054
6543
|
readonly visibleWhen?: {
|
|
8055
6544
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8056
6545
|
source?: string | undefined;
|
|
@@ -8089,7 +6578,6 @@ declare const securityObjects: ((Omit<{
|
|
|
8089
6578
|
} | undefined;
|
|
8090
6579
|
readonly sortable?: boolean | undefined;
|
|
8091
6580
|
readonly inlineHelpText?: string | undefined;
|
|
8092
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
8093
6581
|
readonly caseSensitive?: boolean | undefined;
|
|
8094
6582
|
readonly autonumberFormat?: string | undefined;
|
|
8095
6583
|
readonly index?: boolean | undefined;
|
|
@@ -8111,7 +6599,6 @@ declare const securityObjects: ((Omit<{
|
|
|
8111
6599
|
readonly required?: boolean | undefined;
|
|
8112
6600
|
readonly multiple?: boolean | undefined;
|
|
8113
6601
|
readonly dependencies?: string[] | undefined;
|
|
8114
|
-
readonly theme?: string | undefined;
|
|
8115
6602
|
readonly externalId?: boolean | undefined;
|
|
8116
6603
|
readonly defaultValue?: unknown;
|
|
8117
6604
|
readonly group?: string | undefined;
|
|
@@ -8119,23 +6606,6 @@ declare const securityObjects: ((Omit<{
|
|
|
8119
6606
|
readonly system?: boolean | undefined;
|
|
8120
6607
|
readonly min?: number | undefined;
|
|
8121
6608
|
readonly max?: number | undefined;
|
|
8122
|
-
readonly encryptionConfig?: {
|
|
8123
|
-
enabled: boolean;
|
|
8124
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
8125
|
-
keyManagement: {
|
|
8126
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
8127
|
-
keyId?: string | undefined;
|
|
8128
|
-
rotationPolicy?: {
|
|
8129
|
-
enabled: boolean;
|
|
8130
|
-
frequencyDays: number;
|
|
8131
|
-
retainOldVersions: number;
|
|
8132
|
-
autoRotate: boolean;
|
|
8133
|
-
} | undefined;
|
|
8134
|
-
};
|
|
8135
|
-
scope: "record" | "field" | "table" | "database";
|
|
8136
|
-
deterministicEncryption: boolean;
|
|
8137
|
-
searchableEncryption: boolean;
|
|
8138
|
-
} | undefined;
|
|
8139
6609
|
readonly columnName?: string | undefined;
|
|
8140
6610
|
readonly searchable?: boolean | undefined;
|
|
8141
6611
|
readonly unique?: boolean | undefined;
|
|
@@ -8144,7 +6614,6 @@ declare const securityObjects: ((Omit<{
|
|
|
8144
6614
|
readonly scale?: number | undefined;
|
|
8145
6615
|
reference: string;
|
|
8146
6616
|
readonly referenceFilters?: string[] | undefined;
|
|
8147
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
8148
6617
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
8149
6618
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
8150
6619
|
readonly inlineTitle?: string | undefined;
|
|
@@ -8169,22 +6638,8 @@ declare const securityObjects: ((Omit<{
|
|
|
8169
6638
|
relationshipField?: string | undefined;
|
|
8170
6639
|
} | undefined;
|
|
8171
6640
|
readonly language?: string | undefined;
|
|
8172
|
-
readonly lineNumbers?: boolean | undefined;
|
|
8173
6641
|
readonly maxRating?: number | undefined;
|
|
8174
|
-
readonly allowHalf?: boolean | undefined;
|
|
8175
|
-
readonly displayMap?: boolean | undefined;
|
|
8176
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
8177
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
8178
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
8179
|
-
readonly allowAlpha?: boolean | undefined;
|
|
8180
|
-
readonly presetColors?: string[] | undefined;
|
|
8181
6642
|
readonly step?: number | undefined;
|
|
8182
|
-
readonly showValue?: boolean | undefined;
|
|
8183
|
-
readonly marks?: Record<string, string> | undefined;
|
|
8184
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
8185
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
8186
|
-
readonly displayValue?: boolean | undefined;
|
|
8187
|
-
readonly allowScanning?: boolean | undefined;
|
|
8188
6643
|
readonly currencyConfig?: {
|
|
8189
6644
|
precision: number;
|
|
8190
6645
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -8238,29 +6693,7 @@ declare const securityObjects: ((Omit<{
|
|
|
8238
6693
|
} | undefined;
|
|
8239
6694
|
maxVersions?: number | undefined;
|
|
8240
6695
|
} | undefined;
|
|
8241
|
-
readonly
|
|
8242
|
-
field: string;
|
|
8243
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
8244
|
-
preserveFormat: boolean;
|
|
8245
|
-
preserveLength: boolean;
|
|
8246
|
-
pattern?: string | undefined;
|
|
8247
|
-
roles?: string[] | undefined;
|
|
8248
|
-
exemptRoles?: string[] | undefined;
|
|
8249
|
-
} | undefined;
|
|
8250
|
-
readonly auditTrail?: boolean | undefined;
|
|
8251
|
-
readonly cached?: {
|
|
8252
|
-
enabled: boolean;
|
|
8253
|
-
ttl: number;
|
|
8254
|
-
invalidateOn: string[];
|
|
8255
|
-
} | undefined;
|
|
8256
|
-
readonly dataQuality?: {
|
|
8257
|
-
uniqueness: boolean;
|
|
8258
|
-
completeness: number;
|
|
8259
|
-
accuracy?: {
|
|
8260
|
-
source: string;
|
|
8261
|
-
threshold: number;
|
|
8262
|
-
} | undefined;
|
|
8263
|
-
} | undefined;
|
|
6696
|
+
readonly trackHistory?: boolean | undefined;
|
|
8264
6697
|
readonly visibleWhen?: {
|
|
8265
6698
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8266
6699
|
source?: string | undefined;
|
|
@@ -8299,7 +6732,6 @@ declare const securityObjects: ((Omit<{
|
|
|
8299
6732
|
} | undefined;
|
|
8300
6733
|
readonly sortable?: boolean | undefined;
|
|
8301
6734
|
readonly inlineHelpText?: string | undefined;
|
|
8302
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
8303
6735
|
readonly caseSensitive?: boolean | undefined;
|
|
8304
6736
|
readonly autonumberFormat?: string | undefined;
|
|
8305
6737
|
readonly index?: boolean | undefined;
|
|
@@ -8321,7 +6753,6 @@ declare const securityObjects: ((Omit<{
|
|
|
8321
6753
|
readonly required?: boolean | undefined;
|
|
8322
6754
|
readonly multiple?: boolean | undefined;
|
|
8323
6755
|
readonly dependencies?: string[] | undefined;
|
|
8324
|
-
readonly theme?: string | undefined;
|
|
8325
6756
|
readonly externalId?: boolean | undefined;
|
|
8326
6757
|
readonly defaultValue?: unknown;
|
|
8327
6758
|
readonly group?: string | undefined;
|
|
@@ -8329,23 +6760,6 @@ declare const securityObjects: ((Omit<{
|
|
|
8329
6760
|
readonly system?: boolean | undefined;
|
|
8330
6761
|
readonly min?: number | undefined;
|
|
8331
6762
|
readonly max?: number | undefined;
|
|
8332
|
-
readonly encryptionConfig?: {
|
|
8333
|
-
enabled: boolean;
|
|
8334
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
8335
|
-
keyManagement: {
|
|
8336
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
8337
|
-
keyId?: string | undefined;
|
|
8338
|
-
rotationPolicy?: {
|
|
8339
|
-
enabled: boolean;
|
|
8340
|
-
frequencyDays: number;
|
|
8341
|
-
retainOldVersions: number;
|
|
8342
|
-
autoRotate: boolean;
|
|
8343
|
-
} | undefined;
|
|
8344
|
-
};
|
|
8345
|
-
scope: "record" | "field" | "table" | "database";
|
|
8346
|
-
deterministicEncryption: boolean;
|
|
8347
|
-
searchableEncryption: boolean;
|
|
8348
|
-
} | undefined;
|
|
8349
6763
|
readonly columnName?: string | undefined;
|
|
8350
6764
|
readonly searchable?: boolean | undefined;
|
|
8351
6765
|
readonly unique?: boolean | undefined;
|
|
@@ -8354,7 +6768,6 @@ declare const securityObjects: ((Omit<{
|
|
|
8354
6768
|
readonly scale?: number | undefined;
|
|
8355
6769
|
reference: string;
|
|
8356
6770
|
readonly referenceFilters?: string[] | undefined;
|
|
8357
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
8358
6771
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
8359
6772
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
8360
6773
|
readonly inlineTitle?: string | undefined;
|
|
@@ -8379,22 +6792,8 @@ declare const securityObjects: ((Omit<{
|
|
|
8379
6792
|
relationshipField?: string | undefined;
|
|
8380
6793
|
} | undefined;
|
|
8381
6794
|
readonly language?: string | undefined;
|
|
8382
|
-
readonly lineNumbers?: boolean | undefined;
|
|
8383
6795
|
readonly maxRating?: number | undefined;
|
|
8384
|
-
readonly allowHalf?: boolean | undefined;
|
|
8385
|
-
readonly displayMap?: boolean | undefined;
|
|
8386
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
8387
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
8388
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
8389
|
-
readonly allowAlpha?: boolean | undefined;
|
|
8390
|
-
readonly presetColors?: string[] | undefined;
|
|
8391
6796
|
readonly step?: number | undefined;
|
|
8392
|
-
readonly showValue?: boolean | undefined;
|
|
8393
|
-
readonly marks?: Record<string, string> | undefined;
|
|
8394
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
8395
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
8396
|
-
readonly displayValue?: boolean | undefined;
|
|
8397
|
-
readonly allowScanning?: boolean | undefined;
|
|
8398
6797
|
readonly currencyConfig?: {
|
|
8399
6798
|
precision: number;
|
|
8400
6799
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -8448,29 +6847,7 @@ declare const securityObjects: ((Omit<{
|
|
|
8448
6847
|
} | undefined;
|
|
8449
6848
|
maxVersions?: number | undefined;
|
|
8450
6849
|
} | undefined;
|
|
8451
|
-
readonly
|
|
8452
|
-
field: string;
|
|
8453
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
8454
|
-
preserveFormat: boolean;
|
|
8455
|
-
preserveLength: boolean;
|
|
8456
|
-
pattern?: string | undefined;
|
|
8457
|
-
roles?: string[] | undefined;
|
|
8458
|
-
exemptRoles?: string[] | undefined;
|
|
8459
|
-
} | undefined;
|
|
8460
|
-
readonly auditTrail?: boolean | undefined;
|
|
8461
|
-
readonly cached?: {
|
|
8462
|
-
enabled: boolean;
|
|
8463
|
-
ttl: number;
|
|
8464
|
-
invalidateOn: string[];
|
|
8465
|
-
} | undefined;
|
|
8466
|
-
readonly dataQuality?: {
|
|
8467
|
-
uniqueness: boolean;
|
|
8468
|
-
completeness: number;
|
|
8469
|
-
accuracy?: {
|
|
8470
|
-
source: string;
|
|
8471
|
-
threshold: number;
|
|
8472
|
-
} | undefined;
|
|
8473
|
-
} | undefined;
|
|
6850
|
+
readonly trackHistory?: boolean | undefined;
|
|
8474
6851
|
readonly visibleWhen?: {
|
|
8475
6852
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8476
6853
|
source?: string | undefined;
|
|
@@ -8509,7 +6886,6 @@ declare const securityObjects: ((Omit<{
|
|
|
8509
6886
|
} | undefined;
|
|
8510
6887
|
readonly sortable?: boolean | undefined;
|
|
8511
6888
|
readonly inlineHelpText?: string | undefined;
|
|
8512
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
8513
6889
|
readonly caseSensitive?: boolean | undefined;
|
|
8514
6890
|
readonly autonumberFormat?: string | undefined;
|
|
8515
6891
|
readonly index?: boolean | undefined;
|
|
@@ -8531,7 +6907,6 @@ declare const securityObjects: ((Omit<{
|
|
|
8531
6907
|
readonly required?: boolean | undefined;
|
|
8532
6908
|
readonly multiple?: boolean | undefined;
|
|
8533
6909
|
readonly dependencies?: string[] | undefined;
|
|
8534
|
-
readonly theme?: string | undefined;
|
|
8535
6910
|
readonly externalId?: boolean | undefined;
|
|
8536
6911
|
readonly defaultValue?: unknown;
|
|
8537
6912
|
readonly group?: string | undefined;
|
|
@@ -8539,23 +6914,6 @@ declare const securityObjects: ((Omit<{
|
|
|
8539
6914
|
readonly system?: boolean | undefined;
|
|
8540
6915
|
readonly min?: number | undefined;
|
|
8541
6916
|
readonly max?: number | undefined;
|
|
8542
|
-
readonly encryptionConfig?: {
|
|
8543
|
-
enabled: boolean;
|
|
8544
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
8545
|
-
keyManagement: {
|
|
8546
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
8547
|
-
keyId?: string | undefined;
|
|
8548
|
-
rotationPolicy?: {
|
|
8549
|
-
enabled: boolean;
|
|
8550
|
-
frequencyDays: number;
|
|
8551
|
-
retainOldVersions: number;
|
|
8552
|
-
autoRotate: boolean;
|
|
8553
|
-
} | undefined;
|
|
8554
|
-
};
|
|
8555
|
-
scope: "record" | "field" | "table" | "database";
|
|
8556
|
-
deterministicEncryption: boolean;
|
|
8557
|
-
searchableEncryption: boolean;
|
|
8558
|
-
} | undefined;
|
|
8559
6917
|
readonly columnName?: string | undefined;
|
|
8560
6918
|
readonly searchable?: boolean | undefined;
|
|
8561
6919
|
readonly unique?: boolean | undefined;
|
|
@@ -8564,7 +6922,6 @@ declare const securityObjects: ((Omit<{
|
|
|
8564
6922
|
readonly scale?: number | undefined;
|
|
8565
6923
|
readonly reference?: string | undefined;
|
|
8566
6924
|
readonly referenceFilters?: string[] | undefined;
|
|
8567
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
8568
6925
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
8569
6926
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
8570
6927
|
readonly inlineTitle?: string | undefined;
|
|
@@ -8589,22 +6946,8 @@ declare const securityObjects: ((Omit<{
|
|
|
8589
6946
|
relationshipField?: string | undefined;
|
|
8590
6947
|
} | undefined;
|
|
8591
6948
|
readonly language?: string | undefined;
|
|
8592
|
-
readonly lineNumbers?: boolean | undefined;
|
|
8593
6949
|
readonly maxRating?: number | undefined;
|
|
8594
|
-
readonly allowHalf?: boolean | undefined;
|
|
8595
|
-
readonly displayMap?: boolean | undefined;
|
|
8596
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
8597
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
8598
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
8599
|
-
readonly allowAlpha?: boolean | undefined;
|
|
8600
|
-
readonly presetColors?: string[] | undefined;
|
|
8601
6950
|
readonly step?: number | undefined;
|
|
8602
|
-
readonly showValue?: boolean | undefined;
|
|
8603
|
-
readonly marks?: Record<string, string> | undefined;
|
|
8604
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
8605
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
8606
|
-
readonly displayValue?: boolean | undefined;
|
|
8607
|
-
readonly allowScanning?: boolean | undefined;
|
|
8608
6951
|
readonly currencyConfig?: {
|
|
8609
6952
|
precision: number;
|
|
8610
6953
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -8658,29 +7001,7 @@ declare const securityObjects: ((Omit<{
|
|
|
8658
7001
|
} | undefined;
|
|
8659
7002
|
maxVersions?: number | undefined;
|
|
8660
7003
|
} | undefined;
|
|
8661
|
-
readonly
|
|
8662
|
-
field: string;
|
|
8663
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
8664
|
-
preserveFormat: boolean;
|
|
8665
|
-
preserveLength: boolean;
|
|
8666
|
-
pattern?: string | undefined;
|
|
8667
|
-
roles?: string[] | undefined;
|
|
8668
|
-
exemptRoles?: string[] | undefined;
|
|
8669
|
-
} | undefined;
|
|
8670
|
-
readonly auditTrail?: boolean | undefined;
|
|
8671
|
-
readonly cached?: {
|
|
8672
|
-
enabled: boolean;
|
|
8673
|
-
ttl: number;
|
|
8674
|
-
invalidateOn: string[];
|
|
8675
|
-
} | undefined;
|
|
8676
|
-
readonly dataQuality?: {
|
|
8677
|
-
uniqueness: boolean;
|
|
8678
|
-
completeness: number;
|
|
8679
|
-
accuracy?: {
|
|
8680
|
-
source: string;
|
|
8681
|
-
threshold: number;
|
|
8682
|
-
} | undefined;
|
|
8683
|
-
} | undefined;
|
|
7004
|
+
readonly trackHistory?: boolean | undefined;
|
|
8684
7005
|
readonly visibleWhen?: {
|
|
8685
7006
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8686
7007
|
source?: string | undefined;
|
|
@@ -8719,7 +7040,6 @@ declare const securityObjects: ((Omit<{
|
|
|
8719
7040
|
} | undefined;
|
|
8720
7041
|
readonly sortable?: boolean | undefined;
|
|
8721
7042
|
readonly inlineHelpText?: string | undefined;
|
|
8722
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
8723
7043
|
readonly caseSensitive?: boolean | undefined;
|
|
8724
7044
|
readonly autonumberFormat?: string | undefined;
|
|
8725
7045
|
readonly index?: boolean | undefined;
|
|
@@ -8741,7 +7061,6 @@ declare const securityObjects: ((Omit<{
|
|
|
8741
7061
|
readonly required?: boolean | undefined;
|
|
8742
7062
|
readonly multiple?: boolean | undefined;
|
|
8743
7063
|
readonly dependencies?: string[] | undefined;
|
|
8744
|
-
readonly theme?: string | undefined;
|
|
8745
7064
|
readonly externalId?: boolean | undefined;
|
|
8746
7065
|
readonly defaultValue?: unknown;
|
|
8747
7066
|
readonly group?: string | undefined;
|
|
@@ -8749,23 +7068,6 @@ declare const securityObjects: ((Omit<{
|
|
|
8749
7068
|
readonly system?: boolean | undefined;
|
|
8750
7069
|
readonly min?: number | undefined;
|
|
8751
7070
|
readonly max?: number | undefined;
|
|
8752
|
-
readonly encryptionConfig?: {
|
|
8753
|
-
enabled: boolean;
|
|
8754
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
8755
|
-
keyManagement: {
|
|
8756
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
8757
|
-
keyId?: string | undefined;
|
|
8758
|
-
rotationPolicy?: {
|
|
8759
|
-
enabled: boolean;
|
|
8760
|
-
frequencyDays: number;
|
|
8761
|
-
retainOldVersions: number;
|
|
8762
|
-
autoRotate: boolean;
|
|
8763
|
-
} | undefined;
|
|
8764
|
-
};
|
|
8765
|
-
scope: "record" | "field" | "table" | "database";
|
|
8766
|
-
deterministicEncryption: boolean;
|
|
8767
|
-
searchableEncryption: boolean;
|
|
8768
|
-
} | undefined;
|
|
8769
7071
|
readonly columnName?: string | undefined;
|
|
8770
7072
|
readonly searchable?: boolean | undefined;
|
|
8771
7073
|
readonly unique?: boolean | undefined;
|
|
@@ -8774,7 +7076,6 @@ declare const securityObjects: ((Omit<{
|
|
|
8774
7076
|
readonly scale?: number | undefined;
|
|
8775
7077
|
readonly reference?: string | undefined;
|
|
8776
7078
|
readonly referenceFilters?: string[] | undefined;
|
|
8777
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
8778
7079
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
8779
7080
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
8780
7081
|
readonly inlineTitle?: string | undefined;
|
|
@@ -8799,22 +7100,8 @@ declare const securityObjects: ((Omit<{
|
|
|
8799
7100
|
relationshipField?: string | undefined;
|
|
8800
7101
|
} | undefined;
|
|
8801
7102
|
readonly language?: string | undefined;
|
|
8802
|
-
readonly lineNumbers?: boolean | undefined;
|
|
8803
7103
|
readonly maxRating?: number | undefined;
|
|
8804
|
-
readonly allowHalf?: boolean | undefined;
|
|
8805
|
-
readonly displayMap?: boolean | undefined;
|
|
8806
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
8807
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
8808
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
8809
|
-
readonly allowAlpha?: boolean | undefined;
|
|
8810
|
-
readonly presetColors?: string[] | undefined;
|
|
8811
7104
|
readonly step?: number | undefined;
|
|
8812
|
-
readonly showValue?: boolean | undefined;
|
|
8813
|
-
readonly marks?: Record<string, string> | undefined;
|
|
8814
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
8815
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
8816
|
-
readonly displayValue?: boolean | undefined;
|
|
8817
|
-
readonly allowScanning?: boolean | undefined;
|
|
8818
7105
|
readonly currencyConfig?: {
|
|
8819
7106
|
precision: number;
|
|
8820
7107
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -8868,29 +7155,7 @@ declare const securityObjects: ((Omit<{
|
|
|
8868
7155
|
} | undefined;
|
|
8869
7156
|
maxVersions?: number | undefined;
|
|
8870
7157
|
} | undefined;
|
|
8871
|
-
readonly
|
|
8872
|
-
field: string;
|
|
8873
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
8874
|
-
preserveFormat: boolean;
|
|
8875
|
-
preserveLength: boolean;
|
|
8876
|
-
pattern?: string | undefined;
|
|
8877
|
-
roles?: string[] | undefined;
|
|
8878
|
-
exemptRoles?: string[] | undefined;
|
|
8879
|
-
} | undefined;
|
|
8880
|
-
readonly auditTrail?: boolean | undefined;
|
|
8881
|
-
readonly cached?: {
|
|
8882
|
-
enabled: boolean;
|
|
8883
|
-
ttl: number;
|
|
8884
|
-
invalidateOn: string[];
|
|
8885
|
-
} | undefined;
|
|
8886
|
-
readonly dataQuality?: {
|
|
8887
|
-
uniqueness: boolean;
|
|
8888
|
-
completeness: number;
|
|
8889
|
-
accuracy?: {
|
|
8890
|
-
source: string;
|
|
8891
|
-
threshold: number;
|
|
8892
|
-
} | undefined;
|
|
8893
|
-
} | undefined;
|
|
7158
|
+
readonly trackHistory?: boolean | undefined;
|
|
8894
7159
|
readonly visibleWhen?: {
|
|
8895
7160
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8896
7161
|
source?: string | undefined;
|
|
@@ -8929,7 +7194,6 @@ declare const securityObjects: ((Omit<{
|
|
|
8929
7194
|
} | undefined;
|
|
8930
7195
|
readonly sortable?: boolean | undefined;
|
|
8931
7196
|
readonly inlineHelpText?: string | undefined;
|
|
8932
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
8933
7197
|
readonly caseSensitive?: boolean | undefined;
|
|
8934
7198
|
readonly autonumberFormat?: string | undefined;
|
|
8935
7199
|
readonly index?: boolean | undefined;
|
|
@@ -8967,7 +7231,6 @@ declare const securityObjects: ((Omit<{
|
|
|
8967
7231
|
multiple: boolean;
|
|
8968
7232
|
unique: boolean;
|
|
8969
7233
|
deleteBehavior: "set_null" | "cascade" | "restrict";
|
|
8970
|
-
auditTrail: boolean;
|
|
8971
7234
|
hidden: boolean;
|
|
8972
7235
|
readonly: boolean;
|
|
8973
7236
|
sortable: boolean;
|
|
@@ -8993,7 +7256,6 @@ declare const securityObjects: ((Omit<{
|
|
|
8993
7256
|
}[] | undefined;
|
|
8994
7257
|
reference?: string | undefined;
|
|
8995
7258
|
referenceFilters?: string[] | undefined;
|
|
8996
|
-
writeRequiresMasterRead?: boolean | undefined;
|
|
8997
7259
|
inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
8998
7260
|
inlineTitle?: string | undefined;
|
|
8999
7261
|
inlineColumns?: any[] | undefined;
|
|
@@ -9025,23 +7287,8 @@ declare const securityObjects: ((Omit<{
|
|
|
9025
7287
|
relationshipField?: string | undefined;
|
|
9026
7288
|
} | undefined;
|
|
9027
7289
|
language?: string | undefined;
|
|
9028
|
-
theme?: string | undefined;
|
|
9029
|
-
lineNumbers?: boolean | undefined;
|
|
9030
7290
|
maxRating?: number | undefined;
|
|
9031
|
-
allowHalf?: boolean | undefined;
|
|
9032
|
-
displayMap?: boolean | undefined;
|
|
9033
|
-
allowGeocoding?: boolean | undefined;
|
|
9034
|
-
addressFormat?: "us" | "uk" | "international" | undefined;
|
|
9035
|
-
colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
9036
|
-
allowAlpha?: boolean | undefined;
|
|
9037
|
-
presetColors?: string[] | undefined;
|
|
9038
7291
|
step?: number | undefined;
|
|
9039
|
-
showValue?: boolean | undefined;
|
|
9040
|
-
marks?: Record<string, string> | undefined;
|
|
9041
|
-
barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
9042
|
-
qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
9043
|
-
displayValue?: boolean | undefined;
|
|
9044
|
-
allowScanning?: boolean | undefined;
|
|
9045
7292
|
currencyConfig?: {
|
|
9046
7293
|
precision: number;
|
|
9047
7294
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -9095,46 +7342,8 @@ declare const securityObjects: ((Omit<{
|
|
|
9095
7342
|
} | undefined;
|
|
9096
7343
|
maxVersions?: number | undefined;
|
|
9097
7344
|
} | undefined;
|
|
9098
|
-
|
|
9099
|
-
enabled: boolean;
|
|
9100
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
9101
|
-
keyManagement: {
|
|
9102
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
9103
|
-
keyId?: string | undefined;
|
|
9104
|
-
rotationPolicy?: {
|
|
9105
|
-
enabled: boolean;
|
|
9106
|
-
frequencyDays: number;
|
|
9107
|
-
retainOldVersions: number;
|
|
9108
|
-
autoRotate: boolean;
|
|
9109
|
-
} | undefined;
|
|
9110
|
-
};
|
|
9111
|
-
scope: "field" | "record" | "table" | "database";
|
|
9112
|
-
deterministicEncryption: boolean;
|
|
9113
|
-
searchableEncryption: boolean;
|
|
9114
|
-
} | undefined;
|
|
9115
|
-
maskingRule?: {
|
|
9116
|
-
field: string;
|
|
9117
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
9118
|
-
preserveFormat: boolean;
|
|
9119
|
-
preserveLength: boolean;
|
|
9120
|
-
pattern?: string | undefined;
|
|
9121
|
-
roles?: string[] | undefined;
|
|
9122
|
-
exemptRoles?: string[] | undefined;
|
|
9123
|
-
} | undefined;
|
|
7345
|
+
trackHistory?: boolean | undefined;
|
|
9124
7346
|
dependencies?: string[] | undefined;
|
|
9125
|
-
cached?: {
|
|
9126
|
-
enabled: boolean;
|
|
9127
|
-
ttl: number;
|
|
9128
|
-
invalidateOn: string[];
|
|
9129
|
-
} | undefined;
|
|
9130
|
-
dataQuality?: {
|
|
9131
|
-
uniqueness: boolean;
|
|
9132
|
-
completeness: number;
|
|
9133
|
-
accuracy?: {
|
|
9134
|
-
source: string;
|
|
9135
|
-
threshold: number;
|
|
9136
|
-
} | undefined;
|
|
9137
|
-
} | undefined;
|
|
9138
7347
|
group?: string | undefined;
|
|
9139
7348
|
visibleWhen?: {
|
|
9140
7349
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -9206,7 +7415,6 @@ declare const securityObjects: ((Omit<{
|
|
|
9206
7415
|
} | undefined;
|
|
9207
7416
|
system?: boolean | undefined;
|
|
9208
7417
|
inlineHelpText?: string | undefined;
|
|
9209
|
-
trackFeedHistory?: boolean | undefined;
|
|
9210
7418
|
caseSensitive?: boolean | undefined;
|
|
9211
7419
|
autonumberFormat?: string | undefined;
|
|
9212
7420
|
}>;
|
|
@@ -9297,12 +7505,13 @@ declare const securityObjects: ((Omit<{
|
|
|
9297
7505
|
key: string;
|
|
9298
7506
|
interval?: string | undefined;
|
|
9299
7507
|
} | undefined;
|
|
9300
|
-
cdc?: {
|
|
9301
|
-
enabled: boolean;
|
|
9302
|
-
events: ("insert" | "update" | "delete")[];
|
|
9303
|
-
destination: string;
|
|
9304
|
-
} | undefined;
|
|
9305
7508
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
7509
|
+
activityMilestones?: {
|
|
7510
|
+
field: string;
|
|
7511
|
+
value: string;
|
|
7512
|
+
summary: string;
|
|
7513
|
+
type?: string | undefined;
|
|
7514
|
+
}[] | undefined;
|
|
9306
7515
|
displayNameField?: string | undefined;
|
|
9307
7516
|
recordName?: {
|
|
9308
7517
|
type: "text" | "autonumber";
|
|
@@ -9613,7 +7822,6 @@ declare const securityObjects: ((Omit<{
|
|
|
9613
7822
|
clone: boolean;
|
|
9614
7823
|
apiMethods?: ("aggregate" | "update" | "delete" | "restore" | "purge" | "search" | "create" | "import" | "list" | "get" | "upsert" | "bulk" | "history" | "export")[] | undefined;
|
|
9615
7824
|
} | undefined;
|
|
9616
|
-
recordTypes?: string[] | undefined;
|
|
9617
7825
|
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
9618
7826
|
publicSharing?: {
|
|
9619
7827
|
enabled: boolean;
|
|
@@ -9762,7 +7970,6 @@ declare const securityObjects: ((Omit<{
|
|
|
9762
7970
|
readonly required?: boolean | undefined;
|
|
9763
7971
|
readonly multiple?: boolean | undefined;
|
|
9764
7972
|
readonly dependencies?: string[] | undefined;
|
|
9765
|
-
readonly theme?: string | undefined;
|
|
9766
7973
|
readonly externalId?: boolean | undefined;
|
|
9767
7974
|
readonly defaultValue?: unknown;
|
|
9768
7975
|
readonly group?: string | undefined;
|
|
@@ -9770,23 +7977,6 @@ declare const securityObjects: ((Omit<{
|
|
|
9770
7977
|
readonly system?: boolean | undefined;
|
|
9771
7978
|
readonly min?: number | undefined;
|
|
9772
7979
|
readonly max?: number | undefined;
|
|
9773
|
-
readonly encryptionConfig?: {
|
|
9774
|
-
enabled: boolean;
|
|
9775
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
9776
|
-
keyManagement: {
|
|
9777
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
9778
|
-
keyId?: string | undefined;
|
|
9779
|
-
rotationPolicy?: {
|
|
9780
|
-
enabled: boolean;
|
|
9781
|
-
frequencyDays: number;
|
|
9782
|
-
retainOldVersions: number;
|
|
9783
|
-
autoRotate: boolean;
|
|
9784
|
-
} | undefined;
|
|
9785
|
-
};
|
|
9786
|
-
scope: "record" | "field" | "table" | "database";
|
|
9787
|
-
deterministicEncryption: boolean;
|
|
9788
|
-
searchableEncryption: boolean;
|
|
9789
|
-
} | undefined;
|
|
9790
7980
|
readonly columnName?: string | undefined;
|
|
9791
7981
|
readonly searchable?: boolean | undefined;
|
|
9792
7982
|
readonly unique?: boolean | undefined;
|
|
@@ -9795,7 +7985,6 @@ declare const securityObjects: ((Omit<{
|
|
|
9795
7985
|
readonly scale?: number | undefined;
|
|
9796
7986
|
readonly reference?: string | undefined;
|
|
9797
7987
|
readonly referenceFilters?: string[] | undefined;
|
|
9798
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
9799
7988
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
9800
7989
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
9801
7990
|
readonly inlineTitle?: string | undefined;
|
|
@@ -9820,22 +8009,8 @@ declare const securityObjects: ((Omit<{
|
|
|
9820
8009
|
relationshipField?: string | undefined;
|
|
9821
8010
|
} | undefined;
|
|
9822
8011
|
readonly language?: string | undefined;
|
|
9823
|
-
readonly lineNumbers?: boolean | undefined;
|
|
9824
8012
|
readonly maxRating?: number | undefined;
|
|
9825
|
-
readonly allowHalf?: boolean | undefined;
|
|
9826
|
-
readonly displayMap?: boolean | undefined;
|
|
9827
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
9828
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
9829
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
9830
|
-
readonly allowAlpha?: boolean | undefined;
|
|
9831
|
-
readonly presetColors?: string[] | undefined;
|
|
9832
8013
|
readonly step?: number | undefined;
|
|
9833
|
-
readonly showValue?: boolean | undefined;
|
|
9834
|
-
readonly marks?: Record<string, string> | undefined;
|
|
9835
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
9836
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
9837
|
-
readonly displayValue?: boolean | undefined;
|
|
9838
|
-
readonly allowScanning?: boolean | undefined;
|
|
9839
8014
|
readonly currencyConfig?: {
|
|
9840
8015
|
precision: number;
|
|
9841
8016
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -9889,29 +8064,7 @@ declare const securityObjects: ((Omit<{
|
|
|
9889
8064
|
} | undefined;
|
|
9890
8065
|
maxVersions?: number | undefined;
|
|
9891
8066
|
} | undefined;
|
|
9892
|
-
readonly
|
|
9893
|
-
field: string;
|
|
9894
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
9895
|
-
preserveFormat: boolean;
|
|
9896
|
-
preserveLength: boolean;
|
|
9897
|
-
pattern?: string | undefined;
|
|
9898
|
-
roles?: string[] | undefined;
|
|
9899
|
-
exemptRoles?: string[] | undefined;
|
|
9900
|
-
} | undefined;
|
|
9901
|
-
readonly auditTrail?: boolean | undefined;
|
|
9902
|
-
readonly cached?: {
|
|
9903
|
-
enabled: boolean;
|
|
9904
|
-
ttl: number;
|
|
9905
|
-
invalidateOn: string[];
|
|
9906
|
-
} | undefined;
|
|
9907
|
-
readonly dataQuality?: {
|
|
9908
|
-
uniqueness: boolean;
|
|
9909
|
-
completeness: number;
|
|
9910
|
-
accuracy?: {
|
|
9911
|
-
source: string;
|
|
9912
|
-
threshold: number;
|
|
9913
|
-
} | undefined;
|
|
9914
|
-
} | undefined;
|
|
8067
|
+
readonly trackHistory?: boolean | undefined;
|
|
9915
8068
|
readonly visibleWhen?: {
|
|
9916
8069
|
dialect: "cel" | "js" | "cron" | "template";
|
|
9917
8070
|
source?: string | undefined;
|
|
@@ -9950,7 +8103,6 @@ declare const securityObjects: ((Omit<{
|
|
|
9950
8103
|
} | undefined;
|
|
9951
8104
|
readonly sortable?: boolean | undefined;
|
|
9952
8105
|
readonly inlineHelpText?: string | undefined;
|
|
9953
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
9954
8106
|
readonly caseSensitive?: boolean | undefined;
|
|
9955
8107
|
readonly autonumberFormat?: string | undefined;
|
|
9956
8108
|
readonly index?: boolean | undefined;
|
|
@@ -9972,7 +8124,6 @@ declare const securityObjects: ((Omit<{
|
|
|
9972
8124
|
readonly required?: boolean | undefined;
|
|
9973
8125
|
readonly multiple?: boolean | undefined;
|
|
9974
8126
|
readonly dependencies?: string[] | undefined;
|
|
9975
|
-
readonly theme?: string | undefined;
|
|
9976
8127
|
readonly externalId?: boolean | undefined;
|
|
9977
8128
|
readonly defaultValue?: unknown;
|
|
9978
8129
|
readonly group?: string | undefined;
|
|
@@ -9980,23 +8131,6 @@ declare const securityObjects: ((Omit<{
|
|
|
9980
8131
|
readonly system?: boolean | undefined;
|
|
9981
8132
|
readonly min?: number | undefined;
|
|
9982
8133
|
readonly max?: number | undefined;
|
|
9983
|
-
readonly encryptionConfig?: {
|
|
9984
|
-
enabled: boolean;
|
|
9985
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
9986
|
-
keyManagement: {
|
|
9987
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
9988
|
-
keyId?: string | undefined;
|
|
9989
|
-
rotationPolicy?: {
|
|
9990
|
-
enabled: boolean;
|
|
9991
|
-
frequencyDays: number;
|
|
9992
|
-
retainOldVersions: number;
|
|
9993
|
-
autoRotate: boolean;
|
|
9994
|
-
} | undefined;
|
|
9995
|
-
};
|
|
9996
|
-
scope: "record" | "field" | "table" | "database";
|
|
9997
|
-
deterministicEncryption: boolean;
|
|
9998
|
-
searchableEncryption: boolean;
|
|
9999
|
-
} | undefined;
|
|
10000
8134
|
readonly columnName?: string | undefined;
|
|
10001
8135
|
readonly searchable?: boolean | undefined;
|
|
10002
8136
|
readonly unique?: boolean | undefined;
|
|
@@ -10005,7 +8139,6 @@ declare const securityObjects: ((Omit<{
|
|
|
10005
8139
|
readonly scale?: number | undefined;
|
|
10006
8140
|
reference: string;
|
|
10007
8141
|
readonly referenceFilters?: string[] | undefined;
|
|
10008
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
10009
8142
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
10010
8143
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
10011
8144
|
readonly inlineTitle?: string | undefined;
|
|
@@ -10030,22 +8163,8 @@ declare const securityObjects: ((Omit<{
|
|
|
10030
8163
|
relationshipField?: string | undefined;
|
|
10031
8164
|
} | undefined;
|
|
10032
8165
|
readonly language?: string | undefined;
|
|
10033
|
-
readonly lineNumbers?: boolean | undefined;
|
|
10034
8166
|
readonly maxRating?: number | undefined;
|
|
10035
|
-
readonly allowHalf?: boolean | undefined;
|
|
10036
|
-
readonly displayMap?: boolean | undefined;
|
|
10037
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
10038
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
10039
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
10040
|
-
readonly allowAlpha?: boolean | undefined;
|
|
10041
|
-
readonly presetColors?: string[] | undefined;
|
|
10042
8167
|
readonly step?: number | undefined;
|
|
10043
|
-
readonly showValue?: boolean | undefined;
|
|
10044
|
-
readonly marks?: Record<string, string> | undefined;
|
|
10045
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
10046
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
10047
|
-
readonly displayValue?: boolean | undefined;
|
|
10048
|
-
readonly allowScanning?: boolean | undefined;
|
|
10049
8168
|
readonly currencyConfig?: {
|
|
10050
8169
|
precision: number;
|
|
10051
8170
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -10099,29 +8218,7 @@ declare const securityObjects: ((Omit<{
|
|
|
10099
8218
|
} | undefined;
|
|
10100
8219
|
maxVersions?: number | undefined;
|
|
10101
8220
|
} | undefined;
|
|
10102
|
-
readonly
|
|
10103
|
-
field: string;
|
|
10104
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
10105
|
-
preserveFormat: boolean;
|
|
10106
|
-
preserveLength: boolean;
|
|
10107
|
-
pattern?: string | undefined;
|
|
10108
|
-
roles?: string[] | undefined;
|
|
10109
|
-
exemptRoles?: string[] | undefined;
|
|
10110
|
-
} | undefined;
|
|
10111
|
-
readonly auditTrail?: boolean | undefined;
|
|
10112
|
-
readonly cached?: {
|
|
10113
|
-
enabled: boolean;
|
|
10114
|
-
ttl: number;
|
|
10115
|
-
invalidateOn: string[];
|
|
10116
|
-
} | undefined;
|
|
10117
|
-
readonly dataQuality?: {
|
|
10118
|
-
uniqueness: boolean;
|
|
10119
|
-
completeness: number;
|
|
10120
|
-
accuracy?: {
|
|
10121
|
-
source: string;
|
|
10122
|
-
threshold: number;
|
|
10123
|
-
} | undefined;
|
|
10124
|
-
} | undefined;
|
|
8221
|
+
readonly trackHistory?: boolean | undefined;
|
|
10125
8222
|
readonly visibleWhen?: {
|
|
10126
8223
|
dialect: "cel" | "js" | "cron" | "template";
|
|
10127
8224
|
source?: string | undefined;
|
|
@@ -10160,7 +8257,6 @@ declare const securityObjects: ((Omit<{
|
|
|
10160
8257
|
} | undefined;
|
|
10161
8258
|
readonly sortable?: boolean | undefined;
|
|
10162
8259
|
readonly inlineHelpText?: string | undefined;
|
|
10163
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
10164
8260
|
readonly caseSensitive?: boolean | undefined;
|
|
10165
8261
|
readonly autonumberFormat?: string | undefined;
|
|
10166
8262
|
readonly index?: boolean | undefined;
|
|
@@ -10182,7 +8278,6 @@ declare const securityObjects: ((Omit<{
|
|
|
10182
8278
|
readonly required?: boolean | undefined;
|
|
10183
8279
|
readonly multiple?: boolean | undefined;
|
|
10184
8280
|
readonly dependencies?: string[] | undefined;
|
|
10185
|
-
readonly theme?: string | undefined;
|
|
10186
8281
|
readonly externalId?: boolean | undefined;
|
|
10187
8282
|
readonly defaultValue?: unknown;
|
|
10188
8283
|
readonly group?: string | undefined;
|
|
@@ -10190,23 +8285,6 @@ declare const securityObjects: ((Omit<{
|
|
|
10190
8285
|
readonly system?: boolean | undefined;
|
|
10191
8286
|
readonly min?: number | undefined;
|
|
10192
8287
|
readonly max?: number | undefined;
|
|
10193
|
-
readonly encryptionConfig?: {
|
|
10194
|
-
enabled: boolean;
|
|
10195
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
10196
|
-
keyManagement: {
|
|
10197
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
10198
|
-
keyId?: string | undefined;
|
|
10199
|
-
rotationPolicy?: {
|
|
10200
|
-
enabled: boolean;
|
|
10201
|
-
frequencyDays: number;
|
|
10202
|
-
retainOldVersions: number;
|
|
10203
|
-
autoRotate: boolean;
|
|
10204
|
-
} | undefined;
|
|
10205
|
-
};
|
|
10206
|
-
scope: "record" | "field" | "table" | "database";
|
|
10207
|
-
deterministicEncryption: boolean;
|
|
10208
|
-
searchableEncryption: boolean;
|
|
10209
|
-
} | undefined;
|
|
10210
8288
|
readonly columnName?: string | undefined;
|
|
10211
8289
|
readonly searchable?: boolean | undefined;
|
|
10212
8290
|
readonly unique?: boolean | undefined;
|
|
@@ -10215,7 +8293,6 @@ declare const securityObjects: ((Omit<{
|
|
|
10215
8293
|
readonly scale?: number | undefined;
|
|
10216
8294
|
reference: string;
|
|
10217
8295
|
readonly referenceFilters?: string[] | undefined;
|
|
10218
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
10219
8296
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
10220
8297
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
10221
8298
|
readonly inlineTitle?: string | undefined;
|
|
@@ -10240,22 +8317,8 @@ declare const securityObjects: ((Omit<{
|
|
|
10240
8317
|
relationshipField?: string | undefined;
|
|
10241
8318
|
} | undefined;
|
|
10242
8319
|
readonly language?: string | undefined;
|
|
10243
|
-
readonly lineNumbers?: boolean | undefined;
|
|
10244
8320
|
readonly maxRating?: number | undefined;
|
|
10245
|
-
readonly allowHalf?: boolean | undefined;
|
|
10246
|
-
readonly displayMap?: boolean | undefined;
|
|
10247
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
10248
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
10249
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
10250
|
-
readonly allowAlpha?: boolean | undefined;
|
|
10251
|
-
readonly presetColors?: string[] | undefined;
|
|
10252
8321
|
readonly step?: number | undefined;
|
|
10253
|
-
readonly showValue?: boolean | undefined;
|
|
10254
|
-
readonly marks?: Record<string, string> | undefined;
|
|
10255
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
10256
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
10257
|
-
readonly displayValue?: boolean | undefined;
|
|
10258
|
-
readonly allowScanning?: boolean | undefined;
|
|
10259
8322
|
readonly currencyConfig?: {
|
|
10260
8323
|
precision: number;
|
|
10261
8324
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -10309,29 +8372,7 @@ declare const securityObjects: ((Omit<{
|
|
|
10309
8372
|
} | undefined;
|
|
10310
8373
|
maxVersions?: number | undefined;
|
|
10311
8374
|
} | undefined;
|
|
10312
|
-
readonly
|
|
10313
|
-
field: string;
|
|
10314
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
10315
|
-
preserveFormat: boolean;
|
|
10316
|
-
preserveLength: boolean;
|
|
10317
|
-
pattern?: string | undefined;
|
|
10318
|
-
roles?: string[] | undefined;
|
|
10319
|
-
exemptRoles?: string[] | undefined;
|
|
10320
|
-
} | undefined;
|
|
10321
|
-
readonly auditTrail?: boolean | undefined;
|
|
10322
|
-
readonly cached?: {
|
|
10323
|
-
enabled: boolean;
|
|
10324
|
-
ttl: number;
|
|
10325
|
-
invalidateOn: string[];
|
|
10326
|
-
} | undefined;
|
|
10327
|
-
readonly dataQuality?: {
|
|
10328
|
-
uniqueness: boolean;
|
|
10329
|
-
completeness: number;
|
|
10330
|
-
accuracy?: {
|
|
10331
|
-
source: string;
|
|
10332
|
-
threshold: number;
|
|
10333
|
-
} | undefined;
|
|
10334
|
-
} | undefined;
|
|
8375
|
+
readonly trackHistory?: boolean | undefined;
|
|
10335
8376
|
readonly visibleWhen?: {
|
|
10336
8377
|
dialect: "cel" | "js" | "cron" | "template";
|
|
10337
8378
|
source?: string | undefined;
|
|
@@ -10370,7 +8411,6 @@ declare const securityObjects: ((Omit<{
|
|
|
10370
8411
|
} | undefined;
|
|
10371
8412
|
readonly sortable?: boolean | undefined;
|
|
10372
8413
|
readonly inlineHelpText?: string | undefined;
|
|
10373
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
10374
8414
|
readonly caseSensitive?: boolean | undefined;
|
|
10375
8415
|
readonly autonumberFormat?: string | undefined;
|
|
10376
8416
|
readonly index?: boolean | undefined;
|
|
@@ -10392,7 +8432,6 @@ declare const securityObjects: ((Omit<{
|
|
|
10392
8432
|
readonly required?: boolean | undefined;
|
|
10393
8433
|
readonly multiple?: boolean | undefined;
|
|
10394
8434
|
readonly dependencies?: string[] | undefined;
|
|
10395
|
-
readonly theme?: string | undefined;
|
|
10396
8435
|
readonly externalId?: boolean | undefined;
|
|
10397
8436
|
readonly defaultValue?: unknown;
|
|
10398
8437
|
readonly group?: string | undefined;
|
|
@@ -10400,23 +8439,6 @@ declare const securityObjects: ((Omit<{
|
|
|
10400
8439
|
readonly system?: boolean | undefined;
|
|
10401
8440
|
readonly min?: number | undefined;
|
|
10402
8441
|
readonly max?: number | undefined;
|
|
10403
|
-
readonly encryptionConfig?: {
|
|
10404
|
-
enabled: boolean;
|
|
10405
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
10406
|
-
keyManagement: {
|
|
10407
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
10408
|
-
keyId?: string | undefined;
|
|
10409
|
-
rotationPolicy?: {
|
|
10410
|
-
enabled: boolean;
|
|
10411
|
-
frequencyDays: number;
|
|
10412
|
-
retainOldVersions: number;
|
|
10413
|
-
autoRotate: boolean;
|
|
10414
|
-
} | undefined;
|
|
10415
|
-
};
|
|
10416
|
-
scope: "record" | "field" | "table" | "database";
|
|
10417
|
-
deterministicEncryption: boolean;
|
|
10418
|
-
searchableEncryption: boolean;
|
|
10419
|
-
} | undefined;
|
|
10420
8442
|
readonly columnName?: string | undefined;
|
|
10421
8443
|
readonly searchable?: boolean | undefined;
|
|
10422
8444
|
readonly unique?: boolean | undefined;
|
|
@@ -10425,7 +8447,6 @@ declare const securityObjects: ((Omit<{
|
|
|
10425
8447
|
readonly scale?: number | undefined;
|
|
10426
8448
|
readonly reference?: string | undefined;
|
|
10427
8449
|
readonly referenceFilters?: string[] | undefined;
|
|
10428
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
10429
8450
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
10430
8451
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
10431
8452
|
readonly inlineTitle?: string | undefined;
|
|
@@ -10450,22 +8471,8 @@ declare const securityObjects: ((Omit<{
|
|
|
10450
8471
|
relationshipField?: string | undefined;
|
|
10451
8472
|
} | undefined;
|
|
10452
8473
|
readonly language?: string | undefined;
|
|
10453
|
-
readonly lineNumbers?: boolean | undefined;
|
|
10454
8474
|
readonly maxRating?: number | undefined;
|
|
10455
|
-
readonly allowHalf?: boolean | undefined;
|
|
10456
|
-
readonly displayMap?: boolean | undefined;
|
|
10457
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
10458
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
10459
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
10460
|
-
readonly allowAlpha?: boolean | undefined;
|
|
10461
|
-
readonly presetColors?: string[] | undefined;
|
|
10462
8475
|
readonly step?: number | undefined;
|
|
10463
|
-
readonly showValue?: boolean | undefined;
|
|
10464
|
-
readonly marks?: Record<string, string> | undefined;
|
|
10465
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
10466
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
10467
|
-
readonly displayValue?: boolean | undefined;
|
|
10468
|
-
readonly allowScanning?: boolean | undefined;
|
|
10469
8476
|
readonly currencyConfig?: {
|
|
10470
8477
|
precision: number;
|
|
10471
8478
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -10519,29 +8526,7 @@ declare const securityObjects: ((Omit<{
|
|
|
10519
8526
|
} | undefined;
|
|
10520
8527
|
maxVersions?: number | undefined;
|
|
10521
8528
|
} | undefined;
|
|
10522
|
-
readonly
|
|
10523
|
-
field: string;
|
|
10524
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
10525
|
-
preserveFormat: boolean;
|
|
10526
|
-
preserveLength: boolean;
|
|
10527
|
-
pattern?: string | undefined;
|
|
10528
|
-
roles?: string[] | undefined;
|
|
10529
|
-
exemptRoles?: string[] | undefined;
|
|
10530
|
-
} | undefined;
|
|
10531
|
-
readonly auditTrail?: boolean | undefined;
|
|
10532
|
-
readonly cached?: {
|
|
10533
|
-
enabled: boolean;
|
|
10534
|
-
ttl: number;
|
|
10535
|
-
invalidateOn: string[];
|
|
10536
|
-
} | undefined;
|
|
10537
|
-
readonly dataQuality?: {
|
|
10538
|
-
uniqueness: boolean;
|
|
10539
|
-
completeness: number;
|
|
10540
|
-
accuracy?: {
|
|
10541
|
-
source: string;
|
|
10542
|
-
threshold: number;
|
|
10543
|
-
} | undefined;
|
|
10544
|
-
} | undefined;
|
|
8529
|
+
readonly trackHistory?: boolean | undefined;
|
|
10545
8530
|
readonly visibleWhen?: {
|
|
10546
8531
|
dialect: "cel" | "js" | "cron" | "template";
|
|
10547
8532
|
source?: string | undefined;
|
|
@@ -10580,7 +8565,6 @@ declare const securityObjects: ((Omit<{
|
|
|
10580
8565
|
} | undefined;
|
|
10581
8566
|
readonly sortable?: boolean | undefined;
|
|
10582
8567
|
readonly inlineHelpText?: string | undefined;
|
|
10583
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
10584
8568
|
readonly caseSensitive?: boolean | undefined;
|
|
10585
8569
|
readonly autonumberFormat?: string | undefined;
|
|
10586
8570
|
readonly index?: boolean | undefined;
|
|
@@ -10602,7 +8586,6 @@ declare const securityObjects: ((Omit<{
|
|
|
10602
8586
|
readonly required?: boolean | undefined;
|
|
10603
8587
|
readonly multiple?: boolean | undefined;
|
|
10604
8588
|
readonly dependencies?: string[] | undefined;
|
|
10605
|
-
readonly theme?: string | undefined;
|
|
10606
8589
|
readonly externalId?: boolean | undefined;
|
|
10607
8590
|
readonly defaultValue?: unknown;
|
|
10608
8591
|
readonly group?: string | undefined;
|
|
@@ -10610,23 +8593,6 @@ declare const securityObjects: ((Omit<{
|
|
|
10610
8593
|
readonly system?: boolean | undefined;
|
|
10611
8594
|
readonly min?: number | undefined;
|
|
10612
8595
|
readonly max?: number | undefined;
|
|
10613
|
-
readonly encryptionConfig?: {
|
|
10614
|
-
enabled: boolean;
|
|
10615
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
10616
|
-
keyManagement: {
|
|
10617
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
10618
|
-
keyId?: string | undefined;
|
|
10619
|
-
rotationPolicy?: {
|
|
10620
|
-
enabled: boolean;
|
|
10621
|
-
frequencyDays: number;
|
|
10622
|
-
retainOldVersions: number;
|
|
10623
|
-
autoRotate: boolean;
|
|
10624
|
-
} | undefined;
|
|
10625
|
-
};
|
|
10626
|
-
scope: "record" | "field" | "table" | "database";
|
|
10627
|
-
deterministicEncryption: boolean;
|
|
10628
|
-
searchableEncryption: boolean;
|
|
10629
|
-
} | undefined;
|
|
10630
8596
|
readonly columnName?: string | undefined;
|
|
10631
8597
|
readonly searchable?: boolean | undefined;
|
|
10632
8598
|
readonly unique?: boolean | undefined;
|
|
@@ -10635,7 +8601,6 @@ declare const securityObjects: ((Omit<{
|
|
|
10635
8601
|
readonly scale?: number | undefined;
|
|
10636
8602
|
readonly reference?: string | undefined;
|
|
10637
8603
|
readonly referenceFilters?: string[] | undefined;
|
|
10638
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
10639
8604
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
10640
8605
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
10641
8606
|
readonly inlineTitle?: string | undefined;
|
|
@@ -10660,22 +8625,8 @@ declare const securityObjects: ((Omit<{
|
|
|
10660
8625
|
relationshipField?: string | undefined;
|
|
10661
8626
|
} | undefined;
|
|
10662
8627
|
readonly language?: string | undefined;
|
|
10663
|
-
readonly lineNumbers?: boolean | undefined;
|
|
10664
8628
|
readonly maxRating?: number | undefined;
|
|
10665
|
-
readonly allowHalf?: boolean | undefined;
|
|
10666
|
-
readonly displayMap?: boolean | undefined;
|
|
10667
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
10668
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
10669
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
10670
|
-
readonly allowAlpha?: boolean | undefined;
|
|
10671
|
-
readonly presetColors?: string[] | undefined;
|
|
10672
8629
|
readonly step?: number | undefined;
|
|
10673
|
-
readonly showValue?: boolean | undefined;
|
|
10674
|
-
readonly marks?: Record<string, string> | undefined;
|
|
10675
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
10676
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
10677
|
-
readonly displayValue?: boolean | undefined;
|
|
10678
|
-
readonly allowScanning?: boolean | undefined;
|
|
10679
8630
|
readonly currencyConfig?: {
|
|
10680
8631
|
precision: number;
|
|
10681
8632
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -10729,29 +8680,7 @@ declare const securityObjects: ((Omit<{
|
|
|
10729
8680
|
} | undefined;
|
|
10730
8681
|
maxVersions?: number | undefined;
|
|
10731
8682
|
} | undefined;
|
|
10732
|
-
readonly
|
|
10733
|
-
field: string;
|
|
10734
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
10735
|
-
preserveFormat: boolean;
|
|
10736
|
-
preserveLength: boolean;
|
|
10737
|
-
pattern?: string | undefined;
|
|
10738
|
-
roles?: string[] | undefined;
|
|
10739
|
-
exemptRoles?: string[] | undefined;
|
|
10740
|
-
} | undefined;
|
|
10741
|
-
readonly auditTrail?: boolean | undefined;
|
|
10742
|
-
readonly cached?: {
|
|
10743
|
-
enabled: boolean;
|
|
10744
|
-
ttl: number;
|
|
10745
|
-
invalidateOn: string[];
|
|
10746
|
-
} | undefined;
|
|
10747
|
-
readonly dataQuality?: {
|
|
10748
|
-
uniqueness: boolean;
|
|
10749
|
-
completeness: number;
|
|
10750
|
-
accuracy?: {
|
|
10751
|
-
source: string;
|
|
10752
|
-
threshold: number;
|
|
10753
|
-
} | undefined;
|
|
10754
|
-
} | undefined;
|
|
8683
|
+
readonly trackHistory?: boolean | undefined;
|
|
10755
8684
|
readonly visibleWhen?: {
|
|
10756
8685
|
dialect: "cel" | "js" | "cron" | "template";
|
|
10757
8686
|
source?: string | undefined;
|
|
@@ -10790,7 +8719,6 @@ declare const securityObjects: ((Omit<{
|
|
|
10790
8719
|
} | undefined;
|
|
10791
8720
|
readonly sortable?: boolean | undefined;
|
|
10792
8721
|
readonly inlineHelpText?: string | undefined;
|
|
10793
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
10794
8722
|
readonly caseSensitive?: boolean | undefined;
|
|
10795
8723
|
readonly autonumberFormat?: string | undefined;
|
|
10796
8724
|
readonly index?: boolean | undefined;
|