@objectstack/platform-objects 9.7.0 → 9.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -42,7 +42,6 @@ declare const SysSetting: Omit<{
42
42
  multiple: boolean;
43
43
  unique: boolean;
44
44
  deleteBehavior: "set_null" | "cascade" | "restrict";
45
- auditTrail: boolean;
46
45
  hidden: boolean;
47
46
  readonly: boolean;
48
47
  sortable: boolean;
@@ -68,7 +67,6 @@ declare const SysSetting: Omit<{
68
67
  }[] | undefined;
69
68
  reference?: string | undefined;
70
69
  referenceFilters?: string[] | undefined;
71
- writeRequiresMasterRead?: boolean | undefined;
72
70
  inlineEdit?: boolean | "grid" | "form" | undefined;
73
71
  inlineTitle?: string | undefined;
74
72
  inlineColumns?: any[] | undefined;
@@ -100,28 +98,14 @@ declare const SysSetting: Omit<{
100
98
  relationshipField?: string | undefined;
101
99
  } | undefined;
102
100
  language?: string | undefined;
103
- theme?: string | undefined;
104
- lineNumbers?: boolean | undefined;
105
101
  maxRating?: number | undefined;
106
- allowHalf?: boolean | undefined;
107
- displayMap?: boolean | undefined;
108
- allowGeocoding?: boolean | undefined;
109
- addressFormat?: "us" | "uk" | "international" | undefined;
110
- colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
111
- allowAlpha?: boolean | undefined;
112
- presetColors?: string[] | undefined;
113
102
  step?: number | undefined;
114
- showValue?: boolean | undefined;
115
- marks?: Record<string, string> | undefined;
116
- barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
117
- qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
118
- displayValue?: boolean | undefined;
119
- allowScanning?: boolean | undefined;
120
103
  currencyConfig?: {
121
104
  precision: number;
122
105
  currencyMode: "fixed" | "dynamic";
123
106
  defaultCurrency: string;
124
107
  } | undefined;
108
+ dimensions?: number | undefined;
125
109
  vectorConfig?: {
126
110
  dimensions: number;
127
111
  distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
@@ -170,46 +154,8 @@ declare const SysSetting: Omit<{
170
154
  } | undefined;
171
155
  maxVersions?: number | undefined;
172
156
  } | undefined;
173
- encryptionConfig?: {
174
- enabled: boolean;
175
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
176
- keyManagement: {
177
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
178
- keyId?: string | undefined;
179
- rotationPolicy?: {
180
- enabled: boolean;
181
- frequencyDays: number;
182
- retainOldVersions: number;
183
- autoRotate: boolean;
184
- } | undefined;
185
- };
186
- scope: "record" | "field" | "table" | "database";
187
- deterministicEncryption: boolean;
188
- searchableEncryption: boolean;
189
- } | undefined;
190
- maskingRule?: {
191
- field: string;
192
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
193
- preserveFormat: boolean;
194
- preserveLength: boolean;
195
- pattern?: string | undefined;
196
- roles?: string[] | undefined;
197
- exemptRoles?: string[] | undefined;
198
- } | undefined;
157
+ trackHistory?: boolean | undefined;
199
158
  dependencies?: string[] | undefined;
200
- cached?: {
201
- enabled: boolean;
202
- ttl: number;
203
- invalidateOn: string[];
204
- } | undefined;
205
- dataQuality?: {
206
- uniqueness: boolean;
207
- completeness: number;
208
- accuracy?: {
209
- source: string;
210
- threshold: number;
211
- } | undefined;
212
- } | undefined;
213
159
  group?: string | undefined;
214
160
  visibleWhen?: {
215
161
  dialect: "cel" | "js" | "cron" | "template";
@@ -281,7 +227,6 @@ declare const SysSetting: Omit<{
281
227
  } | undefined;
282
228
  system?: boolean | undefined;
283
229
  inlineHelpText?: string | undefined;
284
- trackFeedHistory?: boolean | undefined;
285
230
  caseSensitive?: boolean | undefined;
286
231
  autonumberFormat?: string | undefined;
287
232
  }>;
@@ -372,12 +317,13 @@ declare const SysSetting: Omit<{
372
317
  key: string;
373
318
  interval?: string | undefined;
374
319
  } | undefined;
375
- cdc?: {
376
- enabled: boolean;
377
- events: ("delete" | "update" | "insert")[];
378
- destination: string;
379
- } | undefined;
380
320
  validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
321
+ activityMilestones?: {
322
+ field: string;
323
+ value: string;
324
+ summary: string;
325
+ type?: string | undefined;
326
+ }[] | undefined;
381
327
  displayNameField?: string | undefined;
382
328
  recordName?: {
383
329
  type: "text" | "autonumber";
@@ -688,7 +634,6 @@ declare const SysSetting: Omit<{
688
634
  clone: boolean;
689
635
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
690
636
  } | undefined;
691
- recordTypes?: string[] | undefined;
692
637
  sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
693
638
  publicSharing?: {
694
639
  enabled: boolean;
@@ -745,6 +690,8 @@ declare const SysSetting: Omit<{
745
690
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
746
691
  confirmText?: string | undefined;
747
692
  successMessage?: string | undefined;
693
+ errorMessage?: string | undefined;
694
+ undoable?: boolean | undefined;
748
695
  resultDialog?: {
749
696
  title?: string | undefined;
750
697
  description?: string | undefined;
@@ -934,7 +881,6 @@ declare const SysSetting: Omit<{
934
881
  readonly required?: boolean | undefined;
935
882
  readonly multiple?: boolean | undefined;
936
883
  readonly dependencies?: string[] | undefined;
937
- readonly theme?: string | undefined;
938
884
  readonly externalId?: boolean | undefined;
939
885
  readonly defaultValue?: unknown;
940
886
  readonly group?: string | undefined;
@@ -942,23 +888,7 @@ declare const SysSetting: Omit<{
942
888
  readonly system?: boolean | undefined;
943
889
  readonly min?: number | undefined;
944
890
  readonly max?: number | undefined;
945
- readonly encryptionConfig?: {
946
- enabled: boolean;
947
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
948
- keyManagement: {
949
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
950
- keyId?: string | undefined;
951
- rotationPolicy?: {
952
- enabled: boolean;
953
- frequencyDays: number;
954
- retainOldVersions: number;
955
- autoRotate: boolean;
956
- } | undefined;
957
- };
958
- scope: "record" | "field" | "table" | "database";
959
- deterministicEncryption: boolean;
960
- searchableEncryption: boolean;
961
- } | undefined;
891
+ readonly dimensions?: number | undefined;
962
892
  readonly columnName?: string | undefined;
963
893
  readonly searchable?: boolean | undefined;
964
894
  readonly unique?: boolean | undefined;
@@ -967,7 +897,6 @@ declare const SysSetting: Omit<{
967
897
  readonly scale?: number | undefined;
968
898
  readonly reference?: string | undefined;
969
899
  readonly referenceFilters?: string[] | undefined;
970
- readonly writeRequiresMasterRead?: boolean | undefined;
971
900
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
972
901
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
973
902
  readonly inlineTitle?: string | undefined;
@@ -992,22 +921,8 @@ declare const SysSetting: Omit<{
992
921
  relationshipField?: string | undefined;
993
922
  } | undefined;
994
923
  readonly language?: string | undefined;
995
- readonly lineNumbers?: boolean | undefined;
996
924
  readonly maxRating?: number | undefined;
997
- readonly allowHalf?: boolean | undefined;
998
- readonly displayMap?: boolean | undefined;
999
- readonly allowGeocoding?: boolean | undefined;
1000
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
1001
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
1002
- readonly allowAlpha?: boolean | undefined;
1003
- readonly presetColors?: string[] | undefined;
1004
925
  readonly step?: number | undefined;
1005
- readonly showValue?: boolean | undefined;
1006
- readonly marks?: Record<string, string> | undefined;
1007
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
1008
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
1009
- readonly displayValue?: boolean | undefined;
1010
- readonly allowScanning?: boolean | undefined;
1011
926
  readonly currencyConfig?: {
1012
927
  precision: number;
1013
928
  currencyMode: "fixed" | "dynamic";
@@ -1061,29 +976,7 @@ declare const SysSetting: Omit<{
1061
976
  } | undefined;
1062
977
  maxVersions?: number | undefined;
1063
978
  } | undefined;
1064
- readonly maskingRule?: {
1065
- field: string;
1066
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
1067
- preserveFormat: boolean;
1068
- preserveLength: boolean;
1069
- pattern?: string | undefined;
1070
- roles?: string[] | undefined;
1071
- exemptRoles?: string[] | undefined;
1072
- } | undefined;
1073
- readonly auditTrail?: boolean | undefined;
1074
- readonly cached?: {
1075
- enabled: boolean;
1076
- ttl: number;
1077
- invalidateOn: string[];
1078
- } | undefined;
1079
- readonly dataQuality?: {
1080
- uniqueness: boolean;
1081
- completeness: number;
1082
- accuracy?: {
1083
- source: string;
1084
- threshold: number;
1085
- } | undefined;
1086
- } | undefined;
979
+ readonly trackHistory?: boolean | undefined;
1087
980
  readonly visibleWhen?: {
1088
981
  dialect: "cel" | "js" | "cron" | "template";
1089
982
  source?: string | undefined;
@@ -1122,7 +1015,6 @@ declare const SysSetting: Omit<{
1122
1015
  } | undefined;
1123
1016
  readonly sortable?: boolean | undefined;
1124
1017
  readonly inlineHelpText?: string | undefined;
1125
- readonly trackFeedHistory?: boolean | undefined;
1126
1018
  readonly caseSensitive?: boolean | undefined;
1127
1019
  readonly autonumberFormat?: string | undefined;
1128
1020
  readonly index?: boolean | undefined;
@@ -1144,7 +1036,6 @@ declare const SysSetting: Omit<{
1144
1036
  readonly required?: boolean | undefined;
1145
1037
  readonly multiple?: boolean | undefined;
1146
1038
  readonly dependencies?: string[] | undefined;
1147
- readonly theme?: string | undefined;
1148
1039
  readonly externalId?: boolean | undefined;
1149
1040
  readonly defaultValue?: unknown;
1150
1041
  readonly group?: string | undefined;
@@ -1152,23 +1043,7 @@ declare const SysSetting: Omit<{
1152
1043
  readonly system?: boolean | undefined;
1153
1044
  readonly min?: number | undefined;
1154
1045
  readonly max?: number | undefined;
1155
- readonly encryptionConfig?: {
1156
- enabled: boolean;
1157
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
1158
- keyManagement: {
1159
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
1160
- keyId?: string | undefined;
1161
- rotationPolicy?: {
1162
- enabled: boolean;
1163
- frequencyDays: number;
1164
- retainOldVersions: number;
1165
- autoRotate: boolean;
1166
- } | undefined;
1167
- };
1168
- scope: "record" | "field" | "table" | "database";
1169
- deterministicEncryption: boolean;
1170
- searchableEncryption: boolean;
1171
- } | undefined;
1046
+ readonly dimensions?: number | undefined;
1172
1047
  readonly columnName?: string | undefined;
1173
1048
  readonly searchable?: boolean | undefined;
1174
1049
  readonly unique?: boolean | undefined;
@@ -1177,7 +1052,6 @@ declare const SysSetting: Omit<{
1177
1052
  readonly scale?: number | undefined;
1178
1053
  readonly reference?: string | undefined;
1179
1054
  readonly referenceFilters?: string[] | undefined;
1180
- readonly writeRequiresMasterRead?: boolean | undefined;
1181
1055
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1182
1056
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1183
1057
  readonly inlineTitle?: string | undefined;
@@ -1202,22 +1076,8 @@ declare const SysSetting: Omit<{
1202
1076
  relationshipField?: string | undefined;
1203
1077
  } | undefined;
1204
1078
  readonly language?: string | undefined;
1205
- readonly lineNumbers?: boolean | undefined;
1206
1079
  readonly maxRating?: number | undefined;
1207
- readonly allowHalf?: boolean | undefined;
1208
- readonly displayMap?: boolean | undefined;
1209
- readonly allowGeocoding?: boolean | undefined;
1210
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
1211
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
1212
- readonly allowAlpha?: boolean | undefined;
1213
- readonly presetColors?: string[] | undefined;
1214
1080
  readonly step?: number | undefined;
1215
- readonly showValue?: boolean | undefined;
1216
- readonly marks?: Record<string, string> | undefined;
1217
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
1218
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
1219
- readonly displayValue?: boolean | undefined;
1220
- readonly allowScanning?: boolean | undefined;
1221
1081
  readonly currencyConfig?: {
1222
1082
  precision: number;
1223
1083
  currencyMode: "fixed" | "dynamic";
@@ -1271,29 +1131,7 @@ declare const SysSetting: Omit<{
1271
1131
  } | undefined;
1272
1132
  maxVersions?: number | undefined;
1273
1133
  } | undefined;
1274
- readonly maskingRule?: {
1275
- field: string;
1276
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
1277
- preserveFormat: boolean;
1278
- preserveLength: boolean;
1279
- pattern?: string | undefined;
1280
- roles?: string[] | undefined;
1281
- exemptRoles?: string[] | undefined;
1282
- } | undefined;
1283
- readonly auditTrail?: boolean | undefined;
1284
- readonly cached?: {
1285
- enabled: boolean;
1286
- ttl: number;
1287
- invalidateOn: string[];
1288
- } | undefined;
1289
- readonly dataQuality?: {
1290
- uniqueness: boolean;
1291
- completeness: number;
1292
- accuracy?: {
1293
- source: string;
1294
- threshold: number;
1295
- } | undefined;
1296
- } | undefined;
1134
+ readonly trackHistory?: boolean | undefined;
1297
1135
  readonly visibleWhen?: {
1298
1136
  dialect: "cel" | "js" | "cron" | "template";
1299
1137
  source?: string | undefined;
@@ -1332,7 +1170,6 @@ declare const SysSetting: Omit<{
1332
1170
  } | undefined;
1333
1171
  readonly sortable?: boolean | undefined;
1334
1172
  readonly inlineHelpText?: string | undefined;
1335
- readonly trackFeedHistory?: boolean | undefined;
1336
1173
  readonly caseSensitive?: boolean | undefined;
1337
1174
  readonly autonumberFormat?: string | undefined;
1338
1175
  readonly index?: boolean | undefined;
@@ -1354,7 +1191,6 @@ declare const SysSetting: Omit<{
1354
1191
  readonly required?: boolean | undefined;
1355
1192
  readonly multiple?: boolean | undefined;
1356
1193
  readonly dependencies?: string[] | undefined;
1357
- readonly theme?: string | undefined;
1358
1194
  readonly externalId?: boolean | undefined;
1359
1195
  readonly defaultValue?: unknown;
1360
1196
  readonly group?: string | undefined;
@@ -1362,23 +1198,7 @@ declare const SysSetting: Omit<{
1362
1198
  readonly system?: boolean | undefined;
1363
1199
  readonly min?: number | undefined;
1364
1200
  readonly max?: number | undefined;
1365
- readonly encryptionConfig?: {
1366
- enabled: boolean;
1367
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
1368
- keyManagement: {
1369
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
1370
- keyId?: string | undefined;
1371
- rotationPolicy?: {
1372
- enabled: boolean;
1373
- frequencyDays: number;
1374
- retainOldVersions: number;
1375
- autoRotate: boolean;
1376
- } | undefined;
1377
- };
1378
- scope: "record" | "field" | "table" | "database";
1379
- deterministicEncryption: boolean;
1380
- searchableEncryption: boolean;
1381
- } | undefined;
1201
+ readonly dimensions?: number | undefined;
1382
1202
  readonly columnName?: string | undefined;
1383
1203
  readonly searchable?: boolean | undefined;
1384
1204
  readonly unique?: boolean | undefined;
@@ -1387,7 +1207,6 @@ declare const SysSetting: Omit<{
1387
1207
  readonly scale?: number | undefined;
1388
1208
  readonly reference?: string | undefined;
1389
1209
  readonly referenceFilters?: string[] | undefined;
1390
- readonly writeRequiresMasterRead?: boolean | undefined;
1391
1210
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1392
1211
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1393
1212
  readonly inlineTitle?: string | undefined;
@@ -1412,22 +1231,8 @@ declare const SysSetting: Omit<{
1412
1231
  relationshipField?: string | undefined;
1413
1232
  } | undefined;
1414
1233
  readonly language?: string | undefined;
1415
- readonly lineNumbers?: boolean | undefined;
1416
1234
  readonly maxRating?: number | undefined;
1417
- readonly allowHalf?: boolean | undefined;
1418
- readonly displayMap?: boolean | undefined;
1419
- readonly allowGeocoding?: boolean | undefined;
1420
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
1421
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
1422
- readonly allowAlpha?: boolean | undefined;
1423
- readonly presetColors?: string[] | undefined;
1424
1235
  readonly step?: number | undefined;
1425
- readonly showValue?: boolean | undefined;
1426
- readonly marks?: Record<string, string> | undefined;
1427
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
1428
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
1429
- readonly displayValue?: boolean | undefined;
1430
- readonly allowScanning?: boolean | undefined;
1431
1236
  readonly currencyConfig?: {
1432
1237
  precision: number;
1433
1238
  currencyMode: "fixed" | "dynamic";
@@ -1481,29 +1286,7 @@ declare const SysSetting: Omit<{
1481
1286
  } | undefined;
1482
1287
  maxVersions?: number | undefined;
1483
1288
  } | undefined;
1484
- readonly maskingRule?: {
1485
- field: string;
1486
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
1487
- preserveFormat: boolean;
1488
- preserveLength: boolean;
1489
- pattern?: string | undefined;
1490
- roles?: string[] | undefined;
1491
- exemptRoles?: string[] | undefined;
1492
- } | undefined;
1493
- readonly auditTrail?: boolean | undefined;
1494
- readonly cached?: {
1495
- enabled: boolean;
1496
- ttl: number;
1497
- invalidateOn: string[];
1498
- } | undefined;
1499
- readonly dataQuality?: {
1500
- uniqueness: boolean;
1501
- completeness: number;
1502
- accuracy?: {
1503
- source: string;
1504
- threshold: number;
1505
- } | undefined;
1506
- } | undefined;
1289
+ readonly trackHistory?: boolean | undefined;
1507
1290
  readonly visibleWhen?: {
1508
1291
  dialect: "cel" | "js" | "cron" | "template";
1509
1292
  source?: string | undefined;
@@ -1542,7 +1325,6 @@ declare const SysSetting: Omit<{
1542
1325
  } | undefined;
1543
1326
  readonly sortable?: boolean | undefined;
1544
1327
  readonly inlineHelpText?: string | undefined;
1545
- readonly trackFeedHistory?: boolean | undefined;
1546
1328
  readonly caseSensitive?: boolean | undefined;
1547
1329
  readonly autonumberFormat?: string | undefined;
1548
1330
  readonly index?: boolean | undefined;
@@ -1564,7 +1346,6 @@ declare const SysSetting: Omit<{
1564
1346
  readonly required?: boolean | undefined;
1565
1347
  readonly multiple?: boolean | undefined;
1566
1348
  readonly dependencies?: string[] | undefined;
1567
- readonly theme?: string | undefined;
1568
1349
  readonly externalId?: boolean | undefined;
1569
1350
  readonly defaultValue?: unknown;
1570
1351
  readonly group?: string | undefined;
@@ -1572,23 +1353,7 @@ declare const SysSetting: Omit<{
1572
1353
  readonly system?: boolean | undefined;
1573
1354
  readonly min?: number | undefined;
1574
1355
  readonly max?: number | undefined;
1575
- readonly encryptionConfig?: {
1576
- enabled: boolean;
1577
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
1578
- keyManagement: {
1579
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
1580
- keyId?: string | undefined;
1581
- rotationPolicy?: {
1582
- enabled: boolean;
1583
- frequencyDays: number;
1584
- retainOldVersions: number;
1585
- autoRotate: boolean;
1586
- } | undefined;
1587
- };
1588
- scope: "record" | "field" | "table" | "database";
1589
- deterministicEncryption: boolean;
1590
- searchableEncryption: boolean;
1591
- } | undefined;
1356
+ readonly dimensions?: number | undefined;
1592
1357
  readonly columnName?: string | undefined;
1593
1358
  readonly searchable?: boolean | undefined;
1594
1359
  readonly unique?: boolean | undefined;
@@ -1597,7 +1362,6 @@ declare const SysSetting: Omit<{
1597
1362
  readonly scale?: number | undefined;
1598
1363
  readonly reference?: string | undefined;
1599
1364
  readonly referenceFilters?: string[] | undefined;
1600
- readonly writeRequiresMasterRead?: boolean | undefined;
1601
1365
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1602
1366
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1603
1367
  readonly inlineTitle?: string | undefined;
@@ -1622,22 +1386,8 @@ declare const SysSetting: Omit<{
1622
1386
  relationshipField?: string | undefined;
1623
1387
  } | undefined;
1624
1388
  readonly language?: string | undefined;
1625
- readonly lineNumbers?: boolean | undefined;
1626
1389
  readonly maxRating?: number | undefined;
1627
- readonly allowHalf?: boolean | undefined;
1628
- readonly displayMap?: boolean | undefined;
1629
- readonly allowGeocoding?: boolean | undefined;
1630
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
1631
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
1632
- readonly allowAlpha?: boolean | undefined;
1633
- readonly presetColors?: string[] | undefined;
1634
1390
  readonly step?: number | undefined;
1635
- readonly showValue?: boolean | undefined;
1636
- readonly marks?: Record<string, string> | undefined;
1637
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
1638
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
1639
- readonly displayValue?: boolean | undefined;
1640
- readonly allowScanning?: boolean | undefined;
1641
1391
  readonly currencyConfig?: {
1642
1392
  precision: number;
1643
1393
  currencyMode: "fixed" | "dynamic";
@@ -1691,29 +1441,7 @@ declare const SysSetting: Omit<{
1691
1441
  } | undefined;
1692
1442
  maxVersions?: number | undefined;
1693
1443
  } | undefined;
1694
- readonly maskingRule?: {
1695
- field: string;
1696
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
1697
- preserveFormat: boolean;
1698
- preserveLength: boolean;
1699
- pattern?: string | undefined;
1700
- roles?: string[] | undefined;
1701
- exemptRoles?: string[] | undefined;
1702
- } | undefined;
1703
- readonly auditTrail?: boolean | undefined;
1704
- readonly cached?: {
1705
- enabled: boolean;
1706
- ttl: number;
1707
- invalidateOn: string[];
1708
- } | undefined;
1709
- readonly dataQuality?: {
1710
- uniqueness: boolean;
1711
- completeness: number;
1712
- accuracy?: {
1713
- source: string;
1714
- threshold: number;
1715
- } | undefined;
1716
- } | undefined;
1444
+ readonly trackHistory?: boolean | undefined;
1717
1445
  readonly visibleWhen?: {
1718
1446
  dialect: "cel" | "js" | "cron" | "template";
1719
1447
  source?: string | undefined;
@@ -1752,7 +1480,6 @@ declare const SysSetting: Omit<{
1752
1480
  } | undefined;
1753
1481
  readonly sortable?: boolean | undefined;
1754
1482
  readonly inlineHelpText?: string | undefined;
1755
- readonly trackFeedHistory?: boolean | undefined;
1756
1483
  readonly caseSensitive?: boolean | undefined;
1757
1484
  readonly autonumberFormat?: string | undefined;
1758
1485
  readonly index?: boolean | undefined;
@@ -1774,7 +1501,6 @@ declare const SysSetting: Omit<{
1774
1501
  readonly required?: boolean | undefined;
1775
1502
  readonly multiple?: boolean | undefined;
1776
1503
  readonly dependencies?: string[] | undefined;
1777
- readonly theme?: string | undefined;
1778
1504
  readonly externalId?: boolean | undefined;
1779
1505
  readonly defaultValue?: unknown;
1780
1506
  readonly group?: string | undefined;
@@ -1782,23 +1508,7 @@ declare const SysSetting: Omit<{
1782
1508
  readonly system?: boolean | undefined;
1783
1509
  readonly min?: number | undefined;
1784
1510
  readonly max?: number | undefined;
1785
- readonly encryptionConfig?: {
1786
- enabled: boolean;
1787
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
1788
- keyManagement: {
1789
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
1790
- keyId?: string | undefined;
1791
- rotationPolicy?: {
1792
- enabled: boolean;
1793
- frequencyDays: number;
1794
- retainOldVersions: number;
1795
- autoRotate: boolean;
1796
- } | undefined;
1797
- };
1798
- scope: "record" | "field" | "table" | "database";
1799
- deterministicEncryption: boolean;
1800
- searchableEncryption: boolean;
1801
- } | undefined;
1511
+ readonly dimensions?: number | undefined;
1802
1512
  readonly columnName?: string | undefined;
1803
1513
  readonly searchable?: boolean | undefined;
1804
1514
  readonly unique?: boolean | undefined;
@@ -1807,7 +1517,6 @@ declare const SysSetting: Omit<{
1807
1517
  readonly scale?: number | undefined;
1808
1518
  readonly reference?: string | undefined;
1809
1519
  readonly referenceFilters?: string[] | undefined;
1810
- readonly writeRequiresMasterRead?: boolean | undefined;
1811
1520
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1812
1521
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1813
1522
  readonly inlineTitle?: string | undefined;
@@ -1832,22 +1541,8 @@ declare const SysSetting: Omit<{
1832
1541
  relationshipField?: string | undefined;
1833
1542
  } | undefined;
1834
1543
  readonly language?: string | undefined;
1835
- readonly lineNumbers?: boolean | undefined;
1836
1544
  readonly maxRating?: number | undefined;
1837
- readonly allowHalf?: boolean | undefined;
1838
- readonly displayMap?: boolean | undefined;
1839
- readonly allowGeocoding?: boolean | undefined;
1840
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
1841
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
1842
- readonly allowAlpha?: boolean | undefined;
1843
- readonly presetColors?: string[] | undefined;
1844
1545
  readonly step?: number | undefined;
1845
- readonly showValue?: boolean | undefined;
1846
- readonly marks?: Record<string, string> | undefined;
1847
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
1848
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
1849
- readonly displayValue?: boolean | undefined;
1850
- readonly allowScanning?: boolean | undefined;
1851
1546
  readonly currencyConfig?: {
1852
1547
  precision: number;
1853
1548
  currencyMode: "fixed" | "dynamic";
@@ -1901,29 +1596,7 @@ declare const SysSetting: Omit<{
1901
1596
  } | undefined;
1902
1597
  maxVersions?: number | undefined;
1903
1598
  } | undefined;
1904
- readonly maskingRule?: {
1905
- field: string;
1906
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
1907
- preserveFormat: boolean;
1908
- preserveLength: boolean;
1909
- pattern?: string | undefined;
1910
- roles?: string[] | undefined;
1911
- exemptRoles?: string[] | undefined;
1912
- } | undefined;
1913
- readonly auditTrail?: boolean | undefined;
1914
- readonly cached?: {
1915
- enabled: boolean;
1916
- ttl: number;
1917
- invalidateOn: string[];
1918
- } | undefined;
1919
- readonly dataQuality?: {
1920
- uniqueness: boolean;
1921
- completeness: number;
1922
- accuracy?: {
1923
- source: string;
1924
- threshold: number;
1925
- } | undefined;
1926
- } | undefined;
1599
+ readonly trackHistory?: boolean | undefined;
1927
1600
  readonly visibleWhen?: {
1928
1601
  dialect: "cel" | "js" | "cron" | "template";
1929
1602
  source?: string | undefined;
@@ -1962,7 +1635,6 @@ declare const SysSetting: Omit<{
1962
1635
  } | undefined;
1963
1636
  readonly sortable?: boolean | undefined;
1964
1637
  readonly inlineHelpText?: string | undefined;
1965
- readonly trackFeedHistory?: boolean | undefined;
1966
1638
  readonly caseSensitive?: boolean | undefined;
1967
1639
  readonly autonumberFormat?: string | undefined;
1968
1640
  readonly index?: boolean | undefined;
@@ -1984,7 +1656,6 @@ declare const SysSetting: Omit<{
1984
1656
  readonly required?: boolean | undefined;
1985
1657
  readonly multiple?: boolean | undefined;
1986
1658
  readonly dependencies?: string[] | undefined;
1987
- readonly theme?: string | undefined;
1988
1659
  readonly externalId?: boolean | undefined;
1989
1660
  readonly defaultValue?: unknown;
1990
1661
  readonly group?: string | undefined;
@@ -1992,23 +1663,7 @@ declare const SysSetting: Omit<{
1992
1663
  readonly system?: boolean | undefined;
1993
1664
  readonly min?: number | undefined;
1994
1665
  readonly max?: number | undefined;
1995
- readonly encryptionConfig?: {
1996
- enabled: boolean;
1997
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
1998
- keyManagement: {
1999
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
2000
- keyId?: string | undefined;
2001
- rotationPolicy?: {
2002
- enabled: boolean;
2003
- frequencyDays: number;
2004
- retainOldVersions: number;
2005
- autoRotate: boolean;
2006
- } | undefined;
2007
- };
2008
- scope: "record" | "field" | "table" | "database";
2009
- deterministicEncryption: boolean;
2010
- searchableEncryption: boolean;
2011
- } | undefined;
1666
+ readonly dimensions?: number | undefined;
2012
1667
  readonly columnName?: string | undefined;
2013
1668
  readonly searchable?: boolean | undefined;
2014
1669
  readonly unique?: boolean | undefined;
@@ -2017,7 +1672,6 @@ declare const SysSetting: Omit<{
2017
1672
  readonly scale?: number | undefined;
2018
1673
  readonly reference?: string | undefined;
2019
1674
  readonly referenceFilters?: string[] | undefined;
2020
- readonly writeRequiresMasterRead?: boolean | undefined;
2021
1675
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2022
1676
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2023
1677
  readonly inlineTitle?: string | undefined;
@@ -2042,22 +1696,8 @@ declare const SysSetting: Omit<{
2042
1696
  relationshipField?: string | undefined;
2043
1697
  } | undefined;
2044
1698
  readonly language?: string | undefined;
2045
- readonly lineNumbers?: boolean | undefined;
2046
1699
  readonly maxRating?: number | undefined;
2047
- readonly allowHalf?: boolean | undefined;
2048
- readonly displayMap?: boolean | undefined;
2049
- readonly allowGeocoding?: boolean | undefined;
2050
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
2051
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
2052
- readonly allowAlpha?: boolean | undefined;
2053
- readonly presetColors?: string[] | undefined;
2054
1700
  readonly step?: number | undefined;
2055
- readonly showValue?: boolean | undefined;
2056
- readonly marks?: Record<string, string> | undefined;
2057
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
2058
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
2059
- readonly displayValue?: boolean | undefined;
2060
- readonly allowScanning?: boolean | undefined;
2061
1701
  readonly currencyConfig?: {
2062
1702
  precision: number;
2063
1703
  currencyMode: "fixed" | "dynamic";
@@ -2111,29 +1751,7 @@ declare const SysSetting: Omit<{
2111
1751
  } | undefined;
2112
1752
  maxVersions?: number | undefined;
2113
1753
  } | undefined;
2114
- readonly maskingRule?: {
2115
- field: string;
2116
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
2117
- preserveFormat: boolean;
2118
- preserveLength: boolean;
2119
- pattern?: string | undefined;
2120
- roles?: string[] | undefined;
2121
- exemptRoles?: string[] | undefined;
2122
- } | undefined;
2123
- readonly auditTrail?: boolean | undefined;
2124
- readonly cached?: {
2125
- enabled: boolean;
2126
- ttl: number;
2127
- invalidateOn: string[];
2128
- } | undefined;
2129
- readonly dataQuality?: {
2130
- uniqueness: boolean;
2131
- completeness: number;
2132
- accuracy?: {
2133
- source: string;
2134
- threshold: number;
2135
- } | undefined;
2136
- } | undefined;
1754
+ readonly trackHistory?: boolean | undefined;
2137
1755
  readonly visibleWhen?: {
2138
1756
  dialect: "cel" | "js" | "cron" | "template";
2139
1757
  source?: string | undefined;
@@ -2172,7 +1790,6 @@ declare const SysSetting: Omit<{
2172
1790
  } | undefined;
2173
1791
  readonly sortable?: boolean | undefined;
2174
1792
  readonly inlineHelpText?: string | undefined;
2175
- readonly trackFeedHistory?: boolean | undefined;
2176
1793
  readonly caseSensitive?: boolean | undefined;
2177
1794
  readonly autonumberFormat?: string | undefined;
2178
1795
  readonly index?: boolean | undefined;
@@ -2194,7 +1811,6 @@ declare const SysSetting: Omit<{
2194
1811
  readonly required?: boolean | undefined;
2195
1812
  readonly multiple?: boolean | undefined;
2196
1813
  readonly dependencies?: string[] | undefined;
2197
- readonly theme?: string | undefined;
2198
1814
  readonly externalId?: boolean | undefined;
2199
1815
  readonly defaultValue?: unknown;
2200
1816
  readonly group?: string | undefined;
@@ -2202,23 +1818,7 @@ declare const SysSetting: Omit<{
2202
1818
  readonly system?: boolean | undefined;
2203
1819
  readonly min?: number | undefined;
2204
1820
  readonly max?: number | undefined;
2205
- readonly encryptionConfig?: {
2206
- enabled: boolean;
2207
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
2208
- keyManagement: {
2209
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
2210
- keyId?: string | undefined;
2211
- rotationPolicy?: {
2212
- enabled: boolean;
2213
- frequencyDays: number;
2214
- retainOldVersions: number;
2215
- autoRotate: boolean;
2216
- } | undefined;
2217
- };
2218
- scope: "record" | "field" | "table" | "database";
2219
- deterministicEncryption: boolean;
2220
- searchableEncryption: boolean;
2221
- } | undefined;
1821
+ readonly dimensions?: number | undefined;
2222
1822
  readonly columnName?: string | undefined;
2223
1823
  readonly searchable?: boolean | undefined;
2224
1824
  readonly unique?: boolean | undefined;
@@ -2227,7 +1827,6 @@ declare const SysSetting: Omit<{
2227
1827
  readonly scale?: number | undefined;
2228
1828
  reference: string;
2229
1829
  readonly referenceFilters?: string[] | undefined;
2230
- readonly writeRequiresMasterRead?: boolean | undefined;
2231
1830
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2232
1831
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2233
1832
  readonly inlineTitle?: string | undefined;
@@ -2252,22 +1851,8 @@ declare const SysSetting: Omit<{
2252
1851
  relationshipField?: string | undefined;
2253
1852
  } | undefined;
2254
1853
  readonly language?: string | undefined;
2255
- readonly lineNumbers?: boolean | undefined;
2256
1854
  readonly maxRating?: number | undefined;
2257
- readonly allowHalf?: boolean | undefined;
2258
- readonly displayMap?: boolean | undefined;
2259
- readonly allowGeocoding?: boolean | undefined;
2260
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
2261
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
2262
- readonly allowAlpha?: boolean | undefined;
2263
- readonly presetColors?: string[] | undefined;
2264
1855
  readonly step?: number | undefined;
2265
- readonly showValue?: boolean | undefined;
2266
- readonly marks?: Record<string, string> | undefined;
2267
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
2268
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
2269
- readonly displayValue?: boolean | undefined;
2270
- readonly allowScanning?: boolean | undefined;
2271
1856
  readonly currencyConfig?: {
2272
1857
  precision: number;
2273
1858
  currencyMode: "fixed" | "dynamic";
@@ -2321,29 +1906,7 @@ declare const SysSetting: Omit<{
2321
1906
  } | undefined;
2322
1907
  maxVersions?: number | undefined;
2323
1908
  } | undefined;
2324
- readonly maskingRule?: {
2325
- field: string;
2326
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
2327
- preserveFormat: boolean;
2328
- preserveLength: boolean;
2329
- pattern?: string | undefined;
2330
- roles?: string[] | undefined;
2331
- exemptRoles?: string[] | undefined;
2332
- } | undefined;
2333
- readonly auditTrail?: boolean | undefined;
2334
- readonly cached?: {
2335
- enabled: boolean;
2336
- ttl: number;
2337
- invalidateOn: string[];
2338
- } | undefined;
2339
- readonly dataQuality?: {
2340
- uniqueness: boolean;
2341
- completeness: number;
2342
- accuracy?: {
2343
- source: string;
2344
- threshold: number;
2345
- } | undefined;
2346
- } | undefined;
1909
+ readonly trackHistory?: boolean | undefined;
2347
1910
  readonly visibleWhen?: {
2348
1911
  dialect: "cel" | "js" | "cron" | "template";
2349
1912
  source?: string | undefined;
@@ -2382,7 +1945,6 @@ declare const SysSetting: Omit<{
2382
1945
  } | undefined;
2383
1946
  readonly sortable?: boolean | undefined;
2384
1947
  readonly inlineHelpText?: string | undefined;
2385
- readonly trackFeedHistory?: boolean | undefined;
2386
1948
  readonly caseSensitive?: boolean | undefined;
2387
1949
  readonly autonumberFormat?: string | undefined;
2388
1950
  readonly index?: boolean | undefined;
@@ -2404,7 +1966,6 @@ declare const SysSetting: Omit<{
2404
1966
  readonly required?: boolean | undefined;
2405
1967
  readonly multiple?: boolean | undefined;
2406
1968
  readonly dependencies?: string[] | undefined;
2407
- readonly theme?: string | undefined;
2408
1969
  readonly externalId?: boolean | undefined;
2409
1970
  readonly defaultValue?: unknown;
2410
1971
  readonly group?: string | undefined;
@@ -2412,23 +1973,7 @@ declare const SysSetting: Omit<{
2412
1973
  readonly system?: boolean | undefined;
2413
1974
  readonly min?: number | undefined;
2414
1975
  readonly max?: number | undefined;
2415
- readonly encryptionConfig?: {
2416
- enabled: boolean;
2417
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
2418
- keyManagement: {
2419
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
2420
- keyId?: string | undefined;
2421
- rotationPolicy?: {
2422
- enabled: boolean;
2423
- frequencyDays: number;
2424
- retainOldVersions: number;
2425
- autoRotate: boolean;
2426
- } | undefined;
2427
- };
2428
- scope: "record" | "field" | "table" | "database";
2429
- deterministicEncryption: boolean;
2430
- searchableEncryption: boolean;
2431
- } | undefined;
1976
+ readonly dimensions?: number | undefined;
2432
1977
  readonly columnName?: string | undefined;
2433
1978
  readonly searchable?: boolean | undefined;
2434
1979
  readonly unique?: boolean | undefined;
@@ -2437,7 +1982,6 @@ declare const SysSetting: Omit<{
2437
1982
  readonly scale?: number | undefined;
2438
1983
  readonly reference?: string | undefined;
2439
1984
  readonly referenceFilters?: string[] | undefined;
2440
- readonly writeRequiresMasterRead?: boolean | undefined;
2441
1985
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2442
1986
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2443
1987
  readonly inlineTitle?: string | undefined;
@@ -2462,22 +2006,8 @@ declare const SysSetting: Omit<{
2462
2006
  relationshipField?: string | undefined;
2463
2007
  } | undefined;
2464
2008
  readonly language?: string | undefined;
2465
- readonly lineNumbers?: boolean | undefined;
2466
2009
  readonly maxRating?: number | undefined;
2467
- readonly allowHalf?: boolean | undefined;
2468
- readonly displayMap?: boolean | undefined;
2469
- readonly allowGeocoding?: boolean | undefined;
2470
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
2471
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
2472
- readonly allowAlpha?: boolean | undefined;
2473
- readonly presetColors?: string[] | undefined;
2474
2010
  readonly step?: number | undefined;
2475
- readonly showValue?: boolean | undefined;
2476
- readonly marks?: Record<string, string> | undefined;
2477
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
2478
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
2479
- readonly displayValue?: boolean | undefined;
2480
- readonly allowScanning?: boolean | undefined;
2481
2011
  readonly currencyConfig?: {
2482
2012
  precision: number;
2483
2013
  currencyMode: "fixed" | "dynamic";
@@ -2531,29 +2061,7 @@ declare const SysSetting: Omit<{
2531
2061
  } | undefined;
2532
2062
  maxVersions?: number | undefined;
2533
2063
  } | undefined;
2534
- readonly maskingRule?: {
2535
- field: string;
2536
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
2537
- preserveFormat: boolean;
2538
- preserveLength: boolean;
2539
- pattern?: string | undefined;
2540
- roles?: string[] | undefined;
2541
- exemptRoles?: string[] | undefined;
2542
- } | undefined;
2543
- readonly auditTrail?: boolean | undefined;
2544
- readonly cached?: {
2545
- enabled: boolean;
2546
- ttl: number;
2547
- invalidateOn: string[];
2548
- } | undefined;
2549
- readonly dataQuality?: {
2550
- uniqueness: boolean;
2551
- completeness: number;
2552
- accuracy?: {
2553
- source: string;
2554
- threshold: number;
2555
- } | undefined;
2556
- } | undefined;
2064
+ readonly trackHistory?: boolean | undefined;
2557
2065
  readonly visibleWhen?: {
2558
2066
  dialect: "cel" | "js" | "cron" | "template";
2559
2067
  source?: string | undefined;
@@ -2592,7 +2100,6 @@ declare const SysSetting: Omit<{
2592
2100
  } | undefined;
2593
2101
  readonly sortable?: boolean | undefined;
2594
2102
  readonly inlineHelpText?: string | undefined;
2595
- readonly trackFeedHistory?: boolean | undefined;
2596
2103
  readonly caseSensitive?: boolean | undefined;
2597
2104
  readonly autonumberFormat?: string | undefined;
2598
2105
  readonly index?: boolean | undefined;
@@ -2614,7 +2121,6 @@ declare const SysSetting: Omit<{
2614
2121
  readonly required?: boolean | undefined;
2615
2122
  readonly multiple?: boolean | undefined;
2616
2123
  readonly dependencies?: string[] | undefined;
2617
- readonly theme?: string | undefined;
2618
2124
  readonly externalId?: boolean | undefined;
2619
2125
  readonly defaultValue?: unknown;
2620
2126
  readonly group?: string | undefined;
@@ -2622,23 +2128,7 @@ declare const SysSetting: Omit<{
2622
2128
  readonly system?: boolean | undefined;
2623
2129
  readonly min?: number | undefined;
2624
2130
  readonly max?: number | undefined;
2625
- readonly encryptionConfig?: {
2626
- enabled: boolean;
2627
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
2628
- keyManagement: {
2629
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
2630
- keyId?: string | undefined;
2631
- rotationPolicy?: {
2632
- enabled: boolean;
2633
- frequencyDays: number;
2634
- retainOldVersions: number;
2635
- autoRotate: boolean;
2636
- } | undefined;
2637
- };
2638
- scope: "record" | "field" | "table" | "database";
2639
- deterministicEncryption: boolean;
2640
- searchableEncryption: boolean;
2641
- } | undefined;
2131
+ readonly dimensions?: number | undefined;
2642
2132
  readonly columnName?: string | undefined;
2643
2133
  readonly searchable?: boolean | undefined;
2644
2134
  readonly unique?: boolean | undefined;
@@ -2647,7 +2137,6 @@ declare const SysSetting: Omit<{
2647
2137
  readonly scale?: number | undefined;
2648
2138
  readonly reference?: string | undefined;
2649
2139
  readonly referenceFilters?: string[] | undefined;
2650
- readonly writeRequiresMasterRead?: boolean | undefined;
2651
2140
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2652
2141
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2653
2142
  readonly inlineTitle?: string | undefined;
@@ -2672,22 +2161,8 @@ declare const SysSetting: Omit<{
2672
2161
  relationshipField?: string | undefined;
2673
2162
  } | undefined;
2674
2163
  readonly language?: string | undefined;
2675
- readonly lineNumbers?: boolean | undefined;
2676
2164
  readonly maxRating?: number | undefined;
2677
- readonly allowHalf?: boolean | undefined;
2678
- readonly displayMap?: boolean | undefined;
2679
- readonly allowGeocoding?: boolean | undefined;
2680
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
2681
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
2682
- readonly allowAlpha?: boolean | undefined;
2683
- readonly presetColors?: string[] | undefined;
2684
2165
  readonly step?: number | undefined;
2685
- readonly showValue?: boolean | undefined;
2686
- readonly marks?: Record<string, string> | undefined;
2687
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
2688
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
2689
- readonly displayValue?: boolean | undefined;
2690
- readonly allowScanning?: boolean | undefined;
2691
2166
  readonly currencyConfig?: {
2692
2167
  precision: number;
2693
2168
  currencyMode: "fixed" | "dynamic";
@@ -2741,29 +2216,7 @@ declare const SysSetting: Omit<{
2741
2216
  } | undefined;
2742
2217
  maxVersions?: number | undefined;
2743
2218
  } | undefined;
2744
- readonly maskingRule?: {
2745
- field: string;
2746
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
2747
- preserveFormat: boolean;
2748
- preserveLength: boolean;
2749
- pattern?: string | undefined;
2750
- roles?: string[] | undefined;
2751
- exemptRoles?: string[] | undefined;
2752
- } | undefined;
2753
- readonly auditTrail?: boolean | undefined;
2754
- readonly cached?: {
2755
- enabled: boolean;
2756
- ttl: number;
2757
- invalidateOn: string[];
2758
- } | undefined;
2759
- readonly dataQuality?: {
2760
- uniqueness: boolean;
2761
- completeness: number;
2762
- accuracy?: {
2763
- source: string;
2764
- threshold: number;
2765
- } | undefined;
2766
- } | undefined;
2219
+ readonly trackHistory?: boolean | undefined;
2767
2220
  readonly visibleWhen?: {
2768
2221
  dialect: "cel" | "js" | "cron" | "template";
2769
2222
  source?: string | undefined;
@@ -2802,7 +2255,6 @@ declare const SysSetting: Omit<{
2802
2255
  } | undefined;
2803
2256
  readonly sortable?: boolean | undefined;
2804
2257
  readonly inlineHelpText?: string | undefined;
2805
- readonly trackFeedHistory?: boolean | undefined;
2806
2258
  readonly caseSensitive?: boolean | undefined;
2807
2259
  readonly autonumberFormat?: string | undefined;
2808
2260
  readonly index?: boolean | undefined;
@@ -2824,7 +2276,6 @@ declare const SysSetting: Omit<{
2824
2276
  readonly required?: boolean | undefined;
2825
2277
  readonly multiple?: boolean | undefined;
2826
2278
  readonly dependencies?: string[] | undefined;
2827
- readonly theme?: string | undefined;
2828
2279
  readonly externalId?: boolean | undefined;
2829
2280
  readonly defaultValue?: unknown;
2830
2281
  readonly group?: string | undefined;
@@ -2832,23 +2283,7 @@ declare const SysSetting: Omit<{
2832
2283
  readonly system?: boolean | undefined;
2833
2284
  readonly min?: number | undefined;
2834
2285
  readonly max?: number | undefined;
2835
- readonly encryptionConfig?: {
2836
- enabled: boolean;
2837
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
2838
- keyManagement: {
2839
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
2840
- keyId?: string | undefined;
2841
- rotationPolicy?: {
2842
- enabled: boolean;
2843
- frequencyDays: number;
2844
- retainOldVersions: number;
2845
- autoRotate: boolean;
2846
- } | undefined;
2847
- };
2848
- scope: "record" | "field" | "table" | "database";
2849
- deterministicEncryption: boolean;
2850
- searchableEncryption: boolean;
2851
- } | undefined;
2286
+ readonly dimensions?: number | undefined;
2852
2287
  readonly columnName?: string | undefined;
2853
2288
  readonly searchable?: boolean | undefined;
2854
2289
  readonly unique?: boolean | undefined;
@@ -2857,7 +2292,6 @@ declare const SysSetting: Omit<{
2857
2292
  readonly scale?: number | undefined;
2858
2293
  readonly reference?: string | undefined;
2859
2294
  readonly referenceFilters?: string[] | undefined;
2860
- readonly writeRequiresMasterRead?: boolean | undefined;
2861
2295
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2862
2296
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2863
2297
  readonly inlineTitle?: string | undefined;
@@ -2882,22 +2316,8 @@ declare const SysSetting: Omit<{
2882
2316
  relationshipField?: string | undefined;
2883
2317
  } | undefined;
2884
2318
  readonly language?: string | undefined;
2885
- readonly lineNumbers?: boolean | undefined;
2886
2319
  readonly maxRating?: number | undefined;
2887
- readonly allowHalf?: boolean | undefined;
2888
- readonly displayMap?: boolean | undefined;
2889
- readonly allowGeocoding?: boolean | undefined;
2890
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
2891
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
2892
- readonly allowAlpha?: boolean | undefined;
2893
- readonly presetColors?: string[] | undefined;
2894
2320
  readonly step?: number | undefined;
2895
- readonly showValue?: boolean | undefined;
2896
- readonly marks?: Record<string, string> | undefined;
2897
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
2898
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
2899
- readonly displayValue?: boolean | undefined;
2900
- readonly allowScanning?: boolean | undefined;
2901
2321
  readonly currencyConfig?: {
2902
2322
  precision: number;
2903
2323
  currencyMode: "fixed" | "dynamic";
@@ -2951,29 +2371,7 @@ declare const SysSetting: Omit<{
2951
2371
  } | undefined;
2952
2372
  maxVersions?: number | undefined;
2953
2373
  } | undefined;
2954
- readonly maskingRule?: {
2955
- field: string;
2956
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
2957
- preserveFormat: boolean;
2958
- preserveLength: boolean;
2959
- pattern?: string | undefined;
2960
- roles?: string[] | undefined;
2961
- exemptRoles?: string[] | undefined;
2962
- } | undefined;
2963
- readonly auditTrail?: boolean | undefined;
2964
- readonly cached?: {
2965
- enabled: boolean;
2966
- ttl: number;
2967
- invalidateOn: string[];
2968
- } | undefined;
2969
- readonly dataQuality?: {
2970
- uniqueness: boolean;
2971
- completeness: number;
2972
- accuracy?: {
2973
- source: string;
2974
- threshold: number;
2975
- } | undefined;
2976
- } | undefined;
2374
+ readonly trackHistory?: boolean | undefined;
2977
2375
  readonly visibleWhen?: {
2978
2376
  dialect: "cel" | "js" | "cron" | "template";
2979
2377
  source?: string | undefined;
@@ -3012,7 +2410,6 @@ declare const SysSetting: Omit<{
3012
2410
  } | undefined;
3013
2411
  readonly sortable?: boolean | undefined;
3014
2412
  readonly inlineHelpText?: string | undefined;
3015
- readonly trackFeedHistory?: boolean | undefined;
3016
2413
  readonly caseSensitive?: boolean | undefined;
3017
2414
  readonly autonumberFormat?: string | undefined;
3018
2415
  readonly index?: boolean | undefined;
@@ -3034,7 +2431,6 @@ declare const SysSetting: Omit<{
3034
2431
  readonly required?: boolean | undefined;
3035
2432
  readonly multiple?: boolean | undefined;
3036
2433
  readonly dependencies?: string[] | undefined;
3037
- readonly theme?: string | undefined;
3038
2434
  readonly externalId?: boolean | undefined;
3039
2435
  readonly defaultValue?: unknown;
3040
2436
  readonly group?: string | undefined;
@@ -3042,23 +2438,7 @@ declare const SysSetting: Omit<{
3042
2438
  readonly system?: boolean | undefined;
3043
2439
  readonly min?: number | undefined;
3044
2440
  readonly max?: number | undefined;
3045
- readonly encryptionConfig?: {
3046
- enabled: boolean;
3047
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
3048
- keyManagement: {
3049
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
3050
- keyId?: string | undefined;
3051
- rotationPolicy?: {
3052
- enabled: boolean;
3053
- frequencyDays: number;
3054
- retainOldVersions: number;
3055
- autoRotate: boolean;
3056
- } | undefined;
3057
- };
3058
- scope: "record" | "field" | "table" | "database";
3059
- deterministicEncryption: boolean;
3060
- searchableEncryption: boolean;
3061
- } | undefined;
2441
+ readonly dimensions?: number | undefined;
3062
2442
  readonly columnName?: string | undefined;
3063
2443
  readonly searchable?: boolean | undefined;
3064
2444
  readonly unique?: boolean | undefined;
@@ -3067,7 +2447,6 @@ declare const SysSetting: Omit<{
3067
2447
  readonly scale?: number | undefined;
3068
2448
  readonly reference?: string | undefined;
3069
2449
  readonly referenceFilters?: string[] | undefined;
3070
- readonly writeRequiresMasterRead?: boolean | undefined;
3071
2450
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
3072
2451
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
3073
2452
  readonly inlineTitle?: string | undefined;
@@ -3092,22 +2471,8 @@ declare const SysSetting: Omit<{
3092
2471
  relationshipField?: string | undefined;
3093
2472
  } | undefined;
3094
2473
  readonly language?: string | undefined;
3095
- readonly lineNumbers?: boolean | undefined;
3096
2474
  readonly maxRating?: number | undefined;
3097
- readonly allowHalf?: boolean | undefined;
3098
- readonly displayMap?: boolean | undefined;
3099
- readonly allowGeocoding?: boolean | undefined;
3100
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
3101
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
3102
- readonly allowAlpha?: boolean | undefined;
3103
- readonly presetColors?: string[] | undefined;
3104
2475
  readonly step?: number | undefined;
3105
- readonly showValue?: boolean | undefined;
3106
- readonly marks?: Record<string, string> | undefined;
3107
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
3108
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
3109
- readonly displayValue?: boolean | undefined;
3110
- readonly allowScanning?: boolean | undefined;
3111
2476
  readonly currencyConfig?: {
3112
2477
  precision: number;
3113
2478
  currencyMode: "fixed" | "dynamic";
@@ -3161,29 +2526,7 @@ declare const SysSetting: Omit<{
3161
2526
  } | undefined;
3162
2527
  maxVersions?: number | undefined;
3163
2528
  } | undefined;
3164
- readonly maskingRule?: {
3165
- field: string;
3166
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
3167
- preserveFormat: boolean;
3168
- preserveLength: boolean;
3169
- pattern?: string | undefined;
3170
- roles?: string[] | undefined;
3171
- exemptRoles?: string[] | undefined;
3172
- } | undefined;
3173
- readonly auditTrail?: boolean | undefined;
3174
- readonly cached?: {
3175
- enabled: boolean;
3176
- ttl: number;
3177
- invalidateOn: string[];
3178
- } | undefined;
3179
- readonly dataQuality?: {
3180
- uniqueness: boolean;
3181
- completeness: number;
3182
- accuracy?: {
3183
- source: string;
3184
- threshold: number;
3185
- } | undefined;
3186
- } | undefined;
2529
+ readonly trackHistory?: boolean | undefined;
3187
2530
  readonly visibleWhen?: {
3188
2531
  dialect: "cel" | "js" | "cron" | "template";
3189
2532
  source?: string | undefined;
@@ -3222,7 +2565,6 @@ declare const SysSetting: Omit<{
3222
2565
  } | undefined;
3223
2566
  readonly sortable?: boolean | undefined;
3224
2567
  readonly inlineHelpText?: string | undefined;
3225
- readonly trackFeedHistory?: boolean | undefined;
3226
2568
  readonly caseSensitive?: boolean | undefined;
3227
2569
  readonly autonumberFormat?: string | undefined;
3228
2570
  readonly index?: boolean | undefined;
@@ -3244,7 +2586,6 @@ declare const SysSetting: Omit<{
3244
2586
  readonly required?: boolean | undefined;
3245
2587
  readonly multiple?: boolean | undefined;
3246
2588
  readonly dependencies?: string[] | undefined;
3247
- readonly theme?: string | undefined;
3248
2589
  readonly externalId?: boolean | undefined;
3249
2590
  readonly defaultValue?: unknown;
3250
2591
  readonly group?: string | undefined;
@@ -3252,23 +2593,7 @@ declare const SysSetting: Omit<{
3252
2593
  readonly system?: boolean | undefined;
3253
2594
  readonly min?: number | undefined;
3254
2595
  readonly max?: number | undefined;
3255
- readonly encryptionConfig?: {
3256
- enabled: boolean;
3257
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
3258
- keyManagement: {
3259
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
3260
- keyId?: string | undefined;
3261
- rotationPolicy?: {
3262
- enabled: boolean;
3263
- frequencyDays: number;
3264
- retainOldVersions: number;
3265
- autoRotate: boolean;
3266
- } | undefined;
3267
- };
3268
- scope: "record" | "field" | "table" | "database";
3269
- deterministicEncryption: boolean;
3270
- searchableEncryption: boolean;
3271
- } | undefined;
2596
+ readonly dimensions?: number | undefined;
3272
2597
  readonly columnName?: string | undefined;
3273
2598
  readonly searchable?: boolean | undefined;
3274
2599
  readonly unique?: boolean | undefined;
@@ -3277,7 +2602,6 @@ declare const SysSetting: Omit<{
3277
2602
  readonly scale?: number | undefined;
3278
2603
  readonly reference?: string | undefined;
3279
2604
  readonly referenceFilters?: string[] | undefined;
3280
- readonly writeRequiresMasterRead?: boolean | undefined;
3281
2605
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
3282
2606
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
3283
2607
  readonly inlineTitle?: string | undefined;
@@ -3302,22 +2626,8 @@ declare const SysSetting: Omit<{
3302
2626
  relationshipField?: string | undefined;
3303
2627
  } | undefined;
3304
2628
  readonly language?: string | undefined;
3305
- readonly lineNumbers?: boolean | undefined;
3306
2629
  readonly maxRating?: number | undefined;
3307
- readonly allowHalf?: boolean | undefined;
3308
- readonly displayMap?: boolean | undefined;
3309
- readonly allowGeocoding?: boolean | undefined;
3310
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
3311
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
3312
- readonly allowAlpha?: boolean | undefined;
3313
- readonly presetColors?: string[] | undefined;
3314
2630
  readonly step?: number | undefined;
3315
- readonly showValue?: boolean | undefined;
3316
- readonly marks?: Record<string, string> | undefined;
3317
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
3318
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
3319
- readonly displayValue?: boolean | undefined;
3320
- readonly allowScanning?: boolean | undefined;
3321
2631
  readonly currencyConfig?: {
3322
2632
  precision: number;
3323
2633
  currencyMode: "fixed" | "dynamic";
@@ -3371,29 +2681,7 @@ declare const SysSetting: Omit<{
3371
2681
  } | undefined;
3372
2682
  maxVersions?: number | undefined;
3373
2683
  } | undefined;
3374
- readonly maskingRule?: {
3375
- field: string;
3376
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
3377
- preserveFormat: boolean;
3378
- preserveLength: boolean;
3379
- pattern?: string | undefined;
3380
- roles?: string[] | undefined;
3381
- exemptRoles?: string[] | undefined;
3382
- } | undefined;
3383
- readonly auditTrail?: boolean | undefined;
3384
- readonly cached?: {
3385
- enabled: boolean;
3386
- ttl: number;
3387
- invalidateOn: string[];
3388
- } | undefined;
3389
- readonly dataQuality?: {
3390
- uniqueness: boolean;
3391
- completeness: number;
3392
- accuracy?: {
3393
- source: string;
3394
- threshold: number;
3395
- } | undefined;
3396
- } | undefined;
2684
+ readonly trackHistory?: boolean | undefined;
3397
2685
  readonly visibleWhen?: {
3398
2686
  dialect: "cel" | "js" | "cron" | "template";
3399
2687
  source?: string | undefined;
@@ -3432,7 +2720,6 @@ declare const SysSetting: Omit<{
3432
2720
  } | undefined;
3433
2721
  readonly sortable?: boolean | undefined;
3434
2722
  readonly inlineHelpText?: string | undefined;
3435
- readonly trackFeedHistory?: boolean | undefined;
3436
2723
  readonly caseSensitive?: boolean | undefined;
3437
2724
  readonly autonumberFormat?: string | undefined;
3438
2725
  readonly index?: boolean | undefined;
@@ -3454,7 +2741,6 @@ declare const SysSetting: Omit<{
3454
2741
  readonly required?: boolean | undefined;
3455
2742
  readonly multiple?: boolean | undefined;
3456
2743
  readonly dependencies?: string[] | undefined;
3457
- readonly theme?: string | undefined;
3458
2744
  readonly externalId?: boolean | undefined;
3459
2745
  readonly defaultValue?: unknown;
3460
2746
  readonly group?: string | undefined;
@@ -3462,23 +2748,7 @@ declare const SysSetting: Omit<{
3462
2748
  readonly system?: boolean | undefined;
3463
2749
  readonly min?: number | undefined;
3464
2750
  readonly max?: number | undefined;
3465
- readonly encryptionConfig?: {
3466
- enabled: boolean;
3467
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
3468
- keyManagement: {
3469
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
3470
- keyId?: string | undefined;
3471
- rotationPolicy?: {
3472
- enabled: boolean;
3473
- frequencyDays: number;
3474
- retainOldVersions: number;
3475
- autoRotate: boolean;
3476
- } | undefined;
3477
- };
3478
- scope: "record" | "field" | "table" | "database";
3479
- deterministicEncryption: boolean;
3480
- searchableEncryption: boolean;
3481
- } | undefined;
2751
+ readonly dimensions?: number | undefined;
3482
2752
  readonly columnName?: string | undefined;
3483
2753
  readonly searchable?: boolean | undefined;
3484
2754
  readonly unique?: boolean | undefined;
@@ -3487,7 +2757,6 @@ declare const SysSetting: Omit<{
3487
2757
  readonly scale?: number | undefined;
3488
2758
  reference: string;
3489
2759
  readonly referenceFilters?: string[] | undefined;
3490
- readonly writeRequiresMasterRead?: boolean | undefined;
3491
2760
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
3492
2761
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
3493
2762
  readonly inlineTitle?: string | undefined;
@@ -3512,22 +2781,8 @@ declare const SysSetting: Omit<{
3512
2781
  relationshipField?: string | undefined;
3513
2782
  } | undefined;
3514
2783
  readonly language?: string | undefined;
3515
- readonly lineNumbers?: boolean | undefined;
3516
2784
  readonly maxRating?: number | undefined;
3517
- readonly allowHalf?: boolean | undefined;
3518
- readonly displayMap?: boolean | undefined;
3519
- readonly allowGeocoding?: boolean | undefined;
3520
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
3521
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
3522
- readonly allowAlpha?: boolean | undefined;
3523
- readonly presetColors?: string[] | undefined;
3524
2785
  readonly step?: number | undefined;
3525
- readonly showValue?: boolean | undefined;
3526
- readonly marks?: Record<string, string> | undefined;
3527
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
3528
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
3529
- readonly displayValue?: boolean | undefined;
3530
- readonly allowScanning?: boolean | undefined;
3531
2786
  readonly currencyConfig?: {
3532
2787
  precision: number;
3533
2788
  currencyMode: "fixed" | "dynamic";
@@ -3581,29 +2836,7 @@ declare const SysSetting: Omit<{
3581
2836
  } | undefined;
3582
2837
  maxVersions?: number | undefined;
3583
2838
  } | undefined;
3584
- readonly maskingRule?: {
3585
- field: string;
3586
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
3587
- preserveFormat: boolean;
3588
- preserveLength: boolean;
3589
- pattern?: string | undefined;
3590
- roles?: string[] | undefined;
3591
- exemptRoles?: string[] | undefined;
3592
- } | undefined;
3593
- readonly auditTrail?: boolean | undefined;
3594
- readonly cached?: {
3595
- enabled: boolean;
3596
- ttl: number;
3597
- invalidateOn: string[];
3598
- } | undefined;
3599
- readonly dataQuality?: {
3600
- uniqueness: boolean;
3601
- completeness: number;
3602
- accuracy?: {
3603
- source: string;
3604
- threshold: number;
3605
- } | undefined;
3606
- } | undefined;
2839
+ readonly trackHistory?: boolean | undefined;
3607
2840
  readonly visibleWhen?: {
3608
2841
  dialect: "cel" | "js" | "cron" | "template";
3609
2842
  source?: string | undefined;
@@ -3642,7 +2875,6 @@ declare const SysSetting: Omit<{
3642
2875
  } | undefined;
3643
2876
  readonly sortable?: boolean | undefined;
3644
2877
  readonly inlineHelpText?: string | undefined;
3645
- readonly trackFeedHistory?: boolean | undefined;
3646
2878
  readonly caseSensitive?: boolean | undefined;
3647
2879
  readonly autonumberFormat?: string | undefined;
3648
2880
  readonly index?: boolean | undefined;
@@ -3709,7 +2941,6 @@ declare const SysSecret: Omit<{
3709
2941
  multiple: boolean;
3710
2942
  unique: boolean;
3711
2943
  deleteBehavior: "set_null" | "cascade" | "restrict";
3712
- auditTrail: boolean;
3713
2944
  hidden: boolean;
3714
2945
  readonly: boolean;
3715
2946
  sortable: boolean;
@@ -3735,7 +2966,6 @@ declare const SysSecret: Omit<{
3735
2966
  }[] | undefined;
3736
2967
  reference?: string | undefined;
3737
2968
  referenceFilters?: string[] | undefined;
3738
- writeRequiresMasterRead?: boolean | undefined;
3739
2969
  inlineEdit?: boolean | "grid" | "form" | undefined;
3740
2970
  inlineTitle?: string | undefined;
3741
2971
  inlineColumns?: any[] | undefined;
@@ -3767,28 +2997,14 @@ declare const SysSecret: Omit<{
3767
2997
  relationshipField?: string | undefined;
3768
2998
  } | undefined;
3769
2999
  language?: string | undefined;
3770
- theme?: string | undefined;
3771
- lineNumbers?: boolean | undefined;
3772
3000
  maxRating?: number | undefined;
3773
- allowHalf?: boolean | undefined;
3774
- displayMap?: boolean | undefined;
3775
- allowGeocoding?: boolean | undefined;
3776
- addressFormat?: "us" | "uk" | "international" | undefined;
3777
- colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
3778
- allowAlpha?: boolean | undefined;
3779
- presetColors?: string[] | undefined;
3780
3001
  step?: number | undefined;
3781
- showValue?: boolean | undefined;
3782
- marks?: Record<string, string> | undefined;
3783
- barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
3784
- qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
3785
- displayValue?: boolean | undefined;
3786
- allowScanning?: boolean | undefined;
3787
3002
  currencyConfig?: {
3788
3003
  precision: number;
3789
3004
  currencyMode: "fixed" | "dynamic";
3790
3005
  defaultCurrency: string;
3791
3006
  } | undefined;
3007
+ dimensions?: number | undefined;
3792
3008
  vectorConfig?: {
3793
3009
  dimensions: number;
3794
3010
  distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
@@ -3837,46 +3053,8 @@ declare const SysSecret: Omit<{
3837
3053
  } | undefined;
3838
3054
  maxVersions?: number | undefined;
3839
3055
  } | undefined;
3840
- encryptionConfig?: {
3841
- enabled: boolean;
3842
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
3843
- keyManagement: {
3844
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
3845
- keyId?: string | undefined;
3846
- rotationPolicy?: {
3847
- enabled: boolean;
3848
- frequencyDays: number;
3849
- retainOldVersions: number;
3850
- autoRotate: boolean;
3851
- } | undefined;
3852
- };
3853
- scope: "record" | "field" | "table" | "database";
3854
- deterministicEncryption: boolean;
3855
- searchableEncryption: boolean;
3856
- } | undefined;
3857
- maskingRule?: {
3858
- field: string;
3859
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
3860
- preserveFormat: boolean;
3861
- preserveLength: boolean;
3862
- pattern?: string | undefined;
3863
- roles?: string[] | undefined;
3864
- exemptRoles?: string[] | undefined;
3865
- } | undefined;
3056
+ trackHistory?: boolean | undefined;
3866
3057
  dependencies?: string[] | undefined;
3867
- cached?: {
3868
- enabled: boolean;
3869
- ttl: number;
3870
- invalidateOn: string[];
3871
- } | undefined;
3872
- dataQuality?: {
3873
- uniqueness: boolean;
3874
- completeness: number;
3875
- accuracy?: {
3876
- source: string;
3877
- threshold: number;
3878
- } | undefined;
3879
- } | undefined;
3880
3058
  group?: string | undefined;
3881
3059
  visibleWhen?: {
3882
3060
  dialect: "cel" | "js" | "cron" | "template";
@@ -3948,7 +3126,6 @@ declare const SysSecret: Omit<{
3948
3126
  } | undefined;
3949
3127
  system?: boolean | undefined;
3950
3128
  inlineHelpText?: string | undefined;
3951
- trackFeedHistory?: boolean | undefined;
3952
3129
  caseSensitive?: boolean | undefined;
3953
3130
  autonumberFormat?: string | undefined;
3954
3131
  }>;
@@ -4039,12 +3216,13 @@ declare const SysSecret: Omit<{
4039
3216
  key: string;
4040
3217
  interval?: string | undefined;
4041
3218
  } | undefined;
4042
- cdc?: {
4043
- enabled: boolean;
4044
- events: ("delete" | "update" | "insert")[];
4045
- destination: string;
4046
- } | undefined;
4047
3219
  validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
3220
+ activityMilestones?: {
3221
+ field: string;
3222
+ value: string;
3223
+ summary: string;
3224
+ type?: string | undefined;
3225
+ }[] | undefined;
4048
3226
  displayNameField?: string | undefined;
4049
3227
  recordName?: {
4050
3228
  type: "text" | "autonumber";
@@ -4355,7 +3533,6 @@ declare const SysSecret: Omit<{
4355
3533
  clone: boolean;
4356
3534
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
4357
3535
  } | undefined;
4358
- recordTypes?: string[] | undefined;
4359
3536
  sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
4360
3537
  publicSharing?: {
4361
3538
  enabled: boolean;
@@ -4412,6 +3589,8 @@ declare const SysSecret: Omit<{
4412
3589
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
4413
3590
  confirmText?: string | undefined;
4414
3591
  successMessage?: string | undefined;
3592
+ errorMessage?: string | undefined;
3593
+ undoable?: boolean | undefined;
4415
3594
  resultDialog?: {
4416
3595
  title?: string | undefined;
4417
3596
  description?: string | undefined;
@@ -4511,7 +3690,6 @@ declare const SysSecret: Omit<{
4511
3690
  readonly required?: boolean | undefined;
4512
3691
  readonly multiple?: boolean | undefined;
4513
3692
  readonly dependencies?: string[] | undefined;
4514
- readonly theme?: string | undefined;
4515
3693
  readonly externalId?: boolean | undefined;
4516
3694
  readonly defaultValue?: unknown;
4517
3695
  readonly group?: string | undefined;
@@ -4519,23 +3697,7 @@ declare const SysSecret: Omit<{
4519
3697
  readonly system?: boolean | undefined;
4520
3698
  readonly min?: number | undefined;
4521
3699
  readonly max?: number | undefined;
4522
- readonly encryptionConfig?: {
4523
- enabled: boolean;
4524
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
4525
- keyManagement: {
4526
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
4527
- keyId?: string | undefined;
4528
- rotationPolicy?: {
4529
- enabled: boolean;
4530
- frequencyDays: number;
4531
- retainOldVersions: number;
4532
- autoRotate: boolean;
4533
- } | undefined;
4534
- };
4535
- scope: "record" | "field" | "table" | "database";
4536
- deterministicEncryption: boolean;
4537
- searchableEncryption: boolean;
4538
- } | undefined;
3700
+ readonly dimensions?: number | undefined;
4539
3701
  readonly columnName?: string | undefined;
4540
3702
  readonly searchable?: boolean | undefined;
4541
3703
  readonly unique?: boolean | undefined;
@@ -4544,7 +3706,6 @@ declare const SysSecret: Omit<{
4544
3706
  readonly scale?: number | undefined;
4545
3707
  readonly reference?: string | undefined;
4546
3708
  readonly referenceFilters?: string[] | undefined;
4547
- readonly writeRequiresMasterRead?: boolean | undefined;
4548
3709
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
4549
3710
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
4550
3711
  readonly inlineTitle?: string | undefined;
@@ -4569,22 +3730,8 @@ declare const SysSecret: Omit<{
4569
3730
  relationshipField?: string | undefined;
4570
3731
  } | undefined;
4571
3732
  readonly language?: string | undefined;
4572
- readonly lineNumbers?: boolean | undefined;
4573
3733
  readonly maxRating?: number | undefined;
4574
- readonly allowHalf?: boolean | undefined;
4575
- readonly displayMap?: boolean | undefined;
4576
- readonly allowGeocoding?: boolean | undefined;
4577
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
4578
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
4579
- readonly allowAlpha?: boolean | undefined;
4580
- readonly presetColors?: string[] | undefined;
4581
3734
  readonly step?: number | undefined;
4582
- readonly showValue?: boolean | undefined;
4583
- readonly marks?: Record<string, string> | undefined;
4584
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
4585
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
4586
- readonly displayValue?: boolean | undefined;
4587
- readonly allowScanning?: boolean | undefined;
4588
3735
  readonly currencyConfig?: {
4589
3736
  precision: number;
4590
3737
  currencyMode: "fixed" | "dynamic";
@@ -4638,29 +3785,7 @@ declare const SysSecret: Omit<{
4638
3785
  } | undefined;
4639
3786
  maxVersions?: number | undefined;
4640
3787
  } | undefined;
4641
- readonly maskingRule?: {
4642
- field: string;
4643
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
4644
- preserveFormat: boolean;
4645
- preserveLength: boolean;
4646
- pattern?: string | undefined;
4647
- roles?: string[] | undefined;
4648
- exemptRoles?: string[] | undefined;
4649
- } | undefined;
4650
- readonly auditTrail?: boolean | undefined;
4651
- readonly cached?: {
4652
- enabled: boolean;
4653
- ttl: number;
4654
- invalidateOn: string[];
4655
- } | undefined;
4656
- readonly dataQuality?: {
4657
- uniqueness: boolean;
4658
- completeness: number;
4659
- accuracy?: {
4660
- source: string;
4661
- threshold: number;
4662
- } | undefined;
4663
- } | undefined;
3788
+ readonly trackHistory?: boolean | undefined;
4664
3789
  readonly visibleWhen?: {
4665
3790
  dialect: "cel" | "js" | "cron" | "template";
4666
3791
  source?: string | undefined;
@@ -4699,7 +3824,6 @@ declare const SysSecret: Omit<{
4699
3824
  } | undefined;
4700
3825
  readonly sortable?: boolean | undefined;
4701
3826
  readonly inlineHelpText?: string | undefined;
4702
- readonly trackFeedHistory?: boolean | undefined;
4703
3827
  readonly caseSensitive?: boolean | undefined;
4704
3828
  readonly autonumberFormat?: string | undefined;
4705
3829
  readonly index?: boolean | undefined;
@@ -4721,7 +3845,6 @@ declare const SysSecret: Omit<{
4721
3845
  readonly required?: boolean | undefined;
4722
3846
  readonly multiple?: boolean | undefined;
4723
3847
  readonly dependencies?: string[] | undefined;
4724
- readonly theme?: string | undefined;
4725
3848
  readonly externalId?: boolean | undefined;
4726
3849
  readonly defaultValue?: unknown;
4727
3850
  readonly group?: string | undefined;
@@ -4729,23 +3852,7 @@ declare const SysSecret: Omit<{
4729
3852
  readonly system?: boolean | undefined;
4730
3853
  readonly min?: number | undefined;
4731
3854
  readonly max?: number | undefined;
4732
- readonly encryptionConfig?: {
4733
- enabled: boolean;
4734
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
4735
- keyManagement: {
4736
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
4737
- keyId?: string | undefined;
4738
- rotationPolicy?: {
4739
- enabled: boolean;
4740
- frequencyDays: number;
4741
- retainOldVersions: number;
4742
- autoRotate: boolean;
4743
- } | undefined;
4744
- };
4745
- scope: "record" | "field" | "table" | "database";
4746
- deterministicEncryption: boolean;
4747
- searchableEncryption: boolean;
4748
- } | undefined;
3855
+ readonly dimensions?: number | undefined;
4749
3856
  readonly columnName?: string | undefined;
4750
3857
  readonly searchable?: boolean | undefined;
4751
3858
  readonly unique?: boolean | undefined;
@@ -4754,7 +3861,6 @@ declare const SysSecret: Omit<{
4754
3861
  readonly scale?: number | undefined;
4755
3862
  readonly reference?: string | undefined;
4756
3863
  readonly referenceFilters?: string[] | undefined;
4757
- readonly writeRequiresMasterRead?: boolean | undefined;
4758
3864
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
4759
3865
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
4760
3866
  readonly inlineTitle?: string | undefined;
@@ -4779,22 +3885,8 @@ declare const SysSecret: Omit<{
4779
3885
  relationshipField?: string | undefined;
4780
3886
  } | undefined;
4781
3887
  readonly language?: string | undefined;
4782
- readonly lineNumbers?: boolean | undefined;
4783
3888
  readonly maxRating?: number | undefined;
4784
- readonly allowHalf?: boolean | undefined;
4785
- readonly displayMap?: boolean | undefined;
4786
- readonly allowGeocoding?: boolean | undefined;
4787
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
4788
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
4789
- readonly allowAlpha?: boolean | undefined;
4790
- readonly presetColors?: string[] | undefined;
4791
3889
  readonly step?: number | undefined;
4792
- readonly showValue?: boolean | undefined;
4793
- readonly marks?: Record<string, string> | undefined;
4794
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
4795
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
4796
- readonly displayValue?: boolean | undefined;
4797
- readonly allowScanning?: boolean | undefined;
4798
3890
  readonly currencyConfig?: {
4799
3891
  precision: number;
4800
3892
  currencyMode: "fixed" | "dynamic";
@@ -4848,29 +3940,7 @@ declare const SysSecret: Omit<{
4848
3940
  } | undefined;
4849
3941
  maxVersions?: number | undefined;
4850
3942
  } | undefined;
4851
- readonly maskingRule?: {
4852
- field: string;
4853
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
4854
- preserveFormat: boolean;
4855
- preserveLength: boolean;
4856
- pattern?: string | undefined;
4857
- roles?: string[] | undefined;
4858
- exemptRoles?: string[] | undefined;
4859
- } | undefined;
4860
- readonly auditTrail?: boolean | undefined;
4861
- readonly cached?: {
4862
- enabled: boolean;
4863
- ttl: number;
4864
- invalidateOn: string[];
4865
- } | undefined;
4866
- readonly dataQuality?: {
4867
- uniqueness: boolean;
4868
- completeness: number;
4869
- accuracy?: {
4870
- source: string;
4871
- threshold: number;
4872
- } | undefined;
4873
- } | undefined;
3943
+ readonly trackHistory?: boolean | undefined;
4874
3944
  readonly visibleWhen?: {
4875
3945
  dialect: "cel" | "js" | "cron" | "template";
4876
3946
  source?: string | undefined;
@@ -4909,7 +3979,6 @@ declare const SysSecret: Omit<{
4909
3979
  } | undefined;
4910
3980
  readonly sortable?: boolean | undefined;
4911
3981
  readonly inlineHelpText?: string | undefined;
4912
- readonly trackFeedHistory?: boolean | undefined;
4913
3982
  readonly caseSensitive?: boolean | undefined;
4914
3983
  readonly autonumberFormat?: string | undefined;
4915
3984
  readonly index?: boolean | undefined;
@@ -4931,7 +4000,6 @@ declare const SysSecret: Omit<{
4931
4000
  readonly required?: boolean | undefined;
4932
4001
  readonly multiple?: boolean | undefined;
4933
4002
  readonly dependencies?: string[] | undefined;
4934
- readonly theme?: string | undefined;
4935
4003
  readonly externalId?: boolean | undefined;
4936
4004
  readonly defaultValue?: unknown;
4937
4005
  readonly group?: string | undefined;
@@ -4939,23 +4007,7 @@ declare const SysSecret: Omit<{
4939
4007
  readonly system?: boolean | undefined;
4940
4008
  readonly min?: number | undefined;
4941
4009
  readonly max?: number | undefined;
4942
- readonly encryptionConfig?: {
4943
- enabled: boolean;
4944
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
4945
- keyManagement: {
4946
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
4947
- keyId?: string | undefined;
4948
- rotationPolicy?: {
4949
- enabled: boolean;
4950
- frequencyDays: number;
4951
- retainOldVersions: number;
4952
- autoRotate: boolean;
4953
- } | undefined;
4954
- };
4955
- scope: "record" | "field" | "table" | "database";
4956
- deterministicEncryption: boolean;
4957
- searchableEncryption: boolean;
4958
- } | undefined;
4010
+ readonly dimensions?: number | undefined;
4959
4011
  readonly columnName?: string | undefined;
4960
4012
  readonly searchable?: boolean | undefined;
4961
4013
  readonly unique?: boolean | undefined;
@@ -4964,7 +4016,6 @@ declare const SysSecret: Omit<{
4964
4016
  readonly scale?: number | undefined;
4965
4017
  readonly reference?: string | undefined;
4966
4018
  readonly referenceFilters?: string[] | undefined;
4967
- readonly writeRequiresMasterRead?: boolean | undefined;
4968
4019
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
4969
4020
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
4970
4021
  readonly inlineTitle?: string | undefined;
@@ -4989,22 +4040,8 @@ declare const SysSecret: Omit<{
4989
4040
  relationshipField?: string | undefined;
4990
4041
  } | undefined;
4991
4042
  readonly language?: string | undefined;
4992
- readonly lineNumbers?: boolean | undefined;
4993
4043
  readonly maxRating?: number | undefined;
4994
- readonly allowHalf?: boolean | undefined;
4995
- readonly displayMap?: boolean | undefined;
4996
- readonly allowGeocoding?: boolean | undefined;
4997
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
4998
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
4999
- readonly allowAlpha?: boolean | undefined;
5000
- readonly presetColors?: string[] | undefined;
5001
4044
  readonly step?: number | undefined;
5002
- readonly showValue?: boolean | undefined;
5003
- readonly marks?: Record<string, string> | undefined;
5004
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
5005
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
5006
- readonly displayValue?: boolean | undefined;
5007
- readonly allowScanning?: boolean | undefined;
5008
4045
  readonly currencyConfig?: {
5009
4046
  precision: number;
5010
4047
  currencyMode: "fixed" | "dynamic";
@@ -5058,29 +4095,7 @@ declare const SysSecret: Omit<{
5058
4095
  } | undefined;
5059
4096
  maxVersions?: number | undefined;
5060
4097
  } | undefined;
5061
- readonly maskingRule?: {
5062
- field: string;
5063
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
5064
- preserveFormat: boolean;
5065
- preserveLength: boolean;
5066
- pattern?: string | undefined;
5067
- roles?: string[] | undefined;
5068
- exemptRoles?: string[] | undefined;
5069
- } | undefined;
5070
- readonly auditTrail?: boolean | undefined;
5071
- readonly cached?: {
5072
- enabled: boolean;
5073
- ttl: number;
5074
- invalidateOn: string[];
5075
- } | undefined;
5076
- readonly dataQuality?: {
5077
- uniqueness: boolean;
5078
- completeness: number;
5079
- accuracy?: {
5080
- source: string;
5081
- threshold: number;
5082
- } | undefined;
5083
- } | undefined;
4098
+ readonly trackHistory?: boolean | undefined;
5084
4099
  readonly visibleWhen?: {
5085
4100
  dialect: "cel" | "js" | "cron" | "template";
5086
4101
  source?: string | undefined;
@@ -5119,7 +4134,6 @@ declare const SysSecret: Omit<{
5119
4134
  } | undefined;
5120
4135
  readonly sortable?: boolean | undefined;
5121
4136
  readonly inlineHelpText?: string | undefined;
5122
- readonly trackFeedHistory?: boolean | undefined;
5123
4137
  readonly caseSensitive?: boolean | undefined;
5124
4138
  readonly autonumberFormat?: string | undefined;
5125
4139
  readonly index?: boolean | undefined;
@@ -5147,7 +4161,6 @@ declare const SysSecret: Omit<{
5147
4161
  readonly required?: boolean | undefined;
5148
4162
  readonly multiple?: boolean | undefined;
5149
4163
  readonly dependencies?: string[] | undefined;
5150
- readonly theme?: string | undefined;
5151
4164
  readonly externalId?: boolean | undefined;
5152
4165
  readonly defaultValue?: unknown;
5153
4166
  readonly group?: string | undefined;
@@ -5155,23 +4168,7 @@ declare const SysSecret: Omit<{
5155
4168
  readonly system?: boolean | undefined;
5156
4169
  readonly min?: number | undefined;
5157
4170
  readonly max?: number | undefined;
5158
- readonly encryptionConfig?: {
5159
- enabled: boolean;
5160
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
5161
- keyManagement: {
5162
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
5163
- keyId?: string | undefined;
5164
- rotationPolicy?: {
5165
- enabled: boolean;
5166
- frequencyDays: number;
5167
- retainOldVersions: number;
5168
- autoRotate: boolean;
5169
- } | undefined;
5170
- };
5171
- scope: "record" | "field" | "table" | "database";
5172
- deterministicEncryption: boolean;
5173
- searchableEncryption: boolean;
5174
- } | undefined;
4171
+ readonly dimensions?: number | undefined;
5175
4172
  readonly columnName?: string | undefined;
5176
4173
  readonly searchable?: boolean | undefined;
5177
4174
  readonly unique?: boolean | undefined;
@@ -5180,7 +4177,6 @@ declare const SysSecret: Omit<{
5180
4177
  readonly scale?: number | undefined;
5181
4178
  readonly reference?: string | undefined;
5182
4179
  readonly referenceFilters?: string[] | undefined;
5183
- readonly writeRequiresMasterRead?: boolean | undefined;
5184
4180
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
5185
4181
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
5186
4182
  readonly inlineTitle?: string | undefined;
@@ -5205,22 +4201,8 @@ declare const SysSecret: Omit<{
5205
4201
  relationshipField?: string | undefined;
5206
4202
  } | undefined;
5207
4203
  readonly language?: string | undefined;
5208
- readonly lineNumbers?: boolean | undefined;
5209
4204
  readonly maxRating?: number | undefined;
5210
- readonly allowHalf?: boolean | undefined;
5211
- readonly displayMap?: boolean | undefined;
5212
- readonly allowGeocoding?: boolean | undefined;
5213
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
5214
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
5215
- readonly allowAlpha?: boolean | undefined;
5216
- readonly presetColors?: string[] | undefined;
5217
4205
  readonly step?: number | undefined;
5218
- readonly showValue?: boolean | undefined;
5219
- readonly marks?: Record<string, string> | undefined;
5220
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
5221
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
5222
- readonly displayValue?: boolean | undefined;
5223
- readonly allowScanning?: boolean | undefined;
5224
4206
  readonly currencyConfig?: {
5225
4207
  precision: number;
5226
4208
  currencyMode: "fixed" | "dynamic";
@@ -5274,29 +4256,7 @@ declare const SysSecret: Omit<{
5274
4256
  } | undefined;
5275
4257
  maxVersions?: number | undefined;
5276
4258
  } | undefined;
5277
- readonly maskingRule?: {
5278
- field: string;
5279
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
5280
- preserveFormat: boolean;
5281
- preserveLength: boolean;
5282
- pattern?: string | undefined;
5283
- roles?: string[] | undefined;
5284
- exemptRoles?: string[] | undefined;
5285
- } | undefined;
5286
- readonly auditTrail?: boolean | undefined;
5287
- readonly cached?: {
5288
- enabled: boolean;
5289
- ttl: number;
5290
- invalidateOn: string[];
5291
- } | undefined;
5292
- readonly dataQuality?: {
5293
- uniqueness: boolean;
5294
- completeness: number;
5295
- accuracy?: {
5296
- source: string;
5297
- threshold: number;
5298
- } | undefined;
5299
- } | undefined;
4259
+ readonly trackHistory?: boolean | undefined;
5300
4260
  readonly visibleWhen?: {
5301
4261
  dialect: "cel" | "js" | "cron" | "template";
5302
4262
  source?: string | undefined;
@@ -5335,7 +4295,6 @@ declare const SysSecret: Omit<{
5335
4295
  } | undefined;
5336
4296
  readonly sortable?: boolean | undefined;
5337
4297
  readonly inlineHelpText?: string | undefined;
5338
- readonly trackFeedHistory?: boolean | undefined;
5339
4298
  readonly caseSensitive?: boolean | undefined;
5340
4299
  readonly autonumberFormat?: string | undefined;
5341
4300
  readonly index?: boolean | undefined;
@@ -5357,7 +4316,6 @@ declare const SysSecret: Omit<{
5357
4316
  readonly required?: boolean | undefined;
5358
4317
  readonly multiple?: boolean | undefined;
5359
4318
  readonly dependencies?: string[] | undefined;
5360
- readonly theme?: string | undefined;
5361
4319
  readonly externalId?: boolean | undefined;
5362
4320
  readonly defaultValue?: unknown;
5363
4321
  readonly group?: string | undefined;
@@ -5365,23 +4323,7 @@ declare const SysSecret: Omit<{
5365
4323
  readonly system?: boolean | undefined;
5366
4324
  readonly min?: number | undefined;
5367
4325
  readonly max?: number | undefined;
5368
- readonly encryptionConfig?: {
5369
- enabled: boolean;
5370
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
5371
- keyManagement: {
5372
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
5373
- keyId?: string | undefined;
5374
- rotationPolicy?: {
5375
- enabled: boolean;
5376
- frequencyDays: number;
5377
- retainOldVersions: number;
5378
- autoRotate: boolean;
5379
- } | undefined;
5380
- };
5381
- scope: "record" | "field" | "table" | "database";
5382
- deterministicEncryption: boolean;
5383
- searchableEncryption: boolean;
5384
- } | undefined;
4326
+ readonly dimensions?: number | undefined;
5385
4327
  readonly columnName?: string | undefined;
5386
4328
  readonly searchable?: boolean | undefined;
5387
4329
  readonly unique?: boolean | undefined;
@@ -5390,7 +4332,6 @@ declare const SysSecret: Omit<{
5390
4332
  readonly scale?: number | undefined;
5391
4333
  readonly reference?: string | undefined;
5392
4334
  readonly referenceFilters?: string[] | undefined;
5393
- readonly writeRequiresMasterRead?: boolean | undefined;
5394
4335
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
5395
4336
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
5396
4337
  readonly inlineTitle?: string | undefined;
@@ -5415,22 +4356,8 @@ declare const SysSecret: Omit<{
5415
4356
  relationshipField?: string | undefined;
5416
4357
  } | undefined;
5417
4358
  readonly language?: string | undefined;
5418
- readonly lineNumbers?: boolean | undefined;
5419
4359
  readonly maxRating?: number | undefined;
5420
- readonly allowHalf?: boolean | undefined;
5421
- readonly displayMap?: boolean | undefined;
5422
- readonly allowGeocoding?: boolean | undefined;
5423
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
5424
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
5425
- readonly allowAlpha?: boolean | undefined;
5426
- readonly presetColors?: string[] | undefined;
5427
4360
  readonly step?: number | undefined;
5428
- readonly showValue?: boolean | undefined;
5429
- readonly marks?: Record<string, string> | undefined;
5430
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
5431
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
5432
- readonly displayValue?: boolean | undefined;
5433
- readonly allowScanning?: boolean | undefined;
5434
4361
  readonly currencyConfig?: {
5435
4362
  precision: number;
5436
4363
  currencyMode: "fixed" | "dynamic";
@@ -5484,29 +4411,7 @@ declare const SysSecret: Omit<{
5484
4411
  } | undefined;
5485
4412
  maxVersions?: number | undefined;
5486
4413
  } | undefined;
5487
- readonly maskingRule?: {
5488
- field: string;
5489
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
5490
- preserveFormat: boolean;
5491
- preserveLength: boolean;
5492
- pattern?: string | undefined;
5493
- roles?: string[] | undefined;
5494
- exemptRoles?: string[] | undefined;
5495
- } | undefined;
5496
- readonly auditTrail?: boolean | undefined;
5497
- readonly cached?: {
5498
- enabled: boolean;
5499
- ttl: number;
5500
- invalidateOn: string[];
5501
- } | undefined;
5502
- readonly dataQuality?: {
5503
- uniqueness: boolean;
5504
- completeness: number;
5505
- accuracy?: {
5506
- source: string;
5507
- threshold: number;
5508
- } | undefined;
5509
- } | undefined;
4414
+ readonly trackHistory?: boolean | undefined;
5510
4415
  readonly visibleWhen?: {
5511
4416
  dialect: "cel" | "js" | "cron" | "template";
5512
4417
  source?: string | undefined;
@@ -5545,7 +4450,6 @@ declare const SysSecret: Omit<{
5545
4450
  } | undefined;
5546
4451
  readonly sortable?: boolean | undefined;
5547
4452
  readonly inlineHelpText?: string | undefined;
5548
- readonly trackFeedHistory?: boolean | undefined;
5549
4453
  readonly caseSensitive?: boolean | undefined;
5550
4454
  readonly autonumberFormat?: string | undefined;
5551
4455
  readonly index?: boolean | undefined;
@@ -5568,7 +4472,6 @@ declare const SysSecret: Omit<{
5568
4472
  readonly required?: boolean | undefined;
5569
4473
  readonly multiple?: boolean | undefined;
5570
4474
  readonly dependencies?: string[] | undefined;
5571
- readonly theme?: string | undefined;
5572
4475
  readonly externalId?: boolean | undefined;
5573
4476
  readonly defaultValue?: unknown;
5574
4477
  readonly group?: string | undefined;
@@ -5576,23 +4479,7 @@ declare const SysSecret: Omit<{
5576
4479
  readonly system?: boolean | undefined;
5577
4480
  readonly min?: number | undefined;
5578
4481
  readonly max?: number | undefined;
5579
- readonly encryptionConfig?: {
5580
- enabled: boolean;
5581
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
5582
- keyManagement: {
5583
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
5584
- keyId?: string | undefined;
5585
- rotationPolicy?: {
5586
- enabled: boolean;
5587
- frequencyDays: number;
5588
- retainOldVersions: number;
5589
- autoRotate: boolean;
5590
- } | undefined;
5591
- };
5592
- scope: "record" | "field" | "table" | "database";
5593
- deterministicEncryption: boolean;
5594
- searchableEncryption: boolean;
5595
- } | undefined;
4482
+ readonly dimensions?: number | undefined;
5596
4483
  readonly columnName?: string | undefined;
5597
4484
  readonly searchable?: boolean | undefined;
5598
4485
  readonly unique?: boolean | undefined;
@@ -5601,7 +4488,6 @@ declare const SysSecret: Omit<{
5601
4488
  readonly scale?: number | undefined;
5602
4489
  readonly reference?: string | undefined;
5603
4490
  readonly referenceFilters?: string[] | undefined;
5604
- readonly writeRequiresMasterRead?: boolean | undefined;
5605
4491
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
5606
4492
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
5607
4493
  readonly inlineTitle?: string | undefined;
@@ -5626,22 +4512,8 @@ declare const SysSecret: Omit<{
5626
4512
  relationshipField?: string | undefined;
5627
4513
  } | undefined;
5628
4514
  readonly language?: string | undefined;
5629
- readonly lineNumbers?: boolean | undefined;
5630
4515
  readonly maxRating?: number | undefined;
5631
- readonly allowHalf?: boolean | undefined;
5632
- readonly displayMap?: boolean | undefined;
5633
- readonly allowGeocoding?: boolean | undefined;
5634
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
5635
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
5636
- readonly allowAlpha?: boolean | undefined;
5637
- readonly presetColors?: string[] | undefined;
5638
4516
  readonly step?: number | undefined;
5639
- readonly showValue?: boolean | undefined;
5640
- readonly marks?: Record<string, string> | undefined;
5641
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
5642
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
5643
- readonly displayValue?: boolean | undefined;
5644
- readonly allowScanning?: boolean | undefined;
5645
4517
  readonly currencyConfig?: {
5646
4518
  precision: number;
5647
4519
  currencyMode: "fixed" | "dynamic";
@@ -5695,29 +4567,7 @@ declare const SysSecret: Omit<{
5695
4567
  } | undefined;
5696
4568
  maxVersions?: number | undefined;
5697
4569
  } | undefined;
5698
- readonly maskingRule?: {
5699
- field: string;
5700
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
5701
- preserveFormat: boolean;
5702
- preserveLength: boolean;
5703
- pattern?: string | undefined;
5704
- roles?: string[] | undefined;
5705
- exemptRoles?: string[] | undefined;
5706
- } | undefined;
5707
- readonly auditTrail?: boolean | undefined;
5708
- readonly cached?: {
5709
- enabled: boolean;
5710
- ttl: number;
5711
- invalidateOn: string[];
5712
- } | undefined;
5713
- readonly dataQuality?: {
5714
- uniqueness: boolean;
5715
- completeness: number;
5716
- accuracy?: {
5717
- source: string;
5718
- threshold: number;
5719
- } | undefined;
5720
- } | undefined;
4570
+ readonly trackHistory?: boolean | undefined;
5721
4571
  readonly visibleWhen?: {
5722
4572
  dialect: "cel" | "js" | "cron" | "template";
5723
4573
  source?: string | undefined;
@@ -5756,7 +4606,6 @@ declare const SysSecret: Omit<{
5756
4606
  } | undefined;
5757
4607
  readonly sortable?: boolean | undefined;
5758
4608
  readonly inlineHelpText?: string | undefined;
5759
- readonly trackFeedHistory?: boolean | undefined;
5760
4609
  readonly caseSensitive?: boolean | undefined;
5761
4610
  readonly autonumberFormat?: string | undefined;
5762
4611
  readonly index?: boolean | undefined;
@@ -5779,7 +4628,6 @@ declare const SysSecret: Omit<{
5779
4628
  readonly required?: boolean | undefined;
5780
4629
  readonly multiple?: boolean | undefined;
5781
4630
  readonly dependencies?: string[] | undefined;
5782
- readonly theme?: string | undefined;
5783
4631
  readonly externalId?: boolean | undefined;
5784
4632
  readonly defaultValue?: unknown;
5785
4633
  readonly group?: string | undefined;
@@ -5787,23 +4635,7 @@ declare const SysSecret: Omit<{
5787
4635
  readonly system?: boolean | undefined;
5788
4636
  readonly min?: number | undefined;
5789
4637
  readonly max?: number | undefined;
5790
- readonly encryptionConfig?: {
5791
- enabled: boolean;
5792
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
5793
- keyManagement: {
5794
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
5795
- keyId?: string | undefined;
5796
- rotationPolicy?: {
5797
- enabled: boolean;
5798
- frequencyDays: number;
5799
- retainOldVersions: number;
5800
- autoRotate: boolean;
5801
- } | undefined;
5802
- };
5803
- scope: "record" | "field" | "table" | "database";
5804
- deterministicEncryption: boolean;
5805
- searchableEncryption: boolean;
5806
- } | undefined;
4638
+ readonly dimensions?: number | undefined;
5807
4639
  readonly columnName?: string | undefined;
5808
4640
  readonly searchable?: boolean | undefined;
5809
4641
  readonly unique?: boolean | undefined;
@@ -5812,7 +4644,6 @@ declare const SysSecret: Omit<{
5812
4644
  readonly scale?: number | undefined;
5813
4645
  readonly reference?: string | undefined;
5814
4646
  readonly referenceFilters?: string[] | undefined;
5815
- readonly writeRequiresMasterRead?: boolean | undefined;
5816
4647
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
5817
4648
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
5818
4649
  readonly inlineTitle?: string | undefined;
@@ -5837,22 +4668,8 @@ declare const SysSecret: Omit<{
5837
4668
  relationshipField?: string | undefined;
5838
4669
  } | undefined;
5839
4670
  readonly language?: string | undefined;
5840
- readonly lineNumbers?: boolean | undefined;
5841
4671
  readonly maxRating?: number | undefined;
5842
- readonly allowHalf?: boolean | undefined;
5843
- readonly displayMap?: boolean | undefined;
5844
- readonly allowGeocoding?: boolean | undefined;
5845
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
5846
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
5847
- readonly allowAlpha?: boolean | undefined;
5848
- readonly presetColors?: string[] | undefined;
5849
4672
  readonly step?: number | undefined;
5850
- readonly showValue?: boolean | undefined;
5851
- readonly marks?: Record<string, string> | undefined;
5852
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
5853
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
5854
- readonly displayValue?: boolean | undefined;
5855
- readonly allowScanning?: boolean | undefined;
5856
4673
  readonly currencyConfig?: {
5857
4674
  precision: number;
5858
4675
  currencyMode: "fixed" | "dynamic";
@@ -5906,29 +4723,7 @@ declare const SysSecret: Omit<{
5906
4723
  } | undefined;
5907
4724
  maxVersions?: number | undefined;
5908
4725
  } | undefined;
5909
- readonly maskingRule?: {
5910
- field: string;
5911
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
5912
- preserveFormat: boolean;
5913
- preserveLength: boolean;
5914
- pattern?: string | undefined;
5915
- roles?: string[] | undefined;
5916
- exemptRoles?: string[] | undefined;
5917
- } | undefined;
5918
- readonly auditTrail?: boolean | undefined;
5919
- readonly cached?: {
5920
- enabled: boolean;
5921
- ttl: number;
5922
- invalidateOn: string[];
5923
- } | undefined;
5924
- readonly dataQuality?: {
5925
- uniqueness: boolean;
5926
- completeness: number;
5927
- accuracy?: {
5928
- source: string;
5929
- threshold: number;
5930
- } | undefined;
5931
- } | undefined;
4726
+ readonly trackHistory?: boolean | undefined;
5932
4727
  readonly visibleWhen?: {
5933
4728
  dialect: "cel" | "js" | "cron" | "template";
5934
4729
  source?: string | undefined;
@@ -5967,7 +4762,6 @@ declare const SysSecret: Omit<{
5967
4762
  } | undefined;
5968
4763
  readonly sortable?: boolean | undefined;
5969
4764
  readonly inlineHelpText?: string | undefined;
5970
- readonly trackFeedHistory?: boolean | undefined;
5971
4765
  readonly caseSensitive?: boolean | undefined;
5972
4766
  readonly autonumberFormat?: string | undefined;
5973
4767
  readonly index?: boolean | undefined;
@@ -5990,7 +4784,6 @@ declare const SysSecret: Omit<{
5990
4784
  readonly required?: boolean | undefined;
5991
4785
  readonly multiple?: boolean | undefined;
5992
4786
  readonly dependencies?: string[] | undefined;
5993
- readonly theme?: string | undefined;
5994
4787
  readonly externalId?: boolean | undefined;
5995
4788
  readonly defaultValue?: unknown;
5996
4789
  readonly group?: string | undefined;
@@ -5998,23 +4791,7 @@ declare const SysSecret: Omit<{
5998
4791
  readonly system?: boolean | undefined;
5999
4792
  readonly min?: number | undefined;
6000
4793
  readonly max?: number | undefined;
6001
- readonly encryptionConfig?: {
6002
- enabled: boolean;
6003
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
6004
- keyManagement: {
6005
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
6006
- keyId?: string | undefined;
6007
- rotationPolicy?: {
6008
- enabled: boolean;
6009
- frequencyDays: number;
6010
- retainOldVersions: number;
6011
- autoRotate: boolean;
6012
- } | undefined;
6013
- };
6014
- scope: "record" | "field" | "table" | "database";
6015
- deterministicEncryption: boolean;
6016
- searchableEncryption: boolean;
6017
- } | undefined;
4794
+ readonly dimensions?: number | undefined;
6018
4795
  readonly columnName?: string | undefined;
6019
4796
  readonly searchable?: boolean | undefined;
6020
4797
  readonly unique?: boolean | undefined;
@@ -6023,7 +4800,6 @@ declare const SysSecret: Omit<{
6023
4800
  readonly scale?: number | undefined;
6024
4801
  readonly reference?: string | undefined;
6025
4802
  readonly referenceFilters?: string[] | undefined;
6026
- readonly writeRequiresMasterRead?: boolean | undefined;
6027
4803
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
6028
4804
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
6029
4805
  readonly inlineTitle?: string | undefined;
@@ -6048,22 +4824,8 @@ declare const SysSecret: Omit<{
6048
4824
  relationshipField?: string | undefined;
6049
4825
  } | undefined;
6050
4826
  readonly language?: string | undefined;
6051
- readonly lineNumbers?: boolean | undefined;
6052
4827
  readonly maxRating?: number | undefined;
6053
- readonly allowHalf?: boolean | undefined;
6054
- readonly displayMap?: boolean | undefined;
6055
- readonly allowGeocoding?: boolean | undefined;
6056
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
6057
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
6058
- readonly allowAlpha?: boolean | undefined;
6059
- readonly presetColors?: string[] | undefined;
6060
4828
  readonly step?: number | undefined;
6061
- readonly showValue?: boolean | undefined;
6062
- readonly marks?: Record<string, string> | undefined;
6063
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
6064
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
6065
- readonly displayValue?: boolean | undefined;
6066
- readonly allowScanning?: boolean | undefined;
6067
4829
  readonly currencyConfig?: {
6068
4830
  precision: number;
6069
4831
  currencyMode: "fixed" | "dynamic";
@@ -6117,29 +4879,7 @@ declare const SysSecret: Omit<{
6117
4879
  } | undefined;
6118
4880
  maxVersions?: number | undefined;
6119
4881
  } | undefined;
6120
- readonly maskingRule?: {
6121
- field: string;
6122
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
6123
- preserveFormat: boolean;
6124
- preserveLength: boolean;
6125
- pattern?: string | undefined;
6126
- roles?: string[] | undefined;
6127
- exemptRoles?: string[] | undefined;
6128
- } | undefined;
6129
- readonly auditTrail?: boolean | undefined;
6130
- readonly cached?: {
6131
- enabled: boolean;
6132
- ttl: number;
6133
- invalidateOn: string[];
6134
- } | undefined;
6135
- readonly dataQuality?: {
6136
- uniqueness: boolean;
6137
- completeness: number;
6138
- accuracy?: {
6139
- source: string;
6140
- threshold: number;
6141
- } | undefined;
6142
- } | undefined;
4882
+ readonly trackHistory?: boolean | undefined;
6143
4883
  readonly visibleWhen?: {
6144
4884
  dialect: "cel" | "js" | "cron" | "template";
6145
4885
  source?: string | undefined;
@@ -6178,7 +4918,6 @@ declare const SysSecret: Omit<{
6178
4918
  } | undefined;
6179
4919
  readonly sortable?: boolean | undefined;
6180
4920
  readonly inlineHelpText?: string | undefined;
6181
- readonly trackFeedHistory?: boolean | undefined;
6182
4921
  readonly caseSensitive?: boolean | undefined;
6183
4922
  readonly autonumberFormat?: string | undefined;
6184
4923
  readonly index?: boolean | undefined;
@@ -6200,7 +4939,6 @@ declare const SysSecret: Omit<{
6200
4939
  readonly required?: boolean | undefined;
6201
4940
  readonly multiple?: boolean | undefined;
6202
4941
  readonly dependencies?: string[] | undefined;
6203
- readonly theme?: string | undefined;
6204
4942
  readonly externalId?: boolean | undefined;
6205
4943
  readonly defaultValue?: unknown;
6206
4944
  readonly group?: string | undefined;
@@ -6208,23 +4946,7 @@ declare const SysSecret: Omit<{
6208
4946
  readonly system?: boolean | undefined;
6209
4947
  readonly min?: number | undefined;
6210
4948
  readonly max?: number | undefined;
6211
- readonly encryptionConfig?: {
6212
- enabled: boolean;
6213
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
6214
- keyManagement: {
6215
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
6216
- keyId?: string | undefined;
6217
- rotationPolicy?: {
6218
- enabled: boolean;
6219
- frequencyDays: number;
6220
- retainOldVersions: number;
6221
- autoRotate: boolean;
6222
- } | undefined;
6223
- };
6224
- scope: "record" | "field" | "table" | "database";
6225
- deterministicEncryption: boolean;
6226
- searchableEncryption: boolean;
6227
- } | undefined;
4949
+ readonly dimensions?: number | undefined;
6228
4950
  readonly columnName?: string | undefined;
6229
4951
  readonly searchable?: boolean | undefined;
6230
4952
  readonly unique?: boolean | undefined;
@@ -6233,7 +4955,6 @@ declare const SysSecret: Omit<{
6233
4955
  readonly scale?: number | undefined;
6234
4956
  readonly reference?: string | undefined;
6235
4957
  readonly referenceFilters?: string[] | undefined;
6236
- readonly writeRequiresMasterRead?: boolean | undefined;
6237
4958
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
6238
4959
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
6239
4960
  readonly inlineTitle?: string | undefined;
@@ -6258,22 +4979,8 @@ declare const SysSecret: Omit<{
6258
4979
  relationshipField?: string | undefined;
6259
4980
  } | undefined;
6260
4981
  readonly language?: string | undefined;
6261
- readonly lineNumbers?: boolean | undefined;
6262
4982
  readonly maxRating?: number | undefined;
6263
- readonly allowHalf?: boolean | undefined;
6264
- readonly displayMap?: boolean | undefined;
6265
- readonly allowGeocoding?: boolean | undefined;
6266
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
6267
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
6268
- readonly allowAlpha?: boolean | undefined;
6269
- readonly presetColors?: string[] | undefined;
6270
4983
  readonly step?: number | undefined;
6271
- readonly showValue?: boolean | undefined;
6272
- readonly marks?: Record<string, string> | undefined;
6273
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
6274
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
6275
- readonly displayValue?: boolean | undefined;
6276
- readonly allowScanning?: boolean | undefined;
6277
4984
  readonly currencyConfig?: {
6278
4985
  precision: number;
6279
4986
  currencyMode: "fixed" | "dynamic";
@@ -6327,29 +5034,7 @@ declare const SysSecret: Omit<{
6327
5034
  } | undefined;
6328
5035
  maxVersions?: number | undefined;
6329
5036
  } | undefined;
6330
- readonly maskingRule?: {
6331
- field: string;
6332
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
6333
- preserveFormat: boolean;
6334
- preserveLength: boolean;
6335
- pattern?: string | undefined;
6336
- roles?: string[] | undefined;
6337
- exemptRoles?: string[] | undefined;
6338
- } | undefined;
6339
- readonly auditTrail?: boolean | undefined;
6340
- readonly cached?: {
6341
- enabled: boolean;
6342
- ttl: number;
6343
- invalidateOn: string[];
6344
- } | undefined;
6345
- readonly dataQuality?: {
6346
- uniqueness: boolean;
6347
- completeness: number;
6348
- accuracy?: {
6349
- source: string;
6350
- threshold: number;
6351
- } | undefined;
6352
- } | undefined;
5037
+ readonly trackHistory?: boolean | undefined;
6353
5038
  readonly visibleWhen?: {
6354
5039
  dialect: "cel" | "js" | "cron" | "template";
6355
5040
  source?: string | undefined;
@@ -6388,7 +5073,6 @@ declare const SysSecret: Omit<{
6388
5073
  } | undefined;
6389
5074
  readonly sortable?: boolean | undefined;
6390
5075
  readonly inlineHelpText?: string | undefined;
6391
- readonly trackFeedHistory?: boolean | undefined;
6392
5076
  readonly caseSensitive?: boolean | undefined;
6393
5077
  readonly autonumberFormat?: string | undefined;
6394
5078
  readonly index?: boolean | undefined;
@@ -6445,7 +5129,6 @@ declare const SysSettingAudit: Omit<{
6445
5129
  multiple: boolean;
6446
5130
  unique: boolean;
6447
5131
  deleteBehavior: "set_null" | "cascade" | "restrict";
6448
- auditTrail: boolean;
6449
5132
  hidden: boolean;
6450
5133
  readonly: boolean;
6451
5134
  sortable: boolean;
@@ -6471,7 +5154,6 @@ declare const SysSettingAudit: Omit<{
6471
5154
  }[] | undefined;
6472
5155
  reference?: string | undefined;
6473
5156
  referenceFilters?: string[] | undefined;
6474
- writeRequiresMasterRead?: boolean | undefined;
6475
5157
  inlineEdit?: boolean | "grid" | "form" | undefined;
6476
5158
  inlineTitle?: string | undefined;
6477
5159
  inlineColumns?: any[] | undefined;
@@ -6503,28 +5185,14 @@ declare const SysSettingAudit: Omit<{
6503
5185
  relationshipField?: string | undefined;
6504
5186
  } | undefined;
6505
5187
  language?: string | undefined;
6506
- theme?: string | undefined;
6507
- lineNumbers?: boolean | undefined;
6508
5188
  maxRating?: number | undefined;
6509
- allowHalf?: boolean | undefined;
6510
- displayMap?: boolean | undefined;
6511
- allowGeocoding?: boolean | undefined;
6512
- addressFormat?: "us" | "uk" | "international" | undefined;
6513
- colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
6514
- allowAlpha?: boolean | undefined;
6515
- presetColors?: string[] | undefined;
6516
5189
  step?: number | undefined;
6517
- showValue?: boolean | undefined;
6518
- marks?: Record<string, string> | undefined;
6519
- barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
6520
- qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
6521
- displayValue?: boolean | undefined;
6522
- allowScanning?: boolean | undefined;
6523
5190
  currencyConfig?: {
6524
5191
  precision: number;
6525
5192
  currencyMode: "fixed" | "dynamic";
6526
5193
  defaultCurrency: string;
6527
5194
  } | undefined;
5195
+ dimensions?: number | undefined;
6528
5196
  vectorConfig?: {
6529
5197
  dimensions: number;
6530
5198
  distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
@@ -6573,46 +5241,8 @@ declare const SysSettingAudit: Omit<{
6573
5241
  } | undefined;
6574
5242
  maxVersions?: number | undefined;
6575
5243
  } | undefined;
6576
- encryptionConfig?: {
6577
- enabled: boolean;
6578
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
6579
- keyManagement: {
6580
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
6581
- keyId?: string | undefined;
6582
- rotationPolicy?: {
6583
- enabled: boolean;
6584
- frequencyDays: number;
6585
- retainOldVersions: number;
6586
- autoRotate: boolean;
6587
- } | undefined;
6588
- };
6589
- scope: "record" | "field" | "table" | "database";
6590
- deterministicEncryption: boolean;
6591
- searchableEncryption: boolean;
6592
- } | undefined;
6593
- maskingRule?: {
6594
- field: string;
6595
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
6596
- preserveFormat: boolean;
6597
- preserveLength: boolean;
6598
- pattern?: string | undefined;
6599
- roles?: string[] | undefined;
6600
- exemptRoles?: string[] | undefined;
6601
- } | undefined;
5244
+ trackHistory?: boolean | undefined;
6602
5245
  dependencies?: string[] | undefined;
6603
- cached?: {
6604
- enabled: boolean;
6605
- ttl: number;
6606
- invalidateOn: string[];
6607
- } | undefined;
6608
- dataQuality?: {
6609
- uniqueness: boolean;
6610
- completeness: number;
6611
- accuracy?: {
6612
- source: string;
6613
- threshold: number;
6614
- } | undefined;
6615
- } | undefined;
6616
5246
  group?: string | undefined;
6617
5247
  visibleWhen?: {
6618
5248
  dialect: "cel" | "js" | "cron" | "template";
@@ -6684,7 +5314,6 @@ declare const SysSettingAudit: Omit<{
6684
5314
  } | undefined;
6685
5315
  system?: boolean | undefined;
6686
5316
  inlineHelpText?: string | undefined;
6687
- trackFeedHistory?: boolean | undefined;
6688
5317
  caseSensitive?: boolean | undefined;
6689
5318
  autonumberFormat?: string | undefined;
6690
5319
  }>;
@@ -6775,12 +5404,13 @@ declare const SysSettingAudit: Omit<{
6775
5404
  key: string;
6776
5405
  interval?: string | undefined;
6777
5406
  } | undefined;
6778
- cdc?: {
6779
- enabled: boolean;
6780
- events: ("delete" | "update" | "insert")[];
6781
- destination: string;
6782
- } | undefined;
6783
5407
  validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
5408
+ activityMilestones?: {
5409
+ field: string;
5410
+ value: string;
5411
+ summary: string;
5412
+ type?: string | undefined;
5413
+ }[] | undefined;
6784
5414
  displayNameField?: string | undefined;
6785
5415
  recordName?: {
6786
5416
  type: "text" | "autonumber";
@@ -7091,7 +5721,6 @@ declare const SysSettingAudit: Omit<{
7091
5721
  clone: boolean;
7092
5722
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
7093
5723
  } | undefined;
7094
- recordTypes?: string[] | undefined;
7095
5724
  sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
7096
5725
  publicSharing?: {
7097
5726
  enabled: boolean;
@@ -7148,6 +5777,8 @@ declare const SysSettingAudit: Omit<{
7148
5777
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
7149
5778
  confirmText?: string | undefined;
7150
5779
  successMessage?: string | undefined;
5780
+ errorMessage?: string | undefined;
5781
+ undoable?: boolean | undefined;
7151
5782
  resultDialog?: {
7152
5783
  title?: string | undefined;
7153
5784
  description?: string | undefined;
@@ -7251,7 +5882,6 @@ declare const SysSettingAudit: Omit<{
7251
5882
  readonly required?: boolean | undefined;
7252
5883
  readonly multiple?: boolean | undefined;
7253
5884
  readonly dependencies?: string[] | undefined;
7254
- readonly theme?: string | undefined;
7255
5885
  readonly externalId?: boolean | undefined;
7256
5886
  readonly defaultValue?: unknown;
7257
5887
  readonly group?: string | undefined;
@@ -7259,23 +5889,7 @@ declare const SysSettingAudit: Omit<{
7259
5889
  readonly system?: boolean | undefined;
7260
5890
  readonly min?: number | undefined;
7261
5891
  readonly max?: number | undefined;
7262
- readonly encryptionConfig?: {
7263
- enabled: boolean;
7264
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
7265
- keyManagement: {
7266
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
7267
- keyId?: string | undefined;
7268
- rotationPolicy?: {
7269
- enabled: boolean;
7270
- frequencyDays: number;
7271
- retainOldVersions: number;
7272
- autoRotate: boolean;
7273
- } | undefined;
7274
- };
7275
- scope: "record" | "field" | "table" | "database";
7276
- deterministicEncryption: boolean;
7277
- searchableEncryption: boolean;
7278
- } | undefined;
5892
+ readonly dimensions?: number | undefined;
7279
5893
  readonly columnName?: string | undefined;
7280
5894
  readonly searchable?: boolean | undefined;
7281
5895
  readonly unique?: boolean | undefined;
@@ -7284,7 +5898,6 @@ declare const SysSettingAudit: Omit<{
7284
5898
  readonly scale?: number | undefined;
7285
5899
  readonly reference?: string | undefined;
7286
5900
  readonly referenceFilters?: string[] | undefined;
7287
- readonly writeRequiresMasterRead?: boolean | undefined;
7288
5901
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
7289
5902
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
7290
5903
  readonly inlineTitle?: string | undefined;
@@ -7309,22 +5922,8 @@ declare const SysSettingAudit: Omit<{
7309
5922
  relationshipField?: string | undefined;
7310
5923
  } | undefined;
7311
5924
  readonly language?: string | undefined;
7312
- readonly lineNumbers?: boolean | undefined;
7313
5925
  readonly maxRating?: number | undefined;
7314
- readonly allowHalf?: boolean | undefined;
7315
- readonly displayMap?: boolean | undefined;
7316
- readonly allowGeocoding?: boolean | undefined;
7317
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
7318
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
7319
- readonly allowAlpha?: boolean | undefined;
7320
- readonly presetColors?: string[] | undefined;
7321
5926
  readonly step?: number | undefined;
7322
- readonly showValue?: boolean | undefined;
7323
- readonly marks?: Record<string, string> | undefined;
7324
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
7325
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
7326
- readonly displayValue?: boolean | undefined;
7327
- readonly allowScanning?: boolean | undefined;
7328
5927
  readonly currencyConfig?: {
7329
5928
  precision: number;
7330
5929
  currencyMode: "fixed" | "dynamic";
@@ -7378,29 +5977,7 @@ declare const SysSettingAudit: Omit<{
7378
5977
  } | undefined;
7379
5978
  maxVersions?: number | undefined;
7380
5979
  } | undefined;
7381
- readonly maskingRule?: {
7382
- field: string;
7383
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
7384
- preserveFormat: boolean;
7385
- preserveLength: boolean;
7386
- pattern?: string | undefined;
7387
- roles?: string[] | undefined;
7388
- exemptRoles?: string[] | undefined;
7389
- } | undefined;
7390
- readonly auditTrail?: boolean | undefined;
7391
- readonly cached?: {
7392
- enabled: boolean;
7393
- ttl: number;
7394
- invalidateOn: string[];
7395
- } | undefined;
7396
- readonly dataQuality?: {
7397
- uniqueness: boolean;
7398
- completeness: number;
7399
- accuracy?: {
7400
- source: string;
7401
- threshold: number;
7402
- } | undefined;
7403
- } | undefined;
5980
+ readonly trackHistory?: boolean | undefined;
7404
5981
  readonly visibleWhen?: {
7405
5982
  dialect: "cel" | "js" | "cron" | "template";
7406
5983
  source?: string | undefined;
@@ -7439,7 +6016,6 @@ declare const SysSettingAudit: Omit<{
7439
6016
  } | undefined;
7440
6017
  readonly sortable?: boolean | undefined;
7441
6018
  readonly inlineHelpText?: string | undefined;
7442
- readonly trackFeedHistory?: boolean | undefined;
7443
6019
  readonly caseSensitive?: boolean | undefined;
7444
6020
  readonly autonumberFormat?: string | undefined;
7445
6021
  readonly index?: boolean | undefined;
@@ -7461,7 +6037,6 @@ declare const SysSettingAudit: Omit<{
7461
6037
  readonly required?: boolean | undefined;
7462
6038
  readonly multiple?: boolean | undefined;
7463
6039
  readonly dependencies?: string[] | undefined;
7464
- readonly theme?: string | undefined;
7465
6040
  readonly externalId?: boolean | undefined;
7466
6041
  readonly defaultValue?: unknown;
7467
6042
  readonly group?: string | undefined;
@@ -7469,23 +6044,7 @@ declare const SysSettingAudit: Omit<{
7469
6044
  readonly system?: boolean | undefined;
7470
6045
  readonly min?: number | undefined;
7471
6046
  readonly max?: number | undefined;
7472
- readonly encryptionConfig?: {
7473
- enabled: boolean;
7474
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
7475
- keyManagement: {
7476
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
7477
- keyId?: string | undefined;
7478
- rotationPolicy?: {
7479
- enabled: boolean;
7480
- frequencyDays: number;
7481
- retainOldVersions: number;
7482
- autoRotate: boolean;
7483
- } | undefined;
7484
- };
7485
- scope: "record" | "field" | "table" | "database";
7486
- deterministicEncryption: boolean;
7487
- searchableEncryption: boolean;
7488
- } | undefined;
6047
+ readonly dimensions?: number | undefined;
7489
6048
  readonly columnName?: string | undefined;
7490
6049
  readonly searchable?: boolean | undefined;
7491
6050
  readonly unique?: boolean | undefined;
@@ -7494,7 +6053,6 @@ declare const SysSettingAudit: Omit<{
7494
6053
  readonly scale?: number | undefined;
7495
6054
  readonly reference?: string | undefined;
7496
6055
  readonly referenceFilters?: string[] | undefined;
7497
- readonly writeRequiresMasterRead?: boolean | undefined;
7498
6056
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
7499
6057
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
7500
6058
  readonly inlineTitle?: string | undefined;
@@ -7519,22 +6077,8 @@ declare const SysSettingAudit: Omit<{
7519
6077
  relationshipField?: string | undefined;
7520
6078
  } | undefined;
7521
6079
  readonly language?: string | undefined;
7522
- readonly lineNumbers?: boolean | undefined;
7523
6080
  readonly maxRating?: number | undefined;
7524
- readonly allowHalf?: boolean | undefined;
7525
- readonly displayMap?: boolean | undefined;
7526
- readonly allowGeocoding?: boolean | undefined;
7527
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
7528
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
7529
- readonly allowAlpha?: boolean | undefined;
7530
- readonly presetColors?: string[] | undefined;
7531
6081
  readonly step?: number | undefined;
7532
- readonly showValue?: boolean | undefined;
7533
- readonly marks?: Record<string, string> | undefined;
7534
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
7535
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
7536
- readonly displayValue?: boolean | undefined;
7537
- readonly allowScanning?: boolean | undefined;
7538
6082
  readonly currencyConfig?: {
7539
6083
  precision: number;
7540
6084
  currencyMode: "fixed" | "dynamic";
@@ -7588,29 +6132,7 @@ declare const SysSettingAudit: Omit<{
7588
6132
  } | undefined;
7589
6133
  maxVersions?: number | undefined;
7590
6134
  } | undefined;
7591
- readonly maskingRule?: {
7592
- field: string;
7593
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
7594
- preserveFormat: boolean;
7595
- preserveLength: boolean;
7596
- pattern?: string | undefined;
7597
- roles?: string[] | undefined;
7598
- exemptRoles?: string[] | undefined;
7599
- } | undefined;
7600
- readonly auditTrail?: boolean | undefined;
7601
- readonly cached?: {
7602
- enabled: boolean;
7603
- ttl: number;
7604
- invalidateOn: string[];
7605
- } | undefined;
7606
- readonly dataQuality?: {
7607
- uniqueness: boolean;
7608
- completeness: number;
7609
- accuracy?: {
7610
- source: string;
7611
- threshold: number;
7612
- } | undefined;
7613
- } | undefined;
6135
+ readonly trackHistory?: boolean | undefined;
7614
6136
  readonly visibleWhen?: {
7615
6137
  dialect: "cel" | "js" | "cron" | "template";
7616
6138
  source?: string | undefined;
@@ -7649,7 +6171,6 @@ declare const SysSettingAudit: Omit<{
7649
6171
  } | undefined;
7650
6172
  readonly sortable?: boolean | undefined;
7651
6173
  readonly inlineHelpText?: string | undefined;
7652
- readonly trackFeedHistory?: boolean | undefined;
7653
6174
  readonly caseSensitive?: boolean | undefined;
7654
6175
  readonly autonumberFormat?: string | undefined;
7655
6176
  readonly index?: boolean | undefined;
@@ -7671,7 +6192,6 @@ declare const SysSettingAudit: Omit<{
7671
6192
  readonly required?: boolean | undefined;
7672
6193
  readonly multiple?: boolean | undefined;
7673
6194
  readonly dependencies?: string[] | undefined;
7674
- readonly theme?: string | undefined;
7675
6195
  readonly externalId?: boolean | undefined;
7676
6196
  readonly defaultValue?: unknown;
7677
6197
  readonly group?: string | undefined;
@@ -7679,23 +6199,7 @@ declare const SysSettingAudit: Omit<{
7679
6199
  readonly system?: boolean | undefined;
7680
6200
  readonly min?: number | undefined;
7681
6201
  readonly max?: number | undefined;
7682
- readonly encryptionConfig?: {
7683
- enabled: boolean;
7684
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
7685
- keyManagement: {
7686
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
7687
- keyId?: string | undefined;
7688
- rotationPolicy?: {
7689
- enabled: boolean;
7690
- frequencyDays: number;
7691
- retainOldVersions: number;
7692
- autoRotate: boolean;
7693
- } | undefined;
7694
- };
7695
- scope: "record" | "field" | "table" | "database";
7696
- deterministicEncryption: boolean;
7697
- searchableEncryption: boolean;
7698
- } | undefined;
6202
+ readonly dimensions?: number | undefined;
7699
6203
  readonly columnName?: string | undefined;
7700
6204
  readonly searchable?: boolean | undefined;
7701
6205
  readonly unique?: boolean | undefined;
@@ -7704,7 +6208,6 @@ declare const SysSettingAudit: Omit<{
7704
6208
  readonly scale?: number | undefined;
7705
6209
  readonly reference?: string | undefined;
7706
6210
  readonly referenceFilters?: string[] | undefined;
7707
- readonly writeRequiresMasterRead?: boolean | undefined;
7708
6211
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
7709
6212
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
7710
6213
  readonly inlineTitle?: string | undefined;
@@ -7729,22 +6232,8 @@ declare const SysSettingAudit: Omit<{
7729
6232
  relationshipField?: string | undefined;
7730
6233
  } | undefined;
7731
6234
  readonly language?: string | undefined;
7732
- readonly lineNumbers?: boolean | undefined;
7733
6235
  readonly maxRating?: number | undefined;
7734
- readonly allowHalf?: boolean | undefined;
7735
- readonly displayMap?: boolean | undefined;
7736
- readonly allowGeocoding?: boolean | undefined;
7737
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
7738
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
7739
- readonly allowAlpha?: boolean | undefined;
7740
- readonly presetColors?: string[] | undefined;
7741
6236
  readonly step?: number | undefined;
7742
- readonly showValue?: boolean | undefined;
7743
- readonly marks?: Record<string, string> | undefined;
7744
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
7745
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
7746
- readonly displayValue?: boolean | undefined;
7747
- readonly allowScanning?: boolean | undefined;
7748
6237
  readonly currencyConfig?: {
7749
6238
  precision: number;
7750
6239
  currencyMode: "fixed" | "dynamic";
@@ -7798,29 +6287,7 @@ declare const SysSettingAudit: Omit<{
7798
6287
  } | undefined;
7799
6288
  maxVersions?: number | undefined;
7800
6289
  } | undefined;
7801
- readonly maskingRule?: {
7802
- field: string;
7803
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
7804
- preserveFormat: boolean;
7805
- preserveLength: boolean;
7806
- pattern?: string | undefined;
7807
- roles?: string[] | undefined;
7808
- exemptRoles?: string[] | undefined;
7809
- } | undefined;
7810
- readonly auditTrail?: boolean | undefined;
7811
- readonly cached?: {
7812
- enabled: boolean;
7813
- ttl: number;
7814
- invalidateOn: string[];
7815
- } | undefined;
7816
- readonly dataQuality?: {
7817
- uniqueness: boolean;
7818
- completeness: number;
7819
- accuracy?: {
7820
- source: string;
7821
- threshold: number;
7822
- } | undefined;
7823
- } | undefined;
6290
+ readonly trackHistory?: boolean | undefined;
7824
6291
  readonly visibleWhen?: {
7825
6292
  dialect: "cel" | "js" | "cron" | "template";
7826
6293
  source?: string | undefined;
@@ -7859,7 +6326,6 @@ declare const SysSettingAudit: Omit<{
7859
6326
  } | undefined;
7860
6327
  readonly sortable?: boolean | undefined;
7861
6328
  readonly inlineHelpText?: string | undefined;
7862
- readonly trackFeedHistory?: boolean | undefined;
7863
6329
  readonly caseSensitive?: boolean | undefined;
7864
6330
  readonly autonumberFormat?: string | undefined;
7865
6331
  readonly index?: boolean | undefined;
@@ -7881,7 +6347,6 @@ declare const SysSettingAudit: Omit<{
7881
6347
  readonly required?: boolean | undefined;
7882
6348
  readonly multiple?: boolean | undefined;
7883
6349
  readonly dependencies?: string[] | undefined;
7884
- readonly theme?: string | undefined;
7885
6350
  readonly externalId?: boolean | undefined;
7886
6351
  readonly defaultValue?: unknown;
7887
6352
  readonly group?: string | undefined;
@@ -7889,23 +6354,7 @@ declare const SysSettingAudit: Omit<{
7889
6354
  readonly system?: boolean | undefined;
7890
6355
  readonly min?: number | undefined;
7891
6356
  readonly max?: number | undefined;
7892
- readonly encryptionConfig?: {
7893
- enabled: boolean;
7894
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
7895
- keyManagement: {
7896
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
7897
- keyId?: string | undefined;
7898
- rotationPolicy?: {
7899
- enabled: boolean;
7900
- frequencyDays: number;
7901
- retainOldVersions: number;
7902
- autoRotate: boolean;
7903
- } | undefined;
7904
- };
7905
- scope: "record" | "field" | "table" | "database";
7906
- deterministicEncryption: boolean;
7907
- searchableEncryption: boolean;
7908
- } | undefined;
6357
+ readonly dimensions?: number | undefined;
7909
6358
  readonly columnName?: string | undefined;
7910
6359
  readonly searchable?: boolean | undefined;
7911
6360
  readonly unique?: boolean | undefined;
@@ -7914,7 +6363,6 @@ declare const SysSettingAudit: Omit<{
7914
6363
  readonly scale?: number | undefined;
7915
6364
  readonly reference?: string | undefined;
7916
6365
  readonly referenceFilters?: string[] | undefined;
7917
- readonly writeRequiresMasterRead?: boolean | undefined;
7918
6366
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
7919
6367
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
7920
6368
  readonly inlineTitle?: string | undefined;
@@ -7939,22 +6387,8 @@ declare const SysSettingAudit: Omit<{
7939
6387
  relationshipField?: string | undefined;
7940
6388
  } | undefined;
7941
6389
  readonly language?: string | undefined;
7942
- readonly lineNumbers?: boolean | undefined;
7943
6390
  readonly maxRating?: number | undefined;
7944
- readonly allowHalf?: boolean | undefined;
7945
- readonly displayMap?: boolean | undefined;
7946
- readonly allowGeocoding?: boolean | undefined;
7947
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
7948
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
7949
- readonly allowAlpha?: boolean | undefined;
7950
- readonly presetColors?: string[] | undefined;
7951
6391
  readonly step?: number | undefined;
7952
- readonly showValue?: boolean | undefined;
7953
- readonly marks?: Record<string, string> | undefined;
7954
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
7955
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
7956
- readonly displayValue?: boolean | undefined;
7957
- readonly allowScanning?: boolean | undefined;
7958
6392
  readonly currencyConfig?: {
7959
6393
  precision: number;
7960
6394
  currencyMode: "fixed" | "dynamic";
@@ -8008,29 +6442,7 @@ declare const SysSettingAudit: Omit<{
8008
6442
  } | undefined;
8009
6443
  maxVersions?: number | undefined;
8010
6444
  } | undefined;
8011
- readonly maskingRule?: {
8012
- field: string;
8013
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
8014
- preserveFormat: boolean;
8015
- preserveLength: boolean;
8016
- pattern?: string | undefined;
8017
- roles?: string[] | undefined;
8018
- exemptRoles?: string[] | undefined;
8019
- } | undefined;
8020
- readonly auditTrail?: boolean | undefined;
8021
- readonly cached?: {
8022
- enabled: boolean;
8023
- ttl: number;
8024
- invalidateOn: string[];
8025
- } | undefined;
8026
- readonly dataQuality?: {
8027
- uniqueness: boolean;
8028
- completeness: number;
8029
- accuracy?: {
8030
- source: string;
8031
- threshold: number;
8032
- } | undefined;
8033
- } | undefined;
6445
+ readonly trackHistory?: boolean | undefined;
8034
6446
  readonly visibleWhen?: {
8035
6447
  dialect: "cel" | "js" | "cron" | "template";
8036
6448
  source?: string | undefined;
@@ -8069,7 +6481,6 @@ declare const SysSettingAudit: Omit<{
8069
6481
  } | undefined;
8070
6482
  readonly sortable?: boolean | undefined;
8071
6483
  readonly inlineHelpText?: string | undefined;
8072
- readonly trackFeedHistory?: boolean | undefined;
8073
6484
  readonly caseSensitive?: boolean | undefined;
8074
6485
  readonly autonumberFormat?: string | undefined;
8075
6486
  readonly index?: boolean | undefined;
@@ -8091,7 +6502,6 @@ declare const SysSettingAudit: Omit<{
8091
6502
  readonly required?: boolean | undefined;
8092
6503
  readonly multiple?: boolean | undefined;
8093
6504
  readonly dependencies?: string[] | undefined;
8094
- readonly theme?: string | undefined;
8095
6505
  readonly externalId?: boolean | undefined;
8096
6506
  readonly defaultValue?: unknown;
8097
6507
  readonly group?: string | undefined;
@@ -8099,23 +6509,7 @@ declare const SysSettingAudit: Omit<{
8099
6509
  readonly system?: boolean | undefined;
8100
6510
  readonly min?: number | undefined;
8101
6511
  readonly max?: number | undefined;
8102
- readonly encryptionConfig?: {
8103
- enabled: boolean;
8104
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
8105
- keyManagement: {
8106
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
8107
- keyId?: string | undefined;
8108
- rotationPolicy?: {
8109
- enabled: boolean;
8110
- frequencyDays: number;
8111
- retainOldVersions: number;
8112
- autoRotate: boolean;
8113
- } | undefined;
8114
- };
8115
- scope: "record" | "field" | "table" | "database";
8116
- deterministicEncryption: boolean;
8117
- searchableEncryption: boolean;
8118
- } | undefined;
6512
+ readonly dimensions?: number | undefined;
8119
6513
  readonly columnName?: string | undefined;
8120
6514
  readonly searchable?: boolean | undefined;
8121
6515
  readonly unique?: boolean | undefined;
@@ -8124,7 +6518,6 @@ declare const SysSettingAudit: Omit<{
8124
6518
  readonly scale?: number | undefined;
8125
6519
  readonly reference?: string | undefined;
8126
6520
  readonly referenceFilters?: string[] | undefined;
8127
- readonly writeRequiresMasterRead?: boolean | undefined;
8128
6521
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
8129
6522
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
8130
6523
  readonly inlineTitle?: string | undefined;
@@ -8149,22 +6542,8 @@ declare const SysSettingAudit: Omit<{
8149
6542
  relationshipField?: string | undefined;
8150
6543
  } | undefined;
8151
6544
  readonly language?: string | undefined;
8152
- readonly lineNumbers?: boolean | undefined;
8153
6545
  readonly maxRating?: number | undefined;
8154
- readonly allowHalf?: boolean | undefined;
8155
- readonly displayMap?: boolean | undefined;
8156
- readonly allowGeocoding?: boolean | undefined;
8157
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
8158
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
8159
- readonly allowAlpha?: boolean | undefined;
8160
- readonly presetColors?: string[] | undefined;
8161
6546
  readonly step?: number | undefined;
8162
- readonly showValue?: boolean | undefined;
8163
- readonly marks?: Record<string, string> | undefined;
8164
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
8165
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
8166
- readonly displayValue?: boolean | undefined;
8167
- readonly allowScanning?: boolean | undefined;
8168
6547
  readonly currencyConfig?: {
8169
6548
  precision: number;
8170
6549
  currencyMode: "fixed" | "dynamic";
@@ -8218,29 +6597,7 @@ declare const SysSettingAudit: Omit<{
8218
6597
  } | undefined;
8219
6598
  maxVersions?: number | undefined;
8220
6599
  } | undefined;
8221
- readonly maskingRule?: {
8222
- field: string;
8223
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
8224
- preserveFormat: boolean;
8225
- preserveLength: boolean;
8226
- pattern?: string | undefined;
8227
- roles?: string[] | undefined;
8228
- exemptRoles?: string[] | undefined;
8229
- } | undefined;
8230
- readonly auditTrail?: boolean | undefined;
8231
- readonly cached?: {
8232
- enabled: boolean;
8233
- ttl: number;
8234
- invalidateOn: string[];
8235
- } | undefined;
8236
- readonly dataQuality?: {
8237
- uniqueness: boolean;
8238
- completeness: number;
8239
- accuracy?: {
8240
- source: string;
8241
- threshold: number;
8242
- } | undefined;
8243
- } | undefined;
6600
+ readonly trackHistory?: boolean | undefined;
8244
6601
  readonly visibleWhen?: {
8245
6602
  dialect: "cel" | "js" | "cron" | "template";
8246
6603
  source?: string | undefined;
@@ -8279,7 +6636,6 @@ declare const SysSettingAudit: Omit<{
8279
6636
  } | undefined;
8280
6637
  readonly sortable?: boolean | undefined;
8281
6638
  readonly inlineHelpText?: string | undefined;
8282
- readonly trackFeedHistory?: boolean | undefined;
8283
6639
  readonly caseSensitive?: boolean | undefined;
8284
6640
  readonly autonumberFormat?: string | undefined;
8285
6641
  readonly index?: boolean | undefined;
@@ -8301,7 +6657,6 @@ declare const SysSettingAudit: Omit<{
8301
6657
  readonly required?: boolean | undefined;
8302
6658
  readonly multiple?: boolean | undefined;
8303
6659
  readonly dependencies?: string[] | undefined;
8304
- readonly theme?: string | undefined;
8305
6660
  readonly externalId?: boolean | undefined;
8306
6661
  readonly defaultValue?: unknown;
8307
6662
  readonly group?: string | undefined;
@@ -8309,23 +6664,7 @@ declare const SysSettingAudit: Omit<{
8309
6664
  readonly system?: boolean | undefined;
8310
6665
  readonly min?: number | undefined;
8311
6666
  readonly max?: number | undefined;
8312
- readonly encryptionConfig?: {
8313
- enabled: boolean;
8314
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
8315
- keyManagement: {
8316
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
8317
- keyId?: string | undefined;
8318
- rotationPolicy?: {
8319
- enabled: boolean;
8320
- frequencyDays: number;
8321
- retainOldVersions: number;
8322
- autoRotate: boolean;
8323
- } | undefined;
8324
- };
8325
- scope: "record" | "field" | "table" | "database";
8326
- deterministicEncryption: boolean;
8327
- searchableEncryption: boolean;
8328
- } | undefined;
6667
+ readonly dimensions?: number | undefined;
8329
6668
  readonly columnName?: string | undefined;
8330
6669
  readonly searchable?: boolean | undefined;
8331
6670
  readonly unique?: boolean | undefined;
@@ -8334,7 +6673,6 @@ declare const SysSettingAudit: Omit<{
8334
6673
  readonly scale?: number | undefined;
8335
6674
  readonly reference?: string | undefined;
8336
6675
  readonly referenceFilters?: string[] | undefined;
8337
- readonly writeRequiresMasterRead?: boolean | undefined;
8338
6676
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
8339
6677
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
8340
6678
  readonly inlineTitle?: string | undefined;
@@ -8359,22 +6697,8 @@ declare const SysSettingAudit: Omit<{
8359
6697
  relationshipField?: string | undefined;
8360
6698
  } | undefined;
8361
6699
  readonly language?: string | undefined;
8362
- readonly lineNumbers?: boolean | undefined;
8363
6700
  readonly maxRating?: number | undefined;
8364
- readonly allowHalf?: boolean | undefined;
8365
- readonly displayMap?: boolean | undefined;
8366
- readonly allowGeocoding?: boolean | undefined;
8367
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
8368
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
8369
- readonly allowAlpha?: boolean | undefined;
8370
- readonly presetColors?: string[] | undefined;
8371
6701
  readonly step?: number | undefined;
8372
- readonly showValue?: boolean | undefined;
8373
- readonly marks?: Record<string, string> | undefined;
8374
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
8375
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
8376
- readonly displayValue?: boolean | undefined;
8377
- readonly allowScanning?: boolean | undefined;
8378
6702
  readonly currencyConfig?: {
8379
6703
  precision: number;
8380
6704
  currencyMode: "fixed" | "dynamic";
@@ -8428,29 +6752,7 @@ declare const SysSettingAudit: Omit<{
8428
6752
  } | undefined;
8429
6753
  maxVersions?: number | undefined;
8430
6754
  } | undefined;
8431
- readonly maskingRule?: {
8432
- field: string;
8433
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
8434
- preserveFormat: boolean;
8435
- preserveLength: boolean;
8436
- pattern?: string | undefined;
8437
- roles?: string[] | undefined;
8438
- exemptRoles?: string[] | undefined;
8439
- } | undefined;
8440
- readonly auditTrail?: boolean | undefined;
8441
- readonly cached?: {
8442
- enabled: boolean;
8443
- ttl: number;
8444
- invalidateOn: string[];
8445
- } | undefined;
8446
- readonly dataQuality?: {
8447
- uniqueness: boolean;
8448
- completeness: number;
8449
- accuracy?: {
8450
- source: string;
8451
- threshold: number;
8452
- } | undefined;
8453
- } | undefined;
6755
+ readonly trackHistory?: boolean | undefined;
8454
6756
  readonly visibleWhen?: {
8455
6757
  dialect: "cel" | "js" | "cron" | "template";
8456
6758
  source?: string | undefined;
@@ -8489,7 +6791,6 @@ declare const SysSettingAudit: Omit<{
8489
6791
  } | undefined;
8490
6792
  readonly sortable?: boolean | undefined;
8491
6793
  readonly inlineHelpText?: string | undefined;
8492
- readonly trackFeedHistory?: boolean | undefined;
8493
6794
  readonly caseSensitive?: boolean | undefined;
8494
6795
  readonly autonumberFormat?: string | undefined;
8495
6796
  readonly index?: boolean | undefined;
@@ -8511,7 +6812,6 @@ declare const SysSettingAudit: Omit<{
8511
6812
  readonly required?: boolean | undefined;
8512
6813
  readonly multiple?: boolean | undefined;
8513
6814
  readonly dependencies?: string[] | undefined;
8514
- readonly theme?: string | undefined;
8515
6815
  readonly externalId?: boolean | undefined;
8516
6816
  readonly defaultValue?: unknown;
8517
6817
  readonly group?: string | undefined;
@@ -8519,23 +6819,7 @@ declare const SysSettingAudit: Omit<{
8519
6819
  readonly system?: boolean | undefined;
8520
6820
  readonly min?: number | undefined;
8521
6821
  readonly max?: number | undefined;
8522
- readonly encryptionConfig?: {
8523
- enabled: boolean;
8524
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
8525
- keyManagement: {
8526
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
8527
- keyId?: string | undefined;
8528
- rotationPolicy?: {
8529
- enabled: boolean;
8530
- frequencyDays: number;
8531
- retainOldVersions: number;
8532
- autoRotate: boolean;
8533
- } | undefined;
8534
- };
8535
- scope: "record" | "field" | "table" | "database";
8536
- deterministicEncryption: boolean;
8537
- searchableEncryption: boolean;
8538
- } | undefined;
6822
+ readonly dimensions?: number | undefined;
8539
6823
  readonly columnName?: string | undefined;
8540
6824
  readonly searchable?: boolean | undefined;
8541
6825
  readonly unique?: boolean | undefined;
@@ -8544,7 +6828,6 @@ declare const SysSettingAudit: Omit<{
8544
6828
  readonly scale?: number | undefined;
8545
6829
  reference: string;
8546
6830
  readonly referenceFilters?: string[] | undefined;
8547
- readonly writeRequiresMasterRead?: boolean | undefined;
8548
6831
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
8549
6832
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
8550
6833
  readonly inlineTitle?: string | undefined;
@@ -8569,22 +6852,8 @@ declare const SysSettingAudit: Omit<{
8569
6852
  relationshipField?: string | undefined;
8570
6853
  } | undefined;
8571
6854
  readonly language?: string | undefined;
8572
- readonly lineNumbers?: boolean | undefined;
8573
6855
  readonly maxRating?: number | undefined;
8574
- readonly allowHalf?: boolean | undefined;
8575
- readonly displayMap?: boolean | undefined;
8576
- readonly allowGeocoding?: boolean | undefined;
8577
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
8578
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
8579
- readonly allowAlpha?: boolean | undefined;
8580
- readonly presetColors?: string[] | undefined;
8581
6856
  readonly step?: number | undefined;
8582
- readonly showValue?: boolean | undefined;
8583
- readonly marks?: Record<string, string> | undefined;
8584
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
8585
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
8586
- readonly displayValue?: boolean | undefined;
8587
- readonly allowScanning?: boolean | undefined;
8588
6857
  readonly currencyConfig?: {
8589
6858
  precision: number;
8590
6859
  currencyMode: "fixed" | "dynamic";
@@ -8638,29 +6907,7 @@ declare const SysSettingAudit: Omit<{
8638
6907
  } | undefined;
8639
6908
  maxVersions?: number | undefined;
8640
6909
  } | undefined;
8641
- readonly maskingRule?: {
8642
- field: string;
8643
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
8644
- preserveFormat: boolean;
8645
- preserveLength: boolean;
8646
- pattern?: string | undefined;
8647
- roles?: string[] | undefined;
8648
- exemptRoles?: string[] | undefined;
8649
- } | undefined;
8650
- readonly auditTrail?: boolean | undefined;
8651
- readonly cached?: {
8652
- enabled: boolean;
8653
- ttl: number;
8654
- invalidateOn: string[];
8655
- } | undefined;
8656
- readonly dataQuality?: {
8657
- uniqueness: boolean;
8658
- completeness: number;
8659
- accuracy?: {
8660
- source: string;
8661
- threshold: number;
8662
- } | undefined;
8663
- } | undefined;
6910
+ readonly trackHistory?: boolean | undefined;
8664
6911
  readonly visibleWhen?: {
8665
6912
  dialect: "cel" | "js" | "cron" | "template";
8666
6913
  source?: string | undefined;
@@ -8699,7 +6946,6 @@ declare const SysSettingAudit: Omit<{
8699
6946
  } | undefined;
8700
6947
  readonly sortable?: boolean | undefined;
8701
6948
  readonly inlineHelpText?: string | undefined;
8702
- readonly trackFeedHistory?: boolean | undefined;
8703
6949
  readonly caseSensitive?: boolean | undefined;
8704
6950
  readonly autonumberFormat?: string | undefined;
8705
6951
  readonly index?: boolean | undefined;
@@ -8726,7 +6972,6 @@ declare const SysSettingAudit: Omit<{
8726
6972
  readonly required?: boolean | undefined;
8727
6973
  readonly multiple?: boolean | undefined;
8728
6974
  readonly dependencies?: string[] | undefined;
8729
- readonly theme?: string | undefined;
8730
6975
  readonly externalId?: boolean | undefined;
8731
6976
  readonly defaultValue?: unknown;
8732
6977
  readonly group?: string | undefined;
@@ -8734,23 +6979,7 @@ declare const SysSettingAudit: Omit<{
8734
6979
  readonly system?: boolean | undefined;
8735
6980
  readonly min?: number | undefined;
8736
6981
  readonly max?: number | undefined;
8737
- readonly encryptionConfig?: {
8738
- enabled: boolean;
8739
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
8740
- keyManagement: {
8741
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
8742
- keyId?: string | undefined;
8743
- rotationPolicy?: {
8744
- enabled: boolean;
8745
- frequencyDays: number;
8746
- retainOldVersions: number;
8747
- autoRotate: boolean;
8748
- } | undefined;
8749
- };
8750
- scope: "record" | "field" | "table" | "database";
8751
- deterministicEncryption: boolean;
8752
- searchableEncryption: boolean;
8753
- } | undefined;
6982
+ readonly dimensions?: number | undefined;
8754
6983
  readonly columnName?: string | undefined;
8755
6984
  readonly searchable?: boolean | undefined;
8756
6985
  readonly unique?: boolean | undefined;
@@ -8759,7 +6988,6 @@ declare const SysSettingAudit: Omit<{
8759
6988
  readonly scale?: number | undefined;
8760
6989
  readonly reference?: string | undefined;
8761
6990
  readonly referenceFilters?: string[] | undefined;
8762
- readonly writeRequiresMasterRead?: boolean | undefined;
8763
6991
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
8764
6992
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
8765
6993
  readonly inlineTitle?: string | undefined;
@@ -8784,22 +7012,8 @@ declare const SysSettingAudit: Omit<{
8784
7012
  relationshipField?: string | undefined;
8785
7013
  } | undefined;
8786
7014
  readonly language?: string | undefined;
8787
- readonly lineNumbers?: boolean | undefined;
8788
7015
  readonly maxRating?: number | undefined;
8789
- readonly allowHalf?: boolean | undefined;
8790
- readonly displayMap?: boolean | undefined;
8791
- readonly allowGeocoding?: boolean | undefined;
8792
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
8793
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
8794
- readonly allowAlpha?: boolean | undefined;
8795
- readonly presetColors?: string[] | undefined;
8796
7016
  readonly step?: number | undefined;
8797
- readonly showValue?: boolean | undefined;
8798
- readonly marks?: Record<string, string> | undefined;
8799
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
8800
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
8801
- readonly displayValue?: boolean | undefined;
8802
- readonly allowScanning?: boolean | undefined;
8803
7017
  readonly currencyConfig?: {
8804
7018
  precision: number;
8805
7019
  currencyMode: "fixed" | "dynamic";
@@ -8853,29 +7067,7 @@ declare const SysSettingAudit: Omit<{
8853
7067
  } | undefined;
8854
7068
  maxVersions?: number | undefined;
8855
7069
  } | undefined;
8856
- readonly maskingRule?: {
8857
- field: string;
8858
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
8859
- preserveFormat: boolean;
8860
- preserveLength: boolean;
8861
- pattern?: string | undefined;
8862
- roles?: string[] | undefined;
8863
- exemptRoles?: string[] | undefined;
8864
- } | undefined;
8865
- readonly auditTrail?: boolean | undefined;
8866
- readonly cached?: {
8867
- enabled: boolean;
8868
- ttl: number;
8869
- invalidateOn: string[];
8870
- } | undefined;
8871
- readonly dataQuality?: {
8872
- uniqueness: boolean;
8873
- completeness: number;
8874
- accuracy?: {
8875
- source: string;
8876
- threshold: number;
8877
- } | undefined;
8878
- } | undefined;
7070
+ readonly trackHistory?: boolean | undefined;
8879
7071
  readonly visibleWhen?: {
8880
7072
  dialect: "cel" | "js" | "cron" | "template";
8881
7073
  source?: string | undefined;
@@ -8914,7 +7106,6 @@ declare const SysSettingAudit: Omit<{
8914
7106
  } | undefined;
8915
7107
  readonly sortable?: boolean | undefined;
8916
7108
  readonly inlineHelpText?: string | undefined;
8917
- readonly trackFeedHistory?: boolean | undefined;
8918
7109
  readonly caseSensitive?: boolean | undefined;
8919
7110
  readonly autonumberFormat?: string | undefined;
8920
7111
  readonly index?: boolean | undefined;
@@ -8937,7 +7128,6 @@ declare const SysSettingAudit: Omit<{
8937
7128
  readonly required?: boolean | undefined;
8938
7129
  readonly multiple?: boolean | undefined;
8939
7130
  readonly dependencies?: string[] | undefined;
8940
- readonly theme?: string | undefined;
8941
7131
  readonly externalId?: boolean | undefined;
8942
7132
  readonly defaultValue?: unknown;
8943
7133
  readonly group?: string | undefined;
@@ -8945,23 +7135,7 @@ declare const SysSettingAudit: Omit<{
8945
7135
  readonly system?: boolean | undefined;
8946
7136
  readonly min?: number | undefined;
8947
7137
  readonly max?: number | undefined;
8948
- readonly encryptionConfig?: {
8949
- enabled: boolean;
8950
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
8951
- keyManagement: {
8952
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
8953
- keyId?: string | undefined;
8954
- rotationPolicy?: {
8955
- enabled: boolean;
8956
- frequencyDays: number;
8957
- retainOldVersions: number;
8958
- autoRotate: boolean;
8959
- } | undefined;
8960
- };
8961
- scope: "record" | "field" | "table" | "database";
8962
- deterministicEncryption: boolean;
8963
- searchableEncryption: boolean;
8964
- } | undefined;
7138
+ readonly dimensions?: number | undefined;
8965
7139
  readonly columnName?: string | undefined;
8966
7140
  readonly searchable?: boolean | undefined;
8967
7141
  readonly unique?: boolean | undefined;
@@ -8970,7 +7144,6 @@ declare const SysSettingAudit: Omit<{
8970
7144
  readonly scale?: number | undefined;
8971
7145
  readonly reference?: string | undefined;
8972
7146
  readonly referenceFilters?: string[] | undefined;
8973
- readonly writeRequiresMasterRead?: boolean | undefined;
8974
7147
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
8975
7148
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
8976
7149
  readonly inlineTitle?: string | undefined;
@@ -8995,22 +7168,8 @@ declare const SysSettingAudit: Omit<{
8995
7168
  relationshipField?: string | undefined;
8996
7169
  } | undefined;
8997
7170
  readonly language?: string | undefined;
8998
- readonly lineNumbers?: boolean | undefined;
8999
7171
  readonly maxRating?: number | undefined;
9000
- readonly allowHalf?: boolean | undefined;
9001
- readonly displayMap?: boolean | undefined;
9002
- readonly allowGeocoding?: boolean | undefined;
9003
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
9004
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
9005
- readonly allowAlpha?: boolean | undefined;
9006
- readonly presetColors?: string[] | undefined;
9007
7172
  readonly step?: number | undefined;
9008
- readonly showValue?: boolean | undefined;
9009
- readonly marks?: Record<string, string> | undefined;
9010
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
9011
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
9012
- readonly displayValue?: boolean | undefined;
9013
- readonly allowScanning?: boolean | undefined;
9014
7173
  readonly currencyConfig?: {
9015
7174
  precision: number;
9016
7175
  currencyMode: "fixed" | "dynamic";
@@ -9064,29 +7223,7 @@ declare const SysSettingAudit: Omit<{
9064
7223
  } | undefined;
9065
7224
  maxVersions?: number | undefined;
9066
7225
  } | undefined;
9067
- readonly maskingRule?: {
9068
- field: string;
9069
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
9070
- preserveFormat: boolean;
9071
- preserveLength: boolean;
9072
- pattern?: string | undefined;
9073
- roles?: string[] | undefined;
9074
- exemptRoles?: string[] | undefined;
9075
- } | undefined;
9076
- readonly auditTrail?: boolean | undefined;
9077
- readonly cached?: {
9078
- enabled: boolean;
9079
- ttl: number;
9080
- invalidateOn: string[];
9081
- } | undefined;
9082
- readonly dataQuality?: {
9083
- uniqueness: boolean;
9084
- completeness: number;
9085
- accuracy?: {
9086
- source: string;
9087
- threshold: number;
9088
- } | undefined;
9089
- } | undefined;
7226
+ readonly trackHistory?: boolean | undefined;
9090
7227
  readonly visibleWhen?: {
9091
7228
  dialect: "cel" | "js" | "cron" | "template";
9092
7229
  source?: string | undefined;
@@ -9125,7 +7262,6 @@ declare const SysSettingAudit: Omit<{
9125
7262
  } | undefined;
9126
7263
  readonly sortable?: boolean | undefined;
9127
7264
  readonly inlineHelpText?: string | undefined;
9128
- readonly trackFeedHistory?: boolean | undefined;
9129
7265
  readonly caseSensitive?: boolean | undefined;
9130
7266
  readonly autonumberFormat?: string | undefined;
9131
7267
  readonly index?: boolean | undefined;
@@ -9153,7 +7289,6 @@ declare const SysSettingAudit: Omit<{
9153
7289
  readonly required?: boolean | undefined;
9154
7290
  readonly multiple?: boolean | undefined;
9155
7291
  readonly dependencies?: string[] | undefined;
9156
- readonly theme?: string | undefined;
9157
7292
  readonly externalId?: boolean | undefined;
9158
7293
  readonly defaultValue?: unknown;
9159
7294
  readonly group?: string | undefined;
@@ -9161,23 +7296,7 @@ declare const SysSettingAudit: Omit<{
9161
7296
  readonly system?: boolean | undefined;
9162
7297
  readonly min?: number | undefined;
9163
7298
  readonly max?: number | undefined;
9164
- readonly encryptionConfig?: {
9165
- enabled: boolean;
9166
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
9167
- keyManagement: {
9168
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
9169
- keyId?: string | undefined;
9170
- rotationPolicy?: {
9171
- enabled: boolean;
9172
- frequencyDays: number;
9173
- retainOldVersions: number;
9174
- autoRotate: boolean;
9175
- } | undefined;
9176
- };
9177
- scope: "record" | "field" | "table" | "database";
9178
- deterministicEncryption: boolean;
9179
- searchableEncryption: boolean;
9180
- } | undefined;
7299
+ readonly dimensions?: number | undefined;
9181
7300
  readonly columnName?: string | undefined;
9182
7301
  readonly searchable?: boolean | undefined;
9183
7302
  readonly unique?: boolean | undefined;
@@ -9186,7 +7305,6 @@ declare const SysSettingAudit: Omit<{
9186
7305
  readonly scale?: number | undefined;
9187
7306
  readonly reference?: string | undefined;
9188
7307
  readonly referenceFilters?: string[] | undefined;
9189
- readonly writeRequiresMasterRead?: boolean | undefined;
9190
7308
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
9191
7309
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
9192
7310
  readonly inlineTitle?: string | undefined;
@@ -9211,22 +7329,8 @@ declare const SysSettingAudit: Omit<{
9211
7329
  relationshipField?: string | undefined;
9212
7330
  } | undefined;
9213
7331
  readonly language?: string | undefined;
9214
- readonly lineNumbers?: boolean | undefined;
9215
7332
  readonly maxRating?: number | undefined;
9216
- readonly allowHalf?: boolean | undefined;
9217
- readonly displayMap?: boolean | undefined;
9218
- readonly allowGeocoding?: boolean | undefined;
9219
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
9220
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
9221
- readonly allowAlpha?: boolean | undefined;
9222
- readonly presetColors?: string[] | undefined;
9223
7333
  readonly step?: number | undefined;
9224
- readonly showValue?: boolean | undefined;
9225
- readonly marks?: Record<string, string> | undefined;
9226
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
9227
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
9228
- readonly displayValue?: boolean | undefined;
9229
- readonly allowScanning?: boolean | undefined;
9230
7334
  readonly currencyConfig?: {
9231
7335
  precision: number;
9232
7336
  currencyMode: "fixed" | "dynamic";
@@ -9280,29 +7384,7 @@ declare const SysSettingAudit: Omit<{
9280
7384
  } | undefined;
9281
7385
  maxVersions?: number | undefined;
9282
7386
  } | undefined;
9283
- readonly maskingRule?: {
9284
- field: string;
9285
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
9286
- preserveFormat: boolean;
9287
- preserveLength: boolean;
9288
- pattern?: string | undefined;
9289
- roles?: string[] | undefined;
9290
- exemptRoles?: string[] | undefined;
9291
- } | undefined;
9292
- readonly auditTrail?: boolean | undefined;
9293
- readonly cached?: {
9294
- enabled: boolean;
9295
- ttl: number;
9296
- invalidateOn: string[];
9297
- } | undefined;
9298
- readonly dataQuality?: {
9299
- uniqueness: boolean;
9300
- completeness: number;
9301
- accuracy?: {
9302
- source: string;
9303
- threshold: number;
9304
- } | undefined;
9305
- } | undefined;
7387
+ readonly trackHistory?: boolean | undefined;
9306
7388
  readonly visibleWhen?: {
9307
7389
  dialect: "cel" | "js" | "cron" | "template";
9308
7390
  source?: string | undefined;
@@ -9341,7 +7423,6 @@ declare const SysSettingAudit: Omit<{
9341
7423
  } | undefined;
9342
7424
  readonly sortable?: boolean | undefined;
9343
7425
  readonly inlineHelpText?: string | undefined;
9344
- readonly trackFeedHistory?: boolean | undefined;
9345
7426
  readonly caseSensitive?: boolean | undefined;
9346
7427
  readonly autonumberFormat?: string | undefined;
9347
7428
  readonly index?: boolean | undefined;
@@ -9364,7 +7445,6 @@ declare const SysSettingAudit: Omit<{
9364
7445
  readonly required?: boolean | undefined;
9365
7446
  readonly multiple?: boolean | undefined;
9366
7447
  readonly dependencies?: string[] | undefined;
9367
- readonly theme?: string | undefined;
9368
7448
  readonly externalId?: boolean | undefined;
9369
7449
  readonly defaultValue?: unknown;
9370
7450
  readonly group?: string | undefined;
@@ -9372,23 +7452,7 @@ declare const SysSettingAudit: Omit<{
9372
7452
  readonly system?: boolean | undefined;
9373
7453
  readonly min?: number | undefined;
9374
7454
  readonly max?: number | undefined;
9375
- readonly encryptionConfig?: {
9376
- enabled: boolean;
9377
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
9378
- keyManagement: {
9379
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
9380
- keyId?: string | undefined;
9381
- rotationPolicy?: {
9382
- enabled: boolean;
9383
- frequencyDays: number;
9384
- retainOldVersions: number;
9385
- autoRotate: boolean;
9386
- } | undefined;
9387
- };
9388
- scope: "record" | "field" | "table" | "database";
9389
- deterministicEncryption: boolean;
9390
- searchableEncryption: boolean;
9391
- } | undefined;
7455
+ readonly dimensions?: number | undefined;
9392
7456
  readonly columnName?: string | undefined;
9393
7457
  readonly searchable?: boolean | undefined;
9394
7458
  readonly unique?: boolean | undefined;
@@ -9397,7 +7461,6 @@ declare const SysSettingAudit: Omit<{
9397
7461
  readonly scale?: number | undefined;
9398
7462
  readonly reference?: string | undefined;
9399
7463
  readonly referenceFilters?: string[] | undefined;
9400
- readonly writeRequiresMasterRead?: boolean | undefined;
9401
7464
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
9402
7465
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
9403
7466
  readonly inlineTitle?: string | undefined;
@@ -9422,22 +7485,8 @@ declare const SysSettingAudit: Omit<{
9422
7485
  relationshipField?: string | undefined;
9423
7486
  } | undefined;
9424
7487
  readonly language?: string | undefined;
9425
- readonly lineNumbers?: boolean | undefined;
9426
7488
  readonly maxRating?: number | undefined;
9427
- readonly allowHalf?: boolean | undefined;
9428
- readonly displayMap?: boolean | undefined;
9429
- readonly allowGeocoding?: boolean | undefined;
9430
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
9431
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
9432
- readonly allowAlpha?: boolean | undefined;
9433
- readonly presetColors?: string[] | undefined;
9434
7489
  readonly step?: number | undefined;
9435
- readonly showValue?: boolean | undefined;
9436
- readonly marks?: Record<string, string> | undefined;
9437
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
9438
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
9439
- readonly displayValue?: boolean | undefined;
9440
- readonly allowScanning?: boolean | undefined;
9441
7490
  readonly currencyConfig?: {
9442
7491
  precision: number;
9443
7492
  currencyMode: "fixed" | "dynamic";
@@ -9491,29 +7540,7 @@ declare const SysSettingAudit: Omit<{
9491
7540
  } | undefined;
9492
7541
  maxVersions?: number | undefined;
9493
7542
  } | undefined;
9494
- readonly maskingRule?: {
9495
- field: string;
9496
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
9497
- preserveFormat: boolean;
9498
- preserveLength: boolean;
9499
- pattern?: string | undefined;
9500
- roles?: string[] | undefined;
9501
- exemptRoles?: string[] | undefined;
9502
- } | undefined;
9503
- readonly auditTrail?: boolean | undefined;
9504
- readonly cached?: {
9505
- enabled: boolean;
9506
- ttl: number;
9507
- invalidateOn: string[];
9508
- } | undefined;
9509
- readonly dataQuality?: {
9510
- uniqueness: boolean;
9511
- completeness: number;
9512
- accuracy?: {
9513
- source: string;
9514
- threshold: number;
9515
- } | undefined;
9516
- } | undefined;
7543
+ readonly trackHistory?: boolean | undefined;
9517
7544
  readonly visibleWhen?: {
9518
7545
  dialect: "cel" | "js" | "cron" | "template";
9519
7546
  source?: string | undefined;
@@ -9552,7 +7579,6 @@ declare const SysSettingAudit: Omit<{
9552
7579
  } | undefined;
9553
7580
  readonly sortable?: boolean | undefined;
9554
7581
  readonly inlineHelpText?: string | undefined;
9555
- readonly trackFeedHistory?: boolean | undefined;
9556
7582
  readonly caseSensitive?: boolean | undefined;
9557
7583
  readonly autonumberFormat?: string | undefined;
9558
7584
  readonly index?: boolean | undefined;
@@ -9575,7 +7601,6 @@ declare const SysSettingAudit: Omit<{
9575
7601
  readonly required?: boolean | undefined;
9576
7602
  readonly multiple?: boolean | undefined;
9577
7603
  readonly dependencies?: string[] | undefined;
9578
- readonly theme?: string | undefined;
9579
7604
  readonly externalId?: boolean | undefined;
9580
7605
  readonly defaultValue?: unknown;
9581
7606
  readonly group?: string | undefined;
@@ -9583,23 +7608,7 @@ declare const SysSettingAudit: Omit<{
9583
7608
  readonly system?: boolean | undefined;
9584
7609
  readonly min?: number | undefined;
9585
7610
  readonly max?: number | undefined;
9586
- readonly encryptionConfig?: {
9587
- enabled: boolean;
9588
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
9589
- keyManagement: {
9590
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
9591
- keyId?: string | undefined;
9592
- rotationPolicy?: {
9593
- enabled: boolean;
9594
- frequencyDays: number;
9595
- retainOldVersions: number;
9596
- autoRotate: boolean;
9597
- } | undefined;
9598
- };
9599
- scope: "record" | "field" | "table" | "database";
9600
- deterministicEncryption: boolean;
9601
- searchableEncryption: boolean;
9602
- } | undefined;
7611
+ readonly dimensions?: number | undefined;
9603
7612
  readonly columnName?: string | undefined;
9604
7613
  readonly searchable?: boolean | undefined;
9605
7614
  readonly unique?: boolean | undefined;
@@ -9608,7 +7617,6 @@ declare const SysSettingAudit: Omit<{
9608
7617
  readonly scale?: number | undefined;
9609
7618
  readonly reference?: string | undefined;
9610
7619
  readonly referenceFilters?: string[] | undefined;
9611
- readonly writeRequiresMasterRead?: boolean | undefined;
9612
7620
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
9613
7621
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
9614
7622
  readonly inlineTitle?: string | undefined;
@@ -9633,22 +7641,8 @@ declare const SysSettingAudit: Omit<{
9633
7641
  relationshipField?: string | undefined;
9634
7642
  } | undefined;
9635
7643
  readonly language?: string | undefined;
9636
- readonly lineNumbers?: boolean | undefined;
9637
7644
  readonly maxRating?: number | undefined;
9638
- readonly allowHalf?: boolean | undefined;
9639
- readonly displayMap?: boolean | undefined;
9640
- readonly allowGeocoding?: boolean | undefined;
9641
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
9642
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
9643
- readonly allowAlpha?: boolean | undefined;
9644
- readonly presetColors?: string[] | undefined;
9645
7645
  readonly step?: number | undefined;
9646
- readonly showValue?: boolean | undefined;
9647
- readonly marks?: Record<string, string> | undefined;
9648
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
9649
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
9650
- readonly displayValue?: boolean | undefined;
9651
- readonly allowScanning?: boolean | undefined;
9652
7646
  readonly currencyConfig?: {
9653
7647
  precision: number;
9654
7648
  currencyMode: "fixed" | "dynamic";
@@ -9702,29 +7696,7 @@ declare const SysSettingAudit: Omit<{
9702
7696
  } | undefined;
9703
7697
  maxVersions?: number | undefined;
9704
7698
  } | undefined;
9705
- readonly maskingRule?: {
9706
- field: string;
9707
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
9708
- preserveFormat: boolean;
9709
- preserveLength: boolean;
9710
- pattern?: string | undefined;
9711
- roles?: string[] | undefined;
9712
- exemptRoles?: string[] | undefined;
9713
- } | undefined;
9714
- readonly auditTrail?: boolean | undefined;
9715
- readonly cached?: {
9716
- enabled: boolean;
9717
- ttl: number;
9718
- invalidateOn: string[];
9719
- } | undefined;
9720
- readonly dataQuality?: {
9721
- uniqueness: boolean;
9722
- completeness: number;
9723
- accuracy?: {
9724
- source: string;
9725
- threshold: number;
9726
- } | undefined;
9727
- } | undefined;
7699
+ readonly trackHistory?: boolean | undefined;
9728
7700
  readonly visibleWhen?: {
9729
7701
  dialect: "cel" | "js" | "cron" | "template";
9730
7702
  source?: string | undefined;
@@ -9763,7 +7735,6 @@ declare const SysSettingAudit: Omit<{
9763
7735
  } | undefined;
9764
7736
  readonly sortable?: boolean | undefined;
9765
7737
  readonly inlineHelpText?: string | undefined;
9766
- readonly trackFeedHistory?: boolean | undefined;
9767
7738
  readonly caseSensitive?: boolean | undefined;
9768
7739
  readonly autonumberFormat?: string | undefined;
9769
7740
  readonly index?: boolean | undefined;
@@ -9786,7 +7757,6 @@ declare const SysSettingAudit: Omit<{
9786
7757
  readonly required?: boolean | undefined;
9787
7758
  readonly multiple?: boolean | undefined;
9788
7759
  readonly dependencies?: string[] | undefined;
9789
- readonly theme?: string | undefined;
9790
7760
  readonly externalId?: boolean | undefined;
9791
7761
  readonly defaultValue?: unknown;
9792
7762
  readonly group?: string | undefined;
@@ -9794,23 +7764,7 @@ declare const SysSettingAudit: Omit<{
9794
7764
  readonly system?: boolean | undefined;
9795
7765
  readonly min?: number | undefined;
9796
7766
  readonly max?: number | undefined;
9797
- readonly encryptionConfig?: {
9798
- enabled: boolean;
9799
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
9800
- keyManagement: {
9801
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
9802
- keyId?: string | undefined;
9803
- rotationPolicy?: {
9804
- enabled: boolean;
9805
- frequencyDays: number;
9806
- retainOldVersions: number;
9807
- autoRotate: boolean;
9808
- } | undefined;
9809
- };
9810
- scope: "record" | "field" | "table" | "database";
9811
- deterministicEncryption: boolean;
9812
- searchableEncryption: boolean;
9813
- } | undefined;
7767
+ readonly dimensions?: number | undefined;
9814
7768
  readonly columnName?: string | undefined;
9815
7769
  readonly searchable?: boolean | undefined;
9816
7770
  readonly unique?: boolean | undefined;
@@ -9819,7 +7773,6 @@ declare const SysSettingAudit: Omit<{
9819
7773
  readonly scale?: number | undefined;
9820
7774
  readonly reference?: string | undefined;
9821
7775
  readonly referenceFilters?: string[] | undefined;
9822
- readonly writeRequiresMasterRead?: boolean | undefined;
9823
7776
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
9824
7777
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
9825
7778
  readonly inlineTitle?: string | undefined;
@@ -9844,22 +7797,8 @@ declare const SysSettingAudit: Omit<{
9844
7797
  relationshipField?: string | undefined;
9845
7798
  } | undefined;
9846
7799
  readonly language?: string | undefined;
9847
- readonly lineNumbers?: boolean | undefined;
9848
7800
  readonly maxRating?: number | undefined;
9849
- readonly allowHalf?: boolean | undefined;
9850
- readonly displayMap?: boolean | undefined;
9851
- readonly allowGeocoding?: boolean | undefined;
9852
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
9853
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
9854
- readonly allowAlpha?: boolean | undefined;
9855
- readonly presetColors?: string[] | undefined;
9856
7801
  readonly step?: number | undefined;
9857
- readonly showValue?: boolean | undefined;
9858
- readonly marks?: Record<string, string> | undefined;
9859
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
9860
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
9861
- readonly displayValue?: boolean | undefined;
9862
- readonly allowScanning?: boolean | undefined;
9863
7802
  readonly currencyConfig?: {
9864
7803
  precision: number;
9865
7804
  currencyMode: "fixed" | "dynamic";
@@ -9913,29 +7852,7 @@ declare const SysSettingAudit: Omit<{
9913
7852
  } | undefined;
9914
7853
  maxVersions?: number | undefined;
9915
7854
  } | undefined;
9916
- readonly maskingRule?: {
9917
- field: string;
9918
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
9919
- preserveFormat: boolean;
9920
- preserveLength: boolean;
9921
- pattern?: string | undefined;
9922
- roles?: string[] | undefined;
9923
- exemptRoles?: string[] | undefined;
9924
- } | undefined;
9925
- readonly auditTrail?: boolean | undefined;
9926
- readonly cached?: {
9927
- enabled: boolean;
9928
- ttl: number;
9929
- invalidateOn: string[];
9930
- } | undefined;
9931
- readonly dataQuality?: {
9932
- uniqueness: boolean;
9933
- completeness: number;
9934
- accuracy?: {
9935
- source: string;
9936
- threshold: number;
9937
- } | undefined;
9938
- } | undefined;
7855
+ readonly trackHistory?: boolean | undefined;
9939
7856
  readonly visibleWhen?: {
9940
7857
  dialect: "cel" | "js" | "cron" | "template";
9941
7858
  source?: string | undefined;
@@ -9974,7 +7891,6 @@ declare const SysSettingAudit: Omit<{
9974
7891
  } | undefined;
9975
7892
  readonly sortable?: boolean | undefined;
9976
7893
  readonly inlineHelpText?: string | undefined;
9977
- readonly trackFeedHistory?: boolean | undefined;
9978
7894
  readonly caseSensitive?: boolean | undefined;
9979
7895
  readonly autonumberFormat?: string | undefined;
9980
7896
  readonly index?: boolean | undefined;