@objectstack/plugin-security 9.7.0 → 9.9.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 CHANGED
@@ -125,6 +125,15 @@ declare class SecurityPlugin implements Plugin {
125
125
  * underlying metadata/db resolution fails (callers fail-closed).
126
126
  */
127
127
  private resolvePermissionSetsForContext;
128
+ /**
129
+ * Resolve a single scalar primary-key id from an update/delete operation
130
+ * context, mirroring the engine's "single-id vs predicate" rule
131
+ * (`engine.ts` update/delete): only a scalar `data.id` or `where.id`
132
+ * identifies one row. An operator object (`{ $in: [...] }`, …) is a
133
+ * multi-row predicate and returns `null` (multi-row writes route through the
134
+ * `*Many` paths, out of scope for the by-id pre-image check).
135
+ */
136
+ private extractSingleId;
128
137
  /**
129
138
  * Compile the applicable RLS policies for (object, operation) into a single
130
139
  * `FilterCondition`, applying the field-existence safety net (wildcard
@@ -352,7 +361,6 @@ declare const securityObjects: ((Omit<{
352
361
  multiple: boolean;
353
362
  unique: boolean;
354
363
  deleteBehavior: "set_null" | "cascade" | "restrict";
355
- auditTrail: boolean;
356
364
  hidden: boolean;
357
365
  readonly: boolean;
358
366
  sortable: boolean;
@@ -378,7 +386,6 @@ declare const securityObjects: ((Omit<{
378
386
  }[] | undefined;
379
387
  reference?: string | undefined;
380
388
  referenceFilters?: string[] | undefined;
381
- writeRequiresMasterRead?: boolean | undefined;
382
389
  inlineEdit?: boolean | "grid" | "form" | undefined;
383
390
  inlineTitle?: string | undefined;
384
391
  inlineColumns?: any[] | undefined;
@@ -410,28 +417,14 @@ declare const securityObjects: ((Omit<{
410
417
  relationshipField?: string | undefined;
411
418
  } | undefined;
412
419
  language?: string | undefined;
413
- theme?: string | undefined;
414
- lineNumbers?: boolean | undefined;
415
420
  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
421
  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
422
  currencyConfig?: {
431
423
  precision: number;
432
424
  currencyMode: "fixed" | "dynamic";
433
425
  defaultCurrency: string;
434
426
  } | undefined;
427
+ dimensions?: number | undefined;
435
428
  vectorConfig?: {
436
429
  dimensions: number;
437
430
  distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
@@ -480,46 +473,8 @@ declare const securityObjects: ((Omit<{
480
473
  } | undefined;
481
474
  maxVersions?: number | undefined;
482
475
  } | undefined;
483
- encryptionConfig?: {
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;
476
+ trackHistory?: boolean | undefined;
509
477
  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
478
  group?: string | undefined;
524
479
  visibleWhen?: {
525
480
  dialect: "cel" | "js" | "cron" | "template";
@@ -591,7 +546,6 @@ declare const securityObjects: ((Omit<{
591
546
  } | undefined;
592
547
  system?: boolean | undefined;
593
548
  inlineHelpText?: string | undefined;
594
- trackFeedHistory?: boolean | undefined;
595
549
  caseSensitive?: boolean | undefined;
596
550
  autonumberFormat?: string | undefined;
597
551
  }>;
@@ -682,12 +636,13 @@ declare const securityObjects: ((Omit<{
682
636
  key: string;
683
637
  interval?: string | undefined;
684
638
  } | undefined;
685
- cdc?: {
686
- enabled: boolean;
687
- events: ("insert" | "update" | "delete")[];
688
- destination: string;
689
- } | undefined;
690
639
  validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
640
+ activityMilestones?: {
641
+ field: string;
642
+ value: string;
643
+ summary: string;
644
+ type?: string | undefined;
645
+ }[] | undefined;
691
646
  displayNameField?: string | undefined;
692
647
  recordName?: {
693
648
  type: "text" | "autonumber";
@@ -998,7 +953,6 @@ declare const securityObjects: ((Omit<{
998
953
  clone: boolean;
999
954
  apiMethods?: ("aggregate" | "update" | "delete" | "restore" | "purge" | "search" | "create" | "import" | "list" | "get" | "upsert" | "bulk" | "history" | "export")[] | undefined;
1000
955
  } | undefined;
1001
- recordTypes?: string[] | undefined;
1002
956
  sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
1003
957
  publicSharing?: {
1004
958
  enabled: boolean;
@@ -1055,6 +1009,8 @@ declare const securityObjects: ((Omit<{
1055
1009
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
1056
1010
  confirmText?: string | undefined;
1057
1011
  successMessage?: string | undefined;
1012
+ errorMessage?: string | undefined;
1013
+ undoable?: boolean | undefined;
1058
1014
  resultDialog?: {
1059
1015
  title?: string | undefined;
1060
1016
  description?: string | undefined;
@@ -1320,7 +1276,6 @@ declare const securityObjects: ((Omit<{
1320
1276
  readonly required?: boolean | undefined;
1321
1277
  readonly multiple?: boolean | undefined;
1322
1278
  readonly dependencies?: string[] | undefined;
1323
- readonly theme?: string | undefined;
1324
1279
  readonly externalId?: boolean | undefined;
1325
1280
  readonly defaultValue?: unknown;
1326
1281
  readonly group?: string | undefined;
@@ -1328,23 +1283,7 @@ declare const securityObjects: ((Omit<{
1328
1283
  readonly system?: boolean | undefined;
1329
1284
  readonly min?: number | undefined;
1330
1285
  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;
1286
+ readonly dimensions?: number | undefined;
1348
1287
  readonly columnName?: string | undefined;
1349
1288
  readonly searchable?: boolean | undefined;
1350
1289
  readonly unique?: boolean | undefined;
@@ -1353,7 +1292,6 @@ declare const securityObjects: ((Omit<{
1353
1292
  readonly scale?: number | undefined;
1354
1293
  readonly reference?: string | undefined;
1355
1294
  readonly referenceFilters?: string[] | undefined;
1356
- readonly writeRequiresMasterRead?: boolean | undefined;
1357
1295
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1358
1296
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1359
1297
  readonly inlineTitle?: string | undefined;
@@ -1378,22 +1316,8 @@ declare const securityObjects: ((Omit<{
1378
1316
  relationshipField?: string | undefined;
1379
1317
  } | undefined;
1380
1318
  readonly language?: string | undefined;
1381
- readonly lineNumbers?: boolean | undefined;
1382
1319
  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
1320
  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
1321
  readonly currencyConfig?: {
1398
1322
  precision: number;
1399
1323
  currencyMode: "fixed" | "dynamic";
@@ -1447,29 +1371,7 @@ declare const securityObjects: ((Omit<{
1447
1371
  } | undefined;
1448
1372
  maxVersions?: number | undefined;
1449
1373
  } | undefined;
1450
- readonly maskingRule?: {
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;
1374
+ readonly trackHistory?: boolean | undefined;
1473
1375
  readonly visibleWhen?: {
1474
1376
  dialect: "cel" | "js" | "cron" | "template";
1475
1377
  source?: string | undefined;
@@ -1508,7 +1410,6 @@ declare const securityObjects: ((Omit<{
1508
1410
  } | undefined;
1509
1411
  readonly sortable?: boolean | undefined;
1510
1412
  readonly inlineHelpText?: string | undefined;
1511
- readonly trackFeedHistory?: boolean | undefined;
1512
1413
  readonly caseSensitive?: boolean | undefined;
1513
1414
  readonly autonumberFormat?: string | undefined;
1514
1415
  readonly index?: boolean | undefined;
@@ -1530,7 +1431,6 @@ declare const securityObjects: ((Omit<{
1530
1431
  readonly required?: boolean | undefined;
1531
1432
  readonly multiple?: boolean | undefined;
1532
1433
  readonly dependencies?: string[] | undefined;
1533
- readonly theme?: string | undefined;
1534
1434
  readonly externalId?: boolean | undefined;
1535
1435
  readonly defaultValue?: unknown;
1536
1436
  readonly group?: string | undefined;
@@ -1538,23 +1438,7 @@ declare const securityObjects: ((Omit<{
1538
1438
  readonly system?: boolean | undefined;
1539
1439
  readonly min?: number | undefined;
1540
1440
  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;
1441
+ readonly dimensions?: number | undefined;
1558
1442
  readonly columnName?: string | undefined;
1559
1443
  readonly searchable?: boolean | undefined;
1560
1444
  readonly unique?: boolean | undefined;
@@ -1563,7 +1447,6 @@ declare const securityObjects: ((Omit<{
1563
1447
  readonly scale?: number | undefined;
1564
1448
  readonly reference?: string | undefined;
1565
1449
  readonly referenceFilters?: string[] | undefined;
1566
- readonly writeRequiresMasterRead?: boolean | undefined;
1567
1450
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1568
1451
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1569
1452
  readonly inlineTitle?: string | undefined;
@@ -1588,22 +1471,8 @@ declare const securityObjects: ((Omit<{
1588
1471
  relationshipField?: string | undefined;
1589
1472
  } | undefined;
1590
1473
  readonly language?: string | undefined;
1591
- readonly lineNumbers?: boolean | undefined;
1592
1474
  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
1475
  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
1476
  readonly currencyConfig?: {
1608
1477
  precision: number;
1609
1478
  currencyMode: "fixed" | "dynamic";
@@ -1657,29 +1526,7 @@ declare const securityObjects: ((Omit<{
1657
1526
  } | undefined;
1658
1527
  maxVersions?: number | undefined;
1659
1528
  } | undefined;
1660
- readonly maskingRule?: {
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;
1529
+ readonly trackHistory?: boolean | undefined;
1683
1530
  readonly visibleWhen?: {
1684
1531
  dialect: "cel" | "js" | "cron" | "template";
1685
1532
  source?: string | undefined;
@@ -1718,7 +1565,6 @@ declare const securityObjects: ((Omit<{
1718
1565
  } | undefined;
1719
1566
  readonly sortable?: boolean | undefined;
1720
1567
  readonly inlineHelpText?: string | undefined;
1721
- readonly trackFeedHistory?: boolean | undefined;
1722
1568
  readonly caseSensitive?: boolean | undefined;
1723
1569
  readonly autonumberFormat?: string | undefined;
1724
1570
  readonly index?: boolean | undefined;
@@ -1740,7 +1586,6 @@ declare const securityObjects: ((Omit<{
1740
1586
  readonly required?: boolean | undefined;
1741
1587
  readonly multiple?: boolean | undefined;
1742
1588
  readonly dependencies?: string[] | undefined;
1743
- readonly theme?: string | undefined;
1744
1589
  readonly externalId?: boolean | undefined;
1745
1590
  readonly defaultValue?: unknown;
1746
1591
  readonly group?: string | undefined;
@@ -1748,23 +1593,7 @@ declare const securityObjects: ((Omit<{
1748
1593
  readonly system?: boolean | undefined;
1749
1594
  readonly min?: number | undefined;
1750
1595
  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;
1596
+ readonly dimensions?: number | undefined;
1768
1597
  readonly columnName?: string | undefined;
1769
1598
  readonly searchable?: boolean | undefined;
1770
1599
  readonly unique?: boolean | undefined;
@@ -1773,7 +1602,6 @@ declare const securityObjects: ((Omit<{
1773
1602
  readonly scale?: number | undefined;
1774
1603
  readonly reference?: string | undefined;
1775
1604
  readonly referenceFilters?: string[] | undefined;
1776
- readonly writeRequiresMasterRead?: boolean | undefined;
1777
1605
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1778
1606
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1779
1607
  readonly inlineTitle?: string | undefined;
@@ -1798,22 +1626,8 @@ declare const securityObjects: ((Omit<{
1798
1626
  relationshipField?: string | undefined;
1799
1627
  } | undefined;
1800
1628
  readonly language?: string | undefined;
1801
- readonly lineNumbers?: boolean | undefined;
1802
1629
  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
1630
  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
1631
  readonly currencyConfig?: {
1818
1632
  precision: number;
1819
1633
  currencyMode: "fixed" | "dynamic";
@@ -1867,29 +1681,7 @@ declare const securityObjects: ((Omit<{
1867
1681
  } | undefined;
1868
1682
  maxVersions?: number | undefined;
1869
1683
  } | undefined;
1870
- readonly maskingRule?: {
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;
1684
+ readonly trackHistory?: boolean | undefined;
1893
1685
  readonly visibleWhen?: {
1894
1686
  dialect: "cel" | "js" | "cron" | "template";
1895
1687
  source?: string | undefined;
@@ -1928,7 +1720,6 @@ declare const securityObjects: ((Omit<{
1928
1720
  } | undefined;
1929
1721
  readonly sortable?: boolean | undefined;
1930
1722
  readonly inlineHelpText?: string | undefined;
1931
- readonly trackFeedHistory?: boolean | undefined;
1932
1723
  readonly caseSensitive?: boolean | undefined;
1933
1724
  readonly autonumberFormat?: string | undefined;
1934
1725
  readonly index?: boolean | undefined;
@@ -1950,7 +1741,6 @@ declare const securityObjects: ((Omit<{
1950
1741
  readonly required?: boolean | undefined;
1951
1742
  readonly multiple?: boolean | undefined;
1952
1743
  readonly dependencies?: string[] | undefined;
1953
- readonly theme?: string | undefined;
1954
1744
  readonly externalId?: boolean | undefined;
1955
1745
  readonly defaultValue?: unknown;
1956
1746
  readonly group?: string | undefined;
@@ -1958,23 +1748,7 @@ declare const securityObjects: ((Omit<{
1958
1748
  readonly system?: boolean | undefined;
1959
1749
  readonly min?: number | undefined;
1960
1750
  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;
1751
+ readonly dimensions?: number | undefined;
1978
1752
  readonly columnName?: string | undefined;
1979
1753
  readonly searchable?: boolean | undefined;
1980
1754
  readonly unique?: boolean | undefined;
@@ -1983,7 +1757,6 @@ declare const securityObjects: ((Omit<{
1983
1757
  readonly scale?: number | undefined;
1984
1758
  readonly reference?: string | undefined;
1985
1759
  readonly referenceFilters?: string[] | undefined;
1986
- readonly writeRequiresMasterRead?: boolean | undefined;
1987
1760
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1988
1761
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1989
1762
  readonly inlineTitle?: string | undefined;
@@ -2008,22 +1781,8 @@ declare const securityObjects: ((Omit<{
2008
1781
  relationshipField?: string | undefined;
2009
1782
  } | undefined;
2010
1783
  readonly language?: string | undefined;
2011
- readonly lineNumbers?: boolean | undefined;
2012
1784
  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
1785
  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
1786
  readonly currencyConfig?: {
2028
1787
  precision: number;
2029
1788
  currencyMode: "fixed" | "dynamic";
@@ -2077,29 +1836,7 @@ declare const securityObjects: ((Omit<{
2077
1836
  } | undefined;
2078
1837
  maxVersions?: number | undefined;
2079
1838
  } | undefined;
2080
- readonly maskingRule?: {
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;
1839
+ readonly trackHistory?: boolean | undefined;
2103
1840
  readonly visibleWhen?: {
2104
1841
  dialect: "cel" | "js" | "cron" | "template";
2105
1842
  source?: string | undefined;
@@ -2138,7 +1875,6 @@ declare const securityObjects: ((Omit<{
2138
1875
  } | undefined;
2139
1876
  readonly sortable?: boolean | undefined;
2140
1877
  readonly inlineHelpText?: string | undefined;
2141
- readonly trackFeedHistory?: boolean | undefined;
2142
1878
  readonly caseSensitive?: boolean | undefined;
2143
1879
  readonly autonumberFormat?: string | undefined;
2144
1880
  readonly index?: boolean | undefined;
@@ -2160,7 +1896,6 @@ declare const securityObjects: ((Omit<{
2160
1896
  readonly required?: boolean | undefined;
2161
1897
  readonly multiple?: boolean | undefined;
2162
1898
  readonly dependencies?: string[] | undefined;
2163
- readonly theme?: string | undefined;
2164
1899
  readonly externalId?: boolean | undefined;
2165
1900
  readonly defaultValue?: unknown;
2166
1901
  readonly group?: string | undefined;
@@ -2168,23 +1903,7 @@ declare const securityObjects: ((Omit<{
2168
1903
  readonly system?: boolean | undefined;
2169
1904
  readonly min?: number | undefined;
2170
1905
  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;
1906
+ readonly dimensions?: number | undefined;
2188
1907
  readonly columnName?: string | undefined;
2189
1908
  readonly searchable?: boolean | undefined;
2190
1909
  readonly unique?: boolean | undefined;
@@ -2193,7 +1912,6 @@ declare const securityObjects: ((Omit<{
2193
1912
  readonly scale?: number | undefined;
2194
1913
  readonly reference?: string | undefined;
2195
1914
  readonly referenceFilters?: string[] | undefined;
2196
- readonly writeRequiresMasterRead?: boolean | undefined;
2197
1915
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2198
1916
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2199
1917
  readonly inlineTitle?: string | undefined;
@@ -2218,22 +1936,8 @@ declare const securityObjects: ((Omit<{
2218
1936
  relationshipField?: string | undefined;
2219
1937
  } | undefined;
2220
1938
  readonly language?: string | undefined;
2221
- readonly lineNumbers?: boolean | undefined;
2222
1939
  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
1940
  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
1941
  readonly currencyConfig?: {
2238
1942
  precision: number;
2239
1943
  currencyMode: "fixed" | "dynamic";
@@ -2287,29 +1991,7 @@ declare const securityObjects: ((Omit<{
2287
1991
  } | undefined;
2288
1992
  maxVersions?: number | undefined;
2289
1993
  } | undefined;
2290
- readonly maskingRule?: {
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;
1994
+ readonly trackHistory?: boolean | undefined;
2313
1995
  readonly visibleWhen?: {
2314
1996
  dialect: "cel" | "js" | "cron" | "template";
2315
1997
  source?: string | undefined;
@@ -2348,7 +2030,6 @@ declare const securityObjects: ((Omit<{
2348
2030
  } | undefined;
2349
2031
  readonly sortable?: boolean | undefined;
2350
2032
  readonly inlineHelpText?: string | undefined;
2351
- readonly trackFeedHistory?: boolean | undefined;
2352
2033
  readonly caseSensitive?: boolean | undefined;
2353
2034
  readonly autonumberFormat?: string | undefined;
2354
2035
  readonly index?: boolean | undefined;
@@ -2370,7 +2051,6 @@ declare const securityObjects: ((Omit<{
2370
2051
  readonly required?: boolean | undefined;
2371
2052
  readonly multiple?: boolean | undefined;
2372
2053
  readonly dependencies?: string[] | undefined;
2373
- readonly theme?: string | undefined;
2374
2054
  readonly externalId?: boolean | undefined;
2375
2055
  readonly defaultValue?: unknown;
2376
2056
  readonly group?: string | undefined;
@@ -2378,23 +2058,7 @@ declare const securityObjects: ((Omit<{
2378
2058
  readonly system?: boolean | undefined;
2379
2059
  readonly min?: number | undefined;
2380
2060
  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;
2061
+ readonly dimensions?: number | undefined;
2398
2062
  readonly columnName?: string | undefined;
2399
2063
  readonly searchable?: boolean | undefined;
2400
2064
  readonly unique?: boolean | undefined;
@@ -2403,7 +2067,6 @@ declare const securityObjects: ((Omit<{
2403
2067
  readonly scale?: number | undefined;
2404
2068
  readonly reference?: string | undefined;
2405
2069
  readonly referenceFilters?: string[] | undefined;
2406
- readonly writeRequiresMasterRead?: boolean | undefined;
2407
2070
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2408
2071
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2409
2072
  readonly inlineTitle?: string | undefined;
@@ -2428,22 +2091,8 @@ declare const securityObjects: ((Omit<{
2428
2091
  relationshipField?: string | undefined;
2429
2092
  } | undefined;
2430
2093
  readonly language?: string | undefined;
2431
- readonly lineNumbers?: boolean | undefined;
2432
2094
  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
2095
  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
2096
  readonly currencyConfig?: {
2448
2097
  precision: number;
2449
2098
  currencyMode: "fixed" | "dynamic";
@@ -2497,29 +2146,7 @@ declare const securityObjects: ((Omit<{
2497
2146
  } | undefined;
2498
2147
  maxVersions?: number | undefined;
2499
2148
  } | undefined;
2500
- readonly maskingRule?: {
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;
2149
+ readonly trackHistory?: boolean | undefined;
2523
2150
  readonly visibleWhen?: {
2524
2151
  dialect: "cel" | "js" | "cron" | "template";
2525
2152
  source?: string | undefined;
@@ -2558,7 +2185,6 @@ declare const securityObjects: ((Omit<{
2558
2185
  } | undefined;
2559
2186
  readonly sortable?: boolean | undefined;
2560
2187
  readonly inlineHelpText?: string | undefined;
2561
- readonly trackFeedHistory?: boolean | undefined;
2562
2188
  readonly caseSensitive?: boolean | undefined;
2563
2189
  readonly autonumberFormat?: string | undefined;
2564
2190
  readonly index?: boolean | undefined;
@@ -2580,7 +2206,6 @@ declare const securityObjects: ((Omit<{
2580
2206
  readonly required?: boolean | undefined;
2581
2207
  readonly multiple?: boolean | undefined;
2582
2208
  readonly dependencies?: string[] | undefined;
2583
- readonly theme?: string | undefined;
2584
2209
  readonly externalId?: boolean | undefined;
2585
2210
  readonly defaultValue?: unknown;
2586
2211
  readonly group?: string | undefined;
@@ -2588,23 +2213,7 @@ declare const securityObjects: ((Omit<{
2588
2213
  readonly system?: boolean | undefined;
2589
2214
  readonly min?: number | undefined;
2590
2215
  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;
2216
+ readonly dimensions?: number | undefined;
2608
2217
  readonly columnName?: string | undefined;
2609
2218
  readonly searchable?: boolean | undefined;
2610
2219
  readonly unique?: boolean | undefined;
@@ -2613,7 +2222,6 @@ declare const securityObjects: ((Omit<{
2613
2222
  readonly scale?: number | undefined;
2614
2223
  readonly reference?: string | undefined;
2615
2224
  readonly referenceFilters?: string[] | undefined;
2616
- readonly writeRequiresMasterRead?: boolean | undefined;
2617
2225
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2618
2226
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2619
2227
  readonly inlineTitle?: string | undefined;
@@ -2638,22 +2246,8 @@ declare const securityObjects: ((Omit<{
2638
2246
  relationshipField?: string | undefined;
2639
2247
  } | undefined;
2640
2248
  readonly language?: string | undefined;
2641
- readonly lineNumbers?: boolean | undefined;
2642
2249
  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
2250
  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
2251
  readonly currencyConfig?: {
2658
2252
  precision: number;
2659
2253
  currencyMode: "fixed" | "dynamic";
@@ -2707,29 +2301,7 @@ declare const securityObjects: ((Omit<{
2707
2301
  } | undefined;
2708
2302
  maxVersions?: number | undefined;
2709
2303
  } | undefined;
2710
- readonly maskingRule?: {
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;
2304
+ readonly trackHistory?: boolean | undefined;
2733
2305
  readonly visibleWhen?: {
2734
2306
  dialect: "cel" | "js" | "cron" | "template";
2735
2307
  source?: string | undefined;
@@ -2768,7 +2340,6 @@ declare const securityObjects: ((Omit<{
2768
2340
  } | undefined;
2769
2341
  readonly sortable?: boolean | undefined;
2770
2342
  readonly inlineHelpText?: string | undefined;
2771
- readonly trackFeedHistory?: boolean | undefined;
2772
2343
  readonly caseSensitive?: boolean | undefined;
2773
2344
  readonly autonumberFormat?: string | undefined;
2774
2345
  readonly index?: boolean | undefined;
@@ -2790,7 +2361,6 @@ declare const securityObjects: ((Omit<{
2790
2361
  readonly required?: boolean | undefined;
2791
2362
  readonly multiple?: boolean | undefined;
2792
2363
  readonly dependencies?: string[] | undefined;
2793
- readonly theme?: string | undefined;
2794
2364
  readonly externalId?: boolean | undefined;
2795
2365
  readonly defaultValue?: unknown;
2796
2366
  readonly group?: string | undefined;
@@ -2798,23 +2368,7 @@ declare const securityObjects: ((Omit<{
2798
2368
  readonly system?: boolean | undefined;
2799
2369
  readonly min?: number | undefined;
2800
2370
  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;
2371
+ readonly dimensions?: number | undefined;
2818
2372
  readonly columnName?: string | undefined;
2819
2373
  readonly searchable?: boolean | undefined;
2820
2374
  readonly unique?: boolean | undefined;
@@ -2823,7 +2377,6 @@ declare const securityObjects: ((Omit<{
2823
2377
  readonly scale?: number | undefined;
2824
2378
  readonly reference?: string | undefined;
2825
2379
  readonly referenceFilters?: string[] | undefined;
2826
- readonly writeRequiresMasterRead?: boolean | undefined;
2827
2380
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2828
2381
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2829
2382
  readonly inlineTitle?: string | undefined;
@@ -2848,22 +2401,8 @@ declare const securityObjects: ((Omit<{
2848
2401
  relationshipField?: string | undefined;
2849
2402
  } | undefined;
2850
2403
  readonly language?: string | undefined;
2851
- readonly lineNumbers?: boolean | undefined;
2852
2404
  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
2405
  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
2406
  readonly currencyConfig?: {
2868
2407
  precision: number;
2869
2408
  currencyMode: "fixed" | "dynamic";
@@ -2917,29 +2456,7 @@ declare const securityObjects: ((Omit<{
2917
2456
  } | undefined;
2918
2457
  maxVersions?: number | undefined;
2919
2458
  } | undefined;
2920
- readonly maskingRule?: {
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;
2459
+ readonly trackHistory?: boolean | undefined;
2943
2460
  readonly visibleWhen?: {
2944
2461
  dialect: "cel" | "js" | "cron" | "template";
2945
2462
  source?: string | undefined;
@@ -2978,7 +2495,6 @@ declare const securityObjects: ((Omit<{
2978
2495
  } | undefined;
2979
2496
  readonly sortable?: boolean | undefined;
2980
2497
  readonly inlineHelpText?: string | undefined;
2981
- readonly trackFeedHistory?: boolean | undefined;
2982
2498
  readonly caseSensitive?: boolean | undefined;
2983
2499
  readonly autonumberFormat?: string | undefined;
2984
2500
  readonly index?: boolean | undefined;
@@ -3000,7 +2516,6 @@ declare const securityObjects: ((Omit<{
3000
2516
  readonly required?: boolean | undefined;
3001
2517
  readonly multiple?: boolean | undefined;
3002
2518
  readonly dependencies?: string[] | undefined;
3003
- readonly theme?: string | undefined;
3004
2519
  readonly externalId?: boolean | undefined;
3005
2520
  readonly defaultValue?: unknown;
3006
2521
  readonly group?: string | undefined;
@@ -3008,23 +2523,7 @@ declare const securityObjects: ((Omit<{
3008
2523
  readonly system?: boolean | undefined;
3009
2524
  readonly min?: number | undefined;
3010
2525
  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;
2526
+ readonly dimensions?: number | undefined;
3028
2527
  readonly columnName?: string | undefined;
3029
2528
  readonly searchable?: boolean | undefined;
3030
2529
  readonly unique?: boolean | undefined;
@@ -3033,7 +2532,6 @@ declare const securityObjects: ((Omit<{
3033
2532
  readonly scale?: number | undefined;
3034
2533
  readonly reference?: string | undefined;
3035
2534
  readonly referenceFilters?: string[] | undefined;
3036
- readonly writeRequiresMasterRead?: boolean | undefined;
3037
2535
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
3038
2536
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
3039
2537
  readonly inlineTitle?: string | undefined;
@@ -3058,22 +2556,8 @@ declare const securityObjects: ((Omit<{
3058
2556
  relationshipField?: string | undefined;
3059
2557
  } | undefined;
3060
2558
  readonly language?: string | undefined;
3061
- readonly lineNumbers?: boolean | undefined;
3062
2559
  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
2560
  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
2561
  readonly currencyConfig?: {
3078
2562
  precision: number;
3079
2563
  currencyMode: "fixed" | "dynamic";
@@ -3127,29 +2611,7 @@ declare const securityObjects: ((Omit<{
3127
2611
  } | undefined;
3128
2612
  maxVersions?: number | undefined;
3129
2613
  } | undefined;
3130
- readonly maskingRule?: {
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;
2614
+ readonly trackHistory?: boolean | undefined;
3153
2615
  readonly visibleWhen?: {
3154
2616
  dialect: "cel" | "js" | "cron" | "template";
3155
2617
  source?: string | undefined;
@@ -3188,7 +2650,6 @@ declare const securityObjects: ((Omit<{
3188
2650
  } | undefined;
3189
2651
  readonly sortable?: boolean | undefined;
3190
2652
  readonly inlineHelpText?: string | undefined;
3191
- readonly trackFeedHistory?: boolean | undefined;
3192
2653
  readonly caseSensitive?: boolean | undefined;
3193
2654
  readonly autonumberFormat?: string | undefined;
3194
2655
  readonly index?: boolean | undefined;
@@ -3222,7 +2683,6 @@ declare const securityObjects: ((Omit<{
3222
2683
  multiple: boolean;
3223
2684
  unique: boolean;
3224
2685
  deleteBehavior: "set_null" | "cascade" | "restrict";
3225
- auditTrail: boolean;
3226
2686
  hidden: boolean;
3227
2687
  readonly: boolean;
3228
2688
  sortable: boolean;
@@ -3248,7 +2708,6 @@ declare const securityObjects: ((Omit<{
3248
2708
  }[] | undefined;
3249
2709
  reference?: string | undefined;
3250
2710
  referenceFilters?: string[] | undefined;
3251
- writeRequiresMasterRead?: boolean | undefined;
3252
2711
  inlineEdit?: boolean | "grid" | "form" | undefined;
3253
2712
  inlineTitle?: string | undefined;
3254
2713
  inlineColumns?: any[] | undefined;
@@ -3280,28 +2739,14 @@ declare const securityObjects: ((Omit<{
3280
2739
  relationshipField?: string | undefined;
3281
2740
  } | undefined;
3282
2741
  language?: string | undefined;
3283
- theme?: string | undefined;
3284
- lineNumbers?: boolean | undefined;
3285
2742
  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
2743
  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
2744
  currencyConfig?: {
3301
2745
  precision: number;
3302
2746
  currencyMode: "fixed" | "dynamic";
3303
2747
  defaultCurrency: string;
3304
2748
  } | undefined;
2749
+ dimensions?: number | undefined;
3305
2750
  vectorConfig?: {
3306
2751
  dimensions: number;
3307
2752
  distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
@@ -3350,46 +2795,8 @@ declare const securityObjects: ((Omit<{
3350
2795
  } | undefined;
3351
2796
  maxVersions?: number | undefined;
3352
2797
  } | undefined;
3353
- encryptionConfig?: {
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;
2798
+ trackHistory?: boolean | undefined;
3379
2799
  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
2800
  group?: string | undefined;
3394
2801
  visibleWhen?: {
3395
2802
  dialect: "cel" | "js" | "cron" | "template";
@@ -3461,7 +2868,6 @@ declare const securityObjects: ((Omit<{
3461
2868
  } | undefined;
3462
2869
  system?: boolean | undefined;
3463
2870
  inlineHelpText?: string | undefined;
3464
- trackFeedHistory?: boolean | undefined;
3465
2871
  caseSensitive?: boolean | undefined;
3466
2872
  autonumberFormat?: string | undefined;
3467
2873
  }>;
@@ -3552,12 +2958,13 @@ declare const securityObjects: ((Omit<{
3552
2958
  key: string;
3553
2959
  interval?: string | undefined;
3554
2960
  } | undefined;
3555
- cdc?: {
3556
- enabled: boolean;
3557
- events: ("insert" | "update" | "delete")[];
3558
- destination: string;
3559
- } | undefined;
3560
2961
  validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
2962
+ activityMilestones?: {
2963
+ field: string;
2964
+ value: string;
2965
+ summary: string;
2966
+ type?: string | undefined;
2967
+ }[] | undefined;
3561
2968
  displayNameField?: string | undefined;
3562
2969
  recordName?: {
3563
2970
  type: "text" | "autonumber";
@@ -3868,7 +3275,6 @@ declare const securityObjects: ((Omit<{
3868
3275
  clone: boolean;
3869
3276
  apiMethods?: ("aggregate" | "update" | "delete" | "restore" | "purge" | "search" | "create" | "import" | "list" | "get" | "upsert" | "bulk" | "history" | "export")[] | undefined;
3870
3277
  } | undefined;
3871
- recordTypes?: string[] | undefined;
3872
3278
  sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
3873
3279
  publicSharing?: {
3874
3280
  enabled: boolean;
@@ -3925,6 +3331,8 @@ declare const securityObjects: ((Omit<{
3925
3331
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
3926
3332
  confirmText?: string | undefined;
3927
3333
  successMessage?: string | undefined;
3334
+ errorMessage?: string | undefined;
3335
+ undoable?: boolean | undefined;
3928
3336
  resultDialog?: {
3929
3337
  title?: string | undefined;
3930
3338
  description?: string | undefined;
@@ -4154,7 +3562,6 @@ declare const securityObjects: ((Omit<{
4154
3562
  readonly required?: boolean | undefined;
4155
3563
  readonly multiple?: boolean | undefined;
4156
3564
  readonly dependencies?: string[] | undefined;
4157
- readonly theme?: string | undefined;
4158
3565
  readonly externalId?: boolean | undefined;
4159
3566
  readonly defaultValue?: unknown;
4160
3567
  readonly group?: string | undefined;
@@ -4162,23 +3569,7 @@ declare const securityObjects: ((Omit<{
4162
3569
  readonly system?: boolean | undefined;
4163
3570
  readonly min?: number | undefined;
4164
3571
  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;
3572
+ readonly dimensions?: number | undefined;
4182
3573
  readonly columnName?: string | undefined;
4183
3574
  readonly searchable?: boolean | undefined;
4184
3575
  readonly unique?: boolean | undefined;
@@ -4187,7 +3578,6 @@ declare const securityObjects: ((Omit<{
4187
3578
  readonly scale?: number | undefined;
4188
3579
  readonly reference?: string | undefined;
4189
3580
  readonly referenceFilters?: string[] | undefined;
4190
- readonly writeRequiresMasterRead?: boolean | undefined;
4191
3581
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
4192
3582
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
4193
3583
  readonly inlineTitle?: string | undefined;
@@ -4212,22 +3602,8 @@ declare const securityObjects: ((Omit<{
4212
3602
  relationshipField?: string | undefined;
4213
3603
  } | undefined;
4214
3604
  readonly language?: string | undefined;
4215
- readonly lineNumbers?: boolean | undefined;
4216
3605
  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
3606
  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
3607
  readonly currencyConfig?: {
4232
3608
  precision: number;
4233
3609
  currencyMode: "fixed" | "dynamic";
@@ -4281,29 +3657,7 @@ declare const securityObjects: ((Omit<{
4281
3657
  } | undefined;
4282
3658
  maxVersions?: number | undefined;
4283
3659
  } | undefined;
4284
- readonly maskingRule?: {
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;
3660
+ readonly trackHistory?: boolean | undefined;
4307
3661
  readonly visibleWhen?: {
4308
3662
  dialect: "cel" | "js" | "cron" | "template";
4309
3663
  source?: string | undefined;
@@ -4342,7 +3696,6 @@ declare const securityObjects: ((Omit<{
4342
3696
  } | undefined;
4343
3697
  readonly sortable?: boolean | undefined;
4344
3698
  readonly inlineHelpText?: string | undefined;
4345
- readonly trackFeedHistory?: boolean | undefined;
4346
3699
  readonly caseSensitive?: boolean | undefined;
4347
3700
  readonly autonumberFormat?: string | undefined;
4348
3701
  readonly index?: boolean | undefined;
@@ -4364,7 +3717,6 @@ declare const securityObjects: ((Omit<{
4364
3717
  readonly required?: boolean | undefined;
4365
3718
  readonly multiple?: boolean | undefined;
4366
3719
  readonly dependencies?: string[] | undefined;
4367
- readonly theme?: string | undefined;
4368
3720
  readonly externalId?: boolean | undefined;
4369
3721
  readonly defaultValue?: unknown;
4370
3722
  readonly group?: string | undefined;
@@ -4372,23 +3724,7 @@ declare const securityObjects: ((Omit<{
4372
3724
  readonly system?: boolean | undefined;
4373
3725
  readonly min?: number | undefined;
4374
3726
  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;
3727
+ readonly dimensions?: number | undefined;
4392
3728
  readonly columnName?: string | undefined;
4393
3729
  readonly searchable?: boolean | undefined;
4394
3730
  readonly unique?: boolean | undefined;
@@ -4397,7 +3733,6 @@ declare const securityObjects: ((Omit<{
4397
3733
  readonly scale?: number | undefined;
4398
3734
  readonly reference?: string | undefined;
4399
3735
  readonly referenceFilters?: string[] | undefined;
4400
- readonly writeRequiresMasterRead?: boolean | undefined;
4401
3736
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
4402
3737
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
4403
3738
  readonly inlineTitle?: string | undefined;
@@ -4422,22 +3757,8 @@ declare const securityObjects: ((Omit<{
4422
3757
  relationshipField?: string | undefined;
4423
3758
  } | undefined;
4424
3759
  readonly language?: string | undefined;
4425
- readonly lineNumbers?: boolean | undefined;
4426
3760
  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
3761
  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
3762
  readonly currencyConfig?: {
4442
3763
  precision: number;
4443
3764
  currencyMode: "fixed" | "dynamic";
@@ -4491,29 +3812,7 @@ declare const securityObjects: ((Omit<{
4491
3812
  } | undefined;
4492
3813
  maxVersions?: number | undefined;
4493
3814
  } | undefined;
4494
- readonly maskingRule?: {
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;
3815
+ readonly trackHistory?: boolean | undefined;
4517
3816
  readonly visibleWhen?: {
4518
3817
  dialect: "cel" | "js" | "cron" | "template";
4519
3818
  source?: string | undefined;
@@ -4552,7 +3851,6 @@ declare const securityObjects: ((Omit<{
4552
3851
  } | undefined;
4553
3852
  readonly sortable?: boolean | undefined;
4554
3853
  readonly inlineHelpText?: string | undefined;
4555
- readonly trackFeedHistory?: boolean | undefined;
4556
3854
  readonly caseSensitive?: boolean | undefined;
4557
3855
  readonly autonumberFormat?: string | undefined;
4558
3856
  readonly index?: boolean | undefined;
@@ -4574,7 +3872,6 @@ declare const securityObjects: ((Omit<{
4574
3872
  readonly required?: boolean | undefined;
4575
3873
  readonly multiple?: boolean | undefined;
4576
3874
  readonly dependencies?: string[] | undefined;
4577
- readonly theme?: string | undefined;
4578
3875
  readonly externalId?: boolean | undefined;
4579
3876
  readonly defaultValue?: unknown;
4580
3877
  readonly group?: string | undefined;
@@ -4582,23 +3879,7 @@ declare const securityObjects: ((Omit<{
4582
3879
  readonly system?: boolean | undefined;
4583
3880
  readonly min?: number | undefined;
4584
3881
  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;
3882
+ readonly dimensions?: number | undefined;
4602
3883
  readonly columnName?: string | undefined;
4603
3884
  readonly searchable?: boolean | undefined;
4604
3885
  readonly unique?: boolean | undefined;
@@ -4607,7 +3888,6 @@ declare const securityObjects: ((Omit<{
4607
3888
  readonly scale?: number | undefined;
4608
3889
  readonly reference?: string | undefined;
4609
3890
  readonly referenceFilters?: string[] | undefined;
4610
- readonly writeRequiresMasterRead?: boolean | undefined;
4611
3891
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
4612
3892
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
4613
3893
  readonly inlineTitle?: string | undefined;
@@ -4632,22 +3912,8 @@ declare const securityObjects: ((Omit<{
4632
3912
  relationshipField?: string | undefined;
4633
3913
  } | undefined;
4634
3914
  readonly language?: string | undefined;
4635
- readonly lineNumbers?: boolean | undefined;
4636
3915
  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
3916
  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
3917
  readonly currencyConfig?: {
4652
3918
  precision: number;
4653
3919
  currencyMode: "fixed" | "dynamic";
@@ -4701,29 +3967,7 @@ declare const securityObjects: ((Omit<{
4701
3967
  } | undefined;
4702
3968
  maxVersions?: number | undefined;
4703
3969
  } | undefined;
4704
- readonly maskingRule?: {
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;
3970
+ readonly trackHistory?: boolean | undefined;
4727
3971
  readonly visibleWhen?: {
4728
3972
  dialect: "cel" | "js" | "cron" | "template";
4729
3973
  source?: string | undefined;
@@ -4762,7 +4006,6 @@ declare const securityObjects: ((Omit<{
4762
4006
  } | undefined;
4763
4007
  readonly sortable?: boolean | undefined;
4764
4008
  readonly inlineHelpText?: string | undefined;
4765
- readonly trackFeedHistory?: boolean | undefined;
4766
4009
  readonly caseSensitive?: boolean | undefined;
4767
4010
  readonly autonumberFormat?: string | undefined;
4768
4011
  readonly index?: boolean | undefined;
@@ -4784,7 +4027,6 @@ declare const securityObjects: ((Omit<{
4784
4027
  readonly required?: boolean | undefined;
4785
4028
  readonly multiple?: boolean | undefined;
4786
4029
  readonly dependencies?: string[] | undefined;
4787
- readonly theme?: string | undefined;
4788
4030
  readonly externalId?: boolean | undefined;
4789
4031
  readonly defaultValue?: unknown;
4790
4032
  readonly group?: string | undefined;
@@ -4792,23 +4034,7 @@ declare const securityObjects: ((Omit<{
4792
4034
  readonly system?: boolean | undefined;
4793
4035
  readonly min?: number | undefined;
4794
4036
  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;
4037
+ readonly dimensions?: number | undefined;
4812
4038
  readonly columnName?: string | undefined;
4813
4039
  readonly searchable?: boolean | undefined;
4814
4040
  readonly unique?: boolean | undefined;
@@ -4817,7 +4043,6 @@ declare const securityObjects: ((Omit<{
4817
4043
  readonly scale?: number | undefined;
4818
4044
  readonly reference?: string | undefined;
4819
4045
  readonly referenceFilters?: string[] | undefined;
4820
- readonly writeRequiresMasterRead?: boolean | undefined;
4821
4046
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
4822
4047
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
4823
4048
  readonly inlineTitle?: string | undefined;
@@ -4842,22 +4067,8 @@ declare const securityObjects: ((Omit<{
4842
4067
  relationshipField?: string | undefined;
4843
4068
  } | undefined;
4844
4069
  readonly language?: string | undefined;
4845
- readonly lineNumbers?: boolean | undefined;
4846
4070
  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
4071
  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
4072
  readonly currencyConfig?: {
4862
4073
  precision: number;
4863
4074
  currencyMode: "fixed" | "dynamic";
@@ -4911,29 +4122,7 @@ declare const securityObjects: ((Omit<{
4911
4122
  } | undefined;
4912
4123
  maxVersions?: number | undefined;
4913
4124
  } | undefined;
4914
- readonly maskingRule?: {
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;
4125
+ readonly trackHistory?: boolean | undefined;
4937
4126
  readonly visibleWhen?: {
4938
4127
  dialect: "cel" | "js" | "cron" | "template";
4939
4128
  source?: string | undefined;
@@ -4972,7 +4161,6 @@ declare const securityObjects: ((Omit<{
4972
4161
  } | undefined;
4973
4162
  readonly sortable?: boolean | undefined;
4974
4163
  readonly inlineHelpText?: string | undefined;
4975
- readonly trackFeedHistory?: boolean | undefined;
4976
4164
  readonly caseSensitive?: boolean | undefined;
4977
4165
  readonly autonumberFormat?: string | undefined;
4978
4166
  readonly index?: boolean | undefined;
@@ -4994,7 +4182,6 @@ declare const securityObjects: ((Omit<{
4994
4182
  readonly required?: boolean | undefined;
4995
4183
  readonly multiple?: boolean | undefined;
4996
4184
  readonly dependencies?: string[] | undefined;
4997
- readonly theme?: string | undefined;
4998
4185
  readonly externalId?: boolean | undefined;
4999
4186
  readonly defaultValue?: unknown;
5000
4187
  readonly group?: string | undefined;
@@ -5002,23 +4189,7 @@ declare const securityObjects: ((Omit<{
5002
4189
  readonly system?: boolean | undefined;
5003
4190
  readonly min?: number | undefined;
5004
4191
  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;
4192
+ readonly dimensions?: number | undefined;
5022
4193
  readonly columnName?: string | undefined;
5023
4194
  readonly searchable?: boolean | undefined;
5024
4195
  readonly unique?: boolean | undefined;
@@ -5027,7 +4198,6 @@ declare const securityObjects: ((Omit<{
5027
4198
  readonly scale?: number | undefined;
5028
4199
  readonly reference?: string | undefined;
5029
4200
  readonly referenceFilters?: string[] | undefined;
5030
- readonly writeRequiresMasterRead?: boolean | undefined;
5031
4201
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
5032
4202
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
5033
4203
  readonly inlineTitle?: string | undefined;
@@ -5052,22 +4222,8 @@ declare const securityObjects: ((Omit<{
5052
4222
  relationshipField?: string | undefined;
5053
4223
  } | undefined;
5054
4224
  readonly language?: string | undefined;
5055
- readonly lineNumbers?: boolean | undefined;
5056
4225
  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
4226
  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
4227
  readonly currencyConfig?: {
5072
4228
  precision: number;
5073
4229
  currencyMode: "fixed" | "dynamic";
@@ -5121,29 +4277,7 @@ declare const securityObjects: ((Omit<{
5121
4277
  } | undefined;
5122
4278
  maxVersions?: number | undefined;
5123
4279
  } | undefined;
5124
- readonly maskingRule?: {
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;
4280
+ readonly trackHistory?: boolean | undefined;
5147
4281
  readonly visibleWhen?: {
5148
4282
  dialect: "cel" | "js" | "cron" | "template";
5149
4283
  source?: string | undefined;
@@ -5182,7 +4316,6 @@ declare const securityObjects: ((Omit<{
5182
4316
  } | undefined;
5183
4317
  readonly sortable?: boolean | undefined;
5184
4318
  readonly inlineHelpText?: string | undefined;
5185
- readonly trackFeedHistory?: boolean | undefined;
5186
4319
  readonly caseSensitive?: boolean | undefined;
5187
4320
  readonly autonumberFormat?: string | undefined;
5188
4321
  readonly index?: boolean | undefined;
@@ -5204,7 +4337,6 @@ declare const securityObjects: ((Omit<{
5204
4337
  readonly required?: boolean | undefined;
5205
4338
  readonly multiple?: boolean | undefined;
5206
4339
  readonly dependencies?: string[] | undefined;
5207
- readonly theme?: string | undefined;
5208
4340
  readonly externalId?: boolean | undefined;
5209
4341
  readonly defaultValue?: unknown;
5210
4342
  readonly group?: string | undefined;
@@ -5212,23 +4344,7 @@ declare const securityObjects: ((Omit<{
5212
4344
  readonly system?: boolean | undefined;
5213
4345
  readonly min?: number | undefined;
5214
4346
  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;
4347
+ readonly dimensions?: number | undefined;
5232
4348
  readonly columnName?: string | undefined;
5233
4349
  readonly searchable?: boolean | undefined;
5234
4350
  readonly unique?: boolean | undefined;
@@ -5237,7 +4353,6 @@ declare const securityObjects: ((Omit<{
5237
4353
  readonly scale?: number | undefined;
5238
4354
  readonly reference?: string | undefined;
5239
4355
  readonly referenceFilters?: string[] | undefined;
5240
- readonly writeRequiresMasterRead?: boolean | undefined;
5241
4356
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
5242
4357
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
5243
4358
  readonly inlineTitle?: string | undefined;
@@ -5262,22 +4377,8 @@ declare const securityObjects: ((Omit<{
5262
4377
  relationshipField?: string | undefined;
5263
4378
  } | undefined;
5264
4379
  readonly language?: string | undefined;
5265
- readonly lineNumbers?: boolean | undefined;
5266
4380
  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
4381
  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
4382
  readonly currencyConfig?: {
5282
4383
  precision: number;
5283
4384
  currencyMode: "fixed" | "dynamic";
@@ -5331,29 +4432,7 @@ declare const securityObjects: ((Omit<{
5331
4432
  } | undefined;
5332
4433
  maxVersions?: number | undefined;
5333
4434
  } | undefined;
5334
- readonly maskingRule?: {
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;
4435
+ readonly trackHistory?: boolean | undefined;
5357
4436
  readonly visibleWhen?: {
5358
4437
  dialect: "cel" | "js" | "cron" | "template";
5359
4438
  source?: string | undefined;
@@ -5392,7 +4471,6 @@ declare const securityObjects: ((Omit<{
5392
4471
  } | undefined;
5393
4472
  readonly sortable?: boolean | undefined;
5394
4473
  readonly inlineHelpText?: string | undefined;
5395
- readonly trackFeedHistory?: boolean | undefined;
5396
4474
  readonly caseSensitive?: boolean | undefined;
5397
4475
  readonly autonumberFormat?: string | undefined;
5398
4476
  readonly index?: boolean | undefined;
@@ -5414,7 +4492,6 @@ declare const securityObjects: ((Omit<{
5414
4492
  readonly required?: boolean | undefined;
5415
4493
  readonly multiple?: boolean | undefined;
5416
4494
  readonly dependencies?: string[] | undefined;
5417
- readonly theme?: string | undefined;
5418
4495
  readonly externalId?: boolean | undefined;
5419
4496
  readonly defaultValue?: unknown;
5420
4497
  readonly group?: string | undefined;
@@ -5422,23 +4499,7 @@ declare const securityObjects: ((Omit<{
5422
4499
  readonly system?: boolean | undefined;
5423
4500
  readonly min?: number | undefined;
5424
4501
  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;
4502
+ readonly dimensions?: number | undefined;
5442
4503
  readonly columnName?: string | undefined;
5443
4504
  readonly searchable?: boolean | undefined;
5444
4505
  readonly unique?: boolean | undefined;
@@ -5447,7 +4508,6 @@ declare const securityObjects: ((Omit<{
5447
4508
  readonly scale?: number | undefined;
5448
4509
  readonly reference?: string | undefined;
5449
4510
  readonly referenceFilters?: string[] | undefined;
5450
- readonly writeRequiresMasterRead?: boolean | undefined;
5451
4511
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
5452
4512
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
5453
4513
  readonly inlineTitle?: string | undefined;
@@ -5472,22 +4532,8 @@ declare const securityObjects: ((Omit<{
5472
4532
  relationshipField?: string | undefined;
5473
4533
  } | undefined;
5474
4534
  readonly language?: string | undefined;
5475
- readonly lineNumbers?: boolean | undefined;
5476
4535
  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
4536
  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
4537
  readonly currencyConfig?: {
5492
4538
  precision: number;
5493
4539
  currencyMode: "fixed" | "dynamic";
@@ -5541,29 +4587,7 @@ declare const securityObjects: ((Omit<{
5541
4587
  } | undefined;
5542
4588
  maxVersions?: number | undefined;
5543
4589
  } | undefined;
5544
- readonly maskingRule?: {
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;
4590
+ readonly trackHistory?: boolean | undefined;
5567
4591
  readonly visibleWhen?: {
5568
4592
  dialect: "cel" | "js" | "cron" | "template";
5569
4593
  source?: string | undefined;
@@ -5602,7 +4626,6 @@ declare const securityObjects: ((Omit<{
5602
4626
  } | undefined;
5603
4627
  readonly sortable?: boolean | undefined;
5604
4628
  readonly inlineHelpText?: string | undefined;
5605
- readonly trackFeedHistory?: boolean | undefined;
5606
4629
  readonly caseSensitive?: boolean | undefined;
5607
4630
  readonly autonumberFormat?: string | undefined;
5608
4631
  readonly index?: boolean | undefined;
@@ -5624,7 +4647,6 @@ declare const securityObjects: ((Omit<{
5624
4647
  readonly required?: boolean | undefined;
5625
4648
  readonly multiple?: boolean | undefined;
5626
4649
  readonly dependencies?: string[] | undefined;
5627
- readonly theme?: string | undefined;
5628
4650
  readonly externalId?: boolean | undefined;
5629
4651
  readonly defaultValue?: unknown;
5630
4652
  readonly group?: string | undefined;
@@ -5632,23 +4654,7 @@ declare const securityObjects: ((Omit<{
5632
4654
  readonly system?: boolean | undefined;
5633
4655
  readonly min?: number | undefined;
5634
4656
  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;
4657
+ readonly dimensions?: number | undefined;
5652
4658
  readonly columnName?: string | undefined;
5653
4659
  readonly searchable?: boolean | undefined;
5654
4660
  readonly unique?: boolean | undefined;
@@ -5657,7 +4663,6 @@ declare const securityObjects: ((Omit<{
5657
4663
  readonly scale?: number | undefined;
5658
4664
  readonly reference?: string | undefined;
5659
4665
  readonly referenceFilters?: string[] | undefined;
5660
- readonly writeRequiresMasterRead?: boolean | undefined;
5661
4666
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
5662
4667
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
5663
4668
  readonly inlineTitle?: string | undefined;
@@ -5682,22 +4687,8 @@ declare const securityObjects: ((Omit<{
5682
4687
  relationshipField?: string | undefined;
5683
4688
  } | undefined;
5684
4689
  readonly language?: string | undefined;
5685
- readonly lineNumbers?: boolean | undefined;
5686
4690
  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
4691
  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
4692
  readonly currencyConfig?: {
5702
4693
  precision: number;
5703
4694
  currencyMode: "fixed" | "dynamic";
@@ -5751,29 +4742,7 @@ declare const securityObjects: ((Omit<{
5751
4742
  } | undefined;
5752
4743
  maxVersions?: number | undefined;
5753
4744
  } | undefined;
5754
- readonly maskingRule?: {
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;
4745
+ readonly trackHistory?: boolean | undefined;
5777
4746
  readonly visibleWhen?: {
5778
4747
  dialect: "cel" | "js" | "cron" | "template";
5779
4748
  source?: string | undefined;
@@ -5812,7 +4781,6 @@ declare const securityObjects: ((Omit<{
5812
4781
  } | undefined;
5813
4782
  readonly sortable?: boolean | undefined;
5814
4783
  readonly inlineHelpText?: string | undefined;
5815
- readonly trackFeedHistory?: boolean | undefined;
5816
4784
  readonly caseSensitive?: boolean | undefined;
5817
4785
  readonly autonumberFormat?: string | undefined;
5818
4786
  readonly index?: boolean | undefined;
@@ -5834,7 +4802,6 @@ declare const securityObjects: ((Omit<{
5834
4802
  readonly required?: boolean | undefined;
5835
4803
  readonly multiple?: boolean | undefined;
5836
4804
  readonly dependencies?: string[] | undefined;
5837
- readonly theme?: string | undefined;
5838
4805
  readonly externalId?: boolean | undefined;
5839
4806
  readonly defaultValue?: unknown;
5840
4807
  readonly group?: string | undefined;
@@ -5842,23 +4809,7 @@ declare const securityObjects: ((Omit<{
5842
4809
  readonly system?: boolean | undefined;
5843
4810
  readonly min?: number | undefined;
5844
4811
  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;
4812
+ readonly dimensions?: number | undefined;
5862
4813
  readonly columnName?: string | undefined;
5863
4814
  readonly searchable?: boolean | undefined;
5864
4815
  readonly unique?: boolean | undefined;
@@ -5867,7 +4818,6 @@ declare const securityObjects: ((Omit<{
5867
4818
  readonly scale?: number | undefined;
5868
4819
  readonly reference?: string | undefined;
5869
4820
  readonly referenceFilters?: string[] | undefined;
5870
- readonly writeRequiresMasterRead?: boolean | undefined;
5871
4821
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
5872
4822
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
5873
4823
  readonly inlineTitle?: string | undefined;
@@ -5892,22 +4842,8 @@ declare const securityObjects: ((Omit<{
5892
4842
  relationshipField?: string | undefined;
5893
4843
  } | undefined;
5894
4844
  readonly language?: string | undefined;
5895
- readonly lineNumbers?: boolean | undefined;
5896
4845
  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
4846
  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
4847
  readonly currencyConfig?: {
5912
4848
  precision: number;
5913
4849
  currencyMode: "fixed" | "dynamic";
@@ -5961,29 +4897,7 @@ declare const securityObjects: ((Omit<{
5961
4897
  } | undefined;
5962
4898
  maxVersions?: number | undefined;
5963
4899
  } | undefined;
5964
- readonly maskingRule?: {
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;
4900
+ readonly trackHistory?: boolean | undefined;
5987
4901
  readonly visibleWhen?: {
5988
4902
  dialect: "cel" | "js" | "cron" | "template";
5989
4903
  source?: string | undefined;
@@ -6022,7 +4936,6 @@ declare const securityObjects: ((Omit<{
6022
4936
  } | undefined;
6023
4937
  readonly sortable?: boolean | undefined;
6024
4938
  readonly inlineHelpText?: string | undefined;
6025
- readonly trackFeedHistory?: boolean | undefined;
6026
4939
  readonly caseSensitive?: boolean | undefined;
6027
4940
  readonly autonumberFormat?: string | undefined;
6028
4941
  readonly index?: boolean | undefined;
@@ -6044,7 +4957,6 @@ declare const securityObjects: ((Omit<{
6044
4957
  readonly required?: boolean | undefined;
6045
4958
  readonly multiple?: boolean | undefined;
6046
4959
  readonly dependencies?: string[] | undefined;
6047
- readonly theme?: string | undefined;
6048
4960
  readonly externalId?: boolean | undefined;
6049
4961
  readonly defaultValue?: unknown;
6050
4962
  readonly group?: string | undefined;
@@ -6052,23 +4964,7 @@ declare const securityObjects: ((Omit<{
6052
4964
  readonly system?: boolean | undefined;
6053
4965
  readonly min?: number | undefined;
6054
4966
  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;
4967
+ readonly dimensions?: number | undefined;
6072
4968
  readonly columnName?: string | undefined;
6073
4969
  readonly searchable?: boolean | undefined;
6074
4970
  readonly unique?: boolean | undefined;
@@ -6077,7 +4973,6 @@ declare const securityObjects: ((Omit<{
6077
4973
  readonly scale?: number | undefined;
6078
4974
  readonly reference?: string | undefined;
6079
4975
  readonly referenceFilters?: string[] | undefined;
6080
- readonly writeRequiresMasterRead?: boolean | undefined;
6081
4976
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
6082
4977
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
6083
4978
  readonly inlineTitle?: string | undefined;
@@ -6102,22 +4997,8 @@ declare const securityObjects: ((Omit<{
6102
4997
  relationshipField?: string | undefined;
6103
4998
  } | undefined;
6104
4999
  readonly language?: string | undefined;
6105
- readonly lineNumbers?: boolean | undefined;
6106
5000
  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
5001
  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
5002
  readonly currencyConfig?: {
6122
5003
  precision: number;
6123
5004
  currencyMode: "fixed" | "dynamic";
@@ -6171,29 +5052,7 @@ declare const securityObjects: ((Omit<{
6171
5052
  } | undefined;
6172
5053
  maxVersions?: number | undefined;
6173
5054
  } | undefined;
6174
- readonly maskingRule?: {
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;
5055
+ readonly trackHistory?: boolean | undefined;
6197
5056
  readonly visibleWhen?: {
6198
5057
  dialect: "cel" | "js" | "cron" | "template";
6199
5058
  source?: string | undefined;
@@ -6232,7 +5091,6 @@ declare const securityObjects: ((Omit<{
6232
5091
  } | undefined;
6233
5092
  readonly sortable?: boolean | undefined;
6234
5093
  readonly inlineHelpText?: string | undefined;
6235
- readonly trackFeedHistory?: boolean | undefined;
6236
5094
  readonly caseSensitive?: boolean | undefined;
6237
5095
  readonly autonumberFormat?: string | undefined;
6238
5096
  readonly index?: boolean | undefined;
@@ -6254,7 +5112,6 @@ declare const securityObjects: ((Omit<{
6254
5112
  readonly required?: boolean | undefined;
6255
5113
  readonly multiple?: boolean | undefined;
6256
5114
  readonly dependencies?: string[] | undefined;
6257
- readonly theme?: string | undefined;
6258
5115
  readonly externalId?: boolean | undefined;
6259
5116
  readonly defaultValue?: unknown;
6260
5117
  readonly group?: string | undefined;
@@ -6262,23 +5119,7 @@ declare const securityObjects: ((Omit<{
6262
5119
  readonly system?: boolean | undefined;
6263
5120
  readonly min?: number | undefined;
6264
5121
  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;
5122
+ readonly dimensions?: number | undefined;
6282
5123
  readonly columnName?: string | undefined;
6283
5124
  readonly searchable?: boolean | undefined;
6284
5125
  readonly unique?: boolean | undefined;
@@ -6287,7 +5128,6 @@ declare const securityObjects: ((Omit<{
6287
5128
  readonly scale?: number | undefined;
6288
5129
  readonly reference?: string | undefined;
6289
5130
  readonly referenceFilters?: string[] | undefined;
6290
- readonly writeRequiresMasterRead?: boolean | undefined;
6291
5131
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
6292
5132
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
6293
5133
  readonly inlineTitle?: string | undefined;
@@ -6312,22 +5152,8 @@ declare const securityObjects: ((Omit<{
6312
5152
  relationshipField?: string | undefined;
6313
5153
  } | undefined;
6314
5154
  readonly language?: string | undefined;
6315
- readonly lineNumbers?: boolean | undefined;
6316
5155
  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
5156
  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
5157
  readonly currencyConfig?: {
6332
5158
  precision: number;
6333
5159
  currencyMode: "fixed" | "dynamic";
@@ -6381,29 +5207,7 @@ declare const securityObjects: ((Omit<{
6381
5207
  } | undefined;
6382
5208
  maxVersions?: number | undefined;
6383
5209
  } | undefined;
6384
- readonly maskingRule?: {
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;
5210
+ readonly trackHistory?: boolean | undefined;
6407
5211
  readonly visibleWhen?: {
6408
5212
  dialect: "cel" | "js" | "cron" | "template";
6409
5213
  source?: string | undefined;
@@ -6442,7 +5246,6 @@ declare const securityObjects: ((Omit<{
6442
5246
  } | undefined;
6443
5247
  readonly sortable?: boolean | undefined;
6444
5248
  readonly inlineHelpText?: string | undefined;
6445
- readonly trackFeedHistory?: boolean | undefined;
6446
5249
  readonly caseSensitive?: boolean | undefined;
6447
5250
  readonly autonumberFormat?: string | undefined;
6448
5251
  readonly index?: boolean | undefined;
@@ -6464,7 +5267,6 @@ declare const securityObjects: ((Omit<{
6464
5267
  readonly required?: boolean | undefined;
6465
5268
  readonly multiple?: boolean | undefined;
6466
5269
  readonly dependencies?: string[] | undefined;
6467
- readonly theme?: string | undefined;
6468
5270
  readonly externalId?: boolean | undefined;
6469
5271
  readonly defaultValue?: unknown;
6470
5272
  readonly group?: string | undefined;
@@ -6472,23 +5274,7 @@ declare const securityObjects: ((Omit<{
6472
5274
  readonly system?: boolean | undefined;
6473
5275
  readonly min?: number | undefined;
6474
5276
  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;
5277
+ readonly dimensions?: number | undefined;
6492
5278
  readonly columnName?: string | undefined;
6493
5279
  readonly searchable?: boolean | undefined;
6494
5280
  readonly unique?: boolean | undefined;
@@ -6497,7 +5283,6 @@ declare const securityObjects: ((Omit<{
6497
5283
  readonly scale?: number | undefined;
6498
5284
  readonly reference?: string | undefined;
6499
5285
  readonly referenceFilters?: string[] | undefined;
6500
- readonly writeRequiresMasterRead?: boolean | undefined;
6501
5286
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
6502
5287
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
6503
5288
  readonly inlineTitle?: string | undefined;
@@ -6522,22 +5307,8 @@ declare const securityObjects: ((Omit<{
6522
5307
  relationshipField?: string | undefined;
6523
5308
  } | undefined;
6524
5309
  readonly language?: string | undefined;
6525
- readonly lineNumbers?: boolean | undefined;
6526
5310
  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
5311
  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
5312
  readonly currencyConfig?: {
6542
5313
  precision: number;
6543
5314
  currencyMode: "fixed" | "dynamic";
@@ -6591,29 +5362,7 @@ declare const securityObjects: ((Omit<{
6591
5362
  } | undefined;
6592
5363
  maxVersions?: number | undefined;
6593
5364
  } | undefined;
6594
- readonly maskingRule?: {
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;
5365
+ readonly trackHistory?: boolean | undefined;
6617
5366
  readonly visibleWhen?: {
6618
5367
  dialect: "cel" | "js" | "cron" | "template";
6619
5368
  source?: string | undefined;
@@ -6652,7 +5401,6 @@ declare const securityObjects: ((Omit<{
6652
5401
  } | undefined;
6653
5402
  readonly sortable?: boolean | undefined;
6654
5403
  readonly inlineHelpText?: string | undefined;
6655
- readonly trackFeedHistory?: boolean | undefined;
6656
5404
  readonly caseSensitive?: boolean | undefined;
6657
5405
  readonly autonumberFormat?: string | undefined;
6658
5406
  readonly index?: boolean | undefined;
@@ -6686,7 +5434,6 @@ declare const securityObjects: ((Omit<{
6686
5434
  multiple: boolean;
6687
5435
  unique: boolean;
6688
5436
  deleteBehavior: "set_null" | "cascade" | "restrict";
6689
- auditTrail: boolean;
6690
5437
  hidden: boolean;
6691
5438
  readonly: boolean;
6692
5439
  sortable: boolean;
@@ -6712,7 +5459,6 @@ declare const securityObjects: ((Omit<{
6712
5459
  }[] | undefined;
6713
5460
  reference?: string | undefined;
6714
5461
  referenceFilters?: string[] | undefined;
6715
- writeRequiresMasterRead?: boolean | undefined;
6716
5462
  inlineEdit?: boolean | "grid" | "form" | undefined;
6717
5463
  inlineTitle?: string | undefined;
6718
5464
  inlineColumns?: any[] | undefined;
@@ -6744,28 +5490,14 @@ declare const securityObjects: ((Omit<{
6744
5490
  relationshipField?: string | undefined;
6745
5491
  } | undefined;
6746
5492
  language?: string | undefined;
6747
- theme?: string | undefined;
6748
- lineNumbers?: boolean | undefined;
6749
5493
  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
5494
  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
5495
  currencyConfig?: {
6765
5496
  precision: number;
6766
5497
  currencyMode: "fixed" | "dynamic";
6767
5498
  defaultCurrency: string;
6768
5499
  } | undefined;
5500
+ dimensions?: number | undefined;
6769
5501
  vectorConfig?: {
6770
5502
  dimensions: number;
6771
5503
  distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
@@ -6814,46 +5546,8 @@ declare const securityObjects: ((Omit<{
6814
5546
  } | undefined;
6815
5547
  maxVersions?: number | undefined;
6816
5548
  } | undefined;
6817
- encryptionConfig?: {
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;
5549
+ trackHistory?: boolean | undefined;
6843
5550
  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
5551
  group?: string | undefined;
6858
5552
  visibleWhen?: {
6859
5553
  dialect: "cel" | "js" | "cron" | "template";
@@ -6925,7 +5619,6 @@ declare const securityObjects: ((Omit<{
6925
5619
  } | undefined;
6926
5620
  system?: boolean | undefined;
6927
5621
  inlineHelpText?: string | undefined;
6928
- trackFeedHistory?: boolean | undefined;
6929
5622
  caseSensitive?: boolean | undefined;
6930
5623
  autonumberFormat?: string | undefined;
6931
5624
  }>;
@@ -7016,12 +5709,13 @@ declare const securityObjects: ((Omit<{
7016
5709
  key: string;
7017
5710
  interval?: string | undefined;
7018
5711
  } | undefined;
7019
- cdc?: {
7020
- enabled: boolean;
7021
- events: ("insert" | "update" | "delete")[];
7022
- destination: string;
7023
- } | undefined;
7024
5712
  validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
5713
+ activityMilestones?: {
5714
+ field: string;
5715
+ value: string;
5716
+ summary: string;
5717
+ type?: string | undefined;
5718
+ }[] | undefined;
7025
5719
  displayNameField?: string | undefined;
7026
5720
  recordName?: {
7027
5721
  type: "text" | "autonumber";
@@ -7332,7 +6026,6 @@ declare const securityObjects: ((Omit<{
7332
6026
  clone: boolean;
7333
6027
  apiMethods?: ("aggregate" | "update" | "delete" | "restore" | "purge" | "search" | "create" | "import" | "list" | "get" | "upsert" | "bulk" | "history" | "export")[] | undefined;
7334
6028
  } | undefined;
7335
- recordTypes?: string[] | undefined;
7336
6029
  sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
7337
6030
  publicSharing?: {
7338
6031
  enabled: boolean;
@@ -7389,6 +6082,8 @@ declare const securityObjects: ((Omit<{
7389
6082
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
7390
6083
  confirmText?: string | undefined;
7391
6084
  successMessage?: string | undefined;
6085
+ errorMessage?: string | undefined;
6086
+ undoable?: boolean | undefined;
7392
6087
  resultDialog?: {
7393
6088
  title?: string | undefined;
7394
6089
  description?: string | undefined;
@@ -7481,7 +6176,6 @@ declare const securityObjects: ((Omit<{
7481
6176
  readonly required?: boolean | undefined;
7482
6177
  readonly multiple?: boolean | undefined;
7483
6178
  readonly dependencies?: string[] | undefined;
7484
- readonly theme?: string | undefined;
7485
6179
  readonly externalId?: boolean | undefined;
7486
6180
  readonly defaultValue?: unknown;
7487
6181
  readonly group?: string | undefined;
@@ -7489,23 +6183,7 @@ declare const securityObjects: ((Omit<{
7489
6183
  readonly system?: boolean | undefined;
7490
6184
  readonly min?: number | undefined;
7491
6185
  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;
6186
+ readonly dimensions?: number | undefined;
7509
6187
  readonly columnName?: string | undefined;
7510
6188
  readonly searchable?: boolean | undefined;
7511
6189
  readonly unique?: boolean | undefined;
@@ -7514,7 +6192,6 @@ declare const securityObjects: ((Omit<{
7514
6192
  readonly scale?: number | undefined;
7515
6193
  readonly reference?: string | undefined;
7516
6194
  readonly referenceFilters?: string[] | undefined;
7517
- readonly writeRequiresMasterRead?: boolean | undefined;
7518
6195
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
7519
6196
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
7520
6197
  readonly inlineTitle?: string | undefined;
@@ -7539,22 +6216,8 @@ declare const securityObjects: ((Omit<{
7539
6216
  relationshipField?: string | undefined;
7540
6217
  } | undefined;
7541
6218
  readonly language?: string | undefined;
7542
- readonly lineNumbers?: boolean | undefined;
7543
6219
  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
6220
  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
6221
  readonly currencyConfig?: {
7559
6222
  precision: number;
7560
6223
  currencyMode: "fixed" | "dynamic";
@@ -7608,29 +6271,7 @@ declare const securityObjects: ((Omit<{
7608
6271
  } | undefined;
7609
6272
  maxVersions?: number | undefined;
7610
6273
  } | undefined;
7611
- readonly maskingRule?: {
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;
6274
+ readonly trackHistory?: boolean | undefined;
7634
6275
  readonly visibleWhen?: {
7635
6276
  dialect: "cel" | "js" | "cron" | "template";
7636
6277
  source?: string | undefined;
@@ -7669,7 +6310,6 @@ declare const securityObjects: ((Omit<{
7669
6310
  } | undefined;
7670
6311
  readonly sortable?: boolean | undefined;
7671
6312
  readonly inlineHelpText?: string | undefined;
7672
- readonly trackFeedHistory?: boolean | undefined;
7673
6313
  readonly caseSensitive?: boolean | undefined;
7674
6314
  readonly autonumberFormat?: string | undefined;
7675
6315
  readonly index?: boolean | undefined;
@@ -7691,7 +6331,6 @@ declare const securityObjects: ((Omit<{
7691
6331
  readonly required?: boolean | undefined;
7692
6332
  readonly multiple?: boolean | undefined;
7693
6333
  readonly dependencies?: string[] | undefined;
7694
- readonly theme?: string | undefined;
7695
6334
  readonly externalId?: boolean | undefined;
7696
6335
  readonly defaultValue?: unknown;
7697
6336
  readonly group?: string | undefined;
@@ -7699,23 +6338,7 @@ declare const securityObjects: ((Omit<{
7699
6338
  readonly system?: boolean | undefined;
7700
6339
  readonly min?: number | undefined;
7701
6340
  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;
6341
+ readonly dimensions?: number | undefined;
7719
6342
  readonly columnName?: string | undefined;
7720
6343
  readonly searchable?: boolean | undefined;
7721
6344
  readonly unique?: boolean | undefined;
@@ -7724,7 +6347,6 @@ declare const securityObjects: ((Omit<{
7724
6347
  readonly scale?: number | undefined;
7725
6348
  reference: string;
7726
6349
  readonly referenceFilters?: string[] | undefined;
7727
- readonly writeRequiresMasterRead?: boolean | undefined;
7728
6350
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
7729
6351
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
7730
6352
  readonly inlineTitle?: string | undefined;
@@ -7749,22 +6371,8 @@ declare const securityObjects: ((Omit<{
7749
6371
  relationshipField?: string | undefined;
7750
6372
  } | undefined;
7751
6373
  readonly language?: string | undefined;
7752
- readonly lineNumbers?: boolean | undefined;
7753
6374
  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
6375
  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
6376
  readonly currencyConfig?: {
7769
6377
  precision: number;
7770
6378
  currencyMode: "fixed" | "dynamic";
@@ -7818,29 +6426,7 @@ declare const securityObjects: ((Omit<{
7818
6426
  } | undefined;
7819
6427
  maxVersions?: number | undefined;
7820
6428
  } | undefined;
7821
- readonly maskingRule?: {
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;
6429
+ readonly trackHistory?: boolean | undefined;
7844
6430
  readonly visibleWhen?: {
7845
6431
  dialect: "cel" | "js" | "cron" | "template";
7846
6432
  source?: string | undefined;
@@ -7879,7 +6465,6 @@ declare const securityObjects: ((Omit<{
7879
6465
  } | undefined;
7880
6466
  readonly sortable?: boolean | undefined;
7881
6467
  readonly inlineHelpText?: string | undefined;
7882
- readonly trackFeedHistory?: boolean | undefined;
7883
6468
  readonly caseSensitive?: boolean | undefined;
7884
6469
  readonly autonumberFormat?: string | undefined;
7885
6470
  readonly index?: boolean | undefined;
@@ -7901,7 +6486,6 @@ declare const securityObjects: ((Omit<{
7901
6486
  readonly required?: boolean | undefined;
7902
6487
  readonly multiple?: boolean | undefined;
7903
6488
  readonly dependencies?: string[] | undefined;
7904
- readonly theme?: string | undefined;
7905
6489
  readonly externalId?: boolean | undefined;
7906
6490
  readonly defaultValue?: unknown;
7907
6491
  readonly group?: string | undefined;
@@ -7909,23 +6493,7 @@ declare const securityObjects: ((Omit<{
7909
6493
  readonly system?: boolean | undefined;
7910
6494
  readonly min?: number | undefined;
7911
6495
  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;
6496
+ readonly dimensions?: number | undefined;
7929
6497
  readonly columnName?: string | undefined;
7930
6498
  readonly searchable?: boolean | undefined;
7931
6499
  readonly unique?: boolean | undefined;
@@ -7934,7 +6502,6 @@ declare const securityObjects: ((Omit<{
7934
6502
  readonly scale?: number | undefined;
7935
6503
  reference: string;
7936
6504
  readonly referenceFilters?: string[] | undefined;
7937
- readonly writeRequiresMasterRead?: boolean | undefined;
7938
6505
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
7939
6506
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
7940
6507
  readonly inlineTitle?: string | undefined;
@@ -7959,22 +6526,8 @@ declare const securityObjects: ((Omit<{
7959
6526
  relationshipField?: string | undefined;
7960
6527
  } | undefined;
7961
6528
  readonly language?: string | undefined;
7962
- readonly lineNumbers?: boolean | undefined;
7963
6529
  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
6530
  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
6531
  readonly currencyConfig?: {
7979
6532
  precision: number;
7980
6533
  currencyMode: "fixed" | "dynamic";
@@ -8028,29 +6581,7 @@ declare const securityObjects: ((Omit<{
8028
6581
  } | undefined;
8029
6582
  maxVersions?: number | undefined;
8030
6583
  } | undefined;
8031
- readonly maskingRule?: {
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;
6584
+ readonly trackHistory?: boolean | undefined;
8054
6585
  readonly visibleWhen?: {
8055
6586
  dialect: "cel" | "js" | "cron" | "template";
8056
6587
  source?: string | undefined;
@@ -8089,7 +6620,6 @@ declare const securityObjects: ((Omit<{
8089
6620
  } | undefined;
8090
6621
  readonly sortable?: boolean | undefined;
8091
6622
  readonly inlineHelpText?: string | undefined;
8092
- readonly trackFeedHistory?: boolean | undefined;
8093
6623
  readonly caseSensitive?: boolean | undefined;
8094
6624
  readonly autonumberFormat?: string | undefined;
8095
6625
  readonly index?: boolean | undefined;
@@ -8111,7 +6641,6 @@ declare const securityObjects: ((Omit<{
8111
6641
  readonly required?: boolean | undefined;
8112
6642
  readonly multiple?: boolean | undefined;
8113
6643
  readonly dependencies?: string[] | undefined;
8114
- readonly theme?: string | undefined;
8115
6644
  readonly externalId?: boolean | undefined;
8116
6645
  readonly defaultValue?: unknown;
8117
6646
  readonly group?: string | undefined;
@@ -8119,23 +6648,7 @@ declare const securityObjects: ((Omit<{
8119
6648
  readonly system?: boolean | undefined;
8120
6649
  readonly min?: number | undefined;
8121
6650
  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;
6651
+ readonly dimensions?: number | undefined;
8139
6652
  readonly columnName?: string | undefined;
8140
6653
  readonly searchable?: boolean | undefined;
8141
6654
  readonly unique?: boolean | undefined;
@@ -8144,7 +6657,6 @@ declare const securityObjects: ((Omit<{
8144
6657
  readonly scale?: number | undefined;
8145
6658
  reference: string;
8146
6659
  readonly referenceFilters?: string[] | undefined;
8147
- readonly writeRequiresMasterRead?: boolean | undefined;
8148
6660
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
8149
6661
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
8150
6662
  readonly inlineTitle?: string | undefined;
@@ -8169,22 +6681,8 @@ declare const securityObjects: ((Omit<{
8169
6681
  relationshipField?: string | undefined;
8170
6682
  } | undefined;
8171
6683
  readonly language?: string | undefined;
8172
- readonly lineNumbers?: boolean | undefined;
8173
6684
  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
6685
  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
6686
  readonly currencyConfig?: {
8189
6687
  precision: number;
8190
6688
  currencyMode: "fixed" | "dynamic";
@@ -8238,29 +6736,7 @@ declare const securityObjects: ((Omit<{
8238
6736
  } | undefined;
8239
6737
  maxVersions?: number | undefined;
8240
6738
  } | undefined;
8241
- readonly maskingRule?: {
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;
6739
+ readonly trackHistory?: boolean | undefined;
8264
6740
  readonly visibleWhen?: {
8265
6741
  dialect: "cel" | "js" | "cron" | "template";
8266
6742
  source?: string | undefined;
@@ -8299,7 +6775,6 @@ declare const securityObjects: ((Omit<{
8299
6775
  } | undefined;
8300
6776
  readonly sortable?: boolean | undefined;
8301
6777
  readonly inlineHelpText?: string | undefined;
8302
- readonly trackFeedHistory?: boolean | undefined;
8303
6778
  readonly caseSensitive?: boolean | undefined;
8304
6779
  readonly autonumberFormat?: string | undefined;
8305
6780
  readonly index?: boolean | undefined;
@@ -8321,7 +6796,6 @@ declare const securityObjects: ((Omit<{
8321
6796
  readonly required?: boolean | undefined;
8322
6797
  readonly multiple?: boolean | undefined;
8323
6798
  readonly dependencies?: string[] | undefined;
8324
- readonly theme?: string | undefined;
8325
6799
  readonly externalId?: boolean | undefined;
8326
6800
  readonly defaultValue?: unknown;
8327
6801
  readonly group?: string | undefined;
@@ -8329,23 +6803,7 @@ declare const securityObjects: ((Omit<{
8329
6803
  readonly system?: boolean | undefined;
8330
6804
  readonly min?: number | undefined;
8331
6805
  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;
6806
+ readonly dimensions?: number | undefined;
8349
6807
  readonly columnName?: string | undefined;
8350
6808
  readonly searchable?: boolean | undefined;
8351
6809
  readonly unique?: boolean | undefined;
@@ -8354,7 +6812,6 @@ declare const securityObjects: ((Omit<{
8354
6812
  readonly scale?: number | undefined;
8355
6813
  reference: string;
8356
6814
  readonly referenceFilters?: string[] | undefined;
8357
- readonly writeRequiresMasterRead?: boolean | undefined;
8358
6815
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
8359
6816
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
8360
6817
  readonly inlineTitle?: string | undefined;
@@ -8379,22 +6836,8 @@ declare const securityObjects: ((Omit<{
8379
6836
  relationshipField?: string | undefined;
8380
6837
  } | undefined;
8381
6838
  readonly language?: string | undefined;
8382
- readonly lineNumbers?: boolean | undefined;
8383
6839
  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
6840
  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
6841
  readonly currencyConfig?: {
8399
6842
  precision: number;
8400
6843
  currencyMode: "fixed" | "dynamic";
@@ -8448,29 +6891,7 @@ declare const securityObjects: ((Omit<{
8448
6891
  } | undefined;
8449
6892
  maxVersions?: number | undefined;
8450
6893
  } | undefined;
8451
- readonly maskingRule?: {
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;
6894
+ readonly trackHistory?: boolean | undefined;
8474
6895
  readonly visibleWhen?: {
8475
6896
  dialect: "cel" | "js" | "cron" | "template";
8476
6897
  source?: string | undefined;
@@ -8509,7 +6930,6 @@ declare const securityObjects: ((Omit<{
8509
6930
  } | undefined;
8510
6931
  readonly sortable?: boolean | undefined;
8511
6932
  readonly inlineHelpText?: string | undefined;
8512
- readonly trackFeedHistory?: boolean | undefined;
8513
6933
  readonly caseSensitive?: boolean | undefined;
8514
6934
  readonly autonumberFormat?: string | undefined;
8515
6935
  readonly index?: boolean | undefined;
@@ -8531,7 +6951,6 @@ declare const securityObjects: ((Omit<{
8531
6951
  readonly required?: boolean | undefined;
8532
6952
  readonly multiple?: boolean | undefined;
8533
6953
  readonly dependencies?: string[] | undefined;
8534
- readonly theme?: string | undefined;
8535
6954
  readonly externalId?: boolean | undefined;
8536
6955
  readonly defaultValue?: unknown;
8537
6956
  readonly group?: string | undefined;
@@ -8539,23 +6958,7 @@ declare const securityObjects: ((Omit<{
8539
6958
  readonly system?: boolean | undefined;
8540
6959
  readonly min?: number | undefined;
8541
6960
  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;
6961
+ readonly dimensions?: number | undefined;
8559
6962
  readonly columnName?: string | undefined;
8560
6963
  readonly searchable?: boolean | undefined;
8561
6964
  readonly unique?: boolean | undefined;
@@ -8564,7 +6967,6 @@ declare const securityObjects: ((Omit<{
8564
6967
  readonly scale?: number | undefined;
8565
6968
  readonly reference?: string | undefined;
8566
6969
  readonly referenceFilters?: string[] | undefined;
8567
- readonly writeRequiresMasterRead?: boolean | undefined;
8568
6970
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
8569
6971
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
8570
6972
  readonly inlineTitle?: string | undefined;
@@ -8589,22 +6991,8 @@ declare const securityObjects: ((Omit<{
8589
6991
  relationshipField?: string | undefined;
8590
6992
  } | undefined;
8591
6993
  readonly language?: string | undefined;
8592
- readonly lineNumbers?: boolean | undefined;
8593
6994
  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
6995
  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
6996
  readonly currencyConfig?: {
8609
6997
  precision: number;
8610
6998
  currencyMode: "fixed" | "dynamic";
@@ -8658,29 +7046,7 @@ declare const securityObjects: ((Omit<{
8658
7046
  } | undefined;
8659
7047
  maxVersions?: number | undefined;
8660
7048
  } | undefined;
8661
- readonly maskingRule?: {
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;
7049
+ readonly trackHistory?: boolean | undefined;
8684
7050
  readonly visibleWhen?: {
8685
7051
  dialect: "cel" | "js" | "cron" | "template";
8686
7052
  source?: string | undefined;
@@ -8719,7 +7085,6 @@ declare const securityObjects: ((Omit<{
8719
7085
  } | undefined;
8720
7086
  readonly sortable?: boolean | undefined;
8721
7087
  readonly inlineHelpText?: string | undefined;
8722
- readonly trackFeedHistory?: boolean | undefined;
8723
7088
  readonly caseSensitive?: boolean | undefined;
8724
7089
  readonly autonumberFormat?: string | undefined;
8725
7090
  readonly index?: boolean | undefined;
@@ -8741,7 +7106,6 @@ declare const securityObjects: ((Omit<{
8741
7106
  readonly required?: boolean | undefined;
8742
7107
  readonly multiple?: boolean | undefined;
8743
7108
  readonly dependencies?: string[] | undefined;
8744
- readonly theme?: string | undefined;
8745
7109
  readonly externalId?: boolean | undefined;
8746
7110
  readonly defaultValue?: unknown;
8747
7111
  readonly group?: string | undefined;
@@ -8749,23 +7113,7 @@ declare const securityObjects: ((Omit<{
8749
7113
  readonly system?: boolean | undefined;
8750
7114
  readonly min?: number | undefined;
8751
7115
  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;
7116
+ readonly dimensions?: number | undefined;
8769
7117
  readonly columnName?: string | undefined;
8770
7118
  readonly searchable?: boolean | undefined;
8771
7119
  readonly unique?: boolean | undefined;
@@ -8774,7 +7122,6 @@ declare const securityObjects: ((Omit<{
8774
7122
  readonly scale?: number | undefined;
8775
7123
  readonly reference?: string | undefined;
8776
7124
  readonly referenceFilters?: string[] | undefined;
8777
- readonly writeRequiresMasterRead?: boolean | undefined;
8778
7125
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
8779
7126
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
8780
7127
  readonly inlineTitle?: string | undefined;
@@ -8799,22 +7146,8 @@ declare const securityObjects: ((Omit<{
8799
7146
  relationshipField?: string | undefined;
8800
7147
  } | undefined;
8801
7148
  readonly language?: string | undefined;
8802
- readonly lineNumbers?: boolean | undefined;
8803
7149
  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
7150
  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
7151
  readonly currencyConfig?: {
8819
7152
  precision: number;
8820
7153
  currencyMode: "fixed" | "dynamic";
@@ -8868,29 +7201,7 @@ declare const securityObjects: ((Omit<{
8868
7201
  } | undefined;
8869
7202
  maxVersions?: number | undefined;
8870
7203
  } | undefined;
8871
- readonly maskingRule?: {
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;
7204
+ readonly trackHistory?: boolean | undefined;
8894
7205
  readonly visibleWhen?: {
8895
7206
  dialect: "cel" | "js" | "cron" | "template";
8896
7207
  source?: string | undefined;
@@ -8929,7 +7240,6 @@ declare const securityObjects: ((Omit<{
8929
7240
  } | undefined;
8930
7241
  readonly sortable?: boolean | undefined;
8931
7242
  readonly inlineHelpText?: string | undefined;
8932
- readonly trackFeedHistory?: boolean | undefined;
8933
7243
  readonly caseSensitive?: boolean | undefined;
8934
7244
  readonly autonumberFormat?: string | undefined;
8935
7245
  readonly index?: boolean | undefined;
@@ -8967,7 +7277,6 @@ declare const securityObjects: ((Omit<{
8967
7277
  multiple: boolean;
8968
7278
  unique: boolean;
8969
7279
  deleteBehavior: "set_null" | "cascade" | "restrict";
8970
- auditTrail: boolean;
8971
7280
  hidden: boolean;
8972
7281
  readonly: boolean;
8973
7282
  sortable: boolean;
@@ -8993,7 +7302,6 @@ declare const securityObjects: ((Omit<{
8993
7302
  }[] | undefined;
8994
7303
  reference?: string | undefined;
8995
7304
  referenceFilters?: string[] | undefined;
8996
- writeRequiresMasterRead?: boolean | undefined;
8997
7305
  inlineEdit?: boolean | "grid" | "form" | undefined;
8998
7306
  inlineTitle?: string | undefined;
8999
7307
  inlineColumns?: any[] | undefined;
@@ -9025,28 +7333,14 @@ declare const securityObjects: ((Omit<{
9025
7333
  relationshipField?: string | undefined;
9026
7334
  } | undefined;
9027
7335
  language?: string | undefined;
9028
- theme?: string | undefined;
9029
- lineNumbers?: boolean | undefined;
9030
7336
  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
7337
  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
7338
  currencyConfig?: {
9046
7339
  precision: number;
9047
7340
  currencyMode: "fixed" | "dynamic";
9048
7341
  defaultCurrency: string;
9049
7342
  } | undefined;
7343
+ dimensions?: number | undefined;
9050
7344
  vectorConfig?: {
9051
7345
  dimensions: number;
9052
7346
  distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
@@ -9095,46 +7389,8 @@ declare const securityObjects: ((Omit<{
9095
7389
  } | undefined;
9096
7390
  maxVersions?: number | undefined;
9097
7391
  } | undefined;
9098
- encryptionConfig?: {
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;
7392
+ trackHistory?: boolean | undefined;
9124
7393
  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
7394
  group?: string | undefined;
9139
7395
  visibleWhen?: {
9140
7396
  dialect: "cel" | "js" | "cron" | "template";
@@ -9206,7 +7462,6 @@ declare const securityObjects: ((Omit<{
9206
7462
  } | undefined;
9207
7463
  system?: boolean | undefined;
9208
7464
  inlineHelpText?: string | undefined;
9209
- trackFeedHistory?: boolean | undefined;
9210
7465
  caseSensitive?: boolean | undefined;
9211
7466
  autonumberFormat?: string | undefined;
9212
7467
  }>;
@@ -9297,12 +7552,13 @@ declare const securityObjects: ((Omit<{
9297
7552
  key: string;
9298
7553
  interval?: string | undefined;
9299
7554
  } | undefined;
9300
- cdc?: {
9301
- enabled: boolean;
9302
- events: ("insert" | "update" | "delete")[];
9303
- destination: string;
9304
- } | undefined;
9305
7555
  validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
7556
+ activityMilestones?: {
7557
+ field: string;
7558
+ value: string;
7559
+ summary: string;
7560
+ type?: string | undefined;
7561
+ }[] | undefined;
9306
7562
  displayNameField?: string | undefined;
9307
7563
  recordName?: {
9308
7564
  type: "text" | "autonumber";
@@ -9613,7 +7869,6 @@ declare const securityObjects: ((Omit<{
9613
7869
  clone: boolean;
9614
7870
  apiMethods?: ("aggregate" | "update" | "delete" | "restore" | "purge" | "search" | "create" | "import" | "list" | "get" | "upsert" | "bulk" | "history" | "export")[] | undefined;
9615
7871
  } | undefined;
9616
- recordTypes?: string[] | undefined;
9617
7872
  sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
9618
7873
  publicSharing?: {
9619
7874
  enabled: boolean;
@@ -9670,6 +7925,8 @@ declare const securityObjects: ((Omit<{
9670
7925
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
9671
7926
  confirmText?: string | undefined;
9672
7927
  successMessage?: string | undefined;
7928
+ errorMessage?: string | undefined;
7929
+ undoable?: boolean | undefined;
9673
7930
  resultDialog?: {
9674
7931
  title?: string | undefined;
9675
7932
  description?: string | undefined;
@@ -9762,7 +8019,6 @@ declare const securityObjects: ((Omit<{
9762
8019
  readonly required?: boolean | undefined;
9763
8020
  readonly multiple?: boolean | undefined;
9764
8021
  readonly dependencies?: string[] | undefined;
9765
- readonly theme?: string | undefined;
9766
8022
  readonly externalId?: boolean | undefined;
9767
8023
  readonly defaultValue?: unknown;
9768
8024
  readonly group?: string | undefined;
@@ -9770,23 +8026,7 @@ declare const securityObjects: ((Omit<{
9770
8026
  readonly system?: boolean | undefined;
9771
8027
  readonly min?: number | undefined;
9772
8028
  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;
8029
+ readonly dimensions?: number | undefined;
9790
8030
  readonly columnName?: string | undefined;
9791
8031
  readonly searchable?: boolean | undefined;
9792
8032
  readonly unique?: boolean | undefined;
@@ -9795,7 +8035,6 @@ declare const securityObjects: ((Omit<{
9795
8035
  readonly scale?: number | undefined;
9796
8036
  readonly reference?: string | undefined;
9797
8037
  readonly referenceFilters?: string[] | undefined;
9798
- readonly writeRequiresMasterRead?: boolean | undefined;
9799
8038
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
9800
8039
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
9801
8040
  readonly inlineTitle?: string | undefined;
@@ -9820,22 +8059,8 @@ declare const securityObjects: ((Omit<{
9820
8059
  relationshipField?: string | undefined;
9821
8060
  } | undefined;
9822
8061
  readonly language?: string | undefined;
9823
- readonly lineNumbers?: boolean | undefined;
9824
8062
  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
8063
  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
8064
  readonly currencyConfig?: {
9840
8065
  precision: number;
9841
8066
  currencyMode: "fixed" | "dynamic";
@@ -9889,29 +8114,7 @@ declare const securityObjects: ((Omit<{
9889
8114
  } | undefined;
9890
8115
  maxVersions?: number | undefined;
9891
8116
  } | undefined;
9892
- readonly maskingRule?: {
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;
8117
+ readonly trackHistory?: boolean | undefined;
9915
8118
  readonly visibleWhen?: {
9916
8119
  dialect: "cel" | "js" | "cron" | "template";
9917
8120
  source?: string | undefined;
@@ -9950,7 +8153,6 @@ declare const securityObjects: ((Omit<{
9950
8153
  } | undefined;
9951
8154
  readonly sortable?: boolean | undefined;
9952
8155
  readonly inlineHelpText?: string | undefined;
9953
- readonly trackFeedHistory?: boolean | undefined;
9954
8156
  readonly caseSensitive?: boolean | undefined;
9955
8157
  readonly autonumberFormat?: string | undefined;
9956
8158
  readonly index?: boolean | undefined;
@@ -9972,7 +8174,6 @@ declare const securityObjects: ((Omit<{
9972
8174
  readonly required?: boolean | undefined;
9973
8175
  readonly multiple?: boolean | undefined;
9974
8176
  readonly dependencies?: string[] | undefined;
9975
- readonly theme?: string | undefined;
9976
8177
  readonly externalId?: boolean | undefined;
9977
8178
  readonly defaultValue?: unknown;
9978
8179
  readonly group?: string | undefined;
@@ -9980,23 +8181,7 @@ declare const securityObjects: ((Omit<{
9980
8181
  readonly system?: boolean | undefined;
9981
8182
  readonly min?: number | undefined;
9982
8183
  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;
8184
+ readonly dimensions?: number | undefined;
10000
8185
  readonly columnName?: string | undefined;
10001
8186
  readonly searchable?: boolean | undefined;
10002
8187
  readonly unique?: boolean | undefined;
@@ -10005,7 +8190,6 @@ declare const securityObjects: ((Omit<{
10005
8190
  readonly scale?: number | undefined;
10006
8191
  reference: string;
10007
8192
  readonly referenceFilters?: string[] | undefined;
10008
- readonly writeRequiresMasterRead?: boolean | undefined;
10009
8193
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
10010
8194
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
10011
8195
  readonly inlineTitle?: string | undefined;
@@ -10030,22 +8214,8 @@ declare const securityObjects: ((Omit<{
10030
8214
  relationshipField?: string | undefined;
10031
8215
  } | undefined;
10032
8216
  readonly language?: string | undefined;
10033
- readonly lineNumbers?: boolean | undefined;
10034
8217
  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
8218
  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
8219
  readonly currencyConfig?: {
10050
8220
  precision: number;
10051
8221
  currencyMode: "fixed" | "dynamic";
@@ -10099,29 +8269,7 @@ declare const securityObjects: ((Omit<{
10099
8269
  } | undefined;
10100
8270
  maxVersions?: number | undefined;
10101
8271
  } | undefined;
10102
- readonly maskingRule?: {
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;
8272
+ readonly trackHistory?: boolean | undefined;
10125
8273
  readonly visibleWhen?: {
10126
8274
  dialect: "cel" | "js" | "cron" | "template";
10127
8275
  source?: string | undefined;
@@ -10160,7 +8308,6 @@ declare const securityObjects: ((Omit<{
10160
8308
  } | undefined;
10161
8309
  readonly sortable?: boolean | undefined;
10162
8310
  readonly inlineHelpText?: string | undefined;
10163
- readonly trackFeedHistory?: boolean | undefined;
10164
8311
  readonly caseSensitive?: boolean | undefined;
10165
8312
  readonly autonumberFormat?: string | undefined;
10166
8313
  readonly index?: boolean | undefined;
@@ -10182,7 +8329,6 @@ declare const securityObjects: ((Omit<{
10182
8329
  readonly required?: boolean | undefined;
10183
8330
  readonly multiple?: boolean | undefined;
10184
8331
  readonly dependencies?: string[] | undefined;
10185
- readonly theme?: string | undefined;
10186
8332
  readonly externalId?: boolean | undefined;
10187
8333
  readonly defaultValue?: unknown;
10188
8334
  readonly group?: string | undefined;
@@ -10190,23 +8336,7 @@ declare const securityObjects: ((Omit<{
10190
8336
  readonly system?: boolean | undefined;
10191
8337
  readonly min?: number | undefined;
10192
8338
  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;
8339
+ readonly dimensions?: number | undefined;
10210
8340
  readonly columnName?: string | undefined;
10211
8341
  readonly searchable?: boolean | undefined;
10212
8342
  readonly unique?: boolean | undefined;
@@ -10215,7 +8345,6 @@ declare const securityObjects: ((Omit<{
10215
8345
  readonly scale?: number | undefined;
10216
8346
  reference: string;
10217
8347
  readonly referenceFilters?: string[] | undefined;
10218
- readonly writeRequiresMasterRead?: boolean | undefined;
10219
8348
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
10220
8349
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
10221
8350
  readonly inlineTitle?: string | undefined;
@@ -10240,22 +8369,8 @@ declare const securityObjects: ((Omit<{
10240
8369
  relationshipField?: string | undefined;
10241
8370
  } | undefined;
10242
8371
  readonly language?: string | undefined;
10243
- readonly lineNumbers?: boolean | undefined;
10244
8372
  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
8373
  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
8374
  readonly currencyConfig?: {
10260
8375
  precision: number;
10261
8376
  currencyMode: "fixed" | "dynamic";
@@ -10309,29 +8424,7 @@ declare const securityObjects: ((Omit<{
10309
8424
  } | undefined;
10310
8425
  maxVersions?: number | undefined;
10311
8426
  } | undefined;
10312
- readonly maskingRule?: {
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;
8427
+ readonly trackHistory?: boolean | undefined;
10335
8428
  readonly visibleWhen?: {
10336
8429
  dialect: "cel" | "js" | "cron" | "template";
10337
8430
  source?: string | undefined;
@@ -10370,7 +8463,6 @@ declare const securityObjects: ((Omit<{
10370
8463
  } | undefined;
10371
8464
  readonly sortable?: boolean | undefined;
10372
8465
  readonly inlineHelpText?: string | undefined;
10373
- readonly trackFeedHistory?: boolean | undefined;
10374
8466
  readonly caseSensitive?: boolean | undefined;
10375
8467
  readonly autonumberFormat?: string | undefined;
10376
8468
  readonly index?: boolean | undefined;
@@ -10392,7 +8484,6 @@ declare const securityObjects: ((Omit<{
10392
8484
  readonly required?: boolean | undefined;
10393
8485
  readonly multiple?: boolean | undefined;
10394
8486
  readonly dependencies?: string[] | undefined;
10395
- readonly theme?: string | undefined;
10396
8487
  readonly externalId?: boolean | undefined;
10397
8488
  readonly defaultValue?: unknown;
10398
8489
  readonly group?: string | undefined;
@@ -10400,23 +8491,7 @@ declare const securityObjects: ((Omit<{
10400
8491
  readonly system?: boolean | undefined;
10401
8492
  readonly min?: number | undefined;
10402
8493
  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;
8494
+ readonly dimensions?: number | undefined;
10420
8495
  readonly columnName?: string | undefined;
10421
8496
  readonly searchable?: boolean | undefined;
10422
8497
  readonly unique?: boolean | undefined;
@@ -10425,7 +8500,6 @@ declare const securityObjects: ((Omit<{
10425
8500
  readonly scale?: number | undefined;
10426
8501
  readonly reference?: string | undefined;
10427
8502
  readonly referenceFilters?: string[] | undefined;
10428
- readonly writeRequiresMasterRead?: boolean | undefined;
10429
8503
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
10430
8504
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
10431
8505
  readonly inlineTitle?: string | undefined;
@@ -10450,22 +8524,8 @@ declare const securityObjects: ((Omit<{
10450
8524
  relationshipField?: string | undefined;
10451
8525
  } | undefined;
10452
8526
  readonly language?: string | undefined;
10453
- readonly lineNumbers?: boolean | undefined;
10454
8527
  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
8528
  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
8529
  readonly currencyConfig?: {
10470
8530
  precision: number;
10471
8531
  currencyMode: "fixed" | "dynamic";
@@ -10519,29 +8579,7 @@ declare const securityObjects: ((Omit<{
10519
8579
  } | undefined;
10520
8580
  maxVersions?: number | undefined;
10521
8581
  } | undefined;
10522
- readonly maskingRule?: {
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;
8582
+ readonly trackHistory?: boolean | undefined;
10545
8583
  readonly visibleWhen?: {
10546
8584
  dialect: "cel" | "js" | "cron" | "template";
10547
8585
  source?: string | undefined;
@@ -10580,7 +8618,6 @@ declare const securityObjects: ((Omit<{
10580
8618
  } | undefined;
10581
8619
  readonly sortable?: boolean | undefined;
10582
8620
  readonly inlineHelpText?: string | undefined;
10583
- readonly trackFeedHistory?: boolean | undefined;
10584
8621
  readonly caseSensitive?: boolean | undefined;
10585
8622
  readonly autonumberFormat?: string | undefined;
10586
8623
  readonly index?: boolean | undefined;
@@ -10602,7 +8639,6 @@ declare const securityObjects: ((Omit<{
10602
8639
  readonly required?: boolean | undefined;
10603
8640
  readonly multiple?: boolean | undefined;
10604
8641
  readonly dependencies?: string[] | undefined;
10605
- readonly theme?: string | undefined;
10606
8642
  readonly externalId?: boolean | undefined;
10607
8643
  readonly defaultValue?: unknown;
10608
8644
  readonly group?: string | undefined;
@@ -10610,23 +8646,7 @@ declare const securityObjects: ((Omit<{
10610
8646
  readonly system?: boolean | undefined;
10611
8647
  readonly min?: number | undefined;
10612
8648
  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;
8649
+ readonly dimensions?: number | undefined;
10630
8650
  readonly columnName?: string | undefined;
10631
8651
  readonly searchable?: boolean | undefined;
10632
8652
  readonly unique?: boolean | undefined;
@@ -10635,7 +8655,6 @@ declare const securityObjects: ((Omit<{
10635
8655
  readonly scale?: number | undefined;
10636
8656
  readonly reference?: string | undefined;
10637
8657
  readonly referenceFilters?: string[] | undefined;
10638
- readonly writeRequiresMasterRead?: boolean | undefined;
10639
8658
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
10640
8659
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
10641
8660
  readonly inlineTitle?: string | undefined;
@@ -10660,22 +8679,8 @@ declare const securityObjects: ((Omit<{
10660
8679
  relationshipField?: string | undefined;
10661
8680
  } | undefined;
10662
8681
  readonly language?: string | undefined;
10663
- readonly lineNumbers?: boolean | undefined;
10664
8682
  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
8683
  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
8684
  readonly currencyConfig?: {
10680
8685
  precision: number;
10681
8686
  currencyMode: "fixed" | "dynamic";
@@ -10729,29 +8734,7 @@ declare const securityObjects: ((Omit<{
10729
8734
  } | undefined;
10730
8735
  maxVersions?: number | undefined;
10731
8736
  } | undefined;
10732
- readonly maskingRule?: {
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;
8737
+ readonly trackHistory?: boolean | undefined;
10755
8738
  readonly visibleWhen?: {
10756
8739
  dialect: "cel" | "js" | "cron" | "template";
10757
8740
  source?: string | undefined;
@@ -10790,7 +8773,6 @@ declare const securityObjects: ((Omit<{
10790
8773
  } | undefined;
10791
8774
  readonly sortable?: boolean | undefined;
10792
8775
  readonly inlineHelpText?: string | undefined;
10793
- readonly trackFeedHistory?: boolean | undefined;
10794
8776
  readonly caseSensitive?: boolean | undefined;
10795
8777
  readonly autonumberFormat?: string | undefined;
10796
8778
  readonly index?: boolean | undefined;