@objectstack/plugin-webhooks 9.7.0 → 9.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/schema.d.cts CHANGED
@@ -41,7 +41,6 @@ declare const SysWebhook: Omit<{
41
41
  multiple: boolean;
42
42
  unique: boolean;
43
43
  deleteBehavior: "set_null" | "cascade" | "restrict";
44
- auditTrail: boolean;
45
44
  hidden: boolean;
46
45
  readonly: boolean;
47
46
  sortable: boolean;
@@ -67,7 +66,6 @@ declare const SysWebhook: Omit<{
67
66
  }[] | undefined;
68
67
  reference?: string | undefined;
69
68
  referenceFilters?: string[] | undefined;
70
- writeRequiresMasterRead?: boolean | undefined;
71
69
  inlineEdit?: boolean | "grid" | "form" | undefined;
72
70
  inlineTitle?: string | undefined;
73
71
  inlineColumns?: any[] | undefined;
@@ -99,28 +97,14 @@ declare const SysWebhook: Omit<{
99
97
  relationshipField?: string | undefined;
100
98
  } | undefined;
101
99
  language?: string | undefined;
102
- theme?: string | undefined;
103
- lineNumbers?: boolean | undefined;
104
100
  maxRating?: number | undefined;
105
- allowHalf?: boolean | undefined;
106
- displayMap?: boolean | undefined;
107
- allowGeocoding?: boolean | undefined;
108
- addressFormat?: "us" | "uk" | "international" | undefined;
109
- colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
110
- allowAlpha?: boolean | undefined;
111
- presetColors?: string[] | undefined;
112
101
  step?: number | undefined;
113
- showValue?: boolean | undefined;
114
- marks?: Record<string, string> | undefined;
115
- barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
116
- qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
117
- displayValue?: boolean | undefined;
118
- allowScanning?: boolean | undefined;
119
102
  currencyConfig?: {
120
103
  precision: number;
121
104
  currencyMode: "fixed" | "dynamic";
122
105
  defaultCurrency: string;
123
106
  } | undefined;
107
+ dimensions?: number | undefined;
124
108
  vectorConfig?: {
125
109
  dimensions: number;
126
110
  distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
@@ -169,46 +153,8 @@ declare const SysWebhook: Omit<{
169
153
  } | undefined;
170
154
  maxVersions?: number | undefined;
171
155
  } | undefined;
172
- encryptionConfig?: {
173
- enabled: boolean;
174
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
175
- keyManagement: {
176
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
177
- keyId?: string | undefined;
178
- rotationPolicy?: {
179
- enabled: boolean;
180
- frequencyDays: number;
181
- retainOldVersions: number;
182
- autoRotate: boolean;
183
- } | undefined;
184
- };
185
- scope: "field" | "record" | "table" | "database";
186
- deterministicEncryption: boolean;
187
- searchableEncryption: boolean;
188
- } | undefined;
189
- maskingRule?: {
190
- field: string;
191
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
192
- preserveFormat: boolean;
193
- preserveLength: boolean;
194
- pattern?: string | undefined;
195
- roles?: string[] | undefined;
196
- exemptRoles?: string[] | undefined;
197
- } | undefined;
156
+ trackHistory?: boolean | undefined;
198
157
  dependencies?: string[] | undefined;
199
- cached?: {
200
- enabled: boolean;
201
- ttl: number;
202
- invalidateOn: string[];
203
- } | undefined;
204
- dataQuality?: {
205
- uniqueness: boolean;
206
- completeness: number;
207
- accuracy?: {
208
- source: string;
209
- threshold: number;
210
- } | undefined;
211
- } | undefined;
212
158
  group?: string | undefined;
213
159
  visibleWhen?: {
214
160
  dialect: "cel" | "js" | "cron" | "template";
@@ -280,7 +226,6 @@ declare const SysWebhook: Omit<{
280
226
  } | undefined;
281
227
  system?: boolean | undefined;
282
228
  inlineHelpText?: string | undefined;
283
- trackFeedHistory?: boolean | undefined;
284
229
  caseSensitive?: boolean | undefined;
285
230
  autonumberFormat?: string | undefined;
286
231
  }>;
@@ -371,12 +316,13 @@ declare const SysWebhook: Omit<{
371
316
  key: string;
372
317
  interval?: string | undefined;
373
318
  } | undefined;
374
- cdc?: {
375
- enabled: boolean;
376
- events: ("update" | "delete" | "insert")[];
377
- destination: string;
378
- } | undefined;
379
319
  validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
320
+ activityMilestones?: {
321
+ field: string;
322
+ value: string;
323
+ summary: string;
324
+ type?: string | undefined;
325
+ }[] | undefined;
380
326
  displayNameField?: string | undefined;
381
327
  recordName?: {
382
328
  type: "text" | "autonumber";
@@ -687,7 +633,6 @@ declare const SysWebhook: Omit<{
687
633
  clone: boolean;
688
634
  apiMethods?: ("create" | "update" | "delete" | "search" | "import" | "list" | "get" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
689
635
  } | undefined;
690
- recordTypes?: string[] | undefined;
691
636
  sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
692
637
  publicSharing?: {
693
638
  enabled: boolean;
@@ -744,6 +689,8 @@ declare const SysWebhook: Omit<{
744
689
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
745
690
  confirmText?: string | undefined;
746
691
  successMessage?: string | undefined;
692
+ errorMessage?: string | undefined;
693
+ undoable?: boolean | undefined;
747
694
  resultDialog?: {
748
695
  title?: string | undefined;
749
696
  description?: string | undefined;
@@ -933,7 +880,6 @@ declare const SysWebhook: Omit<{
933
880
  readonly required?: boolean | undefined;
934
881
  readonly multiple?: boolean | undefined;
935
882
  readonly dependencies?: string[] | undefined;
936
- readonly theme?: string | undefined;
937
883
  readonly externalId?: boolean | undefined;
938
884
  readonly defaultValue?: unknown;
939
885
  readonly group?: string | undefined;
@@ -941,23 +887,7 @@ declare const SysWebhook: Omit<{
941
887
  readonly system?: boolean | undefined;
942
888
  readonly min?: number | undefined;
943
889
  readonly max?: number | undefined;
944
- readonly encryptionConfig?: {
945
- enabled: boolean;
946
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
947
- keyManagement: {
948
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
949
- keyId?: string | undefined;
950
- rotationPolicy?: {
951
- enabled: boolean;
952
- frequencyDays: number;
953
- retainOldVersions: number;
954
- autoRotate: boolean;
955
- } | undefined;
956
- };
957
- scope: "record" | "field" | "table" | "database";
958
- deterministicEncryption: boolean;
959
- searchableEncryption: boolean;
960
- } | undefined;
890
+ readonly dimensions?: number | undefined;
961
891
  readonly columnName?: string | undefined;
962
892
  readonly searchable?: boolean | undefined;
963
893
  readonly unique?: boolean | undefined;
@@ -966,7 +896,6 @@ declare const SysWebhook: Omit<{
966
896
  readonly scale?: number | undefined;
967
897
  readonly reference?: string | undefined;
968
898
  readonly referenceFilters?: string[] | undefined;
969
- readonly writeRequiresMasterRead?: boolean | undefined;
970
899
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
971
900
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
972
901
  readonly inlineTitle?: string | undefined;
@@ -991,22 +920,8 @@ declare const SysWebhook: Omit<{
991
920
  relationshipField?: string | undefined;
992
921
  } | undefined;
993
922
  readonly language?: string | undefined;
994
- readonly lineNumbers?: boolean | undefined;
995
923
  readonly maxRating?: number | undefined;
996
- readonly allowHalf?: boolean | undefined;
997
- readonly displayMap?: boolean | undefined;
998
- readonly allowGeocoding?: boolean | undefined;
999
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
1000
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
1001
- readonly allowAlpha?: boolean | undefined;
1002
- readonly presetColors?: string[] | undefined;
1003
924
  readonly step?: number | undefined;
1004
- readonly showValue?: boolean | undefined;
1005
- readonly marks?: Record<string, string> | undefined;
1006
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
1007
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
1008
- readonly displayValue?: boolean | undefined;
1009
- readonly allowScanning?: boolean | undefined;
1010
925
  readonly currencyConfig?: {
1011
926
  precision: number;
1012
927
  currencyMode: "fixed" | "dynamic";
@@ -1060,29 +975,7 @@ declare const SysWebhook: Omit<{
1060
975
  } | undefined;
1061
976
  maxVersions?: number | undefined;
1062
977
  } | undefined;
1063
- readonly maskingRule?: {
1064
- field: string;
1065
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
1066
- preserveFormat: boolean;
1067
- preserveLength: boolean;
1068
- pattern?: string | undefined;
1069
- roles?: string[] | undefined;
1070
- exemptRoles?: string[] | undefined;
1071
- } | undefined;
1072
- readonly auditTrail?: boolean | undefined;
1073
- readonly cached?: {
1074
- enabled: boolean;
1075
- ttl: number;
1076
- invalidateOn: string[];
1077
- } | undefined;
1078
- readonly dataQuality?: {
1079
- uniqueness: boolean;
1080
- completeness: number;
1081
- accuracy?: {
1082
- source: string;
1083
- threshold: number;
1084
- } | undefined;
1085
- } | undefined;
978
+ readonly trackHistory?: boolean | undefined;
1086
979
  readonly visibleWhen?: {
1087
980
  dialect: "cel" | "js" | "cron" | "template";
1088
981
  source?: string | undefined;
@@ -1121,7 +1014,6 @@ declare const SysWebhook: Omit<{
1121
1014
  } | undefined;
1122
1015
  readonly sortable?: boolean | undefined;
1123
1016
  readonly inlineHelpText?: string | undefined;
1124
- readonly trackFeedHistory?: boolean | undefined;
1125
1017
  readonly caseSensitive?: boolean | undefined;
1126
1018
  readonly autonumberFormat?: string | undefined;
1127
1019
  readonly index?: boolean | undefined;
@@ -1143,7 +1035,6 @@ declare const SysWebhook: Omit<{
1143
1035
  readonly required?: boolean | undefined;
1144
1036
  readonly multiple?: boolean | undefined;
1145
1037
  readonly dependencies?: string[] | undefined;
1146
- readonly theme?: string | undefined;
1147
1038
  readonly externalId?: boolean | undefined;
1148
1039
  readonly defaultValue?: unknown;
1149
1040
  readonly group?: string | undefined;
@@ -1151,23 +1042,7 @@ declare const SysWebhook: Omit<{
1151
1042
  readonly system?: boolean | undefined;
1152
1043
  readonly min?: number | undefined;
1153
1044
  readonly max?: number | undefined;
1154
- readonly encryptionConfig?: {
1155
- enabled: boolean;
1156
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
1157
- keyManagement: {
1158
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
1159
- keyId?: string | undefined;
1160
- rotationPolicy?: {
1161
- enabled: boolean;
1162
- frequencyDays: number;
1163
- retainOldVersions: number;
1164
- autoRotate: boolean;
1165
- } | undefined;
1166
- };
1167
- scope: "record" | "field" | "table" | "database";
1168
- deterministicEncryption: boolean;
1169
- searchableEncryption: boolean;
1170
- } | undefined;
1045
+ readonly dimensions?: number | undefined;
1171
1046
  readonly columnName?: string | undefined;
1172
1047
  readonly searchable?: boolean | undefined;
1173
1048
  readonly unique?: boolean | undefined;
@@ -1176,7 +1051,6 @@ declare const SysWebhook: Omit<{
1176
1051
  readonly scale?: number | undefined;
1177
1052
  readonly reference?: string | undefined;
1178
1053
  readonly referenceFilters?: string[] | undefined;
1179
- readonly writeRequiresMasterRead?: boolean | undefined;
1180
1054
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1181
1055
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1182
1056
  readonly inlineTitle?: string | undefined;
@@ -1201,22 +1075,8 @@ declare const SysWebhook: Omit<{
1201
1075
  relationshipField?: string | undefined;
1202
1076
  } | undefined;
1203
1077
  readonly language?: string | undefined;
1204
- readonly lineNumbers?: boolean | undefined;
1205
1078
  readonly maxRating?: number | undefined;
1206
- readonly allowHalf?: boolean | undefined;
1207
- readonly displayMap?: boolean | undefined;
1208
- readonly allowGeocoding?: boolean | undefined;
1209
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
1210
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
1211
- readonly allowAlpha?: boolean | undefined;
1212
- readonly presetColors?: string[] | undefined;
1213
1079
  readonly step?: number | undefined;
1214
- readonly showValue?: boolean | undefined;
1215
- readonly marks?: Record<string, string> | undefined;
1216
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
1217
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
1218
- readonly displayValue?: boolean | undefined;
1219
- readonly allowScanning?: boolean | undefined;
1220
1080
  readonly currencyConfig?: {
1221
1081
  precision: number;
1222
1082
  currencyMode: "fixed" | "dynamic";
@@ -1270,29 +1130,7 @@ declare const SysWebhook: Omit<{
1270
1130
  } | undefined;
1271
1131
  maxVersions?: number | undefined;
1272
1132
  } | undefined;
1273
- readonly maskingRule?: {
1274
- field: string;
1275
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
1276
- preserveFormat: boolean;
1277
- preserveLength: boolean;
1278
- pattern?: string | undefined;
1279
- roles?: string[] | undefined;
1280
- exemptRoles?: string[] | undefined;
1281
- } | undefined;
1282
- readonly auditTrail?: boolean | undefined;
1283
- readonly cached?: {
1284
- enabled: boolean;
1285
- ttl: number;
1286
- invalidateOn: string[];
1287
- } | undefined;
1288
- readonly dataQuality?: {
1289
- uniqueness: boolean;
1290
- completeness: number;
1291
- accuracy?: {
1292
- source: string;
1293
- threshold: number;
1294
- } | undefined;
1295
- } | undefined;
1133
+ readonly trackHistory?: boolean | undefined;
1296
1134
  readonly visibleWhen?: {
1297
1135
  dialect: "cel" | "js" | "cron" | "template";
1298
1136
  source?: string | undefined;
@@ -1331,7 +1169,6 @@ declare const SysWebhook: Omit<{
1331
1169
  } | undefined;
1332
1170
  readonly sortable?: boolean | undefined;
1333
1171
  readonly inlineHelpText?: string | undefined;
1334
- readonly trackFeedHistory?: boolean | undefined;
1335
1172
  readonly caseSensitive?: boolean | undefined;
1336
1173
  readonly autonumberFormat?: string | undefined;
1337
1174
  readonly index?: boolean | undefined;
@@ -1353,7 +1190,6 @@ declare const SysWebhook: Omit<{
1353
1190
  readonly required?: boolean | undefined;
1354
1191
  readonly multiple?: boolean | undefined;
1355
1192
  readonly dependencies?: string[] | undefined;
1356
- readonly theme?: string | undefined;
1357
1193
  readonly externalId?: boolean | undefined;
1358
1194
  readonly defaultValue?: unknown;
1359
1195
  readonly group?: string | undefined;
@@ -1361,23 +1197,7 @@ declare const SysWebhook: Omit<{
1361
1197
  readonly system?: boolean | undefined;
1362
1198
  readonly min?: number | undefined;
1363
1199
  readonly max?: number | undefined;
1364
- readonly encryptionConfig?: {
1365
- enabled: boolean;
1366
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
1367
- keyManagement: {
1368
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
1369
- keyId?: string | undefined;
1370
- rotationPolicy?: {
1371
- enabled: boolean;
1372
- frequencyDays: number;
1373
- retainOldVersions: number;
1374
- autoRotate: boolean;
1375
- } | undefined;
1376
- };
1377
- scope: "record" | "field" | "table" | "database";
1378
- deterministicEncryption: boolean;
1379
- searchableEncryption: boolean;
1380
- } | undefined;
1200
+ readonly dimensions?: number | undefined;
1381
1201
  readonly columnName?: string | undefined;
1382
1202
  readonly searchable?: boolean | undefined;
1383
1203
  readonly unique?: boolean | undefined;
@@ -1386,7 +1206,6 @@ declare const SysWebhook: Omit<{
1386
1206
  readonly scale?: number | undefined;
1387
1207
  readonly reference?: string | undefined;
1388
1208
  readonly referenceFilters?: string[] | undefined;
1389
- readonly writeRequiresMasterRead?: boolean | undefined;
1390
1209
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1391
1210
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1392
1211
  readonly inlineTitle?: string | undefined;
@@ -1411,22 +1230,8 @@ declare const SysWebhook: Omit<{
1411
1230
  relationshipField?: string | undefined;
1412
1231
  } | undefined;
1413
1232
  readonly language?: string | undefined;
1414
- readonly lineNumbers?: boolean | undefined;
1415
1233
  readonly maxRating?: number | undefined;
1416
- readonly allowHalf?: boolean | undefined;
1417
- readonly displayMap?: boolean | undefined;
1418
- readonly allowGeocoding?: boolean | undefined;
1419
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
1420
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
1421
- readonly allowAlpha?: boolean | undefined;
1422
- readonly presetColors?: string[] | undefined;
1423
1234
  readonly step?: number | undefined;
1424
- readonly showValue?: boolean | undefined;
1425
- readonly marks?: Record<string, string> | undefined;
1426
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
1427
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
1428
- readonly displayValue?: boolean | undefined;
1429
- readonly allowScanning?: boolean | undefined;
1430
1235
  readonly currencyConfig?: {
1431
1236
  precision: number;
1432
1237
  currencyMode: "fixed" | "dynamic";
@@ -1480,29 +1285,7 @@ declare const SysWebhook: Omit<{
1480
1285
  } | undefined;
1481
1286
  maxVersions?: number | undefined;
1482
1287
  } | undefined;
1483
- readonly maskingRule?: {
1484
- field: string;
1485
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
1486
- preserveFormat: boolean;
1487
- preserveLength: boolean;
1488
- pattern?: string | undefined;
1489
- roles?: string[] | undefined;
1490
- exemptRoles?: string[] | undefined;
1491
- } | undefined;
1492
- readonly auditTrail?: boolean | undefined;
1493
- readonly cached?: {
1494
- enabled: boolean;
1495
- ttl: number;
1496
- invalidateOn: string[];
1497
- } | undefined;
1498
- readonly dataQuality?: {
1499
- uniqueness: boolean;
1500
- completeness: number;
1501
- accuracy?: {
1502
- source: string;
1503
- threshold: number;
1504
- } | undefined;
1505
- } | undefined;
1288
+ readonly trackHistory?: boolean | undefined;
1506
1289
  readonly visibleWhen?: {
1507
1290
  dialect: "cel" | "js" | "cron" | "template";
1508
1291
  source?: string | undefined;
@@ -1541,7 +1324,6 @@ declare const SysWebhook: Omit<{
1541
1324
  } | undefined;
1542
1325
  readonly sortable?: boolean | undefined;
1543
1326
  readonly inlineHelpText?: string | undefined;
1544
- readonly trackFeedHistory?: boolean | undefined;
1545
1327
  readonly caseSensitive?: boolean | undefined;
1546
1328
  readonly autonumberFormat?: string | undefined;
1547
1329
  readonly index?: boolean | undefined;
@@ -1563,7 +1345,6 @@ declare const SysWebhook: Omit<{
1563
1345
  readonly required?: boolean | undefined;
1564
1346
  readonly multiple?: boolean | undefined;
1565
1347
  readonly dependencies?: string[] | undefined;
1566
- readonly theme?: string | undefined;
1567
1348
  readonly externalId?: boolean | undefined;
1568
1349
  readonly defaultValue?: unknown;
1569
1350
  readonly group?: string | undefined;
@@ -1571,23 +1352,7 @@ declare const SysWebhook: Omit<{
1571
1352
  readonly system?: boolean | undefined;
1572
1353
  readonly min?: number | undefined;
1573
1354
  readonly max?: number | undefined;
1574
- readonly encryptionConfig?: {
1575
- enabled: boolean;
1576
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
1577
- keyManagement: {
1578
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
1579
- keyId?: string | undefined;
1580
- rotationPolicy?: {
1581
- enabled: boolean;
1582
- frequencyDays: number;
1583
- retainOldVersions: number;
1584
- autoRotate: boolean;
1585
- } | undefined;
1586
- };
1587
- scope: "record" | "field" | "table" | "database";
1588
- deterministicEncryption: boolean;
1589
- searchableEncryption: boolean;
1590
- } | undefined;
1355
+ readonly dimensions?: number | undefined;
1591
1356
  readonly columnName?: string | undefined;
1592
1357
  readonly searchable?: boolean | undefined;
1593
1358
  readonly unique?: boolean | undefined;
@@ -1596,7 +1361,6 @@ declare const SysWebhook: Omit<{
1596
1361
  readonly scale?: number | undefined;
1597
1362
  readonly reference?: string | undefined;
1598
1363
  readonly referenceFilters?: string[] | undefined;
1599
- readonly writeRequiresMasterRead?: boolean | undefined;
1600
1364
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1601
1365
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1602
1366
  readonly inlineTitle?: string | undefined;
@@ -1621,22 +1385,8 @@ declare const SysWebhook: Omit<{
1621
1385
  relationshipField?: string | undefined;
1622
1386
  } | undefined;
1623
1387
  readonly language?: string | undefined;
1624
- readonly lineNumbers?: boolean | undefined;
1625
1388
  readonly maxRating?: number | undefined;
1626
- readonly allowHalf?: boolean | undefined;
1627
- readonly displayMap?: boolean | undefined;
1628
- readonly allowGeocoding?: boolean | undefined;
1629
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
1630
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
1631
- readonly allowAlpha?: boolean | undefined;
1632
- readonly presetColors?: string[] | undefined;
1633
1389
  readonly step?: number | undefined;
1634
- readonly showValue?: boolean | undefined;
1635
- readonly marks?: Record<string, string> | undefined;
1636
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
1637
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
1638
- readonly displayValue?: boolean | undefined;
1639
- readonly allowScanning?: boolean | undefined;
1640
1390
  readonly currencyConfig?: {
1641
1391
  precision: number;
1642
1392
  currencyMode: "fixed" | "dynamic";
@@ -1690,29 +1440,7 @@ declare const SysWebhook: Omit<{
1690
1440
  } | undefined;
1691
1441
  maxVersions?: number | undefined;
1692
1442
  } | undefined;
1693
- readonly maskingRule?: {
1694
- field: string;
1695
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
1696
- preserveFormat: boolean;
1697
- preserveLength: boolean;
1698
- pattern?: string | undefined;
1699
- roles?: string[] | undefined;
1700
- exemptRoles?: string[] | undefined;
1701
- } | undefined;
1702
- readonly auditTrail?: boolean | undefined;
1703
- readonly cached?: {
1704
- enabled: boolean;
1705
- ttl: number;
1706
- invalidateOn: string[];
1707
- } | undefined;
1708
- readonly dataQuality?: {
1709
- uniqueness: boolean;
1710
- completeness: number;
1711
- accuracy?: {
1712
- source: string;
1713
- threshold: number;
1714
- } | undefined;
1715
- } | undefined;
1443
+ readonly trackHistory?: boolean | undefined;
1716
1444
  readonly visibleWhen?: {
1717
1445
  dialect: "cel" | "js" | "cron" | "template";
1718
1446
  source?: string | undefined;
@@ -1751,7 +1479,6 @@ declare const SysWebhook: Omit<{
1751
1479
  } | undefined;
1752
1480
  readonly sortable?: boolean | undefined;
1753
1481
  readonly inlineHelpText?: string | undefined;
1754
- readonly trackFeedHistory?: boolean | undefined;
1755
1482
  readonly caseSensitive?: boolean | undefined;
1756
1483
  readonly autonumberFormat?: string | undefined;
1757
1484
  readonly index?: boolean | undefined;
@@ -1773,7 +1500,6 @@ declare const SysWebhook: Omit<{
1773
1500
  readonly required?: boolean | undefined;
1774
1501
  readonly multiple?: boolean | undefined;
1775
1502
  readonly dependencies?: string[] | undefined;
1776
- readonly theme?: string | undefined;
1777
1503
  readonly externalId?: boolean | undefined;
1778
1504
  readonly defaultValue?: unknown;
1779
1505
  readonly group?: string | undefined;
@@ -1781,23 +1507,7 @@ declare const SysWebhook: Omit<{
1781
1507
  readonly system?: boolean | undefined;
1782
1508
  readonly min?: number | undefined;
1783
1509
  readonly max?: number | undefined;
1784
- readonly encryptionConfig?: {
1785
- enabled: boolean;
1786
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
1787
- keyManagement: {
1788
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
1789
- keyId?: string | undefined;
1790
- rotationPolicy?: {
1791
- enabled: boolean;
1792
- frequencyDays: number;
1793
- retainOldVersions: number;
1794
- autoRotate: boolean;
1795
- } | undefined;
1796
- };
1797
- scope: "record" | "field" | "table" | "database";
1798
- deterministicEncryption: boolean;
1799
- searchableEncryption: boolean;
1800
- } | undefined;
1510
+ readonly dimensions?: number | undefined;
1801
1511
  readonly columnName?: string | undefined;
1802
1512
  readonly searchable?: boolean | undefined;
1803
1513
  readonly unique?: boolean | undefined;
@@ -1806,7 +1516,6 @@ declare const SysWebhook: Omit<{
1806
1516
  readonly scale?: number | undefined;
1807
1517
  readonly reference?: string | undefined;
1808
1518
  readonly referenceFilters?: string[] | undefined;
1809
- readonly writeRequiresMasterRead?: boolean | undefined;
1810
1519
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
1811
1520
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
1812
1521
  readonly inlineTitle?: string | undefined;
@@ -1831,22 +1540,8 @@ declare const SysWebhook: Omit<{
1831
1540
  relationshipField?: string | undefined;
1832
1541
  } | undefined;
1833
1542
  readonly language?: string | undefined;
1834
- readonly lineNumbers?: boolean | undefined;
1835
1543
  readonly maxRating?: number | undefined;
1836
- readonly allowHalf?: boolean | undefined;
1837
- readonly displayMap?: boolean | undefined;
1838
- readonly allowGeocoding?: boolean | undefined;
1839
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
1840
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
1841
- readonly allowAlpha?: boolean | undefined;
1842
- readonly presetColors?: string[] | undefined;
1843
1544
  readonly step?: number | undefined;
1844
- readonly showValue?: boolean | undefined;
1845
- readonly marks?: Record<string, string> | undefined;
1846
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
1847
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
1848
- readonly displayValue?: boolean | undefined;
1849
- readonly allowScanning?: boolean | undefined;
1850
1545
  readonly currencyConfig?: {
1851
1546
  precision: number;
1852
1547
  currencyMode: "fixed" | "dynamic";
@@ -1900,29 +1595,7 @@ declare const SysWebhook: Omit<{
1900
1595
  } | undefined;
1901
1596
  maxVersions?: number | undefined;
1902
1597
  } | undefined;
1903
- readonly maskingRule?: {
1904
- field: string;
1905
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
1906
- preserveFormat: boolean;
1907
- preserveLength: boolean;
1908
- pattern?: string | undefined;
1909
- roles?: string[] | undefined;
1910
- exemptRoles?: string[] | undefined;
1911
- } | undefined;
1912
- readonly auditTrail?: boolean | undefined;
1913
- readonly cached?: {
1914
- enabled: boolean;
1915
- ttl: number;
1916
- invalidateOn: string[];
1917
- } | undefined;
1918
- readonly dataQuality?: {
1919
- uniqueness: boolean;
1920
- completeness: number;
1921
- accuracy?: {
1922
- source: string;
1923
- threshold: number;
1924
- } | undefined;
1925
- } | undefined;
1598
+ readonly trackHistory?: boolean | undefined;
1926
1599
  readonly visibleWhen?: {
1927
1600
  dialect: "cel" | "js" | "cron" | "template";
1928
1601
  source?: string | undefined;
@@ -1961,7 +1634,6 @@ declare const SysWebhook: Omit<{
1961
1634
  } | undefined;
1962
1635
  readonly sortable?: boolean | undefined;
1963
1636
  readonly inlineHelpText?: string | undefined;
1964
- readonly trackFeedHistory?: boolean | undefined;
1965
1637
  readonly caseSensitive?: boolean | undefined;
1966
1638
  readonly autonumberFormat?: string | undefined;
1967
1639
  readonly index?: boolean | undefined;
@@ -1983,7 +1655,6 @@ declare const SysWebhook: Omit<{
1983
1655
  readonly required?: boolean | undefined;
1984
1656
  readonly multiple?: boolean | undefined;
1985
1657
  readonly dependencies?: string[] | undefined;
1986
- readonly theme?: string | undefined;
1987
1658
  readonly externalId?: boolean | undefined;
1988
1659
  readonly defaultValue?: unknown;
1989
1660
  readonly group?: string | undefined;
@@ -1991,23 +1662,7 @@ declare const SysWebhook: Omit<{
1991
1662
  readonly system?: boolean | undefined;
1992
1663
  readonly min?: number | undefined;
1993
1664
  readonly max?: number | undefined;
1994
- readonly encryptionConfig?: {
1995
- enabled: boolean;
1996
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
1997
- keyManagement: {
1998
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
1999
- keyId?: string | undefined;
2000
- rotationPolicy?: {
2001
- enabled: boolean;
2002
- frequencyDays: number;
2003
- retainOldVersions: number;
2004
- autoRotate: boolean;
2005
- } | undefined;
2006
- };
2007
- scope: "record" | "field" | "table" | "database";
2008
- deterministicEncryption: boolean;
2009
- searchableEncryption: boolean;
2010
- } | undefined;
1665
+ readonly dimensions?: number | undefined;
2011
1666
  readonly columnName?: string | undefined;
2012
1667
  readonly searchable?: boolean | undefined;
2013
1668
  readonly unique?: boolean | undefined;
@@ -2016,7 +1671,6 @@ declare const SysWebhook: Omit<{
2016
1671
  readonly scale?: number | undefined;
2017
1672
  readonly reference?: string | undefined;
2018
1673
  readonly referenceFilters?: string[] | undefined;
2019
- readonly writeRequiresMasterRead?: boolean | undefined;
2020
1674
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2021
1675
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2022
1676
  readonly inlineTitle?: string | undefined;
@@ -2041,22 +1695,8 @@ declare const SysWebhook: Omit<{
2041
1695
  relationshipField?: string | undefined;
2042
1696
  } | undefined;
2043
1697
  readonly language?: string | undefined;
2044
- readonly lineNumbers?: boolean | undefined;
2045
1698
  readonly maxRating?: number | undefined;
2046
- readonly allowHalf?: boolean | undefined;
2047
- readonly displayMap?: boolean | undefined;
2048
- readonly allowGeocoding?: boolean | undefined;
2049
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
2050
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
2051
- readonly allowAlpha?: boolean | undefined;
2052
- readonly presetColors?: string[] | undefined;
2053
1699
  readonly step?: number | undefined;
2054
- readonly showValue?: boolean | undefined;
2055
- readonly marks?: Record<string, string> | undefined;
2056
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
2057
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
2058
- readonly displayValue?: boolean | undefined;
2059
- readonly allowScanning?: boolean | undefined;
2060
1700
  readonly currencyConfig?: {
2061
1701
  precision: number;
2062
1702
  currencyMode: "fixed" | "dynamic";
@@ -2110,29 +1750,7 @@ declare const SysWebhook: Omit<{
2110
1750
  } | undefined;
2111
1751
  maxVersions?: number | undefined;
2112
1752
  } | undefined;
2113
- readonly maskingRule?: {
2114
- field: string;
2115
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
2116
- preserveFormat: boolean;
2117
- preserveLength: boolean;
2118
- pattern?: string | undefined;
2119
- roles?: string[] | undefined;
2120
- exemptRoles?: string[] | undefined;
2121
- } | undefined;
2122
- readonly auditTrail?: boolean | undefined;
2123
- readonly cached?: {
2124
- enabled: boolean;
2125
- ttl: number;
2126
- invalidateOn: string[];
2127
- } | undefined;
2128
- readonly dataQuality?: {
2129
- uniqueness: boolean;
2130
- completeness: number;
2131
- accuracy?: {
2132
- source: string;
2133
- threshold: number;
2134
- } | undefined;
2135
- } | undefined;
1753
+ readonly trackHistory?: boolean | undefined;
2136
1754
  readonly visibleWhen?: {
2137
1755
  dialect: "cel" | "js" | "cron" | "template";
2138
1756
  source?: string | undefined;
@@ -2171,7 +1789,6 @@ declare const SysWebhook: Omit<{
2171
1789
  } | undefined;
2172
1790
  readonly sortable?: boolean | undefined;
2173
1791
  readonly inlineHelpText?: string | undefined;
2174
- readonly trackFeedHistory?: boolean | undefined;
2175
1792
  readonly caseSensitive?: boolean | undefined;
2176
1793
  readonly autonumberFormat?: string | undefined;
2177
1794
  readonly index?: boolean | undefined;
@@ -2193,7 +1810,6 @@ declare const SysWebhook: Omit<{
2193
1810
  readonly required?: boolean | undefined;
2194
1811
  readonly multiple?: boolean | undefined;
2195
1812
  readonly dependencies?: string[] | undefined;
2196
- readonly theme?: string | undefined;
2197
1813
  readonly externalId?: boolean | undefined;
2198
1814
  readonly defaultValue?: unknown;
2199
1815
  readonly group?: string | undefined;
@@ -2201,23 +1817,7 @@ declare const SysWebhook: Omit<{
2201
1817
  readonly system?: boolean | undefined;
2202
1818
  readonly min?: number | undefined;
2203
1819
  readonly max?: number | undefined;
2204
- readonly encryptionConfig?: {
2205
- enabled: boolean;
2206
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
2207
- keyManagement: {
2208
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
2209
- keyId?: string | undefined;
2210
- rotationPolicy?: {
2211
- enabled: boolean;
2212
- frequencyDays: number;
2213
- retainOldVersions: number;
2214
- autoRotate: boolean;
2215
- } | undefined;
2216
- };
2217
- scope: "record" | "field" | "table" | "database";
2218
- deterministicEncryption: boolean;
2219
- searchableEncryption: boolean;
2220
- } | undefined;
1820
+ readonly dimensions?: number | undefined;
2221
1821
  readonly columnName?: string | undefined;
2222
1822
  readonly searchable?: boolean | undefined;
2223
1823
  readonly unique?: boolean | undefined;
@@ -2226,7 +1826,6 @@ declare const SysWebhook: Omit<{
2226
1826
  readonly scale?: number | undefined;
2227
1827
  readonly reference?: string | undefined;
2228
1828
  readonly referenceFilters?: string[] | undefined;
2229
- readonly writeRequiresMasterRead?: boolean | undefined;
2230
1829
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2231
1830
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2232
1831
  readonly inlineTitle?: string | undefined;
@@ -2251,22 +1850,8 @@ declare const SysWebhook: Omit<{
2251
1850
  relationshipField?: string | undefined;
2252
1851
  } | undefined;
2253
1852
  readonly language?: string | undefined;
2254
- readonly lineNumbers?: boolean | undefined;
2255
1853
  readonly maxRating?: number | undefined;
2256
- readonly allowHalf?: boolean | undefined;
2257
- readonly displayMap?: boolean | undefined;
2258
- readonly allowGeocoding?: boolean | undefined;
2259
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
2260
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
2261
- readonly allowAlpha?: boolean | undefined;
2262
- readonly presetColors?: string[] | undefined;
2263
1854
  readonly step?: number | undefined;
2264
- readonly showValue?: boolean | undefined;
2265
- readonly marks?: Record<string, string> | undefined;
2266
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
2267
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
2268
- readonly displayValue?: boolean | undefined;
2269
- readonly allowScanning?: boolean | undefined;
2270
1855
  readonly currencyConfig?: {
2271
1856
  precision: number;
2272
1857
  currencyMode: "fixed" | "dynamic";
@@ -2320,29 +1905,7 @@ declare const SysWebhook: Omit<{
2320
1905
  } | undefined;
2321
1906
  maxVersions?: number | undefined;
2322
1907
  } | undefined;
2323
- readonly maskingRule?: {
2324
- field: string;
2325
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
2326
- preserveFormat: boolean;
2327
- preserveLength: boolean;
2328
- pattern?: string | undefined;
2329
- roles?: string[] | undefined;
2330
- exemptRoles?: string[] | undefined;
2331
- } | undefined;
2332
- readonly auditTrail?: boolean | undefined;
2333
- readonly cached?: {
2334
- enabled: boolean;
2335
- ttl: number;
2336
- invalidateOn: string[];
2337
- } | undefined;
2338
- readonly dataQuality?: {
2339
- uniqueness: boolean;
2340
- completeness: number;
2341
- accuracy?: {
2342
- source: string;
2343
- threshold: number;
2344
- } | undefined;
2345
- } | undefined;
1908
+ readonly trackHistory?: boolean | undefined;
2346
1909
  readonly visibleWhen?: {
2347
1910
  dialect: "cel" | "js" | "cron" | "template";
2348
1911
  source?: string | undefined;
@@ -2381,7 +1944,6 @@ declare const SysWebhook: Omit<{
2381
1944
  } | undefined;
2382
1945
  readonly sortable?: boolean | undefined;
2383
1946
  readonly inlineHelpText?: string | undefined;
2384
- readonly trackFeedHistory?: boolean | undefined;
2385
1947
  readonly caseSensitive?: boolean | undefined;
2386
1948
  readonly autonumberFormat?: string | undefined;
2387
1949
  readonly index?: boolean | undefined;
@@ -2403,7 +1965,6 @@ declare const SysWebhook: Omit<{
2403
1965
  readonly required?: boolean | undefined;
2404
1966
  readonly multiple?: boolean | undefined;
2405
1967
  readonly dependencies?: string[] | undefined;
2406
- readonly theme?: string | undefined;
2407
1968
  readonly externalId?: boolean | undefined;
2408
1969
  readonly defaultValue?: unknown;
2409
1970
  readonly group?: string | undefined;
@@ -2411,23 +1972,7 @@ declare const SysWebhook: Omit<{
2411
1972
  readonly system?: boolean | undefined;
2412
1973
  readonly min?: number | undefined;
2413
1974
  readonly max?: number | undefined;
2414
- readonly encryptionConfig?: {
2415
- enabled: boolean;
2416
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
2417
- keyManagement: {
2418
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
2419
- keyId?: string | undefined;
2420
- rotationPolicy?: {
2421
- enabled: boolean;
2422
- frequencyDays: number;
2423
- retainOldVersions: number;
2424
- autoRotate: boolean;
2425
- } | undefined;
2426
- };
2427
- scope: "record" | "field" | "table" | "database";
2428
- deterministicEncryption: boolean;
2429
- searchableEncryption: boolean;
2430
- } | undefined;
1975
+ readonly dimensions?: number | undefined;
2431
1976
  readonly columnName?: string | undefined;
2432
1977
  readonly searchable?: boolean | undefined;
2433
1978
  readonly unique?: boolean | undefined;
@@ -2436,7 +1981,6 @@ declare const SysWebhook: Omit<{
2436
1981
  readonly scale?: number | undefined;
2437
1982
  readonly reference?: string | undefined;
2438
1983
  readonly referenceFilters?: string[] | undefined;
2439
- readonly writeRequiresMasterRead?: boolean | undefined;
2440
1984
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2441
1985
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2442
1986
  readonly inlineTitle?: string | undefined;
@@ -2461,22 +2005,8 @@ declare const SysWebhook: Omit<{
2461
2005
  relationshipField?: string | undefined;
2462
2006
  } | undefined;
2463
2007
  readonly language?: string | undefined;
2464
- readonly lineNumbers?: boolean | undefined;
2465
2008
  readonly maxRating?: number | undefined;
2466
- readonly allowHalf?: boolean | undefined;
2467
- readonly displayMap?: boolean | undefined;
2468
- readonly allowGeocoding?: boolean | undefined;
2469
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
2470
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
2471
- readonly allowAlpha?: boolean | undefined;
2472
- readonly presetColors?: string[] | undefined;
2473
2009
  readonly step?: number | undefined;
2474
- readonly showValue?: boolean | undefined;
2475
- readonly marks?: Record<string, string> | undefined;
2476
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
2477
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
2478
- readonly displayValue?: boolean | undefined;
2479
- readonly allowScanning?: boolean | undefined;
2480
2010
  readonly currencyConfig?: {
2481
2011
  precision: number;
2482
2012
  currencyMode: "fixed" | "dynamic";
@@ -2530,29 +2060,7 @@ declare const SysWebhook: Omit<{
2530
2060
  } | undefined;
2531
2061
  maxVersions?: number | undefined;
2532
2062
  } | undefined;
2533
- readonly maskingRule?: {
2534
- field: string;
2535
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
2536
- preserveFormat: boolean;
2537
- preserveLength: boolean;
2538
- pattern?: string | undefined;
2539
- roles?: string[] | undefined;
2540
- exemptRoles?: string[] | undefined;
2541
- } | undefined;
2542
- readonly auditTrail?: boolean | undefined;
2543
- readonly cached?: {
2544
- enabled: boolean;
2545
- ttl: number;
2546
- invalidateOn: string[];
2547
- } | undefined;
2548
- readonly dataQuality?: {
2549
- uniqueness: boolean;
2550
- completeness: number;
2551
- accuracy?: {
2552
- source: string;
2553
- threshold: number;
2554
- } | undefined;
2555
- } | undefined;
2063
+ readonly trackHistory?: boolean | undefined;
2556
2064
  readonly visibleWhen?: {
2557
2065
  dialect: "cel" | "js" | "cron" | "template";
2558
2066
  source?: string | undefined;
@@ -2591,7 +2099,6 @@ declare const SysWebhook: Omit<{
2591
2099
  } | undefined;
2592
2100
  readonly sortable?: boolean | undefined;
2593
2101
  readonly inlineHelpText?: string | undefined;
2594
- readonly trackFeedHistory?: boolean | undefined;
2595
2102
  readonly caseSensitive?: boolean | undefined;
2596
2103
  readonly autonumberFormat?: string | undefined;
2597
2104
  readonly index?: boolean | undefined;
@@ -2613,7 +2120,6 @@ declare const SysWebhook: Omit<{
2613
2120
  readonly required?: boolean | undefined;
2614
2121
  readonly multiple?: boolean | undefined;
2615
2122
  readonly dependencies?: string[] | undefined;
2616
- readonly theme?: string | undefined;
2617
2123
  readonly externalId?: boolean | undefined;
2618
2124
  readonly defaultValue?: unknown;
2619
2125
  readonly group?: string | undefined;
@@ -2621,23 +2127,7 @@ declare const SysWebhook: Omit<{
2621
2127
  readonly system?: boolean | undefined;
2622
2128
  readonly min?: number | undefined;
2623
2129
  readonly max?: number | undefined;
2624
- readonly encryptionConfig?: {
2625
- enabled: boolean;
2626
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
2627
- keyManagement: {
2628
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
2629
- keyId?: string | undefined;
2630
- rotationPolicy?: {
2631
- enabled: boolean;
2632
- frequencyDays: number;
2633
- retainOldVersions: number;
2634
- autoRotate: boolean;
2635
- } | undefined;
2636
- };
2637
- scope: "record" | "field" | "table" | "database";
2638
- deterministicEncryption: boolean;
2639
- searchableEncryption: boolean;
2640
- } | undefined;
2130
+ readonly dimensions?: number | undefined;
2641
2131
  readonly columnName?: string | undefined;
2642
2132
  readonly searchable?: boolean | undefined;
2643
2133
  readonly unique?: boolean | undefined;
@@ -2646,7 +2136,6 @@ declare const SysWebhook: Omit<{
2646
2136
  readonly scale?: number | undefined;
2647
2137
  readonly reference?: string | undefined;
2648
2138
  readonly referenceFilters?: string[] | undefined;
2649
- readonly writeRequiresMasterRead?: boolean | undefined;
2650
2139
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2651
2140
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2652
2141
  readonly inlineTitle?: string | undefined;
@@ -2671,22 +2160,8 @@ declare const SysWebhook: Omit<{
2671
2160
  relationshipField?: string | undefined;
2672
2161
  } | undefined;
2673
2162
  readonly language?: string | undefined;
2674
- readonly lineNumbers?: boolean | undefined;
2675
2163
  readonly maxRating?: number | undefined;
2676
- readonly allowHalf?: boolean | undefined;
2677
- readonly displayMap?: boolean | undefined;
2678
- readonly allowGeocoding?: boolean | undefined;
2679
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
2680
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
2681
- readonly allowAlpha?: boolean | undefined;
2682
- readonly presetColors?: string[] | undefined;
2683
2164
  readonly step?: number | undefined;
2684
- readonly showValue?: boolean | undefined;
2685
- readonly marks?: Record<string, string> | undefined;
2686
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
2687
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
2688
- readonly displayValue?: boolean | undefined;
2689
- readonly allowScanning?: boolean | undefined;
2690
2165
  readonly currencyConfig?: {
2691
2166
  precision: number;
2692
2167
  currencyMode: "fixed" | "dynamic";
@@ -2740,29 +2215,7 @@ declare const SysWebhook: Omit<{
2740
2215
  } | undefined;
2741
2216
  maxVersions?: number | undefined;
2742
2217
  } | undefined;
2743
- readonly maskingRule?: {
2744
- field: string;
2745
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
2746
- preserveFormat: boolean;
2747
- preserveLength: boolean;
2748
- pattern?: string | undefined;
2749
- roles?: string[] | undefined;
2750
- exemptRoles?: string[] | undefined;
2751
- } | undefined;
2752
- readonly auditTrail?: boolean | undefined;
2753
- readonly cached?: {
2754
- enabled: boolean;
2755
- ttl: number;
2756
- invalidateOn: string[];
2757
- } | undefined;
2758
- readonly dataQuality?: {
2759
- uniqueness: boolean;
2760
- completeness: number;
2761
- accuracy?: {
2762
- source: string;
2763
- threshold: number;
2764
- } | undefined;
2765
- } | undefined;
2218
+ readonly trackHistory?: boolean | undefined;
2766
2219
  readonly visibleWhen?: {
2767
2220
  dialect: "cel" | "js" | "cron" | "template";
2768
2221
  source?: string | undefined;
@@ -2801,7 +2254,6 @@ declare const SysWebhook: Omit<{
2801
2254
  } | undefined;
2802
2255
  readonly sortable?: boolean | undefined;
2803
2256
  readonly inlineHelpText?: string | undefined;
2804
- readonly trackFeedHistory?: boolean | undefined;
2805
2257
  readonly caseSensitive?: boolean | undefined;
2806
2258
  readonly autonumberFormat?: string | undefined;
2807
2259
  readonly index?: boolean | undefined;
@@ -2823,7 +2275,6 @@ declare const SysWebhook: Omit<{
2823
2275
  readonly required?: boolean | undefined;
2824
2276
  readonly multiple?: boolean | undefined;
2825
2277
  readonly dependencies?: string[] | undefined;
2826
- readonly theme?: string | undefined;
2827
2278
  readonly externalId?: boolean | undefined;
2828
2279
  readonly defaultValue?: unknown;
2829
2280
  readonly group?: string | undefined;
@@ -2831,23 +2282,7 @@ declare const SysWebhook: Omit<{
2831
2282
  readonly system?: boolean | undefined;
2832
2283
  readonly min?: number | undefined;
2833
2284
  readonly max?: number | undefined;
2834
- readonly encryptionConfig?: {
2835
- enabled: boolean;
2836
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
2837
- keyManagement: {
2838
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
2839
- keyId?: string | undefined;
2840
- rotationPolicy?: {
2841
- enabled: boolean;
2842
- frequencyDays: number;
2843
- retainOldVersions: number;
2844
- autoRotate: boolean;
2845
- } | undefined;
2846
- };
2847
- scope: "record" | "field" | "table" | "database";
2848
- deterministicEncryption: boolean;
2849
- searchableEncryption: boolean;
2850
- } | undefined;
2285
+ readonly dimensions?: number | undefined;
2851
2286
  readonly columnName?: string | undefined;
2852
2287
  readonly searchable?: boolean | undefined;
2853
2288
  readonly unique?: boolean | undefined;
@@ -2856,7 +2291,6 @@ declare const SysWebhook: Omit<{
2856
2291
  readonly scale?: number | undefined;
2857
2292
  readonly reference?: string | undefined;
2858
2293
  readonly referenceFilters?: string[] | undefined;
2859
- readonly writeRequiresMasterRead?: boolean | undefined;
2860
2294
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
2861
2295
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
2862
2296
  readonly inlineTitle?: string | undefined;
@@ -2881,22 +2315,8 @@ declare const SysWebhook: Omit<{
2881
2315
  relationshipField?: string | undefined;
2882
2316
  } | undefined;
2883
2317
  readonly language?: string | undefined;
2884
- readonly lineNumbers?: boolean | undefined;
2885
2318
  readonly maxRating?: number | undefined;
2886
- readonly allowHalf?: boolean | undefined;
2887
- readonly displayMap?: boolean | undefined;
2888
- readonly allowGeocoding?: boolean | undefined;
2889
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
2890
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
2891
- readonly allowAlpha?: boolean | undefined;
2892
- readonly presetColors?: string[] | undefined;
2893
2319
  readonly step?: number | undefined;
2894
- readonly showValue?: boolean | undefined;
2895
- readonly marks?: Record<string, string> | undefined;
2896
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
2897
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
2898
- readonly displayValue?: boolean | undefined;
2899
- readonly allowScanning?: boolean | undefined;
2900
2320
  readonly currencyConfig?: {
2901
2321
  precision: number;
2902
2322
  currencyMode: "fixed" | "dynamic";
@@ -2950,29 +2370,7 @@ declare const SysWebhook: Omit<{
2950
2370
  } | undefined;
2951
2371
  maxVersions?: number | undefined;
2952
2372
  } | undefined;
2953
- readonly maskingRule?: {
2954
- field: string;
2955
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
2956
- preserveFormat: boolean;
2957
- preserveLength: boolean;
2958
- pattern?: string | undefined;
2959
- roles?: string[] | undefined;
2960
- exemptRoles?: string[] | undefined;
2961
- } | undefined;
2962
- readonly auditTrail?: boolean | undefined;
2963
- readonly cached?: {
2964
- enabled: boolean;
2965
- ttl: number;
2966
- invalidateOn: string[];
2967
- } | undefined;
2968
- readonly dataQuality?: {
2969
- uniqueness: boolean;
2970
- completeness: number;
2971
- accuracy?: {
2972
- source: string;
2973
- threshold: number;
2974
- } | undefined;
2975
- } | undefined;
2373
+ readonly trackHistory?: boolean | undefined;
2976
2374
  readonly visibleWhen?: {
2977
2375
  dialect: "cel" | "js" | "cron" | "template";
2978
2376
  source?: string | undefined;
@@ -3011,7 +2409,6 @@ declare const SysWebhook: Omit<{
3011
2409
  } | undefined;
3012
2410
  readonly sortable?: boolean | undefined;
3013
2411
  readonly inlineHelpText?: string | undefined;
3014
- readonly trackFeedHistory?: boolean | undefined;
3015
2412
  readonly caseSensitive?: boolean | undefined;
3016
2413
  readonly autonumberFormat?: string | undefined;
3017
2414
  readonly index?: boolean | undefined;
@@ -3033,7 +2430,6 @@ declare const SysWebhook: Omit<{
3033
2430
  readonly required?: boolean | undefined;
3034
2431
  readonly multiple?: boolean | undefined;
3035
2432
  readonly dependencies?: string[] | undefined;
3036
- readonly theme?: string | undefined;
3037
2433
  readonly externalId?: boolean | undefined;
3038
2434
  readonly defaultValue?: unknown;
3039
2435
  readonly group?: string | undefined;
@@ -3041,23 +2437,7 @@ declare const SysWebhook: Omit<{
3041
2437
  readonly system?: boolean | undefined;
3042
2438
  readonly min?: number | undefined;
3043
2439
  readonly max?: number | undefined;
3044
- readonly encryptionConfig?: {
3045
- enabled: boolean;
3046
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
3047
- keyManagement: {
3048
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
3049
- keyId?: string | undefined;
3050
- rotationPolicy?: {
3051
- enabled: boolean;
3052
- frequencyDays: number;
3053
- retainOldVersions: number;
3054
- autoRotate: boolean;
3055
- } | undefined;
3056
- };
3057
- scope: "record" | "field" | "table" | "database";
3058
- deterministicEncryption: boolean;
3059
- searchableEncryption: boolean;
3060
- } | undefined;
2440
+ readonly dimensions?: number | undefined;
3061
2441
  readonly columnName?: string | undefined;
3062
2442
  readonly searchable?: boolean | undefined;
3063
2443
  readonly unique?: boolean | undefined;
@@ -3066,7 +2446,6 @@ declare const SysWebhook: Omit<{
3066
2446
  readonly scale?: number | undefined;
3067
2447
  readonly reference?: string | undefined;
3068
2448
  readonly referenceFilters?: string[] | undefined;
3069
- readonly writeRequiresMasterRead?: boolean | undefined;
3070
2449
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
3071
2450
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
3072
2451
  readonly inlineTitle?: string | undefined;
@@ -3091,22 +2470,8 @@ declare const SysWebhook: Omit<{
3091
2470
  relationshipField?: string | undefined;
3092
2471
  } | undefined;
3093
2472
  readonly language?: string | undefined;
3094
- readonly lineNumbers?: boolean | undefined;
3095
2473
  readonly maxRating?: number | undefined;
3096
- readonly allowHalf?: boolean | undefined;
3097
- readonly displayMap?: boolean | undefined;
3098
- readonly allowGeocoding?: boolean | undefined;
3099
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
3100
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
3101
- readonly allowAlpha?: boolean | undefined;
3102
- readonly presetColors?: string[] | undefined;
3103
2474
  readonly step?: number | undefined;
3104
- readonly showValue?: boolean | undefined;
3105
- readonly marks?: Record<string, string> | undefined;
3106
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
3107
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
3108
- readonly displayValue?: boolean | undefined;
3109
- readonly allowScanning?: boolean | undefined;
3110
2475
  readonly currencyConfig?: {
3111
2476
  precision: number;
3112
2477
  currencyMode: "fixed" | "dynamic";
@@ -3160,29 +2525,7 @@ declare const SysWebhook: Omit<{
3160
2525
  } | undefined;
3161
2526
  maxVersions?: number | undefined;
3162
2527
  } | undefined;
3163
- readonly maskingRule?: {
3164
- field: string;
3165
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
3166
- preserveFormat: boolean;
3167
- preserveLength: boolean;
3168
- pattern?: string | undefined;
3169
- roles?: string[] | undefined;
3170
- exemptRoles?: string[] | undefined;
3171
- } | undefined;
3172
- readonly auditTrail?: boolean | undefined;
3173
- readonly cached?: {
3174
- enabled: boolean;
3175
- ttl: number;
3176
- invalidateOn: string[];
3177
- } | undefined;
3178
- readonly dataQuality?: {
3179
- uniqueness: boolean;
3180
- completeness: number;
3181
- accuracy?: {
3182
- source: string;
3183
- threshold: number;
3184
- } | undefined;
3185
- } | undefined;
2528
+ readonly trackHistory?: boolean | undefined;
3186
2529
  readonly visibleWhen?: {
3187
2530
  dialect: "cel" | "js" | "cron" | "template";
3188
2531
  source?: string | undefined;
@@ -3221,7 +2564,6 @@ declare const SysWebhook: Omit<{
3221
2564
  } | undefined;
3222
2565
  readonly sortable?: boolean | undefined;
3223
2566
  readonly inlineHelpText?: string | undefined;
3224
- readonly trackFeedHistory?: boolean | undefined;
3225
2567
  readonly caseSensitive?: boolean | undefined;
3226
2568
  readonly autonumberFormat?: string | undefined;
3227
2569
  readonly index?: boolean | undefined;
@@ -3243,7 +2585,6 @@ declare const SysWebhook: Omit<{
3243
2585
  readonly required?: boolean | undefined;
3244
2586
  readonly multiple?: boolean | undefined;
3245
2587
  readonly dependencies?: string[] | undefined;
3246
- readonly theme?: string | undefined;
3247
2588
  readonly externalId?: boolean | undefined;
3248
2589
  readonly defaultValue?: unknown;
3249
2590
  readonly group?: string | undefined;
@@ -3251,23 +2592,7 @@ declare const SysWebhook: Omit<{
3251
2592
  readonly system?: boolean | undefined;
3252
2593
  readonly min?: number | undefined;
3253
2594
  readonly max?: number | undefined;
3254
- readonly encryptionConfig?: {
3255
- enabled: boolean;
3256
- algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
3257
- keyManagement: {
3258
- provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
3259
- keyId?: string | undefined;
3260
- rotationPolicy?: {
3261
- enabled: boolean;
3262
- frequencyDays: number;
3263
- retainOldVersions: number;
3264
- autoRotate: boolean;
3265
- } | undefined;
3266
- };
3267
- scope: "record" | "field" | "table" | "database";
3268
- deterministicEncryption: boolean;
3269
- searchableEncryption: boolean;
3270
- } | undefined;
2595
+ readonly dimensions?: number | undefined;
3271
2596
  readonly columnName?: string | undefined;
3272
2597
  readonly searchable?: boolean | undefined;
3273
2598
  readonly unique?: boolean | undefined;
@@ -3276,7 +2601,6 @@ declare const SysWebhook: Omit<{
3276
2601
  readonly scale?: number | undefined;
3277
2602
  readonly reference?: string | undefined;
3278
2603
  readonly referenceFilters?: string[] | undefined;
3279
- readonly writeRequiresMasterRead?: boolean | undefined;
3280
2604
  readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
3281
2605
  readonly inlineEdit?: boolean | "grid" | "form" | undefined;
3282
2606
  readonly inlineTitle?: string | undefined;
@@ -3301,22 +2625,8 @@ declare const SysWebhook: Omit<{
3301
2625
  relationshipField?: string | undefined;
3302
2626
  } | undefined;
3303
2627
  readonly language?: string | undefined;
3304
- readonly lineNumbers?: boolean | undefined;
3305
2628
  readonly maxRating?: number | undefined;
3306
- readonly allowHalf?: boolean | undefined;
3307
- readonly displayMap?: boolean | undefined;
3308
- readonly allowGeocoding?: boolean | undefined;
3309
- readonly addressFormat?: "us" | "uk" | "international" | undefined;
3310
- readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
3311
- readonly allowAlpha?: boolean | undefined;
3312
- readonly presetColors?: string[] | undefined;
3313
2629
  readonly step?: number | undefined;
3314
- readonly showValue?: boolean | undefined;
3315
- readonly marks?: Record<string, string> | undefined;
3316
- readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
3317
- readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
3318
- readonly displayValue?: boolean | undefined;
3319
- readonly allowScanning?: boolean | undefined;
3320
2630
  readonly currencyConfig?: {
3321
2631
  precision: number;
3322
2632
  currencyMode: "fixed" | "dynamic";
@@ -3370,29 +2680,7 @@ declare const SysWebhook: Omit<{
3370
2680
  } | undefined;
3371
2681
  maxVersions?: number | undefined;
3372
2682
  } | undefined;
3373
- readonly maskingRule?: {
3374
- field: string;
3375
- strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
3376
- preserveFormat: boolean;
3377
- preserveLength: boolean;
3378
- pattern?: string | undefined;
3379
- roles?: string[] | undefined;
3380
- exemptRoles?: string[] | undefined;
3381
- } | undefined;
3382
- readonly auditTrail?: boolean | undefined;
3383
- readonly cached?: {
3384
- enabled: boolean;
3385
- ttl: number;
3386
- invalidateOn: string[];
3387
- } | undefined;
3388
- readonly dataQuality?: {
3389
- uniqueness: boolean;
3390
- completeness: number;
3391
- accuracy?: {
3392
- source: string;
3393
- threshold: number;
3394
- } | undefined;
3395
- } | undefined;
2683
+ readonly trackHistory?: boolean | undefined;
3396
2684
  readonly visibleWhen?: {
3397
2685
  dialect: "cel" | "js" | "cron" | "template";
3398
2686
  source?: string | undefined;
@@ -3431,7 +2719,6 @@ declare const SysWebhook: Omit<{
3431
2719
  } | undefined;
3432
2720
  readonly sortable?: boolean | undefined;
3433
2721
  readonly inlineHelpText?: string | undefined;
3434
- readonly trackFeedHistory?: boolean | undefined;
3435
2722
  readonly caseSensitive?: boolean | undefined;
3436
2723
  readonly autonumberFormat?: string | undefined;
3437
2724
  readonly index?: boolean | undefined;