@objectstack/platform-objects 9.6.0 → 9.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/apps/index.d.mts +3 -3
- package/dist/apps/index.d.ts +3 -3
- package/dist/audit/index.d.mts +191 -7863
- package/dist/audit/index.d.ts +191 -7863
- package/dist/identity/index.d.mts +651 -12579
- package/dist/identity/index.d.ts +651 -12579
- package/dist/system/index.d.mts +56 -2184
- package/dist/system/index.d.ts +56 -2184
- package/package.json +3 -3
package/dist/system/index.d.mts
CHANGED
|
@@ -42,7 +42,6 @@ declare const SysSetting: Omit<{
|
|
|
42
42
|
multiple: boolean;
|
|
43
43
|
unique: boolean;
|
|
44
44
|
deleteBehavior: "set_null" | "cascade" | "restrict";
|
|
45
|
-
auditTrail: boolean;
|
|
46
45
|
hidden: boolean;
|
|
47
46
|
readonly: boolean;
|
|
48
47
|
sortable: boolean;
|
|
@@ -68,7 +67,6 @@ declare const SysSetting: Omit<{
|
|
|
68
67
|
}[] | undefined;
|
|
69
68
|
reference?: string | undefined;
|
|
70
69
|
referenceFilters?: string[] | undefined;
|
|
71
|
-
writeRequiresMasterRead?: boolean | undefined;
|
|
72
70
|
inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
73
71
|
inlineTitle?: string | undefined;
|
|
74
72
|
inlineColumns?: any[] | undefined;
|
|
@@ -100,23 +98,8 @@ declare const SysSetting: Omit<{
|
|
|
100
98
|
relationshipField?: string | undefined;
|
|
101
99
|
} | undefined;
|
|
102
100
|
language?: string | undefined;
|
|
103
|
-
theme?: string | undefined;
|
|
104
|
-
lineNumbers?: boolean | undefined;
|
|
105
101
|
maxRating?: number | undefined;
|
|
106
|
-
allowHalf?: boolean | undefined;
|
|
107
|
-
displayMap?: boolean | undefined;
|
|
108
|
-
allowGeocoding?: boolean | undefined;
|
|
109
|
-
addressFormat?: "us" | "uk" | "international" | undefined;
|
|
110
|
-
colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
111
|
-
allowAlpha?: boolean | undefined;
|
|
112
|
-
presetColors?: string[] | undefined;
|
|
113
102
|
step?: number | undefined;
|
|
114
|
-
showValue?: boolean | undefined;
|
|
115
|
-
marks?: Record<string, string> | undefined;
|
|
116
|
-
barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
117
|
-
qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
118
|
-
displayValue?: boolean | undefined;
|
|
119
|
-
allowScanning?: boolean | undefined;
|
|
120
103
|
currencyConfig?: {
|
|
121
104
|
precision: number;
|
|
122
105
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -170,46 +153,8 @@ declare const SysSetting: Omit<{
|
|
|
170
153
|
} | undefined;
|
|
171
154
|
maxVersions?: number | undefined;
|
|
172
155
|
} | undefined;
|
|
173
|
-
|
|
174
|
-
enabled: boolean;
|
|
175
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
176
|
-
keyManagement: {
|
|
177
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
178
|
-
keyId?: string | undefined;
|
|
179
|
-
rotationPolicy?: {
|
|
180
|
-
enabled: boolean;
|
|
181
|
-
frequencyDays: number;
|
|
182
|
-
retainOldVersions: number;
|
|
183
|
-
autoRotate: boolean;
|
|
184
|
-
} | undefined;
|
|
185
|
-
};
|
|
186
|
-
scope: "record" | "field" | "table" | "database";
|
|
187
|
-
deterministicEncryption: boolean;
|
|
188
|
-
searchableEncryption: boolean;
|
|
189
|
-
} | undefined;
|
|
190
|
-
maskingRule?: {
|
|
191
|
-
field: string;
|
|
192
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
193
|
-
preserveFormat: boolean;
|
|
194
|
-
preserveLength: boolean;
|
|
195
|
-
pattern?: string | undefined;
|
|
196
|
-
roles?: string[] | undefined;
|
|
197
|
-
exemptRoles?: string[] | undefined;
|
|
198
|
-
} | undefined;
|
|
156
|
+
trackHistory?: boolean | undefined;
|
|
199
157
|
dependencies?: string[] | undefined;
|
|
200
|
-
cached?: {
|
|
201
|
-
enabled: boolean;
|
|
202
|
-
ttl: number;
|
|
203
|
-
invalidateOn: string[];
|
|
204
|
-
} | undefined;
|
|
205
|
-
dataQuality?: {
|
|
206
|
-
uniqueness: boolean;
|
|
207
|
-
completeness: number;
|
|
208
|
-
accuracy?: {
|
|
209
|
-
source: string;
|
|
210
|
-
threshold: number;
|
|
211
|
-
} | undefined;
|
|
212
|
-
} | undefined;
|
|
213
158
|
group?: string | undefined;
|
|
214
159
|
visibleWhen?: {
|
|
215
160
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -281,7 +226,6 @@ declare const SysSetting: Omit<{
|
|
|
281
226
|
} | undefined;
|
|
282
227
|
system?: boolean | undefined;
|
|
283
228
|
inlineHelpText?: string | undefined;
|
|
284
|
-
trackFeedHistory?: boolean | undefined;
|
|
285
229
|
caseSensitive?: boolean | undefined;
|
|
286
230
|
autonumberFormat?: string | undefined;
|
|
287
231
|
}>;
|
|
@@ -372,12 +316,13 @@ declare const SysSetting: Omit<{
|
|
|
372
316
|
key: string;
|
|
373
317
|
interval?: string | undefined;
|
|
374
318
|
} | undefined;
|
|
375
|
-
cdc?: {
|
|
376
|
-
enabled: boolean;
|
|
377
|
-
events: ("delete" | "update" | "insert")[];
|
|
378
|
-
destination: string;
|
|
379
|
-
} | undefined;
|
|
380
319
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
320
|
+
activityMilestones?: {
|
|
321
|
+
field: string;
|
|
322
|
+
value: string;
|
|
323
|
+
summary: string;
|
|
324
|
+
type?: string | undefined;
|
|
325
|
+
}[] | undefined;
|
|
381
326
|
displayNameField?: string | undefined;
|
|
382
327
|
recordName?: {
|
|
383
328
|
type: "text" | "autonumber";
|
|
@@ -688,7 +633,6 @@ declare const SysSetting: Omit<{
|
|
|
688
633
|
clone: boolean;
|
|
689
634
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
690
635
|
} | undefined;
|
|
691
|
-
recordTypes?: string[] | undefined;
|
|
692
636
|
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
693
637
|
publicSharing?: {
|
|
694
638
|
enabled: boolean;
|
|
@@ -934,7 +878,6 @@ declare const SysSetting: Omit<{
|
|
|
934
878
|
readonly required?: boolean | undefined;
|
|
935
879
|
readonly multiple?: boolean | undefined;
|
|
936
880
|
readonly dependencies?: string[] | undefined;
|
|
937
|
-
readonly theme?: string | undefined;
|
|
938
881
|
readonly externalId?: boolean | undefined;
|
|
939
882
|
readonly defaultValue?: unknown;
|
|
940
883
|
readonly group?: string | undefined;
|
|
@@ -942,23 +885,6 @@ declare const SysSetting: Omit<{
|
|
|
942
885
|
readonly system?: boolean | undefined;
|
|
943
886
|
readonly min?: number | undefined;
|
|
944
887
|
readonly max?: number | undefined;
|
|
945
|
-
readonly encryptionConfig?: {
|
|
946
|
-
enabled: boolean;
|
|
947
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
948
|
-
keyManagement: {
|
|
949
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
950
|
-
keyId?: string | undefined;
|
|
951
|
-
rotationPolicy?: {
|
|
952
|
-
enabled: boolean;
|
|
953
|
-
frequencyDays: number;
|
|
954
|
-
retainOldVersions: number;
|
|
955
|
-
autoRotate: boolean;
|
|
956
|
-
} | undefined;
|
|
957
|
-
};
|
|
958
|
-
scope: "record" | "field" | "table" | "database";
|
|
959
|
-
deterministicEncryption: boolean;
|
|
960
|
-
searchableEncryption: boolean;
|
|
961
|
-
} | undefined;
|
|
962
888
|
readonly columnName?: string | undefined;
|
|
963
889
|
readonly searchable?: boolean | undefined;
|
|
964
890
|
readonly unique?: boolean | undefined;
|
|
@@ -967,7 +893,6 @@ declare const SysSetting: Omit<{
|
|
|
967
893
|
readonly scale?: number | undefined;
|
|
968
894
|
readonly reference?: string | undefined;
|
|
969
895
|
readonly referenceFilters?: string[] | undefined;
|
|
970
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
971
896
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
972
897
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
973
898
|
readonly inlineTitle?: string | undefined;
|
|
@@ -992,22 +917,8 @@ declare const SysSetting: Omit<{
|
|
|
992
917
|
relationshipField?: string | undefined;
|
|
993
918
|
} | undefined;
|
|
994
919
|
readonly language?: string | undefined;
|
|
995
|
-
readonly lineNumbers?: boolean | undefined;
|
|
996
920
|
readonly maxRating?: number | undefined;
|
|
997
|
-
readonly allowHalf?: boolean | undefined;
|
|
998
|
-
readonly displayMap?: boolean | undefined;
|
|
999
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
1000
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
1001
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1002
|
-
readonly allowAlpha?: boolean | undefined;
|
|
1003
|
-
readonly presetColors?: string[] | undefined;
|
|
1004
921
|
readonly step?: number | undefined;
|
|
1005
|
-
readonly showValue?: boolean | undefined;
|
|
1006
|
-
readonly marks?: Record<string, string> | undefined;
|
|
1007
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1008
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1009
|
-
readonly displayValue?: boolean | undefined;
|
|
1010
|
-
readonly allowScanning?: boolean | undefined;
|
|
1011
922
|
readonly currencyConfig?: {
|
|
1012
923
|
precision: number;
|
|
1013
924
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -1061,29 +972,7 @@ declare const SysSetting: Omit<{
|
|
|
1061
972
|
} | undefined;
|
|
1062
973
|
maxVersions?: number | undefined;
|
|
1063
974
|
} | undefined;
|
|
1064
|
-
readonly
|
|
1065
|
-
field: string;
|
|
1066
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
1067
|
-
preserveFormat: boolean;
|
|
1068
|
-
preserveLength: boolean;
|
|
1069
|
-
pattern?: string | undefined;
|
|
1070
|
-
roles?: string[] | undefined;
|
|
1071
|
-
exemptRoles?: string[] | undefined;
|
|
1072
|
-
} | undefined;
|
|
1073
|
-
readonly auditTrail?: boolean | undefined;
|
|
1074
|
-
readonly cached?: {
|
|
1075
|
-
enabled: boolean;
|
|
1076
|
-
ttl: number;
|
|
1077
|
-
invalidateOn: string[];
|
|
1078
|
-
} | undefined;
|
|
1079
|
-
readonly dataQuality?: {
|
|
1080
|
-
uniqueness: boolean;
|
|
1081
|
-
completeness: number;
|
|
1082
|
-
accuracy?: {
|
|
1083
|
-
source: string;
|
|
1084
|
-
threshold: number;
|
|
1085
|
-
} | undefined;
|
|
1086
|
-
} | undefined;
|
|
975
|
+
readonly trackHistory?: boolean | undefined;
|
|
1087
976
|
readonly visibleWhen?: {
|
|
1088
977
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1089
978
|
source?: string | undefined;
|
|
@@ -1122,7 +1011,6 @@ declare const SysSetting: Omit<{
|
|
|
1122
1011
|
} | undefined;
|
|
1123
1012
|
readonly sortable?: boolean | undefined;
|
|
1124
1013
|
readonly inlineHelpText?: string | undefined;
|
|
1125
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
1126
1014
|
readonly caseSensitive?: boolean | undefined;
|
|
1127
1015
|
readonly autonumberFormat?: string | undefined;
|
|
1128
1016
|
readonly index?: boolean | undefined;
|
|
@@ -1144,7 +1032,6 @@ declare const SysSetting: Omit<{
|
|
|
1144
1032
|
readonly required?: boolean | undefined;
|
|
1145
1033
|
readonly multiple?: boolean | undefined;
|
|
1146
1034
|
readonly dependencies?: string[] | undefined;
|
|
1147
|
-
readonly theme?: string | undefined;
|
|
1148
1035
|
readonly externalId?: boolean | undefined;
|
|
1149
1036
|
readonly defaultValue?: unknown;
|
|
1150
1037
|
readonly group?: string | undefined;
|
|
@@ -1152,23 +1039,6 @@ declare const SysSetting: Omit<{
|
|
|
1152
1039
|
readonly system?: boolean | undefined;
|
|
1153
1040
|
readonly min?: number | undefined;
|
|
1154
1041
|
readonly max?: number | undefined;
|
|
1155
|
-
readonly encryptionConfig?: {
|
|
1156
|
-
enabled: boolean;
|
|
1157
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
1158
|
-
keyManagement: {
|
|
1159
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
1160
|
-
keyId?: string | undefined;
|
|
1161
|
-
rotationPolicy?: {
|
|
1162
|
-
enabled: boolean;
|
|
1163
|
-
frequencyDays: number;
|
|
1164
|
-
retainOldVersions: number;
|
|
1165
|
-
autoRotate: boolean;
|
|
1166
|
-
} | undefined;
|
|
1167
|
-
};
|
|
1168
|
-
scope: "record" | "field" | "table" | "database";
|
|
1169
|
-
deterministicEncryption: boolean;
|
|
1170
|
-
searchableEncryption: boolean;
|
|
1171
|
-
} | undefined;
|
|
1172
1042
|
readonly columnName?: string | undefined;
|
|
1173
1043
|
readonly searchable?: boolean | undefined;
|
|
1174
1044
|
readonly unique?: boolean | undefined;
|
|
@@ -1177,7 +1047,6 @@ declare const SysSetting: Omit<{
|
|
|
1177
1047
|
readonly scale?: number | undefined;
|
|
1178
1048
|
readonly reference?: string | undefined;
|
|
1179
1049
|
readonly referenceFilters?: string[] | undefined;
|
|
1180
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1181
1050
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1182
1051
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1183
1052
|
readonly inlineTitle?: string | undefined;
|
|
@@ -1202,22 +1071,8 @@ declare const SysSetting: Omit<{
|
|
|
1202
1071
|
relationshipField?: string | undefined;
|
|
1203
1072
|
} | undefined;
|
|
1204
1073
|
readonly language?: string | undefined;
|
|
1205
|
-
readonly lineNumbers?: boolean | undefined;
|
|
1206
1074
|
readonly maxRating?: number | undefined;
|
|
1207
|
-
readonly allowHalf?: boolean | undefined;
|
|
1208
|
-
readonly displayMap?: boolean | undefined;
|
|
1209
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
1210
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
1211
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1212
|
-
readonly allowAlpha?: boolean | undefined;
|
|
1213
|
-
readonly presetColors?: string[] | undefined;
|
|
1214
1075
|
readonly step?: number | undefined;
|
|
1215
|
-
readonly showValue?: boolean | undefined;
|
|
1216
|
-
readonly marks?: Record<string, string> | undefined;
|
|
1217
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1218
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1219
|
-
readonly displayValue?: boolean | undefined;
|
|
1220
|
-
readonly allowScanning?: boolean | undefined;
|
|
1221
1076
|
readonly currencyConfig?: {
|
|
1222
1077
|
precision: number;
|
|
1223
1078
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -1271,29 +1126,7 @@ declare const SysSetting: Omit<{
|
|
|
1271
1126
|
} | undefined;
|
|
1272
1127
|
maxVersions?: number | undefined;
|
|
1273
1128
|
} | undefined;
|
|
1274
|
-
readonly
|
|
1275
|
-
field: string;
|
|
1276
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
1277
|
-
preserveFormat: boolean;
|
|
1278
|
-
preserveLength: boolean;
|
|
1279
|
-
pattern?: string | undefined;
|
|
1280
|
-
roles?: string[] | undefined;
|
|
1281
|
-
exemptRoles?: string[] | undefined;
|
|
1282
|
-
} | undefined;
|
|
1283
|
-
readonly auditTrail?: boolean | undefined;
|
|
1284
|
-
readonly cached?: {
|
|
1285
|
-
enabled: boolean;
|
|
1286
|
-
ttl: number;
|
|
1287
|
-
invalidateOn: string[];
|
|
1288
|
-
} | undefined;
|
|
1289
|
-
readonly dataQuality?: {
|
|
1290
|
-
uniqueness: boolean;
|
|
1291
|
-
completeness: number;
|
|
1292
|
-
accuracy?: {
|
|
1293
|
-
source: string;
|
|
1294
|
-
threshold: number;
|
|
1295
|
-
} | undefined;
|
|
1296
|
-
} | undefined;
|
|
1129
|
+
readonly trackHistory?: boolean | undefined;
|
|
1297
1130
|
readonly visibleWhen?: {
|
|
1298
1131
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1299
1132
|
source?: string | undefined;
|
|
@@ -1332,7 +1165,6 @@ declare const SysSetting: Omit<{
|
|
|
1332
1165
|
} | undefined;
|
|
1333
1166
|
readonly sortable?: boolean | undefined;
|
|
1334
1167
|
readonly inlineHelpText?: string | undefined;
|
|
1335
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
1336
1168
|
readonly caseSensitive?: boolean | undefined;
|
|
1337
1169
|
readonly autonumberFormat?: string | undefined;
|
|
1338
1170
|
readonly index?: boolean | undefined;
|
|
@@ -1354,7 +1186,6 @@ declare const SysSetting: Omit<{
|
|
|
1354
1186
|
readonly required?: boolean | undefined;
|
|
1355
1187
|
readonly multiple?: boolean | undefined;
|
|
1356
1188
|
readonly dependencies?: string[] | undefined;
|
|
1357
|
-
readonly theme?: string | undefined;
|
|
1358
1189
|
readonly externalId?: boolean | undefined;
|
|
1359
1190
|
readonly defaultValue?: unknown;
|
|
1360
1191
|
readonly group?: string | undefined;
|
|
@@ -1362,23 +1193,6 @@ declare const SysSetting: Omit<{
|
|
|
1362
1193
|
readonly system?: boolean | undefined;
|
|
1363
1194
|
readonly min?: number | undefined;
|
|
1364
1195
|
readonly max?: number | undefined;
|
|
1365
|
-
readonly encryptionConfig?: {
|
|
1366
|
-
enabled: boolean;
|
|
1367
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
1368
|
-
keyManagement: {
|
|
1369
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
1370
|
-
keyId?: string | undefined;
|
|
1371
|
-
rotationPolicy?: {
|
|
1372
|
-
enabled: boolean;
|
|
1373
|
-
frequencyDays: number;
|
|
1374
|
-
retainOldVersions: number;
|
|
1375
|
-
autoRotate: boolean;
|
|
1376
|
-
} | undefined;
|
|
1377
|
-
};
|
|
1378
|
-
scope: "record" | "field" | "table" | "database";
|
|
1379
|
-
deterministicEncryption: boolean;
|
|
1380
|
-
searchableEncryption: boolean;
|
|
1381
|
-
} | undefined;
|
|
1382
1196
|
readonly columnName?: string | undefined;
|
|
1383
1197
|
readonly searchable?: boolean | undefined;
|
|
1384
1198
|
readonly unique?: boolean | undefined;
|
|
@@ -1387,7 +1201,6 @@ declare const SysSetting: Omit<{
|
|
|
1387
1201
|
readonly scale?: number | undefined;
|
|
1388
1202
|
readonly reference?: string | undefined;
|
|
1389
1203
|
readonly referenceFilters?: string[] | undefined;
|
|
1390
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1391
1204
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1392
1205
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1393
1206
|
readonly inlineTitle?: string | undefined;
|
|
@@ -1412,22 +1225,8 @@ declare const SysSetting: Omit<{
|
|
|
1412
1225
|
relationshipField?: string | undefined;
|
|
1413
1226
|
} | undefined;
|
|
1414
1227
|
readonly language?: string | undefined;
|
|
1415
|
-
readonly lineNumbers?: boolean | undefined;
|
|
1416
1228
|
readonly maxRating?: number | undefined;
|
|
1417
|
-
readonly allowHalf?: boolean | undefined;
|
|
1418
|
-
readonly displayMap?: boolean | undefined;
|
|
1419
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
1420
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
1421
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1422
|
-
readonly allowAlpha?: boolean | undefined;
|
|
1423
|
-
readonly presetColors?: string[] | undefined;
|
|
1424
1229
|
readonly step?: number | undefined;
|
|
1425
|
-
readonly showValue?: boolean | undefined;
|
|
1426
|
-
readonly marks?: Record<string, string> | undefined;
|
|
1427
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1428
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1429
|
-
readonly displayValue?: boolean | undefined;
|
|
1430
|
-
readonly allowScanning?: boolean | undefined;
|
|
1431
1230
|
readonly currencyConfig?: {
|
|
1432
1231
|
precision: number;
|
|
1433
1232
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -1481,29 +1280,7 @@ declare const SysSetting: Omit<{
|
|
|
1481
1280
|
} | undefined;
|
|
1482
1281
|
maxVersions?: number | undefined;
|
|
1483
1282
|
} | undefined;
|
|
1484
|
-
readonly
|
|
1485
|
-
field: string;
|
|
1486
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
1487
|
-
preserveFormat: boolean;
|
|
1488
|
-
preserveLength: boolean;
|
|
1489
|
-
pattern?: string | undefined;
|
|
1490
|
-
roles?: string[] | undefined;
|
|
1491
|
-
exemptRoles?: string[] | undefined;
|
|
1492
|
-
} | undefined;
|
|
1493
|
-
readonly auditTrail?: boolean | undefined;
|
|
1494
|
-
readonly cached?: {
|
|
1495
|
-
enabled: boolean;
|
|
1496
|
-
ttl: number;
|
|
1497
|
-
invalidateOn: string[];
|
|
1498
|
-
} | undefined;
|
|
1499
|
-
readonly dataQuality?: {
|
|
1500
|
-
uniqueness: boolean;
|
|
1501
|
-
completeness: number;
|
|
1502
|
-
accuracy?: {
|
|
1503
|
-
source: string;
|
|
1504
|
-
threshold: number;
|
|
1505
|
-
} | undefined;
|
|
1506
|
-
} | undefined;
|
|
1283
|
+
readonly trackHistory?: boolean | undefined;
|
|
1507
1284
|
readonly visibleWhen?: {
|
|
1508
1285
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1509
1286
|
source?: string | undefined;
|
|
@@ -1542,7 +1319,6 @@ declare const SysSetting: Omit<{
|
|
|
1542
1319
|
} | undefined;
|
|
1543
1320
|
readonly sortable?: boolean | undefined;
|
|
1544
1321
|
readonly inlineHelpText?: string | undefined;
|
|
1545
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
1546
1322
|
readonly caseSensitive?: boolean | undefined;
|
|
1547
1323
|
readonly autonumberFormat?: string | undefined;
|
|
1548
1324
|
readonly index?: boolean | undefined;
|
|
@@ -1564,7 +1340,6 @@ declare const SysSetting: Omit<{
|
|
|
1564
1340
|
readonly required?: boolean | undefined;
|
|
1565
1341
|
readonly multiple?: boolean | undefined;
|
|
1566
1342
|
readonly dependencies?: string[] | undefined;
|
|
1567
|
-
readonly theme?: string | undefined;
|
|
1568
1343
|
readonly externalId?: boolean | undefined;
|
|
1569
1344
|
readonly defaultValue?: unknown;
|
|
1570
1345
|
readonly group?: string | undefined;
|
|
@@ -1572,23 +1347,6 @@ declare const SysSetting: Omit<{
|
|
|
1572
1347
|
readonly system?: boolean | undefined;
|
|
1573
1348
|
readonly min?: number | undefined;
|
|
1574
1349
|
readonly max?: number | undefined;
|
|
1575
|
-
readonly encryptionConfig?: {
|
|
1576
|
-
enabled: boolean;
|
|
1577
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
1578
|
-
keyManagement: {
|
|
1579
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
1580
|
-
keyId?: string | undefined;
|
|
1581
|
-
rotationPolicy?: {
|
|
1582
|
-
enabled: boolean;
|
|
1583
|
-
frequencyDays: number;
|
|
1584
|
-
retainOldVersions: number;
|
|
1585
|
-
autoRotate: boolean;
|
|
1586
|
-
} | undefined;
|
|
1587
|
-
};
|
|
1588
|
-
scope: "record" | "field" | "table" | "database";
|
|
1589
|
-
deterministicEncryption: boolean;
|
|
1590
|
-
searchableEncryption: boolean;
|
|
1591
|
-
} | undefined;
|
|
1592
1350
|
readonly columnName?: string | undefined;
|
|
1593
1351
|
readonly searchable?: boolean | undefined;
|
|
1594
1352
|
readonly unique?: boolean | undefined;
|
|
@@ -1597,7 +1355,6 @@ declare const SysSetting: Omit<{
|
|
|
1597
1355
|
readonly scale?: number | undefined;
|
|
1598
1356
|
readonly reference?: string | undefined;
|
|
1599
1357
|
readonly referenceFilters?: string[] | undefined;
|
|
1600
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1601
1358
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1602
1359
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1603
1360
|
readonly inlineTitle?: string | undefined;
|
|
@@ -1622,22 +1379,8 @@ declare const SysSetting: Omit<{
|
|
|
1622
1379
|
relationshipField?: string | undefined;
|
|
1623
1380
|
} | undefined;
|
|
1624
1381
|
readonly language?: string | undefined;
|
|
1625
|
-
readonly lineNumbers?: boolean | undefined;
|
|
1626
1382
|
readonly maxRating?: number | undefined;
|
|
1627
|
-
readonly allowHalf?: boolean | undefined;
|
|
1628
|
-
readonly displayMap?: boolean | undefined;
|
|
1629
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
1630
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
1631
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1632
|
-
readonly allowAlpha?: boolean | undefined;
|
|
1633
|
-
readonly presetColors?: string[] | undefined;
|
|
1634
1383
|
readonly step?: number | undefined;
|
|
1635
|
-
readonly showValue?: boolean | undefined;
|
|
1636
|
-
readonly marks?: Record<string, string> | undefined;
|
|
1637
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1638
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1639
|
-
readonly displayValue?: boolean | undefined;
|
|
1640
|
-
readonly allowScanning?: boolean | undefined;
|
|
1641
1384
|
readonly currencyConfig?: {
|
|
1642
1385
|
precision: number;
|
|
1643
1386
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -1691,29 +1434,7 @@ declare const SysSetting: Omit<{
|
|
|
1691
1434
|
} | undefined;
|
|
1692
1435
|
maxVersions?: number | undefined;
|
|
1693
1436
|
} | undefined;
|
|
1694
|
-
readonly
|
|
1695
|
-
field: string;
|
|
1696
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
1697
|
-
preserveFormat: boolean;
|
|
1698
|
-
preserveLength: boolean;
|
|
1699
|
-
pattern?: string | undefined;
|
|
1700
|
-
roles?: string[] | undefined;
|
|
1701
|
-
exemptRoles?: string[] | undefined;
|
|
1702
|
-
} | undefined;
|
|
1703
|
-
readonly auditTrail?: boolean | undefined;
|
|
1704
|
-
readonly cached?: {
|
|
1705
|
-
enabled: boolean;
|
|
1706
|
-
ttl: number;
|
|
1707
|
-
invalidateOn: string[];
|
|
1708
|
-
} | undefined;
|
|
1709
|
-
readonly dataQuality?: {
|
|
1710
|
-
uniqueness: boolean;
|
|
1711
|
-
completeness: number;
|
|
1712
|
-
accuracy?: {
|
|
1713
|
-
source: string;
|
|
1714
|
-
threshold: number;
|
|
1715
|
-
} | undefined;
|
|
1716
|
-
} | undefined;
|
|
1437
|
+
readonly trackHistory?: boolean | undefined;
|
|
1717
1438
|
readonly visibleWhen?: {
|
|
1718
1439
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1719
1440
|
source?: string | undefined;
|
|
@@ -1752,7 +1473,6 @@ declare const SysSetting: Omit<{
|
|
|
1752
1473
|
} | undefined;
|
|
1753
1474
|
readonly sortable?: boolean | undefined;
|
|
1754
1475
|
readonly inlineHelpText?: string | undefined;
|
|
1755
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
1756
1476
|
readonly caseSensitive?: boolean | undefined;
|
|
1757
1477
|
readonly autonumberFormat?: string | undefined;
|
|
1758
1478
|
readonly index?: boolean | undefined;
|
|
@@ -1774,7 +1494,6 @@ declare const SysSetting: Omit<{
|
|
|
1774
1494
|
readonly required?: boolean | undefined;
|
|
1775
1495
|
readonly multiple?: boolean | undefined;
|
|
1776
1496
|
readonly dependencies?: string[] | undefined;
|
|
1777
|
-
readonly theme?: string | undefined;
|
|
1778
1497
|
readonly externalId?: boolean | undefined;
|
|
1779
1498
|
readonly defaultValue?: unknown;
|
|
1780
1499
|
readonly group?: string | undefined;
|
|
@@ -1782,23 +1501,6 @@ declare const SysSetting: Omit<{
|
|
|
1782
1501
|
readonly system?: boolean | undefined;
|
|
1783
1502
|
readonly min?: number | undefined;
|
|
1784
1503
|
readonly max?: number | undefined;
|
|
1785
|
-
readonly encryptionConfig?: {
|
|
1786
|
-
enabled: boolean;
|
|
1787
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
1788
|
-
keyManagement: {
|
|
1789
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
1790
|
-
keyId?: string | undefined;
|
|
1791
|
-
rotationPolicy?: {
|
|
1792
|
-
enabled: boolean;
|
|
1793
|
-
frequencyDays: number;
|
|
1794
|
-
retainOldVersions: number;
|
|
1795
|
-
autoRotate: boolean;
|
|
1796
|
-
} | undefined;
|
|
1797
|
-
};
|
|
1798
|
-
scope: "record" | "field" | "table" | "database";
|
|
1799
|
-
deterministicEncryption: boolean;
|
|
1800
|
-
searchableEncryption: boolean;
|
|
1801
|
-
} | undefined;
|
|
1802
1504
|
readonly columnName?: string | undefined;
|
|
1803
1505
|
readonly searchable?: boolean | undefined;
|
|
1804
1506
|
readonly unique?: boolean | undefined;
|
|
@@ -1807,7 +1509,6 @@ declare const SysSetting: Omit<{
|
|
|
1807
1509
|
readonly scale?: number | undefined;
|
|
1808
1510
|
readonly reference?: string | undefined;
|
|
1809
1511
|
readonly referenceFilters?: string[] | undefined;
|
|
1810
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1811
1512
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1812
1513
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1813
1514
|
readonly inlineTitle?: string | undefined;
|
|
@@ -1832,22 +1533,8 @@ declare const SysSetting: Omit<{
|
|
|
1832
1533
|
relationshipField?: string | undefined;
|
|
1833
1534
|
} | undefined;
|
|
1834
1535
|
readonly language?: string | undefined;
|
|
1835
|
-
readonly lineNumbers?: boolean | undefined;
|
|
1836
1536
|
readonly maxRating?: number | undefined;
|
|
1837
|
-
readonly allowHalf?: boolean | undefined;
|
|
1838
|
-
readonly displayMap?: boolean | undefined;
|
|
1839
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
1840
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
1841
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1842
|
-
readonly allowAlpha?: boolean | undefined;
|
|
1843
|
-
readonly presetColors?: string[] | undefined;
|
|
1844
1537
|
readonly step?: number | undefined;
|
|
1845
|
-
readonly showValue?: boolean | undefined;
|
|
1846
|
-
readonly marks?: Record<string, string> | undefined;
|
|
1847
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1848
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1849
|
-
readonly displayValue?: boolean | undefined;
|
|
1850
|
-
readonly allowScanning?: boolean | undefined;
|
|
1851
1538
|
readonly currencyConfig?: {
|
|
1852
1539
|
precision: number;
|
|
1853
1540
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -1901,29 +1588,7 @@ declare const SysSetting: Omit<{
|
|
|
1901
1588
|
} | undefined;
|
|
1902
1589
|
maxVersions?: number | undefined;
|
|
1903
1590
|
} | undefined;
|
|
1904
|
-
readonly
|
|
1905
|
-
field: string;
|
|
1906
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
1907
|
-
preserveFormat: boolean;
|
|
1908
|
-
preserveLength: boolean;
|
|
1909
|
-
pattern?: string | undefined;
|
|
1910
|
-
roles?: string[] | undefined;
|
|
1911
|
-
exemptRoles?: string[] | undefined;
|
|
1912
|
-
} | undefined;
|
|
1913
|
-
readonly auditTrail?: boolean | undefined;
|
|
1914
|
-
readonly cached?: {
|
|
1915
|
-
enabled: boolean;
|
|
1916
|
-
ttl: number;
|
|
1917
|
-
invalidateOn: string[];
|
|
1918
|
-
} | undefined;
|
|
1919
|
-
readonly dataQuality?: {
|
|
1920
|
-
uniqueness: boolean;
|
|
1921
|
-
completeness: number;
|
|
1922
|
-
accuracy?: {
|
|
1923
|
-
source: string;
|
|
1924
|
-
threshold: number;
|
|
1925
|
-
} | undefined;
|
|
1926
|
-
} | undefined;
|
|
1591
|
+
readonly trackHistory?: boolean | undefined;
|
|
1927
1592
|
readonly visibleWhen?: {
|
|
1928
1593
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1929
1594
|
source?: string | undefined;
|
|
@@ -1962,7 +1627,6 @@ declare const SysSetting: Omit<{
|
|
|
1962
1627
|
} | undefined;
|
|
1963
1628
|
readonly sortable?: boolean | undefined;
|
|
1964
1629
|
readonly inlineHelpText?: string | undefined;
|
|
1965
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
1966
1630
|
readonly caseSensitive?: boolean | undefined;
|
|
1967
1631
|
readonly autonumberFormat?: string | undefined;
|
|
1968
1632
|
readonly index?: boolean | undefined;
|
|
@@ -1984,7 +1648,6 @@ declare const SysSetting: Omit<{
|
|
|
1984
1648
|
readonly required?: boolean | undefined;
|
|
1985
1649
|
readonly multiple?: boolean | undefined;
|
|
1986
1650
|
readonly dependencies?: string[] | undefined;
|
|
1987
|
-
readonly theme?: string | undefined;
|
|
1988
1651
|
readonly externalId?: boolean | undefined;
|
|
1989
1652
|
readonly defaultValue?: unknown;
|
|
1990
1653
|
readonly group?: string | undefined;
|
|
@@ -1992,23 +1655,6 @@ declare const SysSetting: Omit<{
|
|
|
1992
1655
|
readonly system?: boolean | undefined;
|
|
1993
1656
|
readonly min?: number | undefined;
|
|
1994
1657
|
readonly max?: number | undefined;
|
|
1995
|
-
readonly encryptionConfig?: {
|
|
1996
|
-
enabled: boolean;
|
|
1997
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
1998
|
-
keyManagement: {
|
|
1999
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
2000
|
-
keyId?: string | undefined;
|
|
2001
|
-
rotationPolicy?: {
|
|
2002
|
-
enabled: boolean;
|
|
2003
|
-
frequencyDays: number;
|
|
2004
|
-
retainOldVersions: number;
|
|
2005
|
-
autoRotate: boolean;
|
|
2006
|
-
} | undefined;
|
|
2007
|
-
};
|
|
2008
|
-
scope: "record" | "field" | "table" | "database";
|
|
2009
|
-
deterministicEncryption: boolean;
|
|
2010
|
-
searchableEncryption: boolean;
|
|
2011
|
-
} | undefined;
|
|
2012
1658
|
readonly columnName?: string | undefined;
|
|
2013
1659
|
readonly searchable?: boolean | undefined;
|
|
2014
1660
|
readonly unique?: boolean | undefined;
|
|
@@ -2017,7 +1663,6 @@ declare const SysSetting: Omit<{
|
|
|
2017
1663
|
readonly scale?: number | undefined;
|
|
2018
1664
|
readonly reference?: string | undefined;
|
|
2019
1665
|
readonly referenceFilters?: string[] | undefined;
|
|
2020
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2021
1666
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2022
1667
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2023
1668
|
readonly inlineTitle?: string | undefined;
|
|
@@ -2042,22 +1687,8 @@ declare const SysSetting: Omit<{
|
|
|
2042
1687
|
relationshipField?: string | undefined;
|
|
2043
1688
|
} | undefined;
|
|
2044
1689
|
readonly language?: string | undefined;
|
|
2045
|
-
readonly lineNumbers?: boolean | undefined;
|
|
2046
1690
|
readonly maxRating?: number | undefined;
|
|
2047
|
-
readonly allowHalf?: boolean | undefined;
|
|
2048
|
-
readonly displayMap?: boolean | undefined;
|
|
2049
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
2050
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
2051
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
2052
|
-
readonly allowAlpha?: boolean | undefined;
|
|
2053
|
-
readonly presetColors?: string[] | undefined;
|
|
2054
1691
|
readonly step?: number | undefined;
|
|
2055
|
-
readonly showValue?: boolean | undefined;
|
|
2056
|
-
readonly marks?: Record<string, string> | undefined;
|
|
2057
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
2058
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
2059
|
-
readonly displayValue?: boolean | undefined;
|
|
2060
|
-
readonly allowScanning?: boolean | undefined;
|
|
2061
1692
|
readonly currencyConfig?: {
|
|
2062
1693
|
precision: number;
|
|
2063
1694
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -2111,29 +1742,7 @@ declare const SysSetting: Omit<{
|
|
|
2111
1742
|
} | undefined;
|
|
2112
1743
|
maxVersions?: number | undefined;
|
|
2113
1744
|
} | undefined;
|
|
2114
|
-
readonly
|
|
2115
|
-
field: string;
|
|
2116
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
2117
|
-
preserveFormat: boolean;
|
|
2118
|
-
preserveLength: boolean;
|
|
2119
|
-
pattern?: string | undefined;
|
|
2120
|
-
roles?: string[] | undefined;
|
|
2121
|
-
exemptRoles?: string[] | undefined;
|
|
2122
|
-
} | undefined;
|
|
2123
|
-
readonly auditTrail?: boolean | undefined;
|
|
2124
|
-
readonly cached?: {
|
|
2125
|
-
enabled: boolean;
|
|
2126
|
-
ttl: number;
|
|
2127
|
-
invalidateOn: string[];
|
|
2128
|
-
} | undefined;
|
|
2129
|
-
readonly dataQuality?: {
|
|
2130
|
-
uniqueness: boolean;
|
|
2131
|
-
completeness: number;
|
|
2132
|
-
accuracy?: {
|
|
2133
|
-
source: string;
|
|
2134
|
-
threshold: number;
|
|
2135
|
-
} | undefined;
|
|
2136
|
-
} | undefined;
|
|
1745
|
+
readonly trackHistory?: boolean | undefined;
|
|
2137
1746
|
readonly visibleWhen?: {
|
|
2138
1747
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2139
1748
|
source?: string | undefined;
|
|
@@ -2172,7 +1781,6 @@ declare const SysSetting: Omit<{
|
|
|
2172
1781
|
} | undefined;
|
|
2173
1782
|
readonly sortable?: boolean | undefined;
|
|
2174
1783
|
readonly inlineHelpText?: string | undefined;
|
|
2175
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
2176
1784
|
readonly caseSensitive?: boolean | undefined;
|
|
2177
1785
|
readonly autonumberFormat?: string | undefined;
|
|
2178
1786
|
readonly index?: boolean | undefined;
|
|
@@ -2194,7 +1802,6 @@ declare const SysSetting: Omit<{
|
|
|
2194
1802
|
readonly required?: boolean | undefined;
|
|
2195
1803
|
readonly multiple?: boolean | undefined;
|
|
2196
1804
|
readonly dependencies?: string[] | undefined;
|
|
2197
|
-
readonly theme?: string | undefined;
|
|
2198
1805
|
readonly externalId?: boolean | undefined;
|
|
2199
1806
|
readonly defaultValue?: unknown;
|
|
2200
1807
|
readonly group?: string | undefined;
|
|
@@ -2202,23 +1809,6 @@ declare const SysSetting: Omit<{
|
|
|
2202
1809
|
readonly system?: boolean | undefined;
|
|
2203
1810
|
readonly min?: number | undefined;
|
|
2204
1811
|
readonly max?: number | undefined;
|
|
2205
|
-
readonly encryptionConfig?: {
|
|
2206
|
-
enabled: boolean;
|
|
2207
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
2208
|
-
keyManagement: {
|
|
2209
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
2210
|
-
keyId?: string | undefined;
|
|
2211
|
-
rotationPolicy?: {
|
|
2212
|
-
enabled: boolean;
|
|
2213
|
-
frequencyDays: number;
|
|
2214
|
-
retainOldVersions: number;
|
|
2215
|
-
autoRotate: boolean;
|
|
2216
|
-
} | undefined;
|
|
2217
|
-
};
|
|
2218
|
-
scope: "record" | "field" | "table" | "database";
|
|
2219
|
-
deterministicEncryption: boolean;
|
|
2220
|
-
searchableEncryption: boolean;
|
|
2221
|
-
} | undefined;
|
|
2222
1812
|
readonly columnName?: string | undefined;
|
|
2223
1813
|
readonly searchable?: boolean | undefined;
|
|
2224
1814
|
readonly unique?: boolean | undefined;
|
|
@@ -2227,7 +1817,6 @@ declare const SysSetting: Omit<{
|
|
|
2227
1817
|
readonly scale?: number | undefined;
|
|
2228
1818
|
reference: string;
|
|
2229
1819
|
readonly referenceFilters?: string[] | undefined;
|
|
2230
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2231
1820
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2232
1821
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2233
1822
|
readonly inlineTitle?: string | undefined;
|
|
@@ -2252,22 +1841,8 @@ declare const SysSetting: Omit<{
|
|
|
2252
1841
|
relationshipField?: string | undefined;
|
|
2253
1842
|
} | undefined;
|
|
2254
1843
|
readonly language?: string | undefined;
|
|
2255
|
-
readonly lineNumbers?: boolean | undefined;
|
|
2256
1844
|
readonly maxRating?: number | undefined;
|
|
2257
|
-
readonly allowHalf?: boolean | undefined;
|
|
2258
|
-
readonly displayMap?: boolean | undefined;
|
|
2259
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
2260
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
2261
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
2262
|
-
readonly allowAlpha?: boolean | undefined;
|
|
2263
|
-
readonly presetColors?: string[] | undefined;
|
|
2264
1845
|
readonly step?: number | undefined;
|
|
2265
|
-
readonly showValue?: boolean | undefined;
|
|
2266
|
-
readonly marks?: Record<string, string> | undefined;
|
|
2267
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
2268
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
2269
|
-
readonly displayValue?: boolean | undefined;
|
|
2270
|
-
readonly allowScanning?: boolean | undefined;
|
|
2271
1846
|
readonly currencyConfig?: {
|
|
2272
1847
|
precision: number;
|
|
2273
1848
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -2321,29 +1896,7 @@ declare const SysSetting: Omit<{
|
|
|
2321
1896
|
} | undefined;
|
|
2322
1897
|
maxVersions?: number | undefined;
|
|
2323
1898
|
} | undefined;
|
|
2324
|
-
readonly
|
|
2325
|
-
field: string;
|
|
2326
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
2327
|
-
preserveFormat: boolean;
|
|
2328
|
-
preserveLength: boolean;
|
|
2329
|
-
pattern?: string | undefined;
|
|
2330
|
-
roles?: string[] | undefined;
|
|
2331
|
-
exemptRoles?: string[] | undefined;
|
|
2332
|
-
} | undefined;
|
|
2333
|
-
readonly auditTrail?: boolean | undefined;
|
|
2334
|
-
readonly cached?: {
|
|
2335
|
-
enabled: boolean;
|
|
2336
|
-
ttl: number;
|
|
2337
|
-
invalidateOn: string[];
|
|
2338
|
-
} | undefined;
|
|
2339
|
-
readonly dataQuality?: {
|
|
2340
|
-
uniqueness: boolean;
|
|
2341
|
-
completeness: number;
|
|
2342
|
-
accuracy?: {
|
|
2343
|
-
source: string;
|
|
2344
|
-
threshold: number;
|
|
2345
|
-
} | undefined;
|
|
2346
|
-
} | undefined;
|
|
1899
|
+
readonly trackHistory?: boolean | undefined;
|
|
2347
1900
|
readonly visibleWhen?: {
|
|
2348
1901
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2349
1902
|
source?: string | undefined;
|
|
@@ -2382,7 +1935,6 @@ declare const SysSetting: Omit<{
|
|
|
2382
1935
|
} | undefined;
|
|
2383
1936
|
readonly sortable?: boolean | undefined;
|
|
2384
1937
|
readonly inlineHelpText?: string | undefined;
|
|
2385
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
2386
1938
|
readonly caseSensitive?: boolean | undefined;
|
|
2387
1939
|
readonly autonumberFormat?: string | undefined;
|
|
2388
1940
|
readonly index?: boolean | undefined;
|
|
@@ -2404,7 +1956,6 @@ declare const SysSetting: Omit<{
|
|
|
2404
1956
|
readonly required?: boolean | undefined;
|
|
2405
1957
|
readonly multiple?: boolean | undefined;
|
|
2406
1958
|
readonly dependencies?: string[] | undefined;
|
|
2407
|
-
readonly theme?: string | undefined;
|
|
2408
1959
|
readonly externalId?: boolean | undefined;
|
|
2409
1960
|
readonly defaultValue?: unknown;
|
|
2410
1961
|
readonly group?: string | undefined;
|
|
@@ -2412,23 +1963,6 @@ declare const SysSetting: Omit<{
|
|
|
2412
1963
|
readonly system?: boolean | undefined;
|
|
2413
1964
|
readonly min?: number | undefined;
|
|
2414
1965
|
readonly max?: number | undefined;
|
|
2415
|
-
readonly encryptionConfig?: {
|
|
2416
|
-
enabled: boolean;
|
|
2417
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
2418
|
-
keyManagement: {
|
|
2419
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
2420
|
-
keyId?: string | undefined;
|
|
2421
|
-
rotationPolicy?: {
|
|
2422
|
-
enabled: boolean;
|
|
2423
|
-
frequencyDays: number;
|
|
2424
|
-
retainOldVersions: number;
|
|
2425
|
-
autoRotate: boolean;
|
|
2426
|
-
} | undefined;
|
|
2427
|
-
};
|
|
2428
|
-
scope: "record" | "field" | "table" | "database";
|
|
2429
|
-
deterministicEncryption: boolean;
|
|
2430
|
-
searchableEncryption: boolean;
|
|
2431
|
-
} | undefined;
|
|
2432
1966
|
readonly columnName?: string | undefined;
|
|
2433
1967
|
readonly searchable?: boolean | undefined;
|
|
2434
1968
|
readonly unique?: boolean | undefined;
|
|
@@ -2437,7 +1971,6 @@ declare const SysSetting: Omit<{
|
|
|
2437
1971
|
readonly scale?: number | undefined;
|
|
2438
1972
|
readonly reference?: string | undefined;
|
|
2439
1973
|
readonly referenceFilters?: string[] | undefined;
|
|
2440
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2441
1974
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2442
1975
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2443
1976
|
readonly inlineTitle?: string | undefined;
|
|
@@ -2462,22 +1995,8 @@ declare const SysSetting: Omit<{
|
|
|
2462
1995
|
relationshipField?: string | undefined;
|
|
2463
1996
|
} | undefined;
|
|
2464
1997
|
readonly language?: string | undefined;
|
|
2465
|
-
readonly lineNumbers?: boolean | undefined;
|
|
2466
1998
|
readonly maxRating?: number | undefined;
|
|
2467
|
-
readonly allowHalf?: boolean | undefined;
|
|
2468
|
-
readonly displayMap?: boolean | undefined;
|
|
2469
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
2470
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
2471
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
2472
|
-
readonly allowAlpha?: boolean | undefined;
|
|
2473
|
-
readonly presetColors?: string[] | undefined;
|
|
2474
1999
|
readonly step?: number | undefined;
|
|
2475
|
-
readonly showValue?: boolean | undefined;
|
|
2476
|
-
readonly marks?: Record<string, string> | undefined;
|
|
2477
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
2478
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
2479
|
-
readonly displayValue?: boolean | undefined;
|
|
2480
|
-
readonly allowScanning?: boolean | undefined;
|
|
2481
2000
|
readonly currencyConfig?: {
|
|
2482
2001
|
precision: number;
|
|
2483
2002
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -2531,29 +2050,7 @@ declare const SysSetting: Omit<{
|
|
|
2531
2050
|
} | undefined;
|
|
2532
2051
|
maxVersions?: number | undefined;
|
|
2533
2052
|
} | undefined;
|
|
2534
|
-
readonly
|
|
2535
|
-
field: string;
|
|
2536
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
2537
|
-
preserveFormat: boolean;
|
|
2538
|
-
preserveLength: boolean;
|
|
2539
|
-
pattern?: string | undefined;
|
|
2540
|
-
roles?: string[] | undefined;
|
|
2541
|
-
exemptRoles?: string[] | undefined;
|
|
2542
|
-
} | undefined;
|
|
2543
|
-
readonly auditTrail?: boolean | undefined;
|
|
2544
|
-
readonly cached?: {
|
|
2545
|
-
enabled: boolean;
|
|
2546
|
-
ttl: number;
|
|
2547
|
-
invalidateOn: string[];
|
|
2548
|
-
} | undefined;
|
|
2549
|
-
readonly dataQuality?: {
|
|
2550
|
-
uniqueness: boolean;
|
|
2551
|
-
completeness: number;
|
|
2552
|
-
accuracy?: {
|
|
2553
|
-
source: string;
|
|
2554
|
-
threshold: number;
|
|
2555
|
-
} | undefined;
|
|
2556
|
-
} | undefined;
|
|
2053
|
+
readonly trackHistory?: boolean | undefined;
|
|
2557
2054
|
readonly visibleWhen?: {
|
|
2558
2055
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2559
2056
|
source?: string | undefined;
|
|
@@ -2592,7 +2089,6 @@ declare const SysSetting: Omit<{
|
|
|
2592
2089
|
} | undefined;
|
|
2593
2090
|
readonly sortable?: boolean | undefined;
|
|
2594
2091
|
readonly inlineHelpText?: string | undefined;
|
|
2595
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
2596
2092
|
readonly caseSensitive?: boolean | undefined;
|
|
2597
2093
|
readonly autonumberFormat?: string | undefined;
|
|
2598
2094
|
readonly index?: boolean | undefined;
|
|
@@ -2614,7 +2110,6 @@ declare const SysSetting: Omit<{
|
|
|
2614
2110
|
readonly required?: boolean | undefined;
|
|
2615
2111
|
readonly multiple?: boolean | undefined;
|
|
2616
2112
|
readonly dependencies?: string[] | undefined;
|
|
2617
|
-
readonly theme?: string | undefined;
|
|
2618
2113
|
readonly externalId?: boolean | undefined;
|
|
2619
2114
|
readonly defaultValue?: unknown;
|
|
2620
2115
|
readonly group?: string | undefined;
|
|
@@ -2622,23 +2117,6 @@ declare const SysSetting: Omit<{
|
|
|
2622
2117
|
readonly system?: boolean | undefined;
|
|
2623
2118
|
readonly min?: number | undefined;
|
|
2624
2119
|
readonly max?: number | undefined;
|
|
2625
|
-
readonly encryptionConfig?: {
|
|
2626
|
-
enabled: boolean;
|
|
2627
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
2628
|
-
keyManagement: {
|
|
2629
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
2630
|
-
keyId?: string | undefined;
|
|
2631
|
-
rotationPolicy?: {
|
|
2632
|
-
enabled: boolean;
|
|
2633
|
-
frequencyDays: number;
|
|
2634
|
-
retainOldVersions: number;
|
|
2635
|
-
autoRotate: boolean;
|
|
2636
|
-
} | undefined;
|
|
2637
|
-
};
|
|
2638
|
-
scope: "record" | "field" | "table" | "database";
|
|
2639
|
-
deterministicEncryption: boolean;
|
|
2640
|
-
searchableEncryption: boolean;
|
|
2641
|
-
} | undefined;
|
|
2642
2120
|
readonly columnName?: string | undefined;
|
|
2643
2121
|
readonly searchable?: boolean | undefined;
|
|
2644
2122
|
readonly unique?: boolean | undefined;
|
|
@@ -2647,7 +2125,6 @@ declare const SysSetting: Omit<{
|
|
|
2647
2125
|
readonly scale?: number | undefined;
|
|
2648
2126
|
readonly reference?: string | undefined;
|
|
2649
2127
|
readonly referenceFilters?: string[] | undefined;
|
|
2650
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2651
2128
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2652
2129
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2653
2130
|
readonly inlineTitle?: string | undefined;
|
|
@@ -2672,22 +2149,8 @@ declare const SysSetting: Omit<{
|
|
|
2672
2149
|
relationshipField?: string | undefined;
|
|
2673
2150
|
} | undefined;
|
|
2674
2151
|
readonly language?: string | undefined;
|
|
2675
|
-
readonly lineNumbers?: boolean | undefined;
|
|
2676
2152
|
readonly maxRating?: number | undefined;
|
|
2677
|
-
readonly allowHalf?: boolean | undefined;
|
|
2678
|
-
readonly displayMap?: boolean | undefined;
|
|
2679
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
2680
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
2681
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
2682
|
-
readonly allowAlpha?: boolean | undefined;
|
|
2683
|
-
readonly presetColors?: string[] | undefined;
|
|
2684
2153
|
readonly step?: number | undefined;
|
|
2685
|
-
readonly showValue?: boolean | undefined;
|
|
2686
|
-
readonly marks?: Record<string, string> | undefined;
|
|
2687
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
2688
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
2689
|
-
readonly displayValue?: boolean | undefined;
|
|
2690
|
-
readonly allowScanning?: boolean | undefined;
|
|
2691
2154
|
readonly currencyConfig?: {
|
|
2692
2155
|
precision: number;
|
|
2693
2156
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -2741,29 +2204,7 @@ declare const SysSetting: Omit<{
|
|
|
2741
2204
|
} | undefined;
|
|
2742
2205
|
maxVersions?: number | undefined;
|
|
2743
2206
|
} | undefined;
|
|
2744
|
-
readonly
|
|
2745
|
-
field: string;
|
|
2746
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
2747
|
-
preserveFormat: boolean;
|
|
2748
|
-
preserveLength: boolean;
|
|
2749
|
-
pattern?: string | undefined;
|
|
2750
|
-
roles?: string[] | undefined;
|
|
2751
|
-
exemptRoles?: string[] | undefined;
|
|
2752
|
-
} | undefined;
|
|
2753
|
-
readonly auditTrail?: boolean | undefined;
|
|
2754
|
-
readonly cached?: {
|
|
2755
|
-
enabled: boolean;
|
|
2756
|
-
ttl: number;
|
|
2757
|
-
invalidateOn: string[];
|
|
2758
|
-
} | undefined;
|
|
2759
|
-
readonly dataQuality?: {
|
|
2760
|
-
uniqueness: boolean;
|
|
2761
|
-
completeness: number;
|
|
2762
|
-
accuracy?: {
|
|
2763
|
-
source: string;
|
|
2764
|
-
threshold: number;
|
|
2765
|
-
} | undefined;
|
|
2766
|
-
} | undefined;
|
|
2207
|
+
readonly trackHistory?: boolean | undefined;
|
|
2767
2208
|
readonly visibleWhen?: {
|
|
2768
2209
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2769
2210
|
source?: string | undefined;
|
|
@@ -2802,7 +2243,6 @@ declare const SysSetting: Omit<{
|
|
|
2802
2243
|
} | undefined;
|
|
2803
2244
|
readonly sortable?: boolean | undefined;
|
|
2804
2245
|
readonly inlineHelpText?: string | undefined;
|
|
2805
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
2806
2246
|
readonly caseSensitive?: boolean | undefined;
|
|
2807
2247
|
readonly autonumberFormat?: string | undefined;
|
|
2808
2248
|
readonly index?: boolean | undefined;
|
|
@@ -2824,7 +2264,6 @@ declare const SysSetting: Omit<{
|
|
|
2824
2264
|
readonly required?: boolean | undefined;
|
|
2825
2265
|
readonly multiple?: boolean | undefined;
|
|
2826
2266
|
readonly dependencies?: string[] | undefined;
|
|
2827
|
-
readonly theme?: string | undefined;
|
|
2828
2267
|
readonly externalId?: boolean | undefined;
|
|
2829
2268
|
readonly defaultValue?: unknown;
|
|
2830
2269
|
readonly group?: string | undefined;
|
|
@@ -2832,23 +2271,6 @@ declare const SysSetting: Omit<{
|
|
|
2832
2271
|
readonly system?: boolean | undefined;
|
|
2833
2272
|
readonly min?: number | undefined;
|
|
2834
2273
|
readonly max?: number | undefined;
|
|
2835
|
-
readonly encryptionConfig?: {
|
|
2836
|
-
enabled: boolean;
|
|
2837
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
2838
|
-
keyManagement: {
|
|
2839
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
2840
|
-
keyId?: string | undefined;
|
|
2841
|
-
rotationPolicy?: {
|
|
2842
|
-
enabled: boolean;
|
|
2843
|
-
frequencyDays: number;
|
|
2844
|
-
retainOldVersions: number;
|
|
2845
|
-
autoRotate: boolean;
|
|
2846
|
-
} | undefined;
|
|
2847
|
-
};
|
|
2848
|
-
scope: "record" | "field" | "table" | "database";
|
|
2849
|
-
deterministicEncryption: boolean;
|
|
2850
|
-
searchableEncryption: boolean;
|
|
2851
|
-
} | undefined;
|
|
2852
2274
|
readonly columnName?: string | undefined;
|
|
2853
2275
|
readonly searchable?: boolean | undefined;
|
|
2854
2276
|
readonly unique?: boolean | undefined;
|
|
@@ -2857,7 +2279,6 @@ declare const SysSetting: Omit<{
|
|
|
2857
2279
|
readonly scale?: number | undefined;
|
|
2858
2280
|
readonly reference?: string | undefined;
|
|
2859
2281
|
readonly referenceFilters?: string[] | undefined;
|
|
2860
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2861
2282
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2862
2283
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2863
2284
|
readonly inlineTitle?: string | undefined;
|
|
@@ -2882,22 +2303,8 @@ declare const SysSetting: Omit<{
|
|
|
2882
2303
|
relationshipField?: string | undefined;
|
|
2883
2304
|
} | undefined;
|
|
2884
2305
|
readonly language?: string | undefined;
|
|
2885
|
-
readonly lineNumbers?: boolean | undefined;
|
|
2886
2306
|
readonly maxRating?: number | undefined;
|
|
2887
|
-
readonly allowHalf?: boolean | undefined;
|
|
2888
|
-
readonly displayMap?: boolean | undefined;
|
|
2889
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
2890
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
2891
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
2892
|
-
readonly allowAlpha?: boolean | undefined;
|
|
2893
|
-
readonly presetColors?: string[] | undefined;
|
|
2894
2307
|
readonly step?: number | undefined;
|
|
2895
|
-
readonly showValue?: boolean | undefined;
|
|
2896
|
-
readonly marks?: Record<string, string> | undefined;
|
|
2897
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
2898
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
2899
|
-
readonly displayValue?: boolean | undefined;
|
|
2900
|
-
readonly allowScanning?: boolean | undefined;
|
|
2901
2308
|
readonly currencyConfig?: {
|
|
2902
2309
|
precision: number;
|
|
2903
2310
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -2951,29 +2358,7 @@ declare const SysSetting: Omit<{
|
|
|
2951
2358
|
} | undefined;
|
|
2952
2359
|
maxVersions?: number | undefined;
|
|
2953
2360
|
} | undefined;
|
|
2954
|
-
readonly
|
|
2955
|
-
field: string;
|
|
2956
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
2957
|
-
preserveFormat: boolean;
|
|
2958
|
-
preserveLength: boolean;
|
|
2959
|
-
pattern?: string | undefined;
|
|
2960
|
-
roles?: string[] | undefined;
|
|
2961
|
-
exemptRoles?: string[] | undefined;
|
|
2962
|
-
} | undefined;
|
|
2963
|
-
readonly auditTrail?: boolean | undefined;
|
|
2964
|
-
readonly cached?: {
|
|
2965
|
-
enabled: boolean;
|
|
2966
|
-
ttl: number;
|
|
2967
|
-
invalidateOn: string[];
|
|
2968
|
-
} | undefined;
|
|
2969
|
-
readonly dataQuality?: {
|
|
2970
|
-
uniqueness: boolean;
|
|
2971
|
-
completeness: number;
|
|
2972
|
-
accuracy?: {
|
|
2973
|
-
source: string;
|
|
2974
|
-
threshold: number;
|
|
2975
|
-
} | undefined;
|
|
2976
|
-
} | undefined;
|
|
2361
|
+
readonly trackHistory?: boolean | undefined;
|
|
2977
2362
|
readonly visibleWhen?: {
|
|
2978
2363
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2979
2364
|
source?: string | undefined;
|
|
@@ -3012,7 +2397,6 @@ declare const SysSetting: Omit<{
|
|
|
3012
2397
|
} | undefined;
|
|
3013
2398
|
readonly sortable?: boolean | undefined;
|
|
3014
2399
|
readonly inlineHelpText?: string | undefined;
|
|
3015
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
3016
2400
|
readonly caseSensitive?: boolean | undefined;
|
|
3017
2401
|
readonly autonumberFormat?: string | undefined;
|
|
3018
2402
|
readonly index?: boolean | undefined;
|
|
@@ -3034,7 +2418,6 @@ declare const SysSetting: Omit<{
|
|
|
3034
2418
|
readonly required?: boolean | undefined;
|
|
3035
2419
|
readonly multiple?: boolean | undefined;
|
|
3036
2420
|
readonly dependencies?: string[] | undefined;
|
|
3037
|
-
readonly theme?: string | undefined;
|
|
3038
2421
|
readonly externalId?: boolean | undefined;
|
|
3039
2422
|
readonly defaultValue?: unknown;
|
|
3040
2423
|
readonly group?: string | undefined;
|
|
@@ -3042,23 +2425,6 @@ declare const SysSetting: Omit<{
|
|
|
3042
2425
|
readonly system?: boolean | undefined;
|
|
3043
2426
|
readonly min?: number | undefined;
|
|
3044
2427
|
readonly max?: number | undefined;
|
|
3045
|
-
readonly encryptionConfig?: {
|
|
3046
|
-
enabled: boolean;
|
|
3047
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
3048
|
-
keyManagement: {
|
|
3049
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
3050
|
-
keyId?: string | undefined;
|
|
3051
|
-
rotationPolicy?: {
|
|
3052
|
-
enabled: boolean;
|
|
3053
|
-
frequencyDays: number;
|
|
3054
|
-
retainOldVersions: number;
|
|
3055
|
-
autoRotate: boolean;
|
|
3056
|
-
} | undefined;
|
|
3057
|
-
};
|
|
3058
|
-
scope: "record" | "field" | "table" | "database";
|
|
3059
|
-
deterministicEncryption: boolean;
|
|
3060
|
-
searchableEncryption: boolean;
|
|
3061
|
-
} | undefined;
|
|
3062
2428
|
readonly columnName?: string | undefined;
|
|
3063
2429
|
readonly searchable?: boolean | undefined;
|
|
3064
2430
|
readonly unique?: boolean | undefined;
|
|
@@ -3067,7 +2433,6 @@ declare const SysSetting: Omit<{
|
|
|
3067
2433
|
readonly scale?: number | undefined;
|
|
3068
2434
|
readonly reference?: string | undefined;
|
|
3069
2435
|
readonly referenceFilters?: string[] | undefined;
|
|
3070
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
3071
2436
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3072
2437
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
3073
2438
|
readonly inlineTitle?: string | undefined;
|
|
@@ -3092,22 +2457,8 @@ declare const SysSetting: Omit<{
|
|
|
3092
2457
|
relationshipField?: string | undefined;
|
|
3093
2458
|
} | undefined;
|
|
3094
2459
|
readonly language?: string | undefined;
|
|
3095
|
-
readonly lineNumbers?: boolean | undefined;
|
|
3096
2460
|
readonly maxRating?: number | undefined;
|
|
3097
|
-
readonly allowHalf?: boolean | undefined;
|
|
3098
|
-
readonly displayMap?: boolean | undefined;
|
|
3099
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
3100
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
3101
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
3102
|
-
readonly allowAlpha?: boolean | undefined;
|
|
3103
|
-
readonly presetColors?: string[] | undefined;
|
|
3104
2461
|
readonly step?: number | undefined;
|
|
3105
|
-
readonly showValue?: boolean | undefined;
|
|
3106
|
-
readonly marks?: Record<string, string> | undefined;
|
|
3107
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
3108
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
3109
|
-
readonly displayValue?: boolean | undefined;
|
|
3110
|
-
readonly allowScanning?: boolean | undefined;
|
|
3111
2462
|
readonly currencyConfig?: {
|
|
3112
2463
|
precision: number;
|
|
3113
2464
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -3161,29 +2512,7 @@ declare const SysSetting: Omit<{
|
|
|
3161
2512
|
} | undefined;
|
|
3162
2513
|
maxVersions?: number | undefined;
|
|
3163
2514
|
} | undefined;
|
|
3164
|
-
readonly
|
|
3165
|
-
field: string;
|
|
3166
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
3167
|
-
preserveFormat: boolean;
|
|
3168
|
-
preserveLength: boolean;
|
|
3169
|
-
pattern?: string | undefined;
|
|
3170
|
-
roles?: string[] | undefined;
|
|
3171
|
-
exemptRoles?: string[] | undefined;
|
|
3172
|
-
} | undefined;
|
|
3173
|
-
readonly auditTrail?: boolean | undefined;
|
|
3174
|
-
readonly cached?: {
|
|
3175
|
-
enabled: boolean;
|
|
3176
|
-
ttl: number;
|
|
3177
|
-
invalidateOn: string[];
|
|
3178
|
-
} | undefined;
|
|
3179
|
-
readonly dataQuality?: {
|
|
3180
|
-
uniqueness: boolean;
|
|
3181
|
-
completeness: number;
|
|
3182
|
-
accuracy?: {
|
|
3183
|
-
source: string;
|
|
3184
|
-
threshold: number;
|
|
3185
|
-
} | undefined;
|
|
3186
|
-
} | undefined;
|
|
2515
|
+
readonly trackHistory?: boolean | undefined;
|
|
3187
2516
|
readonly visibleWhen?: {
|
|
3188
2517
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3189
2518
|
source?: string | undefined;
|
|
@@ -3222,7 +2551,6 @@ declare const SysSetting: Omit<{
|
|
|
3222
2551
|
} | undefined;
|
|
3223
2552
|
readonly sortable?: boolean | undefined;
|
|
3224
2553
|
readonly inlineHelpText?: string | undefined;
|
|
3225
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
3226
2554
|
readonly caseSensitive?: boolean | undefined;
|
|
3227
2555
|
readonly autonumberFormat?: string | undefined;
|
|
3228
2556
|
readonly index?: boolean | undefined;
|
|
@@ -3244,7 +2572,6 @@ declare const SysSetting: Omit<{
|
|
|
3244
2572
|
readonly required?: boolean | undefined;
|
|
3245
2573
|
readonly multiple?: boolean | undefined;
|
|
3246
2574
|
readonly dependencies?: string[] | undefined;
|
|
3247
|
-
readonly theme?: string | undefined;
|
|
3248
2575
|
readonly externalId?: boolean | undefined;
|
|
3249
2576
|
readonly defaultValue?: unknown;
|
|
3250
2577
|
readonly group?: string | undefined;
|
|
@@ -3252,23 +2579,6 @@ declare const SysSetting: Omit<{
|
|
|
3252
2579
|
readonly system?: boolean | undefined;
|
|
3253
2580
|
readonly min?: number | undefined;
|
|
3254
2581
|
readonly max?: number | undefined;
|
|
3255
|
-
readonly encryptionConfig?: {
|
|
3256
|
-
enabled: boolean;
|
|
3257
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
3258
|
-
keyManagement: {
|
|
3259
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
3260
|
-
keyId?: string | undefined;
|
|
3261
|
-
rotationPolicy?: {
|
|
3262
|
-
enabled: boolean;
|
|
3263
|
-
frequencyDays: number;
|
|
3264
|
-
retainOldVersions: number;
|
|
3265
|
-
autoRotate: boolean;
|
|
3266
|
-
} | undefined;
|
|
3267
|
-
};
|
|
3268
|
-
scope: "record" | "field" | "table" | "database";
|
|
3269
|
-
deterministicEncryption: boolean;
|
|
3270
|
-
searchableEncryption: boolean;
|
|
3271
|
-
} | undefined;
|
|
3272
2582
|
readonly columnName?: string | undefined;
|
|
3273
2583
|
readonly searchable?: boolean | undefined;
|
|
3274
2584
|
readonly unique?: boolean | undefined;
|
|
@@ -3277,7 +2587,6 @@ declare const SysSetting: Omit<{
|
|
|
3277
2587
|
readonly scale?: number | undefined;
|
|
3278
2588
|
readonly reference?: string | undefined;
|
|
3279
2589
|
readonly referenceFilters?: string[] | undefined;
|
|
3280
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
3281
2590
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3282
2591
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
3283
2592
|
readonly inlineTitle?: string | undefined;
|
|
@@ -3302,22 +2611,8 @@ declare const SysSetting: Omit<{
|
|
|
3302
2611
|
relationshipField?: string | undefined;
|
|
3303
2612
|
} | undefined;
|
|
3304
2613
|
readonly language?: string | undefined;
|
|
3305
|
-
readonly lineNumbers?: boolean | undefined;
|
|
3306
2614
|
readonly maxRating?: number | undefined;
|
|
3307
|
-
readonly allowHalf?: boolean | undefined;
|
|
3308
|
-
readonly displayMap?: boolean | undefined;
|
|
3309
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
3310
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
3311
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
3312
|
-
readonly allowAlpha?: boolean | undefined;
|
|
3313
|
-
readonly presetColors?: string[] | undefined;
|
|
3314
2615
|
readonly step?: number | undefined;
|
|
3315
|
-
readonly showValue?: boolean | undefined;
|
|
3316
|
-
readonly marks?: Record<string, string> | undefined;
|
|
3317
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
3318
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
3319
|
-
readonly displayValue?: boolean | undefined;
|
|
3320
|
-
readonly allowScanning?: boolean | undefined;
|
|
3321
2616
|
readonly currencyConfig?: {
|
|
3322
2617
|
precision: number;
|
|
3323
2618
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -3371,29 +2666,7 @@ declare const SysSetting: Omit<{
|
|
|
3371
2666
|
} | undefined;
|
|
3372
2667
|
maxVersions?: number | undefined;
|
|
3373
2668
|
} | undefined;
|
|
3374
|
-
readonly
|
|
3375
|
-
field: string;
|
|
3376
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
3377
|
-
preserveFormat: boolean;
|
|
3378
|
-
preserveLength: boolean;
|
|
3379
|
-
pattern?: string | undefined;
|
|
3380
|
-
roles?: string[] | undefined;
|
|
3381
|
-
exemptRoles?: string[] | undefined;
|
|
3382
|
-
} | undefined;
|
|
3383
|
-
readonly auditTrail?: boolean | undefined;
|
|
3384
|
-
readonly cached?: {
|
|
3385
|
-
enabled: boolean;
|
|
3386
|
-
ttl: number;
|
|
3387
|
-
invalidateOn: string[];
|
|
3388
|
-
} | undefined;
|
|
3389
|
-
readonly dataQuality?: {
|
|
3390
|
-
uniqueness: boolean;
|
|
3391
|
-
completeness: number;
|
|
3392
|
-
accuracy?: {
|
|
3393
|
-
source: string;
|
|
3394
|
-
threshold: number;
|
|
3395
|
-
} | undefined;
|
|
3396
|
-
} | undefined;
|
|
2669
|
+
readonly trackHistory?: boolean | undefined;
|
|
3397
2670
|
readonly visibleWhen?: {
|
|
3398
2671
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3399
2672
|
source?: string | undefined;
|
|
@@ -3432,7 +2705,6 @@ declare const SysSetting: Omit<{
|
|
|
3432
2705
|
} | undefined;
|
|
3433
2706
|
readonly sortable?: boolean | undefined;
|
|
3434
2707
|
readonly inlineHelpText?: string | undefined;
|
|
3435
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
3436
2708
|
readonly caseSensitive?: boolean | undefined;
|
|
3437
2709
|
readonly autonumberFormat?: string | undefined;
|
|
3438
2710
|
readonly index?: boolean | undefined;
|
|
@@ -3454,7 +2726,6 @@ declare const SysSetting: Omit<{
|
|
|
3454
2726
|
readonly required?: boolean | undefined;
|
|
3455
2727
|
readonly multiple?: boolean | undefined;
|
|
3456
2728
|
readonly dependencies?: string[] | undefined;
|
|
3457
|
-
readonly theme?: string | undefined;
|
|
3458
2729
|
readonly externalId?: boolean | undefined;
|
|
3459
2730
|
readonly defaultValue?: unknown;
|
|
3460
2731
|
readonly group?: string | undefined;
|
|
@@ -3462,23 +2733,6 @@ declare const SysSetting: Omit<{
|
|
|
3462
2733
|
readonly system?: boolean | undefined;
|
|
3463
2734
|
readonly min?: number | undefined;
|
|
3464
2735
|
readonly max?: number | undefined;
|
|
3465
|
-
readonly encryptionConfig?: {
|
|
3466
|
-
enabled: boolean;
|
|
3467
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
3468
|
-
keyManagement: {
|
|
3469
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
3470
|
-
keyId?: string | undefined;
|
|
3471
|
-
rotationPolicy?: {
|
|
3472
|
-
enabled: boolean;
|
|
3473
|
-
frequencyDays: number;
|
|
3474
|
-
retainOldVersions: number;
|
|
3475
|
-
autoRotate: boolean;
|
|
3476
|
-
} | undefined;
|
|
3477
|
-
};
|
|
3478
|
-
scope: "record" | "field" | "table" | "database";
|
|
3479
|
-
deterministicEncryption: boolean;
|
|
3480
|
-
searchableEncryption: boolean;
|
|
3481
|
-
} | undefined;
|
|
3482
2736
|
readonly columnName?: string | undefined;
|
|
3483
2737
|
readonly searchable?: boolean | undefined;
|
|
3484
2738
|
readonly unique?: boolean | undefined;
|
|
@@ -3487,7 +2741,6 @@ declare const SysSetting: Omit<{
|
|
|
3487
2741
|
readonly scale?: number | undefined;
|
|
3488
2742
|
reference: string;
|
|
3489
2743
|
readonly referenceFilters?: string[] | undefined;
|
|
3490
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
3491
2744
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3492
2745
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
3493
2746
|
readonly inlineTitle?: string | undefined;
|
|
@@ -3512,22 +2765,8 @@ declare const SysSetting: Omit<{
|
|
|
3512
2765
|
relationshipField?: string | undefined;
|
|
3513
2766
|
} | undefined;
|
|
3514
2767
|
readonly language?: string | undefined;
|
|
3515
|
-
readonly lineNumbers?: boolean | undefined;
|
|
3516
2768
|
readonly maxRating?: number | undefined;
|
|
3517
|
-
readonly allowHalf?: boolean | undefined;
|
|
3518
|
-
readonly displayMap?: boolean | undefined;
|
|
3519
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
3520
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
3521
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
3522
|
-
readonly allowAlpha?: boolean | undefined;
|
|
3523
|
-
readonly presetColors?: string[] | undefined;
|
|
3524
2769
|
readonly step?: number | undefined;
|
|
3525
|
-
readonly showValue?: boolean | undefined;
|
|
3526
|
-
readonly marks?: Record<string, string> | undefined;
|
|
3527
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
3528
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
3529
|
-
readonly displayValue?: boolean | undefined;
|
|
3530
|
-
readonly allowScanning?: boolean | undefined;
|
|
3531
2770
|
readonly currencyConfig?: {
|
|
3532
2771
|
precision: number;
|
|
3533
2772
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -3581,29 +2820,7 @@ declare const SysSetting: Omit<{
|
|
|
3581
2820
|
} | undefined;
|
|
3582
2821
|
maxVersions?: number | undefined;
|
|
3583
2822
|
} | undefined;
|
|
3584
|
-
readonly
|
|
3585
|
-
field: string;
|
|
3586
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
3587
|
-
preserveFormat: boolean;
|
|
3588
|
-
preserveLength: boolean;
|
|
3589
|
-
pattern?: string | undefined;
|
|
3590
|
-
roles?: string[] | undefined;
|
|
3591
|
-
exemptRoles?: string[] | undefined;
|
|
3592
|
-
} | undefined;
|
|
3593
|
-
readonly auditTrail?: boolean | undefined;
|
|
3594
|
-
readonly cached?: {
|
|
3595
|
-
enabled: boolean;
|
|
3596
|
-
ttl: number;
|
|
3597
|
-
invalidateOn: string[];
|
|
3598
|
-
} | undefined;
|
|
3599
|
-
readonly dataQuality?: {
|
|
3600
|
-
uniqueness: boolean;
|
|
3601
|
-
completeness: number;
|
|
3602
|
-
accuracy?: {
|
|
3603
|
-
source: string;
|
|
3604
|
-
threshold: number;
|
|
3605
|
-
} | undefined;
|
|
3606
|
-
} | undefined;
|
|
2823
|
+
readonly trackHistory?: boolean | undefined;
|
|
3607
2824
|
readonly visibleWhen?: {
|
|
3608
2825
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3609
2826
|
source?: string | undefined;
|
|
@@ -3642,7 +2859,6 @@ declare const SysSetting: Omit<{
|
|
|
3642
2859
|
} | undefined;
|
|
3643
2860
|
readonly sortable?: boolean | undefined;
|
|
3644
2861
|
readonly inlineHelpText?: string | undefined;
|
|
3645
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
3646
2862
|
readonly caseSensitive?: boolean | undefined;
|
|
3647
2863
|
readonly autonumberFormat?: string | undefined;
|
|
3648
2864
|
readonly index?: boolean | undefined;
|
|
@@ -3709,7 +2925,6 @@ declare const SysSecret: Omit<{
|
|
|
3709
2925
|
multiple: boolean;
|
|
3710
2926
|
unique: boolean;
|
|
3711
2927
|
deleteBehavior: "set_null" | "cascade" | "restrict";
|
|
3712
|
-
auditTrail: boolean;
|
|
3713
2928
|
hidden: boolean;
|
|
3714
2929
|
readonly: boolean;
|
|
3715
2930
|
sortable: boolean;
|
|
@@ -3735,7 +2950,6 @@ declare const SysSecret: Omit<{
|
|
|
3735
2950
|
}[] | undefined;
|
|
3736
2951
|
reference?: string | undefined;
|
|
3737
2952
|
referenceFilters?: string[] | undefined;
|
|
3738
|
-
writeRequiresMasterRead?: boolean | undefined;
|
|
3739
2953
|
inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
3740
2954
|
inlineTitle?: string | undefined;
|
|
3741
2955
|
inlineColumns?: any[] | undefined;
|
|
@@ -3767,23 +2981,8 @@ declare const SysSecret: Omit<{
|
|
|
3767
2981
|
relationshipField?: string | undefined;
|
|
3768
2982
|
} | undefined;
|
|
3769
2983
|
language?: string | undefined;
|
|
3770
|
-
theme?: string | undefined;
|
|
3771
|
-
lineNumbers?: boolean | undefined;
|
|
3772
2984
|
maxRating?: number | undefined;
|
|
3773
|
-
allowHalf?: boolean | undefined;
|
|
3774
|
-
displayMap?: boolean | undefined;
|
|
3775
|
-
allowGeocoding?: boolean | undefined;
|
|
3776
|
-
addressFormat?: "us" | "uk" | "international" | undefined;
|
|
3777
|
-
colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
3778
|
-
allowAlpha?: boolean | undefined;
|
|
3779
|
-
presetColors?: string[] | undefined;
|
|
3780
2985
|
step?: number | undefined;
|
|
3781
|
-
showValue?: boolean | undefined;
|
|
3782
|
-
marks?: Record<string, string> | undefined;
|
|
3783
|
-
barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
3784
|
-
qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
3785
|
-
displayValue?: boolean | undefined;
|
|
3786
|
-
allowScanning?: boolean | undefined;
|
|
3787
2986
|
currencyConfig?: {
|
|
3788
2987
|
precision: number;
|
|
3789
2988
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -3837,46 +3036,8 @@ declare const SysSecret: Omit<{
|
|
|
3837
3036
|
} | undefined;
|
|
3838
3037
|
maxVersions?: number | undefined;
|
|
3839
3038
|
} | undefined;
|
|
3840
|
-
|
|
3841
|
-
enabled: boolean;
|
|
3842
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
3843
|
-
keyManagement: {
|
|
3844
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
3845
|
-
keyId?: string | undefined;
|
|
3846
|
-
rotationPolicy?: {
|
|
3847
|
-
enabled: boolean;
|
|
3848
|
-
frequencyDays: number;
|
|
3849
|
-
retainOldVersions: number;
|
|
3850
|
-
autoRotate: boolean;
|
|
3851
|
-
} | undefined;
|
|
3852
|
-
};
|
|
3853
|
-
scope: "record" | "field" | "table" | "database";
|
|
3854
|
-
deterministicEncryption: boolean;
|
|
3855
|
-
searchableEncryption: boolean;
|
|
3856
|
-
} | undefined;
|
|
3857
|
-
maskingRule?: {
|
|
3858
|
-
field: string;
|
|
3859
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
3860
|
-
preserveFormat: boolean;
|
|
3861
|
-
preserveLength: boolean;
|
|
3862
|
-
pattern?: string | undefined;
|
|
3863
|
-
roles?: string[] | undefined;
|
|
3864
|
-
exemptRoles?: string[] | undefined;
|
|
3865
|
-
} | undefined;
|
|
3039
|
+
trackHistory?: boolean | undefined;
|
|
3866
3040
|
dependencies?: string[] | undefined;
|
|
3867
|
-
cached?: {
|
|
3868
|
-
enabled: boolean;
|
|
3869
|
-
ttl: number;
|
|
3870
|
-
invalidateOn: string[];
|
|
3871
|
-
} | undefined;
|
|
3872
|
-
dataQuality?: {
|
|
3873
|
-
uniqueness: boolean;
|
|
3874
|
-
completeness: number;
|
|
3875
|
-
accuracy?: {
|
|
3876
|
-
source: string;
|
|
3877
|
-
threshold: number;
|
|
3878
|
-
} | undefined;
|
|
3879
|
-
} | undefined;
|
|
3880
3041
|
group?: string | undefined;
|
|
3881
3042
|
visibleWhen?: {
|
|
3882
3043
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -3948,7 +3109,6 @@ declare const SysSecret: Omit<{
|
|
|
3948
3109
|
} | undefined;
|
|
3949
3110
|
system?: boolean | undefined;
|
|
3950
3111
|
inlineHelpText?: string | undefined;
|
|
3951
|
-
trackFeedHistory?: boolean | undefined;
|
|
3952
3112
|
caseSensitive?: boolean | undefined;
|
|
3953
3113
|
autonumberFormat?: string | undefined;
|
|
3954
3114
|
}>;
|
|
@@ -4039,12 +3199,13 @@ declare const SysSecret: Omit<{
|
|
|
4039
3199
|
key: string;
|
|
4040
3200
|
interval?: string | undefined;
|
|
4041
3201
|
} | undefined;
|
|
4042
|
-
cdc?: {
|
|
4043
|
-
enabled: boolean;
|
|
4044
|
-
events: ("delete" | "update" | "insert")[];
|
|
4045
|
-
destination: string;
|
|
4046
|
-
} | undefined;
|
|
4047
3202
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
3203
|
+
activityMilestones?: {
|
|
3204
|
+
field: string;
|
|
3205
|
+
value: string;
|
|
3206
|
+
summary: string;
|
|
3207
|
+
type?: string | undefined;
|
|
3208
|
+
}[] | undefined;
|
|
4048
3209
|
displayNameField?: string | undefined;
|
|
4049
3210
|
recordName?: {
|
|
4050
3211
|
type: "text" | "autonumber";
|
|
@@ -4355,7 +3516,6 @@ declare const SysSecret: Omit<{
|
|
|
4355
3516
|
clone: boolean;
|
|
4356
3517
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
4357
3518
|
} | undefined;
|
|
4358
|
-
recordTypes?: string[] | undefined;
|
|
4359
3519
|
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
4360
3520
|
publicSharing?: {
|
|
4361
3521
|
enabled: boolean;
|
|
@@ -4511,7 +3671,6 @@ declare const SysSecret: Omit<{
|
|
|
4511
3671
|
readonly required?: boolean | undefined;
|
|
4512
3672
|
readonly multiple?: boolean | undefined;
|
|
4513
3673
|
readonly dependencies?: string[] | undefined;
|
|
4514
|
-
readonly theme?: string | undefined;
|
|
4515
3674
|
readonly externalId?: boolean | undefined;
|
|
4516
3675
|
readonly defaultValue?: unknown;
|
|
4517
3676
|
readonly group?: string | undefined;
|
|
@@ -4519,23 +3678,6 @@ declare const SysSecret: Omit<{
|
|
|
4519
3678
|
readonly system?: boolean | undefined;
|
|
4520
3679
|
readonly min?: number | undefined;
|
|
4521
3680
|
readonly max?: number | undefined;
|
|
4522
|
-
readonly encryptionConfig?: {
|
|
4523
|
-
enabled: boolean;
|
|
4524
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
4525
|
-
keyManagement: {
|
|
4526
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
4527
|
-
keyId?: string | undefined;
|
|
4528
|
-
rotationPolicy?: {
|
|
4529
|
-
enabled: boolean;
|
|
4530
|
-
frequencyDays: number;
|
|
4531
|
-
retainOldVersions: number;
|
|
4532
|
-
autoRotate: boolean;
|
|
4533
|
-
} | undefined;
|
|
4534
|
-
};
|
|
4535
|
-
scope: "record" | "field" | "table" | "database";
|
|
4536
|
-
deterministicEncryption: boolean;
|
|
4537
|
-
searchableEncryption: boolean;
|
|
4538
|
-
} | undefined;
|
|
4539
3681
|
readonly columnName?: string | undefined;
|
|
4540
3682
|
readonly searchable?: boolean | undefined;
|
|
4541
3683
|
readonly unique?: boolean | undefined;
|
|
@@ -4544,7 +3686,6 @@ declare const SysSecret: Omit<{
|
|
|
4544
3686
|
readonly scale?: number | undefined;
|
|
4545
3687
|
readonly reference?: string | undefined;
|
|
4546
3688
|
readonly referenceFilters?: string[] | undefined;
|
|
4547
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
4548
3689
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4549
3690
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
4550
3691
|
readonly inlineTitle?: string | undefined;
|
|
@@ -4569,22 +3710,8 @@ declare const SysSecret: Omit<{
|
|
|
4569
3710
|
relationshipField?: string | undefined;
|
|
4570
3711
|
} | undefined;
|
|
4571
3712
|
readonly language?: string | undefined;
|
|
4572
|
-
readonly lineNumbers?: boolean | undefined;
|
|
4573
3713
|
readonly maxRating?: number | undefined;
|
|
4574
|
-
readonly allowHalf?: boolean | undefined;
|
|
4575
|
-
readonly displayMap?: boolean | undefined;
|
|
4576
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
4577
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
4578
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
4579
|
-
readonly allowAlpha?: boolean | undefined;
|
|
4580
|
-
readonly presetColors?: string[] | undefined;
|
|
4581
3714
|
readonly step?: number | undefined;
|
|
4582
|
-
readonly showValue?: boolean | undefined;
|
|
4583
|
-
readonly marks?: Record<string, string> | undefined;
|
|
4584
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
4585
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
4586
|
-
readonly displayValue?: boolean | undefined;
|
|
4587
|
-
readonly allowScanning?: boolean | undefined;
|
|
4588
3715
|
readonly currencyConfig?: {
|
|
4589
3716
|
precision: number;
|
|
4590
3717
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -4638,29 +3765,7 @@ declare const SysSecret: Omit<{
|
|
|
4638
3765
|
} | undefined;
|
|
4639
3766
|
maxVersions?: number | undefined;
|
|
4640
3767
|
} | undefined;
|
|
4641
|
-
readonly
|
|
4642
|
-
field: string;
|
|
4643
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
4644
|
-
preserveFormat: boolean;
|
|
4645
|
-
preserveLength: boolean;
|
|
4646
|
-
pattern?: string | undefined;
|
|
4647
|
-
roles?: string[] | undefined;
|
|
4648
|
-
exemptRoles?: string[] | undefined;
|
|
4649
|
-
} | undefined;
|
|
4650
|
-
readonly auditTrail?: boolean | undefined;
|
|
4651
|
-
readonly cached?: {
|
|
4652
|
-
enabled: boolean;
|
|
4653
|
-
ttl: number;
|
|
4654
|
-
invalidateOn: string[];
|
|
4655
|
-
} | undefined;
|
|
4656
|
-
readonly dataQuality?: {
|
|
4657
|
-
uniqueness: boolean;
|
|
4658
|
-
completeness: number;
|
|
4659
|
-
accuracy?: {
|
|
4660
|
-
source: string;
|
|
4661
|
-
threshold: number;
|
|
4662
|
-
} | undefined;
|
|
4663
|
-
} | undefined;
|
|
3768
|
+
readonly trackHistory?: boolean | undefined;
|
|
4664
3769
|
readonly visibleWhen?: {
|
|
4665
3770
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4666
3771
|
source?: string | undefined;
|
|
@@ -4699,7 +3804,6 @@ declare const SysSecret: Omit<{
|
|
|
4699
3804
|
} | undefined;
|
|
4700
3805
|
readonly sortable?: boolean | undefined;
|
|
4701
3806
|
readonly inlineHelpText?: string | undefined;
|
|
4702
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
4703
3807
|
readonly caseSensitive?: boolean | undefined;
|
|
4704
3808
|
readonly autonumberFormat?: string | undefined;
|
|
4705
3809
|
readonly index?: boolean | undefined;
|
|
@@ -4721,7 +3825,6 @@ declare const SysSecret: Omit<{
|
|
|
4721
3825
|
readonly required?: boolean | undefined;
|
|
4722
3826
|
readonly multiple?: boolean | undefined;
|
|
4723
3827
|
readonly dependencies?: string[] | undefined;
|
|
4724
|
-
readonly theme?: string | undefined;
|
|
4725
3828
|
readonly externalId?: boolean | undefined;
|
|
4726
3829
|
readonly defaultValue?: unknown;
|
|
4727
3830
|
readonly group?: string | undefined;
|
|
@@ -4729,23 +3832,6 @@ declare const SysSecret: Omit<{
|
|
|
4729
3832
|
readonly system?: boolean | undefined;
|
|
4730
3833
|
readonly min?: number | undefined;
|
|
4731
3834
|
readonly max?: number | undefined;
|
|
4732
|
-
readonly encryptionConfig?: {
|
|
4733
|
-
enabled: boolean;
|
|
4734
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
4735
|
-
keyManagement: {
|
|
4736
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
4737
|
-
keyId?: string | undefined;
|
|
4738
|
-
rotationPolicy?: {
|
|
4739
|
-
enabled: boolean;
|
|
4740
|
-
frequencyDays: number;
|
|
4741
|
-
retainOldVersions: number;
|
|
4742
|
-
autoRotate: boolean;
|
|
4743
|
-
} | undefined;
|
|
4744
|
-
};
|
|
4745
|
-
scope: "record" | "field" | "table" | "database";
|
|
4746
|
-
deterministicEncryption: boolean;
|
|
4747
|
-
searchableEncryption: boolean;
|
|
4748
|
-
} | undefined;
|
|
4749
3835
|
readonly columnName?: string | undefined;
|
|
4750
3836
|
readonly searchable?: boolean | undefined;
|
|
4751
3837
|
readonly unique?: boolean | undefined;
|
|
@@ -4754,7 +3840,6 @@ declare const SysSecret: Omit<{
|
|
|
4754
3840
|
readonly scale?: number | undefined;
|
|
4755
3841
|
readonly reference?: string | undefined;
|
|
4756
3842
|
readonly referenceFilters?: string[] | undefined;
|
|
4757
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
4758
3843
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4759
3844
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
4760
3845
|
readonly inlineTitle?: string | undefined;
|
|
@@ -4779,22 +3864,8 @@ declare const SysSecret: Omit<{
|
|
|
4779
3864
|
relationshipField?: string | undefined;
|
|
4780
3865
|
} | undefined;
|
|
4781
3866
|
readonly language?: string | undefined;
|
|
4782
|
-
readonly lineNumbers?: boolean | undefined;
|
|
4783
3867
|
readonly maxRating?: number | undefined;
|
|
4784
|
-
readonly allowHalf?: boolean | undefined;
|
|
4785
|
-
readonly displayMap?: boolean | undefined;
|
|
4786
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
4787
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
4788
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
4789
|
-
readonly allowAlpha?: boolean | undefined;
|
|
4790
|
-
readonly presetColors?: string[] | undefined;
|
|
4791
3868
|
readonly step?: number | undefined;
|
|
4792
|
-
readonly showValue?: boolean | undefined;
|
|
4793
|
-
readonly marks?: Record<string, string> | undefined;
|
|
4794
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
4795
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
4796
|
-
readonly displayValue?: boolean | undefined;
|
|
4797
|
-
readonly allowScanning?: boolean | undefined;
|
|
4798
3869
|
readonly currencyConfig?: {
|
|
4799
3870
|
precision: number;
|
|
4800
3871
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -4848,29 +3919,7 @@ declare const SysSecret: Omit<{
|
|
|
4848
3919
|
} | undefined;
|
|
4849
3920
|
maxVersions?: number | undefined;
|
|
4850
3921
|
} | undefined;
|
|
4851
|
-
readonly
|
|
4852
|
-
field: string;
|
|
4853
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
4854
|
-
preserveFormat: boolean;
|
|
4855
|
-
preserveLength: boolean;
|
|
4856
|
-
pattern?: string | undefined;
|
|
4857
|
-
roles?: string[] | undefined;
|
|
4858
|
-
exemptRoles?: string[] | undefined;
|
|
4859
|
-
} | undefined;
|
|
4860
|
-
readonly auditTrail?: boolean | undefined;
|
|
4861
|
-
readonly cached?: {
|
|
4862
|
-
enabled: boolean;
|
|
4863
|
-
ttl: number;
|
|
4864
|
-
invalidateOn: string[];
|
|
4865
|
-
} | undefined;
|
|
4866
|
-
readonly dataQuality?: {
|
|
4867
|
-
uniqueness: boolean;
|
|
4868
|
-
completeness: number;
|
|
4869
|
-
accuracy?: {
|
|
4870
|
-
source: string;
|
|
4871
|
-
threshold: number;
|
|
4872
|
-
} | undefined;
|
|
4873
|
-
} | undefined;
|
|
3922
|
+
readonly trackHistory?: boolean | undefined;
|
|
4874
3923
|
readonly visibleWhen?: {
|
|
4875
3924
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4876
3925
|
source?: string | undefined;
|
|
@@ -4909,7 +3958,6 @@ declare const SysSecret: Omit<{
|
|
|
4909
3958
|
} | undefined;
|
|
4910
3959
|
readonly sortable?: boolean | undefined;
|
|
4911
3960
|
readonly inlineHelpText?: string | undefined;
|
|
4912
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
4913
3961
|
readonly caseSensitive?: boolean | undefined;
|
|
4914
3962
|
readonly autonumberFormat?: string | undefined;
|
|
4915
3963
|
readonly index?: boolean | undefined;
|
|
@@ -4931,7 +3979,6 @@ declare const SysSecret: Omit<{
|
|
|
4931
3979
|
readonly required?: boolean | undefined;
|
|
4932
3980
|
readonly multiple?: boolean | undefined;
|
|
4933
3981
|
readonly dependencies?: string[] | undefined;
|
|
4934
|
-
readonly theme?: string | undefined;
|
|
4935
3982
|
readonly externalId?: boolean | undefined;
|
|
4936
3983
|
readonly defaultValue?: unknown;
|
|
4937
3984
|
readonly group?: string | undefined;
|
|
@@ -4939,23 +3986,6 @@ declare const SysSecret: Omit<{
|
|
|
4939
3986
|
readonly system?: boolean | undefined;
|
|
4940
3987
|
readonly min?: number | undefined;
|
|
4941
3988
|
readonly max?: number | undefined;
|
|
4942
|
-
readonly encryptionConfig?: {
|
|
4943
|
-
enabled: boolean;
|
|
4944
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
4945
|
-
keyManagement: {
|
|
4946
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
4947
|
-
keyId?: string | undefined;
|
|
4948
|
-
rotationPolicy?: {
|
|
4949
|
-
enabled: boolean;
|
|
4950
|
-
frequencyDays: number;
|
|
4951
|
-
retainOldVersions: number;
|
|
4952
|
-
autoRotate: boolean;
|
|
4953
|
-
} | undefined;
|
|
4954
|
-
};
|
|
4955
|
-
scope: "record" | "field" | "table" | "database";
|
|
4956
|
-
deterministicEncryption: boolean;
|
|
4957
|
-
searchableEncryption: boolean;
|
|
4958
|
-
} | undefined;
|
|
4959
3989
|
readonly columnName?: string | undefined;
|
|
4960
3990
|
readonly searchable?: boolean | undefined;
|
|
4961
3991
|
readonly unique?: boolean | undefined;
|
|
@@ -4964,7 +3994,6 @@ declare const SysSecret: Omit<{
|
|
|
4964
3994
|
readonly scale?: number | undefined;
|
|
4965
3995
|
readonly reference?: string | undefined;
|
|
4966
3996
|
readonly referenceFilters?: string[] | undefined;
|
|
4967
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
4968
3997
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4969
3998
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
4970
3999
|
readonly inlineTitle?: string | undefined;
|
|
@@ -4989,22 +4018,8 @@ declare const SysSecret: Omit<{
|
|
|
4989
4018
|
relationshipField?: string | undefined;
|
|
4990
4019
|
} | undefined;
|
|
4991
4020
|
readonly language?: string | undefined;
|
|
4992
|
-
readonly lineNumbers?: boolean | undefined;
|
|
4993
4021
|
readonly maxRating?: number | undefined;
|
|
4994
|
-
readonly allowHalf?: boolean | undefined;
|
|
4995
|
-
readonly displayMap?: boolean | undefined;
|
|
4996
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
4997
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
4998
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
4999
|
-
readonly allowAlpha?: boolean | undefined;
|
|
5000
|
-
readonly presetColors?: string[] | undefined;
|
|
5001
4022
|
readonly step?: number | undefined;
|
|
5002
|
-
readonly showValue?: boolean | undefined;
|
|
5003
|
-
readonly marks?: Record<string, string> | undefined;
|
|
5004
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
5005
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
5006
|
-
readonly displayValue?: boolean | undefined;
|
|
5007
|
-
readonly allowScanning?: boolean | undefined;
|
|
5008
4023
|
readonly currencyConfig?: {
|
|
5009
4024
|
precision: number;
|
|
5010
4025
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -5058,29 +4073,7 @@ declare const SysSecret: Omit<{
|
|
|
5058
4073
|
} | undefined;
|
|
5059
4074
|
maxVersions?: number | undefined;
|
|
5060
4075
|
} | undefined;
|
|
5061
|
-
readonly
|
|
5062
|
-
field: string;
|
|
5063
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
5064
|
-
preserveFormat: boolean;
|
|
5065
|
-
preserveLength: boolean;
|
|
5066
|
-
pattern?: string | undefined;
|
|
5067
|
-
roles?: string[] | undefined;
|
|
5068
|
-
exemptRoles?: string[] | undefined;
|
|
5069
|
-
} | undefined;
|
|
5070
|
-
readonly auditTrail?: boolean | undefined;
|
|
5071
|
-
readonly cached?: {
|
|
5072
|
-
enabled: boolean;
|
|
5073
|
-
ttl: number;
|
|
5074
|
-
invalidateOn: string[];
|
|
5075
|
-
} | undefined;
|
|
5076
|
-
readonly dataQuality?: {
|
|
5077
|
-
uniqueness: boolean;
|
|
5078
|
-
completeness: number;
|
|
5079
|
-
accuracy?: {
|
|
5080
|
-
source: string;
|
|
5081
|
-
threshold: number;
|
|
5082
|
-
} | undefined;
|
|
5083
|
-
} | undefined;
|
|
4076
|
+
readonly trackHistory?: boolean | undefined;
|
|
5084
4077
|
readonly visibleWhen?: {
|
|
5085
4078
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5086
4079
|
source?: string | undefined;
|
|
@@ -5119,7 +4112,6 @@ declare const SysSecret: Omit<{
|
|
|
5119
4112
|
} | undefined;
|
|
5120
4113
|
readonly sortable?: boolean | undefined;
|
|
5121
4114
|
readonly inlineHelpText?: string | undefined;
|
|
5122
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
5123
4115
|
readonly caseSensitive?: boolean | undefined;
|
|
5124
4116
|
readonly autonumberFormat?: string | undefined;
|
|
5125
4117
|
readonly index?: boolean | undefined;
|
|
@@ -5147,7 +4139,6 @@ declare const SysSecret: Omit<{
|
|
|
5147
4139
|
readonly required?: boolean | undefined;
|
|
5148
4140
|
readonly multiple?: boolean | undefined;
|
|
5149
4141
|
readonly dependencies?: string[] | undefined;
|
|
5150
|
-
readonly theme?: string | undefined;
|
|
5151
4142
|
readonly externalId?: boolean | undefined;
|
|
5152
4143
|
readonly defaultValue?: unknown;
|
|
5153
4144
|
readonly group?: string | undefined;
|
|
@@ -5155,23 +4146,6 @@ declare const SysSecret: Omit<{
|
|
|
5155
4146
|
readonly system?: boolean | undefined;
|
|
5156
4147
|
readonly min?: number | undefined;
|
|
5157
4148
|
readonly max?: number | undefined;
|
|
5158
|
-
readonly encryptionConfig?: {
|
|
5159
|
-
enabled: boolean;
|
|
5160
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
5161
|
-
keyManagement: {
|
|
5162
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
5163
|
-
keyId?: string | undefined;
|
|
5164
|
-
rotationPolicy?: {
|
|
5165
|
-
enabled: boolean;
|
|
5166
|
-
frequencyDays: number;
|
|
5167
|
-
retainOldVersions: number;
|
|
5168
|
-
autoRotate: boolean;
|
|
5169
|
-
} | undefined;
|
|
5170
|
-
};
|
|
5171
|
-
scope: "record" | "field" | "table" | "database";
|
|
5172
|
-
deterministicEncryption: boolean;
|
|
5173
|
-
searchableEncryption: boolean;
|
|
5174
|
-
} | undefined;
|
|
5175
4149
|
readonly columnName?: string | undefined;
|
|
5176
4150
|
readonly searchable?: boolean | undefined;
|
|
5177
4151
|
readonly unique?: boolean | undefined;
|
|
@@ -5180,7 +4154,6 @@ declare const SysSecret: Omit<{
|
|
|
5180
4154
|
readonly scale?: number | undefined;
|
|
5181
4155
|
readonly reference?: string | undefined;
|
|
5182
4156
|
readonly referenceFilters?: string[] | undefined;
|
|
5183
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
5184
4157
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5185
4158
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
5186
4159
|
readonly inlineTitle?: string | undefined;
|
|
@@ -5205,22 +4178,8 @@ declare const SysSecret: Omit<{
|
|
|
5205
4178
|
relationshipField?: string | undefined;
|
|
5206
4179
|
} | undefined;
|
|
5207
4180
|
readonly language?: string | undefined;
|
|
5208
|
-
readonly lineNumbers?: boolean | undefined;
|
|
5209
4181
|
readonly maxRating?: number | undefined;
|
|
5210
|
-
readonly allowHalf?: boolean | undefined;
|
|
5211
|
-
readonly displayMap?: boolean | undefined;
|
|
5212
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
5213
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
5214
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
5215
|
-
readonly allowAlpha?: boolean | undefined;
|
|
5216
|
-
readonly presetColors?: string[] | undefined;
|
|
5217
4182
|
readonly step?: number | undefined;
|
|
5218
|
-
readonly showValue?: boolean | undefined;
|
|
5219
|
-
readonly marks?: Record<string, string> | undefined;
|
|
5220
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
5221
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
5222
|
-
readonly displayValue?: boolean | undefined;
|
|
5223
|
-
readonly allowScanning?: boolean | undefined;
|
|
5224
4183
|
readonly currencyConfig?: {
|
|
5225
4184
|
precision: number;
|
|
5226
4185
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -5274,29 +4233,7 @@ declare const SysSecret: Omit<{
|
|
|
5274
4233
|
} | undefined;
|
|
5275
4234
|
maxVersions?: number | undefined;
|
|
5276
4235
|
} | undefined;
|
|
5277
|
-
readonly
|
|
5278
|
-
field: string;
|
|
5279
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
5280
|
-
preserveFormat: boolean;
|
|
5281
|
-
preserveLength: boolean;
|
|
5282
|
-
pattern?: string | undefined;
|
|
5283
|
-
roles?: string[] | undefined;
|
|
5284
|
-
exemptRoles?: string[] | undefined;
|
|
5285
|
-
} | undefined;
|
|
5286
|
-
readonly auditTrail?: boolean | undefined;
|
|
5287
|
-
readonly cached?: {
|
|
5288
|
-
enabled: boolean;
|
|
5289
|
-
ttl: number;
|
|
5290
|
-
invalidateOn: string[];
|
|
5291
|
-
} | undefined;
|
|
5292
|
-
readonly dataQuality?: {
|
|
5293
|
-
uniqueness: boolean;
|
|
5294
|
-
completeness: number;
|
|
5295
|
-
accuracy?: {
|
|
5296
|
-
source: string;
|
|
5297
|
-
threshold: number;
|
|
5298
|
-
} | undefined;
|
|
5299
|
-
} | undefined;
|
|
4236
|
+
readonly trackHistory?: boolean | undefined;
|
|
5300
4237
|
readonly visibleWhen?: {
|
|
5301
4238
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5302
4239
|
source?: string | undefined;
|
|
@@ -5335,7 +4272,6 @@ declare const SysSecret: Omit<{
|
|
|
5335
4272
|
} | undefined;
|
|
5336
4273
|
readonly sortable?: boolean | undefined;
|
|
5337
4274
|
readonly inlineHelpText?: string | undefined;
|
|
5338
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
5339
4275
|
readonly caseSensitive?: boolean | undefined;
|
|
5340
4276
|
readonly autonumberFormat?: string | undefined;
|
|
5341
4277
|
readonly index?: boolean | undefined;
|
|
@@ -5357,7 +4293,6 @@ declare const SysSecret: Omit<{
|
|
|
5357
4293
|
readonly required?: boolean | undefined;
|
|
5358
4294
|
readonly multiple?: boolean | undefined;
|
|
5359
4295
|
readonly dependencies?: string[] | undefined;
|
|
5360
|
-
readonly theme?: string | undefined;
|
|
5361
4296
|
readonly externalId?: boolean | undefined;
|
|
5362
4297
|
readonly defaultValue?: unknown;
|
|
5363
4298
|
readonly group?: string | undefined;
|
|
@@ -5365,23 +4300,6 @@ declare const SysSecret: Omit<{
|
|
|
5365
4300
|
readonly system?: boolean | undefined;
|
|
5366
4301
|
readonly min?: number | undefined;
|
|
5367
4302
|
readonly max?: number | undefined;
|
|
5368
|
-
readonly encryptionConfig?: {
|
|
5369
|
-
enabled: boolean;
|
|
5370
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
5371
|
-
keyManagement: {
|
|
5372
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
5373
|
-
keyId?: string | undefined;
|
|
5374
|
-
rotationPolicy?: {
|
|
5375
|
-
enabled: boolean;
|
|
5376
|
-
frequencyDays: number;
|
|
5377
|
-
retainOldVersions: number;
|
|
5378
|
-
autoRotate: boolean;
|
|
5379
|
-
} | undefined;
|
|
5380
|
-
};
|
|
5381
|
-
scope: "record" | "field" | "table" | "database";
|
|
5382
|
-
deterministicEncryption: boolean;
|
|
5383
|
-
searchableEncryption: boolean;
|
|
5384
|
-
} | undefined;
|
|
5385
4303
|
readonly columnName?: string | undefined;
|
|
5386
4304
|
readonly searchable?: boolean | undefined;
|
|
5387
4305
|
readonly unique?: boolean | undefined;
|
|
@@ -5390,7 +4308,6 @@ declare const SysSecret: Omit<{
|
|
|
5390
4308
|
readonly scale?: number | undefined;
|
|
5391
4309
|
readonly reference?: string | undefined;
|
|
5392
4310
|
readonly referenceFilters?: string[] | undefined;
|
|
5393
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
5394
4311
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5395
4312
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
5396
4313
|
readonly inlineTitle?: string | undefined;
|
|
@@ -5415,22 +4332,8 @@ declare const SysSecret: Omit<{
|
|
|
5415
4332
|
relationshipField?: string | undefined;
|
|
5416
4333
|
} | undefined;
|
|
5417
4334
|
readonly language?: string | undefined;
|
|
5418
|
-
readonly lineNumbers?: boolean | undefined;
|
|
5419
4335
|
readonly maxRating?: number | undefined;
|
|
5420
|
-
readonly allowHalf?: boolean | undefined;
|
|
5421
|
-
readonly displayMap?: boolean | undefined;
|
|
5422
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
5423
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
5424
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
5425
|
-
readonly allowAlpha?: boolean | undefined;
|
|
5426
|
-
readonly presetColors?: string[] | undefined;
|
|
5427
4336
|
readonly step?: number | undefined;
|
|
5428
|
-
readonly showValue?: boolean | undefined;
|
|
5429
|
-
readonly marks?: Record<string, string> | undefined;
|
|
5430
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
5431
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
5432
|
-
readonly displayValue?: boolean | undefined;
|
|
5433
|
-
readonly allowScanning?: boolean | undefined;
|
|
5434
4337
|
readonly currencyConfig?: {
|
|
5435
4338
|
precision: number;
|
|
5436
4339
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -5484,29 +4387,7 @@ declare const SysSecret: Omit<{
|
|
|
5484
4387
|
} | undefined;
|
|
5485
4388
|
maxVersions?: number | undefined;
|
|
5486
4389
|
} | undefined;
|
|
5487
|
-
readonly
|
|
5488
|
-
field: string;
|
|
5489
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
5490
|
-
preserveFormat: boolean;
|
|
5491
|
-
preserveLength: boolean;
|
|
5492
|
-
pattern?: string | undefined;
|
|
5493
|
-
roles?: string[] | undefined;
|
|
5494
|
-
exemptRoles?: string[] | undefined;
|
|
5495
|
-
} | undefined;
|
|
5496
|
-
readonly auditTrail?: boolean | undefined;
|
|
5497
|
-
readonly cached?: {
|
|
5498
|
-
enabled: boolean;
|
|
5499
|
-
ttl: number;
|
|
5500
|
-
invalidateOn: string[];
|
|
5501
|
-
} | undefined;
|
|
5502
|
-
readonly dataQuality?: {
|
|
5503
|
-
uniqueness: boolean;
|
|
5504
|
-
completeness: number;
|
|
5505
|
-
accuracy?: {
|
|
5506
|
-
source: string;
|
|
5507
|
-
threshold: number;
|
|
5508
|
-
} | undefined;
|
|
5509
|
-
} | undefined;
|
|
4390
|
+
readonly trackHistory?: boolean | undefined;
|
|
5510
4391
|
readonly visibleWhen?: {
|
|
5511
4392
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5512
4393
|
source?: string | undefined;
|
|
@@ -5545,7 +4426,6 @@ declare const SysSecret: Omit<{
|
|
|
5545
4426
|
} | undefined;
|
|
5546
4427
|
readonly sortable?: boolean | undefined;
|
|
5547
4428
|
readonly inlineHelpText?: string | undefined;
|
|
5548
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
5549
4429
|
readonly caseSensitive?: boolean | undefined;
|
|
5550
4430
|
readonly autonumberFormat?: string | undefined;
|
|
5551
4431
|
readonly index?: boolean | undefined;
|
|
@@ -5568,7 +4448,6 @@ declare const SysSecret: Omit<{
|
|
|
5568
4448
|
readonly required?: boolean | undefined;
|
|
5569
4449
|
readonly multiple?: boolean | undefined;
|
|
5570
4450
|
readonly dependencies?: string[] | undefined;
|
|
5571
|
-
readonly theme?: string | undefined;
|
|
5572
4451
|
readonly externalId?: boolean | undefined;
|
|
5573
4452
|
readonly defaultValue?: unknown;
|
|
5574
4453
|
readonly group?: string | undefined;
|
|
@@ -5576,23 +4455,6 @@ declare const SysSecret: Omit<{
|
|
|
5576
4455
|
readonly system?: boolean | undefined;
|
|
5577
4456
|
readonly min?: number | undefined;
|
|
5578
4457
|
readonly max?: number | undefined;
|
|
5579
|
-
readonly encryptionConfig?: {
|
|
5580
|
-
enabled: boolean;
|
|
5581
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
5582
|
-
keyManagement: {
|
|
5583
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
5584
|
-
keyId?: string | undefined;
|
|
5585
|
-
rotationPolicy?: {
|
|
5586
|
-
enabled: boolean;
|
|
5587
|
-
frequencyDays: number;
|
|
5588
|
-
retainOldVersions: number;
|
|
5589
|
-
autoRotate: boolean;
|
|
5590
|
-
} | undefined;
|
|
5591
|
-
};
|
|
5592
|
-
scope: "record" | "field" | "table" | "database";
|
|
5593
|
-
deterministicEncryption: boolean;
|
|
5594
|
-
searchableEncryption: boolean;
|
|
5595
|
-
} | undefined;
|
|
5596
4458
|
readonly columnName?: string | undefined;
|
|
5597
4459
|
readonly searchable?: boolean | undefined;
|
|
5598
4460
|
readonly unique?: boolean | undefined;
|
|
@@ -5601,7 +4463,6 @@ declare const SysSecret: Omit<{
|
|
|
5601
4463
|
readonly scale?: number | undefined;
|
|
5602
4464
|
readonly reference?: string | undefined;
|
|
5603
4465
|
readonly referenceFilters?: string[] | undefined;
|
|
5604
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
5605
4466
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5606
4467
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
5607
4468
|
readonly inlineTitle?: string | undefined;
|
|
@@ -5626,22 +4487,8 @@ declare const SysSecret: Omit<{
|
|
|
5626
4487
|
relationshipField?: string | undefined;
|
|
5627
4488
|
} | undefined;
|
|
5628
4489
|
readonly language?: string | undefined;
|
|
5629
|
-
readonly lineNumbers?: boolean | undefined;
|
|
5630
4490
|
readonly maxRating?: number | undefined;
|
|
5631
|
-
readonly allowHalf?: boolean | undefined;
|
|
5632
|
-
readonly displayMap?: boolean | undefined;
|
|
5633
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
5634
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
5635
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
5636
|
-
readonly allowAlpha?: boolean | undefined;
|
|
5637
|
-
readonly presetColors?: string[] | undefined;
|
|
5638
4491
|
readonly step?: number | undefined;
|
|
5639
|
-
readonly showValue?: boolean | undefined;
|
|
5640
|
-
readonly marks?: Record<string, string> | undefined;
|
|
5641
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
5642
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
5643
|
-
readonly displayValue?: boolean | undefined;
|
|
5644
|
-
readonly allowScanning?: boolean | undefined;
|
|
5645
4492
|
readonly currencyConfig?: {
|
|
5646
4493
|
precision: number;
|
|
5647
4494
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -5695,29 +4542,7 @@ declare const SysSecret: Omit<{
|
|
|
5695
4542
|
} | undefined;
|
|
5696
4543
|
maxVersions?: number | undefined;
|
|
5697
4544
|
} | undefined;
|
|
5698
|
-
readonly
|
|
5699
|
-
field: string;
|
|
5700
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
5701
|
-
preserveFormat: boolean;
|
|
5702
|
-
preserveLength: boolean;
|
|
5703
|
-
pattern?: string | undefined;
|
|
5704
|
-
roles?: string[] | undefined;
|
|
5705
|
-
exemptRoles?: string[] | undefined;
|
|
5706
|
-
} | undefined;
|
|
5707
|
-
readonly auditTrail?: boolean | undefined;
|
|
5708
|
-
readonly cached?: {
|
|
5709
|
-
enabled: boolean;
|
|
5710
|
-
ttl: number;
|
|
5711
|
-
invalidateOn: string[];
|
|
5712
|
-
} | undefined;
|
|
5713
|
-
readonly dataQuality?: {
|
|
5714
|
-
uniqueness: boolean;
|
|
5715
|
-
completeness: number;
|
|
5716
|
-
accuracy?: {
|
|
5717
|
-
source: string;
|
|
5718
|
-
threshold: number;
|
|
5719
|
-
} | undefined;
|
|
5720
|
-
} | undefined;
|
|
4545
|
+
readonly trackHistory?: boolean | undefined;
|
|
5721
4546
|
readonly visibleWhen?: {
|
|
5722
4547
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5723
4548
|
source?: string | undefined;
|
|
@@ -5756,7 +4581,6 @@ declare const SysSecret: Omit<{
|
|
|
5756
4581
|
} | undefined;
|
|
5757
4582
|
readonly sortable?: boolean | undefined;
|
|
5758
4583
|
readonly inlineHelpText?: string | undefined;
|
|
5759
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
5760
4584
|
readonly caseSensitive?: boolean | undefined;
|
|
5761
4585
|
readonly autonumberFormat?: string | undefined;
|
|
5762
4586
|
readonly index?: boolean | undefined;
|
|
@@ -5779,7 +4603,6 @@ declare const SysSecret: Omit<{
|
|
|
5779
4603
|
readonly required?: boolean | undefined;
|
|
5780
4604
|
readonly multiple?: boolean | undefined;
|
|
5781
4605
|
readonly dependencies?: string[] | undefined;
|
|
5782
|
-
readonly theme?: string | undefined;
|
|
5783
4606
|
readonly externalId?: boolean | undefined;
|
|
5784
4607
|
readonly defaultValue?: unknown;
|
|
5785
4608
|
readonly group?: string | undefined;
|
|
@@ -5787,23 +4610,6 @@ declare const SysSecret: Omit<{
|
|
|
5787
4610
|
readonly system?: boolean | undefined;
|
|
5788
4611
|
readonly min?: number | undefined;
|
|
5789
4612
|
readonly max?: number | undefined;
|
|
5790
|
-
readonly encryptionConfig?: {
|
|
5791
|
-
enabled: boolean;
|
|
5792
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
5793
|
-
keyManagement: {
|
|
5794
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
5795
|
-
keyId?: string | undefined;
|
|
5796
|
-
rotationPolicy?: {
|
|
5797
|
-
enabled: boolean;
|
|
5798
|
-
frequencyDays: number;
|
|
5799
|
-
retainOldVersions: number;
|
|
5800
|
-
autoRotate: boolean;
|
|
5801
|
-
} | undefined;
|
|
5802
|
-
};
|
|
5803
|
-
scope: "record" | "field" | "table" | "database";
|
|
5804
|
-
deterministicEncryption: boolean;
|
|
5805
|
-
searchableEncryption: boolean;
|
|
5806
|
-
} | undefined;
|
|
5807
4613
|
readonly columnName?: string | undefined;
|
|
5808
4614
|
readonly searchable?: boolean | undefined;
|
|
5809
4615
|
readonly unique?: boolean | undefined;
|
|
@@ -5812,7 +4618,6 @@ declare const SysSecret: Omit<{
|
|
|
5812
4618
|
readonly scale?: number | undefined;
|
|
5813
4619
|
readonly reference?: string | undefined;
|
|
5814
4620
|
readonly referenceFilters?: string[] | undefined;
|
|
5815
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
5816
4621
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5817
4622
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
5818
4623
|
readonly inlineTitle?: string | undefined;
|
|
@@ -5837,22 +4642,8 @@ declare const SysSecret: Omit<{
|
|
|
5837
4642
|
relationshipField?: string | undefined;
|
|
5838
4643
|
} | undefined;
|
|
5839
4644
|
readonly language?: string | undefined;
|
|
5840
|
-
readonly lineNumbers?: boolean | undefined;
|
|
5841
4645
|
readonly maxRating?: number | undefined;
|
|
5842
|
-
readonly allowHalf?: boolean | undefined;
|
|
5843
|
-
readonly displayMap?: boolean | undefined;
|
|
5844
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
5845
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
5846
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
5847
|
-
readonly allowAlpha?: boolean | undefined;
|
|
5848
|
-
readonly presetColors?: string[] | undefined;
|
|
5849
4646
|
readonly step?: number | undefined;
|
|
5850
|
-
readonly showValue?: boolean | undefined;
|
|
5851
|
-
readonly marks?: Record<string, string> | undefined;
|
|
5852
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
5853
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
5854
|
-
readonly displayValue?: boolean | undefined;
|
|
5855
|
-
readonly allowScanning?: boolean | undefined;
|
|
5856
4647
|
readonly currencyConfig?: {
|
|
5857
4648
|
precision: number;
|
|
5858
4649
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -5906,29 +4697,7 @@ declare const SysSecret: Omit<{
|
|
|
5906
4697
|
} | undefined;
|
|
5907
4698
|
maxVersions?: number | undefined;
|
|
5908
4699
|
} | undefined;
|
|
5909
|
-
readonly
|
|
5910
|
-
field: string;
|
|
5911
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
5912
|
-
preserveFormat: boolean;
|
|
5913
|
-
preserveLength: boolean;
|
|
5914
|
-
pattern?: string | undefined;
|
|
5915
|
-
roles?: string[] | undefined;
|
|
5916
|
-
exemptRoles?: string[] | undefined;
|
|
5917
|
-
} | undefined;
|
|
5918
|
-
readonly auditTrail?: boolean | undefined;
|
|
5919
|
-
readonly cached?: {
|
|
5920
|
-
enabled: boolean;
|
|
5921
|
-
ttl: number;
|
|
5922
|
-
invalidateOn: string[];
|
|
5923
|
-
} | undefined;
|
|
5924
|
-
readonly dataQuality?: {
|
|
5925
|
-
uniqueness: boolean;
|
|
5926
|
-
completeness: number;
|
|
5927
|
-
accuracy?: {
|
|
5928
|
-
source: string;
|
|
5929
|
-
threshold: number;
|
|
5930
|
-
} | undefined;
|
|
5931
|
-
} | undefined;
|
|
4700
|
+
readonly trackHistory?: boolean | undefined;
|
|
5932
4701
|
readonly visibleWhen?: {
|
|
5933
4702
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5934
4703
|
source?: string | undefined;
|
|
@@ -5967,7 +4736,6 @@ declare const SysSecret: Omit<{
|
|
|
5967
4736
|
} | undefined;
|
|
5968
4737
|
readonly sortable?: boolean | undefined;
|
|
5969
4738
|
readonly inlineHelpText?: string | undefined;
|
|
5970
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
5971
4739
|
readonly caseSensitive?: boolean | undefined;
|
|
5972
4740
|
readonly autonumberFormat?: string | undefined;
|
|
5973
4741
|
readonly index?: boolean | undefined;
|
|
@@ -5990,7 +4758,6 @@ declare const SysSecret: Omit<{
|
|
|
5990
4758
|
readonly required?: boolean | undefined;
|
|
5991
4759
|
readonly multiple?: boolean | undefined;
|
|
5992
4760
|
readonly dependencies?: string[] | undefined;
|
|
5993
|
-
readonly theme?: string | undefined;
|
|
5994
4761
|
readonly externalId?: boolean | undefined;
|
|
5995
4762
|
readonly defaultValue?: unknown;
|
|
5996
4763
|
readonly group?: string | undefined;
|
|
@@ -5998,23 +4765,6 @@ declare const SysSecret: Omit<{
|
|
|
5998
4765
|
readonly system?: boolean | undefined;
|
|
5999
4766
|
readonly min?: number | undefined;
|
|
6000
4767
|
readonly max?: number | undefined;
|
|
6001
|
-
readonly encryptionConfig?: {
|
|
6002
|
-
enabled: boolean;
|
|
6003
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
6004
|
-
keyManagement: {
|
|
6005
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
6006
|
-
keyId?: string | undefined;
|
|
6007
|
-
rotationPolicy?: {
|
|
6008
|
-
enabled: boolean;
|
|
6009
|
-
frequencyDays: number;
|
|
6010
|
-
retainOldVersions: number;
|
|
6011
|
-
autoRotate: boolean;
|
|
6012
|
-
} | undefined;
|
|
6013
|
-
};
|
|
6014
|
-
scope: "record" | "field" | "table" | "database";
|
|
6015
|
-
deterministicEncryption: boolean;
|
|
6016
|
-
searchableEncryption: boolean;
|
|
6017
|
-
} | undefined;
|
|
6018
4768
|
readonly columnName?: string | undefined;
|
|
6019
4769
|
readonly searchable?: boolean | undefined;
|
|
6020
4770
|
readonly unique?: boolean | undefined;
|
|
@@ -6023,7 +4773,6 @@ declare const SysSecret: Omit<{
|
|
|
6023
4773
|
readonly scale?: number | undefined;
|
|
6024
4774
|
readonly reference?: string | undefined;
|
|
6025
4775
|
readonly referenceFilters?: string[] | undefined;
|
|
6026
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
6027
4776
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6028
4777
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
6029
4778
|
readonly inlineTitle?: string | undefined;
|
|
@@ -6048,22 +4797,8 @@ declare const SysSecret: Omit<{
|
|
|
6048
4797
|
relationshipField?: string | undefined;
|
|
6049
4798
|
} | undefined;
|
|
6050
4799
|
readonly language?: string | undefined;
|
|
6051
|
-
readonly lineNumbers?: boolean | undefined;
|
|
6052
4800
|
readonly maxRating?: number | undefined;
|
|
6053
|
-
readonly allowHalf?: boolean | undefined;
|
|
6054
|
-
readonly displayMap?: boolean | undefined;
|
|
6055
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
6056
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
6057
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
6058
|
-
readonly allowAlpha?: boolean | undefined;
|
|
6059
|
-
readonly presetColors?: string[] | undefined;
|
|
6060
4801
|
readonly step?: number | undefined;
|
|
6061
|
-
readonly showValue?: boolean | undefined;
|
|
6062
|
-
readonly marks?: Record<string, string> | undefined;
|
|
6063
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
6064
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
6065
|
-
readonly displayValue?: boolean | undefined;
|
|
6066
|
-
readonly allowScanning?: boolean | undefined;
|
|
6067
4802
|
readonly currencyConfig?: {
|
|
6068
4803
|
precision: number;
|
|
6069
4804
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -6117,29 +4852,7 @@ declare const SysSecret: Omit<{
|
|
|
6117
4852
|
} | undefined;
|
|
6118
4853
|
maxVersions?: number | undefined;
|
|
6119
4854
|
} | undefined;
|
|
6120
|
-
readonly
|
|
6121
|
-
field: string;
|
|
6122
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
6123
|
-
preserveFormat: boolean;
|
|
6124
|
-
preserveLength: boolean;
|
|
6125
|
-
pattern?: string | undefined;
|
|
6126
|
-
roles?: string[] | undefined;
|
|
6127
|
-
exemptRoles?: string[] | undefined;
|
|
6128
|
-
} | undefined;
|
|
6129
|
-
readonly auditTrail?: boolean | undefined;
|
|
6130
|
-
readonly cached?: {
|
|
6131
|
-
enabled: boolean;
|
|
6132
|
-
ttl: number;
|
|
6133
|
-
invalidateOn: string[];
|
|
6134
|
-
} | undefined;
|
|
6135
|
-
readonly dataQuality?: {
|
|
6136
|
-
uniqueness: boolean;
|
|
6137
|
-
completeness: number;
|
|
6138
|
-
accuracy?: {
|
|
6139
|
-
source: string;
|
|
6140
|
-
threshold: number;
|
|
6141
|
-
} | undefined;
|
|
6142
|
-
} | undefined;
|
|
4855
|
+
readonly trackHistory?: boolean | undefined;
|
|
6143
4856
|
readonly visibleWhen?: {
|
|
6144
4857
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6145
4858
|
source?: string | undefined;
|
|
@@ -6178,7 +4891,6 @@ declare const SysSecret: Omit<{
|
|
|
6178
4891
|
} | undefined;
|
|
6179
4892
|
readonly sortable?: boolean | undefined;
|
|
6180
4893
|
readonly inlineHelpText?: string | undefined;
|
|
6181
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
6182
4894
|
readonly caseSensitive?: boolean | undefined;
|
|
6183
4895
|
readonly autonumberFormat?: string | undefined;
|
|
6184
4896
|
readonly index?: boolean | undefined;
|
|
@@ -6200,7 +4912,6 @@ declare const SysSecret: Omit<{
|
|
|
6200
4912
|
readonly required?: boolean | undefined;
|
|
6201
4913
|
readonly multiple?: boolean | undefined;
|
|
6202
4914
|
readonly dependencies?: string[] | undefined;
|
|
6203
|
-
readonly theme?: string | undefined;
|
|
6204
4915
|
readonly externalId?: boolean | undefined;
|
|
6205
4916
|
readonly defaultValue?: unknown;
|
|
6206
4917
|
readonly group?: string | undefined;
|
|
@@ -6208,23 +4919,6 @@ declare const SysSecret: Omit<{
|
|
|
6208
4919
|
readonly system?: boolean | undefined;
|
|
6209
4920
|
readonly min?: number | undefined;
|
|
6210
4921
|
readonly max?: number | undefined;
|
|
6211
|
-
readonly encryptionConfig?: {
|
|
6212
|
-
enabled: boolean;
|
|
6213
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
6214
|
-
keyManagement: {
|
|
6215
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
6216
|
-
keyId?: string | undefined;
|
|
6217
|
-
rotationPolicy?: {
|
|
6218
|
-
enabled: boolean;
|
|
6219
|
-
frequencyDays: number;
|
|
6220
|
-
retainOldVersions: number;
|
|
6221
|
-
autoRotate: boolean;
|
|
6222
|
-
} | undefined;
|
|
6223
|
-
};
|
|
6224
|
-
scope: "record" | "field" | "table" | "database";
|
|
6225
|
-
deterministicEncryption: boolean;
|
|
6226
|
-
searchableEncryption: boolean;
|
|
6227
|
-
} | undefined;
|
|
6228
4922
|
readonly columnName?: string | undefined;
|
|
6229
4923
|
readonly searchable?: boolean | undefined;
|
|
6230
4924
|
readonly unique?: boolean | undefined;
|
|
@@ -6233,7 +4927,6 @@ declare const SysSecret: Omit<{
|
|
|
6233
4927
|
readonly scale?: number | undefined;
|
|
6234
4928
|
readonly reference?: string | undefined;
|
|
6235
4929
|
readonly referenceFilters?: string[] | undefined;
|
|
6236
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
6237
4930
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6238
4931
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
6239
4932
|
readonly inlineTitle?: string | undefined;
|
|
@@ -6258,22 +4951,8 @@ declare const SysSecret: Omit<{
|
|
|
6258
4951
|
relationshipField?: string | undefined;
|
|
6259
4952
|
} | undefined;
|
|
6260
4953
|
readonly language?: string | undefined;
|
|
6261
|
-
readonly lineNumbers?: boolean | undefined;
|
|
6262
4954
|
readonly maxRating?: number | undefined;
|
|
6263
|
-
readonly allowHalf?: boolean | undefined;
|
|
6264
|
-
readonly displayMap?: boolean | undefined;
|
|
6265
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
6266
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
6267
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
6268
|
-
readonly allowAlpha?: boolean | undefined;
|
|
6269
|
-
readonly presetColors?: string[] | undefined;
|
|
6270
4955
|
readonly step?: number | undefined;
|
|
6271
|
-
readonly showValue?: boolean | undefined;
|
|
6272
|
-
readonly marks?: Record<string, string> | undefined;
|
|
6273
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
6274
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
6275
|
-
readonly displayValue?: boolean | undefined;
|
|
6276
|
-
readonly allowScanning?: boolean | undefined;
|
|
6277
4956
|
readonly currencyConfig?: {
|
|
6278
4957
|
precision: number;
|
|
6279
4958
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -6327,29 +5006,7 @@ declare const SysSecret: Omit<{
|
|
|
6327
5006
|
} | undefined;
|
|
6328
5007
|
maxVersions?: number | undefined;
|
|
6329
5008
|
} | undefined;
|
|
6330
|
-
readonly
|
|
6331
|
-
field: string;
|
|
6332
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
6333
|
-
preserveFormat: boolean;
|
|
6334
|
-
preserveLength: boolean;
|
|
6335
|
-
pattern?: string | undefined;
|
|
6336
|
-
roles?: string[] | undefined;
|
|
6337
|
-
exemptRoles?: string[] | undefined;
|
|
6338
|
-
} | undefined;
|
|
6339
|
-
readonly auditTrail?: boolean | undefined;
|
|
6340
|
-
readonly cached?: {
|
|
6341
|
-
enabled: boolean;
|
|
6342
|
-
ttl: number;
|
|
6343
|
-
invalidateOn: string[];
|
|
6344
|
-
} | undefined;
|
|
6345
|
-
readonly dataQuality?: {
|
|
6346
|
-
uniqueness: boolean;
|
|
6347
|
-
completeness: number;
|
|
6348
|
-
accuracy?: {
|
|
6349
|
-
source: string;
|
|
6350
|
-
threshold: number;
|
|
6351
|
-
} | undefined;
|
|
6352
|
-
} | undefined;
|
|
5009
|
+
readonly trackHistory?: boolean | undefined;
|
|
6353
5010
|
readonly visibleWhen?: {
|
|
6354
5011
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6355
5012
|
source?: string | undefined;
|
|
@@ -6388,7 +5045,6 @@ declare const SysSecret: Omit<{
|
|
|
6388
5045
|
} | undefined;
|
|
6389
5046
|
readonly sortable?: boolean | undefined;
|
|
6390
5047
|
readonly inlineHelpText?: string | undefined;
|
|
6391
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
6392
5048
|
readonly caseSensitive?: boolean | undefined;
|
|
6393
5049
|
readonly autonumberFormat?: string | undefined;
|
|
6394
5050
|
readonly index?: boolean | undefined;
|
|
@@ -6445,7 +5101,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
6445
5101
|
multiple: boolean;
|
|
6446
5102
|
unique: boolean;
|
|
6447
5103
|
deleteBehavior: "set_null" | "cascade" | "restrict";
|
|
6448
|
-
auditTrail: boolean;
|
|
6449
5104
|
hidden: boolean;
|
|
6450
5105
|
readonly: boolean;
|
|
6451
5106
|
sortable: boolean;
|
|
@@ -6471,7 +5126,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
6471
5126
|
}[] | undefined;
|
|
6472
5127
|
reference?: string | undefined;
|
|
6473
5128
|
referenceFilters?: string[] | undefined;
|
|
6474
|
-
writeRequiresMasterRead?: boolean | undefined;
|
|
6475
5129
|
inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
6476
5130
|
inlineTitle?: string | undefined;
|
|
6477
5131
|
inlineColumns?: any[] | undefined;
|
|
@@ -6503,23 +5157,8 @@ declare const SysSettingAudit: Omit<{
|
|
|
6503
5157
|
relationshipField?: string | undefined;
|
|
6504
5158
|
} | undefined;
|
|
6505
5159
|
language?: string | undefined;
|
|
6506
|
-
theme?: string | undefined;
|
|
6507
|
-
lineNumbers?: boolean | undefined;
|
|
6508
5160
|
maxRating?: number | undefined;
|
|
6509
|
-
allowHalf?: boolean | undefined;
|
|
6510
|
-
displayMap?: boolean | undefined;
|
|
6511
|
-
allowGeocoding?: boolean | undefined;
|
|
6512
|
-
addressFormat?: "us" | "uk" | "international" | undefined;
|
|
6513
|
-
colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
6514
|
-
allowAlpha?: boolean | undefined;
|
|
6515
|
-
presetColors?: string[] | undefined;
|
|
6516
5161
|
step?: number | undefined;
|
|
6517
|
-
showValue?: boolean | undefined;
|
|
6518
|
-
marks?: Record<string, string> | undefined;
|
|
6519
|
-
barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
6520
|
-
qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
6521
|
-
displayValue?: boolean | undefined;
|
|
6522
|
-
allowScanning?: boolean | undefined;
|
|
6523
5162
|
currencyConfig?: {
|
|
6524
5163
|
precision: number;
|
|
6525
5164
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -6573,46 +5212,8 @@ declare const SysSettingAudit: Omit<{
|
|
|
6573
5212
|
} | undefined;
|
|
6574
5213
|
maxVersions?: number | undefined;
|
|
6575
5214
|
} | undefined;
|
|
6576
|
-
|
|
6577
|
-
enabled: boolean;
|
|
6578
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
6579
|
-
keyManagement: {
|
|
6580
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
6581
|
-
keyId?: string | undefined;
|
|
6582
|
-
rotationPolicy?: {
|
|
6583
|
-
enabled: boolean;
|
|
6584
|
-
frequencyDays: number;
|
|
6585
|
-
retainOldVersions: number;
|
|
6586
|
-
autoRotate: boolean;
|
|
6587
|
-
} | undefined;
|
|
6588
|
-
};
|
|
6589
|
-
scope: "record" | "field" | "table" | "database";
|
|
6590
|
-
deterministicEncryption: boolean;
|
|
6591
|
-
searchableEncryption: boolean;
|
|
6592
|
-
} | undefined;
|
|
6593
|
-
maskingRule?: {
|
|
6594
|
-
field: string;
|
|
6595
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
6596
|
-
preserveFormat: boolean;
|
|
6597
|
-
preserveLength: boolean;
|
|
6598
|
-
pattern?: string | undefined;
|
|
6599
|
-
roles?: string[] | undefined;
|
|
6600
|
-
exemptRoles?: string[] | undefined;
|
|
6601
|
-
} | undefined;
|
|
5215
|
+
trackHistory?: boolean | undefined;
|
|
6602
5216
|
dependencies?: string[] | undefined;
|
|
6603
|
-
cached?: {
|
|
6604
|
-
enabled: boolean;
|
|
6605
|
-
ttl: number;
|
|
6606
|
-
invalidateOn: string[];
|
|
6607
|
-
} | undefined;
|
|
6608
|
-
dataQuality?: {
|
|
6609
|
-
uniqueness: boolean;
|
|
6610
|
-
completeness: number;
|
|
6611
|
-
accuracy?: {
|
|
6612
|
-
source: string;
|
|
6613
|
-
threshold: number;
|
|
6614
|
-
} | undefined;
|
|
6615
|
-
} | undefined;
|
|
6616
5217
|
group?: string | undefined;
|
|
6617
5218
|
visibleWhen?: {
|
|
6618
5219
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -6684,7 +5285,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
6684
5285
|
} | undefined;
|
|
6685
5286
|
system?: boolean | undefined;
|
|
6686
5287
|
inlineHelpText?: string | undefined;
|
|
6687
|
-
trackFeedHistory?: boolean | undefined;
|
|
6688
5288
|
caseSensitive?: boolean | undefined;
|
|
6689
5289
|
autonumberFormat?: string | undefined;
|
|
6690
5290
|
}>;
|
|
@@ -6775,12 +5375,13 @@ declare const SysSettingAudit: Omit<{
|
|
|
6775
5375
|
key: string;
|
|
6776
5376
|
interval?: string | undefined;
|
|
6777
5377
|
} | undefined;
|
|
6778
|
-
cdc?: {
|
|
6779
|
-
enabled: boolean;
|
|
6780
|
-
events: ("delete" | "update" | "insert")[];
|
|
6781
|
-
destination: string;
|
|
6782
|
-
} | undefined;
|
|
6783
5378
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
5379
|
+
activityMilestones?: {
|
|
5380
|
+
field: string;
|
|
5381
|
+
value: string;
|
|
5382
|
+
summary: string;
|
|
5383
|
+
type?: string | undefined;
|
|
5384
|
+
}[] | undefined;
|
|
6784
5385
|
displayNameField?: string | undefined;
|
|
6785
5386
|
recordName?: {
|
|
6786
5387
|
type: "text" | "autonumber";
|
|
@@ -7091,7 +5692,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
7091
5692
|
clone: boolean;
|
|
7092
5693
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
7093
5694
|
} | undefined;
|
|
7094
|
-
recordTypes?: string[] | undefined;
|
|
7095
5695
|
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
7096
5696
|
publicSharing?: {
|
|
7097
5697
|
enabled: boolean;
|
|
@@ -7251,7 +5851,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
7251
5851
|
readonly required?: boolean | undefined;
|
|
7252
5852
|
readonly multiple?: boolean | undefined;
|
|
7253
5853
|
readonly dependencies?: string[] | undefined;
|
|
7254
|
-
readonly theme?: string | undefined;
|
|
7255
5854
|
readonly externalId?: boolean | undefined;
|
|
7256
5855
|
readonly defaultValue?: unknown;
|
|
7257
5856
|
readonly group?: string | undefined;
|
|
@@ -7259,23 +5858,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
7259
5858
|
readonly system?: boolean | undefined;
|
|
7260
5859
|
readonly min?: number | undefined;
|
|
7261
5860
|
readonly max?: number | undefined;
|
|
7262
|
-
readonly encryptionConfig?: {
|
|
7263
|
-
enabled: boolean;
|
|
7264
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
7265
|
-
keyManagement: {
|
|
7266
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
7267
|
-
keyId?: string | undefined;
|
|
7268
|
-
rotationPolicy?: {
|
|
7269
|
-
enabled: boolean;
|
|
7270
|
-
frequencyDays: number;
|
|
7271
|
-
retainOldVersions: number;
|
|
7272
|
-
autoRotate: boolean;
|
|
7273
|
-
} | undefined;
|
|
7274
|
-
};
|
|
7275
|
-
scope: "record" | "field" | "table" | "database";
|
|
7276
|
-
deterministicEncryption: boolean;
|
|
7277
|
-
searchableEncryption: boolean;
|
|
7278
|
-
} | undefined;
|
|
7279
5861
|
readonly columnName?: string | undefined;
|
|
7280
5862
|
readonly searchable?: boolean | undefined;
|
|
7281
5863
|
readonly unique?: boolean | undefined;
|
|
@@ -7284,7 +5866,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
7284
5866
|
readonly scale?: number | undefined;
|
|
7285
5867
|
readonly reference?: string | undefined;
|
|
7286
5868
|
readonly referenceFilters?: string[] | undefined;
|
|
7287
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
7288
5869
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7289
5870
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
7290
5871
|
readonly inlineTitle?: string | undefined;
|
|
@@ -7309,22 +5890,8 @@ declare const SysSettingAudit: Omit<{
|
|
|
7309
5890
|
relationshipField?: string | undefined;
|
|
7310
5891
|
} | undefined;
|
|
7311
5892
|
readonly language?: string | undefined;
|
|
7312
|
-
readonly lineNumbers?: boolean | undefined;
|
|
7313
5893
|
readonly maxRating?: number | undefined;
|
|
7314
|
-
readonly allowHalf?: boolean | undefined;
|
|
7315
|
-
readonly displayMap?: boolean | undefined;
|
|
7316
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
7317
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
7318
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
7319
|
-
readonly allowAlpha?: boolean | undefined;
|
|
7320
|
-
readonly presetColors?: string[] | undefined;
|
|
7321
5894
|
readonly step?: number | undefined;
|
|
7322
|
-
readonly showValue?: boolean | undefined;
|
|
7323
|
-
readonly marks?: Record<string, string> | undefined;
|
|
7324
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
7325
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
7326
|
-
readonly displayValue?: boolean | undefined;
|
|
7327
|
-
readonly allowScanning?: boolean | undefined;
|
|
7328
5895
|
readonly currencyConfig?: {
|
|
7329
5896
|
precision: number;
|
|
7330
5897
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -7378,29 +5945,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
7378
5945
|
} | undefined;
|
|
7379
5946
|
maxVersions?: number | undefined;
|
|
7380
5947
|
} | undefined;
|
|
7381
|
-
readonly
|
|
7382
|
-
field: string;
|
|
7383
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
7384
|
-
preserveFormat: boolean;
|
|
7385
|
-
preserveLength: boolean;
|
|
7386
|
-
pattern?: string | undefined;
|
|
7387
|
-
roles?: string[] | undefined;
|
|
7388
|
-
exemptRoles?: string[] | undefined;
|
|
7389
|
-
} | undefined;
|
|
7390
|
-
readonly auditTrail?: boolean | undefined;
|
|
7391
|
-
readonly cached?: {
|
|
7392
|
-
enabled: boolean;
|
|
7393
|
-
ttl: number;
|
|
7394
|
-
invalidateOn: string[];
|
|
7395
|
-
} | undefined;
|
|
7396
|
-
readonly dataQuality?: {
|
|
7397
|
-
uniqueness: boolean;
|
|
7398
|
-
completeness: number;
|
|
7399
|
-
accuracy?: {
|
|
7400
|
-
source: string;
|
|
7401
|
-
threshold: number;
|
|
7402
|
-
} | undefined;
|
|
7403
|
-
} | undefined;
|
|
5948
|
+
readonly trackHistory?: boolean | undefined;
|
|
7404
5949
|
readonly visibleWhen?: {
|
|
7405
5950
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7406
5951
|
source?: string | undefined;
|
|
@@ -7439,7 +5984,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
7439
5984
|
} | undefined;
|
|
7440
5985
|
readonly sortable?: boolean | undefined;
|
|
7441
5986
|
readonly inlineHelpText?: string | undefined;
|
|
7442
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
7443
5987
|
readonly caseSensitive?: boolean | undefined;
|
|
7444
5988
|
readonly autonumberFormat?: string | undefined;
|
|
7445
5989
|
readonly index?: boolean | undefined;
|
|
@@ -7461,7 +6005,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
7461
6005
|
readonly required?: boolean | undefined;
|
|
7462
6006
|
readonly multiple?: boolean | undefined;
|
|
7463
6007
|
readonly dependencies?: string[] | undefined;
|
|
7464
|
-
readonly theme?: string | undefined;
|
|
7465
6008
|
readonly externalId?: boolean | undefined;
|
|
7466
6009
|
readonly defaultValue?: unknown;
|
|
7467
6010
|
readonly group?: string | undefined;
|
|
@@ -7469,23 +6012,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
7469
6012
|
readonly system?: boolean | undefined;
|
|
7470
6013
|
readonly min?: number | undefined;
|
|
7471
6014
|
readonly max?: number | undefined;
|
|
7472
|
-
readonly encryptionConfig?: {
|
|
7473
|
-
enabled: boolean;
|
|
7474
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
7475
|
-
keyManagement: {
|
|
7476
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
7477
|
-
keyId?: string | undefined;
|
|
7478
|
-
rotationPolicy?: {
|
|
7479
|
-
enabled: boolean;
|
|
7480
|
-
frequencyDays: number;
|
|
7481
|
-
retainOldVersions: number;
|
|
7482
|
-
autoRotate: boolean;
|
|
7483
|
-
} | undefined;
|
|
7484
|
-
};
|
|
7485
|
-
scope: "record" | "field" | "table" | "database";
|
|
7486
|
-
deterministicEncryption: boolean;
|
|
7487
|
-
searchableEncryption: boolean;
|
|
7488
|
-
} | undefined;
|
|
7489
6015
|
readonly columnName?: string | undefined;
|
|
7490
6016
|
readonly searchable?: boolean | undefined;
|
|
7491
6017
|
readonly unique?: boolean | undefined;
|
|
@@ -7494,7 +6020,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
7494
6020
|
readonly scale?: number | undefined;
|
|
7495
6021
|
readonly reference?: string | undefined;
|
|
7496
6022
|
readonly referenceFilters?: string[] | undefined;
|
|
7497
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
7498
6023
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7499
6024
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
7500
6025
|
readonly inlineTitle?: string | undefined;
|
|
@@ -7519,22 +6044,8 @@ declare const SysSettingAudit: Omit<{
|
|
|
7519
6044
|
relationshipField?: string | undefined;
|
|
7520
6045
|
} | undefined;
|
|
7521
6046
|
readonly language?: string | undefined;
|
|
7522
|
-
readonly lineNumbers?: boolean | undefined;
|
|
7523
6047
|
readonly maxRating?: number | undefined;
|
|
7524
|
-
readonly allowHalf?: boolean | undefined;
|
|
7525
|
-
readonly displayMap?: boolean | undefined;
|
|
7526
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
7527
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
7528
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
7529
|
-
readonly allowAlpha?: boolean | undefined;
|
|
7530
|
-
readonly presetColors?: string[] | undefined;
|
|
7531
6048
|
readonly step?: number | undefined;
|
|
7532
|
-
readonly showValue?: boolean | undefined;
|
|
7533
|
-
readonly marks?: Record<string, string> | undefined;
|
|
7534
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
7535
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
7536
|
-
readonly displayValue?: boolean | undefined;
|
|
7537
|
-
readonly allowScanning?: boolean | undefined;
|
|
7538
6049
|
readonly currencyConfig?: {
|
|
7539
6050
|
precision: number;
|
|
7540
6051
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -7588,29 +6099,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
7588
6099
|
} | undefined;
|
|
7589
6100
|
maxVersions?: number | undefined;
|
|
7590
6101
|
} | undefined;
|
|
7591
|
-
readonly
|
|
7592
|
-
field: string;
|
|
7593
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
7594
|
-
preserveFormat: boolean;
|
|
7595
|
-
preserveLength: boolean;
|
|
7596
|
-
pattern?: string | undefined;
|
|
7597
|
-
roles?: string[] | undefined;
|
|
7598
|
-
exemptRoles?: string[] | undefined;
|
|
7599
|
-
} | undefined;
|
|
7600
|
-
readonly auditTrail?: boolean | undefined;
|
|
7601
|
-
readonly cached?: {
|
|
7602
|
-
enabled: boolean;
|
|
7603
|
-
ttl: number;
|
|
7604
|
-
invalidateOn: string[];
|
|
7605
|
-
} | undefined;
|
|
7606
|
-
readonly dataQuality?: {
|
|
7607
|
-
uniqueness: boolean;
|
|
7608
|
-
completeness: number;
|
|
7609
|
-
accuracy?: {
|
|
7610
|
-
source: string;
|
|
7611
|
-
threshold: number;
|
|
7612
|
-
} | undefined;
|
|
7613
|
-
} | undefined;
|
|
6102
|
+
readonly trackHistory?: boolean | undefined;
|
|
7614
6103
|
readonly visibleWhen?: {
|
|
7615
6104
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7616
6105
|
source?: string | undefined;
|
|
@@ -7649,7 +6138,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
7649
6138
|
} | undefined;
|
|
7650
6139
|
readonly sortable?: boolean | undefined;
|
|
7651
6140
|
readonly inlineHelpText?: string | undefined;
|
|
7652
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
7653
6141
|
readonly caseSensitive?: boolean | undefined;
|
|
7654
6142
|
readonly autonumberFormat?: string | undefined;
|
|
7655
6143
|
readonly index?: boolean | undefined;
|
|
@@ -7671,7 +6159,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
7671
6159
|
readonly required?: boolean | undefined;
|
|
7672
6160
|
readonly multiple?: boolean | undefined;
|
|
7673
6161
|
readonly dependencies?: string[] | undefined;
|
|
7674
|
-
readonly theme?: string | undefined;
|
|
7675
6162
|
readonly externalId?: boolean | undefined;
|
|
7676
6163
|
readonly defaultValue?: unknown;
|
|
7677
6164
|
readonly group?: string | undefined;
|
|
@@ -7679,23 +6166,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
7679
6166
|
readonly system?: boolean | undefined;
|
|
7680
6167
|
readonly min?: number | undefined;
|
|
7681
6168
|
readonly max?: number | undefined;
|
|
7682
|
-
readonly encryptionConfig?: {
|
|
7683
|
-
enabled: boolean;
|
|
7684
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
7685
|
-
keyManagement: {
|
|
7686
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
7687
|
-
keyId?: string | undefined;
|
|
7688
|
-
rotationPolicy?: {
|
|
7689
|
-
enabled: boolean;
|
|
7690
|
-
frequencyDays: number;
|
|
7691
|
-
retainOldVersions: number;
|
|
7692
|
-
autoRotate: boolean;
|
|
7693
|
-
} | undefined;
|
|
7694
|
-
};
|
|
7695
|
-
scope: "record" | "field" | "table" | "database";
|
|
7696
|
-
deterministicEncryption: boolean;
|
|
7697
|
-
searchableEncryption: boolean;
|
|
7698
|
-
} | undefined;
|
|
7699
6169
|
readonly columnName?: string | undefined;
|
|
7700
6170
|
readonly searchable?: boolean | undefined;
|
|
7701
6171
|
readonly unique?: boolean | undefined;
|
|
@@ -7704,7 +6174,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
7704
6174
|
readonly scale?: number | undefined;
|
|
7705
6175
|
readonly reference?: string | undefined;
|
|
7706
6176
|
readonly referenceFilters?: string[] | undefined;
|
|
7707
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
7708
6177
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7709
6178
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
7710
6179
|
readonly inlineTitle?: string | undefined;
|
|
@@ -7729,22 +6198,8 @@ declare const SysSettingAudit: Omit<{
|
|
|
7729
6198
|
relationshipField?: string | undefined;
|
|
7730
6199
|
} | undefined;
|
|
7731
6200
|
readonly language?: string | undefined;
|
|
7732
|
-
readonly lineNumbers?: boolean | undefined;
|
|
7733
6201
|
readonly maxRating?: number | undefined;
|
|
7734
|
-
readonly allowHalf?: boolean | undefined;
|
|
7735
|
-
readonly displayMap?: boolean | undefined;
|
|
7736
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
7737
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
7738
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
7739
|
-
readonly allowAlpha?: boolean | undefined;
|
|
7740
|
-
readonly presetColors?: string[] | undefined;
|
|
7741
6202
|
readonly step?: number | undefined;
|
|
7742
|
-
readonly showValue?: boolean | undefined;
|
|
7743
|
-
readonly marks?: Record<string, string> | undefined;
|
|
7744
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
7745
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
7746
|
-
readonly displayValue?: boolean | undefined;
|
|
7747
|
-
readonly allowScanning?: boolean | undefined;
|
|
7748
6203
|
readonly currencyConfig?: {
|
|
7749
6204
|
precision: number;
|
|
7750
6205
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -7798,29 +6253,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
7798
6253
|
} | undefined;
|
|
7799
6254
|
maxVersions?: number | undefined;
|
|
7800
6255
|
} | undefined;
|
|
7801
|
-
readonly
|
|
7802
|
-
field: string;
|
|
7803
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
7804
|
-
preserveFormat: boolean;
|
|
7805
|
-
preserveLength: boolean;
|
|
7806
|
-
pattern?: string | undefined;
|
|
7807
|
-
roles?: string[] | undefined;
|
|
7808
|
-
exemptRoles?: string[] | undefined;
|
|
7809
|
-
} | undefined;
|
|
7810
|
-
readonly auditTrail?: boolean | undefined;
|
|
7811
|
-
readonly cached?: {
|
|
7812
|
-
enabled: boolean;
|
|
7813
|
-
ttl: number;
|
|
7814
|
-
invalidateOn: string[];
|
|
7815
|
-
} | undefined;
|
|
7816
|
-
readonly dataQuality?: {
|
|
7817
|
-
uniqueness: boolean;
|
|
7818
|
-
completeness: number;
|
|
7819
|
-
accuracy?: {
|
|
7820
|
-
source: string;
|
|
7821
|
-
threshold: number;
|
|
7822
|
-
} | undefined;
|
|
7823
|
-
} | undefined;
|
|
6256
|
+
readonly trackHistory?: boolean | undefined;
|
|
7824
6257
|
readonly visibleWhen?: {
|
|
7825
6258
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7826
6259
|
source?: string | undefined;
|
|
@@ -7859,7 +6292,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
7859
6292
|
} | undefined;
|
|
7860
6293
|
readonly sortable?: boolean | undefined;
|
|
7861
6294
|
readonly inlineHelpText?: string | undefined;
|
|
7862
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
7863
6295
|
readonly caseSensitive?: boolean | undefined;
|
|
7864
6296
|
readonly autonumberFormat?: string | undefined;
|
|
7865
6297
|
readonly index?: boolean | undefined;
|
|
@@ -7881,7 +6313,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
7881
6313
|
readonly required?: boolean | undefined;
|
|
7882
6314
|
readonly multiple?: boolean | undefined;
|
|
7883
6315
|
readonly dependencies?: string[] | undefined;
|
|
7884
|
-
readonly theme?: string | undefined;
|
|
7885
6316
|
readonly externalId?: boolean | undefined;
|
|
7886
6317
|
readonly defaultValue?: unknown;
|
|
7887
6318
|
readonly group?: string | undefined;
|
|
@@ -7889,23 +6320,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
7889
6320
|
readonly system?: boolean | undefined;
|
|
7890
6321
|
readonly min?: number | undefined;
|
|
7891
6322
|
readonly max?: number | undefined;
|
|
7892
|
-
readonly encryptionConfig?: {
|
|
7893
|
-
enabled: boolean;
|
|
7894
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
7895
|
-
keyManagement: {
|
|
7896
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
7897
|
-
keyId?: string | undefined;
|
|
7898
|
-
rotationPolicy?: {
|
|
7899
|
-
enabled: boolean;
|
|
7900
|
-
frequencyDays: number;
|
|
7901
|
-
retainOldVersions: number;
|
|
7902
|
-
autoRotate: boolean;
|
|
7903
|
-
} | undefined;
|
|
7904
|
-
};
|
|
7905
|
-
scope: "record" | "field" | "table" | "database";
|
|
7906
|
-
deterministicEncryption: boolean;
|
|
7907
|
-
searchableEncryption: boolean;
|
|
7908
|
-
} | undefined;
|
|
7909
6323
|
readonly columnName?: string | undefined;
|
|
7910
6324
|
readonly searchable?: boolean | undefined;
|
|
7911
6325
|
readonly unique?: boolean | undefined;
|
|
@@ -7914,7 +6328,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
7914
6328
|
readonly scale?: number | undefined;
|
|
7915
6329
|
readonly reference?: string | undefined;
|
|
7916
6330
|
readonly referenceFilters?: string[] | undefined;
|
|
7917
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
7918
6331
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7919
6332
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
7920
6333
|
readonly inlineTitle?: string | undefined;
|
|
@@ -7939,22 +6352,8 @@ declare const SysSettingAudit: Omit<{
|
|
|
7939
6352
|
relationshipField?: string | undefined;
|
|
7940
6353
|
} | undefined;
|
|
7941
6354
|
readonly language?: string | undefined;
|
|
7942
|
-
readonly lineNumbers?: boolean | undefined;
|
|
7943
6355
|
readonly maxRating?: number | undefined;
|
|
7944
|
-
readonly allowHalf?: boolean | undefined;
|
|
7945
|
-
readonly displayMap?: boolean | undefined;
|
|
7946
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
7947
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
7948
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
7949
|
-
readonly allowAlpha?: boolean | undefined;
|
|
7950
|
-
readonly presetColors?: string[] | undefined;
|
|
7951
6356
|
readonly step?: number | undefined;
|
|
7952
|
-
readonly showValue?: boolean | undefined;
|
|
7953
|
-
readonly marks?: Record<string, string> | undefined;
|
|
7954
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
7955
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
7956
|
-
readonly displayValue?: boolean | undefined;
|
|
7957
|
-
readonly allowScanning?: boolean | undefined;
|
|
7958
6357
|
readonly currencyConfig?: {
|
|
7959
6358
|
precision: number;
|
|
7960
6359
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -8008,29 +6407,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
8008
6407
|
} | undefined;
|
|
8009
6408
|
maxVersions?: number | undefined;
|
|
8010
6409
|
} | undefined;
|
|
8011
|
-
readonly
|
|
8012
|
-
field: string;
|
|
8013
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
8014
|
-
preserveFormat: boolean;
|
|
8015
|
-
preserveLength: boolean;
|
|
8016
|
-
pattern?: string | undefined;
|
|
8017
|
-
roles?: string[] | undefined;
|
|
8018
|
-
exemptRoles?: string[] | undefined;
|
|
8019
|
-
} | undefined;
|
|
8020
|
-
readonly auditTrail?: boolean | undefined;
|
|
8021
|
-
readonly cached?: {
|
|
8022
|
-
enabled: boolean;
|
|
8023
|
-
ttl: number;
|
|
8024
|
-
invalidateOn: string[];
|
|
8025
|
-
} | undefined;
|
|
8026
|
-
readonly dataQuality?: {
|
|
8027
|
-
uniqueness: boolean;
|
|
8028
|
-
completeness: number;
|
|
8029
|
-
accuracy?: {
|
|
8030
|
-
source: string;
|
|
8031
|
-
threshold: number;
|
|
8032
|
-
} | undefined;
|
|
8033
|
-
} | undefined;
|
|
6410
|
+
readonly trackHistory?: boolean | undefined;
|
|
8034
6411
|
readonly visibleWhen?: {
|
|
8035
6412
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8036
6413
|
source?: string | undefined;
|
|
@@ -8069,7 +6446,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
8069
6446
|
} | undefined;
|
|
8070
6447
|
readonly sortable?: boolean | undefined;
|
|
8071
6448
|
readonly inlineHelpText?: string | undefined;
|
|
8072
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
8073
6449
|
readonly caseSensitive?: boolean | undefined;
|
|
8074
6450
|
readonly autonumberFormat?: string | undefined;
|
|
8075
6451
|
readonly index?: boolean | undefined;
|
|
@@ -8091,7 +6467,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
8091
6467
|
readonly required?: boolean | undefined;
|
|
8092
6468
|
readonly multiple?: boolean | undefined;
|
|
8093
6469
|
readonly dependencies?: string[] | undefined;
|
|
8094
|
-
readonly theme?: string | undefined;
|
|
8095
6470
|
readonly externalId?: boolean | undefined;
|
|
8096
6471
|
readonly defaultValue?: unknown;
|
|
8097
6472
|
readonly group?: string | undefined;
|
|
@@ -8099,23 +6474,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
8099
6474
|
readonly system?: boolean | undefined;
|
|
8100
6475
|
readonly min?: number | undefined;
|
|
8101
6476
|
readonly max?: number | undefined;
|
|
8102
|
-
readonly encryptionConfig?: {
|
|
8103
|
-
enabled: boolean;
|
|
8104
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
8105
|
-
keyManagement: {
|
|
8106
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
8107
|
-
keyId?: string | undefined;
|
|
8108
|
-
rotationPolicy?: {
|
|
8109
|
-
enabled: boolean;
|
|
8110
|
-
frequencyDays: number;
|
|
8111
|
-
retainOldVersions: number;
|
|
8112
|
-
autoRotate: boolean;
|
|
8113
|
-
} | undefined;
|
|
8114
|
-
};
|
|
8115
|
-
scope: "record" | "field" | "table" | "database";
|
|
8116
|
-
deterministicEncryption: boolean;
|
|
8117
|
-
searchableEncryption: boolean;
|
|
8118
|
-
} | undefined;
|
|
8119
6477
|
readonly columnName?: string | undefined;
|
|
8120
6478
|
readonly searchable?: boolean | undefined;
|
|
8121
6479
|
readonly unique?: boolean | undefined;
|
|
@@ -8124,7 +6482,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
8124
6482
|
readonly scale?: number | undefined;
|
|
8125
6483
|
readonly reference?: string | undefined;
|
|
8126
6484
|
readonly referenceFilters?: string[] | undefined;
|
|
8127
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
8128
6485
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
8129
6486
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
8130
6487
|
readonly inlineTitle?: string | undefined;
|
|
@@ -8149,22 +6506,8 @@ declare const SysSettingAudit: Omit<{
|
|
|
8149
6506
|
relationshipField?: string | undefined;
|
|
8150
6507
|
} | undefined;
|
|
8151
6508
|
readonly language?: string | undefined;
|
|
8152
|
-
readonly lineNumbers?: boolean | undefined;
|
|
8153
6509
|
readonly maxRating?: number | undefined;
|
|
8154
|
-
readonly allowHalf?: boolean | undefined;
|
|
8155
|
-
readonly displayMap?: boolean | undefined;
|
|
8156
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
8157
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
8158
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
8159
|
-
readonly allowAlpha?: boolean | undefined;
|
|
8160
|
-
readonly presetColors?: string[] | undefined;
|
|
8161
6510
|
readonly step?: number | undefined;
|
|
8162
|
-
readonly showValue?: boolean | undefined;
|
|
8163
|
-
readonly marks?: Record<string, string> | undefined;
|
|
8164
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
8165
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
8166
|
-
readonly displayValue?: boolean | undefined;
|
|
8167
|
-
readonly allowScanning?: boolean | undefined;
|
|
8168
6511
|
readonly currencyConfig?: {
|
|
8169
6512
|
precision: number;
|
|
8170
6513
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -8218,29 +6561,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
8218
6561
|
} | undefined;
|
|
8219
6562
|
maxVersions?: number | undefined;
|
|
8220
6563
|
} | undefined;
|
|
8221
|
-
readonly
|
|
8222
|
-
field: string;
|
|
8223
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
8224
|
-
preserveFormat: boolean;
|
|
8225
|
-
preserveLength: boolean;
|
|
8226
|
-
pattern?: string | undefined;
|
|
8227
|
-
roles?: string[] | undefined;
|
|
8228
|
-
exemptRoles?: string[] | undefined;
|
|
8229
|
-
} | undefined;
|
|
8230
|
-
readonly auditTrail?: boolean | undefined;
|
|
8231
|
-
readonly cached?: {
|
|
8232
|
-
enabled: boolean;
|
|
8233
|
-
ttl: number;
|
|
8234
|
-
invalidateOn: string[];
|
|
8235
|
-
} | undefined;
|
|
8236
|
-
readonly dataQuality?: {
|
|
8237
|
-
uniqueness: boolean;
|
|
8238
|
-
completeness: number;
|
|
8239
|
-
accuracy?: {
|
|
8240
|
-
source: string;
|
|
8241
|
-
threshold: number;
|
|
8242
|
-
} | undefined;
|
|
8243
|
-
} | undefined;
|
|
6564
|
+
readonly trackHistory?: boolean | undefined;
|
|
8244
6565
|
readonly visibleWhen?: {
|
|
8245
6566
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8246
6567
|
source?: string | undefined;
|
|
@@ -8279,7 +6600,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
8279
6600
|
} | undefined;
|
|
8280
6601
|
readonly sortable?: boolean | undefined;
|
|
8281
6602
|
readonly inlineHelpText?: string | undefined;
|
|
8282
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
8283
6603
|
readonly caseSensitive?: boolean | undefined;
|
|
8284
6604
|
readonly autonumberFormat?: string | undefined;
|
|
8285
6605
|
readonly index?: boolean | undefined;
|
|
@@ -8301,7 +6621,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
8301
6621
|
readonly required?: boolean | undefined;
|
|
8302
6622
|
readonly multiple?: boolean | undefined;
|
|
8303
6623
|
readonly dependencies?: string[] | undefined;
|
|
8304
|
-
readonly theme?: string | undefined;
|
|
8305
6624
|
readonly externalId?: boolean | undefined;
|
|
8306
6625
|
readonly defaultValue?: unknown;
|
|
8307
6626
|
readonly group?: string | undefined;
|
|
@@ -8309,23 +6628,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
8309
6628
|
readonly system?: boolean | undefined;
|
|
8310
6629
|
readonly min?: number | undefined;
|
|
8311
6630
|
readonly max?: number | undefined;
|
|
8312
|
-
readonly encryptionConfig?: {
|
|
8313
|
-
enabled: boolean;
|
|
8314
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
8315
|
-
keyManagement: {
|
|
8316
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
8317
|
-
keyId?: string | undefined;
|
|
8318
|
-
rotationPolicy?: {
|
|
8319
|
-
enabled: boolean;
|
|
8320
|
-
frequencyDays: number;
|
|
8321
|
-
retainOldVersions: number;
|
|
8322
|
-
autoRotate: boolean;
|
|
8323
|
-
} | undefined;
|
|
8324
|
-
};
|
|
8325
|
-
scope: "record" | "field" | "table" | "database";
|
|
8326
|
-
deterministicEncryption: boolean;
|
|
8327
|
-
searchableEncryption: boolean;
|
|
8328
|
-
} | undefined;
|
|
8329
6631
|
readonly columnName?: string | undefined;
|
|
8330
6632
|
readonly searchable?: boolean | undefined;
|
|
8331
6633
|
readonly unique?: boolean | undefined;
|
|
@@ -8334,7 +6636,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
8334
6636
|
readonly scale?: number | undefined;
|
|
8335
6637
|
readonly reference?: string | undefined;
|
|
8336
6638
|
readonly referenceFilters?: string[] | undefined;
|
|
8337
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
8338
6639
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
8339
6640
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
8340
6641
|
readonly inlineTitle?: string | undefined;
|
|
@@ -8359,22 +6660,8 @@ declare const SysSettingAudit: Omit<{
|
|
|
8359
6660
|
relationshipField?: string | undefined;
|
|
8360
6661
|
} | undefined;
|
|
8361
6662
|
readonly language?: string | undefined;
|
|
8362
|
-
readonly lineNumbers?: boolean | undefined;
|
|
8363
6663
|
readonly maxRating?: number | undefined;
|
|
8364
|
-
readonly allowHalf?: boolean | undefined;
|
|
8365
|
-
readonly displayMap?: boolean | undefined;
|
|
8366
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
8367
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
8368
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
8369
|
-
readonly allowAlpha?: boolean | undefined;
|
|
8370
|
-
readonly presetColors?: string[] | undefined;
|
|
8371
6664
|
readonly step?: number | undefined;
|
|
8372
|
-
readonly showValue?: boolean | undefined;
|
|
8373
|
-
readonly marks?: Record<string, string> | undefined;
|
|
8374
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
8375
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
8376
|
-
readonly displayValue?: boolean | undefined;
|
|
8377
|
-
readonly allowScanning?: boolean | undefined;
|
|
8378
6665
|
readonly currencyConfig?: {
|
|
8379
6666
|
precision: number;
|
|
8380
6667
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -8428,29 +6715,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
8428
6715
|
} | undefined;
|
|
8429
6716
|
maxVersions?: number | undefined;
|
|
8430
6717
|
} | undefined;
|
|
8431
|
-
readonly
|
|
8432
|
-
field: string;
|
|
8433
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
8434
|
-
preserveFormat: boolean;
|
|
8435
|
-
preserveLength: boolean;
|
|
8436
|
-
pattern?: string | undefined;
|
|
8437
|
-
roles?: string[] | undefined;
|
|
8438
|
-
exemptRoles?: string[] | undefined;
|
|
8439
|
-
} | undefined;
|
|
8440
|
-
readonly auditTrail?: boolean | undefined;
|
|
8441
|
-
readonly cached?: {
|
|
8442
|
-
enabled: boolean;
|
|
8443
|
-
ttl: number;
|
|
8444
|
-
invalidateOn: string[];
|
|
8445
|
-
} | undefined;
|
|
8446
|
-
readonly dataQuality?: {
|
|
8447
|
-
uniqueness: boolean;
|
|
8448
|
-
completeness: number;
|
|
8449
|
-
accuracy?: {
|
|
8450
|
-
source: string;
|
|
8451
|
-
threshold: number;
|
|
8452
|
-
} | undefined;
|
|
8453
|
-
} | undefined;
|
|
6718
|
+
readonly trackHistory?: boolean | undefined;
|
|
8454
6719
|
readonly visibleWhen?: {
|
|
8455
6720
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8456
6721
|
source?: string | undefined;
|
|
@@ -8489,7 +6754,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
8489
6754
|
} | undefined;
|
|
8490
6755
|
readonly sortable?: boolean | undefined;
|
|
8491
6756
|
readonly inlineHelpText?: string | undefined;
|
|
8492
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
8493
6757
|
readonly caseSensitive?: boolean | undefined;
|
|
8494
6758
|
readonly autonumberFormat?: string | undefined;
|
|
8495
6759
|
readonly index?: boolean | undefined;
|
|
@@ -8511,7 +6775,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
8511
6775
|
readonly required?: boolean | undefined;
|
|
8512
6776
|
readonly multiple?: boolean | undefined;
|
|
8513
6777
|
readonly dependencies?: string[] | undefined;
|
|
8514
|
-
readonly theme?: string | undefined;
|
|
8515
6778
|
readonly externalId?: boolean | undefined;
|
|
8516
6779
|
readonly defaultValue?: unknown;
|
|
8517
6780
|
readonly group?: string | undefined;
|
|
@@ -8519,23 +6782,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
8519
6782
|
readonly system?: boolean | undefined;
|
|
8520
6783
|
readonly min?: number | undefined;
|
|
8521
6784
|
readonly max?: number | undefined;
|
|
8522
|
-
readonly encryptionConfig?: {
|
|
8523
|
-
enabled: boolean;
|
|
8524
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
8525
|
-
keyManagement: {
|
|
8526
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
8527
|
-
keyId?: string | undefined;
|
|
8528
|
-
rotationPolicy?: {
|
|
8529
|
-
enabled: boolean;
|
|
8530
|
-
frequencyDays: number;
|
|
8531
|
-
retainOldVersions: number;
|
|
8532
|
-
autoRotate: boolean;
|
|
8533
|
-
} | undefined;
|
|
8534
|
-
};
|
|
8535
|
-
scope: "record" | "field" | "table" | "database";
|
|
8536
|
-
deterministicEncryption: boolean;
|
|
8537
|
-
searchableEncryption: boolean;
|
|
8538
|
-
} | undefined;
|
|
8539
6785
|
readonly columnName?: string | undefined;
|
|
8540
6786
|
readonly searchable?: boolean | undefined;
|
|
8541
6787
|
readonly unique?: boolean | undefined;
|
|
@@ -8544,7 +6790,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
8544
6790
|
readonly scale?: number | undefined;
|
|
8545
6791
|
reference: string;
|
|
8546
6792
|
readonly referenceFilters?: string[] | undefined;
|
|
8547
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
8548
6793
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
8549
6794
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
8550
6795
|
readonly inlineTitle?: string | undefined;
|
|
@@ -8569,22 +6814,8 @@ declare const SysSettingAudit: Omit<{
|
|
|
8569
6814
|
relationshipField?: string | undefined;
|
|
8570
6815
|
} | undefined;
|
|
8571
6816
|
readonly language?: string | undefined;
|
|
8572
|
-
readonly lineNumbers?: boolean | undefined;
|
|
8573
6817
|
readonly maxRating?: number | undefined;
|
|
8574
|
-
readonly allowHalf?: boolean | undefined;
|
|
8575
|
-
readonly displayMap?: boolean | undefined;
|
|
8576
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
8577
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
8578
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
8579
|
-
readonly allowAlpha?: boolean | undefined;
|
|
8580
|
-
readonly presetColors?: string[] | undefined;
|
|
8581
6818
|
readonly step?: number | undefined;
|
|
8582
|
-
readonly showValue?: boolean | undefined;
|
|
8583
|
-
readonly marks?: Record<string, string> | undefined;
|
|
8584
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
8585
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
8586
|
-
readonly displayValue?: boolean | undefined;
|
|
8587
|
-
readonly allowScanning?: boolean | undefined;
|
|
8588
6819
|
readonly currencyConfig?: {
|
|
8589
6820
|
precision: number;
|
|
8590
6821
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -8638,29 +6869,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
8638
6869
|
} | undefined;
|
|
8639
6870
|
maxVersions?: number | undefined;
|
|
8640
6871
|
} | undefined;
|
|
8641
|
-
readonly
|
|
8642
|
-
field: string;
|
|
8643
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
8644
|
-
preserveFormat: boolean;
|
|
8645
|
-
preserveLength: boolean;
|
|
8646
|
-
pattern?: string | undefined;
|
|
8647
|
-
roles?: string[] | undefined;
|
|
8648
|
-
exemptRoles?: string[] | undefined;
|
|
8649
|
-
} | undefined;
|
|
8650
|
-
readonly auditTrail?: boolean | undefined;
|
|
8651
|
-
readonly cached?: {
|
|
8652
|
-
enabled: boolean;
|
|
8653
|
-
ttl: number;
|
|
8654
|
-
invalidateOn: string[];
|
|
8655
|
-
} | undefined;
|
|
8656
|
-
readonly dataQuality?: {
|
|
8657
|
-
uniqueness: boolean;
|
|
8658
|
-
completeness: number;
|
|
8659
|
-
accuracy?: {
|
|
8660
|
-
source: string;
|
|
8661
|
-
threshold: number;
|
|
8662
|
-
} | undefined;
|
|
8663
|
-
} | undefined;
|
|
6872
|
+
readonly trackHistory?: boolean | undefined;
|
|
8664
6873
|
readonly visibleWhen?: {
|
|
8665
6874
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8666
6875
|
source?: string | undefined;
|
|
@@ -8699,7 +6908,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
8699
6908
|
} | undefined;
|
|
8700
6909
|
readonly sortable?: boolean | undefined;
|
|
8701
6910
|
readonly inlineHelpText?: string | undefined;
|
|
8702
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
8703
6911
|
readonly caseSensitive?: boolean | undefined;
|
|
8704
6912
|
readonly autonumberFormat?: string | undefined;
|
|
8705
6913
|
readonly index?: boolean | undefined;
|
|
@@ -8726,7 +6934,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
8726
6934
|
readonly required?: boolean | undefined;
|
|
8727
6935
|
readonly multiple?: boolean | undefined;
|
|
8728
6936
|
readonly dependencies?: string[] | undefined;
|
|
8729
|
-
readonly theme?: string | undefined;
|
|
8730
6937
|
readonly externalId?: boolean | undefined;
|
|
8731
6938
|
readonly defaultValue?: unknown;
|
|
8732
6939
|
readonly group?: string | undefined;
|
|
@@ -8734,23 +6941,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
8734
6941
|
readonly system?: boolean | undefined;
|
|
8735
6942
|
readonly min?: number | undefined;
|
|
8736
6943
|
readonly max?: number | undefined;
|
|
8737
|
-
readonly encryptionConfig?: {
|
|
8738
|
-
enabled: boolean;
|
|
8739
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
8740
|
-
keyManagement: {
|
|
8741
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
8742
|
-
keyId?: string | undefined;
|
|
8743
|
-
rotationPolicy?: {
|
|
8744
|
-
enabled: boolean;
|
|
8745
|
-
frequencyDays: number;
|
|
8746
|
-
retainOldVersions: number;
|
|
8747
|
-
autoRotate: boolean;
|
|
8748
|
-
} | undefined;
|
|
8749
|
-
};
|
|
8750
|
-
scope: "record" | "field" | "table" | "database";
|
|
8751
|
-
deterministicEncryption: boolean;
|
|
8752
|
-
searchableEncryption: boolean;
|
|
8753
|
-
} | undefined;
|
|
8754
6944
|
readonly columnName?: string | undefined;
|
|
8755
6945
|
readonly searchable?: boolean | undefined;
|
|
8756
6946
|
readonly unique?: boolean | undefined;
|
|
@@ -8759,7 +6949,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
8759
6949
|
readonly scale?: number | undefined;
|
|
8760
6950
|
readonly reference?: string | undefined;
|
|
8761
6951
|
readonly referenceFilters?: string[] | undefined;
|
|
8762
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
8763
6952
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
8764
6953
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
8765
6954
|
readonly inlineTitle?: string | undefined;
|
|
@@ -8784,22 +6973,8 @@ declare const SysSettingAudit: Omit<{
|
|
|
8784
6973
|
relationshipField?: string | undefined;
|
|
8785
6974
|
} | undefined;
|
|
8786
6975
|
readonly language?: string | undefined;
|
|
8787
|
-
readonly lineNumbers?: boolean | undefined;
|
|
8788
6976
|
readonly maxRating?: number | undefined;
|
|
8789
|
-
readonly allowHalf?: boolean | undefined;
|
|
8790
|
-
readonly displayMap?: boolean | undefined;
|
|
8791
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
8792
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
8793
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
8794
|
-
readonly allowAlpha?: boolean | undefined;
|
|
8795
|
-
readonly presetColors?: string[] | undefined;
|
|
8796
6977
|
readonly step?: number | undefined;
|
|
8797
|
-
readonly showValue?: boolean | undefined;
|
|
8798
|
-
readonly marks?: Record<string, string> | undefined;
|
|
8799
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
8800
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
8801
|
-
readonly displayValue?: boolean | undefined;
|
|
8802
|
-
readonly allowScanning?: boolean | undefined;
|
|
8803
6978
|
readonly currencyConfig?: {
|
|
8804
6979
|
precision: number;
|
|
8805
6980
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -8853,29 +7028,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
8853
7028
|
} | undefined;
|
|
8854
7029
|
maxVersions?: number | undefined;
|
|
8855
7030
|
} | undefined;
|
|
8856
|
-
readonly
|
|
8857
|
-
field: string;
|
|
8858
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
8859
|
-
preserveFormat: boolean;
|
|
8860
|
-
preserveLength: boolean;
|
|
8861
|
-
pattern?: string | undefined;
|
|
8862
|
-
roles?: string[] | undefined;
|
|
8863
|
-
exemptRoles?: string[] | undefined;
|
|
8864
|
-
} | undefined;
|
|
8865
|
-
readonly auditTrail?: boolean | undefined;
|
|
8866
|
-
readonly cached?: {
|
|
8867
|
-
enabled: boolean;
|
|
8868
|
-
ttl: number;
|
|
8869
|
-
invalidateOn: string[];
|
|
8870
|
-
} | undefined;
|
|
8871
|
-
readonly dataQuality?: {
|
|
8872
|
-
uniqueness: boolean;
|
|
8873
|
-
completeness: number;
|
|
8874
|
-
accuracy?: {
|
|
8875
|
-
source: string;
|
|
8876
|
-
threshold: number;
|
|
8877
|
-
} | undefined;
|
|
8878
|
-
} | undefined;
|
|
7031
|
+
readonly trackHistory?: boolean | undefined;
|
|
8879
7032
|
readonly visibleWhen?: {
|
|
8880
7033
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8881
7034
|
source?: string | undefined;
|
|
@@ -8914,7 +7067,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
8914
7067
|
} | undefined;
|
|
8915
7068
|
readonly sortable?: boolean | undefined;
|
|
8916
7069
|
readonly inlineHelpText?: string | undefined;
|
|
8917
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
8918
7070
|
readonly caseSensitive?: boolean | undefined;
|
|
8919
7071
|
readonly autonumberFormat?: string | undefined;
|
|
8920
7072
|
readonly index?: boolean | undefined;
|
|
@@ -8937,7 +7089,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
8937
7089
|
readonly required?: boolean | undefined;
|
|
8938
7090
|
readonly multiple?: boolean | undefined;
|
|
8939
7091
|
readonly dependencies?: string[] | undefined;
|
|
8940
|
-
readonly theme?: string | undefined;
|
|
8941
7092
|
readonly externalId?: boolean | undefined;
|
|
8942
7093
|
readonly defaultValue?: unknown;
|
|
8943
7094
|
readonly group?: string | undefined;
|
|
@@ -8945,23 +7096,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
8945
7096
|
readonly system?: boolean | undefined;
|
|
8946
7097
|
readonly min?: number | undefined;
|
|
8947
7098
|
readonly max?: number | undefined;
|
|
8948
|
-
readonly encryptionConfig?: {
|
|
8949
|
-
enabled: boolean;
|
|
8950
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
8951
|
-
keyManagement: {
|
|
8952
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
8953
|
-
keyId?: string | undefined;
|
|
8954
|
-
rotationPolicy?: {
|
|
8955
|
-
enabled: boolean;
|
|
8956
|
-
frequencyDays: number;
|
|
8957
|
-
retainOldVersions: number;
|
|
8958
|
-
autoRotate: boolean;
|
|
8959
|
-
} | undefined;
|
|
8960
|
-
};
|
|
8961
|
-
scope: "record" | "field" | "table" | "database";
|
|
8962
|
-
deterministicEncryption: boolean;
|
|
8963
|
-
searchableEncryption: boolean;
|
|
8964
|
-
} | undefined;
|
|
8965
7099
|
readonly columnName?: string | undefined;
|
|
8966
7100
|
readonly searchable?: boolean | undefined;
|
|
8967
7101
|
readonly unique?: boolean | undefined;
|
|
@@ -8970,7 +7104,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
8970
7104
|
readonly scale?: number | undefined;
|
|
8971
7105
|
readonly reference?: string | undefined;
|
|
8972
7106
|
readonly referenceFilters?: string[] | undefined;
|
|
8973
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
8974
7107
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
8975
7108
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
8976
7109
|
readonly inlineTitle?: string | undefined;
|
|
@@ -8995,22 +7128,8 @@ declare const SysSettingAudit: Omit<{
|
|
|
8995
7128
|
relationshipField?: string | undefined;
|
|
8996
7129
|
} | undefined;
|
|
8997
7130
|
readonly language?: string | undefined;
|
|
8998
|
-
readonly lineNumbers?: boolean | undefined;
|
|
8999
7131
|
readonly maxRating?: number | undefined;
|
|
9000
|
-
readonly allowHalf?: boolean | undefined;
|
|
9001
|
-
readonly displayMap?: boolean | undefined;
|
|
9002
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
9003
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
9004
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
9005
|
-
readonly allowAlpha?: boolean | undefined;
|
|
9006
|
-
readonly presetColors?: string[] | undefined;
|
|
9007
7132
|
readonly step?: number | undefined;
|
|
9008
|
-
readonly showValue?: boolean | undefined;
|
|
9009
|
-
readonly marks?: Record<string, string> | undefined;
|
|
9010
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
9011
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
9012
|
-
readonly displayValue?: boolean | undefined;
|
|
9013
|
-
readonly allowScanning?: boolean | undefined;
|
|
9014
7133
|
readonly currencyConfig?: {
|
|
9015
7134
|
precision: number;
|
|
9016
7135
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -9064,29 +7183,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
9064
7183
|
} | undefined;
|
|
9065
7184
|
maxVersions?: number | undefined;
|
|
9066
7185
|
} | undefined;
|
|
9067
|
-
readonly
|
|
9068
|
-
field: string;
|
|
9069
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
9070
|
-
preserveFormat: boolean;
|
|
9071
|
-
preserveLength: boolean;
|
|
9072
|
-
pattern?: string | undefined;
|
|
9073
|
-
roles?: string[] | undefined;
|
|
9074
|
-
exemptRoles?: string[] | undefined;
|
|
9075
|
-
} | undefined;
|
|
9076
|
-
readonly auditTrail?: boolean | undefined;
|
|
9077
|
-
readonly cached?: {
|
|
9078
|
-
enabled: boolean;
|
|
9079
|
-
ttl: number;
|
|
9080
|
-
invalidateOn: string[];
|
|
9081
|
-
} | undefined;
|
|
9082
|
-
readonly dataQuality?: {
|
|
9083
|
-
uniqueness: boolean;
|
|
9084
|
-
completeness: number;
|
|
9085
|
-
accuracy?: {
|
|
9086
|
-
source: string;
|
|
9087
|
-
threshold: number;
|
|
9088
|
-
} | undefined;
|
|
9089
|
-
} | undefined;
|
|
7186
|
+
readonly trackHistory?: boolean | undefined;
|
|
9090
7187
|
readonly visibleWhen?: {
|
|
9091
7188
|
dialect: "cel" | "js" | "cron" | "template";
|
|
9092
7189
|
source?: string | undefined;
|
|
@@ -9125,7 +7222,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
9125
7222
|
} | undefined;
|
|
9126
7223
|
readonly sortable?: boolean | undefined;
|
|
9127
7224
|
readonly inlineHelpText?: string | undefined;
|
|
9128
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
9129
7225
|
readonly caseSensitive?: boolean | undefined;
|
|
9130
7226
|
readonly autonumberFormat?: string | undefined;
|
|
9131
7227
|
readonly index?: boolean | undefined;
|
|
@@ -9153,7 +7249,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
9153
7249
|
readonly required?: boolean | undefined;
|
|
9154
7250
|
readonly multiple?: boolean | undefined;
|
|
9155
7251
|
readonly dependencies?: string[] | undefined;
|
|
9156
|
-
readonly theme?: string | undefined;
|
|
9157
7252
|
readonly externalId?: boolean | undefined;
|
|
9158
7253
|
readonly defaultValue?: unknown;
|
|
9159
7254
|
readonly group?: string | undefined;
|
|
@@ -9161,23 +7256,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
9161
7256
|
readonly system?: boolean | undefined;
|
|
9162
7257
|
readonly min?: number | undefined;
|
|
9163
7258
|
readonly max?: number | undefined;
|
|
9164
|
-
readonly encryptionConfig?: {
|
|
9165
|
-
enabled: boolean;
|
|
9166
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
9167
|
-
keyManagement: {
|
|
9168
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
9169
|
-
keyId?: string | undefined;
|
|
9170
|
-
rotationPolicy?: {
|
|
9171
|
-
enabled: boolean;
|
|
9172
|
-
frequencyDays: number;
|
|
9173
|
-
retainOldVersions: number;
|
|
9174
|
-
autoRotate: boolean;
|
|
9175
|
-
} | undefined;
|
|
9176
|
-
};
|
|
9177
|
-
scope: "record" | "field" | "table" | "database";
|
|
9178
|
-
deterministicEncryption: boolean;
|
|
9179
|
-
searchableEncryption: boolean;
|
|
9180
|
-
} | undefined;
|
|
9181
7259
|
readonly columnName?: string | undefined;
|
|
9182
7260
|
readonly searchable?: boolean | undefined;
|
|
9183
7261
|
readonly unique?: boolean | undefined;
|
|
@@ -9186,7 +7264,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
9186
7264
|
readonly scale?: number | undefined;
|
|
9187
7265
|
readonly reference?: string | undefined;
|
|
9188
7266
|
readonly referenceFilters?: string[] | undefined;
|
|
9189
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
9190
7267
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
9191
7268
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
9192
7269
|
readonly inlineTitle?: string | undefined;
|
|
@@ -9211,22 +7288,8 @@ declare const SysSettingAudit: Omit<{
|
|
|
9211
7288
|
relationshipField?: string | undefined;
|
|
9212
7289
|
} | undefined;
|
|
9213
7290
|
readonly language?: string | undefined;
|
|
9214
|
-
readonly lineNumbers?: boolean | undefined;
|
|
9215
7291
|
readonly maxRating?: number | undefined;
|
|
9216
|
-
readonly allowHalf?: boolean | undefined;
|
|
9217
|
-
readonly displayMap?: boolean | undefined;
|
|
9218
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
9219
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
9220
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
9221
|
-
readonly allowAlpha?: boolean | undefined;
|
|
9222
|
-
readonly presetColors?: string[] | undefined;
|
|
9223
7292
|
readonly step?: number | undefined;
|
|
9224
|
-
readonly showValue?: boolean | undefined;
|
|
9225
|
-
readonly marks?: Record<string, string> | undefined;
|
|
9226
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
9227
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
9228
|
-
readonly displayValue?: boolean | undefined;
|
|
9229
|
-
readonly allowScanning?: boolean | undefined;
|
|
9230
7293
|
readonly currencyConfig?: {
|
|
9231
7294
|
precision: number;
|
|
9232
7295
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -9280,29 +7343,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
9280
7343
|
} | undefined;
|
|
9281
7344
|
maxVersions?: number | undefined;
|
|
9282
7345
|
} | undefined;
|
|
9283
|
-
readonly
|
|
9284
|
-
field: string;
|
|
9285
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
9286
|
-
preserveFormat: boolean;
|
|
9287
|
-
preserveLength: boolean;
|
|
9288
|
-
pattern?: string | undefined;
|
|
9289
|
-
roles?: string[] | undefined;
|
|
9290
|
-
exemptRoles?: string[] | undefined;
|
|
9291
|
-
} | undefined;
|
|
9292
|
-
readonly auditTrail?: boolean | undefined;
|
|
9293
|
-
readonly cached?: {
|
|
9294
|
-
enabled: boolean;
|
|
9295
|
-
ttl: number;
|
|
9296
|
-
invalidateOn: string[];
|
|
9297
|
-
} | undefined;
|
|
9298
|
-
readonly dataQuality?: {
|
|
9299
|
-
uniqueness: boolean;
|
|
9300
|
-
completeness: number;
|
|
9301
|
-
accuracy?: {
|
|
9302
|
-
source: string;
|
|
9303
|
-
threshold: number;
|
|
9304
|
-
} | undefined;
|
|
9305
|
-
} | undefined;
|
|
7346
|
+
readonly trackHistory?: boolean | undefined;
|
|
9306
7347
|
readonly visibleWhen?: {
|
|
9307
7348
|
dialect: "cel" | "js" | "cron" | "template";
|
|
9308
7349
|
source?: string | undefined;
|
|
@@ -9341,7 +7382,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
9341
7382
|
} | undefined;
|
|
9342
7383
|
readonly sortable?: boolean | undefined;
|
|
9343
7384
|
readonly inlineHelpText?: string | undefined;
|
|
9344
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
9345
7385
|
readonly caseSensitive?: boolean | undefined;
|
|
9346
7386
|
readonly autonumberFormat?: string | undefined;
|
|
9347
7387
|
readonly index?: boolean | undefined;
|
|
@@ -9364,7 +7404,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
9364
7404
|
readonly required?: boolean | undefined;
|
|
9365
7405
|
readonly multiple?: boolean | undefined;
|
|
9366
7406
|
readonly dependencies?: string[] | undefined;
|
|
9367
|
-
readonly theme?: string | undefined;
|
|
9368
7407
|
readonly externalId?: boolean | undefined;
|
|
9369
7408
|
readonly defaultValue?: unknown;
|
|
9370
7409
|
readonly group?: string | undefined;
|
|
@@ -9372,23 +7411,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
9372
7411
|
readonly system?: boolean | undefined;
|
|
9373
7412
|
readonly min?: number | undefined;
|
|
9374
7413
|
readonly max?: number | undefined;
|
|
9375
|
-
readonly encryptionConfig?: {
|
|
9376
|
-
enabled: boolean;
|
|
9377
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
9378
|
-
keyManagement: {
|
|
9379
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
9380
|
-
keyId?: string | undefined;
|
|
9381
|
-
rotationPolicy?: {
|
|
9382
|
-
enabled: boolean;
|
|
9383
|
-
frequencyDays: number;
|
|
9384
|
-
retainOldVersions: number;
|
|
9385
|
-
autoRotate: boolean;
|
|
9386
|
-
} | undefined;
|
|
9387
|
-
};
|
|
9388
|
-
scope: "record" | "field" | "table" | "database";
|
|
9389
|
-
deterministicEncryption: boolean;
|
|
9390
|
-
searchableEncryption: boolean;
|
|
9391
|
-
} | undefined;
|
|
9392
7414
|
readonly columnName?: string | undefined;
|
|
9393
7415
|
readonly searchable?: boolean | undefined;
|
|
9394
7416
|
readonly unique?: boolean | undefined;
|
|
@@ -9397,7 +7419,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
9397
7419
|
readonly scale?: number | undefined;
|
|
9398
7420
|
readonly reference?: string | undefined;
|
|
9399
7421
|
readonly referenceFilters?: string[] | undefined;
|
|
9400
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
9401
7422
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
9402
7423
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
9403
7424
|
readonly inlineTitle?: string | undefined;
|
|
@@ -9422,22 +7443,8 @@ declare const SysSettingAudit: Omit<{
|
|
|
9422
7443
|
relationshipField?: string | undefined;
|
|
9423
7444
|
} | undefined;
|
|
9424
7445
|
readonly language?: string | undefined;
|
|
9425
|
-
readonly lineNumbers?: boolean | undefined;
|
|
9426
7446
|
readonly maxRating?: number | undefined;
|
|
9427
|
-
readonly allowHalf?: boolean | undefined;
|
|
9428
|
-
readonly displayMap?: boolean | undefined;
|
|
9429
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
9430
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
9431
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
9432
|
-
readonly allowAlpha?: boolean | undefined;
|
|
9433
|
-
readonly presetColors?: string[] | undefined;
|
|
9434
7447
|
readonly step?: number | undefined;
|
|
9435
|
-
readonly showValue?: boolean | undefined;
|
|
9436
|
-
readonly marks?: Record<string, string> | undefined;
|
|
9437
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
9438
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
9439
|
-
readonly displayValue?: boolean | undefined;
|
|
9440
|
-
readonly allowScanning?: boolean | undefined;
|
|
9441
7448
|
readonly currencyConfig?: {
|
|
9442
7449
|
precision: number;
|
|
9443
7450
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -9491,29 +7498,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
9491
7498
|
} | undefined;
|
|
9492
7499
|
maxVersions?: number | undefined;
|
|
9493
7500
|
} | undefined;
|
|
9494
|
-
readonly
|
|
9495
|
-
field: string;
|
|
9496
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
9497
|
-
preserveFormat: boolean;
|
|
9498
|
-
preserveLength: boolean;
|
|
9499
|
-
pattern?: string | undefined;
|
|
9500
|
-
roles?: string[] | undefined;
|
|
9501
|
-
exemptRoles?: string[] | undefined;
|
|
9502
|
-
} | undefined;
|
|
9503
|
-
readonly auditTrail?: boolean | undefined;
|
|
9504
|
-
readonly cached?: {
|
|
9505
|
-
enabled: boolean;
|
|
9506
|
-
ttl: number;
|
|
9507
|
-
invalidateOn: string[];
|
|
9508
|
-
} | undefined;
|
|
9509
|
-
readonly dataQuality?: {
|
|
9510
|
-
uniqueness: boolean;
|
|
9511
|
-
completeness: number;
|
|
9512
|
-
accuracy?: {
|
|
9513
|
-
source: string;
|
|
9514
|
-
threshold: number;
|
|
9515
|
-
} | undefined;
|
|
9516
|
-
} | undefined;
|
|
7501
|
+
readonly trackHistory?: boolean | undefined;
|
|
9517
7502
|
readonly visibleWhen?: {
|
|
9518
7503
|
dialect: "cel" | "js" | "cron" | "template";
|
|
9519
7504
|
source?: string | undefined;
|
|
@@ -9552,7 +7537,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
9552
7537
|
} | undefined;
|
|
9553
7538
|
readonly sortable?: boolean | undefined;
|
|
9554
7539
|
readonly inlineHelpText?: string | undefined;
|
|
9555
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
9556
7540
|
readonly caseSensitive?: boolean | undefined;
|
|
9557
7541
|
readonly autonumberFormat?: string | undefined;
|
|
9558
7542
|
readonly index?: boolean | undefined;
|
|
@@ -9575,7 +7559,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
9575
7559
|
readonly required?: boolean | undefined;
|
|
9576
7560
|
readonly multiple?: boolean | undefined;
|
|
9577
7561
|
readonly dependencies?: string[] | undefined;
|
|
9578
|
-
readonly theme?: string | undefined;
|
|
9579
7562
|
readonly externalId?: boolean | undefined;
|
|
9580
7563
|
readonly defaultValue?: unknown;
|
|
9581
7564
|
readonly group?: string | undefined;
|
|
@@ -9583,23 +7566,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
9583
7566
|
readonly system?: boolean | undefined;
|
|
9584
7567
|
readonly min?: number | undefined;
|
|
9585
7568
|
readonly max?: number | undefined;
|
|
9586
|
-
readonly encryptionConfig?: {
|
|
9587
|
-
enabled: boolean;
|
|
9588
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
9589
|
-
keyManagement: {
|
|
9590
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
9591
|
-
keyId?: string | undefined;
|
|
9592
|
-
rotationPolicy?: {
|
|
9593
|
-
enabled: boolean;
|
|
9594
|
-
frequencyDays: number;
|
|
9595
|
-
retainOldVersions: number;
|
|
9596
|
-
autoRotate: boolean;
|
|
9597
|
-
} | undefined;
|
|
9598
|
-
};
|
|
9599
|
-
scope: "record" | "field" | "table" | "database";
|
|
9600
|
-
deterministicEncryption: boolean;
|
|
9601
|
-
searchableEncryption: boolean;
|
|
9602
|
-
} | undefined;
|
|
9603
7569
|
readonly columnName?: string | undefined;
|
|
9604
7570
|
readonly searchable?: boolean | undefined;
|
|
9605
7571
|
readonly unique?: boolean | undefined;
|
|
@@ -9608,7 +7574,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
9608
7574
|
readonly scale?: number | undefined;
|
|
9609
7575
|
readonly reference?: string | undefined;
|
|
9610
7576
|
readonly referenceFilters?: string[] | undefined;
|
|
9611
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
9612
7577
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
9613
7578
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
9614
7579
|
readonly inlineTitle?: string | undefined;
|
|
@@ -9633,22 +7598,8 @@ declare const SysSettingAudit: Omit<{
|
|
|
9633
7598
|
relationshipField?: string | undefined;
|
|
9634
7599
|
} | undefined;
|
|
9635
7600
|
readonly language?: string | undefined;
|
|
9636
|
-
readonly lineNumbers?: boolean | undefined;
|
|
9637
7601
|
readonly maxRating?: number | undefined;
|
|
9638
|
-
readonly allowHalf?: boolean | undefined;
|
|
9639
|
-
readonly displayMap?: boolean | undefined;
|
|
9640
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
9641
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
9642
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
9643
|
-
readonly allowAlpha?: boolean | undefined;
|
|
9644
|
-
readonly presetColors?: string[] | undefined;
|
|
9645
7602
|
readonly step?: number | undefined;
|
|
9646
|
-
readonly showValue?: boolean | undefined;
|
|
9647
|
-
readonly marks?: Record<string, string> | undefined;
|
|
9648
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
9649
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
9650
|
-
readonly displayValue?: boolean | undefined;
|
|
9651
|
-
readonly allowScanning?: boolean | undefined;
|
|
9652
7603
|
readonly currencyConfig?: {
|
|
9653
7604
|
precision: number;
|
|
9654
7605
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -9702,29 +7653,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
9702
7653
|
} | undefined;
|
|
9703
7654
|
maxVersions?: number | undefined;
|
|
9704
7655
|
} | undefined;
|
|
9705
|
-
readonly
|
|
9706
|
-
field: string;
|
|
9707
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
9708
|
-
preserveFormat: boolean;
|
|
9709
|
-
preserveLength: boolean;
|
|
9710
|
-
pattern?: string | undefined;
|
|
9711
|
-
roles?: string[] | undefined;
|
|
9712
|
-
exemptRoles?: string[] | undefined;
|
|
9713
|
-
} | undefined;
|
|
9714
|
-
readonly auditTrail?: boolean | undefined;
|
|
9715
|
-
readonly cached?: {
|
|
9716
|
-
enabled: boolean;
|
|
9717
|
-
ttl: number;
|
|
9718
|
-
invalidateOn: string[];
|
|
9719
|
-
} | undefined;
|
|
9720
|
-
readonly dataQuality?: {
|
|
9721
|
-
uniqueness: boolean;
|
|
9722
|
-
completeness: number;
|
|
9723
|
-
accuracy?: {
|
|
9724
|
-
source: string;
|
|
9725
|
-
threshold: number;
|
|
9726
|
-
} | undefined;
|
|
9727
|
-
} | undefined;
|
|
7656
|
+
readonly trackHistory?: boolean | undefined;
|
|
9728
7657
|
readonly visibleWhen?: {
|
|
9729
7658
|
dialect: "cel" | "js" | "cron" | "template";
|
|
9730
7659
|
source?: string | undefined;
|
|
@@ -9763,7 +7692,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
9763
7692
|
} | undefined;
|
|
9764
7693
|
readonly sortable?: boolean | undefined;
|
|
9765
7694
|
readonly inlineHelpText?: string | undefined;
|
|
9766
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
9767
7695
|
readonly caseSensitive?: boolean | undefined;
|
|
9768
7696
|
readonly autonumberFormat?: string | undefined;
|
|
9769
7697
|
readonly index?: boolean | undefined;
|
|
@@ -9786,7 +7714,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
9786
7714
|
readonly required?: boolean | undefined;
|
|
9787
7715
|
readonly multiple?: boolean | undefined;
|
|
9788
7716
|
readonly dependencies?: string[] | undefined;
|
|
9789
|
-
readonly theme?: string | undefined;
|
|
9790
7717
|
readonly externalId?: boolean | undefined;
|
|
9791
7718
|
readonly defaultValue?: unknown;
|
|
9792
7719
|
readonly group?: string | undefined;
|
|
@@ -9794,23 +7721,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
9794
7721
|
readonly system?: boolean | undefined;
|
|
9795
7722
|
readonly min?: number | undefined;
|
|
9796
7723
|
readonly max?: number | undefined;
|
|
9797
|
-
readonly encryptionConfig?: {
|
|
9798
|
-
enabled: boolean;
|
|
9799
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
9800
|
-
keyManagement: {
|
|
9801
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
9802
|
-
keyId?: string | undefined;
|
|
9803
|
-
rotationPolicy?: {
|
|
9804
|
-
enabled: boolean;
|
|
9805
|
-
frequencyDays: number;
|
|
9806
|
-
retainOldVersions: number;
|
|
9807
|
-
autoRotate: boolean;
|
|
9808
|
-
} | undefined;
|
|
9809
|
-
};
|
|
9810
|
-
scope: "record" | "field" | "table" | "database";
|
|
9811
|
-
deterministicEncryption: boolean;
|
|
9812
|
-
searchableEncryption: boolean;
|
|
9813
|
-
} | undefined;
|
|
9814
7724
|
readonly columnName?: string | undefined;
|
|
9815
7725
|
readonly searchable?: boolean | undefined;
|
|
9816
7726
|
readonly unique?: boolean | undefined;
|
|
@@ -9819,7 +7729,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
9819
7729
|
readonly scale?: number | undefined;
|
|
9820
7730
|
readonly reference?: string | undefined;
|
|
9821
7731
|
readonly referenceFilters?: string[] | undefined;
|
|
9822
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
9823
7732
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
9824
7733
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
9825
7734
|
readonly inlineTitle?: string | undefined;
|
|
@@ -9844,22 +7753,8 @@ declare const SysSettingAudit: Omit<{
|
|
|
9844
7753
|
relationshipField?: string | undefined;
|
|
9845
7754
|
} | undefined;
|
|
9846
7755
|
readonly language?: string | undefined;
|
|
9847
|
-
readonly lineNumbers?: boolean | undefined;
|
|
9848
7756
|
readonly maxRating?: number | undefined;
|
|
9849
|
-
readonly allowHalf?: boolean | undefined;
|
|
9850
|
-
readonly displayMap?: boolean | undefined;
|
|
9851
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
9852
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
9853
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
9854
|
-
readonly allowAlpha?: boolean | undefined;
|
|
9855
|
-
readonly presetColors?: string[] | undefined;
|
|
9856
7757
|
readonly step?: number | undefined;
|
|
9857
|
-
readonly showValue?: boolean | undefined;
|
|
9858
|
-
readonly marks?: Record<string, string> | undefined;
|
|
9859
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
9860
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
9861
|
-
readonly displayValue?: boolean | undefined;
|
|
9862
|
-
readonly allowScanning?: boolean | undefined;
|
|
9863
7758
|
readonly currencyConfig?: {
|
|
9864
7759
|
precision: number;
|
|
9865
7760
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -9913,29 +7808,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
9913
7808
|
} | undefined;
|
|
9914
7809
|
maxVersions?: number | undefined;
|
|
9915
7810
|
} | undefined;
|
|
9916
|
-
readonly
|
|
9917
|
-
field: string;
|
|
9918
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
9919
|
-
preserveFormat: boolean;
|
|
9920
|
-
preserveLength: boolean;
|
|
9921
|
-
pattern?: string | undefined;
|
|
9922
|
-
roles?: string[] | undefined;
|
|
9923
|
-
exemptRoles?: string[] | undefined;
|
|
9924
|
-
} | undefined;
|
|
9925
|
-
readonly auditTrail?: boolean | undefined;
|
|
9926
|
-
readonly cached?: {
|
|
9927
|
-
enabled: boolean;
|
|
9928
|
-
ttl: number;
|
|
9929
|
-
invalidateOn: string[];
|
|
9930
|
-
} | undefined;
|
|
9931
|
-
readonly dataQuality?: {
|
|
9932
|
-
uniqueness: boolean;
|
|
9933
|
-
completeness: number;
|
|
9934
|
-
accuracy?: {
|
|
9935
|
-
source: string;
|
|
9936
|
-
threshold: number;
|
|
9937
|
-
} | undefined;
|
|
9938
|
-
} | undefined;
|
|
7811
|
+
readonly trackHistory?: boolean | undefined;
|
|
9939
7812
|
readonly visibleWhen?: {
|
|
9940
7813
|
dialect: "cel" | "js" | "cron" | "template";
|
|
9941
7814
|
source?: string | undefined;
|
|
@@ -9974,7 +7847,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
9974
7847
|
} | undefined;
|
|
9975
7848
|
readonly sortable?: boolean | undefined;
|
|
9976
7849
|
readonly inlineHelpText?: string | undefined;
|
|
9977
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
9978
7850
|
readonly caseSensitive?: boolean | undefined;
|
|
9979
7851
|
readonly autonumberFormat?: string | undefined;
|
|
9980
7852
|
readonly index?: boolean | undefined;
|