@objectstack/plugin-sharing 9.6.0 → 9.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -46,7 +46,6 @@ declare const SysRecordShare: Omit<{
46
46
  multiple: boolean;
47
47
  unique: boolean;
48
48
  deleteBehavior: "set_null" | "cascade" | "restrict";
49
- auditTrail: boolean;
50
49
  hidden: boolean;
51
50
  readonly: boolean;
52
51
  sortable: boolean;
@@ -72,7 +71,6 @@ declare const SysRecordShare: Omit<{
72
71
  }[] | undefined;
73
72
  reference?: string | undefined;
74
73
  referenceFilters?: string[] | undefined;
75
- writeRequiresMasterRead?: boolean | undefined;
76
74
  inlineEdit?: boolean | "grid" | "form" | undefined;
77
75
  inlineTitle?: string | undefined;
78
76
  inlineColumns?: any[] | undefined;
@@ -104,23 +102,8 @@ declare const SysRecordShare: Omit<{
104
102
  relationshipField?: string | undefined;
105
103
  } | undefined;
106
104
  language?: string | undefined;
107
- theme?: string | undefined;
108
- lineNumbers?: boolean | undefined;
109
105
  maxRating?: number | undefined;
110
- allowHalf?: boolean | undefined;
111
- displayMap?: boolean | undefined;
112
- allowGeocoding?: boolean | undefined;
113
- addressFormat?: "us" | "uk" | "international" | undefined;
114
- colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
115
- allowAlpha?: boolean | undefined;
116
- presetColors?: string[] | undefined;
117
106
  step?: number | undefined;
118
- showValue?: boolean | undefined;
119
- marks?: Record<string, string> | undefined;
120
- barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
121
- qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
122
- displayValue?: boolean | undefined;
123
- allowScanning?: boolean | undefined;
124
107
  currencyConfig?: {
125
108
  precision: number;
126
109
  currencyMode: "fixed" | "dynamic";
@@ -174,46 +157,8 @@ declare const SysRecordShare: Omit<{
174
157
  } | undefined;
175
158
  maxVersions?: number | undefined;
176
159
  } | undefined;
177
- encryptionConfig?: {
178
- enabled: boolean;
179
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
180
- keyManagement: {
181
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
182
- keyId?: string | undefined;
183
- rotationPolicy?: {
184
- enabled: boolean;
185
- frequencyDays: number;
186
- retainOldVersions: number;
187
- autoRotate: boolean;
188
- } | undefined;
189
- };
190
- scope: "record" | "field" | "table" | "database";
191
- deterministicEncryption: boolean;
192
- searchableEncryption: boolean;
193
- } | undefined;
194
- maskingRule?: {
195
- field: string;
196
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
197
- preserveFormat: boolean;
198
- preserveLength: boolean;
199
- pattern?: string | undefined;
200
- roles?: string[] | undefined;
201
- exemptRoles?: string[] | undefined;
202
- } | undefined;
160
+ trackHistory?: boolean | undefined;
203
161
  dependencies?: string[] | undefined;
204
- cached?: {
205
- enabled: boolean;
206
- ttl: number;
207
- invalidateOn: string[];
208
- } | undefined;
209
- dataQuality?: {
210
- uniqueness: boolean;
211
- completeness: number;
212
- accuracy?: {
213
- source: string;
214
- threshold: number;
215
- } | undefined;
216
- } | undefined;
217
162
  group?: string | undefined;
218
163
  visibleWhen?: {
219
164
  dialect: "cel" | "js" | "cron" | "template";
@@ -285,7 +230,6 @@ declare const SysRecordShare: Omit<{
285
230
  } | undefined;
286
231
  system?: boolean | undefined;
287
232
  inlineHelpText?: string | undefined;
288
- trackFeedHistory?: boolean | undefined;
289
233
  caseSensitive?: boolean | undefined;
290
234
  autonumberFormat?: string | undefined;
291
235
  }>;
@@ -376,12 +320,13 @@ declare const SysRecordShare: Omit<{
376
320
  key: string;
377
321
  interval?: string | undefined;
378
322
  } | undefined;
379
- cdc?: {
380
- enabled: boolean;
381
- events: ("delete" | "update" | "insert")[];
382
- destination: string;
383
- } | undefined;
384
323
  validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
324
+ activityMilestones?: {
325
+ field: string;
326
+ value: string;
327
+ summary: string;
328
+ type?: string | undefined;
329
+ }[] | undefined;
385
330
  displayNameField?: string | undefined;
386
331
  recordName?: {
387
332
  type: "text" | "autonumber";
@@ -692,7 +637,6 @@ declare const SysRecordShare: Omit<{
692
637
  clone: boolean;
693
638
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
694
639
  } | undefined;
695
- recordTypes?: string[] | undefined;
696
640
  sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
697
641
  publicSharing?: {
698
642
  enabled: boolean;
@@ -982,7 +926,6 @@ declare const SysRecordShare: Omit<{
982
926
  readonly required?: boolean | undefined;
983
927
  readonly multiple?: boolean | undefined;
984
928
  readonly dependencies?: string[] | undefined;
985
- readonly theme?: string | undefined;
986
929
  readonly externalId?: boolean | undefined;
987
930
  readonly defaultValue?: unknown;
988
931
  readonly group?: string | undefined;
@@ -990,23 +933,6 @@ declare const SysRecordShare: Omit<{
990
933
  readonly system?: boolean | undefined;
991
934
  readonly min?: number | undefined;
992
935
  readonly max?: number | undefined;
993
- readonly encryptionConfig?: {
994
- enabled: boolean;
995
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
996
- keyManagement: {
997
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
998
- keyId?: string | undefined;
999
- rotationPolicy?: {
1000
- enabled: boolean;
1001
- frequencyDays: number;
1002
- retainOldVersions: number;
1003
- autoRotate: boolean;
1004
- } | undefined;
1005
- };
1006
- scope: "record" | "field" | "table" | "database";
1007
- deterministicEncryption: boolean;
1008
- searchableEncryption: boolean;
1009
- } | undefined;
1010
936
  readonly columnName?: string | undefined;
1011
937
  readonly searchable?: boolean | undefined;
1012
938
  readonly unique?: boolean | undefined;
@@ -1015,7 +941,6 @@ declare const SysRecordShare: Omit<{
1015
941
  readonly scale?: number | undefined;
1016
942
  readonly reference?: string | undefined;
1017
943
  readonly referenceFilters?: string[] | undefined;
1018
- readonly writeRequiresMasterRead?: boolean | undefined;
1019
944
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1020
945
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1021
946
  readonly inlineTitle?: string | undefined;
@@ -1040,22 +965,8 @@ declare const SysRecordShare: Omit<{
1040
965
  relationshipField?: string | undefined;
1041
966
  } | undefined;
1042
967
  readonly language?: string | undefined;
1043
- readonly lineNumbers?: boolean | undefined;
1044
968
  readonly maxRating?: number | undefined;
1045
- readonly allowHalf?: boolean | undefined;
1046
- readonly displayMap?: boolean | undefined;
1047
- readonly allowGeocoding?: boolean | undefined;
1048
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
1049
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
1050
- readonly allowAlpha?: boolean | undefined;
1051
- readonly presetColors?: string[] | undefined;
1052
969
  readonly step?: number | undefined;
1053
- readonly showValue?: boolean | undefined;
1054
- readonly marks?: Record<string, string> | undefined;
1055
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
1056
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
1057
- readonly displayValue?: boolean | undefined;
1058
- readonly allowScanning?: boolean | undefined;
1059
970
  readonly currencyConfig?: {
1060
971
  precision: number;
1061
972
  currencyMode: "fixed" | "dynamic";
@@ -1109,29 +1020,7 @@ declare const SysRecordShare: Omit<{
1109
1020
  } | undefined;
1110
1021
  maxVersions?: number | undefined;
1111
1022
  } | undefined;
1112
- readonly maskingRule?: {
1113
- field: string;
1114
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
1115
- preserveFormat: boolean;
1116
- preserveLength: boolean;
1117
- pattern?: string | undefined;
1118
- roles?: string[] | undefined;
1119
- exemptRoles?: string[] | undefined;
1120
- } | undefined;
1121
- readonly auditTrail?: boolean | undefined;
1122
- readonly cached?: {
1123
- enabled: boolean;
1124
- ttl: number;
1125
- invalidateOn: string[];
1126
- } | undefined;
1127
- readonly dataQuality?: {
1128
- uniqueness: boolean;
1129
- completeness: number;
1130
- accuracy?: {
1131
- source: string;
1132
- threshold: number;
1133
- } | undefined;
1134
- } | undefined;
1023
+ readonly trackHistory?: boolean | undefined;
1135
1024
  readonly visibleWhen?: {
1136
1025
  dialect: "cel" | "js" | "cron" | "template";
1137
1026
  source?: string | undefined;
@@ -1170,7 +1059,6 @@ declare const SysRecordShare: Omit<{
1170
1059
  } | undefined;
1171
1060
  readonly sortable?: boolean | undefined;
1172
1061
  readonly inlineHelpText?: string | undefined;
1173
- readonly trackFeedHistory?: boolean | undefined;
1174
1062
  readonly caseSensitive?: boolean | undefined;
1175
1063
  readonly autonumberFormat?: string | undefined;
1176
1064
  readonly index?: boolean | undefined;
@@ -1192,7 +1080,6 @@ declare const SysRecordShare: Omit<{
1192
1080
  readonly required?: boolean | undefined;
1193
1081
  readonly multiple?: boolean | undefined;
1194
1082
  readonly dependencies?: string[] | undefined;
1195
- readonly theme?: string | undefined;
1196
1083
  readonly externalId?: boolean | undefined;
1197
1084
  readonly defaultValue?: unknown;
1198
1085
  readonly group?: string | undefined;
@@ -1200,23 +1087,6 @@ declare const SysRecordShare: Omit<{
1200
1087
  readonly system?: boolean | undefined;
1201
1088
  readonly min?: number | undefined;
1202
1089
  readonly max?: number | undefined;
1203
- readonly encryptionConfig?: {
1204
- enabled: boolean;
1205
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
1206
- keyManagement: {
1207
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
1208
- keyId?: string | undefined;
1209
- rotationPolicy?: {
1210
- enabled: boolean;
1211
- frequencyDays: number;
1212
- retainOldVersions: number;
1213
- autoRotate: boolean;
1214
- } | undefined;
1215
- };
1216
- scope: "record" | "field" | "table" | "database";
1217
- deterministicEncryption: boolean;
1218
- searchableEncryption: boolean;
1219
- } | undefined;
1220
1090
  readonly columnName?: string | undefined;
1221
1091
  readonly searchable?: boolean | undefined;
1222
1092
  readonly unique?: boolean | undefined;
@@ -1225,7 +1095,6 @@ declare const SysRecordShare: Omit<{
1225
1095
  readonly scale?: number | undefined;
1226
1096
  readonly reference?: string | undefined;
1227
1097
  readonly referenceFilters?: string[] | undefined;
1228
- readonly writeRequiresMasterRead?: boolean | undefined;
1229
1098
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1230
1099
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1231
1100
  readonly inlineTitle?: string | undefined;
@@ -1250,22 +1119,8 @@ declare const SysRecordShare: Omit<{
1250
1119
  relationshipField?: string | undefined;
1251
1120
  } | undefined;
1252
1121
  readonly language?: string | undefined;
1253
- readonly lineNumbers?: boolean | undefined;
1254
1122
  readonly maxRating?: number | undefined;
1255
- readonly allowHalf?: boolean | undefined;
1256
- readonly displayMap?: boolean | undefined;
1257
- readonly allowGeocoding?: boolean | undefined;
1258
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
1259
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
1260
- readonly allowAlpha?: boolean | undefined;
1261
- readonly presetColors?: string[] | undefined;
1262
1123
  readonly step?: number | undefined;
1263
- readonly showValue?: boolean | undefined;
1264
- readonly marks?: Record<string, string> | undefined;
1265
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
1266
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
1267
- readonly displayValue?: boolean | undefined;
1268
- readonly allowScanning?: boolean | undefined;
1269
1124
  readonly currencyConfig?: {
1270
1125
  precision: number;
1271
1126
  currencyMode: "fixed" | "dynamic";
@@ -1319,29 +1174,7 @@ declare const SysRecordShare: Omit<{
1319
1174
  } | undefined;
1320
1175
  maxVersions?: number | undefined;
1321
1176
  } | undefined;
1322
- readonly maskingRule?: {
1323
- field: string;
1324
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
1325
- preserveFormat: boolean;
1326
- preserveLength: boolean;
1327
- pattern?: string | undefined;
1328
- roles?: string[] | undefined;
1329
- exemptRoles?: string[] | undefined;
1330
- } | undefined;
1331
- readonly auditTrail?: boolean | undefined;
1332
- readonly cached?: {
1333
- enabled: boolean;
1334
- ttl: number;
1335
- invalidateOn: string[];
1336
- } | undefined;
1337
- readonly dataQuality?: {
1338
- uniqueness: boolean;
1339
- completeness: number;
1340
- accuracy?: {
1341
- source: string;
1342
- threshold: number;
1343
- } | undefined;
1344
- } | undefined;
1177
+ readonly trackHistory?: boolean | undefined;
1345
1178
  readonly visibleWhen?: {
1346
1179
  dialect: "cel" | "js" | "cron" | "template";
1347
1180
  source?: string | undefined;
@@ -1380,7 +1213,6 @@ declare const SysRecordShare: Omit<{
1380
1213
  } | undefined;
1381
1214
  readonly sortable?: boolean | undefined;
1382
1215
  readonly inlineHelpText?: string | undefined;
1383
- readonly trackFeedHistory?: boolean | undefined;
1384
1216
  readonly caseSensitive?: boolean | undefined;
1385
1217
  readonly autonumberFormat?: string | undefined;
1386
1218
  readonly index?: boolean | undefined;
@@ -1402,7 +1234,6 @@ declare const SysRecordShare: Omit<{
1402
1234
  readonly required?: boolean | undefined;
1403
1235
  readonly multiple?: boolean | undefined;
1404
1236
  readonly dependencies?: string[] | undefined;
1405
- readonly theme?: string | undefined;
1406
1237
  readonly externalId?: boolean | undefined;
1407
1238
  readonly defaultValue?: unknown;
1408
1239
  readonly group?: string | undefined;
@@ -1410,23 +1241,6 @@ declare const SysRecordShare: Omit<{
1410
1241
  readonly system?: boolean | undefined;
1411
1242
  readonly min?: number | undefined;
1412
1243
  readonly max?: number | undefined;
1413
- readonly encryptionConfig?: {
1414
- enabled: boolean;
1415
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
1416
- keyManagement: {
1417
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
1418
- keyId?: string | undefined;
1419
- rotationPolicy?: {
1420
- enabled: boolean;
1421
- frequencyDays: number;
1422
- retainOldVersions: number;
1423
- autoRotate: boolean;
1424
- } | undefined;
1425
- };
1426
- scope: "record" | "field" | "table" | "database";
1427
- deterministicEncryption: boolean;
1428
- searchableEncryption: boolean;
1429
- } | undefined;
1430
1244
  readonly columnName?: string | undefined;
1431
1245
  readonly searchable?: boolean | undefined;
1432
1246
  readonly unique?: boolean | undefined;
@@ -1435,7 +1249,6 @@ declare const SysRecordShare: Omit<{
1435
1249
  readonly scale?: number | undefined;
1436
1250
  readonly reference?: string | undefined;
1437
1251
  readonly referenceFilters?: string[] | undefined;
1438
- readonly writeRequiresMasterRead?: boolean | undefined;
1439
1252
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1440
1253
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1441
1254
  readonly inlineTitle?: string | undefined;
@@ -1460,22 +1273,8 @@ declare const SysRecordShare: Omit<{
1460
1273
  relationshipField?: string | undefined;
1461
1274
  } | undefined;
1462
1275
  readonly language?: string | undefined;
1463
- readonly lineNumbers?: boolean | undefined;
1464
1276
  readonly maxRating?: number | undefined;
1465
- readonly allowHalf?: boolean | undefined;
1466
- readonly displayMap?: boolean | undefined;
1467
- readonly allowGeocoding?: boolean | undefined;
1468
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
1469
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
1470
- readonly allowAlpha?: boolean | undefined;
1471
- readonly presetColors?: string[] | undefined;
1472
1277
  readonly step?: number | undefined;
1473
- readonly showValue?: boolean | undefined;
1474
- readonly marks?: Record<string, string> | undefined;
1475
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
1476
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
1477
- readonly displayValue?: boolean | undefined;
1478
- readonly allowScanning?: boolean | undefined;
1479
1278
  readonly currencyConfig?: {
1480
1279
  precision: number;
1481
1280
  currencyMode: "fixed" | "dynamic";
@@ -1529,29 +1328,7 @@ declare const SysRecordShare: Omit<{
1529
1328
  } | undefined;
1530
1329
  maxVersions?: number | undefined;
1531
1330
  } | undefined;
1532
- readonly maskingRule?: {
1533
- field: string;
1534
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
1535
- preserveFormat: boolean;
1536
- preserveLength: boolean;
1537
- pattern?: string | undefined;
1538
- roles?: string[] | undefined;
1539
- exemptRoles?: string[] | undefined;
1540
- } | undefined;
1541
- readonly auditTrail?: boolean | undefined;
1542
- readonly cached?: {
1543
- enabled: boolean;
1544
- ttl: number;
1545
- invalidateOn: string[];
1546
- } | undefined;
1547
- readonly dataQuality?: {
1548
- uniqueness: boolean;
1549
- completeness: number;
1550
- accuracy?: {
1551
- source: string;
1552
- threshold: number;
1553
- } | undefined;
1554
- } | undefined;
1331
+ readonly trackHistory?: boolean | undefined;
1555
1332
  readonly visibleWhen?: {
1556
1333
  dialect: "cel" | "js" | "cron" | "template";
1557
1334
  source?: string | undefined;
@@ -1590,7 +1367,6 @@ declare const SysRecordShare: Omit<{
1590
1367
  } | undefined;
1591
1368
  readonly sortable?: boolean | undefined;
1592
1369
  readonly inlineHelpText?: string | undefined;
1593
- readonly trackFeedHistory?: boolean | undefined;
1594
1370
  readonly caseSensitive?: boolean | undefined;
1595
1371
  readonly autonumberFormat?: string | undefined;
1596
1372
  readonly index?: boolean | undefined;
@@ -1612,7 +1388,6 @@ declare const SysRecordShare: Omit<{
1612
1388
  readonly required?: boolean | undefined;
1613
1389
  readonly multiple?: boolean | undefined;
1614
1390
  readonly dependencies?: string[] | undefined;
1615
- readonly theme?: string | undefined;
1616
1391
  readonly externalId?: boolean | undefined;
1617
1392
  readonly defaultValue?: unknown;
1618
1393
  readonly group?: string | undefined;
@@ -1620,23 +1395,6 @@ declare const SysRecordShare: Omit<{
1620
1395
  readonly system?: boolean | undefined;
1621
1396
  readonly min?: number | undefined;
1622
1397
  readonly max?: number | undefined;
1623
- readonly encryptionConfig?: {
1624
- enabled: boolean;
1625
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
1626
- keyManagement: {
1627
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
1628
- keyId?: string | undefined;
1629
- rotationPolicy?: {
1630
- enabled: boolean;
1631
- frequencyDays: number;
1632
- retainOldVersions: number;
1633
- autoRotate: boolean;
1634
- } | undefined;
1635
- };
1636
- scope: "record" | "field" | "table" | "database";
1637
- deterministicEncryption: boolean;
1638
- searchableEncryption: boolean;
1639
- } | undefined;
1640
1398
  readonly columnName?: string | undefined;
1641
1399
  readonly searchable?: boolean | undefined;
1642
1400
  readonly unique?: boolean | undefined;
@@ -1645,7 +1403,6 @@ declare const SysRecordShare: Omit<{
1645
1403
  readonly scale?: number | undefined;
1646
1404
  readonly reference?: string | undefined;
1647
1405
  readonly referenceFilters?: string[] | undefined;
1648
- readonly writeRequiresMasterRead?: boolean | undefined;
1649
1406
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1650
1407
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1651
1408
  readonly inlineTitle?: string | undefined;
@@ -1670,22 +1427,8 @@ declare const SysRecordShare: Omit<{
1670
1427
  relationshipField?: string | undefined;
1671
1428
  } | undefined;
1672
1429
  readonly language?: string | undefined;
1673
- readonly lineNumbers?: boolean | undefined;
1674
1430
  readonly maxRating?: number | undefined;
1675
- readonly allowHalf?: boolean | undefined;
1676
- readonly displayMap?: boolean | undefined;
1677
- readonly allowGeocoding?: boolean | undefined;
1678
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
1679
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
1680
- readonly allowAlpha?: boolean | undefined;
1681
- readonly presetColors?: string[] | undefined;
1682
1431
  readonly step?: number | undefined;
1683
- readonly showValue?: boolean | undefined;
1684
- readonly marks?: Record<string, string> | undefined;
1685
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
1686
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
1687
- readonly displayValue?: boolean | undefined;
1688
- readonly allowScanning?: boolean | undefined;
1689
1432
  readonly currencyConfig?: {
1690
1433
  precision: number;
1691
1434
  currencyMode: "fixed" | "dynamic";
@@ -1739,29 +1482,7 @@ declare const SysRecordShare: Omit<{
1739
1482
  } | undefined;
1740
1483
  maxVersions?: number | undefined;
1741
1484
  } | undefined;
1742
- readonly maskingRule?: {
1743
- field: string;
1744
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
1745
- preserveFormat: boolean;
1746
- preserveLength: boolean;
1747
- pattern?: string | undefined;
1748
- roles?: string[] | undefined;
1749
- exemptRoles?: string[] | undefined;
1750
- } | undefined;
1751
- readonly auditTrail?: boolean | undefined;
1752
- readonly cached?: {
1753
- enabled: boolean;
1754
- ttl: number;
1755
- invalidateOn: string[];
1756
- } | undefined;
1757
- readonly dataQuality?: {
1758
- uniqueness: boolean;
1759
- completeness: number;
1760
- accuracy?: {
1761
- source: string;
1762
- threshold: number;
1763
- } | undefined;
1764
- } | undefined;
1485
+ readonly trackHistory?: boolean | undefined;
1765
1486
  readonly visibleWhen?: {
1766
1487
  dialect: "cel" | "js" | "cron" | "template";
1767
1488
  source?: string | undefined;
@@ -1800,7 +1521,6 @@ declare const SysRecordShare: Omit<{
1800
1521
  } | undefined;
1801
1522
  readonly sortable?: boolean | undefined;
1802
1523
  readonly inlineHelpText?: string | undefined;
1803
- readonly trackFeedHistory?: boolean | undefined;
1804
1524
  readonly caseSensitive?: boolean | undefined;
1805
1525
  readonly autonumberFormat?: string | undefined;
1806
1526
  readonly index?: boolean | undefined;
@@ -1822,7 +1542,6 @@ declare const SysRecordShare: Omit<{
1822
1542
  readonly required?: boolean | undefined;
1823
1543
  readonly multiple?: boolean | undefined;
1824
1544
  readonly dependencies?: string[] | undefined;
1825
- readonly theme?: string | undefined;
1826
1545
  readonly externalId?: boolean | undefined;
1827
1546
  readonly defaultValue?: unknown;
1828
1547
  readonly group?: string | undefined;
@@ -1830,23 +1549,6 @@ declare const SysRecordShare: Omit<{
1830
1549
  readonly system?: boolean | undefined;
1831
1550
  readonly min?: number | undefined;
1832
1551
  readonly max?: number | undefined;
1833
- readonly encryptionConfig?: {
1834
- enabled: boolean;
1835
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
1836
- keyManagement: {
1837
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
1838
- keyId?: string | undefined;
1839
- rotationPolicy?: {
1840
- enabled: boolean;
1841
- frequencyDays: number;
1842
- retainOldVersions: number;
1843
- autoRotate: boolean;
1844
- } | undefined;
1845
- };
1846
- scope: "record" | "field" | "table" | "database";
1847
- deterministicEncryption: boolean;
1848
- searchableEncryption: boolean;
1849
- } | undefined;
1850
1552
  readonly columnName?: string | undefined;
1851
1553
  readonly searchable?: boolean | undefined;
1852
1554
  readonly unique?: boolean | undefined;
@@ -1855,7 +1557,6 @@ declare const SysRecordShare: Omit<{
1855
1557
  readonly scale?: number | undefined;
1856
1558
  readonly reference?: string | undefined;
1857
1559
  readonly referenceFilters?: string[] | undefined;
1858
- readonly writeRequiresMasterRead?: boolean | undefined;
1859
1560
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1860
1561
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1861
1562
  readonly inlineTitle?: string | undefined;
@@ -1880,22 +1581,8 @@ declare const SysRecordShare: Omit<{
1880
1581
  relationshipField?: string | undefined;
1881
1582
  } | undefined;
1882
1583
  readonly language?: string | undefined;
1883
- readonly lineNumbers?: boolean | undefined;
1884
1584
  readonly maxRating?: number | undefined;
1885
- readonly allowHalf?: boolean | undefined;
1886
- readonly displayMap?: boolean | undefined;
1887
- readonly allowGeocoding?: boolean | undefined;
1888
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
1889
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
1890
- readonly allowAlpha?: boolean | undefined;
1891
- readonly presetColors?: string[] | undefined;
1892
1585
  readonly step?: number | undefined;
1893
- readonly showValue?: boolean | undefined;
1894
- readonly marks?: Record<string, string> | undefined;
1895
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
1896
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
1897
- readonly displayValue?: boolean | undefined;
1898
- readonly allowScanning?: boolean | undefined;
1899
1586
  readonly currencyConfig?: {
1900
1587
  precision: number;
1901
1588
  currencyMode: "fixed" | "dynamic";
@@ -1949,29 +1636,7 @@ declare const SysRecordShare: Omit<{
1949
1636
  } | undefined;
1950
1637
  maxVersions?: number | undefined;
1951
1638
  } | undefined;
1952
- readonly maskingRule?: {
1953
- field: string;
1954
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
1955
- preserveFormat: boolean;
1956
- preserveLength: boolean;
1957
- pattern?: string | undefined;
1958
- roles?: string[] | undefined;
1959
- exemptRoles?: string[] | undefined;
1960
- } | undefined;
1961
- readonly auditTrail?: boolean | undefined;
1962
- readonly cached?: {
1963
- enabled: boolean;
1964
- ttl: number;
1965
- invalidateOn: string[];
1966
- } | undefined;
1967
- readonly dataQuality?: {
1968
- uniqueness: boolean;
1969
- completeness: number;
1970
- accuracy?: {
1971
- source: string;
1972
- threshold: number;
1973
- } | undefined;
1974
- } | undefined;
1639
+ readonly trackHistory?: boolean | undefined;
1975
1640
  readonly visibleWhen?: {
1976
1641
  dialect: "cel" | "js" | "cron" | "template";
1977
1642
  source?: string | undefined;
@@ -2010,7 +1675,6 @@ declare const SysRecordShare: Omit<{
2010
1675
  } | undefined;
2011
1676
  readonly sortable?: boolean | undefined;
2012
1677
  readonly inlineHelpText?: string | undefined;
2013
- readonly trackFeedHistory?: boolean | undefined;
2014
1678
  readonly caseSensitive?: boolean | undefined;
2015
1679
  readonly autonumberFormat?: string | undefined;
2016
1680
  readonly index?: boolean | undefined;
@@ -2032,7 +1696,6 @@ declare const SysRecordShare: Omit<{
2032
1696
  readonly required?: boolean | undefined;
2033
1697
  readonly multiple?: boolean | undefined;
2034
1698
  readonly dependencies?: string[] | undefined;
2035
- readonly theme?: string | undefined;
2036
1699
  readonly externalId?: boolean | undefined;
2037
1700
  readonly defaultValue?: unknown;
2038
1701
  readonly group?: string | undefined;
@@ -2040,23 +1703,6 @@ declare const SysRecordShare: Omit<{
2040
1703
  readonly system?: boolean | undefined;
2041
1704
  readonly min?: number | undefined;
2042
1705
  readonly max?: number | undefined;
2043
- readonly encryptionConfig?: {
2044
- enabled: boolean;
2045
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
2046
- keyManagement: {
2047
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
2048
- keyId?: string | undefined;
2049
- rotationPolicy?: {
2050
- enabled: boolean;
2051
- frequencyDays: number;
2052
- retainOldVersions: number;
2053
- autoRotate: boolean;
2054
- } | undefined;
2055
- };
2056
- scope: "record" | "field" | "table" | "database";
2057
- deterministicEncryption: boolean;
2058
- searchableEncryption: boolean;
2059
- } | undefined;
2060
1706
  readonly columnName?: string | undefined;
2061
1707
  readonly searchable?: boolean | undefined;
2062
1708
  readonly unique?: boolean | undefined;
@@ -2065,7 +1711,6 @@ declare const SysRecordShare: Omit<{
2065
1711
  readonly scale?: number | undefined;
2066
1712
  readonly reference?: string | undefined;
2067
1713
  readonly referenceFilters?: string[] | undefined;
2068
- readonly writeRequiresMasterRead?: boolean | undefined;
2069
1714
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2070
1715
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2071
1716
  readonly inlineTitle?: string | undefined;
@@ -2090,22 +1735,8 @@ declare const SysRecordShare: Omit<{
2090
1735
  relationshipField?: string | undefined;
2091
1736
  } | undefined;
2092
1737
  readonly language?: string | undefined;
2093
- readonly lineNumbers?: boolean | undefined;
2094
1738
  readonly maxRating?: number | undefined;
2095
- readonly allowHalf?: boolean | undefined;
2096
- readonly displayMap?: boolean | undefined;
2097
- readonly allowGeocoding?: boolean | undefined;
2098
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
2099
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
2100
- readonly allowAlpha?: boolean | undefined;
2101
- readonly presetColors?: string[] | undefined;
2102
1739
  readonly step?: number | undefined;
2103
- readonly showValue?: boolean | undefined;
2104
- readonly marks?: Record<string, string> | undefined;
2105
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
2106
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
2107
- readonly displayValue?: boolean | undefined;
2108
- readonly allowScanning?: boolean | undefined;
2109
1740
  readonly currencyConfig?: {
2110
1741
  precision: number;
2111
1742
  currencyMode: "fixed" | "dynamic";
@@ -2159,29 +1790,7 @@ declare const SysRecordShare: Omit<{
2159
1790
  } | undefined;
2160
1791
  maxVersions?: number | undefined;
2161
1792
  } | undefined;
2162
- readonly maskingRule?: {
2163
- field: string;
2164
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
2165
- preserveFormat: boolean;
2166
- preserveLength: boolean;
2167
- pattern?: string | undefined;
2168
- roles?: string[] | undefined;
2169
- exemptRoles?: string[] | undefined;
2170
- } | undefined;
2171
- readonly auditTrail?: boolean | undefined;
2172
- readonly cached?: {
2173
- enabled: boolean;
2174
- ttl: number;
2175
- invalidateOn: string[];
2176
- } | undefined;
2177
- readonly dataQuality?: {
2178
- uniqueness: boolean;
2179
- completeness: number;
2180
- accuracy?: {
2181
- source: string;
2182
- threshold: number;
2183
- } | undefined;
2184
- } | undefined;
1793
+ readonly trackHistory?: boolean | undefined;
2185
1794
  readonly visibleWhen?: {
2186
1795
  dialect: "cel" | "js" | "cron" | "template";
2187
1796
  source?: string | undefined;
@@ -2220,7 +1829,6 @@ declare const SysRecordShare: Omit<{
2220
1829
  } | undefined;
2221
1830
  readonly sortable?: boolean | undefined;
2222
1831
  readonly inlineHelpText?: string | undefined;
2223
- readonly trackFeedHistory?: boolean | undefined;
2224
1832
  readonly caseSensitive?: boolean | undefined;
2225
1833
  readonly autonumberFormat?: string | undefined;
2226
1834
  readonly index?: boolean | undefined;
@@ -2242,7 +1850,6 @@ declare const SysRecordShare: Omit<{
2242
1850
  readonly required?: boolean | undefined;
2243
1851
  readonly multiple?: boolean | undefined;
2244
1852
  readonly dependencies?: string[] | undefined;
2245
- readonly theme?: string | undefined;
2246
1853
  readonly externalId?: boolean | undefined;
2247
1854
  readonly defaultValue?: unknown;
2248
1855
  readonly group?: string | undefined;
@@ -2250,23 +1857,6 @@ declare const SysRecordShare: Omit<{
2250
1857
  readonly system?: boolean | undefined;
2251
1858
  readonly min?: number | undefined;
2252
1859
  readonly max?: number | undefined;
2253
- readonly encryptionConfig?: {
2254
- enabled: boolean;
2255
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
2256
- keyManagement: {
2257
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
2258
- keyId?: string | undefined;
2259
- rotationPolicy?: {
2260
- enabled: boolean;
2261
- frequencyDays: number;
2262
- retainOldVersions: number;
2263
- autoRotate: boolean;
2264
- } | undefined;
2265
- };
2266
- scope: "record" | "field" | "table" | "database";
2267
- deterministicEncryption: boolean;
2268
- searchableEncryption: boolean;
2269
- } | undefined;
2270
1860
  readonly columnName?: string | undefined;
2271
1861
  readonly searchable?: boolean | undefined;
2272
1862
  readonly unique?: boolean | undefined;
@@ -2275,7 +1865,6 @@ declare const SysRecordShare: Omit<{
2275
1865
  readonly scale?: number | undefined;
2276
1866
  readonly reference?: string | undefined;
2277
1867
  readonly referenceFilters?: string[] | undefined;
2278
- readonly writeRequiresMasterRead?: boolean | undefined;
2279
1868
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2280
1869
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2281
1870
  readonly inlineTitle?: string | undefined;
@@ -2300,22 +1889,8 @@ declare const SysRecordShare: Omit<{
2300
1889
  relationshipField?: string | undefined;
2301
1890
  } | undefined;
2302
1891
  readonly language?: string | undefined;
2303
- readonly lineNumbers?: boolean | undefined;
2304
1892
  readonly maxRating?: number | undefined;
2305
- readonly allowHalf?: boolean | undefined;
2306
- readonly displayMap?: boolean | undefined;
2307
- readonly allowGeocoding?: boolean | undefined;
2308
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
2309
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
2310
- readonly allowAlpha?: boolean | undefined;
2311
- readonly presetColors?: string[] | undefined;
2312
1893
  readonly step?: number | undefined;
2313
- readonly showValue?: boolean | undefined;
2314
- readonly marks?: Record<string, string> | undefined;
2315
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
2316
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
2317
- readonly displayValue?: boolean | undefined;
2318
- readonly allowScanning?: boolean | undefined;
2319
1894
  readonly currencyConfig?: {
2320
1895
  precision: number;
2321
1896
  currencyMode: "fixed" | "dynamic";
@@ -2369,29 +1944,7 @@ declare const SysRecordShare: Omit<{
2369
1944
  } | undefined;
2370
1945
  maxVersions?: number | undefined;
2371
1946
  } | undefined;
2372
- readonly maskingRule?: {
2373
- field: string;
2374
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
2375
- preserveFormat: boolean;
2376
- preserveLength: boolean;
2377
- pattern?: string | undefined;
2378
- roles?: string[] | undefined;
2379
- exemptRoles?: string[] | undefined;
2380
- } | undefined;
2381
- readonly auditTrail?: boolean | undefined;
2382
- readonly cached?: {
2383
- enabled: boolean;
2384
- ttl: number;
2385
- invalidateOn: string[];
2386
- } | undefined;
2387
- readonly dataQuality?: {
2388
- uniqueness: boolean;
2389
- completeness: number;
2390
- accuracy?: {
2391
- source: string;
2392
- threshold: number;
2393
- } | undefined;
2394
- } | undefined;
1947
+ readonly trackHistory?: boolean | undefined;
2395
1948
  readonly visibleWhen?: {
2396
1949
  dialect: "cel" | "js" | "cron" | "template";
2397
1950
  source?: string | undefined;
@@ -2430,7 +1983,6 @@ declare const SysRecordShare: Omit<{
2430
1983
  } | undefined;
2431
1984
  readonly sortable?: boolean | undefined;
2432
1985
  readonly inlineHelpText?: string | undefined;
2433
- readonly trackFeedHistory?: boolean | undefined;
2434
1986
  readonly caseSensitive?: boolean | undefined;
2435
1987
  readonly autonumberFormat?: string | undefined;
2436
1988
  readonly index?: boolean | undefined;
@@ -2452,7 +2004,6 @@ declare const SysRecordShare: Omit<{
2452
2004
  readonly required?: boolean | undefined;
2453
2005
  readonly multiple?: boolean | undefined;
2454
2006
  readonly dependencies?: string[] | undefined;
2455
- readonly theme?: string | undefined;
2456
2007
  readonly externalId?: boolean | undefined;
2457
2008
  readonly defaultValue?: unknown;
2458
2009
  readonly group?: string | undefined;
@@ -2460,23 +2011,6 @@ declare const SysRecordShare: Omit<{
2460
2011
  readonly system?: boolean | undefined;
2461
2012
  readonly min?: number | undefined;
2462
2013
  readonly max?: number | undefined;
2463
- readonly encryptionConfig?: {
2464
- enabled: boolean;
2465
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
2466
- keyManagement: {
2467
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
2468
- keyId?: string | undefined;
2469
- rotationPolicy?: {
2470
- enabled: boolean;
2471
- frequencyDays: number;
2472
- retainOldVersions: number;
2473
- autoRotate: boolean;
2474
- } | undefined;
2475
- };
2476
- scope: "record" | "field" | "table" | "database";
2477
- deterministicEncryption: boolean;
2478
- searchableEncryption: boolean;
2479
- } | undefined;
2480
2014
  readonly columnName?: string | undefined;
2481
2015
  readonly searchable?: boolean | undefined;
2482
2016
  readonly unique?: boolean | undefined;
@@ -2485,7 +2019,6 @@ declare const SysRecordShare: Omit<{
2485
2019
  readonly scale?: number | undefined;
2486
2020
  readonly reference?: string | undefined;
2487
2021
  readonly referenceFilters?: string[] | undefined;
2488
- readonly writeRequiresMasterRead?: boolean | undefined;
2489
2022
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2490
2023
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2491
2024
  readonly inlineTitle?: string | undefined;
@@ -2510,22 +2043,8 @@ declare const SysRecordShare: Omit<{
2510
2043
  relationshipField?: string | undefined;
2511
2044
  } | undefined;
2512
2045
  readonly language?: string | undefined;
2513
- readonly lineNumbers?: boolean | undefined;
2514
2046
  readonly maxRating?: number | undefined;
2515
- readonly allowHalf?: boolean | undefined;
2516
- readonly displayMap?: boolean | undefined;
2517
- readonly allowGeocoding?: boolean | undefined;
2518
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
2519
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
2520
- readonly allowAlpha?: boolean | undefined;
2521
- readonly presetColors?: string[] | undefined;
2522
2047
  readonly step?: number | undefined;
2523
- readonly showValue?: boolean | undefined;
2524
- readonly marks?: Record<string, string> | undefined;
2525
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
2526
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
2527
- readonly displayValue?: boolean | undefined;
2528
- readonly allowScanning?: boolean | undefined;
2529
2048
  readonly currencyConfig?: {
2530
2049
  precision: number;
2531
2050
  currencyMode: "fixed" | "dynamic";
@@ -2579,29 +2098,7 @@ declare const SysRecordShare: Omit<{
2579
2098
  } | undefined;
2580
2099
  maxVersions?: number | undefined;
2581
2100
  } | undefined;
2582
- readonly maskingRule?: {
2583
- field: string;
2584
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
2585
- preserveFormat: boolean;
2586
- preserveLength: boolean;
2587
- pattern?: string | undefined;
2588
- roles?: string[] | undefined;
2589
- exemptRoles?: string[] | undefined;
2590
- } | undefined;
2591
- readonly auditTrail?: boolean | undefined;
2592
- readonly cached?: {
2593
- enabled: boolean;
2594
- ttl: number;
2595
- invalidateOn: string[];
2596
- } | undefined;
2597
- readonly dataQuality?: {
2598
- uniqueness: boolean;
2599
- completeness: number;
2600
- accuracy?: {
2601
- source: string;
2602
- threshold: number;
2603
- } | undefined;
2604
- } | undefined;
2101
+ readonly trackHistory?: boolean | undefined;
2605
2102
  readonly visibleWhen?: {
2606
2103
  dialect: "cel" | "js" | "cron" | "template";
2607
2104
  source?: string | undefined;
@@ -2640,7 +2137,6 @@ declare const SysRecordShare: Omit<{
2640
2137
  } | undefined;
2641
2138
  readonly sortable?: boolean | undefined;
2642
2139
  readonly inlineHelpText?: string | undefined;
2643
- readonly trackFeedHistory?: boolean | undefined;
2644
2140
  readonly caseSensitive?: boolean | undefined;
2645
2141
  readonly autonumberFormat?: string | undefined;
2646
2142
  readonly index?: boolean | undefined;
@@ -2662,7 +2158,6 @@ declare const SysRecordShare: Omit<{
2662
2158
  readonly required?: boolean | undefined;
2663
2159
  readonly multiple?: boolean | undefined;
2664
2160
  readonly dependencies?: string[] | undefined;
2665
- readonly theme?: string | undefined;
2666
2161
  readonly externalId?: boolean | undefined;
2667
2162
  readonly defaultValue?: unknown;
2668
2163
  readonly group?: string | undefined;
@@ -2670,23 +2165,6 @@ declare const SysRecordShare: Omit<{
2670
2165
  readonly system?: boolean | undefined;
2671
2166
  readonly min?: number | undefined;
2672
2167
  readonly max?: number | undefined;
2673
- readonly encryptionConfig?: {
2674
- enabled: boolean;
2675
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
2676
- keyManagement: {
2677
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
2678
- keyId?: string | undefined;
2679
- rotationPolicy?: {
2680
- enabled: boolean;
2681
- frequencyDays: number;
2682
- retainOldVersions: number;
2683
- autoRotate: boolean;
2684
- } | undefined;
2685
- };
2686
- scope: "record" | "field" | "table" | "database";
2687
- deterministicEncryption: boolean;
2688
- searchableEncryption: boolean;
2689
- } | undefined;
2690
2168
  readonly columnName?: string | undefined;
2691
2169
  readonly searchable?: boolean | undefined;
2692
2170
  readonly unique?: boolean | undefined;
@@ -2695,7 +2173,6 @@ declare const SysRecordShare: Omit<{
2695
2173
  readonly scale?: number | undefined;
2696
2174
  reference: string;
2697
2175
  readonly referenceFilters?: string[] | undefined;
2698
- readonly writeRequiresMasterRead?: boolean | undefined;
2699
2176
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2700
2177
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2701
2178
  readonly inlineTitle?: string | undefined;
@@ -2720,22 +2197,8 @@ declare const SysRecordShare: Omit<{
2720
2197
  relationshipField?: string | undefined;
2721
2198
  } | undefined;
2722
2199
  readonly language?: string | undefined;
2723
- readonly lineNumbers?: boolean | undefined;
2724
2200
  readonly maxRating?: number | undefined;
2725
- readonly allowHalf?: boolean | undefined;
2726
- readonly displayMap?: boolean | undefined;
2727
- readonly allowGeocoding?: boolean | undefined;
2728
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
2729
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
2730
- readonly allowAlpha?: boolean | undefined;
2731
- readonly presetColors?: string[] | undefined;
2732
2201
  readonly step?: number | undefined;
2733
- readonly showValue?: boolean | undefined;
2734
- readonly marks?: Record<string, string> | undefined;
2735
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
2736
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
2737
- readonly displayValue?: boolean | undefined;
2738
- readonly allowScanning?: boolean | undefined;
2739
2202
  readonly currencyConfig?: {
2740
2203
  precision: number;
2741
2204
  currencyMode: "fixed" | "dynamic";
@@ -2789,29 +2252,7 @@ declare const SysRecordShare: Omit<{
2789
2252
  } | undefined;
2790
2253
  maxVersions?: number | undefined;
2791
2254
  } | undefined;
2792
- readonly maskingRule?: {
2793
- field: string;
2794
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
2795
- preserveFormat: boolean;
2796
- preserveLength: boolean;
2797
- pattern?: string | undefined;
2798
- roles?: string[] | undefined;
2799
- exemptRoles?: string[] | undefined;
2800
- } | undefined;
2801
- readonly auditTrail?: boolean | undefined;
2802
- readonly cached?: {
2803
- enabled: boolean;
2804
- ttl: number;
2805
- invalidateOn: string[];
2806
- } | undefined;
2807
- readonly dataQuality?: {
2808
- uniqueness: boolean;
2809
- completeness: number;
2810
- accuracy?: {
2811
- source: string;
2812
- threshold: number;
2813
- } | undefined;
2814
- } | undefined;
2255
+ readonly trackHistory?: boolean | undefined;
2815
2256
  readonly visibleWhen?: {
2816
2257
  dialect: "cel" | "js" | "cron" | "template";
2817
2258
  source?: string | undefined;
@@ -2850,7 +2291,6 @@ declare const SysRecordShare: Omit<{
2850
2291
  } | undefined;
2851
2292
  readonly sortable?: boolean | undefined;
2852
2293
  readonly inlineHelpText?: string | undefined;
2853
- readonly trackFeedHistory?: boolean | undefined;
2854
2294
  readonly caseSensitive?: boolean | undefined;
2855
2295
  readonly autonumberFormat?: string | undefined;
2856
2296
  readonly index?: boolean | undefined;
@@ -2872,7 +2312,6 @@ declare const SysRecordShare: Omit<{
2872
2312
  readonly required?: boolean | undefined;
2873
2313
  readonly multiple?: boolean | undefined;
2874
2314
  readonly dependencies?: string[] | undefined;
2875
- readonly theme?: string | undefined;
2876
2315
  readonly externalId?: boolean | undefined;
2877
2316
  readonly defaultValue?: unknown;
2878
2317
  readonly group?: string | undefined;
@@ -2880,23 +2319,6 @@ declare const SysRecordShare: Omit<{
2880
2319
  readonly system?: boolean | undefined;
2881
2320
  readonly min?: number | undefined;
2882
2321
  readonly max?: number | undefined;
2883
- readonly encryptionConfig?: {
2884
- enabled: boolean;
2885
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
2886
- keyManagement: {
2887
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
2888
- keyId?: string | undefined;
2889
- rotationPolicy?: {
2890
- enabled: boolean;
2891
- frequencyDays: number;
2892
- retainOldVersions: number;
2893
- autoRotate: boolean;
2894
- } | undefined;
2895
- };
2896
- scope: "record" | "field" | "table" | "database";
2897
- deterministicEncryption: boolean;
2898
- searchableEncryption: boolean;
2899
- } | undefined;
2900
2322
  readonly columnName?: string | undefined;
2901
2323
  readonly searchable?: boolean | undefined;
2902
2324
  readonly unique?: boolean | undefined;
@@ -2905,7 +2327,6 @@ declare const SysRecordShare: Omit<{
2905
2327
  readonly scale?: number | undefined;
2906
2328
  readonly reference?: string | undefined;
2907
2329
  readonly referenceFilters?: string[] | undefined;
2908
- readonly writeRequiresMasterRead?: boolean | undefined;
2909
2330
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2910
2331
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2911
2332
  readonly inlineTitle?: string | undefined;
@@ -2930,22 +2351,8 @@ declare const SysRecordShare: Omit<{
2930
2351
  relationshipField?: string | undefined;
2931
2352
  } | undefined;
2932
2353
  readonly language?: string | undefined;
2933
- readonly lineNumbers?: boolean | undefined;
2934
2354
  readonly maxRating?: number | undefined;
2935
- readonly allowHalf?: boolean | undefined;
2936
- readonly displayMap?: boolean | undefined;
2937
- readonly allowGeocoding?: boolean | undefined;
2938
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
2939
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
2940
- readonly allowAlpha?: boolean | undefined;
2941
- readonly presetColors?: string[] | undefined;
2942
2355
  readonly step?: number | undefined;
2943
- readonly showValue?: boolean | undefined;
2944
- readonly marks?: Record<string, string> | undefined;
2945
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
2946
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
2947
- readonly displayValue?: boolean | undefined;
2948
- readonly allowScanning?: boolean | undefined;
2949
2356
  readonly currencyConfig?: {
2950
2357
  precision: number;
2951
2358
  currencyMode: "fixed" | "dynamic";
@@ -2999,29 +2406,7 @@ declare const SysRecordShare: Omit<{
2999
2406
  } | undefined;
3000
2407
  maxVersions?: number | undefined;
3001
2408
  } | undefined;
3002
- readonly maskingRule?: {
3003
- field: string;
3004
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
3005
- preserveFormat: boolean;
3006
- preserveLength: boolean;
3007
- pattern?: string | undefined;
3008
- roles?: string[] | undefined;
3009
- exemptRoles?: string[] | undefined;
3010
- } | undefined;
3011
- readonly auditTrail?: boolean | undefined;
3012
- readonly cached?: {
3013
- enabled: boolean;
3014
- ttl: number;
3015
- invalidateOn: string[];
3016
- } | undefined;
3017
- readonly dataQuality?: {
3018
- uniqueness: boolean;
3019
- completeness: number;
3020
- accuracy?: {
3021
- source: string;
3022
- threshold: number;
3023
- } | undefined;
3024
- } | undefined;
2409
+ readonly trackHistory?: boolean | undefined;
3025
2410
  readonly visibleWhen?: {
3026
2411
  dialect: "cel" | "js" | "cron" | "template";
3027
2412
  source?: string | undefined;
@@ -3060,7 +2445,6 @@ declare const SysRecordShare: Omit<{
3060
2445
  } | undefined;
3061
2446
  readonly sortable?: boolean | undefined;
3062
2447
  readonly inlineHelpText?: string | undefined;
3063
- readonly trackFeedHistory?: boolean | undefined;
3064
2448
  readonly caseSensitive?: boolean | undefined;
3065
2449
  readonly autonumberFormat?: string | undefined;
3066
2450
  readonly index?: boolean | undefined;
@@ -3082,7 +2466,6 @@ declare const SysRecordShare: Omit<{
3082
2466
  readonly required?: boolean | undefined;
3083
2467
  readonly multiple?: boolean | undefined;
3084
2468
  readonly dependencies?: string[] | undefined;
3085
- readonly theme?: string | undefined;
3086
2469
  readonly externalId?: boolean | undefined;
3087
2470
  readonly defaultValue?: unknown;
3088
2471
  readonly group?: string | undefined;
@@ -3090,23 +2473,6 @@ declare const SysRecordShare: Omit<{
3090
2473
  readonly system?: boolean | undefined;
3091
2474
  readonly min?: number | undefined;
3092
2475
  readonly max?: number | undefined;
3093
- readonly encryptionConfig?: {
3094
- enabled: boolean;
3095
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
3096
- keyManagement: {
3097
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
3098
- keyId?: string | undefined;
3099
- rotationPolicy?: {
3100
- enabled: boolean;
3101
- frequencyDays: number;
3102
- retainOldVersions: number;
3103
- autoRotate: boolean;
3104
- } | undefined;
3105
- };
3106
- scope: "record" | "field" | "table" | "database";
3107
- deterministicEncryption: boolean;
3108
- searchableEncryption: boolean;
3109
- } | undefined;
3110
2476
  readonly columnName?: string | undefined;
3111
2477
  readonly searchable?: boolean | undefined;
3112
2478
  readonly unique?: boolean | undefined;
@@ -3115,7 +2481,6 @@ declare const SysRecordShare: Omit<{
3115
2481
  readonly scale?: number | undefined;
3116
2482
  readonly reference?: string | undefined;
3117
2483
  readonly referenceFilters?: string[] | undefined;
3118
- readonly writeRequiresMasterRead?: boolean | undefined;
3119
2484
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
3120
2485
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
3121
2486
  readonly inlineTitle?: string | undefined;
@@ -3140,22 +2505,8 @@ declare const SysRecordShare: Omit<{
3140
2505
  relationshipField?: string | undefined;
3141
2506
  } | undefined;
3142
2507
  readonly language?: string | undefined;
3143
- readonly lineNumbers?: boolean | undefined;
3144
2508
  readonly maxRating?: number | undefined;
3145
- readonly allowHalf?: boolean | undefined;
3146
- readonly displayMap?: boolean | undefined;
3147
- readonly allowGeocoding?: boolean | undefined;
3148
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
3149
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
3150
- readonly allowAlpha?: boolean | undefined;
3151
- readonly presetColors?: string[] | undefined;
3152
2509
  readonly step?: number | undefined;
3153
- readonly showValue?: boolean | undefined;
3154
- readonly marks?: Record<string, string> | undefined;
3155
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
3156
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
3157
- readonly displayValue?: boolean | undefined;
3158
- readonly allowScanning?: boolean | undefined;
3159
2510
  readonly currencyConfig?: {
3160
2511
  precision: number;
3161
2512
  currencyMode: "fixed" | "dynamic";
@@ -3209,29 +2560,7 @@ declare const SysRecordShare: Omit<{
3209
2560
  } | undefined;
3210
2561
  maxVersions?: number | undefined;
3211
2562
  } | undefined;
3212
- readonly maskingRule?: {
3213
- field: string;
3214
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
3215
- preserveFormat: boolean;
3216
- preserveLength: boolean;
3217
- pattern?: string | undefined;
3218
- roles?: string[] | undefined;
3219
- exemptRoles?: string[] | undefined;
3220
- } | undefined;
3221
- readonly auditTrail?: boolean | undefined;
3222
- readonly cached?: {
3223
- enabled: boolean;
3224
- ttl: number;
3225
- invalidateOn: string[];
3226
- } | undefined;
3227
- readonly dataQuality?: {
3228
- uniqueness: boolean;
3229
- completeness: number;
3230
- accuracy?: {
3231
- source: string;
3232
- threshold: number;
3233
- } | undefined;
3234
- } | undefined;
2563
+ readonly trackHistory?: boolean | undefined;
3235
2564
  readonly visibleWhen?: {
3236
2565
  dialect: "cel" | "js" | "cron" | "template";
3237
2566
  source?: string | undefined;
@@ -3270,7 +2599,6 @@ declare const SysRecordShare: Omit<{
3270
2599
  } | undefined;
3271
2600
  readonly sortable?: boolean | undefined;
3272
2601
  readonly inlineHelpText?: string | undefined;
3273
- readonly trackFeedHistory?: boolean | undefined;
3274
2602
  readonly caseSensitive?: boolean | undefined;
3275
2603
  readonly autonumberFormat?: string | undefined;
3276
2604
  readonly index?: boolean | undefined;
@@ -3292,7 +2620,6 @@ declare const SysRecordShare: Omit<{
3292
2620
  readonly required?: boolean | undefined;
3293
2621
  readonly multiple?: boolean | undefined;
3294
2622
  readonly dependencies?: string[] | undefined;
3295
- readonly theme?: string | undefined;
3296
2623
  readonly externalId?: boolean | undefined;
3297
2624
  readonly defaultValue?: unknown;
3298
2625
  readonly group?: string | undefined;
@@ -3300,23 +2627,6 @@ declare const SysRecordShare: Omit<{
3300
2627
  readonly system?: boolean | undefined;
3301
2628
  readonly min?: number | undefined;
3302
2629
  readonly max?: number | undefined;
3303
- readonly encryptionConfig?: {
3304
- enabled: boolean;
3305
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
3306
- keyManagement: {
3307
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
3308
- keyId?: string | undefined;
3309
- rotationPolicy?: {
3310
- enabled: boolean;
3311
- frequencyDays: number;
3312
- retainOldVersions: number;
3313
- autoRotate: boolean;
3314
- } | undefined;
3315
- };
3316
- scope: "record" | "field" | "table" | "database";
3317
- deterministicEncryption: boolean;
3318
- searchableEncryption: boolean;
3319
- } | undefined;
3320
2630
  readonly columnName?: string | undefined;
3321
2631
  readonly searchable?: boolean | undefined;
3322
2632
  readonly unique?: boolean | undefined;
@@ -3325,7 +2635,6 @@ declare const SysRecordShare: Omit<{
3325
2635
  readonly scale?: number | undefined;
3326
2636
  readonly reference?: string | undefined;
3327
2637
  readonly referenceFilters?: string[] | undefined;
3328
- readonly writeRequiresMasterRead?: boolean | undefined;
3329
2638
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
3330
2639
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
3331
2640
  readonly inlineTitle?: string | undefined;
@@ -3350,22 +2659,8 @@ declare const SysRecordShare: Omit<{
3350
2659
  relationshipField?: string | undefined;
3351
2660
  } | undefined;
3352
2661
  readonly language?: string | undefined;
3353
- readonly lineNumbers?: boolean | undefined;
3354
2662
  readonly maxRating?: number | undefined;
3355
- readonly allowHalf?: boolean | undefined;
3356
- readonly displayMap?: boolean | undefined;
3357
- readonly allowGeocoding?: boolean | undefined;
3358
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
3359
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
3360
- readonly allowAlpha?: boolean | undefined;
3361
- readonly presetColors?: string[] | undefined;
3362
2663
  readonly step?: number | undefined;
3363
- readonly showValue?: boolean | undefined;
3364
- readonly marks?: Record<string, string> | undefined;
3365
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
3366
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
3367
- readonly displayValue?: boolean | undefined;
3368
- readonly allowScanning?: boolean | undefined;
3369
2664
  readonly currencyConfig?: {
3370
2665
  precision: number;
3371
2666
  currencyMode: "fixed" | "dynamic";
@@ -3419,29 +2714,7 @@ declare const SysRecordShare: Omit<{
3419
2714
  } | undefined;
3420
2715
  maxVersions?: number | undefined;
3421
2716
  } | undefined;
3422
- readonly maskingRule?: {
3423
- field: string;
3424
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
3425
- preserveFormat: boolean;
3426
- preserveLength: boolean;
3427
- pattern?: string | undefined;
3428
- roles?: string[] | undefined;
3429
- exemptRoles?: string[] | undefined;
3430
- } | undefined;
3431
- readonly auditTrail?: boolean | undefined;
3432
- readonly cached?: {
3433
- enabled: boolean;
3434
- ttl: number;
3435
- invalidateOn: string[];
3436
- } | undefined;
3437
- readonly dataQuality?: {
3438
- uniqueness: boolean;
3439
- completeness: number;
3440
- accuracy?: {
3441
- source: string;
3442
- threshold: number;
3443
- } | undefined;
3444
- } | undefined;
2717
+ readonly trackHistory?: boolean | undefined;
3445
2718
  readonly visibleWhen?: {
3446
2719
  dialect: "cel" | "js" | "cron" | "template";
3447
2720
  source?: string | undefined;
@@ -3480,7 +2753,6 @@ declare const SysRecordShare: Omit<{
3480
2753
  } | undefined;
3481
2754
  readonly sortable?: boolean | undefined;
3482
2755
  readonly inlineHelpText?: string | undefined;
3483
- readonly trackFeedHistory?: boolean | undefined;
3484
2756
  readonly caseSensitive?: boolean | undefined;
3485
2757
  readonly autonumberFormat?: string | undefined;
3486
2758
  readonly index?: boolean | undefined;
@@ -3532,7 +2804,6 @@ declare const SysSharingRule: Omit<{
3532
2804
  multiple: boolean;
3533
2805
  unique: boolean;
3534
2806
  deleteBehavior: "set_null" | "cascade" | "restrict";
3535
- auditTrail: boolean;
3536
2807
  hidden: boolean;
3537
2808
  readonly: boolean;
3538
2809
  sortable: boolean;
@@ -3558,7 +2829,6 @@ declare const SysSharingRule: Omit<{
3558
2829
  }[] | undefined;
3559
2830
  reference?: string | undefined;
3560
2831
  referenceFilters?: string[] | undefined;
3561
- writeRequiresMasterRead?: boolean | undefined;
3562
2832
  inlineEdit?: boolean | "grid" | "form" | undefined;
3563
2833
  inlineTitle?: string | undefined;
3564
2834
  inlineColumns?: any[] | undefined;
@@ -3590,23 +2860,8 @@ declare const SysSharingRule: Omit<{
3590
2860
  relationshipField?: string | undefined;
3591
2861
  } | undefined;
3592
2862
  language?: string | undefined;
3593
- theme?: string | undefined;
3594
- lineNumbers?: boolean | undefined;
3595
2863
  maxRating?: number | undefined;
3596
- allowHalf?: boolean | undefined;
3597
- displayMap?: boolean | undefined;
3598
- allowGeocoding?: boolean | undefined;
3599
- addressFormat?: "us" | "uk" | "international" | undefined;
3600
- colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
3601
- allowAlpha?: boolean | undefined;
3602
- presetColors?: string[] | undefined;
3603
2864
  step?: number | undefined;
3604
- showValue?: boolean | undefined;
3605
- marks?: Record<string, string> | undefined;
3606
- barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
3607
- qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
3608
- displayValue?: boolean | undefined;
3609
- allowScanning?: boolean | undefined;
3610
2865
  currencyConfig?: {
3611
2866
  precision: number;
3612
2867
  currencyMode: "fixed" | "dynamic";
@@ -3660,46 +2915,8 @@ declare const SysSharingRule: Omit<{
3660
2915
  } | undefined;
3661
2916
  maxVersions?: number | undefined;
3662
2917
  } | undefined;
3663
- encryptionConfig?: {
3664
- enabled: boolean;
3665
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
3666
- keyManagement: {
3667
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
3668
- keyId?: string | undefined;
3669
- rotationPolicy?: {
3670
- enabled: boolean;
3671
- frequencyDays: number;
3672
- retainOldVersions: number;
3673
- autoRotate: boolean;
3674
- } | undefined;
3675
- };
3676
- scope: "record" | "field" | "table" | "database";
3677
- deterministicEncryption: boolean;
3678
- searchableEncryption: boolean;
3679
- } | undefined;
3680
- maskingRule?: {
3681
- field: string;
3682
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
3683
- preserveFormat: boolean;
3684
- preserveLength: boolean;
3685
- pattern?: string | undefined;
3686
- roles?: string[] | undefined;
3687
- exemptRoles?: string[] | undefined;
3688
- } | undefined;
2918
+ trackHistory?: boolean | undefined;
3689
2919
  dependencies?: string[] | undefined;
3690
- cached?: {
3691
- enabled: boolean;
3692
- ttl: number;
3693
- invalidateOn: string[];
3694
- } | undefined;
3695
- dataQuality?: {
3696
- uniqueness: boolean;
3697
- completeness: number;
3698
- accuracy?: {
3699
- source: string;
3700
- threshold: number;
3701
- } | undefined;
3702
- } | undefined;
3703
2920
  group?: string | undefined;
3704
2921
  visibleWhen?: {
3705
2922
  dialect: "cel" | "js" | "cron" | "template";
@@ -3771,7 +2988,6 @@ declare const SysSharingRule: Omit<{
3771
2988
  } | undefined;
3772
2989
  system?: boolean | undefined;
3773
2990
  inlineHelpText?: string | undefined;
3774
- trackFeedHistory?: boolean | undefined;
3775
2991
  caseSensitive?: boolean | undefined;
3776
2992
  autonumberFormat?: string | undefined;
3777
2993
  }>;
@@ -3862,12 +3078,13 @@ declare const SysSharingRule: Omit<{
3862
3078
  key: string;
3863
3079
  interval?: string | undefined;
3864
3080
  } | undefined;
3865
- cdc?: {
3866
- enabled: boolean;
3867
- events: ("delete" | "update" | "insert")[];
3868
- destination: string;
3869
- } | undefined;
3870
3081
  validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
3082
+ activityMilestones?: {
3083
+ field: string;
3084
+ value: string;
3085
+ summary: string;
3086
+ type?: string | undefined;
3087
+ }[] | undefined;
3871
3088
  displayNameField?: string | undefined;
3872
3089
  recordName?: {
3873
3090
  type: "text" | "autonumber";
@@ -4178,7 +3395,6 @@ declare const SysSharingRule: Omit<{
4178
3395
  clone: boolean;
4179
3396
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
4180
3397
  } | undefined;
4181
- recordTypes?: string[] | undefined;
4182
3398
  sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
4183
3399
  publicSharing?: {
4184
3400
  enabled: boolean;
@@ -4427,7 +3643,6 @@ declare const SysSharingRule: Omit<{
4427
3643
  readonly required?: boolean | undefined;
4428
3644
  readonly multiple?: boolean | undefined;
4429
3645
  readonly dependencies?: string[] | undefined;
4430
- readonly theme?: string | undefined;
4431
3646
  readonly externalId?: boolean | undefined;
4432
3647
  readonly defaultValue?: unknown;
4433
3648
  readonly group?: string | undefined;
@@ -4435,23 +3650,6 @@ declare const SysSharingRule: Omit<{
4435
3650
  readonly system?: boolean | undefined;
4436
3651
  readonly min?: number | undefined;
4437
3652
  readonly max?: number | undefined;
4438
- readonly encryptionConfig?: {
4439
- enabled: boolean;
4440
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
4441
- keyManagement: {
4442
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
4443
- keyId?: string | undefined;
4444
- rotationPolicy?: {
4445
- enabled: boolean;
4446
- frequencyDays: number;
4447
- retainOldVersions: number;
4448
- autoRotate: boolean;
4449
- } | undefined;
4450
- };
4451
- scope: "record" | "field" | "table" | "database";
4452
- deterministicEncryption: boolean;
4453
- searchableEncryption: boolean;
4454
- } | undefined;
4455
3653
  readonly columnName?: string | undefined;
4456
3654
  readonly searchable?: boolean | undefined;
4457
3655
  readonly unique?: boolean | undefined;
@@ -4460,7 +3658,6 @@ declare const SysSharingRule: Omit<{
4460
3658
  readonly scale?: number | undefined;
4461
3659
  readonly reference?: string | undefined;
4462
3660
  readonly referenceFilters?: string[] | undefined;
4463
- readonly writeRequiresMasterRead?: boolean | undefined;
4464
3661
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
4465
3662
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
4466
3663
  readonly inlineTitle?: string | undefined;
@@ -4485,22 +3682,8 @@ declare const SysSharingRule: Omit<{
4485
3682
  relationshipField?: string | undefined;
4486
3683
  } | undefined;
4487
3684
  readonly language?: string | undefined;
4488
- readonly lineNumbers?: boolean | undefined;
4489
3685
  readonly maxRating?: number | undefined;
4490
- readonly allowHalf?: boolean | undefined;
4491
- readonly displayMap?: boolean | undefined;
4492
- readonly allowGeocoding?: boolean | undefined;
4493
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
4494
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
4495
- readonly allowAlpha?: boolean | undefined;
4496
- readonly presetColors?: string[] | undefined;
4497
3686
  readonly step?: number | undefined;
4498
- readonly showValue?: boolean | undefined;
4499
- readonly marks?: Record<string, string> | undefined;
4500
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
4501
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
4502
- readonly displayValue?: boolean | undefined;
4503
- readonly allowScanning?: boolean | undefined;
4504
3687
  readonly currencyConfig?: {
4505
3688
  precision: number;
4506
3689
  currencyMode: "fixed" | "dynamic";
@@ -4554,29 +3737,7 @@ declare const SysSharingRule: Omit<{
4554
3737
  } | undefined;
4555
3738
  maxVersions?: number | undefined;
4556
3739
  } | undefined;
4557
- readonly maskingRule?: {
4558
- field: string;
4559
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
4560
- preserveFormat: boolean;
4561
- preserveLength: boolean;
4562
- pattern?: string | undefined;
4563
- roles?: string[] | undefined;
4564
- exemptRoles?: string[] | undefined;
4565
- } | undefined;
4566
- readonly auditTrail?: boolean | undefined;
4567
- readonly cached?: {
4568
- enabled: boolean;
4569
- ttl: number;
4570
- invalidateOn: string[];
4571
- } | undefined;
4572
- readonly dataQuality?: {
4573
- uniqueness: boolean;
4574
- completeness: number;
4575
- accuracy?: {
4576
- source: string;
4577
- threshold: number;
4578
- } | undefined;
4579
- } | undefined;
3740
+ readonly trackHistory?: boolean | undefined;
4580
3741
  readonly visibleWhen?: {
4581
3742
  dialect: "cel" | "js" | "cron" | "template";
4582
3743
  source?: string | undefined;
@@ -4615,7 +3776,6 @@ declare const SysSharingRule: Omit<{
4615
3776
  } | undefined;
4616
3777
  readonly sortable?: boolean | undefined;
4617
3778
  readonly inlineHelpText?: string | undefined;
4618
- readonly trackFeedHistory?: boolean | undefined;
4619
3779
  readonly caseSensitive?: boolean | undefined;
4620
3780
  readonly autonumberFormat?: string | undefined;
4621
3781
  readonly index?: boolean | undefined;
@@ -4637,7 +3797,6 @@ declare const SysSharingRule: Omit<{
4637
3797
  readonly required?: boolean | undefined;
4638
3798
  readonly multiple?: boolean | undefined;
4639
3799
  readonly dependencies?: string[] | undefined;
4640
- readonly theme?: string | undefined;
4641
3800
  readonly externalId?: boolean | undefined;
4642
3801
  readonly defaultValue?: unknown;
4643
3802
  readonly group?: string | undefined;
@@ -4645,23 +3804,6 @@ declare const SysSharingRule: Omit<{
4645
3804
  readonly system?: boolean | undefined;
4646
3805
  readonly min?: number | undefined;
4647
3806
  readonly max?: number | undefined;
4648
- readonly encryptionConfig?: {
4649
- enabled: boolean;
4650
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
4651
- keyManagement: {
4652
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
4653
- keyId?: string | undefined;
4654
- rotationPolicy?: {
4655
- enabled: boolean;
4656
- frequencyDays: number;
4657
- retainOldVersions: number;
4658
- autoRotate: boolean;
4659
- } | undefined;
4660
- };
4661
- scope: "record" | "field" | "table" | "database";
4662
- deterministicEncryption: boolean;
4663
- searchableEncryption: boolean;
4664
- } | undefined;
4665
3807
  readonly columnName?: string | undefined;
4666
3808
  readonly searchable?: boolean | undefined;
4667
3809
  readonly unique?: boolean | undefined;
@@ -4670,7 +3812,6 @@ declare const SysSharingRule: Omit<{
4670
3812
  readonly scale?: number | undefined;
4671
3813
  reference: string;
4672
3814
  readonly referenceFilters?: string[] | undefined;
4673
- readonly writeRequiresMasterRead?: boolean | undefined;
4674
3815
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
4675
3816
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
4676
3817
  readonly inlineTitle?: string | undefined;
@@ -4695,22 +3836,8 @@ declare const SysSharingRule: Omit<{
4695
3836
  relationshipField?: string | undefined;
4696
3837
  } | undefined;
4697
3838
  readonly language?: string | undefined;
4698
- readonly lineNumbers?: boolean | undefined;
4699
3839
  readonly maxRating?: number | undefined;
4700
- readonly allowHalf?: boolean | undefined;
4701
- readonly displayMap?: boolean | undefined;
4702
- readonly allowGeocoding?: boolean | undefined;
4703
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
4704
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
4705
- readonly allowAlpha?: boolean | undefined;
4706
- readonly presetColors?: string[] | undefined;
4707
3840
  readonly step?: number | undefined;
4708
- readonly showValue?: boolean | undefined;
4709
- readonly marks?: Record<string, string> | undefined;
4710
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
4711
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
4712
- readonly displayValue?: boolean | undefined;
4713
- readonly allowScanning?: boolean | undefined;
4714
3841
  readonly currencyConfig?: {
4715
3842
  precision: number;
4716
3843
  currencyMode: "fixed" | "dynamic";
@@ -4764,29 +3891,7 @@ declare const SysSharingRule: Omit<{
4764
3891
  } | undefined;
4765
3892
  maxVersions?: number | undefined;
4766
3893
  } | undefined;
4767
- readonly maskingRule?: {
4768
- field: string;
4769
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
4770
- preserveFormat: boolean;
4771
- preserveLength: boolean;
4772
- pattern?: string | undefined;
4773
- roles?: string[] | undefined;
4774
- exemptRoles?: string[] | undefined;
4775
- } | undefined;
4776
- readonly auditTrail?: boolean | undefined;
4777
- readonly cached?: {
4778
- enabled: boolean;
4779
- ttl: number;
4780
- invalidateOn: string[];
4781
- } | undefined;
4782
- readonly dataQuality?: {
4783
- uniqueness: boolean;
4784
- completeness: number;
4785
- accuracy?: {
4786
- source: string;
4787
- threshold: number;
4788
- } | undefined;
4789
- } | undefined;
3894
+ readonly trackHistory?: boolean | undefined;
4790
3895
  readonly visibleWhen?: {
4791
3896
  dialect: "cel" | "js" | "cron" | "template";
4792
3897
  source?: string | undefined;
@@ -4825,7 +3930,6 @@ declare const SysSharingRule: Omit<{
4825
3930
  } | undefined;
4826
3931
  readonly sortable?: boolean | undefined;
4827
3932
  readonly inlineHelpText?: string | undefined;
4828
- readonly trackFeedHistory?: boolean | undefined;
4829
3933
  readonly caseSensitive?: boolean | undefined;
4830
3934
  readonly autonumberFormat?: string | undefined;
4831
3935
  readonly index?: boolean | undefined;
@@ -4847,7 +3951,6 @@ declare const SysSharingRule: Omit<{
4847
3951
  readonly required?: boolean | undefined;
4848
3952
  readonly multiple?: boolean | undefined;
4849
3953
  readonly dependencies?: string[] | undefined;
4850
- readonly theme?: string | undefined;
4851
3954
  readonly externalId?: boolean | undefined;
4852
3955
  readonly defaultValue?: unknown;
4853
3956
  readonly group?: string | undefined;
@@ -4855,23 +3958,6 @@ declare const SysSharingRule: Omit<{
4855
3958
  readonly system?: boolean | undefined;
4856
3959
  readonly min?: number | undefined;
4857
3960
  readonly max?: number | undefined;
4858
- readonly encryptionConfig?: {
4859
- enabled: boolean;
4860
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
4861
- keyManagement: {
4862
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
4863
- keyId?: string | undefined;
4864
- rotationPolicy?: {
4865
- enabled: boolean;
4866
- frequencyDays: number;
4867
- retainOldVersions: number;
4868
- autoRotate: boolean;
4869
- } | undefined;
4870
- };
4871
- scope: "record" | "field" | "table" | "database";
4872
- deterministicEncryption: boolean;
4873
- searchableEncryption: boolean;
4874
- } | undefined;
4875
3961
  readonly columnName?: string | undefined;
4876
3962
  readonly searchable?: boolean | undefined;
4877
3963
  readonly unique?: boolean | undefined;
@@ -4880,7 +3966,6 @@ declare const SysSharingRule: Omit<{
4880
3966
  readonly scale?: number | undefined;
4881
3967
  readonly reference?: string | undefined;
4882
3968
  readonly referenceFilters?: string[] | undefined;
4883
- readonly writeRequiresMasterRead?: boolean | undefined;
4884
3969
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
4885
3970
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
4886
3971
  readonly inlineTitle?: string | undefined;
@@ -4905,22 +3990,8 @@ declare const SysSharingRule: Omit<{
4905
3990
  relationshipField?: string | undefined;
4906
3991
  } | undefined;
4907
3992
  readonly language?: string | undefined;
4908
- readonly lineNumbers?: boolean | undefined;
4909
3993
  readonly maxRating?: number | undefined;
4910
- readonly allowHalf?: boolean | undefined;
4911
- readonly displayMap?: boolean | undefined;
4912
- readonly allowGeocoding?: boolean | undefined;
4913
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
4914
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
4915
- readonly allowAlpha?: boolean | undefined;
4916
- readonly presetColors?: string[] | undefined;
4917
3994
  readonly step?: number | undefined;
4918
- readonly showValue?: boolean | undefined;
4919
- readonly marks?: Record<string, string> | undefined;
4920
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
4921
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
4922
- readonly displayValue?: boolean | undefined;
4923
- readonly allowScanning?: boolean | undefined;
4924
3995
  readonly currencyConfig?: {
4925
3996
  precision: number;
4926
3997
  currencyMode: "fixed" | "dynamic";
@@ -4974,29 +4045,7 @@ declare const SysSharingRule: Omit<{
4974
4045
  } | undefined;
4975
4046
  maxVersions?: number | undefined;
4976
4047
  } | undefined;
4977
- readonly maskingRule?: {
4978
- field: string;
4979
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
4980
- preserveFormat: boolean;
4981
- preserveLength: boolean;
4982
- pattern?: string | undefined;
4983
- roles?: string[] | undefined;
4984
- exemptRoles?: string[] | undefined;
4985
- } | undefined;
4986
- readonly auditTrail?: boolean | undefined;
4987
- readonly cached?: {
4988
- enabled: boolean;
4989
- ttl: number;
4990
- invalidateOn: string[];
4991
- } | undefined;
4992
- readonly dataQuality?: {
4993
- uniqueness: boolean;
4994
- completeness: number;
4995
- accuracy?: {
4996
- source: string;
4997
- threshold: number;
4998
- } | undefined;
4999
- } | undefined;
4048
+ readonly trackHistory?: boolean | undefined;
5000
4049
  readonly visibleWhen?: {
5001
4050
  dialect: "cel" | "js" | "cron" | "template";
5002
4051
  source?: string | undefined;
@@ -5035,7 +4084,6 @@ declare const SysSharingRule: Omit<{
5035
4084
  } | undefined;
5036
4085
  readonly sortable?: boolean | undefined;
5037
4086
  readonly inlineHelpText?: string | undefined;
5038
- readonly trackFeedHistory?: boolean | undefined;
5039
4087
  readonly caseSensitive?: boolean | undefined;
5040
4088
  readonly autonumberFormat?: string | undefined;
5041
4089
  readonly index?: boolean | undefined;
@@ -5057,7 +4105,6 @@ declare const SysSharingRule: Omit<{
5057
4105
  readonly required?: boolean | undefined;
5058
4106
  readonly multiple?: boolean | undefined;
5059
4107
  readonly dependencies?: string[] | undefined;
5060
- readonly theme?: string | undefined;
5061
4108
  readonly externalId?: boolean | undefined;
5062
4109
  readonly defaultValue?: unknown;
5063
4110
  readonly group?: string | undefined;
@@ -5065,23 +4112,6 @@ declare const SysSharingRule: Omit<{
5065
4112
  readonly system?: boolean | undefined;
5066
4113
  readonly min?: number | undefined;
5067
4114
  readonly max?: number | undefined;
5068
- readonly encryptionConfig?: {
5069
- enabled: boolean;
5070
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
5071
- keyManagement: {
5072
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
5073
- keyId?: string | undefined;
5074
- rotationPolicy?: {
5075
- enabled: boolean;
5076
- frequencyDays: number;
5077
- retainOldVersions: number;
5078
- autoRotate: boolean;
5079
- } | undefined;
5080
- };
5081
- scope: "record" | "field" | "table" | "database";
5082
- deterministicEncryption: boolean;
5083
- searchableEncryption: boolean;
5084
- } | undefined;
5085
4115
  readonly columnName?: string | undefined;
5086
4116
  readonly searchable?: boolean | undefined;
5087
4117
  readonly unique?: boolean | undefined;
@@ -5090,7 +4120,6 @@ declare const SysSharingRule: Omit<{
5090
4120
  readonly scale?: number | undefined;
5091
4121
  readonly reference?: string | undefined;
5092
4122
  readonly referenceFilters?: string[] | undefined;
5093
- readonly writeRequiresMasterRead?: boolean | undefined;
5094
4123
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
5095
4124
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
5096
4125
  readonly inlineTitle?: string | undefined;
@@ -5115,22 +4144,8 @@ declare const SysSharingRule: Omit<{
5115
4144
  relationshipField?: string | undefined;
5116
4145
  } | undefined;
5117
4146
  readonly language?: string | undefined;
5118
- readonly lineNumbers?: boolean | undefined;
5119
4147
  readonly maxRating?: number | undefined;
5120
- readonly allowHalf?: boolean | undefined;
5121
- readonly displayMap?: boolean | undefined;
5122
- readonly allowGeocoding?: boolean | undefined;
5123
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
5124
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
5125
- readonly allowAlpha?: boolean | undefined;
5126
- readonly presetColors?: string[] | undefined;
5127
4148
  readonly step?: number | undefined;
5128
- readonly showValue?: boolean | undefined;
5129
- readonly marks?: Record<string, string> | undefined;
5130
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
5131
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
5132
- readonly displayValue?: boolean | undefined;
5133
- readonly allowScanning?: boolean | undefined;
5134
4149
  readonly currencyConfig?: {
5135
4150
  precision: number;
5136
4151
  currencyMode: "fixed" | "dynamic";
@@ -5184,29 +4199,7 @@ declare const SysSharingRule: Omit<{
5184
4199
  } | undefined;
5185
4200
  maxVersions?: number | undefined;
5186
4201
  } | undefined;
5187
- readonly maskingRule?: {
5188
- field: string;
5189
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
5190
- preserveFormat: boolean;
5191
- preserveLength: boolean;
5192
- pattern?: string | undefined;
5193
- roles?: string[] | undefined;
5194
- exemptRoles?: string[] | undefined;
5195
- } | undefined;
5196
- readonly auditTrail?: boolean | undefined;
5197
- readonly cached?: {
5198
- enabled: boolean;
5199
- ttl: number;
5200
- invalidateOn: string[];
5201
- } | undefined;
5202
- readonly dataQuality?: {
5203
- uniqueness: boolean;
5204
- completeness: number;
5205
- accuracy?: {
5206
- source: string;
5207
- threshold: number;
5208
- } | undefined;
5209
- } | undefined;
4202
+ readonly trackHistory?: boolean | undefined;
5210
4203
  readonly visibleWhen?: {
5211
4204
  dialect: "cel" | "js" | "cron" | "template";
5212
4205
  source?: string | undefined;
@@ -5245,7 +4238,6 @@ declare const SysSharingRule: Omit<{
5245
4238
  } | undefined;
5246
4239
  readonly sortable?: boolean | undefined;
5247
4240
  readonly inlineHelpText?: string | undefined;
5248
- readonly trackFeedHistory?: boolean | undefined;
5249
4241
  readonly caseSensitive?: boolean | undefined;
5250
4242
  readonly autonumberFormat?: string | undefined;
5251
4243
  readonly index?: boolean | undefined;
@@ -5267,7 +4259,6 @@ declare const SysSharingRule: Omit<{
5267
4259
  readonly required?: boolean | undefined;
5268
4260
  readonly multiple?: boolean | undefined;
5269
4261
  readonly dependencies?: string[] | undefined;
5270
- readonly theme?: string | undefined;
5271
4262
  readonly externalId?: boolean | undefined;
5272
4263
  readonly defaultValue?: unknown;
5273
4264
  readonly group?: string | undefined;
@@ -5275,23 +4266,6 @@ declare const SysSharingRule: Omit<{
5275
4266
  readonly system?: boolean | undefined;
5276
4267
  readonly min?: number | undefined;
5277
4268
  readonly max?: number | undefined;
5278
- readonly encryptionConfig?: {
5279
- enabled: boolean;
5280
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
5281
- keyManagement: {
5282
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
5283
- keyId?: string | undefined;
5284
- rotationPolicy?: {
5285
- enabled: boolean;
5286
- frequencyDays: number;
5287
- retainOldVersions: number;
5288
- autoRotate: boolean;
5289
- } | undefined;
5290
- };
5291
- scope: "record" | "field" | "table" | "database";
5292
- deterministicEncryption: boolean;
5293
- searchableEncryption: boolean;
5294
- } | undefined;
5295
4269
  readonly columnName?: string | undefined;
5296
4270
  readonly searchable?: boolean | undefined;
5297
4271
  readonly unique?: boolean | undefined;
@@ -5300,7 +4274,6 @@ declare const SysSharingRule: Omit<{
5300
4274
  readonly scale?: number | undefined;
5301
4275
  readonly reference?: string | undefined;
5302
4276
  readonly referenceFilters?: string[] | undefined;
5303
- readonly writeRequiresMasterRead?: boolean | undefined;
5304
4277
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
5305
4278
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
5306
4279
  readonly inlineTitle?: string | undefined;
@@ -5325,22 +4298,8 @@ declare const SysSharingRule: Omit<{
5325
4298
  relationshipField?: string | undefined;
5326
4299
  } | undefined;
5327
4300
  readonly language?: string | undefined;
5328
- readonly lineNumbers?: boolean | undefined;
5329
4301
  readonly maxRating?: number | undefined;
5330
- readonly allowHalf?: boolean | undefined;
5331
- readonly displayMap?: boolean | undefined;
5332
- readonly allowGeocoding?: boolean | undefined;
5333
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
5334
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
5335
- readonly allowAlpha?: boolean | undefined;
5336
- readonly presetColors?: string[] | undefined;
5337
4302
  readonly step?: number | undefined;
5338
- readonly showValue?: boolean | undefined;
5339
- readonly marks?: Record<string, string> | undefined;
5340
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
5341
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
5342
- readonly displayValue?: boolean | undefined;
5343
- readonly allowScanning?: boolean | undefined;
5344
4303
  readonly currencyConfig?: {
5345
4304
  precision: number;
5346
4305
  currencyMode: "fixed" | "dynamic";
@@ -5394,29 +4353,7 @@ declare const SysSharingRule: Omit<{
5394
4353
  } | undefined;
5395
4354
  maxVersions?: number | undefined;
5396
4355
  } | undefined;
5397
- readonly maskingRule?: {
5398
- field: string;
5399
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
5400
- preserveFormat: boolean;
5401
- preserveLength: boolean;
5402
- pattern?: string | undefined;
5403
- roles?: string[] | undefined;
5404
- exemptRoles?: string[] | undefined;
5405
- } | undefined;
5406
- readonly auditTrail?: boolean | undefined;
5407
- readonly cached?: {
5408
- enabled: boolean;
5409
- ttl: number;
5410
- invalidateOn: string[];
5411
- } | undefined;
5412
- readonly dataQuality?: {
5413
- uniqueness: boolean;
5414
- completeness: number;
5415
- accuracy?: {
5416
- source: string;
5417
- threshold: number;
5418
- } | undefined;
5419
- } | undefined;
4356
+ readonly trackHistory?: boolean | undefined;
5420
4357
  readonly visibleWhen?: {
5421
4358
  dialect: "cel" | "js" | "cron" | "template";
5422
4359
  source?: string | undefined;
@@ -5455,7 +4392,6 @@ declare const SysSharingRule: Omit<{
5455
4392
  } | undefined;
5456
4393
  readonly sortable?: boolean | undefined;
5457
4394
  readonly inlineHelpText?: string | undefined;
5458
- readonly trackFeedHistory?: boolean | undefined;
5459
4395
  readonly caseSensitive?: boolean | undefined;
5460
4396
  readonly autonumberFormat?: string | undefined;
5461
4397
  readonly index?: boolean | undefined;
@@ -5477,7 +4413,6 @@ declare const SysSharingRule: Omit<{
5477
4413
  readonly required?: boolean | undefined;
5478
4414
  readonly multiple?: boolean | undefined;
5479
4415
  readonly dependencies?: string[] | undefined;
5480
- readonly theme?: string | undefined;
5481
4416
  readonly externalId?: boolean | undefined;
5482
4417
  readonly defaultValue?: unknown;
5483
4418
  readonly group?: string | undefined;
@@ -5485,23 +4420,6 @@ declare const SysSharingRule: Omit<{
5485
4420
  readonly system?: boolean | undefined;
5486
4421
  readonly min?: number | undefined;
5487
4422
  readonly max?: number | undefined;
5488
- readonly encryptionConfig?: {
5489
- enabled: boolean;
5490
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
5491
- keyManagement: {
5492
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
5493
- keyId?: string | undefined;
5494
- rotationPolicy?: {
5495
- enabled: boolean;
5496
- frequencyDays: number;
5497
- retainOldVersions: number;
5498
- autoRotate: boolean;
5499
- } | undefined;
5500
- };
5501
- scope: "record" | "field" | "table" | "database";
5502
- deterministicEncryption: boolean;
5503
- searchableEncryption: boolean;
5504
- } | undefined;
5505
4423
  readonly columnName?: string | undefined;
5506
4424
  readonly searchable?: boolean | undefined;
5507
4425
  readonly unique?: boolean | undefined;
@@ -5510,7 +4428,6 @@ declare const SysSharingRule: Omit<{
5510
4428
  readonly scale?: number | undefined;
5511
4429
  readonly reference?: string | undefined;
5512
4430
  readonly referenceFilters?: string[] | undefined;
5513
- readonly writeRequiresMasterRead?: boolean | undefined;
5514
4431
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
5515
4432
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
5516
4433
  readonly inlineTitle?: string | undefined;
@@ -5535,22 +4452,8 @@ declare const SysSharingRule: Omit<{
5535
4452
  relationshipField?: string | undefined;
5536
4453
  } | undefined;
5537
4454
  readonly language?: string | undefined;
5538
- readonly lineNumbers?: boolean | undefined;
5539
4455
  readonly maxRating?: number | undefined;
5540
- readonly allowHalf?: boolean | undefined;
5541
- readonly displayMap?: boolean | undefined;
5542
- readonly allowGeocoding?: boolean | undefined;
5543
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
5544
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
5545
- readonly allowAlpha?: boolean | undefined;
5546
- readonly presetColors?: string[] | undefined;
5547
4456
  readonly step?: number | undefined;
5548
- readonly showValue?: boolean | undefined;
5549
- readonly marks?: Record<string, string> | undefined;
5550
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
5551
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
5552
- readonly displayValue?: boolean | undefined;
5553
- readonly allowScanning?: boolean | undefined;
5554
4457
  readonly currencyConfig?: {
5555
4458
  precision: number;
5556
4459
  currencyMode: "fixed" | "dynamic";
@@ -5604,29 +4507,7 @@ declare const SysSharingRule: Omit<{
5604
4507
  } | undefined;
5605
4508
  maxVersions?: number | undefined;
5606
4509
  } | undefined;
5607
- readonly maskingRule?: {
5608
- field: string;
5609
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
5610
- preserveFormat: boolean;
5611
- preserveLength: boolean;
5612
- pattern?: string | undefined;
5613
- roles?: string[] | undefined;
5614
- exemptRoles?: string[] | undefined;
5615
- } | undefined;
5616
- readonly auditTrail?: boolean | undefined;
5617
- readonly cached?: {
5618
- enabled: boolean;
5619
- ttl: number;
5620
- invalidateOn: string[];
5621
- } | undefined;
5622
- readonly dataQuality?: {
5623
- uniqueness: boolean;
5624
- completeness: number;
5625
- accuracy?: {
5626
- source: string;
5627
- threshold: number;
5628
- } | undefined;
5629
- } | undefined;
4510
+ readonly trackHistory?: boolean | undefined;
5630
4511
  readonly visibleWhen?: {
5631
4512
  dialect: "cel" | "js" | "cron" | "template";
5632
4513
  source?: string | undefined;
@@ -5665,7 +4546,6 @@ declare const SysSharingRule: Omit<{
5665
4546
  } | undefined;
5666
4547
  readonly sortable?: boolean | undefined;
5667
4548
  readonly inlineHelpText?: string | undefined;
5668
- readonly trackFeedHistory?: boolean | undefined;
5669
4549
  readonly caseSensitive?: boolean | undefined;
5670
4550
  readonly autonumberFormat?: string | undefined;
5671
4551
  readonly index?: boolean | undefined;
@@ -5687,7 +4567,6 @@ declare const SysSharingRule: Omit<{
5687
4567
  readonly required?: boolean | undefined;
5688
4568
  readonly multiple?: boolean | undefined;
5689
4569
  readonly dependencies?: string[] | undefined;
5690
- readonly theme?: string | undefined;
5691
4570
  readonly externalId?: boolean | undefined;
5692
4571
  readonly defaultValue?: unknown;
5693
4572
  readonly group?: string | undefined;
@@ -5695,23 +4574,6 @@ declare const SysSharingRule: Omit<{
5695
4574
  readonly system?: boolean | undefined;
5696
4575
  readonly min?: number | undefined;
5697
4576
  readonly max?: number | undefined;
5698
- readonly encryptionConfig?: {
5699
- enabled: boolean;
5700
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
5701
- keyManagement: {
5702
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
5703
- keyId?: string | undefined;
5704
- rotationPolicy?: {
5705
- enabled: boolean;
5706
- frequencyDays: number;
5707
- retainOldVersions: number;
5708
- autoRotate: boolean;
5709
- } | undefined;
5710
- };
5711
- scope: "record" | "field" | "table" | "database";
5712
- deterministicEncryption: boolean;
5713
- searchableEncryption: boolean;
5714
- } | undefined;
5715
4577
  readonly columnName?: string | undefined;
5716
4578
  readonly searchable?: boolean | undefined;
5717
4579
  readonly unique?: boolean | undefined;
@@ -5720,7 +4582,6 @@ declare const SysSharingRule: Omit<{
5720
4582
  readonly scale?: number | undefined;
5721
4583
  readonly reference?: string | undefined;
5722
4584
  readonly referenceFilters?: string[] | undefined;
5723
- readonly writeRequiresMasterRead?: boolean | undefined;
5724
4585
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
5725
4586
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
5726
4587
  readonly inlineTitle?: string | undefined;
@@ -5745,22 +4606,8 @@ declare const SysSharingRule: Omit<{
5745
4606
  relationshipField?: string | undefined;
5746
4607
  } | undefined;
5747
4608
  readonly language?: string | undefined;
5748
- readonly lineNumbers?: boolean | undefined;
5749
4609
  readonly maxRating?: number | undefined;
5750
- readonly allowHalf?: boolean | undefined;
5751
- readonly displayMap?: boolean | undefined;
5752
- readonly allowGeocoding?: boolean | undefined;
5753
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
5754
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
5755
- readonly allowAlpha?: boolean | undefined;
5756
- readonly presetColors?: string[] | undefined;
5757
4610
  readonly step?: number | undefined;
5758
- readonly showValue?: boolean | undefined;
5759
- readonly marks?: Record<string, string> | undefined;
5760
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
5761
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
5762
- readonly displayValue?: boolean | undefined;
5763
- readonly allowScanning?: boolean | undefined;
5764
4611
  readonly currencyConfig?: {
5765
4612
  precision: number;
5766
4613
  currencyMode: "fixed" | "dynamic";
@@ -5814,29 +4661,7 @@ declare const SysSharingRule: Omit<{
5814
4661
  } | undefined;
5815
4662
  maxVersions?: number | undefined;
5816
4663
  } | undefined;
5817
- readonly maskingRule?: {
5818
- field: string;
5819
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
5820
- preserveFormat: boolean;
5821
- preserveLength: boolean;
5822
- pattern?: string | undefined;
5823
- roles?: string[] | undefined;
5824
- exemptRoles?: string[] | undefined;
5825
- } | undefined;
5826
- readonly auditTrail?: boolean | undefined;
5827
- readonly cached?: {
5828
- enabled: boolean;
5829
- ttl: number;
5830
- invalidateOn: string[];
5831
- } | undefined;
5832
- readonly dataQuality?: {
5833
- uniqueness: boolean;
5834
- completeness: number;
5835
- accuracy?: {
5836
- source: string;
5837
- threshold: number;
5838
- } | undefined;
5839
- } | undefined;
4664
+ readonly trackHistory?: boolean | undefined;
5840
4665
  readonly visibleWhen?: {
5841
4666
  dialect: "cel" | "js" | "cron" | "template";
5842
4667
  source?: string | undefined;
@@ -5875,7 +4700,6 @@ declare const SysSharingRule: Omit<{
5875
4700
  } | undefined;
5876
4701
  readonly sortable?: boolean | undefined;
5877
4702
  readonly inlineHelpText?: string | undefined;
5878
- readonly trackFeedHistory?: boolean | undefined;
5879
4703
  readonly caseSensitive?: boolean | undefined;
5880
4704
  readonly autonumberFormat?: string | undefined;
5881
4705
  readonly index?: boolean | undefined;
@@ -5897,7 +4721,6 @@ declare const SysSharingRule: Omit<{
5897
4721
  readonly required?: boolean | undefined;
5898
4722
  readonly multiple?: boolean | undefined;
5899
4723
  readonly dependencies?: string[] | undefined;
5900
- readonly theme?: string | undefined;
5901
4724
  readonly externalId?: boolean | undefined;
5902
4725
  readonly defaultValue?: unknown;
5903
4726
  readonly group?: string | undefined;
@@ -5905,23 +4728,6 @@ declare const SysSharingRule: Omit<{
5905
4728
  readonly system?: boolean | undefined;
5906
4729
  readonly min?: number | undefined;
5907
4730
  readonly max?: number | undefined;
5908
- readonly encryptionConfig?: {
5909
- enabled: boolean;
5910
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
5911
- keyManagement: {
5912
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
5913
- keyId?: string | undefined;
5914
- rotationPolicy?: {
5915
- enabled: boolean;
5916
- frequencyDays: number;
5917
- retainOldVersions: number;
5918
- autoRotate: boolean;
5919
- } | undefined;
5920
- };
5921
- scope: "record" | "field" | "table" | "database";
5922
- deterministicEncryption: boolean;
5923
- searchableEncryption: boolean;
5924
- } | undefined;
5925
4731
  readonly columnName?: string | undefined;
5926
4732
  readonly searchable?: boolean | undefined;
5927
4733
  readonly unique?: boolean | undefined;
@@ -5930,7 +4736,6 @@ declare const SysSharingRule: Omit<{
5930
4736
  readonly scale?: number | undefined;
5931
4737
  readonly reference?: string | undefined;
5932
4738
  readonly referenceFilters?: string[] | undefined;
5933
- readonly writeRequiresMasterRead?: boolean | undefined;
5934
4739
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
5935
4740
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
5936
4741
  readonly inlineTitle?: string | undefined;
@@ -5955,22 +4760,8 @@ declare const SysSharingRule: Omit<{
5955
4760
  relationshipField?: string | undefined;
5956
4761
  } | undefined;
5957
4762
  readonly language?: string | undefined;
5958
- readonly lineNumbers?: boolean | undefined;
5959
4763
  readonly maxRating?: number | undefined;
5960
- readonly allowHalf?: boolean | undefined;
5961
- readonly displayMap?: boolean | undefined;
5962
- readonly allowGeocoding?: boolean | undefined;
5963
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
5964
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
5965
- readonly allowAlpha?: boolean | undefined;
5966
- readonly presetColors?: string[] | undefined;
5967
4764
  readonly step?: number | undefined;
5968
- readonly showValue?: boolean | undefined;
5969
- readonly marks?: Record<string, string> | undefined;
5970
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
5971
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
5972
- readonly displayValue?: boolean | undefined;
5973
- readonly allowScanning?: boolean | undefined;
5974
4765
  readonly currencyConfig?: {
5975
4766
  precision: number;
5976
4767
  currencyMode: "fixed" | "dynamic";
@@ -6024,29 +4815,7 @@ declare const SysSharingRule: Omit<{
6024
4815
  } | undefined;
6025
4816
  maxVersions?: number | undefined;
6026
4817
  } | undefined;
6027
- readonly maskingRule?: {
6028
- field: string;
6029
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
6030
- preserveFormat: boolean;
6031
- preserveLength: boolean;
6032
- pattern?: string | undefined;
6033
- roles?: string[] | undefined;
6034
- exemptRoles?: string[] | undefined;
6035
- } | undefined;
6036
- readonly auditTrail?: boolean | undefined;
6037
- readonly cached?: {
6038
- enabled: boolean;
6039
- ttl: number;
6040
- invalidateOn: string[];
6041
- } | undefined;
6042
- readonly dataQuality?: {
6043
- uniqueness: boolean;
6044
- completeness: number;
6045
- accuracy?: {
6046
- source: string;
6047
- threshold: number;
6048
- } | undefined;
6049
- } | undefined;
4818
+ readonly trackHistory?: boolean | undefined;
6050
4819
  readonly visibleWhen?: {
6051
4820
  dialect: "cel" | "js" | "cron" | "template";
6052
4821
  source?: string | undefined;
@@ -6085,7 +4854,6 @@ declare const SysSharingRule: Omit<{
6085
4854
  } | undefined;
6086
4855
  readonly sortable?: boolean | undefined;
6087
4856
  readonly inlineHelpText?: string | undefined;
6088
- readonly trackFeedHistory?: boolean | undefined;
6089
4857
  readonly caseSensitive?: boolean | undefined;
6090
4858
  readonly autonumberFormat?: string | undefined;
6091
4859
  readonly index?: boolean | undefined;
@@ -6107,7 +4875,6 @@ declare const SysSharingRule: Omit<{
6107
4875
  readonly required?: boolean | undefined;
6108
4876
  readonly multiple?: boolean | undefined;
6109
4877
  readonly dependencies?: string[] | undefined;
6110
- readonly theme?: string | undefined;
6111
4878
  readonly externalId?: boolean | undefined;
6112
4879
  readonly defaultValue?: unknown;
6113
4880
  readonly group?: string | undefined;
@@ -6115,23 +4882,6 @@ declare const SysSharingRule: Omit<{
6115
4882
  readonly system?: boolean | undefined;
6116
4883
  readonly min?: number | undefined;
6117
4884
  readonly max?: number | undefined;
6118
- readonly encryptionConfig?: {
6119
- enabled: boolean;
6120
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
6121
- keyManagement: {
6122
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
6123
- keyId?: string | undefined;
6124
- rotationPolicy?: {
6125
- enabled: boolean;
6126
- frequencyDays: number;
6127
- retainOldVersions: number;
6128
- autoRotate: boolean;
6129
- } | undefined;
6130
- };
6131
- scope: "record" | "field" | "table" | "database";
6132
- deterministicEncryption: boolean;
6133
- searchableEncryption: boolean;
6134
- } | undefined;
6135
4885
  readonly columnName?: string | undefined;
6136
4886
  readonly searchable?: boolean | undefined;
6137
4887
  readonly unique?: boolean | undefined;
@@ -6140,7 +4890,6 @@ declare const SysSharingRule: Omit<{
6140
4890
  readonly scale?: number | undefined;
6141
4891
  readonly reference?: string | undefined;
6142
4892
  readonly referenceFilters?: string[] | undefined;
6143
- readonly writeRequiresMasterRead?: boolean | undefined;
6144
4893
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
6145
4894
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
6146
4895
  readonly inlineTitle?: string | undefined;
@@ -6165,22 +4914,8 @@ declare const SysSharingRule: Omit<{
6165
4914
  relationshipField?: string | undefined;
6166
4915
  } | undefined;
6167
4916
  readonly language?: string | undefined;
6168
- readonly lineNumbers?: boolean | undefined;
6169
4917
  readonly maxRating?: number | undefined;
6170
- readonly allowHalf?: boolean | undefined;
6171
- readonly displayMap?: boolean | undefined;
6172
- readonly allowGeocoding?: boolean | undefined;
6173
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
6174
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
6175
- readonly allowAlpha?: boolean | undefined;
6176
- readonly presetColors?: string[] | undefined;
6177
4918
  readonly step?: number | undefined;
6178
- readonly showValue?: boolean | undefined;
6179
- readonly marks?: Record<string, string> | undefined;
6180
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
6181
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
6182
- readonly displayValue?: boolean | undefined;
6183
- readonly allowScanning?: boolean | undefined;
6184
4919
  readonly currencyConfig?: {
6185
4920
  precision: number;
6186
4921
  currencyMode: "fixed" | "dynamic";
@@ -6234,29 +4969,7 @@ declare const SysSharingRule: Omit<{
6234
4969
  } | undefined;
6235
4970
  maxVersions?: number | undefined;
6236
4971
  } | undefined;
6237
- readonly maskingRule?: {
6238
- field: string;
6239
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
6240
- preserveFormat: boolean;
6241
- preserveLength: boolean;
6242
- pattern?: string | undefined;
6243
- roles?: string[] | undefined;
6244
- exemptRoles?: string[] | undefined;
6245
- } | undefined;
6246
- readonly auditTrail?: boolean | undefined;
6247
- readonly cached?: {
6248
- enabled: boolean;
6249
- ttl: number;
6250
- invalidateOn: string[];
6251
- } | undefined;
6252
- readonly dataQuality?: {
6253
- uniqueness: boolean;
6254
- completeness: number;
6255
- accuracy?: {
6256
- source: string;
6257
- threshold: number;
6258
- } | undefined;
6259
- } | undefined;
4972
+ readonly trackHistory?: boolean | undefined;
6260
4973
  readonly visibleWhen?: {
6261
4974
  dialect: "cel" | "js" | "cron" | "template";
6262
4975
  source?: string | undefined;
@@ -6295,7 +5008,6 @@ declare const SysSharingRule: Omit<{
6295
5008
  } | undefined;
6296
5009
  readonly sortable?: boolean | undefined;
6297
5010
  readonly inlineHelpText?: string | undefined;
6298
- readonly trackFeedHistory?: boolean | undefined;
6299
5011
  readonly caseSensitive?: boolean | undefined;
6300
5012
  readonly autonumberFormat?: string | undefined;
6301
5013
  readonly index?: boolean | undefined;
@@ -6317,7 +5029,6 @@ declare const SysSharingRule: Omit<{
6317
5029
  readonly required?: boolean | undefined;
6318
5030
  readonly multiple?: boolean | undefined;
6319
5031
  readonly dependencies?: string[] | undefined;
6320
- readonly theme?: string | undefined;
6321
5032
  readonly externalId?: boolean | undefined;
6322
5033
  readonly defaultValue?: unknown;
6323
5034
  readonly group?: string | undefined;
@@ -6325,23 +5036,6 @@ declare const SysSharingRule: Omit<{
6325
5036
  readonly system?: boolean | undefined;
6326
5037
  readonly min?: number | undefined;
6327
5038
  readonly max?: number | undefined;
6328
- readonly encryptionConfig?: {
6329
- enabled: boolean;
6330
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
6331
- keyManagement: {
6332
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
6333
- keyId?: string | undefined;
6334
- rotationPolicy?: {
6335
- enabled: boolean;
6336
- frequencyDays: number;
6337
- retainOldVersions: number;
6338
- autoRotate: boolean;
6339
- } | undefined;
6340
- };
6341
- scope: "record" | "field" | "table" | "database";
6342
- deterministicEncryption: boolean;
6343
- searchableEncryption: boolean;
6344
- } | undefined;
6345
5039
  readonly columnName?: string | undefined;
6346
5040
  readonly searchable?: boolean | undefined;
6347
5041
  readonly unique?: boolean | undefined;
@@ -6350,7 +5044,6 @@ declare const SysSharingRule: Omit<{
6350
5044
  readonly scale?: number | undefined;
6351
5045
  readonly reference?: string | undefined;
6352
5046
  readonly referenceFilters?: string[] | undefined;
6353
- readonly writeRequiresMasterRead?: boolean | undefined;
6354
5047
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
6355
5048
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
6356
5049
  readonly inlineTitle?: string | undefined;
@@ -6375,22 +5068,8 @@ declare const SysSharingRule: Omit<{
6375
5068
  relationshipField?: string | undefined;
6376
5069
  } | undefined;
6377
5070
  readonly language?: string | undefined;
6378
- readonly lineNumbers?: boolean | undefined;
6379
5071
  readonly maxRating?: number | undefined;
6380
- readonly allowHalf?: boolean | undefined;
6381
- readonly displayMap?: boolean | undefined;
6382
- readonly allowGeocoding?: boolean | undefined;
6383
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
6384
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
6385
- readonly allowAlpha?: boolean | undefined;
6386
- readonly presetColors?: string[] | undefined;
6387
5072
  readonly step?: number | undefined;
6388
- readonly showValue?: boolean | undefined;
6389
- readonly marks?: Record<string, string> | undefined;
6390
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
6391
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
6392
- readonly displayValue?: boolean | undefined;
6393
- readonly allowScanning?: boolean | undefined;
6394
5073
  readonly currencyConfig?: {
6395
5074
  precision: number;
6396
5075
  currencyMode: "fixed" | "dynamic";
@@ -6444,29 +5123,7 @@ declare const SysSharingRule: Omit<{
6444
5123
  } | undefined;
6445
5124
  maxVersions?: number | undefined;
6446
5125
  } | undefined;
6447
- readonly maskingRule?: {
6448
- field: string;
6449
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
6450
- preserveFormat: boolean;
6451
- preserveLength: boolean;
6452
- pattern?: string | undefined;
6453
- roles?: string[] | undefined;
6454
- exemptRoles?: string[] | undefined;
6455
- } | undefined;
6456
- readonly auditTrail?: boolean | undefined;
6457
- readonly cached?: {
6458
- enabled: boolean;
6459
- ttl: number;
6460
- invalidateOn: string[];
6461
- } | undefined;
6462
- readonly dataQuality?: {
6463
- uniqueness: boolean;
6464
- completeness: number;
6465
- accuracy?: {
6466
- source: string;
6467
- threshold: number;
6468
- } | undefined;
6469
- } | undefined;
5126
+ readonly trackHistory?: boolean | undefined;
6470
5127
  readonly visibleWhen?: {
6471
5128
  dialect: "cel" | "js" | "cron" | "template";
6472
5129
  source?: string | undefined;
@@ -6505,7 +5162,6 @@ declare const SysSharingRule: Omit<{
6505
5162
  } | undefined;
6506
5163
  readonly sortable?: boolean | undefined;
6507
5164
  readonly inlineHelpText?: string | undefined;
6508
- readonly trackFeedHistory?: boolean | undefined;
6509
5165
  readonly caseSensitive?: boolean | undefined;
6510
5166
  readonly autonumberFormat?: string | undefined;
6511
5167
  readonly index?: boolean | undefined;
@@ -6527,7 +5183,6 @@ declare const SysSharingRule: Omit<{
6527
5183
  readonly required?: boolean | undefined;
6528
5184
  readonly multiple?: boolean | undefined;
6529
5185
  readonly dependencies?: string[] | undefined;
6530
- readonly theme?: string | undefined;
6531
5186
  readonly externalId?: boolean | undefined;
6532
5187
  readonly defaultValue?: unknown;
6533
5188
  readonly group?: string | undefined;
@@ -6535,23 +5190,6 @@ declare const SysSharingRule: Omit<{
6535
5190
  readonly system?: boolean | undefined;
6536
5191
  readonly min?: number | undefined;
6537
5192
  readonly max?: number | undefined;
6538
- readonly encryptionConfig?: {
6539
- enabled: boolean;
6540
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
6541
- keyManagement: {
6542
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
6543
- keyId?: string | undefined;
6544
- rotationPolicy?: {
6545
- enabled: boolean;
6546
- frequencyDays: number;
6547
- retainOldVersions: number;
6548
- autoRotate: boolean;
6549
- } | undefined;
6550
- };
6551
- scope: "record" | "field" | "table" | "database";
6552
- deterministicEncryption: boolean;
6553
- searchableEncryption: boolean;
6554
- } | undefined;
6555
5193
  readonly columnName?: string | undefined;
6556
5194
  readonly searchable?: boolean | undefined;
6557
5195
  readonly unique?: boolean | undefined;
@@ -6560,7 +5198,6 @@ declare const SysSharingRule: Omit<{
6560
5198
  readonly scale?: number | undefined;
6561
5199
  readonly reference?: string | undefined;
6562
5200
  readonly referenceFilters?: string[] | undefined;
6563
- readonly writeRequiresMasterRead?: boolean | undefined;
6564
5201
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
6565
5202
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
6566
5203
  readonly inlineTitle?: string | undefined;
@@ -6585,22 +5222,8 @@ declare const SysSharingRule: Omit<{
6585
5222
  relationshipField?: string | undefined;
6586
5223
  } | undefined;
6587
5224
  readonly language?: string | undefined;
6588
- readonly lineNumbers?: boolean | undefined;
6589
5225
  readonly maxRating?: number | undefined;
6590
- readonly allowHalf?: boolean | undefined;
6591
- readonly displayMap?: boolean | undefined;
6592
- readonly allowGeocoding?: boolean | undefined;
6593
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
6594
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
6595
- readonly allowAlpha?: boolean | undefined;
6596
- readonly presetColors?: string[] | undefined;
6597
5226
  readonly step?: number | undefined;
6598
- readonly showValue?: boolean | undefined;
6599
- readonly marks?: Record<string, string> | undefined;
6600
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
6601
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
6602
- readonly displayValue?: boolean | undefined;
6603
- readonly allowScanning?: boolean | undefined;
6604
5227
  readonly currencyConfig?: {
6605
5228
  precision: number;
6606
5229
  currencyMode: "fixed" | "dynamic";
@@ -6654,29 +5277,7 @@ declare const SysSharingRule: Omit<{
6654
5277
  } | undefined;
6655
5278
  maxVersions?: number | undefined;
6656
5279
  } | undefined;
6657
- readonly maskingRule?: {
6658
- field: string;
6659
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
6660
- preserveFormat: boolean;
6661
- preserveLength: boolean;
6662
- pattern?: string | undefined;
6663
- roles?: string[] | undefined;
6664
- exemptRoles?: string[] | undefined;
6665
- } | undefined;
6666
- readonly auditTrail?: boolean | undefined;
6667
- readonly cached?: {
6668
- enabled: boolean;
6669
- ttl: number;
6670
- invalidateOn: string[];
6671
- } | undefined;
6672
- readonly dataQuality?: {
6673
- uniqueness: boolean;
6674
- completeness: number;
6675
- accuracy?: {
6676
- source: string;
6677
- threshold: number;
6678
- } | undefined;
6679
- } | undefined;
5280
+ readonly trackHistory?: boolean | undefined;
6680
5281
  readonly visibleWhen?: {
6681
5282
  dialect: "cel" | "js" | "cron" | "template";
6682
5283
  source?: string | undefined;
@@ -6715,7 +5316,6 @@ declare const SysSharingRule: Omit<{
6715
5316
  } | undefined;
6716
5317
  readonly sortable?: boolean | undefined;
6717
5318
  readonly inlineHelpText?: string | undefined;
6718
- readonly trackFeedHistory?: boolean | undefined;
6719
5319
  readonly caseSensitive?: boolean | undefined;
6720
5320
  readonly autonumberFormat?: string | undefined;
6721
5321
  readonly index?: boolean | undefined;
@@ -6737,7 +5337,6 @@ declare const SysSharingRule: Omit<{
6737
5337
  readonly required?: boolean | undefined;
6738
5338
  readonly multiple?: boolean | undefined;
6739
5339
  readonly dependencies?: string[] | undefined;
6740
- readonly theme?: string | undefined;
6741
5340
  readonly externalId?: boolean | undefined;
6742
5341
  readonly defaultValue?: unknown;
6743
5342
  readonly group?: string | undefined;
@@ -6745,23 +5344,6 @@ declare const SysSharingRule: Omit<{
6745
5344
  readonly system?: boolean | undefined;
6746
5345
  readonly min?: number | undefined;
6747
5346
  readonly max?: number | undefined;
6748
- readonly encryptionConfig?: {
6749
- enabled: boolean;
6750
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
6751
- keyManagement: {
6752
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
6753
- keyId?: string | undefined;
6754
- rotationPolicy?: {
6755
- enabled: boolean;
6756
- frequencyDays: number;
6757
- retainOldVersions: number;
6758
- autoRotate: boolean;
6759
- } | undefined;
6760
- };
6761
- scope: "record" | "field" | "table" | "database";
6762
- deterministicEncryption: boolean;
6763
- searchableEncryption: boolean;
6764
- } | undefined;
6765
5347
  readonly columnName?: string | undefined;
6766
5348
  readonly searchable?: boolean | undefined;
6767
5349
  readonly unique?: boolean | undefined;
@@ -6770,7 +5352,6 @@ declare const SysSharingRule: Omit<{
6770
5352
  readonly scale?: number | undefined;
6771
5353
  readonly reference?: string | undefined;
6772
5354
  readonly referenceFilters?: string[] | undefined;
6773
- readonly writeRequiresMasterRead?: boolean | undefined;
6774
5355
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
6775
5356
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
6776
5357
  readonly inlineTitle?: string | undefined;
@@ -6795,22 +5376,8 @@ declare const SysSharingRule: Omit<{
6795
5376
  relationshipField?: string | undefined;
6796
5377
  } | undefined;
6797
5378
  readonly language?: string | undefined;
6798
- readonly lineNumbers?: boolean | undefined;
6799
5379
  readonly maxRating?: number | undefined;
6800
- readonly allowHalf?: boolean | undefined;
6801
- readonly displayMap?: boolean | undefined;
6802
- readonly allowGeocoding?: boolean | undefined;
6803
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
6804
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
6805
- readonly allowAlpha?: boolean | undefined;
6806
- readonly presetColors?: string[] | undefined;
6807
5380
  readonly step?: number | undefined;
6808
- readonly showValue?: boolean | undefined;
6809
- readonly marks?: Record<string, string> | undefined;
6810
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
6811
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
6812
- readonly displayValue?: boolean | undefined;
6813
- readonly allowScanning?: boolean | undefined;
6814
5381
  readonly currencyConfig?: {
6815
5382
  precision: number;
6816
5383
  currencyMode: "fixed" | "dynamic";
@@ -6864,29 +5431,7 @@ declare const SysSharingRule: Omit<{
6864
5431
  } | undefined;
6865
5432
  maxVersions?: number | undefined;
6866
5433
  } | undefined;
6867
- readonly maskingRule?: {
6868
- field: string;
6869
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
6870
- preserveFormat: boolean;
6871
- preserveLength: boolean;
6872
- pattern?: string | undefined;
6873
- roles?: string[] | undefined;
6874
- exemptRoles?: string[] | undefined;
6875
- } | undefined;
6876
- readonly auditTrail?: boolean | undefined;
6877
- readonly cached?: {
6878
- enabled: boolean;
6879
- ttl: number;
6880
- invalidateOn: string[];
6881
- } | undefined;
6882
- readonly dataQuality?: {
6883
- uniqueness: boolean;
6884
- completeness: number;
6885
- accuracy?: {
6886
- source: string;
6887
- threshold: number;
6888
- } | undefined;
6889
- } | undefined;
5434
+ readonly trackHistory?: boolean | undefined;
6890
5435
  readonly visibleWhen?: {
6891
5436
  dialect: "cel" | "js" | "cron" | "template";
6892
5437
  source?: string | undefined;
@@ -6925,7 +5470,6 @@ declare const SysSharingRule: Omit<{
6925
5470
  } | undefined;
6926
5471
  readonly sortable?: boolean | undefined;
6927
5472
  readonly inlineHelpText?: string | undefined;
6928
- readonly trackFeedHistory?: boolean | undefined;
6929
5473
  readonly caseSensitive?: boolean | undefined;
6930
5474
  readonly autonumberFormat?: string | undefined;
6931
5475
  readonly index?: boolean | undefined;
@@ -6947,7 +5491,6 @@ declare const SysSharingRule: Omit<{
6947
5491
  readonly required?: boolean | undefined;
6948
5492
  readonly multiple?: boolean | undefined;
6949
5493
  readonly dependencies?: string[] | undefined;
6950
- readonly theme?: string | undefined;
6951
5494
  readonly externalId?: boolean | undefined;
6952
5495
  readonly defaultValue?: unknown;
6953
5496
  readonly group?: string | undefined;
@@ -6955,23 +5498,6 @@ declare const SysSharingRule: Omit<{
6955
5498
  readonly system?: boolean | undefined;
6956
5499
  readonly min?: number | undefined;
6957
5500
  readonly max?: number | undefined;
6958
- readonly encryptionConfig?: {
6959
- enabled: boolean;
6960
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
6961
- keyManagement: {
6962
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
6963
- keyId?: string | undefined;
6964
- rotationPolicy?: {
6965
- enabled: boolean;
6966
- frequencyDays: number;
6967
- retainOldVersions: number;
6968
- autoRotate: boolean;
6969
- } | undefined;
6970
- };
6971
- scope: "record" | "field" | "table" | "database";
6972
- deterministicEncryption: boolean;
6973
- searchableEncryption: boolean;
6974
- } | undefined;
6975
5501
  readonly columnName?: string | undefined;
6976
5502
  readonly searchable?: boolean | undefined;
6977
5503
  readonly unique?: boolean | undefined;
@@ -6980,7 +5506,6 @@ declare const SysSharingRule: Omit<{
6980
5506
  readonly scale?: number | undefined;
6981
5507
  readonly reference?: string | undefined;
6982
5508
  readonly referenceFilters?: string[] | undefined;
6983
- readonly writeRequiresMasterRead?: boolean | undefined;
6984
5509
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
6985
5510
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
6986
5511
  readonly inlineTitle?: string | undefined;
@@ -7005,22 +5530,8 @@ declare const SysSharingRule: Omit<{
7005
5530
  relationshipField?: string | undefined;
7006
5531
  } | undefined;
7007
5532
  readonly language?: string | undefined;
7008
- readonly lineNumbers?: boolean | undefined;
7009
5533
  readonly maxRating?: number | undefined;
7010
- readonly allowHalf?: boolean | undefined;
7011
- readonly displayMap?: boolean | undefined;
7012
- readonly allowGeocoding?: boolean | undefined;
7013
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
7014
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
7015
- readonly allowAlpha?: boolean | undefined;
7016
- readonly presetColors?: string[] | undefined;
7017
5534
  readonly step?: number | undefined;
7018
- readonly showValue?: boolean | undefined;
7019
- readonly marks?: Record<string, string> | undefined;
7020
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
7021
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
7022
- readonly displayValue?: boolean | undefined;
7023
- readonly allowScanning?: boolean | undefined;
7024
5535
  readonly currencyConfig?: {
7025
5536
  precision: number;
7026
5537
  currencyMode: "fixed" | "dynamic";
@@ -7074,29 +5585,7 @@ declare const SysSharingRule: Omit<{
7074
5585
  } | undefined;
7075
5586
  maxVersions?: number | undefined;
7076
5587
  } | undefined;
7077
- readonly maskingRule?: {
7078
- field: string;
7079
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
7080
- preserveFormat: boolean;
7081
- preserveLength: boolean;
7082
- pattern?: string | undefined;
7083
- roles?: string[] | undefined;
7084
- exemptRoles?: string[] | undefined;
7085
- } | undefined;
7086
- readonly auditTrail?: boolean | undefined;
7087
- readonly cached?: {
7088
- enabled: boolean;
7089
- ttl: number;
7090
- invalidateOn: string[];
7091
- } | undefined;
7092
- readonly dataQuality?: {
7093
- uniqueness: boolean;
7094
- completeness: number;
7095
- accuracy?: {
7096
- source: string;
7097
- threshold: number;
7098
- } | undefined;
7099
- } | undefined;
5588
+ readonly trackHistory?: boolean | undefined;
7100
5589
  readonly visibleWhen?: {
7101
5590
  dialect: "cel" | "js" | "cron" | "template";
7102
5591
  source?: string | undefined;
@@ -7135,7 +5624,6 @@ declare const SysSharingRule: Omit<{
7135
5624
  } | undefined;
7136
5625
  readonly sortable?: boolean | undefined;
7137
5626
  readonly inlineHelpText?: string | undefined;
7138
- readonly trackFeedHistory?: boolean | undefined;
7139
5627
  readonly caseSensitive?: boolean | undefined;
7140
5628
  readonly autonumberFormat?: string | undefined;
7141
5629
  readonly index?: boolean | undefined;
@@ -7203,7 +5691,6 @@ declare const SysShareLink: Omit<{
7203
5691
  multiple: boolean;
7204
5692
  unique: boolean;
7205
5693
  deleteBehavior: "set_null" | "cascade" | "restrict";
7206
- auditTrail: boolean;
7207
5694
  hidden: boolean;
7208
5695
  readonly: boolean;
7209
5696
  sortable: boolean;
@@ -7229,7 +5716,6 @@ declare const SysShareLink: Omit<{
7229
5716
  }[] | undefined;
7230
5717
  reference?: string | undefined;
7231
5718
  referenceFilters?: string[] | undefined;
7232
- writeRequiresMasterRead?: boolean | undefined;
7233
5719
  inlineEdit?: boolean | "grid" | "form" | undefined;
7234
5720
  inlineTitle?: string | undefined;
7235
5721
  inlineColumns?: any[] | undefined;
@@ -7261,23 +5747,8 @@ declare const SysShareLink: Omit<{
7261
5747
  relationshipField?: string | undefined;
7262
5748
  } | undefined;
7263
5749
  language?: string | undefined;
7264
- theme?: string | undefined;
7265
- lineNumbers?: boolean | undefined;
7266
5750
  maxRating?: number | undefined;
7267
- allowHalf?: boolean | undefined;
7268
- displayMap?: boolean | undefined;
7269
- allowGeocoding?: boolean | undefined;
7270
- addressFormat?: "us" | "uk" | "international" | undefined;
7271
- colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
7272
- allowAlpha?: boolean | undefined;
7273
- presetColors?: string[] | undefined;
7274
5751
  step?: number | undefined;
7275
- showValue?: boolean | undefined;
7276
- marks?: Record<string, string> | undefined;
7277
- barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
7278
- qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
7279
- displayValue?: boolean | undefined;
7280
- allowScanning?: boolean | undefined;
7281
5752
  currencyConfig?: {
7282
5753
  precision: number;
7283
5754
  currencyMode: "fixed" | "dynamic";
@@ -7331,46 +5802,8 @@ declare const SysShareLink: Omit<{
7331
5802
  } | undefined;
7332
5803
  maxVersions?: number | undefined;
7333
5804
  } | undefined;
7334
- encryptionConfig?: {
7335
- enabled: boolean;
7336
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
7337
- keyManagement: {
7338
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
7339
- keyId?: string | undefined;
7340
- rotationPolicy?: {
7341
- enabled: boolean;
7342
- frequencyDays: number;
7343
- retainOldVersions: number;
7344
- autoRotate: boolean;
7345
- } | undefined;
7346
- };
7347
- scope: "record" | "field" | "table" | "database";
7348
- deterministicEncryption: boolean;
7349
- searchableEncryption: boolean;
7350
- } | undefined;
7351
- maskingRule?: {
7352
- field: string;
7353
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
7354
- preserveFormat: boolean;
7355
- preserveLength: boolean;
7356
- pattern?: string | undefined;
7357
- roles?: string[] | undefined;
7358
- exemptRoles?: string[] | undefined;
7359
- } | undefined;
5805
+ trackHistory?: boolean | undefined;
7360
5806
  dependencies?: string[] | undefined;
7361
- cached?: {
7362
- enabled: boolean;
7363
- ttl: number;
7364
- invalidateOn: string[];
7365
- } | undefined;
7366
- dataQuality?: {
7367
- uniqueness: boolean;
7368
- completeness: number;
7369
- accuracy?: {
7370
- source: string;
7371
- threshold: number;
7372
- } | undefined;
7373
- } | undefined;
7374
5807
  group?: string | undefined;
7375
5808
  visibleWhen?: {
7376
5809
  dialect: "cel" | "js" | "cron" | "template";
@@ -7442,7 +5875,6 @@ declare const SysShareLink: Omit<{
7442
5875
  } | undefined;
7443
5876
  system?: boolean | undefined;
7444
5877
  inlineHelpText?: string | undefined;
7445
- trackFeedHistory?: boolean | undefined;
7446
5878
  caseSensitive?: boolean | undefined;
7447
5879
  autonumberFormat?: string | undefined;
7448
5880
  }>;
@@ -7533,12 +5965,13 @@ declare const SysShareLink: Omit<{
7533
5965
  key: string;
7534
5966
  interval?: string | undefined;
7535
5967
  } | undefined;
7536
- cdc?: {
7537
- enabled: boolean;
7538
- events: ("delete" | "update" | "insert")[];
7539
- destination: string;
7540
- } | undefined;
7541
5968
  validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
5969
+ activityMilestones?: {
5970
+ field: string;
5971
+ value: string;
5972
+ summary: string;
5973
+ type?: string | undefined;
5974
+ }[] | undefined;
7542
5975
  displayNameField?: string | undefined;
7543
5976
  recordName?: {
7544
5977
  type: "text" | "autonumber";
@@ -7849,7 +6282,6 @@ declare const SysShareLink: Omit<{
7849
6282
  clone: boolean;
7850
6283
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
7851
6284
  } | undefined;
7852
- recordTypes?: string[] | undefined;
7853
6285
  sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
7854
6286
  publicSharing?: {
7855
6287
  enabled: boolean;
@@ -8081,7 +6513,6 @@ declare const SysShareLink: Omit<{
8081
6513
  readonly required?: boolean | undefined;
8082
6514
  readonly multiple?: boolean | undefined;
8083
6515
  readonly dependencies?: string[] | undefined;
8084
- readonly theme?: string | undefined;
8085
6516
  readonly externalId?: boolean | undefined;
8086
6517
  readonly defaultValue?: unknown;
8087
6518
  readonly group?: string | undefined;
@@ -8089,23 +6520,6 @@ declare const SysShareLink: Omit<{
8089
6520
  readonly system?: boolean | undefined;
8090
6521
  readonly min?: number | undefined;
8091
6522
  readonly max?: number | undefined;
8092
- readonly encryptionConfig?: {
8093
- enabled: boolean;
8094
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
8095
- keyManagement: {
8096
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
8097
- keyId?: string | undefined;
8098
- rotationPolicy?: {
8099
- enabled: boolean;
8100
- frequencyDays: number;
8101
- retainOldVersions: number;
8102
- autoRotate: boolean;
8103
- } | undefined;
8104
- };
8105
- scope: "record" | "field" | "table" | "database";
8106
- deterministicEncryption: boolean;
8107
- searchableEncryption: boolean;
8108
- } | undefined;
8109
6523
  readonly columnName?: string | undefined;
8110
6524
  readonly searchable?: boolean | undefined;
8111
6525
  readonly unique?: boolean | undefined;
@@ -8114,7 +6528,6 @@ declare const SysShareLink: Omit<{
8114
6528
  readonly scale?: number | undefined;
8115
6529
  readonly reference?: string | undefined;
8116
6530
  readonly referenceFilters?: string[] | undefined;
8117
- readonly writeRequiresMasterRead?: boolean | undefined;
8118
6531
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
8119
6532
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
8120
6533
  readonly inlineTitle?: string | undefined;
@@ -8139,22 +6552,8 @@ declare const SysShareLink: Omit<{
8139
6552
  relationshipField?: string | undefined;
8140
6553
  } | undefined;
8141
6554
  readonly language?: string | undefined;
8142
- readonly lineNumbers?: boolean | undefined;
8143
6555
  readonly maxRating?: number | undefined;
8144
- readonly allowHalf?: boolean | undefined;
8145
- readonly displayMap?: boolean | undefined;
8146
- readonly allowGeocoding?: boolean | undefined;
8147
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
8148
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
8149
- readonly allowAlpha?: boolean | undefined;
8150
- readonly presetColors?: string[] | undefined;
8151
6556
  readonly step?: number | undefined;
8152
- readonly showValue?: boolean | undefined;
8153
- readonly marks?: Record<string, string> | undefined;
8154
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
8155
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
8156
- readonly displayValue?: boolean | undefined;
8157
- readonly allowScanning?: boolean | undefined;
8158
6557
  readonly currencyConfig?: {
8159
6558
  precision: number;
8160
6559
  currencyMode: "fixed" | "dynamic";
@@ -8208,29 +6607,7 @@ declare const SysShareLink: Omit<{
8208
6607
  } | undefined;
8209
6608
  maxVersions?: number | undefined;
8210
6609
  } | undefined;
8211
- readonly maskingRule?: {
8212
- field: string;
8213
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
8214
- preserveFormat: boolean;
8215
- preserveLength: boolean;
8216
- pattern?: string | undefined;
8217
- roles?: string[] | undefined;
8218
- exemptRoles?: string[] | undefined;
8219
- } | undefined;
8220
- readonly auditTrail?: boolean | undefined;
8221
- readonly cached?: {
8222
- enabled: boolean;
8223
- ttl: number;
8224
- invalidateOn: string[];
8225
- } | undefined;
8226
- readonly dataQuality?: {
8227
- uniqueness: boolean;
8228
- completeness: number;
8229
- accuracy?: {
8230
- source: string;
8231
- threshold: number;
8232
- } | undefined;
8233
- } | undefined;
6610
+ readonly trackHistory?: boolean | undefined;
8234
6611
  readonly visibleWhen?: {
8235
6612
  dialect: "cel" | "js" | "cron" | "template";
8236
6613
  source?: string | undefined;
@@ -8269,7 +6646,6 @@ declare const SysShareLink: Omit<{
8269
6646
  } | undefined;
8270
6647
  readonly sortable?: boolean | undefined;
8271
6648
  readonly inlineHelpText?: string | undefined;
8272
- readonly trackFeedHistory?: boolean | undefined;
8273
6649
  readonly caseSensitive?: boolean | undefined;
8274
6650
  readonly autonumberFormat?: string | undefined;
8275
6651
  readonly index?: boolean | undefined;
@@ -8291,7 +6667,6 @@ declare const SysShareLink: Omit<{
8291
6667
  readonly required?: boolean | undefined;
8292
6668
  readonly multiple?: boolean | undefined;
8293
6669
  readonly dependencies?: string[] | undefined;
8294
- readonly theme?: string | undefined;
8295
6670
  readonly externalId?: boolean | undefined;
8296
6671
  readonly defaultValue?: unknown;
8297
6672
  readonly group?: string | undefined;
@@ -8299,23 +6674,6 @@ declare const SysShareLink: Omit<{
8299
6674
  readonly system?: boolean | undefined;
8300
6675
  readonly min?: number | undefined;
8301
6676
  readonly max?: number | undefined;
8302
- readonly encryptionConfig?: {
8303
- enabled: boolean;
8304
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
8305
- keyManagement: {
8306
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
8307
- keyId?: string | undefined;
8308
- rotationPolicy?: {
8309
- enabled: boolean;
8310
- frequencyDays: number;
8311
- retainOldVersions: number;
8312
- autoRotate: boolean;
8313
- } | undefined;
8314
- };
8315
- scope: "record" | "field" | "table" | "database";
8316
- deterministicEncryption: boolean;
8317
- searchableEncryption: boolean;
8318
- } | undefined;
8319
6677
  readonly columnName?: string | undefined;
8320
6678
  readonly searchable?: boolean | undefined;
8321
6679
  readonly unique?: boolean | undefined;
@@ -8324,7 +6682,6 @@ declare const SysShareLink: Omit<{
8324
6682
  readonly scale?: number | undefined;
8325
6683
  readonly reference?: string | undefined;
8326
6684
  readonly referenceFilters?: string[] | undefined;
8327
- readonly writeRequiresMasterRead?: boolean | undefined;
8328
6685
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
8329
6686
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
8330
6687
  readonly inlineTitle?: string | undefined;
@@ -8349,22 +6706,8 @@ declare const SysShareLink: Omit<{
8349
6706
  relationshipField?: string | undefined;
8350
6707
  } | undefined;
8351
6708
  readonly language?: string | undefined;
8352
- readonly lineNumbers?: boolean | undefined;
8353
6709
  readonly maxRating?: number | undefined;
8354
- readonly allowHalf?: boolean | undefined;
8355
- readonly displayMap?: boolean | undefined;
8356
- readonly allowGeocoding?: boolean | undefined;
8357
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
8358
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
8359
- readonly allowAlpha?: boolean | undefined;
8360
- readonly presetColors?: string[] | undefined;
8361
6710
  readonly step?: number | undefined;
8362
- readonly showValue?: boolean | undefined;
8363
- readonly marks?: Record<string, string> | undefined;
8364
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
8365
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
8366
- readonly displayValue?: boolean | undefined;
8367
- readonly allowScanning?: boolean | undefined;
8368
6711
  readonly currencyConfig?: {
8369
6712
  precision: number;
8370
6713
  currencyMode: "fixed" | "dynamic";
@@ -8418,29 +6761,7 @@ declare const SysShareLink: Omit<{
8418
6761
  } | undefined;
8419
6762
  maxVersions?: number | undefined;
8420
6763
  } | undefined;
8421
- readonly maskingRule?: {
8422
- field: string;
8423
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
8424
- preserveFormat: boolean;
8425
- preserveLength: boolean;
8426
- pattern?: string | undefined;
8427
- roles?: string[] | undefined;
8428
- exemptRoles?: string[] | undefined;
8429
- } | undefined;
8430
- readonly auditTrail?: boolean | undefined;
8431
- readonly cached?: {
8432
- enabled: boolean;
8433
- ttl: number;
8434
- invalidateOn: string[];
8435
- } | undefined;
8436
- readonly dataQuality?: {
8437
- uniqueness: boolean;
8438
- completeness: number;
8439
- accuracy?: {
8440
- source: string;
8441
- threshold: number;
8442
- } | undefined;
8443
- } | undefined;
6764
+ readonly trackHistory?: boolean | undefined;
8444
6765
  readonly visibleWhen?: {
8445
6766
  dialect: "cel" | "js" | "cron" | "template";
8446
6767
  source?: string | undefined;
@@ -8479,7 +6800,6 @@ declare const SysShareLink: Omit<{
8479
6800
  } | undefined;
8480
6801
  readonly sortable?: boolean | undefined;
8481
6802
  readonly inlineHelpText?: string | undefined;
8482
- readonly trackFeedHistory?: boolean | undefined;
8483
6803
  readonly caseSensitive?: boolean | undefined;
8484
6804
  readonly autonumberFormat?: string | undefined;
8485
6805
  readonly index?: boolean | undefined;
@@ -8501,7 +6821,6 @@ declare const SysShareLink: Omit<{
8501
6821
  readonly required?: boolean | undefined;
8502
6822
  readonly multiple?: boolean | undefined;
8503
6823
  readonly dependencies?: string[] | undefined;
8504
- readonly theme?: string | undefined;
8505
6824
  readonly externalId?: boolean | undefined;
8506
6825
  readonly defaultValue?: unknown;
8507
6826
  readonly group?: string | undefined;
@@ -8509,23 +6828,6 @@ declare const SysShareLink: Omit<{
8509
6828
  readonly system?: boolean | undefined;
8510
6829
  readonly min?: number | undefined;
8511
6830
  readonly max?: number | undefined;
8512
- readonly encryptionConfig?: {
8513
- enabled: boolean;
8514
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
8515
- keyManagement: {
8516
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
8517
- keyId?: string | undefined;
8518
- rotationPolicy?: {
8519
- enabled: boolean;
8520
- frequencyDays: number;
8521
- retainOldVersions: number;
8522
- autoRotate: boolean;
8523
- } | undefined;
8524
- };
8525
- scope: "record" | "field" | "table" | "database";
8526
- deterministicEncryption: boolean;
8527
- searchableEncryption: boolean;
8528
- } | undefined;
8529
6831
  readonly columnName?: string | undefined;
8530
6832
  readonly searchable?: boolean | undefined;
8531
6833
  readonly unique?: boolean | undefined;
@@ -8534,7 +6836,6 @@ declare const SysShareLink: Omit<{
8534
6836
  readonly scale?: number | undefined;
8535
6837
  readonly reference?: string | undefined;
8536
6838
  readonly referenceFilters?: string[] | undefined;
8537
- readonly writeRequiresMasterRead?: boolean | undefined;
8538
6839
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
8539
6840
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
8540
6841
  readonly inlineTitle?: string | undefined;
@@ -8559,22 +6860,8 @@ declare const SysShareLink: Omit<{
8559
6860
  relationshipField?: string | undefined;
8560
6861
  } | undefined;
8561
6862
  readonly language?: string | undefined;
8562
- readonly lineNumbers?: boolean | undefined;
8563
6863
  readonly maxRating?: number | undefined;
8564
- readonly allowHalf?: boolean | undefined;
8565
- readonly displayMap?: boolean | undefined;
8566
- readonly allowGeocoding?: boolean | undefined;
8567
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
8568
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
8569
- readonly allowAlpha?: boolean | undefined;
8570
- readonly presetColors?: string[] | undefined;
8571
6864
  readonly step?: number | undefined;
8572
- readonly showValue?: boolean | undefined;
8573
- readonly marks?: Record<string, string> | undefined;
8574
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
8575
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
8576
- readonly displayValue?: boolean | undefined;
8577
- readonly allowScanning?: boolean | undefined;
8578
6865
  readonly currencyConfig?: {
8579
6866
  precision: number;
8580
6867
  currencyMode: "fixed" | "dynamic";
@@ -8628,29 +6915,7 @@ declare const SysShareLink: Omit<{
8628
6915
  } | undefined;
8629
6916
  maxVersions?: number | undefined;
8630
6917
  } | undefined;
8631
- readonly maskingRule?: {
8632
- field: string;
8633
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
8634
- preserveFormat: boolean;
8635
- preserveLength: boolean;
8636
- pattern?: string | undefined;
8637
- roles?: string[] | undefined;
8638
- exemptRoles?: string[] | undefined;
8639
- } | undefined;
8640
- readonly auditTrail?: boolean | undefined;
8641
- readonly cached?: {
8642
- enabled: boolean;
8643
- ttl: number;
8644
- invalidateOn: string[];
8645
- } | undefined;
8646
- readonly dataQuality?: {
8647
- uniqueness: boolean;
8648
- completeness: number;
8649
- accuracy?: {
8650
- source: string;
8651
- threshold: number;
8652
- } | undefined;
8653
- } | undefined;
6918
+ readonly trackHistory?: boolean | undefined;
8654
6919
  readonly visibleWhen?: {
8655
6920
  dialect: "cel" | "js" | "cron" | "template";
8656
6921
  source?: string | undefined;
@@ -8689,7 +6954,6 @@ declare const SysShareLink: Omit<{
8689
6954
  } | undefined;
8690
6955
  readonly sortable?: boolean | undefined;
8691
6956
  readonly inlineHelpText?: string | undefined;
8692
- readonly trackFeedHistory?: boolean | undefined;
8693
6957
  readonly caseSensitive?: boolean | undefined;
8694
6958
  readonly autonumberFormat?: string | undefined;
8695
6959
  readonly index?: boolean | undefined;
@@ -8711,7 +6975,6 @@ declare const SysShareLink: Omit<{
8711
6975
  readonly required?: boolean | undefined;
8712
6976
  readonly multiple?: boolean | undefined;
8713
6977
  readonly dependencies?: string[] | undefined;
8714
- readonly theme?: string | undefined;
8715
6978
  readonly externalId?: boolean | undefined;
8716
6979
  readonly defaultValue?: unknown;
8717
6980
  readonly group?: string | undefined;
@@ -8719,23 +6982,6 @@ declare const SysShareLink: Omit<{
8719
6982
  readonly system?: boolean | undefined;
8720
6983
  readonly min?: number | undefined;
8721
6984
  readonly max?: number | undefined;
8722
- readonly encryptionConfig?: {
8723
- enabled: boolean;
8724
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
8725
- keyManagement: {
8726
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
8727
- keyId?: string | undefined;
8728
- rotationPolicy?: {
8729
- enabled: boolean;
8730
- frequencyDays: number;
8731
- retainOldVersions: number;
8732
- autoRotate: boolean;
8733
- } | undefined;
8734
- };
8735
- scope: "record" | "field" | "table" | "database";
8736
- deterministicEncryption: boolean;
8737
- searchableEncryption: boolean;
8738
- } | undefined;
8739
6985
  readonly columnName?: string | undefined;
8740
6986
  readonly searchable?: boolean | undefined;
8741
6987
  readonly unique?: boolean | undefined;
@@ -8744,7 +6990,6 @@ declare const SysShareLink: Omit<{
8744
6990
  readonly scale?: number | undefined;
8745
6991
  readonly reference?: string | undefined;
8746
6992
  readonly referenceFilters?: string[] | undefined;
8747
- readonly writeRequiresMasterRead?: boolean | undefined;
8748
6993
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
8749
6994
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
8750
6995
  readonly inlineTitle?: string | undefined;
@@ -8769,22 +7014,8 @@ declare const SysShareLink: Omit<{
8769
7014
  relationshipField?: string | undefined;
8770
7015
  } | undefined;
8771
7016
  readonly language?: string | undefined;
8772
- readonly lineNumbers?: boolean | undefined;
8773
7017
  readonly maxRating?: number | undefined;
8774
- readonly allowHalf?: boolean | undefined;
8775
- readonly displayMap?: boolean | undefined;
8776
- readonly allowGeocoding?: boolean | undefined;
8777
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
8778
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
8779
- readonly allowAlpha?: boolean | undefined;
8780
- readonly presetColors?: string[] | undefined;
8781
7018
  readonly step?: number | undefined;
8782
- readonly showValue?: boolean | undefined;
8783
- readonly marks?: Record<string, string> | undefined;
8784
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
8785
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
8786
- readonly displayValue?: boolean | undefined;
8787
- readonly allowScanning?: boolean | undefined;
8788
7019
  readonly currencyConfig?: {
8789
7020
  precision: number;
8790
7021
  currencyMode: "fixed" | "dynamic";
@@ -8838,29 +7069,7 @@ declare const SysShareLink: Omit<{
8838
7069
  } | undefined;
8839
7070
  maxVersions?: number | undefined;
8840
7071
  } | undefined;
8841
- readonly maskingRule?: {
8842
- field: string;
8843
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
8844
- preserveFormat: boolean;
8845
- preserveLength: boolean;
8846
- pattern?: string | undefined;
8847
- roles?: string[] | undefined;
8848
- exemptRoles?: string[] | undefined;
8849
- } | undefined;
8850
- readonly auditTrail?: boolean | undefined;
8851
- readonly cached?: {
8852
- enabled: boolean;
8853
- ttl: number;
8854
- invalidateOn: string[];
8855
- } | undefined;
8856
- readonly dataQuality?: {
8857
- uniqueness: boolean;
8858
- completeness: number;
8859
- accuracy?: {
8860
- source: string;
8861
- threshold: number;
8862
- } | undefined;
8863
- } | undefined;
7072
+ readonly trackHistory?: boolean | undefined;
8864
7073
  readonly visibleWhen?: {
8865
7074
  dialect: "cel" | "js" | "cron" | "template";
8866
7075
  source?: string | undefined;
@@ -8899,7 +7108,6 @@ declare const SysShareLink: Omit<{
8899
7108
  } | undefined;
8900
7109
  readonly sortable?: boolean | undefined;
8901
7110
  readonly inlineHelpText?: string | undefined;
8902
- readonly trackFeedHistory?: boolean | undefined;
8903
7111
  readonly caseSensitive?: boolean | undefined;
8904
7112
  readonly autonumberFormat?: string | undefined;
8905
7113
  readonly index?: boolean | undefined;
@@ -8921,7 +7129,6 @@ declare const SysShareLink: Omit<{
8921
7129
  readonly required?: boolean | undefined;
8922
7130
  readonly multiple?: boolean | undefined;
8923
7131
  readonly dependencies?: string[] | undefined;
8924
- readonly theme?: string | undefined;
8925
7132
  readonly externalId?: boolean | undefined;
8926
7133
  readonly defaultValue?: unknown;
8927
7134
  readonly group?: string | undefined;
@@ -8929,23 +7136,6 @@ declare const SysShareLink: Omit<{
8929
7136
  readonly system?: boolean | undefined;
8930
7137
  readonly min?: number | undefined;
8931
7138
  readonly max?: number | undefined;
8932
- readonly encryptionConfig?: {
8933
- enabled: boolean;
8934
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
8935
- keyManagement: {
8936
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
8937
- keyId?: string | undefined;
8938
- rotationPolicy?: {
8939
- enabled: boolean;
8940
- frequencyDays: number;
8941
- retainOldVersions: number;
8942
- autoRotate: boolean;
8943
- } | undefined;
8944
- };
8945
- scope: "record" | "field" | "table" | "database";
8946
- deterministicEncryption: boolean;
8947
- searchableEncryption: boolean;
8948
- } | undefined;
8949
7139
  readonly columnName?: string | undefined;
8950
7140
  readonly searchable?: boolean | undefined;
8951
7141
  readonly unique?: boolean | undefined;
@@ -8954,7 +7144,6 @@ declare const SysShareLink: Omit<{
8954
7144
  readonly scale?: number | undefined;
8955
7145
  readonly reference?: string | undefined;
8956
7146
  readonly referenceFilters?: string[] | undefined;
8957
- readonly writeRequiresMasterRead?: boolean | undefined;
8958
7147
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
8959
7148
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
8960
7149
  readonly inlineTitle?: string | undefined;
@@ -8979,22 +7168,8 @@ declare const SysShareLink: Omit<{
8979
7168
  relationshipField?: string | undefined;
8980
7169
  } | undefined;
8981
7170
  readonly language?: string | undefined;
8982
- readonly lineNumbers?: boolean | undefined;
8983
7171
  readonly maxRating?: number | undefined;
8984
- readonly allowHalf?: boolean | undefined;
8985
- readonly displayMap?: boolean | undefined;
8986
- readonly allowGeocoding?: boolean | undefined;
8987
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
8988
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
8989
- readonly allowAlpha?: boolean | undefined;
8990
- readonly presetColors?: string[] | undefined;
8991
7172
  readonly step?: number | undefined;
8992
- readonly showValue?: boolean | undefined;
8993
- readonly marks?: Record<string, string> | undefined;
8994
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
8995
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
8996
- readonly displayValue?: boolean | undefined;
8997
- readonly allowScanning?: boolean | undefined;
8998
7173
  readonly currencyConfig?: {
8999
7174
  precision: number;
9000
7175
  currencyMode: "fixed" | "dynamic";
@@ -9048,29 +7223,7 @@ declare const SysShareLink: Omit<{
9048
7223
  } | undefined;
9049
7224
  maxVersions?: number | undefined;
9050
7225
  } | undefined;
9051
- readonly maskingRule?: {
9052
- field: string;
9053
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
9054
- preserveFormat: boolean;
9055
- preserveLength: boolean;
9056
- pattern?: string | undefined;
9057
- roles?: string[] | undefined;
9058
- exemptRoles?: string[] | undefined;
9059
- } | undefined;
9060
- readonly auditTrail?: boolean | undefined;
9061
- readonly cached?: {
9062
- enabled: boolean;
9063
- ttl: number;
9064
- invalidateOn: string[];
9065
- } | undefined;
9066
- readonly dataQuality?: {
9067
- uniqueness: boolean;
9068
- completeness: number;
9069
- accuracy?: {
9070
- source: string;
9071
- threshold: number;
9072
- } | undefined;
9073
- } | undefined;
7226
+ readonly trackHistory?: boolean | undefined;
9074
7227
  readonly visibleWhen?: {
9075
7228
  dialect: "cel" | "js" | "cron" | "template";
9076
7229
  source?: string | undefined;
@@ -9109,7 +7262,6 @@ declare const SysShareLink: Omit<{
9109
7262
  } | undefined;
9110
7263
  readonly sortable?: boolean | undefined;
9111
7264
  readonly inlineHelpText?: string | undefined;
9112
- readonly trackFeedHistory?: boolean | undefined;
9113
7265
  readonly caseSensitive?: boolean | undefined;
9114
7266
  readonly autonumberFormat?: string | undefined;
9115
7267
  readonly index?: boolean | undefined;
@@ -9131,7 +7283,6 @@ declare const SysShareLink: Omit<{
9131
7283
  readonly required?: boolean | undefined;
9132
7284
  readonly multiple?: boolean | undefined;
9133
7285
  readonly dependencies?: string[] | undefined;
9134
- readonly theme?: string | undefined;
9135
7286
  readonly externalId?: boolean | undefined;
9136
7287
  readonly defaultValue?: unknown;
9137
7288
  readonly group?: string | undefined;
@@ -9139,23 +7290,6 @@ declare const SysShareLink: Omit<{
9139
7290
  readonly system?: boolean | undefined;
9140
7291
  readonly min?: number | undefined;
9141
7292
  readonly max?: number | undefined;
9142
- readonly encryptionConfig?: {
9143
- enabled: boolean;
9144
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
9145
- keyManagement: {
9146
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
9147
- keyId?: string | undefined;
9148
- rotationPolicy?: {
9149
- enabled: boolean;
9150
- frequencyDays: number;
9151
- retainOldVersions: number;
9152
- autoRotate: boolean;
9153
- } | undefined;
9154
- };
9155
- scope: "record" | "field" | "table" | "database";
9156
- deterministicEncryption: boolean;
9157
- searchableEncryption: boolean;
9158
- } | undefined;
9159
7293
  readonly columnName?: string | undefined;
9160
7294
  readonly searchable?: boolean | undefined;
9161
7295
  readonly unique?: boolean | undefined;
@@ -9164,7 +7298,6 @@ declare const SysShareLink: Omit<{
9164
7298
  readonly scale?: number | undefined;
9165
7299
  readonly reference?: string | undefined;
9166
7300
  readonly referenceFilters?: string[] | undefined;
9167
- readonly writeRequiresMasterRead?: boolean | undefined;
9168
7301
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
9169
7302
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
9170
7303
  readonly inlineTitle?: string | undefined;
@@ -9189,22 +7322,8 @@ declare const SysShareLink: Omit<{
9189
7322
  relationshipField?: string | undefined;
9190
7323
  } | undefined;
9191
7324
  readonly language?: string | undefined;
9192
- readonly lineNumbers?: boolean | undefined;
9193
7325
  readonly maxRating?: number | undefined;
9194
- readonly allowHalf?: boolean | undefined;
9195
- readonly displayMap?: boolean | undefined;
9196
- readonly allowGeocoding?: boolean | undefined;
9197
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
9198
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
9199
- readonly allowAlpha?: boolean | undefined;
9200
- readonly presetColors?: string[] | undefined;
9201
7326
  readonly step?: number | undefined;
9202
- readonly showValue?: boolean | undefined;
9203
- readonly marks?: Record<string, string> | undefined;
9204
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
9205
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
9206
- readonly displayValue?: boolean | undefined;
9207
- readonly allowScanning?: boolean | undefined;
9208
7327
  readonly currencyConfig?: {
9209
7328
  precision: number;
9210
7329
  currencyMode: "fixed" | "dynamic";
@@ -9258,29 +7377,7 @@ declare const SysShareLink: Omit<{
9258
7377
  } | undefined;
9259
7378
  maxVersions?: number | undefined;
9260
7379
  } | undefined;
9261
- readonly maskingRule?: {
9262
- field: string;
9263
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
9264
- preserveFormat: boolean;
9265
- preserveLength: boolean;
9266
- pattern?: string | undefined;
9267
- roles?: string[] | undefined;
9268
- exemptRoles?: string[] | undefined;
9269
- } | undefined;
9270
- readonly auditTrail?: boolean | undefined;
9271
- readonly cached?: {
9272
- enabled: boolean;
9273
- ttl: number;
9274
- invalidateOn: string[];
9275
- } | undefined;
9276
- readonly dataQuality?: {
9277
- uniqueness: boolean;
9278
- completeness: number;
9279
- accuracy?: {
9280
- source: string;
9281
- threshold: number;
9282
- } | undefined;
9283
- } | undefined;
7380
+ readonly trackHistory?: boolean | undefined;
9284
7381
  readonly visibleWhen?: {
9285
7382
  dialect: "cel" | "js" | "cron" | "template";
9286
7383
  source?: string | undefined;
@@ -9319,7 +7416,6 @@ declare const SysShareLink: Omit<{
9319
7416
  } | undefined;
9320
7417
  readonly sortable?: boolean | undefined;
9321
7418
  readonly inlineHelpText?: string | undefined;
9322
- readonly trackFeedHistory?: boolean | undefined;
9323
7419
  readonly caseSensitive?: boolean | undefined;
9324
7420
  readonly autonumberFormat?: string | undefined;
9325
7421
  readonly index?: boolean | undefined;
@@ -9341,7 +7437,6 @@ declare const SysShareLink: Omit<{
9341
7437
  readonly required?: boolean | undefined;
9342
7438
  readonly multiple?: boolean | undefined;
9343
7439
  readonly dependencies?: string[] | undefined;
9344
- readonly theme?: string | undefined;
9345
7440
  readonly externalId?: boolean | undefined;
9346
7441
  readonly defaultValue?: unknown;
9347
7442
  readonly group?: string | undefined;
@@ -9349,23 +7444,6 @@ declare const SysShareLink: Omit<{
9349
7444
  readonly system?: boolean | undefined;
9350
7445
  readonly min?: number | undefined;
9351
7446
  readonly max?: number | undefined;
9352
- readonly encryptionConfig?: {
9353
- enabled: boolean;
9354
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
9355
- keyManagement: {
9356
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
9357
- keyId?: string | undefined;
9358
- rotationPolicy?: {
9359
- enabled: boolean;
9360
- frequencyDays: number;
9361
- retainOldVersions: number;
9362
- autoRotate: boolean;
9363
- } | undefined;
9364
- };
9365
- scope: "record" | "field" | "table" | "database";
9366
- deterministicEncryption: boolean;
9367
- searchableEncryption: boolean;
9368
- } | undefined;
9369
7447
  readonly columnName?: string | undefined;
9370
7448
  readonly searchable?: boolean | undefined;
9371
7449
  readonly unique?: boolean | undefined;
@@ -9374,7 +7452,6 @@ declare const SysShareLink: Omit<{
9374
7452
  readonly scale?: number | undefined;
9375
7453
  readonly reference?: string | undefined;
9376
7454
  readonly referenceFilters?: string[] | undefined;
9377
- readonly writeRequiresMasterRead?: boolean | undefined;
9378
7455
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
9379
7456
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
9380
7457
  readonly inlineTitle?: string | undefined;
@@ -9399,22 +7476,8 @@ declare const SysShareLink: Omit<{
9399
7476
  relationshipField?: string | undefined;
9400
7477
  } | undefined;
9401
7478
  readonly language?: string | undefined;
9402
- readonly lineNumbers?: boolean | undefined;
9403
7479
  readonly maxRating?: number | undefined;
9404
- readonly allowHalf?: boolean | undefined;
9405
- readonly displayMap?: boolean | undefined;
9406
- readonly allowGeocoding?: boolean | undefined;
9407
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
9408
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
9409
- readonly allowAlpha?: boolean | undefined;
9410
- readonly presetColors?: string[] | undefined;
9411
7480
  readonly step?: number | undefined;
9412
- readonly showValue?: boolean | undefined;
9413
- readonly marks?: Record<string, string> | undefined;
9414
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
9415
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
9416
- readonly displayValue?: boolean | undefined;
9417
- readonly allowScanning?: boolean | undefined;
9418
7481
  readonly currencyConfig?: {
9419
7482
  precision: number;
9420
7483
  currencyMode: "fixed" | "dynamic";
@@ -9468,29 +7531,7 @@ declare const SysShareLink: Omit<{
9468
7531
  } | undefined;
9469
7532
  maxVersions?: number | undefined;
9470
7533
  } | undefined;
9471
- readonly maskingRule?: {
9472
- field: string;
9473
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
9474
- preserveFormat: boolean;
9475
- preserveLength: boolean;
9476
- pattern?: string | undefined;
9477
- roles?: string[] | undefined;
9478
- exemptRoles?: string[] | undefined;
9479
- } | undefined;
9480
- readonly auditTrail?: boolean | undefined;
9481
- readonly cached?: {
9482
- enabled: boolean;
9483
- ttl: number;
9484
- invalidateOn: string[];
9485
- } | undefined;
9486
- readonly dataQuality?: {
9487
- uniqueness: boolean;
9488
- completeness: number;
9489
- accuracy?: {
9490
- source: string;
9491
- threshold: number;
9492
- } | undefined;
9493
- } | undefined;
7534
+ readonly trackHistory?: boolean | undefined;
9494
7535
  readonly visibleWhen?: {
9495
7536
  dialect: "cel" | "js" | "cron" | "template";
9496
7537
  source?: string | undefined;
@@ -9529,7 +7570,6 @@ declare const SysShareLink: Omit<{
9529
7570
  } | undefined;
9530
7571
  readonly sortable?: boolean | undefined;
9531
7572
  readonly inlineHelpText?: string | undefined;
9532
- readonly trackFeedHistory?: boolean | undefined;
9533
7573
  readonly caseSensitive?: boolean | undefined;
9534
7574
  readonly autonumberFormat?: string | undefined;
9535
7575
  readonly index?: boolean | undefined;
@@ -9551,7 +7591,6 @@ declare const SysShareLink: Omit<{
9551
7591
  readonly required?: boolean | undefined;
9552
7592
  readonly multiple?: boolean | undefined;
9553
7593
  readonly dependencies?: string[] | undefined;
9554
- readonly theme?: string | undefined;
9555
7594
  readonly externalId?: boolean | undefined;
9556
7595
  readonly defaultValue?: unknown;
9557
7596
  readonly group?: string | undefined;
@@ -9559,23 +7598,6 @@ declare const SysShareLink: Omit<{
9559
7598
  readonly system?: boolean | undefined;
9560
7599
  readonly min?: number | undefined;
9561
7600
  readonly max?: number | undefined;
9562
- readonly encryptionConfig?: {
9563
- enabled: boolean;
9564
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
9565
- keyManagement: {
9566
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
9567
- keyId?: string | undefined;
9568
- rotationPolicy?: {
9569
- enabled: boolean;
9570
- frequencyDays: number;
9571
- retainOldVersions: number;
9572
- autoRotate: boolean;
9573
- } | undefined;
9574
- };
9575
- scope: "record" | "field" | "table" | "database";
9576
- deterministicEncryption: boolean;
9577
- searchableEncryption: boolean;
9578
- } | undefined;
9579
7601
  readonly columnName?: string | undefined;
9580
7602
  readonly searchable?: boolean | undefined;
9581
7603
  readonly unique?: boolean | undefined;
@@ -9584,7 +7606,6 @@ declare const SysShareLink: Omit<{
9584
7606
  readonly scale?: number | undefined;
9585
7607
  readonly reference?: string | undefined;
9586
7608
  readonly referenceFilters?: string[] | undefined;
9587
- readonly writeRequiresMasterRead?: boolean | undefined;
9588
7609
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
9589
7610
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
9590
7611
  readonly inlineTitle?: string | undefined;
@@ -9609,22 +7630,8 @@ declare const SysShareLink: Omit<{
9609
7630
  relationshipField?: string | undefined;
9610
7631
  } | undefined;
9611
7632
  readonly language?: string | undefined;
9612
- readonly lineNumbers?: boolean | undefined;
9613
7633
  readonly maxRating?: number | undefined;
9614
- readonly allowHalf?: boolean | undefined;
9615
- readonly displayMap?: boolean | undefined;
9616
- readonly allowGeocoding?: boolean | undefined;
9617
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
9618
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
9619
- readonly allowAlpha?: boolean | undefined;
9620
- readonly presetColors?: string[] | undefined;
9621
7634
  readonly step?: number | undefined;
9622
- readonly showValue?: boolean | undefined;
9623
- readonly marks?: Record<string, string> | undefined;
9624
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
9625
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
9626
- readonly displayValue?: boolean | undefined;
9627
- readonly allowScanning?: boolean | undefined;
9628
7635
  readonly currencyConfig?: {
9629
7636
  precision: number;
9630
7637
  currencyMode: "fixed" | "dynamic";
@@ -9678,29 +7685,7 @@ declare const SysShareLink: Omit<{
9678
7685
  } | undefined;
9679
7686
  maxVersions?: number | undefined;
9680
7687
  } | undefined;
9681
- readonly maskingRule?: {
9682
- field: string;
9683
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
9684
- preserveFormat: boolean;
9685
- preserveLength: boolean;
9686
- pattern?: string | undefined;
9687
- roles?: string[] | undefined;
9688
- exemptRoles?: string[] | undefined;
9689
- } | undefined;
9690
- readonly auditTrail?: boolean | undefined;
9691
- readonly cached?: {
9692
- enabled: boolean;
9693
- ttl: number;
9694
- invalidateOn: string[];
9695
- } | undefined;
9696
- readonly dataQuality?: {
9697
- uniqueness: boolean;
9698
- completeness: number;
9699
- accuracy?: {
9700
- source: string;
9701
- threshold: number;
9702
- } | undefined;
9703
- } | undefined;
7688
+ readonly trackHistory?: boolean | undefined;
9704
7689
  readonly visibleWhen?: {
9705
7690
  dialect: "cel" | "js" | "cron" | "template";
9706
7691
  source?: string | undefined;
@@ -9739,7 +7724,6 @@ declare const SysShareLink: Omit<{
9739
7724
  } | undefined;
9740
7725
  readonly sortable?: boolean | undefined;
9741
7726
  readonly inlineHelpText?: string | undefined;
9742
- readonly trackFeedHistory?: boolean | undefined;
9743
7727
  readonly caseSensitive?: boolean | undefined;
9744
7728
  readonly autonumberFormat?: string | undefined;
9745
7729
  readonly index?: boolean | undefined;
@@ -9761,7 +7745,6 @@ declare const SysShareLink: Omit<{
9761
7745
  readonly required?: boolean | undefined;
9762
7746
  readonly multiple?: boolean | undefined;
9763
7747
  readonly dependencies?: string[] | undefined;
9764
- readonly theme?: string | undefined;
9765
7748
  readonly externalId?: boolean | undefined;
9766
7749
  readonly defaultValue?: unknown;
9767
7750
  readonly group?: string | undefined;
@@ -9769,23 +7752,6 @@ declare const SysShareLink: Omit<{
9769
7752
  readonly system?: boolean | undefined;
9770
7753
  readonly min?: number | undefined;
9771
7754
  readonly max?: number | undefined;
9772
- readonly encryptionConfig?: {
9773
- enabled: boolean;
9774
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
9775
- keyManagement: {
9776
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
9777
- keyId?: string | undefined;
9778
- rotationPolicy?: {
9779
- enabled: boolean;
9780
- frequencyDays: number;
9781
- retainOldVersions: number;
9782
- autoRotate: boolean;
9783
- } | undefined;
9784
- };
9785
- scope: "record" | "field" | "table" | "database";
9786
- deterministicEncryption: boolean;
9787
- searchableEncryption: boolean;
9788
- } | undefined;
9789
7755
  readonly columnName?: string | undefined;
9790
7756
  readonly searchable?: boolean | undefined;
9791
7757
  readonly unique?: boolean | undefined;
@@ -9794,7 +7760,6 @@ declare const SysShareLink: Omit<{
9794
7760
  readonly scale?: number | undefined;
9795
7761
  readonly reference?: string | undefined;
9796
7762
  readonly referenceFilters?: string[] | undefined;
9797
- readonly writeRequiresMasterRead?: boolean | undefined;
9798
7763
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
9799
7764
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
9800
7765
  readonly inlineTitle?: string | undefined;
@@ -9819,22 +7784,8 @@ declare const SysShareLink: Omit<{
9819
7784
  relationshipField?: string | undefined;
9820
7785
  } | undefined;
9821
7786
  readonly language?: string | undefined;
9822
- readonly lineNumbers?: boolean | undefined;
9823
7787
  readonly maxRating?: number | undefined;
9824
- readonly allowHalf?: boolean | undefined;
9825
- readonly displayMap?: boolean | undefined;
9826
- readonly allowGeocoding?: boolean | undefined;
9827
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
9828
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
9829
- readonly allowAlpha?: boolean | undefined;
9830
- readonly presetColors?: string[] | undefined;
9831
7788
  readonly step?: number | undefined;
9832
- readonly showValue?: boolean | undefined;
9833
- readonly marks?: Record<string, string> | undefined;
9834
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
9835
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
9836
- readonly displayValue?: boolean | undefined;
9837
- readonly allowScanning?: boolean | undefined;
9838
7789
  readonly currencyConfig?: {
9839
7790
  precision: number;
9840
7791
  currencyMode: "fixed" | "dynamic";
@@ -9888,29 +7839,7 @@ declare const SysShareLink: Omit<{
9888
7839
  } | undefined;
9889
7840
  maxVersions?: number | undefined;
9890
7841
  } | undefined;
9891
- readonly maskingRule?: {
9892
- field: string;
9893
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
9894
- preserveFormat: boolean;
9895
- preserveLength: boolean;
9896
- pattern?: string | undefined;
9897
- roles?: string[] | undefined;
9898
- exemptRoles?: string[] | undefined;
9899
- } | undefined;
9900
- readonly auditTrail?: boolean | undefined;
9901
- readonly cached?: {
9902
- enabled: boolean;
9903
- ttl: number;
9904
- invalidateOn: string[];
9905
- } | undefined;
9906
- readonly dataQuality?: {
9907
- uniqueness: boolean;
9908
- completeness: number;
9909
- accuracy?: {
9910
- source: string;
9911
- threshold: number;
9912
- } | undefined;
9913
- } | undefined;
7842
+ readonly trackHistory?: boolean | undefined;
9914
7843
  readonly visibleWhen?: {
9915
7844
  dialect: "cel" | "js" | "cron" | "template";
9916
7845
  source?: string | undefined;
@@ -9949,7 +7878,6 @@ declare const SysShareLink: Omit<{
9949
7878
  } | undefined;
9950
7879
  readonly sortable?: boolean | undefined;
9951
7880
  readonly inlineHelpText?: string | undefined;
9952
- readonly trackFeedHistory?: boolean | undefined;
9953
7881
  readonly caseSensitive?: boolean | undefined;
9954
7882
  readonly autonumberFormat?: string | undefined;
9955
7883
  readonly index?: boolean | undefined;
@@ -9971,7 +7899,6 @@ declare const SysShareLink: Omit<{
9971
7899
  readonly required?: boolean | undefined;
9972
7900
  readonly multiple?: boolean | undefined;
9973
7901
  readonly dependencies?: string[] | undefined;
9974
- readonly theme?: string | undefined;
9975
7902
  readonly externalId?: boolean | undefined;
9976
7903
  readonly defaultValue?: unknown;
9977
7904
  readonly group?: string | undefined;
@@ -9979,23 +7906,6 @@ declare const SysShareLink: Omit<{
9979
7906
  readonly system?: boolean | undefined;
9980
7907
  readonly min?: number | undefined;
9981
7908
  readonly max?: number | undefined;
9982
- readonly encryptionConfig?: {
9983
- enabled: boolean;
9984
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
9985
- keyManagement: {
9986
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
9987
- keyId?: string | undefined;
9988
- rotationPolicy?: {
9989
- enabled: boolean;
9990
- frequencyDays: number;
9991
- retainOldVersions: number;
9992
- autoRotate: boolean;
9993
- } | undefined;
9994
- };
9995
- scope: "record" | "field" | "table" | "database";
9996
- deterministicEncryption: boolean;
9997
- searchableEncryption: boolean;
9998
- } | undefined;
9999
7909
  readonly columnName?: string | undefined;
10000
7910
  readonly searchable?: boolean | undefined;
10001
7911
  readonly unique?: boolean | undefined;
@@ -10004,7 +7914,6 @@ declare const SysShareLink: Omit<{
10004
7914
  readonly scale?: number | undefined;
10005
7915
  readonly reference?: string | undefined;
10006
7916
  readonly referenceFilters?: string[] | undefined;
10007
- readonly writeRequiresMasterRead?: boolean | undefined;
10008
7917
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
10009
7918
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
10010
7919
  readonly inlineTitle?: string | undefined;
@@ -10029,22 +7938,8 @@ declare const SysShareLink: Omit<{
10029
7938
  relationshipField?: string | undefined;
10030
7939
  } | undefined;
10031
7940
  readonly language?: string | undefined;
10032
- readonly lineNumbers?: boolean | undefined;
10033
7941
  readonly maxRating?: number | undefined;
10034
- readonly allowHalf?: boolean | undefined;
10035
- readonly displayMap?: boolean | undefined;
10036
- readonly allowGeocoding?: boolean | undefined;
10037
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
10038
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
10039
- readonly allowAlpha?: boolean | undefined;
10040
- readonly presetColors?: string[] | undefined;
10041
7942
  readonly step?: number | undefined;
10042
- readonly showValue?: boolean | undefined;
10043
- readonly marks?: Record<string, string> | undefined;
10044
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
10045
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
10046
- readonly displayValue?: boolean | undefined;
10047
- readonly allowScanning?: boolean | undefined;
10048
7943
  readonly currencyConfig?: {
10049
7944
  precision: number;
10050
7945
  currencyMode: "fixed" | "dynamic";
@@ -10098,29 +7993,7 @@ declare const SysShareLink: Omit<{
10098
7993
  } | undefined;
10099
7994
  maxVersions?: number | undefined;
10100
7995
  } | undefined;
10101
- readonly maskingRule?: {
10102
- field: string;
10103
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
10104
- preserveFormat: boolean;
10105
- preserveLength: boolean;
10106
- pattern?: string | undefined;
10107
- roles?: string[] | undefined;
10108
- exemptRoles?: string[] | undefined;
10109
- } | undefined;
10110
- readonly auditTrail?: boolean | undefined;
10111
- readonly cached?: {
10112
- enabled: boolean;
10113
- ttl: number;
10114
- invalidateOn: string[];
10115
- } | undefined;
10116
- readonly dataQuality?: {
10117
- uniqueness: boolean;
10118
- completeness: number;
10119
- accuracy?: {
10120
- source: string;
10121
- threshold: number;
10122
- } | undefined;
10123
- } | undefined;
7996
+ readonly trackHistory?: boolean | undefined;
10124
7997
  readonly visibleWhen?: {
10125
7998
  dialect: "cel" | "js" | "cron" | "template";
10126
7999
  source?: string | undefined;
@@ -10159,7 +8032,6 @@ declare const SysShareLink: Omit<{
10159
8032
  } | undefined;
10160
8033
  readonly sortable?: boolean | undefined;
10161
8034
  readonly inlineHelpText?: string | undefined;
10162
- readonly trackFeedHistory?: boolean | undefined;
10163
8035
  readonly caseSensitive?: boolean | undefined;
10164
8036
  readonly autonumberFormat?: string | undefined;
10165
8037
  readonly index?: boolean | undefined;
@@ -10181,7 +8053,6 @@ declare const SysShareLink: Omit<{
10181
8053
  readonly required?: boolean | undefined;
10182
8054
  readonly multiple?: boolean | undefined;
10183
8055
  readonly dependencies?: string[] | undefined;
10184
- readonly theme?: string | undefined;
10185
8056
  readonly externalId?: boolean | undefined;
10186
8057
  readonly defaultValue?: unknown;
10187
8058
  readonly group?: string | undefined;
@@ -10189,23 +8060,6 @@ declare const SysShareLink: Omit<{
10189
8060
  readonly system?: boolean | undefined;
10190
8061
  readonly min?: number | undefined;
10191
8062
  readonly max?: number | undefined;
10192
- readonly encryptionConfig?: {
10193
- enabled: boolean;
10194
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
10195
- keyManagement: {
10196
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
10197
- keyId?: string | undefined;
10198
- rotationPolicy?: {
10199
- enabled: boolean;
10200
- frequencyDays: number;
10201
- retainOldVersions: number;
10202
- autoRotate: boolean;
10203
- } | undefined;
10204
- };
10205
- scope: "record" | "field" | "table" | "database";
10206
- deterministicEncryption: boolean;
10207
- searchableEncryption: boolean;
10208
- } | undefined;
10209
8063
  readonly columnName?: string | undefined;
10210
8064
  readonly searchable?: boolean | undefined;
10211
8065
  readonly unique?: boolean | undefined;
@@ -10214,7 +8068,6 @@ declare const SysShareLink: Omit<{
10214
8068
  readonly scale?: number | undefined;
10215
8069
  readonly reference?: string | undefined;
10216
8070
  readonly referenceFilters?: string[] | undefined;
10217
- readonly writeRequiresMasterRead?: boolean | undefined;
10218
8071
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
10219
8072
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
10220
8073
  readonly inlineTitle?: string | undefined;
@@ -10239,22 +8092,8 @@ declare const SysShareLink: Omit<{
10239
8092
  relationshipField?: string | undefined;
10240
8093
  } | undefined;
10241
8094
  readonly language?: string | undefined;
10242
- readonly lineNumbers?: boolean | undefined;
10243
8095
  readonly maxRating?: number | undefined;
10244
- readonly allowHalf?: boolean | undefined;
10245
- readonly displayMap?: boolean | undefined;
10246
- readonly allowGeocoding?: boolean | undefined;
10247
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
10248
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
10249
- readonly allowAlpha?: boolean | undefined;
10250
- readonly presetColors?: string[] | undefined;
10251
8096
  readonly step?: number | undefined;
10252
- readonly showValue?: boolean | undefined;
10253
- readonly marks?: Record<string, string> | undefined;
10254
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
10255
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
10256
- readonly displayValue?: boolean | undefined;
10257
- readonly allowScanning?: boolean | undefined;
10258
8097
  readonly currencyConfig?: {
10259
8098
  precision: number;
10260
8099
  currencyMode: "fixed" | "dynamic";
@@ -10308,29 +8147,7 @@ declare const SysShareLink: Omit<{
10308
8147
  } | undefined;
10309
8148
  maxVersions?: number | undefined;
10310
8149
  } | undefined;
10311
- readonly maskingRule?: {
10312
- field: string;
10313
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
10314
- preserveFormat: boolean;
10315
- preserveLength: boolean;
10316
- pattern?: string | undefined;
10317
- roles?: string[] | undefined;
10318
- exemptRoles?: string[] | undefined;
10319
- } | undefined;
10320
- readonly auditTrail?: boolean | undefined;
10321
- readonly cached?: {
10322
- enabled: boolean;
10323
- ttl: number;
10324
- invalidateOn: string[];
10325
- } | undefined;
10326
- readonly dataQuality?: {
10327
- uniqueness: boolean;
10328
- completeness: number;
10329
- accuracy?: {
10330
- source: string;
10331
- threshold: number;
10332
- } | undefined;
10333
- } | undefined;
8150
+ readonly trackHistory?: boolean | undefined;
10334
8151
  readonly visibleWhen?: {
10335
8152
  dialect: "cel" | "js" | "cron" | "template";
10336
8153
  source?: string | undefined;
@@ -10369,7 +8186,6 @@ declare const SysShareLink: Omit<{
10369
8186
  } | undefined;
10370
8187
  readonly sortable?: boolean | undefined;
10371
8188
  readonly inlineHelpText?: string | undefined;
10372
- readonly trackFeedHistory?: boolean | undefined;
10373
8189
  readonly caseSensitive?: boolean | undefined;
10374
8190
  readonly autonumberFormat?: string | undefined;
10375
8191
  readonly index?: boolean | undefined;
@@ -10391,7 +8207,6 @@ declare const SysShareLink: Omit<{
10391
8207
  readonly required?: boolean | undefined;
10392
8208
  readonly multiple?: boolean | undefined;
10393
8209
  readonly dependencies?: string[] | undefined;
10394
- readonly theme?: string | undefined;
10395
8210
  readonly externalId?: boolean | undefined;
10396
8211
  readonly defaultValue?: unknown;
10397
8212
  readonly group?: string | undefined;
@@ -10399,23 +8214,6 @@ declare const SysShareLink: Omit<{
10399
8214
  readonly system?: boolean | undefined;
10400
8215
  readonly min?: number | undefined;
10401
8216
  readonly max?: number | undefined;
10402
- readonly encryptionConfig?: {
10403
- enabled: boolean;
10404
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
10405
- keyManagement: {
10406
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
10407
- keyId?: string | undefined;
10408
- rotationPolicy?: {
10409
- enabled: boolean;
10410
- frequencyDays: number;
10411
- retainOldVersions: number;
10412
- autoRotate: boolean;
10413
- } | undefined;
10414
- };
10415
- scope: "record" | "field" | "table" | "database";
10416
- deterministicEncryption: boolean;
10417
- searchableEncryption: boolean;
10418
- } | undefined;
10419
8217
  readonly columnName?: string | undefined;
10420
8218
  readonly searchable?: boolean | undefined;
10421
8219
  readonly unique?: boolean | undefined;
@@ -10424,7 +8222,6 @@ declare const SysShareLink: Omit<{
10424
8222
  readonly scale?: number | undefined;
10425
8223
  readonly reference?: string | undefined;
10426
8224
  readonly referenceFilters?: string[] | undefined;
10427
- readonly writeRequiresMasterRead?: boolean | undefined;
10428
8225
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
10429
8226
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
10430
8227
  readonly inlineTitle?: string | undefined;
@@ -10449,22 +8246,8 @@ declare const SysShareLink: Omit<{
10449
8246
  relationshipField?: string | undefined;
10450
8247
  } | undefined;
10451
8248
  readonly language?: string | undefined;
10452
- readonly lineNumbers?: boolean | undefined;
10453
8249
  readonly maxRating?: number | undefined;
10454
- readonly allowHalf?: boolean | undefined;
10455
- readonly displayMap?: boolean | undefined;
10456
- readonly allowGeocoding?: boolean | undefined;
10457
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
10458
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
10459
- readonly allowAlpha?: boolean | undefined;
10460
- readonly presetColors?: string[] | undefined;
10461
8250
  readonly step?: number | undefined;
10462
- readonly showValue?: boolean | undefined;
10463
- readonly marks?: Record<string, string> | undefined;
10464
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
10465
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
10466
- readonly displayValue?: boolean | undefined;
10467
- readonly allowScanning?: boolean | undefined;
10468
8251
  readonly currencyConfig?: {
10469
8252
  precision: number;
10470
8253
  currencyMode: "fixed" | "dynamic";
@@ -10518,29 +8301,7 @@ declare const SysShareLink: Omit<{
10518
8301
  } | undefined;
10519
8302
  maxVersions?: number | undefined;
10520
8303
  } | undefined;
10521
- readonly maskingRule?: {
10522
- field: string;
10523
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
10524
- preserveFormat: boolean;
10525
- preserveLength: boolean;
10526
- pattern?: string | undefined;
10527
- roles?: string[] | undefined;
10528
- exemptRoles?: string[] | undefined;
10529
- } | undefined;
10530
- readonly auditTrail?: boolean | undefined;
10531
- readonly cached?: {
10532
- enabled: boolean;
10533
- ttl: number;
10534
- invalidateOn: string[];
10535
- } | undefined;
10536
- readonly dataQuality?: {
10537
- uniqueness: boolean;
10538
- completeness: number;
10539
- accuracy?: {
10540
- source: string;
10541
- threshold: number;
10542
- } | undefined;
10543
- } | undefined;
8304
+ readonly trackHistory?: boolean | undefined;
10544
8305
  readonly visibleWhen?: {
10545
8306
  dialect: "cel" | "js" | "cron" | "template";
10546
8307
  source?: string | undefined;
@@ -10579,7 +8340,6 @@ declare const SysShareLink: Omit<{
10579
8340
  } | undefined;
10580
8341
  readonly sortable?: boolean | undefined;
10581
8342
  readonly inlineHelpText?: string | undefined;
10582
- readonly trackFeedHistory?: boolean | undefined;
10583
8343
  readonly caseSensitive?: boolean | undefined;
10584
8344
  readonly autonumberFormat?: string | undefined;
10585
8345
  readonly index?: boolean | undefined;
@@ -10601,7 +8361,6 @@ declare const SysShareLink: Omit<{
10601
8361
  readonly required?: boolean | undefined;
10602
8362
  readonly multiple?: boolean | undefined;
10603
8363
  readonly dependencies?: string[] | undefined;
10604
- readonly theme?: string | undefined;
10605
8364
  readonly externalId?: boolean | undefined;
10606
8365
  readonly defaultValue?: unknown;
10607
8366
  readonly group?: string | undefined;
@@ -10609,23 +8368,6 @@ declare const SysShareLink: Omit<{
10609
8368
  readonly system?: boolean | undefined;
10610
8369
  readonly min?: number | undefined;
10611
8370
  readonly max?: number | undefined;
10612
- readonly encryptionConfig?: {
10613
- enabled: boolean;
10614
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
10615
- keyManagement: {
10616
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
10617
- keyId?: string | undefined;
10618
- rotationPolicy?: {
10619
- enabled: boolean;
10620
- frequencyDays: number;
10621
- retainOldVersions: number;
10622
- autoRotate: boolean;
10623
- } | undefined;
10624
- };
10625
- scope: "record" | "field" | "table" | "database";
10626
- deterministicEncryption: boolean;
10627
- searchableEncryption: boolean;
10628
- } | undefined;
10629
8371
  readonly columnName?: string | undefined;
10630
8372
  readonly searchable?: boolean | undefined;
10631
8373
  readonly unique?: boolean | undefined;
@@ -10634,7 +8376,6 @@ declare const SysShareLink: Omit<{
10634
8376
  readonly scale?: number | undefined;
10635
8377
  reference: string;
10636
8378
  readonly referenceFilters?: string[] | undefined;
10637
- readonly writeRequiresMasterRead?: boolean | undefined;
10638
8379
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
10639
8380
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
10640
8381
  readonly inlineTitle?: string | undefined;
@@ -10659,22 +8400,8 @@ declare const SysShareLink: Omit<{
10659
8400
  relationshipField?: string | undefined;
10660
8401
  } | undefined;
10661
8402
  readonly language?: string | undefined;
10662
- readonly lineNumbers?: boolean | undefined;
10663
8403
  readonly maxRating?: number | undefined;
10664
- readonly allowHalf?: boolean | undefined;
10665
- readonly displayMap?: boolean | undefined;
10666
- readonly allowGeocoding?: boolean | undefined;
10667
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
10668
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
10669
- readonly allowAlpha?: boolean | undefined;
10670
- readonly presetColors?: string[] | undefined;
10671
8404
  readonly step?: number | undefined;
10672
- readonly showValue?: boolean | undefined;
10673
- readonly marks?: Record<string, string> | undefined;
10674
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
10675
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
10676
- readonly displayValue?: boolean | undefined;
10677
- readonly allowScanning?: boolean | undefined;
10678
8405
  readonly currencyConfig?: {
10679
8406
  precision: number;
10680
8407
  currencyMode: "fixed" | "dynamic";
@@ -10728,29 +8455,7 @@ declare const SysShareLink: Omit<{
10728
8455
  } | undefined;
10729
8456
  maxVersions?: number | undefined;
10730
8457
  } | undefined;
10731
- readonly maskingRule?: {
10732
- field: string;
10733
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
10734
- preserveFormat: boolean;
10735
- preserveLength: boolean;
10736
- pattern?: string | undefined;
10737
- roles?: string[] | undefined;
10738
- exemptRoles?: string[] | undefined;
10739
- } | undefined;
10740
- readonly auditTrail?: boolean | undefined;
10741
- readonly cached?: {
10742
- enabled: boolean;
10743
- ttl: number;
10744
- invalidateOn: string[];
10745
- } | undefined;
10746
- readonly dataQuality?: {
10747
- uniqueness: boolean;
10748
- completeness: number;
10749
- accuracy?: {
10750
- source: string;
10751
- threshold: number;
10752
- } | undefined;
10753
- } | undefined;
8458
+ readonly trackHistory?: boolean | undefined;
10754
8459
  readonly visibleWhen?: {
10755
8460
  dialect: "cel" | "js" | "cron" | "template";
10756
8461
  source?: string | undefined;
@@ -10789,7 +8494,6 @@ declare const SysShareLink: Omit<{
10789
8494
  } | undefined;
10790
8495
  readonly sortable?: boolean | undefined;
10791
8496
  readonly inlineHelpText?: string | undefined;
10792
- readonly trackFeedHistory?: boolean | undefined;
10793
8497
  readonly caseSensitive?: boolean | undefined;
10794
8498
  readonly autonumberFormat?: string | undefined;
10795
8499
  readonly index?: boolean | undefined;
@@ -10811,7 +8515,6 @@ declare const SysShareLink: Omit<{
10811
8515
  readonly required?: boolean | undefined;
10812
8516
  readonly multiple?: boolean | undefined;
10813
8517
  readonly dependencies?: string[] | undefined;
10814
- readonly theme?: string | undefined;
10815
8518
  readonly externalId?: boolean | undefined;
10816
8519
  readonly defaultValue?: unknown;
10817
8520
  readonly group?: string | undefined;
@@ -10819,23 +8522,6 @@ declare const SysShareLink: Omit<{
10819
8522
  readonly system?: boolean | undefined;
10820
8523
  readonly min?: number | undefined;
10821
8524
  readonly max?: number | undefined;
10822
- readonly encryptionConfig?: {
10823
- enabled: boolean;
10824
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
10825
- keyManagement: {
10826
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
10827
- keyId?: string | undefined;
10828
- rotationPolicy?: {
10829
- enabled: boolean;
10830
- frequencyDays: number;
10831
- retainOldVersions: number;
10832
- autoRotate: boolean;
10833
- } | undefined;
10834
- };
10835
- scope: "record" | "field" | "table" | "database";
10836
- deterministicEncryption: boolean;
10837
- searchableEncryption: boolean;
10838
- } | undefined;
10839
8525
  readonly columnName?: string | undefined;
10840
8526
  readonly searchable?: boolean | undefined;
10841
8527
  readonly unique?: boolean | undefined;
@@ -10844,7 +8530,6 @@ declare const SysShareLink: Omit<{
10844
8530
  readonly scale?: number | undefined;
10845
8531
  readonly reference?: string | undefined;
10846
8532
  readonly referenceFilters?: string[] | undefined;
10847
- readonly writeRequiresMasterRead?: boolean | undefined;
10848
8533
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
10849
8534
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
10850
8535
  readonly inlineTitle?: string | undefined;
@@ -10869,22 +8554,8 @@ declare const SysShareLink: Omit<{
10869
8554
  relationshipField?: string | undefined;
10870
8555
  } | undefined;
10871
8556
  readonly language?: string | undefined;
10872
- readonly lineNumbers?: boolean | undefined;
10873
8557
  readonly maxRating?: number | undefined;
10874
- readonly allowHalf?: boolean | undefined;
10875
- readonly displayMap?: boolean | undefined;
10876
- readonly allowGeocoding?: boolean | undefined;
10877
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
10878
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
10879
- readonly allowAlpha?: boolean | undefined;
10880
- readonly presetColors?: string[] | undefined;
10881
8558
  readonly step?: number | undefined;
10882
- readonly showValue?: boolean | undefined;
10883
- readonly marks?: Record<string, string> | undefined;
10884
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
10885
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
10886
- readonly displayValue?: boolean | undefined;
10887
- readonly allowScanning?: boolean | undefined;
10888
8559
  readonly currencyConfig?: {
10889
8560
  precision: number;
10890
8561
  currencyMode: "fixed" | "dynamic";
@@ -10938,29 +8609,7 @@ declare const SysShareLink: Omit<{
10938
8609
  } | undefined;
10939
8610
  maxVersions?: number | undefined;
10940
8611
  } | undefined;
10941
- readonly maskingRule?: {
10942
- field: string;
10943
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
10944
- preserveFormat: boolean;
10945
- preserveLength: boolean;
10946
- pattern?: string | undefined;
10947
- roles?: string[] | undefined;
10948
- exemptRoles?: string[] | undefined;
10949
- } | undefined;
10950
- readonly auditTrail?: boolean | undefined;
10951
- readonly cached?: {
10952
- enabled: boolean;
10953
- ttl: number;
10954
- invalidateOn: string[];
10955
- } | undefined;
10956
- readonly dataQuality?: {
10957
- uniqueness: boolean;
10958
- completeness: number;
10959
- accuracy?: {
10960
- source: string;
10961
- threshold: number;
10962
- } | undefined;
10963
- } | undefined;
8612
+ readonly trackHistory?: boolean | undefined;
10964
8613
  readonly visibleWhen?: {
10965
8614
  dialect: "cel" | "js" | "cron" | "template";
10966
8615
  source?: string | undefined;
@@ -10999,7 +8648,6 @@ declare const SysShareLink: Omit<{
10999
8648
  } | undefined;
11000
8649
  readonly sortable?: boolean | undefined;
11001
8650
  readonly inlineHelpText?: string | undefined;
11002
- readonly trackFeedHistory?: boolean | undefined;
11003
8651
  readonly caseSensitive?: boolean | undefined;
11004
8652
  readonly autonumberFormat?: string | undefined;
11005
8653
  readonly index?: boolean | undefined;
@@ -11021,7 +8669,6 @@ declare const SysShareLink: Omit<{
11021
8669
  readonly required?: boolean | undefined;
11022
8670
  readonly multiple?: boolean | undefined;
11023
8671
  readonly dependencies?: string[] | undefined;
11024
- readonly theme?: string | undefined;
11025
8672
  readonly externalId?: boolean | undefined;
11026
8673
  readonly defaultValue?: unknown;
11027
8674
  readonly group?: string | undefined;
@@ -11029,23 +8676,6 @@ declare const SysShareLink: Omit<{
11029
8676
  readonly system?: boolean | undefined;
11030
8677
  readonly min?: number | undefined;
11031
8678
  readonly max?: number | undefined;
11032
- readonly encryptionConfig?: {
11033
- enabled: boolean;
11034
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
11035
- keyManagement: {
11036
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
11037
- keyId?: string | undefined;
11038
- rotationPolicy?: {
11039
- enabled: boolean;
11040
- frequencyDays: number;
11041
- retainOldVersions: number;
11042
- autoRotate: boolean;
11043
- } | undefined;
11044
- };
11045
- scope: "record" | "field" | "table" | "database";
11046
- deterministicEncryption: boolean;
11047
- searchableEncryption: boolean;
11048
- } | undefined;
11049
8679
  readonly columnName?: string | undefined;
11050
8680
  readonly searchable?: boolean | undefined;
11051
8681
  readonly unique?: boolean | undefined;
@@ -11054,7 +8684,6 @@ declare const SysShareLink: Omit<{
11054
8684
  readonly scale?: number | undefined;
11055
8685
  readonly reference?: string | undefined;
11056
8686
  readonly referenceFilters?: string[] | undefined;
11057
- readonly writeRequiresMasterRead?: boolean | undefined;
11058
8687
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
11059
8688
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
11060
8689
  readonly inlineTitle?: string | undefined;
@@ -11079,22 +8708,8 @@ declare const SysShareLink: Omit<{
11079
8708
  relationshipField?: string | undefined;
11080
8709
  } | undefined;
11081
8710
  readonly language?: string | undefined;
11082
- readonly lineNumbers?: boolean | undefined;
11083
8711
  readonly maxRating?: number | undefined;
11084
- readonly allowHalf?: boolean | undefined;
11085
- readonly displayMap?: boolean | undefined;
11086
- readonly allowGeocoding?: boolean | undefined;
11087
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
11088
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
11089
- readonly allowAlpha?: boolean | undefined;
11090
- readonly presetColors?: string[] | undefined;
11091
8712
  readonly step?: number | undefined;
11092
- readonly showValue?: boolean | undefined;
11093
- readonly marks?: Record<string, string> | undefined;
11094
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
11095
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
11096
- readonly displayValue?: boolean | undefined;
11097
- readonly allowScanning?: boolean | undefined;
11098
8713
  readonly currencyConfig?: {
11099
8714
  precision: number;
11100
8715
  currencyMode: "fixed" | "dynamic";
@@ -11148,29 +8763,7 @@ declare const SysShareLink: Omit<{
11148
8763
  } | undefined;
11149
8764
  maxVersions?: number | undefined;
11150
8765
  } | undefined;
11151
- readonly maskingRule?: {
11152
- field: string;
11153
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
11154
- preserveFormat: boolean;
11155
- preserveLength: boolean;
11156
- pattern?: string | undefined;
11157
- roles?: string[] | undefined;
11158
- exemptRoles?: string[] | undefined;
11159
- } | undefined;
11160
- readonly auditTrail?: boolean | undefined;
11161
- readonly cached?: {
11162
- enabled: boolean;
11163
- ttl: number;
11164
- invalidateOn: string[];
11165
- } | undefined;
11166
- readonly dataQuality?: {
11167
- uniqueness: boolean;
11168
- completeness: number;
11169
- accuracy?: {
11170
- source: string;
11171
- threshold: number;
11172
- } | undefined;
11173
- } | undefined;
8766
+ readonly trackHistory?: boolean | undefined;
11174
8767
  readonly visibleWhen?: {
11175
8768
  dialect: "cel" | "js" | "cron" | "template";
11176
8769
  source?: string | undefined;
@@ -11209,7 +8802,6 @@ declare const SysShareLink: Omit<{
11209
8802
  } | undefined;
11210
8803
  readonly sortable?: boolean | undefined;
11211
8804
  readonly inlineHelpText?: string | undefined;
11212
- readonly trackFeedHistory?: boolean | undefined;
11213
8805
  readonly caseSensitive?: boolean | undefined;
11214
8806
  readonly autonumberFormat?: string | undefined;
11215
8807
  readonly index?: boolean | undefined;
@@ -11231,7 +8823,6 @@ declare const SysShareLink: Omit<{
11231
8823
  readonly required?: boolean | undefined;
11232
8824
  readonly multiple?: boolean | undefined;
11233
8825
  readonly dependencies?: string[] | undefined;
11234
- readonly theme?: string | undefined;
11235
8826
  readonly externalId?: boolean | undefined;
11236
8827
  readonly defaultValue?: unknown;
11237
8828
  readonly group?: string | undefined;
@@ -11239,23 +8830,6 @@ declare const SysShareLink: Omit<{
11239
8830
  readonly system?: boolean | undefined;
11240
8831
  readonly min?: number | undefined;
11241
8832
  readonly max?: number | undefined;
11242
- readonly encryptionConfig?: {
11243
- enabled: boolean;
11244
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
11245
- keyManagement: {
11246
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
11247
- keyId?: string | undefined;
11248
- rotationPolicy?: {
11249
- enabled: boolean;
11250
- frequencyDays: number;
11251
- retainOldVersions: number;
11252
- autoRotate: boolean;
11253
- } | undefined;
11254
- };
11255
- scope: "record" | "field" | "table" | "database";
11256
- deterministicEncryption: boolean;
11257
- searchableEncryption: boolean;
11258
- } | undefined;
11259
8833
  readonly columnName?: string | undefined;
11260
8834
  readonly searchable?: boolean | undefined;
11261
8835
  readonly unique?: boolean | undefined;
@@ -11264,7 +8838,6 @@ declare const SysShareLink: Omit<{
11264
8838
  readonly scale?: number | undefined;
11265
8839
  readonly reference?: string | undefined;
11266
8840
  readonly referenceFilters?: string[] | undefined;
11267
- readonly writeRequiresMasterRead?: boolean | undefined;
11268
8841
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
11269
8842
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
11270
8843
  readonly inlineTitle?: string | undefined;
@@ -11289,22 +8862,8 @@ declare const SysShareLink: Omit<{
11289
8862
  relationshipField?: string | undefined;
11290
8863
  } | undefined;
11291
8864
  readonly language?: string | undefined;
11292
- readonly lineNumbers?: boolean | undefined;
11293
8865
  readonly maxRating?: number | undefined;
11294
- readonly allowHalf?: boolean | undefined;
11295
- readonly displayMap?: boolean | undefined;
11296
- readonly allowGeocoding?: boolean | undefined;
11297
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
11298
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
11299
- readonly allowAlpha?: boolean | undefined;
11300
- readonly presetColors?: string[] | undefined;
11301
8866
  readonly step?: number | undefined;
11302
- readonly showValue?: boolean | undefined;
11303
- readonly marks?: Record<string, string> | undefined;
11304
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
11305
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
11306
- readonly displayValue?: boolean | undefined;
11307
- readonly allowScanning?: boolean | undefined;
11308
8867
  readonly currencyConfig?: {
11309
8868
  precision: number;
11310
8869
  currencyMode: "fixed" | "dynamic";
@@ -11358,29 +8917,7 @@ declare const SysShareLink: Omit<{
11358
8917
  } | undefined;
11359
8918
  maxVersions?: number | undefined;
11360
8919
  } | undefined;
11361
- readonly maskingRule?: {
11362
- field: string;
11363
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
11364
- preserveFormat: boolean;
11365
- preserveLength: boolean;
11366
- pattern?: string | undefined;
11367
- roles?: string[] | undefined;
11368
- exemptRoles?: string[] | undefined;
11369
- } | undefined;
11370
- readonly auditTrail?: boolean | undefined;
11371
- readonly cached?: {
11372
- enabled: boolean;
11373
- ttl: number;
11374
- invalidateOn: string[];
11375
- } | undefined;
11376
- readonly dataQuality?: {
11377
- uniqueness: boolean;
11378
- completeness: number;
11379
- accuracy?: {
11380
- source: string;
11381
- threshold: number;
11382
- } | undefined;
11383
- } | undefined;
8920
+ readonly trackHistory?: boolean | undefined;
11384
8921
  readonly visibleWhen?: {
11385
8922
  dialect: "cel" | "js" | "cron" | "template";
11386
8923
  source?: string | undefined;
@@ -11419,7 +8956,6 @@ declare const SysShareLink: Omit<{
11419
8956
  } | undefined;
11420
8957
  readonly sortable?: boolean | undefined;
11421
8958
  readonly inlineHelpText?: string | undefined;
11422
- readonly trackFeedHistory?: boolean | undefined;
11423
8959
  readonly caseSensitive?: boolean | undefined;
11424
8960
  readonly autonumberFormat?: string | undefined;
11425
8961
  readonly index?: boolean | undefined;