@objectstack/plugin-sharing 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/.turbo/turbo-build.log +10 -10
- package/CHANGELOG.md +35 -0
- package/dist/index.d.mts +112 -2526
- package/dist/index.d.ts +112 -2526
- package/dist/index.js +23 -23
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +23 -23
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -5
- package/src/sharing-plugin.ts +30 -26
package/dist/index.d.ts
CHANGED
|
@@ -46,7 +46,6 @@ declare const SysRecordShare: Omit<{
|
|
|
46
46
|
multiple: boolean;
|
|
47
47
|
unique: boolean;
|
|
48
48
|
deleteBehavior: "set_null" | "cascade" | "restrict";
|
|
49
|
-
auditTrail: boolean;
|
|
50
49
|
hidden: boolean;
|
|
51
50
|
readonly: boolean;
|
|
52
51
|
sortable: boolean;
|
|
@@ -72,7 +71,6 @@ declare const SysRecordShare: Omit<{
|
|
|
72
71
|
}[] | undefined;
|
|
73
72
|
reference?: string | undefined;
|
|
74
73
|
referenceFilters?: string[] | undefined;
|
|
75
|
-
writeRequiresMasterRead?: boolean | undefined;
|
|
76
74
|
inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
77
75
|
inlineTitle?: string | undefined;
|
|
78
76
|
inlineColumns?: any[] | undefined;
|
|
@@ -104,28 +102,14 @@ declare const SysRecordShare: Omit<{
|
|
|
104
102
|
relationshipField?: string | undefined;
|
|
105
103
|
} | undefined;
|
|
106
104
|
language?: string | undefined;
|
|
107
|
-
theme?: string | undefined;
|
|
108
|
-
lineNumbers?: boolean | undefined;
|
|
109
105
|
maxRating?: number | undefined;
|
|
110
|
-
allowHalf?: boolean | undefined;
|
|
111
|
-
displayMap?: boolean | undefined;
|
|
112
|
-
allowGeocoding?: boolean | undefined;
|
|
113
|
-
addressFormat?: "us" | "uk" | "international" | undefined;
|
|
114
|
-
colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
115
|
-
allowAlpha?: boolean | undefined;
|
|
116
|
-
presetColors?: string[] | undefined;
|
|
117
106
|
step?: number | undefined;
|
|
118
|
-
showValue?: boolean | undefined;
|
|
119
|
-
marks?: Record<string, string> | undefined;
|
|
120
|
-
barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
121
|
-
qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
122
|
-
displayValue?: boolean | undefined;
|
|
123
|
-
allowScanning?: boolean | undefined;
|
|
124
107
|
currencyConfig?: {
|
|
125
108
|
precision: number;
|
|
126
109
|
currencyMode: "fixed" | "dynamic";
|
|
127
110
|
defaultCurrency: string;
|
|
128
111
|
} | undefined;
|
|
112
|
+
dimensions?: number | undefined;
|
|
129
113
|
vectorConfig?: {
|
|
130
114
|
dimensions: number;
|
|
131
115
|
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
@@ -174,46 +158,8 @@ declare const SysRecordShare: Omit<{
|
|
|
174
158
|
} | undefined;
|
|
175
159
|
maxVersions?: number | undefined;
|
|
176
160
|
} | undefined;
|
|
177
|
-
|
|
178
|
-
enabled: boolean;
|
|
179
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
180
|
-
keyManagement: {
|
|
181
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
182
|
-
keyId?: string | undefined;
|
|
183
|
-
rotationPolicy?: {
|
|
184
|
-
enabled: boolean;
|
|
185
|
-
frequencyDays: number;
|
|
186
|
-
retainOldVersions: number;
|
|
187
|
-
autoRotate: boolean;
|
|
188
|
-
} | undefined;
|
|
189
|
-
};
|
|
190
|
-
scope: "record" | "field" | "table" | "database";
|
|
191
|
-
deterministicEncryption: boolean;
|
|
192
|
-
searchableEncryption: boolean;
|
|
193
|
-
} | undefined;
|
|
194
|
-
maskingRule?: {
|
|
195
|
-
field: string;
|
|
196
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
197
|
-
preserveFormat: boolean;
|
|
198
|
-
preserveLength: boolean;
|
|
199
|
-
pattern?: string | undefined;
|
|
200
|
-
roles?: string[] | undefined;
|
|
201
|
-
exemptRoles?: string[] | undefined;
|
|
202
|
-
} | undefined;
|
|
161
|
+
trackHistory?: boolean | undefined;
|
|
203
162
|
dependencies?: string[] | undefined;
|
|
204
|
-
cached?: {
|
|
205
|
-
enabled: boolean;
|
|
206
|
-
ttl: number;
|
|
207
|
-
invalidateOn: string[];
|
|
208
|
-
} | undefined;
|
|
209
|
-
dataQuality?: {
|
|
210
|
-
uniqueness: boolean;
|
|
211
|
-
completeness: number;
|
|
212
|
-
accuracy?: {
|
|
213
|
-
source: string;
|
|
214
|
-
threshold: number;
|
|
215
|
-
} | undefined;
|
|
216
|
-
} | undefined;
|
|
217
163
|
group?: string | undefined;
|
|
218
164
|
visibleWhen?: {
|
|
219
165
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -285,7 +231,6 @@ declare const SysRecordShare: Omit<{
|
|
|
285
231
|
} | undefined;
|
|
286
232
|
system?: boolean | undefined;
|
|
287
233
|
inlineHelpText?: string | undefined;
|
|
288
|
-
trackFeedHistory?: boolean | undefined;
|
|
289
234
|
caseSensitive?: boolean | undefined;
|
|
290
235
|
autonumberFormat?: string | undefined;
|
|
291
236
|
}>;
|
|
@@ -376,12 +321,13 @@ declare const SysRecordShare: Omit<{
|
|
|
376
321
|
key: string;
|
|
377
322
|
interval?: string | undefined;
|
|
378
323
|
} | undefined;
|
|
379
|
-
cdc?: {
|
|
380
|
-
enabled: boolean;
|
|
381
|
-
events: ("delete" | "update" | "insert")[];
|
|
382
|
-
destination: string;
|
|
383
|
-
} | undefined;
|
|
384
324
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
325
|
+
activityMilestones?: {
|
|
326
|
+
field: string;
|
|
327
|
+
value: string;
|
|
328
|
+
summary: string;
|
|
329
|
+
type?: string | undefined;
|
|
330
|
+
}[] | undefined;
|
|
385
331
|
displayNameField?: string | undefined;
|
|
386
332
|
recordName?: {
|
|
387
333
|
type: "text" | "autonumber";
|
|
@@ -692,7 +638,6 @@ declare const SysRecordShare: Omit<{
|
|
|
692
638
|
clone: boolean;
|
|
693
639
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
694
640
|
} | undefined;
|
|
695
|
-
recordTypes?: string[] | undefined;
|
|
696
641
|
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
697
642
|
publicSharing?: {
|
|
698
643
|
enabled: boolean;
|
|
@@ -749,6 +694,8 @@ declare const SysRecordShare: Omit<{
|
|
|
749
694
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
750
695
|
confirmText?: string | undefined;
|
|
751
696
|
successMessage?: string | undefined;
|
|
697
|
+
errorMessage?: string | undefined;
|
|
698
|
+
undoable?: boolean | undefined;
|
|
752
699
|
resultDialog?: {
|
|
753
700
|
title?: string | undefined;
|
|
754
701
|
description?: string | undefined;
|
|
@@ -982,7 +929,6 @@ declare const SysRecordShare: Omit<{
|
|
|
982
929
|
readonly required?: boolean | undefined;
|
|
983
930
|
readonly multiple?: boolean | undefined;
|
|
984
931
|
readonly dependencies?: string[] | undefined;
|
|
985
|
-
readonly theme?: string | undefined;
|
|
986
932
|
readonly externalId?: boolean | undefined;
|
|
987
933
|
readonly defaultValue?: unknown;
|
|
988
934
|
readonly group?: string | undefined;
|
|
@@ -990,23 +936,7 @@ declare const SysRecordShare: Omit<{
|
|
|
990
936
|
readonly system?: boolean | undefined;
|
|
991
937
|
readonly min?: number | undefined;
|
|
992
938
|
readonly max?: number | undefined;
|
|
993
|
-
readonly
|
|
994
|
-
enabled: boolean;
|
|
995
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
996
|
-
keyManagement: {
|
|
997
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
998
|
-
keyId?: string | undefined;
|
|
999
|
-
rotationPolicy?: {
|
|
1000
|
-
enabled: boolean;
|
|
1001
|
-
frequencyDays: number;
|
|
1002
|
-
retainOldVersions: number;
|
|
1003
|
-
autoRotate: boolean;
|
|
1004
|
-
} | undefined;
|
|
1005
|
-
};
|
|
1006
|
-
scope: "record" | "field" | "table" | "database";
|
|
1007
|
-
deterministicEncryption: boolean;
|
|
1008
|
-
searchableEncryption: boolean;
|
|
1009
|
-
} | undefined;
|
|
939
|
+
readonly dimensions?: number | undefined;
|
|
1010
940
|
readonly columnName?: string | undefined;
|
|
1011
941
|
readonly searchable?: boolean | undefined;
|
|
1012
942
|
readonly unique?: boolean | undefined;
|
|
@@ -1015,7 +945,6 @@ declare const SysRecordShare: Omit<{
|
|
|
1015
945
|
readonly scale?: number | undefined;
|
|
1016
946
|
readonly reference?: string | undefined;
|
|
1017
947
|
readonly referenceFilters?: string[] | undefined;
|
|
1018
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1019
948
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1020
949
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1021
950
|
readonly inlineTitle?: string | undefined;
|
|
@@ -1040,22 +969,8 @@ declare const SysRecordShare: Omit<{
|
|
|
1040
969
|
relationshipField?: string | undefined;
|
|
1041
970
|
} | undefined;
|
|
1042
971
|
readonly language?: string | undefined;
|
|
1043
|
-
readonly lineNumbers?: boolean | undefined;
|
|
1044
972
|
readonly maxRating?: number | undefined;
|
|
1045
|
-
readonly allowHalf?: boolean | undefined;
|
|
1046
|
-
readonly displayMap?: boolean | undefined;
|
|
1047
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
1048
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
1049
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1050
|
-
readonly allowAlpha?: boolean | undefined;
|
|
1051
|
-
readonly presetColors?: string[] | undefined;
|
|
1052
973
|
readonly step?: number | undefined;
|
|
1053
|
-
readonly showValue?: boolean | undefined;
|
|
1054
|
-
readonly marks?: Record<string, string> | undefined;
|
|
1055
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1056
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1057
|
-
readonly displayValue?: boolean | undefined;
|
|
1058
|
-
readonly allowScanning?: boolean | undefined;
|
|
1059
974
|
readonly currencyConfig?: {
|
|
1060
975
|
precision: number;
|
|
1061
976
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -1109,29 +1024,7 @@ declare const SysRecordShare: Omit<{
|
|
|
1109
1024
|
} | undefined;
|
|
1110
1025
|
maxVersions?: number | undefined;
|
|
1111
1026
|
} | undefined;
|
|
1112
|
-
readonly
|
|
1113
|
-
field: string;
|
|
1114
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
1115
|
-
preserveFormat: boolean;
|
|
1116
|
-
preserveLength: boolean;
|
|
1117
|
-
pattern?: string | undefined;
|
|
1118
|
-
roles?: string[] | undefined;
|
|
1119
|
-
exemptRoles?: string[] | undefined;
|
|
1120
|
-
} | undefined;
|
|
1121
|
-
readonly auditTrail?: boolean | undefined;
|
|
1122
|
-
readonly cached?: {
|
|
1123
|
-
enabled: boolean;
|
|
1124
|
-
ttl: number;
|
|
1125
|
-
invalidateOn: string[];
|
|
1126
|
-
} | undefined;
|
|
1127
|
-
readonly dataQuality?: {
|
|
1128
|
-
uniqueness: boolean;
|
|
1129
|
-
completeness: number;
|
|
1130
|
-
accuracy?: {
|
|
1131
|
-
source: string;
|
|
1132
|
-
threshold: number;
|
|
1133
|
-
} | undefined;
|
|
1134
|
-
} | undefined;
|
|
1027
|
+
readonly trackHistory?: boolean | undefined;
|
|
1135
1028
|
readonly visibleWhen?: {
|
|
1136
1029
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1137
1030
|
source?: string | undefined;
|
|
@@ -1170,7 +1063,6 @@ declare const SysRecordShare: Omit<{
|
|
|
1170
1063
|
} | undefined;
|
|
1171
1064
|
readonly sortable?: boolean | undefined;
|
|
1172
1065
|
readonly inlineHelpText?: string | undefined;
|
|
1173
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
1174
1066
|
readonly caseSensitive?: boolean | undefined;
|
|
1175
1067
|
readonly autonumberFormat?: string | undefined;
|
|
1176
1068
|
readonly index?: boolean | undefined;
|
|
@@ -1192,7 +1084,6 @@ declare const SysRecordShare: Omit<{
|
|
|
1192
1084
|
readonly required?: boolean | undefined;
|
|
1193
1085
|
readonly multiple?: boolean | undefined;
|
|
1194
1086
|
readonly dependencies?: string[] | undefined;
|
|
1195
|
-
readonly theme?: string | undefined;
|
|
1196
1087
|
readonly externalId?: boolean | undefined;
|
|
1197
1088
|
readonly defaultValue?: unknown;
|
|
1198
1089
|
readonly group?: string | undefined;
|
|
@@ -1200,23 +1091,7 @@ declare const SysRecordShare: Omit<{
|
|
|
1200
1091
|
readonly system?: boolean | undefined;
|
|
1201
1092
|
readonly min?: number | undefined;
|
|
1202
1093
|
readonly max?: number | undefined;
|
|
1203
|
-
readonly
|
|
1204
|
-
enabled: boolean;
|
|
1205
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
1206
|
-
keyManagement: {
|
|
1207
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
1208
|
-
keyId?: string | undefined;
|
|
1209
|
-
rotationPolicy?: {
|
|
1210
|
-
enabled: boolean;
|
|
1211
|
-
frequencyDays: number;
|
|
1212
|
-
retainOldVersions: number;
|
|
1213
|
-
autoRotate: boolean;
|
|
1214
|
-
} | undefined;
|
|
1215
|
-
};
|
|
1216
|
-
scope: "record" | "field" | "table" | "database";
|
|
1217
|
-
deterministicEncryption: boolean;
|
|
1218
|
-
searchableEncryption: boolean;
|
|
1219
|
-
} | undefined;
|
|
1094
|
+
readonly dimensions?: number | undefined;
|
|
1220
1095
|
readonly columnName?: string | undefined;
|
|
1221
1096
|
readonly searchable?: boolean | undefined;
|
|
1222
1097
|
readonly unique?: boolean | undefined;
|
|
@@ -1225,7 +1100,6 @@ declare const SysRecordShare: Omit<{
|
|
|
1225
1100
|
readonly scale?: number | undefined;
|
|
1226
1101
|
readonly reference?: string | undefined;
|
|
1227
1102
|
readonly referenceFilters?: string[] | undefined;
|
|
1228
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1229
1103
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1230
1104
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1231
1105
|
readonly inlineTitle?: string | undefined;
|
|
@@ -1250,22 +1124,8 @@ declare const SysRecordShare: Omit<{
|
|
|
1250
1124
|
relationshipField?: string | undefined;
|
|
1251
1125
|
} | undefined;
|
|
1252
1126
|
readonly language?: string | undefined;
|
|
1253
|
-
readonly lineNumbers?: boolean | undefined;
|
|
1254
1127
|
readonly maxRating?: number | undefined;
|
|
1255
|
-
readonly allowHalf?: boolean | undefined;
|
|
1256
|
-
readonly displayMap?: boolean | undefined;
|
|
1257
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
1258
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
1259
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1260
|
-
readonly allowAlpha?: boolean | undefined;
|
|
1261
|
-
readonly presetColors?: string[] | undefined;
|
|
1262
1128
|
readonly step?: number | undefined;
|
|
1263
|
-
readonly showValue?: boolean | undefined;
|
|
1264
|
-
readonly marks?: Record<string, string> | undefined;
|
|
1265
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1266
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1267
|
-
readonly displayValue?: boolean | undefined;
|
|
1268
|
-
readonly allowScanning?: boolean | undefined;
|
|
1269
1129
|
readonly currencyConfig?: {
|
|
1270
1130
|
precision: number;
|
|
1271
1131
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -1319,29 +1179,7 @@ declare const SysRecordShare: Omit<{
|
|
|
1319
1179
|
} | undefined;
|
|
1320
1180
|
maxVersions?: number | undefined;
|
|
1321
1181
|
} | undefined;
|
|
1322
|
-
readonly
|
|
1323
|
-
field: string;
|
|
1324
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
1325
|
-
preserveFormat: boolean;
|
|
1326
|
-
preserveLength: boolean;
|
|
1327
|
-
pattern?: string | undefined;
|
|
1328
|
-
roles?: string[] | undefined;
|
|
1329
|
-
exemptRoles?: string[] | undefined;
|
|
1330
|
-
} | undefined;
|
|
1331
|
-
readonly auditTrail?: boolean | undefined;
|
|
1332
|
-
readonly cached?: {
|
|
1333
|
-
enabled: boolean;
|
|
1334
|
-
ttl: number;
|
|
1335
|
-
invalidateOn: string[];
|
|
1336
|
-
} | undefined;
|
|
1337
|
-
readonly dataQuality?: {
|
|
1338
|
-
uniqueness: boolean;
|
|
1339
|
-
completeness: number;
|
|
1340
|
-
accuracy?: {
|
|
1341
|
-
source: string;
|
|
1342
|
-
threshold: number;
|
|
1343
|
-
} | undefined;
|
|
1344
|
-
} | undefined;
|
|
1182
|
+
readonly trackHistory?: boolean | undefined;
|
|
1345
1183
|
readonly visibleWhen?: {
|
|
1346
1184
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1347
1185
|
source?: string | undefined;
|
|
@@ -1380,7 +1218,6 @@ declare const SysRecordShare: Omit<{
|
|
|
1380
1218
|
} | undefined;
|
|
1381
1219
|
readonly sortable?: boolean | undefined;
|
|
1382
1220
|
readonly inlineHelpText?: string | undefined;
|
|
1383
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
1384
1221
|
readonly caseSensitive?: boolean | undefined;
|
|
1385
1222
|
readonly autonumberFormat?: string | undefined;
|
|
1386
1223
|
readonly index?: boolean | undefined;
|
|
@@ -1402,7 +1239,6 @@ declare const SysRecordShare: Omit<{
|
|
|
1402
1239
|
readonly required?: boolean | undefined;
|
|
1403
1240
|
readonly multiple?: boolean | undefined;
|
|
1404
1241
|
readonly dependencies?: string[] | undefined;
|
|
1405
|
-
readonly theme?: string | undefined;
|
|
1406
1242
|
readonly externalId?: boolean | undefined;
|
|
1407
1243
|
readonly defaultValue?: unknown;
|
|
1408
1244
|
readonly group?: string | undefined;
|
|
@@ -1410,23 +1246,7 @@ declare const SysRecordShare: Omit<{
|
|
|
1410
1246
|
readonly system?: boolean | undefined;
|
|
1411
1247
|
readonly min?: number | undefined;
|
|
1412
1248
|
readonly max?: number | undefined;
|
|
1413
|
-
readonly
|
|
1414
|
-
enabled: boolean;
|
|
1415
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
1416
|
-
keyManagement: {
|
|
1417
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
1418
|
-
keyId?: string | undefined;
|
|
1419
|
-
rotationPolicy?: {
|
|
1420
|
-
enabled: boolean;
|
|
1421
|
-
frequencyDays: number;
|
|
1422
|
-
retainOldVersions: number;
|
|
1423
|
-
autoRotate: boolean;
|
|
1424
|
-
} | undefined;
|
|
1425
|
-
};
|
|
1426
|
-
scope: "record" | "field" | "table" | "database";
|
|
1427
|
-
deterministicEncryption: boolean;
|
|
1428
|
-
searchableEncryption: boolean;
|
|
1429
|
-
} | undefined;
|
|
1249
|
+
readonly dimensions?: number | undefined;
|
|
1430
1250
|
readonly columnName?: string | undefined;
|
|
1431
1251
|
readonly searchable?: boolean | undefined;
|
|
1432
1252
|
readonly unique?: boolean | undefined;
|
|
@@ -1435,7 +1255,6 @@ declare const SysRecordShare: Omit<{
|
|
|
1435
1255
|
readonly scale?: number | undefined;
|
|
1436
1256
|
readonly reference?: string | undefined;
|
|
1437
1257
|
readonly referenceFilters?: string[] | undefined;
|
|
1438
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1439
1258
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1440
1259
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1441
1260
|
readonly inlineTitle?: string | undefined;
|
|
@@ -1460,22 +1279,8 @@ declare const SysRecordShare: Omit<{
|
|
|
1460
1279
|
relationshipField?: string | undefined;
|
|
1461
1280
|
} | undefined;
|
|
1462
1281
|
readonly language?: string | undefined;
|
|
1463
|
-
readonly lineNumbers?: boolean | undefined;
|
|
1464
1282
|
readonly maxRating?: number | undefined;
|
|
1465
|
-
readonly allowHalf?: boolean | undefined;
|
|
1466
|
-
readonly displayMap?: boolean | undefined;
|
|
1467
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
1468
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
1469
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1470
|
-
readonly allowAlpha?: boolean | undefined;
|
|
1471
|
-
readonly presetColors?: string[] | undefined;
|
|
1472
1283
|
readonly step?: number | undefined;
|
|
1473
|
-
readonly showValue?: boolean | undefined;
|
|
1474
|
-
readonly marks?: Record<string, string> | undefined;
|
|
1475
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1476
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1477
|
-
readonly displayValue?: boolean | undefined;
|
|
1478
|
-
readonly allowScanning?: boolean | undefined;
|
|
1479
1284
|
readonly currencyConfig?: {
|
|
1480
1285
|
precision: number;
|
|
1481
1286
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -1529,29 +1334,7 @@ declare const SysRecordShare: Omit<{
|
|
|
1529
1334
|
} | undefined;
|
|
1530
1335
|
maxVersions?: number | undefined;
|
|
1531
1336
|
} | undefined;
|
|
1532
|
-
readonly
|
|
1533
|
-
field: string;
|
|
1534
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
1535
|
-
preserveFormat: boolean;
|
|
1536
|
-
preserveLength: boolean;
|
|
1537
|
-
pattern?: string | undefined;
|
|
1538
|
-
roles?: string[] | undefined;
|
|
1539
|
-
exemptRoles?: string[] | undefined;
|
|
1540
|
-
} | undefined;
|
|
1541
|
-
readonly auditTrail?: boolean | undefined;
|
|
1542
|
-
readonly cached?: {
|
|
1543
|
-
enabled: boolean;
|
|
1544
|
-
ttl: number;
|
|
1545
|
-
invalidateOn: string[];
|
|
1546
|
-
} | undefined;
|
|
1547
|
-
readonly dataQuality?: {
|
|
1548
|
-
uniqueness: boolean;
|
|
1549
|
-
completeness: number;
|
|
1550
|
-
accuracy?: {
|
|
1551
|
-
source: string;
|
|
1552
|
-
threshold: number;
|
|
1553
|
-
} | undefined;
|
|
1554
|
-
} | undefined;
|
|
1337
|
+
readonly trackHistory?: boolean | undefined;
|
|
1555
1338
|
readonly visibleWhen?: {
|
|
1556
1339
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1557
1340
|
source?: string | undefined;
|
|
@@ -1590,7 +1373,6 @@ declare const SysRecordShare: Omit<{
|
|
|
1590
1373
|
} | undefined;
|
|
1591
1374
|
readonly sortable?: boolean | undefined;
|
|
1592
1375
|
readonly inlineHelpText?: string | undefined;
|
|
1593
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
1594
1376
|
readonly caseSensitive?: boolean | undefined;
|
|
1595
1377
|
readonly autonumberFormat?: string | undefined;
|
|
1596
1378
|
readonly index?: boolean | undefined;
|
|
@@ -1612,7 +1394,6 @@ declare const SysRecordShare: Omit<{
|
|
|
1612
1394
|
readonly required?: boolean | undefined;
|
|
1613
1395
|
readonly multiple?: boolean | undefined;
|
|
1614
1396
|
readonly dependencies?: string[] | undefined;
|
|
1615
|
-
readonly theme?: string | undefined;
|
|
1616
1397
|
readonly externalId?: boolean | undefined;
|
|
1617
1398
|
readonly defaultValue?: unknown;
|
|
1618
1399
|
readonly group?: string | undefined;
|
|
@@ -1620,23 +1401,7 @@ declare const SysRecordShare: Omit<{
|
|
|
1620
1401
|
readonly system?: boolean | undefined;
|
|
1621
1402
|
readonly min?: number | undefined;
|
|
1622
1403
|
readonly max?: number | undefined;
|
|
1623
|
-
readonly
|
|
1624
|
-
enabled: boolean;
|
|
1625
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
1626
|
-
keyManagement: {
|
|
1627
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
1628
|
-
keyId?: string | undefined;
|
|
1629
|
-
rotationPolicy?: {
|
|
1630
|
-
enabled: boolean;
|
|
1631
|
-
frequencyDays: number;
|
|
1632
|
-
retainOldVersions: number;
|
|
1633
|
-
autoRotate: boolean;
|
|
1634
|
-
} | undefined;
|
|
1635
|
-
};
|
|
1636
|
-
scope: "record" | "field" | "table" | "database";
|
|
1637
|
-
deterministicEncryption: boolean;
|
|
1638
|
-
searchableEncryption: boolean;
|
|
1639
|
-
} | undefined;
|
|
1404
|
+
readonly dimensions?: number | undefined;
|
|
1640
1405
|
readonly columnName?: string | undefined;
|
|
1641
1406
|
readonly searchable?: boolean | undefined;
|
|
1642
1407
|
readonly unique?: boolean | undefined;
|
|
@@ -1645,7 +1410,6 @@ declare const SysRecordShare: Omit<{
|
|
|
1645
1410
|
readonly scale?: number | undefined;
|
|
1646
1411
|
readonly reference?: string | undefined;
|
|
1647
1412
|
readonly referenceFilters?: string[] | undefined;
|
|
1648
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1649
1413
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1650
1414
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1651
1415
|
readonly inlineTitle?: string | undefined;
|
|
@@ -1670,22 +1434,8 @@ declare const SysRecordShare: Omit<{
|
|
|
1670
1434
|
relationshipField?: string | undefined;
|
|
1671
1435
|
} | undefined;
|
|
1672
1436
|
readonly language?: string | undefined;
|
|
1673
|
-
readonly lineNumbers?: boolean | undefined;
|
|
1674
1437
|
readonly maxRating?: number | undefined;
|
|
1675
|
-
readonly allowHalf?: boolean | undefined;
|
|
1676
|
-
readonly displayMap?: boolean | undefined;
|
|
1677
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
1678
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
1679
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1680
|
-
readonly allowAlpha?: boolean | undefined;
|
|
1681
|
-
readonly presetColors?: string[] | undefined;
|
|
1682
1438
|
readonly step?: number | undefined;
|
|
1683
|
-
readonly showValue?: boolean | undefined;
|
|
1684
|
-
readonly marks?: Record<string, string> | undefined;
|
|
1685
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1686
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1687
|
-
readonly displayValue?: boolean | undefined;
|
|
1688
|
-
readonly allowScanning?: boolean | undefined;
|
|
1689
1439
|
readonly currencyConfig?: {
|
|
1690
1440
|
precision: number;
|
|
1691
1441
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -1739,29 +1489,7 @@ declare const SysRecordShare: Omit<{
|
|
|
1739
1489
|
} | undefined;
|
|
1740
1490
|
maxVersions?: number | undefined;
|
|
1741
1491
|
} | undefined;
|
|
1742
|
-
readonly
|
|
1743
|
-
field: string;
|
|
1744
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
1745
|
-
preserveFormat: boolean;
|
|
1746
|
-
preserveLength: boolean;
|
|
1747
|
-
pattern?: string | undefined;
|
|
1748
|
-
roles?: string[] | undefined;
|
|
1749
|
-
exemptRoles?: string[] | undefined;
|
|
1750
|
-
} | undefined;
|
|
1751
|
-
readonly auditTrail?: boolean | undefined;
|
|
1752
|
-
readonly cached?: {
|
|
1753
|
-
enabled: boolean;
|
|
1754
|
-
ttl: number;
|
|
1755
|
-
invalidateOn: string[];
|
|
1756
|
-
} | undefined;
|
|
1757
|
-
readonly dataQuality?: {
|
|
1758
|
-
uniqueness: boolean;
|
|
1759
|
-
completeness: number;
|
|
1760
|
-
accuracy?: {
|
|
1761
|
-
source: string;
|
|
1762
|
-
threshold: number;
|
|
1763
|
-
} | undefined;
|
|
1764
|
-
} | undefined;
|
|
1492
|
+
readonly trackHistory?: boolean | undefined;
|
|
1765
1493
|
readonly visibleWhen?: {
|
|
1766
1494
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1767
1495
|
source?: string | undefined;
|
|
@@ -1800,7 +1528,6 @@ declare const SysRecordShare: Omit<{
|
|
|
1800
1528
|
} | undefined;
|
|
1801
1529
|
readonly sortable?: boolean | undefined;
|
|
1802
1530
|
readonly inlineHelpText?: string | undefined;
|
|
1803
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
1804
1531
|
readonly caseSensitive?: boolean | undefined;
|
|
1805
1532
|
readonly autonumberFormat?: string | undefined;
|
|
1806
1533
|
readonly index?: boolean | undefined;
|
|
@@ -1822,7 +1549,6 @@ declare const SysRecordShare: Omit<{
|
|
|
1822
1549
|
readonly required?: boolean | undefined;
|
|
1823
1550
|
readonly multiple?: boolean | undefined;
|
|
1824
1551
|
readonly dependencies?: string[] | undefined;
|
|
1825
|
-
readonly theme?: string | undefined;
|
|
1826
1552
|
readonly externalId?: boolean | undefined;
|
|
1827
1553
|
readonly defaultValue?: unknown;
|
|
1828
1554
|
readonly group?: string | undefined;
|
|
@@ -1830,23 +1556,7 @@ declare const SysRecordShare: Omit<{
|
|
|
1830
1556
|
readonly system?: boolean | undefined;
|
|
1831
1557
|
readonly min?: number | undefined;
|
|
1832
1558
|
readonly max?: number | undefined;
|
|
1833
|
-
readonly
|
|
1834
|
-
enabled: boolean;
|
|
1835
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
1836
|
-
keyManagement: {
|
|
1837
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
1838
|
-
keyId?: string | undefined;
|
|
1839
|
-
rotationPolicy?: {
|
|
1840
|
-
enabled: boolean;
|
|
1841
|
-
frequencyDays: number;
|
|
1842
|
-
retainOldVersions: number;
|
|
1843
|
-
autoRotate: boolean;
|
|
1844
|
-
} | undefined;
|
|
1845
|
-
};
|
|
1846
|
-
scope: "record" | "field" | "table" | "database";
|
|
1847
|
-
deterministicEncryption: boolean;
|
|
1848
|
-
searchableEncryption: boolean;
|
|
1849
|
-
} | undefined;
|
|
1559
|
+
readonly dimensions?: number | undefined;
|
|
1850
1560
|
readonly columnName?: string | undefined;
|
|
1851
1561
|
readonly searchable?: boolean | undefined;
|
|
1852
1562
|
readonly unique?: boolean | undefined;
|
|
@@ -1855,7 +1565,6 @@ declare const SysRecordShare: Omit<{
|
|
|
1855
1565
|
readonly scale?: number | undefined;
|
|
1856
1566
|
readonly reference?: string | undefined;
|
|
1857
1567
|
readonly referenceFilters?: string[] | undefined;
|
|
1858
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1859
1568
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1860
1569
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1861
1570
|
readonly inlineTitle?: string | undefined;
|
|
@@ -1880,22 +1589,8 @@ declare const SysRecordShare: Omit<{
|
|
|
1880
1589
|
relationshipField?: string | undefined;
|
|
1881
1590
|
} | undefined;
|
|
1882
1591
|
readonly language?: string | undefined;
|
|
1883
|
-
readonly lineNumbers?: boolean | undefined;
|
|
1884
1592
|
readonly maxRating?: number | undefined;
|
|
1885
|
-
readonly allowHalf?: boolean | undefined;
|
|
1886
|
-
readonly displayMap?: boolean | undefined;
|
|
1887
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
1888
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
1889
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1890
|
-
readonly allowAlpha?: boolean | undefined;
|
|
1891
|
-
readonly presetColors?: string[] | undefined;
|
|
1892
1593
|
readonly step?: number | undefined;
|
|
1893
|
-
readonly showValue?: boolean | undefined;
|
|
1894
|
-
readonly marks?: Record<string, string> | undefined;
|
|
1895
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1896
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1897
|
-
readonly displayValue?: boolean | undefined;
|
|
1898
|
-
readonly allowScanning?: boolean | undefined;
|
|
1899
1594
|
readonly currencyConfig?: {
|
|
1900
1595
|
precision: number;
|
|
1901
1596
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -1949,29 +1644,7 @@ declare const SysRecordShare: Omit<{
|
|
|
1949
1644
|
} | undefined;
|
|
1950
1645
|
maxVersions?: number | undefined;
|
|
1951
1646
|
} | undefined;
|
|
1952
|
-
readonly
|
|
1953
|
-
field: string;
|
|
1954
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
1955
|
-
preserveFormat: boolean;
|
|
1956
|
-
preserveLength: boolean;
|
|
1957
|
-
pattern?: string | undefined;
|
|
1958
|
-
roles?: string[] | undefined;
|
|
1959
|
-
exemptRoles?: string[] | undefined;
|
|
1960
|
-
} | undefined;
|
|
1961
|
-
readonly auditTrail?: boolean | undefined;
|
|
1962
|
-
readonly cached?: {
|
|
1963
|
-
enabled: boolean;
|
|
1964
|
-
ttl: number;
|
|
1965
|
-
invalidateOn: string[];
|
|
1966
|
-
} | undefined;
|
|
1967
|
-
readonly dataQuality?: {
|
|
1968
|
-
uniqueness: boolean;
|
|
1969
|
-
completeness: number;
|
|
1970
|
-
accuracy?: {
|
|
1971
|
-
source: string;
|
|
1972
|
-
threshold: number;
|
|
1973
|
-
} | undefined;
|
|
1974
|
-
} | undefined;
|
|
1647
|
+
readonly trackHistory?: boolean | undefined;
|
|
1975
1648
|
readonly visibleWhen?: {
|
|
1976
1649
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1977
1650
|
source?: string | undefined;
|
|
@@ -2010,7 +1683,6 @@ declare const SysRecordShare: Omit<{
|
|
|
2010
1683
|
} | undefined;
|
|
2011
1684
|
readonly sortable?: boolean | undefined;
|
|
2012
1685
|
readonly inlineHelpText?: string | undefined;
|
|
2013
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
2014
1686
|
readonly caseSensitive?: boolean | undefined;
|
|
2015
1687
|
readonly autonumberFormat?: string | undefined;
|
|
2016
1688
|
readonly index?: boolean | undefined;
|
|
@@ -2032,7 +1704,6 @@ declare const SysRecordShare: Omit<{
|
|
|
2032
1704
|
readonly required?: boolean | undefined;
|
|
2033
1705
|
readonly multiple?: boolean | undefined;
|
|
2034
1706
|
readonly dependencies?: string[] | undefined;
|
|
2035
|
-
readonly theme?: string | undefined;
|
|
2036
1707
|
readonly externalId?: boolean | undefined;
|
|
2037
1708
|
readonly defaultValue?: unknown;
|
|
2038
1709
|
readonly group?: string | undefined;
|
|
@@ -2040,23 +1711,7 @@ declare const SysRecordShare: Omit<{
|
|
|
2040
1711
|
readonly system?: boolean | undefined;
|
|
2041
1712
|
readonly min?: number | undefined;
|
|
2042
1713
|
readonly max?: number | undefined;
|
|
2043
|
-
readonly
|
|
2044
|
-
enabled: boolean;
|
|
2045
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
2046
|
-
keyManagement: {
|
|
2047
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
2048
|
-
keyId?: string | undefined;
|
|
2049
|
-
rotationPolicy?: {
|
|
2050
|
-
enabled: boolean;
|
|
2051
|
-
frequencyDays: number;
|
|
2052
|
-
retainOldVersions: number;
|
|
2053
|
-
autoRotate: boolean;
|
|
2054
|
-
} | undefined;
|
|
2055
|
-
};
|
|
2056
|
-
scope: "record" | "field" | "table" | "database";
|
|
2057
|
-
deterministicEncryption: boolean;
|
|
2058
|
-
searchableEncryption: boolean;
|
|
2059
|
-
} | undefined;
|
|
1714
|
+
readonly dimensions?: number | undefined;
|
|
2060
1715
|
readonly columnName?: string | undefined;
|
|
2061
1716
|
readonly searchable?: boolean | undefined;
|
|
2062
1717
|
readonly unique?: boolean | undefined;
|
|
@@ -2065,7 +1720,6 @@ declare const SysRecordShare: Omit<{
|
|
|
2065
1720
|
readonly scale?: number | undefined;
|
|
2066
1721
|
readonly reference?: string | undefined;
|
|
2067
1722
|
readonly referenceFilters?: string[] | undefined;
|
|
2068
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2069
1723
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2070
1724
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2071
1725
|
readonly inlineTitle?: string | undefined;
|
|
@@ -2090,22 +1744,8 @@ declare const SysRecordShare: Omit<{
|
|
|
2090
1744
|
relationshipField?: string | undefined;
|
|
2091
1745
|
} | undefined;
|
|
2092
1746
|
readonly language?: string | undefined;
|
|
2093
|
-
readonly lineNumbers?: boolean | undefined;
|
|
2094
1747
|
readonly maxRating?: number | undefined;
|
|
2095
|
-
readonly allowHalf?: boolean | undefined;
|
|
2096
|
-
readonly displayMap?: boolean | undefined;
|
|
2097
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
2098
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
2099
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
2100
|
-
readonly allowAlpha?: boolean | undefined;
|
|
2101
|
-
readonly presetColors?: string[] | undefined;
|
|
2102
1748
|
readonly step?: number | undefined;
|
|
2103
|
-
readonly showValue?: boolean | undefined;
|
|
2104
|
-
readonly marks?: Record<string, string> | undefined;
|
|
2105
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
2106
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
2107
|
-
readonly displayValue?: boolean | undefined;
|
|
2108
|
-
readonly allowScanning?: boolean | undefined;
|
|
2109
1749
|
readonly currencyConfig?: {
|
|
2110
1750
|
precision: number;
|
|
2111
1751
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -2159,29 +1799,7 @@ declare const SysRecordShare: Omit<{
|
|
|
2159
1799
|
} | undefined;
|
|
2160
1800
|
maxVersions?: number | undefined;
|
|
2161
1801
|
} | undefined;
|
|
2162
|
-
readonly
|
|
2163
|
-
field: string;
|
|
2164
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
2165
|
-
preserveFormat: boolean;
|
|
2166
|
-
preserveLength: boolean;
|
|
2167
|
-
pattern?: string | undefined;
|
|
2168
|
-
roles?: string[] | undefined;
|
|
2169
|
-
exemptRoles?: string[] | undefined;
|
|
2170
|
-
} | undefined;
|
|
2171
|
-
readonly auditTrail?: boolean | undefined;
|
|
2172
|
-
readonly cached?: {
|
|
2173
|
-
enabled: boolean;
|
|
2174
|
-
ttl: number;
|
|
2175
|
-
invalidateOn: string[];
|
|
2176
|
-
} | undefined;
|
|
2177
|
-
readonly dataQuality?: {
|
|
2178
|
-
uniqueness: boolean;
|
|
2179
|
-
completeness: number;
|
|
2180
|
-
accuracy?: {
|
|
2181
|
-
source: string;
|
|
2182
|
-
threshold: number;
|
|
2183
|
-
} | undefined;
|
|
2184
|
-
} | undefined;
|
|
1802
|
+
readonly trackHistory?: boolean | undefined;
|
|
2185
1803
|
readonly visibleWhen?: {
|
|
2186
1804
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2187
1805
|
source?: string | undefined;
|
|
@@ -2220,7 +1838,6 @@ declare const SysRecordShare: Omit<{
|
|
|
2220
1838
|
} | undefined;
|
|
2221
1839
|
readonly sortable?: boolean | undefined;
|
|
2222
1840
|
readonly inlineHelpText?: string | undefined;
|
|
2223
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
2224
1841
|
readonly caseSensitive?: boolean | undefined;
|
|
2225
1842
|
readonly autonumberFormat?: string | undefined;
|
|
2226
1843
|
readonly index?: boolean | undefined;
|
|
@@ -2242,7 +1859,6 @@ declare const SysRecordShare: Omit<{
|
|
|
2242
1859
|
readonly required?: boolean | undefined;
|
|
2243
1860
|
readonly multiple?: boolean | undefined;
|
|
2244
1861
|
readonly dependencies?: string[] | undefined;
|
|
2245
|
-
readonly theme?: string | undefined;
|
|
2246
1862
|
readonly externalId?: boolean | undefined;
|
|
2247
1863
|
readonly defaultValue?: unknown;
|
|
2248
1864
|
readonly group?: string | undefined;
|
|
@@ -2250,23 +1866,7 @@ declare const SysRecordShare: Omit<{
|
|
|
2250
1866
|
readonly system?: boolean | undefined;
|
|
2251
1867
|
readonly min?: number | undefined;
|
|
2252
1868
|
readonly max?: number | undefined;
|
|
2253
|
-
readonly
|
|
2254
|
-
enabled: boolean;
|
|
2255
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
2256
|
-
keyManagement: {
|
|
2257
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
2258
|
-
keyId?: string | undefined;
|
|
2259
|
-
rotationPolicy?: {
|
|
2260
|
-
enabled: boolean;
|
|
2261
|
-
frequencyDays: number;
|
|
2262
|
-
retainOldVersions: number;
|
|
2263
|
-
autoRotate: boolean;
|
|
2264
|
-
} | undefined;
|
|
2265
|
-
};
|
|
2266
|
-
scope: "record" | "field" | "table" | "database";
|
|
2267
|
-
deterministicEncryption: boolean;
|
|
2268
|
-
searchableEncryption: boolean;
|
|
2269
|
-
} | undefined;
|
|
1869
|
+
readonly dimensions?: number | undefined;
|
|
2270
1870
|
readonly columnName?: string | undefined;
|
|
2271
1871
|
readonly searchable?: boolean | undefined;
|
|
2272
1872
|
readonly unique?: boolean | undefined;
|
|
@@ -2275,7 +1875,6 @@ declare const SysRecordShare: Omit<{
|
|
|
2275
1875
|
readonly scale?: number | undefined;
|
|
2276
1876
|
readonly reference?: string | undefined;
|
|
2277
1877
|
readonly referenceFilters?: string[] | undefined;
|
|
2278
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2279
1878
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2280
1879
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2281
1880
|
readonly inlineTitle?: string | undefined;
|
|
@@ -2300,22 +1899,8 @@ declare const SysRecordShare: Omit<{
|
|
|
2300
1899
|
relationshipField?: string | undefined;
|
|
2301
1900
|
} | undefined;
|
|
2302
1901
|
readonly language?: string | undefined;
|
|
2303
|
-
readonly lineNumbers?: boolean | undefined;
|
|
2304
1902
|
readonly maxRating?: number | undefined;
|
|
2305
|
-
readonly allowHalf?: boolean | undefined;
|
|
2306
|
-
readonly displayMap?: boolean | undefined;
|
|
2307
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
2308
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
2309
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
2310
|
-
readonly allowAlpha?: boolean | undefined;
|
|
2311
|
-
readonly presetColors?: string[] | undefined;
|
|
2312
1903
|
readonly step?: number | undefined;
|
|
2313
|
-
readonly showValue?: boolean | undefined;
|
|
2314
|
-
readonly marks?: Record<string, string> | undefined;
|
|
2315
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
2316
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
2317
|
-
readonly displayValue?: boolean | undefined;
|
|
2318
|
-
readonly allowScanning?: boolean | undefined;
|
|
2319
1904
|
readonly currencyConfig?: {
|
|
2320
1905
|
precision: number;
|
|
2321
1906
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -2369,29 +1954,7 @@ declare const SysRecordShare: Omit<{
|
|
|
2369
1954
|
} | undefined;
|
|
2370
1955
|
maxVersions?: number | undefined;
|
|
2371
1956
|
} | undefined;
|
|
2372
|
-
readonly
|
|
2373
|
-
field: string;
|
|
2374
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
2375
|
-
preserveFormat: boolean;
|
|
2376
|
-
preserveLength: boolean;
|
|
2377
|
-
pattern?: string | undefined;
|
|
2378
|
-
roles?: string[] | undefined;
|
|
2379
|
-
exemptRoles?: string[] | undefined;
|
|
2380
|
-
} | undefined;
|
|
2381
|
-
readonly auditTrail?: boolean | undefined;
|
|
2382
|
-
readonly cached?: {
|
|
2383
|
-
enabled: boolean;
|
|
2384
|
-
ttl: number;
|
|
2385
|
-
invalidateOn: string[];
|
|
2386
|
-
} | undefined;
|
|
2387
|
-
readonly dataQuality?: {
|
|
2388
|
-
uniqueness: boolean;
|
|
2389
|
-
completeness: number;
|
|
2390
|
-
accuracy?: {
|
|
2391
|
-
source: string;
|
|
2392
|
-
threshold: number;
|
|
2393
|
-
} | undefined;
|
|
2394
|
-
} | undefined;
|
|
1957
|
+
readonly trackHistory?: boolean | undefined;
|
|
2395
1958
|
readonly visibleWhen?: {
|
|
2396
1959
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2397
1960
|
source?: string | undefined;
|
|
@@ -2430,7 +1993,6 @@ declare const SysRecordShare: Omit<{
|
|
|
2430
1993
|
} | undefined;
|
|
2431
1994
|
readonly sortable?: boolean | undefined;
|
|
2432
1995
|
readonly inlineHelpText?: string | undefined;
|
|
2433
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
2434
1996
|
readonly caseSensitive?: boolean | undefined;
|
|
2435
1997
|
readonly autonumberFormat?: string | undefined;
|
|
2436
1998
|
readonly index?: boolean | undefined;
|
|
@@ -2452,7 +2014,6 @@ declare const SysRecordShare: Omit<{
|
|
|
2452
2014
|
readonly required?: boolean | undefined;
|
|
2453
2015
|
readonly multiple?: boolean | undefined;
|
|
2454
2016
|
readonly dependencies?: string[] | undefined;
|
|
2455
|
-
readonly theme?: string | undefined;
|
|
2456
2017
|
readonly externalId?: boolean | undefined;
|
|
2457
2018
|
readonly defaultValue?: unknown;
|
|
2458
2019
|
readonly group?: string | undefined;
|
|
@@ -2460,23 +2021,7 @@ declare const SysRecordShare: Omit<{
|
|
|
2460
2021
|
readonly system?: boolean | undefined;
|
|
2461
2022
|
readonly min?: number | undefined;
|
|
2462
2023
|
readonly max?: number | undefined;
|
|
2463
|
-
readonly
|
|
2464
|
-
enabled: boolean;
|
|
2465
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
2466
|
-
keyManagement: {
|
|
2467
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
2468
|
-
keyId?: string | undefined;
|
|
2469
|
-
rotationPolicy?: {
|
|
2470
|
-
enabled: boolean;
|
|
2471
|
-
frequencyDays: number;
|
|
2472
|
-
retainOldVersions: number;
|
|
2473
|
-
autoRotate: boolean;
|
|
2474
|
-
} | undefined;
|
|
2475
|
-
};
|
|
2476
|
-
scope: "record" | "field" | "table" | "database";
|
|
2477
|
-
deterministicEncryption: boolean;
|
|
2478
|
-
searchableEncryption: boolean;
|
|
2479
|
-
} | undefined;
|
|
2024
|
+
readonly dimensions?: number | undefined;
|
|
2480
2025
|
readonly columnName?: string | undefined;
|
|
2481
2026
|
readonly searchable?: boolean | undefined;
|
|
2482
2027
|
readonly unique?: boolean | undefined;
|
|
@@ -2485,7 +2030,6 @@ declare const SysRecordShare: Omit<{
|
|
|
2485
2030
|
readonly scale?: number | undefined;
|
|
2486
2031
|
readonly reference?: string | undefined;
|
|
2487
2032
|
readonly referenceFilters?: string[] | undefined;
|
|
2488
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2489
2033
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2490
2034
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2491
2035
|
readonly inlineTitle?: string | undefined;
|
|
@@ -2510,22 +2054,8 @@ declare const SysRecordShare: Omit<{
|
|
|
2510
2054
|
relationshipField?: string | undefined;
|
|
2511
2055
|
} | undefined;
|
|
2512
2056
|
readonly language?: string | undefined;
|
|
2513
|
-
readonly lineNumbers?: boolean | undefined;
|
|
2514
2057
|
readonly maxRating?: number | undefined;
|
|
2515
|
-
readonly allowHalf?: boolean | undefined;
|
|
2516
|
-
readonly displayMap?: boolean | undefined;
|
|
2517
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
2518
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
2519
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
2520
|
-
readonly allowAlpha?: boolean | undefined;
|
|
2521
|
-
readonly presetColors?: string[] | undefined;
|
|
2522
2058
|
readonly step?: number | undefined;
|
|
2523
|
-
readonly showValue?: boolean | undefined;
|
|
2524
|
-
readonly marks?: Record<string, string> | undefined;
|
|
2525
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
2526
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
2527
|
-
readonly displayValue?: boolean | undefined;
|
|
2528
|
-
readonly allowScanning?: boolean | undefined;
|
|
2529
2059
|
readonly currencyConfig?: {
|
|
2530
2060
|
precision: number;
|
|
2531
2061
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -2579,29 +2109,7 @@ declare const SysRecordShare: Omit<{
|
|
|
2579
2109
|
} | undefined;
|
|
2580
2110
|
maxVersions?: number | undefined;
|
|
2581
2111
|
} | undefined;
|
|
2582
|
-
readonly
|
|
2583
|
-
field: string;
|
|
2584
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
2585
|
-
preserveFormat: boolean;
|
|
2586
|
-
preserveLength: boolean;
|
|
2587
|
-
pattern?: string | undefined;
|
|
2588
|
-
roles?: string[] | undefined;
|
|
2589
|
-
exemptRoles?: string[] | undefined;
|
|
2590
|
-
} | undefined;
|
|
2591
|
-
readonly auditTrail?: boolean | undefined;
|
|
2592
|
-
readonly cached?: {
|
|
2593
|
-
enabled: boolean;
|
|
2594
|
-
ttl: number;
|
|
2595
|
-
invalidateOn: string[];
|
|
2596
|
-
} | undefined;
|
|
2597
|
-
readonly dataQuality?: {
|
|
2598
|
-
uniqueness: boolean;
|
|
2599
|
-
completeness: number;
|
|
2600
|
-
accuracy?: {
|
|
2601
|
-
source: string;
|
|
2602
|
-
threshold: number;
|
|
2603
|
-
} | undefined;
|
|
2604
|
-
} | undefined;
|
|
2112
|
+
readonly trackHistory?: boolean | undefined;
|
|
2605
2113
|
readonly visibleWhen?: {
|
|
2606
2114
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2607
2115
|
source?: string | undefined;
|
|
@@ -2640,7 +2148,6 @@ declare const SysRecordShare: Omit<{
|
|
|
2640
2148
|
} | undefined;
|
|
2641
2149
|
readonly sortable?: boolean | undefined;
|
|
2642
2150
|
readonly inlineHelpText?: string | undefined;
|
|
2643
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
2644
2151
|
readonly caseSensitive?: boolean | undefined;
|
|
2645
2152
|
readonly autonumberFormat?: string | undefined;
|
|
2646
2153
|
readonly index?: boolean | undefined;
|
|
@@ -2662,7 +2169,6 @@ declare const SysRecordShare: Omit<{
|
|
|
2662
2169
|
readonly required?: boolean | undefined;
|
|
2663
2170
|
readonly multiple?: boolean | undefined;
|
|
2664
2171
|
readonly dependencies?: string[] | undefined;
|
|
2665
|
-
readonly theme?: string | undefined;
|
|
2666
2172
|
readonly externalId?: boolean | undefined;
|
|
2667
2173
|
readonly defaultValue?: unknown;
|
|
2668
2174
|
readonly group?: string | undefined;
|
|
@@ -2670,23 +2176,7 @@ declare const SysRecordShare: Omit<{
|
|
|
2670
2176
|
readonly system?: boolean | undefined;
|
|
2671
2177
|
readonly min?: number | undefined;
|
|
2672
2178
|
readonly max?: number | undefined;
|
|
2673
|
-
readonly
|
|
2674
|
-
enabled: boolean;
|
|
2675
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
2676
|
-
keyManagement: {
|
|
2677
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
2678
|
-
keyId?: string | undefined;
|
|
2679
|
-
rotationPolicy?: {
|
|
2680
|
-
enabled: boolean;
|
|
2681
|
-
frequencyDays: number;
|
|
2682
|
-
retainOldVersions: number;
|
|
2683
|
-
autoRotate: boolean;
|
|
2684
|
-
} | undefined;
|
|
2685
|
-
};
|
|
2686
|
-
scope: "record" | "field" | "table" | "database";
|
|
2687
|
-
deterministicEncryption: boolean;
|
|
2688
|
-
searchableEncryption: boolean;
|
|
2689
|
-
} | undefined;
|
|
2179
|
+
readonly dimensions?: number | undefined;
|
|
2690
2180
|
readonly columnName?: string | undefined;
|
|
2691
2181
|
readonly searchable?: boolean | undefined;
|
|
2692
2182
|
readonly unique?: boolean | undefined;
|
|
@@ -2695,7 +2185,6 @@ declare const SysRecordShare: Omit<{
|
|
|
2695
2185
|
readonly scale?: number | undefined;
|
|
2696
2186
|
reference: string;
|
|
2697
2187
|
readonly referenceFilters?: string[] | undefined;
|
|
2698
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2699
2188
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2700
2189
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2701
2190
|
readonly inlineTitle?: string | undefined;
|
|
@@ -2720,22 +2209,8 @@ declare const SysRecordShare: Omit<{
|
|
|
2720
2209
|
relationshipField?: string | undefined;
|
|
2721
2210
|
} | undefined;
|
|
2722
2211
|
readonly language?: string | undefined;
|
|
2723
|
-
readonly lineNumbers?: boolean | undefined;
|
|
2724
2212
|
readonly maxRating?: number | undefined;
|
|
2725
|
-
readonly allowHalf?: boolean | undefined;
|
|
2726
|
-
readonly displayMap?: boolean | undefined;
|
|
2727
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
2728
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
2729
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
2730
|
-
readonly allowAlpha?: boolean | undefined;
|
|
2731
|
-
readonly presetColors?: string[] | undefined;
|
|
2732
2213
|
readonly step?: number | undefined;
|
|
2733
|
-
readonly showValue?: boolean | undefined;
|
|
2734
|
-
readonly marks?: Record<string, string> | undefined;
|
|
2735
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
2736
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
2737
|
-
readonly displayValue?: boolean | undefined;
|
|
2738
|
-
readonly allowScanning?: boolean | undefined;
|
|
2739
2214
|
readonly currencyConfig?: {
|
|
2740
2215
|
precision: number;
|
|
2741
2216
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -2789,29 +2264,7 @@ declare const SysRecordShare: Omit<{
|
|
|
2789
2264
|
} | undefined;
|
|
2790
2265
|
maxVersions?: number | undefined;
|
|
2791
2266
|
} | undefined;
|
|
2792
|
-
readonly
|
|
2793
|
-
field: string;
|
|
2794
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
2795
|
-
preserveFormat: boolean;
|
|
2796
|
-
preserveLength: boolean;
|
|
2797
|
-
pattern?: string | undefined;
|
|
2798
|
-
roles?: string[] | undefined;
|
|
2799
|
-
exemptRoles?: string[] | undefined;
|
|
2800
|
-
} | undefined;
|
|
2801
|
-
readonly auditTrail?: boolean | undefined;
|
|
2802
|
-
readonly cached?: {
|
|
2803
|
-
enabled: boolean;
|
|
2804
|
-
ttl: number;
|
|
2805
|
-
invalidateOn: string[];
|
|
2806
|
-
} | undefined;
|
|
2807
|
-
readonly dataQuality?: {
|
|
2808
|
-
uniqueness: boolean;
|
|
2809
|
-
completeness: number;
|
|
2810
|
-
accuracy?: {
|
|
2811
|
-
source: string;
|
|
2812
|
-
threshold: number;
|
|
2813
|
-
} | undefined;
|
|
2814
|
-
} | undefined;
|
|
2267
|
+
readonly trackHistory?: boolean | undefined;
|
|
2815
2268
|
readonly visibleWhen?: {
|
|
2816
2269
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2817
2270
|
source?: string | undefined;
|
|
@@ -2850,7 +2303,6 @@ declare const SysRecordShare: Omit<{
|
|
|
2850
2303
|
} | undefined;
|
|
2851
2304
|
readonly sortable?: boolean | undefined;
|
|
2852
2305
|
readonly inlineHelpText?: string | undefined;
|
|
2853
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
2854
2306
|
readonly caseSensitive?: boolean | undefined;
|
|
2855
2307
|
readonly autonumberFormat?: string | undefined;
|
|
2856
2308
|
readonly index?: boolean | undefined;
|
|
@@ -2872,7 +2324,6 @@ declare const SysRecordShare: Omit<{
|
|
|
2872
2324
|
readonly required?: boolean | undefined;
|
|
2873
2325
|
readonly multiple?: boolean | undefined;
|
|
2874
2326
|
readonly dependencies?: string[] | undefined;
|
|
2875
|
-
readonly theme?: string | undefined;
|
|
2876
2327
|
readonly externalId?: boolean | undefined;
|
|
2877
2328
|
readonly defaultValue?: unknown;
|
|
2878
2329
|
readonly group?: string | undefined;
|
|
@@ -2880,23 +2331,7 @@ declare const SysRecordShare: Omit<{
|
|
|
2880
2331
|
readonly system?: boolean | undefined;
|
|
2881
2332
|
readonly min?: number | undefined;
|
|
2882
2333
|
readonly max?: number | undefined;
|
|
2883
|
-
readonly
|
|
2884
|
-
enabled: boolean;
|
|
2885
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
2886
|
-
keyManagement: {
|
|
2887
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
2888
|
-
keyId?: string | undefined;
|
|
2889
|
-
rotationPolicy?: {
|
|
2890
|
-
enabled: boolean;
|
|
2891
|
-
frequencyDays: number;
|
|
2892
|
-
retainOldVersions: number;
|
|
2893
|
-
autoRotate: boolean;
|
|
2894
|
-
} | undefined;
|
|
2895
|
-
};
|
|
2896
|
-
scope: "record" | "field" | "table" | "database";
|
|
2897
|
-
deterministicEncryption: boolean;
|
|
2898
|
-
searchableEncryption: boolean;
|
|
2899
|
-
} | undefined;
|
|
2334
|
+
readonly dimensions?: number | undefined;
|
|
2900
2335
|
readonly columnName?: string | undefined;
|
|
2901
2336
|
readonly searchable?: boolean | undefined;
|
|
2902
2337
|
readonly unique?: boolean | undefined;
|
|
@@ -2905,7 +2340,6 @@ declare const SysRecordShare: Omit<{
|
|
|
2905
2340
|
readonly scale?: number | undefined;
|
|
2906
2341
|
readonly reference?: string | undefined;
|
|
2907
2342
|
readonly referenceFilters?: string[] | undefined;
|
|
2908
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2909
2343
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2910
2344
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2911
2345
|
readonly inlineTitle?: string | undefined;
|
|
@@ -2930,22 +2364,8 @@ declare const SysRecordShare: Omit<{
|
|
|
2930
2364
|
relationshipField?: string | undefined;
|
|
2931
2365
|
} | undefined;
|
|
2932
2366
|
readonly language?: string | undefined;
|
|
2933
|
-
readonly lineNumbers?: boolean | undefined;
|
|
2934
2367
|
readonly maxRating?: number | undefined;
|
|
2935
|
-
readonly allowHalf?: boolean | undefined;
|
|
2936
|
-
readonly displayMap?: boolean | undefined;
|
|
2937
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
2938
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
2939
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
2940
|
-
readonly allowAlpha?: boolean | undefined;
|
|
2941
|
-
readonly presetColors?: string[] | undefined;
|
|
2942
2368
|
readonly step?: number | undefined;
|
|
2943
|
-
readonly showValue?: boolean | undefined;
|
|
2944
|
-
readonly marks?: Record<string, string> | undefined;
|
|
2945
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
2946
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
2947
|
-
readonly displayValue?: boolean | undefined;
|
|
2948
|
-
readonly allowScanning?: boolean | undefined;
|
|
2949
2369
|
readonly currencyConfig?: {
|
|
2950
2370
|
precision: number;
|
|
2951
2371
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -2999,29 +2419,7 @@ declare const SysRecordShare: Omit<{
|
|
|
2999
2419
|
} | undefined;
|
|
3000
2420
|
maxVersions?: number | undefined;
|
|
3001
2421
|
} | undefined;
|
|
3002
|
-
readonly
|
|
3003
|
-
field: string;
|
|
3004
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
3005
|
-
preserveFormat: boolean;
|
|
3006
|
-
preserveLength: boolean;
|
|
3007
|
-
pattern?: string | undefined;
|
|
3008
|
-
roles?: string[] | undefined;
|
|
3009
|
-
exemptRoles?: string[] | undefined;
|
|
3010
|
-
} | undefined;
|
|
3011
|
-
readonly auditTrail?: boolean | undefined;
|
|
3012
|
-
readonly cached?: {
|
|
3013
|
-
enabled: boolean;
|
|
3014
|
-
ttl: number;
|
|
3015
|
-
invalidateOn: string[];
|
|
3016
|
-
} | undefined;
|
|
3017
|
-
readonly dataQuality?: {
|
|
3018
|
-
uniqueness: boolean;
|
|
3019
|
-
completeness: number;
|
|
3020
|
-
accuracy?: {
|
|
3021
|
-
source: string;
|
|
3022
|
-
threshold: number;
|
|
3023
|
-
} | undefined;
|
|
3024
|
-
} | undefined;
|
|
2422
|
+
readonly trackHistory?: boolean | undefined;
|
|
3025
2423
|
readonly visibleWhen?: {
|
|
3026
2424
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3027
2425
|
source?: string | undefined;
|
|
@@ -3060,7 +2458,6 @@ declare const SysRecordShare: Omit<{
|
|
|
3060
2458
|
} | undefined;
|
|
3061
2459
|
readonly sortable?: boolean | undefined;
|
|
3062
2460
|
readonly inlineHelpText?: string | undefined;
|
|
3063
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
3064
2461
|
readonly caseSensitive?: boolean | undefined;
|
|
3065
2462
|
readonly autonumberFormat?: string | undefined;
|
|
3066
2463
|
readonly index?: boolean | undefined;
|
|
@@ -3082,7 +2479,6 @@ declare const SysRecordShare: Omit<{
|
|
|
3082
2479
|
readonly required?: boolean | undefined;
|
|
3083
2480
|
readonly multiple?: boolean | undefined;
|
|
3084
2481
|
readonly dependencies?: string[] | undefined;
|
|
3085
|
-
readonly theme?: string | undefined;
|
|
3086
2482
|
readonly externalId?: boolean | undefined;
|
|
3087
2483
|
readonly defaultValue?: unknown;
|
|
3088
2484
|
readonly group?: string | undefined;
|
|
@@ -3090,23 +2486,7 @@ declare const SysRecordShare: Omit<{
|
|
|
3090
2486
|
readonly system?: boolean | undefined;
|
|
3091
2487
|
readonly min?: number | undefined;
|
|
3092
2488
|
readonly max?: number | undefined;
|
|
3093
|
-
readonly
|
|
3094
|
-
enabled: boolean;
|
|
3095
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
3096
|
-
keyManagement: {
|
|
3097
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
3098
|
-
keyId?: string | undefined;
|
|
3099
|
-
rotationPolicy?: {
|
|
3100
|
-
enabled: boolean;
|
|
3101
|
-
frequencyDays: number;
|
|
3102
|
-
retainOldVersions: number;
|
|
3103
|
-
autoRotate: boolean;
|
|
3104
|
-
} | undefined;
|
|
3105
|
-
};
|
|
3106
|
-
scope: "record" | "field" | "table" | "database";
|
|
3107
|
-
deterministicEncryption: boolean;
|
|
3108
|
-
searchableEncryption: boolean;
|
|
3109
|
-
} | undefined;
|
|
2489
|
+
readonly dimensions?: number | undefined;
|
|
3110
2490
|
readonly columnName?: string | undefined;
|
|
3111
2491
|
readonly searchable?: boolean | undefined;
|
|
3112
2492
|
readonly unique?: boolean | undefined;
|
|
@@ -3115,7 +2495,6 @@ declare const SysRecordShare: Omit<{
|
|
|
3115
2495
|
readonly scale?: number | undefined;
|
|
3116
2496
|
readonly reference?: string | undefined;
|
|
3117
2497
|
readonly referenceFilters?: string[] | undefined;
|
|
3118
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
3119
2498
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3120
2499
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
3121
2500
|
readonly inlineTitle?: string | undefined;
|
|
@@ -3140,22 +2519,8 @@ declare const SysRecordShare: Omit<{
|
|
|
3140
2519
|
relationshipField?: string | undefined;
|
|
3141
2520
|
} | undefined;
|
|
3142
2521
|
readonly language?: string | undefined;
|
|
3143
|
-
readonly lineNumbers?: boolean | undefined;
|
|
3144
2522
|
readonly maxRating?: number | undefined;
|
|
3145
|
-
readonly allowHalf?: boolean | undefined;
|
|
3146
|
-
readonly displayMap?: boolean | undefined;
|
|
3147
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
3148
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
3149
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
3150
|
-
readonly allowAlpha?: boolean | undefined;
|
|
3151
|
-
readonly presetColors?: string[] | undefined;
|
|
3152
2523
|
readonly step?: number | undefined;
|
|
3153
|
-
readonly showValue?: boolean | undefined;
|
|
3154
|
-
readonly marks?: Record<string, string> | undefined;
|
|
3155
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
3156
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
3157
|
-
readonly displayValue?: boolean | undefined;
|
|
3158
|
-
readonly allowScanning?: boolean | undefined;
|
|
3159
2524
|
readonly currencyConfig?: {
|
|
3160
2525
|
precision: number;
|
|
3161
2526
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -3209,29 +2574,7 @@ declare const SysRecordShare: Omit<{
|
|
|
3209
2574
|
} | undefined;
|
|
3210
2575
|
maxVersions?: number | undefined;
|
|
3211
2576
|
} | undefined;
|
|
3212
|
-
readonly
|
|
3213
|
-
field: string;
|
|
3214
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
3215
|
-
preserveFormat: boolean;
|
|
3216
|
-
preserveLength: boolean;
|
|
3217
|
-
pattern?: string | undefined;
|
|
3218
|
-
roles?: string[] | undefined;
|
|
3219
|
-
exemptRoles?: string[] | undefined;
|
|
3220
|
-
} | undefined;
|
|
3221
|
-
readonly auditTrail?: boolean | undefined;
|
|
3222
|
-
readonly cached?: {
|
|
3223
|
-
enabled: boolean;
|
|
3224
|
-
ttl: number;
|
|
3225
|
-
invalidateOn: string[];
|
|
3226
|
-
} | undefined;
|
|
3227
|
-
readonly dataQuality?: {
|
|
3228
|
-
uniqueness: boolean;
|
|
3229
|
-
completeness: number;
|
|
3230
|
-
accuracy?: {
|
|
3231
|
-
source: string;
|
|
3232
|
-
threshold: number;
|
|
3233
|
-
} | undefined;
|
|
3234
|
-
} | undefined;
|
|
2577
|
+
readonly trackHistory?: boolean | undefined;
|
|
3235
2578
|
readonly visibleWhen?: {
|
|
3236
2579
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3237
2580
|
source?: string | undefined;
|
|
@@ -3270,7 +2613,6 @@ declare const SysRecordShare: Omit<{
|
|
|
3270
2613
|
} | undefined;
|
|
3271
2614
|
readonly sortable?: boolean | undefined;
|
|
3272
2615
|
readonly inlineHelpText?: string | undefined;
|
|
3273
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
3274
2616
|
readonly caseSensitive?: boolean | undefined;
|
|
3275
2617
|
readonly autonumberFormat?: string | undefined;
|
|
3276
2618
|
readonly index?: boolean | undefined;
|
|
@@ -3292,7 +2634,6 @@ declare const SysRecordShare: Omit<{
|
|
|
3292
2634
|
readonly required?: boolean | undefined;
|
|
3293
2635
|
readonly multiple?: boolean | undefined;
|
|
3294
2636
|
readonly dependencies?: string[] | undefined;
|
|
3295
|
-
readonly theme?: string | undefined;
|
|
3296
2637
|
readonly externalId?: boolean | undefined;
|
|
3297
2638
|
readonly defaultValue?: unknown;
|
|
3298
2639
|
readonly group?: string | undefined;
|
|
@@ -3300,23 +2641,7 @@ declare const SysRecordShare: Omit<{
|
|
|
3300
2641
|
readonly system?: boolean | undefined;
|
|
3301
2642
|
readonly min?: number | undefined;
|
|
3302
2643
|
readonly max?: number | undefined;
|
|
3303
|
-
readonly
|
|
3304
|
-
enabled: boolean;
|
|
3305
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
3306
|
-
keyManagement: {
|
|
3307
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
3308
|
-
keyId?: string | undefined;
|
|
3309
|
-
rotationPolicy?: {
|
|
3310
|
-
enabled: boolean;
|
|
3311
|
-
frequencyDays: number;
|
|
3312
|
-
retainOldVersions: number;
|
|
3313
|
-
autoRotate: boolean;
|
|
3314
|
-
} | undefined;
|
|
3315
|
-
};
|
|
3316
|
-
scope: "record" | "field" | "table" | "database";
|
|
3317
|
-
deterministicEncryption: boolean;
|
|
3318
|
-
searchableEncryption: boolean;
|
|
3319
|
-
} | undefined;
|
|
2644
|
+
readonly dimensions?: number | undefined;
|
|
3320
2645
|
readonly columnName?: string | undefined;
|
|
3321
2646
|
readonly searchable?: boolean | undefined;
|
|
3322
2647
|
readonly unique?: boolean | undefined;
|
|
@@ -3325,7 +2650,6 @@ declare const SysRecordShare: Omit<{
|
|
|
3325
2650
|
readonly scale?: number | undefined;
|
|
3326
2651
|
readonly reference?: string | undefined;
|
|
3327
2652
|
readonly referenceFilters?: string[] | undefined;
|
|
3328
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
3329
2653
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3330
2654
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
3331
2655
|
readonly inlineTitle?: string | undefined;
|
|
@@ -3350,22 +2674,8 @@ declare const SysRecordShare: Omit<{
|
|
|
3350
2674
|
relationshipField?: string | undefined;
|
|
3351
2675
|
} | undefined;
|
|
3352
2676
|
readonly language?: string | undefined;
|
|
3353
|
-
readonly lineNumbers?: boolean | undefined;
|
|
3354
2677
|
readonly maxRating?: number | undefined;
|
|
3355
|
-
readonly allowHalf?: boolean | undefined;
|
|
3356
|
-
readonly displayMap?: boolean | undefined;
|
|
3357
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
3358
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
3359
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
3360
|
-
readonly allowAlpha?: boolean | undefined;
|
|
3361
|
-
readonly presetColors?: string[] | undefined;
|
|
3362
2678
|
readonly step?: number | undefined;
|
|
3363
|
-
readonly showValue?: boolean | undefined;
|
|
3364
|
-
readonly marks?: Record<string, string> | undefined;
|
|
3365
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
3366
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
3367
|
-
readonly displayValue?: boolean | undefined;
|
|
3368
|
-
readonly allowScanning?: boolean | undefined;
|
|
3369
2679
|
readonly currencyConfig?: {
|
|
3370
2680
|
precision: number;
|
|
3371
2681
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -3419,29 +2729,7 @@ declare const SysRecordShare: Omit<{
|
|
|
3419
2729
|
} | undefined;
|
|
3420
2730
|
maxVersions?: number | undefined;
|
|
3421
2731
|
} | undefined;
|
|
3422
|
-
readonly
|
|
3423
|
-
field: string;
|
|
3424
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
3425
|
-
preserveFormat: boolean;
|
|
3426
|
-
preserveLength: boolean;
|
|
3427
|
-
pattern?: string | undefined;
|
|
3428
|
-
roles?: string[] | undefined;
|
|
3429
|
-
exemptRoles?: string[] | undefined;
|
|
3430
|
-
} | undefined;
|
|
3431
|
-
readonly auditTrail?: boolean | undefined;
|
|
3432
|
-
readonly cached?: {
|
|
3433
|
-
enabled: boolean;
|
|
3434
|
-
ttl: number;
|
|
3435
|
-
invalidateOn: string[];
|
|
3436
|
-
} | undefined;
|
|
3437
|
-
readonly dataQuality?: {
|
|
3438
|
-
uniqueness: boolean;
|
|
3439
|
-
completeness: number;
|
|
3440
|
-
accuracy?: {
|
|
3441
|
-
source: string;
|
|
3442
|
-
threshold: number;
|
|
3443
|
-
} | undefined;
|
|
3444
|
-
} | undefined;
|
|
2732
|
+
readonly trackHistory?: boolean | undefined;
|
|
3445
2733
|
readonly visibleWhen?: {
|
|
3446
2734
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3447
2735
|
source?: string | undefined;
|
|
@@ -3480,7 +2768,6 @@ declare const SysRecordShare: Omit<{
|
|
|
3480
2768
|
} | undefined;
|
|
3481
2769
|
readonly sortable?: boolean | undefined;
|
|
3482
2770
|
readonly inlineHelpText?: string | undefined;
|
|
3483
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
3484
2771
|
readonly caseSensitive?: boolean | undefined;
|
|
3485
2772
|
readonly autonumberFormat?: string | undefined;
|
|
3486
2773
|
readonly index?: boolean | undefined;
|
|
@@ -3532,7 +2819,6 @@ declare const SysSharingRule: Omit<{
|
|
|
3532
2819
|
multiple: boolean;
|
|
3533
2820
|
unique: boolean;
|
|
3534
2821
|
deleteBehavior: "set_null" | "cascade" | "restrict";
|
|
3535
|
-
auditTrail: boolean;
|
|
3536
2822
|
hidden: boolean;
|
|
3537
2823
|
readonly: boolean;
|
|
3538
2824
|
sortable: boolean;
|
|
@@ -3558,7 +2844,6 @@ declare const SysSharingRule: Omit<{
|
|
|
3558
2844
|
}[] | undefined;
|
|
3559
2845
|
reference?: string | undefined;
|
|
3560
2846
|
referenceFilters?: string[] | undefined;
|
|
3561
|
-
writeRequiresMasterRead?: boolean | undefined;
|
|
3562
2847
|
inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
3563
2848
|
inlineTitle?: string | undefined;
|
|
3564
2849
|
inlineColumns?: any[] | undefined;
|
|
@@ -3590,28 +2875,14 @@ declare const SysSharingRule: Omit<{
|
|
|
3590
2875
|
relationshipField?: string | undefined;
|
|
3591
2876
|
} | undefined;
|
|
3592
2877
|
language?: string | undefined;
|
|
3593
|
-
theme?: string | undefined;
|
|
3594
|
-
lineNumbers?: boolean | undefined;
|
|
3595
2878
|
maxRating?: number | undefined;
|
|
3596
|
-
allowHalf?: boolean | undefined;
|
|
3597
|
-
displayMap?: boolean | undefined;
|
|
3598
|
-
allowGeocoding?: boolean | undefined;
|
|
3599
|
-
addressFormat?: "us" | "uk" | "international" | undefined;
|
|
3600
|
-
colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
3601
|
-
allowAlpha?: boolean | undefined;
|
|
3602
|
-
presetColors?: string[] | undefined;
|
|
3603
2879
|
step?: number | undefined;
|
|
3604
|
-
showValue?: boolean | undefined;
|
|
3605
|
-
marks?: Record<string, string> | undefined;
|
|
3606
|
-
barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
3607
|
-
qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
3608
|
-
displayValue?: boolean | undefined;
|
|
3609
|
-
allowScanning?: boolean | undefined;
|
|
3610
2880
|
currencyConfig?: {
|
|
3611
2881
|
precision: number;
|
|
3612
2882
|
currencyMode: "fixed" | "dynamic";
|
|
3613
2883
|
defaultCurrency: string;
|
|
3614
2884
|
} | undefined;
|
|
2885
|
+
dimensions?: number | undefined;
|
|
3615
2886
|
vectorConfig?: {
|
|
3616
2887
|
dimensions: number;
|
|
3617
2888
|
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
@@ -3660,46 +2931,8 @@ declare const SysSharingRule: Omit<{
|
|
|
3660
2931
|
} | undefined;
|
|
3661
2932
|
maxVersions?: number | undefined;
|
|
3662
2933
|
} | undefined;
|
|
3663
|
-
|
|
3664
|
-
enabled: boolean;
|
|
3665
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
3666
|
-
keyManagement: {
|
|
3667
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
3668
|
-
keyId?: string | undefined;
|
|
3669
|
-
rotationPolicy?: {
|
|
3670
|
-
enabled: boolean;
|
|
3671
|
-
frequencyDays: number;
|
|
3672
|
-
retainOldVersions: number;
|
|
3673
|
-
autoRotate: boolean;
|
|
3674
|
-
} | undefined;
|
|
3675
|
-
};
|
|
3676
|
-
scope: "record" | "field" | "table" | "database";
|
|
3677
|
-
deterministicEncryption: boolean;
|
|
3678
|
-
searchableEncryption: boolean;
|
|
3679
|
-
} | undefined;
|
|
3680
|
-
maskingRule?: {
|
|
3681
|
-
field: string;
|
|
3682
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
3683
|
-
preserveFormat: boolean;
|
|
3684
|
-
preserveLength: boolean;
|
|
3685
|
-
pattern?: string | undefined;
|
|
3686
|
-
roles?: string[] | undefined;
|
|
3687
|
-
exemptRoles?: string[] | undefined;
|
|
3688
|
-
} | undefined;
|
|
2934
|
+
trackHistory?: boolean | undefined;
|
|
3689
2935
|
dependencies?: string[] | undefined;
|
|
3690
|
-
cached?: {
|
|
3691
|
-
enabled: boolean;
|
|
3692
|
-
ttl: number;
|
|
3693
|
-
invalidateOn: string[];
|
|
3694
|
-
} | undefined;
|
|
3695
|
-
dataQuality?: {
|
|
3696
|
-
uniqueness: boolean;
|
|
3697
|
-
completeness: number;
|
|
3698
|
-
accuracy?: {
|
|
3699
|
-
source: string;
|
|
3700
|
-
threshold: number;
|
|
3701
|
-
} | undefined;
|
|
3702
|
-
} | undefined;
|
|
3703
2936
|
group?: string | undefined;
|
|
3704
2937
|
visibleWhen?: {
|
|
3705
2938
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -3771,7 +3004,6 @@ declare const SysSharingRule: Omit<{
|
|
|
3771
3004
|
} | undefined;
|
|
3772
3005
|
system?: boolean | undefined;
|
|
3773
3006
|
inlineHelpText?: string | undefined;
|
|
3774
|
-
trackFeedHistory?: boolean | undefined;
|
|
3775
3007
|
caseSensitive?: boolean | undefined;
|
|
3776
3008
|
autonumberFormat?: string | undefined;
|
|
3777
3009
|
}>;
|
|
@@ -3862,12 +3094,13 @@ declare const SysSharingRule: Omit<{
|
|
|
3862
3094
|
key: string;
|
|
3863
3095
|
interval?: string | undefined;
|
|
3864
3096
|
} | undefined;
|
|
3865
|
-
cdc?: {
|
|
3866
|
-
enabled: boolean;
|
|
3867
|
-
events: ("delete" | "update" | "insert")[];
|
|
3868
|
-
destination: string;
|
|
3869
|
-
} | undefined;
|
|
3870
3097
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
3098
|
+
activityMilestones?: {
|
|
3099
|
+
field: string;
|
|
3100
|
+
value: string;
|
|
3101
|
+
summary: string;
|
|
3102
|
+
type?: string | undefined;
|
|
3103
|
+
}[] | undefined;
|
|
3871
3104
|
displayNameField?: string | undefined;
|
|
3872
3105
|
recordName?: {
|
|
3873
3106
|
type: "text" | "autonumber";
|
|
@@ -4178,7 +3411,6 @@ declare const SysSharingRule: Omit<{
|
|
|
4178
3411
|
clone: boolean;
|
|
4179
3412
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
4180
3413
|
} | undefined;
|
|
4181
|
-
recordTypes?: string[] | undefined;
|
|
4182
3414
|
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
4183
3415
|
publicSharing?: {
|
|
4184
3416
|
enabled: boolean;
|
|
@@ -4235,6 +3467,8 @@ declare const SysSharingRule: Omit<{
|
|
|
4235
3467
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
4236
3468
|
confirmText?: string | undefined;
|
|
4237
3469
|
successMessage?: string | undefined;
|
|
3470
|
+
errorMessage?: string | undefined;
|
|
3471
|
+
undoable?: boolean | undefined;
|
|
4238
3472
|
resultDialog?: {
|
|
4239
3473
|
title?: string | undefined;
|
|
4240
3474
|
description?: string | undefined;
|
|
@@ -4427,7 +3661,6 @@ declare const SysSharingRule: Omit<{
|
|
|
4427
3661
|
readonly required?: boolean | undefined;
|
|
4428
3662
|
readonly multiple?: boolean | undefined;
|
|
4429
3663
|
readonly dependencies?: string[] | undefined;
|
|
4430
|
-
readonly theme?: string | undefined;
|
|
4431
3664
|
readonly externalId?: boolean | undefined;
|
|
4432
3665
|
readonly defaultValue?: unknown;
|
|
4433
3666
|
readonly group?: string | undefined;
|
|
@@ -4435,23 +3668,7 @@ declare const SysSharingRule: Omit<{
|
|
|
4435
3668
|
readonly system?: boolean | undefined;
|
|
4436
3669
|
readonly min?: number | undefined;
|
|
4437
3670
|
readonly max?: number | undefined;
|
|
4438
|
-
readonly
|
|
4439
|
-
enabled: boolean;
|
|
4440
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
4441
|
-
keyManagement: {
|
|
4442
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
4443
|
-
keyId?: string | undefined;
|
|
4444
|
-
rotationPolicy?: {
|
|
4445
|
-
enabled: boolean;
|
|
4446
|
-
frequencyDays: number;
|
|
4447
|
-
retainOldVersions: number;
|
|
4448
|
-
autoRotate: boolean;
|
|
4449
|
-
} | undefined;
|
|
4450
|
-
};
|
|
4451
|
-
scope: "record" | "field" | "table" | "database";
|
|
4452
|
-
deterministicEncryption: boolean;
|
|
4453
|
-
searchableEncryption: boolean;
|
|
4454
|
-
} | undefined;
|
|
3671
|
+
readonly dimensions?: number | undefined;
|
|
4455
3672
|
readonly columnName?: string | undefined;
|
|
4456
3673
|
readonly searchable?: boolean | undefined;
|
|
4457
3674
|
readonly unique?: boolean | undefined;
|
|
@@ -4460,7 +3677,6 @@ declare const SysSharingRule: Omit<{
|
|
|
4460
3677
|
readonly scale?: number | undefined;
|
|
4461
3678
|
readonly reference?: string | undefined;
|
|
4462
3679
|
readonly referenceFilters?: string[] | undefined;
|
|
4463
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
4464
3680
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4465
3681
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
4466
3682
|
readonly inlineTitle?: string | undefined;
|
|
@@ -4485,22 +3701,8 @@ declare const SysSharingRule: Omit<{
|
|
|
4485
3701
|
relationshipField?: string | undefined;
|
|
4486
3702
|
} | undefined;
|
|
4487
3703
|
readonly language?: string | undefined;
|
|
4488
|
-
readonly lineNumbers?: boolean | undefined;
|
|
4489
3704
|
readonly maxRating?: number | undefined;
|
|
4490
|
-
readonly allowHalf?: boolean | undefined;
|
|
4491
|
-
readonly displayMap?: boolean | undefined;
|
|
4492
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
4493
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
4494
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
4495
|
-
readonly allowAlpha?: boolean | undefined;
|
|
4496
|
-
readonly presetColors?: string[] | undefined;
|
|
4497
3705
|
readonly step?: number | undefined;
|
|
4498
|
-
readonly showValue?: boolean | undefined;
|
|
4499
|
-
readonly marks?: Record<string, string> | undefined;
|
|
4500
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
4501
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
4502
|
-
readonly displayValue?: boolean | undefined;
|
|
4503
|
-
readonly allowScanning?: boolean | undefined;
|
|
4504
3706
|
readonly currencyConfig?: {
|
|
4505
3707
|
precision: number;
|
|
4506
3708
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -4554,29 +3756,7 @@ declare const SysSharingRule: Omit<{
|
|
|
4554
3756
|
} | undefined;
|
|
4555
3757
|
maxVersions?: number | undefined;
|
|
4556
3758
|
} | undefined;
|
|
4557
|
-
readonly
|
|
4558
|
-
field: string;
|
|
4559
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
4560
|
-
preserveFormat: boolean;
|
|
4561
|
-
preserveLength: boolean;
|
|
4562
|
-
pattern?: string | undefined;
|
|
4563
|
-
roles?: string[] | undefined;
|
|
4564
|
-
exemptRoles?: string[] | undefined;
|
|
4565
|
-
} | undefined;
|
|
4566
|
-
readonly auditTrail?: boolean | undefined;
|
|
4567
|
-
readonly cached?: {
|
|
4568
|
-
enabled: boolean;
|
|
4569
|
-
ttl: number;
|
|
4570
|
-
invalidateOn: string[];
|
|
4571
|
-
} | undefined;
|
|
4572
|
-
readonly dataQuality?: {
|
|
4573
|
-
uniqueness: boolean;
|
|
4574
|
-
completeness: number;
|
|
4575
|
-
accuracy?: {
|
|
4576
|
-
source: string;
|
|
4577
|
-
threshold: number;
|
|
4578
|
-
} | undefined;
|
|
4579
|
-
} | undefined;
|
|
3759
|
+
readonly trackHistory?: boolean | undefined;
|
|
4580
3760
|
readonly visibleWhen?: {
|
|
4581
3761
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4582
3762
|
source?: string | undefined;
|
|
@@ -4615,7 +3795,6 @@ declare const SysSharingRule: Omit<{
|
|
|
4615
3795
|
} | undefined;
|
|
4616
3796
|
readonly sortable?: boolean | undefined;
|
|
4617
3797
|
readonly inlineHelpText?: string | undefined;
|
|
4618
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
4619
3798
|
readonly caseSensitive?: boolean | undefined;
|
|
4620
3799
|
readonly autonumberFormat?: string | undefined;
|
|
4621
3800
|
readonly index?: boolean | undefined;
|
|
@@ -4637,7 +3816,6 @@ declare const SysSharingRule: Omit<{
|
|
|
4637
3816
|
readonly required?: boolean | undefined;
|
|
4638
3817
|
readonly multiple?: boolean | undefined;
|
|
4639
3818
|
readonly dependencies?: string[] | undefined;
|
|
4640
|
-
readonly theme?: string | undefined;
|
|
4641
3819
|
readonly externalId?: boolean | undefined;
|
|
4642
3820
|
readonly defaultValue?: unknown;
|
|
4643
3821
|
readonly group?: string | undefined;
|
|
@@ -4645,23 +3823,7 @@ declare const SysSharingRule: Omit<{
|
|
|
4645
3823
|
readonly system?: boolean | undefined;
|
|
4646
3824
|
readonly min?: number | undefined;
|
|
4647
3825
|
readonly max?: number | undefined;
|
|
4648
|
-
readonly
|
|
4649
|
-
enabled: boolean;
|
|
4650
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
4651
|
-
keyManagement: {
|
|
4652
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
4653
|
-
keyId?: string | undefined;
|
|
4654
|
-
rotationPolicy?: {
|
|
4655
|
-
enabled: boolean;
|
|
4656
|
-
frequencyDays: number;
|
|
4657
|
-
retainOldVersions: number;
|
|
4658
|
-
autoRotate: boolean;
|
|
4659
|
-
} | undefined;
|
|
4660
|
-
};
|
|
4661
|
-
scope: "record" | "field" | "table" | "database";
|
|
4662
|
-
deterministicEncryption: boolean;
|
|
4663
|
-
searchableEncryption: boolean;
|
|
4664
|
-
} | undefined;
|
|
3826
|
+
readonly dimensions?: number | undefined;
|
|
4665
3827
|
readonly columnName?: string | undefined;
|
|
4666
3828
|
readonly searchable?: boolean | undefined;
|
|
4667
3829
|
readonly unique?: boolean | undefined;
|
|
@@ -4670,7 +3832,6 @@ declare const SysSharingRule: Omit<{
|
|
|
4670
3832
|
readonly scale?: number | undefined;
|
|
4671
3833
|
reference: string;
|
|
4672
3834
|
readonly referenceFilters?: string[] | undefined;
|
|
4673
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
4674
3835
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4675
3836
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
4676
3837
|
readonly inlineTitle?: string | undefined;
|
|
@@ -4695,22 +3856,8 @@ declare const SysSharingRule: Omit<{
|
|
|
4695
3856
|
relationshipField?: string | undefined;
|
|
4696
3857
|
} | undefined;
|
|
4697
3858
|
readonly language?: string | undefined;
|
|
4698
|
-
readonly lineNumbers?: boolean | undefined;
|
|
4699
3859
|
readonly maxRating?: number | undefined;
|
|
4700
|
-
readonly allowHalf?: boolean | undefined;
|
|
4701
|
-
readonly displayMap?: boolean | undefined;
|
|
4702
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
4703
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
4704
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
4705
|
-
readonly allowAlpha?: boolean | undefined;
|
|
4706
|
-
readonly presetColors?: string[] | undefined;
|
|
4707
3860
|
readonly step?: number | undefined;
|
|
4708
|
-
readonly showValue?: boolean | undefined;
|
|
4709
|
-
readonly marks?: Record<string, string> | undefined;
|
|
4710
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
4711
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
4712
|
-
readonly displayValue?: boolean | undefined;
|
|
4713
|
-
readonly allowScanning?: boolean | undefined;
|
|
4714
3861
|
readonly currencyConfig?: {
|
|
4715
3862
|
precision: number;
|
|
4716
3863
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -4764,29 +3911,7 @@ declare const SysSharingRule: Omit<{
|
|
|
4764
3911
|
} | undefined;
|
|
4765
3912
|
maxVersions?: number | undefined;
|
|
4766
3913
|
} | undefined;
|
|
4767
|
-
readonly
|
|
4768
|
-
field: string;
|
|
4769
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
4770
|
-
preserveFormat: boolean;
|
|
4771
|
-
preserveLength: boolean;
|
|
4772
|
-
pattern?: string | undefined;
|
|
4773
|
-
roles?: string[] | undefined;
|
|
4774
|
-
exemptRoles?: string[] | undefined;
|
|
4775
|
-
} | undefined;
|
|
4776
|
-
readonly auditTrail?: boolean | undefined;
|
|
4777
|
-
readonly cached?: {
|
|
4778
|
-
enabled: boolean;
|
|
4779
|
-
ttl: number;
|
|
4780
|
-
invalidateOn: string[];
|
|
4781
|
-
} | undefined;
|
|
4782
|
-
readonly dataQuality?: {
|
|
4783
|
-
uniqueness: boolean;
|
|
4784
|
-
completeness: number;
|
|
4785
|
-
accuracy?: {
|
|
4786
|
-
source: string;
|
|
4787
|
-
threshold: number;
|
|
4788
|
-
} | undefined;
|
|
4789
|
-
} | undefined;
|
|
3914
|
+
readonly trackHistory?: boolean | undefined;
|
|
4790
3915
|
readonly visibleWhen?: {
|
|
4791
3916
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4792
3917
|
source?: string | undefined;
|
|
@@ -4825,7 +3950,6 @@ declare const SysSharingRule: Omit<{
|
|
|
4825
3950
|
} | undefined;
|
|
4826
3951
|
readonly sortable?: boolean | undefined;
|
|
4827
3952
|
readonly inlineHelpText?: string | undefined;
|
|
4828
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
4829
3953
|
readonly caseSensitive?: boolean | undefined;
|
|
4830
3954
|
readonly autonumberFormat?: string | undefined;
|
|
4831
3955
|
readonly index?: boolean | undefined;
|
|
@@ -4847,7 +3971,6 @@ declare const SysSharingRule: Omit<{
|
|
|
4847
3971
|
readonly required?: boolean | undefined;
|
|
4848
3972
|
readonly multiple?: boolean | undefined;
|
|
4849
3973
|
readonly dependencies?: string[] | undefined;
|
|
4850
|
-
readonly theme?: string | undefined;
|
|
4851
3974
|
readonly externalId?: boolean | undefined;
|
|
4852
3975
|
readonly defaultValue?: unknown;
|
|
4853
3976
|
readonly group?: string | undefined;
|
|
@@ -4855,23 +3978,7 @@ declare const SysSharingRule: Omit<{
|
|
|
4855
3978
|
readonly system?: boolean | undefined;
|
|
4856
3979
|
readonly min?: number | undefined;
|
|
4857
3980
|
readonly max?: number | undefined;
|
|
4858
|
-
readonly
|
|
4859
|
-
enabled: boolean;
|
|
4860
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
4861
|
-
keyManagement: {
|
|
4862
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
4863
|
-
keyId?: string | undefined;
|
|
4864
|
-
rotationPolicy?: {
|
|
4865
|
-
enabled: boolean;
|
|
4866
|
-
frequencyDays: number;
|
|
4867
|
-
retainOldVersions: number;
|
|
4868
|
-
autoRotate: boolean;
|
|
4869
|
-
} | undefined;
|
|
4870
|
-
};
|
|
4871
|
-
scope: "record" | "field" | "table" | "database";
|
|
4872
|
-
deterministicEncryption: boolean;
|
|
4873
|
-
searchableEncryption: boolean;
|
|
4874
|
-
} | undefined;
|
|
3981
|
+
readonly dimensions?: number | undefined;
|
|
4875
3982
|
readonly columnName?: string | undefined;
|
|
4876
3983
|
readonly searchable?: boolean | undefined;
|
|
4877
3984
|
readonly unique?: boolean | undefined;
|
|
@@ -4880,7 +3987,6 @@ declare const SysSharingRule: Omit<{
|
|
|
4880
3987
|
readonly scale?: number | undefined;
|
|
4881
3988
|
readonly reference?: string | undefined;
|
|
4882
3989
|
readonly referenceFilters?: string[] | undefined;
|
|
4883
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
4884
3990
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4885
3991
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
4886
3992
|
readonly inlineTitle?: string | undefined;
|
|
@@ -4905,22 +4011,8 @@ declare const SysSharingRule: Omit<{
|
|
|
4905
4011
|
relationshipField?: string | undefined;
|
|
4906
4012
|
} | undefined;
|
|
4907
4013
|
readonly language?: string | undefined;
|
|
4908
|
-
readonly lineNumbers?: boolean | undefined;
|
|
4909
4014
|
readonly maxRating?: number | undefined;
|
|
4910
|
-
readonly allowHalf?: boolean | undefined;
|
|
4911
|
-
readonly displayMap?: boolean | undefined;
|
|
4912
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
4913
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
4914
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
4915
|
-
readonly allowAlpha?: boolean | undefined;
|
|
4916
|
-
readonly presetColors?: string[] | undefined;
|
|
4917
4015
|
readonly step?: number | undefined;
|
|
4918
|
-
readonly showValue?: boolean | undefined;
|
|
4919
|
-
readonly marks?: Record<string, string> | undefined;
|
|
4920
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
4921
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
4922
|
-
readonly displayValue?: boolean | undefined;
|
|
4923
|
-
readonly allowScanning?: boolean | undefined;
|
|
4924
4016
|
readonly currencyConfig?: {
|
|
4925
4017
|
precision: number;
|
|
4926
4018
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -4974,29 +4066,7 @@ declare const SysSharingRule: Omit<{
|
|
|
4974
4066
|
} | undefined;
|
|
4975
4067
|
maxVersions?: number | undefined;
|
|
4976
4068
|
} | undefined;
|
|
4977
|
-
readonly
|
|
4978
|
-
field: string;
|
|
4979
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
4980
|
-
preserveFormat: boolean;
|
|
4981
|
-
preserveLength: boolean;
|
|
4982
|
-
pattern?: string | undefined;
|
|
4983
|
-
roles?: string[] | undefined;
|
|
4984
|
-
exemptRoles?: string[] | undefined;
|
|
4985
|
-
} | undefined;
|
|
4986
|
-
readonly auditTrail?: boolean | undefined;
|
|
4987
|
-
readonly cached?: {
|
|
4988
|
-
enabled: boolean;
|
|
4989
|
-
ttl: number;
|
|
4990
|
-
invalidateOn: string[];
|
|
4991
|
-
} | undefined;
|
|
4992
|
-
readonly dataQuality?: {
|
|
4993
|
-
uniqueness: boolean;
|
|
4994
|
-
completeness: number;
|
|
4995
|
-
accuracy?: {
|
|
4996
|
-
source: string;
|
|
4997
|
-
threshold: number;
|
|
4998
|
-
} | undefined;
|
|
4999
|
-
} | undefined;
|
|
4069
|
+
readonly trackHistory?: boolean | undefined;
|
|
5000
4070
|
readonly visibleWhen?: {
|
|
5001
4071
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5002
4072
|
source?: string | undefined;
|
|
@@ -5035,7 +4105,6 @@ declare const SysSharingRule: Omit<{
|
|
|
5035
4105
|
} | undefined;
|
|
5036
4106
|
readonly sortable?: boolean | undefined;
|
|
5037
4107
|
readonly inlineHelpText?: string | undefined;
|
|
5038
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
5039
4108
|
readonly caseSensitive?: boolean | undefined;
|
|
5040
4109
|
readonly autonumberFormat?: string | undefined;
|
|
5041
4110
|
readonly index?: boolean | undefined;
|
|
@@ -5057,7 +4126,6 @@ declare const SysSharingRule: Omit<{
|
|
|
5057
4126
|
readonly required?: boolean | undefined;
|
|
5058
4127
|
readonly multiple?: boolean | undefined;
|
|
5059
4128
|
readonly dependencies?: string[] | undefined;
|
|
5060
|
-
readonly theme?: string | undefined;
|
|
5061
4129
|
readonly externalId?: boolean | undefined;
|
|
5062
4130
|
readonly defaultValue?: unknown;
|
|
5063
4131
|
readonly group?: string | undefined;
|
|
@@ -5065,23 +4133,7 @@ declare const SysSharingRule: Omit<{
|
|
|
5065
4133
|
readonly system?: boolean | undefined;
|
|
5066
4134
|
readonly min?: number | undefined;
|
|
5067
4135
|
readonly max?: number | undefined;
|
|
5068
|
-
readonly
|
|
5069
|
-
enabled: boolean;
|
|
5070
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
5071
|
-
keyManagement: {
|
|
5072
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
5073
|
-
keyId?: string | undefined;
|
|
5074
|
-
rotationPolicy?: {
|
|
5075
|
-
enabled: boolean;
|
|
5076
|
-
frequencyDays: number;
|
|
5077
|
-
retainOldVersions: number;
|
|
5078
|
-
autoRotate: boolean;
|
|
5079
|
-
} | undefined;
|
|
5080
|
-
};
|
|
5081
|
-
scope: "record" | "field" | "table" | "database";
|
|
5082
|
-
deterministicEncryption: boolean;
|
|
5083
|
-
searchableEncryption: boolean;
|
|
5084
|
-
} | undefined;
|
|
4136
|
+
readonly dimensions?: number | undefined;
|
|
5085
4137
|
readonly columnName?: string | undefined;
|
|
5086
4138
|
readonly searchable?: boolean | undefined;
|
|
5087
4139
|
readonly unique?: boolean | undefined;
|
|
@@ -5090,7 +4142,6 @@ declare const SysSharingRule: Omit<{
|
|
|
5090
4142
|
readonly scale?: number | undefined;
|
|
5091
4143
|
readonly reference?: string | undefined;
|
|
5092
4144
|
readonly referenceFilters?: string[] | undefined;
|
|
5093
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
5094
4145
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5095
4146
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
5096
4147
|
readonly inlineTitle?: string | undefined;
|
|
@@ -5115,22 +4166,8 @@ declare const SysSharingRule: Omit<{
|
|
|
5115
4166
|
relationshipField?: string | undefined;
|
|
5116
4167
|
} | undefined;
|
|
5117
4168
|
readonly language?: string | undefined;
|
|
5118
|
-
readonly lineNumbers?: boolean | undefined;
|
|
5119
4169
|
readonly maxRating?: number | undefined;
|
|
5120
|
-
readonly allowHalf?: boolean | undefined;
|
|
5121
|
-
readonly displayMap?: boolean | undefined;
|
|
5122
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
5123
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
5124
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
5125
|
-
readonly allowAlpha?: boolean | undefined;
|
|
5126
|
-
readonly presetColors?: string[] | undefined;
|
|
5127
4170
|
readonly step?: number | undefined;
|
|
5128
|
-
readonly showValue?: boolean | undefined;
|
|
5129
|
-
readonly marks?: Record<string, string> | undefined;
|
|
5130
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
5131
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
5132
|
-
readonly displayValue?: boolean | undefined;
|
|
5133
|
-
readonly allowScanning?: boolean | undefined;
|
|
5134
4171
|
readonly currencyConfig?: {
|
|
5135
4172
|
precision: number;
|
|
5136
4173
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -5184,29 +4221,7 @@ declare const SysSharingRule: Omit<{
|
|
|
5184
4221
|
} | undefined;
|
|
5185
4222
|
maxVersions?: number | undefined;
|
|
5186
4223
|
} | undefined;
|
|
5187
|
-
readonly
|
|
5188
|
-
field: string;
|
|
5189
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
5190
|
-
preserveFormat: boolean;
|
|
5191
|
-
preserveLength: boolean;
|
|
5192
|
-
pattern?: string | undefined;
|
|
5193
|
-
roles?: string[] | undefined;
|
|
5194
|
-
exemptRoles?: string[] | undefined;
|
|
5195
|
-
} | undefined;
|
|
5196
|
-
readonly auditTrail?: boolean | undefined;
|
|
5197
|
-
readonly cached?: {
|
|
5198
|
-
enabled: boolean;
|
|
5199
|
-
ttl: number;
|
|
5200
|
-
invalidateOn: string[];
|
|
5201
|
-
} | undefined;
|
|
5202
|
-
readonly dataQuality?: {
|
|
5203
|
-
uniqueness: boolean;
|
|
5204
|
-
completeness: number;
|
|
5205
|
-
accuracy?: {
|
|
5206
|
-
source: string;
|
|
5207
|
-
threshold: number;
|
|
5208
|
-
} | undefined;
|
|
5209
|
-
} | undefined;
|
|
4224
|
+
readonly trackHistory?: boolean | undefined;
|
|
5210
4225
|
readonly visibleWhen?: {
|
|
5211
4226
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5212
4227
|
source?: string | undefined;
|
|
@@ -5245,7 +4260,6 @@ declare const SysSharingRule: Omit<{
|
|
|
5245
4260
|
} | undefined;
|
|
5246
4261
|
readonly sortable?: boolean | undefined;
|
|
5247
4262
|
readonly inlineHelpText?: string | undefined;
|
|
5248
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
5249
4263
|
readonly caseSensitive?: boolean | undefined;
|
|
5250
4264
|
readonly autonumberFormat?: string | undefined;
|
|
5251
4265
|
readonly index?: boolean | undefined;
|
|
@@ -5267,7 +4281,6 @@ declare const SysSharingRule: Omit<{
|
|
|
5267
4281
|
readonly required?: boolean | undefined;
|
|
5268
4282
|
readonly multiple?: boolean | undefined;
|
|
5269
4283
|
readonly dependencies?: string[] | undefined;
|
|
5270
|
-
readonly theme?: string | undefined;
|
|
5271
4284
|
readonly externalId?: boolean | undefined;
|
|
5272
4285
|
readonly defaultValue?: unknown;
|
|
5273
4286
|
readonly group?: string | undefined;
|
|
@@ -5275,23 +4288,7 @@ declare const SysSharingRule: Omit<{
|
|
|
5275
4288
|
readonly system?: boolean | undefined;
|
|
5276
4289
|
readonly min?: number | undefined;
|
|
5277
4290
|
readonly max?: number | undefined;
|
|
5278
|
-
readonly
|
|
5279
|
-
enabled: boolean;
|
|
5280
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
5281
|
-
keyManagement: {
|
|
5282
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
5283
|
-
keyId?: string | undefined;
|
|
5284
|
-
rotationPolicy?: {
|
|
5285
|
-
enabled: boolean;
|
|
5286
|
-
frequencyDays: number;
|
|
5287
|
-
retainOldVersions: number;
|
|
5288
|
-
autoRotate: boolean;
|
|
5289
|
-
} | undefined;
|
|
5290
|
-
};
|
|
5291
|
-
scope: "record" | "field" | "table" | "database";
|
|
5292
|
-
deterministicEncryption: boolean;
|
|
5293
|
-
searchableEncryption: boolean;
|
|
5294
|
-
} | undefined;
|
|
4291
|
+
readonly dimensions?: number | undefined;
|
|
5295
4292
|
readonly columnName?: string | undefined;
|
|
5296
4293
|
readonly searchable?: boolean | undefined;
|
|
5297
4294
|
readonly unique?: boolean | undefined;
|
|
@@ -5300,7 +4297,6 @@ declare const SysSharingRule: Omit<{
|
|
|
5300
4297
|
readonly scale?: number | undefined;
|
|
5301
4298
|
readonly reference?: string | undefined;
|
|
5302
4299
|
readonly referenceFilters?: string[] | undefined;
|
|
5303
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
5304
4300
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5305
4301
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
5306
4302
|
readonly inlineTitle?: string | undefined;
|
|
@@ -5325,22 +4321,8 @@ declare const SysSharingRule: Omit<{
|
|
|
5325
4321
|
relationshipField?: string | undefined;
|
|
5326
4322
|
} | undefined;
|
|
5327
4323
|
readonly language?: string | undefined;
|
|
5328
|
-
readonly lineNumbers?: boolean | undefined;
|
|
5329
4324
|
readonly maxRating?: number | undefined;
|
|
5330
|
-
readonly allowHalf?: boolean | undefined;
|
|
5331
|
-
readonly displayMap?: boolean | undefined;
|
|
5332
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
5333
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
5334
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
5335
|
-
readonly allowAlpha?: boolean | undefined;
|
|
5336
|
-
readonly presetColors?: string[] | undefined;
|
|
5337
4325
|
readonly step?: number | undefined;
|
|
5338
|
-
readonly showValue?: boolean | undefined;
|
|
5339
|
-
readonly marks?: Record<string, string> | undefined;
|
|
5340
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
5341
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
5342
|
-
readonly displayValue?: boolean | undefined;
|
|
5343
|
-
readonly allowScanning?: boolean | undefined;
|
|
5344
4326
|
readonly currencyConfig?: {
|
|
5345
4327
|
precision: number;
|
|
5346
4328
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -5394,29 +4376,7 @@ declare const SysSharingRule: Omit<{
|
|
|
5394
4376
|
} | undefined;
|
|
5395
4377
|
maxVersions?: number | undefined;
|
|
5396
4378
|
} | undefined;
|
|
5397
|
-
readonly
|
|
5398
|
-
field: string;
|
|
5399
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
5400
|
-
preserveFormat: boolean;
|
|
5401
|
-
preserveLength: boolean;
|
|
5402
|
-
pattern?: string | undefined;
|
|
5403
|
-
roles?: string[] | undefined;
|
|
5404
|
-
exemptRoles?: string[] | undefined;
|
|
5405
|
-
} | undefined;
|
|
5406
|
-
readonly auditTrail?: boolean | undefined;
|
|
5407
|
-
readonly cached?: {
|
|
5408
|
-
enabled: boolean;
|
|
5409
|
-
ttl: number;
|
|
5410
|
-
invalidateOn: string[];
|
|
5411
|
-
} | undefined;
|
|
5412
|
-
readonly dataQuality?: {
|
|
5413
|
-
uniqueness: boolean;
|
|
5414
|
-
completeness: number;
|
|
5415
|
-
accuracy?: {
|
|
5416
|
-
source: string;
|
|
5417
|
-
threshold: number;
|
|
5418
|
-
} | undefined;
|
|
5419
|
-
} | undefined;
|
|
4379
|
+
readonly trackHistory?: boolean | undefined;
|
|
5420
4380
|
readonly visibleWhen?: {
|
|
5421
4381
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5422
4382
|
source?: string | undefined;
|
|
@@ -5455,7 +4415,6 @@ declare const SysSharingRule: Omit<{
|
|
|
5455
4415
|
} | undefined;
|
|
5456
4416
|
readonly sortable?: boolean | undefined;
|
|
5457
4417
|
readonly inlineHelpText?: string | undefined;
|
|
5458
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
5459
4418
|
readonly caseSensitive?: boolean | undefined;
|
|
5460
4419
|
readonly autonumberFormat?: string | undefined;
|
|
5461
4420
|
readonly index?: boolean | undefined;
|
|
@@ -5477,7 +4436,6 @@ declare const SysSharingRule: Omit<{
|
|
|
5477
4436
|
readonly required?: boolean | undefined;
|
|
5478
4437
|
readonly multiple?: boolean | undefined;
|
|
5479
4438
|
readonly dependencies?: string[] | undefined;
|
|
5480
|
-
readonly theme?: string | undefined;
|
|
5481
4439
|
readonly externalId?: boolean | undefined;
|
|
5482
4440
|
readonly defaultValue?: unknown;
|
|
5483
4441
|
readonly group?: string | undefined;
|
|
@@ -5485,23 +4443,7 @@ declare const SysSharingRule: Omit<{
|
|
|
5485
4443
|
readonly system?: boolean | undefined;
|
|
5486
4444
|
readonly min?: number | undefined;
|
|
5487
4445
|
readonly max?: number | undefined;
|
|
5488
|
-
readonly
|
|
5489
|
-
enabled: boolean;
|
|
5490
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
5491
|
-
keyManagement: {
|
|
5492
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
5493
|
-
keyId?: string | undefined;
|
|
5494
|
-
rotationPolicy?: {
|
|
5495
|
-
enabled: boolean;
|
|
5496
|
-
frequencyDays: number;
|
|
5497
|
-
retainOldVersions: number;
|
|
5498
|
-
autoRotate: boolean;
|
|
5499
|
-
} | undefined;
|
|
5500
|
-
};
|
|
5501
|
-
scope: "record" | "field" | "table" | "database";
|
|
5502
|
-
deterministicEncryption: boolean;
|
|
5503
|
-
searchableEncryption: boolean;
|
|
5504
|
-
} | undefined;
|
|
4446
|
+
readonly dimensions?: number | undefined;
|
|
5505
4447
|
readonly columnName?: string | undefined;
|
|
5506
4448
|
readonly searchable?: boolean | undefined;
|
|
5507
4449
|
readonly unique?: boolean | undefined;
|
|
@@ -5510,7 +4452,6 @@ declare const SysSharingRule: Omit<{
|
|
|
5510
4452
|
readonly scale?: number | undefined;
|
|
5511
4453
|
readonly reference?: string | undefined;
|
|
5512
4454
|
readonly referenceFilters?: string[] | undefined;
|
|
5513
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
5514
4455
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5515
4456
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
5516
4457
|
readonly inlineTitle?: string | undefined;
|
|
@@ -5535,22 +4476,8 @@ declare const SysSharingRule: Omit<{
|
|
|
5535
4476
|
relationshipField?: string | undefined;
|
|
5536
4477
|
} | undefined;
|
|
5537
4478
|
readonly language?: string | undefined;
|
|
5538
|
-
readonly lineNumbers?: boolean | undefined;
|
|
5539
4479
|
readonly maxRating?: number | undefined;
|
|
5540
|
-
readonly allowHalf?: boolean | undefined;
|
|
5541
|
-
readonly displayMap?: boolean | undefined;
|
|
5542
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
5543
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
5544
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
5545
|
-
readonly allowAlpha?: boolean | undefined;
|
|
5546
|
-
readonly presetColors?: string[] | undefined;
|
|
5547
4480
|
readonly step?: number | undefined;
|
|
5548
|
-
readonly showValue?: boolean | undefined;
|
|
5549
|
-
readonly marks?: Record<string, string> | undefined;
|
|
5550
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
5551
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
5552
|
-
readonly displayValue?: boolean | undefined;
|
|
5553
|
-
readonly allowScanning?: boolean | undefined;
|
|
5554
4481
|
readonly currencyConfig?: {
|
|
5555
4482
|
precision: number;
|
|
5556
4483
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -5604,29 +4531,7 @@ declare const SysSharingRule: Omit<{
|
|
|
5604
4531
|
} | undefined;
|
|
5605
4532
|
maxVersions?: number | undefined;
|
|
5606
4533
|
} | undefined;
|
|
5607
|
-
readonly
|
|
5608
|
-
field: string;
|
|
5609
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
5610
|
-
preserveFormat: boolean;
|
|
5611
|
-
preserveLength: boolean;
|
|
5612
|
-
pattern?: string | undefined;
|
|
5613
|
-
roles?: string[] | undefined;
|
|
5614
|
-
exemptRoles?: string[] | undefined;
|
|
5615
|
-
} | undefined;
|
|
5616
|
-
readonly auditTrail?: boolean | undefined;
|
|
5617
|
-
readonly cached?: {
|
|
5618
|
-
enabled: boolean;
|
|
5619
|
-
ttl: number;
|
|
5620
|
-
invalidateOn: string[];
|
|
5621
|
-
} | undefined;
|
|
5622
|
-
readonly dataQuality?: {
|
|
5623
|
-
uniqueness: boolean;
|
|
5624
|
-
completeness: number;
|
|
5625
|
-
accuracy?: {
|
|
5626
|
-
source: string;
|
|
5627
|
-
threshold: number;
|
|
5628
|
-
} | undefined;
|
|
5629
|
-
} | undefined;
|
|
4534
|
+
readonly trackHistory?: boolean | undefined;
|
|
5630
4535
|
readonly visibleWhen?: {
|
|
5631
4536
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5632
4537
|
source?: string | undefined;
|
|
@@ -5665,7 +4570,6 @@ declare const SysSharingRule: Omit<{
|
|
|
5665
4570
|
} | undefined;
|
|
5666
4571
|
readonly sortable?: boolean | undefined;
|
|
5667
4572
|
readonly inlineHelpText?: string | undefined;
|
|
5668
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
5669
4573
|
readonly caseSensitive?: boolean | undefined;
|
|
5670
4574
|
readonly autonumberFormat?: string | undefined;
|
|
5671
4575
|
readonly index?: boolean | undefined;
|
|
@@ -5687,7 +4591,6 @@ declare const SysSharingRule: Omit<{
|
|
|
5687
4591
|
readonly required?: boolean | undefined;
|
|
5688
4592
|
readonly multiple?: boolean | undefined;
|
|
5689
4593
|
readonly dependencies?: string[] | undefined;
|
|
5690
|
-
readonly theme?: string | undefined;
|
|
5691
4594
|
readonly externalId?: boolean | undefined;
|
|
5692
4595
|
readonly defaultValue?: unknown;
|
|
5693
4596
|
readonly group?: string | undefined;
|
|
@@ -5695,23 +4598,7 @@ declare const SysSharingRule: Omit<{
|
|
|
5695
4598
|
readonly system?: boolean | undefined;
|
|
5696
4599
|
readonly min?: number | undefined;
|
|
5697
4600
|
readonly max?: number | undefined;
|
|
5698
|
-
readonly
|
|
5699
|
-
enabled: boolean;
|
|
5700
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
5701
|
-
keyManagement: {
|
|
5702
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
5703
|
-
keyId?: string | undefined;
|
|
5704
|
-
rotationPolicy?: {
|
|
5705
|
-
enabled: boolean;
|
|
5706
|
-
frequencyDays: number;
|
|
5707
|
-
retainOldVersions: number;
|
|
5708
|
-
autoRotate: boolean;
|
|
5709
|
-
} | undefined;
|
|
5710
|
-
};
|
|
5711
|
-
scope: "record" | "field" | "table" | "database";
|
|
5712
|
-
deterministicEncryption: boolean;
|
|
5713
|
-
searchableEncryption: boolean;
|
|
5714
|
-
} | undefined;
|
|
4601
|
+
readonly dimensions?: number | undefined;
|
|
5715
4602
|
readonly columnName?: string | undefined;
|
|
5716
4603
|
readonly searchable?: boolean | undefined;
|
|
5717
4604
|
readonly unique?: boolean | undefined;
|
|
@@ -5720,7 +4607,6 @@ declare const SysSharingRule: Omit<{
|
|
|
5720
4607
|
readonly scale?: number | undefined;
|
|
5721
4608
|
readonly reference?: string | undefined;
|
|
5722
4609
|
readonly referenceFilters?: string[] | undefined;
|
|
5723
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
5724
4610
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5725
4611
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
5726
4612
|
readonly inlineTitle?: string | undefined;
|
|
@@ -5745,22 +4631,8 @@ declare const SysSharingRule: Omit<{
|
|
|
5745
4631
|
relationshipField?: string | undefined;
|
|
5746
4632
|
} | undefined;
|
|
5747
4633
|
readonly language?: string | undefined;
|
|
5748
|
-
readonly lineNumbers?: boolean | undefined;
|
|
5749
4634
|
readonly maxRating?: number | undefined;
|
|
5750
|
-
readonly allowHalf?: boolean | undefined;
|
|
5751
|
-
readonly displayMap?: boolean | undefined;
|
|
5752
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
5753
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
5754
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
5755
|
-
readonly allowAlpha?: boolean | undefined;
|
|
5756
|
-
readonly presetColors?: string[] | undefined;
|
|
5757
4635
|
readonly step?: number | undefined;
|
|
5758
|
-
readonly showValue?: boolean | undefined;
|
|
5759
|
-
readonly marks?: Record<string, string> | undefined;
|
|
5760
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
5761
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
5762
|
-
readonly displayValue?: boolean | undefined;
|
|
5763
|
-
readonly allowScanning?: boolean | undefined;
|
|
5764
4636
|
readonly currencyConfig?: {
|
|
5765
4637
|
precision: number;
|
|
5766
4638
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -5814,29 +4686,7 @@ declare const SysSharingRule: Omit<{
|
|
|
5814
4686
|
} | undefined;
|
|
5815
4687
|
maxVersions?: number | undefined;
|
|
5816
4688
|
} | undefined;
|
|
5817
|
-
readonly
|
|
5818
|
-
field: string;
|
|
5819
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
5820
|
-
preserveFormat: boolean;
|
|
5821
|
-
preserveLength: boolean;
|
|
5822
|
-
pattern?: string | undefined;
|
|
5823
|
-
roles?: string[] | undefined;
|
|
5824
|
-
exemptRoles?: string[] | undefined;
|
|
5825
|
-
} | undefined;
|
|
5826
|
-
readonly auditTrail?: boolean | undefined;
|
|
5827
|
-
readonly cached?: {
|
|
5828
|
-
enabled: boolean;
|
|
5829
|
-
ttl: number;
|
|
5830
|
-
invalidateOn: string[];
|
|
5831
|
-
} | undefined;
|
|
5832
|
-
readonly dataQuality?: {
|
|
5833
|
-
uniqueness: boolean;
|
|
5834
|
-
completeness: number;
|
|
5835
|
-
accuracy?: {
|
|
5836
|
-
source: string;
|
|
5837
|
-
threshold: number;
|
|
5838
|
-
} | undefined;
|
|
5839
|
-
} | undefined;
|
|
4689
|
+
readonly trackHistory?: boolean | undefined;
|
|
5840
4690
|
readonly visibleWhen?: {
|
|
5841
4691
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5842
4692
|
source?: string | undefined;
|
|
@@ -5875,7 +4725,6 @@ declare const SysSharingRule: Omit<{
|
|
|
5875
4725
|
} | undefined;
|
|
5876
4726
|
readonly sortable?: boolean | undefined;
|
|
5877
4727
|
readonly inlineHelpText?: string | undefined;
|
|
5878
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
5879
4728
|
readonly caseSensitive?: boolean | undefined;
|
|
5880
4729
|
readonly autonumberFormat?: string | undefined;
|
|
5881
4730
|
readonly index?: boolean | undefined;
|
|
@@ -5897,7 +4746,6 @@ declare const SysSharingRule: Omit<{
|
|
|
5897
4746
|
readonly required?: boolean | undefined;
|
|
5898
4747
|
readonly multiple?: boolean | undefined;
|
|
5899
4748
|
readonly dependencies?: string[] | undefined;
|
|
5900
|
-
readonly theme?: string | undefined;
|
|
5901
4749
|
readonly externalId?: boolean | undefined;
|
|
5902
4750
|
readonly defaultValue?: unknown;
|
|
5903
4751
|
readonly group?: string | undefined;
|
|
@@ -5905,23 +4753,7 @@ declare const SysSharingRule: Omit<{
|
|
|
5905
4753
|
readonly system?: boolean | undefined;
|
|
5906
4754
|
readonly min?: number | undefined;
|
|
5907
4755
|
readonly max?: number | undefined;
|
|
5908
|
-
readonly
|
|
5909
|
-
enabled: boolean;
|
|
5910
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
5911
|
-
keyManagement: {
|
|
5912
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
5913
|
-
keyId?: string | undefined;
|
|
5914
|
-
rotationPolicy?: {
|
|
5915
|
-
enabled: boolean;
|
|
5916
|
-
frequencyDays: number;
|
|
5917
|
-
retainOldVersions: number;
|
|
5918
|
-
autoRotate: boolean;
|
|
5919
|
-
} | undefined;
|
|
5920
|
-
};
|
|
5921
|
-
scope: "record" | "field" | "table" | "database";
|
|
5922
|
-
deterministicEncryption: boolean;
|
|
5923
|
-
searchableEncryption: boolean;
|
|
5924
|
-
} | undefined;
|
|
4756
|
+
readonly dimensions?: number | undefined;
|
|
5925
4757
|
readonly columnName?: string | undefined;
|
|
5926
4758
|
readonly searchable?: boolean | undefined;
|
|
5927
4759
|
readonly unique?: boolean | undefined;
|
|
@@ -5930,7 +4762,6 @@ declare const SysSharingRule: Omit<{
|
|
|
5930
4762
|
readonly scale?: number | undefined;
|
|
5931
4763
|
readonly reference?: string | undefined;
|
|
5932
4764
|
readonly referenceFilters?: string[] | undefined;
|
|
5933
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
5934
4765
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5935
4766
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
5936
4767
|
readonly inlineTitle?: string | undefined;
|
|
@@ -5955,22 +4786,8 @@ declare const SysSharingRule: Omit<{
|
|
|
5955
4786
|
relationshipField?: string | undefined;
|
|
5956
4787
|
} | undefined;
|
|
5957
4788
|
readonly language?: string | undefined;
|
|
5958
|
-
readonly lineNumbers?: boolean | undefined;
|
|
5959
4789
|
readonly maxRating?: number | undefined;
|
|
5960
|
-
readonly allowHalf?: boolean | undefined;
|
|
5961
|
-
readonly displayMap?: boolean | undefined;
|
|
5962
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
5963
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
5964
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
5965
|
-
readonly allowAlpha?: boolean | undefined;
|
|
5966
|
-
readonly presetColors?: string[] | undefined;
|
|
5967
4790
|
readonly step?: number | undefined;
|
|
5968
|
-
readonly showValue?: boolean | undefined;
|
|
5969
|
-
readonly marks?: Record<string, string> | undefined;
|
|
5970
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
5971
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
5972
|
-
readonly displayValue?: boolean | undefined;
|
|
5973
|
-
readonly allowScanning?: boolean | undefined;
|
|
5974
4791
|
readonly currencyConfig?: {
|
|
5975
4792
|
precision: number;
|
|
5976
4793
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -6024,29 +4841,7 @@ declare const SysSharingRule: Omit<{
|
|
|
6024
4841
|
} | undefined;
|
|
6025
4842
|
maxVersions?: number | undefined;
|
|
6026
4843
|
} | undefined;
|
|
6027
|
-
readonly
|
|
6028
|
-
field: string;
|
|
6029
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
6030
|
-
preserveFormat: boolean;
|
|
6031
|
-
preserveLength: boolean;
|
|
6032
|
-
pattern?: string | undefined;
|
|
6033
|
-
roles?: string[] | undefined;
|
|
6034
|
-
exemptRoles?: string[] | undefined;
|
|
6035
|
-
} | undefined;
|
|
6036
|
-
readonly auditTrail?: boolean | undefined;
|
|
6037
|
-
readonly cached?: {
|
|
6038
|
-
enabled: boolean;
|
|
6039
|
-
ttl: number;
|
|
6040
|
-
invalidateOn: string[];
|
|
6041
|
-
} | undefined;
|
|
6042
|
-
readonly dataQuality?: {
|
|
6043
|
-
uniqueness: boolean;
|
|
6044
|
-
completeness: number;
|
|
6045
|
-
accuracy?: {
|
|
6046
|
-
source: string;
|
|
6047
|
-
threshold: number;
|
|
6048
|
-
} | undefined;
|
|
6049
|
-
} | undefined;
|
|
4844
|
+
readonly trackHistory?: boolean | undefined;
|
|
6050
4845
|
readonly visibleWhen?: {
|
|
6051
4846
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6052
4847
|
source?: string | undefined;
|
|
@@ -6085,7 +4880,6 @@ declare const SysSharingRule: Omit<{
|
|
|
6085
4880
|
} | undefined;
|
|
6086
4881
|
readonly sortable?: boolean | undefined;
|
|
6087
4882
|
readonly inlineHelpText?: string | undefined;
|
|
6088
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
6089
4883
|
readonly caseSensitive?: boolean | undefined;
|
|
6090
4884
|
readonly autonumberFormat?: string | undefined;
|
|
6091
4885
|
readonly index?: boolean | undefined;
|
|
@@ -6107,7 +4901,6 @@ declare const SysSharingRule: Omit<{
|
|
|
6107
4901
|
readonly required?: boolean | undefined;
|
|
6108
4902
|
readonly multiple?: boolean | undefined;
|
|
6109
4903
|
readonly dependencies?: string[] | undefined;
|
|
6110
|
-
readonly theme?: string | undefined;
|
|
6111
4904
|
readonly externalId?: boolean | undefined;
|
|
6112
4905
|
readonly defaultValue?: unknown;
|
|
6113
4906
|
readonly group?: string | undefined;
|
|
@@ -6115,23 +4908,7 @@ declare const SysSharingRule: Omit<{
|
|
|
6115
4908
|
readonly system?: boolean | undefined;
|
|
6116
4909
|
readonly min?: number | undefined;
|
|
6117
4910
|
readonly max?: number | undefined;
|
|
6118
|
-
readonly
|
|
6119
|
-
enabled: boolean;
|
|
6120
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
6121
|
-
keyManagement: {
|
|
6122
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
6123
|
-
keyId?: string | undefined;
|
|
6124
|
-
rotationPolicy?: {
|
|
6125
|
-
enabled: boolean;
|
|
6126
|
-
frequencyDays: number;
|
|
6127
|
-
retainOldVersions: number;
|
|
6128
|
-
autoRotate: boolean;
|
|
6129
|
-
} | undefined;
|
|
6130
|
-
};
|
|
6131
|
-
scope: "record" | "field" | "table" | "database";
|
|
6132
|
-
deterministicEncryption: boolean;
|
|
6133
|
-
searchableEncryption: boolean;
|
|
6134
|
-
} | undefined;
|
|
4911
|
+
readonly dimensions?: number | undefined;
|
|
6135
4912
|
readonly columnName?: string | undefined;
|
|
6136
4913
|
readonly searchable?: boolean | undefined;
|
|
6137
4914
|
readonly unique?: boolean | undefined;
|
|
@@ -6140,7 +4917,6 @@ declare const SysSharingRule: Omit<{
|
|
|
6140
4917
|
readonly scale?: number | undefined;
|
|
6141
4918
|
readonly reference?: string | undefined;
|
|
6142
4919
|
readonly referenceFilters?: string[] | undefined;
|
|
6143
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
6144
4920
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6145
4921
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
6146
4922
|
readonly inlineTitle?: string | undefined;
|
|
@@ -6165,22 +4941,8 @@ declare const SysSharingRule: Omit<{
|
|
|
6165
4941
|
relationshipField?: string | undefined;
|
|
6166
4942
|
} | undefined;
|
|
6167
4943
|
readonly language?: string | undefined;
|
|
6168
|
-
readonly lineNumbers?: boolean | undefined;
|
|
6169
4944
|
readonly maxRating?: number | undefined;
|
|
6170
|
-
readonly allowHalf?: boolean | undefined;
|
|
6171
|
-
readonly displayMap?: boolean | undefined;
|
|
6172
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
6173
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
6174
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
6175
|
-
readonly allowAlpha?: boolean | undefined;
|
|
6176
|
-
readonly presetColors?: string[] | undefined;
|
|
6177
4945
|
readonly step?: number | undefined;
|
|
6178
|
-
readonly showValue?: boolean | undefined;
|
|
6179
|
-
readonly marks?: Record<string, string> | undefined;
|
|
6180
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
6181
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
6182
|
-
readonly displayValue?: boolean | undefined;
|
|
6183
|
-
readonly allowScanning?: boolean | undefined;
|
|
6184
4946
|
readonly currencyConfig?: {
|
|
6185
4947
|
precision: number;
|
|
6186
4948
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -6234,29 +4996,7 @@ declare const SysSharingRule: Omit<{
|
|
|
6234
4996
|
} | undefined;
|
|
6235
4997
|
maxVersions?: number | undefined;
|
|
6236
4998
|
} | undefined;
|
|
6237
|
-
readonly
|
|
6238
|
-
field: string;
|
|
6239
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
6240
|
-
preserveFormat: boolean;
|
|
6241
|
-
preserveLength: boolean;
|
|
6242
|
-
pattern?: string | undefined;
|
|
6243
|
-
roles?: string[] | undefined;
|
|
6244
|
-
exemptRoles?: string[] | undefined;
|
|
6245
|
-
} | undefined;
|
|
6246
|
-
readonly auditTrail?: boolean | undefined;
|
|
6247
|
-
readonly cached?: {
|
|
6248
|
-
enabled: boolean;
|
|
6249
|
-
ttl: number;
|
|
6250
|
-
invalidateOn: string[];
|
|
6251
|
-
} | undefined;
|
|
6252
|
-
readonly dataQuality?: {
|
|
6253
|
-
uniqueness: boolean;
|
|
6254
|
-
completeness: number;
|
|
6255
|
-
accuracy?: {
|
|
6256
|
-
source: string;
|
|
6257
|
-
threshold: number;
|
|
6258
|
-
} | undefined;
|
|
6259
|
-
} | undefined;
|
|
4999
|
+
readonly trackHistory?: boolean | undefined;
|
|
6260
5000
|
readonly visibleWhen?: {
|
|
6261
5001
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6262
5002
|
source?: string | undefined;
|
|
@@ -6295,7 +5035,6 @@ declare const SysSharingRule: Omit<{
|
|
|
6295
5035
|
} | undefined;
|
|
6296
5036
|
readonly sortable?: boolean | undefined;
|
|
6297
5037
|
readonly inlineHelpText?: string | undefined;
|
|
6298
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
6299
5038
|
readonly caseSensitive?: boolean | undefined;
|
|
6300
5039
|
readonly autonumberFormat?: string | undefined;
|
|
6301
5040
|
readonly index?: boolean | undefined;
|
|
@@ -6317,7 +5056,6 @@ declare const SysSharingRule: Omit<{
|
|
|
6317
5056
|
readonly required?: boolean | undefined;
|
|
6318
5057
|
readonly multiple?: boolean | undefined;
|
|
6319
5058
|
readonly dependencies?: string[] | undefined;
|
|
6320
|
-
readonly theme?: string | undefined;
|
|
6321
5059
|
readonly externalId?: boolean | undefined;
|
|
6322
5060
|
readonly defaultValue?: unknown;
|
|
6323
5061
|
readonly group?: string | undefined;
|
|
@@ -6325,23 +5063,7 @@ declare const SysSharingRule: Omit<{
|
|
|
6325
5063
|
readonly system?: boolean | undefined;
|
|
6326
5064
|
readonly min?: number | undefined;
|
|
6327
5065
|
readonly max?: number | undefined;
|
|
6328
|
-
readonly
|
|
6329
|
-
enabled: boolean;
|
|
6330
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
6331
|
-
keyManagement: {
|
|
6332
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
6333
|
-
keyId?: string | undefined;
|
|
6334
|
-
rotationPolicy?: {
|
|
6335
|
-
enabled: boolean;
|
|
6336
|
-
frequencyDays: number;
|
|
6337
|
-
retainOldVersions: number;
|
|
6338
|
-
autoRotate: boolean;
|
|
6339
|
-
} | undefined;
|
|
6340
|
-
};
|
|
6341
|
-
scope: "record" | "field" | "table" | "database";
|
|
6342
|
-
deterministicEncryption: boolean;
|
|
6343
|
-
searchableEncryption: boolean;
|
|
6344
|
-
} | undefined;
|
|
5066
|
+
readonly dimensions?: number | undefined;
|
|
6345
5067
|
readonly columnName?: string | undefined;
|
|
6346
5068
|
readonly searchable?: boolean | undefined;
|
|
6347
5069
|
readonly unique?: boolean | undefined;
|
|
@@ -6350,7 +5072,6 @@ declare const SysSharingRule: Omit<{
|
|
|
6350
5072
|
readonly scale?: number | undefined;
|
|
6351
5073
|
readonly reference?: string | undefined;
|
|
6352
5074
|
readonly referenceFilters?: string[] | undefined;
|
|
6353
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
6354
5075
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6355
5076
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
6356
5077
|
readonly inlineTitle?: string | undefined;
|
|
@@ -6375,22 +5096,8 @@ declare const SysSharingRule: Omit<{
|
|
|
6375
5096
|
relationshipField?: string | undefined;
|
|
6376
5097
|
} | undefined;
|
|
6377
5098
|
readonly language?: string | undefined;
|
|
6378
|
-
readonly lineNumbers?: boolean | undefined;
|
|
6379
5099
|
readonly maxRating?: number | undefined;
|
|
6380
|
-
readonly allowHalf?: boolean | undefined;
|
|
6381
|
-
readonly displayMap?: boolean | undefined;
|
|
6382
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
6383
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
6384
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
6385
|
-
readonly allowAlpha?: boolean | undefined;
|
|
6386
|
-
readonly presetColors?: string[] | undefined;
|
|
6387
5100
|
readonly step?: number | undefined;
|
|
6388
|
-
readonly showValue?: boolean | undefined;
|
|
6389
|
-
readonly marks?: Record<string, string> | undefined;
|
|
6390
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
6391
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
6392
|
-
readonly displayValue?: boolean | undefined;
|
|
6393
|
-
readonly allowScanning?: boolean | undefined;
|
|
6394
5101
|
readonly currencyConfig?: {
|
|
6395
5102
|
precision: number;
|
|
6396
5103
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -6444,29 +5151,7 @@ declare const SysSharingRule: Omit<{
|
|
|
6444
5151
|
} | undefined;
|
|
6445
5152
|
maxVersions?: number | undefined;
|
|
6446
5153
|
} | undefined;
|
|
6447
|
-
readonly
|
|
6448
|
-
field: string;
|
|
6449
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
6450
|
-
preserveFormat: boolean;
|
|
6451
|
-
preserveLength: boolean;
|
|
6452
|
-
pattern?: string | undefined;
|
|
6453
|
-
roles?: string[] | undefined;
|
|
6454
|
-
exemptRoles?: string[] | undefined;
|
|
6455
|
-
} | undefined;
|
|
6456
|
-
readonly auditTrail?: boolean | undefined;
|
|
6457
|
-
readonly cached?: {
|
|
6458
|
-
enabled: boolean;
|
|
6459
|
-
ttl: number;
|
|
6460
|
-
invalidateOn: string[];
|
|
6461
|
-
} | undefined;
|
|
6462
|
-
readonly dataQuality?: {
|
|
6463
|
-
uniqueness: boolean;
|
|
6464
|
-
completeness: number;
|
|
6465
|
-
accuracy?: {
|
|
6466
|
-
source: string;
|
|
6467
|
-
threshold: number;
|
|
6468
|
-
} | undefined;
|
|
6469
|
-
} | undefined;
|
|
5154
|
+
readonly trackHistory?: boolean | undefined;
|
|
6470
5155
|
readonly visibleWhen?: {
|
|
6471
5156
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6472
5157
|
source?: string | undefined;
|
|
@@ -6505,7 +5190,6 @@ declare const SysSharingRule: Omit<{
|
|
|
6505
5190
|
} | undefined;
|
|
6506
5191
|
readonly sortable?: boolean | undefined;
|
|
6507
5192
|
readonly inlineHelpText?: string | undefined;
|
|
6508
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
6509
5193
|
readonly caseSensitive?: boolean | undefined;
|
|
6510
5194
|
readonly autonumberFormat?: string | undefined;
|
|
6511
5195
|
readonly index?: boolean | undefined;
|
|
@@ -6527,7 +5211,6 @@ declare const SysSharingRule: Omit<{
|
|
|
6527
5211
|
readonly required?: boolean | undefined;
|
|
6528
5212
|
readonly multiple?: boolean | undefined;
|
|
6529
5213
|
readonly dependencies?: string[] | undefined;
|
|
6530
|
-
readonly theme?: string | undefined;
|
|
6531
5214
|
readonly externalId?: boolean | undefined;
|
|
6532
5215
|
readonly defaultValue?: unknown;
|
|
6533
5216
|
readonly group?: string | undefined;
|
|
@@ -6535,23 +5218,7 @@ declare const SysSharingRule: Omit<{
|
|
|
6535
5218
|
readonly system?: boolean | undefined;
|
|
6536
5219
|
readonly min?: number | undefined;
|
|
6537
5220
|
readonly max?: number | undefined;
|
|
6538
|
-
readonly
|
|
6539
|
-
enabled: boolean;
|
|
6540
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
6541
|
-
keyManagement: {
|
|
6542
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
6543
|
-
keyId?: string | undefined;
|
|
6544
|
-
rotationPolicy?: {
|
|
6545
|
-
enabled: boolean;
|
|
6546
|
-
frequencyDays: number;
|
|
6547
|
-
retainOldVersions: number;
|
|
6548
|
-
autoRotate: boolean;
|
|
6549
|
-
} | undefined;
|
|
6550
|
-
};
|
|
6551
|
-
scope: "record" | "field" | "table" | "database";
|
|
6552
|
-
deterministicEncryption: boolean;
|
|
6553
|
-
searchableEncryption: boolean;
|
|
6554
|
-
} | undefined;
|
|
5221
|
+
readonly dimensions?: number | undefined;
|
|
6555
5222
|
readonly columnName?: string | undefined;
|
|
6556
5223
|
readonly searchable?: boolean | undefined;
|
|
6557
5224
|
readonly unique?: boolean | undefined;
|
|
@@ -6560,7 +5227,6 @@ declare const SysSharingRule: Omit<{
|
|
|
6560
5227
|
readonly scale?: number | undefined;
|
|
6561
5228
|
readonly reference?: string | undefined;
|
|
6562
5229
|
readonly referenceFilters?: string[] | undefined;
|
|
6563
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
6564
5230
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6565
5231
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
6566
5232
|
readonly inlineTitle?: string | undefined;
|
|
@@ -6585,22 +5251,8 @@ declare const SysSharingRule: Omit<{
|
|
|
6585
5251
|
relationshipField?: string | undefined;
|
|
6586
5252
|
} | undefined;
|
|
6587
5253
|
readonly language?: string | undefined;
|
|
6588
|
-
readonly lineNumbers?: boolean | undefined;
|
|
6589
5254
|
readonly maxRating?: number | undefined;
|
|
6590
|
-
readonly allowHalf?: boolean | undefined;
|
|
6591
|
-
readonly displayMap?: boolean | undefined;
|
|
6592
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
6593
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
6594
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
6595
|
-
readonly allowAlpha?: boolean | undefined;
|
|
6596
|
-
readonly presetColors?: string[] | undefined;
|
|
6597
5255
|
readonly step?: number | undefined;
|
|
6598
|
-
readonly showValue?: boolean | undefined;
|
|
6599
|
-
readonly marks?: Record<string, string> | undefined;
|
|
6600
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
6601
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
6602
|
-
readonly displayValue?: boolean | undefined;
|
|
6603
|
-
readonly allowScanning?: boolean | undefined;
|
|
6604
5256
|
readonly currencyConfig?: {
|
|
6605
5257
|
precision: number;
|
|
6606
5258
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -6654,29 +5306,7 @@ declare const SysSharingRule: Omit<{
|
|
|
6654
5306
|
} | undefined;
|
|
6655
5307
|
maxVersions?: number | undefined;
|
|
6656
5308
|
} | undefined;
|
|
6657
|
-
readonly
|
|
6658
|
-
field: string;
|
|
6659
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
6660
|
-
preserveFormat: boolean;
|
|
6661
|
-
preserveLength: boolean;
|
|
6662
|
-
pattern?: string | undefined;
|
|
6663
|
-
roles?: string[] | undefined;
|
|
6664
|
-
exemptRoles?: string[] | undefined;
|
|
6665
|
-
} | undefined;
|
|
6666
|
-
readonly auditTrail?: boolean | undefined;
|
|
6667
|
-
readonly cached?: {
|
|
6668
|
-
enabled: boolean;
|
|
6669
|
-
ttl: number;
|
|
6670
|
-
invalidateOn: string[];
|
|
6671
|
-
} | undefined;
|
|
6672
|
-
readonly dataQuality?: {
|
|
6673
|
-
uniqueness: boolean;
|
|
6674
|
-
completeness: number;
|
|
6675
|
-
accuracy?: {
|
|
6676
|
-
source: string;
|
|
6677
|
-
threshold: number;
|
|
6678
|
-
} | undefined;
|
|
6679
|
-
} | undefined;
|
|
5309
|
+
readonly trackHistory?: boolean | undefined;
|
|
6680
5310
|
readonly visibleWhen?: {
|
|
6681
5311
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6682
5312
|
source?: string | undefined;
|
|
@@ -6715,7 +5345,6 @@ declare const SysSharingRule: Omit<{
|
|
|
6715
5345
|
} | undefined;
|
|
6716
5346
|
readonly sortable?: boolean | undefined;
|
|
6717
5347
|
readonly inlineHelpText?: string | undefined;
|
|
6718
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
6719
5348
|
readonly caseSensitive?: boolean | undefined;
|
|
6720
5349
|
readonly autonumberFormat?: string | undefined;
|
|
6721
5350
|
readonly index?: boolean | undefined;
|
|
@@ -6737,7 +5366,6 @@ declare const SysSharingRule: Omit<{
|
|
|
6737
5366
|
readonly required?: boolean | undefined;
|
|
6738
5367
|
readonly multiple?: boolean | undefined;
|
|
6739
5368
|
readonly dependencies?: string[] | undefined;
|
|
6740
|
-
readonly theme?: string | undefined;
|
|
6741
5369
|
readonly externalId?: boolean | undefined;
|
|
6742
5370
|
readonly defaultValue?: unknown;
|
|
6743
5371
|
readonly group?: string | undefined;
|
|
@@ -6745,23 +5373,7 @@ declare const SysSharingRule: Omit<{
|
|
|
6745
5373
|
readonly system?: boolean | undefined;
|
|
6746
5374
|
readonly min?: number | undefined;
|
|
6747
5375
|
readonly max?: number | undefined;
|
|
6748
|
-
readonly
|
|
6749
|
-
enabled: boolean;
|
|
6750
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
6751
|
-
keyManagement: {
|
|
6752
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
6753
|
-
keyId?: string | undefined;
|
|
6754
|
-
rotationPolicy?: {
|
|
6755
|
-
enabled: boolean;
|
|
6756
|
-
frequencyDays: number;
|
|
6757
|
-
retainOldVersions: number;
|
|
6758
|
-
autoRotate: boolean;
|
|
6759
|
-
} | undefined;
|
|
6760
|
-
};
|
|
6761
|
-
scope: "record" | "field" | "table" | "database";
|
|
6762
|
-
deterministicEncryption: boolean;
|
|
6763
|
-
searchableEncryption: boolean;
|
|
6764
|
-
} | undefined;
|
|
5376
|
+
readonly dimensions?: number | undefined;
|
|
6765
5377
|
readonly columnName?: string | undefined;
|
|
6766
5378
|
readonly searchable?: boolean | undefined;
|
|
6767
5379
|
readonly unique?: boolean | undefined;
|
|
@@ -6770,7 +5382,6 @@ declare const SysSharingRule: Omit<{
|
|
|
6770
5382
|
readonly scale?: number | undefined;
|
|
6771
5383
|
readonly reference?: string | undefined;
|
|
6772
5384
|
readonly referenceFilters?: string[] | undefined;
|
|
6773
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
6774
5385
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6775
5386
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
6776
5387
|
readonly inlineTitle?: string | undefined;
|
|
@@ -6795,22 +5406,8 @@ declare const SysSharingRule: Omit<{
|
|
|
6795
5406
|
relationshipField?: string | undefined;
|
|
6796
5407
|
} | undefined;
|
|
6797
5408
|
readonly language?: string | undefined;
|
|
6798
|
-
readonly lineNumbers?: boolean | undefined;
|
|
6799
5409
|
readonly maxRating?: number | undefined;
|
|
6800
|
-
readonly allowHalf?: boolean | undefined;
|
|
6801
|
-
readonly displayMap?: boolean | undefined;
|
|
6802
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
6803
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
6804
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
6805
|
-
readonly allowAlpha?: boolean | undefined;
|
|
6806
|
-
readonly presetColors?: string[] | undefined;
|
|
6807
5410
|
readonly step?: number | undefined;
|
|
6808
|
-
readonly showValue?: boolean | undefined;
|
|
6809
|
-
readonly marks?: Record<string, string> | undefined;
|
|
6810
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
6811
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
6812
|
-
readonly displayValue?: boolean | undefined;
|
|
6813
|
-
readonly allowScanning?: boolean | undefined;
|
|
6814
5411
|
readonly currencyConfig?: {
|
|
6815
5412
|
precision: number;
|
|
6816
5413
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -6864,29 +5461,7 @@ declare const SysSharingRule: Omit<{
|
|
|
6864
5461
|
} | undefined;
|
|
6865
5462
|
maxVersions?: number | undefined;
|
|
6866
5463
|
} | undefined;
|
|
6867
|
-
readonly
|
|
6868
|
-
field: string;
|
|
6869
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
6870
|
-
preserveFormat: boolean;
|
|
6871
|
-
preserveLength: boolean;
|
|
6872
|
-
pattern?: string | undefined;
|
|
6873
|
-
roles?: string[] | undefined;
|
|
6874
|
-
exemptRoles?: string[] | undefined;
|
|
6875
|
-
} | undefined;
|
|
6876
|
-
readonly auditTrail?: boolean | undefined;
|
|
6877
|
-
readonly cached?: {
|
|
6878
|
-
enabled: boolean;
|
|
6879
|
-
ttl: number;
|
|
6880
|
-
invalidateOn: string[];
|
|
6881
|
-
} | undefined;
|
|
6882
|
-
readonly dataQuality?: {
|
|
6883
|
-
uniqueness: boolean;
|
|
6884
|
-
completeness: number;
|
|
6885
|
-
accuracy?: {
|
|
6886
|
-
source: string;
|
|
6887
|
-
threshold: number;
|
|
6888
|
-
} | undefined;
|
|
6889
|
-
} | undefined;
|
|
5464
|
+
readonly trackHistory?: boolean | undefined;
|
|
6890
5465
|
readonly visibleWhen?: {
|
|
6891
5466
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6892
5467
|
source?: string | undefined;
|
|
@@ -6925,7 +5500,6 @@ declare const SysSharingRule: Omit<{
|
|
|
6925
5500
|
} | undefined;
|
|
6926
5501
|
readonly sortable?: boolean | undefined;
|
|
6927
5502
|
readonly inlineHelpText?: string | undefined;
|
|
6928
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
6929
5503
|
readonly caseSensitive?: boolean | undefined;
|
|
6930
5504
|
readonly autonumberFormat?: string | undefined;
|
|
6931
5505
|
readonly index?: boolean | undefined;
|
|
@@ -6947,7 +5521,6 @@ declare const SysSharingRule: Omit<{
|
|
|
6947
5521
|
readonly required?: boolean | undefined;
|
|
6948
5522
|
readonly multiple?: boolean | undefined;
|
|
6949
5523
|
readonly dependencies?: string[] | undefined;
|
|
6950
|
-
readonly theme?: string | undefined;
|
|
6951
5524
|
readonly externalId?: boolean | undefined;
|
|
6952
5525
|
readonly defaultValue?: unknown;
|
|
6953
5526
|
readonly group?: string | undefined;
|
|
@@ -6955,23 +5528,7 @@ declare const SysSharingRule: Omit<{
|
|
|
6955
5528
|
readonly system?: boolean | undefined;
|
|
6956
5529
|
readonly min?: number | undefined;
|
|
6957
5530
|
readonly max?: number | undefined;
|
|
6958
|
-
readonly
|
|
6959
|
-
enabled: boolean;
|
|
6960
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
6961
|
-
keyManagement: {
|
|
6962
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
6963
|
-
keyId?: string | undefined;
|
|
6964
|
-
rotationPolicy?: {
|
|
6965
|
-
enabled: boolean;
|
|
6966
|
-
frequencyDays: number;
|
|
6967
|
-
retainOldVersions: number;
|
|
6968
|
-
autoRotate: boolean;
|
|
6969
|
-
} | undefined;
|
|
6970
|
-
};
|
|
6971
|
-
scope: "record" | "field" | "table" | "database";
|
|
6972
|
-
deterministicEncryption: boolean;
|
|
6973
|
-
searchableEncryption: boolean;
|
|
6974
|
-
} | undefined;
|
|
5531
|
+
readonly dimensions?: number | undefined;
|
|
6975
5532
|
readonly columnName?: string | undefined;
|
|
6976
5533
|
readonly searchable?: boolean | undefined;
|
|
6977
5534
|
readonly unique?: boolean | undefined;
|
|
@@ -6980,7 +5537,6 @@ declare const SysSharingRule: Omit<{
|
|
|
6980
5537
|
readonly scale?: number | undefined;
|
|
6981
5538
|
readonly reference?: string | undefined;
|
|
6982
5539
|
readonly referenceFilters?: string[] | undefined;
|
|
6983
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
6984
5540
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6985
5541
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
6986
5542
|
readonly inlineTitle?: string | undefined;
|
|
@@ -7005,22 +5561,8 @@ declare const SysSharingRule: Omit<{
|
|
|
7005
5561
|
relationshipField?: string | undefined;
|
|
7006
5562
|
} | undefined;
|
|
7007
5563
|
readonly language?: string | undefined;
|
|
7008
|
-
readonly lineNumbers?: boolean | undefined;
|
|
7009
5564
|
readonly maxRating?: number | undefined;
|
|
7010
|
-
readonly allowHalf?: boolean | undefined;
|
|
7011
|
-
readonly displayMap?: boolean | undefined;
|
|
7012
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
7013
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
7014
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
7015
|
-
readonly allowAlpha?: boolean | undefined;
|
|
7016
|
-
readonly presetColors?: string[] | undefined;
|
|
7017
5565
|
readonly step?: number | undefined;
|
|
7018
|
-
readonly showValue?: boolean | undefined;
|
|
7019
|
-
readonly marks?: Record<string, string> | undefined;
|
|
7020
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
7021
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
7022
|
-
readonly displayValue?: boolean | undefined;
|
|
7023
|
-
readonly allowScanning?: boolean | undefined;
|
|
7024
5566
|
readonly currencyConfig?: {
|
|
7025
5567
|
precision: number;
|
|
7026
5568
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -7074,29 +5616,7 @@ declare const SysSharingRule: Omit<{
|
|
|
7074
5616
|
} | undefined;
|
|
7075
5617
|
maxVersions?: number | undefined;
|
|
7076
5618
|
} | undefined;
|
|
7077
|
-
readonly
|
|
7078
|
-
field: string;
|
|
7079
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
7080
|
-
preserveFormat: boolean;
|
|
7081
|
-
preserveLength: boolean;
|
|
7082
|
-
pattern?: string | undefined;
|
|
7083
|
-
roles?: string[] | undefined;
|
|
7084
|
-
exemptRoles?: string[] | undefined;
|
|
7085
|
-
} | undefined;
|
|
7086
|
-
readonly auditTrail?: boolean | undefined;
|
|
7087
|
-
readonly cached?: {
|
|
7088
|
-
enabled: boolean;
|
|
7089
|
-
ttl: number;
|
|
7090
|
-
invalidateOn: string[];
|
|
7091
|
-
} | undefined;
|
|
7092
|
-
readonly dataQuality?: {
|
|
7093
|
-
uniqueness: boolean;
|
|
7094
|
-
completeness: number;
|
|
7095
|
-
accuracy?: {
|
|
7096
|
-
source: string;
|
|
7097
|
-
threshold: number;
|
|
7098
|
-
} | undefined;
|
|
7099
|
-
} | undefined;
|
|
5619
|
+
readonly trackHistory?: boolean | undefined;
|
|
7100
5620
|
readonly visibleWhen?: {
|
|
7101
5621
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7102
5622
|
source?: string | undefined;
|
|
@@ -7135,7 +5655,6 @@ declare const SysSharingRule: Omit<{
|
|
|
7135
5655
|
} | undefined;
|
|
7136
5656
|
readonly sortable?: boolean | undefined;
|
|
7137
5657
|
readonly inlineHelpText?: string | undefined;
|
|
7138
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
7139
5658
|
readonly caseSensitive?: boolean | undefined;
|
|
7140
5659
|
readonly autonumberFormat?: string | undefined;
|
|
7141
5660
|
readonly index?: boolean | undefined;
|
|
@@ -7203,7 +5722,6 @@ declare const SysShareLink: Omit<{
|
|
|
7203
5722
|
multiple: boolean;
|
|
7204
5723
|
unique: boolean;
|
|
7205
5724
|
deleteBehavior: "set_null" | "cascade" | "restrict";
|
|
7206
|
-
auditTrail: boolean;
|
|
7207
5725
|
hidden: boolean;
|
|
7208
5726
|
readonly: boolean;
|
|
7209
5727
|
sortable: boolean;
|
|
@@ -7229,7 +5747,6 @@ declare const SysShareLink: Omit<{
|
|
|
7229
5747
|
}[] | undefined;
|
|
7230
5748
|
reference?: string | undefined;
|
|
7231
5749
|
referenceFilters?: string[] | undefined;
|
|
7232
|
-
writeRequiresMasterRead?: boolean | undefined;
|
|
7233
5750
|
inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
7234
5751
|
inlineTitle?: string | undefined;
|
|
7235
5752
|
inlineColumns?: any[] | undefined;
|
|
@@ -7261,28 +5778,14 @@ declare const SysShareLink: Omit<{
|
|
|
7261
5778
|
relationshipField?: string | undefined;
|
|
7262
5779
|
} | undefined;
|
|
7263
5780
|
language?: string | undefined;
|
|
7264
|
-
theme?: string | undefined;
|
|
7265
|
-
lineNumbers?: boolean | undefined;
|
|
7266
5781
|
maxRating?: number | undefined;
|
|
7267
|
-
allowHalf?: boolean | undefined;
|
|
7268
|
-
displayMap?: boolean | undefined;
|
|
7269
|
-
allowGeocoding?: boolean | undefined;
|
|
7270
|
-
addressFormat?: "us" | "uk" | "international" | undefined;
|
|
7271
|
-
colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
7272
|
-
allowAlpha?: boolean | undefined;
|
|
7273
|
-
presetColors?: string[] | undefined;
|
|
7274
5782
|
step?: number | undefined;
|
|
7275
|
-
showValue?: boolean | undefined;
|
|
7276
|
-
marks?: Record<string, string> | undefined;
|
|
7277
|
-
barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
7278
|
-
qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
7279
|
-
displayValue?: boolean | undefined;
|
|
7280
|
-
allowScanning?: boolean | undefined;
|
|
7281
5783
|
currencyConfig?: {
|
|
7282
5784
|
precision: number;
|
|
7283
5785
|
currencyMode: "fixed" | "dynamic";
|
|
7284
5786
|
defaultCurrency: string;
|
|
7285
5787
|
} | undefined;
|
|
5788
|
+
dimensions?: number | undefined;
|
|
7286
5789
|
vectorConfig?: {
|
|
7287
5790
|
dimensions: number;
|
|
7288
5791
|
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
@@ -7331,46 +5834,8 @@ declare const SysShareLink: Omit<{
|
|
|
7331
5834
|
} | undefined;
|
|
7332
5835
|
maxVersions?: number | undefined;
|
|
7333
5836
|
} | undefined;
|
|
7334
|
-
|
|
7335
|
-
enabled: boolean;
|
|
7336
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
7337
|
-
keyManagement: {
|
|
7338
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
7339
|
-
keyId?: string | undefined;
|
|
7340
|
-
rotationPolicy?: {
|
|
7341
|
-
enabled: boolean;
|
|
7342
|
-
frequencyDays: number;
|
|
7343
|
-
retainOldVersions: number;
|
|
7344
|
-
autoRotate: boolean;
|
|
7345
|
-
} | undefined;
|
|
7346
|
-
};
|
|
7347
|
-
scope: "record" | "field" | "table" | "database";
|
|
7348
|
-
deterministicEncryption: boolean;
|
|
7349
|
-
searchableEncryption: boolean;
|
|
7350
|
-
} | undefined;
|
|
7351
|
-
maskingRule?: {
|
|
7352
|
-
field: string;
|
|
7353
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
7354
|
-
preserveFormat: boolean;
|
|
7355
|
-
preserveLength: boolean;
|
|
7356
|
-
pattern?: string | undefined;
|
|
7357
|
-
roles?: string[] | undefined;
|
|
7358
|
-
exemptRoles?: string[] | undefined;
|
|
7359
|
-
} | undefined;
|
|
5837
|
+
trackHistory?: boolean | undefined;
|
|
7360
5838
|
dependencies?: string[] | undefined;
|
|
7361
|
-
cached?: {
|
|
7362
|
-
enabled: boolean;
|
|
7363
|
-
ttl: number;
|
|
7364
|
-
invalidateOn: string[];
|
|
7365
|
-
} | undefined;
|
|
7366
|
-
dataQuality?: {
|
|
7367
|
-
uniqueness: boolean;
|
|
7368
|
-
completeness: number;
|
|
7369
|
-
accuracy?: {
|
|
7370
|
-
source: string;
|
|
7371
|
-
threshold: number;
|
|
7372
|
-
} | undefined;
|
|
7373
|
-
} | undefined;
|
|
7374
5839
|
group?: string | undefined;
|
|
7375
5840
|
visibleWhen?: {
|
|
7376
5841
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -7442,7 +5907,6 @@ declare const SysShareLink: Omit<{
|
|
|
7442
5907
|
} | undefined;
|
|
7443
5908
|
system?: boolean | undefined;
|
|
7444
5909
|
inlineHelpText?: string | undefined;
|
|
7445
|
-
trackFeedHistory?: boolean | undefined;
|
|
7446
5910
|
caseSensitive?: boolean | undefined;
|
|
7447
5911
|
autonumberFormat?: string | undefined;
|
|
7448
5912
|
}>;
|
|
@@ -7533,12 +5997,13 @@ declare const SysShareLink: Omit<{
|
|
|
7533
5997
|
key: string;
|
|
7534
5998
|
interval?: string | undefined;
|
|
7535
5999
|
} | undefined;
|
|
7536
|
-
cdc?: {
|
|
7537
|
-
enabled: boolean;
|
|
7538
|
-
events: ("delete" | "update" | "insert")[];
|
|
7539
|
-
destination: string;
|
|
7540
|
-
} | undefined;
|
|
7541
6000
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
6001
|
+
activityMilestones?: {
|
|
6002
|
+
field: string;
|
|
6003
|
+
value: string;
|
|
6004
|
+
summary: string;
|
|
6005
|
+
type?: string | undefined;
|
|
6006
|
+
}[] | undefined;
|
|
7542
6007
|
displayNameField?: string | undefined;
|
|
7543
6008
|
recordName?: {
|
|
7544
6009
|
type: "text" | "autonumber";
|
|
@@ -7849,7 +6314,6 @@ declare const SysShareLink: Omit<{
|
|
|
7849
6314
|
clone: boolean;
|
|
7850
6315
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
7851
6316
|
} | undefined;
|
|
7852
|
-
recordTypes?: string[] | undefined;
|
|
7853
6317
|
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
7854
6318
|
publicSharing?: {
|
|
7855
6319
|
enabled: boolean;
|
|
@@ -7906,6 +6370,8 @@ declare const SysShareLink: Omit<{
|
|
|
7906
6370
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
7907
6371
|
confirmText?: string | undefined;
|
|
7908
6372
|
successMessage?: string | undefined;
|
|
6373
|
+
errorMessage?: string | undefined;
|
|
6374
|
+
undoable?: boolean | undefined;
|
|
7909
6375
|
resultDialog?: {
|
|
7910
6376
|
title?: string | undefined;
|
|
7911
6377
|
description?: string | undefined;
|
|
@@ -8081,7 +6547,6 @@ declare const SysShareLink: Omit<{
|
|
|
8081
6547
|
readonly required?: boolean | undefined;
|
|
8082
6548
|
readonly multiple?: boolean | undefined;
|
|
8083
6549
|
readonly dependencies?: string[] | undefined;
|
|
8084
|
-
readonly theme?: string | undefined;
|
|
8085
6550
|
readonly externalId?: boolean | undefined;
|
|
8086
6551
|
readonly defaultValue?: unknown;
|
|
8087
6552
|
readonly group?: string | undefined;
|
|
@@ -8089,23 +6554,7 @@ declare const SysShareLink: Omit<{
|
|
|
8089
6554
|
readonly system?: boolean | undefined;
|
|
8090
6555
|
readonly min?: number | undefined;
|
|
8091
6556
|
readonly max?: number | undefined;
|
|
8092
|
-
readonly
|
|
8093
|
-
enabled: boolean;
|
|
8094
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
8095
|
-
keyManagement: {
|
|
8096
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
8097
|
-
keyId?: string | undefined;
|
|
8098
|
-
rotationPolicy?: {
|
|
8099
|
-
enabled: boolean;
|
|
8100
|
-
frequencyDays: number;
|
|
8101
|
-
retainOldVersions: number;
|
|
8102
|
-
autoRotate: boolean;
|
|
8103
|
-
} | undefined;
|
|
8104
|
-
};
|
|
8105
|
-
scope: "record" | "field" | "table" | "database";
|
|
8106
|
-
deterministicEncryption: boolean;
|
|
8107
|
-
searchableEncryption: boolean;
|
|
8108
|
-
} | undefined;
|
|
6557
|
+
readonly dimensions?: number | undefined;
|
|
8109
6558
|
readonly columnName?: string | undefined;
|
|
8110
6559
|
readonly searchable?: boolean | undefined;
|
|
8111
6560
|
readonly unique?: boolean | undefined;
|
|
@@ -8114,7 +6563,6 @@ declare const SysShareLink: Omit<{
|
|
|
8114
6563
|
readonly scale?: number | undefined;
|
|
8115
6564
|
readonly reference?: string | undefined;
|
|
8116
6565
|
readonly referenceFilters?: string[] | undefined;
|
|
8117
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
8118
6566
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
8119
6567
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
8120
6568
|
readonly inlineTitle?: string | undefined;
|
|
@@ -8139,22 +6587,8 @@ declare const SysShareLink: Omit<{
|
|
|
8139
6587
|
relationshipField?: string | undefined;
|
|
8140
6588
|
} | undefined;
|
|
8141
6589
|
readonly language?: string | undefined;
|
|
8142
|
-
readonly lineNumbers?: boolean | undefined;
|
|
8143
6590
|
readonly maxRating?: number | undefined;
|
|
8144
|
-
readonly allowHalf?: boolean | undefined;
|
|
8145
|
-
readonly displayMap?: boolean | undefined;
|
|
8146
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
8147
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
8148
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
8149
|
-
readonly allowAlpha?: boolean | undefined;
|
|
8150
|
-
readonly presetColors?: string[] | undefined;
|
|
8151
6591
|
readonly step?: number | undefined;
|
|
8152
|
-
readonly showValue?: boolean | undefined;
|
|
8153
|
-
readonly marks?: Record<string, string> | undefined;
|
|
8154
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
8155
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
8156
|
-
readonly displayValue?: boolean | undefined;
|
|
8157
|
-
readonly allowScanning?: boolean | undefined;
|
|
8158
6592
|
readonly currencyConfig?: {
|
|
8159
6593
|
precision: number;
|
|
8160
6594
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -8208,29 +6642,7 @@ declare const SysShareLink: Omit<{
|
|
|
8208
6642
|
} | undefined;
|
|
8209
6643
|
maxVersions?: number | undefined;
|
|
8210
6644
|
} | undefined;
|
|
8211
|
-
readonly
|
|
8212
|
-
field: string;
|
|
8213
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
8214
|
-
preserveFormat: boolean;
|
|
8215
|
-
preserveLength: boolean;
|
|
8216
|
-
pattern?: string | undefined;
|
|
8217
|
-
roles?: string[] | undefined;
|
|
8218
|
-
exemptRoles?: string[] | undefined;
|
|
8219
|
-
} | undefined;
|
|
8220
|
-
readonly auditTrail?: boolean | undefined;
|
|
8221
|
-
readonly cached?: {
|
|
8222
|
-
enabled: boolean;
|
|
8223
|
-
ttl: number;
|
|
8224
|
-
invalidateOn: string[];
|
|
8225
|
-
} | undefined;
|
|
8226
|
-
readonly dataQuality?: {
|
|
8227
|
-
uniqueness: boolean;
|
|
8228
|
-
completeness: number;
|
|
8229
|
-
accuracy?: {
|
|
8230
|
-
source: string;
|
|
8231
|
-
threshold: number;
|
|
8232
|
-
} | undefined;
|
|
8233
|
-
} | undefined;
|
|
6645
|
+
readonly trackHistory?: boolean | undefined;
|
|
8234
6646
|
readonly visibleWhen?: {
|
|
8235
6647
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8236
6648
|
source?: string | undefined;
|
|
@@ -8269,7 +6681,6 @@ declare const SysShareLink: Omit<{
|
|
|
8269
6681
|
} | undefined;
|
|
8270
6682
|
readonly sortable?: boolean | undefined;
|
|
8271
6683
|
readonly inlineHelpText?: string | undefined;
|
|
8272
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
8273
6684
|
readonly caseSensitive?: boolean | undefined;
|
|
8274
6685
|
readonly autonumberFormat?: string | undefined;
|
|
8275
6686
|
readonly index?: boolean | undefined;
|
|
@@ -8291,7 +6702,6 @@ declare const SysShareLink: Omit<{
|
|
|
8291
6702
|
readonly required?: boolean | undefined;
|
|
8292
6703
|
readonly multiple?: boolean | undefined;
|
|
8293
6704
|
readonly dependencies?: string[] | undefined;
|
|
8294
|
-
readonly theme?: string | undefined;
|
|
8295
6705
|
readonly externalId?: boolean | undefined;
|
|
8296
6706
|
readonly defaultValue?: unknown;
|
|
8297
6707
|
readonly group?: string | undefined;
|
|
@@ -8299,23 +6709,7 @@ declare const SysShareLink: Omit<{
|
|
|
8299
6709
|
readonly system?: boolean | undefined;
|
|
8300
6710
|
readonly min?: number | undefined;
|
|
8301
6711
|
readonly max?: number | undefined;
|
|
8302
|
-
readonly
|
|
8303
|
-
enabled: boolean;
|
|
8304
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
8305
|
-
keyManagement: {
|
|
8306
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
8307
|
-
keyId?: string | undefined;
|
|
8308
|
-
rotationPolicy?: {
|
|
8309
|
-
enabled: boolean;
|
|
8310
|
-
frequencyDays: number;
|
|
8311
|
-
retainOldVersions: number;
|
|
8312
|
-
autoRotate: boolean;
|
|
8313
|
-
} | undefined;
|
|
8314
|
-
};
|
|
8315
|
-
scope: "record" | "field" | "table" | "database";
|
|
8316
|
-
deterministicEncryption: boolean;
|
|
8317
|
-
searchableEncryption: boolean;
|
|
8318
|
-
} | undefined;
|
|
6712
|
+
readonly dimensions?: number | undefined;
|
|
8319
6713
|
readonly columnName?: string | undefined;
|
|
8320
6714
|
readonly searchable?: boolean | undefined;
|
|
8321
6715
|
readonly unique?: boolean | undefined;
|
|
@@ -8324,7 +6718,6 @@ declare const SysShareLink: Omit<{
|
|
|
8324
6718
|
readonly scale?: number | undefined;
|
|
8325
6719
|
readonly reference?: string | undefined;
|
|
8326
6720
|
readonly referenceFilters?: string[] | undefined;
|
|
8327
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
8328
6721
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
8329
6722
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
8330
6723
|
readonly inlineTitle?: string | undefined;
|
|
@@ -8349,22 +6742,8 @@ declare const SysShareLink: Omit<{
|
|
|
8349
6742
|
relationshipField?: string | undefined;
|
|
8350
6743
|
} | undefined;
|
|
8351
6744
|
readonly language?: string | undefined;
|
|
8352
|
-
readonly lineNumbers?: boolean | undefined;
|
|
8353
6745
|
readonly maxRating?: number | undefined;
|
|
8354
|
-
readonly allowHalf?: boolean | undefined;
|
|
8355
|
-
readonly displayMap?: boolean | undefined;
|
|
8356
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
8357
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
8358
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
8359
|
-
readonly allowAlpha?: boolean | undefined;
|
|
8360
|
-
readonly presetColors?: string[] | undefined;
|
|
8361
6746
|
readonly step?: number | undefined;
|
|
8362
|
-
readonly showValue?: boolean | undefined;
|
|
8363
|
-
readonly marks?: Record<string, string> | undefined;
|
|
8364
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
8365
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
8366
|
-
readonly displayValue?: boolean | undefined;
|
|
8367
|
-
readonly allowScanning?: boolean | undefined;
|
|
8368
6747
|
readonly currencyConfig?: {
|
|
8369
6748
|
precision: number;
|
|
8370
6749
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -8418,29 +6797,7 @@ declare const SysShareLink: Omit<{
|
|
|
8418
6797
|
} | undefined;
|
|
8419
6798
|
maxVersions?: number | undefined;
|
|
8420
6799
|
} | undefined;
|
|
8421
|
-
readonly
|
|
8422
|
-
field: string;
|
|
8423
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
8424
|
-
preserveFormat: boolean;
|
|
8425
|
-
preserveLength: boolean;
|
|
8426
|
-
pattern?: string | undefined;
|
|
8427
|
-
roles?: string[] | undefined;
|
|
8428
|
-
exemptRoles?: string[] | undefined;
|
|
8429
|
-
} | undefined;
|
|
8430
|
-
readonly auditTrail?: boolean | undefined;
|
|
8431
|
-
readonly cached?: {
|
|
8432
|
-
enabled: boolean;
|
|
8433
|
-
ttl: number;
|
|
8434
|
-
invalidateOn: string[];
|
|
8435
|
-
} | undefined;
|
|
8436
|
-
readonly dataQuality?: {
|
|
8437
|
-
uniqueness: boolean;
|
|
8438
|
-
completeness: number;
|
|
8439
|
-
accuracy?: {
|
|
8440
|
-
source: string;
|
|
8441
|
-
threshold: number;
|
|
8442
|
-
} | undefined;
|
|
8443
|
-
} | undefined;
|
|
6800
|
+
readonly trackHistory?: boolean | undefined;
|
|
8444
6801
|
readonly visibleWhen?: {
|
|
8445
6802
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8446
6803
|
source?: string | undefined;
|
|
@@ -8479,7 +6836,6 @@ declare const SysShareLink: Omit<{
|
|
|
8479
6836
|
} | undefined;
|
|
8480
6837
|
readonly sortable?: boolean | undefined;
|
|
8481
6838
|
readonly inlineHelpText?: string | undefined;
|
|
8482
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
8483
6839
|
readonly caseSensitive?: boolean | undefined;
|
|
8484
6840
|
readonly autonumberFormat?: string | undefined;
|
|
8485
6841
|
readonly index?: boolean | undefined;
|
|
@@ -8501,7 +6857,6 @@ declare const SysShareLink: Omit<{
|
|
|
8501
6857
|
readonly required?: boolean | undefined;
|
|
8502
6858
|
readonly multiple?: boolean | undefined;
|
|
8503
6859
|
readonly dependencies?: string[] | undefined;
|
|
8504
|
-
readonly theme?: string | undefined;
|
|
8505
6860
|
readonly externalId?: boolean | undefined;
|
|
8506
6861
|
readonly defaultValue?: unknown;
|
|
8507
6862
|
readonly group?: string | undefined;
|
|
@@ -8509,23 +6864,7 @@ declare const SysShareLink: Omit<{
|
|
|
8509
6864
|
readonly system?: boolean | undefined;
|
|
8510
6865
|
readonly min?: number | undefined;
|
|
8511
6866
|
readonly max?: number | undefined;
|
|
8512
|
-
readonly
|
|
8513
|
-
enabled: boolean;
|
|
8514
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
8515
|
-
keyManagement: {
|
|
8516
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
8517
|
-
keyId?: string | undefined;
|
|
8518
|
-
rotationPolicy?: {
|
|
8519
|
-
enabled: boolean;
|
|
8520
|
-
frequencyDays: number;
|
|
8521
|
-
retainOldVersions: number;
|
|
8522
|
-
autoRotate: boolean;
|
|
8523
|
-
} | undefined;
|
|
8524
|
-
};
|
|
8525
|
-
scope: "record" | "field" | "table" | "database";
|
|
8526
|
-
deterministicEncryption: boolean;
|
|
8527
|
-
searchableEncryption: boolean;
|
|
8528
|
-
} | undefined;
|
|
6867
|
+
readonly dimensions?: number | undefined;
|
|
8529
6868
|
readonly columnName?: string | undefined;
|
|
8530
6869
|
readonly searchable?: boolean | undefined;
|
|
8531
6870
|
readonly unique?: boolean | undefined;
|
|
@@ -8534,7 +6873,6 @@ declare const SysShareLink: Omit<{
|
|
|
8534
6873
|
readonly scale?: number | undefined;
|
|
8535
6874
|
readonly reference?: string | undefined;
|
|
8536
6875
|
readonly referenceFilters?: string[] | undefined;
|
|
8537
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
8538
6876
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
8539
6877
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
8540
6878
|
readonly inlineTitle?: string | undefined;
|
|
@@ -8559,22 +6897,8 @@ declare const SysShareLink: Omit<{
|
|
|
8559
6897
|
relationshipField?: string | undefined;
|
|
8560
6898
|
} | undefined;
|
|
8561
6899
|
readonly language?: string | undefined;
|
|
8562
|
-
readonly lineNumbers?: boolean | undefined;
|
|
8563
6900
|
readonly maxRating?: number | undefined;
|
|
8564
|
-
readonly allowHalf?: boolean | undefined;
|
|
8565
|
-
readonly displayMap?: boolean | undefined;
|
|
8566
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
8567
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
8568
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
8569
|
-
readonly allowAlpha?: boolean | undefined;
|
|
8570
|
-
readonly presetColors?: string[] | undefined;
|
|
8571
6901
|
readonly step?: number | undefined;
|
|
8572
|
-
readonly showValue?: boolean | undefined;
|
|
8573
|
-
readonly marks?: Record<string, string> | undefined;
|
|
8574
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
8575
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
8576
|
-
readonly displayValue?: boolean | undefined;
|
|
8577
|
-
readonly allowScanning?: boolean | undefined;
|
|
8578
6902
|
readonly currencyConfig?: {
|
|
8579
6903
|
precision: number;
|
|
8580
6904
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -8628,29 +6952,7 @@ declare const SysShareLink: Omit<{
|
|
|
8628
6952
|
} | undefined;
|
|
8629
6953
|
maxVersions?: number | undefined;
|
|
8630
6954
|
} | undefined;
|
|
8631
|
-
readonly
|
|
8632
|
-
field: string;
|
|
8633
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
8634
|
-
preserveFormat: boolean;
|
|
8635
|
-
preserveLength: boolean;
|
|
8636
|
-
pattern?: string | undefined;
|
|
8637
|
-
roles?: string[] | undefined;
|
|
8638
|
-
exemptRoles?: string[] | undefined;
|
|
8639
|
-
} | undefined;
|
|
8640
|
-
readonly auditTrail?: boolean | undefined;
|
|
8641
|
-
readonly cached?: {
|
|
8642
|
-
enabled: boolean;
|
|
8643
|
-
ttl: number;
|
|
8644
|
-
invalidateOn: string[];
|
|
8645
|
-
} | undefined;
|
|
8646
|
-
readonly dataQuality?: {
|
|
8647
|
-
uniqueness: boolean;
|
|
8648
|
-
completeness: number;
|
|
8649
|
-
accuracy?: {
|
|
8650
|
-
source: string;
|
|
8651
|
-
threshold: number;
|
|
8652
|
-
} | undefined;
|
|
8653
|
-
} | undefined;
|
|
6955
|
+
readonly trackHistory?: boolean | undefined;
|
|
8654
6956
|
readonly visibleWhen?: {
|
|
8655
6957
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8656
6958
|
source?: string | undefined;
|
|
@@ -8689,7 +6991,6 @@ declare const SysShareLink: Omit<{
|
|
|
8689
6991
|
} | undefined;
|
|
8690
6992
|
readonly sortable?: boolean | undefined;
|
|
8691
6993
|
readonly inlineHelpText?: string | undefined;
|
|
8692
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
8693
6994
|
readonly caseSensitive?: boolean | undefined;
|
|
8694
6995
|
readonly autonumberFormat?: string | undefined;
|
|
8695
6996
|
readonly index?: boolean | undefined;
|
|
@@ -8711,7 +7012,6 @@ declare const SysShareLink: Omit<{
|
|
|
8711
7012
|
readonly required?: boolean | undefined;
|
|
8712
7013
|
readonly multiple?: boolean | undefined;
|
|
8713
7014
|
readonly dependencies?: string[] | undefined;
|
|
8714
|
-
readonly theme?: string | undefined;
|
|
8715
7015
|
readonly externalId?: boolean | undefined;
|
|
8716
7016
|
readonly defaultValue?: unknown;
|
|
8717
7017
|
readonly group?: string | undefined;
|
|
@@ -8719,23 +7019,7 @@ declare const SysShareLink: Omit<{
|
|
|
8719
7019
|
readonly system?: boolean | undefined;
|
|
8720
7020
|
readonly min?: number | undefined;
|
|
8721
7021
|
readonly max?: number | undefined;
|
|
8722
|
-
readonly
|
|
8723
|
-
enabled: boolean;
|
|
8724
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
8725
|
-
keyManagement: {
|
|
8726
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
8727
|
-
keyId?: string | undefined;
|
|
8728
|
-
rotationPolicy?: {
|
|
8729
|
-
enabled: boolean;
|
|
8730
|
-
frequencyDays: number;
|
|
8731
|
-
retainOldVersions: number;
|
|
8732
|
-
autoRotate: boolean;
|
|
8733
|
-
} | undefined;
|
|
8734
|
-
};
|
|
8735
|
-
scope: "record" | "field" | "table" | "database";
|
|
8736
|
-
deterministicEncryption: boolean;
|
|
8737
|
-
searchableEncryption: boolean;
|
|
8738
|
-
} | undefined;
|
|
7022
|
+
readonly dimensions?: number | undefined;
|
|
8739
7023
|
readonly columnName?: string | undefined;
|
|
8740
7024
|
readonly searchable?: boolean | undefined;
|
|
8741
7025
|
readonly unique?: boolean | undefined;
|
|
@@ -8744,7 +7028,6 @@ declare const SysShareLink: Omit<{
|
|
|
8744
7028
|
readonly scale?: number | undefined;
|
|
8745
7029
|
readonly reference?: string | undefined;
|
|
8746
7030
|
readonly referenceFilters?: string[] | undefined;
|
|
8747
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
8748
7031
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
8749
7032
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
8750
7033
|
readonly inlineTitle?: string | undefined;
|
|
@@ -8769,22 +7052,8 @@ declare const SysShareLink: Omit<{
|
|
|
8769
7052
|
relationshipField?: string | undefined;
|
|
8770
7053
|
} | undefined;
|
|
8771
7054
|
readonly language?: string | undefined;
|
|
8772
|
-
readonly lineNumbers?: boolean | undefined;
|
|
8773
7055
|
readonly maxRating?: number | undefined;
|
|
8774
|
-
readonly allowHalf?: boolean | undefined;
|
|
8775
|
-
readonly displayMap?: boolean | undefined;
|
|
8776
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
8777
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
8778
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
8779
|
-
readonly allowAlpha?: boolean | undefined;
|
|
8780
|
-
readonly presetColors?: string[] | undefined;
|
|
8781
7056
|
readonly step?: number | undefined;
|
|
8782
|
-
readonly showValue?: boolean | undefined;
|
|
8783
|
-
readonly marks?: Record<string, string> | undefined;
|
|
8784
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
8785
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
8786
|
-
readonly displayValue?: boolean | undefined;
|
|
8787
|
-
readonly allowScanning?: boolean | undefined;
|
|
8788
7057
|
readonly currencyConfig?: {
|
|
8789
7058
|
precision: number;
|
|
8790
7059
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -8838,29 +7107,7 @@ declare const SysShareLink: Omit<{
|
|
|
8838
7107
|
} | undefined;
|
|
8839
7108
|
maxVersions?: number | undefined;
|
|
8840
7109
|
} | undefined;
|
|
8841
|
-
readonly
|
|
8842
|
-
field: string;
|
|
8843
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
8844
|
-
preserveFormat: boolean;
|
|
8845
|
-
preserveLength: boolean;
|
|
8846
|
-
pattern?: string | undefined;
|
|
8847
|
-
roles?: string[] | undefined;
|
|
8848
|
-
exemptRoles?: string[] | undefined;
|
|
8849
|
-
} | undefined;
|
|
8850
|
-
readonly auditTrail?: boolean | undefined;
|
|
8851
|
-
readonly cached?: {
|
|
8852
|
-
enabled: boolean;
|
|
8853
|
-
ttl: number;
|
|
8854
|
-
invalidateOn: string[];
|
|
8855
|
-
} | undefined;
|
|
8856
|
-
readonly dataQuality?: {
|
|
8857
|
-
uniqueness: boolean;
|
|
8858
|
-
completeness: number;
|
|
8859
|
-
accuracy?: {
|
|
8860
|
-
source: string;
|
|
8861
|
-
threshold: number;
|
|
8862
|
-
} | undefined;
|
|
8863
|
-
} | undefined;
|
|
7110
|
+
readonly trackHistory?: boolean | undefined;
|
|
8864
7111
|
readonly visibleWhen?: {
|
|
8865
7112
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8866
7113
|
source?: string | undefined;
|
|
@@ -8899,7 +7146,6 @@ declare const SysShareLink: Omit<{
|
|
|
8899
7146
|
} | undefined;
|
|
8900
7147
|
readonly sortable?: boolean | undefined;
|
|
8901
7148
|
readonly inlineHelpText?: string | undefined;
|
|
8902
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
8903
7149
|
readonly caseSensitive?: boolean | undefined;
|
|
8904
7150
|
readonly autonumberFormat?: string | undefined;
|
|
8905
7151
|
readonly index?: boolean | undefined;
|
|
@@ -8921,7 +7167,6 @@ declare const SysShareLink: Omit<{
|
|
|
8921
7167
|
readonly required?: boolean | undefined;
|
|
8922
7168
|
readonly multiple?: boolean | undefined;
|
|
8923
7169
|
readonly dependencies?: string[] | undefined;
|
|
8924
|
-
readonly theme?: string | undefined;
|
|
8925
7170
|
readonly externalId?: boolean | undefined;
|
|
8926
7171
|
readonly defaultValue?: unknown;
|
|
8927
7172
|
readonly group?: string | undefined;
|
|
@@ -8929,23 +7174,7 @@ declare const SysShareLink: Omit<{
|
|
|
8929
7174
|
readonly system?: boolean | undefined;
|
|
8930
7175
|
readonly min?: number | undefined;
|
|
8931
7176
|
readonly max?: number | undefined;
|
|
8932
|
-
readonly
|
|
8933
|
-
enabled: boolean;
|
|
8934
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
8935
|
-
keyManagement: {
|
|
8936
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
8937
|
-
keyId?: string | undefined;
|
|
8938
|
-
rotationPolicy?: {
|
|
8939
|
-
enabled: boolean;
|
|
8940
|
-
frequencyDays: number;
|
|
8941
|
-
retainOldVersions: number;
|
|
8942
|
-
autoRotate: boolean;
|
|
8943
|
-
} | undefined;
|
|
8944
|
-
};
|
|
8945
|
-
scope: "record" | "field" | "table" | "database";
|
|
8946
|
-
deterministicEncryption: boolean;
|
|
8947
|
-
searchableEncryption: boolean;
|
|
8948
|
-
} | undefined;
|
|
7177
|
+
readonly dimensions?: number | undefined;
|
|
8949
7178
|
readonly columnName?: string | undefined;
|
|
8950
7179
|
readonly searchable?: boolean | undefined;
|
|
8951
7180
|
readonly unique?: boolean | undefined;
|
|
@@ -8954,7 +7183,6 @@ declare const SysShareLink: Omit<{
|
|
|
8954
7183
|
readonly scale?: number | undefined;
|
|
8955
7184
|
readonly reference?: string | undefined;
|
|
8956
7185
|
readonly referenceFilters?: string[] | undefined;
|
|
8957
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
8958
7186
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
8959
7187
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
8960
7188
|
readonly inlineTitle?: string | undefined;
|
|
@@ -8979,22 +7207,8 @@ declare const SysShareLink: Omit<{
|
|
|
8979
7207
|
relationshipField?: string | undefined;
|
|
8980
7208
|
} | undefined;
|
|
8981
7209
|
readonly language?: string | undefined;
|
|
8982
|
-
readonly lineNumbers?: boolean | undefined;
|
|
8983
7210
|
readonly maxRating?: number | undefined;
|
|
8984
|
-
readonly allowHalf?: boolean | undefined;
|
|
8985
|
-
readonly displayMap?: boolean | undefined;
|
|
8986
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
8987
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
8988
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
8989
|
-
readonly allowAlpha?: boolean | undefined;
|
|
8990
|
-
readonly presetColors?: string[] | undefined;
|
|
8991
7211
|
readonly step?: number | undefined;
|
|
8992
|
-
readonly showValue?: boolean | undefined;
|
|
8993
|
-
readonly marks?: Record<string, string> | undefined;
|
|
8994
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
8995
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
8996
|
-
readonly displayValue?: boolean | undefined;
|
|
8997
|
-
readonly allowScanning?: boolean | undefined;
|
|
8998
7212
|
readonly currencyConfig?: {
|
|
8999
7213
|
precision: number;
|
|
9000
7214
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -9048,29 +7262,7 @@ declare const SysShareLink: Omit<{
|
|
|
9048
7262
|
} | undefined;
|
|
9049
7263
|
maxVersions?: number | undefined;
|
|
9050
7264
|
} | undefined;
|
|
9051
|
-
readonly
|
|
9052
|
-
field: string;
|
|
9053
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
9054
|
-
preserveFormat: boolean;
|
|
9055
|
-
preserveLength: boolean;
|
|
9056
|
-
pattern?: string | undefined;
|
|
9057
|
-
roles?: string[] | undefined;
|
|
9058
|
-
exemptRoles?: string[] | undefined;
|
|
9059
|
-
} | undefined;
|
|
9060
|
-
readonly auditTrail?: boolean | undefined;
|
|
9061
|
-
readonly cached?: {
|
|
9062
|
-
enabled: boolean;
|
|
9063
|
-
ttl: number;
|
|
9064
|
-
invalidateOn: string[];
|
|
9065
|
-
} | undefined;
|
|
9066
|
-
readonly dataQuality?: {
|
|
9067
|
-
uniqueness: boolean;
|
|
9068
|
-
completeness: number;
|
|
9069
|
-
accuracy?: {
|
|
9070
|
-
source: string;
|
|
9071
|
-
threshold: number;
|
|
9072
|
-
} | undefined;
|
|
9073
|
-
} | undefined;
|
|
7265
|
+
readonly trackHistory?: boolean | undefined;
|
|
9074
7266
|
readonly visibleWhen?: {
|
|
9075
7267
|
dialect: "cel" | "js" | "cron" | "template";
|
|
9076
7268
|
source?: string | undefined;
|
|
@@ -9109,7 +7301,6 @@ declare const SysShareLink: Omit<{
|
|
|
9109
7301
|
} | undefined;
|
|
9110
7302
|
readonly sortable?: boolean | undefined;
|
|
9111
7303
|
readonly inlineHelpText?: string | undefined;
|
|
9112
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
9113
7304
|
readonly caseSensitive?: boolean | undefined;
|
|
9114
7305
|
readonly autonumberFormat?: string | undefined;
|
|
9115
7306
|
readonly index?: boolean | undefined;
|
|
@@ -9131,7 +7322,6 @@ declare const SysShareLink: Omit<{
|
|
|
9131
7322
|
readonly required?: boolean | undefined;
|
|
9132
7323
|
readonly multiple?: boolean | undefined;
|
|
9133
7324
|
readonly dependencies?: string[] | undefined;
|
|
9134
|
-
readonly theme?: string | undefined;
|
|
9135
7325
|
readonly externalId?: boolean | undefined;
|
|
9136
7326
|
readonly defaultValue?: unknown;
|
|
9137
7327
|
readonly group?: string | undefined;
|
|
@@ -9139,23 +7329,7 @@ declare const SysShareLink: Omit<{
|
|
|
9139
7329
|
readonly system?: boolean | undefined;
|
|
9140
7330
|
readonly min?: number | undefined;
|
|
9141
7331
|
readonly max?: number | undefined;
|
|
9142
|
-
readonly
|
|
9143
|
-
enabled: boolean;
|
|
9144
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
9145
|
-
keyManagement: {
|
|
9146
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
9147
|
-
keyId?: string | undefined;
|
|
9148
|
-
rotationPolicy?: {
|
|
9149
|
-
enabled: boolean;
|
|
9150
|
-
frequencyDays: number;
|
|
9151
|
-
retainOldVersions: number;
|
|
9152
|
-
autoRotate: boolean;
|
|
9153
|
-
} | undefined;
|
|
9154
|
-
};
|
|
9155
|
-
scope: "record" | "field" | "table" | "database";
|
|
9156
|
-
deterministicEncryption: boolean;
|
|
9157
|
-
searchableEncryption: boolean;
|
|
9158
|
-
} | undefined;
|
|
7332
|
+
readonly dimensions?: number | undefined;
|
|
9159
7333
|
readonly columnName?: string | undefined;
|
|
9160
7334
|
readonly searchable?: boolean | undefined;
|
|
9161
7335
|
readonly unique?: boolean | undefined;
|
|
@@ -9164,7 +7338,6 @@ declare const SysShareLink: Omit<{
|
|
|
9164
7338
|
readonly scale?: number | undefined;
|
|
9165
7339
|
readonly reference?: string | undefined;
|
|
9166
7340
|
readonly referenceFilters?: string[] | undefined;
|
|
9167
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
9168
7341
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
9169
7342
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
9170
7343
|
readonly inlineTitle?: string | undefined;
|
|
@@ -9189,22 +7362,8 @@ declare const SysShareLink: Omit<{
|
|
|
9189
7362
|
relationshipField?: string | undefined;
|
|
9190
7363
|
} | undefined;
|
|
9191
7364
|
readonly language?: string | undefined;
|
|
9192
|
-
readonly lineNumbers?: boolean | undefined;
|
|
9193
7365
|
readonly maxRating?: number | undefined;
|
|
9194
|
-
readonly allowHalf?: boolean | undefined;
|
|
9195
|
-
readonly displayMap?: boolean | undefined;
|
|
9196
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
9197
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
9198
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
9199
|
-
readonly allowAlpha?: boolean | undefined;
|
|
9200
|
-
readonly presetColors?: string[] | undefined;
|
|
9201
7366
|
readonly step?: number | undefined;
|
|
9202
|
-
readonly showValue?: boolean | undefined;
|
|
9203
|
-
readonly marks?: Record<string, string> | undefined;
|
|
9204
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
9205
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
9206
|
-
readonly displayValue?: boolean | undefined;
|
|
9207
|
-
readonly allowScanning?: boolean | undefined;
|
|
9208
7367
|
readonly currencyConfig?: {
|
|
9209
7368
|
precision: number;
|
|
9210
7369
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -9258,29 +7417,7 @@ declare const SysShareLink: Omit<{
|
|
|
9258
7417
|
} | undefined;
|
|
9259
7418
|
maxVersions?: number | undefined;
|
|
9260
7419
|
} | undefined;
|
|
9261
|
-
readonly
|
|
9262
|
-
field: string;
|
|
9263
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
9264
|
-
preserveFormat: boolean;
|
|
9265
|
-
preserveLength: boolean;
|
|
9266
|
-
pattern?: string | undefined;
|
|
9267
|
-
roles?: string[] | undefined;
|
|
9268
|
-
exemptRoles?: string[] | undefined;
|
|
9269
|
-
} | undefined;
|
|
9270
|
-
readonly auditTrail?: boolean | undefined;
|
|
9271
|
-
readonly cached?: {
|
|
9272
|
-
enabled: boolean;
|
|
9273
|
-
ttl: number;
|
|
9274
|
-
invalidateOn: string[];
|
|
9275
|
-
} | undefined;
|
|
9276
|
-
readonly dataQuality?: {
|
|
9277
|
-
uniqueness: boolean;
|
|
9278
|
-
completeness: number;
|
|
9279
|
-
accuracy?: {
|
|
9280
|
-
source: string;
|
|
9281
|
-
threshold: number;
|
|
9282
|
-
} | undefined;
|
|
9283
|
-
} | undefined;
|
|
7420
|
+
readonly trackHistory?: boolean | undefined;
|
|
9284
7421
|
readonly visibleWhen?: {
|
|
9285
7422
|
dialect: "cel" | "js" | "cron" | "template";
|
|
9286
7423
|
source?: string | undefined;
|
|
@@ -9319,7 +7456,6 @@ declare const SysShareLink: Omit<{
|
|
|
9319
7456
|
} | undefined;
|
|
9320
7457
|
readonly sortable?: boolean | undefined;
|
|
9321
7458
|
readonly inlineHelpText?: string | undefined;
|
|
9322
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
9323
7459
|
readonly caseSensitive?: boolean | undefined;
|
|
9324
7460
|
readonly autonumberFormat?: string | undefined;
|
|
9325
7461
|
readonly index?: boolean | undefined;
|
|
@@ -9341,7 +7477,6 @@ declare const SysShareLink: Omit<{
|
|
|
9341
7477
|
readonly required?: boolean | undefined;
|
|
9342
7478
|
readonly multiple?: boolean | undefined;
|
|
9343
7479
|
readonly dependencies?: string[] | undefined;
|
|
9344
|
-
readonly theme?: string | undefined;
|
|
9345
7480
|
readonly externalId?: boolean | undefined;
|
|
9346
7481
|
readonly defaultValue?: unknown;
|
|
9347
7482
|
readonly group?: string | undefined;
|
|
@@ -9349,23 +7484,7 @@ declare const SysShareLink: Omit<{
|
|
|
9349
7484
|
readonly system?: boolean | undefined;
|
|
9350
7485
|
readonly min?: number | undefined;
|
|
9351
7486
|
readonly max?: number | undefined;
|
|
9352
|
-
readonly
|
|
9353
|
-
enabled: boolean;
|
|
9354
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
9355
|
-
keyManagement: {
|
|
9356
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
9357
|
-
keyId?: string | undefined;
|
|
9358
|
-
rotationPolicy?: {
|
|
9359
|
-
enabled: boolean;
|
|
9360
|
-
frequencyDays: number;
|
|
9361
|
-
retainOldVersions: number;
|
|
9362
|
-
autoRotate: boolean;
|
|
9363
|
-
} | undefined;
|
|
9364
|
-
};
|
|
9365
|
-
scope: "record" | "field" | "table" | "database";
|
|
9366
|
-
deterministicEncryption: boolean;
|
|
9367
|
-
searchableEncryption: boolean;
|
|
9368
|
-
} | undefined;
|
|
7487
|
+
readonly dimensions?: number | undefined;
|
|
9369
7488
|
readonly columnName?: string | undefined;
|
|
9370
7489
|
readonly searchable?: boolean | undefined;
|
|
9371
7490
|
readonly unique?: boolean | undefined;
|
|
@@ -9374,7 +7493,6 @@ declare const SysShareLink: Omit<{
|
|
|
9374
7493
|
readonly scale?: number | undefined;
|
|
9375
7494
|
readonly reference?: string | undefined;
|
|
9376
7495
|
readonly referenceFilters?: string[] | undefined;
|
|
9377
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
9378
7496
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
9379
7497
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
9380
7498
|
readonly inlineTitle?: string | undefined;
|
|
@@ -9399,22 +7517,8 @@ declare const SysShareLink: Omit<{
|
|
|
9399
7517
|
relationshipField?: string | undefined;
|
|
9400
7518
|
} | undefined;
|
|
9401
7519
|
readonly language?: string | undefined;
|
|
9402
|
-
readonly lineNumbers?: boolean | undefined;
|
|
9403
7520
|
readonly maxRating?: number | undefined;
|
|
9404
|
-
readonly allowHalf?: boolean | undefined;
|
|
9405
|
-
readonly displayMap?: boolean | undefined;
|
|
9406
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
9407
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
9408
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
9409
|
-
readonly allowAlpha?: boolean | undefined;
|
|
9410
|
-
readonly presetColors?: string[] | undefined;
|
|
9411
7521
|
readonly step?: number | undefined;
|
|
9412
|
-
readonly showValue?: boolean | undefined;
|
|
9413
|
-
readonly marks?: Record<string, string> | undefined;
|
|
9414
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
9415
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
9416
|
-
readonly displayValue?: boolean | undefined;
|
|
9417
|
-
readonly allowScanning?: boolean | undefined;
|
|
9418
7522
|
readonly currencyConfig?: {
|
|
9419
7523
|
precision: number;
|
|
9420
7524
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -9468,29 +7572,7 @@ declare const SysShareLink: Omit<{
|
|
|
9468
7572
|
} | undefined;
|
|
9469
7573
|
maxVersions?: number | undefined;
|
|
9470
7574
|
} | undefined;
|
|
9471
|
-
readonly
|
|
9472
|
-
field: string;
|
|
9473
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
9474
|
-
preserveFormat: boolean;
|
|
9475
|
-
preserveLength: boolean;
|
|
9476
|
-
pattern?: string | undefined;
|
|
9477
|
-
roles?: string[] | undefined;
|
|
9478
|
-
exemptRoles?: string[] | undefined;
|
|
9479
|
-
} | undefined;
|
|
9480
|
-
readonly auditTrail?: boolean | undefined;
|
|
9481
|
-
readonly cached?: {
|
|
9482
|
-
enabled: boolean;
|
|
9483
|
-
ttl: number;
|
|
9484
|
-
invalidateOn: string[];
|
|
9485
|
-
} | undefined;
|
|
9486
|
-
readonly dataQuality?: {
|
|
9487
|
-
uniqueness: boolean;
|
|
9488
|
-
completeness: number;
|
|
9489
|
-
accuracy?: {
|
|
9490
|
-
source: string;
|
|
9491
|
-
threshold: number;
|
|
9492
|
-
} | undefined;
|
|
9493
|
-
} | undefined;
|
|
7575
|
+
readonly trackHistory?: boolean | undefined;
|
|
9494
7576
|
readonly visibleWhen?: {
|
|
9495
7577
|
dialect: "cel" | "js" | "cron" | "template";
|
|
9496
7578
|
source?: string | undefined;
|
|
@@ -9529,7 +7611,6 @@ declare const SysShareLink: Omit<{
|
|
|
9529
7611
|
} | undefined;
|
|
9530
7612
|
readonly sortable?: boolean | undefined;
|
|
9531
7613
|
readonly inlineHelpText?: string | undefined;
|
|
9532
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
9533
7614
|
readonly caseSensitive?: boolean | undefined;
|
|
9534
7615
|
readonly autonumberFormat?: string | undefined;
|
|
9535
7616
|
readonly index?: boolean | undefined;
|
|
@@ -9551,7 +7632,6 @@ declare const SysShareLink: Omit<{
|
|
|
9551
7632
|
readonly required?: boolean | undefined;
|
|
9552
7633
|
readonly multiple?: boolean | undefined;
|
|
9553
7634
|
readonly dependencies?: string[] | undefined;
|
|
9554
|
-
readonly theme?: string | undefined;
|
|
9555
7635
|
readonly externalId?: boolean | undefined;
|
|
9556
7636
|
readonly defaultValue?: unknown;
|
|
9557
7637
|
readonly group?: string | undefined;
|
|
@@ -9559,23 +7639,7 @@ declare const SysShareLink: Omit<{
|
|
|
9559
7639
|
readonly system?: boolean | undefined;
|
|
9560
7640
|
readonly min?: number | undefined;
|
|
9561
7641
|
readonly max?: number | undefined;
|
|
9562
|
-
readonly
|
|
9563
|
-
enabled: boolean;
|
|
9564
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
9565
|
-
keyManagement: {
|
|
9566
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
9567
|
-
keyId?: string | undefined;
|
|
9568
|
-
rotationPolicy?: {
|
|
9569
|
-
enabled: boolean;
|
|
9570
|
-
frequencyDays: number;
|
|
9571
|
-
retainOldVersions: number;
|
|
9572
|
-
autoRotate: boolean;
|
|
9573
|
-
} | undefined;
|
|
9574
|
-
};
|
|
9575
|
-
scope: "record" | "field" | "table" | "database";
|
|
9576
|
-
deterministicEncryption: boolean;
|
|
9577
|
-
searchableEncryption: boolean;
|
|
9578
|
-
} | undefined;
|
|
7642
|
+
readonly dimensions?: number | undefined;
|
|
9579
7643
|
readonly columnName?: string | undefined;
|
|
9580
7644
|
readonly searchable?: boolean | undefined;
|
|
9581
7645
|
readonly unique?: boolean | undefined;
|
|
@@ -9584,7 +7648,6 @@ declare const SysShareLink: Omit<{
|
|
|
9584
7648
|
readonly scale?: number | undefined;
|
|
9585
7649
|
readonly reference?: string | undefined;
|
|
9586
7650
|
readonly referenceFilters?: string[] | undefined;
|
|
9587
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
9588
7651
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
9589
7652
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
9590
7653
|
readonly inlineTitle?: string | undefined;
|
|
@@ -9609,22 +7672,8 @@ declare const SysShareLink: Omit<{
|
|
|
9609
7672
|
relationshipField?: string | undefined;
|
|
9610
7673
|
} | undefined;
|
|
9611
7674
|
readonly language?: string | undefined;
|
|
9612
|
-
readonly lineNumbers?: boolean | undefined;
|
|
9613
7675
|
readonly maxRating?: number | undefined;
|
|
9614
|
-
readonly allowHalf?: boolean | undefined;
|
|
9615
|
-
readonly displayMap?: boolean | undefined;
|
|
9616
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
9617
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
9618
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
9619
|
-
readonly allowAlpha?: boolean | undefined;
|
|
9620
|
-
readonly presetColors?: string[] | undefined;
|
|
9621
7676
|
readonly step?: number | undefined;
|
|
9622
|
-
readonly showValue?: boolean | undefined;
|
|
9623
|
-
readonly marks?: Record<string, string> | undefined;
|
|
9624
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
9625
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
9626
|
-
readonly displayValue?: boolean | undefined;
|
|
9627
|
-
readonly allowScanning?: boolean | undefined;
|
|
9628
7677
|
readonly currencyConfig?: {
|
|
9629
7678
|
precision: number;
|
|
9630
7679
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -9678,29 +7727,7 @@ declare const SysShareLink: Omit<{
|
|
|
9678
7727
|
} | undefined;
|
|
9679
7728
|
maxVersions?: number | undefined;
|
|
9680
7729
|
} | undefined;
|
|
9681
|
-
readonly
|
|
9682
|
-
field: string;
|
|
9683
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
9684
|
-
preserveFormat: boolean;
|
|
9685
|
-
preserveLength: boolean;
|
|
9686
|
-
pattern?: string | undefined;
|
|
9687
|
-
roles?: string[] | undefined;
|
|
9688
|
-
exemptRoles?: string[] | undefined;
|
|
9689
|
-
} | undefined;
|
|
9690
|
-
readonly auditTrail?: boolean | undefined;
|
|
9691
|
-
readonly cached?: {
|
|
9692
|
-
enabled: boolean;
|
|
9693
|
-
ttl: number;
|
|
9694
|
-
invalidateOn: string[];
|
|
9695
|
-
} | undefined;
|
|
9696
|
-
readonly dataQuality?: {
|
|
9697
|
-
uniqueness: boolean;
|
|
9698
|
-
completeness: number;
|
|
9699
|
-
accuracy?: {
|
|
9700
|
-
source: string;
|
|
9701
|
-
threshold: number;
|
|
9702
|
-
} | undefined;
|
|
9703
|
-
} | undefined;
|
|
7730
|
+
readonly trackHistory?: boolean | undefined;
|
|
9704
7731
|
readonly visibleWhen?: {
|
|
9705
7732
|
dialect: "cel" | "js" | "cron" | "template";
|
|
9706
7733
|
source?: string | undefined;
|
|
@@ -9739,7 +7766,6 @@ declare const SysShareLink: Omit<{
|
|
|
9739
7766
|
} | undefined;
|
|
9740
7767
|
readonly sortable?: boolean | undefined;
|
|
9741
7768
|
readonly inlineHelpText?: string | undefined;
|
|
9742
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
9743
7769
|
readonly caseSensitive?: boolean | undefined;
|
|
9744
7770
|
readonly autonumberFormat?: string | undefined;
|
|
9745
7771
|
readonly index?: boolean | undefined;
|
|
@@ -9761,7 +7787,6 @@ declare const SysShareLink: Omit<{
|
|
|
9761
7787
|
readonly required?: boolean | undefined;
|
|
9762
7788
|
readonly multiple?: boolean | undefined;
|
|
9763
7789
|
readonly dependencies?: string[] | undefined;
|
|
9764
|
-
readonly theme?: string | undefined;
|
|
9765
7790
|
readonly externalId?: boolean | undefined;
|
|
9766
7791
|
readonly defaultValue?: unknown;
|
|
9767
7792
|
readonly group?: string | undefined;
|
|
@@ -9769,23 +7794,7 @@ declare const SysShareLink: Omit<{
|
|
|
9769
7794
|
readonly system?: boolean | undefined;
|
|
9770
7795
|
readonly min?: number | undefined;
|
|
9771
7796
|
readonly max?: number | undefined;
|
|
9772
|
-
readonly
|
|
9773
|
-
enabled: boolean;
|
|
9774
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
9775
|
-
keyManagement: {
|
|
9776
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
9777
|
-
keyId?: string | undefined;
|
|
9778
|
-
rotationPolicy?: {
|
|
9779
|
-
enabled: boolean;
|
|
9780
|
-
frequencyDays: number;
|
|
9781
|
-
retainOldVersions: number;
|
|
9782
|
-
autoRotate: boolean;
|
|
9783
|
-
} | undefined;
|
|
9784
|
-
};
|
|
9785
|
-
scope: "record" | "field" | "table" | "database";
|
|
9786
|
-
deterministicEncryption: boolean;
|
|
9787
|
-
searchableEncryption: boolean;
|
|
9788
|
-
} | undefined;
|
|
7797
|
+
readonly dimensions?: number | undefined;
|
|
9789
7798
|
readonly columnName?: string | undefined;
|
|
9790
7799
|
readonly searchable?: boolean | undefined;
|
|
9791
7800
|
readonly unique?: boolean | undefined;
|
|
@@ -9794,7 +7803,6 @@ declare const SysShareLink: Omit<{
|
|
|
9794
7803
|
readonly scale?: number | undefined;
|
|
9795
7804
|
readonly reference?: string | undefined;
|
|
9796
7805
|
readonly referenceFilters?: string[] | undefined;
|
|
9797
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
9798
7806
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
9799
7807
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
9800
7808
|
readonly inlineTitle?: string | undefined;
|
|
@@ -9819,22 +7827,8 @@ declare const SysShareLink: Omit<{
|
|
|
9819
7827
|
relationshipField?: string | undefined;
|
|
9820
7828
|
} | undefined;
|
|
9821
7829
|
readonly language?: string | undefined;
|
|
9822
|
-
readonly lineNumbers?: boolean | undefined;
|
|
9823
7830
|
readonly maxRating?: number | undefined;
|
|
9824
|
-
readonly allowHalf?: boolean | undefined;
|
|
9825
|
-
readonly displayMap?: boolean | undefined;
|
|
9826
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
9827
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
9828
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
9829
|
-
readonly allowAlpha?: boolean | undefined;
|
|
9830
|
-
readonly presetColors?: string[] | undefined;
|
|
9831
7831
|
readonly step?: number | undefined;
|
|
9832
|
-
readonly showValue?: boolean | undefined;
|
|
9833
|
-
readonly marks?: Record<string, string> | undefined;
|
|
9834
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
9835
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
9836
|
-
readonly displayValue?: boolean | undefined;
|
|
9837
|
-
readonly allowScanning?: boolean | undefined;
|
|
9838
7832
|
readonly currencyConfig?: {
|
|
9839
7833
|
precision: number;
|
|
9840
7834
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -9888,29 +7882,7 @@ declare const SysShareLink: Omit<{
|
|
|
9888
7882
|
} | undefined;
|
|
9889
7883
|
maxVersions?: number | undefined;
|
|
9890
7884
|
} | undefined;
|
|
9891
|
-
readonly
|
|
9892
|
-
field: string;
|
|
9893
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
9894
|
-
preserveFormat: boolean;
|
|
9895
|
-
preserveLength: boolean;
|
|
9896
|
-
pattern?: string | undefined;
|
|
9897
|
-
roles?: string[] | undefined;
|
|
9898
|
-
exemptRoles?: string[] | undefined;
|
|
9899
|
-
} | undefined;
|
|
9900
|
-
readonly auditTrail?: boolean | undefined;
|
|
9901
|
-
readonly cached?: {
|
|
9902
|
-
enabled: boolean;
|
|
9903
|
-
ttl: number;
|
|
9904
|
-
invalidateOn: string[];
|
|
9905
|
-
} | undefined;
|
|
9906
|
-
readonly dataQuality?: {
|
|
9907
|
-
uniqueness: boolean;
|
|
9908
|
-
completeness: number;
|
|
9909
|
-
accuracy?: {
|
|
9910
|
-
source: string;
|
|
9911
|
-
threshold: number;
|
|
9912
|
-
} | undefined;
|
|
9913
|
-
} | undefined;
|
|
7885
|
+
readonly trackHistory?: boolean | undefined;
|
|
9914
7886
|
readonly visibleWhen?: {
|
|
9915
7887
|
dialect: "cel" | "js" | "cron" | "template";
|
|
9916
7888
|
source?: string | undefined;
|
|
@@ -9949,7 +7921,6 @@ declare const SysShareLink: Omit<{
|
|
|
9949
7921
|
} | undefined;
|
|
9950
7922
|
readonly sortable?: boolean | undefined;
|
|
9951
7923
|
readonly inlineHelpText?: string | undefined;
|
|
9952
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
9953
7924
|
readonly caseSensitive?: boolean | undefined;
|
|
9954
7925
|
readonly autonumberFormat?: string | undefined;
|
|
9955
7926
|
readonly index?: boolean | undefined;
|
|
@@ -9971,7 +7942,6 @@ declare const SysShareLink: Omit<{
|
|
|
9971
7942
|
readonly required?: boolean | undefined;
|
|
9972
7943
|
readonly multiple?: boolean | undefined;
|
|
9973
7944
|
readonly dependencies?: string[] | undefined;
|
|
9974
|
-
readonly theme?: string | undefined;
|
|
9975
7945
|
readonly externalId?: boolean | undefined;
|
|
9976
7946
|
readonly defaultValue?: unknown;
|
|
9977
7947
|
readonly group?: string | undefined;
|
|
@@ -9979,23 +7949,7 @@ declare const SysShareLink: Omit<{
|
|
|
9979
7949
|
readonly system?: boolean | undefined;
|
|
9980
7950
|
readonly min?: number | undefined;
|
|
9981
7951
|
readonly max?: number | undefined;
|
|
9982
|
-
readonly
|
|
9983
|
-
enabled: boolean;
|
|
9984
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
9985
|
-
keyManagement: {
|
|
9986
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
9987
|
-
keyId?: string | undefined;
|
|
9988
|
-
rotationPolicy?: {
|
|
9989
|
-
enabled: boolean;
|
|
9990
|
-
frequencyDays: number;
|
|
9991
|
-
retainOldVersions: number;
|
|
9992
|
-
autoRotate: boolean;
|
|
9993
|
-
} | undefined;
|
|
9994
|
-
};
|
|
9995
|
-
scope: "record" | "field" | "table" | "database";
|
|
9996
|
-
deterministicEncryption: boolean;
|
|
9997
|
-
searchableEncryption: boolean;
|
|
9998
|
-
} | undefined;
|
|
7952
|
+
readonly dimensions?: number | undefined;
|
|
9999
7953
|
readonly columnName?: string | undefined;
|
|
10000
7954
|
readonly searchable?: boolean | undefined;
|
|
10001
7955
|
readonly unique?: boolean | undefined;
|
|
@@ -10004,7 +7958,6 @@ declare const SysShareLink: Omit<{
|
|
|
10004
7958
|
readonly scale?: number | undefined;
|
|
10005
7959
|
readonly reference?: string | undefined;
|
|
10006
7960
|
readonly referenceFilters?: string[] | undefined;
|
|
10007
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
10008
7961
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
10009
7962
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
10010
7963
|
readonly inlineTitle?: string | undefined;
|
|
@@ -10029,22 +7982,8 @@ declare const SysShareLink: Omit<{
|
|
|
10029
7982
|
relationshipField?: string | undefined;
|
|
10030
7983
|
} | undefined;
|
|
10031
7984
|
readonly language?: string | undefined;
|
|
10032
|
-
readonly lineNumbers?: boolean | undefined;
|
|
10033
7985
|
readonly maxRating?: number | undefined;
|
|
10034
|
-
readonly allowHalf?: boolean | undefined;
|
|
10035
|
-
readonly displayMap?: boolean | undefined;
|
|
10036
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
10037
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
10038
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
10039
|
-
readonly allowAlpha?: boolean | undefined;
|
|
10040
|
-
readonly presetColors?: string[] | undefined;
|
|
10041
7986
|
readonly step?: number | undefined;
|
|
10042
|
-
readonly showValue?: boolean | undefined;
|
|
10043
|
-
readonly marks?: Record<string, string> | undefined;
|
|
10044
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
10045
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
10046
|
-
readonly displayValue?: boolean | undefined;
|
|
10047
|
-
readonly allowScanning?: boolean | undefined;
|
|
10048
7987
|
readonly currencyConfig?: {
|
|
10049
7988
|
precision: number;
|
|
10050
7989
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -10098,29 +8037,7 @@ declare const SysShareLink: Omit<{
|
|
|
10098
8037
|
} | undefined;
|
|
10099
8038
|
maxVersions?: number | undefined;
|
|
10100
8039
|
} | undefined;
|
|
10101
|
-
readonly
|
|
10102
|
-
field: string;
|
|
10103
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
10104
|
-
preserveFormat: boolean;
|
|
10105
|
-
preserveLength: boolean;
|
|
10106
|
-
pattern?: string | undefined;
|
|
10107
|
-
roles?: string[] | undefined;
|
|
10108
|
-
exemptRoles?: string[] | undefined;
|
|
10109
|
-
} | undefined;
|
|
10110
|
-
readonly auditTrail?: boolean | undefined;
|
|
10111
|
-
readonly cached?: {
|
|
10112
|
-
enabled: boolean;
|
|
10113
|
-
ttl: number;
|
|
10114
|
-
invalidateOn: string[];
|
|
10115
|
-
} | undefined;
|
|
10116
|
-
readonly dataQuality?: {
|
|
10117
|
-
uniqueness: boolean;
|
|
10118
|
-
completeness: number;
|
|
10119
|
-
accuracy?: {
|
|
10120
|
-
source: string;
|
|
10121
|
-
threshold: number;
|
|
10122
|
-
} | undefined;
|
|
10123
|
-
} | undefined;
|
|
8040
|
+
readonly trackHistory?: boolean | undefined;
|
|
10124
8041
|
readonly visibleWhen?: {
|
|
10125
8042
|
dialect: "cel" | "js" | "cron" | "template";
|
|
10126
8043
|
source?: string | undefined;
|
|
@@ -10159,7 +8076,6 @@ declare const SysShareLink: Omit<{
|
|
|
10159
8076
|
} | undefined;
|
|
10160
8077
|
readonly sortable?: boolean | undefined;
|
|
10161
8078
|
readonly inlineHelpText?: string | undefined;
|
|
10162
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
10163
8079
|
readonly caseSensitive?: boolean | undefined;
|
|
10164
8080
|
readonly autonumberFormat?: string | undefined;
|
|
10165
8081
|
readonly index?: boolean | undefined;
|
|
@@ -10181,7 +8097,6 @@ declare const SysShareLink: Omit<{
|
|
|
10181
8097
|
readonly required?: boolean | undefined;
|
|
10182
8098
|
readonly multiple?: boolean | undefined;
|
|
10183
8099
|
readonly dependencies?: string[] | undefined;
|
|
10184
|
-
readonly theme?: string | undefined;
|
|
10185
8100
|
readonly externalId?: boolean | undefined;
|
|
10186
8101
|
readonly defaultValue?: unknown;
|
|
10187
8102
|
readonly group?: string | undefined;
|
|
@@ -10189,23 +8104,7 @@ declare const SysShareLink: Omit<{
|
|
|
10189
8104
|
readonly system?: boolean | undefined;
|
|
10190
8105
|
readonly min?: number | undefined;
|
|
10191
8106
|
readonly max?: number | undefined;
|
|
10192
|
-
readonly
|
|
10193
|
-
enabled: boolean;
|
|
10194
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
10195
|
-
keyManagement: {
|
|
10196
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
10197
|
-
keyId?: string | undefined;
|
|
10198
|
-
rotationPolicy?: {
|
|
10199
|
-
enabled: boolean;
|
|
10200
|
-
frequencyDays: number;
|
|
10201
|
-
retainOldVersions: number;
|
|
10202
|
-
autoRotate: boolean;
|
|
10203
|
-
} | undefined;
|
|
10204
|
-
};
|
|
10205
|
-
scope: "record" | "field" | "table" | "database";
|
|
10206
|
-
deterministicEncryption: boolean;
|
|
10207
|
-
searchableEncryption: boolean;
|
|
10208
|
-
} | undefined;
|
|
8107
|
+
readonly dimensions?: number | undefined;
|
|
10209
8108
|
readonly columnName?: string | undefined;
|
|
10210
8109
|
readonly searchable?: boolean | undefined;
|
|
10211
8110
|
readonly unique?: boolean | undefined;
|
|
@@ -10214,7 +8113,6 @@ declare const SysShareLink: Omit<{
|
|
|
10214
8113
|
readonly scale?: number | undefined;
|
|
10215
8114
|
readonly reference?: string | undefined;
|
|
10216
8115
|
readonly referenceFilters?: string[] | undefined;
|
|
10217
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
10218
8116
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
10219
8117
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
10220
8118
|
readonly inlineTitle?: string | undefined;
|
|
@@ -10239,22 +8137,8 @@ declare const SysShareLink: Omit<{
|
|
|
10239
8137
|
relationshipField?: string | undefined;
|
|
10240
8138
|
} | undefined;
|
|
10241
8139
|
readonly language?: string | undefined;
|
|
10242
|
-
readonly lineNumbers?: boolean | undefined;
|
|
10243
8140
|
readonly maxRating?: number | undefined;
|
|
10244
|
-
readonly allowHalf?: boolean | undefined;
|
|
10245
|
-
readonly displayMap?: boolean | undefined;
|
|
10246
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
10247
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
10248
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
10249
|
-
readonly allowAlpha?: boolean | undefined;
|
|
10250
|
-
readonly presetColors?: string[] | undefined;
|
|
10251
8141
|
readonly step?: number | undefined;
|
|
10252
|
-
readonly showValue?: boolean | undefined;
|
|
10253
|
-
readonly marks?: Record<string, string> | undefined;
|
|
10254
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
10255
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
10256
|
-
readonly displayValue?: boolean | undefined;
|
|
10257
|
-
readonly allowScanning?: boolean | undefined;
|
|
10258
8142
|
readonly currencyConfig?: {
|
|
10259
8143
|
precision: number;
|
|
10260
8144
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -10308,29 +8192,7 @@ declare const SysShareLink: Omit<{
|
|
|
10308
8192
|
} | undefined;
|
|
10309
8193
|
maxVersions?: number | undefined;
|
|
10310
8194
|
} | undefined;
|
|
10311
|
-
readonly
|
|
10312
|
-
field: string;
|
|
10313
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
10314
|
-
preserveFormat: boolean;
|
|
10315
|
-
preserveLength: boolean;
|
|
10316
|
-
pattern?: string | undefined;
|
|
10317
|
-
roles?: string[] | undefined;
|
|
10318
|
-
exemptRoles?: string[] | undefined;
|
|
10319
|
-
} | undefined;
|
|
10320
|
-
readonly auditTrail?: boolean | undefined;
|
|
10321
|
-
readonly cached?: {
|
|
10322
|
-
enabled: boolean;
|
|
10323
|
-
ttl: number;
|
|
10324
|
-
invalidateOn: string[];
|
|
10325
|
-
} | undefined;
|
|
10326
|
-
readonly dataQuality?: {
|
|
10327
|
-
uniqueness: boolean;
|
|
10328
|
-
completeness: number;
|
|
10329
|
-
accuracy?: {
|
|
10330
|
-
source: string;
|
|
10331
|
-
threshold: number;
|
|
10332
|
-
} | undefined;
|
|
10333
|
-
} | undefined;
|
|
8195
|
+
readonly trackHistory?: boolean | undefined;
|
|
10334
8196
|
readonly visibleWhen?: {
|
|
10335
8197
|
dialect: "cel" | "js" | "cron" | "template";
|
|
10336
8198
|
source?: string | undefined;
|
|
@@ -10369,7 +8231,6 @@ declare const SysShareLink: Omit<{
|
|
|
10369
8231
|
} | undefined;
|
|
10370
8232
|
readonly sortable?: boolean | undefined;
|
|
10371
8233
|
readonly inlineHelpText?: string | undefined;
|
|
10372
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
10373
8234
|
readonly caseSensitive?: boolean | undefined;
|
|
10374
8235
|
readonly autonumberFormat?: string | undefined;
|
|
10375
8236
|
readonly index?: boolean | undefined;
|
|
@@ -10391,7 +8252,6 @@ declare const SysShareLink: Omit<{
|
|
|
10391
8252
|
readonly required?: boolean | undefined;
|
|
10392
8253
|
readonly multiple?: boolean | undefined;
|
|
10393
8254
|
readonly dependencies?: string[] | undefined;
|
|
10394
|
-
readonly theme?: string | undefined;
|
|
10395
8255
|
readonly externalId?: boolean | undefined;
|
|
10396
8256
|
readonly defaultValue?: unknown;
|
|
10397
8257
|
readonly group?: string | undefined;
|
|
@@ -10399,23 +8259,7 @@ declare const SysShareLink: Omit<{
|
|
|
10399
8259
|
readonly system?: boolean | undefined;
|
|
10400
8260
|
readonly min?: number | undefined;
|
|
10401
8261
|
readonly max?: number | undefined;
|
|
10402
|
-
readonly
|
|
10403
|
-
enabled: boolean;
|
|
10404
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
10405
|
-
keyManagement: {
|
|
10406
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
10407
|
-
keyId?: string | undefined;
|
|
10408
|
-
rotationPolicy?: {
|
|
10409
|
-
enabled: boolean;
|
|
10410
|
-
frequencyDays: number;
|
|
10411
|
-
retainOldVersions: number;
|
|
10412
|
-
autoRotate: boolean;
|
|
10413
|
-
} | undefined;
|
|
10414
|
-
};
|
|
10415
|
-
scope: "record" | "field" | "table" | "database";
|
|
10416
|
-
deterministicEncryption: boolean;
|
|
10417
|
-
searchableEncryption: boolean;
|
|
10418
|
-
} | undefined;
|
|
8262
|
+
readonly dimensions?: number | undefined;
|
|
10419
8263
|
readonly columnName?: string | undefined;
|
|
10420
8264
|
readonly searchable?: boolean | undefined;
|
|
10421
8265
|
readonly unique?: boolean | undefined;
|
|
@@ -10424,7 +8268,6 @@ declare const SysShareLink: Omit<{
|
|
|
10424
8268
|
readonly scale?: number | undefined;
|
|
10425
8269
|
readonly reference?: string | undefined;
|
|
10426
8270
|
readonly referenceFilters?: string[] | undefined;
|
|
10427
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
10428
8271
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
10429
8272
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
10430
8273
|
readonly inlineTitle?: string | undefined;
|
|
@@ -10449,22 +8292,8 @@ declare const SysShareLink: Omit<{
|
|
|
10449
8292
|
relationshipField?: string | undefined;
|
|
10450
8293
|
} | undefined;
|
|
10451
8294
|
readonly language?: string | undefined;
|
|
10452
|
-
readonly lineNumbers?: boolean | undefined;
|
|
10453
8295
|
readonly maxRating?: number | undefined;
|
|
10454
|
-
readonly allowHalf?: boolean | undefined;
|
|
10455
|
-
readonly displayMap?: boolean | undefined;
|
|
10456
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
10457
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
10458
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
10459
|
-
readonly allowAlpha?: boolean | undefined;
|
|
10460
|
-
readonly presetColors?: string[] | undefined;
|
|
10461
8296
|
readonly step?: number | undefined;
|
|
10462
|
-
readonly showValue?: boolean | undefined;
|
|
10463
|
-
readonly marks?: Record<string, string> | undefined;
|
|
10464
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
10465
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
10466
|
-
readonly displayValue?: boolean | undefined;
|
|
10467
|
-
readonly allowScanning?: boolean | undefined;
|
|
10468
8297
|
readonly currencyConfig?: {
|
|
10469
8298
|
precision: number;
|
|
10470
8299
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -10518,29 +8347,7 @@ declare const SysShareLink: Omit<{
|
|
|
10518
8347
|
} | undefined;
|
|
10519
8348
|
maxVersions?: number | undefined;
|
|
10520
8349
|
} | undefined;
|
|
10521
|
-
readonly
|
|
10522
|
-
field: string;
|
|
10523
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
10524
|
-
preserveFormat: boolean;
|
|
10525
|
-
preserveLength: boolean;
|
|
10526
|
-
pattern?: string | undefined;
|
|
10527
|
-
roles?: string[] | undefined;
|
|
10528
|
-
exemptRoles?: string[] | undefined;
|
|
10529
|
-
} | undefined;
|
|
10530
|
-
readonly auditTrail?: boolean | undefined;
|
|
10531
|
-
readonly cached?: {
|
|
10532
|
-
enabled: boolean;
|
|
10533
|
-
ttl: number;
|
|
10534
|
-
invalidateOn: string[];
|
|
10535
|
-
} | undefined;
|
|
10536
|
-
readonly dataQuality?: {
|
|
10537
|
-
uniqueness: boolean;
|
|
10538
|
-
completeness: number;
|
|
10539
|
-
accuracy?: {
|
|
10540
|
-
source: string;
|
|
10541
|
-
threshold: number;
|
|
10542
|
-
} | undefined;
|
|
10543
|
-
} | undefined;
|
|
8350
|
+
readonly trackHistory?: boolean | undefined;
|
|
10544
8351
|
readonly visibleWhen?: {
|
|
10545
8352
|
dialect: "cel" | "js" | "cron" | "template";
|
|
10546
8353
|
source?: string | undefined;
|
|
@@ -10579,7 +8386,6 @@ declare const SysShareLink: Omit<{
|
|
|
10579
8386
|
} | undefined;
|
|
10580
8387
|
readonly sortable?: boolean | undefined;
|
|
10581
8388
|
readonly inlineHelpText?: string | undefined;
|
|
10582
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
10583
8389
|
readonly caseSensitive?: boolean | undefined;
|
|
10584
8390
|
readonly autonumberFormat?: string | undefined;
|
|
10585
8391
|
readonly index?: boolean | undefined;
|
|
@@ -10601,7 +8407,6 @@ declare const SysShareLink: Omit<{
|
|
|
10601
8407
|
readonly required?: boolean | undefined;
|
|
10602
8408
|
readonly multiple?: boolean | undefined;
|
|
10603
8409
|
readonly dependencies?: string[] | undefined;
|
|
10604
|
-
readonly theme?: string | undefined;
|
|
10605
8410
|
readonly externalId?: boolean | undefined;
|
|
10606
8411
|
readonly defaultValue?: unknown;
|
|
10607
8412
|
readonly group?: string | undefined;
|
|
@@ -10609,23 +8414,7 @@ declare const SysShareLink: Omit<{
|
|
|
10609
8414
|
readonly system?: boolean | undefined;
|
|
10610
8415
|
readonly min?: number | undefined;
|
|
10611
8416
|
readonly max?: number | undefined;
|
|
10612
|
-
readonly
|
|
10613
|
-
enabled: boolean;
|
|
10614
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
10615
|
-
keyManagement: {
|
|
10616
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
10617
|
-
keyId?: string | undefined;
|
|
10618
|
-
rotationPolicy?: {
|
|
10619
|
-
enabled: boolean;
|
|
10620
|
-
frequencyDays: number;
|
|
10621
|
-
retainOldVersions: number;
|
|
10622
|
-
autoRotate: boolean;
|
|
10623
|
-
} | undefined;
|
|
10624
|
-
};
|
|
10625
|
-
scope: "record" | "field" | "table" | "database";
|
|
10626
|
-
deterministicEncryption: boolean;
|
|
10627
|
-
searchableEncryption: boolean;
|
|
10628
|
-
} | undefined;
|
|
8417
|
+
readonly dimensions?: number | undefined;
|
|
10629
8418
|
readonly columnName?: string | undefined;
|
|
10630
8419
|
readonly searchable?: boolean | undefined;
|
|
10631
8420
|
readonly unique?: boolean | undefined;
|
|
@@ -10634,7 +8423,6 @@ declare const SysShareLink: Omit<{
|
|
|
10634
8423
|
readonly scale?: number | undefined;
|
|
10635
8424
|
reference: string;
|
|
10636
8425
|
readonly referenceFilters?: string[] | undefined;
|
|
10637
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
10638
8426
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
10639
8427
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
10640
8428
|
readonly inlineTitle?: string | undefined;
|
|
@@ -10659,22 +8447,8 @@ declare const SysShareLink: Omit<{
|
|
|
10659
8447
|
relationshipField?: string | undefined;
|
|
10660
8448
|
} | undefined;
|
|
10661
8449
|
readonly language?: string | undefined;
|
|
10662
|
-
readonly lineNumbers?: boolean | undefined;
|
|
10663
8450
|
readonly maxRating?: number | undefined;
|
|
10664
|
-
readonly allowHalf?: boolean | undefined;
|
|
10665
|
-
readonly displayMap?: boolean | undefined;
|
|
10666
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
10667
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
10668
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
10669
|
-
readonly allowAlpha?: boolean | undefined;
|
|
10670
|
-
readonly presetColors?: string[] | undefined;
|
|
10671
8451
|
readonly step?: number | undefined;
|
|
10672
|
-
readonly showValue?: boolean | undefined;
|
|
10673
|
-
readonly marks?: Record<string, string> | undefined;
|
|
10674
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
10675
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
10676
|
-
readonly displayValue?: boolean | undefined;
|
|
10677
|
-
readonly allowScanning?: boolean | undefined;
|
|
10678
8452
|
readonly currencyConfig?: {
|
|
10679
8453
|
precision: number;
|
|
10680
8454
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -10728,29 +8502,7 @@ declare const SysShareLink: Omit<{
|
|
|
10728
8502
|
} | undefined;
|
|
10729
8503
|
maxVersions?: number | undefined;
|
|
10730
8504
|
} | undefined;
|
|
10731
|
-
readonly
|
|
10732
|
-
field: string;
|
|
10733
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
10734
|
-
preserveFormat: boolean;
|
|
10735
|
-
preserveLength: boolean;
|
|
10736
|
-
pattern?: string | undefined;
|
|
10737
|
-
roles?: string[] | undefined;
|
|
10738
|
-
exemptRoles?: string[] | undefined;
|
|
10739
|
-
} | undefined;
|
|
10740
|
-
readonly auditTrail?: boolean | undefined;
|
|
10741
|
-
readonly cached?: {
|
|
10742
|
-
enabled: boolean;
|
|
10743
|
-
ttl: number;
|
|
10744
|
-
invalidateOn: string[];
|
|
10745
|
-
} | undefined;
|
|
10746
|
-
readonly dataQuality?: {
|
|
10747
|
-
uniqueness: boolean;
|
|
10748
|
-
completeness: number;
|
|
10749
|
-
accuracy?: {
|
|
10750
|
-
source: string;
|
|
10751
|
-
threshold: number;
|
|
10752
|
-
} | undefined;
|
|
10753
|
-
} | undefined;
|
|
8505
|
+
readonly trackHistory?: boolean | undefined;
|
|
10754
8506
|
readonly visibleWhen?: {
|
|
10755
8507
|
dialect: "cel" | "js" | "cron" | "template";
|
|
10756
8508
|
source?: string | undefined;
|
|
@@ -10789,7 +8541,6 @@ declare const SysShareLink: Omit<{
|
|
|
10789
8541
|
} | undefined;
|
|
10790
8542
|
readonly sortable?: boolean | undefined;
|
|
10791
8543
|
readonly inlineHelpText?: string | undefined;
|
|
10792
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
10793
8544
|
readonly caseSensitive?: boolean | undefined;
|
|
10794
8545
|
readonly autonumberFormat?: string | undefined;
|
|
10795
8546
|
readonly index?: boolean | undefined;
|
|
@@ -10811,7 +8562,6 @@ declare const SysShareLink: Omit<{
|
|
|
10811
8562
|
readonly required?: boolean | undefined;
|
|
10812
8563
|
readonly multiple?: boolean | undefined;
|
|
10813
8564
|
readonly dependencies?: string[] | undefined;
|
|
10814
|
-
readonly theme?: string | undefined;
|
|
10815
8565
|
readonly externalId?: boolean | undefined;
|
|
10816
8566
|
readonly defaultValue?: unknown;
|
|
10817
8567
|
readonly group?: string | undefined;
|
|
@@ -10819,23 +8569,7 @@ declare const SysShareLink: Omit<{
|
|
|
10819
8569
|
readonly system?: boolean | undefined;
|
|
10820
8570
|
readonly min?: number | undefined;
|
|
10821
8571
|
readonly max?: number | undefined;
|
|
10822
|
-
readonly
|
|
10823
|
-
enabled: boolean;
|
|
10824
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
10825
|
-
keyManagement: {
|
|
10826
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
10827
|
-
keyId?: string | undefined;
|
|
10828
|
-
rotationPolicy?: {
|
|
10829
|
-
enabled: boolean;
|
|
10830
|
-
frequencyDays: number;
|
|
10831
|
-
retainOldVersions: number;
|
|
10832
|
-
autoRotate: boolean;
|
|
10833
|
-
} | undefined;
|
|
10834
|
-
};
|
|
10835
|
-
scope: "record" | "field" | "table" | "database";
|
|
10836
|
-
deterministicEncryption: boolean;
|
|
10837
|
-
searchableEncryption: boolean;
|
|
10838
|
-
} | undefined;
|
|
8572
|
+
readonly dimensions?: number | undefined;
|
|
10839
8573
|
readonly columnName?: string | undefined;
|
|
10840
8574
|
readonly searchable?: boolean | undefined;
|
|
10841
8575
|
readonly unique?: boolean | undefined;
|
|
@@ -10844,7 +8578,6 @@ declare const SysShareLink: Omit<{
|
|
|
10844
8578
|
readonly scale?: number | undefined;
|
|
10845
8579
|
readonly reference?: string | undefined;
|
|
10846
8580
|
readonly referenceFilters?: string[] | undefined;
|
|
10847
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
10848
8581
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
10849
8582
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
10850
8583
|
readonly inlineTitle?: string | undefined;
|
|
@@ -10869,22 +8602,8 @@ declare const SysShareLink: Omit<{
|
|
|
10869
8602
|
relationshipField?: string | undefined;
|
|
10870
8603
|
} | undefined;
|
|
10871
8604
|
readonly language?: string | undefined;
|
|
10872
|
-
readonly lineNumbers?: boolean | undefined;
|
|
10873
8605
|
readonly maxRating?: number | undefined;
|
|
10874
|
-
readonly allowHalf?: boolean | undefined;
|
|
10875
|
-
readonly displayMap?: boolean | undefined;
|
|
10876
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
10877
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
10878
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
10879
|
-
readonly allowAlpha?: boolean | undefined;
|
|
10880
|
-
readonly presetColors?: string[] | undefined;
|
|
10881
8606
|
readonly step?: number | undefined;
|
|
10882
|
-
readonly showValue?: boolean | undefined;
|
|
10883
|
-
readonly marks?: Record<string, string> | undefined;
|
|
10884
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
10885
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
10886
|
-
readonly displayValue?: boolean | undefined;
|
|
10887
|
-
readonly allowScanning?: boolean | undefined;
|
|
10888
8607
|
readonly currencyConfig?: {
|
|
10889
8608
|
precision: number;
|
|
10890
8609
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -10938,29 +8657,7 @@ declare const SysShareLink: Omit<{
|
|
|
10938
8657
|
} | undefined;
|
|
10939
8658
|
maxVersions?: number | undefined;
|
|
10940
8659
|
} | undefined;
|
|
10941
|
-
readonly
|
|
10942
|
-
field: string;
|
|
10943
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
10944
|
-
preserveFormat: boolean;
|
|
10945
|
-
preserveLength: boolean;
|
|
10946
|
-
pattern?: string | undefined;
|
|
10947
|
-
roles?: string[] | undefined;
|
|
10948
|
-
exemptRoles?: string[] | undefined;
|
|
10949
|
-
} | undefined;
|
|
10950
|
-
readonly auditTrail?: boolean | undefined;
|
|
10951
|
-
readonly cached?: {
|
|
10952
|
-
enabled: boolean;
|
|
10953
|
-
ttl: number;
|
|
10954
|
-
invalidateOn: string[];
|
|
10955
|
-
} | undefined;
|
|
10956
|
-
readonly dataQuality?: {
|
|
10957
|
-
uniqueness: boolean;
|
|
10958
|
-
completeness: number;
|
|
10959
|
-
accuracy?: {
|
|
10960
|
-
source: string;
|
|
10961
|
-
threshold: number;
|
|
10962
|
-
} | undefined;
|
|
10963
|
-
} | undefined;
|
|
8660
|
+
readonly trackHistory?: boolean | undefined;
|
|
10964
8661
|
readonly visibleWhen?: {
|
|
10965
8662
|
dialect: "cel" | "js" | "cron" | "template";
|
|
10966
8663
|
source?: string | undefined;
|
|
@@ -10999,7 +8696,6 @@ declare const SysShareLink: Omit<{
|
|
|
10999
8696
|
} | undefined;
|
|
11000
8697
|
readonly sortable?: boolean | undefined;
|
|
11001
8698
|
readonly inlineHelpText?: string | undefined;
|
|
11002
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
11003
8699
|
readonly caseSensitive?: boolean | undefined;
|
|
11004
8700
|
readonly autonumberFormat?: string | undefined;
|
|
11005
8701
|
readonly index?: boolean | undefined;
|
|
@@ -11021,7 +8717,6 @@ declare const SysShareLink: Omit<{
|
|
|
11021
8717
|
readonly required?: boolean | undefined;
|
|
11022
8718
|
readonly multiple?: boolean | undefined;
|
|
11023
8719
|
readonly dependencies?: string[] | undefined;
|
|
11024
|
-
readonly theme?: string | undefined;
|
|
11025
8720
|
readonly externalId?: boolean | undefined;
|
|
11026
8721
|
readonly defaultValue?: unknown;
|
|
11027
8722
|
readonly group?: string | undefined;
|
|
@@ -11029,23 +8724,7 @@ declare const SysShareLink: Omit<{
|
|
|
11029
8724
|
readonly system?: boolean | undefined;
|
|
11030
8725
|
readonly min?: number | undefined;
|
|
11031
8726
|
readonly max?: number | undefined;
|
|
11032
|
-
readonly
|
|
11033
|
-
enabled: boolean;
|
|
11034
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
11035
|
-
keyManagement: {
|
|
11036
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
11037
|
-
keyId?: string | undefined;
|
|
11038
|
-
rotationPolicy?: {
|
|
11039
|
-
enabled: boolean;
|
|
11040
|
-
frequencyDays: number;
|
|
11041
|
-
retainOldVersions: number;
|
|
11042
|
-
autoRotate: boolean;
|
|
11043
|
-
} | undefined;
|
|
11044
|
-
};
|
|
11045
|
-
scope: "record" | "field" | "table" | "database";
|
|
11046
|
-
deterministicEncryption: boolean;
|
|
11047
|
-
searchableEncryption: boolean;
|
|
11048
|
-
} | undefined;
|
|
8727
|
+
readonly dimensions?: number | undefined;
|
|
11049
8728
|
readonly columnName?: string | undefined;
|
|
11050
8729
|
readonly searchable?: boolean | undefined;
|
|
11051
8730
|
readonly unique?: boolean | undefined;
|
|
@@ -11054,7 +8733,6 @@ declare const SysShareLink: Omit<{
|
|
|
11054
8733
|
readonly scale?: number | undefined;
|
|
11055
8734
|
readonly reference?: string | undefined;
|
|
11056
8735
|
readonly referenceFilters?: string[] | undefined;
|
|
11057
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
11058
8736
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
11059
8737
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
11060
8738
|
readonly inlineTitle?: string | undefined;
|
|
@@ -11079,22 +8757,8 @@ declare const SysShareLink: Omit<{
|
|
|
11079
8757
|
relationshipField?: string | undefined;
|
|
11080
8758
|
} | undefined;
|
|
11081
8759
|
readonly language?: string | undefined;
|
|
11082
|
-
readonly lineNumbers?: boolean | undefined;
|
|
11083
8760
|
readonly maxRating?: number | undefined;
|
|
11084
|
-
readonly allowHalf?: boolean | undefined;
|
|
11085
|
-
readonly displayMap?: boolean | undefined;
|
|
11086
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
11087
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
11088
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
11089
|
-
readonly allowAlpha?: boolean | undefined;
|
|
11090
|
-
readonly presetColors?: string[] | undefined;
|
|
11091
8761
|
readonly step?: number | undefined;
|
|
11092
|
-
readonly showValue?: boolean | undefined;
|
|
11093
|
-
readonly marks?: Record<string, string> | undefined;
|
|
11094
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
11095
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
11096
|
-
readonly displayValue?: boolean | undefined;
|
|
11097
|
-
readonly allowScanning?: boolean | undefined;
|
|
11098
8762
|
readonly currencyConfig?: {
|
|
11099
8763
|
precision: number;
|
|
11100
8764
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -11148,29 +8812,7 @@ declare const SysShareLink: Omit<{
|
|
|
11148
8812
|
} | undefined;
|
|
11149
8813
|
maxVersions?: number | undefined;
|
|
11150
8814
|
} | undefined;
|
|
11151
|
-
readonly
|
|
11152
|
-
field: string;
|
|
11153
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
11154
|
-
preserveFormat: boolean;
|
|
11155
|
-
preserveLength: boolean;
|
|
11156
|
-
pattern?: string | undefined;
|
|
11157
|
-
roles?: string[] | undefined;
|
|
11158
|
-
exemptRoles?: string[] | undefined;
|
|
11159
|
-
} | undefined;
|
|
11160
|
-
readonly auditTrail?: boolean | undefined;
|
|
11161
|
-
readonly cached?: {
|
|
11162
|
-
enabled: boolean;
|
|
11163
|
-
ttl: number;
|
|
11164
|
-
invalidateOn: string[];
|
|
11165
|
-
} | undefined;
|
|
11166
|
-
readonly dataQuality?: {
|
|
11167
|
-
uniqueness: boolean;
|
|
11168
|
-
completeness: number;
|
|
11169
|
-
accuracy?: {
|
|
11170
|
-
source: string;
|
|
11171
|
-
threshold: number;
|
|
11172
|
-
} | undefined;
|
|
11173
|
-
} | undefined;
|
|
8815
|
+
readonly trackHistory?: boolean | undefined;
|
|
11174
8816
|
readonly visibleWhen?: {
|
|
11175
8817
|
dialect: "cel" | "js" | "cron" | "template";
|
|
11176
8818
|
source?: string | undefined;
|
|
@@ -11209,7 +8851,6 @@ declare const SysShareLink: Omit<{
|
|
|
11209
8851
|
} | undefined;
|
|
11210
8852
|
readonly sortable?: boolean | undefined;
|
|
11211
8853
|
readonly inlineHelpText?: string | undefined;
|
|
11212
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
11213
8854
|
readonly caseSensitive?: boolean | undefined;
|
|
11214
8855
|
readonly autonumberFormat?: string | undefined;
|
|
11215
8856
|
readonly index?: boolean | undefined;
|
|
@@ -11231,7 +8872,6 @@ declare const SysShareLink: Omit<{
|
|
|
11231
8872
|
readonly required?: boolean | undefined;
|
|
11232
8873
|
readonly multiple?: boolean | undefined;
|
|
11233
8874
|
readonly dependencies?: string[] | undefined;
|
|
11234
|
-
readonly theme?: string | undefined;
|
|
11235
8875
|
readonly externalId?: boolean | undefined;
|
|
11236
8876
|
readonly defaultValue?: unknown;
|
|
11237
8877
|
readonly group?: string | undefined;
|
|
@@ -11239,23 +8879,7 @@ declare const SysShareLink: Omit<{
|
|
|
11239
8879
|
readonly system?: boolean | undefined;
|
|
11240
8880
|
readonly min?: number | undefined;
|
|
11241
8881
|
readonly max?: number | undefined;
|
|
11242
|
-
readonly
|
|
11243
|
-
enabled: boolean;
|
|
11244
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
11245
|
-
keyManagement: {
|
|
11246
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
11247
|
-
keyId?: string | undefined;
|
|
11248
|
-
rotationPolicy?: {
|
|
11249
|
-
enabled: boolean;
|
|
11250
|
-
frequencyDays: number;
|
|
11251
|
-
retainOldVersions: number;
|
|
11252
|
-
autoRotate: boolean;
|
|
11253
|
-
} | undefined;
|
|
11254
|
-
};
|
|
11255
|
-
scope: "record" | "field" | "table" | "database";
|
|
11256
|
-
deterministicEncryption: boolean;
|
|
11257
|
-
searchableEncryption: boolean;
|
|
11258
|
-
} | undefined;
|
|
8882
|
+
readonly dimensions?: number | undefined;
|
|
11259
8883
|
readonly columnName?: string | undefined;
|
|
11260
8884
|
readonly searchable?: boolean | undefined;
|
|
11261
8885
|
readonly unique?: boolean | undefined;
|
|
@@ -11264,7 +8888,6 @@ declare const SysShareLink: Omit<{
|
|
|
11264
8888
|
readonly scale?: number | undefined;
|
|
11265
8889
|
readonly reference?: string | undefined;
|
|
11266
8890
|
readonly referenceFilters?: string[] | undefined;
|
|
11267
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
11268
8891
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
11269
8892
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
11270
8893
|
readonly inlineTitle?: string | undefined;
|
|
@@ -11289,22 +8912,8 @@ declare const SysShareLink: Omit<{
|
|
|
11289
8912
|
relationshipField?: string | undefined;
|
|
11290
8913
|
} | undefined;
|
|
11291
8914
|
readonly language?: string | undefined;
|
|
11292
|
-
readonly lineNumbers?: boolean | undefined;
|
|
11293
8915
|
readonly maxRating?: number | undefined;
|
|
11294
|
-
readonly allowHalf?: boolean | undefined;
|
|
11295
|
-
readonly displayMap?: boolean | undefined;
|
|
11296
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
11297
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
11298
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
11299
|
-
readonly allowAlpha?: boolean | undefined;
|
|
11300
|
-
readonly presetColors?: string[] | undefined;
|
|
11301
8916
|
readonly step?: number | undefined;
|
|
11302
|
-
readonly showValue?: boolean | undefined;
|
|
11303
|
-
readonly marks?: Record<string, string> | undefined;
|
|
11304
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
11305
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
11306
|
-
readonly displayValue?: boolean | undefined;
|
|
11307
|
-
readonly allowScanning?: boolean | undefined;
|
|
11308
8917
|
readonly currencyConfig?: {
|
|
11309
8918
|
precision: number;
|
|
11310
8919
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -11358,29 +8967,7 @@ declare const SysShareLink: Omit<{
|
|
|
11358
8967
|
} | undefined;
|
|
11359
8968
|
maxVersions?: number | undefined;
|
|
11360
8969
|
} | undefined;
|
|
11361
|
-
readonly
|
|
11362
|
-
field: string;
|
|
11363
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
11364
|
-
preserveFormat: boolean;
|
|
11365
|
-
preserveLength: boolean;
|
|
11366
|
-
pattern?: string | undefined;
|
|
11367
|
-
roles?: string[] | undefined;
|
|
11368
|
-
exemptRoles?: string[] | undefined;
|
|
11369
|
-
} | undefined;
|
|
11370
|
-
readonly auditTrail?: boolean | undefined;
|
|
11371
|
-
readonly cached?: {
|
|
11372
|
-
enabled: boolean;
|
|
11373
|
-
ttl: number;
|
|
11374
|
-
invalidateOn: string[];
|
|
11375
|
-
} | undefined;
|
|
11376
|
-
readonly dataQuality?: {
|
|
11377
|
-
uniqueness: boolean;
|
|
11378
|
-
completeness: number;
|
|
11379
|
-
accuracy?: {
|
|
11380
|
-
source: string;
|
|
11381
|
-
threshold: number;
|
|
11382
|
-
} | undefined;
|
|
11383
|
-
} | undefined;
|
|
8970
|
+
readonly trackHistory?: boolean | undefined;
|
|
11384
8971
|
readonly visibleWhen?: {
|
|
11385
8972
|
dialect: "cel" | "js" | "cron" | "template";
|
|
11386
8973
|
source?: string | undefined;
|
|
@@ -11419,7 +9006,6 @@ declare const SysShareLink: Omit<{
|
|
|
11419
9006
|
} | undefined;
|
|
11420
9007
|
readonly sortable?: boolean | undefined;
|
|
11421
9008
|
readonly inlineHelpText?: string | undefined;
|
|
11422
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
11423
9009
|
readonly caseSensitive?: boolean | undefined;
|
|
11424
9010
|
readonly autonumberFormat?: string | undefined;
|
|
11425
9011
|
readonly index?: boolean | undefined;
|